From 89006e174fe19b05d81ed1d946dd7fc9b10df45a Mon Sep 17 00:00:00 2001 From: crozzy Date: Mon, 20 Nov 2023 15:01:47 -0800 Subject: [PATCH] rhel: add csaf/vex updater Replace the Red Hat OVALv2 update source with the Red Hat CSAF/VEX data. Signed-off-by: crozzy --- go.mod | 1 + go.sum | 2 + rhel/vex/fetcher.go | 279 + rhel/vex/fetcher_test.go | 148 + rhel/vex/parser.go | 277 + rhel/vex/parser_test.go | 49 + rhel/vex/testdata/cve-2023-44487.json | 257976 +++++++++++++++ rhel/vex/testdata/example_vex.jsonl | 6 + rhel/vex/testdata/server.txt | 40199 +++ .../server/csaf_vex_2023-10-31.tar.zst | Bin 0 -> 6581 bytes rhel/vex/updater.go | 151 + toolkit/types/csaf/csaf.go | 455 + toolkit/types/csaf/csaf_test.go | 113 + .../types/csaf/testdata/cve-2021-0084.json | 318 + .../types/csaf/testdata/cve-2024-22047.json | 212 + .../types/csaf/testdata/rhsa-2022-0011.json | 427 + updater/defaults/defaults.go | 2 + 17 files changed, 300615 insertions(+) create mode 100644 rhel/vex/fetcher.go create mode 100644 rhel/vex/fetcher_test.go create mode 100644 rhel/vex/parser.go create mode 100644 rhel/vex/parser_test.go create mode 100644 rhel/vex/testdata/cve-2023-44487.json create mode 100644 rhel/vex/testdata/example_vex.jsonl create mode 100644 rhel/vex/testdata/server.txt create mode 100644 rhel/vex/testdata/server/csaf_vex_2023-10-31.tar.zst create mode 100644 rhel/vex/updater.go create mode 100644 toolkit/types/csaf/csaf.go create mode 100644 toolkit/types/csaf/csaf_test.go create mode 100644 toolkit/types/csaf/testdata/cve-2021-0084.json create mode 100644 toolkit/types/csaf/testdata/cve-2024-22047.json create mode 100644 toolkit/types/csaf/testdata/rhsa-2022-0011.json diff --git a/go.mod b/go.mod index eaeff3d60..82c4b2f83 100644 --- a/go.mod +++ b/go.mod @@ -15,6 +15,7 @@ require ( github.com/knqyf263/go-apk-version v0.0.0-20200609155635-041fdbb8563f github.com/knqyf263/go-deb-version v0.0.0-20190517075300-09fca494f03d github.com/knqyf263/go-rpm-version v0.0.0-20170716094938-74609b86c936 + github.com/package-url/packageurl-go v0.1.2 github.com/prometheus/client_golang v1.18.0 github.com/quay/claircore/toolkit v1.1.1 github.com/quay/claircore/updater/driver v1.0.0 diff --git a/go.sum b/go.sum index 8b1035b45..eae736135 100644 --- a/go.sum +++ b/go.sum @@ -136,6 +136,8 @@ github.com/mattn/go-sqlite3 v1.10.0/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsO github.com/mattn/go-sqlite3 v1.14.16 h1:yOQRA0RpS5PFz/oikGwBEqvAWhWg5ufRz4ETLjwpU1Y= github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 h1:jWpvCLoY8Z/e3VKvlsiIGKtc+UG6U5vzxaoagmhXfyg= github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0/go.mod h1:QUyp042oQthUoa9bqDv0ER0wrtXnBruoNd7aNjkbP+k= +github.com/package-url/packageurl-go v0.1.2 h1:0H2DQt6DHd/NeRlVwW4EZ4oEI6Bn40XlNPRqegcxuo4= +github.com/package-url/packageurl-go v0.1.2/go.mod h1:uQd4a7Rh3ZsVg5j0lNyAfyxIeGde9yrlhjF78GzeW0c= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= diff --git a/rhel/vex/fetcher.go b/rhel/vex/fetcher.go new file mode 100644 index 000000000..f0e698088 --- /dev/null +++ b/rhel/vex/fetcher.go @@ -0,0 +1,279 @@ +package vex + +import ( + "archive/tar" + "bytes" + "context" + "encoding/csv" + "encoding/json" + "fmt" + "io" + "net/http" + "path" + "strconv" + "strings" + "time" + + "github.com/klauspost/compress/zstd" + "github.com/quay/zlog" + + "github.com/quay/claircore/libvuln/driver" + "github.com/quay/claircore/pkg/tmp" +) + +// A Changes is a series of Entries indicating where to find resources in the +// changes.csv file. +type Changes []Entry + +// Entry is an entry in a changes.csv file. +type Entry struct { + // This path should be parsed in the context of the manifest's URL. + Path string + updatedTime time.Time +} + +func (u *VEXUpdater) Fetch(ctx context.Context, hint driver.Fingerprint) (io.ReadCloser, driver.Fingerprint, error) { + ctx = zlog.ContextWithValues(ctx, "component", "rhel/VEXUpdater.Fetch") + fp, err := ParseFingerprint(string(hint)) + if err != nil { + return nil, hint, err + } + + f, err := tmp.NewFile("", "rhel-vex.") + if err != nil { + return nil, hint, err + } + + var success bool + defer func() { + if success { + if _, err := f.Seek(0, io.SeekStart); err != nil { + zlog.Warn(ctx). + Err(err). + Msg("unable to seek file back to start") + } + } else { + if err := f.Close(); err != nil { + zlog.Warn(ctx).Err(err).Msg("unable to close spool") + } + } + }() + + if fp.changesEtag == "" { // Used to inform whether this is the first run. + // We need to go after the full corpus of vulnerabilities + // First we target the archive_latest.txt file + latestURI, err := u.url.Parse(latestFile) + if err != nil { + return nil, hint, err + } + latestReq, err := http.NewRequestWithContext(ctx, http.MethodGet, latestURI.String(), nil) + if err != nil { + return nil, hint, err + } + latestRes, err := u.client.Do(latestReq) + if latestRes != nil { + defer latestRes.Body.Close() + } + if err != nil { + return nil, hint, err + } + if latestRes.StatusCode != http.StatusOK { + return nil, hint, fmt.Errorf("unexpected response from archive_latest.txt: %s", latestRes.Status) + } + + body, err := io.ReadAll(latestRes.Body) // Fine to use as expecting small number of bytes. + if err != nil { + return nil, hint, err + } + + compressedFilename := string(body) + zlog.Debug(ctx). + Str("filename", compressedFilename). + Msg("requesting latest compressed file") + + // Decided against parsing the filename to allow the implementation + // to change under the hood w/o Clair caring. + uri, err := u.url.Parse(compressedFilename) + if err != nil { + return nil, hint, err + } + req, err := http.NewRequestWithContext(ctx, http.MethodGet, uri.String(), nil) + if err != nil { + return nil, hint, err + } + + u.client.Timeout = time.Minute * 1 // This is a large request. + res, err := u.client.Do(req) + if res != nil { + defer res.Body.Close() + } + if err != nil { + return nil, hint, err + } + if res.StatusCode != http.StatusOK { + return nil, hint, fmt.Errorf("unexpected response from latest compressed file: %s", res.Status) + } + + lm := res.Header.Get("last-modified") + fp.requestTime, err = time.Parse(time.RFC1123, lm) + if err != nil { + return nil, hint, fmt.Errorf("could not parse last-modified header %s:, %w", lm, err) + } + z, err := zstd.NewReader(res.Body) + if err != nil { + return nil, hint, err + } + defer z.Close() + r := tar.NewReader(z) + + var h *tar.Header + var buf bytes.Buffer + var entriesWritten int + for h, err = r.Next(); err == nil; h, err = r.Next() { + if h.Typeflag != tar.TypeReg { + continue + } + year, err := strconv.ParseInt(path.Dir(h.Name), 10, 64) + if err != nil { + return nil, hint, fmt.Errorf("error parsing year %w", err) + } + if year < lookBackToYear { + continue + } + buf.Grow(int(h.Size)) + if _, err := buf.ReadFrom(r); err != nil { + return nil, hint, err + } + + bc := &bytes.Buffer{} + err = json.Compact(bc, buf.Bytes()) + if err != nil { + return nil, hint, fmt.Errorf("error compressing JSON %s: %w", h.Name, err) + } + bc.WriteByte('\n') + f.Write(bc.Bytes()) + buf.Reset() + bc.Reset() + entriesWritten++ + } + if err != io.EOF { + return nil, hint, fmt.Errorf("error reading tar contents: %w", err) + } + + zlog.Debug(ctx). + Str("updater", u.Name()). + Int("entries written", entriesWritten). + Msg("finished writing compressed data to spool") + + } + + uri, err := u.url.Parse("changes.csv") + if err != nil { + return nil, hint, err + } + req, err := http.NewRequestWithContext(ctx, http.MethodGet, uri.String(), nil) + if err != nil { + return nil, hint, err + } + if fp.changesEtag != "" { + req.Header.Add("If-None-Match", fp.changesEtag) + } + res, err := u.client.Do(req) + if res != nil { + defer res.Body.Close() + } + if err != nil { + return nil, hint, err + } + + switch res.StatusCode { + case http.StatusOK: + if t := fp.changesEtag; t == "" || t != res.Header.Get("etag") { + break + } + fallthrough + case http.StatusNotModified: + // We could return driver.Unchanged here but we don't know for sure. Return the + // file that may have data read from the compressed file in it. + return f, hint, nil + default: + return nil, hint, fmt.Errorf("unexpected response from changes.csv: %s", res.Status) + } + fp.changesEtag = res.Header.Get("etag") + + rd := csv.NewReader(res.Body) + rd.FieldsPerRecord = 2 + rd.ReuseRecord = true + l := 0 + rec, err := rd.Read() + for ; err == nil; rec, err = rd.Read() { + if len(rec) != 2 { + return nil, hint, fmt.Errorf("could not parse changes.csv file") + } + var err error + e := Entry{} + e.Path += rec[0] // This += should result in us getting a copy. + year, err := strconv.ParseInt(path.Dir(e.Path), 10, 64) + if err != nil { + return nil, hint, fmt.Errorf("error parsing year %w", err) + } + if year < lookBackToYear { + continue + } + e.updatedTime, err = time.Parse(time.RFC3339, rec[1]) + if err != nil { + return nil, hint, fmt.Errorf("line %d: %w", l, err) + } + if e.updatedTime.After(fp.requestTime) { + en := e + advisoryURI, err := u.url.Parse(en.Path) + if err != nil { + return nil, hint, err + } + req, err := http.NewRequestWithContext(ctx, http.MethodGet, advisoryURI.String(), nil) + if err != nil { + return nil, hint, fmt.Errorf("error creating advisory request %w", err) + } + + res, err := u.client.Do(req) + if err != nil { + return nil, hint, fmt.Errorf("error making advisory request %w", err) + } + if res.StatusCode != http.StatusOK { + var b strings.Builder + if _, err := io.Copy(&b, res.Body); err != nil { + zlog.Warn(ctx).Err(err).Msg("additional error while reading error response") + } else { + zlog.Warn(ctx).Str("response", b.String()).Msg("received error response") + } + return nil, hint, fmt.Errorf("unexpected response from advisary URL: %s %s", res.Status, req.URL) + } + + buf := new(bytes.Buffer) + _, err = buf.ReadFrom(res.Body) + if err != nil { + return nil, hint, fmt.Errorf("error reading from buffer: %w", err) + } + zlog.Debug(ctx).Str("url", advisoryURI.String()).Msg("copying body to file") + bc := &bytes.Buffer{} + err = json.Compact(bc, buf.Bytes()) + if err != nil { + return nil, hint, fmt.Errorf("error compressing JSON: %w", err) + } + bc.WriteByte('\n') + f.Write(bc.Bytes()) + l++ + res.Body.Close() + } + } + + switch { + case err == io.EOF, err == nil: + default: + return nil, hint, fmt.Errorf("error parsing the csv file: %w", err) + } + + fp.requestTime = time.Now() + success = true + return f, driver.Fingerprint(fp.String()), nil +} diff --git a/rhel/vex/fetcher_test.go b/rhel/vex/fetcher_test.go new file mode 100644 index 000000000..04e4aeb85 --- /dev/null +++ b/rhel/vex/fetcher_test.go @@ -0,0 +1,148 @@ +package vex + +import ( + "bufio" + "bytes" + "context" + "io" + "net/http" + "net/http/httptest" + "net/textproto" + "os" + "path/filepath" + "testing" + + "github.com/quay/zlog" + "golang.org/x/tools/txtar" + + "github.com/quay/claircore/toolkit/types/csaf" +) + +func parseFilenameHeaders(data []byte) (string, http.Header, error) { + pf, h, _ := bytes.Cut(data, []byte{' '}) + compressedFilepath := bytes.TrimSuffix(pf, []byte{'\n'}) + h = bytes.ReplaceAll(h, []byte(`\n`), []byte{'\n'}) + // Do headers + tp := textproto.NewReader(bufio.NewReader(bytes.NewReader(h))) + hdr, err := tp.ReadMIMEHeader() + if err != nil && err != io.EOF { + return "", nil, err + } + return string(compressedFilepath), http.Header(hdr), nil +} + +func serveSecDB(t *testing.T) (string, *http.Client) { + mux := http.NewServeMux() + archive, err := txtar.ParseFile("testdata/server.txt") + if err != nil { + t.Fatal(err) + } + relFilepath, headers, err := parseFilenameHeaders(archive.Comment) + if err != nil { + t.Fatal(err) + } + filename := filepath.Base(relFilepath) + mux.HandleFunc("/"+filename, func(w http.ResponseWriter, _ *http.Request) { + for k, v := range headers { + w.Header().Set(k, v[0]) + } + + f, err := os.Open("testdata/" + relFilepath) + if err != nil { + t.Fatal(err) + } + if _, err := io.Copy(w, f); err != nil { + t.Fatal(err) + } + }) + for _, f := range archive.Files { + urlPath, headers, err := parseFilenameHeaders([]byte(f.Name)) + if err != nil { + t.Fatal(err) + } + fi := f + mux.HandleFunc(urlPath, func(w http.ResponseWriter, _ *http.Request) { + for k, v := range headers { + w.Header().Set(k, v[0]) + } + _, err := w.Write(bytes.TrimSuffix(fi.Data, []byte{'\n'})) + if err != nil { + t.Fatal(err) + } + }) + } + + srv := httptest.NewServer(mux) + t.Cleanup(srv.Close) + return srv.URL, srv.Client() +} + +func TestFactory(t *testing.T) { + ctx := zlog.Test(context.Background(), t) + root, c := serveSecDB(t) + fac := &Factory{} + err := fac.Configure(ctx, func(v interface{}) error { + cf := v.(*FactoryConfig) + cf.URL = root + "/" + return nil + }, c) + if err != nil { + t.Fatal(err) + } + + s, err := fac.UpdaterSet(ctx) + if err != nil { + t.Error(err) + } + if len(s.Updaters()) != 1 { + t.Errorf("expected 1 updater in the updaterset but got %d", len(s.Updaters())) + } + data, fp, err := s.Updaters()[0].Fetch(ctx, "") + if err != nil { + t.Fatalf("error Fetching, cannot continue: %v", err) + } + defer data.Close() + // Check fingerprint. + f, err := ParseFingerprint(string(fp)) + if err != nil { + t.Errorf("fingerprint cannot be parsed: %v", err) + } + if f.changesEtag != "something" { + t.Errorf("bad etag for the changes.csv endpoint: %s", f.changesEtag) + } + + // Check saved vulns + expectedLnCt := 7 + lnCt := 0 + r := bufio.NewReader(data) + for b, err := r.ReadBytes('\n'); err == nil; b, err = r.ReadBytes('\n') { + _, err := csaf.ParseCSAF(b) + if err != nil { + t.Error(err) + } + lnCt++ + } + if lnCt != expectedLnCt { + t.Errorf("got %d entries but expected %d", lnCt, expectedLnCt) + } + + newData, newFP, err := s.Updaters()[0].Fetch(ctx, "") + if err != nil { + t.Fatalf("error re-Fetching, cannot continue: %v", err) + } + defer newData.Close() + + f, err = ParseFingerprint(string(newFP)) + if err != nil { + t.Errorf("fingerprint cannot be parsed: %v", err) + } + if f.changesEtag != "something" { + t.Errorf("bad etag for the changes.csv endpoint: %s", f.changesEtag) + } + buf := &bytes.Buffer{} + sz, _ := newData.Read(buf.Bytes()) + if sz != 0 { + t.Errorf("got too much data: %s", buf.String()) + } + +} diff --git a/rhel/vex/parser.go b/rhel/vex/parser.go new file mode 100644 index 000000000..d1bb470b2 --- /dev/null +++ b/rhel/vex/parser.go @@ -0,0 +1,277 @@ +package vex + +import ( + "bufio" + "context" + "fmt" + "io" + "strings" + + "github.com/package-url/packageurl-go" + "github.com/quay/zlog" + + "github.com/quay/claircore" + "github.com/quay/claircore/pkg/cpe" + "github.com/quay/claircore/toolkit/types/csaf" + "github.com/quay/claircore/toolkit/types/cvss" +) + +// Parse implements [driver.Updater]. +func (u *VEXUpdater) Parse(ctx context.Context, contents io.ReadCloser) ([]*claircore.Vulnerability, error) { + // NOOP + return nil, nil +} + +// DeltaParse implements [driver.DeltaUpdater]. +func (u *VEXUpdater) DeltaParse(ctx context.Context, contents io.ReadCloser) ([]*claircore.Vulnerability, error) { + ctx = zlog.ContextWithValues(ctx, "component", "rhel/VEXUpdater.Parse") + // This map is needed for deduplication purposes, the compressed CSAF data maybe include + // entries that have been subsequently updated in the changes. + out := map[string][]*claircore.Vulnerability{} + r := bufio.NewReader(contents) + for b, err := r.ReadBytes('\n'); err == nil; b, err = r.ReadBytes('\n') { + c, err := csaf.ParseCSAF(b) + if err != nil { + return nil, fmt.Errorf("error parsing CSAF: %w", err) + } + + var selfLink string + for _, r := range c.Document.References { + if r.Category == "self" { + selfLink = r.URL + } + } + ctx = zlog.ContextWithValues(ctx, "link", selfLink) + for _, v := range c.Vulnerabilities { + // Create vuln here, there should always be one vulnerability + // here in the case of RH VEX but the spec allows multiple. + links := []string{} + for _, r := range v.References { + links = append(links, r.URL) + } + // Useful for debugging + links = append(links, selfLink) + var desc string + for _, n := range v.Notes { + if n.Category == "description" { + desc = n.Text + } + } + + protoVuln := func() claircore.Vulnerability { + return claircore.Vulnerability{ + Updater: u.Name(), + Name: c.Document.Tracking.ID, + Description: desc, + Package: &claircore.Package{}, + Repo: &claircore.Repository{}, + Dist: &claircore.Distribution{}, + Issued: v.ReleaseDate, + Links: strings.Join(links, " "), + Severity: "Unknown", + NormalizedSeverity: claircore.Unknown, + } + } + + uniqueVulns := make(map[string]*claircore.Vulnerability) + // I think we're only bothered about known_affected and fixed, + // not_affected and under_investigation are ignored. + // Fixed + for _, pc := range v.ProductStatus["fixed"] { + rel := c.FindRelationship(pc, "default_component_of") + if rel == nil { + // We can get here, it means we don't have a repo:pkg relationship. + // In our case, this information is not useful, so skip. + zlog.Warn(ctx). + Str("product:package", pc). + Msg("could not find a relationship for product:package") + continue + } + repoProd := c.ProductTree.FindProductByID(rel.RelatesToProductRef) + if repoProd == nil { + // Should never get here, error in data + zlog.Warn(ctx). + Str("prod", rel.RelatesToProductRef). + Msg("could not find product in product tree") + continue + } + cpeHelper, ok := repoProd.IdentificationHelper["cpe"] + if !ok { + zlog.Warn(ctx). + Str("prod", rel.RelatesToProductRef). + Msg("could not find cpe helper type in product") + continue + } + compProd := c.ProductTree.FindProductByID(rel.ProductRef) + if compProd == nil { + // Should never get here, error in data + zlog.Warn(ctx). + Str("pkg", rel.ProductRef). + Msg("could not find package in product tree") + continue + } + purlHelper, ok := compProd.IdentificationHelper["purl"] + if !ok { + zlog.Warn(ctx). + Str("pkg", rel.ProductRef). + Msg("could not find purl helper type in product") + continue + } + purl, err := packageurl.FromString(purlHelper) + if err != nil { + zlog.Warn(ctx). + Str("purl", purlHelper). + Msg("could not parse PURL") + } + if purl.Type != packageurl.TypeRPM || purl.Namespace != "redhat" { + // Just ingest advisories that are Red Hat RPMs, this will + // probably change down the line when we consolidate updaters. + continue + + } + + vulnKey := createPackageKey(rel.RelatesToProductRef, &purl) + arch := purl.Qualifiers.Map()["arch"] + if ev := uniqueVulns[vulnKey]; ev != nil && arch != "" { + // We've already found this package, just append the arch + ev.Package.Arch = ev.Package.Arch + "|" + arch + } else { + vuln := protoVuln() + vuln.FixedInVersion = epochVersion(&purl) + vuln.Package.Name = purl.Name + if arch != "" { + vuln.Package.Arch = arch + // TODO (crozzy): Check we're always pattern matching + vuln.ArchOperation = claircore.OpPatternMatch + } + vuln.Package.Kind = claircore.BINARY + + wfn, err := cpe.Unbind(cpeHelper) + if err != nil { + return nil, fmt.Errorf("could not unbind cpe: %s %w", cpeHelper, err) + } + repo := &claircore.Repository{ + // It _feels_ more correct to match on the CPE + // field here, double check the matcher logic. + CPE: wfn, + Name: cpeHelper, + Key: repoKey, + } + vuln.Repo = repo + // Find remediations and add RHSA URL to links + rem := c.FindRemediation(pc) + if rem != nil { + vuln.Links = vuln.Links + " " + rem.URL + } + vuln.NormalizedSeverity = claircore.Unknown + if sc := c.FindScore(pc); sc != nil { + vuln.Severity = sc.CVSSV3.VectorString + s, err := cvss.ParseV3(vuln.Severity) + if err != nil { + return nil, fmt.Errorf("could not parse CVSSv3 vector string %w", err) + } + vuln.NormalizedSeverity = CVSS2ClaircoreSeverity(cvss.QualitativeScore(&s)) + } + uniqueVulns[vulnKey] = &vuln + } + } + for _, ev := range uniqueVulns { + out[ev.Name] = append(out[ev.Name], ev) + } + // Known affected + for _, pc := range v.ProductStatus["known_affected"] { + rel := c.ProductTree.Relationships.FindRelationship(pc, "default_component_of") + if rel == nil { + // Should never get here, error in data + zlog.Warn(ctx). + Str("product:package", pc). + Msg("could not find a relationship for product:package") + continue + } + repoProd := c.ProductTree.FindProductByID(rel.RelatesToProductRef) + if repoProd == nil { + // Should never get here, error in data + zlog.Warn(ctx). + Str("prod", rel.RelatesToProductRef). + Msg("could not find product in product tree") + continue + } + cpeHelper, ok := repoProd.IdentificationHelper["cpe"] + if !ok { + zlog.Warn(ctx). + Str("prod", rel.RelatesToProductRef). + Msg("could not find cpe helper type in product") + continue + } + + vuln := protoVuln() + + // What is the deal here? Just stick the package name in and f-it? + // That's the plan so far as there's no PURL product ID helper. + vuln.Package.Name = rel.ProductRef + vuln.Package.Kind = claircore.BINARY + + wfn, err := cpe.Unbind(cpeHelper) + if err != nil { + return nil, fmt.Errorf("could not unbind cpe: %s %w", cpeHelper, err) + } + repo := &claircore.Repository{ + CPE: wfn, + Name: cpeHelper, + Key: repoKey, + } + vuln.Repo = repo + if sc := c.FindScore(pc); sc != nil { + vuln.Severity = sc.CVSSV3.VectorString + s, err := cvss.ParseV3(vuln.Severity) + if err != nil { + return nil, fmt.Errorf("could not parse CVSSv3 vector string %w", err) + } + vuln.NormalizedSeverity = CVSS2ClaircoreSeverity(cvss.QualitativeScore(&s)) + } + out[vuln.Name] = append(out[vuln.Name], &vuln) + } + } + } + vulns := []*claircore.Vulnerability{} + for _, vs := range out { + vulns = append(vulns, vs...) + } + + return vulns, nil +} + +// CVSS2ClaircoreSeverity returns a claircore.Severity given a cvss.Qualitative +// If it doesn't map to a claircore.Severity claircore.Unknown is returned. +func CVSS2ClaircoreSeverity(q cvss.Qualitative) claircore.Severity { + s, ok := CVSS2ClaircoreSeverityMap[q] + if ok { + return s + } + return claircore.Unknown +} + +var CVSS2ClaircoreSeverityMap = map[cvss.Qualitative]claircore.Severity{ + cvss.None: claircore.Unknown, + cvss.Low: claircore.Low, + cvss.Medium: claircore.Medium, + cvss.High: claircore.High, + cvss.Critical: claircore.Critical, +} + +// CreatePackageKey creates a unique key to describe an arch agnostic +// package for deduplication purposes. +// i.e. AppStream-8.2.0.Z.TUS:python3-idle-0:3.6.8-24.el8_2.2 +func createPackageKey(repo string, purl *packageurl.PackageURL) string { + // The other option here is just to use repo + PURL string + // w/o the qualifiers I suppose instead of repo + NEVR. + return repo + ":" + purl.Name + "-" + epochVersion(purl) +} + +func epochVersion(purl *packageurl.PackageURL) string { + epoch := "0" + if e, ok := purl.Qualifiers.Map()["epoch"]; ok { + epoch = e + } + return epoch + ":" + purl.Version +} diff --git a/rhel/vex/parser_test.go b/rhel/vex/parser_test.go new file mode 100644 index 000000000..1c977cabc --- /dev/null +++ b/rhel/vex/parser_test.go @@ -0,0 +1,49 @@ +package vex + +import ( + "context" + "net/http" + "net/url" + "os" + "testing" +) + +func TestParse(t *testing.T) { + c := context.Background() + url, err := url.Parse(baseURL) + if err != nil { + t.Error(err) + } + + testcases := []struct { + name string + filename string + expected int + }{ + { + name: "three_advisories", + filename: "testdata/example_vex.jsonl", + expected: 546, + }, + } + + u := &VEXUpdater{url: url, client: http.DefaultClient} + + for _, tc := range testcases { + t.Run(tc.name, func(t *testing.T) { + f, err := os.Open(tc.filename) + if err != nil { + t.Fatalf("failed to open test data: %v", tc.filename) + } + vulns, err := u.DeltaParse(c, f) + if err != nil { + t.Fatalf("failed to parse CSAF JSON: %v", err) + } + + if len(vulns) != tc.expected { + t.Fatalf("expected %d vulns but got %d", tc.expected, len(vulns)) + } + + }) + } +} diff --git a/rhel/vex/testdata/cve-2023-44487.json b/rhel/vex/testdata/cve-2023-44487.json new file mode 100644 index 000000000..b7790ac93 --- /dev/null +++ b/rhel/vex/testdata/cve-2023-44487.json @@ -0,0 +1,257976 @@ +{ + "document": { + "aggregate_severity": { + "namespace": "https://access.redhat.com/security/updates/classification/", + "text": "important" + }, + "category": "csaf_vex", + "csaf_version": "2.0", + "distribution": { + "text": "Copyright © Red Hat, Inc. All rights reserved.", + "tlp": { + "label": "WHITE", + "url": "https://www.first.org/tlp/" + } + }, + "lang": "en", + "notes": [ + { + "category": "legal_disclaimer", + "text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.", + "title": "Terms of Use" + } + ], + "publisher": { + "category": "vendor", + "contact_details": "https://access.redhat.com/security/team/contact/", + "issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat offerings.", + "name": "Red Hat Product Security", + "namespace": "https://www.redhat.com" + }, + "references": [ + { + "category": "self", + "summary": "Canonical URL", + "url": "https://access.redhat.com/security/data/csaf/beta/vex/2023/cve-2023-44487.json" + } + ], + "title": "HTTP/2: Multiple HTTP/2 enabled web servers are vulnerable to a DDoS attack (Rapid Reset Attack)", + "tracking": { + "current_release_date": "2023-11-21T11:59:10+00:00", + "generator": { + "date": "2023-11-21T17:11:21+00:00", + "engine": { + "name": "Red Hat SDEngine", + "version": "3.24.0" + } + }, + "id": "CVE-2023-44487", + "initial_release_date": "2023-10-10T00:00:00+00:00", + "revision_history": [ + { + "date": "2023-10-10T00:00:00+00:00", + "number": "1", + "summary": "Initial version" + }, + { + "date": "2023-11-21T11:59:10+00:00", + "number": "2", + "summary": "Current version" + } + ], + "status": "final", + "version": "1" + } + }, + "product_tree": { + "branches": [ + { + "branches": [ + { + "category": "product_name", + "name": "A-MQ Clients 2", + "product": { + "name": "A-MQ Clients 2", + "product_id": "a-mq_clients_2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:a_mq_clients:2" + } + } + }, + { + "category": "product_name", + "name": "Cryostat 2", + "product": { + "name": "Cryostat 2", + "product_id": "cryostat_2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:cryostat:2" + } + } + }, + { + "category": "product_name", + "name": "Logging Subsystem for Red Hat OpenShift", + "product": { + "name": "Logging Subsystem for Red Hat OpenShift", + "product_id": "logging_subsystem_for_red_hat_openshift", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:logging:5" + } + } + }, + { + "category": "product_name", + "name": "Logical Volume Manager Storage Operator", + "product": { + "name": "Logical Volume Manager Storage Operator", + "product_id": "logical_volume_manager_storage_operator", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:lvms:4" + } + } + }, + { + "category": "product_name", + "name": "Migration Toolkit for Applications 6", + "product": { + "name": "Migration Toolkit for Applications 6", + "product_id": "migration_toolkit_for_applications_6", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:migration_toolkit_applications:6" + } + } + }, + { + "category": "product_name", + "name": "OpenShift Developer Tools and Services", + "product": { + "name": "OpenShift Developer Tools and Services", + "product_id": "openshift_developer_tools_and_services", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:ocp_tools" + } + } + }, + { + "category": "product_name", + "name": "OpenShift Serverless", + "product": { + "name": "OpenShift Serverless", + "product_id": "openshift_serverless", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:serverless:1" + } + } + }, + { + "category": "product_name", + "name": "OpenShift Service Mesh 2", + "product": { + "name": "OpenShift Service Mesh 2", + "product_id": "openshift_service_mesh_2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:service_mesh:2" + } + } + }, + { + "category": "product_name", + "name": "Red Hat 3scale API Management Platform 2", + "product": { + "name": "Red Hat 3scale API Management Platform 2", + "product_id": "red_hat_3scale_api_management_platform_2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:red_hat_3scale_amp:2" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Ansible Automation Platform 2", + "product": { + "name": "Red Hat Ansible Automation Platform 2", + "product_id": "red_hat_ansible_automation_platform_2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:ansible_automation_platform:2" + } + } + }, + { + "category": "product_name", + "name": "Red Hat build of Quarkus", + "product": { + "name": "Red Hat build of Quarkus", + "product_id": "red_hat_build_of_quarkus", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:quarkus:2" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Ceph Storage 5", + "product": { + "name": "Red Hat Ceph Storage 5", + "product_id": "red_hat_ceph_storage_5", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:ceph_storage:5" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Ceph Storage 6", + "product": { + "name": "Red Hat Ceph Storage 6", + "product_id": "red_hat_ceph_storage_6", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:ceph_storage:6" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Certification for Red Hat Enterprise Linux 8", + "product": { + "name": "Red Hat Certification for Red Hat Enterprise Linux 8", + "product_id": "red_hat_certification_for_red_hat_enterprise_linux_8", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:certifications:1::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Certification for Red Hat Enterprise Linux 9", + "product": { + "name": "Red Hat Certification for Red Hat Enterprise Linux 9", + "product_id": "red_hat_certification_for_red_hat_enterprise_linux_9", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:certifications:1::el9" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Decision Manager 7", + "product": { + "name": "Red Hat Decision Manager 7", + "product_id": "red_hat_decision_manager_7", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jboss_enterprise_brms_platform:7" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Developer Hub", + "product": { + "name": "Red Hat Developer Hub", + "product_id": "red_hat_developer_hub", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:backstage:1.0::el9" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux 6", + "product": { + "name": "Red Hat Enterprise Linux 6", + "product_id": "red_hat_enterprise_linux_6", + "product_identification_helper": { + "cpe": "cpe:/o:redhat:enterprise_linux:6" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux 7", + "product": { + "name": "Red Hat Enterprise Linux 7", + "product_id": "red_hat_enterprise_linux_7", + "product_identification_helper": { + "cpe": "cpe:/o:redhat:enterprise_linux:7" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux 8", + "product": { + "name": "Red Hat Enterprise Linux 8", + "product_id": "red_hat_enterprise_linux_8", + "product_identification_helper": { + "cpe": "cpe:/o:redhat:enterprise_linux:8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux 9", + "product": { + "name": "Red Hat Enterprise Linux 9", + "product_id": "red_hat_enterprise_linux_9", + "product_identification_helper": { + "cpe": "cpe:/o:redhat:enterprise_linux:9" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Integration Camel K", + "product": { + "name": "Red Hat Integration Camel K", + "product_id": "red_hat_integration_camel_k", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:integration:1" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Integration Change Data Capture", + "product": { + "name": "Red Hat Integration Change Data Capture", + "product_id": "red_hat_integration_change_data_capture", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:debezium:2" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Integration Service Registry", + "product": { + "name": "Red Hat Integration Service Registry", + "product_id": "red_hat_integration_service_registry", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:service_registry:2" + } + } + }, + { + "category": "product_name", + "name": "Red Hat JBoss Core Services", + "product": { + "name": "Red Hat JBoss Core Services", + "product_id": "red_hat_jboss_core_services", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jboss_core_services:1" + } + } + }, + { + "category": "product_name", + "name": "Red Hat JBoss Data Grid 7", + "product": { + "name": "Red Hat JBoss Data Grid 7", + "product_id": "red_hat_jboss_data_grid_7", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jboss_data_grid:7" + } + } + }, + { + "category": "product_name", + "name": "Red Hat JBoss Enterprise Application Platform Expansion Pack", + "product": { + "name": "Red Hat JBoss Enterprise Application Platform Expansion Pack", + "product_id": "red_hat_jboss_enterprise_application_platform_expansion_pack", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jbosseapxp" + } + } + }, + { + "category": "product_name", + "name": "Red Hat JBoss Fuse 6", + "product": { + "name": "Red Hat JBoss Fuse 6", + "product_id": "red_hat_jboss_fuse_6", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jboss_fuse:6" + } + } + }, + { + "category": "product_name", + "name": "Red Hat JBoss Fuse 7", + "product": { + "name": "Red Hat JBoss Fuse 7", + "product_id": "red_hat_jboss_fuse_7", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jboss_fuse:7" + } + } + }, + { + "category": "product_name", + "name": "Red Hat JBoss Fuse Service Works 6", + "product": { + "name": "Red Hat JBoss Fuse Service Works 6", + "product_id": "red_hat_jboss_fuse_service_works_6", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jboss_fuse_service_works:6" + } + } + }, + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 3.11", + "product": { + "name": "Red Hat OpenShift Container Platform 3.11", + "product_id": "red_hat_openshift_container_platform_3.11", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:3.11" + } + } + }, + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4", + "product": { + "name": "Red Hat OpenShift Container Platform 4", + "product_id": "red_hat_openshift_container_platform_4", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4" + } + } + }, + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform Assisted Installer", + "product": { + "name": "Red Hat OpenShift Container Platform Assisted Installer", + "product_id": "red_hat_openshift_container_platform_assisted_installer", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:assisted_installer:" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Openshift Data Foundation 4", + "product": { + "name": "Red Hat Openshift Data Foundation 4", + "product_id": "red_hat_openshift_data_foundation_4", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift_data_foundation:4" + } + } + }, + { + "category": "product_name", + "name": "Red Hat OpenShift Data Science (RHODS)", + "product": { + "name": "Red Hat OpenShift Data Science (RHODS)", + "product_id": "red_hat_openshift_data_science_(rhods)", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift_data_science" + } + } + }, + { + "category": "product_name", + "name": "Red Hat OpenShift Dev Spaces", + "product": { + "name": "Red Hat OpenShift Dev Spaces", + "product_id": "red_hat_openshift_dev_spaces", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift_devspaces:3::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat OpenShift on AWS", + "product": { + "name": "Red Hat OpenShift on AWS", + "product_id": "red_hat_openshift_on_aws", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift_service_on_aws:1" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Openshift sandboxed containers", + "product": { + "name": "Red Hat Openshift sandboxed containers", + "product_id": "red_hat_openshift_sandboxed_containers", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift_sandboxed_containers:1" + } + } + }, + { + "category": "product_name", + "name": "Red Hat OpenShift Virtualization 4", + "product": { + "name": "Red Hat OpenShift Virtualization 4", + "product_id": "red_hat_openshift_virtualization_4", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:container_native_virtualization:4" + } + } + }, + { + "category": "product_name", + "name": "Red Hat OpenStack Platform 16.1", + "product": { + "name": "Red Hat OpenStack Platform 16.1", + "product_id": "red_hat_openstack_platform_16.1", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openstack:16.1" + } + } + }, + { + "category": "product_name", + "name": "Red Hat OpenStack Platform 16.2", + "product": { + "name": "Red Hat OpenStack Platform 16.2", + "product_id": "red_hat_openstack_platform_16.2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openstack:16.2" + } + } + }, + { + "category": "product_name", + "name": "Red Hat OpenStack Platform 17.1", + "product": { + "name": "Red Hat OpenStack Platform 17.1", + "product_id": "red_hat_openstack_platform_17.1", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openstack:17.1" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Process Automation 7", + "product": { + "name": "Red Hat Process Automation 7", + "product_id": "red_hat_process_automation_7", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jboss_enterprise_bpms_platform:7" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Quay 3", + "product": { + "name": "Red Hat Quay 3", + "product_id": "red_hat_quay_3", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:quay:3" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6", + "product": { + "name": "Red Hat Satellite 6", + "product_id": "red_hat_satellite_6", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite:6" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Single Sign-On 7", + "product": { + "name": "Red Hat Single Sign-On 7", + "product_id": "red_hat_single_sign-on_7", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:red_hat_single_sign_on:7" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Software Collections", + "product": { + "name": "Red Hat Software Collections", + "product_id": "red_hat_software_collections", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_software_collections:3" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Storage 3", + "product": { + "name": "Red Hat Storage 3", + "product_id": "red_hat_storage_3", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:storage:3" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Web Terminal", + "product": { + "name": "Red Hat Web Terminal", + "product_id": "red_hat_web_terminal", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:webterminal:1" + } + } + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.13", + "product": { + "name": "Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.13::el9" + } + } + }, + { + "category": "product_name", + "name": "Ironic content for Red Hat OpenShift Container Platform 4.13", + "product": { + "name": "Ironic content for Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-IRONIC-4.13", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift_ironic:4.13::el9" + } + } + }, + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.13", + "product": { + "name": "Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.13::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Enterprise" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.14", + "product": { + "name": "Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.14::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.14", + "product": { + "name": "Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.14::el9" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Enterprise" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenShift GitOps 1.9", + "product": { + "name": "Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift_gitops:1.9::el9" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift GitOps" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenShift GitOps 1.9", + "product": { + "name": "Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift_gitops:1.9::el9" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift GitOps" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Middleware Containers for OpenShift", + "product": { + "name": "Middleware Containers for OpenShift", + "product_id": "8Base-RHOSE-Middleware", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhosemc:1.0::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Enterprise" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Software Collections for RHEL(v. 7)", + "product": { + "name": "Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_software_collections:3::el7" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Software Collections for RHEL Workstation(v. 7)", + "product": { + "name": "Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_software_collections:3::el7" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Software Collections" + }, + { + "branches": [ + { + "category": "product_name", + "name": "OpenShift Developer Tools and Services for OCP 4.14 for RHEL 8", + "product": { + "name": "OpenShift Developer Tools and Services for OCP 4.14 for RHEL 8", + "product_id": "8Base-OCP-Tools-4.14", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:ocp_tools:4.14::el8" + } + } + } + ], + "category": "product_family", + "name": "OpenShift Developer Tools and Services" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.14", + "product": { + "name": "Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.14::el9" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Enterprise" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Fuse 7.12.1", + "product": { + "name": "Red Hat Fuse 7.12.1", + "product_id": "Red Hat Fuse 7.12.1", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jboss_fuse:7" + } + } + } + ], + "category": "product_family", + "name": "Red Hat JBoss Fuse" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.14", + "product": { + "name": "Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.14::el9" + } + } + }, + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.14", + "product": { + "name": "Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.14::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Enterprise" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.14", + "product": { + "name": "Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.14::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.14", + "product": { + "name": "Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.14::el9" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Enterprise" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.14", + "product": { + "name": "Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.14::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.14", + "product": { + "name": "Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.14::el9" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Enterprise" + }, + { + "branches": [ + { + "category": "product_name", + "name": "kmm 1.1 for RHEL 9", + "product": { + "name": "kmm 1.1 for RHEL 9", + "product_id": "9Base-KMM-1.1", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:kernel_module_management:1.1::el9" + } + } + } + ], + "category": "product_family", + "name": "Kernel Module Management" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Cert Manager support for Red Hat OpenShift release", + "product": { + "name": "Cert Manager support for Red Hat OpenShift release", + "product_id": "9Base-CERT-MANAGER-1.12", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:cert_manager:1.12::el9" + } + } + } + ], + "category": "product_family", + "name": "Cert Manager support for Red Hat OpenShift" + }, + { + "branches": [ + { + "category": "product_name", + "name": "RHOSSM 2.2 for RHEL 8", + "product": { + "name": "RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:service_mesh:2.2::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Service Mesh" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream (v. 8)", + "product": { + "name": "Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:8::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Satellite 6.14 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite_capsule:6.14::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.14 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite:6.14::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.14 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite_utils:6.14::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.14 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-maintenance", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite_maintenance:6.14::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Satellite 6" + }, + { + "branches": [ + { + "category": "product_name", + "name": "RHODF 4.14 for RHEL 9", + "product": { + "name": "RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift_data_foundation:4.14::el9" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Data Foundation" + }, + { + "branches": [ + { + "category": "product_name", + "name": "CNV 4.14 for RHEL 9", + "product": { + "name": "CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:container_native_virtualization:4.14::el9" + } + } + } + ], + "category": "product_family", + "name": "OpenShift Virtualization" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.11", + "product": { + "name": "Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.11::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Enterprise" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenShift GitOps 1.8", + "product": { + "name": "Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift_gitops:1.8::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift GitOps" + }, + { + "branches": [ + { + "category": "product_name", + "name": "NETOBSERV 1.4 for RHEL 9", + "product": { + "name": "NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:network_observ_optr:1.4.0::el9" + } + } + } + ], + "category": "product_family", + "name": "Network Observability" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Node Healthcheck Operator 0.6 for RHEL 8", + "product": { + "name": "Node Healthcheck Operator 0.6 for RHEL 8", + "product_id": "8Base-NODE-HEALTHCHECK-OPERATOR-0.6", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:workload_availability_node_healthcheck:0.6::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Workload Availability" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Fence Agents Remediation 0.2 for RHEL 8", + "product": { + "name": "Fence Agents Remediation 0.2 for RHEL 8", + "product_id": "8Base-FENCE-AGENTS-REMEDIATION-0.2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:workload_availability_fence_agents_remediation:0.2::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Workload Availability" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Machine Deletion Remediation 0.2 for RHEL 8", + "product": { + "name": "Machine Deletion Remediation 0.2 for RHEL 8", + "product_id": "8Base-MACHINE-DELETION-REMEDIATION-0.2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:workload_availability_machine_deletion_remediation:0.2::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Workload Availability" + }, + { + "branches": [ + { + "category": "product_name", + "name": "OpenShift Pipelines version 1.11 for RHEL 8", + "product": { + "name": "OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift_pipelines:1.11::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Pipelines" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Node Healthcheck Operator 0.4 for RHEL 8", + "product": { + "name": "Node Healthcheck Operator 0.4 for RHEL 8", + "product_id": "8Base-NODE-HEALTHCHECK-OPERATOR-0.4", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:workload_availability_node_healthcheck:0.4::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Workload Availability" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenShift GitOps 1.8", + "product": { + "name": "Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift_gitops:1.8::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift GitOps" + }, + { + "branches": [ + { + "category": "product_name", + "name": "OpenShift Pipelines version 1.11 for RHEL 8", + "product": { + "name": "OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift_pipelines:1.11::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Pipelines" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat CodeReady Linux Builder (v. 9)", + "product": { + "name": "Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:9::crb" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux BaseOS (v. 9)", + "product": { + "name": "Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN", + "product_identification_helper": { + "cpe": "cpe:/o:redhat:enterprise_linux:9::baseos" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "MTA 6.1 for RHEL 8", + "product": { + "name": "MTA 6.1 for RHEL 8", + "product_id": "8Base-MTA-6.1", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:migration_toolkit_applications:6.1::el8" + } + } + } + ], + "category": "product_family", + "name": "Migration Toolkit for Applications" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Openshift Serverless 1 on RHEL 8Base", + "product": { + "name": "Openshift Serverless 1 on RHEL 8Base", + "product_id": "8Base-Openshift-Serverless-1", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:serverless:1.0::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Serverless" + }, + { + "branches": [ + { + "category": "product_name", + "name": "8Base-Openshift-Serverless-1.30", + "product": { + "name": "8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift_serverless:1.30::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Serverless" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Data Grid 7.3.11", + "product": { + "name": "Red Hat Data Grid 7.3.11", + "product_id": "Red Hat Data Grid 7.3.11", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jboss_data_grid:7.3" + } + } + } + ], + "category": "product_family", + "name": "Red Hat JBoss Data Grid" + }, + { + "branches": [ + { + "category": "product_name", + "name": "MTA 6.2 for RHEL 8", + "product": { + "name": "MTA 6.2 for RHEL 8", + "product_id": "9Base-MTA-6.2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:migration_toolkit_applications:6.2::el9" + } + } + }, + { + "category": "product_name", + "name": "MTA 6.2 for RHEL 8", + "product": { + "name": "MTA 6.2 for RHEL 8", + "product_id": "8Base-MTA-6.2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:migration_toolkit_applications:6.2::el8" + } + } + } + ], + "category": "product_family", + "name": "Migration Toolkit for Applications" + }, + { + "branches": [ + { + "category": "product_name", + "name": "CNV 4.12 for RHEL 8", + "product": { + "name": "CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:container_native_virtualization:4.12::el8" + } + } + } + ], + "category": "product_family", + "name": "OpenShift Virtualization" + }, + { + "branches": [ + { + "category": "product_name", + "name": "CNV 4.11 for RHEL 8", + "product": { + "name": "CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:container_native_virtualization:4.11::el8" + } + } + } + ], + "category": "product_family", + "name": "OpenShift Virtualization" + }, + { + "branches": [ + { + "category": "product_name", + "name": "CNV 4.13 for RHEL 9", + "product": { + "name": "CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:container_native_virtualization:4.13::el9" + } + } + } + ], + "category": "product_family", + "name": "OpenShift Virtualization" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.12", + "product": { + "name": "Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.12::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Enterprise" + }, + { + "branches": [ + { + "category": "product_name", + "name": "RHOSSM 2.4 for RHEL 8", + "product": { + "name": "RHOSSM 2.4 for RHEL 8", + "product_id": "8Base-RHOSSM-2.4", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:service_mesh:2.4::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Service Mesh" + }, + { + "branches": [ + { + "category": "product_name", + "name": "OSSO 1.2 for RHEL 8", + "product": { + "name": "OSSO 1.2 for RHEL 8", + "product_id": "8Base-OSSO-1.2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift_secondary_scheduler:1.2::el8" + } + } + } + ], + "category": "product_family", + "name": "Openshift Secondary Scheduler Operator" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.14", + "product": { + "name": "Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.14::el9" + } + } + }, + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.14", + "product": { + "name": "Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.14::el8" + } + } + }, + { + "category": "product_name", + "name": "Ironic content for Red Hat OpenShift Container Platform 4.14", + "product": { + "name": "Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift_ironic:4.14::el9" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Enterprise" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.14", + "product": { + "name": "Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.14::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.14", + "product": { + "name": "Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.14::el9" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Enterprise" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product": { + "name": "Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:acm:2.6::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat ACM" + }, + { + "branches": [ + { + "category": "product_name", + "name": "multicluster engine for Kubernetes 2.1 for RHEL 8", + "product": { + "name": "multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:multicluster_engine:2.1::el8" + } + } + } + ], + "category": "product_family", + "name": "multicluster engine for Kubernetes" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.13", + "product": { + "name": "Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.13::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.13", + "product": { + "name": "Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.13::el9" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Enterprise" + }, + { + "branches": [ + { + "category": "product_name", + "name": "OpenShift Developer Tools and Services for OCP 4.13 for RHEL 8", + "product": { + "name": "OpenShift Developer Tools and Services for OCP 4.13 for RHEL 8", + "product_id": "8Base-OCP-Tools-4.13", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:ocp_tools:4.13::el8" + } + } + } + ], + "category": "product_family", + "name": "OpenShift Developer Tools and Services" + }, + { + "branches": [ + { + "category": "product_name", + "name": "8Base-Service-Interconnect-1", + "product": { + "name": "8Base-Service-Interconnect-1", + "product_id": "8Base-Service-Interconnect-1", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:service_interconnect:1::el8" + } + } + }, + { + "category": "product_name", + "name": "9Base-Service-Interconnect-1", + "product": { + "name": "9Base-Service-Interconnect-1", + "product_id": "9Base-Service-Interconnect-1", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:service_interconnect:1::el9" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Service Interconnect" + }, + { + "branches": [ + { + "category": "product_name", + "name": "8Base-RHMTC-1.7", + "product": { + "name": "8Base-RHMTC-1.7", + "product_id": "8Base-RHMTC-1.7", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhmt:1.7::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Migration Toolkit" + }, + { + "branches": [ + { + "category": "product_name", + "name": "OpenShift Custom Metrics Autoscaler 2", + "product": { + "name": "OpenShift Custom Metrics Autoscaler 2", + "product_id": "8Base-OCMA-2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift_custom_metrics_autoscaler:2.0::el8" + } + } + } + ], + "category": "product_family", + "name": "OpenShift Custom Metrics Autoscaler" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream AUS (v.8.4)", + "product": { + "name": "Red Hat Enterprise Linux AppStream AUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.AUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_aus:8.4::appstream" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product": { + "name": "Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_e4s:8.4::appstream" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream TUS (v.8.4)", + "product": { + "name": "Red Hat Enterprise Linux AppStream TUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.TUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_tus:8.4::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream AUS (v. 8.2)", + "product": { + "name": "Red Hat Enterprise Linux AppStream AUS (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.AUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_aus:8.2::appstream" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream E4S (v. 8.2)", + "product": { + "name": "Red Hat Enterprise Linux AppStream E4S (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.E4S", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_e4s:8.2::appstream" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream TUS (v. 8.2)", + "product": { + "name": "Red Hat Enterprise Linux AppStream TUS (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.TUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_tus:8.2::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product": { + "name": "Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:acm:2.7::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat ACM" + }, + { + "branches": [ + { + "category": "product_name", + "name": "multicluster engine for Kubernetes 2.2 for RHEL 8", + "product": { + "name": "multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:multicluster_engine:2.2::el8" + } + } + } + ], + "category": "product_family", + "name": "multicluster engine for Kubernetes" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat JBoss Core Services on RHEL 7 Server", + "product": { + "name": "Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jboss_core_services:1::el7" + } + } + }, + { + "category": "product_name", + "name": "Red Hat JBoss Core Services on RHEL 8", + "product": { + "name": "Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jboss_core_services:1::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat JBoss Core Services" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Migration Toolkit for Runtimes 1 on RHEL 8", + "product": { + "name": "Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:migration_toolkit_runtimes:1.0::el8" + } + } + } + ], + "category": "product_family", + "name": "Migration Toolkit for Runtimes" + }, + { + "branches": [ + { + "category": "product_name", + "name": "JBCS httpd 2.4.57 SP1", + "product": { + "name": "JBCS httpd 2.4.57 SP1", + "product_id": "JBCS httpd 2.4.57 SP1", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jboss_core_services:1" + } + } + } + ], + "category": "product_family", + "name": "Red Hat JBoss Core Services" + }, + { + "branches": [ + { + "category": "product_name", + "name": "RODOO 1.0 for RHEL 8", + "product": { + "name": "RODOO 1.0 for RHEL 8", + "product_id": "8Base-RODOO-1.0", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:run_once_duration_override_operator:1.0::el8" + } + } + } + ], + "category": "product_family", + "name": "Run Once Duration Override Operator" + }, + { + "branches": [ + { + "category": "product_name", + "name": "OSSO 1.1 for RHEL 8", + "product": { + "name": "OSSO 1.1 for RHEL 8", + "product_id": "8Base-OSSO-1.1", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift_secondary_scheduler:1.1::el8" + } + } + } + ], + "category": "product_family", + "name": "Openshift Secondary Scheduler Operator" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product": { + "name": "Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:acm:2.8::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat ACM" + }, + { + "branches": [ + { + "category": "product_name", + "name": "multicluster engine for Kubernetes 2.3 for RHEL 8", + "product": { + "name": "multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:multicluster_engine:2.3::el8" + } + } + } + ], + "category": "product_family", + "name": "multicluster engine for Kubernetes" + }, + { + "branches": [ + { + "category": "product_name", + "name": "8Base-OADP-1.1", + "product": { + "name": "8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift_api_data_protection:1.1::el8" + } + } + } + ], + "category": "product_family", + "name": "OpenShift API for Data Protection" + }, + { + "branches": [ + { + "category": "product_name", + "name": "8Base-OADP-1.2", + "product": { + "name": "8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift_api_data_protection:1.2::el8" + } + } + } + ], + "category": "product_family", + "name": "OpenShift API for Data Protection" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream (v. 9)", + "product": { + "name": "Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:9::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Spring Boot 2.7.17", + "product": { + "name": "Spring Boot 2.7.17", + "product_id": "Spring Boot 2.7.17", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift_application_runtimes:1.0" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Application Runtimes" + }, + { + "branches": [ + { + "category": "product_name", + "name": "RHINT Camel-K-1.10.4", + "product": { + "name": "RHINT Camel-K-1.10.4", + "product_id": "RHINT Camel-K-1.10.4", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:camel_k:1.10.4" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Integration" + }, + { + "branches": [ + { + "category": "product_name", + "name": "8Base-MTV-2.4", + "product": { + "name": "8Base-MTV-2.4", + "product_id": "9Base-MTV-2.4", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:migration_toolkit_virtualization:2.4::el9" + } + } + }, + { + "category": "product_name", + "name": "8Base-MTV-2.4", + "product": { + "name": "8Base-MTV-2.4", + "product_id": "8Base-MTV-2.4", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:migration_toolkit_virtualization:2.4::el8" + } + } + } + ], + "category": "product_family", + "name": "Migration Toolkit for Virtualization" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.12", + "product": { + "name": "Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.12::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.12", + "product": { + "name": "Red Hat OpenShift Container Platform 4.12", + "product_id": "9Base-RHOSE-4.12", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.12::el9" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Enterprise" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenShift distributed tracing 2.9", + "product": { + "name": "Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift_distributed_tracing:2.9::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift distributed tracing" + }, + { + "branches": [ + { + "category": "product_name", + "name": "RHACS 3.74 for RHEL 8", + "product": { + "name": "RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:advanced_cluster_security:3.74::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Advanced Cluster Security for Kubernetes" + }, + { + "branches": [ + { + "category": "product_name", + "name": "RHOL 5.5 for RHEL 8", + "product": { + "name": "RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:logging:5.5::el8" + } + } + } + ], + "category": "product_family", + "name": "Logging Subsystem for Red Hat OpenShift" + }, + { + "branches": [ + { + "category": "product_name", + "name": "8Base-MTV-2.5", + "product": { + "name": "8Base-MTV-2.5", + "product_id": "9Base-MTV-2.5", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:migration_toolkit_virtualization:2.5::el9" + } + } + }, + { + "category": "product_name", + "name": "8Base-MTV-2.5", + "product": { + "name": "8Base-MTV-2.5", + "product_id": "8Base-MTV-2.5", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:migration_toolkit_virtualization:2.5::el8" + } + } + } + ], + "category": "product_family", + "name": "Migration Toolkit for Virtualization" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream (v. 9)", + "product": { + "name": "Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:9::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "RHINT Camel-Springboot 3.20.3", + "product": { + "name": "RHINT Camel-Springboot 3.20.3", + "product_id": "RHINT Camel-Springboot 3.20.3", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:camel_spring_boot:3.20.3" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Integration" + }, + { + "branches": [ + { + "category": "product_name", + "name": "RHINT Camel-Springboot 4.0.1", + "product": { + "name": "RHINT Camel-Springboot 4.0.1", + "product_id": "RHINT Camel-Springboot 4.0.1", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:camel_spring_boot:4.0.1" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Integration" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.13", + "product": { + "name": "Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.13::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.13", + "product": { + "name": "Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.13::el9" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Enterprise" + }, + { + "branches": [ + { + "category": "product_name", + "name": "OpenShift Pipelines version 1.12 for RHEL 8", + "product": { + "name": "OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift_pipelines:1.12::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Pipelines" + }, + { + "branches": [ + { + "category": "product_name", + "name": "RHACS 4.2 for RHEL 8", + "product": { + "name": "RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:advanced_cluster_security:4.2::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Advanced Cluster Security for Kubernetes" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product": { + "name": "Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_eus:9.0::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "OpenShift Pipelines version 1.12 for RHEL 8", + "product": { + "name": "OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift_pipelines:1.12::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Pipelines" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Cryostat 2 on RHEL 8", + "product": { + "name": "Cryostat 2 on RHEL 8", + "product_id": "8Base-Cryostat-2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:cryostat:2::el8" + } + } + } + ], + "category": "product_family", + "name": "Cryostat" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Self Node Remediation 0.7 for RHEL 8", + "product": { + "name": "Self Node Remediation 0.7 for RHEL 8", + "product_id": "8Base-SELF-NODE-REMEDIATION-0.7", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:workload_availability_self_node_remediation:0.7::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Workload Availability" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Node Maintenance Operator 5.0 for RHEL 8", + "product": { + "name": "Node Maintenance Operator 5.0 for RHEL 8", + "product_id": "8Base-NODE-MAINTENANCE-OPERATOR-5.0", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:workload_availability_node_maintenance:5.0::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Workload Availability" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Self Node Remediation 0.5 for RHEL 8", + "product": { + "name": "Self Node Remediation 0.5 for RHEL 8", + "product_id": "8Base-SELF-NODE-REMEDIATION-0.5", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:workload_availability_self_node_remediation:0.5::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Workload Availability" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Node Maintenance Operator 5.2 for RHEL 8", + "product": { + "name": "Node Maintenance Operator 5.2 for RHEL 8", + "product_id": "8Base-NODE-MAINTENANCE-OPERATOR-5.2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:workload_availability_node_maintenance:5.2::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Workload Availability" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Cost Management for RHEL 8", + "product": { + "name": "Cost Management for RHEL 8", + "product_id": "8Base-costmanagement", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:cost_management:1::el8" + } + } + } + ], + "category": "product_family", + "name": "Cost Management" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat AMQ Streams 2.2.2", + "product": { + "name": "Red Hat AMQ Streams 2.2.2", + "product_id": "Red Hat AMQ Streams 2.2.2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:amq_streams:2" + } + } + } + ], + "category": "product_family", + "name": "Red Hat JBoss AMQ" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream E4S (v. 8.1)", + "product": { + "name": "Red Hat Enterprise Linux AppStream E4S (v. 8.1)", + "product_id": "AppStream-8.1.0.Z.E4S", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_e4s:8.1::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream (v. 8)", + "product": { + "name": "Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:8::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product": { + "name": "Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_eus:8.6::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Satellite Client 6 for RHEL 6", + "product": { + "name": "Satellite Client 6 for RHEL 6", + "product_id": "6Server-satellite-client-6", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_satellite_client:6::el6" + } + } + }, + { + "category": "product_name", + "name": "Satellite Client 6 for RHEL 7", + "product": { + "name": "Satellite Client 6 for RHEL 7", + "product_id": "7Client-satellite-client-6", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_satellite_client:6::el7" + } + } + }, + { + "category": "product_name", + "name": "Satellite Client 6 for RHEL 7", + "product": { + "name": "Satellite Client 6 for RHEL 7", + "product_id": "7ComputeNode-satellite-client-6", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_satellite_client:6::el7" + } + } + }, + { + "category": "product_name", + "name": "Satellite Client 6 for RHEL 7", + "product": { + "name": "Satellite Client 6 for RHEL 7", + "product_id": "7Server-satellite-client-6", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_satellite_client:6::el7" + } + } + }, + { + "category": "product_name", + "name": "Satellite Client 6 for RHEL 7", + "product": { + "name": "Satellite Client 6 for RHEL 7", + "product_id": "7Workstation-satellite-client-6", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_satellite_client:6::el7" + } + } + }, + { + "category": "product_name", + "name": "Satellite Client 6 for RHEL 8", + "product": { + "name": "Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_satellite_client:6::el8" + } + } + }, + { + "category": "product_name", + "name": "Satellite Client 6 for RHEL 9", + "product": { + "name": "Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_satellite_client:6::el9" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Satellite Client" + }, + { + "branches": [ + { + "category": "product_name", + "name": "NETOBSERV 1.4 for RHEL 9", + "product": { + "name": "NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:network_observ_optr:1.4.0::el9" + } + } + } + ], + "category": "product_family", + "name": "Network Observability" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Service Telemetry Framework 1.5 for RHEL 8", + "product": { + "name": "Service Telemetry Framework 1.5 for RHEL 8", + "product_id": "8Base-STF-1.5", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:service_telemetry_framework:1.5::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenStack Platform" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Satellite 6.11 for RHEL 7", + "product": { + "name": "Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite_utils:6.11::el7" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.11 for RHEL 7", + "product": { + "name": "Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite_capsule:6.11::el7" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.11 for RHEL 7", + "product": { + "name": "Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite:6.11::el7" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.11 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite_utils:6.11::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.11 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite:6.11::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.11 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite_capsule:6.11::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Satellite 6" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenStack Platform 17.1", + "product": { + "name": "Red Hat OpenStack Platform 17.1", + "product_id": "9Base-RHOS-17.1", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openstack:17.1::el9" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenStack Platform" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Satellite 6.12 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite_capsule:6.12::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.12 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite:6.12::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.12 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite_utils:6.12::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Satellite 6" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenStack Platform 16.2", + "product": { + "name": "Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openstack:16.2::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenStack Platform" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenStack Platform 16.1", + "product": { + "name": "Red Hat OpenStack Platform 16.1", + "product_id": "8Base-RHOS-16.1", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openstack:16.1::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenStack Platform" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenStack Platform 17.1", + "product": { + "name": "Red Hat OpenStack Platform 17.1", + "product_id": "8Base-RHOS-17.1", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openstack:17.1::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenStack Platform" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenStack Platform 16.2", + "product": { + "name": "Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openstack:16.2::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenStack Platform" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenStack Platform 17.1", + "product": { + "name": "Red Hat OpenStack Platform 17.1", + "product_id": "9Base-RHOS-17.1", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openstack:17.1::el9" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenStack Platform" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat AMQ Streams 2.5.1", + "product": { + "name": "Red Hat AMQ Streams 2.5.1", + "product_id": "Red Hat AMQ Streams 2.5.1", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:amq_streams:2" + } + } + } + ], + "category": "product_family", + "name": "Red Hat JBoss AMQ" + }, + { + "branches": [ + { + "category": "product_name", + "name": "EAP-XP 4.0.0 on EAP 7.4.13", + "product": { + "name": "EAP-XP 4.0.0 on EAP 7.4.13", + "product_id": "EAP-XP 4.0.0 on EAP 7.4.13", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jbosseapxp" + } + } + } + ], + "category": "product_family", + "name": "Red Hat JBoss Enterprise Application Platform" + }, + { + "branches": [ + { + "category": "product_name", + "name": "RHBOP 8.38.0 SP2", + "product": { + "name": "RHBOP 8.38.0 SP2", + "product_id": "RHBOP 8.38.0 SP2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:optaplanner:::el6" + } + } + } + ], + "category": "product_family", + "name": "Red Hat build of OptaPlanner" + }, + { + "branches": [ + { + "category": "product_name", + "name": "RHOL 5.6 for RHEL 8", + "product": { + "name": "RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:logging:5.6::el8" + } + } + } + ], + "category": "product_family", + "name": "Logging Subsystem for Red Hat OpenShift" + }, + { + "branches": [ + { + "category": "product_name", + "name": "RHOL 5.7 for RHEL 8", + "product": { + "name": "RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:logging:5.7::el8" + } + } + } + ], + "category": "product_family", + "name": "Logging Subsystem for Red Hat OpenShift" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenStack Platform 16.2", + "product": { + "name": "Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openstack:16.2::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenStack Platform" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream (v. 8)", + "product": { + "name": "Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:8::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat AMQ Broker 7", + "product": { + "name": "Red Hat AMQ Broker 7", + "product_id": "Red Hat AMQ Broker 7", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:amq_broker:7" + } + } + } + ], + "category": "product_family", + "name": "Red Hat JBoss AMQ" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat AMQ Broker 7", + "product": { + "name": "Red Hat AMQ Broker 7", + "product_id": "Red Hat AMQ Broker 7", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:amq_broker:7" + } + } + } + ], + "category": "product_family", + "name": "Red Hat JBoss AMQ" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Satellite 6.13 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite_capsule:6.13::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.13 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite:6.13::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.13 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite_utils:6.13::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.13 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-maintenance", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite_maintenance:6.13::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Satellite 6" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product": { + "name": "Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jboss_enterprise_application_platform:7.4::el7" + } + } + }, + { + "category": "product_name", + "name": "Red Hat JBoss EAP 7.4 for RHEL 8", + "product": { + "name": "Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jboss_enterprise_application_platform:7.4::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat JBoss EAP 7.4 for RHEL 9", + "product": { + "name": "Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jboss_enterprise_application_platform:7.4::el9" + } + } + } + ], + "category": "product_family", + "name": "Red Hat JBoss Enterprise Application Platform" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream (v. 9)", + "product": { + "name": "Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:9::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux CRB (v. 9)", + "product": { + "name": "Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:9::crb" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream (v. 9)", + "product": { + "name": "Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:9::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product": { + "name": "Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_eus:9.0::appstream" + } + } + }, + { + "category": "product_name", + "name": "Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product": { + "name": "Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_eus:9.0::crb" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "EAP 7.4 async for CVE-2023-44487 (Rapid Reset)", + "product": { + "name": "EAP 7.4 async for CVE-2023-44487 (Rapid Reset)", + "product_id": "EAP 7.4 async for CVE-2023-44487 (Rapid Reset)", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jboss_enterprise_application_platform:7.4" + } + } + } + ], + "category": "product_family", + "name": "Red Hat JBoss Enterprise Application Platform" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream (v. 8)", + "product": { + "name": "Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:8::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream (v. 9)", + "product": { + "name": "Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:9::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream (v. 8)", + "product": { + "name": "Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:8::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream AUS (v.8.4)", + "product": { + "name": "Red Hat Enterprise Linux AppStream AUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.AUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_aus:8.4::appstream" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product": { + "name": "Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_e4s:8.4::appstream" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream TUS (v.8.4)", + "product": { + "name": "Red Hat Enterprise Linux AppStream TUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.TUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_tus:8.4::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product": { + "name": "Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_eus:8.6::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product": { + "name": "Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_eus:9.0::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "RHACS 4.1 for RHEL 8", + "product": { + "name": "RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:advanced_cluster_security:4.1::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Advanced Cluster Security for Kubernetes" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.11", + "product": { + "name": "Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.11::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Enterprise" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream (v. 9)", + "product": { + "name": "Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:9::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream (v. 8)", + "product": { + "name": "Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:8::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux CRB (v. 8)", + "product": { + "name": "Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:8::crb" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux BaseOS (v. 8)", + "product": { + "name": "Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/o:redhat:enterprise_linux:8::baseos" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux Client (v. 7)", + "product": { + "name": "Red Hat Enterprise Linux Client (v. 7)", + "product_id": "7Client-7.9.Z", + "product_identification_helper": { + "cpe": "cpe:/o:redhat:enterprise_linux:7::client" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux ComputeNode (v. 7)", + "product": { + "name": "Red Hat Enterprise Linux ComputeNode (v. 7)", + "product_id": "7ComputeNode-7.9.Z", + "product_identification_helper": { + "cpe": "cpe:/o:redhat:enterprise_linux:7::computenode" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux Server (v. 7)", + "product": { + "name": "Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-7.9.Z", + "product_identification_helper": { + "cpe": "cpe:/o:redhat:enterprise_linux:7::server" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux Workstation (v. 7)", + "product": { + "name": "Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-7.9.Z", + "product_identification_helper": { + "cpe": "cpe:/o:redhat:enterprise_linux:7::workstation" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Software Collections for RHEL(v. 7)", + "product": { + "name": "Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_software_collections:3::el7" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Software Collections for RHEL Workstation(v. 7)", + "product": { + "name": "Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_software_collections:3::el7" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Software Collections" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Software Collections for RHEL(v. 7)", + "product": { + "name": "Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_software_collections:3::el7" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Software Collections for RHEL Workstation(v. 7)", + "product": { + "name": "Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_software_collections:3::el7" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Software Collections" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux CRB (v. 9)", + "product": { + "name": "Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:9::crb" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux BaseOS (v. 9)", + "product": { + "name": "Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/o:redhat:enterprise_linux:9::baseos" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.12", + "product": { + "name": "Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.12::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat OpenShift Container Platform 4.12", + "product": { + "name": "Red Hat OpenShift Container Platform 4.12", + "product_id": "9Base-RHOSE-4.12", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:openshift:4.12::el9" + } + } + } + ], + "category": "product_family", + "name": "Red Hat OpenShift Enterprise" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product": { + "name": "Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4-Cloud-Billing", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:ansible_automation_platform_cloud_billing:2.4::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product": { + "name": "Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:ansible_automation_platform:2.4::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product": { + "name": "Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:ansible_automation_platform:2.4::el9" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Ansible Automation Platform" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Migration Toolkit for Runtimes 1 on RHEL 8", + "product": { + "name": "Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:migration_toolkit_runtimes:1.0::el8" + } + } + } + ], + "category": "product_family", + "name": "Migration Toolkit for Runtimes" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product": { + "name": "Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4-Developer-1.1", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:ansible_automation_platform_developer:2.4::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product": { + "name": "Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4-Inside-1.2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:ansible_automation_platform_inside:2.4::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product": { + "name": "Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:ansible_automation_platform:2.4::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product": { + "name": "Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4-Inside-1.2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:ansible_automation_platform_inside:2.4::el9" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product": { + "name": "Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:ansible_automation_platform:2.4::el9" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product": { + "name": "Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4-Developer-1.1", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:ansible_automation_platform_developer:2.4::el9" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Ansible Automation Platform" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product": { + "name": "Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_eus:8.6::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat JBoss Web Server 5.7 for RHEL 7 Server", + "product": { + "name": "Red Hat JBoss Web Server 5.7 for RHEL 7 Server", + "product_id": "7Server-JWS-5.7", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jboss_enterprise_web_server:5.7::el7" + } + } + }, + { + "category": "product_name", + "name": "Red Hat JBoss Web Server 5.7 for RHEL 8", + "product": { + "name": "Red Hat JBoss Web Server 5.7 for RHEL 8", + "product_id": "8Base-JWS-5.7", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jboss_enterprise_web_server:5.7::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat JBoss Web Server 5.7 for RHEL 9", + "product": { + "name": "Red Hat JBoss Web Server 5.7 for RHEL 9", + "product_id": "9Base-JWS-5.7", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jboss_enterprise_web_server:5.7::el9" + } + } + } + ], + "category": "product_family", + "name": "Red Hat JBoss Web Server" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Migration Toolkit for Runtimes 1 on RHEL 8", + "product": { + "name": "Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "Migration Toolkit for Runtimes 1 on RHEL 8", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:migration_toolkit_runtimes:1.0::el8" + } + } + } + ], + "category": "product_family", + "name": "Migration Toolkit for Runtimes" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat JBoss Web Server 5", + "product": { + "name": "Red Hat JBoss Web Server 5", + "product_id": "Red Hat JBoss Web Server 5", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jboss_enterprise_web_server:5.7" + } + } + } + ], + "category": "product_family", + "name": "Red Hat JBoss Web Server" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux BaseOS AUS (v. 8.2)", + "product": { + "name": "Red Hat Enterprise Linux BaseOS AUS (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.AUS", + "product_identification_helper": { + "cpe": "cpe:/o:redhat:rhel_aus:8.2::baseos" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux BaseOS E4S (v. 8.2)", + "product": { + "name": "Red Hat Enterprise Linux BaseOS E4S (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.E4S", + "product_identification_helper": { + "cpe": "cpe:/o:redhat:rhel_e4s:8.2::baseos" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux BaseOS TUS (v. 8.2)", + "product": { + "name": "Red Hat Enterprise Linux BaseOS TUS (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.TUS", + "product_identification_helper": { + "cpe": "cpe:/o:redhat:rhel_tus:8.2::baseos" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux BaseOS AUS (v.8.4)", + "product": { + "name": "Red Hat Enterprise Linux BaseOS AUS (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.AUS", + "product_identification_helper": { + "cpe": "cpe:/o:redhat:rhel_aus:8.4::baseos" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux BaseOS E4S (v.8.4)", + "product": { + "name": "Red Hat Enterprise Linux BaseOS E4S (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.E4S", + "product_identification_helper": { + "cpe": "cpe:/o:redhat:rhel_e4s:8.4::baseos" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux BaseOS TUS (v.8.4)", + "product": { + "name": "Red Hat Enterprise Linux BaseOS TUS (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.TUS", + "product_identification_helper": { + "cpe": "cpe:/o:redhat:rhel_tus:8.4::baseos" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Integration Camel Quarkus", + "product": { + "name": "Red Hat Integration Camel Quarkus", + "product_id": "Red Hat Integration Camel Quarkus", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:camel_quarkus:2.13" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Integration" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product": { + "name": "Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_eus:9.0::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux BaseOS E4S (v. 8.1)", + "product": { + "name": "Red Hat Enterprise Linux BaseOS E4S (v. 8.1)", + "product_id": "BaseOS-8.1.0.Z.E4S", + "product_identification_helper": { + "cpe": "cpe:/o:redhat:rhel_e4s:8.1::baseos" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product": { + "name": "Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS", + "product_identification_helper": { + "cpe": "cpe:/o:redhat:rhel_eus:8.6::baseos" + } + } + }, + { + "category": "product_name", + "name": "Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product": { + "name": "Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_eus:8.6::crb" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product": { + "name": "Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS", + "product_identification_helper": { + "cpe": "cpe:/o:redhat:rhel_eus:9.0::baseos" + } + } + }, + { + "category": "product_name", + "name": "Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product": { + "name": "Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_eus:9.0::crb" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream (v. 9)", + "product": { + "name": "Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:9::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product": { + "name": "Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:devtools:2023::el7" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product": { + "name": "Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:devtools:2023::el7" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Developer Tools" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream (v. 8)", + "product": { + "name": "Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:8::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Data Grid 8.4.5", + "product": { + "name": "Red Hat Data Grid 8.4.5", + "product_id": "Red Hat Data Grid 8.4.5", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jboss_data_grid:8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat JBoss Data Grid" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux CRB (v. 9)", + "product": { + "name": "Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:9::crb" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream (v. 9)", + "product": { + "name": "Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:9::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream (v. 9)", + "product": { + "name": "Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:9::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Software Collections for RHEL(v. 7)", + "product": { + "name": "Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_software_collections:3::el7" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Software Collections for RHEL Workstation(v. 7)", + "product": { + "name": "Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_software_collections:3::el7" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Software Collections" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat build of Quarkus 2.13.8.SP3", + "product": { + "name": "Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:quarkus:2.13::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat build of Quarkus" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux CRB (v. 8)", + "product": { + "name": "Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:8::crb" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream (v. 8)", + "product": { + "name": "Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:8::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux CRB (v. 9)", + "product": { + "name": "Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:9::crb" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream (v. 9)", + "product": { + "name": "Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:9::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product": { + "name": "Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_eus:9.0::appstream" + } + } + }, + { + "category": "product_name", + "name": "Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product": { + "name": "Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_eus:9.0::crb" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux CRB (v. 9)", + "product": { + "name": "Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:9::crb" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream (v. 9)", + "product": { + "name": "Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:9::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream (v. 8)", + "product": { + "name": "Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:8::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux CRB (v. 8)", + "product": { + "name": "Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:8::crb" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream (v. 8)", + "product": { + "name": "Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:8::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product": { + "name": "Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_eus:9.0::appstream" + } + } + }, + { + "category": "product_name", + "name": "Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product": { + "name": "Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_eus:9.0::crb" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product": { + "name": "Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_eus:8.6::crb" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product": { + "name": "Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_eus:8.6::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": ".NET Core on Red Hat Enterprise Linux Workstation (v. 7)", + "product": { + "name": ".NET Core on Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-dotNET-6.0", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_dotnet:6.0::el7" + } + } + }, + { + "category": "product_name", + "name": ".NET Core on Red Hat Enterprise Linux ComputeNode (v. 7)", + "product": { + "name": ".NET Core on Red Hat Enterprise Linux ComputeNode (v. 7)", + "product_id": "7ComputeNode-dotNET-6.0", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_dotnet:6.0::el7" + } + } + }, + { + "category": "product_name", + "name": ".NET Core on Red Hat Enterprise Linux Server (v. 7)", + "product": { + "name": ".NET Core on Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-dotNET-6.0", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_dotnet:6.0::el7" + } + } + } + ], + "category": "product_family", + "name": ".NET Core on Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product": { + "name": "Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:rhel_eus:8.6::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Enterprise Linux AppStream (v. 8)", + "product": { + "name": "Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:enterprise_linux:8::appstream" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Enterprise Linux" + }, + { + "category": "product_version", + "name": "netty-codec-http2", + "product": { + "name": "netty-codec-http2", + "product_id": "netty-codec-http2" + } + }, + { + "category": "product_version", + "name": "openshift-logging/fluentd-rhel8", + "product": { + "name": "openshift-logging/fluentd-rhel8", + "product_id": "openshift-logging/fluentd-rhel8" + } + }, + { + "category": "product_version", + "name": "openshift-logging/kibana6-rhel8", + "product": { + "name": "openshift-logging/kibana6-rhel8", + "product_id": "openshift-logging/kibana6-rhel8" + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-loki-rhel8", + "product": { + "name": "openshift-logging/logging-loki-rhel8", + "product_id": "openshift-logging/logging-loki-rhel8" + } + }, + { + "category": "product_version", + "name": "lvms4/topolvm-rhel8", + "product": { + "name": "lvms4/topolvm-rhel8", + "product_id": "lvms4/topolvm-rhel8" + } + }, + { + "category": "product_version", + "name": "helm", + "product": { + "name": "helm", + "product_id": "helm" + } + }, + { + "category": "product_version", + "name": "ocp-tools-4/jenkins-rhel8", + "product": { + "name": "ocp-tools-4/jenkins-rhel8", + "product_id": "ocp-tools-4/jenkins-rhel8" + } + }, + { + "category": "product_version", + "name": "odo", + "product": { + "name": "odo", + "product_id": "odo" + } + }, + { + "category": "product_version", + "name": "knative-eventing", + "product": { + "name": "knative-eventing", + "product_id": "knative-eventing" + } + }, + { + "category": "product_version", + "name": "knative-serving", + "product": { + "name": "knative-serving", + "product_id": "knative-serving" + } + }, + { + "category": "product_version", + "name": "openshift-golang-builder-container", + "product": { + "name": "openshift-golang-builder-container", + "product_id": "openshift-golang-builder-container" + } + }, + { + "category": "product_version", + "name": "3scale-amp-backend-container", + "product": { + "name": "3scale-amp-backend-container", + "product_id": "3scale-amp-backend-container" + } + }, + { + "category": "product_version", + "name": "3scale-operator-container", + "product": { + "name": "3scale-operator-container", + "product_id": "3scale-operator-container" + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-23/aap-cloud-ui-rhel8", + "product": { + "name": "ansible-automation-platform-23/aap-cloud-ui-rhel8", + "product_id": "ansible-automation-platform-23/aap-cloud-ui-rhel8" + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-23/azure-ui-rhel8", + "product": { + "name": "ansible-automation-platform-23/azure-ui-rhel8", + "product_id": "ansible-automation-platform-23/azure-ui-rhel8" + } + }, + { + "category": "product_version", + "name": "io.quarkus/quarkus-undertow", + "product": { + "name": "io.quarkus/quarkus-undertow", + "product_id": "io.quarkus/quarkus-undertow" + } + }, + { + "category": "product_version", + "name": "ceph", + "product": { + "name": "ceph", + "product_id": "ceph" + } + }, + { + "category": "product_version", + "name": "envoy-proxy", + "product": { + "name": "envoy-proxy", + "product_id": "envoy-proxy" + } + }, + { + "category": "product_version", + "name": "grafana", + "product": { + "name": "grafana", + "product_id": "grafana" + } + }, + { + "category": "product_version", + "name": "grpc", + "product": { + "name": "grpc", + "product_id": "grpc" + } + }, + { + "category": "product_version", + "name": "haproxy", + "product": { + "name": "haproxy", + "product_id": "haproxy" + } + }, + { + "category": "product_version", + "name": "nghttp2", + "product": { + "name": "nghttp2", + "product_id": "nghttp2" + } + }, + { + "category": "product_version", + "name": "rhceph/rhceph-5-dashboard-rhel8", + "product": { + "name": "rhceph/rhceph-5-dashboard-rhel8", + "product_id": "rhceph/rhceph-5-dashboard-rhel8" + } + }, + { + "category": "product_version", + "name": "openstack-haproxy-container", + "product": { + "name": "openstack-haproxy-container", + "product_id": "openstack-haproxy-container" + } + }, + { + "category": "product_version", + "name": "openstack-ironic-neutron-agent-container", + "product": { + "name": "openstack-ironic-neutron-agent-container", + "product_id": "openstack-ironic-neutron-agent-container" + } + }, + { + "category": "product_version", + "name": "openstack-neutron-agent-base-container", + "product": { + "name": "openstack-neutron-agent-base-container", + "product_id": "openstack-neutron-agent-base-container" + } + }, + { + "category": "product_version", + "name": "openstack-neutron-base-container", + "product": { + "name": "openstack-neutron-base-container", + "product_id": "openstack-neutron-base-container" + } + }, + { + "category": "product_version", + "name": "openstack-neutron-dhcp-agent-container", + "product": { + "name": "openstack-neutron-dhcp-agent-container", + "product_id": "openstack-neutron-dhcp-agent-container" + } + }, + { + "category": "product_version", + "name": "openstack-neutron-l3-agent-container", + "product": { + "name": "openstack-neutron-l3-agent-container", + "product_id": "openstack-neutron-l3-agent-container" + } + }, + { + "category": "product_version", + "name": "openstack-neutron-metadata-agent-container", + "product": { + "name": "openstack-neutron-metadata-agent-container", + "product_id": "openstack-neutron-metadata-agent-container" + } + }, + { + "category": "product_version", + "name": "openstack-neutron-metadata-agent-ovn-container", + "product": { + "name": "openstack-neutron-metadata-agent-ovn-container", + "product_id": "openstack-neutron-metadata-agent-ovn-container" + } + }, + { + "category": "product_version", + "name": "openstack-neutron-openvswitch-agent-container", + "product": { + "name": "openstack-neutron-openvswitch-agent-container", + "product_id": "openstack-neutron-openvswitch-agent-container" + } + }, + { + "category": "product_version", + "name": "openstack-neutron-server-container", + "product": { + "name": "openstack-neutron-server-container", + "product_id": "openstack-neutron-server-container" + } + }, + { + "category": "product_version", + "name": "openstack-neutron-sriov-agent-container", + "product": { + "name": "openstack-neutron-sriov-agent-container", + "product_id": "openstack-neutron-sriov-agent-container" + } + }, + { + "category": "product_version", + "name": "rhceph/rhceph-haproxy-rhel9", + "product": { + "name": "rhceph/rhceph-haproxy-rhel9", + "product_id": "rhceph/rhceph-haproxy-rhel9" + } + }, + { + "category": "product_version", + "name": "redhat-certification-cnf", + "product": { + "name": "redhat-certification-cnf", + "product_id": "redhat-certification-cnf" + } + }, + { + "category": "product_version", + "name": "redhat-certification-preflight", + "product": { + "name": "redhat-certification-preflight", + "product_id": "redhat-certification-preflight" + } + }, + { + "category": "product_version", + "name": "netty", + "product": { + "name": "netty", + "product_id": "netty" + } + }, + { + "category": "product_version", + "name": "undertow", + "product": { + "name": "undertow", + "product_id": "undertow" + } + }, + { + "category": "product_version", + "name": "rhdh-hub-container", + "product": { + "name": "rhdh-hub-container", + "product_id": "rhdh-hub-container" + } + }, + { + "category": "product_version", + "name": "httpd", + "product": { + "name": "httpd", + "product_id": "httpd" + } + }, + { + "category": "product_version", + "name": "tomcat6", + "product": { + "name": "tomcat6", + "product_id": "tomcat6" + } + }, + { + "category": "product_version", + "name": "tomcat", + "product": { + "name": "tomcat", + "product_id": "tomcat" + } + }, + { + "category": "product_version", + "name": "container-tools:4.0/buildah", + "product": { + "name": "container-tools:4.0/buildah", + "product_id": "container-tools:4.0/buildah" + } + }, + { + "category": "product_version", + "name": "container-tools:4.0/conmon", + "product": { + "name": "container-tools:4.0/conmon", + "product_id": "container-tools:4.0/conmon" + } + }, + { + "category": "product_version", + "name": "container-tools:4.0/containernetworking-plugins", + "product": { + "name": "container-tools:4.0/containernetworking-plugins", + "product_id": "container-tools:4.0/containernetworking-plugins" + } + }, + { + "category": "product_version", + "name": "container-tools:4.0/podman", + "product": { + "name": "container-tools:4.0/podman", + "product_id": "container-tools:4.0/podman" + } + }, + { + "category": "product_version", + "name": "container-tools:4.0/skopeo", + "product": { + "name": "container-tools:4.0/skopeo", + "product_id": "container-tools:4.0/skopeo" + } + }, + { + "category": "product_version", + "name": "container-tools:4.0/toolbox", + "product": { + "name": "container-tools:4.0/toolbox", + "product_id": "container-tools:4.0/toolbox" + } + }, + { + "category": "product_version", + "name": "container-tools:rhel8/buildah", + "product": { + "name": "container-tools:rhel8/buildah", + "product_id": "container-tools:rhel8/buildah" + } + }, + { + "category": "product_version", + "name": "container-tools:rhel8/containernetworking-plugins", + "product": { + "name": "container-tools:rhel8/containernetworking-plugins", + "product_id": "container-tools:rhel8/containernetworking-plugins" + } + }, + { + "category": "product_version", + "name": "container-tools:rhel8/podman", + "product": { + "name": "container-tools:rhel8/podman", + "product_id": "container-tools:rhel8/podman" + } + }, + { + "category": "product_version", + "name": "container-tools:rhel8/skopeo", + "product": { + "name": "container-tools:rhel8/skopeo", + "product_id": "container-tools:rhel8/skopeo" + } + }, + { + "category": "product_version", + "name": "container-tools:rhel8/toolbox", + "product": { + "name": "container-tools:rhel8/toolbox", + "product_id": "container-tools:rhel8/toolbox" + } + }, + { + "category": "product_version", + "name": "git-lfs", + "product": { + "name": "git-lfs", + "product_id": "git-lfs" + } + }, + { + "category": "product_version", + "name": "grafana-pcp", + "product": { + "name": "grafana-pcp", + "product_id": "grafana-pcp" + } + }, + { + "category": "product_version", + "name": "httpd:2.4/httpd", + "product": { + "name": "httpd:2.4/httpd", + "product_id": "httpd:2.4/httpd" + } + }, + { + "category": "product_version", + "name": "httpd:2.4/mod_http2", + "product": { + "name": "httpd:2.4/mod_http2", + "product_id": "httpd:2.4/mod_http2" + } + }, + { + "category": "product_version", + "name": "osbuild-composer", + "product": { + "name": "osbuild-composer", + "product_id": "osbuild-composer" + } + }, + { + "category": "product_version", + "name": "pki-deps:10.6/pki-servlet-engine", + "product": { + "name": "pki-deps:10.6/pki-servlet-engine", + "product_id": "pki-deps:10.6/pki-servlet-engine" + } + }, + { + "category": "product_version", + "name": "weldr-client", + "product": { + "name": "weldr-client", + "product_id": "weldr-client" + } + }, + { + "category": "product_version", + "name": "buildah", + "product": { + "name": "buildah", + "product_id": "buildah" + } + }, + { + "category": "product_version", + "name": "butane", + "product": { + "name": "butane", + "product_id": "butane" + } + }, + { + "category": "product_version", + "name": "containernetworking-plugins", + "product": { + "name": "containernetworking-plugins", + "product_id": "containernetworking-plugins" + } + }, + { + "category": "product_version", + "name": "dotnet8.0", + "product": { + "name": "dotnet8.0", + "product_id": "dotnet8.0" + } + }, + { + "category": "product_version", + "name": "ignition", + "product": { + "name": "ignition", + "product_id": "ignition" + } + }, + { + "category": "product_version", + "name": "mod_http2", + "product": { + "name": "mod_http2", + "product_id": "mod_http2" + } + }, + { + "category": "product_version", + "name": "nginx:1.22/nginx", + "product": { + "name": "nginx:1.22/nginx", + "product_id": "nginx:1.22/nginx" + } + }, + { + "category": "product_version", + "name": "nodejs:18/nodejs", + "product": { + "name": "nodejs:18/nodejs", + "product_id": "nodejs:18/nodejs" + } + }, + { + "category": "product_version", + "name": "nodejs:20/nodejs", + "product": { + "name": "nodejs:20/nodejs", + "product_id": "nodejs:20/nodejs" + } + }, + { + "category": "product_version", + "name": "pki-servlet-engine", + "product": { + "name": "pki-servlet-engine", + "product_id": "pki-servlet-engine" + } + }, + { + "category": "product_version", + "name": "podman", + "product": { + "name": "podman", + "product_id": "podman" + } + }, + { + "category": "product_version", + "name": "skopeo", + "product": { + "name": "skopeo", + "product_id": "skopeo" + } + }, + { + "category": "product_version", + "name": "jenkins", + "product": { + "name": "jenkins", + "product_id": "jenkins" + } + }, + { + "category": "product_version", + "name": "conmon", + "product": { + "name": "conmon", + "product_id": "conmon" + } + }, + { + "category": "product_version", + "name": "cri-tools", + "product": { + "name": "cri-tools", + "product_id": "cri-tools" + } + }, + { + "category": "product_version", + "name": "golang-github-prometheus-promu", + "product": { + "name": "golang-github-prometheus-promu", + "product_id": "golang-github-prometheus-promu" + } + }, + { + "category": "product_version", + "name": "openshift4/assisted-installer-rhel8", + "product": { + "name": "openshift4/assisted-installer-rhel8", + "product_id": "openshift4/assisted-installer-rhel8" + } + }, + { + "category": "product_version", + "name": "nodejs", + "product": { + "name": "nodejs", + "product_id": "nodejs" + } + }, + { + "category": "product_version", + "name": "rhods/odh-mm-rest-proxy-rhel8", + "product": { + "name": "rhods/odh-mm-rest-proxy-rhel8", + "product_id": "rhods/odh-mm-rest-proxy-rhel8" + } + }, + { + "category": "product_version", + "name": "devspaces/pluginregistry-rhel8", + "product": { + "name": "devspaces/pluginregistry-rhel8", + "product_id": "devspaces/pluginregistry-rhel8" + } + }, + { + "category": "product_version", + "name": "devspaces/udi-rhel8", + "product": { + "name": "devspaces/udi-rhel8", + "product_id": "devspaces/udi-rhel8" + } + }, + { + "category": "product_version", + "name": "rosa", + "product": { + "name": "rosa", + "product_id": "rosa" + } + }, + { + "category": "product_version", + "name": "openshift-sandboxed-containers-tech-preview/osc-rhel8-operator", + "product": { + "name": "openshift-sandboxed-containers-tech-preview/osc-rhel8-operator", + "product_id": "openshift-sandboxed-containers-tech-preview/osc-rhel8-operator" + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-console-plugin-rhel9", + "product": { + "name": "container-native-virtualization/kubevirt-console-plugin-rhel9", + "product_id": "container-native-virtualization/kubevirt-console-plugin-rhel9" + } + }, + { + "category": "product_version", + "name": "kubevirt", + "product": { + "name": "kubevirt", + "product_id": "kubevirt" + } + }, + { + "category": "product_version", + "name": "golang-github-infrawatch-apputils", + "product": { + "name": "golang-github-infrawatch-apputils", + "product_id": "golang-github-infrawatch-apputils" + } + }, + { + "category": "product_version", + "name": "rhosp-rhel8/openstack-haproxy", + "product": { + "name": "rhosp-rhel8/openstack-haproxy", + "product_id": "rhosp-rhel8/openstack-haproxy" + } + }, + { + "category": "product_version", + "name": "rhosp-rhel8/openstack-ironic-neutron-agent", + "product": { + "name": "rhosp-rhel8/openstack-ironic-neutron-agent", + "product_id": "rhosp-rhel8/openstack-ironic-neutron-agent" + } + }, + { + "category": "product_version", + "name": "rhosp-rhel8/openstack-neutron-base", + "product": { + "name": "rhosp-rhel8/openstack-neutron-base", + "product_id": "rhosp-rhel8/openstack-neutron-base" + } + }, + { + "category": "product_version", + "name": "rhosp-rhel8/openstack-neutron-dhcp-agent", + "product": { + "name": "rhosp-rhel8/openstack-neutron-dhcp-agent", + "product_id": "rhosp-rhel8/openstack-neutron-dhcp-agent" + } + }, + { + "category": "product_version", + "name": "rhosp-rhel8/openstack-neutron-l3-agent", + "product": { + "name": "rhosp-rhel8/openstack-neutron-l3-agent", + "product_id": "rhosp-rhel8/openstack-neutron-l3-agent" + } + }, + { + "category": "product_version", + "name": "rhosp-rhel8/openstack-neutron-metadata-agent", + "product": { + "name": "rhosp-rhel8/openstack-neutron-metadata-agent", + "product_id": "rhosp-rhel8/openstack-neutron-metadata-agent" + } + }, + { + "category": "product_version", + "name": "rhosp-rhel8/openstack-neutron-metadata-agent-ovn", + "product": { + "name": "rhosp-rhel8/openstack-neutron-metadata-agent-ovn", + "product_id": "rhosp-rhel8/openstack-neutron-metadata-agent-ovn" + } + }, + { + "category": "product_version", + "name": "rhosp-rhel8/openstack-neutron-openvswitch-agent", + "product": { + "name": "rhosp-rhel8/openstack-neutron-openvswitch-agent", + "product_id": "rhosp-rhel8/openstack-neutron-openvswitch-agent" + } + }, + { + "category": "product_version", + "name": "rhosp-rhel8/openstack-neutron-server", + "product": { + "name": "rhosp-rhel8/openstack-neutron-server", + "product_id": "rhosp-rhel8/openstack-neutron-server" + } + }, + { + "category": "product_version", + "name": "rhosp-rhel8/openstack-neutron-server-ovn", + "product": { + "name": "rhosp-rhel8/openstack-neutron-server-ovn", + "product_id": "rhosp-rhel8/openstack-neutron-server-ovn" + } + }, + { + "category": "product_version", + "name": "rhosp-rhel8/openstack-neutron-sriov-agent", + "product": { + "name": "rhosp-rhel8/openstack-neutron-sriov-agent", + "product_id": "rhosp-rhel8/openstack-neutron-sriov-agent" + } + }, + { + "category": "product_version", + "name": "python3-octavia-tests-tempest", + "product": { + "name": "python3-octavia-tests-tempest", + "product_id": "python3-octavia-tests-tempest" + } + }, + { + "category": "product_version", + "name": "rhosp-rhel8/openstack-neutron-agent-base", + "product": { + "name": "rhosp-rhel8/openstack-neutron-agent-base", + "product_id": "rhosp-rhel8/openstack-neutron-agent-base" + } + }, + { + "category": "product_version", + "name": "rhceph-haproxy-container", + "product": { + "name": "rhceph-haproxy-container", + "product_id": "rhceph-haproxy-container" + } + }, + { + "category": "product_version", + "name": "rhosp-rhel9/openstack-haproxy", + "product": { + "name": "rhosp-rhel9/openstack-haproxy", + "product_id": "rhosp-rhel9/openstack-haproxy" + } + }, + { + "category": "product_version", + "name": "rhosp-rhel9/openstack-ironic-neutron-agent", + "product": { + "name": "rhosp-rhel9/openstack-ironic-neutron-agent", + "product_id": "rhosp-rhel9/openstack-ironic-neutron-agent" + } + }, + { + "category": "product_version", + "name": "rhosp-rhel9/openstack-neutron-agent-base", + "product": { + "name": "rhosp-rhel9/openstack-neutron-agent-base", + "product_id": "rhosp-rhel9/openstack-neutron-agent-base" + } + }, + { + "category": "product_version", + "name": "rhosp-rhel9/openstack-neutron-base", + "product": { + "name": "rhosp-rhel9/openstack-neutron-base", + "product_id": "rhosp-rhel9/openstack-neutron-base" + } + }, + { + "category": "product_version", + "name": "rhosp-rhel9/openstack-neutron-dhcp-agent", + "product": { + "name": "rhosp-rhel9/openstack-neutron-dhcp-agent", + "product_id": "rhosp-rhel9/openstack-neutron-dhcp-agent" + } + }, + { + "category": "product_version", + "name": "rhosp-rhel9/openstack-neutron-l3-agent", + "product": { + "name": "rhosp-rhel9/openstack-neutron-l3-agent", + "product_id": "rhosp-rhel9/openstack-neutron-l3-agent" + } + }, + { + "category": "product_version", + "name": "rhosp-rhel9/openstack-neutron-metadata-agent", + "product": { + "name": "rhosp-rhel9/openstack-neutron-metadata-agent", + "product_id": "rhosp-rhel9/openstack-neutron-metadata-agent" + } + }, + { + "category": "product_version", + "name": "rhosp-rhel9/openstack-neutron-metadata-agent-ovn", + "product": { + "name": "rhosp-rhel9/openstack-neutron-metadata-agent-ovn", + "product_id": "rhosp-rhel9/openstack-neutron-metadata-agent-ovn" + } + }, + { + "category": "product_version", + "name": "rhosp-rhel9/openstack-neutron-openvswitch-agent", + "product": { + "name": "rhosp-rhel9/openstack-neutron-openvswitch-agent", + "product_id": "rhosp-rhel9/openstack-neutron-openvswitch-agent" + } + }, + { + "category": "product_version", + "name": "rhosp-rhel9/openstack-neutron-server", + "product": { + "name": "rhosp-rhel9/openstack-neutron-server", + "product_id": "rhosp-rhel9/openstack-neutron-server" + } + }, + { + "category": "product_version", + "name": "rhosp-rhel9/openstack-neutron-sriov-agent", + "product": { + "name": "rhosp-rhel9/openstack-neutron-sriov-agent", + "product_id": "rhosp-rhel9/openstack-neutron-sriov-agent" + } + }, + { + "category": "product_version", + "name": "quay/clair-rhel8", + "product": { + "name": "quay/clair-rhel8", + "product_id": "quay/clair-rhel8" + } + }, + { + "category": "product_version", + "name": "quay/quay-rhel8", + "product": { + "name": "quay/quay-rhel8", + "product_id": "quay/quay-rhel8" + } + }, + { + "category": "product_version", + "name": "satellite_client_6/foreman_ygg_worker", + "product": { + "name": "satellite_client_6/foreman_ygg_worker", + "product_id": "satellite_client_6/foreman_ygg_worker" + } + }, + { + "category": "product_version", + "name": "satellite_client_6/yggdrasil", + "product": { + "name": "satellite_client_6/yggdrasil", + "product_id": "satellite_client_6/yggdrasil" + } + }, + { + "category": "product_version", + "name": "rh-nginx118-nginx", + "product": { + "name": "rh-nginx118-nginx", + "product_id": "rh-nginx118-nginx" + } + }, + { + "category": "product_version", + "name": "golang", + "product": { + "name": "golang", + "product_id": "golang" + } + }, + { + "category": "product_version", + "name": "go-toolset-7-golang", + "product": { + "name": "go-toolset-7-golang", + "product_id": "go-toolset-7-golang" + } + }, + { + "category": "product_version", + "name": "heketi", + "product": { + "name": "heketi", + "product_id": "heketi" + } + }, + { + "category": "product_version", + "name": "web-terminal/web-terminal-rhel8-operator", + "product": { + "name": "web-terminal/web-terminal-rhel8-operator", + "product_id": "web-terminal/web-terminal-rhel8-operator" + } + }, + { + "branches": [ + { + "category": "product_version", + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.src", + "product": { + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.src", + "product_id": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.26.4-5.1.rhaos4.13.git969e013.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "kernel-0:5.14.0-284.41.1.el9_2.src", + "product": { + "name": "kernel-0:5.14.0-284.41.1.el9_2.src", + "product_id": "kernel-0:5.14.0-284.41.1.el9_2.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@5.14.0-284.41.1.el9_2?arch=src" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-0:5.14.0-284.41.1.rt14.326.el9_2.src", + "product": { + "name": "kernel-rt-0:5.14.0-284.41.1.rt14.326.el9_2.src", + "product_id": "kernel-rt-0:5.14.0-284.41.1.rt14.326.el9_2.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt@5.14.0-284.41.1.rt14.326.el9_2?arch=src" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.src", + "product": { + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.src", + "product_id": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "openstack-ironic-1:21.3.1-0.20231106145533.e53dc4f.el9.src", + "product": { + "name": "openstack-ironic-1:21.3.1-0.20231106145533.e53dc4f.el9.src", + "product_id": "openstack-ironic-1:21.3.1-0.20231106145533.e53dc4f.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openstack-ironic@21.3.1-0.20231106145533.e53dc4f.el9?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.src", + "product": { + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.src", + "product_id": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.26.4-5.1.rhaos4.13.git969e013.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.src", + "product": { + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.src", + "product_id": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.x86_64", + "product": { + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.x86_64", + "product_id": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.26.4-5.1.rhaos4.13.git969e013.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el9.x86_64", + "product": { + "name": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el9.x86_64", + "product_id": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debugsource@1.26.4-5.1.rhaos4.13.git969e013.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el9.x86_64", + "product": { + "name": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el9.x86_64", + "product_id": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debuginfo@1.26.4-5.1.rhaos4.13.git969e013.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "bpftool-0:7.0.0-284.41.1.el9_2.x86_64", + "product": { + "name": "bpftool-0:7.0.0-284.41.1.el9_2.x86_64", + "product_id": "bpftool-0:7.0.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool@7.0.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-core-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-core-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-core-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-core@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-cross-headers-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-cross-headers-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-cross-headers-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-cross-headers@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-debug-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-core-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-core-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-debug-core-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-devel-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-debug-devel-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-matched-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-devel-matched-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-debug-devel-matched-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-modules-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-debug-modules-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-core-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-modules-core-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-debug-modules-core-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-extra-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-modules-extra-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-debug-modules-extra-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-internal-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-modules-internal-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-debug-modules-internal-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-internal@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-partner-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-modules-partner-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-debug-modules-partner-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-partner@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-uki-virt-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-uki-virt-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-debug-uki-virt-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-uki-virt@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-devel-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-devel-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-matched-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-devel-matched-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-devel-matched-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-headers-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-headers-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-headers-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-ipaclones-internal-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-ipaclones-internal-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-ipaclones-internal-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-ipaclones-internal@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-modules-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-modules-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-core-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-modules-core-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-modules-core-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-extra-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-modules-extra-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-modules-extra-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-internal-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-modules-internal-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-modules-internal-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-internal@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-partner-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-modules-partner-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-modules-partner-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-partner@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-selftests-internal-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-selftests-internal-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-selftests-internal-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-selftests-internal@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-tools-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-tools-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-tools-libs-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-tools-libs-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-devel-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-tools-libs-devel-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-tools-libs-devel-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-uki-virt-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-uki-virt-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-uki-virt-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-uki-virt@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "perf-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "perf-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "perf-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "python3-perf-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "python3-perf-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rtla-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "rtla-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "rtla-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rtla@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "bpftool-debuginfo-0:7.0.0-284.41.1.el9_2.x86_64", + "product": { + "name": "bpftool-debuginfo-0:7.0.0-284.41.1.el9_2.x86_64", + "product_id": "bpftool-debuginfo-0:7.0.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool-debuginfo@7.0.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-debug-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-common-x86_64-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-debuginfo-common-x86_64-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-debuginfo-common-x86_64-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "kernel-tools-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "kernel-tools-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "perf-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "perf-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "perf-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64", + "product": { + "name": "python3-perf-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64", + "product_id": "python3-perf-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-284.41.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product": { + "name": "kernel-rt-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_id": "kernel-rt-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt@5.14.0-284.41.1.rt14.326.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-core-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product": { + "name": "kernel-rt-core-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_id": "kernel-rt-core-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-core@5.14.0-284.41.1.rt14.326.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_id": "kernel-rt-debug-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug@5.14.0-284.41.1.rt14.326.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-core-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-core-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_id": "kernel-rt-debug-core-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-core@5.14.0-284.41.1.rt14.326.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-devel-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-devel-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_id": "kernel-rt-debug-devel-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-devel@5.14.0-284.41.1.rt14.326.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-devel-matched-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-devel-matched-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_id": "kernel-rt-debug-devel-matched-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-devel-matched@5.14.0-284.41.1.rt14.326.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-kvm-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-kvm-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_id": "kernel-rt-debug-kvm-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-kvm@5.14.0-284.41.1.rt14.326.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-modules-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-modules-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_id": "kernel-rt-debug-modules-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-modules@5.14.0-284.41.1.rt14.326.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-modules-core-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-modules-core-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_id": "kernel-rt-debug-modules-core-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-modules-core@5.14.0-284.41.1.rt14.326.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-modules-extra-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-modules-extra-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_id": "kernel-rt-debug-modules-extra-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@5.14.0-284.41.1.rt14.326.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-modules-internal-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-modules-internal-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_id": "kernel-rt-debug-modules-internal-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-modules-internal@5.14.0-284.41.1.rt14.326.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-modules-partner-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-modules-partner-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_id": "kernel-rt-debug-modules-partner-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-modules-partner@5.14.0-284.41.1.rt14.326.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-devel-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product": { + "name": "kernel-rt-devel-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_id": "kernel-rt-devel-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-devel@5.14.0-284.41.1.rt14.326.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-devel-matched-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product": { + "name": "kernel-rt-devel-matched-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_id": "kernel-rt-devel-matched-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-devel-matched@5.14.0-284.41.1.rt14.326.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-kvm-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product": { + "name": "kernel-rt-kvm-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_id": "kernel-rt-kvm-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-kvm@5.14.0-284.41.1.rt14.326.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-modules-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product": { + "name": "kernel-rt-modules-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_id": "kernel-rt-modules-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-modules@5.14.0-284.41.1.rt14.326.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-modules-core-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product": { + "name": "kernel-rt-modules-core-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_id": "kernel-rt-modules-core-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-modules-core@5.14.0-284.41.1.rt14.326.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-modules-extra-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product": { + "name": "kernel-rt-modules-extra-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_id": "kernel-rt-modules-extra-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-modules-extra@5.14.0-284.41.1.rt14.326.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-modules-internal-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product": { + "name": "kernel-rt-modules-internal-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_id": "kernel-rt-modules-internal-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-modules-internal@5.14.0-284.41.1.rt14.326.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-modules-partner-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product": { + "name": "kernel-rt-modules-partner-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_id": "kernel-rt-modules-partner-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-modules-partner@5.14.0-284.41.1.rt14.326.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-selftests-internal-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product": { + "name": "kernel-rt-selftests-internal-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_id": "kernel-rt-selftests-internal-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-selftests-internal@5.14.0-284.41.1.rt14.326.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-debuginfo-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-debuginfo-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_id": "kernel-rt-debug-debuginfo-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@5.14.0-284.41.1.rt14.326.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debuginfo-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product": { + "name": "kernel-rt-debuginfo-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_id": "kernel-rt-debuginfo-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debuginfo@5.14.0-284.41.1.rt14.326.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product": { + "name": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_id": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debuginfo-common-x86_64@5.14.0-284.41.1.rt14.326.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.x86_64", + "product": { + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.x86_64", + "product_id": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-redistributable-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.x86_64", + "product": { + "name": "openshift-clients-redistributable-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.x86_64", + "product_id": "openshift-clients-redistributable-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients-redistributable@4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.x86_64", + "product": { + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.x86_64", + "product_id": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.26.4-5.1.rhaos4.13.git969e013.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el8.x86_64", + "product": { + "name": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el8.x86_64", + "product_id": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debugsource@1.26.4-5.1.rhaos4.13.git969e013.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el8.x86_64", + "product": { + "name": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el8.x86_64", + "product_id": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debuginfo@1.26.4-5.1.rhaos4.13.git969e013.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.x86_64", + "product": { + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.x86_64", + "product_id": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-redistributable-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.x86_64", + "product": { + "name": "openshift-clients-redistributable-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.x86_64", + "product_id": "openshift-clients-redistributable-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients-redistributable@4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.aarch64", + "product": { + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.aarch64", + "product_id": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.26.4-5.1.rhaos4.13.git969e013.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el9.aarch64", + "product": { + "name": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el9.aarch64", + "product_id": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debugsource@1.26.4-5.1.rhaos4.13.git969e013.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el9.aarch64", + "product": { + "name": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el9.aarch64", + "product_id": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debuginfo@1.26.4-5.1.rhaos4.13.git969e013.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "bpftool-0:7.0.0-284.41.1.el9_2.aarch64", + "product": { + "name": "bpftool-0:7.0.0-284.41.1.el9_2.aarch64", + "product_id": "bpftool-0:7.0.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool@7.0.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-64k-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-core-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-core-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-64k-core-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-core@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-core-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-core-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-core-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-core@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-devel-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-devel-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-devel-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-devel@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-devel-matched-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-devel-matched-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-devel-matched-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-devel-matched@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-modules-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-modules-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-modules-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-modules@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-modules-core-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-modules-core-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-modules-core-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-modules-core@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-modules-extra-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-modules-extra-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-modules-extra-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-modules-extra@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-modules-internal-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-modules-internal-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-modules-internal-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-modules-internal@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-modules-partner-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-modules-partner-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-modules-partner-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-modules-partner@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-devel-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-devel-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-64k-devel-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-devel@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-devel-matched-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-devel-matched-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-64k-devel-matched-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-devel-matched@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-modules-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-modules-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-64k-modules-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-modules@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-modules-core-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-modules-core-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-64k-modules-core-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-modules-core@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-modules-extra-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-modules-extra-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-64k-modules-extra-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-modules-extra@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-modules-internal-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-modules-internal-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-64k-modules-internal-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-modules-internal@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-modules-partner-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-modules-partner-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-64k-modules-partner-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-modules-partner@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-core-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-core-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-core-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-core@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-cross-headers-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-cross-headers-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-cross-headers-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-cross-headers@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-debug-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-core-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-core-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-debug-core-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-devel-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-debug-devel-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-matched-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-devel-matched-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-debug-devel-matched-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-modules-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-debug-modules-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-core-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-modules-core-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-debug-modules-core-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-extra-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-modules-extra-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-debug-modules-extra-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-internal-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-modules-internal-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-debug-modules-internal-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-internal@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-partner-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-modules-partner-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-debug-modules-partner-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-partner@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-devel-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-devel-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-matched-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-devel-matched-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-devel-matched-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-headers-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-headers-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-headers-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-modules-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-modules-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-core-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-modules-core-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-modules-core-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-extra-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-modules-extra-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-modules-extra-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-internal-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-modules-internal-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-modules-internal-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-internal@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-partner-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-modules-partner-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-modules-partner-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-partner@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-selftests-internal-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-selftests-internal-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-selftests-internal-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-selftests-internal@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-tools-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-tools-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-tools-libs-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-tools-libs-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-devel-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-tools-libs-devel-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-tools-libs-devel-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "perf-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "perf-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "perf-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "python3-perf-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "python3-perf-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "rtla-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "rtla-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "rtla-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rtla@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "bpftool-debuginfo-0:7.0.0-284.41.1.el9_2.aarch64", + "product": { + "name": "bpftool-debuginfo-0:7.0.0-284.41.1.el9_2.aarch64", + "product_id": "bpftool-debuginfo-0:7.0.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool-debuginfo@7.0.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-debuginfo@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-64k-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debuginfo@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-debug-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-common-aarch64-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-debuginfo-common-aarch64-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-debuginfo-common-aarch64-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo-common-aarch64@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "kernel-tools-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "kernel-tools-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "perf-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "perf-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "perf-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "product": { + "name": "python3-perf-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "product_id": "python3-perf-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-284.41.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.aarch64", + "product": { + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.aarch64", + "product_id": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.aarch64", + "product": { + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.aarch64", + "product_id": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.26.4-5.1.rhaos4.13.git969e013.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el8.aarch64", + "product": { + "name": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el8.aarch64", + "product_id": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debugsource@1.26.4-5.1.rhaos4.13.git969e013.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el8.aarch64", + "product": { + "name": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el8.aarch64", + "product_id": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debuginfo@1.26.4-5.1.rhaos4.13.git969e013.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.aarch64", + "product": { + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.aarch64", + "product_id": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.ppc64le", + "product": { + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.ppc64le", + "product_id": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.26.4-5.1.rhaos4.13.git969e013.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el9.ppc64le", + "product": { + "name": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el9.ppc64le", + "product_id": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debugsource@1.26.4-5.1.rhaos4.13.git969e013.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el9.ppc64le", + "product": { + "name": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el9.ppc64le", + "product_id": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debuginfo@1.26.4-5.1.rhaos4.13.git969e013.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "bpftool-0:7.0.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "bpftool-0:7.0.0-284.41.1.el9_2.ppc64le", + "product_id": "bpftool-0:7.0.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool@7.0.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-core-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-core-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-core-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-core@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-cross-headers-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-cross-headers-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-cross-headers-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-cross-headers@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-debug-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-core-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-core-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-debug-core-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-devel-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-debug-devel-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-matched-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-devel-matched-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-debug-devel-matched-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-modules-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-debug-modules-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-core-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-modules-core-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-debug-modules-core-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-extra-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-modules-extra-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-debug-modules-extra-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-internal-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-modules-internal-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-debug-modules-internal-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-internal@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-partner-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-modules-partner-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-debug-modules-partner-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-partner@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-devel-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-devel-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-matched-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-devel-matched-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-devel-matched-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-headers-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-headers-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-headers-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-ipaclones-internal-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-ipaclones-internal-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-ipaclones-internal-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-ipaclones-internal@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-modules-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-modules-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-core-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-modules-core-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-modules-core-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-extra-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-modules-extra-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-modules-extra-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-internal-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-modules-internal-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-modules-internal-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-internal@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-partner-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-modules-partner-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-modules-partner-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-partner@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-selftests-internal-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-selftests-internal-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-selftests-internal-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-selftests-internal@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-tools-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-tools-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-tools-libs-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-tools-libs-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-devel-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-tools-libs-devel-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-tools-libs-devel-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "perf-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "perf-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "perf-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "python3-perf-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "python3-perf-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "rtla-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "rtla-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "rtla-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rtla@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "bpftool-debuginfo-0:7.0.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "bpftool-debuginfo-0:7.0.0-284.41.1.el9_2.ppc64le", + "product_id": "bpftool-debuginfo-0:7.0.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool-debuginfo@7.0.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-debug-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo-common-ppc64le@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "kernel-tools-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "kernel-tools-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "perf-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "perf-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "perf-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le", + "product": { + "name": "python3-perf-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_id": "python3-perf-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-284.41.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.ppc64le", + "product": { + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.ppc64le", + "product_id": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.ppc64le", + "product": { + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.ppc64le", + "product_id": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.26.4-5.1.rhaos4.13.git969e013.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el8.ppc64le", + "product": { + "name": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el8.ppc64le", + "product_id": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debugsource@1.26.4-5.1.rhaos4.13.git969e013.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el8.ppc64le", + "product": { + "name": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el8.ppc64le", + "product_id": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debuginfo@1.26.4-5.1.rhaos4.13.git969e013.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.ppc64le", + "product": { + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.ppc64le", + "product_id": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.s390x", + "product": { + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.s390x", + "product_id": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.26.4-5.1.rhaos4.13.git969e013.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el9.s390x", + "product": { + "name": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el9.s390x", + "product_id": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debugsource@1.26.4-5.1.rhaos4.13.git969e013.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el9.s390x", + "product": { + "name": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el9.s390x", + "product_id": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debuginfo@1.26.4-5.1.rhaos4.13.git969e013.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "bpftool-0:7.0.0-284.41.1.el9_2.s390x", + "product": { + "name": "bpftool-0:7.0.0-284.41.1.el9_2.s390x", + "product_id": "bpftool-0:7.0.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool@7.0.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-core-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-core-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-core-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-core@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-cross-headers-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-cross-headers-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-cross-headers-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-cross-headers@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-debug-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-debug-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-core-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-debug-core-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-debug-core-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-debug-devel-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-debug-devel-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-matched-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-debug-devel-matched-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-debug-devel-matched-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-debug-modules-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-debug-modules-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-core-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-debug-modules-core-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-debug-modules-core-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-extra-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-debug-modules-extra-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-debug-modules-extra-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-internal-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-debug-modules-internal-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-debug-modules-internal-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-internal@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-partner-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-debug-modules-partner-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-debug-modules-partner-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-partner@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-devel-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-devel-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-matched-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-devel-matched-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-devel-matched-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-headers-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-headers-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-headers-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-modules-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-modules-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-core-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-modules-core-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-modules-core-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-extra-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-modules-extra-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-modules-extra-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-internal-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-modules-internal-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-modules-internal-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-internal@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-partner-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-modules-partner-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-modules-partner-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-partner@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-selftests-internal-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-selftests-internal-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-selftests-internal-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-selftests-internal@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-tools-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-tools-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-core-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-core-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-core-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-core@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-devel-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-devel-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-devel-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-devel@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-devel-matched-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-devel-matched-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-devel-matched-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-devel-matched@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-modules-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-modules-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-modules-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-modules-core-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-modules-core-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-modules-core-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-core@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-modules-extra-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-modules-extra-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-modules-extra-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-extra@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-modules-internal-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-modules-internal-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-modules-internal-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-internal@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-modules-partner-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-modules-partner-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-modules-partner-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-partner@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "perf-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "perf-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "perf-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "python3-perf-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "python3-perf-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "rtla-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "rtla-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "rtla-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rtla@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "bpftool-debuginfo-0:7.0.0-284.41.1.el9_2.s390x", + "product": { + "name": "bpftool-debuginfo-0:7.0.0-284.41.1.el9_2.s390x", + "product_id": "bpftool-debuginfo-0:7.0.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool-debuginfo@7.0.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-debuginfo-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-debug-debuginfo-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-debug-debuginfo-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-debuginfo-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-debuginfo-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-common-s390x-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-debuginfo-common-s390x-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-debuginfo-common-s390x-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo-common-s390x@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-debuginfo-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-tools-debuginfo-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-tools-debuginfo-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-debuginfo-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-debuginfo-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-debuginfo-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-debuginfo@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "perf-debuginfo-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "perf-debuginfo-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "perf-debuginfo-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-debuginfo-0:5.14.0-284.41.1.el9_2.s390x", + "product": { + "name": "python3-perf-debuginfo-0:5.14.0-284.41.1.el9_2.s390x", + "product_id": "python3-perf-debuginfo-0:5.14.0-284.41.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-284.41.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.s390x", + "product": { + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.s390x", + "product_id": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.s390x", + "product": { + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.s390x", + "product_id": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.26.4-5.1.rhaos4.13.git969e013.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el8.s390x", + "product": { + "name": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el8.s390x", + "product_id": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debugsource@1.26.4-5.1.rhaos4.13.git969e013.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el8.s390x", + "product": { + "name": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el8.s390x", + "product_id": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debuginfo@1.26.4-5.1.rhaos4.13.git969e013.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.s390x", + "product": { + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.s390x", + "product_id": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "kernel-abi-stablelists-0:5.14.0-284.41.1.el9_2.noarch", + "product": { + "name": "kernel-abi-stablelists-0:5.14.0-284.41.1.el9_2.noarch", + "product_id": "kernel-abi-stablelists-0:5.14.0-284.41.1.el9_2.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-abi-stablelists@5.14.0-284.41.1.el9_2?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "kernel-doc-0:5.14.0-284.41.1.el9_2.noarch", + "product": { + "name": "kernel-doc-0:5.14.0-284.41.1.el9_2.noarch", + "product_id": "kernel-doc-0:5.14.0-284.41.1.el9_2.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-doc@5.14.0-284.41.1.el9_2?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "openstack-ironic-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch", + "product": { + "name": "openstack-ironic-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch", + "product_id": "openstack-ironic-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openstack-ironic@21.3.1-0.20231106145533.e53dc4f.el9?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "openstack-ironic-api-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch", + "product": { + "name": "openstack-ironic-api-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch", + "product_id": "openstack-ironic-api-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openstack-ironic-api@21.3.1-0.20231106145533.e53dc4f.el9?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "openstack-ironic-common-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch", + "product": { + "name": "openstack-ironic-common-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch", + "product_id": "openstack-ironic-common-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openstack-ironic-common@21.3.1-0.20231106145533.e53dc4f.el9?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "openstack-ironic-conductor-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch", + "product": { + "name": "openstack-ironic-conductor-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch", + "product_id": "openstack-ironic-conductor-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openstack-ironic-conductor@21.3.1-0.20231106145533.e53dc4f.el9?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "openstack-ironic-dnsmasq-tftp-server-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch", + "product": { + "name": "openstack-ironic-dnsmasq-tftp-server-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch", + "product_id": "openstack-ironic-dnsmasq-tftp-server-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openstack-ironic-dnsmasq-tftp-server@21.3.1-0.20231106145533.e53dc4f.el9?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "python3-ironic-tests-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch", + "product": { + "name": "python3-ironic-tests-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch", + "product_id": "python3-ironic-tests-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-ironic-tests@21.3.1-0.20231106145533.e53dc4f.el9?arch=noarch&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:ffd89303a3766bc4aeb2bc18b3d81249f59e5eec9cc7ee0bf1cff446d162515e_ppc64le", + "product": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:ffd89303a3766bc4aeb2bc18b3d81249f59e5eec9cc7ee0bf1cff446d162515e_ppc64le", + "product_id": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:ffd89303a3766bc4aeb2bc18b3d81249f59e5eec9cc7ee0bf1cff446d162515e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-etcd-rhel8-operator@sha256:ffd89303a3766bc4aeb2bc18b3d81249f59e5eec9cc7ee0bf1cff446d162515e?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator&tag=v4.14.0-202311090332.p0.g6bc9eab.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-monitoring-operator@sha256:1556e2ac5158eaa5b31eca00997dcc0cb3ad01e69ab1dd96c7d3dc123dbeab13_ppc64le", + "product": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:1556e2ac5158eaa5b31eca00997dcc0cb3ad01e69ab1dd96c7d3dc123dbeab13_ppc64le", + "product_id": "openshift4/ose-cluster-monitoring-operator@sha256:1556e2ac5158eaa5b31eca00997dcc0cb3ad01e69ab1dd96c7d3dc123dbeab13_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-monitoring-operator@sha256:1556e2ac5158eaa5b31eca00997dcc0cb3ad01e69ab1dd96c7d3dc123dbeab13?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-operator&tag=v4.14.0-202311140909.p0.g94ddd62.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:3d183a462d7b0ef842018e9901e6bef07406dae30d37410a1bef2ac5cd37def8_ppc64le", + "product": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:3d183a462d7b0ef842018e9901e6bef07406dae30d37410a1bef2ac5cd37def8_ppc64le", + "product_id": "openshift4/ose-cluster-node-tuning-operator@sha256:3d183a462d7b0ef842018e9901e6bef07406dae30d37410a1bef2ac5cd37def8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-node-tuning-operator@sha256:3d183a462d7b0ef842018e9901e6bef07406dae30d37410a1bef2ac5cd37def8?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-operator&tag=v4.14.0-202311141210.p0.g1e657ec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:6a4105fe6895e0286fbddb1259efba92296971c70da74355e4766dce058f77c0_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:6a4105fe6895e0286fbddb1259efba92296971c70da74355e4766dce058f77c0_ppc64le", + "product_id": "openshift4/ose-csi-driver-manila-rhel8@sha256:6a4105fe6895e0286fbddb1259efba92296971c70da74355e4766dce058f77c0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-manila-rhel8@sha256:6a4105fe6895e0286fbddb1259efba92296971c70da74355e4766dce058f77c0?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8&tag=v4.14.0-202311092032.p0.gaf51129.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:2829e0d889dd01d5c3e749f56f05b0b9f2d0ff6cf50c737cf3dee3de0b6ee9aa_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:2829e0d889dd01d5c3e749f56f05b0b9f2d0ff6cf50c737cf3dee3de0b6ee9aa_ppc64le", + "product_id": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:2829e0d889dd01d5c3e749f56f05b0b9f2d0ff6cf50c737cf3dee3de0b6ee9aa_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-manila-rhel8-operator@sha256:2829e0d889dd01d5c3e749f56f05b0b9f2d0ff6cf50c737cf3dee3de0b6ee9aa?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator&tag=v4.14.0-202311131337.p0.gac1cd21.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/driver-toolkit-rhel9@sha256:3c774fa85ae1c6ef8926e9a1f1a1831ed0474511a6c1975fe24fcbd6cc118edc_ppc64le", + "product": { + "name": "openshift4/driver-toolkit-rhel9@sha256:3c774fa85ae1c6ef8926e9a1f1a1831ed0474511a6c1975fe24fcbd6cc118edc_ppc64le", + "product_id": "openshift4/driver-toolkit-rhel9@sha256:3c774fa85ae1c6ef8926e9a1f1a1831ed0474511a6c1975fe24fcbd6cc118edc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/driver-toolkit-rhel9@sha256:3c774fa85ae1c6ef8926e9a1f1a1831ed0474511a6c1975fe24fcbd6cc118edc?arch=ppc64le&repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9&tag=v4.14.0-202311142208.p0.gcafed17.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:de869399e58a54bc76ca46b4431d7d310e4279b5f01ae19890064451d0b9468b_ppc64le", + "product": { + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:de869399e58a54bc76ca46b4431d7d310e4279b5f01ae19890064451d0b9468b_ppc64le", + "product_id": "openshift4/ose-kuryr-cni-rhel8@sha256:de869399e58a54bc76ca46b4431d7d310e4279b5f01ae19890064451d0b9468b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kuryr-cni-rhel8@sha256:de869399e58a54bc76ca46b4431d7d310e4279b5f01ae19890064451d0b9468b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kuryr-cni-rhel8&tag=v4.14.0-202311082008.p0.g8926a29.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kuryr-controller-rhel8@sha256:6c190d0d37ec5a822954509689e9aa8a5d4a98e6a2885923da1822523e2cfb2e_ppc64le", + "product": { + "name": "openshift4/ose-kuryr-controller-rhel8@sha256:6c190d0d37ec5a822954509689e9aa8a5d4a98e6a2885923da1822523e2cfb2e_ppc64le", + "product_id": "openshift4/ose-kuryr-controller-rhel8@sha256:6c190d0d37ec5a822954509689e9aa8a5d4a98e6a2885923da1822523e2cfb2e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kuryr-controller-rhel8@sha256:6c190d0d37ec5a822954509689e9aa8a5d4a98e6a2885923da1822523e2cfb2e?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kuryr-controller-rhel8&tag=v4.14.0-202311082008.p0.g8926a29.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console@sha256:0009c2c68fc28070147403fe282488b300fbdfa4589cab50822c20515951d117_ppc64le", + "product": { + "name": "openshift4/ose-console@sha256:0009c2c68fc28070147403fe282488b300fbdfa4589cab50822c20515951d117_ppc64le", + "product_id": "openshift4/ose-console@sha256:0009c2c68fc28070147403fe282488b300fbdfa4589cab50822c20515951d117_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-console@sha256:0009c2c68fc28070147403fe282488b300fbdfa4589cab50822c20515951d117?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-console&tag=v4.14.0-202311081132.p0.g60b4100.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hyperkube-rhel9@sha256:53e0fa75579250d9e66b7c394a597f538a1e3909956a0b2928eb35b9007f1ddc_ppc64le", + "product": { + "name": "openshift4/ose-hyperkube-rhel9@sha256:53e0fa75579250d9e66b7c394a597f538a1e3909956a0b2928eb35b9007f1ddc_ppc64le", + "product_id": "openshift4/ose-hyperkube-rhel9@sha256:53e0fa75579250d9e66b7c394a597f538a1e3909956a0b2928eb35b9007f1ddc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-hyperkube-rhel9@sha256:53e0fa75579250d9e66b7c394a597f538a1e3909956a0b2928eb35b9007f1ddc?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9&tag=v4.14.0-202311082008.p0.gb49f9d1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-pod@sha256:8c253241e494712e094b61609b27485f3496955898ce810a41de4040b58accf1_ppc64le", + "product": { + "name": "openshift4/ose-pod@sha256:8c253241e494712e094b61609b27485f3496955898ce810a41de4040b58accf1_ppc64le", + "product_id": "openshift4/ose-pod@sha256:8c253241e494712e094b61609b27485f3496955898ce810a41de4040b58accf1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-pod@sha256:8c253241e494712e094b61609b27485f3496955898ce810a41de4040b58accf1?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-pod&tag=v4.14.0-202311082008.p0.gb49f9d1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-registry@sha256:debe7b0543b2035cdf60e8e95c8190a2708c707541ccdb5fa2c8f58e0952856e_ppc64le", + "product": { + "name": "openshift4/ose-docker-registry@sha256:debe7b0543b2035cdf60e8e95c8190a2708c707541ccdb5fa2c8f58e0952856e_ppc64le", + "product_id": "openshift4/ose-docker-registry@sha256:debe7b0543b2035cdf60e8e95c8190a2708c707541ccdb5fa2c8f58e0952856e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-registry@sha256:debe7b0543b2035cdf60e8e95c8190a2708c707541ccdb5fa2c8f58e0952856e?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-docker-registry&tag=v4.14.0-202311081250.p0.g690b5a2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tests@sha256:2708e7f8a0f469b413b91b6e4849828bd1506d651d28e4d60341ce3d70d0de20_ppc64le", + "product": { + "name": "openshift4/ose-tests@sha256:2708e7f8a0f469b413b91b6e4849828bd1506d651d28e4d60341ce3d70d0de20_ppc64le", + "product_id": "openshift4/ose-tests@sha256:2708e7f8a0f469b413b91b6e4849828bd1506d651d28e4d60341ce3d70d0de20_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-tests@sha256:2708e7f8a0f469b413b91b6e4849828bd1506d651d28e4d60341ce3d70d0de20?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-tests&tag=v4.14.0-202311132210.p0.g8475523.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:cc4d3838ef3c4b9a5d5ffa05ae829c1de7022c8cc16f9d785a161b9c90b8dd49_ppc64le", + "product": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:cc4d3838ef3c4b9a5d5ffa05ae829c1de7022c8cc16f9d785a161b9c90b8dd49_ppc64le", + "product_id": "openshift4/ose-baremetal-installer-rhel8@sha256:cc4d3838ef3c4b9a5d5ffa05ae829c1de7022c8cc16f9d785a161b9c90b8dd49_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-installer-rhel8@sha256:cc4d3838ef3c4b9a5d5ffa05ae829c1de7022c8cc16f9d785a161b9c90b8dd49?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8&tag=v4.14.0-202311100250.p0.gcebc8ab.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:b3654ab2f770cf120df8ba5d7c9692fe008c278be451243fc6ae9e7502a4011c_ppc64le", + "product": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:b3654ab2f770cf120df8ba5d7c9692fe008c278be451243fc6ae9e7502a4011c_ppc64le", + "product_id": "openshift4/ose-container-networking-plugins-rhel8@sha256:b3654ab2f770cf120df8ba5d7c9692fe008c278be451243fc6ae9e7502a4011c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-container-networking-plugins-rhel8@sha256:b3654ab2f770cf120df8ba5d7c9692fe008c278be451243fc6ae9e7502a4011c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8&tag=v4.14.0-202311100932.p0.g7295a5e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:0ba098f1536322f94fae0b2261e7d5120a42bb7f48014dadebc6cc4caecf21ab_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:0ba098f1536322f94fae0b2261e7d5120a42bb7f48014dadebc6cc4caecf21ab_ppc64le", + "product_id": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:0ba098f1536322f94fae0b2261e7d5120a42bb7f48014dadebc6cc4caecf21ab_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-rhel8@sha256:0ba098f1536322f94fae0b2261e7d5120a42bb7f48014dadebc6cc4caecf21ab?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8&tag=v4.14.0-202311092032.p0.g3ffcdcf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:13b0aeb65343b2c89b857644d0937f4369dcf031794e83cc6eac05b97e0c6ba8_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:13b0aeb65343b2c89b857644d0937f4369dcf031794e83cc6eac05b97e0c6ba8_ppc64le", + "product_id": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:13b0aeb65343b2c89b857644d0937f4369dcf031794e83cc6eac05b97e0c6ba8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-operator-rhel8@sha256:13b0aeb65343b2c89b857644d0937f4369dcf031794e83cc6eac05b97e0c6ba8?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8&tag=v4.14.0-202311130809.p0.ga351354.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:63784fb04c329c4f870791c57978f8d842cdcf41e42a6d367fd924cd6fd54044_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:63784fb04c329c4f870791c57978f8d842cdcf41e42a6d367fd924cd6fd54044_ppc64le", + "product_id": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:63784fb04c329c4f870791c57978f8d842cdcf41e42a6d367fd924cd6fd54044_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-webhook-rhel8@sha256:63784fb04c329c4f870791c57978f8d842cdcf41e42a6d367fd924cd6fd54044?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8&tag=v4.14.0-202311092032.p0.g3ffcdcf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:46de5c63eb0d8545b1d5962e02f54643751d2130c336da676348a591c53e5751_ppc64le", + "product": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:46de5c63eb0d8545b1d5962e02f54643751d2130c336da676348a591c53e5751_ppc64le", + "product_id": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:46de5c63eb0d8545b1d5962e02f54643751d2130c336da676348a591c53e5751_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel8@sha256:46de5c63eb0d8545b1d5962e02f54643751d2130c336da676348a591c53e5751?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8&tag=v4.14.0-202311080350.p0.gd99fb31.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hypershift-rhel8@sha256:2f0689d3588c92aca7c8b93e5a5b28c0540d1379f96bf141f6bf1649bb98ebad_ppc64le", + "product": { + "name": "openshift4/ose-hypershift-rhel8@sha256:2f0689d3588c92aca7c8b93e5a5b28c0540d1379f96bf141f6bf1649bb98ebad_ppc64le", + "product_id": "openshift4/ose-hypershift-rhel8@sha256:2f0689d3588c92aca7c8b93e5a5b28c0540d1379f96bf141f6bf1649bb98ebad_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-hypershift-rhel8@sha256:2f0689d3588c92aca7c8b93e5a5b28c0540d1379f96bf141f6bf1649bb98ebad?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel8&tag=v4.14.0-202311150808.p0.g8551bc6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer-artifacts@sha256:577c0df8d45246f563b4a098fcd6b91e27fb26eded8e61e03aa9e9ed048c2228_ppc64le", + "product": { + "name": "openshift4/ose-installer-artifacts@sha256:577c0df8d45246f563b4a098fcd6b91e27fb26eded8e61e03aa9e9ed048c2228_ppc64le", + "product_id": "openshift4/ose-installer-artifacts@sha256:577c0df8d45246f563b4a098fcd6b91e27fb26eded8e61e03aa9e9ed048c2228_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer-artifacts@sha256:577c0df8d45246f563b4a098fcd6b91e27fb26eded8e61e03aa9e9ed048c2228?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-installer-artifacts&tag=v4.14.0-202311100250.p0.gcebc8ab.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer@sha256:a841ffade54d12c732da650480b1c3a7a768f964ab1f09b14c5ec7f8a110f35c_ppc64le", + "product": { + "name": "openshift4/ose-installer@sha256:a841ffade54d12c732da650480b1c3a7a768f964ab1f09b14c5ec7f8a110f35c_ppc64le", + "product_id": "openshift4/ose-installer@sha256:a841ffade54d12c732da650480b1c3a7a768f964ab1f09b14c5ec7f8a110f35c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer@sha256:a841ffade54d12c732da650480b1c3a7a768f964ab1f09b14c5ec7f8a110f35c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-installer&tag=v4.14.0-202311100250.p0.gcebc8ab.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-operator@sha256:cd2d2851edb4c9666a0eb032e07bf2cb07723a72ae35cf109ee5a307aca6daf8_ppc64le", + "product": { + "name": "openshift4/ose-machine-api-operator@sha256:cd2d2851edb4c9666a0eb032e07bf2cb07723a72ae35cf109ee5a307aca6daf8_ppc64le", + "product_id": "openshift4/ose-machine-api-operator@sha256:cd2d2851edb4c9666a0eb032e07bf2cb07723a72ae35cf109ee5a307aca6daf8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-operator@sha256:cd2d2851edb4c9666a0eb032e07bf2cb07723a72ae35cf109ee5a307aca6daf8?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-machine-api-operator&tag=v4.14.0-202311130809.p0.ge8e6a66.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-os-images-rhel8@sha256:27039fbb5a6823be034a46c591754f601ced02600227ec9e827bc8d4ffe991ee_ppc64le", + "product": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:27039fbb5a6823be034a46c591754f601ced02600227ec9e827bc8d4ffe991ee_ppc64le", + "product_id": "openshift4/ose-machine-os-images-rhel8@sha256:27039fbb5a6823be034a46c591754f601ced02600227ec9e827bc8d4ffe991ee_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-os-images-rhel8@sha256:27039fbb5a6823be034a46c591754f601ced02600227ec9e827bc8d4ffe991ee?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel8&tag=v4.14.0-202311100250.p0.gd3a4a6c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:8d657db2d316d170aa58e1895369bb4d0a1995018fa31e8eda90db8129d3a7e3_ppc64le", + "product": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:8d657db2d316d170aa58e1895369bb4d0a1995018fa31e8eda90db8129d3a7e3_ppc64le", + "product_id": "openshift4/ose-multus-networkpolicy-rhel8@sha256:8d657db2d316d170aa58e1895369bb4d0a1995018fa31e8eda90db8129d3a7e3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-networkpolicy-rhel8@sha256:8d657db2d316d170aa58e1895369bb4d0a1995018fa31e8eda90db8129d3a7e3?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8&tag=v4.14.0-202311100750.p0.g2440eeb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:6ff789875d553ba1aa167b0c0268d31f1d7f6bb5fc1ed9ee4e99b3bbcf6a2b79_ppc64le", + "product": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:6ff789875d553ba1aa167b0c0268d31f1d7f6bb5fc1ed9ee4e99b3bbcf6a2b79_ppc64le", + "product_id": "openshift4/ose-network-metrics-daemon-rhel8@sha256:6ff789875d553ba1aa167b0c0268d31f1d7f6bb5fc1ed9ee4e99b3bbcf6a2b79_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-metrics-daemon-rhel8@sha256:6ff789875d553ba1aa167b0c0268d31f1d7f6bb5fc1ed9ee4e99b3bbcf6a2b79?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8&tag=v4.14.0-202311090250.p0.g64dbc3b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:b957d2faeb4c2b83b9a265d64b984c6a525d4111aa6a96911fc3c36e9ab4f47d_ppc64le", + "product": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:b957d2faeb4c2b83b9a265d64b984c6a525d4111aa6a96911fc3c36e9ab4f47d_ppc64le", + "product_id": "openshift4/ose-openshift-apiserver-rhel8@sha256:b957d2faeb4c2b83b9a265d64b984c6a525d4111aa6a96911fc3c36e9ab4f47d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-apiserver-rhel8@sha256:b957d2faeb4c2b83b9a265d64b984c6a525d4111aa6a96911fc3c36e9ab4f47d?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8&tag=v4.14.0-202311080850.p0.g8e1cc19.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:b6e66b78e7b641908eaca5b11f80fe39d7c620d4525143790c864a785bfdae4f_ppc64le", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:b6e66b78e7b641908eaca5b11f80fe39d7c620d4525143790c864a785bfdae4f_ppc64le", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:b6e66b78e7b641908eaca5b11f80fe39d7c620d4525143790c864a785bfdae4f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8@sha256:b6e66b78e7b641908eaca5b11f80fe39d7c620d4525143790c864a785bfdae4f?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8&tag=v4.14.0-202311092032.p0.gaf51129.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7fd0efecdc77c70010ebfabfdffc47df617184eaf02503c631003ce6719862e0_ppc64le", + "product": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7fd0efecdc77c70010ebfabfdffc47df617184eaf02503c631003ce6719862e0_ppc64le", + "product_id": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7fd0efecdc77c70010ebfabfdffc47df617184eaf02503c631003ce6719862e0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel8@sha256:7fd0efecdc77c70010ebfabfdffc47df617184eaf02503c631003ce6719862e0?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8&tag=v4.14.0-202311092032.p0.gaf51129.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:f70fa7d2a167ed4358b7050c41a07d3ffcce1fe64aa64060029d581330df532f_ppc64le", + "product": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:f70fa7d2a167ed4358b7050c41a07d3ffcce1fe64aa64060029d581330df532f_ppc64le", + "product_id": "openshift4/ose-k8s-prometheus-adapter@sha256:f70fa7d2a167ed4358b7050c41a07d3ffcce1fe64aa64060029d581330df532f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-k8s-prometheus-adapter@sha256:f70fa7d2a167ed4358b7050c41a07d3ffcce1fe64aa64060029d581330df532f?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter&tag=v4.14.0-202311100750.p0.g801a912.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-service-ca-operator@sha256:e9c6b11129df5681f78abbf3c26db395c369dc8e804b8bfc663afce6950c601c_ppc64le", + "product": { + "name": "openshift4/ose-service-ca-operator@sha256:e9c6b11129df5681f78abbf3c26db395c369dc8e804b8bfc663afce6950c601c_ppc64le", + "product_id": "openshift4/ose-service-ca-operator@sha256:e9c6b11129df5681f78abbf3c26db395c369dc8e804b8bfc663afce6950c601c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-service-ca-operator@sha256:e9c6b11129df5681f78abbf3c26db395c369dc8e804b8bfc663afce6950c601c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-service-ca-operator&tag=v4.14.0-202311081632.p0.g3c3f82f.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:68cffb4387c4d114894666c98db66b8febd2b80812c1773c2ed3cad7f9bd1756_amd64", + "product": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:68cffb4387c4d114894666c98db66b8febd2b80812c1773c2ed3cad7f9bd1756_amd64", + "product_id": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:68cffb4387c4d114894666c98db66b8febd2b80812c1773c2ed3cad7f9bd1756_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-etcd-rhel8-operator@sha256:68cffb4387c4d114894666c98db66b8febd2b80812c1773c2ed3cad7f9bd1756?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator&tag=v4.14.0-202311090332.p0.g6bc9eab.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-monitoring-operator@sha256:3d096e082dc5241bddd6c495b2a634334831287b9b472a52389c9d287c682ff5_amd64", + "product": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:3d096e082dc5241bddd6c495b2a634334831287b9b472a52389c9d287c682ff5_amd64", + "product_id": "openshift4/ose-cluster-monitoring-operator@sha256:3d096e082dc5241bddd6c495b2a634334831287b9b472a52389c9d287c682ff5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-monitoring-operator@sha256:3d096e082dc5241bddd6c495b2a634334831287b9b472a52389c9d287c682ff5?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-operator&tag=v4.14.0-202311140909.p0.g94ddd62.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:d81633a941c074b3d036e7785e41abb46887012899dba9b89b531c283a0b9480_amd64", + "product": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:d81633a941c074b3d036e7785e41abb46887012899dba9b89b531c283a0b9480_amd64", + "product_id": "openshift4/ose-cluster-node-tuning-operator@sha256:d81633a941c074b3d036e7785e41abb46887012899dba9b89b531c283a0b9480_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-node-tuning-operator@sha256:d81633a941c074b3d036e7785e41abb46887012899dba9b89b531c283a0b9480?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-operator&tag=v4.14.0-202311141210.p0.g1e657ec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:8edbf045ddd5e2f17049b217ed296aa63bbfcedfdca64106338b2af2b3b595a2_amd64", + "product": { + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:8edbf045ddd5e2f17049b217ed296aa63bbfcedfdca64106338b2af2b3b595a2_amd64", + "product_id": "openshift4/ose-csi-driver-manila-rhel8@sha256:8edbf045ddd5e2f17049b217ed296aa63bbfcedfdca64106338b2af2b3b595a2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-manila-rhel8@sha256:8edbf045ddd5e2f17049b217ed296aa63bbfcedfdca64106338b2af2b3b595a2?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8&tag=v4.14.0-202311092032.p0.gaf51129.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:587172fe198d5ce607340126a8849704666b1b419615da7d91e452d8a92f0ae4_amd64", + "product": { + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:587172fe198d5ce607340126a8849704666b1b419615da7d91e452d8a92f0ae4_amd64", + "product_id": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:587172fe198d5ce607340126a8849704666b1b419615da7d91e452d8a92f0ae4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-manila-rhel8-operator@sha256:587172fe198d5ce607340126a8849704666b1b419615da7d91e452d8a92f0ae4?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator&tag=v4.14.0-202311131337.p0.gac1cd21.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/driver-toolkit-rhel9@sha256:fca57a24b162f5e51f6d5c77d0867618ef9c08d23c27fc25f5bf3fcda602b134_amd64", + "product": { + "name": "openshift4/driver-toolkit-rhel9@sha256:fca57a24b162f5e51f6d5c77d0867618ef9c08d23c27fc25f5bf3fcda602b134_amd64", + "product_id": "openshift4/driver-toolkit-rhel9@sha256:fca57a24b162f5e51f6d5c77d0867618ef9c08d23c27fc25f5bf3fcda602b134_amd64", + "product_identification_helper": { + "purl": "pkg:oci/driver-toolkit-rhel9@sha256:fca57a24b162f5e51f6d5c77d0867618ef9c08d23c27fc25f5bf3fcda602b134?arch=amd64&repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9&tag=v4.14.0-202311142208.p0.gcafed17.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-rhel9@sha256:a0e102e1360ac948b3de6d31dcdead02ee0046951bad4c5f2e499ba979572ac5_amd64", + "product": { + "name": "openshift4/ose-ironic-rhel9@sha256:a0e102e1360ac948b3de6d31dcdead02ee0046951bad4c5f2e499ba979572ac5_amd64", + "product_id": "openshift4/ose-ironic-rhel9@sha256:a0e102e1360ac948b3de6d31dcdead02ee0046951bad4c5f2e499ba979572ac5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-rhel9@sha256:a0e102e1360ac948b3de6d31dcdead02ee0046951bad4c5f2e499ba979572ac5?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9&tag=v4.14.0-202311130809.p0.g5ec3ad0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:160fd3de1bca1228e0cd69b81674f73572eb88220c9ae2e2c43772fbedd6a86f_amd64", + "product": { + "name": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:160fd3de1bca1228e0cd69b81674f73572eb88220c9ae2e2c43772fbedd6a86f_amd64", + "product_id": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:160fd3de1bca1228e0cd69b81674f73572eb88220c9ae2e2c43772fbedd6a86f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-machine-os-downloader-rhel9@sha256:160fd3de1bca1228e0cd69b81674f73572eb88220c9ae2e2c43772fbedd6a86f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9&tag=v4.14.0-202311142208.p0.g7b56c30.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:3ed8f193cd5d3f52c5eeb66df9c44f3f68cdb90adb346d726daf4fbc7ad072bb_amd64", + "product": { + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:3ed8f193cd5d3f52c5eeb66df9c44f3f68cdb90adb346d726daf4fbc7ad072bb_amd64", + "product_id": "openshift4/ose-kuryr-cni-rhel8@sha256:3ed8f193cd5d3f52c5eeb66df9c44f3f68cdb90adb346d726daf4fbc7ad072bb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kuryr-cni-rhel8@sha256:3ed8f193cd5d3f52c5eeb66df9c44f3f68cdb90adb346d726daf4fbc7ad072bb?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kuryr-cni-rhel8&tag=v4.14.0-202311082008.p0.g8926a29.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kuryr-controller-rhel8@sha256:1f8ffb6009d50dfa5101abf26a80f0f8be44529f314d6bfe0ea03512926d058b_amd64", + "product": { + "name": "openshift4/ose-kuryr-controller-rhel8@sha256:1f8ffb6009d50dfa5101abf26a80f0f8be44529f314d6bfe0ea03512926d058b_amd64", + "product_id": "openshift4/ose-kuryr-controller-rhel8@sha256:1f8ffb6009d50dfa5101abf26a80f0f8be44529f314d6bfe0ea03512926d058b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kuryr-controller-rhel8@sha256:1f8ffb6009d50dfa5101abf26a80f0f8be44529f314d6bfe0ea03512926d058b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kuryr-controller-rhel8&tag=v4.14.0-202311082008.p0.g8926a29.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console@sha256:5ab1254cac9d0cb03ba2ca2f6dcc9bd701ffac0ab2e00ddf515fd414203754d7_amd64", + "product": { + "name": "openshift4/ose-console@sha256:5ab1254cac9d0cb03ba2ca2f6dcc9bd701ffac0ab2e00ddf515fd414203754d7_amd64", + "product_id": "openshift4/ose-console@sha256:5ab1254cac9d0cb03ba2ca2f6dcc9bd701ffac0ab2e00ddf515fd414203754d7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-console@sha256:5ab1254cac9d0cb03ba2ca2f6dcc9bd701ffac0ab2e00ddf515fd414203754d7?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-console&tag=v4.14.0-202311081132.p0.g60b4100.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hyperkube-rhel9@sha256:4ae6c4725722b7f0040d58c455a0a320e86cbaec5a9899b392750dcdadd7d5e7_amd64", + "product": { + "name": "openshift4/ose-hyperkube-rhel9@sha256:4ae6c4725722b7f0040d58c455a0a320e86cbaec5a9899b392750dcdadd7d5e7_amd64", + "product_id": "openshift4/ose-hyperkube-rhel9@sha256:4ae6c4725722b7f0040d58c455a0a320e86cbaec5a9899b392750dcdadd7d5e7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-hyperkube-rhel9@sha256:4ae6c4725722b7f0040d58c455a0a320e86cbaec5a9899b392750dcdadd7d5e7?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9&tag=v4.14.0-202311082008.p0.gb49f9d1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-pod@sha256:44cf90fa2c8a7fcf25cda5280b6aabac79e66f434e33f5341fe868db3d0c779c_amd64", + "product": { + "name": "openshift4/ose-pod@sha256:44cf90fa2c8a7fcf25cda5280b6aabac79e66f434e33f5341fe868db3d0c779c_amd64", + "product_id": "openshift4/ose-pod@sha256:44cf90fa2c8a7fcf25cda5280b6aabac79e66f434e33f5341fe868db3d0c779c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-pod@sha256:44cf90fa2c8a7fcf25cda5280b6aabac79e66f434e33f5341fe868db3d0c779c?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-pod&tag=v4.14.0-202311082008.p0.gb49f9d1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-registry@sha256:a172c79e68f96fda7805585c69696b3584677ec2658841301b74c536848b8979_amd64", + "product": { + "name": "openshift4/ose-docker-registry@sha256:a172c79e68f96fda7805585c69696b3584677ec2658841301b74c536848b8979_amd64", + "product_id": "openshift4/ose-docker-registry@sha256:a172c79e68f96fda7805585c69696b3584677ec2658841301b74c536848b8979_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-registry@sha256:a172c79e68f96fda7805585c69696b3584677ec2658841301b74c536848b8979?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-docker-registry&tag=v4.14.0-202311081250.p0.g690b5a2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tests@sha256:066003b8d615e2883aab0550f347ee0e25cd7b8c7b24a80742272f4acb7e2968_amd64", + "product": { + "name": "openshift4/ose-tests@sha256:066003b8d615e2883aab0550f347ee0e25cd7b8c7b24a80742272f4acb7e2968_amd64", + "product_id": "openshift4/ose-tests@sha256:066003b8d615e2883aab0550f347ee0e25cd7b8c7b24a80742272f4acb7e2968_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-tests@sha256:066003b8d615e2883aab0550f347ee0e25cd7b8c7b24a80742272f4acb7e2968?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-tests&tag=v4.14.0-202311132210.p0.g8475523.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:1edbd96f70f64135d6ea8bbbfa8afe73b8fdb10062c88167aef825d19caa881a_amd64", + "product": { + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:1edbd96f70f64135d6ea8bbbfa8afe73b8fdb10062c88167aef825d19caa881a_amd64", + "product_id": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:1edbd96f70f64135d6ea8bbbfa8afe73b8fdb10062c88167aef825d19caa881a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-pod-identity-webhook-rhel8@sha256:1edbd96f70f64135d6ea8bbbfa8afe73b8fdb10062c88167aef825d19caa881a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8&tag=v4.14.0-202311131533.p0.g3aa931a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:784175e0ab5456487635167044940297359fd6554fa1ffa38126926cd83fc483_amd64", + "product": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:784175e0ab5456487635167044940297359fd6554fa1ffa38126926cd83fc483_amd64", + "product_id": "openshift4/ose-baremetal-installer-rhel8@sha256:784175e0ab5456487635167044940297359fd6554fa1ffa38126926cd83fc483_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-installer-rhel8@sha256:784175e0ab5456487635167044940297359fd6554fa1ffa38126926cd83fc483?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8&tag=v4.14.0-202311100250.p0.gcebc8ab.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:6825e9af741f952625fdb29be751c0d68892b4a6322146179bab4a0b51c7dd20_amd64", + "product": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:6825e9af741f952625fdb29be751c0d68892b4a6322146179bab4a0b51c7dd20_amd64", + "product_id": "openshift4/ose-container-networking-plugins-rhel8@sha256:6825e9af741f952625fdb29be751c0d68892b4a6322146179bab4a0b51c7dd20_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-container-networking-plugins-rhel8@sha256:6825e9af741f952625fdb29be751c0d68892b4a6322146179bab4a0b51c7dd20?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8&tag=v4.14.0-202311100932.p0.g7295a5e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:316f8b055e1db6cb49c8b51f6f739f3c10db58d65aeced241f61bf98e926192e_amd64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:316f8b055e1db6cb49c8b51f6f739f3c10db58d65aeced241f61bf98e926192e_amd64", + "product_id": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:316f8b055e1db6cb49c8b51f6f739f3c10db58d65aeced241f61bf98e926192e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-rhel8@sha256:316f8b055e1db6cb49c8b51f6f739f3c10db58d65aeced241f61bf98e926192e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8&tag=v4.14.0-202311092032.p0.g3ffcdcf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:f5827fd44208d5f72d8cfd1d1bce591f2d363178cca2425bf772c46f8cfdae91_amd64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:f5827fd44208d5f72d8cfd1d1bce591f2d363178cca2425bf772c46f8cfdae91_amd64", + "product_id": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:f5827fd44208d5f72d8cfd1d1bce591f2d363178cca2425bf772c46f8cfdae91_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-operator-rhel8@sha256:f5827fd44208d5f72d8cfd1d1bce591f2d363178cca2425bf772c46f8cfdae91?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8&tag=v4.14.0-202311130809.p0.ga351354.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:28cc16e08dd3f481c144c1dfd3944ddcb0adea61d7255f8b70320570e761c8ad_amd64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:28cc16e08dd3f481c144c1dfd3944ddcb0adea61d7255f8b70320570e761c8ad_amd64", + "product_id": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:28cc16e08dd3f481c144c1dfd3944ddcb0adea61d7255f8b70320570e761c8ad_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-webhook-rhel8@sha256:28cc16e08dd3f481c144c1dfd3944ddcb0adea61d7255f8b70320570e761c8ad?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8&tag=v4.14.0-202311092032.p0.g3ffcdcf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:8dc562a0fdd1f4248feffc1e754745ced95d5aec6a943168e7345ca7a1f0a6d4_amd64", + "product": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:8dc562a0fdd1f4248feffc1e754745ced95d5aec6a943168e7345ca7a1f0a6d4_amd64", + "product_id": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:8dc562a0fdd1f4248feffc1e754745ced95d5aec6a943168e7345ca7a1f0a6d4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel8@sha256:8dc562a0fdd1f4248feffc1e754745ced95d5aec6a943168e7345ca7a1f0a6d4?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8&tag=v4.14.0-202311080350.p0.gd99fb31.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hypershift-rhel8@sha256:d8313cdf16700dc5ac690c577fe7c78b14c0a24f999733d06bf9bae2a5072dee_amd64", + "product": { + "name": "openshift4/ose-hypershift-rhel8@sha256:d8313cdf16700dc5ac690c577fe7c78b14c0a24f999733d06bf9bae2a5072dee_amd64", + "product_id": "openshift4/ose-hypershift-rhel8@sha256:d8313cdf16700dc5ac690c577fe7c78b14c0a24f999733d06bf9bae2a5072dee_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-hypershift-rhel8@sha256:d8313cdf16700dc5ac690c577fe7c78b14c0a24f999733d06bf9bae2a5072dee?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel8&tag=v4.14.0-202311150808.p0.g8551bc6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer-artifacts@sha256:cf0933b0ac2c241dc3e758cd29907b22ca7b59843eab8b4a43679d2eb09ac7c6_amd64", + "product": { + "name": "openshift4/ose-installer-artifacts@sha256:cf0933b0ac2c241dc3e758cd29907b22ca7b59843eab8b4a43679d2eb09ac7c6_amd64", + "product_id": "openshift4/ose-installer-artifacts@sha256:cf0933b0ac2c241dc3e758cd29907b22ca7b59843eab8b4a43679d2eb09ac7c6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer-artifacts@sha256:cf0933b0ac2c241dc3e758cd29907b22ca7b59843eab8b4a43679d2eb09ac7c6?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-installer-artifacts&tag=v4.14.0-202311100250.p0.gcebc8ab.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer@sha256:7663173c9782a29e9f8c931d971bcd5e3e63e223d6019c30f6fcc65d613d55fb_amd64", + "product": { + "name": "openshift4/ose-installer@sha256:7663173c9782a29e9f8c931d971bcd5e3e63e223d6019c30f6fcc65d613d55fb_amd64", + "product_id": "openshift4/ose-installer@sha256:7663173c9782a29e9f8c931d971bcd5e3e63e223d6019c30f6fcc65d613d55fb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer@sha256:7663173c9782a29e9f8c931d971bcd5e3e63e223d6019c30f6fcc65d613d55fb?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-installer&tag=v4.14.0-202311100250.p0.gcebc8ab.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-operator@sha256:eece8800b4cf063e1203132c9dba9364d904bc427228164e3088453d7ae7efae_amd64", + "product": { + "name": "openshift4/ose-machine-api-operator@sha256:eece8800b4cf063e1203132c9dba9364d904bc427228164e3088453d7ae7efae_amd64", + "product_id": "openshift4/ose-machine-api-operator@sha256:eece8800b4cf063e1203132c9dba9364d904bc427228164e3088453d7ae7efae_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-operator@sha256:eece8800b4cf063e1203132c9dba9364d904bc427228164e3088453d7ae7efae?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-api-operator&tag=v4.14.0-202311130809.p0.ge8e6a66.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-os-images-rhel8@sha256:69f23e8a3b24f38f3c57b1fc1084b42b03100dc71e626369a3992a4b47a6b5de_amd64", + "product": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:69f23e8a3b24f38f3c57b1fc1084b42b03100dc71e626369a3992a4b47a6b5de_amd64", + "product_id": "openshift4/ose-machine-os-images-rhel8@sha256:69f23e8a3b24f38f3c57b1fc1084b42b03100dc71e626369a3992a4b47a6b5de_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-os-images-rhel8@sha256:69f23e8a3b24f38f3c57b1fc1084b42b03100dc71e626369a3992a4b47a6b5de?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel8&tag=v4.14.0-202311100250.p0.gd3a4a6c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:26559d1fa110081ec584e744a915964a73175abbd43cb155987788e9af1dc6a5_amd64", + "product": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:26559d1fa110081ec584e744a915964a73175abbd43cb155987788e9af1dc6a5_amd64", + "product_id": "openshift4/ose-multus-networkpolicy-rhel8@sha256:26559d1fa110081ec584e744a915964a73175abbd43cb155987788e9af1dc6a5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-networkpolicy-rhel8@sha256:26559d1fa110081ec584e744a915964a73175abbd43cb155987788e9af1dc6a5?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8&tag=v4.14.0-202311100750.p0.g2440eeb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:dcb2e4d0536ebead329ab0ce74a6612b41dee10dbf1e2d6409446ad8bcadb78d_amd64", + "product": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:dcb2e4d0536ebead329ab0ce74a6612b41dee10dbf1e2d6409446ad8bcadb78d_amd64", + "product_id": "openshift4/ose-network-metrics-daemon-rhel8@sha256:dcb2e4d0536ebead329ab0ce74a6612b41dee10dbf1e2d6409446ad8bcadb78d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-metrics-daemon-rhel8@sha256:dcb2e4d0536ebead329ab0ce74a6612b41dee10dbf1e2d6409446ad8bcadb78d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8&tag=v4.14.0-202311090250.p0.g64dbc3b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:9b66eae476027e62a1d7c44b0eb8c1e2eebcd98207e8cef7932a5c541bc04109_amd64", + "product": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:9b66eae476027e62a1d7c44b0eb8c1e2eebcd98207e8cef7932a5c541bc04109_amd64", + "product_id": "openshift4/ose-openshift-apiserver-rhel8@sha256:9b66eae476027e62a1d7c44b0eb8c1e2eebcd98207e8cef7932a5c541bc04109_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-apiserver-rhel8@sha256:9b66eae476027e62a1d7c44b0eb8c1e2eebcd98207e8cef7932a5c541bc04109?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8&tag=v4.14.0-202311080850.p0.g8e1cc19.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:2a3b0436d7dd8b82027048ea274911f56992b00e8d31d2633ddf2864de5d88f3_amd64", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:2a3b0436d7dd8b82027048ea274911f56992b00e8d31d2633ddf2864de5d88f3_amd64", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:2a3b0436d7dd8b82027048ea274911f56992b00e8d31d2633ddf2864de5d88f3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8@sha256:2a3b0436d7dd8b82027048ea274911f56992b00e8d31d2633ddf2864de5d88f3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8&tag=v4.14.0-202311092032.p0.gaf51129.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:b7e493abd5a12b988d1586b433ffecebc5af52bc5357a2d6be2307d45527519d_amd64", + "product": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:b7e493abd5a12b988d1586b433ffecebc5af52bc5357a2d6be2307d45527519d_amd64", + "product_id": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:b7e493abd5a12b988d1586b433ffecebc5af52bc5357a2d6be2307d45527519d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel8@sha256:b7e493abd5a12b988d1586b433ffecebc5af52bc5357a2d6be2307d45527519d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8&tag=v4.14.0-202311092032.p0.gaf51129.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:ad20f8b12a690cb73a544dc35174340c7b896ec3b9ca94fd864ef884f23dc86d_amd64", + "product": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:ad20f8b12a690cb73a544dc35174340c7b896ec3b9ca94fd864ef884f23dc86d_amd64", + "product_id": "openshift4/ose-k8s-prometheus-adapter@sha256:ad20f8b12a690cb73a544dc35174340c7b896ec3b9ca94fd864ef884f23dc86d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-k8s-prometheus-adapter@sha256:ad20f8b12a690cb73a544dc35174340c7b896ec3b9ca94fd864ef884f23dc86d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter&tag=v4.14.0-202311100750.p0.g801a912.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-service-ca-operator@sha256:753e1cdee8fe91d302378a5086f63b0456e2ca6623db27980da19fb87404ba1d_amd64", + "product": { + "name": "openshift4/ose-service-ca-operator@sha256:753e1cdee8fe91d302378a5086f63b0456e2ca6623db27980da19fb87404ba1d_amd64", + "product_id": "openshift4/ose-service-ca-operator@sha256:753e1cdee8fe91d302378a5086f63b0456e2ca6623db27980da19fb87404ba1d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-service-ca-operator@sha256:753e1cdee8fe91d302378a5086f63b0456e2ca6623db27980da19fb87404ba1d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-service-ca-operator&tag=v4.14.0-202311081632.p0.g3c3f82f.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:cc062bdd692eb4933b7496412d5122fa6d185295ad65cb18d9fb06a417ddf33a_s390x", + "product": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:cc062bdd692eb4933b7496412d5122fa6d185295ad65cb18d9fb06a417ddf33a_s390x", + "product_id": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:cc062bdd692eb4933b7496412d5122fa6d185295ad65cb18d9fb06a417ddf33a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-etcd-rhel8-operator@sha256:cc062bdd692eb4933b7496412d5122fa6d185295ad65cb18d9fb06a417ddf33a?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator&tag=v4.14.0-202311090332.p0.g6bc9eab.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-monitoring-operator@sha256:faa7ded3f5ad71545ab11707594dd1d171fbb1491886a9705d2702c8f00934d6_s390x", + "product": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:faa7ded3f5ad71545ab11707594dd1d171fbb1491886a9705d2702c8f00934d6_s390x", + "product_id": "openshift4/ose-cluster-monitoring-operator@sha256:faa7ded3f5ad71545ab11707594dd1d171fbb1491886a9705d2702c8f00934d6_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-monitoring-operator@sha256:faa7ded3f5ad71545ab11707594dd1d171fbb1491886a9705d2702c8f00934d6?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-operator&tag=v4.14.0-202311140909.p0.g94ddd62.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:d705034c2adca20d90af7452de521d75b954d09e09bcbed0720ff00c05bf329e_s390x", + "product": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:d705034c2adca20d90af7452de521d75b954d09e09bcbed0720ff00c05bf329e_s390x", + "product_id": "openshift4/ose-cluster-node-tuning-operator@sha256:d705034c2adca20d90af7452de521d75b954d09e09bcbed0720ff00c05bf329e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-node-tuning-operator@sha256:d705034c2adca20d90af7452de521d75b954d09e09bcbed0720ff00c05bf329e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-operator&tag=v4.14.0-202311141210.p0.g1e657ec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/driver-toolkit-rhel9@sha256:c6896bab5071ff6839b2cfb66544c9a6617428069f3ad8b2d3710d66ad88676d_s390x", + "product": { + "name": "openshift4/driver-toolkit-rhel9@sha256:c6896bab5071ff6839b2cfb66544c9a6617428069f3ad8b2d3710d66ad88676d_s390x", + "product_id": "openshift4/driver-toolkit-rhel9@sha256:c6896bab5071ff6839b2cfb66544c9a6617428069f3ad8b2d3710d66ad88676d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/driver-toolkit-rhel9@sha256:c6896bab5071ff6839b2cfb66544c9a6617428069f3ad8b2d3710d66ad88676d?arch=s390x&repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9&tag=v4.14.0-202311142208.p0.gcafed17.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console@sha256:079a8d5464451a6e6122b3c4804d561e8319cb755feebd32bfbe2525b0efaad6_s390x", + "product": { + "name": "openshift4/ose-console@sha256:079a8d5464451a6e6122b3c4804d561e8319cb755feebd32bfbe2525b0efaad6_s390x", + "product_id": "openshift4/ose-console@sha256:079a8d5464451a6e6122b3c4804d561e8319cb755feebd32bfbe2525b0efaad6_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-console@sha256:079a8d5464451a6e6122b3c4804d561e8319cb755feebd32bfbe2525b0efaad6?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-console&tag=v4.14.0-202311081132.p0.g60b4100.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hyperkube-rhel9@sha256:5d6d34f3d4d89b63cd67396e3012af24033a29eec6f08deffc3df05c42842b74_s390x", + "product": { + "name": "openshift4/ose-hyperkube-rhel9@sha256:5d6d34f3d4d89b63cd67396e3012af24033a29eec6f08deffc3df05c42842b74_s390x", + "product_id": "openshift4/ose-hyperkube-rhel9@sha256:5d6d34f3d4d89b63cd67396e3012af24033a29eec6f08deffc3df05c42842b74_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-hyperkube-rhel9@sha256:5d6d34f3d4d89b63cd67396e3012af24033a29eec6f08deffc3df05c42842b74?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9&tag=v4.14.0-202311082008.p0.gb49f9d1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-pod@sha256:372ce069203ba79dea544e5cb4363d66b968e7e2e94e8eeef6dc76755edcfa3a_s390x", + "product": { + "name": "openshift4/ose-pod@sha256:372ce069203ba79dea544e5cb4363d66b968e7e2e94e8eeef6dc76755edcfa3a_s390x", + "product_id": "openshift4/ose-pod@sha256:372ce069203ba79dea544e5cb4363d66b968e7e2e94e8eeef6dc76755edcfa3a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-pod@sha256:372ce069203ba79dea544e5cb4363d66b968e7e2e94e8eeef6dc76755edcfa3a?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-pod&tag=v4.14.0-202311082008.p0.gb49f9d1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-registry@sha256:c50a291182e7f9e0cf59e871c410586152576468e9eb9bbbb47732de3d77151d_s390x", + "product": { + "name": "openshift4/ose-docker-registry@sha256:c50a291182e7f9e0cf59e871c410586152576468e9eb9bbbb47732de3d77151d_s390x", + "product_id": "openshift4/ose-docker-registry@sha256:c50a291182e7f9e0cf59e871c410586152576468e9eb9bbbb47732de3d77151d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-registry@sha256:c50a291182e7f9e0cf59e871c410586152576468e9eb9bbbb47732de3d77151d?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-docker-registry&tag=v4.14.0-202311081250.p0.g690b5a2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tests@sha256:ff1fced76dfdc57bb4a243de22e7c27a76ee67651a4971e68b4424557a8e7c52_s390x", + "product": { + "name": "openshift4/ose-tests@sha256:ff1fced76dfdc57bb4a243de22e7c27a76ee67651a4971e68b4424557a8e7c52_s390x", + "product_id": "openshift4/ose-tests@sha256:ff1fced76dfdc57bb4a243de22e7c27a76ee67651a4971e68b4424557a8e7c52_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-tests@sha256:ff1fced76dfdc57bb4a243de22e7c27a76ee67651a4971e68b4424557a8e7c52?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-tests&tag=v4.14.0-202311132210.p0.g8475523.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:7d2e13a2934ea3e20cfac8b58e51514d0411b1023e36d9a4c03d198bc34666e5_s390x", + "product": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:7d2e13a2934ea3e20cfac8b58e51514d0411b1023e36d9a4c03d198bc34666e5_s390x", + "product_id": "openshift4/ose-baremetal-installer-rhel8@sha256:7d2e13a2934ea3e20cfac8b58e51514d0411b1023e36d9a4c03d198bc34666e5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-installer-rhel8@sha256:7d2e13a2934ea3e20cfac8b58e51514d0411b1023e36d9a4c03d198bc34666e5?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8&tag=v4.14.0-202311100250.p0.gcebc8ab.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:0c751c2ad31d7927996ddd5eedb4e7dc5ea1dae8e0dea63d391cf62e26335263_s390x", + "product": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:0c751c2ad31d7927996ddd5eedb4e7dc5ea1dae8e0dea63d391cf62e26335263_s390x", + "product_id": "openshift4/ose-container-networking-plugins-rhel8@sha256:0c751c2ad31d7927996ddd5eedb4e7dc5ea1dae8e0dea63d391cf62e26335263_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-container-networking-plugins-rhel8@sha256:0c751c2ad31d7927996ddd5eedb4e7dc5ea1dae8e0dea63d391cf62e26335263?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8&tag=v4.14.0-202311100932.p0.g7295a5e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:99e5a299867c6c5f7fd8b11c0672e729c2af66296b940a129958650200cc1c21_s390x", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:99e5a299867c6c5f7fd8b11c0672e729c2af66296b940a129958650200cc1c21_s390x", + "product_id": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:99e5a299867c6c5f7fd8b11c0672e729c2af66296b940a129958650200cc1c21_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-rhel8@sha256:99e5a299867c6c5f7fd8b11c0672e729c2af66296b940a129958650200cc1c21?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8&tag=v4.14.0-202311092032.p0.g3ffcdcf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:22b4c859f9799a20be5ab0f1427a76335e1cfc38a53e0884488527f1152648d4_s390x", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:22b4c859f9799a20be5ab0f1427a76335e1cfc38a53e0884488527f1152648d4_s390x", + "product_id": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:22b4c859f9799a20be5ab0f1427a76335e1cfc38a53e0884488527f1152648d4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-operator-rhel8@sha256:22b4c859f9799a20be5ab0f1427a76335e1cfc38a53e0884488527f1152648d4?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8&tag=v4.14.0-202311130809.p0.ga351354.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:1fad0bbcb5085ad03e2682d80aa7294cf337b75e1cc99f00d9bca9d799c44a2c_s390x", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:1fad0bbcb5085ad03e2682d80aa7294cf337b75e1cc99f00d9bca9d799c44a2c_s390x", + "product_id": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:1fad0bbcb5085ad03e2682d80aa7294cf337b75e1cc99f00d9bca9d799c44a2c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-webhook-rhel8@sha256:1fad0bbcb5085ad03e2682d80aa7294cf337b75e1cc99f00d9bca9d799c44a2c?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8&tag=v4.14.0-202311092032.p0.g3ffcdcf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hypershift-rhel8@sha256:880b1d19e32f3f3c2aa31d8009e364c09292cb5ac01bf8b52ff4648f23bd6ce6_s390x", + "product": { + "name": "openshift4/ose-hypershift-rhel8@sha256:880b1d19e32f3f3c2aa31d8009e364c09292cb5ac01bf8b52ff4648f23bd6ce6_s390x", + "product_id": "openshift4/ose-hypershift-rhel8@sha256:880b1d19e32f3f3c2aa31d8009e364c09292cb5ac01bf8b52ff4648f23bd6ce6_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-hypershift-rhel8@sha256:880b1d19e32f3f3c2aa31d8009e364c09292cb5ac01bf8b52ff4648f23bd6ce6?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel8&tag=v4.14.0-202311150808.p0.g8551bc6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer-artifacts@sha256:42730209d74d5323e5ff055dcfb3cafdc47ff052611a4a23833c32c5380f04c0_s390x", + "product": { + "name": "openshift4/ose-installer-artifacts@sha256:42730209d74d5323e5ff055dcfb3cafdc47ff052611a4a23833c32c5380f04c0_s390x", + "product_id": "openshift4/ose-installer-artifacts@sha256:42730209d74d5323e5ff055dcfb3cafdc47ff052611a4a23833c32c5380f04c0_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer-artifacts@sha256:42730209d74d5323e5ff055dcfb3cafdc47ff052611a4a23833c32c5380f04c0?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-installer-artifacts&tag=v4.14.0-202311100250.p0.gcebc8ab.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer@sha256:b4a52c0d96ba6a977816f280748bda13c499a3acb4e3be68e9e9df3443fc4a83_s390x", + "product": { + "name": "openshift4/ose-installer@sha256:b4a52c0d96ba6a977816f280748bda13c499a3acb4e3be68e9e9df3443fc4a83_s390x", + "product_id": "openshift4/ose-installer@sha256:b4a52c0d96ba6a977816f280748bda13c499a3acb4e3be68e9e9df3443fc4a83_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer@sha256:b4a52c0d96ba6a977816f280748bda13c499a3acb4e3be68e9e9df3443fc4a83?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-installer&tag=v4.14.0-202311100250.p0.gcebc8ab.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-operator@sha256:755d0f794c440d32afd60ce2bd4983c9cf3363becae6e611fc6784e448ac1328_s390x", + "product": { + "name": "openshift4/ose-machine-api-operator@sha256:755d0f794c440d32afd60ce2bd4983c9cf3363becae6e611fc6784e448ac1328_s390x", + "product_id": "openshift4/ose-machine-api-operator@sha256:755d0f794c440d32afd60ce2bd4983c9cf3363becae6e611fc6784e448ac1328_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-operator@sha256:755d0f794c440d32afd60ce2bd4983c9cf3363becae6e611fc6784e448ac1328?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-machine-api-operator&tag=v4.14.0-202311130809.p0.ge8e6a66.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:6da272e9b3f8ac035999d475a01475f419de101233627eff9fb1fc79708fb389_s390x", + "product": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:6da272e9b3f8ac035999d475a01475f419de101233627eff9fb1fc79708fb389_s390x", + "product_id": "openshift4/ose-multus-networkpolicy-rhel8@sha256:6da272e9b3f8ac035999d475a01475f419de101233627eff9fb1fc79708fb389_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-networkpolicy-rhel8@sha256:6da272e9b3f8ac035999d475a01475f419de101233627eff9fb1fc79708fb389?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8&tag=v4.14.0-202311100750.p0.g2440eeb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:2bbde5d22844f79ee08069be9d12ad61d8365b872e10bbd99d1d7a25b3c143c5_s390x", + "product": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:2bbde5d22844f79ee08069be9d12ad61d8365b872e10bbd99d1d7a25b3c143c5_s390x", + "product_id": "openshift4/ose-network-metrics-daemon-rhel8@sha256:2bbde5d22844f79ee08069be9d12ad61d8365b872e10bbd99d1d7a25b3c143c5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-metrics-daemon-rhel8@sha256:2bbde5d22844f79ee08069be9d12ad61d8365b872e10bbd99d1d7a25b3c143c5?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8&tag=v4.14.0-202311090250.p0.g64dbc3b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:73b5d3d85ca87f9dfde2e961cbebb79d67884cf07480135bff5df24d43aa13af_s390x", + "product": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:73b5d3d85ca87f9dfde2e961cbebb79d67884cf07480135bff5df24d43aa13af_s390x", + "product_id": "openshift4/ose-openshift-apiserver-rhel8@sha256:73b5d3d85ca87f9dfde2e961cbebb79d67884cf07480135bff5df24d43aa13af_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-apiserver-rhel8@sha256:73b5d3d85ca87f9dfde2e961cbebb79d67884cf07480135bff5df24d43aa13af?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8&tag=v4.14.0-202311080850.p0.g8e1cc19.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:111210b581f621282ee24e70ac1090eb1693595dc62594dd88efc0d4324d39a9_s390x", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:111210b581f621282ee24e70ac1090eb1693595dc62594dd88efc0d4324d39a9_s390x", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:111210b581f621282ee24e70ac1090eb1693595dc62594dd88efc0d4324d39a9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8@sha256:111210b581f621282ee24e70ac1090eb1693595dc62594dd88efc0d4324d39a9?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8&tag=v4.14.0-202311092032.p0.gaf51129.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:1d7519691fb8f7761927f58cc3c192452418e914584ede9999be84c66877bdb9_s390x", + "product": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:1d7519691fb8f7761927f58cc3c192452418e914584ede9999be84c66877bdb9_s390x", + "product_id": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:1d7519691fb8f7761927f58cc3c192452418e914584ede9999be84c66877bdb9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel8@sha256:1d7519691fb8f7761927f58cc3c192452418e914584ede9999be84c66877bdb9?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8&tag=v4.14.0-202311092032.p0.gaf51129.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:026cffc5f057d30eafb7f0e75b29f5c17a4290dc38737531ec0e70f703420bc3_s390x", + "product": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:026cffc5f057d30eafb7f0e75b29f5c17a4290dc38737531ec0e70f703420bc3_s390x", + "product_id": "openshift4/ose-k8s-prometheus-adapter@sha256:026cffc5f057d30eafb7f0e75b29f5c17a4290dc38737531ec0e70f703420bc3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-k8s-prometheus-adapter@sha256:026cffc5f057d30eafb7f0e75b29f5c17a4290dc38737531ec0e70f703420bc3?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter&tag=v4.14.0-202311100750.p0.g801a912.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-service-ca-operator@sha256:95ac59984a73d14dd5e3fc7ae86243d00b70e66a40a656d3ff61091372943c73_s390x", + "product": { + "name": "openshift4/ose-service-ca-operator@sha256:95ac59984a73d14dd5e3fc7ae86243d00b70e66a40a656d3ff61091372943c73_s390x", + "product_id": "openshift4/ose-service-ca-operator@sha256:95ac59984a73d14dd5e3fc7ae86243d00b70e66a40a656d3ff61091372943c73_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-service-ca-operator@sha256:95ac59984a73d14dd5e3fc7ae86243d00b70e66a40a656d3ff61091372943c73?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-service-ca-operator&tag=v4.14.0-202311081632.p0.g3c3f82f.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:58f2369af42352c8fa2b731fbf55343ed160c881673e2501fab2b1176a9b32ec_arm64", + "product": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:58f2369af42352c8fa2b731fbf55343ed160c881673e2501fab2b1176a9b32ec_arm64", + "product_id": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:58f2369af42352c8fa2b731fbf55343ed160c881673e2501fab2b1176a9b32ec_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-etcd-rhel8-operator@sha256:58f2369af42352c8fa2b731fbf55343ed160c881673e2501fab2b1176a9b32ec?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator&tag=v4.14.0-202311090332.p0.g6bc9eab.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-monitoring-operator@sha256:12cbf97240f7d3903de177c03adf888604c7c8deace205493cc59043c9b65280_arm64", + "product": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:12cbf97240f7d3903de177c03adf888604c7c8deace205493cc59043c9b65280_arm64", + "product_id": "openshift4/ose-cluster-monitoring-operator@sha256:12cbf97240f7d3903de177c03adf888604c7c8deace205493cc59043c9b65280_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-monitoring-operator@sha256:12cbf97240f7d3903de177c03adf888604c7c8deace205493cc59043c9b65280?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-operator&tag=v4.14.0-202311140909.p0.g94ddd62.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:de68d103ba913414c9000762bcecb64a3bdc7f15a0572d321f7485c3943b1fbb_arm64", + "product": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:de68d103ba913414c9000762bcecb64a3bdc7f15a0572d321f7485c3943b1fbb_arm64", + "product_id": "openshift4/ose-cluster-node-tuning-operator@sha256:de68d103ba913414c9000762bcecb64a3bdc7f15a0572d321f7485c3943b1fbb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-node-tuning-operator@sha256:de68d103ba913414c9000762bcecb64a3bdc7f15a0572d321f7485c3943b1fbb?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-operator&tag=v4.14.0-202311141210.p0.g1e657ec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/driver-toolkit-rhel9@sha256:5d8f215f79ae57a23d2627062e6ee08c48bf77ae17e1ac969d5cc0b6ce5295a4_arm64", + "product": { + "name": "openshift4/driver-toolkit-rhel9@sha256:5d8f215f79ae57a23d2627062e6ee08c48bf77ae17e1ac969d5cc0b6ce5295a4_arm64", + "product_id": "openshift4/driver-toolkit-rhel9@sha256:5d8f215f79ae57a23d2627062e6ee08c48bf77ae17e1ac969d5cc0b6ce5295a4_arm64", + "product_identification_helper": { + "purl": "pkg:oci/driver-toolkit-rhel9@sha256:5d8f215f79ae57a23d2627062e6ee08c48bf77ae17e1ac969d5cc0b6ce5295a4?arch=arm64&repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9&tag=v4.14.0-202311142208.p0.gcafed17.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-rhel9@sha256:c7e9b90fa91bef70de2f62346ba59ff87f580efb9931548622cc7e0cee0aa3ac_arm64", + "product": { + "name": "openshift4/ose-ironic-rhel9@sha256:c7e9b90fa91bef70de2f62346ba59ff87f580efb9931548622cc7e0cee0aa3ac_arm64", + "product_id": "openshift4/ose-ironic-rhel9@sha256:c7e9b90fa91bef70de2f62346ba59ff87f580efb9931548622cc7e0cee0aa3ac_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-rhel9@sha256:c7e9b90fa91bef70de2f62346ba59ff87f580efb9931548622cc7e0cee0aa3ac?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9&tag=v4.14.0-202311130809.p0.g5ec3ad0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:2a764e7c35d27cdd87479326ffbc2eaa85f8d81256fcc1415684d38e22a723c1_arm64", + "product": { + "name": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:2a764e7c35d27cdd87479326ffbc2eaa85f8d81256fcc1415684d38e22a723c1_arm64", + "product_id": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:2a764e7c35d27cdd87479326ffbc2eaa85f8d81256fcc1415684d38e22a723c1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-machine-os-downloader-rhel9@sha256:2a764e7c35d27cdd87479326ffbc2eaa85f8d81256fcc1415684d38e22a723c1?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9&tag=v4.14.0-202311142208.p0.g7b56c30.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console@sha256:c10561d95ba2e669c4e1b9519ab951f4dd079a4cf9681138ddaadd10f283ea5e_arm64", + "product": { + "name": "openshift4/ose-console@sha256:c10561d95ba2e669c4e1b9519ab951f4dd079a4cf9681138ddaadd10f283ea5e_arm64", + "product_id": "openshift4/ose-console@sha256:c10561d95ba2e669c4e1b9519ab951f4dd079a4cf9681138ddaadd10f283ea5e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-console@sha256:c10561d95ba2e669c4e1b9519ab951f4dd079a4cf9681138ddaadd10f283ea5e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-console&tag=v4.14.0-202311081132.p0.g60b4100.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hyperkube-rhel9@sha256:4eddf487d75891dc19ba0c16d655eda2416f8b6f293801c8e55f1f00aa8f8dfb_arm64", + "product": { + "name": "openshift4/ose-hyperkube-rhel9@sha256:4eddf487d75891dc19ba0c16d655eda2416f8b6f293801c8e55f1f00aa8f8dfb_arm64", + "product_id": "openshift4/ose-hyperkube-rhel9@sha256:4eddf487d75891dc19ba0c16d655eda2416f8b6f293801c8e55f1f00aa8f8dfb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-hyperkube-rhel9@sha256:4eddf487d75891dc19ba0c16d655eda2416f8b6f293801c8e55f1f00aa8f8dfb?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-hyperkube-rhel9&tag=v4.14.0-202311082008.p0.gb49f9d1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-pod@sha256:6023ecae84621e486a0cd91862cee8dfe1a7e0d2bbcbe237f7a6171396468ac6_arm64", + "product": { + "name": "openshift4/ose-pod@sha256:6023ecae84621e486a0cd91862cee8dfe1a7e0d2bbcbe237f7a6171396468ac6_arm64", + "product_id": "openshift4/ose-pod@sha256:6023ecae84621e486a0cd91862cee8dfe1a7e0d2bbcbe237f7a6171396468ac6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-pod@sha256:6023ecae84621e486a0cd91862cee8dfe1a7e0d2bbcbe237f7a6171396468ac6?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-pod&tag=v4.14.0-202311082008.p0.gb49f9d1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-registry@sha256:067fb89783dbfe45b5f7fbed6c3513c37d1e4ab32e253fcec0894875874d28e9_arm64", + "product": { + "name": "openshift4/ose-docker-registry@sha256:067fb89783dbfe45b5f7fbed6c3513c37d1e4ab32e253fcec0894875874d28e9_arm64", + "product_id": "openshift4/ose-docker-registry@sha256:067fb89783dbfe45b5f7fbed6c3513c37d1e4ab32e253fcec0894875874d28e9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-registry@sha256:067fb89783dbfe45b5f7fbed6c3513c37d1e4ab32e253fcec0894875874d28e9?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-docker-registry&tag=v4.14.0-202311081250.p0.g690b5a2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tests@sha256:2dc438aadd6898347a48ddfc6e903da4482b58b39f627b09915b91833540b42b_arm64", + "product": { + "name": "openshift4/ose-tests@sha256:2dc438aadd6898347a48ddfc6e903da4482b58b39f627b09915b91833540b42b_arm64", + "product_id": "openshift4/ose-tests@sha256:2dc438aadd6898347a48ddfc6e903da4482b58b39f627b09915b91833540b42b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-tests@sha256:2dc438aadd6898347a48ddfc6e903da4482b58b39f627b09915b91833540b42b?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-tests&tag=v4.14.0-202311132210.p0.g8475523.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:d2b9f1ca058a89a649ddad44b251f35fda5b52b725c496d769a71e46dab73170_arm64", + "product": { + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:d2b9f1ca058a89a649ddad44b251f35fda5b52b725c496d769a71e46dab73170_arm64", + "product_id": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:d2b9f1ca058a89a649ddad44b251f35fda5b52b725c496d769a71e46dab73170_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-pod-identity-webhook-rhel8@sha256:d2b9f1ca058a89a649ddad44b251f35fda5b52b725c496d769a71e46dab73170?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8&tag=v4.14.0-202311131533.p0.g3aa931a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:32889e3e6c7e74ff6a9a19a58b5a4d0f04b24081dcd7b69a3f9a4cbf9f0e88b1_arm64", + "product": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:32889e3e6c7e74ff6a9a19a58b5a4d0f04b24081dcd7b69a3f9a4cbf9f0e88b1_arm64", + "product_id": "openshift4/ose-baremetal-installer-rhel8@sha256:32889e3e6c7e74ff6a9a19a58b5a4d0f04b24081dcd7b69a3f9a4cbf9f0e88b1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-installer-rhel8@sha256:32889e3e6c7e74ff6a9a19a58b5a4d0f04b24081dcd7b69a3f9a4cbf9f0e88b1?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8&tag=v4.14.0-202311100250.p0.gcebc8ab.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:c2017633e954d9ea31cda0ebaf0b7b9a7d104822d9c9f05bfd787c390a8bff92_arm64", + "product": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:c2017633e954d9ea31cda0ebaf0b7b9a7d104822d9c9f05bfd787c390a8bff92_arm64", + "product_id": "openshift4/ose-container-networking-plugins-rhel8@sha256:c2017633e954d9ea31cda0ebaf0b7b9a7d104822d9c9f05bfd787c390a8bff92_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-container-networking-plugins-rhel8@sha256:c2017633e954d9ea31cda0ebaf0b7b9a7d104822d9c9f05bfd787c390a8bff92?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8&tag=v4.14.0-202311100932.p0.g7295a5e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:9121f84fe1515c3208c3a00f9dc4e1edc786cb3beda5a6c756922b81f7582e80_arm64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:9121f84fe1515c3208c3a00f9dc4e1edc786cb3beda5a6c756922b81f7582e80_arm64", + "product_id": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:9121f84fe1515c3208c3a00f9dc4e1edc786cb3beda5a6c756922b81f7582e80_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-rhel8@sha256:9121f84fe1515c3208c3a00f9dc4e1edc786cb3beda5a6c756922b81f7582e80?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8&tag=v4.14.0-202311092032.p0.g3ffcdcf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:88b195cca5b8bf890339e1e8099452825d32f275d22be06f82b8d6a7cc61e2be_arm64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:88b195cca5b8bf890339e1e8099452825d32f275d22be06f82b8d6a7cc61e2be_arm64", + "product_id": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:88b195cca5b8bf890339e1e8099452825d32f275d22be06f82b8d6a7cc61e2be_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-operator-rhel8@sha256:88b195cca5b8bf890339e1e8099452825d32f275d22be06f82b8d6a7cc61e2be?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8&tag=v4.14.0-202311130809.p0.ga351354.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:83469a38dcf61eb8f1830dea9db3ecdbac002e592c9456917663df84212d2531_arm64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:83469a38dcf61eb8f1830dea9db3ecdbac002e592c9456917663df84212d2531_arm64", + "product_id": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:83469a38dcf61eb8f1830dea9db3ecdbac002e592c9456917663df84212d2531_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-webhook-rhel8@sha256:83469a38dcf61eb8f1830dea9db3ecdbac002e592c9456917663df84212d2531?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8&tag=v4.14.0-202311092032.p0.g3ffcdcf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:bace4fc8f73798419d557c81ed1e90873170fe62d2edf611299b83c355ecf06c_arm64", + "product": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:bace4fc8f73798419d557c81ed1e90873170fe62d2edf611299b83c355ecf06c_arm64", + "product_id": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:bace4fc8f73798419d557c81ed1e90873170fe62d2edf611299b83c355ecf06c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel8@sha256:bace4fc8f73798419d557c81ed1e90873170fe62d2edf611299b83c355ecf06c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8&tag=v4.14.0-202311080350.p0.gd99fb31.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hypershift-rhel8@sha256:f1f4a81a7cbfcecffae4ce3b938ccfa471e2164598195c105d8eb3459a60db7d_arm64", + "product": { + "name": "openshift4/ose-hypershift-rhel8@sha256:f1f4a81a7cbfcecffae4ce3b938ccfa471e2164598195c105d8eb3459a60db7d_arm64", + "product_id": "openshift4/ose-hypershift-rhel8@sha256:f1f4a81a7cbfcecffae4ce3b938ccfa471e2164598195c105d8eb3459a60db7d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-hypershift-rhel8@sha256:f1f4a81a7cbfcecffae4ce3b938ccfa471e2164598195c105d8eb3459a60db7d?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel8&tag=v4.14.0-202311150808.p0.g8551bc6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer-artifacts@sha256:2ba28613e4ce09e52a73019289f9307e32c10e75d662015b4f06cfe92e15ac32_arm64", + "product": { + "name": "openshift4/ose-installer-artifacts@sha256:2ba28613e4ce09e52a73019289f9307e32c10e75d662015b4f06cfe92e15ac32_arm64", + "product_id": "openshift4/ose-installer-artifacts@sha256:2ba28613e4ce09e52a73019289f9307e32c10e75d662015b4f06cfe92e15ac32_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer-artifacts@sha256:2ba28613e4ce09e52a73019289f9307e32c10e75d662015b4f06cfe92e15ac32?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-installer-artifacts&tag=v4.14.0-202311100250.p0.gcebc8ab.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer@sha256:572225d6c93a3bfd13c0950315160ef4de8063ca7c4cc4639424afe0997b7aa6_arm64", + "product": { + "name": "openshift4/ose-installer@sha256:572225d6c93a3bfd13c0950315160ef4de8063ca7c4cc4639424afe0997b7aa6_arm64", + "product_id": "openshift4/ose-installer@sha256:572225d6c93a3bfd13c0950315160ef4de8063ca7c4cc4639424afe0997b7aa6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer@sha256:572225d6c93a3bfd13c0950315160ef4de8063ca7c4cc4639424afe0997b7aa6?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-installer&tag=v4.14.0-202311100250.p0.gcebc8ab.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-operator@sha256:a9ec8ccc5d32336980b9e92814ec451c4851b4532b4700c1e640141f8bd49183_arm64", + "product": { + "name": "openshift4/ose-machine-api-operator@sha256:a9ec8ccc5d32336980b9e92814ec451c4851b4532b4700c1e640141f8bd49183_arm64", + "product_id": "openshift4/ose-machine-api-operator@sha256:a9ec8ccc5d32336980b9e92814ec451c4851b4532b4700c1e640141f8bd49183_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-operator@sha256:a9ec8ccc5d32336980b9e92814ec451c4851b4532b4700c1e640141f8bd49183?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-api-operator&tag=v4.14.0-202311130809.p0.ge8e6a66.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-os-images-rhel8@sha256:c5d1c78280f88bd8989dace00be9b0b4cdf0c03f6159b7e367241afc6e6f2be9_arm64", + "product": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:c5d1c78280f88bd8989dace00be9b0b4cdf0c03f6159b7e367241afc6e6f2be9_arm64", + "product_id": "openshift4/ose-machine-os-images-rhel8@sha256:c5d1c78280f88bd8989dace00be9b0b4cdf0c03f6159b7e367241afc6e6f2be9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-os-images-rhel8@sha256:c5d1c78280f88bd8989dace00be9b0b4cdf0c03f6159b7e367241afc6e6f2be9?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel8&tag=v4.14.0-202311100250.p0.gd3a4a6c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:8412447454b801bc73d7a993b787c989d8ecc1812c3a4fc506e044dd190c7e50_arm64", + "product": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:8412447454b801bc73d7a993b787c989d8ecc1812c3a4fc506e044dd190c7e50_arm64", + "product_id": "openshift4/ose-multus-networkpolicy-rhel8@sha256:8412447454b801bc73d7a993b787c989d8ecc1812c3a4fc506e044dd190c7e50_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-networkpolicy-rhel8@sha256:8412447454b801bc73d7a993b787c989d8ecc1812c3a4fc506e044dd190c7e50?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8&tag=v4.14.0-202311100750.p0.g2440eeb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:facd71815f28f6514fc981ac60d60461024e573a7705c9cd1bb3786dd8cd6c95_arm64", + "product": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:facd71815f28f6514fc981ac60d60461024e573a7705c9cd1bb3786dd8cd6c95_arm64", + "product_id": "openshift4/ose-network-metrics-daemon-rhel8@sha256:facd71815f28f6514fc981ac60d60461024e573a7705c9cd1bb3786dd8cd6c95_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-metrics-daemon-rhel8@sha256:facd71815f28f6514fc981ac60d60461024e573a7705c9cd1bb3786dd8cd6c95?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8&tag=v4.14.0-202311090250.p0.g64dbc3b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:31336303b00e5cc8d8bff1064b6be37d2892b16d012da30e23160d9aa6182060_arm64", + "product": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:31336303b00e5cc8d8bff1064b6be37d2892b16d012da30e23160d9aa6182060_arm64", + "product_id": "openshift4/ose-openshift-apiserver-rhel8@sha256:31336303b00e5cc8d8bff1064b6be37d2892b16d012da30e23160d9aa6182060_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-apiserver-rhel8@sha256:31336303b00e5cc8d8bff1064b6be37d2892b16d012da30e23160d9aa6182060?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8&tag=v4.14.0-202311080850.p0.g8e1cc19.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:938e90d52b7f40d755e0638592a03d2ec46c35dece02110f3e2c9921cf2b5879_arm64", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:938e90d52b7f40d755e0638592a03d2ec46c35dece02110f3e2c9921cf2b5879_arm64", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:938e90d52b7f40d755e0638592a03d2ec46c35dece02110f3e2c9921cf2b5879_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8@sha256:938e90d52b7f40d755e0638592a03d2ec46c35dece02110f3e2c9921cf2b5879?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8&tag=v4.14.0-202311092032.p0.gaf51129.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:9f2a9a1e4d64ed3d90bc49207d2a62a08678f6e5103cb43ee6efeae51caf0e9d_arm64", + "product": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:9f2a9a1e4d64ed3d90bc49207d2a62a08678f6e5103cb43ee6efeae51caf0e9d_arm64", + "product_id": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:9f2a9a1e4d64ed3d90bc49207d2a62a08678f6e5103cb43ee6efeae51caf0e9d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel8@sha256:9f2a9a1e4d64ed3d90bc49207d2a62a08678f6e5103cb43ee6efeae51caf0e9d?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8&tag=v4.14.0-202311092032.p0.gaf51129.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:8af5bbd5348beb02c1dd565e4e000782c2f0ee68c6c0289f342620acf51fb175_arm64", + "product": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:8af5bbd5348beb02c1dd565e4e000782c2f0ee68c6c0289f342620acf51fb175_arm64", + "product_id": "openshift4/ose-k8s-prometheus-adapter@sha256:8af5bbd5348beb02c1dd565e4e000782c2f0ee68c6c0289f342620acf51fb175_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-k8s-prometheus-adapter@sha256:8af5bbd5348beb02c1dd565e4e000782c2f0ee68c6c0289f342620acf51fb175?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter&tag=v4.14.0-202311100750.p0.g801a912.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-service-ca-operator@sha256:dc539ba93e46d99388f387b7f9cf08052a56bb0c3189fb09818ecec06b1fc934_arm64", + "product": { + "name": "openshift4/ose-service-ca-operator@sha256:dc539ba93e46d99388f387b7f9cf08052a56bb0c3189fb09818ecec06b1fc934_arm64", + "product_id": "openshift4/ose-service-ca-operator@sha256:dc539ba93e46d99388f387b7f9cf08052a56bb0c3189fb09818ecec06b1fc934_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-service-ca-operator@sha256:dc539ba93e46d99388f387b7f9cf08052a56bb0c3189fb09818ecec06b1fc934?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-service-ca-operator&tag=v4.14.0-202311081632.p0.g3c3f82f.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-gitops-1/argocd-rhel8@sha256:fbd5576fa614602b26677e91136d0c9c4722e0eb09672e3784ebdfe71737d3bd_amd64", + "product": { + "name": "openshift-gitops-1/argocd-rhel8@sha256:fbd5576fa614602b26677e91136d0c9c4722e0eb09672e3784ebdfe71737d3bd_amd64", + "product_id": "openshift-gitops-1/argocd-rhel8@sha256:fbd5576fa614602b26677e91136d0c9c4722e0eb09672e3784ebdfe71737d3bd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/argocd-rhel8@sha256:fbd5576fa614602b26677e91136d0c9c4722e0eb09672e3784ebdfe71737d3bd?arch=amd64&repository_url=registry.redhat.io/openshift-gitops-1/argocd-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/argo-rollouts-rhel8@sha256:08c50b13b7fd04f3756250ce727f75f9d8da1bf0dbb27fd2f1206850d9e7d0fc_amd64", + "product": { + "name": "openshift-gitops-1/argo-rollouts-rhel8@sha256:08c50b13b7fd04f3756250ce727f75f9d8da1bf0dbb27fd2f1206850d9e7d0fc_amd64", + "product_id": "openshift-gitops-1/argo-rollouts-rhel8@sha256:08c50b13b7fd04f3756250ce727f75f9d8da1bf0dbb27fd2f1206850d9e7d0fc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/argo-rollouts-rhel8@sha256:08c50b13b7fd04f3756250ce727f75f9d8da1bf0dbb27fd2f1206850d9e7d0fc?arch=amd64&repository_url=registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/console-plugin-rhel8@sha256:eb9abd40236e7752cd8b5d215ff8619d73e1fd5ff6abd0884409dcd442fb4eaf_amd64", + "product": { + "name": "openshift-gitops-1/console-plugin-rhel8@sha256:eb9abd40236e7752cd8b5d215ff8619d73e1fd5ff6abd0884409dcd442fb4eaf_amd64", + "product_id": "openshift-gitops-1/console-plugin-rhel8@sha256:eb9abd40236e7752cd8b5d215ff8619d73e1fd5ff6abd0884409dcd442fb4eaf_amd64", + "product_identification_helper": { + "purl": "pkg:oci/console-plugin-rhel8@sha256:eb9abd40236e7752cd8b5d215ff8619d73e1fd5ff6abd0884409dcd442fb4eaf?arch=amd64&repository_url=registry.redhat.io/openshift-gitops-1/console-plugin-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/gitops-rhel8@sha256:97acdfe9b2fba3a37f01e91efb4074eadcec204414ae7f2c0a426b71af60288c_amd64", + "product": { + "name": "openshift-gitops-1/gitops-rhel8@sha256:97acdfe9b2fba3a37f01e91efb4074eadcec204414ae7f2c0a426b71af60288c_amd64", + "product_id": "openshift-gitops-1/gitops-rhel8@sha256:97acdfe9b2fba3a37f01e91efb4074eadcec204414ae7f2c0a426b71af60288c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/gitops-rhel8@sha256:97acdfe9b2fba3a37f01e91efb4074eadcec204414ae7f2c0a426b71af60288c?arch=amd64&repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/dex-rhel8@sha256:2c5390ab43937ee0f089f56bd64752aa7d477d713d2eabf17fa7a48b3244e573_amd64", + "product": { + "name": "openshift-gitops-1/dex-rhel8@sha256:2c5390ab43937ee0f089f56bd64752aa7d477d713d2eabf17fa7a48b3244e573_amd64", + "product_id": "openshift-gitops-1/dex-rhel8@sha256:2c5390ab43937ee0f089f56bd64752aa7d477d713d2eabf17fa7a48b3244e573_amd64", + "product_identification_helper": { + "purl": "pkg:oci/dex-rhel8@sha256:2c5390ab43937ee0f089f56bd64752aa7d477d713d2eabf17fa7a48b3244e573?arch=amd64&repository_url=registry.redhat.io/openshift-gitops-1/dex-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/kam-delivery-rhel8@sha256:1c546c5cdafd6ca78c3f5cb51d76bdc1c139fdbeee3eae0799a2550920cd31a1_amd64", + "product": { + "name": "openshift-gitops-1/kam-delivery-rhel8@sha256:1c546c5cdafd6ca78c3f5cb51d76bdc1c139fdbeee3eae0799a2550920cd31a1_amd64", + "product_id": "openshift-gitops-1/kam-delivery-rhel8@sha256:1c546c5cdafd6ca78c3f5cb51d76bdc1c139fdbeee3eae0799a2550920cd31a1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kam-delivery-rhel8@sha256:1c546c5cdafd6ca78c3f5cb51d76bdc1c139fdbeee3eae0799a2550920cd31a1?arch=amd64&repository_url=registry.redhat.io/openshift-gitops-1/kam-delivery-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/must-gather-rhel8@sha256:b8ff5a1de115b5760c281f59a32831a3a6b949d65a15689d591da6849b297ee9_amd64", + "product": { + "name": "openshift-gitops-1/must-gather-rhel8@sha256:b8ff5a1de115b5760c281f59a32831a3a6b949d65a15689d591da6849b297ee9_amd64", + "product_id": "openshift-gitops-1/must-gather-rhel8@sha256:b8ff5a1de115b5760c281f59a32831a3a6b949d65a15689d591da6849b297ee9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/must-gather-rhel8@sha256:b8ff5a1de115b5760c281f59a32831a3a6b949d65a15689d591da6849b297ee9?arch=amd64&repository_url=registry.redhat.io/openshift-gitops-1/must-gather-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/gitops-operator-bundle@sha256:d8725149c57d5de6c5c10d472cfd54721e8f8bf12e66e34c0311103a835a3081_amd64", + "product": { + "name": "openshift-gitops-1/gitops-operator-bundle@sha256:d8725149c57d5de6c5c10d472cfd54721e8f8bf12e66e34c0311103a835a3081_amd64", + "product_id": "openshift-gitops-1/gitops-operator-bundle@sha256:d8725149c57d5de6c5c10d472cfd54721e8f8bf12e66e34c0311103a835a3081_amd64", + "product_identification_helper": { + "purl": "pkg:oci/gitops-operator-bundle@sha256:d8725149c57d5de6c5c10d472cfd54721e8f8bf12e66e34c0311103a835a3081?arch=amd64&repository_url=registry.redhat.io/openshift-gitops-1/gitops-operator-bundle&tag=v1.9.3-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/gitops-rhel8-operator@sha256:d491c7c8525393b4dc8277fae5639ee41ae4d6bbada83a212742e9683877f0b0_amd64", + "product": { + "name": "openshift-gitops-1/gitops-rhel8-operator@sha256:d491c7c8525393b4dc8277fae5639ee41ae4d6bbada83a212742e9683877f0b0_amd64", + "product_id": "openshift-gitops-1/gitops-rhel8-operator@sha256:d491c7c8525393b4dc8277fae5639ee41ae4d6bbada83a212742e9683877f0b0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/gitops-rhel8-operator@sha256:d491c7c8525393b4dc8277fae5639ee41ae4d6bbada83a212742e9683877f0b0?arch=amd64&repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator&tag=v1.9.3-5" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-gitops-1/argocd-rhel8@sha256:e432172e252f278ffe9d1e8bcf6c89c81cbef76e3755eb7b9f3d5ec4622a63e0_s390x", + "product": { + "name": "openshift-gitops-1/argocd-rhel8@sha256:e432172e252f278ffe9d1e8bcf6c89c81cbef76e3755eb7b9f3d5ec4622a63e0_s390x", + "product_id": "openshift-gitops-1/argocd-rhel8@sha256:e432172e252f278ffe9d1e8bcf6c89c81cbef76e3755eb7b9f3d5ec4622a63e0_s390x", + "product_identification_helper": { + "purl": "pkg:oci/argocd-rhel8@sha256:e432172e252f278ffe9d1e8bcf6c89c81cbef76e3755eb7b9f3d5ec4622a63e0?arch=s390x&repository_url=registry.redhat.io/openshift-gitops-1/argocd-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/argo-rollouts-rhel8@sha256:b830502f20de70c8fc7f77a6c58409c00f6db79224f306f5f667fadfca59bd84_s390x", + "product": { + "name": "openshift-gitops-1/argo-rollouts-rhel8@sha256:b830502f20de70c8fc7f77a6c58409c00f6db79224f306f5f667fadfca59bd84_s390x", + "product_id": "openshift-gitops-1/argo-rollouts-rhel8@sha256:b830502f20de70c8fc7f77a6c58409c00f6db79224f306f5f667fadfca59bd84_s390x", + "product_identification_helper": { + "purl": "pkg:oci/argo-rollouts-rhel8@sha256:b830502f20de70c8fc7f77a6c58409c00f6db79224f306f5f667fadfca59bd84?arch=s390x&repository_url=registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/console-plugin-rhel8@sha256:84dee8a0455dca910bab7407bb8bc3151f788ae991aa9c7d9380e8c7c1a4014c_s390x", + "product": { + "name": "openshift-gitops-1/console-plugin-rhel8@sha256:84dee8a0455dca910bab7407bb8bc3151f788ae991aa9c7d9380e8c7c1a4014c_s390x", + "product_id": "openshift-gitops-1/console-plugin-rhel8@sha256:84dee8a0455dca910bab7407bb8bc3151f788ae991aa9c7d9380e8c7c1a4014c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/console-plugin-rhel8@sha256:84dee8a0455dca910bab7407bb8bc3151f788ae991aa9c7d9380e8c7c1a4014c?arch=s390x&repository_url=registry.redhat.io/openshift-gitops-1/console-plugin-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/gitops-rhel8@sha256:585361fa372d675855cb517e0305339f9856fecc7b1f89b31ad33bca3f9836b8_s390x", + "product": { + "name": "openshift-gitops-1/gitops-rhel8@sha256:585361fa372d675855cb517e0305339f9856fecc7b1f89b31ad33bca3f9836b8_s390x", + "product_id": "openshift-gitops-1/gitops-rhel8@sha256:585361fa372d675855cb517e0305339f9856fecc7b1f89b31ad33bca3f9836b8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/gitops-rhel8@sha256:585361fa372d675855cb517e0305339f9856fecc7b1f89b31ad33bca3f9836b8?arch=s390x&repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/dex-rhel8@sha256:ae805dd6858d45e042b335240e450c5f5635546381f2cf755b4d0049f80e4bbd_s390x", + "product": { + "name": "openshift-gitops-1/dex-rhel8@sha256:ae805dd6858d45e042b335240e450c5f5635546381f2cf755b4d0049f80e4bbd_s390x", + "product_id": "openshift-gitops-1/dex-rhel8@sha256:ae805dd6858d45e042b335240e450c5f5635546381f2cf755b4d0049f80e4bbd_s390x", + "product_identification_helper": { + "purl": "pkg:oci/dex-rhel8@sha256:ae805dd6858d45e042b335240e450c5f5635546381f2cf755b4d0049f80e4bbd?arch=s390x&repository_url=registry.redhat.io/openshift-gitops-1/dex-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/kam-delivery-rhel8@sha256:b6864990dd11208362570ff7642baf33d96690a9547ddb71403f5deb5578a761_s390x", + "product": { + "name": "openshift-gitops-1/kam-delivery-rhel8@sha256:b6864990dd11208362570ff7642baf33d96690a9547ddb71403f5deb5578a761_s390x", + "product_id": "openshift-gitops-1/kam-delivery-rhel8@sha256:b6864990dd11208362570ff7642baf33d96690a9547ddb71403f5deb5578a761_s390x", + "product_identification_helper": { + "purl": "pkg:oci/kam-delivery-rhel8@sha256:b6864990dd11208362570ff7642baf33d96690a9547ddb71403f5deb5578a761?arch=s390x&repository_url=registry.redhat.io/openshift-gitops-1/kam-delivery-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/must-gather-rhel8@sha256:399cd150882466cd9e301ea92e899b802980825082c7a5d0a780a81903af0fce_s390x", + "product": { + "name": "openshift-gitops-1/must-gather-rhel8@sha256:399cd150882466cd9e301ea92e899b802980825082c7a5d0a780a81903af0fce_s390x", + "product_id": "openshift-gitops-1/must-gather-rhel8@sha256:399cd150882466cd9e301ea92e899b802980825082c7a5d0a780a81903af0fce_s390x", + "product_identification_helper": { + "purl": "pkg:oci/must-gather-rhel8@sha256:399cd150882466cd9e301ea92e899b802980825082c7a5d0a780a81903af0fce?arch=s390x&repository_url=registry.redhat.io/openshift-gitops-1/must-gather-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/gitops-rhel8-operator@sha256:02bc04eaa379108c8cf99da5d89a4e8305ccb3c3921037c9b160d639c5c4de03_s390x", + "product": { + "name": "openshift-gitops-1/gitops-rhel8-operator@sha256:02bc04eaa379108c8cf99da5d89a4e8305ccb3c3921037c9b160d639c5c4de03_s390x", + "product_id": "openshift-gitops-1/gitops-rhel8-operator@sha256:02bc04eaa379108c8cf99da5d89a4e8305ccb3c3921037c9b160d639c5c4de03_s390x", + "product_identification_helper": { + "purl": "pkg:oci/gitops-rhel8-operator@sha256:02bc04eaa379108c8cf99da5d89a4e8305ccb3c3921037c9b160d639c5c4de03?arch=s390x&repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator&tag=v1.9.3-5" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-gitops-1/argocd-rhel8@sha256:dd7e218067771217c00df8b4ed7b94faaa70f31596d8a8da796a1115f694fbfc_ppc64le", + "product": { + "name": "openshift-gitops-1/argocd-rhel8@sha256:dd7e218067771217c00df8b4ed7b94faaa70f31596d8a8da796a1115f694fbfc_ppc64le", + "product_id": "openshift-gitops-1/argocd-rhel8@sha256:dd7e218067771217c00df8b4ed7b94faaa70f31596d8a8da796a1115f694fbfc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/argocd-rhel8@sha256:dd7e218067771217c00df8b4ed7b94faaa70f31596d8a8da796a1115f694fbfc?arch=ppc64le&repository_url=registry.redhat.io/openshift-gitops-1/argocd-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/argo-rollouts-rhel8@sha256:9afedd1e7109a88fbe381846a6a0a206b24ba3e62dd699aa750d4b7f28505080_ppc64le", + "product": { + "name": "openshift-gitops-1/argo-rollouts-rhel8@sha256:9afedd1e7109a88fbe381846a6a0a206b24ba3e62dd699aa750d4b7f28505080_ppc64le", + "product_id": "openshift-gitops-1/argo-rollouts-rhel8@sha256:9afedd1e7109a88fbe381846a6a0a206b24ba3e62dd699aa750d4b7f28505080_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/argo-rollouts-rhel8@sha256:9afedd1e7109a88fbe381846a6a0a206b24ba3e62dd699aa750d4b7f28505080?arch=ppc64le&repository_url=registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/console-plugin-rhel8@sha256:21bff8ab1b76db1507a96432d49df4e537ed66d1fed1c96434bde10bfdd62059_ppc64le", + "product": { + "name": "openshift-gitops-1/console-plugin-rhel8@sha256:21bff8ab1b76db1507a96432d49df4e537ed66d1fed1c96434bde10bfdd62059_ppc64le", + "product_id": "openshift-gitops-1/console-plugin-rhel8@sha256:21bff8ab1b76db1507a96432d49df4e537ed66d1fed1c96434bde10bfdd62059_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/console-plugin-rhel8@sha256:21bff8ab1b76db1507a96432d49df4e537ed66d1fed1c96434bde10bfdd62059?arch=ppc64le&repository_url=registry.redhat.io/openshift-gitops-1/console-plugin-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/gitops-rhel8@sha256:21f03d5337d4177a908f63ce3558bc130a045fc45c6f6a4d2783de4e4b555e21_ppc64le", + "product": { + "name": "openshift-gitops-1/gitops-rhel8@sha256:21f03d5337d4177a908f63ce3558bc130a045fc45c6f6a4d2783de4e4b555e21_ppc64le", + "product_id": "openshift-gitops-1/gitops-rhel8@sha256:21f03d5337d4177a908f63ce3558bc130a045fc45c6f6a4d2783de4e4b555e21_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/gitops-rhel8@sha256:21f03d5337d4177a908f63ce3558bc130a045fc45c6f6a4d2783de4e4b555e21?arch=ppc64le&repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/dex-rhel8@sha256:14b1e455f6ba59777aec0298b64a21cf40d89429dcbc3dd59ad2f30c649d6f5f_ppc64le", + "product": { + "name": "openshift-gitops-1/dex-rhel8@sha256:14b1e455f6ba59777aec0298b64a21cf40d89429dcbc3dd59ad2f30c649d6f5f_ppc64le", + "product_id": "openshift-gitops-1/dex-rhel8@sha256:14b1e455f6ba59777aec0298b64a21cf40d89429dcbc3dd59ad2f30c649d6f5f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/dex-rhel8@sha256:14b1e455f6ba59777aec0298b64a21cf40d89429dcbc3dd59ad2f30c649d6f5f?arch=ppc64le&repository_url=registry.redhat.io/openshift-gitops-1/dex-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/kam-delivery-rhel8@sha256:6bdef15c447107069382c76cbf89faccbc116ec62c9be9231b0a8edc0e63c0a5_ppc64le", + "product": { + "name": "openshift-gitops-1/kam-delivery-rhel8@sha256:6bdef15c447107069382c76cbf89faccbc116ec62c9be9231b0a8edc0e63c0a5_ppc64le", + "product_id": "openshift-gitops-1/kam-delivery-rhel8@sha256:6bdef15c447107069382c76cbf89faccbc116ec62c9be9231b0a8edc0e63c0a5_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kam-delivery-rhel8@sha256:6bdef15c447107069382c76cbf89faccbc116ec62c9be9231b0a8edc0e63c0a5?arch=ppc64le&repository_url=registry.redhat.io/openshift-gitops-1/kam-delivery-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/must-gather-rhel8@sha256:847b14b3fae4d48b588174564b5a17177c141a8d4155442c146f4828642b86cc_ppc64le", + "product": { + "name": "openshift-gitops-1/must-gather-rhel8@sha256:847b14b3fae4d48b588174564b5a17177c141a8d4155442c146f4828642b86cc_ppc64le", + "product_id": "openshift-gitops-1/must-gather-rhel8@sha256:847b14b3fae4d48b588174564b5a17177c141a8d4155442c146f4828642b86cc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/must-gather-rhel8@sha256:847b14b3fae4d48b588174564b5a17177c141a8d4155442c146f4828642b86cc?arch=ppc64le&repository_url=registry.redhat.io/openshift-gitops-1/must-gather-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/gitops-rhel8-operator@sha256:79f9227088dee48a79afd14732087c23ea0c6869c0dd167dac94365b225592ec_ppc64le", + "product": { + "name": "openshift-gitops-1/gitops-rhel8-operator@sha256:79f9227088dee48a79afd14732087c23ea0c6869c0dd167dac94365b225592ec_ppc64le", + "product_id": "openshift-gitops-1/gitops-rhel8-operator@sha256:79f9227088dee48a79afd14732087c23ea0c6869c0dd167dac94365b225592ec_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/gitops-rhel8-operator@sha256:79f9227088dee48a79afd14732087c23ea0c6869c0dd167dac94365b225592ec?arch=ppc64le&repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator&tag=v1.9.3-5" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-gitops-1/argocd-rhel8@sha256:bd8aa96326b5c5e649634489941e19bc17cbe04bfeb00d1b362d7afe98277594_arm64", + "product": { + "name": "openshift-gitops-1/argocd-rhel8@sha256:bd8aa96326b5c5e649634489941e19bc17cbe04bfeb00d1b362d7afe98277594_arm64", + "product_id": "openshift-gitops-1/argocd-rhel8@sha256:bd8aa96326b5c5e649634489941e19bc17cbe04bfeb00d1b362d7afe98277594_arm64", + "product_identification_helper": { + "purl": "pkg:oci/argocd-rhel8@sha256:bd8aa96326b5c5e649634489941e19bc17cbe04bfeb00d1b362d7afe98277594?arch=arm64&repository_url=registry.redhat.io/openshift-gitops-1/argocd-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/argo-rollouts-rhel8@sha256:5dda4516e7dd63cc711cd18e0569cdac873c2a3ae3bf41fd7645384e1aea0952_arm64", + "product": { + "name": "openshift-gitops-1/argo-rollouts-rhel8@sha256:5dda4516e7dd63cc711cd18e0569cdac873c2a3ae3bf41fd7645384e1aea0952_arm64", + "product_id": "openshift-gitops-1/argo-rollouts-rhel8@sha256:5dda4516e7dd63cc711cd18e0569cdac873c2a3ae3bf41fd7645384e1aea0952_arm64", + "product_identification_helper": { + "purl": "pkg:oci/argo-rollouts-rhel8@sha256:5dda4516e7dd63cc711cd18e0569cdac873c2a3ae3bf41fd7645384e1aea0952?arch=arm64&repository_url=registry.redhat.io/openshift-gitops-1/argo-rollouts-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/console-plugin-rhel8@sha256:7c05fd1be9aa7427e565544975f7f85d4600c7eabfd22ff4f07e057e566496eb_arm64", + "product": { + "name": "openshift-gitops-1/console-plugin-rhel8@sha256:7c05fd1be9aa7427e565544975f7f85d4600c7eabfd22ff4f07e057e566496eb_arm64", + "product_id": "openshift-gitops-1/console-plugin-rhel8@sha256:7c05fd1be9aa7427e565544975f7f85d4600c7eabfd22ff4f07e057e566496eb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/console-plugin-rhel8@sha256:7c05fd1be9aa7427e565544975f7f85d4600c7eabfd22ff4f07e057e566496eb?arch=arm64&repository_url=registry.redhat.io/openshift-gitops-1/console-plugin-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/gitops-rhel8@sha256:1e4441c4b21af05b97b4f4d5fdae767721ecc645a43f63611d18d3de87498805_arm64", + "product": { + "name": "openshift-gitops-1/gitops-rhel8@sha256:1e4441c4b21af05b97b4f4d5fdae767721ecc645a43f63611d18d3de87498805_arm64", + "product_id": "openshift-gitops-1/gitops-rhel8@sha256:1e4441c4b21af05b97b4f4d5fdae767721ecc645a43f63611d18d3de87498805_arm64", + "product_identification_helper": { + "purl": "pkg:oci/gitops-rhel8@sha256:1e4441c4b21af05b97b4f4d5fdae767721ecc645a43f63611d18d3de87498805?arch=arm64&repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/dex-rhel8@sha256:f58dc92bdffd95385a51ecdff7677b49cc85b0a7718ca5f69301e6711a9bf04c_arm64", + "product": { + "name": "openshift-gitops-1/dex-rhel8@sha256:f58dc92bdffd95385a51ecdff7677b49cc85b0a7718ca5f69301e6711a9bf04c_arm64", + "product_id": "openshift-gitops-1/dex-rhel8@sha256:f58dc92bdffd95385a51ecdff7677b49cc85b0a7718ca5f69301e6711a9bf04c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/dex-rhel8@sha256:f58dc92bdffd95385a51ecdff7677b49cc85b0a7718ca5f69301e6711a9bf04c?arch=arm64&repository_url=registry.redhat.io/openshift-gitops-1/dex-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/kam-delivery-rhel8@sha256:9903bb78e5d0cc39d314e9bdaecf902ac4d24bee3f11b7658caaa381253c81c1_arm64", + "product": { + "name": "openshift-gitops-1/kam-delivery-rhel8@sha256:9903bb78e5d0cc39d314e9bdaecf902ac4d24bee3f11b7658caaa381253c81c1_arm64", + "product_id": "openshift-gitops-1/kam-delivery-rhel8@sha256:9903bb78e5d0cc39d314e9bdaecf902ac4d24bee3f11b7658caaa381253c81c1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kam-delivery-rhel8@sha256:9903bb78e5d0cc39d314e9bdaecf902ac4d24bee3f11b7658caaa381253c81c1?arch=arm64&repository_url=registry.redhat.io/openshift-gitops-1/kam-delivery-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/must-gather-rhel8@sha256:3eb502b1ef4886e5300c5cac0252f9000f1c71bb6c5f1a93758d01d36654be7e_arm64", + "product": { + "name": "openshift-gitops-1/must-gather-rhel8@sha256:3eb502b1ef4886e5300c5cac0252f9000f1c71bb6c5f1a93758d01d36654be7e_arm64", + "product_id": "openshift-gitops-1/must-gather-rhel8@sha256:3eb502b1ef4886e5300c5cac0252f9000f1c71bb6c5f1a93758d01d36654be7e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/must-gather-rhel8@sha256:3eb502b1ef4886e5300c5cac0252f9000f1c71bb6c5f1a93758d01d36654be7e?arch=arm64&repository_url=registry.redhat.io/openshift-gitops-1/must-gather-rhel8&tag=v1.9.3-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/gitops-rhel8-operator@sha256:32da9518faee368da0902ba87c1ed95a03e75ea344a31c9af19a96a436a6ddf3_arm64", + "product": { + "name": "openshift-gitops-1/gitops-rhel8-operator@sha256:32da9518faee368da0902ba87c1ed95a03e75ea344a31c9af19a96a436a6ddf3_arm64", + "product_id": "openshift-gitops-1/gitops-rhel8-operator@sha256:32da9518faee368da0902ba87c1ed95a03e75ea344a31c9af19a96a436a6ddf3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/gitops-rhel8-operator@sha256:32da9518faee368da0902ba87c1ed95a03e75ea344a31c9af19a96a436a6ddf3?arch=arm64&repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator&tag=v1.9.3-5" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-gitops-kam-0:1.9.3-32.el8.src", + "product": { + "name": "openshift-gitops-kam-0:1.9.3-32.el8.src", + "product_id": "openshift-gitops-kam-0:1.9.3-32.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-gitops-kam@1.9.3-32.el8?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-gitops-kam-0:1.9.3-32.el8.x86_64", + "product": { + "name": "openshift-gitops-kam-0:1.9.3-32.el8.x86_64", + "product_id": "openshift-gitops-kam-0:1.9.3-32.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-gitops-kam@1.9.3-32.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-kam-redistributable-0:1.9.3-32.el8.x86_64", + "product": { + "name": "openshift-gitops-kam-redistributable-0:1.9.3-32.el8.x86_64", + "product_id": "openshift-gitops-kam-redistributable-0:1.9.3-32.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-gitops-kam-redistributable@1.9.3-32.el8?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-gitops-kam-0:1.9.3-32.el8.s390x", + "product": { + "name": "openshift-gitops-kam-0:1.9.3-32.el8.s390x", + "product_id": "openshift-gitops-kam-0:1.9.3-32.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-gitops-kam@1.9.3-32.el8?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-gitops-kam-0:1.9.3-32.el8.ppc64le", + "product": { + "name": "openshift-gitops-kam-0:1.9.3-32.el8.ppc64le", + "product_id": "openshift-gitops-kam-0:1.9.3-32.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-gitops-kam@1.9.3-32.el8?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-gitops-kam-0:1.9.3-32.el8.aarch64", + "product": { + "name": "openshift-gitops-kam-0:1.9.3-32.el8.aarch64", + "product_id": "openshift-gitops-kam-0:1.9.3-32.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-gitops-kam@1.9.3-32.el8?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rhpam-7/rhpam-businesscentral-monitoring-rhel8@sha256:878b83b28bf3b7dcfcb710c70ff06268477dddfa6a3df21b7dbe52f53ca3ca40_amd64", + "product": { + "name": "rhpam-7/rhpam-businesscentral-monitoring-rhel8@sha256:878b83b28bf3b7dcfcb710c70ff06268477dddfa6a3df21b7dbe52f53ca3ca40_amd64", + "product_id": "rhpam-7/rhpam-businesscentral-monitoring-rhel8@sha256:878b83b28bf3b7dcfcb710c70ff06268477dddfa6a3df21b7dbe52f53ca3ca40_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhpam-businesscentral-monitoring-rhel8@sha256:878b83b28bf3b7dcfcb710c70ff06268477dddfa6a3df21b7dbe52f53ca3ca40?arch=amd64&repository_url=registry.redhat.io/rhpam-7/rhpam-businesscentral-monitoring-rhel8&tag=7.13.4-11" + } + } + }, + { + "category": "product_version", + "name": "rhpam-7/rhpam-businesscentral-rhel8@sha256:52e746b99d6a15be91dc7c4e74fb0a58c27ca1d08151d456336e26b0cbcb54fe_amd64", + "product": { + "name": "rhpam-7/rhpam-businesscentral-rhel8@sha256:52e746b99d6a15be91dc7c4e74fb0a58c27ca1d08151d456336e26b0cbcb54fe_amd64", + "product_id": "rhpam-7/rhpam-businesscentral-rhel8@sha256:52e746b99d6a15be91dc7c4e74fb0a58c27ca1d08151d456336e26b0cbcb54fe_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhpam-businesscentral-rhel8@sha256:52e746b99d6a15be91dc7c4e74fb0a58c27ca1d08151d456336e26b0cbcb54fe?arch=amd64&repository_url=registry.redhat.io/rhpam-7/rhpam-businesscentral-rhel8&tag=7.13.4-11" + } + } + }, + { + "category": "product_version", + "name": "rhpam-7/rhpam-controller-rhel8@sha256:c570297daff9ae813db39b27b4604f56cfcfa32a27e81d339da06dd33c13254f_amd64", + "product": { + "name": "rhpam-7/rhpam-controller-rhel8@sha256:c570297daff9ae813db39b27b4604f56cfcfa32a27e81d339da06dd33c13254f_amd64", + "product_id": "rhpam-7/rhpam-controller-rhel8@sha256:c570297daff9ae813db39b27b4604f56cfcfa32a27e81d339da06dd33c13254f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhpam-controller-rhel8@sha256:c570297daff9ae813db39b27b4604f56cfcfa32a27e81d339da06dd33c13254f?arch=amd64&repository_url=registry.redhat.io/rhpam-7/rhpam-controller-rhel8&tag=7.13.4-11" + } + } + }, + { + "category": "product_version", + "name": "rhpam-7/rhpam-dashbuilder-rhel8@sha256:b787d57beb85e6098033b8c26789d2cc7a29faf7463fa8607d962382752f0883_amd64", + "product": { + "name": "rhpam-7/rhpam-dashbuilder-rhel8@sha256:b787d57beb85e6098033b8c26789d2cc7a29faf7463fa8607d962382752f0883_amd64", + "product_id": "rhpam-7/rhpam-dashbuilder-rhel8@sha256:b787d57beb85e6098033b8c26789d2cc7a29faf7463fa8607d962382752f0883_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhpam-dashbuilder-rhel8@sha256:b787d57beb85e6098033b8c26789d2cc7a29faf7463fa8607d962382752f0883?arch=amd64&repository_url=registry.redhat.io/rhpam-7/rhpam-dashbuilder-rhel8&tag=7.13.4-11" + } + } + }, + { + "category": "product_version", + "name": "rhpam-7/rhpam-kieserver-rhel8@sha256:62a457fc1595ed3e534ef9c792cb2bdf3c1712642d370b450a2f341bdd118eda_amd64", + "product": { + "name": "rhpam-7/rhpam-kieserver-rhel8@sha256:62a457fc1595ed3e534ef9c792cb2bdf3c1712642d370b450a2f341bdd118eda_amd64", + "product_id": "rhpam-7/rhpam-kieserver-rhel8@sha256:62a457fc1595ed3e534ef9c792cb2bdf3c1712642d370b450a2f341bdd118eda_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhpam-kieserver-rhel8@sha256:62a457fc1595ed3e534ef9c792cb2bdf3c1712642d370b450a2f341bdd118eda?arch=amd64&repository_url=registry.redhat.io/rhpam-7/rhpam-kieserver-rhel8&tag=7.13.4-8" + } + } + }, + { + "category": "product_version", + "name": "rhpam-7/rhpam-kogito-builder-rhel8@sha256:2caadb26d1a4ed774bdfa67664d11210b02a143b741cd4068b1654d51ed80c61_amd64", + "product": { + "name": "rhpam-7/rhpam-kogito-builder-rhel8@sha256:2caadb26d1a4ed774bdfa67664d11210b02a143b741cd4068b1654d51ed80c61_amd64", + "product_id": "rhpam-7/rhpam-kogito-builder-rhel8@sha256:2caadb26d1a4ed774bdfa67664d11210b02a143b741cd4068b1654d51ed80c61_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhpam-kogito-builder-rhel8@sha256:2caadb26d1a4ed774bdfa67664d11210b02a143b741cd4068b1654d51ed80c61?arch=amd64&repository_url=registry.redhat.io/rhpam-7/rhpam-kogito-builder-rhel8&tag=7.13.4-5" + } + } + }, + { + "category": "product_version", + "name": "rhpam-7/rhpam-kogito-rhel8-operator-bundle@sha256:4553c12fa6f1a41b098efb333ce15d062eeea289b2bed5b2fd3075f5d4bb8cc8_amd64", + "product": { + "name": "rhpam-7/rhpam-kogito-rhel8-operator-bundle@sha256:4553c12fa6f1a41b098efb333ce15d062eeea289b2bed5b2fd3075f5d4bb8cc8_amd64", + "product_id": "rhpam-7/rhpam-kogito-rhel8-operator-bundle@sha256:4553c12fa6f1a41b098efb333ce15d062eeea289b2bed5b2fd3075f5d4bb8cc8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhpam-kogito-rhel8-operator-bundle@sha256:4553c12fa6f1a41b098efb333ce15d062eeea289b2bed5b2fd3075f5d4bb8cc8?arch=amd64&repository_url=registry.redhat.io/rhpam-7/rhpam-kogito-rhel8-operator-bundle&tag=7.13.4-3" + } + } + }, + { + "category": "product_version", + "name": "rhpam-7/rhpam-kogito-rhel8-operator@sha256:52c4c3483cbcd0552730311a21cd4f32902de01b0efbaca2420a96dae6ad6b59_amd64", + "product": { + "name": "rhpam-7/rhpam-kogito-rhel8-operator@sha256:52c4c3483cbcd0552730311a21cd4f32902de01b0efbaca2420a96dae6ad6b59_amd64", + "product_id": "rhpam-7/rhpam-kogito-rhel8-operator@sha256:52c4c3483cbcd0552730311a21cd4f32902de01b0efbaca2420a96dae6ad6b59_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhpam-kogito-rhel8-operator@sha256:52c4c3483cbcd0552730311a21cd4f32902de01b0efbaca2420a96dae6ad6b59?arch=amd64&repository_url=registry.redhat.io/rhpam-7/rhpam-kogito-rhel8-operator&tag=7.13.4-4" + } + } + }, + { + "category": "product_version", + "name": "rhpam-7/rhpam-kogito-runtime-jvm-rhel8@sha256:cbddd58758ac980a75e007808225feb9e65c280bbdc4727330acfa639474b808_amd64", + "product": { + "name": "rhpam-7/rhpam-kogito-runtime-jvm-rhel8@sha256:cbddd58758ac980a75e007808225feb9e65c280bbdc4727330acfa639474b808_amd64", + "product_id": "rhpam-7/rhpam-kogito-runtime-jvm-rhel8@sha256:cbddd58758ac980a75e007808225feb9e65c280bbdc4727330acfa639474b808_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhpam-kogito-runtime-jvm-rhel8@sha256:cbddd58758ac980a75e007808225feb9e65c280bbdc4727330acfa639474b808?arch=amd64&repository_url=registry.redhat.io/rhpam-7/rhpam-kogito-runtime-jvm-rhel8&tag=7.13.4-5" + } + } + }, + { + "category": "product_version", + "name": "rhpam-7-tech-preview/rhpam-kogito-runtime-native-rhel8@sha256:f100720059d7a0d35ff776e5b928486708b420b7a70652e82b815e4dc654b1f5_amd64", + "product": { + "name": "rhpam-7-tech-preview/rhpam-kogito-runtime-native-rhel8@sha256:f100720059d7a0d35ff776e5b928486708b420b7a70652e82b815e4dc654b1f5_amd64", + "product_id": "rhpam-7-tech-preview/rhpam-kogito-runtime-native-rhel8@sha256:f100720059d7a0d35ff776e5b928486708b420b7a70652e82b815e4dc654b1f5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhpam-kogito-runtime-native-rhel8@sha256:f100720059d7a0d35ff776e5b928486708b420b7a70652e82b815e4dc654b1f5?arch=amd64&repository_url=registry.redhat.io/rhpam-7-tech-preview/rhpam-kogito-runtime-native-rhel8&tag=7.13.4-5" + } + } + }, + { + "category": "product_version", + "name": "rhpam-7/rhpam-process-migration-rhel8@sha256:193ff45f398332ecb2af83f7c6bd1e729ca64e5bbb757ce6623b75a448bfaf55_amd64", + "product": { + "name": "rhpam-7/rhpam-process-migration-rhel8@sha256:193ff45f398332ecb2af83f7c6bd1e729ca64e5bbb757ce6623b75a448bfaf55_amd64", + "product_id": "rhpam-7/rhpam-process-migration-rhel8@sha256:193ff45f398332ecb2af83f7c6bd1e729ca64e5bbb757ce6623b75a448bfaf55_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhpam-process-migration-rhel8@sha256:193ff45f398332ecb2af83f7c6bd1e729ca64e5bbb757ce6623b75a448bfaf55?arch=amd64&repository_url=registry.redhat.io/rhpam-7/rhpam-process-migration-rhel8&tag=7.13.4-11" + } + } + }, + { + "category": "product_version", + "name": "rhpam-7/rhpam-rhel8-operator@sha256:a7a20aed601d9a2ff38788dc773f821c1f68132de83fb1c36cc534a4f0d3468c_amd64", + "product": { + "name": "rhpam-7/rhpam-rhel8-operator@sha256:a7a20aed601d9a2ff38788dc773f821c1f68132de83fb1c36cc534a4f0d3468c_amd64", + "product_id": "rhpam-7/rhpam-rhel8-operator@sha256:a7a20aed601d9a2ff38788dc773f821c1f68132de83fb1c36cc534a4f0d3468c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhpam-rhel8-operator@sha256:a7a20aed601d9a2ff38788dc773f821c1f68132de83fb1c36cc534a4f0d3468c?arch=amd64&repository_url=registry.redhat.io/rhpam-7/rhpam-rhel8-operator&tag=7.13.4-2" + } + } + }, + { + "category": "product_version", + "name": "rhpam-7/rhpam-smartrouter-rhel8@sha256:91b1516edf464d7f67b9f97062629d0e1beb1c3023d94871db577c392a2df2a8_amd64", + "product": { + "name": "rhpam-7/rhpam-smartrouter-rhel8@sha256:91b1516edf464d7f67b9f97062629d0e1beb1c3023d94871db577c392a2df2a8_amd64", + "product_id": "rhpam-7/rhpam-smartrouter-rhel8@sha256:91b1516edf464d7f67b9f97062629d0e1beb1c3023d94871db577c392a2df2a8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhpam-smartrouter-rhel8@sha256:91b1516edf464d7f67b9f97062629d0e1beb1c3023d94871db577c392a2df2a8?arch=amd64&repository_url=registry.redhat.io/rhpam-7/rhpam-smartrouter-rhel8&tag=7.13.4-11" + } + } + }, + { + "category": "product_version", + "name": "rhpam-7/rhpam-operator-bundle@sha256:d5d8ae9b97b00623af7c4c85a15966bf4de7bc53b767634d6e8e33ba4167d9d3_amd64", + "product": { + "name": "rhpam-7/rhpam-operator-bundle@sha256:d5d8ae9b97b00623af7c4c85a15966bf4de7bc53b767634d6e8e33ba4167d9d3_amd64", + "product_id": "rhpam-7/rhpam-operator-bundle@sha256:d5d8ae9b97b00623af7c4c85a15966bf4de7bc53b767634d6e8e33ba4167d9d3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhpam-operator-bundle@sha256:d5d8ae9b97b00623af7c4c85a15966bf4de7bc53b767634d6e8e33ba4167d9d3?arch=amd64&repository_url=registry.redhat.io/rhpam-7/rhpam-operator-bundle&tag=7.13.4-7" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rhpam-7/rhpam-kogito-builder-rhel8@sha256:eeb33a9caf57c04f021eea1aba0c87f8d4e70c1a804fbe1c8adc68859e7c4424_ppc64le", + "product": { + "name": "rhpam-7/rhpam-kogito-builder-rhel8@sha256:eeb33a9caf57c04f021eea1aba0c87f8d4e70c1a804fbe1c8adc68859e7c4424_ppc64le", + "product_id": "rhpam-7/rhpam-kogito-builder-rhel8@sha256:eeb33a9caf57c04f021eea1aba0c87f8d4e70c1a804fbe1c8adc68859e7c4424_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhpam-kogito-builder-rhel8@sha256:eeb33a9caf57c04f021eea1aba0c87f8d4e70c1a804fbe1c8adc68859e7c4424?arch=ppc64le&repository_url=registry.redhat.io/rhpam-7/rhpam-kogito-builder-rhel8&tag=7.13.4-5" + } + } + }, + { + "category": "product_version", + "name": "rhpam-7/rhpam-kogito-rhel8-operator-bundle@sha256:056cc42012b5da9581c8d6f347a1693d6d3d904f76954fc1aafe12a6601994aa_ppc64le", + "product": { + "name": "rhpam-7/rhpam-kogito-rhel8-operator-bundle@sha256:056cc42012b5da9581c8d6f347a1693d6d3d904f76954fc1aafe12a6601994aa_ppc64le", + "product_id": "rhpam-7/rhpam-kogito-rhel8-operator-bundle@sha256:056cc42012b5da9581c8d6f347a1693d6d3d904f76954fc1aafe12a6601994aa_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhpam-kogito-rhel8-operator-bundle@sha256:056cc42012b5da9581c8d6f347a1693d6d3d904f76954fc1aafe12a6601994aa?arch=ppc64le&repository_url=registry.redhat.io/rhpam-7/rhpam-kogito-rhel8-operator-bundle&tag=7.13.4-3" + } + } + }, + { + "category": "product_version", + "name": "rhpam-7/rhpam-kogito-rhel8-operator@sha256:6ea8b56d752f98a1dd48d8e91f00f49a8f40124b6ec4464209e2e8554de7c93e_ppc64le", + "product": { + "name": "rhpam-7/rhpam-kogito-rhel8-operator@sha256:6ea8b56d752f98a1dd48d8e91f00f49a8f40124b6ec4464209e2e8554de7c93e_ppc64le", + "product_id": "rhpam-7/rhpam-kogito-rhel8-operator@sha256:6ea8b56d752f98a1dd48d8e91f00f49a8f40124b6ec4464209e2e8554de7c93e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhpam-kogito-rhel8-operator@sha256:6ea8b56d752f98a1dd48d8e91f00f49a8f40124b6ec4464209e2e8554de7c93e?arch=ppc64le&repository_url=registry.redhat.io/rhpam-7/rhpam-kogito-rhel8-operator&tag=7.13.4-4" + } + } + }, + { + "category": "product_version", + "name": "rhpam-7/rhpam-kogito-runtime-jvm-rhel8@sha256:ccb049dd64523e98d0e7a0f7cf99e2171f17917532f4d10ab5893b24c1b19698_ppc64le", + "product": { + "name": "rhpam-7/rhpam-kogito-runtime-jvm-rhel8@sha256:ccb049dd64523e98d0e7a0f7cf99e2171f17917532f4d10ab5893b24c1b19698_ppc64le", + "product_id": "rhpam-7/rhpam-kogito-runtime-jvm-rhel8@sha256:ccb049dd64523e98d0e7a0f7cf99e2171f17917532f4d10ab5893b24c1b19698_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhpam-kogito-runtime-jvm-rhel8@sha256:ccb049dd64523e98d0e7a0f7cf99e2171f17917532f4d10ab5893b24c1b19698?arch=ppc64le&repository_url=registry.redhat.io/rhpam-7/rhpam-kogito-runtime-jvm-rhel8&tag=7.13.4-5" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rh-varnish6-varnish-0:6.0.8-2.el7.3.src", + "product": { + "name": "rh-varnish6-varnish-0:6.0.8-2.el7.3.src", + "product_id": "rh-varnish6-varnish-0:6.0.8-2.el7.3.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-varnish6-varnish@6.0.8-2.el7.3?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rh-varnish6-varnish-0:6.0.8-2.el7.3.x86_64", + "product": { + "name": "rh-varnish6-varnish-0:6.0.8-2.el7.3.x86_64", + "product_id": "rh-varnish6-varnish-0:6.0.8-2.el7.3.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-varnish6-varnish@6.0.8-2.el7.3?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.x86_64", + "product": { + "name": "rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.x86_64", + "product_id": "rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-varnish6-varnish-devel@6.0.8-2.el7.3?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.x86_64", + "product": { + "name": "rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.x86_64", + "product_id": "rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-varnish6-varnish-docs@6.0.8-2.el7.3?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.x86_64", + "product": { + "name": "rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.x86_64", + "product_id": "rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-varnish6-varnish-libs@6.0.8-2.el7.3?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rh-varnish6-varnish-0:6.0.8-2.el7.3.s390x", + "product": { + "name": "rh-varnish6-varnish-0:6.0.8-2.el7.3.s390x", + "product_id": "rh-varnish6-varnish-0:6.0.8-2.el7.3.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-varnish6-varnish@6.0.8-2.el7.3?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.s390x", + "product": { + "name": "rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.s390x", + "product_id": "rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-varnish6-varnish-devel@6.0.8-2.el7.3?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.s390x", + "product": { + "name": "rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.s390x", + "product_id": "rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-varnish6-varnish-docs@6.0.8-2.el7.3?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.s390x", + "product": { + "name": "rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.s390x", + "product_id": "rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-varnish6-varnish-libs@6.0.8-2.el7.3?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rh-varnish6-varnish-0:6.0.8-2.el7.3.ppc64le", + "product": { + "name": "rh-varnish6-varnish-0:6.0.8-2.el7.3.ppc64le", + "product_id": "rh-varnish6-varnish-0:6.0.8-2.el7.3.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-varnish6-varnish@6.0.8-2.el7.3?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.ppc64le", + "product": { + "name": "rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.ppc64le", + "product_id": "rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-varnish6-varnish-devel@6.0.8-2.el7.3?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.ppc64le", + "product": { + "name": "rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.ppc64le", + "product_id": "rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-varnish6-varnish-docs@6.0.8-2.el7.3?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.ppc64le", + "product": { + "name": "rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.ppc64le", + "product_id": "rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-varnish6-varnish-libs@6.0.8-2.el7.3?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "jenkins-0:2.414.3.1699356615-3.el8.src", + "product": { + "name": "jenkins-0:2.414.3.1699356615-3.el8.src", + "product_id": "jenkins-0:2.414.3.1699356615-3.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jenkins@2.414.3.1699356615-3.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "jenkins-2-plugins-0:4.14.1699356715-1.el8.src", + "product": { + "name": "jenkins-2-plugins-0:4.14.1699356715-1.el8.src", + "product_id": "jenkins-2-plugins-0:4.14.1699356715-1.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jenkins-2-plugins@4.14.1699356715-1.el8?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "jenkins-0:2.414.3.1699356615-3.el8.noarch", + "product": { + "name": "jenkins-0:2.414.3.1699356615-3.el8.noarch", + "product_id": "jenkins-0:2.414.3.1699356615-3.el8.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jenkins@2.414.3.1699356615-3.el8?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jenkins-2-plugins-0:4.14.1699356715-1.el8.noarch", + "product": { + "name": "jenkins-2-plugins-0:4.14.1699356715-1.el8.noarch", + "product_id": "jenkins-2-plugins-0:4.14.1699356715-1.el8.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jenkins-2-plugins@4.14.1699356715-1.el8?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "microshift-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.src", + "product": { + "name": "microshift-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.src", + "product_id": "microshift-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/microshift@4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "microshift-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.x86_64", + "product": { + "name": "microshift-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.x86_64", + "product_id": "microshift-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/microshift@4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "microshift-networking-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.x86_64", + "product": { + "name": "microshift-networking-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.x86_64", + "product_id": "microshift-networking-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/microshift-networking@4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "microshift-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.aarch64", + "product": { + "name": "microshift-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.aarch64", + "product_id": "microshift-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/microshift@4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "microshift-networking-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.aarch64", + "product": { + "name": "microshift-networking-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.aarch64", + "product_id": "microshift-networking-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/microshift-networking@4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "microshift-greenboot-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.noarch", + "product": { + "name": "microshift-greenboot-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.noarch", + "product_id": "microshift-greenboot-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/microshift-greenboot@4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "microshift-release-info-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.noarch", + "product": { + "name": "microshift-release-info-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.noarch", + "product_id": "microshift-release-info-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/microshift-release-info@4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "microshift-selinux-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.noarch", + "product": { + "name": "microshift-selinux-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.noarch", + "product_id": "microshift-selinux-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/microshift-selinux@4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "container-selinux-3:2.223.0-2.rhaos4.14.el9.src", + "product": { + "name": "container-selinux-3:2.223.0-2.rhaos4.14.el9.src", + "product_id": "container-selinux-3:2.223.0-2.rhaos4.14.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/container-selinux@2.223.0-2.rhaos4.14.el9?arch=src&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.src", + "product": { + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.src", + "product_id": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.27.1-13.1.rhaos4.14.git956c5f7.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "kernel-0:5.14.0-284.40.1.el9_2.src", + "product": { + "name": "kernel-0:5.14.0-284.40.1.el9_2.src", + "product_id": "kernel-0:5.14.0-284.40.1.el9_2.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@5.14.0-284.40.1.el9_2?arch=src" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-0:5.14.0-284.40.1.rt14.325.el9_2.src", + "product": { + "name": "kernel-rt-0:5.14.0-284.40.1.rt14.325.el9_2.src", + "product_id": "kernel-rt-0:5.14.0-284.40.1.rt14.325.el9_2.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt@5.14.0-284.40.1.rt14.325.el9_2?arch=src" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.src", + "product": { + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.src", + "product_id": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "container-selinux-3:2.223.0-1.rhaos4.14.el8.src", + "product": { + "name": "container-selinux-3:2.223.0-1.rhaos4.14.el8.src", + "product_id": "container-selinux-3:2.223.0-1.rhaos4.14.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/container-selinux@2.223.0-1.rhaos4.14.el8?arch=src&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.src", + "product": { + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.src", + "product_id": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.27.1-13.1.rhaos4.14.git956c5f7.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.src", + "product": { + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.src", + "product_id": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "container-selinux-3:2.223.0-2.rhaos4.14.el9.noarch", + "product": { + "name": "container-selinux-3:2.223.0-2.rhaos4.14.el9.noarch", + "product_id": "container-selinux-3:2.223.0-2.rhaos4.14.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/container-selinux@2.223.0-2.rhaos4.14.el9?arch=noarch&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "kernel-abi-stablelists-0:5.14.0-284.40.1.el9_2.noarch", + "product": { + "name": "kernel-abi-stablelists-0:5.14.0-284.40.1.el9_2.noarch", + "product_id": "kernel-abi-stablelists-0:5.14.0-284.40.1.el9_2.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-abi-stablelists@5.14.0-284.40.1.el9_2?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "kernel-doc-0:5.14.0-284.40.1.el9_2.noarch", + "product": { + "name": "kernel-doc-0:5.14.0-284.40.1.el9_2.noarch", + "product_id": "kernel-doc-0:5.14.0-284.40.1.el9_2.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-doc@5.14.0-284.40.1.el9_2?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "container-selinux-3:2.223.0-1.rhaos4.14.el8.noarch", + "product": { + "name": "container-selinux-3:2.223.0-1.rhaos4.14.el8.noarch", + "product_id": "container-selinux-3:2.223.0-1.rhaos4.14.el8.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/container-selinux@2.223.0-1.rhaos4.14.el8?arch=noarch&epoch=3" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.x86_64", + "product": { + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.x86_64", + "product_id": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.27.1-13.1.rhaos4.14.git956c5f7.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.x86_64", + "product": { + "name": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.x86_64", + "product_id": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debugsource@1.27.1-13.1.rhaos4.14.git956c5f7.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.x86_64", + "product": { + "name": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.x86_64", + "product_id": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debuginfo@1.27.1-13.1.rhaos4.14.git956c5f7.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "bpftool-0:7.0.0-284.40.1.el9_2.x86_64", + "product": { + "name": "bpftool-0:7.0.0-284.40.1.el9_2.x86_64", + "product_id": "bpftool-0:7.0.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool@7.0.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-core-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-core-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-core-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-core@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-cross-headers-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-cross-headers-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-cross-headers-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-cross-headers@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-debug-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-core-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-core-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-debug-core-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-devel-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-debug-devel-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-matched-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-devel-matched-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-debug-devel-matched-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-modules-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-debug-modules-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-core-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-modules-core-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-debug-modules-core-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-extra-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-modules-extra-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-debug-modules-extra-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-internal-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-modules-internal-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-debug-modules-internal-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-internal@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-partner-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-modules-partner-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-debug-modules-partner-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-partner@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-uki-virt-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-uki-virt-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-debug-uki-virt-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-uki-virt@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-devel-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-devel-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-matched-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-devel-matched-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-devel-matched-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-headers-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-headers-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-headers-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-ipaclones-internal-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-ipaclones-internal-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-ipaclones-internal-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-ipaclones-internal@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-modules-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-modules-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-core-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-modules-core-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-modules-core-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-extra-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-modules-extra-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-modules-extra-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-internal-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-modules-internal-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-modules-internal-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-internal@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-partner-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-modules-partner-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-modules-partner-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-partner@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-selftests-internal-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-selftests-internal-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-selftests-internal-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-selftests-internal@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-tools-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-tools-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-tools-libs-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-tools-libs-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-devel-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-tools-libs-devel-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-tools-libs-devel-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-uki-virt-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-uki-virt-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-uki-virt-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-uki-virt@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "perf-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "perf-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "perf-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "python3-perf-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "python3-perf-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rtla-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "rtla-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "rtla-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rtla@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "bpftool-debuginfo-0:7.0.0-284.40.1.el9_2.x86_64", + "product": { + "name": "bpftool-debuginfo-0:7.0.0-284.40.1.el9_2.x86_64", + "product_id": "bpftool-debuginfo-0:7.0.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool-debuginfo@7.0.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-debug-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-common-x86_64-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-debuginfo-common-x86_64-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-debuginfo-common-x86_64-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "kernel-tools-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "kernel-tools-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "perf-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "perf-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "perf-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64", + "product": { + "name": "python3-perf-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64", + "product_id": "python3-perf-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-284.40.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product": { + "name": "kernel-rt-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_id": "kernel-rt-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt@5.14.0-284.40.1.rt14.325.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-core-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product": { + "name": "kernel-rt-core-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_id": "kernel-rt-core-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-core@5.14.0-284.40.1.rt14.325.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_id": "kernel-rt-debug-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug@5.14.0-284.40.1.rt14.325.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-core-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-core-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_id": "kernel-rt-debug-core-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-core@5.14.0-284.40.1.rt14.325.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-devel-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-devel-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_id": "kernel-rt-debug-devel-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-devel@5.14.0-284.40.1.rt14.325.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-devel-matched-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-devel-matched-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_id": "kernel-rt-debug-devel-matched-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-devel-matched@5.14.0-284.40.1.rt14.325.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-kvm-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-kvm-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_id": "kernel-rt-debug-kvm-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-kvm@5.14.0-284.40.1.rt14.325.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-modules-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-modules-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_id": "kernel-rt-debug-modules-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-modules@5.14.0-284.40.1.rt14.325.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-modules-core-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-modules-core-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_id": "kernel-rt-debug-modules-core-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-modules-core@5.14.0-284.40.1.rt14.325.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-modules-extra-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-modules-extra-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_id": "kernel-rt-debug-modules-extra-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@5.14.0-284.40.1.rt14.325.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-modules-internal-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-modules-internal-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_id": "kernel-rt-debug-modules-internal-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-modules-internal@5.14.0-284.40.1.rt14.325.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-modules-partner-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-modules-partner-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_id": "kernel-rt-debug-modules-partner-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-modules-partner@5.14.0-284.40.1.rt14.325.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-devel-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product": { + "name": "kernel-rt-devel-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_id": "kernel-rt-devel-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-devel@5.14.0-284.40.1.rt14.325.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-devel-matched-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product": { + "name": "kernel-rt-devel-matched-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_id": "kernel-rt-devel-matched-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-devel-matched@5.14.0-284.40.1.rt14.325.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-kvm-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product": { + "name": "kernel-rt-kvm-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_id": "kernel-rt-kvm-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-kvm@5.14.0-284.40.1.rt14.325.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-modules-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product": { + "name": "kernel-rt-modules-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_id": "kernel-rt-modules-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-modules@5.14.0-284.40.1.rt14.325.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-modules-core-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product": { + "name": "kernel-rt-modules-core-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_id": "kernel-rt-modules-core-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-modules-core@5.14.0-284.40.1.rt14.325.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-modules-extra-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product": { + "name": "kernel-rt-modules-extra-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_id": "kernel-rt-modules-extra-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-modules-extra@5.14.0-284.40.1.rt14.325.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-modules-internal-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product": { + "name": "kernel-rt-modules-internal-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_id": "kernel-rt-modules-internal-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-modules-internal@5.14.0-284.40.1.rt14.325.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-modules-partner-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product": { + "name": "kernel-rt-modules-partner-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_id": "kernel-rt-modules-partner-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-modules-partner@5.14.0-284.40.1.rt14.325.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-selftests-internal-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product": { + "name": "kernel-rt-selftests-internal-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_id": "kernel-rt-selftests-internal-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-selftests-internal@5.14.0-284.40.1.rt14.325.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-debuginfo-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-debuginfo-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_id": "kernel-rt-debug-debuginfo-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@5.14.0-284.40.1.rt14.325.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debuginfo-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product": { + "name": "kernel-rt-debuginfo-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_id": "kernel-rt-debuginfo-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debuginfo@5.14.0-284.40.1.rt14.325.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product": { + "name": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_id": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debuginfo-common-x86_64@5.14.0-284.40.1.rt14.325.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.x86_64", + "product": { + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.x86_64", + "product_id": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-redistributable-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.x86_64", + "product": { + "name": "openshift-clients-redistributable-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.x86_64", + "product_id": "openshift-clients-redistributable-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients-redistributable@4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.x86_64", + "product": { + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.x86_64", + "product_id": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.27.1-13.1.rhaos4.14.git956c5f7.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.x86_64", + "product": { + "name": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.x86_64", + "product_id": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debugsource@1.27.1-13.1.rhaos4.14.git956c5f7.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.x86_64", + "product": { + "name": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.x86_64", + "product_id": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debuginfo@1.27.1-13.1.rhaos4.14.git956c5f7.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.x86_64", + "product": { + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.x86_64", + "product_id": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-redistributable-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.x86_64", + "product": { + "name": "openshift-clients-redistributable-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.x86_64", + "product_id": "openshift-clients-redistributable-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients-redistributable@4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.aarch64", + "product": { + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.aarch64", + "product_id": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.27.1-13.1.rhaos4.14.git956c5f7.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.aarch64", + "product": { + "name": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.aarch64", + "product_id": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debugsource@1.27.1-13.1.rhaos4.14.git956c5f7.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.aarch64", + "product": { + "name": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.aarch64", + "product_id": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debuginfo@1.27.1-13.1.rhaos4.14.git956c5f7.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "bpftool-0:7.0.0-284.40.1.el9_2.aarch64", + "product": { + "name": "bpftool-0:7.0.0-284.40.1.el9_2.aarch64", + "product_id": "bpftool-0:7.0.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool@7.0.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-64k-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-core-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-core-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-64k-core-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-core@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-core-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-core-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-core-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-core@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-devel-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-devel-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-devel-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-devel@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-devel-matched-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-devel-matched-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-devel-matched-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-devel-matched@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-modules-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-modules-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-modules-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-modules@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-modules-core-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-modules-core-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-modules-core-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-modules-core@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-modules-extra-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-modules-extra-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-modules-extra-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-modules-extra@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-modules-internal-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-modules-internal-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-modules-internal-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-modules-internal@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-modules-partner-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-modules-partner-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-modules-partner-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-modules-partner@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-devel-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-devel-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-64k-devel-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-devel@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-devel-matched-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-devel-matched-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-64k-devel-matched-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-devel-matched@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-modules-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-modules-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-64k-modules-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-modules@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-modules-core-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-modules-core-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-64k-modules-core-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-modules-core@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-modules-extra-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-modules-extra-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-64k-modules-extra-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-modules-extra@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-modules-internal-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-modules-internal-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-64k-modules-internal-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-modules-internal@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-modules-partner-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-modules-partner-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-64k-modules-partner-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-modules-partner@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-core-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-core-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-core-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-core@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-cross-headers-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-cross-headers-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-cross-headers-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-cross-headers@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-debug-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-core-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-core-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-debug-core-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-devel-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-debug-devel-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-matched-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-devel-matched-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-debug-devel-matched-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-modules-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-debug-modules-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-core-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-modules-core-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-debug-modules-core-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-extra-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-modules-extra-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-debug-modules-extra-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-internal-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-modules-internal-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-debug-modules-internal-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-internal@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-partner-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-modules-partner-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-debug-modules-partner-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-partner@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-devel-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-devel-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-matched-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-devel-matched-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-devel-matched-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-headers-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-headers-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-headers-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-modules-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-modules-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-core-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-modules-core-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-modules-core-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-extra-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-modules-extra-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-modules-extra-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-internal-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-modules-internal-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-modules-internal-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-internal@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-partner-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-modules-partner-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-modules-partner-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-partner@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-selftests-internal-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-selftests-internal-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-selftests-internal-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-selftests-internal@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-tools-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-tools-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-tools-libs-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-tools-libs-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-devel-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-tools-libs-devel-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-tools-libs-devel-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "perf-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "perf-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "perf-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "python3-perf-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "python3-perf-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "rtla-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "rtla-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "rtla-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rtla@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "bpftool-debuginfo-0:7.0.0-284.40.1.el9_2.aarch64", + "product": { + "name": "bpftool-debuginfo-0:7.0.0-284.40.1.el9_2.aarch64", + "product_id": "bpftool-debuginfo-0:7.0.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool-debuginfo@7.0.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-debuginfo@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-64k-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debuginfo@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-debug-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-common-aarch64-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-debuginfo-common-aarch64-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-debuginfo-common-aarch64-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo-common-aarch64@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "kernel-tools-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "kernel-tools-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "perf-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "perf-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "perf-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "product": { + "name": "python3-perf-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "product_id": "python3-perf-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-284.40.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.aarch64", + "product": { + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.aarch64", + "product_id": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.aarch64", + "product": { + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.aarch64", + "product_id": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.27.1-13.1.rhaos4.14.git956c5f7.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.aarch64", + "product": { + "name": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.aarch64", + "product_id": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debugsource@1.27.1-13.1.rhaos4.14.git956c5f7.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.aarch64", + "product": { + "name": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.aarch64", + "product_id": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debuginfo@1.27.1-13.1.rhaos4.14.git956c5f7.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.aarch64", + "product": { + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.aarch64", + "product_id": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.ppc64le", + "product": { + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.ppc64le", + "product_id": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.27.1-13.1.rhaos4.14.git956c5f7.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.ppc64le", + "product": { + "name": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.ppc64le", + "product_id": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debugsource@1.27.1-13.1.rhaos4.14.git956c5f7.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.ppc64le", + "product": { + "name": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.ppc64le", + "product_id": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debuginfo@1.27.1-13.1.rhaos4.14.git956c5f7.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "bpftool-0:7.0.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "bpftool-0:7.0.0-284.40.1.el9_2.ppc64le", + "product_id": "bpftool-0:7.0.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool@7.0.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-core-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-core-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-core-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-core@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-cross-headers-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-cross-headers-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-cross-headers-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-cross-headers@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-debug-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-core-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-core-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-debug-core-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-devel-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-debug-devel-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-matched-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-devel-matched-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-debug-devel-matched-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-modules-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-debug-modules-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-core-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-modules-core-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-debug-modules-core-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-extra-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-modules-extra-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-debug-modules-extra-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-internal-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-modules-internal-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-debug-modules-internal-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-internal@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-partner-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-modules-partner-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-debug-modules-partner-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-partner@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-devel-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-devel-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-matched-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-devel-matched-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-devel-matched-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-headers-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-headers-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-headers-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-ipaclones-internal-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-ipaclones-internal-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-ipaclones-internal-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-ipaclones-internal@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-modules-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-modules-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-core-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-modules-core-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-modules-core-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-extra-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-modules-extra-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-modules-extra-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-internal-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-modules-internal-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-modules-internal-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-internal@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-partner-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-modules-partner-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-modules-partner-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-partner@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-selftests-internal-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-selftests-internal-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-selftests-internal-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-selftests-internal@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-tools-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-tools-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-tools-libs-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-tools-libs-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-devel-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-tools-libs-devel-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-tools-libs-devel-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "perf-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "perf-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "perf-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "python3-perf-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "python3-perf-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "rtla-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "rtla-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "rtla-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rtla@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "bpftool-debuginfo-0:7.0.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "bpftool-debuginfo-0:7.0.0-284.40.1.el9_2.ppc64le", + "product_id": "bpftool-debuginfo-0:7.0.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool-debuginfo@7.0.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-debug-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo-common-ppc64le@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "kernel-tools-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "kernel-tools-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "perf-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "perf-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "perf-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le", + "product": { + "name": "python3-perf-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_id": "python3-perf-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-284.40.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.ppc64le", + "product": { + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.ppc64le", + "product_id": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.ppc64le", + "product": { + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.ppc64le", + "product_id": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.27.1-13.1.rhaos4.14.git956c5f7.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.ppc64le", + "product": { + "name": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.ppc64le", + "product_id": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debugsource@1.27.1-13.1.rhaos4.14.git956c5f7.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.ppc64le", + "product": { + "name": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.ppc64le", + "product_id": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debuginfo@1.27.1-13.1.rhaos4.14.git956c5f7.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.ppc64le", + "product": { + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.ppc64le", + "product_id": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.s390x", + "product": { + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.s390x", + "product_id": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.27.1-13.1.rhaos4.14.git956c5f7.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.s390x", + "product": { + "name": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.s390x", + "product_id": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debugsource@1.27.1-13.1.rhaos4.14.git956c5f7.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.s390x", + "product": { + "name": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.s390x", + "product_id": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debuginfo@1.27.1-13.1.rhaos4.14.git956c5f7.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "bpftool-0:7.0.0-284.40.1.el9_2.s390x", + "product": { + "name": "bpftool-0:7.0.0-284.40.1.el9_2.s390x", + "product_id": "bpftool-0:7.0.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool@7.0.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-core-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-core-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-core-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-core@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-cross-headers-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-cross-headers-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-cross-headers-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-cross-headers@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-debug-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-debug-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-core-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-debug-core-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-debug-core-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-debug-devel-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-debug-devel-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-matched-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-debug-devel-matched-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-debug-devel-matched-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-debug-modules-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-debug-modules-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-core-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-debug-modules-core-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-debug-modules-core-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-extra-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-debug-modules-extra-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-debug-modules-extra-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-internal-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-debug-modules-internal-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-debug-modules-internal-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-internal@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-partner-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-debug-modules-partner-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-debug-modules-partner-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-partner@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-devel-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-devel-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-matched-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-devel-matched-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-devel-matched-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-headers-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-headers-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-headers-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-modules-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-modules-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-core-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-modules-core-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-modules-core-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-extra-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-modules-extra-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-modules-extra-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-internal-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-modules-internal-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-modules-internal-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-internal@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-partner-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-modules-partner-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-modules-partner-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-partner@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-selftests-internal-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-selftests-internal-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-selftests-internal-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-selftests-internal@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-tools-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-tools-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-core-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-core-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-core-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-core@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-devel-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-devel-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-devel-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-devel@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-devel-matched-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-devel-matched-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-devel-matched-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-devel-matched@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-modules-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-modules-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-modules-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-modules-core-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-modules-core-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-modules-core-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-core@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-modules-extra-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-modules-extra-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-modules-extra-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-extra@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-modules-internal-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-modules-internal-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-modules-internal-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-internal@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-modules-partner-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-modules-partner-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-modules-partner-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-partner@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "perf-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "perf-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "perf-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "python3-perf-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "python3-perf-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "rtla-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "rtla-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "rtla-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rtla@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "bpftool-debuginfo-0:7.0.0-284.40.1.el9_2.s390x", + "product": { + "name": "bpftool-debuginfo-0:7.0.0-284.40.1.el9_2.s390x", + "product_id": "bpftool-debuginfo-0:7.0.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool-debuginfo@7.0.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-debuginfo-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-debug-debuginfo-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-debug-debuginfo-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-debuginfo-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-debuginfo-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-common-s390x-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-debuginfo-common-s390x-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-debuginfo-common-s390x-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo-common-s390x@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-debuginfo-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-tools-debuginfo-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-tools-debuginfo-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-debuginfo-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-debuginfo-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-debuginfo-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-debuginfo@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "perf-debuginfo-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "perf-debuginfo-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "perf-debuginfo-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-debuginfo-0:5.14.0-284.40.1.el9_2.s390x", + "product": { + "name": "python3-perf-debuginfo-0:5.14.0-284.40.1.el9_2.s390x", + "product_id": "python3-perf-debuginfo-0:5.14.0-284.40.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-284.40.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.s390x", + "product": { + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.s390x", + "product_id": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.s390x", + "product": { + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.s390x", + "product_id": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.27.1-13.1.rhaos4.14.git956c5f7.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.s390x", + "product": { + "name": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.s390x", + "product_id": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debugsource@1.27.1-13.1.rhaos4.14.git956c5f7.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.s390x", + "product": { + "name": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.s390x", + "product_id": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debuginfo@1.27.1-13.1.rhaos4.14.git956c5f7.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.s390x", + "product": { + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.s390x", + "product_id": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-descheduler@sha256:9e804b7daed1fcc3c8a03af2d285315e8b2c7bf0e363cc4f3ab8b34d1e92089e_s390x", + "product": { + "name": "openshift4/ose-descheduler@sha256:9e804b7daed1fcc3c8a03af2d285315e8b2c7bf0e363cc4f3ab8b34d1e92089e_s390x", + "product_id": "openshift4/ose-descheduler@sha256:9e804b7daed1fcc3c8a03af2d285315e8b2c7bf0e363cc4f3ab8b34d1e92089e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-descheduler@sha256:9e804b7daed1fcc3c8a03af2d285315e8b2c7bf0e363cc4f3ab8b34d1e92089e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-descheduler&tag=v4.14.0-202311021650.p0.g16ce606.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-node-problem-detector-rhel8@sha256:29dea91e42796fd91071f4985754556ae8f25c33901deb640385b86a2fe30151_s390x", + "product": { + "name": "openshift4/ose-node-problem-detector-rhel8@sha256:29dea91e42796fd91071f4985754556ae8f25c33901deb640385b86a2fe30151_s390x", + "product_id": "openshift4/ose-node-problem-detector-rhel8@sha256:29dea91e42796fd91071f4985754556ae8f25c33901deb640385b86a2fe30151_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-node-problem-detector-rhel8@sha256:29dea91e42796fd91071f4985754556ae8f25c33901deb640385b86a2fe30151?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-node-problem-detector-rhel8&tag=v4.14.0-202311021650.p0.g0162e5f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-nfd-operator@sha256:83a94a4def24df37cbfcf9af683a31ac9a117fe1ef5bfb0d03996cf59c6584e7_s390x", + "product": { + "name": "openshift4/ose-cluster-nfd-operator@sha256:83a94a4def24df37cbfcf9af683a31ac9a117fe1ef5bfb0d03996cf59c6584e7_s390x", + "product_id": "openshift4/ose-cluster-nfd-operator@sha256:83a94a4def24df37cbfcf9af683a31ac9a117fe1ef5bfb0d03996cf59c6584e7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-nfd-operator@sha256:83a94a4def24df37cbfcf9af683a31ac9a117fe1ef5bfb0d03996cf59c6584e7?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-operator&tag=v4.14.0-202311021650.p0.g90a3e0c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ingress-node-firewall-rhel9@sha256:e4a5adcbd26c4a013ef48390e4bd404c5844a09d98784fcae1981097589058bb_s390x", + "product": { + "name": "openshift4/ingress-node-firewall-rhel9@sha256:e4a5adcbd26c4a013ef48390e4bd404c5844a09d98784fcae1981097589058bb_s390x", + "product_id": "openshift4/ingress-node-firewall-rhel9@sha256:e4a5adcbd26c4a013ef48390e4bd404c5844a09d98784fcae1981097589058bb_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ingress-node-firewall-rhel9@sha256:e4a5adcbd26c4a013ef48390e4bd404c5844a09d98784fcae1981097589058bb?arch=s390x&repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9&tag=v4.14.0-202311011907.p0.g47d4297.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ingress-node-firewall-rhel9-operator@sha256:38d0497c0db4aa16b0ec37d917f1eaf853f5c629345ce6bc2a511e1f651ae209_s390x", + "product": { + "name": "openshift4/ingress-node-firewall-rhel9-operator@sha256:38d0497c0db4aa16b0ec37d917f1eaf853f5c629345ce6bc2a511e1f651ae209_s390x", + "product_id": "openshift4/ingress-node-firewall-rhel9-operator@sha256:38d0497c0db4aa16b0ec37d917f1eaf853f5c629345ce6bc2a511e1f651ae209_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ingress-node-firewall-rhel9-operator@sha256:38d0497c0db4aa16b0ec37d917f1eaf853f5c629345ce6bc2a511e1f651ae209?arch=s390x&repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator&tag=v4.14.0-202311021650.p0.g47d4297.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-local-storage-diskmaker@sha256:73b998f500367b30fe97b879b2f5cb8f3039b62512b6a019f15d1aa1102a58e2_s390x", + "product": { + "name": "openshift4/ose-local-storage-diskmaker@sha256:73b998f500367b30fe97b879b2f5cb8f3039b62512b6a019f15d1aa1102a58e2_s390x", + "product_id": "openshift4/ose-local-storage-diskmaker@sha256:73b998f500367b30fe97b879b2f5cb8f3039b62512b6a019f15d1aa1102a58e2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-local-storage-diskmaker@sha256:73b998f500367b30fe97b879b2f5cb8f3039b62512b6a019f15d1aa1102a58e2?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker&tag=v4.14.0-202311021650.p0.gc41b6ba.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-local-storage-operator@sha256:2984b6fd260b19c843f34df39e78bd4a75414a0190931e25294383a2c230681a_s390x", + "product": { + "name": "openshift4/ose-local-storage-operator@sha256:2984b6fd260b19c843f34df39e78bd4a75414a0190931e25294383a2c230681a_s390x", + "product_id": "openshift4/ose-local-storage-operator@sha256:2984b6fd260b19c843f34df39e78bd4a75414a0190931e25294383a2c230681a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-local-storage-operator@sha256:2984b6fd260b19c843f34df39e78bd4a75414a0190931e25294383a2c230681a?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-local-storage-operator&tag=v4.14.0-202311031050.p0.gc41b6ba.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/nmstate-console-plugin-rhel8@sha256:0ce257dbc4cd8b2606edfdfbbe65ad3eded479802b9fb728e7ffa05158102664_s390x", + "product": { + "name": "openshift4/nmstate-console-plugin-rhel8@sha256:0ce257dbc4cd8b2606edfdfbbe65ad3eded479802b9fb728e7ffa05158102664_s390x", + "product_id": "openshift4/nmstate-console-plugin-rhel8@sha256:0ce257dbc4cd8b2606edfdfbbe65ad3eded479802b9fb728e7ffa05158102664_s390x", + "product_identification_helper": { + "purl": "pkg:oci/nmstate-console-plugin-rhel8@sha256:0ce257dbc4cd8b2606edfdfbbe65ad3eded479802b9fb728e7ffa05158102664?arch=s390x&repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel8&tag=v4.14.0-202311021650.p0.g75fe6e5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-node-feature-discovery@sha256:db46199874d977479dd808b7b4355b79ffc44108c0b05b44e5edc34549027723_s390x", + "product": { + "name": "openshift4/ose-node-feature-discovery@sha256:db46199874d977479dd808b7b4355b79ffc44108c0b05b44e5edc34549027723_s390x", + "product_id": "openshift4/ose-node-feature-discovery@sha256:db46199874d977479dd808b7b4355b79ffc44108c0b05b44e5edc34549027723_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-node-feature-discovery@sha256:db46199874d977479dd808b7b4355b79ffc44108c0b05b44e5edc34549027723?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery&tag=v4.14.0-202311021650.p0.g060e629.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ansible-operator@sha256:128eb819cfda3ecf00fb1b6f1c617e0ab3a9b89839c5955d4d9ec50fe5c9350b_s390x", + "product": { + "name": "openshift4/ose-ansible-operator@sha256:128eb819cfda3ecf00fb1b6f1c617e0ab3a9b89839c5955d4d9ec50fe5c9350b_s390x", + "product_id": "openshift4/ose-ansible-operator@sha256:128eb819cfda3ecf00fb1b6f1c617e0ab3a9b89839c5955d4d9ec50fe5c9350b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ansible-operator@sha256:128eb819cfda3ecf00fb1b6f1c617e0ab3a9b89839c5955d4d9ec50fe5c9350b?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ansible-operator&tag=v4.14.0-202311021650.p0.gbd08cb7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capacity@sha256:f84c113cfa58debda4327692446f407ed259a00170125ef8761168bff9251c31_s390x", + "product": { + "name": "openshift4/ose-cluster-capacity@sha256:f84c113cfa58debda4327692446f407ed259a00170125ef8761168bff9251c31_s390x", + "product_id": "openshift4/ose-cluster-capacity@sha256:f84c113cfa58debda4327692446f407ed259a00170125ef8761168bff9251c31_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capacity@sha256:f84c113cfa58debda4327692446f407ed259a00170125ef8761168bff9251c31?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-capacity&tag=v4.14.0-202311021650.p0.g1d2edb6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-egress-dns-proxy@sha256:a8bdd097fb2acf4ad478345eeb45ca471fdcefa49c283efb707a1525145fb24d_s390x", + "product": { + "name": "openshift4/ose-egress-dns-proxy@sha256:a8bdd097fb2acf4ad478345eeb45ca471fdcefa49c283efb707a1525145fb24d_s390x", + "product_id": "openshift4/ose-egress-dns-proxy@sha256:a8bdd097fb2acf4ad478345eeb45ca471fdcefa49c283efb707a1525145fb24d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-egress-dns-proxy@sha256:a8bdd097fb2acf4ad478345eeb45ca471fdcefa49c283efb707a1525145fb24d?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy&tag=v4.14.0-202311021650.p0.gf08cee3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-egress-router@sha256:edb7053aa1d56cd325d5c6177d9bb476fce7a75d1c40566f1a5ea4af83ffa204_s390x", + "product": { + "name": "openshift4/ose-egress-router@sha256:edb7053aa1d56cd325d5c6177d9bb476fce7a75d1c40566f1a5ea4af83ffa204_s390x", + "product_id": "openshift4/ose-egress-router@sha256:edb7053aa1d56cd325d5c6177d9bb476fce7a75d1c40566f1a5ea4af83ffa204_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-egress-router@sha256:edb7053aa1d56cd325d5c6177d9bb476fce7a75d1c40566f1a5ea4af83ffa204?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-egress-router&tag=v4.14.0-202311021650.p0.gf08cee3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-helm-operator@sha256:8a00e9a8a24e9d3ee9f240699ad6119f40f825353d1df672d86e6dbb93b0d7e9_s390x", + "product": { + "name": "openshift4/ose-helm-operator@sha256:8a00e9a8a24e9d3ee9f240699ad6119f40f825353d1df672d86e6dbb93b0d7e9_s390x", + "product_id": "openshift4/ose-helm-operator@sha256:8a00e9a8a24e9d3ee9f240699ad6119f40f825353d1df672d86e6dbb93b0d7e9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-helm-operator@sha256:8a00e9a8a24e9d3ee9f240699ad6119f40f825353d1df672d86e6dbb93b0d7e9?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-helm-operator&tag=v4.14.0-202311021650.p0.gbd08cb7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-sdk-rhel8@sha256:18a82f86d5e71a948adb10ce6060556a1462689b6e364adbe1130226efcc3a0e_s390x", + "product": { + "name": "openshift4/ose-operator-sdk-rhel8@sha256:18a82f86d5e71a948adb10ce6060556a1462689b6e364adbe1130226efcc3a0e_s390x", + "product_id": "openshift4/ose-operator-sdk-rhel8@sha256:18a82f86d5e71a948adb10ce6060556a1462689b6e364adbe1130226efcc3a0e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-sdk-rhel8@sha256:18a82f86d5e71a948adb10ce6060556a1462689b6e364adbe1130226efcc3a0e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel8&tag=v4.14.0-202311021650.p0.gbd08cb7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:748ad752ec740b2bce29c71cd9063e05b95e580561426d951d5948d0d710ea17_s390x", + "product": { + "name": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:748ad752ec740b2bce29c71cd9063e05b95e580561426d951d5948d0d710ea17_s390x", + "product_id": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:748ad752ec740b2bce29c71cd9063e05b95e580561426d951d5948d0d710ea17_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-proxy-pull-test-rhel8@sha256:748ad752ec740b2bce29c71cd9063e05b95e580561426d951d5948d0d710ea17?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openshift-proxy-pull-test-rhel8&tag=v4.14.0-202311070105.p0.gf57144e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:1669dd442554c92e9c71143d90a676959fb12705bff2ef3aaec819785b6df76f_s390x", + "product": { + "name": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:1669dd442554c92e9c71143d90a676959fb12705bff2ef3aaec819785b6df76f_s390x", + "product_id": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:1669dd442554c92e9c71143d90a676959fb12705bff2ef3aaec819785b6df76f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-descheduler-rhel8-operator@sha256:1669dd442554c92e9c71143d90a676959fb12705bff2ef3aaec819785b6df76f?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-descheduler-rhel8-operator&tag=v4.14.0-202311021650.p0.gc3ddfd6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-descheduler-operator@sha256:1669dd442554c92e9c71143d90a676959fb12705bff2ef3aaec819785b6df76f_s390x", + "product": { + "name": "openshift4/ose-cluster-kube-descheduler-operator@sha256:1669dd442554c92e9c71143d90a676959fb12705bff2ef3aaec819785b6df76f_s390x", + "product_id": "openshift4/ose-cluster-kube-descheduler-operator@sha256:1669dd442554c92e9c71143d90a676959fb12705bff2ef3aaec819785b6df76f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-descheduler-operator@sha256:1669dd442554c92e9c71143d90a676959fb12705bff2ef3aaec819785b6df76f?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-descheduler-operator&tag=v4.14.0-202311021650.p0.gc3ddfd6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-clusterresourceoverride-rhel8@sha256:57184f1a0de2ade1e8f20e92147ed766dd13660ebaf42fdbc81d0f67a9c33cb8_s390x", + "product": { + "name": "openshift4/ose-clusterresourceoverride-rhel8@sha256:57184f1a0de2ade1e8f20e92147ed766dd13660ebaf42fdbc81d0f67a9c33cb8_s390x", + "product_id": "openshift4/ose-clusterresourceoverride-rhel8@sha256:57184f1a0de2ade1e8f20e92147ed766dd13660ebaf42fdbc81d0f67a9c33cb8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-clusterresourceoverride-rhel8@sha256:57184f1a0de2ade1e8f20e92147ed766dd13660ebaf42fdbc81d0f67a9c33cb8?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8&tag=v4.14.0-202311021650.p0.g55d1f53.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:b522da40066a38358ae80ba851d33c8044d332cab5678ef6d73b6cfcbf97d091_s390x", + "product": { + "name": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:b522da40066a38358ae80ba851d33c8044d332cab5678ef6d73b6cfcbf97d091_s390x", + "product_id": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:b522da40066a38358ae80ba851d33c8044d332cab5678ef6d73b6cfcbf97d091_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-clusterresourceoverride-rhel8-operator@sha256:b522da40066a38358ae80ba851d33c8044d332cab5678ef6d73b6cfcbf97d091?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator&tag=v4.14.0-202311021650.p0.gbb23924.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:7ca74b384584bb9a62b6f4f1ea69863503d76c3811066b5a8ce0053789223a5e_s390x", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:7ca74b384584bb9a62b6f4f1ea69863503d76c3811066b5a8ce0053789223a5e_s390x", + "product_id": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:7ca74b384584bb9a62b6f4f1ea69863503d76c3811066b5a8ce0053789223a5e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:7ca74b384584bb9a62b6f4f1ea69863503d76c3811066b5a8ce0053789223a5e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8&tag=v4.14.0-202311021650.p0.g740b442.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-egress-http-proxy@sha256:46c2b25998599654ad9a25407f55e4112ba8d3b5823654f28a1ae59cbbb1129f_s390x", + "product": { + "name": "openshift4/ose-egress-http-proxy@sha256:46c2b25998599654ad9a25407f55e4112ba8d3b5823654f28a1ae59cbbb1129f_s390x", + "product_id": "openshift4/ose-egress-http-proxy@sha256:46c2b25998599654ad9a25407f55e4112ba8d3b5823654f28a1ae59cbbb1129f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-egress-http-proxy@sha256:46c2b25998599654ad9a25407f55e4112ba8d3b5823654f28a1ae59cbbb1129f?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy&tag=v4.14.0-202311021650.p0.gf08cee3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/frr-rhel9@sha256:edd19532b211e0c4c2e6aa805d5b1079321f29a56b79bd072e556c55f010f548_s390x", + "product": { + "name": "openshift4/frr-rhel9@sha256:edd19532b211e0c4c2e6aa805d5b1079321f29a56b79bd072e556c55f010f548_s390x", + "product_id": "openshift4/frr-rhel9@sha256:edd19532b211e0c4c2e6aa805d5b1079321f29a56b79bd072e556c55f010f548_s390x", + "product_identification_helper": { + "purl": "pkg:oci/frr-rhel9@sha256:edd19532b211e0c4c2e6aa805d5b1079321f29a56b79bd072e556c55f010f548?arch=s390x&repository_url=registry.redhat.io/openshift4/frr-rhel9&tag=v4.14.0-202310262127.p0.g0414ca3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/kubernetes-nmstate-rhel9-operator@sha256:f54f122d66e14d6d15e7a1d50d06693d506fab6cb9869401f42a46e9e1fd510b_s390x", + "product": { + "name": "openshift4/kubernetes-nmstate-rhel9-operator@sha256:f54f122d66e14d6d15e7a1d50d06693d506fab6cb9869401f42a46e9e1fd510b_s390x", + "product_id": "openshift4/kubernetes-nmstate-rhel9-operator@sha256:f54f122d66e14d6d15e7a1d50d06693d506fab6cb9869401f42a46e9e1fd510b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/kubernetes-nmstate-rhel9-operator@sha256:f54f122d66e14d6d15e7a1d50d06693d506fab6cb9869401f42a46e9e1fd510b?arch=s390x&repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator&tag=v4.14.0-202311021650.p0.g802a398.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-local-storage-mustgather-rhel8@sha256:2230caaf1b244ddf733352f7d10c6350dae94e52f0146076cfd740365252ab0b_s390x", + "product": { + "name": "openshift4/ose-local-storage-mustgather-rhel8@sha256:2230caaf1b244ddf733352f7d10c6350dae94e52f0146076cfd740365252ab0b_s390x", + "product_id": "openshift4/ose-local-storage-mustgather-rhel8@sha256:2230caaf1b244ddf733352f7d10c6350dae94e52f0146076cfd740365252ab0b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-local-storage-mustgather-rhel8@sha256:2230caaf1b244ddf733352f7d10c6350dae94e52f0146076cfd740365252ab0b?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel8&tag=v4.14.0-202311021650.p0.gc41b6ba.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift-tech-preview/metallb-rhel8@sha256:5b00d78c577a9c83945c127005e7d75d8e4e0ff83a2d600f9e4ad8821bd57048_s390x", + "product": { + "name": "openshift-tech-preview/metallb-rhel8@sha256:5b00d78c577a9c83945c127005e7d75d8e4e0ff83a2d600f9e4ad8821bd57048_s390x", + "product_id": "openshift-tech-preview/metallb-rhel8@sha256:5b00d78c577a9c83945c127005e7d75d8e4e0ff83a2d600f9e4ad8821bd57048_s390x", + "product_identification_helper": { + "purl": "pkg:oci/metallb-rhel8@sha256:5b00d78c577a9c83945c127005e7d75d8e4e0ff83a2d600f9e4ad8821bd57048?arch=s390x&repository_url=registry.redhat.io/openshift-tech-preview/metallb-rhel8&tag=v4.14.0-202311061430.p0.ga09f95c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/metallb-rhel8@sha256:5b00d78c577a9c83945c127005e7d75d8e4e0ff83a2d600f9e4ad8821bd57048_s390x", + "product": { + "name": "openshift4/metallb-rhel8@sha256:5b00d78c577a9c83945c127005e7d75d8e4e0ff83a2d600f9e4ad8821bd57048_s390x", + "product_id": "openshift4/metallb-rhel8@sha256:5b00d78c577a9c83945c127005e7d75d8e4e0ff83a2d600f9e4ad8821bd57048_s390x", + "product_identification_helper": { + "purl": "pkg:oci/metallb-rhel8@sha256:5b00d78c577a9c83945c127005e7d75d8e4e0ff83a2d600f9e4ad8821bd57048?arch=s390x&repository_url=registry.redhat.io/openshift4/metallb-rhel8&tag=v4.14.0-202311061430.p0.ga09f95c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/metallb-rhel8-operator@sha256:963b8267a707efb1fcc5c69ee6ce5d1ed1bff20d421f7fdf9a459568fd72d0f4_s390x", + "product": { + "name": "openshift4/metallb-rhel8-operator@sha256:963b8267a707efb1fcc5c69ee6ce5d1ed1bff20d421f7fdf9a459568fd72d0f4_s390x", + "product_id": "openshift4/metallb-rhel8-operator@sha256:963b8267a707efb1fcc5c69ee6ce5d1ed1bff20d421f7fdf9a459568fd72d0f4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/metallb-rhel8-operator@sha256:963b8267a707efb1fcc5c69ee6ce5d1ed1bff20d421f7fdf9a459568fd72d0f4?arch=s390x&repository_url=registry.redhat.io/openshift4/metallb-rhel8-operator&tag=v4.14.0-202311061430.p0.g88d1de4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-secrets-store-csi-driver-rhel8@sha256:0295d2cb56f08e961ee9fc5f082a65a75eb157305dd6ea83c3024359ab17c0f8_s390x", + "product": { + "name": "openshift4/ose-secrets-store-csi-driver-rhel8@sha256:0295d2cb56f08e961ee9fc5f082a65a75eb157305dd6ea83c3024359ab17c0f8_s390x", + "product_id": "openshift4/ose-secrets-store-csi-driver-rhel8@sha256:0295d2cb56f08e961ee9fc5f082a65a75eb157305dd6ea83c3024359ab17c0f8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-secrets-store-csi-driver-rhel8@sha256:0295d2cb56f08e961ee9fc5f082a65a75eb157305dd6ea83c3024359ab17c0f8?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.g4b5bd4b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:60f658bcbd5f08cb0f54e4988c585ee42ebf071b552ffa3ac5e9a8b9c8c5dab4_s390x", + "product": { + "name": "openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:60f658bcbd5f08cb0f54e4988c585ee42ebf071b552ffa3ac5e9a8b9c8c5dab4_s390x", + "product_id": "openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:60f658bcbd5f08cb0f54e4988c585ee42ebf071b552ffa3ac5e9a8b9c8c5dab4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-secrets-store-csi-driver-rhel8-operator@sha256:60f658bcbd5f08cb0f54e4988c585ee42ebf071b552ffa3ac5e9a8b9c8c5dab4?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator&tag=v4.14.0-202311021650.p0.g1e01fc0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:ea707960c23790ea78578dc245f655f76edeaadb4e1032dc59a151df5edd6286_s390x", + "product": { + "name": "openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:ea707960c23790ea78578dc245f655f76edeaadb4e1032dc59a151df5edd6286_s390x", + "product_id": "openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:ea707960c23790ea78578dc245f655f76edeaadb4e1032dc59a151df5edd6286_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-secrets-store-csi-mustgather-rhel8@sha256:ea707960c23790ea78578dc245f655f76edeaadb4e1032dc59a151df5edd6286?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8&tag=v4.14.0-202311021650.p0.g1e01fc0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:21cf5fba6c92fd2acb12817553da75c3ff1ddac8bc137d50dd1914fd0b9ebf0b_s390x", + "product": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:21cf5fba6c92fd2acb12817553da75c3ff1ddac8bc137d50dd1914fd0b9ebf0b_s390x", + "product_id": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:21cf5fba6c92fd2acb12817553da75c3ff1ddac8bc137d50dd1914fd0b9ebf0b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-vertical-pod-autoscaler-rhel8@sha256:21cf5fba6c92fd2acb12817553da75c3ff1ddac8bc137d50dd1914fd0b9ebf0b?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8&tag=v4.14.0-202311021650.p0.g0822c7b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:bb21a417cbb88d6edde32db1b492a01beda4928e736c34753244e521833b2ad9_s390x", + "product": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:bb21a417cbb88d6edde32db1b492a01beda4928e736c34753244e521833b2ad9_s390x", + "product_id": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:bb21a417cbb88d6edde32db1b492a01beda4928e736c34753244e521833b2ad9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-vertical-pod-autoscaler-rhel8-operator@sha256:bb21a417cbb88d6edde32db1b492a01beda4928e736c34753244e521833b2ad9?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator&tag=v4.14.0-202311021650.p0.geae798e.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-descheduler@sha256:1e891b0db385b0f52b7e7646fba180c1a72f21c2656153144d7213e866d1f8c8_amd64", + "product": { + "name": "openshift4/ose-descheduler@sha256:1e891b0db385b0f52b7e7646fba180c1a72f21c2656153144d7213e866d1f8c8_amd64", + "product_id": "openshift4/ose-descheduler@sha256:1e891b0db385b0f52b7e7646fba180c1a72f21c2656153144d7213e866d1f8c8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-descheduler@sha256:1e891b0db385b0f52b7e7646fba180c1a72f21c2656153144d7213e866d1f8c8?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-descheduler&tag=v4.14.0-202311021650.p0.g16ce606.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-node-problem-detector-rhel8@sha256:51cdb3175e2410b824138d866779ce10cbfb1766f8e956a9f5e78e87716404f1_amd64", + "product": { + "name": "openshift4/ose-node-problem-detector-rhel8@sha256:51cdb3175e2410b824138d866779ce10cbfb1766f8e956a9f5e78e87716404f1_amd64", + "product_id": "openshift4/ose-node-problem-detector-rhel8@sha256:51cdb3175e2410b824138d866779ce10cbfb1766f8e956a9f5e78e87716404f1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-node-problem-detector-rhel8@sha256:51cdb3175e2410b824138d866779ce10cbfb1766f8e956a9f5e78e87716404f1?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-node-problem-detector-rhel8&tag=v4.14.0-202311021650.p0.g0162e5f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/cloud-event-proxy-rhel8@sha256:4ef634fb723c082c0dcf6070b203b8e03808c29757ee365e121722454d1d9278_amd64", + "product": { + "name": "openshift4/cloud-event-proxy-rhel8@sha256:4ef634fb723c082c0dcf6070b203b8e03808c29757ee365e121722454d1d9278_amd64", + "product_id": "openshift4/cloud-event-proxy-rhel8@sha256:4ef634fb723c082c0dcf6070b203b8e03808c29757ee365e121722454d1d9278_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cloud-event-proxy-rhel8@sha256:4ef634fb723c082c0dcf6070b203b8e03808c29757ee365e121722454d1d9278?arch=amd64&repository_url=registry.redhat.io/openshift4/cloud-event-proxy-rhel8&tag=v4.14.0-202311021650.p0.gc3dc0ec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-event-proxy-rhel8@sha256:4ef634fb723c082c0dcf6070b203b8e03808c29757ee365e121722454d1d9278_amd64", + "product": { + "name": "openshift4/ose-cloud-event-proxy-rhel8@sha256:4ef634fb723c082c0dcf6070b203b8e03808c29757ee365e121722454d1d9278_amd64", + "product_id": "openshift4/ose-cloud-event-proxy-rhel8@sha256:4ef634fb723c082c0dcf6070b203b8e03808c29757ee365e121722454d1d9278_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-event-proxy-rhel8@sha256:4ef634fb723c082c0dcf6070b203b8e03808c29757ee365e121722454d1d9278?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8&tag=v4.14.0-202311021650.p0.gc3dc0ec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-nfd-operator@sha256:9ea73326a4112b0f11503aa9720d929f00e80bc2ca8703eeee2d573f2cfbfeb7_amd64", + "product": { + "name": "openshift4/ose-cluster-nfd-operator@sha256:9ea73326a4112b0f11503aa9720d929f00e80bc2ca8703eeee2d573f2cfbfeb7_amd64", + "product_id": "openshift4/ose-cluster-nfd-operator@sha256:9ea73326a4112b0f11503aa9720d929f00e80bc2ca8703eeee2d573f2cfbfeb7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-nfd-operator@sha256:9ea73326a4112b0f11503aa9720d929f00e80bc2ca8703eeee2d573f2cfbfeb7?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-operator&tag=v4.14.0-202311021650.p0.g90a3e0c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-infiniband-cni@sha256:c3180eabf33225fae4ee2cc585d8d6cb12ff7c8d1f0121a3c1e77653838a21cb_amd64", + "product": { + "name": "openshift4/ose-sriov-infiniband-cni@sha256:c3180eabf33225fae4ee2cc585d8d6cb12ff7c8d1f0121a3c1e77653838a21cb_amd64", + "product_id": "openshift4/ose-sriov-infiniband-cni@sha256:c3180eabf33225fae4ee2cc585d8d6cb12ff7c8d1f0121a3c1e77653838a21cb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-infiniband-cni@sha256:c3180eabf33225fae4ee2cc585d8d6cb12ff7c8d1f0121a3c1e77653838a21cb?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni&tag=v4.14.0-202311021650.p0.geba0d95.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ingress-node-firewall-rhel9@sha256:d63e150ca348b86f6dbd20fccc69a22d975d881cfb04a9f1950cb795d4f6fd05_amd64", + "product": { + "name": "openshift4/ingress-node-firewall-rhel9@sha256:d63e150ca348b86f6dbd20fccc69a22d975d881cfb04a9f1950cb795d4f6fd05_amd64", + "product_id": "openshift4/ingress-node-firewall-rhel9@sha256:d63e150ca348b86f6dbd20fccc69a22d975d881cfb04a9f1950cb795d4f6fd05_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ingress-node-firewall-rhel9@sha256:d63e150ca348b86f6dbd20fccc69a22d975d881cfb04a9f1950cb795d4f6fd05?arch=amd64&repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9&tag=v4.14.0-202311011907.p0.g47d4297.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ingress-node-firewall-rhel9-operator@sha256:966695e0ff7b9570f0d53bd8111449648273ff16c633cee62f21053151eba4d1_amd64", + "product": { + "name": "openshift4/ingress-node-firewall-rhel9-operator@sha256:966695e0ff7b9570f0d53bd8111449648273ff16c633cee62f21053151eba4d1_amd64", + "product_id": "openshift4/ingress-node-firewall-rhel9-operator@sha256:966695e0ff7b9570f0d53bd8111449648273ff16c633cee62f21053151eba4d1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ingress-node-firewall-rhel9-operator@sha256:966695e0ff7b9570f0d53bd8111449648273ff16c633cee62f21053151eba4d1?arch=amd64&repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator&tag=v4.14.0-202311021650.p0.g47d4297.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-local-storage-diskmaker@sha256:a9ecf4d7201b47461e602a4d0218f055da05260eb251c6db7d8ce358f4838a00_amd64", + "product": { + "name": "openshift4/ose-local-storage-diskmaker@sha256:a9ecf4d7201b47461e602a4d0218f055da05260eb251c6db7d8ce358f4838a00_amd64", + "product_id": "openshift4/ose-local-storage-diskmaker@sha256:a9ecf4d7201b47461e602a4d0218f055da05260eb251c6db7d8ce358f4838a00_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-local-storage-diskmaker@sha256:a9ecf4d7201b47461e602a4d0218f055da05260eb251c6db7d8ce358f4838a00?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker&tag=v4.14.0-202311021650.p0.gc41b6ba.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-local-storage-operator@sha256:2744170ff5e60cfde5476eac6653dbb97b4f17050329eabd8cc9ad2f283df993_amd64", + "product": { + "name": "openshift4/ose-local-storage-operator@sha256:2744170ff5e60cfde5476eac6653dbb97b4f17050329eabd8cc9ad2f283df993_amd64", + "product_id": "openshift4/ose-local-storage-operator@sha256:2744170ff5e60cfde5476eac6653dbb97b4f17050329eabd8cc9ad2f283df993_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-local-storage-operator@sha256:2744170ff5e60cfde5476eac6653dbb97b4f17050329eabd8cc9ad2f283df993?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-local-storage-operator&tag=v4.14.0-202311031050.p0.gc41b6ba.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/nmstate-console-plugin-rhel8@sha256:5787e424475a5346fa90877509f736385cf9d5a2cc610a2918a65e27815ed471_amd64", + "product": { + "name": "openshift4/nmstate-console-plugin-rhel8@sha256:5787e424475a5346fa90877509f736385cf9d5a2cc610a2918a65e27815ed471_amd64", + "product_id": "openshift4/nmstate-console-plugin-rhel8@sha256:5787e424475a5346fa90877509f736385cf9d5a2cc610a2918a65e27815ed471_amd64", + "product_identification_helper": { + "purl": "pkg:oci/nmstate-console-plugin-rhel8@sha256:5787e424475a5346fa90877509f736385cf9d5a2cc610a2918a65e27815ed471?arch=amd64&repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel8&tag=v4.14.0-202311021650.p0.g75fe6e5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-node-feature-discovery@sha256:1fd0391d7b24a525e3ac1611b62d0d41b61249e2e9a9102a7a35df3b90452262_amd64", + "product": { + "name": "openshift4/ose-node-feature-discovery@sha256:1fd0391d7b24a525e3ac1611b62d0d41b61249e2e9a9102a7a35df3b90452262_amd64", + "product_id": "openshift4/ose-node-feature-discovery@sha256:1fd0391d7b24a525e3ac1611b62d0d41b61249e2e9a9102a7a35df3b90452262_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-node-feature-discovery@sha256:1fd0391d7b24a525e3ac1611b62d0d41b61249e2e9a9102a7a35df3b90452262?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery&tag=v4.14.0-202311021650.p0.g060e629.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ansible-operator@sha256:bd42eb29510c8135c68f46e4f35240223941026ad7e9c0364cf4e3cb13c753c8_amd64", + "product": { + "name": "openshift4/ose-ansible-operator@sha256:bd42eb29510c8135c68f46e4f35240223941026ad7e9c0364cf4e3cb13c753c8_amd64", + "product_id": "openshift4/ose-ansible-operator@sha256:bd42eb29510c8135c68f46e4f35240223941026ad7e9c0364cf4e3cb13c753c8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ansible-operator@sha256:bd42eb29510c8135c68f46e4f35240223941026ad7e9c0364cf4e3cb13c753c8?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ansible-operator&tag=v4.14.0-202311021650.p0.gbd08cb7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capacity@sha256:090f008f846a90f0e5069786a36fc06e1eb0fa14ae71a34bcab35e95aed5b526_amd64", + "product": { + "name": "openshift4/ose-cluster-capacity@sha256:090f008f846a90f0e5069786a36fc06e1eb0fa14ae71a34bcab35e95aed5b526_amd64", + "product_id": "openshift4/ose-cluster-capacity@sha256:090f008f846a90f0e5069786a36fc06e1eb0fa14ae71a34bcab35e95aed5b526_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capacity@sha256:090f008f846a90f0e5069786a36fc06e1eb0fa14ae71a34bcab35e95aed5b526?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-capacity&tag=v4.14.0-202311021650.p0.g1d2edb6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-egress-dns-proxy@sha256:43e07a5d4da8403ed0263c31a0b837c7d1b4ab3270bf8411b5e5f46c46ddcec1_amd64", + "product": { + "name": "openshift4/ose-egress-dns-proxy@sha256:43e07a5d4da8403ed0263c31a0b837c7d1b4ab3270bf8411b5e5f46c46ddcec1_amd64", + "product_id": "openshift4/ose-egress-dns-proxy@sha256:43e07a5d4da8403ed0263c31a0b837c7d1b4ab3270bf8411b5e5f46c46ddcec1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-egress-dns-proxy@sha256:43e07a5d4da8403ed0263c31a0b837c7d1b4ab3270bf8411b5e5f46c46ddcec1?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy&tag=v4.14.0-202311021650.p0.gf08cee3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-egress-router@sha256:d11dc1c62ac15f02e39bc1cbbda3f8656a5e95b7e984b0629f0554877aa813c3_amd64", + "product": { + "name": "openshift4/ose-egress-router@sha256:d11dc1c62ac15f02e39bc1cbbda3f8656a5e95b7e984b0629f0554877aa813c3_amd64", + "product_id": "openshift4/ose-egress-router@sha256:d11dc1c62ac15f02e39bc1cbbda3f8656a5e95b7e984b0629f0554877aa813c3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-egress-router@sha256:d11dc1c62ac15f02e39bc1cbbda3f8656a5e95b7e984b0629f0554877aa813c3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-egress-router&tag=v4.14.0-202311021650.p0.gf08cee3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-helm-operator@sha256:1d8227eaf7cd79d910ba9e738186e5f8c6e1dffa13a623f83eb87c1f4e6d4267_amd64", + "product": { + "name": "openshift4/ose-helm-operator@sha256:1d8227eaf7cd79d910ba9e738186e5f8c6e1dffa13a623f83eb87c1f4e6d4267_amd64", + "product_id": "openshift4/ose-helm-operator@sha256:1d8227eaf7cd79d910ba9e738186e5f8c6e1dffa13a623f83eb87c1f4e6d4267_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-helm-operator@sha256:1d8227eaf7cd79d910ba9e738186e5f8c6e1dffa13a623f83eb87c1f4e6d4267?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-helm-operator&tag=v4.14.0-202311021650.p0.gbd08cb7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-sdk-rhel8@sha256:bb494bb7457579c9e3e864c3f14d4f9c98f2e54f601a960f1ccd8f91b2a876f2_amd64", + "product": { + "name": "openshift4/ose-operator-sdk-rhel8@sha256:bb494bb7457579c9e3e864c3f14d4f9c98f2e54f601a960f1ccd8f91b2a876f2_amd64", + "product_id": "openshift4/ose-operator-sdk-rhel8@sha256:bb494bb7457579c9e3e864c3f14d4f9c98f2e54f601a960f1ccd8f91b2a876f2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-sdk-rhel8@sha256:bb494bb7457579c9e3e864c3f14d4f9c98f2e54f601a960f1ccd8f91b2a876f2?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel8&tag=v4.14.0-202311021650.p0.gbd08cb7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:1b6ef6e93b3b02dffde51cc1262f2d0a914423faf85496c6c2489fe3c13e9e16_amd64", + "product": { + "name": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:1b6ef6e93b3b02dffde51cc1262f2d0a914423faf85496c6c2489fe3c13e9e16_amd64", + "product_id": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:1b6ef6e93b3b02dffde51cc1262f2d0a914423faf85496c6c2489fe3c13e9e16_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-proxy-pull-test-rhel8@sha256:1b6ef6e93b3b02dffde51cc1262f2d0a914423faf85496c6c2489fe3c13e9e16?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openshift-proxy-pull-test-rhel8&tag=v4.14.0-202311070105.p0.gf57144e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:9f14894fb17ff69fefa5e8e44afb806a41c9db13f7275ed359a48fa7064e6adc_amd64", + "product": { + "name": "openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:9f14894fb17ff69fefa5e8e44afb806a41c9db13f7275ed359a48fa7064e6adc_amd64", + "product_id": "openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:9f14894fb17ff69fefa5e8e44afb806a41c9db13f7275ed359a48fa7064e6adc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-efs-csi-driver-container-rhel8@sha256:9f14894fb17ff69fefa5e8e44afb806a41c9db13f7275ed359a48fa7064e6adc?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8&tag=v4.14.0-202311021650.p0.g66925fd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:3e6573e509108ee5b88bdd3d8e8e3f01f9d0ca4783df60031c244d5e1e3097a3_amd64", + "product": { + "name": "openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:3e6573e509108ee5b88bdd3d8e8e3f01f9d0ca4783df60031c244d5e1e3097a3_amd64", + "product_id": "openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:3e6573e509108ee5b88bdd3d8e8e3f01f9d0ca4783df60031c244d5e1e3097a3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-efs-csi-driver-rhel8-operator@sha256:3e6573e509108ee5b88bdd3d8e8e3f01f9d0ca4783df60031c244d5e1e3097a3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator&tag=v4.14.0-202311021650.p0.ge7d739f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:a1d6f2793d636515d41971711137bbc17f87e33a873fbf82a2fb03ae307a46b4_amd64", + "product": { + "name": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:a1d6f2793d636515d41971711137bbc17f87e33a873fbf82a2fb03ae307a46b4_amd64", + "product_id": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:a1d6f2793d636515d41971711137bbc17f87e33a873fbf82a2fb03ae307a46b4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-descheduler-rhel8-operator@sha256:a1d6f2793d636515d41971711137bbc17f87e33a873fbf82a2fb03ae307a46b4?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-descheduler-rhel8-operator&tag=v4.14.0-202311021650.p0.gc3ddfd6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-descheduler-operator@sha256:a1d6f2793d636515d41971711137bbc17f87e33a873fbf82a2fb03ae307a46b4_amd64", + "product": { + "name": "openshift4/ose-cluster-kube-descheduler-operator@sha256:a1d6f2793d636515d41971711137bbc17f87e33a873fbf82a2fb03ae307a46b4_amd64", + "product_id": "openshift4/ose-cluster-kube-descheduler-operator@sha256:a1d6f2793d636515d41971711137bbc17f87e33a873fbf82a2fb03ae307a46b4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-descheduler-operator@sha256:a1d6f2793d636515d41971711137bbc17f87e33a873fbf82a2fb03ae307a46b4?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-descheduler-operator&tag=v4.14.0-202311021650.p0.gc3ddfd6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-clusterresourceoverride-rhel8@sha256:94ce5869e449e2ab1ab8dfe666bae7883a0b56e1205dd76539a43cfc24f3005e_amd64", + "product": { + "name": "openshift4/ose-clusterresourceoverride-rhel8@sha256:94ce5869e449e2ab1ab8dfe666bae7883a0b56e1205dd76539a43cfc24f3005e_amd64", + "product_id": "openshift4/ose-clusterresourceoverride-rhel8@sha256:94ce5869e449e2ab1ab8dfe666bae7883a0b56e1205dd76539a43cfc24f3005e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-clusterresourceoverride-rhel8@sha256:94ce5869e449e2ab1ab8dfe666bae7883a0b56e1205dd76539a43cfc24f3005e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8&tag=v4.14.0-202311021650.p0.g55d1f53.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d2e7eab9980af0427a5ee96a50fa236ac22a7ab50b2359b64b323422c66d135f_amd64", + "product": { + "name": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d2e7eab9980af0427a5ee96a50fa236ac22a7ab50b2359b64b323422c66d135f_amd64", + "product_id": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d2e7eab9980af0427a5ee96a50fa236ac22a7ab50b2359b64b323422c66d135f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-clusterresourceoverride-rhel8-operator@sha256:d2e7eab9980af0427a5ee96a50fa236ac22a7ab50b2359b64b323422c66d135f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator&tag=v4.14.0-202311021650.p0.gbb23924.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:b338f859150f7bb3a76230885dd5ebad3e42f6f84d4159c4f74fea795265987d_amd64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:b338f859150f7bb3a76230885dd5ebad3e42f6f84d4159c4f74fea795265987d_amd64", + "product_id": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:b338f859150f7bb3a76230885dd5ebad3e42f6f84d4159c4f74fea795265987d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:b338f859150f7bb3a76230885dd5ebad3e42f6f84d4159c4f74fea795265987d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8&tag=v4.14.0-202311021650.p0.g740b442.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-egress-http-proxy@sha256:bfef29aaf3e7e26bccbf580ff9707afcd29a9e2c55097a9d4a80d833de5cfb77_amd64", + "product": { + "name": "openshift4/ose-egress-http-proxy@sha256:bfef29aaf3e7e26bccbf580ff9707afcd29a9e2c55097a9d4a80d833de5cfb77_amd64", + "product_id": "openshift4/ose-egress-http-proxy@sha256:bfef29aaf3e7e26bccbf580ff9707afcd29a9e2c55097a9d4a80d833de5cfb77_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-egress-http-proxy@sha256:bfef29aaf3e7e26bccbf580ff9707afcd29a9e2c55097a9d4a80d833de5cfb77?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy&tag=v4.14.0-202311021650.p0.gf08cee3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/frr-rhel9@sha256:19b1e4e702a64a9ab6b33425526c408f012b81cd74ff8e7ae43ab5bdc97267a8_amd64", + "product": { + "name": "openshift4/frr-rhel9@sha256:19b1e4e702a64a9ab6b33425526c408f012b81cd74ff8e7ae43ab5bdc97267a8_amd64", + "product_id": "openshift4/frr-rhel9@sha256:19b1e4e702a64a9ab6b33425526c408f012b81cd74ff8e7ae43ab5bdc97267a8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/frr-rhel9@sha256:19b1e4e702a64a9ab6b33425526c408f012b81cd74ff8e7ae43ab5bdc97267a8?arch=amd64&repository_url=registry.redhat.io/openshift4/frr-rhel9&tag=v4.14.0-202310262127.p0.g0414ca3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:6f1383fd32dad80234a9c462c6f0fbed072bb92554a54bf5344581d705d3c6a9_amd64", + "product": { + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:6f1383fd32dad80234a9c462c6f0fbed072bb92554a54bf5344581d705d3c6a9_amd64", + "product_id": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:6f1383fd32dad80234a9c462c6f0fbed072bb92554a54bf5344581d705d3c6a9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-filestore-csi-driver-rhel8@sha256:6f1383fd32dad80234a9c462c6f0fbed072bb92554a54bf5344581d705d3c6a9?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.ga6af579.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:0083db645ed823cde46239b53962b215c8399cb4d90c88819477be37caff244a_amd64", + "product": { + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:0083db645ed823cde46239b53962b215c8399cb4d90c88819477be37caff244a_amd64", + "product_id": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:0083db645ed823cde46239b53962b215c8399cb4d90c88819477be37caff244a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:0083db645ed823cde46239b53962b215c8399cb4d90c88819477be37caff244a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator&tag=v4.14.0-202311021650.p0.g413ab3a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/kubernetes-nmstate-rhel9-operator@sha256:c1261865e7909fb968058ae01058ccf861d42e25a5635f5e72415b6efc189c77_amd64", + "product": { + "name": "openshift4/kubernetes-nmstate-rhel9-operator@sha256:c1261865e7909fb968058ae01058ccf861d42e25a5635f5e72415b6efc189c77_amd64", + "product_id": "openshift4/kubernetes-nmstate-rhel9-operator@sha256:c1261865e7909fb968058ae01058ccf861d42e25a5635f5e72415b6efc189c77_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubernetes-nmstate-rhel9-operator@sha256:c1261865e7909fb968058ae01058ccf861d42e25a5635f5e72415b6efc189c77?arch=amd64&repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator&tag=v4.14.0-202311021650.p0.g802a398.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ptp-rhel9@sha256:63adb1de31cc03bdaa5a789ab59f1d2d564ce086ae50eea5743d7ef938112abd_amd64", + "product": { + "name": "openshift4/ose-ptp-rhel9@sha256:63adb1de31cc03bdaa5a789ab59f1d2d564ce086ae50eea5743d7ef938112abd_amd64", + "product_id": "openshift4/ose-ptp-rhel9@sha256:63adb1de31cc03bdaa5a789ab59f1d2d564ce086ae50eea5743d7ef938112abd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ptp-rhel9@sha256:63adb1de31cc03bdaa5a789ab59f1d2d564ce086ae50eea5743d7ef938112abd?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9&tag=v4.14.0-202310311548.p0.g6eb442b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-local-storage-mustgather-rhel8@sha256:f29be1cdd75ca13b290099283306c19c2d3c0ac1ccc915a9af26224b745ecea9_amd64", + "product": { + "name": "openshift4/ose-local-storage-mustgather-rhel8@sha256:f29be1cdd75ca13b290099283306c19c2d3c0ac1ccc915a9af26224b745ecea9_amd64", + "product_id": "openshift4/ose-local-storage-mustgather-rhel8@sha256:f29be1cdd75ca13b290099283306c19c2d3c0ac1ccc915a9af26224b745ecea9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-local-storage-mustgather-rhel8@sha256:f29be1cdd75ca13b290099283306c19c2d3c0ac1ccc915a9af26224b745ecea9?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel8&tag=v4.14.0-202311021650.p0.gc41b6ba.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift-tech-preview/metallb-rhel8@sha256:e71bef803bd0f6c70bc364ab12b142d0d49ce235a03191ad90434fadfcec6492_amd64", + "product": { + "name": "openshift-tech-preview/metallb-rhel8@sha256:e71bef803bd0f6c70bc364ab12b142d0d49ce235a03191ad90434fadfcec6492_amd64", + "product_id": "openshift-tech-preview/metallb-rhel8@sha256:e71bef803bd0f6c70bc364ab12b142d0d49ce235a03191ad90434fadfcec6492_amd64", + "product_identification_helper": { + "purl": "pkg:oci/metallb-rhel8@sha256:e71bef803bd0f6c70bc364ab12b142d0d49ce235a03191ad90434fadfcec6492?arch=amd64&repository_url=registry.redhat.io/openshift-tech-preview/metallb-rhel8&tag=v4.14.0-202311061430.p0.ga09f95c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/metallb-rhel8@sha256:e71bef803bd0f6c70bc364ab12b142d0d49ce235a03191ad90434fadfcec6492_amd64", + "product": { + "name": "openshift4/metallb-rhel8@sha256:e71bef803bd0f6c70bc364ab12b142d0d49ce235a03191ad90434fadfcec6492_amd64", + "product_id": "openshift4/metallb-rhel8@sha256:e71bef803bd0f6c70bc364ab12b142d0d49ce235a03191ad90434fadfcec6492_amd64", + "product_identification_helper": { + "purl": "pkg:oci/metallb-rhel8@sha256:e71bef803bd0f6c70bc364ab12b142d0d49ce235a03191ad90434fadfcec6492?arch=amd64&repository_url=registry.redhat.io/openshift4/metallb-rhel8&tag=v4.14.0-202311061430.p0.ga09f95c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/metallb-rhel8-operator@sha256:622c547380395c182a8fda35cda37c77103cbc98a89cda84953168d6b3de7ee5_amd64", + "product": { + "name": "openshift4/metallb-rhel8-operator@sha256:622c547380395c182a8fda35cda37c77103cbc98a89cda84953168d6b3de7ee5_amd64", + "product_id": "openshift4/metallb-rhel8-operator@sha256:622c547380395c182a8fda35cda37c77103cbc98a89cda84953168d6b3de7ee5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/metallb-rhel8-operator@sha256:622c547380395c182a8fda35cda37c77103cbc98a89cda84953168d6b3de7ee5?arch=amd64&repository_url=registry.redhat.io/openshift4/metallb-rhel8-operator&tag=v4.14.0-202311061430.p0.g88d1de4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ptp-operator@sha256:670f6ccae405f8aed5bd041fde0f8b325650fcb9698536551c08a6f0dd0dd539_amd64", + "product": { + "name": "openshift4/ose-ptp-operator@sha256:670f6ccae405f8aed5bd041fde0f8b325650fcb9698536551c08a6f0dd0dd539_amd64", + "product_id": "openshift4/ose-ptp-operator@sha256:670f6ccae405f8aed5bd041fde0f8b325650fcb9698536551c08a6f0dd0dd539_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ptp-operator@sha256:670f6ccae405f8aed5bd041fde0f8b325650fcb9698536551c08a6f0dd0dd539?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ptp-operator&tag=v4.14.0-202311021650.p0.gf2d6cf2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-secrets-store-csi-driver-rhel8@sha256:99d449a47ce0b0dcb326d0393273e08bd1ff36f46d90993408bc7c4043a28954_amd64", + "product": { + "name": "openshift4/ose-secrets-store-csi-driver-rhel8@sha256:99d449a47ce0b0dcb326d0393273e08bd1ff36f46d90993408bc7c4043a28954_amd64", + "product_id": "openshift4/ose-secrets-store-csi-driver-rhel8@sha256:99d449a47ce0b0dcb326d0393273e08bd1ff36f46d90993408bc7c4043a28954_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-secrets-store-csi-driver-rhel8@sha256:99d449a47ce0b0dcb326d0393273e08bd1ff36f46d90993408bc7c4043a28954?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.g4b5bd4b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6d8673302864326b0461d0956421e6ef37031a6a9de40164dcf248da43d9d9ed_amd64", + "product": { + "name": "openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6d8673302864326b0461d0956421e6ef37031a6a9de40164dcf248da43d9d9ed_amd64", + "product_id": "openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6d8673302864326b0461d0956421e6ef37031a6a9de40164dcf248da43d9d9ed_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-secrets-store-csi-driver-rhel8-operator@sha256:6d8673302864326b0461d0956421e6ef37031a6a9de40164dcf248da43d9d9ed?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator&tag=v4.14.0-202311021650.p0.g1e01fc0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:bc86899f4cc73ea62314c07e7a8d89a24a95d7f46ce73df196717e5a9d78985c_amd64", + "product": { + "name": "openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:bc86899f4cc73ea62314c07e7a8d89a24a95d7f46ce73df196717e5a9d78985c_amd64", + "product_id": "openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:bc86899f4cc73ea62314c07e7a8d89a24a95d7f46ce73df196717e5a9d78985c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-secrets-store-csi-mustgather-rhel8@sha256:bc86899f4cc73ea62314c07e7a8d89a24a95d7f46ce73df196717e5a9d78985c?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8&tag=v4.14.0-202311021650.p0.g1e01fc0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:6595d5d2da9740645d7ca5fab806fa0f986cfa02388f32b6a41e0e0c3ed1abad_amd64", + "product": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:6595d5d2da9740645d7ca5fab806fa0f986cfa02388f32b6a41e0e0c3ed1abad_amd64", + "product_id": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:6595d5d2da9740645d7ca5fab806fa0f986cfa02388f32b6a41e0e0c3ed1abad_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vertical-pod-autoscaler-rhel8@sha256:6595d5d2da9740645d7ca5fab806fa0f986cfa02388f32b6a41e0e0c3ed1abad?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8&tag=v4.14.0-202311021650.p0.g0822c7b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:2fa0173440b6807c7d41110ede77319cc822548e76bcf65fec4d2c00667f8aa7_amd64", + "product": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:2fa0173440b6807c7d41110ede77319cc822548e76bcf65fec4d2c00667f8aa7_amd64", + "product_id": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:2fa0173440b6807c7d41110ede77319cc822548e76bcf65fec4d2c00667f8aa7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vertical-pod-autoscaler-rhel8-operator@sha256:2fa0173440b6807c7d41110ede77319cc822548e76bcf65fec4d2c00667f8aa7?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator&tag=v4.14.0-202311021650.p0.geae798e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ptp-must-gather-rhel8@sha256:23c7d6961ab10ff0ab4bdef05e46e97e96f6215ab5f7e2ee5d8119694025b1eb_amd64", + "product": { + "name": "openshift4/ptp-must-gather-rhel8@sha256:23c7d6961ab10ff0ab4bdef05e46e97e96f6215ab5f7e2ee5d8119694025b1eb_amd64", + "product_id": "openshift4/ptp-must-gather-rhel8@sha256:23c7d6961ab10ff0ab4bdef05e46e97e96f6215ab5f7e2ee5d8119694025b1eb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ptp-must-gather-rhel8@sha256:23c7d6961ab10ff0ab4bdef05e46e97e96f6215ab5f7e2ee5d8119694025b1eb?arch=amd64&repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel8&tag=v4.14.0-202311021650.p0.gf2d6cf2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-dp-admission-controller@sha256:3386f515a458af352c69b038df5d06293f6cfc118039a762a4e1af1d26caa7ec_amd64", + "product": { + "name": "openshift4/ose-sriov-dp-admission-controller@sha256:3386f515a458af352c69b038df5d06293f6cfc118039a762a4e1af1d26caa7ec_amd64", + "product_id": "openshift4/ose-sriov-dp-admission-controller@sha256:3386f515a458af352c69b038df5d06293f6cfc118039a762a4e1af1d26caa7ec_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-dp-admission-controller@sha256:3386f515a458af352c69b038df5d06293f6cfc118039a762a4e1af1d26caa7ec?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller&tag=v4.14.0-202311021650.p0.g8d4ceb9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-network-config-daemon@sha256:5dba5112afabecb1544c482de2684a14a969ee0e788f418227588818f18edaec_amd64", + "product": { + "name": "openshift4/ose-sriov-network-config-daemon@sha256:5dba5112afabecb1544c482de2684a14a969ee0e788f418227588818f18edaec_amd64", + "product_id": "openshift4/ose-sriov-network-config-daemon@sha256:5dba5112afabecb1544c482de2684a14a969ee0e788f418227588818f18edaec_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-network-config-daemon@sha256:5dba5112afabecb1544c482de2684a14a969ee0e788f418227588818f18edaec?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon&tag=v4.14.0-202311060529.p0.g81b0827.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-network-device-plugin@sha256:74e1ef85ae629f623c345935bf6996a31ef2504df68558ea59049b873d9f2431_amd64", + "product": { + "name": "openshift4/ose-sriov-network-device-plugin@sha256:74e1ef85ae629f623c345935bf6996a31ef2504df68558ea59049b873d9f2431_amd64", + "product_id": "openshift4/ose-sriov-network-device-plugin@sha256:74e1ef85ae629f623c345935bf6996a31ef2504df68558ea59049b873d9f2431_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-network-device-plugin@sha256:74e1ef85ae629f623c345935bf6996a31ef2504df68558ea59049b873d9f2431?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin&tag=v4.14.0-202311021650.p0.ge367282.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-network-operator@sha256:d1cb0496ea1c8068e106918b3f16c1781b12fdda9c58baf20c454f1679c2460b_amd64", + "product": { + "name": "openshift4/ose-sriov-network-operator@sha256:d1cb0496ea1c8068e106918b3f16c1781b12fdda9c58baf20c454f1679c2460b_amd64", + "product_id": "openshift4/ose-sriov-network-operator@sha256:d1cb0496ea1c8068e106918b3f16c1781b12fdda9c58baf20c454f1679c2460b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-network-operator@sha256:d1cb0496ea1c8068e106918b3f16c1781b12fdda9c58baf20c454f1679c2460b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-sriov-network-operator&tag=v4.14.0-202311060529.p0.g81b0827.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-network-webhook@sha256:cfa61b09f9263736ccc6b6371be9bf5b748ce3c17c4a620a375a156bc981e74f_amd64", + "product": { + "name": "openshift4/ose-sriov-network-webhook@sha256:cfa61b09f9263736ccc6b6371be9bf5b748ce3c17c4a620a375a156bc981e74f_amd64", + "product_id": "openshift4/ose-sriov-network-webhook@sha256:cfa61b09f9263736ccc6b6371be9bf5b748ce3c17c4a620a375a156bc981e74f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-network-webhook@sha256:cfa61b09f9263736ccc6b6371be9bf5b748ce3c17c4a620a375a156bc981e74f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook&tag=v4.14.0-202311060529.p0.g81b0827.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-descheduler@sha256:154283c5dfb10e351f72657fa68cbe9ad10b3995ac9927a528b6cd763ed7db1d_arm64", + "product": { + "name": "openshift4/ose-descheduler@sha256:154283c5dfb10e351f72657fa68cbe9ad10b3995ac9927a528b6cd763ed7db1d_arm64", + "product_id": "openshift4/ose-descheduler@sha256:154283c5dfb10e351f72657fa68cbe9ad10b3995ac9927a528b6cd763ed7db1d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-descheduler@sha256:154283c5dfb10e351f72657fa68cbe9ad10b3995ac9927a528b6cd763ed7db1d?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-descheduler&tag=v4.14.0-202311021650.p0.g16ce606.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-node-problem-detector-rhel8@sha256:cd75ba5acf30ff7de85caca4522cb9c47b8ec1a971a45ebae0c425add51fe14e_arm64", + "product": { + "name": "openshift4/ose-node-problem-detector-rhel8@sha256:cd75ba5acf30ff7de85caca4522cb9c47b8ec1a971a45ebae0c425add51fe14e_arm64", + "product_id": "openshift4/ose-node-problem-detector-rhel8@sha256:cd75ba5acf30ff7de85caca4522cb9c47b8ec1a971a45ebae0c425add51fe14e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-node-problem-detector-rhel8@sha256:cd75ba5acf30ff7de85caca4522cb9c47b8ec1a971a45ebae0c425add51fe14e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-node-problem-detector-rhel8&tag=v4.14.0-202311021650.p0.g0162e5f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/cloud-event-proxy-rhel8@sha256:06b6f28c571cc2013d62a385ea4abbb6b89467d76a2fb63f1409ba6d9b647156_arm64", + "product": { + "name": "openshift4/cloud-event-proxy-rhel8@sha256:06b6f28c571cc2013d62a385ea4abbb6b89467d76a2fb63f1409ba6d9b647156_arm64", + "product_id": "openshift4/cloud-event-proxy-rhel8@sha256:06b6f28c571cc2013d62a385ea4abbb6b89467d76a2fb63f1409ba6d9b647156_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cloud-event-proxy-rhel8@sha256:06b6f28c571cc2013d62a385ea4abbb6b89467d76a2fb63f1409ba6d9b647156?arch=arm64&repository_url=registry.redhat.io/openshift4/cloud-event-proxy-rhel8&tag=v4.14.0-202311021650.p0.gc3dc0ec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-event-proxy-rhel8@sha256:06b6f28c571cc2013d62a385ea4abbb6b89467d76a2fb63f1409ba6d9b647156_arm64", + "product": { + "name": "openshift4/ose-cloud-event-proxy-rhel8@sha256:06b6f28c571cc2013d62a385ea4abbb6b89467d76a2fb63f1409ba6d9b647156_arm64", + "product_id": "openshift4/ose-cloud-event-proxy-rhel8@sha256:06b6f28c571cc2013d62a385ea4abbb6b89467d76a2fb63f1409ba6d9b647156_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-event-proxy-rhel8@sha256:06b6f28c571cc2013d62a385ea4abbb6b89467d76a2fb63f1409ba6d9b647156?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8&tag=v4.14.0-202311021650.p0.gc3dc0ec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-nfd-operator@sha256:3419747a45619ae6a3f52b077967d4d2057fda3cff75d15ff6eb248bb950a90b_arm64", + "product": { + "name": "openshift4/ose-cluster-nfd-operator@sha256:3419747a45619ae6a3f52b077967d4d2057fda3cff75d15ff6eb248bb950a90b_arm64", + "product_id": "openshift4/ose-cluster-nfd-operator@sha256:3419747a45619ae6a3f52b077967d4d2057fda3cff75d15ff6eb248bb950a90b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-nfd-operator@sha256:3419747a45619ae6a3f52b077967d4d2057fda3cff75d15ff6eb248bb950a90b?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-operator&tag=v4.14.0-202311021650.p0.g90a3e0c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-infiniband-cni@sha256:9b1da59d314e383a338ac2f632f1000f3cb085622b7a929c5a1217f4c6afa516_arm64", + "product": { + "name": "openshift4/ose-sriov-infiniband-cni@sha256:9b1da59d314e383a338ac2f632f1000f3cb085622b7a929c5a1217f4c6afa516_arm64", + "product_id": "openshift4/ose-sriov-infiniband-cni@sha256:9b1da59d314e383a338ac2f632f1000f3cb085622b7a929c5a1217f4c6afa516_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-infiniband-cni@sha256:9b1da59d314e383a338ac2f632f1000f3cb085622b7a929c5a1217f4c6afa516?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni&tag=v4.14.0-202311021650.p0.geba0d95.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ingress-node-firewall-rhel9@sha256:bedcf83ac78c13444a6d7263626d5e54ce24228f8d80706c61a7e40bd7bb8fb0_arm64", + "product": { + "name": "openshift4/ingress-node-firewall-rhel9@sha256:bedcf83ac78c13444a6d7263626d5e54ce24228f8d80706c61a7e40bd7bb8fb0_arm64", + "product_id": "openshift4/ingress-node-firewall-rhel9@sha256:bedcf83ac78c13444a6d7263626d5e54ce24228f8d80706c61a7e40bd7bb8fb0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ingress-node-firewall-rhel9@sha256:bedcf83ac78c13444a6d7263626d5e54ce24228f8d80706c61a7e40bd7bb8fb0?arch=arm64&repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9&tag=v4.14.0-202311011907.p0.g47d4297.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ingress-node-firewall-rhel9-operator@sha256:73d54259e874a007246395057778621d72cbc12ea4dac48272877b4eaff33581_arm64", + "product": { + "name": "openshift4/ingress-node-firewall-rhel9-operator@sha256:73d54259e874a007246395057778621d72cbc12ea4dac48272877b4eaff33581_arm64", + "product_id": "openshift4/ingress-node-firewall-rhel9-operator@sha256:73d54259e874a007246395057778621d72cbc12ea4dac48272877b4eaff33581_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ingress-node-firewall-rhel9-operator@sha256:73d54259e874a007246395057778621d72cbc12ea4dac48272877b4eaff33581?arch=arm64&repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator&tag=v4.14.0-202311021650.p0.g47d4297.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-local-storage-diskmaker@sha256:95dcbca8e66386855535982a924da3193e4c0d4067eb7dd6faf8238a1559bce7_arm64", + "product": { + "name": "openshift4/ose-local-storage-diskmaker@sha256:95dcbca8e66386855535982a924da3193e4c0d4067eb7dd6faf8238a1559bce7_arm64", + "product_id": "openshift4/ose-local-storage-diskmaker@sha256:95dcbca8e66386855535982a924da3193e4c0d4067eb7dd6faf8238a1559bce7_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-local-storage-diskmaker@sha256:95dcbca8e66386855535982a924da3193e4c0d4067eb7dd6faf8238a1559bce7?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker&tag=v4.14.0-202311021650.p0.gc41b6ba.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-local-storage-operator@sha256:387419bd5f6f7462d99001a355bc5a0340b20855715bfdac842ef1f08212126e_arm64", + "product": { + "name": "openshift4/ose-local-storage-operator@sha256:387419bd5f6f7462d99001a355bc5a0340b20855715bfdac842ef1f08212126e_arm64", + "product_id": "openshift4/ose-local-storage-operator@sha256:387419bd5f6f7462d99001a355bc5a0340b20855715bfdac842ef1f08212126e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-local-storage-operator@sha256:387419bd5f6f7462d99001a355bc5a0340b20855715bfdac842ef1f08212126e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-local-storage-operator&tag=v4.14.0-202311031050.p0.gc41b6ba.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/nmstate-console-plugin-rhel8@sha256:adb0aa23fb49f66f69b44d64122abd2850661425f7fb62081950177998447f01_arm64", + "product": { + "name": "openshift4/nmstate-console-plugin-rhel8@sha256:adb0aa23fb49f66f69b44d64122abd2850661425f7fb62081950177998447f01_arm64", + "product_id": "openshift4/nmstate-console-plugin-rhel8@sha256:adb0aa23fb49f66f69b44d64122abd2850661425f7fb62081950177998447f01_arm64", + "product_identification_helper": { + "purl": "pkg:oci/nmstate-console-plugin-rhel8@sha256:adb0aa23fb49f66f69b44d64122abd2850661425f7fb62081950177998447f01?arch=arm64&repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel8&tag=v4.14.0-202311021650.p0.g75fe6e5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-node-feature-discovery@sha256:021df48bb7c613b839958b5d6305ebd52857bcdc53b45b13c7e70b027448da35_arm64", + "product": { + "name": "openshift4/ose-node-feature-discovery@sha256:021df48bb7c613b839958b5d6305ebd52857bcdc53b45b13c7e70b027448da35_arm64", + "product_id": "openshift4/ose-node-feature-discovery@sha256:021df48bb7c613b839958b5d6305ebd52857bcdc53b45b13c7e70b027448da35_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-node-feature-discovery@sha256:021df48bb7c613b839958b5d6305ebd52857bcdc53b45b13c7e70b027448da35?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery&tag=v4.14.0-202311021650.p0.g060e629.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ansible-operator@sha256:57b0a07d7ef87f6e9416bf92c223d2847f4d40bec9c2cf970012a56975fd5fd5_arm64", + "product": { + "name": "openshift4/ose-ansible-operator@sha256:57b0a07d7ef87f6e9416bf92c223d2847f4d40bec9c2cf970012a56975fd5fd5_arm64", + "product_id": "openshift4/ose-ansible-operator@sha256:57b0a07d7ef87f6e9416bf92c223d2847f4d40bec9c2cf970012a56975fd5fd5_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ansible-operator@sha256:57b0a07d7ef87f6e9416bf92c223d2847f4d40bec9c2cf970012a56975fd5fd5?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ansible-operator&tag=v4.14.0-202311021650.p0.gbd08cb7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capacity@sha256:3f19384299a1e529076f4eb5de4811c9e4c8fcd276d390972093e73df6a80c1e_arm64", + "product": { + "name": "openshift4/ose-cluster-capacity@sha256:3f19384299a1e529076f4eb5de4811c9e4c8fcd276d390972093e73df6a80c1e_arm64", + "product_id": "openshift4/ose-cluster-capacity@sha256:3f19384299a1e529076f4eb5de4811c9e4c8fcd276d390972093e73df6a80c1e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capacity@sha256:3f19384299a1e529076f4eb5de4811c9e4c8fcd276d390972093e73df6a80c1e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-capacity&tag=v4.14.0-202311021650.p0.g1d2edb6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-egress-dns-proxy@sha256:c491704ba166cdcf7e216895e7cef6c54fcac349f0482b8b0102a3b57aca086b_arm64", + "product": { + "name": "openshift4/ose-egress-dns-proxy@sha256:c491704ba166cdcf7e216895e7cef6c54fcac349f0482b8b0102a3b57aca086b_arm64", + "product_id": "openshift4/ose-egress-dns-proxy@sha256:c491704ba166cdcf7e216895e7cef6c54fcac349f0482b8b0102a3b57aca086b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-egress-dns-proxy@sha256:c491704ba166cdcf7e216895e7cef6c54fcac349f0482b8b0102a3b57aca086b?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy&tag=v4.14.0-202311021650.p0.gf08cee3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-egress-router@sha256:e6faf497d38a0ce0e60b14c81715301957971adb24b39a3a4da0d0d2dc729438_arm64", + "product": { + "name": "openshift4/ose-egress-router@sha256:e6faf497d38a0ce0e60b14c81715301957971adb24b39a3a4da0d0d2dc729438_arm64", + "product_id": "openshift4/ose-egress-router@sha256:e6faf497d38a0ce0e60b14c81715301957971adb24b39a3a4da0d0d2dc729438_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-egress-router@sha256:e6faf497d38a0ce0e60b14c81715301957971adb24b39a3a4da0d0d2dc729438?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-egress-router&tag=v4.14.0-202311021650.p0.gf08cee3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-helm-operator@sha256:ed3ee9562e6be9f5357b4e53b45dfd0fadd0fd6d75ac1ed73c5110f44b161a75_arm64", + "product": { + "name": "openshift4/ose-helm-operator@sha256:ed3ee9562e6be9f5357b4e53b45dfd0fadd0fd6d75ac1ed73c5110f44b161a75_arm64", + "product_id": "openshift4/ose-helm-operator@sha256:ed3ee9562e6be9f5357b4e53b45dfd0fadd0fd6d75ac1ed73c5110f44b161a75_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-helm-operator@sha256:ed3ee9562e6be9f5357b4e53b45dfd0fadd0fd6d75ac1ed73c5110f44b161a75?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-helm-operator&tag=v4.14.0-202311021650.p0.gbd08cb7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-sdk-rhel8@sha256:ab2d7239b190801d901ba8fdb8118dd007612855dcae204f357d979a855330b5_arm64", + "product": { + "name": "openshift4/ose-operator-sdk-rhel8@sha256:ab2d7239b190801d901ba8fdb8118dd007612855dcae204f357d979a855330b5_arm64", + "product_id": "openshift4/ose-operator-sdk-rhel8@sha256:ab2d7239b190801d901ba8fdb8118dd007612855dcae204f357d979a855330b5_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-sdk-rhel8@sha256:ab2d7239b190801d901ba8fdb8118dd007612855dcae204f357d979a855330b5?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel8&tag=v4.14.0-202311021650.p0.gbd08cb7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:1598bd06c87aac127c2239e7d3ce0722c146f3b212f2fff63e9a2498a37cb5d2_arm64", + "product": { + "name": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:1598bd06c87aac127c2239e7d3ce0722c146f3b212f2fff63e9a2498a37cb5d2_arm64", + "product_id": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:1598bd06c87aac127c2239e7d3ce0722c146f3b212f2fff63e9a2498a37cb5d2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-proxy-pull-test-rhel8@sha256:1598bd06c87aac127c2239e7d3ce0722c146f3b212f2fff63e9a2498a37cb5d2?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openshift-proxy-pull-test-rhel8&tag=v4.14.0-202311070105.p0.gf57144e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:d313ee9ae6d4a7d0863101e5cbc5140f7d4777eb7e0e3d4bccab7bd4ef9d1e8c_arm64", + "product": { + "name": "openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:d313ee9ae6d4a7d0863101e5cbc5140f7d4777eb7e0e3d4bccab7bd4ef9d1e8c_arm64", + "product_id": "openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:d313ee9ae6d4a7d0863101e5cbc5140f7d4777eb7e0e3d4bccab7bd4ef9d1e8c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-efs-csi-driver-container-rhel8@sha256:d313ee9ae6d4a7d0863101e5cbc5140f7d4777eb7e0e3d4bccab7bd4ef9d1e8c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8&tag=v4.14.0-202311021650.p0.g66925fd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:6f1c9c31224cc0f6e3a40cbf0535ecb3e3a322a18535fd5ecc19b4063c6c95f0_arm64", + "product": { + "name": "openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:6f1c9c31224cc0f6e3a40cbf0535ecb3e3a322a18535fd5ecc19b4063c6c95f0_arm64", + "product_id": "openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:6f1c9c31224cc0f6e3a40cbf0535ecb3e3a322a18535fd5ecc19b4063c6c95f0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-efs-csi-driver-rhel8-operator@sha256:6f1c9c31224cc0f6e3a40cbf0535ecb3e3a322a18535fd5ecc19b4063c6c95f0?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator&tag=v4.14.0-202311021650.p0.ge7d739f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:f3bd65e7b9b05bd5bd82f3a84059ec0b3eab3f0f8069b56e028d13d2c80d6a59_arm64", + "product": { + "name": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:f3bd65e7b9b05bd5bd82f3a84059ec0b3eab3f0f8069b56e028d13d2c80d6a59_arm64", + "product_id": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:f3bd65e7b9b05bd5bd82f3a84059ec0b3eab3f0f8069b56e028d13d2c80d6a59_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-descheduler-rhel8-operator@sha256:f3bd65e7b9b05bd5bd82f3a84059ec0b3eab3f0f8069b56e028d13d2c80d6a59?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-descheduler-rhel8-operator&tag=v4.14.0-202311021650.p0.gc3ddfd6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-descheduler-operator@sha256:f3bd65e7b9b05bd5bd82f3a84059ec0b3eab3f0f8069b56e028d13d2c80d6a59_arm64", + "product": { + "name": "openshift4/ose-cluster-kube-descheduler-operator@sha256:f3bd65e7b9b05bd5bd82f3a84059ec0b3eab3f0f8069b56e028d13d2c80d6a59_arm64", + "product_id": "openshift4/ose-cluster-kube-descheduler-operator@sha256:f3bd65e7b9b05bd5bd82f3a84059ec0b3eab3f0f8069b56e028d13d2c80d6a59_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-descheduler-operator@sha256:f3bd65e7b9b05bd5bd82f3a84059ec0b3eab3f0f8069b56e028d13d2c80d6a59?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-descheduler-operator&tag=v4.14.0-202311021650.p0.gc3ddfd6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-clusterresourceoverride-rhel8@sha256:8e649308b1da9278a8c7769e9a52862387d2d5a3828a60aee3b212cf8b503d77_arm64", + "product": { + "name": "openshift4/ose-clusterresourceoverride-rhel8@sha256:8e649308b1da9278a8c7769e9a52862387d2d5a3828a60aee3b212cf8b503d77_arm64", + "product_id": "openshift4/ose-clusterresourceoverride-rhel8@sha256:8e649308b1da9278a8c7769e9a52862387d2d5a3828a60aee3b212cf8b503d77_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-clusterresourceoverride-rhel8@sha256:8e649308b1da9278a8c7769e9a52862387d2d5a3828a60aee3b212cf8b503d77?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8&tag=v4.14.0-202311021650.p0.g55d1f53.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:776393c9e4c6970e1e3b453fc2ef7753e0cb8a3ae6ca175b2e9ce923bc255bca_arm64", + "product": { + "name": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:776393c9e4c6970e1e3b453fc2ef7753e0cb8a3ae6ca175b2e9ce923bc255bca_arm64", + "product_id": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:776393c9e4c6970e1e3b453fc2ef7753e0cb8a3ae6ca175b2e9ce923bc255bca_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-clusterresourceoverride-rhel8-operator@sha256:776393c9e4c6970e1e3b453fc2ef7753e0cb8a3ae6ca175b2e9ce923bc255bca?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator&tag=v4.14.0-202311021650.p0.gbb23924.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:73e9fd5e908411353410684e0ea12bd842b43ddb93a8b052602b0d81103344fb_arm64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:73e9fd5e908411353410684e0ea12bd842b43ddb93a8b052602b0d81103344fb_arm64", + "product_id": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:73e9fd5e908411353410684e0ea12bd842b43ddb93a8b052602b0d81103344fb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:73e9fd5e908411353410684e0ea12bd842b43ddb93a8b052602b0d81103344fb?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8&tag=v4.14.0-202311021650.p0.g740b442.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-egress-http-proxy@sha256:ab11a583762aae8858f566e43e420a2c2062a02468ee8f6044b8aae10fa86ca5_arm64", + "product": { + "name": "openshift4/ose-egress-http-proxy@sha256:ab11a583762aae8858f566e43e420a2c2062a02468ee8f6044b8aae10fa86ca5_arm64", + "product_id": "openshift4/ose-egress-http-proxy@sha256:ab11a583762aae8858f566e43e420a2c2062a02468ee8f6044b8aae10fa86ca5_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-egress-http-proxy@sha256:ab11a583762aae8858f566e43e420a2c2062a02468ee8f6044b8aae10fa86ca5?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy&tag=v4.14.0-202311021650.p0.gf08cee3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/frr-rhel9@sha256:c0cd52c58233244545c4552fd6406a95f84aee286bec95b84f4168fca2f8bb6b_arm64", + "product": { + "name": "openshift4/frr-rhel9@sha256:c0cd52c58233244545c4552fd6406a95f84aee286bec95b84f4168fca2f8bb6b_arm64", + "product_id": "openshift4/frr-rhel9@sha256:c0cd52c58233244545c4552fd6406a95f84aee286bec95b84f4168fca2f8bb6b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/frr-rhel9@sha256:c0cd52c58233244545c4552fd6406a95f84aee286bec95b84f4168fca2f8bb6b?arch=arm64&repository_url=registry.redhat.io/openshift4/frr-rhel9&tag=v4.14.0-202310262127.p0.g0414ca3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:513c5e19c31f061bba341b8c0c9927cb21d0ada6d93821d97127cd7376614979_arm64", + "product": { + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:513c5e19c31f061bba341b8c0c9927cb21d0ada6d93821d97127cd7376614979_arm64", + "product_id": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:513c5e19c31f061bba341b8c0c9927cb21d0ada6d93821d97127cd7376614979_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-filestore-csi-driver-rhel8@sha256:513c5e19c31f061bba341b8c0c9927cb21d0ada6d93821d97127cd7376614979?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.ga6af579.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:2eba1411b633cde80af25b5a667b1cd7adccf52e9e031d08d347ae37305ca769_arm64", + "product": { + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:2eba1411b633cde80af25b5a667b1cd7adccf52e9e031d08d347ae37305ca769_arm64", + "product_id": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:2eba1411b633cde80af25b5a667b1cd7adccf52e9e031d08d347ae37305ca769_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:2eba1411b633cde80af25b5a667b1cd7adccf52e9e031d08d347ae37305ca769?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator&tag=v4.14.0-202311021650.p0.g413ab3a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/kubernetes-nmstate-rhel9-operator@sha256:3b848a5f0c2be5e8ca2c0788dd02dab39e3167dac9b6e99b4873711cdab324e7_arm64", + "product": { + "name": "openshift4/kubernetes-nmstate-rhel9-operator@sha256:3b848a5f0c2be5e8ca2c0788dd02dab39e3167dac9b6e99b4873711cdab324e7_arm64", + "product_id": "openshift4/kubernetes-nmstate-rhel9-operator@sha256:3b848a5f0c2be5e8ca2c0788dd02dab39e3167dac9b6e99b4873711cdab324e7_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubernetes-nmstate-rhel9-operator@sha256:3b848a5f0c2be5e8ca2c0788dd02dab39e3167dac9b6e99b4873711cdab324e7?arch=arm64&repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator&tag=v4.14.0-202311021650.p0.g802a398.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ptp-rhel9@sha256:142413c0ef80e7ae5d4dd121b4631294e108cdd2ac4ade48cb29e198109a0876_arm64", + "product": { + "name": "openshift4/ose-ptp-rhel9@sha256:142413c0ef80e7ae5d4dd121b4631294e108cdd2ac4ade48cb29e198109a0876_arm64", + "product_id": "openshift4/ose-ptp-rhel9@sha256:142413c0ef80e7ae5d4dd121b4631294e108cdd2ac4ade48cb29e198109a0876_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ptp-rhel9@sha256:142413c0ef80e7ae5d4dd121b4631294e108cdd2ac4ade48cb29e198109a0876?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9&tag=v4.14.0-202310311548.p0.g6eb442b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-local-storage-mustgather-rhel8@sha256:c2003db896a308fef6f6e328c222b0f8096ca4ae4410c09080fe9c8ff186369e_arm64", + "product": { + "name": "openshift4/ose-local-storage-mustgather-rhel8@sha256:c2003db896a308fef6f6e328c222b0f8096ca4ae4410c09080fe9c8ff186369e_arm64", + "product_id": "openshift4/ose-local-storage-mustgather-rhel8@sha256:c2003db896a308fef6f6e328c222b0f8096ca4ae4410c09080fe9c8ff186369e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-local-storage-mustgather-rhel8@sha256:c2003db896a308fef6f6e328c222b0f8096ca4ae4410c09080fe9c8ff186369e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel8&tag=v4.14.0-202311021650.p0.gc41b6ba.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift-tech-preview/metallb-rhel8@sha256:1b2208cc474df254c487bcf0f6855b55d2a954fd60794107aebd625748ed978b_arm64", + "product": { + "name": "openshift-tech-preview/metallb-rhel8@sha256:1b2208cc474df254c487bcf0f6855b55d2a954fd60794107aebd625748ed978b_arm64", + "product_id": "openshift-tech-preview/metallb-rhel8@sha256:1b2208cc474df254c487bcf0f6855b55d2a954fd60794107aebd625748ed978b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/metallb-rhel8@sha256:1b2208cc474df254c487bcf0f6855b55d2a954fd60794107aebd625748ed978b?arch=arm64&repository_url=registry.redhat.io/openshift-tech-preview/metallb-rhel8&tag=v4.14.0-202311061430.p0.ga09f95c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/metallb-rhel8@sha256:1b2208cc474df254c487bcf0f6855b55d2a954fd60794107aebd625748ed978b_arm64", + "product": { + "name": "openshift4/metallb-rhel8@sha256:1b2208cc474df254c487bcf0f6855b55d2a954fd60794107aebd625748ed978b_arm64", + "product_id": "openshift4/metallb-rhel8@sha256:1b2208cc474df254c487bcf0f6855b55d2a954fd60794107aebd625748ed978b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/metallb-rhel8@sha256:1b2208cc474df254c487bcf0f6855b55d2a954fd60794107aebd625748ed978b?arch=arm64&repository_url=registry.redhat.io/openshift4/metallb-rhel8&tag=v4.14.0-202311061430.p0.ga09f95c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/metallb-rhel8-operator@sha256:a0ba015d7c1022ba4950ab49ee3315f8f18f703e7fc55ed5590e282a7b444c0f_arm64", + "product": { + "name": "openshift4/metallb-rhel8-operator@sha256:a0ba015d7c1022ba4950ab49ee3315f8f18f703e7fc55ed5590e282a7b444c0f_arm64", + "product_id": "openshift4/metallb-rhel8-operator@sha256:a0ba015d7c1022ba4950ab49ee3315f8f18f703e7fc55ed5590e282a7b444c0f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/metallb-rhel8-operator@sha256:a0ba015d7c1022ba4950ab49ee3315f8f18f703e7fc55ed5590e282a7b444c0f?arch=arm64&repository_url=registry.redhat.io/openshift4/metallb-rhel8-operator&tag=v4.14.0-202311061430.p0.g88d1de4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ptp-operator@sha256:9088b0f0efb2f0f1d84e1839434a8eac6d6c22d86e6a3db34941ae86a9d34cdc_arm64", + "product": { + "name": "openshift4/ose-ptp-operator@sha256:9088b0f0efb2f0f1d84e1839434a8eac6d6c22d86e6a3db34941ae86a9d34cdc_arm64", + "product_id": "openshift4/ose-ptp-operator@sha256:9088b0f0efb2f0f1d84e1839434a8eac6d6c22d86e6a3db34941ae86a9d34cdc_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ptp-operator@sha256:9088b0f0efb2f0f1d84e1839434a8eac6d6c22d86e6a3db34941ae86a9d34cdc?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ptp-operator&tag=v4.14.0-202311021650.p0.gf2d6cf2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-secrets-store-csi-driver-rhel8@sha256:3461f5c28830fa0bf34b96054aa2030476292fd7f8ed01128c4408865e9d5a1e_arm64", + "product": { + "name": "openshift4/ose-secrets-store-csi-driver-rhel8@sha256:3461f5c28830fa0bf34b96054aa2030476292fd7f8ed01128c4408865e9d5a1e_arm64", + "product_id": "openshift4/ose-secrets-store-csi-driver-rhel8@sha256:3461f5c28830fa0bf34b96054aa2030476292fd7f8ed01128c4408865e9d5a1e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-secrets-store-csi-driver-rhel8@sha256:3461f5c28830fa0bf34b96054aa2030476292fd7f8ed01128c4408865e9d5a1e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.g4b5bd4b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:601ffdf03790309f80b1b8103bec40d686c043bfe239427589ae6e64bd76a92b_arm64", + "product": { + "name": "openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:601ffdf03790309f80b1b8103bec40d686c043bfe239427589ae6e64bd76a92b_arm64", + "product_id": "openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:601ffdf03790309f80b1b8103bec40d686c043bfe239427589ae6e64bd76a92b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-secrets-store-csi-driver-rhel8-operator@sha256:601ffdf03790309f80b1b8103bec40d686c043bfe239427589ae6e64bd76a92b?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator&tag=v4.14.0-202311021650.p0.g1e01fc0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:10c01d85b0c92baf04fdbb2f962d32eb8be9f63378516948a99a3de56d897ee1_arm64", + "product": { + "name": "openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:10c01d85b0c92baf04fdbb2f962d32eb8be9f63378516948a99a3de56d897ee1_arm64", + "product_id": "openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:10c01d85b0c92baf04fdbb2f962d32eb8be9f63378516948a99a3de56d897ee1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-secrets-store-csi-mustgather-rhel8@sha256:10c01d85b0c92baf04fdbb2f962d32eb8be9f63378516948a99a3de56d897ee1?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8&tag=v4.14.0-202311021650.p0.g1e01fc0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:0a5abc6694b8d2c3efdc35323900a4b7c2ab0ff1608c2e4e986442287a45f984_arm64", + "product": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:0a5abc6694b8d2c3efdc35323900a4b7c2ab0ff1608c2e4e986442287a45f984_arm64", + "product_id": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:0a5abc6694b8d2c3efdc35323900a4b7c2ab0ff1608c2e4e986442287a45f984_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vertical-pod-autoscaler-rhel8@sha256:0a5abc6694b8d2c3efdc35323900a4b7c2ab0ff1608c2e4e986442287a45f984?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8&tag=v4.14.0-202311021650.p0.g0822c7b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:4f28adb5e6600727e0a85ff3c2be6fbea6db529585561be6967336c59bee5ff2_arm64", + "product": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:4f28adb5e6600727e0a85ff3c2be6fbea6db529585561be6967336c59bee5ff2_arm64", + "product_id": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:4f28adb5e6600727e0a85ff3c2be6fbea6db529585561be6967336c59bee5ff2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vertical-pod-autoscaler-rhel8-operator@sha256:4f28adb5e6600727e0a85ff3c2be6fbea6db529585561be6967336c59bee5ff2?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator&tag=v4.14.0-202311021650.p0.geae798e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ptp-must-gather-rhel8@sha256:ddf5f9ef7413f945c498a98c8202fa71de19cb4501a67d0f7cc545e39b43f948_arm64", + "product": { + "name": "openshift4/ptp-must-gather-rhel8@sha256:ddf5f9ef7413f945c498a98c8202fa71de19cb4501a67d0f7cc545e39b43f948_arm64", + "product_id": "openshift4/ptp-must-gather-rhel8@sha256:ddf5f9ef7413f945c498a98c8202fa71de19cb4501a67d0f7cc545e39b43f948_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ptp-must-gather-rhel8@sha256:ddf5f9ef7413f945c498a98c8202fa71de19cb4501a67d0f7cc545e39b43f948?arch=arm64&repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel8&tag=v4.14.0-202311021650.p0.gf2d6cf2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-dp-admission-controller@sha256:bfb60d5eeb96897feb559f53c154a1f80eec13dba4912ccee16d81a1257dee37_arm64", + "product": { + "name": "openshift4/ose-sriov-dp-admission-controller@sha256:bfb60d5eeb96897feb559f53c154a1f80eec13dba4912ccee16d81a1257dee37_arm64", + "product_id": "openshift4/ose-sriov-dp-admission-controller@sha256:bfb60d5eeb96897feb559f53c154a1f80eec13dba4912ccee16d81a1257dee37_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-dp-admission-controller@sha256:bfb60d5eeb96897feb559f53c154a1f80eec13dba4912ccee16d81a1257dee37?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller&tag=v4.14.0-202311021650.p0.g8d4ceb9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-network-config-daemon@sha256:107ff7faf7a5ec8be028cc3cd7a97861b16052db17fbd1e65ef04cb47caef840_arm64", + "product": { + "name": "openshift4/ose-sriov-network-config-daemon@sha256:107ff7faf7a5ec8be028cc3cd7a97861b16052db17fbd1e65ef04cb47caef840_arm64", + "product_id": "openshift4/ose-sriov-network-config-daemon@sha256:107ff7faf7a5ec8be028cc3cd7a97861b16052db17fbd1e65ef04cb47caef840_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-network-config-daemon@sha256:107ff7faf7a5ec8be028cc3cd7a97861b16052db17fbd1e65ef04cb47caef840?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon&tag=v4.14.0-202311060529.p0.g81b0827.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-network-device-plugin@sha256:e5d21b534f03da02551498eb3eeaffde7517a6a5acefdde25e883318f2ea031f_arm64", + "product": { + "name": "openshift4/ose-sriov-network-device-plugin@sha256:e5d21b534f03da02551498eb3eeaffde7517a6a5acefdde25e883318f2ea031f_arm64", + "product_id": "openshift4/ose-sriov-network-device-plugin@sha256:e5d21b534f03da02551498eb3eeaffde7517a6a5acefdde25e883318f2ea031f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-network-device-plugin@sha256:e5d21b534f03da02551498eb3eeaffde7517a6a5acefdde25e883318f2ea031f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin&tag=v4.14.0-202311021650.p0.ge367282.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-network-operator@sha256:c7a82735ca99ff96f0c38da5704919558b0ef481cae0f040cdebc3b839aed5ca_arm64", + "product": { + "name": "openshift4/ose-sriov-network-operator@sha256:c7a82735ca99ff96f0c38da5704919558b0ef481cae0f040cdebc3b839aed5ca_arm64", + "product_id": "openshift4/ose-sriov-network-operator@sha256:c7a82735ca99ff96f0c38da5704919558b0ef481cae0f040cdebc3b839aed5ca_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-network-operator@sha256:c7a82735ca99ff96f0c38da5704919558b0ef481cae0f040cdebc3b839aed5ca?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-sriov-network-operator&tag=v4.14.0-202311060529.p0.g81b0827.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-network-webhook@sha256:e99b7322d383c5650a6d4abfb29f352d6b03e3af850003a36d24c7e376ec9cb7_arm64", + "product": { + "name": "openshift4/ose-sriov-network-webhook@sha256:e99b7322d383c5650a6d4abfb29f352d6b03e3af850003a36d24c7e376ec9cb7_arm64", + "product_id": "openshift4/ose-sriov-network-webhook@sha256:e99b7322d383c5650a6d4abfb29f352d6b03e3af850003a36d24c7e376ec9cb7_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-network-webhook@sha256:e99b7322d383c5650a6d4abfb29f352d6b03e3af850003a36d24c7e376ec9cb7?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook&tag=v4.14.0-202311060529.p0.g81b0827.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-descheduler@sha256:cb4d977ee401020b27f6bf7973117d8fed7527cb7bea01cff40e158697edefe5_ppc64le", + "product": { + "name": "openshift4/ose-descheduler@sha256:cb4d977ee401020b27f6bf7973117d8fed7527cb7bea01cff40e158697edefe5_ppc64le", + "product_id": "openshift4/ose-descheduler@sha256:cb4d977ee401020b27f6bf7973117d8fed7527cb7bea01cff40e158697edefe5_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-descheduler@sha256:cb4d977ee401020b27f6bf7973117d8fed7527cb7bea01cff40e158697edefe5?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-descheduler&tag=v4.14.0-202311021650.p0.g16ce606.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-node-problem-detector-rhel8@sha256:c5f8bb7bea48601a7027dfef6b3834ccaaa32f5c0d888ed809c9e11c33c1c174_ppc64le", + "product": { + "name": "openshift4/ose-node-problem-detector-rhel8@sha256:c5f8bb7bea48601a7027dfef6b3834ccaaa32f5c0d888ed809c9e11c33c1c174_ppc64le", + "product_id": "openshift4/ose-node-problem-detector-rhel8@sha256:c5f8bb7bea48601a7027dfef6b3834ccaaa32f5c0d888ed809c9e11c33c1c174_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-node-problem-detector-rhel8@sha256:c5f8bb7bea48601a7027dfef6b3834ccaaa32f5c0d888ed809c9e11c33c1c174?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-node-problem-detector-rhel8&tag=v4.14.0-202311021650.p0.g0162e5f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/cloud-event-proxy-rhel8@sha256:7ae73a264e1c8a47fdd7ad502281f3e833f876318d12855123ef2ae57a3b8c74_ppc64le", + "product": { + "name": "openshift4/cloud-event-proxy-rhel8@sha256:7ae73a264e1c8a47fdd7ad502281f3e833f876318d12855123ef2ae57a3b8c74_ppc64le", + "product_id": "openshift4/cloud-event-proxy-rhel8@sha256:7ae73a264e1c8a47fdd7ad502281f3e833f876318d12855123ef2ae57a3b8c74_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cloud-event-proxy-rhel8@sha256:7ae73a264e1c8a47fdd7ad502281f3e833f876318d12855123ef2ae57a3b8c74?arch=ppc64le&repository_url=registry.redhat.io/openshift4/cloud-event-proxy-rhel8&tag=v4.14.0-202311021650.p0.gc3dc0ec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-event-proxy-rhel8@sha256:7ae73a264e1c8a47fdd7ad502281f3e833f876318d12855123ef2ae57a3b8c74_ppc64le", + "product": { + "name": "openshift4/ose-cloud-event-proxy-rhel8@sha256:7ae73a264e1c8a47fdd7ad502281f3e833f876318d12855123ef2ae57a3b8c74_ppc64le", + "product_id": "openshift4/ose-cloud-event-proxy-rhel8@sha256:7ae73a264e1c8a47fdd7ad502281f3e833f876318d12855123ef2ae57a3b8c74_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-event-proxy-rhel8@sha256:7ae73a264e1c8a47fdd7ad502281f3e833f876318d12855123ef2ae57a3b8c74?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8&tag=v4.14.0-202311021650.p0.gc3dc0ec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-nfd-operator@sha256:6af2ebc4bb484c04a42e8c8cc572592169a711613fd9930a0516c59bb3530452_ppc64le", + "product": { + "name": "openshift4/ose-cluster-nfd-operator@sha256:6af2ebc4bb484c04a42e8c8cc572592169a711613fd9930a0516c59bb3530452_ppc64le", + "product_id": "openshift4/ose-cluster-nfd-operator@sha256:6af2ebc4bb484c04a42e8c8cc572592169a711613fd9930a0516c59bb3530452_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-nfd-operator@sha256:6af2ebc4bb484c04a42e8c8cc572592169a711613fd9930a0516c59bb3530452?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-operator&tag=v4.14.0-202311021650.p0.g90a3e0c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-infiniband-cni@sha256:52437211a40396949fc7ef1bca2fa9adbc75163a624e380d73485016dcda0843_ppc64le", + "product": { + "name": "openshift4/ose-sriov-infiniband-cni@sha256:52437211a40396949fc7ef1bca2fa9adbc75163a624e380d73485016dcda0843_ppc64le", + "product_id": "openshift4/ose-sriov-infiniband-cni@sha256:52437211a40396949fc7ef1bca2fa9adbc75163a624e380d73485016dcda0843_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-infiniband-cni@sha256:52437211a40396949fc7ef1bca2fa9adbc75163a624e380d73485016dcda0843?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni&tag=v4.14.0-202311021650.p0.geba0d95.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ingress-node-firewall-rhel9@sha256:5ba99a42b8e17b03d13d992d85ba559ddd146974637ccb4b98a6d4dbcf5e43db_ppc64le", + "product": { + "name": "openshift4/ingress-node-firewall-rhel9@sha256:5ba99a42b8e17b03d13d992d85ba559ddd146974637ccb4b98a6d4dbcf5e43db_ppc64le", + "product_id": "openshift4/ingress-node-firewall-rhel9@sha256:5ba99a42b8e17b03d13d992d85ba559ddd146974637ccb4b98a6d4dbcf5e43db_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ingress-node-firewall-rhel9@sha256:5ba99a42b8e17b03d13d992d85ba559ddd146974637ccb4b98a6d4dbcf5e43db?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9&tag=v4.14.0-202311011907.p0.g47d4297.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ingress-node-firewall-rhel9-operator@sha256:a94b16d20ed072b08fe3a64e2a6ac4c29a4976b6267189ff0796bb72ca983e29_ppc64le", + "product": { + "name": "openshift4/ingress-node-firewall-rhel9-operator@sha256:a94b16d20ed072b08fe3a64e2a6ac4c29a4976b6267189ff0796bb72ca983e29_ppc64le", + "product_id": "openshift4/ingress-node-firewall-rhel9-operator@sha256:a94b16d20ed072b08fe3a64e2a6ac4c29a4976b6267189ff0796bb72ca983e29_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ingress-node-firewall-rhel9-operator@sha256:a94b16d20ed072b08fe3a64e2a6ac4c29a4976b6267189ff0796bb72ca983e29?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel9-operator&tag=v4.14.0-202311021650.p0.g47d4297.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-local-storage-diskmaker@sha256:7a254684bf57d8d6c89e7bcda7a18d416ffc6c3faca5894c54ad98eefd553a82_ppc64le", + "product": { + "name": "openshift4/ose-local-storage-diskmaker@sha256:7a254684bf57d8d6c89e7bcda7a18d416ffc6c3faca5894c54ad98eefd553a82_ppc64le", + "product_id": "openshift4/ose-local-storage-diskmaker@sha256:7a254684bf57d8d6c89e7bcda7a18d416ffc6c3faca5894c54ad98eefd553a82_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-local-storage-diskmaker@sha256:7a254684bf57d8d6c89e7bcda7a18d416ffc6c3faca5894c54ad98eefd553a82?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker&tag=v4.14.0-202311021650.p0.gc41b6ba.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-local-storage-operator@sha256:ec05e95625aa246b4c2659634f2d32070072f5d6cd629c1ddc4971632736b9d6_ppc64le", + "product": { + "name": "openshift4/ose-local-storage-operator@sha256:ec05e95625aa246b4c2659634f2d32070072f5d6cd629c1ddc4971632736b9d6_ppc64le", + "product_id": "openshift4/ose-local-storage-operator@sha256:ec05e95625aa246b4c2659634f2d32070072f5d6cd629c1ddc4971632736b9d6_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-local-storage-operator@sha256:ec05e95625aa246b4c2659634f2d32070072f5d6cd629c1ddc4971632736b9d6?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-local-storage-operator&tag=v4.14.0-202311031050.p0.gc41b6ba.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/nmstate-console-plugin-rhel8@sha256:7d984cf32266eb68b030fabf31247597120e93199c56f12efe7c100eaeaa246c_ppc64le", + "product": { + "name": "openshift4/nmstate-console-plugin-rhel8@sha256:7d984cf32266eb68b030fabf31247597120e93199c56f12efe7c100eaeaa246c_ppc64le", + "product_id": "openshift4/nmstate-console-plugin-rhel8@sha256:7d984cf32266eb68b030fabf31247597120e93199c56f12efe7c100eaeaa246c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/nmstate-console-plugin-rhel8@sha256:7d984cf32266eb68b030fabf31247597120e93199c56f12efe7c100eaeaa246c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/nmstate-console-plugin-rhel8&tag=v4.14.0-202311021650.p0.g75fe6e5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-node-feature-discovery@sha256:0075c2c6827aa2cdf0ee085ef9b062df4580a2c8b45e7cdbcf5d9c4f077c5424_ppc64le", + "product": { + "name": "openshift4/ose-node-feature-discovery@sha256:0075c2c6827aa2cdf0ee085ef9b062df4580a2c8b45e7cdbcf5d9c4f077c5424_ppc64le", + "product_id": "openshift4/ose-node-feature-discovery@sha256:0075c2c6827aa2cdf0ee085ef9b062df4580a2c8b45e7cdbcf5d9c4f077c5424_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-node-feature-discovery@sha256:0075c2c6827aa2cdf0ee085ef9b062df4580a2c8b45e7cdbcf5d9c4f077c5424?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery&tag=v4.14.0-202311021650.p0.g060e629.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ansible-operator@sha256:21f7c549e00ee5a5335e3b84b31d335ca2fbc426765ab81607b1d5defe235682_ppc64le", + "product": { + "name": "openshift4/ose-ansible-operator@sha256:21f7c549e00ee5a5335e3b84b31d335ca2fbc426765ab81607b1d5defe235682_ppc64le", + "product_id": "openshift4/ose-ansible-operator@sha256:21f7c549e00ee5a5335e3b84b31d335ca2fbc426765ab81607b1d5defe235682_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ansible-operator@sha256:21f7c549e00ee5a5335e3b84b31d335ca2fbc426765ab81607b1d5defe235682?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ansible-operator&tag=v4.14.0-202311021650.p0.gbd08cb7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capacity@sha256:635cd63d2d67291bde65fda9aa31fd40faef9b3617bc97d28fee05731c4451e5_ppc64le", + "product": { + "name": "openshift4/ose-cluster-capacity@sha256:635cd63d2d67291bde65fda9aa31fd40faef9b3617bc97d28fee05731c4451e5_ppc64le", + "product_id": "openshift4/ose-cluster-capacity@sha256:635cd63d2d67291bde65fda9aa31fd40faef9b3617bc97d28fee05731c4451e5_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capacity@sha256:635cd63d2d67291bde65fda9aa31fd40faef9b3617bc97d28fee05731c4451e5?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-capacity&tag=v4.14.0-202311021650.p0.g1d2edb6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-egress-dns-proxy@sha256:7a427738011c2a5ef37aaa712ae0661dc287c4983ed663692b1fd448d2011cab_ppc64le", + "product": { + "name": "openshift4/ose-egress-dns-proxy@sha256:7a427738011c2a5ef37aaa712ae0661dc287c4983ed663692b1fd448d2011cab_ppc64le", + "product_id": "openshift4/ose-egress-dns-proxy@sha256:7a427738011c2a5ef37aaa712ae0661dc287c4983ed663692b1fd448d2011cab_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-egress-dns-proxy@sha256:7a427738011c2a5ef37aaa712ae0661dc287c4983ed663692b1fd448d2011cab?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy&tag=v4.14.0-202311021650.p0.gf08cee3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-egress-router@sha256:07adf8306ed605da349d45194280613ba44098bf65d0b6a59df6bbdb6eecb8f5_ppc64le", + "product": { + "name": "openshift4/ose-egress-router@sha256:07adf8306ed605da349d45194280613ba44098bf65d0b6a59df6bbdb6eecb8f5_ppc64le", + "product_id": "openshift4/ose-egress-router@sha256:07adf8306ed605da349d45194280613ba44098bf65d0b6a59df6bbdb6eecb8f5_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-egress-router@sha256:07adf8306ed605da349d45194280613ba44098bf65d0b6a59df6bbdb6eecb8f5?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-egress-router&tag=v4.14.0-202311021650.p0.gf08cee3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-helm-operator@sha256:21b5682918c84ca89f149fd44155d4de0d01586a0209d898483fc486d6374e72_ppc64le", + "product": { + "name": "openshift4/ose-helm-operator@sha256:21b5682918c84ca89f149fd44155d4de0d01586a0209d898483fc486d6374e72_ppc64le", + "product_id": "openshift4/ose-helm-operator@sha256:21b5682918c84ca89f149fd44155d4de0d01586a0209d898483fc486d6374e72_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-helm-operator@sha256:21b5682918c84ca89f149fd44155d4de0d01586a0209d898483fc486d6374e72?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-helm-operator&tag=v4.14.0-202311021650.p0.gbd08cb7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-sdk-rhel8@sha256:f15ff70b467add1407f38987563352baf9ac653af68789c98b282f8ee32986b7_ppc64le", + "product": { + "name": "openshift4/ose-operator-sdk-rhel8@sha256:f15ff70b467add1407f38987563352baf9ac653af68789c98b282f8ee32986b7_ppc64le", + "product_id": "openshift4/ose-operator-sdk-rhel8@sha256:f15ff70b467add1407f38987563352baf9ac653af68789c98b282f8ee32986b7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-sdk-rhel8@sha256:f15ff70b467add1407f38987563352baf9ac653af68789c98b282f8ee32986b7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel8&tag=v4.14.0-202311021650.p0.gbd08cb7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:0a6ba836f37d836976b9b556e61a3032a9f69de5fec680f36b74a7dd08a9bc60_ppc64le", + "product": { + "name": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:0a6ba836f37d836976b9b556e61a3032a9f69de5fec680f36b74a7dd08a9bc60_ppc64le", + "product_id": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:0a6ba836f37d836976b9b556e61a3032a9f69de5fec680f36b74a7dd08a9bc60_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-proxy-pull-test-rhel8@sha256:0a6ba836f37d836976b9b556e61a3032a9f69de5fec680f36b74a7dd08a9bc60?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openshift-proxy-pull-test-rhel8&tag=v4.14.0-202311070105.p0.gf57144e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:8626dc3e14019a3a725caabdd48a2093bf8eb77d611906740e8b632ebdee8bb1_ppc64le", + "product": { + "name": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:8626dc3e14019a3a725caabdd48a2093bf8eb77d611906740e8b632ebdee8bb1_ppc64le", + "product_id": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:8626dc3e14019a3a725caabdd48a2093bf8eb77d611906740e8b632ebdee8bb1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-descheduler-rhel8-operator@sha256:8626dc3e14019a3a725caabdd48a2093bf8eb77d611906740e8b632ebdee8bb1?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-descheduler-rhel8-operator&tag=v4.14.0-202311021650.p0.gc3ddfd6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-descheduler-operator@sha256:8626dc3e14019a3a725caabdd48a2093bf8eb77d611906740e8b632ebdee8bb1_ppc64le", + "product": { + "name": "openshift4/ose-cluster-kube-descheduler-operator@sha256:8626dc3e14019a3a725caabdd48a2093bf8eb77d611906740e8b632ebdee8bb1_ppc64le", + "product_id": "openshift4/ose-cluster-kube-descheduler-operator@sha256:8626dc3e14019a3a725caabdd48a2093bf8eb77d611906740e8b632ebdee8bb1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-descheduler-operator@sha256:8626dc3e14019a3a725caabdd48a2093bf8eb77d611906740e8b632ebdee8bb1?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-descheduler-operator&tag=v4.14.0-202311021650.p0.gc3ddfd6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-clusterresourceoverride-rhel8@sha256:a077745b0737fbb440d2158920e7722f3245ff9c4200b67325307ed4a9c7dc04_ppc64le", + "product": { + "name": "openshift4/ose-clusterresourceoverride-rhel8@sha256:a077745b0737fbb440d2158920e7722f3245ff9c4200b67325307ed4a9c7dc04_ppc64le", + "product_id": "openshift4/ose-clusterresourceoverride-rhel8@sha256:a077745b0737fbb440d2158920e7722f3245ff9c4200b67325307ed4a9c7dc04_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-clusterresourceoverride-rhel8@sha256:a077745b0737fbb440d2158920e7722f3245ff9c4200b67325307ed4a9c7dc04?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8&tag=v4.14.0-202311021650.p0.g55d1f53.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:9d2915d5cef825da124e121b9a89665f3c0f7e9a102a1740e377ec2a27b174f0_ppc64le", + "product": { + "name": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:9d2915d5cef825da124e121b9a89665f3c0f7e9a102a1740e377ec2a27b174f0_ppc64le", + "product_id": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:9d2915d5cef825da124e121b9a89665f3c0f7e9a102a1740e377ec2a27b174f0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-clusterresourceoverride-rhel8-operator@sha256:9d2915d5cef825da124e121b9a89665f3c0f7e9a102a1740e377ec2a27b174f0?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator&tag=v4.14.0-202311021650.p0.gbb23924.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:06ccb469cc00c704a508b3f80299b4f1379d9c2190c2d3e4d01d6130ebc0d577_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:06ccb469cc00c704a508b3f80299b4f1379d9c2190c2d3e4d01d6130ebc0d577_ppc64le", + "product_id": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:06ccb469cc00c704a508b3f80299b4f1379d9c2190c2d3e4d01d6130ebc0d577_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:06ccb469cc00c704a508b3f80299b4f1379d9c2190c2d3e4d01d6130ebc0d577?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8&tag=v4.14.0-202311021650.p0.g740b442.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-egress-http-proxy@sha256:4cc982d52f80b2a86d8ad7ff52555a214063e4de723db82603ecc6419602ca52_ppc64le", + "product": { + "name": "openshift4/ose-egress-http-proxy@sha256:4cc982d52f80b2a86d8ad7ff52555a214063e4de723db82603ecc6419602ca52_ppc64le", + "product_id": "openshift4/ose-egress-http-proxy@sha256:4cc982d52f80b2a86d8ad7ff52555a214063e4de723db82603ecc6419602ca52_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-egress-http-proxy@sha256:4cc982d52f80b2a86d8ad7ff52555a214063e4de723db82603ecc6419602ca52?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy&tag=v4.14.0-202311021650.p0.gf08cee3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/frr-rhel9@sha256:4960e43a0f470dd9793b4581dc34306b7c3a8a2f298bf82364a686910733fca7_ppc64le", + "product": { + "name": "openshift4/frr-rhel9@sha256:4960e43a0f470dd9793b4581dc34306b7c3a8a2f298bf82364a686910733fca7_ppc64le", + "product_id": "openshift4/frr-rhel9@sha256:4960e43a0f470dd9793b4581dc34306b7c3a8a2f298bf82364a686910733fca7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/frr-rhel9@sha256:4960e43a0f470dd9793b4581dc34306b7c3a8a2f298bf82364a686910733fca7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/frr-rhel9&tag=v4.14.0-202310262127.p0.g0414ca3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:1cf5a7172b91efc40cefec328e506ff96a432cd7758f8f749623be5712f48aed_ppc64le", + "product": { + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:1cf5a7172b91efc40cefec328e506ff96a432cd7758f8f749623be5712f48aed_ppc64le", + "product_id": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:1cf5a7172b91efc40cefec328e506ff96a432cd7758f8f749623be5712f48aed_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-filestore-csi-driver-rhel8@sha256:1cf5a7172b91efc40cefec328e506ff96a432cd7758f8f749623be5712f48aed?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.ga6af579.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c11500541af9da29d269a5504c13f74abd706972dc6c2143a1e7b0c81e5954c9_ppc64le", + "product": { + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c11500541af9da29d269a5504c13f74abd706972dc6c2143a1e7b0c81e5954c9_ppc64le", + "product_id": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c11500541af9da29d269a5504c13f74abd706972dc6c2143a1e7b0c81e5954c9_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c11500541af9da29d269a5504c13f74abd706972dc6c2143a1e7b0c81e5954c9?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator&tag=v4.14.0-202311021650.p0.g413ab3a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/kubernetes-nmstate-rhel9-operator@sha256:e8ed9a99054bff7b1af5556d5cf9b0d37d0b14c3ea113717fb83372303d53701_ppc64le", + "product": { + "name": "openshift4/kubernetes-nmstate-rhel9-operator@sha256:e8ed9a99054bff7b1af5556d5cf9b0d37d0b14c3ea113717fb83372303d53701_ppc64le", + "product_id": "openshift4/kubernetes-nmstate-rhel9-operator@sha256:e8ed9a99054bff7b1af5556d5cf9b0d37d0b14c3ea113717fb83372303d53701_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kubernetes-nmstate-rhel9-operator@sha256:e8ed9a99054bff7b1af5556d5cf9b0d37d0b14c3ea113717fb83372303d53701?arch=ppc64le&repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel9-operator&tag=v4.14.0-202311021650.p0.g802a398.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ptp-rhel9@sha256:bca79501904a9fe117e608b09116f1536aedd3389e313df92b9933284337b00b_ppc64le", + "product": { + "name": "openshift4/ose-ptp-rhel9@sha256:bca79501904a9fe117e608b09116f1536aedd3389e313df92b9933284337b00b_ppc64le", + "product_id": "openshift4/ose-ptp-rhel9@sha256:bca79501904a9fe117e608b09116f1536aedd3389e313df92b9933284337b00b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ptp-rhel9@sha256:bca79501904a9fe117e608b09116f1536aedd3389e313df92b9933284337b00b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ptp-rhel9&tag=v4.14.0-202310311548.p0.g6eb442b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-local-storage-mustgather-rhel8@sha256:8751e2f0025e2401b110f1ac951050643648ae09871e65d283dfcf1c19e518f2_ppc64le", + "product": { + "name": "openshift4/ose-local-storage-mustgather-rhel8@sha256:8751e2f0025e2401b110f1ac951050643648ae09871e65d283dfcf1c19e518f2_ppc64le", + "product_id": "openshift4/ose-local-storage-mustgather-rhel8@sha256:8751e2f0025e2401b110f1ac951050643648ae09871e65d283dfcf1c19e518f2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-local-storage-mustgather-rhel8@sha256:8751e2f0025e2401b110f1ac951050643648ae09871e65d283dfcf1c19e518f2?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel8&tag=v4.14.0-202311021650.p0.gc41b6ba.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift-tech-preview/metallb-rhel8@sha256:b5c9f55e0c150ca192cfedbfafc74d7080261c5ea872f5438646e6bef4524afb_ppc64le", + "product": { + "name": "openshift-tech-preview/metallb-rhel8@sha256:b5c9f55e0c150ca192cfedbfafc74d7080261c5ea872f5438646e6bef4524afb_ppc64le", + "product_id": "openshift-tech-preview/metallb-rhel8@sha256:b5c9f55e0c150ca192cfedbfafc74d7080261c5ea872f5438646e6bef4524afb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/metallb-rhel8@sha256:b5c9f55e0c150ca192cfedbfafc74d7080261c5ea872f5438646e6bef4524afb?arch=ppc64le&repository_url=registry.redhat.io/openshift-tech-preview/metallb-rhel8&tag=v4.14.0-202311061430.p0.ga09f95c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/metallb-rhel8@sha256:b5c9f55e0c150ca192cfedbfafc74d7080261c5ea872f5438646e6bef4524afb_ppc64le", + "product": { + "name": "openshift4/metallb-rhel8@sha256:b5c9f55e0c150ca192cfedbfafc74d7080261c5ea872f5438646e6bef4524afb_ppc64le", + "product_id": "openshift4/metallb-rhel8@sha256:b5c9f55e0c150ca192cfedbfafc74d7080261c5ea872f5438646e6bef4524afb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/metallb-rhel8@sha256:b5c9f55e0c150ca192cfedbfafc74d7080261c5ea872f5438646e6bef4524afb?arch=ppc64le&repository_url=registry.redhat.io/openshift4/metallb-rhel8&tag=v4.14.0-202311061430.p0.ga09f95c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/metallb-rhel8-operator@sha256:e8cdd92565af5602b592dff3e1d0260bd4775872eee7063aa3b854ab80cfea43_ppc64le", + "product": { + "name": "openshift4/metallb-rhel8-operator@sha256:e8cdd92565af5602b592dff3e1d0260bd4775872eee7063aa3b854ab80cfea43_ppc64le", + "product_id": "openshift4/metallb-rhel8-operator@sha256:e8cdd92565af5602b592dff3e1d0260bd4775872eee7063aa3b854ab80cfea43_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/metallb-rhel8-operator@sha256:e8cdd92565af5602b592dff3e1d0260bd4775872eee7063aa3b854ab80cfea43?arch=ppc64le&repository_url=registry.redhat.io/openshift4/metallb-rhel8-operator&tag=v4.14.0-202311061430.p0.g88d1de4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ptp-operator@sha256:dc6ce4dd58c199422cd46d63ee97670eb45841e570653c92e2fba82ec96084aa_ppc64le", + "product": { + "name": "openshift4/ose-ptp-operator@sha256:dc6ce4dd58c199422cd46d63ee97670eb45841e570653c92e2fba82ec96084aa_ppc64le", + "product_id": "openshift4/ose-ptp-operator@sha256:dc6ce4dd58c199422cd46d63ee97670eb45841e570653c92e2fba82ec96084aa_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ptp-operator@sha256:dc6ce4dd58c199422cd46d63ee97670eb45841e570653c92e2fba82ec96084aa?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ptp-operator&tag=v4.14.0-202311021650.p0.gf2d6cf2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-secrets-store-csi-driver-rhel8@sha256:2974267de53eda5485870b248d1c204f7cb29dcc88bed02f568922155c8fc093_ppc64le", + "product": { + "name": "openshift4/ose-secrets-store-csi-driver-rhel8@sha256:2974267de53eda5485870b248d1c204f7cb29dcc88bed02f568922155c8fc093_ppc64le", + "product_id": "openshift4/ose-secrets-store-csi-driver-rhel8@sha256:2974267de53eda5485870b248d1c204f7cb29dcc88bed02f568922155c8fc093_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-secrets-store-csi-driver-rhel8@sha256:2974267de53eda5485870b248d1c204f7cb29dcc88bed02f568922155c8fc093?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.g4b5bd4b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:edb1820295cc044ad849d1262d9bf5666383ad5eefceee671cde072a8f40c7eb_ppc64le", + "product": { + "name": "openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:edb1820295cc044ad849d1262d9bf5666383ad5eefceee671cde072a8f40c7eb_ppc64le", + "product_id": "openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:edb1820295cc044ad849d1262d9bf5666383ad5eefceee671cde072a8f40c7eb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-secrets-store-csi-driver-rhel8-operator@sha256:edb1820295cc044ad849d1262d9bf5666383ad5eefceee671cde072a8f40c7eb?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-driver-rhel8-operator&tag=v4.14.0-202311021650.p0.g1e01fc0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:aa5014aacef767ab7dc963afce78089cea19015c7175a67cfdea42bbd3fdab25_ppc64le", + "product": { + "name": "openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:aa5014aacef767ab7dc963afce78089cea19015c7175a67cfdea42bbd3fdab25_ppc64le", + "product_id": "openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:aa5014aacef767ab7dc963afce78089cea19015c7175a67cfdea42bbd3fdab25_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-secrets-store-csi-mustgather-rhel8@sha256:aa5014aacef767ab7dc963afce78089cea19015c7175a67cfdea42bbd3fdab25?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-secrets-store-csi-mustgather-rhel8&tag=v4.14.0-202311021650.p0.g1e01fc0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:48a0342845d32051e9a69d161947b6c9ac3c1848487bb236e1630cb250e43def_ppc64le", + "product": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:48a0342845d32051e9a69d161947b6c9ac3c1848487bb236e1630cb250e43def_ppc64le", + "product_id": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:48a0342845d32051e9a69d161947b6c9ac3c1848487bb236e1630cb250e43def_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-vertical-pod-autoscaler-rhel8@sha256:48a0342845d32051e9a69d161947b6c9ac3c1848487bb236e1630cb250e43def?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8&tag=v4.14.0-202311021650.p0.g0822c7b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b4e044ccf274e7cc3d4e4a92b32a2ba0b781b8f80756824f3be8e786e117b193_ppc64le", + "product": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b4e044ccf274e7cc3d4e4a92b32a2ba0b781b8f80756824f3be8e786e117b193_ppc64le", + "product_id": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b4e044ccf274e7cc3d4e4a92b32a2ba0b781b8f80756824f3be8e786e117b193_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b4e044ccf274e7cc3d4e4a92b32a2ba0b781b8f80756824f3be8e786e117b193?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator&tag=v4.14.0-202311021650.p0.geae798e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ptp-must-gather-rhel8@sha256:22d36a1d85496bdbb0941488b31597cbb66920f4a4bf7234d82da2030be0dbe9_ppc64le", + "product": { + "name": "openshift4/ptp-must-gather-rhel8@sha256:22d36a1d85496bdbb0941488b31597cbb66920f4a4bf7234d82da2030be0dbe9_ppc64le", + "product_id": "openshift4/ptp-must-gather-rhel8@sha256:22d36a1d85496bdbb0941488b31597cbb66920f4a4bf7234d82da2030be0dbe9_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ptp-must-gather-rhel8@sha256:22d36a1d85496bdbb0941488b31597cbb66920f4a4bf7234d82da2030be0dbe9?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel8&tag=v4.14.0-202311021650.p0.gf2d6cf2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-dp-admission-controller@sha256:765e2921209f84c518e66c2f4acc79b26c6dfbd66c4649a81c1ffa61fd241b82_ppc64le", + "product": { + "name": "openshift4/ose-sriov-dp-admission-controller@sha256:765e2921209f84c518e66c2f4acc79b26c6dfbd66c4649a81c1ffa61fd241b82_ppc64le", + "product_id": "openshift4/ose-sriov-dp-admission-controller@sha256:765e2921209f84c518e66c2f4acc79b26c6dfbd66c4649a81c1ffa61fd241b82_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-dp-admission-controller@sha256:765e2921209f84c518e66c2f4acc79b26c6dfbd66c4649a81c1ffa61fd241b82?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller&tag=v4.14.0-202311021650.p0.g8d4ceb9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-network-config-daemon@sha256:bebf0b9bd274e5e5a3d6cc41b60da6f89e51fc04b35748a40d3117cbc11565d7_ppc64le", + "product": { + "name": "openshift4/ose-sriov-network-config-daemon@sha256:bebf0b9bd274e5e5a3d6cc41b60da6f89e51fc04b35748a40d3117cbc11565d7_ppc64le", + "product_id": "openshift4/ose-sriov-network-config-daemon@sha256:bebf0b9bd274e5e5a3d6cc41b60da6f89e51fc04b35748a40d3117cbc11565d7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-network-config-daemon@sha256:bebf0b9bd274e5e5a3d6cc41b60da6f89e51fc04b35748a40d3117cbc11565d7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon&tag=v4.14.0-202311060529.p0.g81b0827.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-network-device-plugin@sha256:f8a9c482b1be4c65f9299066ba0c4e2a8351109a3434a3a1bdcc0e967a95fea5_ppc64le", + "product": { + "name": "openshift4/ose-sriov-network-device-plugin@sha256:f8a9c482b1be4c65f9299066ba0c4e2a8351109a3434a3a1bdcc0e967a95fea5_ppc64le", + "product_id": "openshift4/ose-sriov-network-device-plugin@sha256:f8a9c482b1be4c65f9299066ba0c4e2a8351109a3434a3a1bdcc0e967a95fea5_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-network-device-plugin@sha256:f8a9c482b1be4c65f9299066ba0c4e2a8351109a3434a3a1bdcc0e967a95fea5?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin&tag=v4.14.0-202311021650.p0.ge367282.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-network-operator@sha256:73daa89c56101f859a022c2b9e8a328a83fddcaffad7f2651de4601869559c5c_ppc64le", + "product": { + "name": "openshift4/ose-sriov-network-operator@sha256:73daa89c56101f859a022c2b9e8a328a83fddcaffad7f2651de4601869559c5c_ppc64le", + "product_id": "openshift4/ose-sriov-network-operator@sha256:73daa89c56101f859a022c2b9e8a328a83fddcaffad7f2651de4601869559c5c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-network-operator@sha256:73daa89c56101f859a022c2b9e8a328a83fddcaffad7f2651de4601869559c5c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-sriov-network-operator&tag=v4.14.0-202311060529.p0.g81b0827.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-network-webhook@sha256:1e952168974ddf41ae0ce5f42335e4afdde8652f0ded1dd6d1fe1ea9fbbc63ef_ppc64le", + "product": { + "name": "openshift4/ose-sriov-network-webhook@sha256:1e952168974ddf41ae0ce5f42335e4afdde8652f0ded1dd6d1fe1ea9fbbc63ef_ppc64le", + "product_id": "openshift4/ose-sriov-network-webhook@sha256:1e952168974ddf41ae0ce5f42335e4afdde8652f0ded1dd6d1fe1ea9fbbc63ef_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-network-webhook@sha256:1e952168974ddf41ae0ce5f42335e4afdde8652f0ded1dd6d1fe1ea9fbbc63ef?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook&tag=v4.14.0-202311060529.p0.g81b0827.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler@sha256:cdff8a804a597b05da76c4feaac1dc7d47eead212eb81d987d4d6cb7604053b8_arm64", + "product": { + "name": "openshift4/ose-cluster-autoscaler@sha256:cdff8a804a597b05da76c4feaac1dc7d47eead212eb81d987d4d6cb7604053b8_arm64", + "product_id": "openshift4/ose-cluster-autoscaler@sha256:cdff8a804a597b05da76c4feaac1dc7d47eead212eb81d987d4d6cb7604053b8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler@sha256:cdff8a804a597b05da76c4feaac1dc7d47eead212eb81d987d4d6cb7604053b8?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler&tag=v4.14.0-202311021650.p0.g0822c7b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-machine-controllers@sha256:7866193b499bda81d4eef57040f9602dff9a6fbff32d2e04dd3d11c734b6edbb_arm64", + "product": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:7866193b499bda81d4eef57040f9602dff9a6fbff32d2e04dd3d11c734b6edbb_arm64", + "product_id": "openshift4/ose-baremetal-machine-controllers@sha256:7866193b499bda81d4eef57040f9602dff9a6fbff32d2e04dd3d11c734b6edbb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-machine-controllers@sha256:7866193b499bda81d4eef57040f9602dff9a6fbff32d2e04dd3d11c734b6edbb?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers&tag=v4.14.0-202311021650.p0.g412acb3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:7563982709083c57d961909542b534ca62e3430e99f75bc439f9d14339b3d7b2_arm64", + "product": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:7563982709083c57d961909542b534ca62e3430e99f75bc439f9d14339b3d7b2_arm64", + "product_id": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:7563982709083c57d961909542b534ca62e3430e99f75bc439f9d14339b3d7b2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-etcd-rhel8-operator@sha256:7563982709083c57d961909542b534ca62e3430e99f75bc439f9d14339b3d7b2?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator&tag=v4.14.0-202311021650.p0.g578c952.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-monitoring-operator@sha256:8ba2b1b0e1348610a2e8925e1c78e893bd662bebc0dc4214782371cb132ac3d5_arm64", + "product": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:8ba2b1b0e1348610a2e8925e1c78e893bd662bebc0dc4214782371cb132ac3d5_arm64", + "product_id": "openshift4/ose-cluster-monitoring-operator@sha256:8ba2b1b0e1348610a2e8925e1c78e893bd662bebc0dc4214782371cb132ac3d5_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-monitoring-operator@sha256:8ba2b1b0e1348610a2e8925e1c78e893bd662bebc0dc4214782371cb132ac3d5?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-operator&tag=v4.14.0-202311021650.p0.gab06fd3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-network-operator@sha256:35b609888e706c6667ac24551daadccb0bdaeebafae1ed44940bd03b603beeaf_arm64", + "product": { + "name": "openshift4/ose-cluster-network-operator@sha256:35b609888e706c6667ac24551daadccb0bdaeebafae1ed44940bd03b603beeaf_arm64", + "product_id": "openshift4/ose-cluster-network-operator@sha256:35b609888e706c6667ac24551daadccb0bdaeebafae1ed44940bd03b603beeaf_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-network-operator@sha256:35b609888e706c6667ac24551daadccb0bdaeebafae1ed44940bd03b603beeaf?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-network-operator&tag=v4.14.0-202311031807.p0.g1504d2a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:481acb46e9c6ca8081bb380a1023b3c3f663091d31c8a317d0cb90bf41a363a5_arm64", + "product": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:481acb46e9c6ca8081bb380a1023b3c3f663091d31c8a317d0cb90bf41a363a5_arm64", + "product_id": "openshift4/ose-cluster-node-tuning-operator@sha256:481acb46e9c6ca8081bb380a1023b3c3f663091d31c8a317d0cb90bf41a363a5_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-node-tuning-operator@sha256:481acb46e9c6ca8081bb380a1023b3c3f663091d31c8a317d0cb90bf41a363a5?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-operator&tag=v4.14.0-202311020945.p0.g9669c58.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-version-operator@sha256:7d1144a87eb5639bf8c66ddb376488283d9fc69f26ab1e192afc965b955fe921_arm64", + "product": { + "name": "openshift4/ose-cluster-version-operator@sha256:7d1144a87eb5639bf8c66ddb376488283d9fc69f26ab1e192afc965b955fe921_arm64", + "product_id": "openshift4/ose-cluster-version-operator@sha256:7d1144a87eb5639bf8c66ddb376488283d9fc69f26ab1e192afc965b955fe921_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-version-operator@sha256:7d1144a87eb5639bf8c66ddb376488283d9fc69f26ab1e192afc965b955fe921?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-version-operator&tag=v4.14.0-202311021650.p0.g2a48f5e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-configmap-reloader@sha256:07b7169a29eb0aad3384dacc003f56b8dca07e2efd8adfe1335edcb50e9600d3_arm64", + "product": { + "name": "openshift4/ose-configmap-reloader@sha256:07b7169a29eb0aad3384dacc003f56b8dca07e2efd8adfe1335edcb50e9600d3_arm64", + "product_id": "openshift4/ose-configmap-reloader@sha256:07b7169a29eb0aad3384dacc003f56b8dca07e2efd8adfe1335edcb50e9600d3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-configmap-reloader@sha256:07b7169a29eb0aad3384dacc003f56b8dca07e2efd8adfe1335edcb50e9600d3?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-configmap-reloader&tag=v4.14.0-202311021650.p0.g716a0c3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-coredns@sha256:d7b7c80b95b62c6eca376ee17743afaaf06605a2ee1bbd3aebe84fd45791d827_arm64", + "product": { + "name": "openshift4/ose-coredns@sha256:d7b7c80b95b62c6eca376ee17743afaaf06605a2ee1bbd3aebe84fd45791d827_arm64", + "product_id": "openshift4/ose-coredns@sha256:d7b7c80b95b62c6eca376ee17743afaaf06605a2ee1bbd3aebe84fd45791d827_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-coredns@sha256:d7b7c80b95b62c6eca376ee17743afaaf06605a2ee1bbd3aebe84fd45791d827?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-coredns&tag=v4.14.0-202311021650.p0.g8341fa7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:6be4035c126471459ab61cd132eacad3840c534e351d8f5e8548a65633d11165_arm64", + "product": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:6be4035c126471459ab61cd132eacad3840c534e351d8f5e8548a65633d11165_arm64", + "product_id": "openshift4/ose-csi-external-attacher-rhel8@sha256:6be4035c126471459ab61cd132eacad3840c534e351d8f5e8548a65633d11165_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher-rhel8@sha256:6be4035c126471459ab61cd132eacad3840c534e351d8f5e8548a65633d11165?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8&tag=v4.14.0-202311021650.p0.g06e8ce0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher@sha256:6be4035c126471459ab61cd132eacad3840c534e351d8f5e8548a65633d11165_arm64", + "product": { + "name": "openshift4/ose-csi-external-attacher@sha256:6be4035c126471459ab61cd132eacad3840c534e351d8f5e8548a65633d11165_arm64", + "product_id": "openshift4/ose-csi-external-attacher@sha256:6be4035c126471459ab61cd132eacad3840c534e351d8f5e8548a65633d11165_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher@sha256:6be4035c126471459ab61cd132eacad3840c534e351d8f5e8548a65633d11165?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher&tag=v4.14.0-202311021650.p0.g06e8ce0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:5adfc446b10b66b4ce79622d05c82e1285e0c77cb9ffff3ec1e0602194e12635_arm64", + "product": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:5adfc446b10b66b4ce79622d05c82e1285e0c77cb9ffff3ec1e0602194e12635_arm64", + "product_id": "openshift4/ose-csi-livenessprobe-rhel8@sha256:5adfc446b10b66b4ce79622d05c82e1285e0c77cb9ffff3ec1e0602194e12635_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe-rhel8@sha256:5adfc446b10b66b4ce79622d05c82e1285e0c77cb9ffff3ec1e0602194e12635?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8&tag=v4.14.0-202311021650.p0.ga9bcbde.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe@sha256:5adfc446b10b66b4ce79622d05c82e1285e0c77cb9ffff3ec1e0602194e12635_arm64", + "product": { + "name": "openshift4/ose-csi-livenessprobe@sha256:5adfc446b10b66b4ce79622d05c82e1285e0c77cb9ffff3ec1e0602194e12635_arm64", + "product_id": "openshift4/ose-csi-livenessprobe@sha256:5adfc446b10b66b4ce79622d05c82e1285e0c77cb9ffff3ec1e0602194e12635_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe@sha256:5adfc446b10b66b4ce79622d05c82e1285e0c77cb9ffff3ec1e0602194e12635?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe&tag=v4.14.0-202311021650.p0.ga9bcbde.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar@sha256:5e7ee82dfea19647210d87bf856dad6504a5572da6f619553833d46e32575d60_arm64", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:5e7ee82dfea19647210d87bf856dad6504a5572da6f619553833d46e32575d60_arm64", + "product_id": "openshift4/ose-csi-node-driver-registrar@sha256:5e7ee82dfea19647210d87bf856dad6504a5572da6f619553833d46e32575d60_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar@sha256:5e7ee82dfea19647210d87bf856dad6504a5572da6f619553833d46e32575d60?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar&tag=v4.14.0-202311021650.p0.g9dcaa7f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:5e7ee82dfea19647210d87bf856dad6504a5572da6f619553833d46e32575d60_arm64", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:5e7ee82dfea19647210d87bf856dad6504a5572da6f619553833d46e32575d60_arm64", + "product_id": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:5e7ee82dfea19647210d87bf856dad6504a5572da6f619553833d46e32575d60_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar-rhel8@sha256:5e7ee82dfea19647210d87bf856dad6504a5572da6f619553833d46e32575d60?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8&tag=v4.14.0-202311021650.p0.g9dcaa7f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner@sha256:cf26b5aa2f5313284a58d7ce9f1675731ba36cb59b390ecef06d846f41781cee_arm64", + "product": { + "name": "openshift4/ose-csi-external-provisioner@sha256:cf26b5aa2f5313284a58d7ce9f1675731ba36cb59b390ecef06d846f41781cee_arm64", + "product_id": "openshift4/ose-csi-external-provisioner@sha256:cf26b5aa2f5313284a58d7ce9f1675731ba36cb59b390ecef06d846f41781cee_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner@sha256:cf26b5aa2f5313284a58d7ce9f1675731ba36cb59b390ecef06d846f41781cee?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner&tag=v4.14.0-202311021650.p0.g78a710f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:cf26b5aa2f5313284a58d7ce9f1675731ba36cb59b390ecef06d846f41781cee_arm64", + "product": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:cf26b5aa2f5313284a58d7ce9f1675731ba36cb59b390ecef06d846f41781cee_arm64", + "product_id": "openshift4/ose-csi-external-provisioner-rhel8@sha256:cf26b5aa2f5313284a58d7ce9f1675731ba36cb59b390ecef06d846f41781cee_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner-rhel8@sha256:cf26b5aa2f5313284a58d7ce9f1675731ba36cb59b390ecef06d846f41781cee?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8&tag=v4.14.0-202311021650.p0.g78a710f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/driver-toolkit-rhel9@sha256:304c2ae4505587f5a4bf4358625c34f1908edd7041825a3238d9b4a275b9055b_arm64", + "product": { + "name": "openshift4/driver-toolkit-rhel9@sha256:304c2ae4505587f5a4bf4358625c34f1908edd7041825a3238d9b4a275b9055b_arm64", + "product_id": "openshift4/driver-toolkit-rhel9@sha256:304c2ae4505587f5a4bf4358625c34f1908edd7041825a3238d9b4a275b9055b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/driver-toolkit-rhel9@sha256:304c2ae4505587f5a4bf4358625c34f1908edd7041825a3238d9b4a275b9055b?arch=arm64&repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9&tag=v4.14.0-202311062032.p0.gcafed17.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-proxy@sha256:b85d14fab34e13b5aaac1b97cf413357afcd639fe7e3ae624b1fe82d86050ba8_arm64", + "product": { + "name": "openshift4/ose-oauth-proxy@sha256:b85d14fab34e13b5aaac1b97cf413357afcd639fe7e3ae624b1fe82d86050ba8_arm64", + "product_id": "openshift4/ose-oauth-proxy@sha256:b85d14fab34e13b5aaac1b97cf413357afcd639fe7e3ae624b1fe82d86050ba8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-proxy@sha256:b85d14fab34e13b5aaac1b97cf413357afcd639fe7e3ae624b1fe82d86050ba8?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-oauth-proxy&tag=v4.14.0-202311021650.p0.g55e0cd1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-alertmanager@sha256:8ed337ce46ecf57e430e689a4f0102afa1fc5c72735bb05f7e0050b599ca1af0_arm64", + "product": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:8ed337ce46ecf57e430e689a4f0102afa1fc5c72735bb05f7e0050b599ca1af0_arm64", + "product_id": "openshift4/ose-prometheus-alertmanager@sha256:8ed337ce46ecf57e430e689a4f0102afa1fc5c72735bb05f7e0050b599ca1af0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-alertmanager@sha256:8ed337ce46ecf57e430e689a4f0102afa1fc5c72735bb05f7e0050b599ca1af0?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager&tag=v4.14.0-202311021650.p0.ge372516.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-node-exporter@sha256:1c0d9b9e7ceef2d9e2f87a5036abad40d4fc8059bbf75a2d2b7297c94147c73d_arm64", + "product": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:1c0d9b9e7ceef2d9e2f87a5036abad40d4fc8059bbf75a2d2b7297c94147c73d_arm64", + "product_id": "openshift4/ose-prometheus-node-exporter@sha256:1c0d9b9e7ceef2d9e2f87a5036abad40d4fc8059bbf75a2d2b7297c94147c73d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-node-exporter@sha256:1c0d9b9e7ceef2d9e2f87a5036abad40d4fc8059bbf75a2d2b7297c94147c73d?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter&tag=v4.14.0-202311021650.p0.g5ee0a9d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus@sha256:c8d4bab93df6d86282e0c4dbd55cb1e9846996d324cb09fd5ad3aa6c2492af71_arm64", + "product": { + "name": "openshift4/ose-prometheus@sha256:c8d4bab93df6d86282e0c4dbd55cb1e9846996d324cb09fd5ad3aa6c2492af71_arm64", + "product_id": "openshift4/ose-prometheus@sha256:c8d4bab93df6d86282e0c4dbd55cb1e9846996d324cb09fd5ad3aa6c2492af71_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus@sha256:c8d4bab93df6d86282e0c4dbd55cb1e9846996d324cb09fd5ad3aa6c2492af71?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prometheus&tag=v4.14.0-202311021650.p0.gbcb475d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:38ab35532593ede012ffac49ba3e6b5551574c96831ddb04f71b0beb90f7a7ca_arm64", + "product": { + "name": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:38ab35532593ede012ffac49ba3e6b5551574c96831ddb04f71b0beb90f7a7ca_arm64", + "product_id": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:38ab35532593ede012ffac49ba3e6b5551574c96831ddb04f71b0beb90f7a7ca_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-machine-os-downloader-rhel9@sha256:38ab35532593ede012ffac49ba3e6b5551574c96831ddb04f71b0beb90f7a7ca?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9&tag=v4.14.0-202311062032.p0.g7b56c30.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-proxy@sha256:84ddecf942b9dfb1f1cb3a41b8524d311045a1917e3c841ef14cf5a7e6e0b525_arm64", + "product": { + "name": "openshift4/ose-kube-proxy@sha256:84ddecf942b9dfb1f1cb3a41b8524d311045a1917e3c841ef14cf5a7e6e0b525_arm64", + "product_id": "openshift4/ose-kube-proxy@sha256:84ddecf942b9dfb1f1cb3a41b8524d311045a1917e3c841ef14cf5a7e6e0b525_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-proxy@sha256:84ddecf942b9dfb1f1cb3a41b8524d311045a1917e3c841ef14cf5a7e6e0b525?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-kube-proxy&tag=v4.14.0-202311021650.p0.g128c28c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-rbac-proxy@sha256:33b6b35bf8f6e5fac41c4228bf1a41dd4a536e070db450c7b0f9c5c755c25702_arm64", + "product": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:33b6b35bf8f6e5fac41c4228bf1a41dd4a536e070db450c7b0f9c5c755c25702_arm64", + "product_id": "openshift4/ose-kube-rbac-proxy@sha256:33b6b35bf8f6e5fac41c4228bf1a41dd4a536e070db450c7b0f9c5c755c25702_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-rbac-proxy@sha256:33b6b35bf8f6e5fac41c4228bf1a41dd4a536e070db450c7b0f9c5c755c25702?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy&tag=v4.14.0-202311021650.p0.g1a646b9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-state-metrics@sha256:54b25a9d7f9f8668a0ad625015fa422a1c3bf39156331f65b0c9d872645c4b85_arm64", + "product": { + "name": "openshift4/ose-kube-state-metrics@sha256:54b25a9d7f9f8668a0ad625015fa422a1c3bf39156331f65b0c9d872645c4b85_arm64", + "product_id": "openshift4/ose-kube-state-metrics@sha256:54b25a9d7f9f8668a0ad625015fa422a1c3bf39156331f65b0c9d872645c4b85_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-state-metrics@sha256:54b25a9d7f9f8668a0ad625015fa422a1c3bf39156331f65b0c9d872645c4b85?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics&tag=v4.14.0-202311021650.p0.gdb0c549.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-marketplace@sha256:c3d3d766ecf8db57608d05b7ab6d4812297aef311ad094639e1a3cf85d32338d_arm64", + "product": { + "name": "openshift4/ose-operator-marketplace@sha256:c3d3d766ecf8db57608d05b7ab6d4812297aef311ad094639e1a3cf85d32338d_arm64", + "product_id": "openshift4/ose-operator-marketplace@sha256:c3d3d766ecf8db57608d05b7ab6d4812297aef311ad094639e1a3cf85d32338d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-marketplace@sha256:c3d3d766ecf8db57608d05b7ab6d4812297aef311ad094639e1a3cf85d32338d?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-operator-marketplace&tag=v4.14.0-202311021650.p0.ga367cea.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-monitoring-plugin-rhel8@sha256:c2f0ebc6a0b1cbf8a4f51036c7559c33b3fe803e482bf1423dd6909a3d60e0c2_arm64", + "product": { + "name": "openshift4/ose-monitoring-plugin-rhel8@sha256:c2f0ebc6a0b1cbf8a4f51036c7559c33b3fe803e482bf1423dd6909a3d60e0c2_arm64", + "product_id": "openshift4/ose-monitoring-plugin-rhel8@sha256:c2f0ebc6a0b1cbf8a4f51036c7559c33b3fe803e482bf1423dd6909a3d60e0c2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-monitoring-plugin-rhel8@sha256:c2f0ebc6a0b1cbf8a4f51036c7559c33b3fe803e482bf1423dd6909a3d60e0c2?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8&tag=v4.14.0-202311021650.p0.g8757197.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-cni@sha256:c193de4be6b8146a47353ba01fc115813795fcebced322e65e8a65dba977746f_arm64", + "product": { + "name": "openshift4/ose-multus-cni@sha256:c193de4be6b8146a47353ba01fc115813795fcebced322e65e8a65dba977746f_arm64", + "product_id": "openshift4/ose-multus-cni@sha256:c193de4be6b8146a47353ba01fc115813795fcebced322e65e8a65dba977746f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-cni@sha256:c193de4be6b8146a47353ba01fc115813795fcebced322e65e8a65dba977746f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-multus-cni&tag=v4.14.0-202311021650.p0.g599223b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-server-rhel8@sha256:94f04a4025dfb3d7738d037293683264466d48169a1b65c92f5e84cd72009f33_arm64", + "product": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:94f04a4025dfb3d7738d037293683264466d48169a1b65c92f5e84cd72009f33_arm64", + "product_id": "openshift4/ose-oauth-server-rhel8@sha256:94f04a4025dfb3d7738d037293683264466d48169a1b65c92f5e84cd72009f33_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-server-rhel8@sha256:94f04a4025dfb3d7738d037293683264466d48169a1b65c92f5e84cd72009f33?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel8&tag=v4.14.0-202311021650.p0.g35f4739.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/oc-mirror-plugin-rhel8@sha256:e18288ecbc016b0945e12ff3b5b0488ca3af1af1db0c2b0c8f5c5fc15449d334_arm64", + "product": { + "name": "openshift4/oc-mirror-plugin-rhel8@sha256:e18288ecbc016b0945e12ff3b5b0488ca3af1af1db0c2b0c8f5c5fc15449d334_arm64", + "product_id": "openshift4/oc-mirror-plugin-rhel8@sha256:e18288ecbc016b0945e12ff3b5b0488ca3af1af1db0c2b0c8f5c5fc15449d334_arm64", + "product_identification_helper": { + "purl": "pkg:oci/oc-mirror-plugin-rhel8@sha256:e18288ecbc016b0945e12ff3b5b0488ca3af1af1db0c2b0c8f5c5fc15449d334?arch=arm64&repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel8&tag=v4.14.0-202311031050.p0.gd124cd5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-builder@sha256:bb707bee6b69b08f309ad3845795edb9a857c32ef9852c46e4068a44d8f4f0de_arm64", + "product": { + "name": "openshift4/ose-docker-builder@sha256:bb707bee6b69b08f309ad3845795edb9a857c32ef9852c46e4068a44d8f4f0de_arm64", + "product_id": "openshift4/ose-docker-builder@sha256:bb707bee6b69b08f309ad3845795edb9a857c32ef9852c46e4068a44d8f4f0de_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-builder@sha256:bb707bee6b69b08f309ad3845795edb9a857c32ef9852c46e4068a44d8f4f0de?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-docker-builder&tag=v4.14.0-202311071732.p0.g720efaa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli@sha256:75271af6ac62c1c3f7e5db8f96d31e30ef958fa506c1d60635660c6fcbcc7b00_arm64", + "product": { + "name": "openshift4/ose-cli@sha256:75271af6ac62c1c3f7e5db8f96d31e30ef958fa506c1d60635660c6fcbcc7b00_arm64", + "product_id": "openshift4/ose-cli@sha256:75271af6ac62c1c3f7e5db8f96d31e30ef958fa506c1d60635660c6fcbcc7b00_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli@sha256:75271af6ac62c1c3f7e5db8f96d31e30ef958fa506c1d60635660c6fcbcc7b00?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cli&tag=v4.14.0-202311021650.p0.g9b1e0d2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console@sha256:b2ddee1ad616ac00d6b81a5c5b55108cc8f465f696081b01201c0e7638e2b149_arm64", + "product": { + "name": "openshift4/ose-console@sha256:b2ddee1ad616ac00d6b81a5c5b55108cc8f465f696081b01201c0e7638e2b149_arm64", + "product_id": "openshift4/ose-console@sha256:b2ddee1ad616ac00d6b81a5c5b55108cc8f465f696081b01201c0e7638e2b149_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-console@sha256:b2ddee1ad616ac00d6b81a5c5b55108cc8f465f696081b01201c0e7638e2b149?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-console&tag=v4.14.0-202311061131.p0.g92b8759.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console-operator@sha256:ae06d61f228bcfd7fb6ccf6017da73e3c91e6125ad3aa965b59f3e1fe9ddbf0f_arm64", + "product": { + "name": "openshift4/ose-console-operator@sha256:ae06d61f228bcfd7fb6ccf6017da73e3c91e6125ad3aa965b59f3e1fe9ddbf0f_arm64", + "product_id": "openshift4/ose-console-operator@sha256:ae06d61f228bcfd7fb6ccf6017da73e3c91e6125ad3aa965b59f3e1fe9ddbf0f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-console-operator@sha256:ae06d61f228bcfd7fb6ccf6017da73e3c91e6125ad3aa965b59f3e1fe9ddbf0f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-console-operator&tag=v4.14.0-202311021650.p0.g966e915.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-deployer@sha256:f0b1ac989e9981a52111de6b04a7eee7063246f1aceeae4207d1572b89b9a682_arm64", + "product": { + "name": "openshift4/ose-deployer@sha256:f0b1ac989e9981a52111de6b04a7eee7063246f1aceeae4207d1572b89b9a682_arm64", + "product_id": "openshift4/ose-deployer@sha256:f0b1ac989e9981a52111de6b04a7eee7063246f1aceeae4207d1572b89b9a682_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-deployer@sha256:f0b1ac989e9981a52111de6b04a7eee7063246f1aceeae4207d1572b89b9a682?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-deployer&tag=v4.14.0-202311021650.p0.g9b1e0d2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-haproxy-router@sha256:29c1c4ba207986035e35197f15cd452682ed91ecfc796cbaf4bbb3bf8b83c2fe_arm64", + "product": { + "name": "openshift4/ose-haproxy-router@sha256:29c1c4ba207986035e35197f15cd452682ed91ecfc796cbaf4bbb3bf8b83c2fe_arm64", + "product_id": "openshift4/ose-haproxy-router@sha256:29c1c4ba207986035e35197f15cd452682ed91ecfc796cbaf4bbb3bf8b83c2fe_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-haproxy-router@sha256:29c1c4ba207986035e35197f15cd452682ed91ecfc796cbaf4bbb3bf8b83c2fe?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-haproxy-router&tag=v4.14.0-202311021650.p0.gb3af193.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-keepalived-ipfailover@sha256:cc0901cb2e99c7ce55a6493802adb5ed4dc3f1b69372c62003ae32dcd3f10dea_arm64", + "product": { + "name": "openshift4/ose-keepalived-ipfailover@sha256:cc0901cb2e99c7ce55a6493802adb5ed4dc3f1b69372c62003ae32dcd3f10dea_arm64", + "product_id": "openshift4/ose-keepalived-ipfailover@sha256:cc0901cb2e99c7ce55a6493802adb5ed4dc3f1b69372c62003ae32dcd3f10dea_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-keepalived-ipfailover@sha256:cc0901cb2e99c7ce55a6493802adb5ed4dc3f1b69372c62003ae32dcd3f10dea?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover&tag=v4.14.0-202311021650.p0.gf08cee3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-pod@sha256:9900bb051e5469eaf260dbfbeaa0965d6584d3a0e64f21ea065035de749412e0_arm64", + "product": { + "name": "openshift4/ose-pod@sha256:9900bb051e5469eaf260dbfbeaa0965d6584d3a0e64f21ea065035de749412e0_arm64", + "product_id": "openshift4/ose-pod@sha256:9900bb051e5469eaf260dbfbeaa0965d6584d3a0e64f21ea065035de749412e0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-pod@sha256:9900bb051e5469eaf260dbfbeaa0965d6584d3a0e64f21ea065035de749412e0?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-pod&tag=v4.14.0-202311021650.p0.gf67aeb3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-registry@sha256:8328a8e40208fcb3fc3e678540728c99592e00964e2f5292344869905b96f2ac_arm64", + "product": { + "name": "openshift4/ose-docker-registry@sha256:8328a8e40208fcb3fc3e678540728c99592e00964e2f5292344869905b96f2ac_arm64", + "product_id": "openshift4/ose-docker-registry@sha256:8328a8e40208fcb3fc3e678540728c99592e00964e2f5292344869905b96f2ac_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-registry@sha256:8328a8e40208fcb3fc3e678540728c99592e00964e2f5292344869905b96f2ac?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-docker-registry&tag=v4.14.0-202311021650.p0.g5e7788a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tests@sha256:a35516189492530b5a39e31673c0768f36742129aea8e76f0980c0e9cb4772cc_arm64", + "product": { + "name": "openshift4/ose-tests@sha256:a35516189492530b5a39e31673c0768f36742129aea8e76f0980c0e9cb4772cc_arm64", + "product_id": "openshift4/ose-tests@sha256:a35516189492530b5a39e31673c0768f36742129aea8e76f0980c0e9cb4772cc_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-tests@sha256:a35516189492530b5a39e31673c0768f36742129aea8e76f0980c0e9cb4772cc?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-tests&tag=v4.14.0-202311021650.p0.g81a21f1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:8dd805285bb46e58fda281f5965e62d871f74358e08a73bbede40c1988d9de11_arm64", + "product": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:8dd805285bb46e58fda281f5965e62d871f74358e08a73bbede40c1988d9de11_arm64", + "product_id": "openshift4/ose-openshift-state-metrics-rhel8@sha256:8dd805285bb46e58fda281f5965e62d871f74358e08a73bbede40c1988d9de11_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-state-metrics-rhel8@sha256:8dd805285bb46e58fda281f5965e62d871f74358e08a73bbede40c1988d9de11?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8&tag=v4.14.0-202311021650.p0.gdff4b0f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-lifecycle-manager@sha256:0b329092cabb78ee4f48d6612a97dfce721dbafc2552a372c66466b6b649afcc_arm64", + "product": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:0b329092cabb78ee4f48d6612a97dfce721dbafc2552a372c66466b6b649afcc_arm64", + "product_id": "openshift4/ose-operator-lifecycle-manager@sha256:0b329092cabb78ee4f48d6612a97dfce721dbafc2552a372c66466b6b649afcc_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-lifecycle-manager@sha256:0b329092cabb78ee4f48d6612a97dfce721dbafc2552a372c66466b6b649afcc?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager&tag=v4.14.0-202311021650.p0.g48d1541.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-registry@sha256:81d3d8079e16386df593f4a93e9e0e937fa1a58c4d593803eaf0ee6abe07edc2_arm64", + "product": { + "name": "openshift4/ose-operator-registry@sha256:81d3d8079e16386df593f4a93e9e0e937fa1a58c4d593803eaf0ee6abe07edc2_arm64", + "product_id": "openshift4/ose-operator-registry@sha256:81d3d8079e16386df593f4a93e9e0e937fa1a58c4d593803eaf0ee6abe07edc2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-registry@sha256:81d3d8079e16386df593f4a93e9e0e937fa1a58c4d593803eaf0ee6abe07edc2?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-operator-registry&tag=v4.14.0-202311021650.p0.g48d1541.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:ccec14572b7faefe8af5927b6a6c95b2391f3c2344e1781b3fb603707acb197e_arm64", + "product": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:ccec14572b7faefe8af5927b6a6c95b2391f3c2344e1781b3fb603707acb197e_arm64", + "product_id": "openshift4/ose-agent-installer-api-server-rhel8@sha256:ccec14572b7faefe8af5927b6a6c95b2391f3c2344e1781b3fb603707acb197e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-api-server-rhel8@sha256:ccec14572b7faefe8af5927b6a6c95b2391f3c2344e1781b3fb603707acb197e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8&tag=v4.14.0-202311021650.p0.g4e1a1e5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:e439f6561dfe415508bc15e9121226737b6fa0bf243f1b21780f543d0e12d15b_arm64", + "product": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:e439f6561dfe415508bc15e9121226737b6fa0bf243f1b21780f543d0e12d15b_arm64", + "product_id": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:e439f6561dfe415508bc15e9121226737b6fa0bf243f1b21780f543d0e12d15b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-csr-approver-rhel8@sha256:e439f6561dfe415508bc15e9121226737b6fa0bf243f1b21780f543d0e12d15b?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8&tag=v4.14.0-202311021650.p0.g9fd99e3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:dac23e99d08b9a8eec870a800355eb9fcc724578a9caa4975553b013ac3760cc_arm64", + "product": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:dac23e99d08b9a8eec870a800355eb9fcc724578a9caa4975553b013ac3760cc_arm64", + "product_id": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:dac23e99d08b9a8eec870a800355eb9fcc724578a9caa4975553b013ac3760cc_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-orchestrator-rhel8@sha256:dac23e99d08b9a8eec870a800355eb9fcc724578a9caa4975553b013ac3760cc?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8&tag=v4.14.0-202311021650.p0.g9fd99e3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-utils-rhel8@sha256:f7f21d54bca4f0faa4fe80aba2bf0b62967557e7befb27928a0bc56e9e56211f_arm64", + "product": { + "name": "openshift4/ose-agent-installer-utils-rhel8@sha256:f7f21d54bca4f0faa4fe80aba2bf0b62967557e7befb27928a0bc56e9e56211f_arm64", + "product_id": "openshift4/ose-agent-installer-utils-rhel8@sha256:f7f21d54bca4f0faa4fe80aba2bf0b62967557e7befb27928a0bc56e9e56211f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-utils-rhel8@sha256:f7f21d54bca4f0faa4fe80aba2bf0b62967557e7befb27928a0bc56e9e56211f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel8&tag=v4.14.0-202311021650.p0.gad85376.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:4578779fb7c024bdc50789f3a6d6ce924919e0d16657ef61567f458db4f73b20_arm64", + "product": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:4578779fb7c024bdc50789f3a6d6ce924919e0d16657ef61567f458db4f73b20_arm64", + "product_id": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:4578779fb7c024bdc50789f3a6d6ce924919e0d16657ef61567f458db4f73b20_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-apiserver-network-proxy-rhel8@sha256:4578779fb7c024bdc50789f3a6d6ce924919e0d16657ef61567f458db4f73b20?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8&tag=v4.14.0-202311021650.p0.g15cd434.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:032150a13e64820e3b411c574f132e2aa5f11479cfe7599fa78832f5ac8ed515_arm64", + "product": { + "name": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:032150a13e64820e3b411c574f132e2aa5f11479cfe7599fa78832f5ac8ed515_arm64", + "product_id": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:032150a13e64820e3b411c574f132e2aa5f11479cfe7599fa78832f5ac8ed515_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-cloud-controller-manager-rhel8@sha256:032150a13e64820e3b411c574f132e2aa5f11479cfe7599fa78832f5ac8ed515?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.g0a4f2a0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:d6ab444f86caff2b4671ef94735a4825caace99f7343f53f75a8dd6878e8a332_arm64", + "product": { + "name": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:d6ab444f86caff2b4671ef94735a4825caace99f7343f53f75a8dd6878e8a332_arm64", + "product_id": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:d6ab444f86caff2b4671ef94735a4825caace99f7343f53f75a8dd6878e8a332_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-cluster-api-controllers-rhel8@sha256:d6ab444f86caff2b4671ef94735a4825caace99f7343f53f75a8dd6878e8a332?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8&tag=v4.14.0-202311021650.p0.ga7518d1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:30700ead43f0f6f12299866530152100e1084a4bff11839630572500f1751cd8_arm64", + "product": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:30700ead43f0f6f12299866530152100e1084a4bff11839630572500f1751cd8_arm64", + "product_id": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:30700ead43f0f6f12299866530152100e1084a4bff11839630572500f1751cd8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel8@sha256:30700ead43f0f6f12299866530152100e1084a4bff11839630572500f1751cd8?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.g2e2e277.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:431a02b72ff7f4545565437d8d6de5b2c602a97d323cb1f18e563cf4a3c524c3_arm64", + "product": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:431a02b72ff7f4545565437d8d6de5b2c602a97d323cb1f18e563cf4a3c524c3_arm64", + "product_id": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:431a02b72ff7f4545565437d8d6de5b2c602a97d323cb1f18e563cf4a3c524c3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel8-operator@sha256:431a02b72ff7f4545565437d8d6de5b2c602a97d323cb1f18e563cf4a3c524c3?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator&tag=v4.14.0-202311021650.p0.g024bec5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:9312a415e259dbbb21002f0eb40de6a921cdb52901517f8bed34140d474ab2c6_arm64", + "product": { + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:9312a415e259dbbb21002f0eb40de6a921cdb52901517f8bed34140d474ab2c6_arm64", + "product_id": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:9312a415e259dbbb21002f0eb40de6a921cdb52901517f8bed34140d474ab2c6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-pod-identity-webhook-rhel8@sha256:9312a415e259dbbb21002f0eb40de6a921cdb52901517f8bed34140d474ab2c6?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8&tag=v4.14.0-202311031646.p0.g8cc7a27.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:3f0abfa288fd897afeed7bc96f85e8039c663a919d5a06dabe42540db038dffb_arm64", + "product": { + "name": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:3f0abfa288fd897afeed7bc96f85e8039c663a919d5a06dabe42540db038dffb_arm64", + "product_id": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:3f0abfa288fd897afeed7bc96f85e8039c663a919d5a06dabe42540db038dffb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-cloud-controller-manager-rhel8@sha256:3f0abfa288fd897afeed7bc96f85e8039c663a919d5a06dabe42540db038dffb?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.gcca9a84.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:11dc42445089e055e0d71263385b9cac46bcfb210d7c23e5db300759eca6a1e0_arm64", + "product": { + "name": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:11dc42445089e055e0d71263385b9cac46bcfb210d7c23e5db300759eca6a1e0_arm64", + "product_id": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:11dc42445089e055e0d71263385b9cac46bcfb210d7c23e5db300759eca6a1e0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-cloud-node-manager-rhel8@sha256:11dc42445089e055e0d71263385b9cac46bcfb210d7c23e5db300759eca6a1e0?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8&tag=v4.14.0-202311021650.p0.gcca9a84.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:d0567f3bfaa94c1abbc1e8e68fe42f433aa68e08d70428f130b1e1013044c520_arm64", + "product": { + "name": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:d0567f3bfaa94c1abbc1e8e68fe42f433aa68e08d70428f130b1e1013044c520_arm64", + "product_id": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:d0567f3bfaa94c1abbc1e8e68fe42f433aa68e08d70428f130b1e1013044c520_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-cluster-api-controllers-rhel8@sha256:d0567f3bfaa94c1abbc1e8e68fe42f433aa68e08d70428f130b1e1013044c520?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8&tag=v4.14.0-202311021650.p0.g7ad2773.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:3903372cd26751d2bd7a5a3904046ec20b3cee327c6e1e6b9a84a988e70eb4ea_arm64", + "product": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:3903372cd26751d2bd7a5a3904046ec20b3cee327c6e1e6b9a84a988e70eb4ea_arm64", + "product_id": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:3903372cd26751d2bd7a5a3904046ec20b3cee327c6e1e6b9a84a988e70eb4ea_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-disk-csi-driver-rhel8@sha256:3903372cd26751d2bd7a5a3904046ec20b3cee327c6e1e6b9a84a988e70eb4ea?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.gb19eec1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:548380aa00d3936ef553ffb8f63d54513a3a0b9f112bacf7a3b01aa7f290d1bb_arm64", + "product": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:548380aa00d3936ef553ffb8f63d54513a3a0b9f112bacf7a3b01aa7f290d1bb_arm64", + "product_id": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:548380aa00d3936ef553ffb8f63d54513a3a0b9f112bacf7a3b01aa7f290d1bb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-disk-csi-driver-rhel8-operator@sha256:548380aa00d3936ef553ffb8f63d54513a3a0b9f112bacf7a3b01aa7f290d1bb?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator&tag=v4.14.0-202311021650.p0.g3e2ddb3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:c94b3054514be12aeaa2c31d146e2ed496eb1b1b09697580feab74d31d361bfb_arm64", + "product": { + "name": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:c94b3054514be12aeaa2c31d146e2ed496eb1b1b09697580feab74d31d361bfb_arm64", + "product_id": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:c94b3054514be12aeaa2c31d146e2ed496eb1b1b09697580feab74d31d361bfb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-file-csi-driver-rhel8@sha256:c94b3054514be12aeaa2c31d146e2ed496eb1b1b09697580feab74d31d361bfb?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.gf401f53.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:921a3c9166e5ea1d12542d5182fe2aa9e8cbc5240c8d634dd0fc3cb204cc9053_arm64", + "product": { + "name": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:921a3c9166e5ea1d12542d5182fe2aa9e8cbc5240c8d634dd0fc3cb204cc9053_arm64", + "product_id": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:921a3c9166e5ea1d12542d5182fe2aa9e8cbc5240c8d634dd0fc3cb204cc9053_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-file-csi-driver-operator-rhel8@sha256:921a3c9166e5ea1d12542d5182fe2aa9e8cbc5240c8d634dd0fc3cb204cc9053?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8&tag=v4.14.0-202311021650.p0.g43838ae.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:66a7dc3df3b76d60940555e8f70f6bd3c26b2242634e9449b85872604ffbb099_arm64", + "product": { + "name": "openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:66a7dc3df3b76d60940555e8f70f6bd3c26b2242634e9449b85872604ffbb099_arm64", + "product_id": "openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:66a7dc3df3b76d60940555e8f70f6bd3c26b2242634e9449b85872604ffbb099_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-workload-identity-webhook-rhel8@sha256:66a7dc3df3b76d60940555e8f70f6bd3c26b2242634e9449b85872604ffbb099?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8&tag=v4.14.0-202311021650.p0.ga474b2b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:36d605454000950d070dfa1580c59b389357b5485068b3c3f71b4b56b8131059_arm64", + "product": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:36d605454000950d070dfa1580c59b389357b5485068b3c3f71b4b56b8131059_arm64", + "product_id": "openshift4/ose-baremetal-installer-rhel8@sha256:36d605454000950d070dfa1580c59b389357b5485068b3c3f71b4b56b8131059_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-installer-rhel8@sha256:36d605454000950d070dfa1580c59b389357b5485068b3c3f71b4b56b8131059?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8&tag=v4.14.0-202311040828.p0.gc0f108b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:659a392d0e6419d3bede4ed7ff2178a173d7371a6bc3b291dd21d16b74519d10_arm64", + "product": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:659a392d0e6419d3bede4ed7ff2178a173d7371a6bc3b291dd21d16b74519d10_arm64", + "product_id": "openshift4/ose-baremetal-rhel8-operator@sha256:659a392d0e6419d3bede4ed7ff2178a173d7371a6bc3b291dd21d16b74519d10_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-rhel8-operator@sha256:659a392d0e6419d3bede4ed7ff2178a173d7371a6bc3b291dd21d16b74519d10?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel8-operator&tag=v4.14.0-202311021650.p0.g8643f32.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:fa64eb5bd891c83fc493930c7ebf1e1c8f5d7099ead756a6d9c61bd044547b6c_arm64", + "product": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:fa64eb5bd891c83fc493930c7ebf1e1c8f5d7099ead756a6d9c61bd044547b6c_arm64", + "product_id": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:fa64eb5bd891c83fc493930c7ebf1e1c8f5d7099ead756a6d9c61bd044547b6c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-runtimecfg-rhel8@sha256:fa64eb5bd891c83fc493930c7ebf1e1c8f5d7099ead756a6d9c61bd044547b6c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8&tag=v4.14.0-202311021650.p0.ge7fa0f2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli-artifacts@sha256:6ee85d1090673a1422c6f73fdb402807780bb5fec28d494ec15cba621540b700_arm64", + "product": { + "name": "openshift4/ose-cli-artifacts@sha256:6ee85d1090673a1422c6f73fdb402807780bb5fec28d494ec15cba621540b700_arm64", + "product_id": "openshift4/ose-cli-artifacts@sha256:6ee85d1090673a1422c6f73fdb402807780bb5fec28d494ec15cba621540b700_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli-artifacts@sha256:6ee85d1090673a1422c6f73fdb402807780bb5fec28d494ec15cba621540b700?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cli-artifacts&tag=v4.14.0-202311021650.p0.g9b1e0d2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-credential-operator@sha256:f7b9c671b078ea17f5e92176fdafb600c5f51ce44a2d7afb4298c093ec7a726a_arm64", + "product": { + "name": "openshift4/ose-cloud-credential-operator@sha256:f7b9c671b078ea17f5e92176fdafb600c5f51ce44a2d7afb4298c093ec7a726a_arm64", + "product_id": "openshift4/ose-cloud-credential-operator@sha256:f7b9c671b078ea17f5e92176fdafb600c5f51ce44a2d7afb4298c093ec7a726a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-credential-operator@sha256:f7b9c671b078ea17f5e92176fdafb600c5f51ce44a2d7afb4298c093ec7a726a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cloud-credential-operator&tag=v4.14.0-202311031646.p0.ge70c0de.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:96ef562ba7f6216d8371d1fdf83fa7ebadf4d71bf2d4ec3fd3693a7c84f1b535_arm64", + "product": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:96ef562ba7f6216d8371d1fdf83fa7ebadf4d71bf2d4ec3fd3693a7c84f1b535_arm64", + "product_id": "openshift4/cloud-network-config-controller-rhel8@sha256:96ef562ba7f6216d8371d1fdf83fa7ebadf4d71bf2d4ec3fd3693a7c84f1b535_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cloud-network-config-controller-rhel8@sha256:96ef562ba7f6216d8371d1fdf83fa7ebadf4d71bf2d4ec3fd3693a7c84f1b535?arch=arm64&repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel8&tag=v4.14.0-202311021650.p0.g9cb1bbd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-api-rhel8@sha256:7c0acac220837c61c10da400975e2e74143c47517e303cb9690fbab89c4c59f5_arm64", + "product": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:7c0acac220837c61c10da400975e2e74143c47517e303cb9690fbab89c4c59f5_arm64", + "product_id": "openshift4/ose-cluster-api-rhel8@sha256:7c0acac220837c61c10da400975e2e74143c47517e303cb9690fbab89c4c59f5_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-api-rhel8@sha256:7c0acac220837c61c10da400975e2e74143c47517e303cb9690fbab89c4c59f5?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel8&tag=v4.14.0-202311021650.p0.gae83c55.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-authentication-operator@sha256:374833a8af79806a2f3b1b65f4ed5bb75e6ff07d5b0bba9302d2c796da027c96_arm64", + "product": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:374833a8af79806a2f3b1b65f4ed5bb75e6ff07d5b0bba9302d2c796da027c96_arm64", + "product_id": "openshift4/ose-cluster-authentication-operator@sha256:374833a8af79806a2f3b1b65f4ed5bb75e6ff07d5b0bba9302d2c796da027c96_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-authentication-operator@sha256:374833a8af79806a2f3b1b65f4ed5bb75e6ff07d5b0bba9302d2c796da027c96?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-operator&tag=v4.14.0-202311021650.p0.g9ad3782.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:1fa331512719dcc98aa3ad80ef0de7b192a7bc69e661aef3baa1e57ac506e895_arm64", + "product": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:1fa331512719dcc98aa3ad80ef0de7b192a7bc69e661aef3baa1e57ac506e895_arm64", + "product_id": "openshift4/ose-cluster-autoscaler-operator@sha256:1fa331512719dcc98aa3ad80ef0de7b192a7bc69e661aef3baa1e57ac506e895_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler-operator@sha256:1fa331512719dcc98aa3ad80ef0de7b192a7bc69e661aef3baa1e57ac506e895?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-operator&tag=v4.14.0-202311021650.p0.g01c3b09.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:2384785766cd12daa4a09c8ae7d003a9f3619c04b6951babf0c3bbd717520af1_arm64", + "product": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:2384785766cd12daa4a09c8ae7d003a9f3619c04b6951babf0c3bbd717520af1_arm64", + "product_id": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:2384785766cd12daa4a09c8ae7d003a9f3619c04b6951babf0c3bbd717520af1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-baremetal-operator-rhel8@sha256:2384785766cd12daa4a09c8ae7d003a9f3619c04b6951babf0c3bbd717520af1?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8&tag=v4.14.0-202311021650.p0.g582b745.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-bootstrap@sha256:80ad252b86219621f54a88624113e39b6d5e912018b6a7d3ed66f2916d26a48b_arm64", + "product": { + "name": "openshift4/ose-cluster-bootstrap@sha256:80ad252b86219621f54a88624113e39b6d5e912018b6a7d3ed66f2916d26a48b_arm64", + "product_id": "openshift4/ose-cluster-bootstrap@sha256:80ad252b86219621f54a88624113e39b6d5e912018b6a7d3ed66f2916d26a48b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-bootstrap@sha256:80ad252b86219621f54a88624113e39b6d5e912018b6a7d3ed66f2916d26a48b?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap&tag=v4.14.0-202311021650.p0.g93fba13.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:9574932d864518c0c05a44193f829a0865691f053fcdbfa50e329ed83ee6e6bb_arm64", + "product": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:9574932d864518c0c05a44193f829a0865691f053fcdbfa50e329ed83ee6e6bb_arm64", + "product_id": "openshift4/ose-cluster-capi-rhel8-operator@sha256:9574932d864518c0c05a44193f829a0865691f053fcdbfa50e329ed83ee6e6bb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-rhel8-operator@sha256:9574932d864518c0c05a44193f829a0865691f053fcdbfa50e329ed83ee6e6bb?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator&tag=v4.14.0-202311021650.p0.gb4c4fb1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:9574932d864518c0c05a44193f829a0865691f053fcdbfa50e329ed83ee6e6bb_arm64", + "product": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:9574932d864518c0c05a44193f829a0865691f053fcdbfa50e329ed83ee6e6bb_arm64", + "product_id": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:9574932d864518c0c05a44193f829a0865691f053fcdbfa50e329ed83ee6e6bb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-operator-container-rhel8@sha256:9574932d864518c0c05a44193f829a0865691f053fcdbfa50e329ed83ee6e6bb?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8&tag=v4.14.0-202311021650.p0.gb4c4fb1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:25be594a674121d6699525b93fe5af76b5085850f981af19e3d3a7a45a715030_arm64", + "product": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:25be594a674121d6699525b93fe5af76b5085850f981af19e3d3a7a45a715030_arm64", + "product_id": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:25be594a674121d6699525b93fe5af76b5085850f981af19e3d3a7a45a715030_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:25be594a674121d6699525b93fe5af76b5085850f981af19e3d3a7a45a715030?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8&tag=v4.14.0-202311021650.p0.g785ecef.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-config-operator@sha256:8e5cb6963ea25d64183f401a8d972051481b6f522051904b0571d6db851fa3f0_arm64", + "product": { + "name": "openshift4/ose-cluster-config-operator@sha256:8e5cb6963ea25d64183f401a8d972051481b6f522051904b0571d6db851fa3f0_arm64", + "product_id": "openshift4/ose-cluster-config-operator@sha256:8e5cb6963ea25d64183f401a8d972051481b6f522051904b0571d6db851fa3f0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-config-operator@sha256:8e5cb6963ea25d64183f401a8d972051481b6f522051904b0571d6db851fa3f0?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-config-operator&tag=v4.14.0-202311031646.p0.gd069e14.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:daaa40689e29db55556af2ef5aab34cba00ea0e02f8f124b4d4eec93265fbada_arm64", + "product": { + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:daaa40689e29db55556af2ef5aab34cba00ea0e02f8f124b4d4eec93265fbada_arm64", + "product_id": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:daaa40689e29db55556af2ef5aab34cba00ea0e02f8f124b4d4eec93265fbada_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:daaa40689e29db55556af2ef5aab34cba00ea0e02f8f124b4d4eec93265fbada?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8&tag=v4.14.0-202311021650.p0.g0455a74.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:75b557cb8df5c28865436d705f501e12a197c815c046b3669d722e83d2abf0d4_arm64", + "product": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:75b557cb8df5c28865436d705f501e12a197c815c046b3669d722e83d2abf0d4_arm64", + "product_id": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:75b557cb8df5c28865436d705f501e12a197c815c046b3669d722e83d2abf0d4_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:75b557cb8df5c28865436d705f501e12a197c815c046b3669d722e83d2abf0d4?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator&tag=v4.14.0-202311021650.p0.g5d8bae8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-dns-operator@sha256:19efeb229aca92ef2cfa95ea0250aaef92ab6c664e9b5230b75817790523a404_arm64", + "product": { + "name": "openshift4/ose-cluster-dns-operator@sha256:19efeb229aca92ef2cfa95ea0250aaef92ab6c664e9b5230b75817790523a404_arm64", + "product_id": "openshift4/ose-cluster-dns-operator@sha256:19efeb229aca92ef2cfa95ea0250aaef92ab6c664e9b5230b75817790523a404_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-dns-operator@sha256:19efeb229aca92ef2cfa95ea0250aaef92ab6c664e9b5230b75817790523a404?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-dns-operator&tag=v4.14.0-202311021650.p0.g5553a22.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-image-registry-operator@sha256:6d4761c212283b5119660e2e64d1d9ab8423911ba16571e414d28ea03f9c49d1_arm64", + "product": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:6d4761c212283b5119660e2e64d1d9ab8423911ba16571e414d28ea03f9c49d1_arm64", + "product_id": "openshift4/ose-cluster-image-registry-operator@sha256:6d4761c212283b5119660e2e64d1d9ab8423911ba16571e414d28ea03f9c49d1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-image-registry-operator@sha256:6d4761c212283b5119660e2e64d1d9ab8423911ba16571e414d28ea03f9c49d1?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-operator&tag=v4.14.0-202311071209.p0.gd27b918.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-ingress-operator@sha256:2598dc215e83c1caf3b1cc7c4c1293f60f088e5459102fc9ac7cd9b06caf51c0_arm64", + "product": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:2598dc215e83c1caf3b1cc7c4c1293f60f088e5459102fc9ac7cd9b06caf51c0_arm64", + "product_id": "openshift4/ose-cluster-ingress-operator@sha256:2598dc215e83c1caf3b1cc7c4c1293f60f088e5459102fc9ac7cd9b06caf51c0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-ingress-operator@sha256:2598dc215e83c1caf3b1cc7c4c1293f60f088e5459102fc9ac7cd9b06caf51c0?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-operator&tag=v4.14.0-202311021650.p0.gd876f5a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:e046be2e1a61b2091f79e555c50c0a9e7e1893e0766d2397df619d0264551cd8_arm64", + "product": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:e046be2e1a61b2091f79e555c50c0a9e7e1893e0766d2397df619d0264551cd8_arm64", + "product_id": "openshift4/ose-cluster-kube-apiserver-operator@sha256:e046be2e1a61b2091f79e555c50c0a9e7e1893e0766d2397df619d0264551cd8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-apiserver-operator@sha256:e046be2e1a61b2091f79e555c50c0a9e7e1893e0766d2397df619d0264551cd8?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator&tag=v4.14.0-202311031050.p0.gd52dbad.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:632694647328881d00d9ef596fb196ecc1b01c3a2233313017883b3407118816_arm64", + "product": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:632694647328881d00d9ef596fb196ecc1b01c3a2233313017883b3407118816_arm64", + "product_id": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:632694647328881d00d9ef596fb196ecc1b01c3a2233313017883b3407118816_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel8-operator@sha256:632694647328881d00d9ef596fb196ecc1b01c3a2233313017883b3407118816?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator&tag=v4.14.0-202311021650.p0.gb287d08.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:2e5e69fd26323f8e1add4592edb3cef8eec90cab690cbc76ad6c163741789bbd_arm64", + "product": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:2e5e69fd26323f8e1add4592edb3cef8eec90cab690cbc76ad6c163741789bbd_arm64", + "product_id": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:2e5e69fd26323f8e1add4592edb3cef8eec90cab690cbc76ad6c163741789bbd_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-controller-manager-operator@sha256:2e5e69fd26323f8e1add4592edb3cef8eec90cab690cbc76ad6c163741789bbd?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator&tag=v4.14.0-202311021650.p0.gbc9ef03.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:c6897bc2793adcbbf241b9bb0291f71e9d1c010d1afa095e694d9d216f7ff2a3_arm64", + "product": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:c6897bc2793adcbbf241b9bb0291f71e9d1c010d1afa095e694d9d216f7ff2a3_arm64", + "product_id": "openshift4/ose-cluster-kube-scheduler-operator@sha256:c6897bc2793adcbbf241b9bb0291f71e9d1c010d1afa095e694d9d216f7ff2a3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-scheduler-operator@sha256:c6897bc2793adcbbf241b9bb0291f71e9d1c010d1afa095e694d9d216f7ff2a3?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator&tag=v4.14.0-202311021650.p0.g6e43991.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:12a07b34fd2fd554f73db16d1572977640ea911d39fb44bea5650b220291ba77_arm64", + "product": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:12a07b34fd2fd554f73db16d1572977640ea911d39fb44bea5650b220291ba77_arm64", + "product_id": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:12a07b34fd2fd554f73db16d1572977640ea911d39fb44bea5650b220291ba77_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:12a07b34fd2fd554f73db16d1572977640ea911d39fb44bea5650b220291ba77?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator&tag=v4.14.0-202311071511.p0.g9cd9922.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-machine-approver@sha256:bcb768ad0621338fa1efb3e3ea6f33c5707fff9a79bef96f8c1e0d051b9ae27c_arm64", + "product": { + "name": "openshift4/ose-cluster-machine-approver@sha256:bcb768ad0621338fa1efb3e3ea6f33c5707fff9a79bef96f8c1e0d051b9ae27c_arm64", + "product_id": "openshift4/ose-cluster-machine-approver@sha256:bcb768ad0621338fa1efb3e3ea6f33c5707fff9a79bef96f8c1e0d051b9ae27c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-machine-approver@sha256:bcb768ad0621338fa1efb3e3ea6f33c5707fff9a79bef96f8c1e0d051b9ae27c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver&tag=v4.14.0-202311021650.p0.g926c904.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-olm-operator-rhel8@sha256:228c8ce521b4d9c49399b4d5c74c7f337b9d3fa146f3290e15e8f88045304323_arm64", + "product": { + "name": "openshift4/ose-cluster-olm-operator-rhel8@sha256:228c8ce521b4d9c49399b4d5c74c7f337b9d3fa146f3290e15e8f88045304323_arm64", + "product_id": "openshift4/ose-cluster-olm-operator-rhel8@sha256:228c8ce521b4d9c49399b4d5c74c7f337b9d3fa146f3290e15e8f88045304323_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-olm-operator-rhel8@sha256:228c8ce521b4d9c49399b4d5c74c7f337b9d3fa146f3290e15e8f88045304323?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8&tag=v4.14.0-202311021650.p0.g9e05f32.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:0d65b370c3d27f44f6e78ca118ff5ea9582e5e0542588614c6bb1de6b0d75409_arm64", + "product": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:0d65b370c3d27f44f6e78ca118ff5ea9582e5e0542588614c6bb1de6b0d75409_arm64", + "product_id": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:0d65b370c3d27f44f6e78ca118ff5ea9582e5e0542588614c6bb1de6b0d75409_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-apiserver-operator@sha256:0d65b370c3d27f44f6e78ca118ff5ea9582e5e0542588614c6bb1de6b0d75409?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator&tag=v4.14.0-202311021650.p0.g8bd8602.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:5c5e7671c3b07fa841ccb766b078975e356fdfcf285e19a084bf3eb00b62208f_arm64", + "product": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:5c5e7671c3b07fa841ccb766b078975e356fdfcf285e19a084bf3eb00b62208f_arm64", + "product_id": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:5c5e7671c3b07fa841ccb766b078975e356fdfcf285e19a084bf3eb00b62208f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-controller-manager-operator@sha256:5c5e7671c3b07fa841ccb766b078975e356fdfcf285e19a084bf3eb00b62208f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator&tag=v4.14.0-202311021650.p0.g04cec68.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:931c190bb6e84a0df69bf5531ee505559f244622022261bfc6e45a087b140c83_arm64", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:931c190bb6e84a0df69bf5531ee505559f244622022261bfc6e45a087b140c83_arm64", + "product_id": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:931c190bb6e84a0df69bf5531ee505559f244622022261bfc6e45a087b140c83_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8-operator@sha256:931c190bb6e84a0df69bf5531ee505559f244622022261bfc6e45a087b140c83?arch=arm64&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator&tag=v4.14.0-202311021650.p0.g2fa33aa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:0dffff573d7505bfa80dab0e094440854fa328f4bffb4f1e385f23d2c13ba508_arm64", + "product": { + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:0dffff573d7505bfa80dab0e094440854fa328f4bffb4f1e385f23d2c13ba508_arm64", + "product_id": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:0dffff573d7505bfa80dab0e094440854fa328f4bffb4f1e385f23d2c13ba508_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-platform-operators-manager-rhel8@sha256:0dffff573d7505bfa80dab0e094440854fa328f4bffb4f1e385f23d2c13ba508?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8&tag=v4.14.0-202311021650.p0.g08fb27e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:4a462caaebfc64039a99b6d6d13c9150b7be7f9c9b7b35c09988f63b54b34ac7_arm64", + "product": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:4a462caaebfc64039a99b6d6d13c9150b7be7f9c9b7b35c09988f63b54b34ac7_arm64", + "product_id": "openshift4/ose-cluster-policy-controller-rhel8@sha256:4a462caaebfc64039a99b6d6d13c9150b7be7f9c9b7b35c09988f63b54b34ac7_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-policy-controller-rhel8@sha256:4a462caaebfc64039a99b6d6d13c9150b7be7f9c9b7b35c09988f63b54b34ac7?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8&tag=v4.14.0-202311021650.p0.g219f6f6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-samples-operator@sha256:79e7080ff928c8337b481c5b536439d4feb56951b988fe747a88d1d6f75fd826_arm64", + "product": { + "name": "openshift4/ose-cluster-samples-operator@sha256:79e7080ff928c8337b481c5b536439d4feb56951b988fe747a88d1d6f75fd826_arm64", + "product_id": "openshift4/ose-cluster-samples-operator@sha256:79e7080ff928c8337b481c5b536439d4feb56951b988fe747a88d1d6f75fd826_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-samples-operator@sha256:79e7080ff928c8337b481c5b536439d4feb56951b988fe747a88d1d6f75fd826?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-samples-operator&tag=v4.14.0-202311021650.p0.gb5396eb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-storage-operator@sha256:f45da9ae06f203ca16ef6afc4e8ff9b882be4583376b61b240a09af729f0dfe9_arm64", + "product": { + "name": "openshift4/ose-cluster-storage-operator@sha256:f45da9ae06f203ca16ef6afc4e8ff9b882be4583376b61b240a09af729f0dfe9_arm64", + "product_id": "openshift4/ose-cluster-storage-operator@sha256:f45da9ae06f203ca16ef6afc4e8ff9b882be4583376b61b240a09af729f0dfe9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-storage-operator@sha256:f45da9ae06f203ca16ef6afc4e8ff9b882be4583376b61b240a09af729f0dfe9?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-storage-operator&tag=v4.14.0-202311021650.p0.gdbb1514.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-update-keys@sha256:28fa3d35c05d3c7905361fae76f2410c971cbb80f67af080c02ccae1cece8472_arm64", + "product": { + "name": "openshift4/ose-cluster-update-keys@sha256:28fa3d35c05d3c7905361fae76f2410c971cbb80f67af080c02ccae1cece8472_arm64", + "product_id": "openshift4/ose-cluster-update-keys@sha256:28fa3d35c05d3c7905361fae76f2410c971cbb80f67af080c02ccae1cece8472_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-update-keys@sha256:28fa3d35c05d3c7905361fae76f2410c971cbb80f67af080c02ccae1cece8472?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys&tag=v4.14.0-202311021650.p0.g9dd3eed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:d03fdd71c8baa0c0cef357e035c8fd9925e7eaf0a8220e0e886a394a79106d54_arm64", + "product": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:d03fdd71c8baa0c0cef357e035c8fd9925e7eaf0a8220e0e886a394a79106d54_arm64", + "product_id": "openshift4/ose-container-networking-plugins-rhel8@sha256:d03fdd71c8baa0c0cef357e035c8fd9925e7eaf0a8220e0e886a394a79106d54_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-container-networking-plugins-rhel8@sha256:d03fdd71c8baa0c0cef357e035c8fd9925e7eaf0a8220e0e886a394a79106d54?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8&tag=v4.14.0-202311021650.p0.g4633865.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:aa002291d955bd448036dad60e28748d893b97c80e6c6b612153aec2a5feba07_arm64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:aa002291d955bd448036dad60e28748d893b97c80e6c6b612153aec2a5feba07_arm64", + "product_id": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:aa002291d955bd448036dad60e28748d893b97c80e6c6b612153aec2a5feba07_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-rhel8@sha256:aa002291d955bd448036dad60e28748d893b97c80e6c6b612153aec2a5feba07?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8&tag=v4.14.0-202311021650.p0.g740b442.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:765713aa23e515c8fbb62168a170b97676395b2ccaa453ab1ba4f0592e54ba1f_arm64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:765713aa23e515c8fbb62168a170b97676395b2ccaa453ab1ba4f0592e54ba1f_arm64", + "product_id": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:765713aa23e515c8fbb62168a170b97676395b2ccaa453ab1ba4f0592e54ba1f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-operator-rhel8@sha256:765713aa23e515c8fbb62168a170b97676395b2ccaa453ab1ba4f0592e54ba1f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8&tag=v4.14.0-202311021650.p0.g73ddf3e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:5933992632df59ac14d4a06415008dcb0371b16bf7ec77d819b76565941b21da_arm64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:5933992632df59ac14d4a06415008dcb0371b16bf7ec77d819b76565941b21da_arm64", + "product_id": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:5933992632df59ac14d4a06415008dcb0371b16bf7ec77d819b76565941b21da_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-webhook-rhel8@sha256:5933992632df59ac14d4a06415008dcb0371b16bf7ec77d819b76565941b21da?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8&tag=v4.14.0-202311021650.p0.g740b442.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:524c5f7edaa4624bf6206dad2c845a51f725afc575b88f75d7054b7b98637922_arm64", + "product": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:524c5f7edaa4624bf6206dad2c845a51f725afc575b88f75d7054b7b98637922_arm64", + "product_id": "openshift4/ose-csi-external-resizer-rhel8@sha256:524c5f7edaa4624bf6206dad2c845a51f725afc575b88f75d7054b7b98637922_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer-rhel8@sha256:524c5f7edaa4624bf6206dad2c845a51f725afc575b88f75d7054b7b98637922?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8&tag=v4.14.0-202311021650.p0.g59a701a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer@sha256:524c5f7edaa4624bf6206dad2c845a51f725afc575b88f75d7054b7b98637922_arm64", + "product": { + "name": "openshift4/ose-csi-external-resizer@sha256:524c5f7edaa4624bf6206dad2c845a51f725afc575b88f75d7054b7b98637922_arm64", + "product_id": "openshift4/ose-csi-external-resizer@sha256:524c5f7edaa4624bf6206dad2c845a51f725afc575b88f75d7054b7b98637922_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer@sha256:524c5f7edaa4624bf6206dad2c845a51f725afc575b88f75d7054b7b98637922?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer&tag=v4.14.0-202311021650.p0.g59a701a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter@sha256:99beccbeef478abcf3e344535670822646fcd5e116306039de2d11ddc98e8923_arm64", + "product": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:99beccbeef478abcf3e344535670822646fcd5e116306039de2d11ddc98e8923_arm64", + "product_id": "openshift4/ose-csi-external-snapshotter@sha256:99beccbeef478abcf3e344535670822646fcd5e116306039de2d11ddc98e8923_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter@sha256:99beccbeef478abcf3e344535670822646fcd5e116306039de2d11ddc98e8923?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter&tag=v4.14.0-202311021650.p0.g0bf9276.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:99beccbeef478abcf3e344535670822646fcd5e116306039de2d11ddc98e8923_arm64", + "product": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:99beccbeef478abcf3e344535670822646fcd5e116306039de2d11ddc98e8923_arm64", + "product_id": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:99beccbeef478abcf3e344535670822646fcd5e116306039de2d11ddc98e8923_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter-rhel8@sha256:99beccbeef478abcf3e344535670822646fcd5e116306039de2d11ddc98e8923?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8&tag=v4.14.0-202311021650.p0.g0bf9276.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller@sha256:c69db300ab492c864cfd577e392a6d283b25255d07f6c3b11d605051379afafa_arm64", + "product": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:c69db300ab492c864cfd577e392a6d283b25255d07f6c3b11d605051379afafa_arm64", + "product_id": "openshift4/ose-csi-snapshot-controller@sha256:c69db300ab492c864cfd577e392a6d283b25255d07f6c3b11d605051379afafa_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller@sha256:c69db300ab492c864cfd577e392a6d283b25255d07f6c3b11d605051379afafa?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller&tag=v4.14.0-202311021650.p0.g0bf9276.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:c69db300ab492c864cfd577e392a6d283b25255d07f6c3b11d605051379afafa_arm64", + "product": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:c69db300ab492c864cfd577e392a6d283b25255d07f6c3b11d605051379afafa_arm64", + "product_id": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:c69db300ab492c864cfd577e392a6d283b25255d07f6c3b11d605051379afafa_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller-rhel8@sha256:c69db300ab492c864cfd577e392a6d283b25255d07f6c3b11d605051379afafa?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8&tag=v4.14.0-202311021650.p0.g0bf9276.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:2e932cd684ed6acc376615603cc8a84b58185056303c53690833fefbc9cf2fdd_arm64", + "product": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:2e932cd684ed6acc376615603cc8a84b58185056303c53690833fefbc9cf2fdd_arm64", + "product_id": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:2e932cd684ed6acc376615603cc8a84b58185056303c53690833fefbc9cf2fdd_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-validation-webhook-rhel8@sha256:2e932cd684ed6acc376615603cc8a84b58185056303c53690833fefbc9cf2fdd?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8&tag=v4.14.0-202311021650.p0.g0bf9276.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/egress-router-cni-rhel8@sha256:7c00cfc2efb69c54009b7d81e104ff7eca34e4ee29717c310dad20d6ece64bd1_arm64", + "product": { + "name": "openshift4/egress-router-cni-rhel8@sha256:7c00cfc2efb69c54009b7d81e104ff7eca34e4ee29717c310dad20d6ece64bd1_arm64", + "product_id": "openshift4/egress-router-cni-rhel8@sha256:7c00cfc2efb69c54009b7d81e104ff7eca34e4ee29717c310dad20d6ece64bd1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/egress-router-cni-rhel8@sha256:7c00cfc2efb69c54009b7d81e104ff7eca34e4ee29717c310dad20d6ece64bd1?arch=arm64&repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel8&tag=v4.14.0-202311021650.p0.gafffdd4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-etcd-rhel9@sha256:b6bb4fa72dfd329435fdb4395bae6ed4cb1c56e82e04849a28671629bac73039_arm64", + "product": { + "name": "openshift4/ose-etcd-rhel9@sha256:b6bb4fa72dfd329435fdb4395bae6ed4cb1c56e82e04849a28671629bac73039_arm64", + "product_id": "openshift4/ose-etcd-rhel9@sha256:b6bb4fa72dfd329435fdb4395bae6ed4cb1c56e82e04849a28671629bac73039_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-etcd-rhel9@sha256:b6bb4fa72dfd329435fdb4395bae6ed4cb1c56e82e04849a28671629bac73039?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9&tag=v4.14.0-202311011749.p0.gba21c5b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:aa83f4c78c5da25374ef5cd9fbc49b786dcf27a85b394376fcf093cf4ddb1dcc_arm64", + "product": { + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:aa83f4c78c5da25374ef5cd9fbc49b786dcf27a85b394376fcf093cf4ddb1dcc_arm64", + "product_id": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:aa83f4c78c5da25374ef5cd9fbc49b786dcf27a85b394376fcf093cf4ddb1dcc_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel8@sha256:aa83f4c78c5da25374ef5cd9fbc49b786dcf27a85b394376fcf093cf4ddb1dcc?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.g37deba9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:d2ea5df36ba0430d00b34b09b6e94d69161885364bc958ec3953e499d8c4a2bb_arm64", + "product": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:d2ea5df36ba0430d00b34b09b6e94d69161885364bc958ec3953e499d8c4a2bb_arm64", + "product_id": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:d2ea5df36ba0430d00b34b09b6e94d69161885364bc958ec3953e499d8c4a2bb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel8@sha256:d2ea5df36ba0430d00b34b09b6e94d69161885364bc958ec3953e499d8c4a2bb?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8&tag=v4.14.0-202311021650.p0.g38e3375.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:41ec574d2184d85966a3fce6b32850aa24a5b83394ced6d5c49dc61e53dbfef7_arm64", + "product": { + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:41ec574d2184d85966a3fce6b32850aa24a5b83394ced6d5c49dc61e53dbfef7_arm64", + "product_id": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:41ec574d2184d85966a3fce6b32850aa24a5b83394ced6d5c49dc61e53dbfef7_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel8@sha256:41ec574d2184d85966a3fce6b32850aa24a5b83394ced6d5c49dc61e53dbfef7?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.g8a626fe.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:dd4e7a19a1b8bf8e9a5b62187820944cb150197f3127370bab7e58595a330879_arm64", + "product": { + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:dd4e7a19a1b8bf8e9a5b62187820944cb150197f3127370bab7e58595a330879_arm64", + "product_id": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:dd4e7a19a1b8bf8e9a5b62187820944cb150197f3127370bab7e58595a330879_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel8@sha256:dd4e7a19a1b8bf8e9a5b62187820944cb150197f3127370bab7e58595a330879?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8&tag=v4.14.0-202311021650.p0.g92376a4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hypershift-rhel8@sha256:9e7e6a0cd25210bbf5dd6d941be8d11ecec285a292f90ba037ceb6a5ed64e15a_arm64", + "product": { + "name": "openshift4/ose-hypershift-rhel8@sha256:9e7e6a0cd25210bbf5dd6d941be8d11ecec285a292f90ba037ceb6a5ed64e15a_arm64", + "product_id": "openshift4/ose-hypershift-rhel8@sha256:9e7e6a0cd25210bbf5dd6d941be8d11ecec285a292f90ba037ceb6a5ed64e15a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-hypershift-rhel8@sha256:9e7e6a0cd25210bbf5dd6d941be8d11ecec285a292f90ba037ceb6a5ed64e15a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel8&tag=v4.14.0-202311072010.p0.gf1acb05.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-image-customization-controller-rhel8@sha256:6902c381b09b730c0b5a8cc1cfa55d3235461de19a37cbba43f40b363e263fd3_arm64", + "product": { + "name": "openshift4/ose-image-customization-controller-rhel8@sha256:6902c381b09b730c0b5a8cc1cfa55d3235461de19a37cbba43f40b363e263fd3_arm64", + "product_id": "openshift4/ose-image-customization-controller-rhel8@sha256:6902c381b09b730c0b5a8cc1cfa55d3235461de19a37cbba43f40b363e263fd3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-image-customization-controller-rhel8@sha256:6902c381b09b730c0b5a8cc1cfa55d3235461de19a37cbba43f40b363e263fd3?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel8&tag=v4.14.0-202311021650.p0.g2dda87a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-insights-rhel8-operator@sha256:e2279482e0eb8ef09c4e64e8f351f9f402389d218688787485467606f721a6cf_arm64", + "product": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:e2279482e0eb8ef09c4e64e8f351f9f402389d218688787485467606f721a6cf_arm64", + "product_id": "openshift4/ose-insights-rhel8-operator@sha256:e2279482e0eb8ef09c4e64e8f351f9f402389d218688787485467606f721a6cf_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-insights-rhel8-operator@sha256:e2279482e0eb8ef09c4e64e8f351f9f402389d218688787485467606f721a6cf?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-insights-rhel8-operator&tag=v4.14.0-202311021650.p0.ge0f175b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer-artifacts@sha256:cb4c932666c2de9a20821217155ed80db762935a2445a824ec8c7e9d194477f5_arm64", + "product": { + "name": "openshift4/ose-installer-artifacts@sha256:cb4c932666c2de9a20821217155ed80db762935a2445a824ec8c7e9d194477f5_arm64", + "product_id": "openshift4/ose-installer-artifacts@sha256:cb4c932666c2de9a20821217155ed80db762935a2445a824ec8c7e9d194477f5_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer-artifacts@sha256:cb4c932666c2de9a20821217155ed80db762935a2445a824ec8c7e9d194477f5?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-installer-artifacts&tag=v4.14.0-202311040828.p0.gc0f108b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer@sha256:73f68bdeac71d38038056f74d6ded38b50965cd6da73e3a853a1fecaf2aa2659_arm64", + "product": { + "name": "openshift4/ose-installer@sha256:73f68bdeac71d38038056f74d6ded38b50965cd6da73e3a853a1fecaf2aa2659_arm64", + "product_id": "openshift4/ose-installer@sha256:73f68bdeac71d38038056f74d6ded38b50965cd6da73e3a853a1fecaf2aa2659_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer@sha256:73f68bdeac71d38038056f74d6ded38b50965cd6da73e3a853a1fecaf2aa2659?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-installer&tag=v4.14.0-202311040828.p0.gc0f108b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:c961a8cff523a0012d6994434ee6667ab27cda0887e7ee97d1cc9c6e8b80c5f8_arm64", + "product": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:c961a8cff523a0012d6994434ee6667ab27cda0887e7ee97d1cc9c6e8b80c5f8_arm64", + "product_id": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:c961a8cff523a0012d6994434ee6667ab27cda0887e7ee97d1cc9c6e8b80c5f8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-storage-version-migrator-rhel8@sha256:c961a8cff523a0012d6994434ee6667ab27cda0887e7ee97d1cc9c6e8b80c5f8?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8&tag=v4.14.0-202311021650.p0.g8558e14.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:9c00cff1cb283ef7ee9f69ea5959c9a58e20587c9d9a414a176a6e6f7dccc02a_arm64", + "product": { + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:9c00cff1cb283ef7ee9f69ea5959c9a58e20587c9d9a414a176a6e6f7dccc02a_arm64", + "product_id": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:9c00cff1cb283ef7ee9f69ea5959c9a58e20587c9d9a414a176a6e6f7dccc02a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel8@sha256:9c00cff1cb283ef7ee9f69ea5959c9a58e20587c9d9a414a176a6e6f7dccc02a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.g62ca8ad.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:eee515d9ab53aaf552fc1c58b01c7380842d31280e94001d30d6af5016de2dda_arm64", + "product": { + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:eee515d9ab53aaf552fc1c58b01c7380842d31280e94001d30d6af5016de2dda_arm64", + "product_id": "openshift4/kubevirt-csi-driver-rhel8@sha256:eee515d9ab53aaf552fc1c58b01c7380842d31280e94001d30d6af5016de2dda_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-csi-driver-rhel8@sha256:eee515d9ab53aaf552fc1c58b01c7380842d31280e94001d30d6af5016de2dda?arch=arm64&repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.g831ff3e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-libvirt-machine-controllers@sha256:eedf948465e68c745ab844c20b123ee6317fa987f4fd4e74111d46389e3edaa1_arm64", + "product": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:eedf948465e68c745ab844c20b123ee6317fa987f4fd4e74111d46389e3edaa1_arm64", + "product_id": "openshift4/ose-libvirt-machine-controllers@sha256:eedf948465e68c745ab844c20b123ee6317fa987f4fd4e74111d46389e3edaa1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-libvirt-machine-controllers@sha256:eedf948465e68c745ab844c20b123ee6317fa987f4fd4e74111d46389e3edaa1?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers&tag=v4.14.0-202311021650.p0.g34dfccb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-operator@sha256:45734564b9e0eb27d84444d4d8566b1515a662cdcaa5552fd0e5d2e00f77d6aa_arm64", + "product": { + "name": "openshift4/ose-machine-api-operator@sha256:45734564b9e0eb27d84444d4d8566b1515a662cdcaa5552fd0e5d2e00f77d6aa_arm64", + "product_id": "openshift4/ose-machine-api-operator@sha256:45734564b9e0eb27d84444d4d8566b1515a662cdcaa5552fd0e5d2e00f77d6aa_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-operator@sha256:45734564b9e0eb27d84444d4d8566b1515a662cdcaa5552fd0e5d2e00f77d6aa?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-api-operator&tag=v4.14.0-202311021650.p0.g525f8e5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:03c956a29d8e1366e89a46f401209fe311ba2f94302036e64ceab1d80ddd9e2b_arm64", + "product": { + "name": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:03c956a29d8e1366e89a46f401209fe311ba2f94302036e64ceab1d80ddd9e2b_arm64", + "product_id": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:03c956a29d8e1366e89a46f401209fe311ba2f94302036e64ceab1d80ddd9e2b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-aws-rhel8@sha256:03c956a29d8e1366e89a46f401209fe311ba2f94302036e64ceab1d80ddd9e2b?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8&tag=v4.14.0-202311021650.p0.ge292817.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:008129ab8f9985cd17446e2f7a27951bda1f8ffebbe677ab6aac7697b11138a9_arm64", + "product": { + "name": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:008129ab8f9985cd17446e2f7a27951bda1f8ffebbe677ab6aac7697b11138a9_arm64", + "product_id": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:008129ab8f9985cd17446e2f7a27951bda1f8ffebbe677ab6aac7697b11138a9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-azure-rhel8@sha256:008129ab8f9985cd17446e2f7a27951bda1f8ffebbe677ab6aac7697b11138a9?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8&tag=v4.14.0-202311021650.p0.gb6ab233.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:4b7863bbadb12e971260e4cc13837abb1c4e75911d9ce298c5315b94a804e186_arm64", + "product": { + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:4b7863bbadb12e971260e4cc13837abb1c4e75911d9ce298c5315b94a804e186_arm64", + "product_id": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:4b7863bbadb12e971260e4cc13837abb1c4e75911d9ce298c5315b94a804e186_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-gcp-rhel8@sha256:4b7863bbadb12e971260e4cc13837abb1c4e75911d9ce298c5315b94a804e186?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8&tag=v4.14.0-202311021650.p0.ga676e6b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:691690fd73e23aa1305c51ab100a042df245281845d6a1e185145784507d2f71_arm64", + "product": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:691690fd73e23aa1305c51ab100a042df245281845d6a1e185145784507d2f71_arm64", + "product_id": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:691690fd73e23aa1305c51ab100a042df245281845d6a1e185145784507d2f71_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-openstack-rhel8@sha256:691690fd73e23aa1305c51ab100a042df245281845d6a1e185145784507d2f71?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8&tag=v4.14.0-202311021650.p0.g47ad284.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-config-operator@sha256:3688380a41a2ecd293ee096ee6e394bbe6d4ba9115016b11c67b6ec3d7a28ac2_arm64", + "product": { + "name": "openshift4/ose-machine-config-operator@sha256:3688380a41a2ecd293ee096ee6e394bbe6d4ba9115016b11c67b6ec3d7a28ac2_arm64", + "product_id": "openshift4/ose-machine-config-operator@sha256:3688380a41a2ecd293ee096ee6e394bbe6d4ba9115016b11c67b6ec3d7a28ac2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-config-operator@sha256:3688380a41a2ecd293ee096ee6e394bbe6d4ba9115016b11c67b6ec3d7a28ac2?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-config-operator&tag=v4.14.0-202311070105.p0.gf57144e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-os-images-rhel8@sha256:94fc38b0cf16a58add83fcabd48a19307d39522d00f40751c53c8a0be7eec344_arm64", + "product": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:94fc38b0cf16a58add83fcabd48a19307d39522d00f40751c53c8a0be7eec344_arm64", + "product_id": "openshift4/ose-machine-os-images-rhel8@sha256:94fc38b0cf16a58add83fcabd48a19307d39522d00f40751c53c8a0be7eec344_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-os-images-rhel8@sha256:94fc38b0cf16a58add83fcabd48a19307d39522d00f40751c53c8a0be7eec344?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel8&tag=v4.14.0-202311040828.p0.gd3a4a6c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-admission-controller@sha256:21b41656a1266536672e669c4bc3b493c5ec6264b82e9f76d1f990e5fe3c73f8_arm64", + "product": { + "name": "openshift4/ose-multus-admission-controller@sha256:21b41656a1266536672e669c4bc3b493c5ec6264b82e9f76d1f990e5fe3c73f8_arm64", + "product_id": "openshift4/ose-multus-admission-controller@sha256:21b41656a1266536672e669c4bc3b493c5ec6264b82e9f76d1f990e5fe3c73f8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-admission-controller@sha256:21b41656a1266536672e669c4bc3b493c5ec6264b82e9f76d1f990e5fe3c73f8?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller&tag=v4.14.0-202311021650.p0.g5e74b0f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:2efe60b6cf737a9485dcc8ee0d6c0c59c86d3ea1c2d212a78e85459696a558a1_arm64", + "product": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:2efe60b6cf737a9485dcc8ee0d6c0c59c86d3ea1c2d212a78e85459696a558a1_arm64", + "product_id": "openshift4/ose-multus-networkpolicy-rhel8@sha256:2efe60b6cf737a9485dcc8ee0d6c0c59c86d3ea1c2d212a78e85459696a558a1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-networkpolicy-rhel8@sha256:2efe60b6cf737a9485dcc8ee0d6c0c59c86d3ea1c2d212a78e85459696a558a1?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8&tag=v4.14.0-202311021650.p0.g0d76ba7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:c9181cd852d44f5c2092df6d9a581f5908e3f21bc48d1b874ec07e4cbe546242_arm64", + "product": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:c9181cd852d44f5c2092df6d9a581f5908e3f21bc48d1b874ec07e4cbe546242_arm64", + "product_id": "openshift4/ose-multus-route-override-cni-rhel8@sha256:c9181cd852d44f5c2092df6d9a581f5908e3f21bc48d1b874ec07e4cbe546242_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-route-override-cni-rhel8@sha256:c9181cd852d44f5c2092df6d9a581f5908e3f21bc48d1b874ec07e4cbe546242?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8&tag=v4.14.0-202311021650.p0.g078aee5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:28975999f00a6cf667a304e66dda420a9255f21b44c8011487ec9bdff0007de6_arm64", + "product": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:28975999f00a6cf667a304e66dda420a9255f21b44c8011487ec9bdff0007de6_arm64", + "product_id": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:28975999f00a6cf667a304e66dda420a9255f21b44c8011487ec9bdff0007de6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel8@sha256:28975999f00a6cf667a304e66dda420a9255f21b44c8011487ec9bdff0007de6?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8&tag=v4.14.0-202311021650.p0.g7e45436.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-must-gather@sha256:6af389fa78ac1b941bce8fe971cf76a8a2e80ba0ac8c0ab607b32a2639e31e22_arm64", + "product": { + "name": "openshift4/ose-must-gather@sha256:6af389fa78ac1b941bce8fe971cf76a8a2e80ba0ac8c0ab607b32a2639e31e22_arm64", + "product_id": "openshift4/ose-must-gather@sha256:6af389fa78ac1b941bce8fe971cf76a8a2e80ba0ac8c0ab607b32a2639e31e22_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-must-gather@sha256:6af389fa78ac1b941bce8fe971cf76a8a2e80ba0ac8c0ab607b32a2639e31e22?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-must-gather&tag=v4.14.0-202311021650.p0.g833e1de.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:b9231c133401ffb459b517ce67f0f57680fdacf8dee7d6415e2499b2548349a2_arm64", + "product": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:b9231c133401ffb459b517ce67f0f57680fdacf8dee7d6415e2499b2548349a2_arm64", + "product_id": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:b9231c133401ffb459b517ce67f0f57680fdacf8dee7d6415e2499b2548349a2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-interface-bond-cni-rhel8@sha256:b9231c133401ffb459b517ce67f0f57680fdacf8dee7d6415e2499b2548349a2?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8&tag=v4.14.0-202311021650.p0.g29f61f6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:e3076414f3fe0659c7e7655892438b93a6acb429ca2a71669e005dc690e86300_arm64", + "product": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:e3076414f3fe0659c7e7655892438b93a6acb429ca2a71669e005dc690e86300_arm64", + "product_id": "openshift4/ose-network-metrics-daemon-rhel8@sha256:e3076414f3fe0659c7e7655892438b93a6acb429ca2a71669e005dc690e86300_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-metrics-daemon-rhel8@sha256:e3076414f3fe0659c7e7655892438b93a6acb429ca2a71669e005dc690e86300?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8&tag=v4.14.0-202311021650.p0.g5fd1f2d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/network-tools-rhel8@sha256:debe75005d51d1c53fff23ccdb782089b93ec700b291f994f1100c4ee64b1de4_arm64", + "product": { + "name": "openshift4/network-tools-rhel8@sha256:debe75005d51d1c53fff23ccdb782089b93ec700b291f994f1100c4ee64b1de4_arm64", + "product_id": "openshift4/network-tools-rhel8@sha256:debe75005d51d1c53fff23ccdb782089b93ec700b291f994f1100c4ee64b1de4_arm64", + "product_identification_helper": { + "purl": "pkg:oci/network-tools-rhel8@sha256:debe75005d51d1c53fff23ccdb782089b93ec700b291f994f1100c4ee64b1de4?arch=arm64&repository_url=registry.redhat.io/openshift4/network-tools-rhel8&tag=v4.14.0-202311031050.p0.ga1dc6af.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sdn-rhel8@sha256:e791a33fb049dff3b574ad144429c2cc19b0e57e5c7b3b95470c665a369e0e2f_arm64", + "product": { + "name": "openshift4/ose-sdn-rhel8@sha256:e791a33fb049dff3b574ad144429c2cc19b0e57e5c7b3b95470c665a369e0e2f_arm64", + "product_id": "openshift4/ose-sdn-rhel8@sha256:e791a33fb049dff3b574ad144429c2cc19b0e57e5c7b3b95470c665a369e0e2f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sdn-rhel8@sha256:e791a33fb049dff3b574ad144429c2cc19b0e57e5c7b3b95470c665a369e0e2f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-sdn-rhel8&tag=v4.14.0-202311021650.p0.g128c28c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:5048857b1a19acd5653c398ff76eea37e2b78266c3a85000b8aee44cd0145887_arm64", + "product": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:5048857b1a19acd5653c398ff76eea37e2b78266c3a85000b8aee44cd0145887_arm64", + "product_id": "openshift4/ose-oauth-apiserver-rhel8@sha256:5048857b1a19acd5653c398ff76eea37e2b78266c3a85000b8aee44cd0145887_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-apiserver-rhel8@sha256:5048857b1a19acd5653c398ff76eea37e2b78266c3a85000b8aee44cd0145887?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8&tag=v4.14.0-202311021650.p0.ga18cb3e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-olm-catalogd-rhel8@sha256:0b95de280c51c3f8829f4a4f2c4ad5867fff22645beb7386baaa1ad45b98cd25_arm64", + "product": { + "name": "openshift4/ose-olm-catalogd-rhel8@sha256:0b95de280c51c3f8829f4a4f2c4ad5867fff22645beb7386baaa1ad45b98cd25_arm64", + "product_id": "openshift4/ose-olm-catalogd-rhel8@sha256:0b95de280c51c3f8829f4a4f2c4ad5867fff22645beb7386baaa1ad45b98cd25_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-olm-catalogd-rhel8@sha256:0b95de280c51c3f8829f4a4f2c4ad5867fff22645beb7386baaa1ad45b98cd25?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel8&tag=v4.14.0-202311021650.p0.gaa44c02.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-olm-operator-controller-rhel8@sha256:d4d199277ffb3157076ae7be4f79559ed0840844f0d78241c17c21817a7e57a5_arm64", + "product": { + "name": "openshift4/ose-olm-operator-controller-rhel8@sha256:d4d199277ffb3157076ae7be4f79559ed0840844f0d78241c17c21817a7e57a5_arm64", + "product_id": "openshift4/ose-olm-operator-controller-rhel8@sha256:d4d199277ffb3157076ae7be4f79559ed0840844f0d78241c17c21817a7e57a5_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-olm-operator-controller-rhel8@sha256:d4d199277ffb3157076ae7be4f79559ed0840844f0d78241c17c21817a7e57a5?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8&tag=v4.14.0-202311021650.p0.g1734329.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:eeba7c43f4fe8056133f755d8dec9889ddd5ae389c08a4018bb46d1239f49437_arm64", + "product": { + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:eeba7c43f4fe8056133f755d8dec9889ddd5ae389c08a4018bb46d1239f49437_arm64", + "product_id": "openshift4/ose-olm-rukpak-rhel8@sha256:eeba7c43f4fe8056133f755d8dec9889ddd5ae389c08a4018bb46d1239f49437_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-olm-rukpak-rhel8@sha256:eeba7c43f4fe8056133f755d8dec9889ddd5ae389c08a4018bb46d1239f49437?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-olm-rukpak-rhel8&tag=v4.14.0-202311021650.p0.gdaa5073.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:eb1a36b4a6897262631d6013ccd3fc2c1c7c16efc6e73dabbbd8fd71ff9e954e_arm64", + "product": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:eb1a36b4a6897262631d6013ccd3fc2c1c7c16efc6e73dabbbd8fd71ff9e954e_arm64", + "product_id": "openshift4/ose-openshift-apiserver-rhel8@sha256:eb1a36b4a6897262631d6013ccd3fc2c1c7c16efc6e73dabbbd8fd71ff9e954e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-apiserver-rhel8@sha256:eb1a36b4a6897262631d6013ccd3fc2c1c7c16efc6e73dabbbd8fd71ff9e954e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8&tag=v4.14.0-202311021650.p0.g064c2d0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:9771fa0fcaaaf09954762f39697d41518346211f2fef8e5e740235811075e7c8_arm64", + "product": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:9771fa0fcaaaf09954762f39697d41518346211f2fef8e5e740235811075e7c8_arm64", + "product_id": "openshift4/ose-openshift-controller-manager-rhel8@sha256:9771fa0fcaaaf09954762f39697d41518346211f2fef8e5e740235811075e7c8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-controller-manager-rhel8@sha256:9771fa0fcaaaf09954762f39697d41518346211f2fef8e5e740235811075e7c8?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.g69bd018.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:c6ce3ba8929588c8aedb7f3ce5e727c9c02cc080cc9a9b49ae91023abd44e3c5_arm64", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:c6ce3ba8929588c8aedb7f3ce5e727c9c02cc080cc9a9b49ae91023abd44e3c5_arm64", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:c6ce3ba8929588c8aedb7f3ce5e727c9c02cc080cc9a9b49ae91023abd44e3c5_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8@sha256:c6ce3ba8929588c8aedb7f3ce5e727c9c02cc080cc9a9b49ae91023abd44e3c5?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.gecd00b5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b12d41e3ab2655148115e3d009240753d382aff2d38be25bebaea06310d9c0fa_arm64", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b12d41e3ab2655148115e3d009240753d382aff2d38be25bebaea06310d9c0fa_arm64", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b12d41e3ab2655148115e3d009240753d382aff2d38be25bebaea06310d9c0fa_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b12d41e3ab2655148115e3d009240753d382aff2d38be25bebaea06310d9c0fa?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator&tag=v4.14.0-202311021650.p0.gdcf0e7d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:5322398f762d3c02d5faeba33f2a5d2b5fac259fbbf742634ca5ba15a31740c9_arm64", + "product": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:5322398f762d3c02d5faeba33f2a5d2b5fac259fbbf742634ca5ba15a31740c9_arm64", + "product_id": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:5322398f762d3c02d5faeba33f2a5d2b5fac259fbbf742634ca5ba15a31740c9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel8@sha256:5322398f762d3c02d5faeba33f2a5d2b5fac259fbbf742634ca5ba15a31740c9?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.gecd00b5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:f98466628d3f0649d5c2319325e5c80c9ab302fe64ec690ee94a33ae8ef86669_arm64", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:f98466628d3f0649d5c2319325e5c80c9ab302fe64ec690ee94a33ae8ef86669_arm64", + "product_id": "openshift4/ovirt-csi-driver-rhel8@sha256:f98466628d3f0649d5c2319325e5c80c9ab302fe64ec690ee94a33ae8ef86669_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8@sha256:f98466628d3f0649d5c2319325e5c80c9ab302fe64ec690ee94a33ae8ef86669?arch=arm64&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.gf21b470.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:f98466628d3f0649d5c2319325e5c80c9ab302fe64ec690ee94a33ae8ef86669_arm64", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:f98466628d3f0649d5c2319325e5c80c9ab302fe64ec690ee94a33ae8ef86669_arm64", + "product_id": "openshift4/ovirt-csi-driver-rhel7@sha256:f98466628d3f0649d5c2319325e5c80c9ab302fe64ec690ee94a33ae8ef86669_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel7@sha256:f98466628d3f0649d5c2319325e5c80c9ab302fe64ec690ee94a33ae8ef86669?arch=arm64&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel7&tag=v4.14.0-202311021650.p0.gf21b470.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:08c5aa4b2df30aefd10b5dd18d24d7249aeb74112b9f5afc48126bb5bd6df4b3_arm64", + "product": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:08c5aa4b2df30aefd10b5dd18d24d7249aeb74112b9f5afc48126bb5bd6df4b3_arm64", + "product_id": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:08c5aa4b2df30aefd10b5dd18d24d7249aeb74112b9f5afc48126bb5bd6df4b3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovirt-machine-controllers-rhel8@sha256:08c5aa4b2df30aefd10b5dd18d24d7249aeb74112b9f5afc48126bb5bd6df4b3?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8&tag=v4.14.0-202311021650.p0.g5d70863.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes@sha256:33947d0121147410b6832acb0fe3f73959189afece66c453bce1aaa0d6ad67fb_arm64", + "product": { + "name": "openshift4/ose-ovn-kubernetes@sha256:33947d0121147410b6832acb0fe3f73959189afece66c453bce1aaa0d6ad67fb_arm64", + "product_id": "openshift4/ose-ovn-kubernetes@sha256:33947d0121147410b6832acb0fe3f73959189afece66c453bce1aaa0d6ad67fb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes@sha256:33947d0121147410b6832acb0fe3f73959189afece66c453bce1aaa0d6ad67fb?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes&tag=v4.14.0-202311031050.p0.g7a23238.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:000d0f80b646e8131f035ab46205d62d0b86fdd92478c462955be44f0d411cb0_arm64", + "product": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:000d0f80b646e8131f035ab46205d62d0b86fdd92478c462955be44f0d411cb0_arm64", + "product_id": "openshift4/ose-k8s-prometheus-adapter@sha256:000d0f80b646e8131f035ab46205d62d0b86fdd92478c462955be44f0d411cb0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-k8s-prometheus-adapter@sha256:000d0f80b646e8131f035ab46205d62d0b86fdd92478c462955be44f0d411cb0?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter&tag=v4.14.0-202311021650.p0.g428bb46.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:7251ed222e73f80e271b09d01acdb93695893b6319335942e50611f734e385ae_arm64", + "product": { + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:7251ed222e73f80e271b09d01acdb93695893b6319335942e50611f734e385ae_arm64", + "product_id": "openshift4/openshift-route-controller-manager-rhel8@sha256:7251ed222e73f80e271b09d01acdb93695893b6319335942e50611f734e385ae_arm64", + "product_identification_helper": { + "purl": "pkg:oci/openshift-route-controller-manager-rhel8@sha256:7251ed222e73f80e271b09d01acdb93695893b6319335942e50611f734e385ae?arch=arm64&repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.g1a5e72f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-service-ca-operator@sha256:eff5ca45d4e3c577ddcb3243ef18777661e68bab32ad1e428cc5ca409373f06a_arm64", + "product": { + "name": "openshift4/ose-service-ca-operator@sha256:eff5ca45d4e3c577ddcb3243ef18777661e68bab32ad1e428cc5ca409373f06a_arm64", + "product_id": "openshift4/ose-service-ca-operator@sha256:eff5ca45d4e3c577ddcb3243ef18777661e68bab32ad1e428cc5ca409373f06a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-service-ca-operator@sha256:eff5ca45d4e3c577ddcb3243ef18777661e68bab32ad1e428cc5ca409373f06a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-service-ca-operator&tag=v4.14.0-202311021650.p0.g030a429.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-thanos-rhel8@sha256:a709158f8d2ae92a0b23a26329e9b3605098710ceb8cab991ddaa7369ca11c1a_arm64", + "product": { + "name": "openshift4/ose-thanos-rhel8@sha256:a709158f8d2ae92a0b23a26329e9b3605098710ceb8cab991ddaa7369ca11c1a_arm64", + "product_id": "openshift4/ose-thanos-rhel8@sha256:a709158f8d2ae92a0b23a26329e9b3605098710ceb8cab991ddaa7369ca11c1a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-thanos-rhel8@sha256:a709158f8d2ae92a0b23a26329e9b3605098710ceb8cab991ddaa7369ca11c1a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-thanos-rhel8&tag=v4.14.0-202311021650.p0.g175a630.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tools-rhel8@sha256:688edf27ce3ede2aced0282eb0e752b2569584f89d285a02d87bb3afac246352_arm64", + "product": { + "name": "openshift4/ose-tools-rhel8@sha256:688edf27ce3ede2aced0282eb0e752b2569584f89d285a02d87bb3afac246352_arm64", + "product_id": "openshift4/ose-tools-rhel8@sha256:688edf27ce3ede2aced0282eb0e752b2569584f89d285a02d87bb3afac246352_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-tools-rhel8@sha256:688edf27ce3ede2aced0282eb0e752b2569584f89d285a02d87bb3afac246352?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-tools-rhel8&tag=v4.14.0-202311021650.p0.g9b1e0d2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b5787d49c0dd0b16370aaa94d03042cfdea2e21b0a6beb6dd2c7db15bd18ac9c_arm64", + "product": { + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b5787d49c0dd0b16370aaa94d03042cfdea2e21b0a6beb6dd2c7db15bd18ac9c_arm64", + "product_id": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b5787d49c0dd0b16370aaa94d03042cfdea2e21b0a6beb6dd2c7db15bd18ac9c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256:b5787d49c0dd0b16370aaa94d03042cfdea2e21b0a6beb6dd2c7db15bd18ac9c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9&tag=v4.14.0-202310250645.p0.g7a23238.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-config-reloader@sha256:fad612252efa75542063a3eab216ac7ba3895d29ac3ac404a3b212fde37b3973_arm64", + "product": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:fad612252efa75542063a3eab216ac7ba3895d29ac3ac404a3b212fde37b3973_arm64", + "product_id": "openshift4/ose-prometheus-config-reloader@sha256:fad612252efa75542063a3eab216ac7ba3895d29ac3ac404a3b212fde37b3973_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-config-reloader@sha256:fad612252efa75542063a3eab216ac7ba3895d29ac3ac404a3b212fde37b3973?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader&tag=v4.14.0-202311061949.p0.g73729ed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d13b62b51c32e048ae00787fc6d2792d0417c1302688dfacd7ea92582af8dda9_arm64", + "product": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d13b62b51c32e048ae00787fc6d2792d0417c1302688dfacd7ea92582af8dda9_arm64", + "product_id": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d13b62b51c32e048ae00787fc6d2792d0417c1302688dfacd7ea92582af8dda9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel8@sha256:d13b62b51c32e048ae00787fc6d2792d0417c1302688dfacd7ea92582af8dda9?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8&tag=v4.14.0-202311061949.p0.g73729ed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator@sha256:049107ea9a1548aa889c97fce0306282bf294d219c7d572c6d82eb6b914ab68c_arm64", + "product": { + "name": "openshift4/ose-prometheus-operator@sha256:049107ea9a1548aa889c97fce0306282bf294d219c7d572c6d82eb6b914ab68c_arm64", + "product_id": "openshift4/ose-prometheus-operator@sha256:049107ea9a1548aa889c97fce0306282bf294d219c7d572c6d82eb6b914ab68c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator@sha256:049107ea9a1548aa889c97fce0306282bf294d219c7d572c6d82eb6b914ab68c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator&tag=v4.14.0-202311061949.p0.g73729ed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prom-label-proxy@sha256:87055d425bac37089f206fb29b447f2d71a7bb2f9deeb05c9485d069251a26dd_arm64", + "product": { + "name": "openshift4/ose-prom-label-proxy@sha256:87055d425bac37089f206fb29b447f2d71a7bb2f9deeb05c9485d069251a26dd_arm64", + "product_id": "openshift4/ose-prom-label-proxy@sha256:87055d425bac37089f206fb29b447f2d71a7bb2f9deeb05c9485d069251a26dd_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prom-label-proxy@sha256:87055d425bac37089f206fb29b447f2d71a7bb2f9deeb05c9485d069251a26dd?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy&tag=v4.14.0-202311021650.p0.gaf40ed0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-telemeter@sha256:949d58b1196a0e01ab8e43f2737db6bb1c1f6aeb87ec7747326cf088fec0528f_arm64", + "product": { + "name": "openshift4/ose-telemeter@sha256:949d58b1196a0e01ab8e43f2737db6bb1c1f6aeb87ec7747326cf088fec0528f_arm64", + "product_id": "openshift4/ose-telemeter@sha256:949d58b1196a0e01ab8e43f2737db6bb1c1f6aeb87ec7747326cf088fec0528f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-telemeter@sha256:949d58b1196a0e01ab8e43f2737db6bb1c1f6aeb87ec7747326cf088fec0528f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-telemeter&tag=v4.14.0-202311021650.p0.gc8b876a.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler@sha256:afb65724a2e614297d084adc026c408b5eff09fe6dda99ddf22cbad137f25706_amd64", + "product": { + "name": "openshift4/ose-cluster-autoscaler@sha256:afb65724a2e614297d084adc026c408b5eff09fe6dda99ddf22cbad137f25706_amd64", + "product_id": "openshift4/ose-cluster-autoscaler@sha256:afb65724a2e614297d084adc026c408b5eff09fe6dda99ddf22cbad137f25706_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler@sha256:afb65724a2e614297d084adc026c408b5eff09fe6dda99ddf22cbad137f25706?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler&tag=v4.14.0-202311021650.p0.g0822c7b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-machine-controllers@sha256:a157c044df6855e8a2e16f595895963f5abe9ea6234be3b1f2126a122b252ea1_amd64", + "product": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:a157c044df6855e8a2e16f595895963f5abe9ea6234be3b1f2126a122b252ea1_amd64", + "product_id": "openshift4/ose-baremetal-machine-controllers@sha256:a157c044df6855e8a2e16f595895963f5abe9ea6234be3b1f2126a122b252ea1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-machine-controllers@sha256:a157c044df6855e8a2e16f595895963f5abe9ea6234be3b1f2126a122b252ea1?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers&tag=v4.14.0-202311021650.p0.g412acb3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:0f2f02a2d80b3ae229ae0d85cafb37c34717fe3627c13b3baeba05bca118b26d_amd64", + "product": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:0f2f02a2d80b3ae229ae0d85cafb37c34717fe3627c13b3baeba05bca118b26d_amd64", + "product_id": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:0f2f02a2d80b3ae229ae0d85cafb37c34717fe3627c13b3baeba05bca118b26d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-etcd-rhel8-operator@sha256:0f2f02a2d80b3ae229ae0d85cafb37c34717fe3627c13b3baeba05bca118b26d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator&tag=v4.14.0-202311021650.p0.g578c952.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-monitoring-operator@sha256:f459787d6aee8828626489e48ff8b2ab829cd18a616e165ba69ef90646073319_amd64", + "product": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:f459787d6aee8828626489e48ff8b2ab829cd18a616e165ba69ef90646073319_amd64", + "product_id": "openshift4/ose-cluster-monitoring-operator@sha256:f459787d6aee8828626489e48ff8b2ab829cd18a616e165ba69ef90646073319_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-monitoring-operator@sha256:f459787d6aee8828626489e48ff8b2ab829cd18a616e165ba69ef90646073319?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-operator&tag=v4.14.0-202311021650.p0.gab06fd3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-network-operator@sha256:a40fc8163c3b84cdf8f7053d88ad8e61435d591595af68a335e4a11a544271ca_amd64", + "product": { + "name": "openshift4/ose-cluster-network-operator@sha256:a40fc8163c3b84cdf8f7053d88ad8e61435d591595af68a335e4a11a544271ca_amd64", + "product_id": "openshift4/ose-cluster-network-operator@sha256:a40fc8163c3b84cdf8f7053d88ad8e61435d591595af68a335e4a11a544271ca_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-network-operator@sha256:a40fc8163c3b84cdf8f7053d88ad8e61435d591595af68a335e4a11a544271ca?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-network-operator&tag=v4.14.0-202311031807.p0.g1504d2a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:c7f35a7d259ce15c5019ef911e609aa1457036fb349ff07197386a862ea71b2e_amd64", + "product": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:c7f35a7d259ce15c5019ef911e609aa1457036fb349ff07197386a862ea71b2e_amd64", + "product_id": "openshift4/ose-cluster-node-tuning-operator@sha256:c7f35a7d259ce15c5019ef911e609aa1457036fb349ff07197386a862ea71b2e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-node-tuning-operator@sha256:c7f35a7d259ce15c5019ef911e609aa1457036fb349ff07197386a862ea71b2e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-operator&tag=v4.14.0-202311020945.p0.g9669c58.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-version-operator@sha256:b302356aede012c25117023961f124951a04c4b5a2c4c77ea73bd7126045b580_amd64", + "product": { + "name": "openshift4/ose-cluster-version-operator@sha256:b302356aede012c25117023961f124951a04c4b5a2c4c77ea73bd7126045b580_amd64", + "product_id": "openshift4/ose-cluster-version-operator@sha256:b302356aede012c25117023961f124951a04c4b5a2c4c77ea73bd7126045b580_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-version-operator@sha256:b302356aede012c25117023961f124951a04c4b5a2c4c77ea73bd7126045b580?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-version-operator&tag=v4.14.0-202311021650.p0.g2a48f5e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-configmap-reloader@sha256:0511b6d7e132f10f0732bf97eeffad89d800f7bd6723acf3c28ebdb54e539e76_amd64", + "product": { + "name": "openshift4/ose-configmap-reloader@sha256:0511b6d7e132f10f0732bf97eeffad89d800f7bd6723acf3c28ebdb54e539e76_amd64", + "product_id": "openshift4/ose-configmap-reloader@sha256:0511b6d7e132f10f0732bf97eeffad89d800f7bd6723acf3c28ebdb54e539e76_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-configmap-reloader@sha256:0511b6d7e132f10f0732bf97eeffad89d800f7bd6723acf3c28ebdb54e539e76?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-configmap-reloader&tag=v4.14.0-202311021650.p0.g716a0c3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-coredns@sha256:279eba7bf5df77fbf8f7b85e7e0ab58a7f84deca11e5534d94b05ac990ea7b8e_amd64", + "product": { + "name": "openshift4/ose-coredns@sha256:279eba7bf5df77fbf8f7b85e7e0ab58a7f84deca11e5534d94b05ac990ea7b8e_amd64", + "product_id": "openshift4/ose-coredns@sha256:279eba7bf5df77fbf8f7b85e7e0ab58a7f84deca11e5534d94b05ac990ea7b8e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-coredns@sha256:279eba7bf5df77fbf8f7b85e7e0ab58a7f84deca11e5534d94b05ac990ea7b8e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-coredns&tag=v4.14.0-202311021650.p0.g8341fa7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:8db32d8ff6a4e4e06b699babe65721d26d015f9bf72134d0f6e6c1be90bc67d0_amd64", + "product": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:8db32d8ff6a4e4e06b699babe65721d26d015f9bf72134d0f6e6c1be90bc67d0_amd64", + "product_id": "openshift4/ose-csi-external-attacher-rhel8@sha256:8db32d8ff6a4e4e06b699babe65721d26d015f9bf72134d0f6e6c1be90bc67d0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher-rhel8@sha256:8db32d8ff6a4e4e06b699babe65721d26d015f9bf72134d0f6e6c1be90bc67d0?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8&tag=v4.14.0-202311021650.p0.g06e8ce0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher@sha256:8db32d8ff6a4e4e06b699babe65721d26d015f9bf72134d0f6e6c1be90bc67d0_amd64", + "product": { + "name": "openshift4/ose-csi-external-attacher@sha256:8db32d8ff6a4e4e06b699babe65721d26d015f9bf72134d0f6e6c1be90bc67d0_amd64", + "product_id": "openshift4/ose-csi-external-attacher@sha256:8db32d8ff6a4e4e06b699babe65721d26d015f9bf72134d0f6e6c1be90bc67d0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher@sha256:8db32d8ff6a4e4e06b699babe65721d26d015f9bf72134d0f6e6c1be90bc67d0?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher&tag=v4.14.0-202311021650.p0.g06e8ce0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:96617cd2be060ef87018f3112f4ee65e0d5e57c1878d4e39c9b1b192c18bf00a_amd64", + "product": { + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:96617cd2be060ef87018f3112f4ee65e0d5e57c1878d4e39c9b1b192c18bf00a_amd64", + "product_id": "openshift4/ose-csi-driver-manila-rhel8@sha256:96617cd2be060ef87018f3112f4ee65e0d5e57c1878d4e39c9b1b192c18bf00a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-manila-rhel8@sha256:96617cd2be060ef87018f3112f4ee65e0d5e57c1878d4e39c9b1b192c18bf00a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8&tag=v4.14.0-202311021650.p0.gecd00b5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:da27695997faf380b606e0d988e063dbb015d50982ed012e949c2bfff2c9abe9_amd64", + "product": { + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:da27695997faf380b606e0d988e063dbb015d50982ed012e949c2bfff2c9abe9_amd64", + "product_id": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:da27695997faf380b606e0d988e063dbb015d50982ed012e949c2bfff2c9abe9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-manila-rhel8-operator@sha256:da27695997faf380b606e0d988e063dbb015d50982ed012e949c2bfff2c9abe9?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator&tag=v4.14.0-202311021650.p0.gea34192.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-nfs-rhel8@sha256:0905798d79289f1ca8a0821511a67257b8e6ab67ae43021a8754f23344ee6967_amd64", + "product": { + "name": "openshift4/ose-csi-driver-nfs-rhel8@sha256:0905798d79289f1ca8a0821511a67257b8e6ab67ae43021a8754f23344ee6967_amd64", + "product_id": "openshift4/ose-csi-driver-nfs-rhel8@sha256:0905798d79289f1ca8a0821511a67257b8e6ab67ae43021a8754f23344ee6967_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-nfs-rhel8@sha256:0905798d79289f1ca8a0821511a67257b8e6ab67ae43021a8754f23344ee6967?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8&tag=v4.14.0-202311021650.p0.ge1dd453.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:7944a1c63ce9585b1eede1ef616bc693a6b04d51527fadc2198ff2618c336270_amd64", + "product": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:7944a1c63ce9585b1eede1ef616bc693a6b04d51527fadc2198ff2618c336270_amd64", + "product_id": "openshift4/ose-csi-livenessprobe-rhel8@sha256:7944a1c63ce9585b1eede1ef616bc693a6b04d51527fadc2198ff2618c336270_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe-rhel8@sha256:7944a1c63ce9585b1eede1ef616bc693a6b04d51527fadc2198ff2618c336270?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8&tag=v4.14.0-202311021650.p0.ga9bcbde.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe@sha256:7944a1c63ce9585b1eede1ef616bc693a6b04d51527fadc2198ff2618c336270_amd64", + "product": { + "name": "openshift4/ose-csi-livenessprobe@sha256:7944a1c63ce9585b1eede1ef616bc693a6b04d51527fadc2198ff2618c336270_amd64", + "product_id": "openshift4/ose-csi-livenessprobe@sha256:7944a1c63ce9585b1eede1ef616bc693a6b04d51527fadc2198ff2618c336270_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe@sha256:7944a1c63ce9585b1eede1ef616bc693a6b04d51527fadc2198ff2618c336270?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe&tag=v4.14.0-202311021650.p0.ga9bcbde.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar@sha256:2d98dbf066484c51ef9d7c53f6c9cb3eb0ebbb41af3b0660190402a9998c1704_amd64", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:2d98dbf066484c51ef9d7c53f6c9cb3eb0ebbb41af3b0660190402a9998c1704_amd64", + "product_id": "openshift4/ose-csi-node-driver-registrar@sha256:2d98dbf066484c51ef9d7c53f6c9cb3eb0ebbb41af3b0660190402a9998c1704_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar@sha256:2d98dbf066484c51ef9d7c53f6c9cb3eb0ebbb41af3b0660190402a9998c1704?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar&tag=v4.14.0-202311021650.p0.g9dcaa7f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:2d98dbf066484c51ef9d7c53f6c9cb3eb0ebbb41af3b0660190402a9998c1704_amd64", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:2d98dbf066484c51ef9d7c53f6c9cb3eb0ebbb41af3b0660190402a9998c1704_amd64", + "product_id": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:2d98dbf066484c51ef9d7c53f6c9cb3eb0ebbb41af3b0660190402a9998c1704_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar-rhel8@sha256:2d98dbf066484c51ef9d7c53f6c9cb3eb0ebbb41af3b0660190402a9998c1704?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8&tag=v4.14.0-202311021650.p0.g9dcaa7f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner@sha256:cd736da2e2978ac42c0d105094a479b450b0c7639fb70ae1f97cf33c5bb6a439_amd64", + "product": { + "name": "openshift4/ose-csi-external-provisioner@sha256:cd736da2e2978ac42c0d105094a479b450b0c7639fb70ae1f97cf33c5bb6a439_amd64", + "product_id": "openshift4/ose-csi-external-provisioner@sha256:cd736da2e2978ac42c0d105094a479b450b0c7639fb70ae1f97cf33c5bb6a439_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner@sha256:cd736da2e2978ac42c0d105094a479b450b0c7639fb70ae1f97cf33c5bb6a439?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner&tag=v4.14.0-202311021650.p0.g78a710f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:cd736da2e2978ac42c0d105094a479b450b0c7639fb70ae1f97cf33c5bb6a439_amd64", + "product": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:cd736da2e2978ac42c0d105094a479b450b0c7639fb70ae1f97cf33c5bb6a439_amd64", + "product_id": "openshift4/ose-csi-external-provisioner-rhel8@sha256:cd736da2e2978ac42c0d105094a479b450b0c7639fb70ae1f97cf33c5bb6a439_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner-rhel8@sha256:cd736da2e2978ac42c0d105094a479b450b0c7639fb70ae1f97cf33c5bb6a439?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8&tag=v4.14.0-202311021650.p0.g78a710f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/driver-toolkit-rhel9@sha256:e5636eac6e6fd0859348f65d426bab72b98f7c4a081ed5efdae166837299e1d3_amd64", + "product": { + "name": "openshift4/driver-toolkit-rhel9@sha256:e5636eac6e6fd0859348f65d426bab72b98f7c4a081ed5efdae166837299e1d3_amd64", + "product_id": "openshift4/driver-toolkit-rhel9@sha256:e5636eac6e6fd0859348f65d426bab72b98f7c4a081ed5efdae166837299e1d3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/driver-toolkit-rhel9@sha256:e5636eac6e6fd0859348f65d426bab72b98f7c4a081ed5efdae166837299e1d3?arch=amd64&repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9&tag=v4.14.0-202311062032.p0.gcafed17.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-proxy@sha256:fd83ede5b14b89d73053f6828ba54e9edaab130b9297707141f4022a7e4aa55b_amd64", + "product": { + "name": "openshift4/ose-oauth-proxy@sha256:fd83ede5b14b89d73053f6828ba54e9edaab130b9297707141f4022a7e4aa55b_amd64", + "product_id": "openshift4/ose-oauth-proxy@sha256:fd83ede5b14b89d73053f6828ba54e9edaab130b9297707141f4022a7e4aa55b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-proxy@sha256:fd83ede5b14b89d73053f6828ba54e9edaab130b9297707141f4022a7e4aa55b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-oauth-proxy&tag=v4.14.0-202311021650.p0.g55e0cd1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-alertmanager@sha256:65d75bce1c6800f8fbaf58af58204d4eb52eb2a035b85cf1b56f564da6790e3f_amd64", + "product": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:65d75bce1c6800f8fbaf58af58204d4eb52eb2a035b85cf1b56f564da6790e3f_amd64", + "product_id": "openshift4/ose-prometheus-alertmanager@sha256:65d75bce1c6800f8fbaf58af58204d4eb52eb2a035b85cf1b56f564da6790e3f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-alertmanager@sha256:65d75bce1c6800f8fbaf58af58204d4eb52eb2a035b85cf1b56f564da6790e3f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager&tag=v4.14.0-202311021650.p0.ge372516.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-node-exporter@sha256:3af482102939c075786952b5ae8126481b6d790ee6537db997ea1d4a922384d2_amd64", + "product": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:3af482102939c075786952b5ae8126481b6d790ee6537db997ea1d4a922384d2_amd64", + "product_id": "openshift4/ose-prometheus-node-exporter@sha256:3af482102939c075786952b5ae8126481b6d790ee6537db997ea1d4a922384d2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-node-exporter@sha256:3af482102939c075786952b5ae8126481b6d790ee6537db997ea1d4a922384d2?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter&tag=v4.14.0-202311021650.p0.g5ee0a9d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus@sha256:ad8630b87e5201b632dd730c8717bc71b513a592d782ad558120f81831e58f91_amd64", + "product": { + "name": "openshift4/ose-prometheus@sha256:ad8630b87e5201b632dd730c8717bc71b513a592d782ad558120f81831e58f91_amd64", + "product_id": "openshift4/ose-prometheus@sha256:ad8630b87e5201b632dd730c8717bc71b513a592d782ad558120f81831e58f91_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus@sha256:ad8630b87e5201b632dd730c8717bc71b513a592d782ad558120f81831e58f91?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prometheus&tag=v4.14.0-202311021650.p0.gbcb475d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:cc139e5a6ab9288ef7f7073a775d14fc52c35c19946c652bd19ebf4774c9ddb5_amd64", + "product": { + "name": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:cc139e5a6ab9288ef7f7073a775d14fc52c35c19946c652bd19ebf4774c9ddb5_amd64", + "product_id": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:cc139e5a6ab9288ef7f7073a775d14fc52c35c19946c652bd19ebf4774c9ddb5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-vpc-node-label-updater-rhel8@sha256:cc139e5a6ab9288ef7f7073a775d14fc52c35c19946c652bd19ebf4774c9ddb5?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8&tag=v4.14.0-202311021650.p0.g44a2b94.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7beab49b5817b4c64487ce9f78517ce7c6da333fa1a400a200134148a5a7a764_amd64", + "product": { + "name": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7beab49b5817b4c64487ce9f78517ce7c6da333fa1a400a200134148a5a7a764_amd64", + "product_id": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7beab49b5817b4c64487ce9f78517ce7c6da333fa1a400a200134148a5a7a764_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-machine-os-downloader-rhel9@sha256:7beab49b5817b4c64487ce9f78517ce7c6da333fa1a400a200134148a5a7a764?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9&tag=v4.14.0-202311062032.p0.g7b56c30.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-proxy@sha256:b594fa0b4e901d2ec4c703506e33286d984381c3cf87069ab8bb8fbf038132f6_amd64", + "product": { + "name": "openshift4/ose-kube-proxy@sha256:b594fa0b4e901d2ec4c703506e33286d984381c3cf87069ab8bb8fbf038132f6_amd64", + "product_id": "openshift4/ose-kube-proxy@sha256:b594fa0b4e901d2ec4c703506e33286d984381c3cf87069ab8bb8fbf038132f6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-proxy@sha256:b594fa0b4e901d2ec4c703506e33286d984381c3cf87069ab8bb8fbf038132f6?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kube-proxy&tag=v4.14.0-202311021650.p0.g128c28c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-rbac-proxy@sha256:d0d6b78f89181d2178776187d3ee733589eb48d06e112e509c7a37388fcd765d_amd64", + "product": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:d0d6b78f89181d2178776187d3ee733589eb48d06e112e509c7a37388fcd765d_amd64", + "product_id": "openshift4/ose-kube-rbac-proxy@sha256:d0d6b78f89181d2178776187d3ee733589eb48d06e112e509c7a37388fcd765d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-rbac-proxy@sha256:d0d6b78f89181d2178776187d3ee733589eb48d06e112e509c7a37388fcd765d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy&tag=v4.14.0-202311021650.p0.g1a646b9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-state-metrics@sha256:b3c9f43f0b49de6510db260a8af6370f88b125346e4c7480cbeca778474e3f53_amd64", + "product": { + "name": "openshift4/ose-kube-state-metrics@sha256:b3c9f43f0b49de6510db260a8af6370f88b125346e4c7480cbeca778474e3f53_amd64", + "product_id": "openshift4/ose-kube-state-metrics@sha256:b3c9f43f0b49de6510db260a8af6370f88b125346e4c7480cbeca778474e3f53_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-state-metrics@sha256:b3c9f43f0b49de6510db260a8af6370f88b125346e4c7480cbeca778474e3f53?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics&tag=v4.14.0-202311021650.p0.gdb0c549.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:1f2e4115210f4e01cbabf2f5d3000211a36339d1c061b24851a2ac0d97f00001_amd64", + "product": { + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:1f2e4115210f4e01cbabf2f5d3000211a36339d1c061b24851a2ac0d97f00001_amd64", + "product_id": "openshift4/ose-kuryr-cni-rhel8@sha256:1f2e4115210f4e01cbabf2f5d3000211a36339d1c061b24851a2ac0d97f00001_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kuryr-cni-rhel8@sha256:1f2e4115210f4e01cbabf2f5d3000211a36339d1c061b24851a2ac0d97f00001?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kuryr-cni-rhel8&tag=v4.14.0-202311021650.p0.g8926a29.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kuryr-controller-rhel8@sha256:f071028a08a53496aa23ae7f6d1739f821d2589d684078dc835b0d9d59662ff7_amd64", + "product": { + "name": "openshift4/ose-kuryr-controller-rhel8@sha256:f071028a08a53496aa23ae7f6d1739f821d2589d684078dc835b0d9d59662ff7_amd64", + "product_id": "openshift4/ose-kuryr-controller-rhel8@sha256:f071028a08a53496aa23ae7f6d1739f821d2589d684078dc835b0d9d59662ff7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kuryr-controller-rhel8@sha256:f071028a08a53496aa23ae7f6d1739f821d2589d684078dc835b0d9d59662ff7?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kuryr-controller-rhel8&tag=v4.14.0-202311021650.p0.g8926a29.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-marketplace@sha256:8f5217a2a558beb11788218cc2e4e5d7b18da31451c4d45ba94252ddc0bb3db1_amd64", + "product": { + "name": "openshift4/ose-operator-marketplace@sha256:8f5217a2a558beb11788218cc2e4e5d7b18da31451c4d45ba94252ddc0bb3db1_amd64", + "product_id": "openshift4/ose-operator-marketplace@sha256:8f5217a2a558beb11788218cc2e4e5d7b18da31451c4d45ba94252ddc0bb3db1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-marketplace@sha256:8f5217a2a558beb11788218cc2e4e5d7b18da31451c4d45ba94252ddc0bb3db1?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-operator-marketplace&tag=v4.14.0-202311021650.p0.ga367cea.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-monitoring-plugin-rhel8@sha256:eef95d7fa962e8b5dc8ae7286304cbe578e20ff8cfde9e8127cda6ac0f3b8538_amd64", + "product": { + "name": "openshift4/ose-monitoring-plugin-rhel8@sha256:eef95d7fa962e8b5dc8ae7286304cbe578e20ff8cfde9e8127cda6ac0f3b8538_amd64", + "product_id": "openshift4/ose-monitoring-plugin-rhel8@sha256:eef95d7fa962e8b5dc8ae7286304cbe578e20ff8cfde9e8127cda6ac0f3b8538_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-monitoring-plugin-rhel8@sha256:eef95d7fa962e8b5dc8ae7286304cbe578e20ff8cfde9e8127cda6ac0f3b8538?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8&tag=v4.14.0-202311021650.p0.g8757197.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-cni@sha256:25eaf1ae453b8374eb1464e3ce53161dcfa7bbf4f1c92e0855d7fab5a7397b0e_amd64", + "product": { + "name": "openshift4/ose-multus-cni@sha256:25eaf1ae453b8374eb1464e3ce53161dcfa7bbf4f1c92e0855d7fab5a7397b0e_amd64", + "product_id": "openshift4/ose-multus-cni@sha256:25eaf1ae453b8374eb1464e3ce53161dcfa7bbf4f1c92e0855d7fab5a7397b0e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-cni@sha256:25eaf1ae453b8374eb1464e3ce53161dcfa7bbf4f1c92e0855d7fab5a7397b0e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-multus-cni&tag=v4.14.0-202311021650.p0.g599223b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-server-rhel8@sha256:60ebf2880f4ebd96c22bcdeb50e9ec991c70ac5b37c14128df53cc528dd15249_amd64", + "product": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:60ebf2880f4ebd96c22bcdeb50e9ec991c70ac5b37c14128df53cc528dd15249_amd64", + "product_id": "openshift4/ose-oauth-server-rhel8@sha256:60ebf2880f4ebd96c22bcdeb50e9ec991c70ac5b37c14128df53cc528dd15249_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-server-rhel8@sha256:60ebf2880f4ebd96c22bcdeb50e9ec991c70ac5b37c14128df53cc528dd15249?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel8&tag=v4.14.0-202311021650.p0.g35f4739.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/oc-mirror-plugin-rhel8@sha256:2c92b9af4618d77ad5fa2765d0067ea1fb8178db227d588b412908843a257fdc_amd64", + "product": { + "name": "openshift4/oc-mirror-plugin-rhel8@sha256:2c92b9af4618d77ad5fa2765d0067ea1fb8178db227d588b412908843a257fdc_amd64", + "product_id": "openshift4/oc-mirror-plugin-rhel8@sha256:2c92b9af4618d77ad5fa2765d0067ea1fb8178db227d588b412908843a257fdc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oc-mirror-plugin-rhel8@sha256:2c92b9af4618d77ad5fa2765d0067ea1fb8178db227d588b412908843a257fdc?arch=amd64&repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel8&tag=v4.14.0-202311031050.p0.gd124cd5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-builder@sha256:e89066c3eea77d62d83c6a18b60feb0c3438091d884b6a1bcb60ce3f29567ff9_amd64", + "product": { + "name": "openshift4/ose-docker-builder@sha256:e89066c3eea77d62d83c6a18b60feb0c3438091d884b6a1bcb60ce3f29567ff9_amd64", + "product_id": "openshift4/ose-docker-builder@sha256:e89066c3eea77d62d83c6a18b60feb0c3438091d884b6a1bcb60ce3f29567ff9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-builder@sha256:e89066c3eea77d62d83c6a18b60feb0c3438091d884b6a1bcb60ce3f29567ff9?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-docker-builder&tag=v4.14.0-202311071732.p0.g720efaa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli@sha256:f8d661f777edee03a91ded5c33510523fa9838f1f609ff282a5bd53f451c86cb_amd64", + "product": { + "name": "openshift4/ose-cli@sha256:f8d661f777edee03a91ded5c33510523fa9838f1f609ff282a5bd53f451c86cb_amd64", + "product_id": "openshift4/ose-cli@sha256:f8d661f777edee03a91ded5c33510523fa9838f1f609ff282a5bd53f451c86cb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli@sha256:f8d661f777edee03a91ded5c33510523fa9838f1f609ff282a5bd53f451c86cb?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cli&tag=v4.14.0-202311021650.p0.g9b1e0d2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console@sha256:3d4201fb5296b3b549e5aff57dafa4d7ab1d6b8e9e8c6939cbae50c838552c04_amd64", + "product": { + "name": "openshift4/ose-console@sha256:3d4201fb5296b3b549e5aff57dafa4d7ab1d6b8e9e8c6939cbae50c838552c04_amd64", + "product_id": "openshift4/ose-console@sha256:3d4201fb5296b3b549e5aff57dafa4d7ab1d6b8e9e8c6939cbae50c838552c04_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-console@sha256:3d4201fb5296b3b549e5aff57dafa4d7ab1d6b8e9e8c6939cbae50c838552c04?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-console&tag=v4.14.0-202311061131.p0.g92b8759.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console-operator@sha256:e7acc4accb633302cad48c17c1dbb07f09a5de370df1be94f8f4f3527f685fa8_amd64", + "product": { + "name": "openshift4/ose-console-operator@sha256:e7acc4accb633302cad48c17c1dbb07f09a5de370df1be94f8f4f3527f685fa8_amd64", + "product_id": "openshift4/ose-console-operator@sha256:e7acc4accb633302cad48c17c1dbb07f09a5de370df1be94f8f4f3527f685fa8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-console-operator@sha256:e7acc4accb633302cad48c17c1dbb07f09a5de370df1be94f8f4f3527f685fa8?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-console-operator&tag=v4.14.0-202311021650.p0.g966e915.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-deployer@sha256:bac9d84bce5a1a5c3153051738a3bb623b8d38e646a722f17add4ec0ed30b80b_amd64", + "product": { + "name": "openshift4/ose-deployer@sha256:bac9d84bce5a1a5c3153051738a3bb623b8d38e646a722f17add4ec0ed30b80b_amd64", + "product_id": "openshift4/ose-deployer@sha256:bac9d84bce5a1a5c3153051738a3bb623b8d38e646a722f17add4ec0ed30b80b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-deployer@sha256:bac9d84bce5a1a5c3153051738a3bb623b8d38e646a722f17add4ec0ed30b80b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-deployer&tag=v4.14.0-202311021650.p0.g9b1e0d2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-haproxy-router@sha256:907629a8a52b152986c59424f49d332bef956282471d5f5704b0341792e7d0a5_amd64", + "product": { + "name": "openshift4/ose-haproxy-router@sha256:907629a8a52b152986c59424f49d332bef956282471d5f5704b0341792e7d0a5_amd64", + "product_id": "openshift4/ose-haproxy-router@sha256:907629a8a52b152986c59424f49d332bef956282471d5f5704b0341792e7d0a5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-haproxy-router@sha256:907629a8a52b152986c59424f49d332bef956282471d5f5704b0341792e7d0a5?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-haproxy-router&tag=v4.14.0-202311021650.p0.gb3af193.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-keepalived-ipfailover@sha256:d1960508c9de731e1ed37584ece15359663af32ddd91bdaa5820eced0ef69533_amd64", + "product": { + "name": "openshift4/ose-keepalived-ipfailover@sha256:d1960508c9de731e1ed37584ece15359663af32ddd91bdaa5820eced0ef69533_amd64", + "product_id": "openshift4/ose-keepalived-ipfailover@sha256:d1960508c9de731e1ed37584ece15359663af32ddd91bdaa5820eced0ef69533_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-keepalived-ipfailover@sha256:d1960508c9de731e1ed37584ece15359663af32ddd91bdaa5820eced0ef69533?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover&tag=v4.14.0-202311021650.p0.gf08cee3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-pod@sha256:9f8da234bf7b882f744d4cb7f2f06900e270541e3b55f9d1407018f5cacdf700_amd64", + "product": { + "name": "openshift4/ose-pod@sha256:9f8da234bf7b882f744d4cb7f2f06900e270541e3b55f9d1407018f5cacdf700_amd64", + "product_id": "openshift4/ose-pod@sha256:9f8da234bf7b882f744d4cb7f2f06900e270541e3b55f9d1407018f5cacdf700_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-pod@sha256:9f8da234bf7b882f744d4cb7f2f06900e270541e3b55f9d1407018f5cacdf700?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-pod&tag=v4.14.0-202311021650.p0.gf67aeb3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-registry@sha256:18e062ec797b5d4fcdb53d1b68d82fa7a3d4bfc54d3a9568479254302a553ab3_amd64", + "product": { + "name": "openshift4/ose-docker-registry@sha256:18e062ec797b5d4fcdb53d1b68d82fa7a3d4bfc54d3a9568479254302a553ab3_amd64", + "product_id": "openshift4/ose-docker-registry@sha256:18e062ec797b5d4fcdb53d1b68d82fa7a3d4bfc54d3a9568479254302a553ab3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-registry@sha256:18e062ec797b5d4fcdb53d1b68d82fa7a3d4bfc54d3a9568479254302a553ab3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-docker-registry&tag=v4.14.0-202311021650.p0.g5e7788a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tests@sha256:b6d27bd057e3950fe1c720cfd0839ad0791a06c43c30d3643179439f1be109fe_amd64", + "product": { + "name": "openshift4/ose-tests@sha256:b6d27bd057e3950fe1c720cfd0839ad0791a06c43c30d3643179439f1be109fe_amd64", + "product_id": "openshift4/ose-tests@sha256:b6d27bd057e3950fe1c720cfd0839ad0791a06c43c30d3643179439f1be109fe_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-tests@sha256:b6d27bd057e3950fe1c720cfd0839ad0791a06c43c30d3643179439f1be109fe?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-tests&tag=v4.14.0-202311021650.p0.g81a21f1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:ae2cd801fc4aab9ada6d05f5966d6571bc695c682010fd11c69797541a823fa1_amd64", + "product": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:ae2cd801fc4aab9ada6d05f5966d6571bc695c682010fd11c69797541a823fa1_amd64", + "product_id": "openshift4/ose-openshift-state-metrics-rhel8@sha256:ae2cd801fc4aab9ada6d05f5966d6571bc695c682010fd11c69797541a823fa1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-state-metrics-rhel8@sha256:ae2cd801fc4aab9ada6d05f5966d6571bc695c682010fd11c69797541a823fa1?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8&tag=v4.14.0-202311021650.p0.gdff4b0f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-lifecycle-manager@sha256:0dfaccb9700fdecdd77b7d773c68e3eab2cc804668d63b5c62999d0ad354895d_amd64", + "product": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:0dfaccb9700fdecdd77b7d773c68e3eab2cc804668d63b5c62999d0ad354895d_amd64", + "product_id": "openshift4/ose-operator-lifecycle-manager@sha256:0dfaccb9700fdecdd77b7d773c68e3eab2cc804668d63b5c62999d0ad354895d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-lifecycle-manager@sha256:0dfaccb9700fdecdd77b7d773c68e3eab2cc804668d63b5c62999d0ad354895d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager&tag=v4.14.0-202311021650.p0.g48d1541.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-registry@sha256:c1d9e51b966568703fde0fff786b5eb2145b2859c4c67fbc0729ef9c211e0fe6_amd64", + "product": { + "name": "openshift4/ose-operator-registry@sha256:c1d9e51b966568703fde0fff786b5eb2145b2859c4c67fbc0729ef9c211e0fe6_amd64", + "product_id": "openshift4/ose-operator-registry@sha256:c1d9e51b966568703fde0fff786b5eb2145b2859c4c67fbc0729ef9c211e0fe6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-registry@sha256:c1d9e51b966568703fde0fff786b5eb2145b2859c4c67fbc0729ef9c211e0fe6?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-operator-registry&tag=v4.14.0-202311021650.p0.g48d1541.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:d28c9adc6863eb1d3983d15f5da41a91d39bc7c5493092006f95d7acd2463fe6_amd64", + "product": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:d28c9adc6863eb1d3983d15f5da41a91d39bc7c5493092006f95d7acd2463fe6_amd64", + "product_id": "openshift4/ose-agent-installer-api-server-rhel8@sha256:d28c9adc6863eb1d3983d15f5da41a91d39bc7c5493092006f95d7acd2463fe6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-api-server-rhel8@sha256:d28c9adc6863eb1d3983d15f5da41a91d39bc7c5493092006f95d7acd2463fe6?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8&tag=v4.14.0-202311021650.p0.g4e1a1e5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:dee94a75ff1f297b7189f58a8e5f8c97aa4564b47720a20ff589801051c0db8a_amd64", + "product": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:dee94a75ff1f297b7189f58a8e5f8c97aa4564b47720a20ff589801051c0db8a_amd64", + "product_id": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:dee94a75ff1f297b7189f58a8e5f8c97aa4564b47720a20ff589801051c0db8a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-csr-approver-rhel8@sha256:dee94a75ff1f297b7189f58a8e5f8c97aa4564b47720a20ff589801051c0db8a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8&tag=v4.14.0-202311021650.p0.g9fd99e3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:ccd30bffd8f7fda739de94323fb6bebedc7b5bb381cda0ff07a8ea674adaabe9_amd64", + "product": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:ccd30bffd8f7fda739de94323fb6bebedc7b5bb381cda0ff07a8ea674adaabe9_amd64", + "product_id": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:ccd30bffd8f7fda739de94323fb6bebedc7b5bb381cda0ff07a8ea674adaabe9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-orchestrator-rhel8@sha256:ccd30bffd8f7fda739de94323fb6bebedc7b5bb381cda0ff07a8ea674adaabe9?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8&tag=v4.14.0-202311021650.p0.g9fd99e3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-utils-rhel8@sha256:a2004defb9deefb4c0be479b80ad84a939dd6ec33ff56707915fa0dcf72d2adb_amd64", + "product": { + "name": "openshift4/ose-agent-installer-utils-rhel8@sha256:a2004defb9deefb4c0be479b80ad84a939dd6ec33ff56707915fa0dcf72d2adb_amd64", + "product_id": "openshift4/ose-agent-installer-utils-rhel8@sha256:a2004defb9deefb4c0be479b80ad84a939dd6ec33ff56707915fa0dcf72d2adb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-utils-rhel8@sha256:a2004defb9deefb4c0be479b80ad84a939dd6ec33ff56707915fa0dcf72d2adb?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel8&tag=v4.14.0-202311021650.p0.gad85376.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:87d89f34acb414806c54e1581cea55296786246e0b6aa76ecc6604f8b2cd5884_amd64", + "product": { + "name": "openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:87d89f34acb414806c54e1581cea55296786246e0b6aa76ecc6604f8b2cd5884_amd64", + "product_id": "openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:87d89f34acb414806c54e1581cea55296786246e0b6aa76ecc6604f8b2cd5884_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-alibaba-cloud-controller-manager-rhel8@sha256:87d89f34acb414806c54e1581cea55296786246e0b6aa76ecc6604f8b2cd5884?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.g8c532d2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:c37b3d675bfe3b02ea6cfa1862db40b175ce248a528456c9780932629bfe7de7_amd64", + "product": { + "name": "openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:c37b3d675bfe3b02ea6cfa1862db40b175ce248a528456c9780932629bfe7de7_amd64", + "product_id": "openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:c37b3d675bfe3b02ea6cfa1862db40b175ce248a528456c9780932629bfe7de7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:c37b3d675bfe3b02ea6cfa1862db40b175ce248a528456c9780932629bfe7de7?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8&tag=v4.14.0-202311021650.p0.g3dc363d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:6454f60bd6bbd488b3e915f152199bfdd370a489e162cc4d90c8a9a8b2580ae2_amd64", + "product": { + "name": "openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:6454f60bd6bbd488b3e915f152199bfdd370a489e162cc4d90c8a9a8b2580ae2_amd64", + "product_id": "openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:6454f60bd6bbd488b3e915f152199bfdd370a489e162cc4d90c8a9a8b2580ae2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:6454f60bd6bbd488b3e915f152199bfdd370a489e162cc4d90c8a9a8b2580ae2?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8&tag=v4.14.0-202311021650.p0.g7e0204a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-alibaba-machine-controllers-rhel8@sha256:098d7b28c70c04aaded59f23bf814adf931abee591caab97873bbf1964aa7550_amd64", + "product": { + "name": "openshift4/ose-alibaba-machine-controllers-rhel8@sha256:098d7b28c70c04aaded59f23bf814adf931abee591caab97873bbf1964aa7550_amd64", + "product_id": "openshift4/ose-alibaba-machine-controllers-rhel8@sha256:098d7b28c70c04aaded59f23bf814adf931abee591caab97873bbf1964aa7550_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-alibaba-machine-controllers-rhel8@sha256:098d7b28c70c04aaded59f23bf814adf931abee591caab97873bbf1964aa7550?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8&tag=v4.14.0-202311021650.p0.g27f105d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:763c00fceac320967491c29fd1a7cc159e0e8ac6339c625342d691c281cc0de0_amd64", + "product": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:763c00fceac320967491c29fd1a7cc159e0e8ac6339c625342d691c281cc0de0_amd64", + "product_id": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:763c00fceac320967491c29fd1a7cc159e0e8ac6339c625342d691c281cc0de0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-apiserver-network-proxy-rhel8@sha256:763c00fceac320967491c29fd1a7cc159e0e8ac6339c625342d691c281cc0de0?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8&tag=v4.14.0-202311021650.p0.g15cd434.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:55771d63bbeda7eb965dc389b9487e83c437d3ae82881eadc1b5c6f803a6ef39_amd64", + "product": { + "name": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:55771d63bbeda7eb965dc389b9487e83c437d3ae82881eadc1b5c6f803a6ef39_amd64", + "product_id": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:55771d63bbeda7eb965dc389b9487e83c437d3ae82881eadc1b5c6f803a6ef39_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-cloud-controller-manager-rhel8@sha256:55771d63bbeda7eb965dc389b9487e83c437d3ae82881eadc1b5c6f803a6ef39?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.g0a4f2a0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:0fa2c82280e9a9fdc1857537aadb453f5dc7165f4cef50ddc33bd5377cdd5967_amd64", + "product": { + "name": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:0fa2c82280e9a9fdc1857537aadb453f5dc7165f4cef50ddc33bd5377cdd5967_amd64", + "product_id": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:0fa2c82280e9a9fdc1857537aadb453f5dc7165f4cef50ddc33bd5377cdd5967_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-cluster-api-controllers-rhel8@sha256:0fa2c82280e9a9fdc1857537aadb453f5dc7165f4cef50ddc33bd5377cdd5967?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8&tag=v4.14.0-202311021650.p0.ga7518d1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:0f429130969f055755a8e5088ad024f6d1739b01dd2a6fb8f70ca2fac70eb9f2_amd64", + "product": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:0f429130969f055755a8e5088ad024f6d1739b01dd2a6fb8f70ca2fac70eb9f2_amd64", + "product_id": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:0f429130969f055755a8e5088ad024f6d1739b01dd2a6fb8f70ca2fac70eb9f2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel8@sha256:0f429130969f055755a8e5088ad024f6d1739b01dd2a6fb8f70ca2fac70eb9f2?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.g2e2e277.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:3c3bae5ad9edf5a36574a9fb911308be09da47cb14e040b315d0eaf9cd5d8b8a_amd64", + "product": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:3c3bae5ad9edf5a36574a9fb911308be09da47cb14e040b315d0eaf9cd5d8b8a_amd64", + "product_id": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:3c3bae5ad9edf5a36574a9fb911308be09da47cb14e040b315d0eaf9cd5d8b8a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel8-operator@sha256:3c3bae5ad9edf5a36574a9fb911308be09da47cb14e040b315d0eaf9cd5d8b8a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator&tag=v4.14.0-202311021650.p0.g024bec5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:46380fa54203c25657865d68347dfeb721ea029b083d10798e2a9104c25007af_amd64", + "product": { + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:46380fa54203c25657865d68347dfeb721ea029b083d10798e2a9104c25007af_amd64", + "product_id": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:46380fa54203c25657865d68347dfeb721ea029b083d10798e2a9104c25007af_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-pod-identity-webhook-rhel8@sha256:46380fa54203c25657865d68347dfeb721ea029b083d10798e2a9104c25007af?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8&tag=v4.14.0-202311031646.p0.g8cc7a27.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:39c238c58cb24a0a8a374be59bf4bd581cbd449a9211e8e2f927c21c485a3927_amd64", + "product": { + "name": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:39c238c58cb24a0a8a374be59bf4bd581cbd449a9211e8e2f927c21c485a3927_amd64", + "product_id": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:39c238c58cb24a0a8a374be59bf4bd581cbd449a9211e8e2f927c21c485a3927_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-cloud-controller-manager-rhel8@sha256:39c238c58cb24a0a8a374be59bf4bd581cbd449a9211e8e2f927c21c485a3927?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.gcca9a84.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:0f94c814cbe4169f8a33449d129c109e37935ab0ea6079b645b04307deb8aa46_amd64", + "product": { + "name": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:0f94c814cbe4169f8a33449d129c109e37935ab0ea6079b645b04307deb8aa46_amd64", + "product_id": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:0f94c814cbe4169f8a33449d129c109e37935ab0ea6079b645b04307deb8aa46_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-cloud-node-manager-rhel8@sha256:0f94c814cbe4169f8a33449d129c109e37935ab0ea6079b645b04307deb8aa46?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8&tag=v4.14.0-202311021650.p0.gcca9a84.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:9c2910512345424e5e2cb17245bf65c3ac63971177c9cd1b8ed4564f1944cfb0_amd64", + "product": { + "name": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:9c2910512345424e5e2cb17245bf65c3ac63971177c9cd1b8ed4564f1944cfb0_amd64", + "product_id": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:9c2910512345424e5e2cb17245bf65c3ac63971177c9cd1b8ed4564f1944cfb0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-cluster-api-controllers-rhel8@sha256:9c2910512345424e5e2cb17245bf65c3ac63971177c9cd1b8ed4564f1944cfb0?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8&tag=v4.14.0-202311021650.p0.g7ad2773.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:bea39a7dcb076922022aa176ec869a3b04d473617e22316d3ba63b314457eaa5_amd64", + "product": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:bea39a7dcb076922022aa176ec869a3b04d473617e22316d3ba63b314457eaa5_amd64", + "product_id": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:bea39a7dcb076922022aa176ec869a3b04d473617e22316d3ba63b314457eaa5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-disk-csi-driver-rhel8@sha256:bea39a7dcb076922022aa176ec869a3b04d473617e22316d3ba63b314457eaa5?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.gb19eec1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:754a360fbe2dc74d1e28315346912af6f4e990544ae8c958ed15dd5f6c55902e_amd64", + "product": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:754a360fbe2dc74d1e28315346912af6f4e990544ae8c958ed15dd5f6c55902e_amd64", + "product_id": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:754a360fbe2dc74d1e28315346912af6f4e990544ae8c958ed15dd5f6c55902e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-disk-csi-driver-rhel8-operator@sha256:754a360fbe2dc74d1e28315346912af6f4e990544ae8c958ed15dd5f6c55902e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator&tag=v4.14.0-202311021650.p0.g3e2ddb3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:c552af9896d31fc0828175b6cf4796551c0c848db2c1b742e73c2e94c6b3b2ee_amd64", + "product": { + "name": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:c552af9896d31fc0828175b6cf4796551c0c848db2c1b742e73c2e94c6b3b2ee_amd64", + "product_id": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:c552af9896d31fc0828175b6cf4796551c0c848db2c1b742e73c2e94c6b3b2ee_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-file-csi-driver-rhel8@sha256:c552af9896d31fc0828175b6cf4796551c0c848db2c1b742e73c2e94c6b3b2ee?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.gf401f53.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:7699dacbe9201d9109acfc01ca9689fdb5619286dbc95c0130c717ed8c9fb9a1_amd64", + "product": { + "name": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:7699dacbe9201d9109acfc01ca9689fdb5619286dbc95c0130c717ed8c9fb9a1_amd64", + "product_id": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:7699dacbe9201d9109acfc01ca9689fdb5619286dbc95c0130c717ed8c9fb9a1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-file-csi-driver-operator-rhel8@sha256:7699dacbe9201d9109acfc01ca9689fdb5619286dbc95c0130c717ed8c9fb9a1?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8&tag=v4.14.0-202311021650.p0.g43838ae.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:b977c5338565731020bad68d4c0282640a9ca7f778ec3d6f498f0b2498f57d33_amd64", + "product": { + "name": "openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:b977c5338565731020bad68d4c0282640a9ca7f778ec3d6f498f0b2498f57d33_amd64", + "product_id": "openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:b977c5338565731020bad68d4c0282640a9ca7f778ec3d6f498f0b2498f57d33_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-workload-identity-webhook-rhel8@sha256:b977c5338565731020bad68d4c0282640a9ca7f778ec3d6f498f0b2498f57d33?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-workload-identity-webhook-rhel8&tag=v4.14.0-202311021650.p0.ga474b2b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:287cce61a10c422fcda5bf4f3300d8816661dbb1435be59daeb6ec8713911f32_amd64", + "product": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:287cce61a10c422fcda5bf4f3300d8816661dbb1435be59daeb6ec8713911f32_amd64", + "product_id": "openshift4/ose-baremetal-installer-rhel8@sha256:287cce61a10c422fcda5bf4f3300d8816661dbb1435be59daeb6ec8713911f32_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-installer-rhel8@sha256:287cce61a10c422fcda5bf4f3300d8816661dbb1435be59daeb6ec8713911f32?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8&tag=v4.14.0-202311040828.p0.gc0f108b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:06e28fc52efd536d41a18592cea229486064160b16a61af20c733e82de6494e0_amd64", + "product": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:06e28fc52efd536d41a18592cea229486064160b16a61af20c733e82de6494e0_amd64", + "product_id": "openshift4/ose-baremetal-rhel8-operator@sha256:06e28fc52efd536d41a18592cea229486064160b16a61af20c733e82de6494e0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-rhel8-operator@sha256:06e28fc52efd536d41a18592cea229486064160b16a61af20c733e82de6494e0?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel8-operator&tag=v4.14.0-202311021650.p0.g8643f32.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:fc4e6fe57f5d1ddbd816449e9b73ccc326d133de76bfd6d6683cf3a21a43a135_amd64", + "product": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:fc4e6fe57f5d1ddbd816449e9b73ccc326d133de76bfd6d6683cf3a21a43a135_amd64", + "product_id": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:fc4e6fe57f5d1ddbd816449e9b73ccc326d133de76bfd6d6683cf3a21a43a135_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-runtimecfg-rhel8@sha256:fc4e6fe57f5d1ddbd816449e9b73ccc326d133de76bfd6d6683cf3a21a43a135?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8&tag=v4.14.0-202311021650.p0.ge7fa0f2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli-artifacts@sha256:3251d8d0a7c4fe3b6e7d3d139b120242caf092e70470b25bf3a911c7aa3889ce_amd64", + "product": { + "name": "openshift4/ose-cli-artifacts@sha256:3251d8d0a7c4fe3b6e7d3d139b120242caf092e70470b25bf3a911c7aa3889ce_amd64", + "product_id": "openshift4/ose-cli-artifacts@sha256:3251d8d0a7c4fe3b6e7d3d139b120242caf092e70470b25bf3a911c7aa3889ce_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli-artifacts@sha256:3251d8d0a7c4fe3b6e7d3d139b120242caf092e70470b25bf3a911c7aa3889ce?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cli-artifacts&tag=v4.14.0-202311021650.p0.g9b1e0d2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-credential-operator@sha256:32fbec48a7eef1f6c44f60c05708fb766f324e2ee658307dacee1022fe29bedc_amd64", + "product": { + "name": "openshift4/ose-cloud-credential-operator@sha256:32fbec48a7eef1f6c44f60c05708fb766f324e2ee658307dacee1022fe29bedc_amd64", + "product_id": "openshift4/ose-cloud-credential-operator@sha256:32fbec48a7eef1f6c44f60c05708fb766f324e2ee658307dacee1022fe29bedc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-credential-operator@sha256:32fbec48a7eef1f6c44f60c05708fb766f324e2ee658307dacee1022fe29bedc?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cloud-credential-operator&tag=v4.14.0-202311031646.p0.ge70c0de.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:08a0823815c9c0918443585f70f415c466e809bc0ecbe368a7330e038a729032_amd64", + "product": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:08a0823815c9c0918443585f70f415c466e809bc0ecbe368a7330e038a729032_amd64", + "product_id": "openshift4/cloud-network-config-controller-rhel8@sha256:08a0823815c9c0918443585f70f415c466e809bc0ecbe368a7330e038a729032_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cloud-network-config-controller-rhel8@sha256:08a0823815c9c0918443585f70f415c466e809bc0ecbe368a7330e038a729032?arch=amd64&repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel8&tag=v4.14.0-202311021650.p0.g9cb1bbd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-api-rhel8@sha256:d5df1f49288de56b5743b2f97215c0f111fa904a17e6ecdf9d9066dc97d00134_amd64", + "product": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:d5df1f49288de56b5743b2f97215c0f111fa904a17e6ecdf9d9066dc97d00134_amd64", + "product_id": "openshift4/ose-cluster-api-rhel8@sha256:d5df1f49288de56b5743b2f97215c0f111fa904a17e6ecdf9d9066dc97d00134_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-api-rhel8@sha256:d5df1f49288de56b5743b2f97215c0f111fa904a17e6ecdf9d9066dc97d00134?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel8&tag=v4.14.0-202311021650.p0.gae83c55.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-authentication-operator@sha256:669ee7b2ad4c82503ff12128140b03c212c718deacbcd1752174010181ac16ec_amd64", + "product": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:669ee7b2ad4c82503ff12128140b03c212c718deacbcd1752174010181ac16ec_amd64", + "product_id": "openshift4/ose-cluster-authentication-operator@sha256:669ee7b2ad4c82503ff12128140b03c212c718deacbcd1752174010181ac16ec_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-authentication-operator@sha256:669ee7b2ad4c82503ff12128140b03c212c718deacbcd1752174010181ac16ec?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-operator&tag=v4.14.0-202311021650.p0.g9ad3782.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:4643d47a91e88359656bcaae541633e20e3e1d9f0a260223652b15d50dc02a20_amd64", + "product": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:4643d47a91e88359656bcaae541633e20e3e1d9f0a260223652b15d50dc02a20_amd64", + "product_id": "openshift4/ose-cluster-autoscaler-operator@sha256:4643d47a91e88359656bcaae541633e20e3e1d9f0a260223652b15d50dc02a20_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler-operator@sha256:4643d47a91e88359656bcaae541633e20e3e1d9f0a260223652b15d50dc02a20?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-operator&tag=v4.14.0-202311021650.p0.g01c3b09.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:d483973f0ad91eba4bcef4407ed96aa4b75a6a87ae71b6761b3c0e582a124792_amd64", + "product": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:d483973f0ad91eba4bcef4407ed96aa4b75a6a87ae71b6761b3c0e582a124792_amd64", + "product_id": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:d483973f0ad91eba4bcef4407ed96aa4b75a6a87ae71b6761b3c0e582a124792_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-baremetal-operator-rhel8@sha256:d483973f0ad91eba4bcef4407ed96aa4b75a6a87ae71b6761b3c0e582a124792?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8&tag=v4.14.0-202311021650.p0.g582b745.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-bootstrap@sha256:efdcbc8488ad60c10960ecc55a1d1a44829e4170374908ad1783f26054ce85de_amd64", + "product": { + "name": "openshift4/ose-cluster-bootstrap@sha256:efdcbc8488ad60c10960ecc55a1d1a44829e4170374908ad1783f26054ce85de_amd64", + "product_id": "openshift4/ose-cluster-bootstrap@sha256:efdcbc8488ad60c10960ecc55a1d1a44829e4170374908ad1783f26054ce85de_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-bootstrap@sha256:efdcbc8488ad60c10960ecc55a1d1a44829e4170374908ad1783f26054ce85de?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap&tag=v4.14.0-202311021650.p0.g93fba13.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:8b6f707529c9b114fee768a00016eeb0a3d702f79e4f567f7ee5a4a768748348_amd64", + "product": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:8b6f707529c9b114fee768a00016eeb0a3d702f79e4f567f7ee5a4a768748348_amd64", + "product_id": "openshift4/ose-cluster-capi-rhel8-operator@sha256:8b6f707529c9b114fee768a00016eeb0a3d702f79e4f567f7ee5a4a768748348_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-rhel8-operator@sha256:8b6f707529c9b114fee768a00016eeb0a3d702f79e4f567f7ee5a4a768748348?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator&tag=v4.14.0-202311021650.p0.gb4c4fb1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:8b6f707529c9b114fee768a00016eeb0a3d702f79e4f567f7ee5a4a768748348_amd64", + "product": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:8b6f707529c9b114fee768a00016eeb0a3d702f79e4f567f7ee5a4a768748348_amd64", + "product_id": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:8b6f707529c9b114fee768a00016eeb0a3d702f79e4f567f7ee5a4a768748348_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-operator-container-rhel8@sha256:8b6f707529c9b114fee768a00016eeb0a3d702f79e4f567f7ee5a4a768748348?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8&tag=v4.14.0-202311021650.p0.gb4c4fb1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:f44bfc6deae3721a7b57d765efdcfe5bc5c5934f478085f5aaf75d539f9f00de_amd64", + "product": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:f44bfc6deae3721a7b57d765efdcfe5bc5c5934f478085f5aaf75d539f9f00de_amd64", + "product_id": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:f44bfc6deae3721a7b57d765efdcfe5bc5c5934f478085f5aaf75d539f9f00de_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:f44bfc6deae3721a7b57d765efdcfe5bc5c5934f478085f5aaf75d539f9f00de?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8&tag=v4.14.0-202311021650.p0.g785ecef.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-config-operator@sha256:d5f9eb32fa7893dc0cc26a6d576d2aa46771099f7273c5a79a51bbdab89cbb58_amd64", + "product": { + "name": "openshift4/ose-cluster-config-operator@sha256:d5f9eb32fa7893dc0cc26a6d576d2aa46771099f7273c5a79a51bbdab89cbb58_amd64", + "product_id": "openshift4/ose-cluster-config-operator@sha256:d5f9eb32fa7893dc0cc26a6d576d2aa46771099f7273c5a79a51bbdab89cbb58_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-config-operator@sha256:d5f9eb32fa7893dc0cc26a6d576d2aa46771099f7273c5a79a51bbdab89cbb58?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-config-operator&tag=v4.14.0-202311031646.p0.gd069e14.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:187aab59700d1d8e6877b446227acdece094f874b591b52c87c373ac43dc4f9b_amd64", + "product": { + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:187aab59700d1d8e6877b446227acdece094f874b591b52c87c373ac43dc4f9b_amd64", + "product_id": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:187aab59700d1d8e6877b446227acdece094f874b591b52c87c373ac43dc4f9b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:187aab59700d1d8e6877b446227acdece094f874b591b52c87c373ac43dc4f9b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8&tag=v4.14.0-202311021650.p0.g0455a74.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:45ad3eaf40fb50f8fdc5a2923a63dc3eec7e34e83aa979a1262f694e8bcacc31_amd64", + "product": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:45ad3eaf40fb50f8fdc5a2923a63dc3eec7e34e83aa979a1262f694e8bcacc31_amd64", + "product_id": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:45ad3eaf40fb50f8fdc5a2923a63dc3eec7e34e83aa979a1262f694e8bcacc31_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:45ad3eaf40fb50f8fdc5a2923a63dc3eec7e34e83aa979a1262f694e8bcacc31?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator&tag=v4.14.0-202311021650.p0.g5d8bae8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-dns-operator@sha256:aa8ff0a93c4e90359fe4950fa5b0bc266bbff18e2788a20fd156048c34a572b7_amd64", + "product": { + "name": "openshift4/ose-cluster-dns-operator@sha256:aa8ff0a93c4e90359fe4950fa5b0bc266bbff18e2788a20fd156048c34a572b7_amd64", + "product_id": "openshift4/ose-cluster-dns-operator@sha256:aa8ff0a93c4e90359fe4950fa5b0bc266bbff18e2788a20fd156048c34a572b7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-dns-operator@sha256:aa8ff0a93c4e90359fe4950fa5b0bc266bbff18e2788a20fd156048c34a572b7?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-dns-operator&tag=v4.14.0-202311021650.p0.g5553a22.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-image-registry-operator@sha256:b2ef5eaec1882e69cb1e7c5bd72cebec461d4ce0e709719ea07d2e5861de8e63_amd64", + "product": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:b2ef5eaec1882e69cb1e7c5bd72cebec461d4ce0e709719ea07d2e5861de8e63_amd64", + "product_id": "openshift4/ose-cluster-image-registry-operator@sha256:b2ef5eaec1882e69cb1e7c5bd72cebec461d4ce0e709719ea07d2e5861de8e63_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-image-registry-operator@sha256:b2ef5eaec1882e69cb1e7c5bd72cebec461d4ce0e709719ea07d2e5861de8e63?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-operator&tag=v4.14.0-202311071209.p0.gd27b918.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-ingress-operator@sha256:7a15fe732d5432418170d6fedb8ac0d65e5d32e4db9bfc8fd21c1b02338cd649_amd64", + "product": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:7a15fe732d5432418170d6fedb8ac0d65e5d32e4db9bfc8fd21c1b02338cd649_amd64", + "product_id": "openshift4/ose-cluster-ingress-operator@sha256:7a15fe732d5432418170d6fedb8ac0d65e5d32e4db9bfc8fd21c1b02338cd649_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-ingress-operator@sha256:7a15fe732d5432418170d6fedb8ac0d65e5d32e4db9bfc8fd21c1b02338cd649?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-operator&tag=v4.14.0-202311021650.p0.gd876f5a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:41524356aa6f8986d2d488673c9983fe4853cd9818b337de6002e7df7b8be838_amd64", + "product": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:41524356aa6f8986d2d488673c9983fe4853cd9818b337de6002e7df7b8be838_amd64", + "product_id": "openshift4/ose-cluster-kube-apiserver-operator@sha256:41524356aa6f8986d2d488673c9983fe4853cd9818b337de6002e7df7b8be838_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-apiserver-operator@sha256:41524356aa6f8986d2d488673c9983fe4853cd9818b337de6002e7df7b8be838?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator&tag=v4.14.0-202311031050.p0.gd52dbad.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:5eb521836145e2dcb596bfb3e07bdcc11dc802b181619328ed4977d8bb1645ff_amd64", + "product": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:5eb521836145e2dcb596bfb3e07bdcc11dc802b181619328ed4977d8bb1645ff_amd64", + "product_id": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:5eb521836145e2dcb596bfb3e07bdcc11dc802b181619328ed4977d8bb1645ff_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel8-operator@sha256:5eb521836145e2dcb596bfb3e07bdcc11dc802b181619328ed4977d8bb1645ff?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator&tag=v4.14.0-202311021650.p0.gb287d08.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:51c3f251ca26c820d0603fbc842180296f52d678ee42d829d9a1127bc456df19_amd64", + "product": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:51c3f251ca26c820d0603fbc842180296f52d678ee42d829d9a1127bc456df19_amd64", + "product_id": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:51c3f251ca26c820d0603fbc842180296f52d678ee42d829d9a1127bc456df19_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-controller-manager-operator@sha256:51c3f251ca26c820d0603fbc842180296f52d678ee42d829d9a1127bc456df19?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator&tag=v4.14.0-202311021650.p0.gbc9ef03.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:c1eb7e9080327eae78ac1dfedb4ae82ab8bcfad901b9f2cc911299743165fec8_amd64", + "product": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:c1eb7e9080327eae78ac1dfedb4ae82ab8bcfad901b9f2cc911299743165fec8_amd64", + "product_id": "openshift4/ose-cluster-kube-scheduler-operator@sha256:c1eb7e9080327eae78ac1dfedb4ae82ab8bcfad901b9f2cc911299743165fec8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-scheduler-operator@sha256:c1eb7e9080327eae78ac1dfedb4ae82ab8bcfad901b9f2cc911299743165fec8?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator&tag=v4.14.0-202311021650.p0.g6e43991.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:49c2e4521f006fbadb1d96e5caaff31a463d1b746f5b49e0c146f94330bc3c4a_amd64", + "product": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:49c2e4521f006fbadb1d96e5caaff31a463d1b746f5b49e0c146f94330bc3c4a_amd64", + "product_id": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:49c2e4521f006fbadb1d96e5caaff31a463d1b746f5b49e0c146f94330bc3c4a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:49c2e4521f006fbadb1d96e5caaff31a463d1b746f5b49e0c146f94330bc3c4a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator&tag=v4.14.0-202311071511.p0.g9cd9922.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-machine-approver@sha256:0dffd73b3c3154c66f8ed30e420312379cd118258ceef8b7f4dec7241f7a8590_amd64", + "product": { + "name": "openshift4/ose-cluster-machine-approver@sha256:0dffd73b3c3154c66f8ed30e420312379cd118258ceef8b7f4dec7241f7a8590_amd64", + "product_id": "openshift4/ose-cluster-machine-approver@sha256:0dffd73b3c3154c66f8ed30e420312379cd118258ceef8b7f4dec7241f7a8590_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-machine-approver@sha256:0dffd73b3c3154c66f8ed30e420312379cd118258ceef8b7f4dec7241f7a8590?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver&tag=v4.14.0-202311021650.p0.g926c904.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-olm-operator-rhel8@sha256:e34579428e471435a590aa0e390f709093b0e4c08c4e730b5342da2d699f2588_amd64", + "product": { + "name": "openshift4/ose-cluster-olm-operator-rhel8@sha256:e34579428e471435a590aa0e390f709093b0e4c08c4e730b5342da2d699f2588_amd64", + "product_id": "openshift4/ose-cluster-olm-operator-rhel8@sha256:e34579428e471435a590aa0e390f709093b0e4c08c4e730b5342da2d699f2588_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-olm-operator-rhel8@sha256:e34579428e471435a590aa0e390f709093b0e4c08c4e730b5342da2d699f2588?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8&tag=v4.14.0-202311021650.p0.g9e05f32.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:cc15f335b57ec310ca545f0d315fb4b7e28dd5b4b6cb82ef22b71615b523b3bb_amd64", + "product": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:cc15f335b57ec310ca545f0d315fb4b7e28dd5b4b6cb82ef22b71615b523b3bb_amd64", + "product_id": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:cc15f335b57ec310ca545f0d315fb4b7e28dd5b4b6cb82ef22b71615b523b3bb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-apiserver-operator@sha256:cc15f335b57ec310ca545f0d315fb4b7e28dd5b4b6cb82ef22b71615b523b3bb?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator&tag=v4.14.0-202311021650.p0.g8bd8602.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:fe95daa51e0bbf3d8cbcdc91c403257ba874960d9f9bc463cf388051d1e8fc02_amd64", + "product": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:fe95daa51e0bbf3d8cbcdc91c403257ba874960d9f9bc463cf388051d1e8fc02_amd64", + "product_id": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:fe95daa51e0bbf3d8cbcdc91c403257ba874960d9f9bc463cf388051d1e8fc02_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-controller-manager-operator@sha256:fe95daa51e0bbf3d8cbcdc91c403257ba874960d9f9bc463cf388051d1e8fc02?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator&tag=v4.14.0-202311021650.p0.g04cec68.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:11ab5f03e45099738c05e50067115157c601b427f09f459ad5db5cc79ff3cf7d_amd64", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:11ab5f03e45099738c05e50067115157c601b427f09f459ad5db5cc79ff3cf7d_amd64", + "product_id": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:11ab5f03e45099738c05e50067115157c601b427f09f459ad5db5cc79ff3cf7d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8-operator@sha256:11ab5f03e45099738c05e50067115157c601b427f09f459ad5db5cc79ff3cf7d?arch=amd64&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator&tag=v4.14.0-202311021650.p0.g2fa33aa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:ac0d0aefd380764a0a000acd25844af672cf0fd228885db639cc61bd07160106_amd64", + "product": { + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:ac0d0aefd380764a0a000acd25844af672cf0fd228885db639cc61bd07160106_amd64", + "product_id": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:ac0d0aefd380764a0a000acd25844af672cf0fd228885db639cc61bd07160106_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-platform-operators-manager-rhel8@sha256:ac0d0aefd380764a0a000acd25844af672cf0fd228885db639cc61bd07160106?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8&tag=v4.14.0-202311021650.p0.g08fb27e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:4e7fa2d7f74161c1180172db75256f0a0d5314db0202ae0488dca5475a30133c_amd64", + "product": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:4e7fa2d7f74161c1180172db75256f0a0d5314db0202ae0488dca5475a30133c_amd64", + "product_id": "openshift4/ose-cluster-policy-controller-rhel8@sha256:4e7fa2d7f74161c1180172db75256f0a0d5314db0202ae0488dca5475a30133c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-policy-controller-rhel8@sha256:4e7fa2d7f74161c1180172db75256f0a0d5314db0202ae0488dca5475a30133c?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8&tag=v4.14.0-202311021650.p0.g219f6f6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-samples-operator@sha256:c3127e82da4260dbd0196c79ba0dc4fb1ae283ced0253102341b32e81d813036_amd64", + "product": { + "name": "openshift4/ose-cluster-samples-operator@sha256:c3127e82da4260dbd0196c79ba0dc4fb1ae283ced0253102341b32e81d813036_amd64", + "product_id": "openshift4/ose-cluster-samples-operator@sha256:c3127e82da4260dbd0196c79ba0dc4fb1ae283ced0253102341b32e81d813036_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-samples-operator@sha256:c3127e82da4260dbd0196c79ba0dc4fb1ae283ced0253102341b32e81d813036?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-samples-operator&tag=v4.14.0-202311021650.p0.gb5396eb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-storage-operator@sha256:1e4d1586bd0963118301b1d3b1d052ccf32c55beaef3c90148af9be294a705eb_amd64", + "product": { + "name": "openshift4/ose-cluster-storage-operator@sha256:1e4d1586bd0963118301b1d3b1d052ccf32c55beaef3c90148af9be294a705eb_amd64", + "product_id": "openshift4/ose-cluster-storage-operator@sha256:1e4d1586bd0963118301b1d3b1d052ccf32c55beaef3c90148af9be294a705eb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-storage-operator@sha256:1e4d1586bd0963118301b1d3b1d052ccf32c55beaef3c90148af9be294a705eb?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-storage-operator&tag=v4.14.0-202311021650.p0.gdbb1514.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-update-keys@sha256:63c36f42c64daafbd766d5494dcfcb4720083429747d1ffafafba51aa8ef28d3_amd64", + "product": { + "name": "openshift4/ose-cluster-update-keys@sha256:63c36f42c64daafbd766d5494dcfcb4720083429747d1ffafafba51aa8ef28d3_amd64", + "product_id": "openshift4/ose-cluster-update-keys@sha256:63c36f42c64daafbd766d5494dcfcb4720083429747d1ffafafba51aa8ef28d3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-update-keys@sha256:63c36f42c64daafbd766d5494dcfcb4720083429747d1ffafafba51aa8ef28d3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys&tag=v4.14.0-202311021650.p0.g9dd3eed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:b70e33031bc4a6d8ca90993ad20eba0e53aef31fc71890e1fda6ab0006bc2e46_amd64", + "product": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:b70e33031bc4a6d8ca90993ad20eba0e53aef31fc71890e1fda6ab0006bc2e46_amd64", + "product_id": "openshift4/ose-container-networking-plugins-rhel8@sha256:b70e33031bc4a6d8ca90993ad20eba0e53aef31fc71890e1fda6ab0006bc2e46_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-container-networking-plugins-rhel8@sha256:b70e33031bc4a6d8ca90993ad20eba0e53aef31fc71890e1fda6ab0006bc2e46?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8&tag=v4.14.0-202311021650.p0.g4633865.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:633d381d7143b3d24b2cecbe294802dddb5113c7be56b5eee9dffd6fe50b3151_amd64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:633d381d7143b3d24b2cecbe294802dddb5113c7be56b5eee9dffd6fe50b3151_amd64", + "product_id": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:633d381d7143b3d24b2cecbe294802dddb5113c7be56b5eee9dffd6fe50b3151_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-rhel8@sha256:633d381d7143b3d24b2cecbe294802dddb5113c7be56b5eee9dffd6fe50b3151?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8&tag=v4.14.0-202311021650.p0.g740b442.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:4554571f17d39e6be3f6f6b5f308e1938ee2cc1c1aaea045b1cc21202c176560_amd64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:4554571f17d39e6be3f6f6b5f308e1938ee2cc1c1aaea045b1cc21202c176560_amd64", + "product_id": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:4554571f17d39e6be3f6f6b5f308e1938ee2cc1c1aaea045b1cc21202c176560_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-operator-rhel8@sha256:4554571f17d39e6be3f6f6b5f308e1938ee2cc1c1aaea045b1cc21202c176560?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8&tag=v4.14.0-202311021650.p0.g73ddf3e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:f4049ae8ef0d9979372d2c304e0c71904f41e82bac13d00da39a48626a53c7b4_amd64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:f4049ae8ef0d9979372d2c304e0c71904f41e82bac13d00da39a48626a53c7b4_amd64", + "product_id": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:f4049ae8ef0d9979372d2c304e0c71904f41e82bac13d00da39a48626a53c7b4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-webhook-rhel8@sha256:f4049ae8ef0d9979372d2c304e0c71904f41e82bac13d00da39a48626a53c7b4?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8&tag=v4.14.0-202311021650.p0.g740b442.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:9c33f451bb385818b27c32562901756f8104cdc4f937184cb157d793039ebecf_amd64", + "product": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:9c33f451bb385818b27c32562901756f8104cdc4f937184cb157d793039ebecf_amd64", + "product_id": "openshift4/ose-csi-external-resizer-rhel8@sha256:9c33f451bb385818b27c32562901756f8104cdc4f937184cb157d793039ebecf_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer-rhel8@sha256:9c33f451bb385818b27c32562901756f8104cdc4f937184cb157d793039ebecf?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8&tag=v4.14.0-202311021650.p0.g59a701a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer@sha256:9c33f451bb385818b27c32562901756f8104cdc4f937184cb157d793039ebecf_amd64", + "product": { + "name": "openshift4/ose-csi-external-resizer@sha256:9c33f451bb385818b27c32562901756f8104cdc4f937184cb157d793039ebecf_amd64", + "product_id": "openshift4/ose-csi-external-resizer@sha256:9c33f451bb385818b27c32562901756f8104cdc4f937184cb157d793039ebecf_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer@sha256:9c33f451bb385818b27c32562901756f8104cdc4f937184cb157d793039ebecf?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer&tag=v4.14.0-202311021650.p0.g59a701a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter@sha256:6228bf99e3b83a5442d40e4e888fa69ea6ed6e99d1fd59a6b9fd8e12243dfb4f_amd64", + "product": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:6228bf99e3b83a5442d40e4e888fa69ea6ed6e99d1fd59a6b9fd8e12243dfb4f_amd64", + "product_id": "openshift4/ose-csi-external-snapshotter@sha256:6228bf99e3b83a5442d40e4e888fa69ea6ed6e99d1fd59a6b9fd8e12243dfb4f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter@sha256:6228bf99e3b83a5442d40e4e888fa69ea6ed6e99d1fd59a6b9fd8e12243dfb4f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter&tag=v4.14.0-202311021650.p0.g0bf9276.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:6228bf99e3b83a5442d40e4e888fa69ea6ed6e99d1fd59a6b9fd8e12243dfb4f_amd64", + "product": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:6228bf99e3b83a5442d40e4e888fa69ea6ed6e99d1fd59a6b9fd8e12243dfb4f_amd64", + "product_id": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:6228bf99e3b83a5442d40e4e888fa69ea6ed6e99d1fd59a6b9fd8e12243dfb4f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter-rhel8@sha256:6228bf99e3b83a5442d40e4e888fa69ea6ed6e99d1fd59a6b9fd8e12243dfb4f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8&tag=v4.14.0-202311021650.p0.g0bf9276.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller@sha256:a47bcd1ba4587d1a032cf8f4aed1441cc427d9c935c34634c43a12e4e5aa1e8a_amd64", + "product": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:a47bcd1ba4587d1a032cf8f4aed1441cc427d9c935c34634c43a12e4e5aa1e8a_amd64", + "product_id": "openshift4/ose-csi-snapshot-controller@sha256:a47bcd1ba4587d1a032cf8f4aed1441cc427d9c935c34634c43a12e4e5aa1e8a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller@sha256:a47bcd1ba4587d1a032cf8f4aed1441cc427d9c935c34634c43a12e4e5aa1e8a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller&tag=v4.14.0-202311021650.p0.g0bf9276.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:a47bcd1ba4587d1a032cf8f4aed1441cc427d9c935c34634c43a12e4e5aa1e8a_amd64", + "product": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:a47bcd1ba4587d1a032cf8f4aed1441cc427d9c935c34634c43a12e4e5aa1e8a_amd64", + "product_id": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:a47bcd1ba4587d1a032cf8f4aed1441cc427d9c935c34634c43a12e4e5aa1e8a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller-rhel8@sha256:a47bcd1ba4587d1a032cf8f4aed1441cc427d9c935c34634c43a12e4e5aa1e8a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8&tag=v4.14.0-202311021650.p0.g0bf9276.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:87e7f594576488fd00bd9eacbf5a4cc12a30954c0a7bb43d4b3259cb40476ef5_amd64", + "product": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:87e7f594576488fd00bd9eacbf5a4cc12a30954c0a7bb43d4b3259cb40476ef5_amd64", + "product_id": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:87e7f594576488fd00bd9eacbf5a4cc12a30954c0a7bb43d4b3259cb40476ef5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-validation-webhook-rhel8@sha256:87e7f594576488fd00bd9eacbf5a4cc12a30954c0a7bb43d4b3259cb40476ef5?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8&tag=v4.14.0-202311021650.p0.g0bf9276.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/egress-router-cni-rhel8@sha256:408e90fcf445b454be47150164a70291685bd1714b9419c47d2a9af93b5ba13c_amd64", + "product": { + "name": "openshift4/egress-router-cni-rhel8@sha256:408e90fcf445b454be47150164a70291685bd1714b9419c47d2a9af93b5ba13c_amd64", + "product_id": "openshift4/egress-router-cni-rhel8@sha256:408e90fcf445b454be47150164a70291685bd1714b9419c47d2a9af93b5ba13c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/egress-router-cni-rhel8@sha256:408e90fcf445b454be47150164a70291685bd1714b9419c47d2a9af93b5ba13c?arch=amd64&repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel8&tag=v4.14.0-202311021650.p0.gafffdd4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-etcd-rhel9@sha256:6411534bf480911dbb2ec9792502d45e771f92d5e3b91f572dbf4162312ba280_amd64", + "product": { + "name": "openshift4/ose-etcd-rhel9@sha256:6411534bf480911dbb2ec9792502d45e771f92d5e3b91f572dbf4162312ba280_amd64", + "product_id": "openshift4/ose-etcd-rhel9@sha256:6411534bf480911dbb2ec9792502d45e771f92d5e3b91f572dbf4162312ba280_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-etcd-rhel9@sha256:6411534bf480911dbb2ec9792502d45e771f92d5e3b91f572dbf4162312ba280?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9&tag=v4.14.0-202311011749.p0.gba21c5b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:50e5731fbbd51b3f480b74218957c753ac323b38d8f4e0450b6662520015439e_amd64", + "product": { + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:50e5731fbbd51b3f480b74218957c753ac323b38d8f4e0450b6662520015439e_amd64", + "product_id": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:50e5731fbbd51b3f480b74218957c753ac323b38d8f4e0450b6662520015439e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel8@sha256:50e5731fbbd51b3f480b74218957c753ac323b38d8f4e0450b6662520015439e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.g37deba9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:2c0c43f99032b1387374fb456a0e5628c66db17a1a1c5d9793c3e72395685431_amd64", + "product": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:2c0c43f99032b1387374fb456a0e5628c66db17a1a1c5d9793c3e72395685431_amd64", + "product_id": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:2c0c43f99032b1387374fb456a0e5628c66db17a1a1c5d9793c3e72395685431_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel8@sha256:2c0c43f99032b1387374fb456a0e5628c66db17a1a1c5d9793c3e72395685431?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8&tag=v4.14.0-202311021650.p0.g38e3375.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:83a1765ae5e391192a2b11be5880ec8888ad73e900f4ecbc134e355ec2dca523_amd64", + "product": { + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:83a1765ae5e391192a2b11be5880ec8888ad73e900f4ecbc134e355ec2dca523_amd64", + "product_id": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:83a1765ae5e391192a2b11be5880ec8888ad73e900f4ecbc134e355ec2dca523_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel8@sha256:83a1765ae5e391192a2b11be5880ec8888ad73e900f4ecbc134e355ec2dca523?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.g8a626fe.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:93d4660e89ce5d22316a775d6e3bc5be6c2cd8b51f5d338d4368bf0aedd0dc2f_amd64", + "product": { + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:93d4660e89ce5d22316a775d6e3bc5be6c2cd8b51f5d338d4368bf0aedd0dc2f_amd64", + "product_id": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:93d4660e89ce5d22316a775d6e3bc5be6c2cd8b51f5d338d4368bf0aedd0dc2f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel8@sha256:93d4660e89ce5d22316a775d6e3bc5be6c2cd8b51f5d338d4368bf0aedd0dc2f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8&tag=v4.14.0-202311021650.p0.g92376a4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hypershift-rhel8@sha256:c72bfdaa67c81420fdd0f728055cb389b42ff4b229e7369f285ee3690a320658_amd64", + "product": { + "name": "openshift4/ose-hypershift-rhel8@sha256:c72bfdaa67c81420fdd0f728055cb389b42ff4b229e7369f285ee3690a320658_amd64", + "product_id": "openshift4/ose-hypershift-rhel8@sha256:c72bfdaa67c81420fdd0f728055cb389b42ff4b229e7369f285ee3690a320658_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-hypershift-rhel8@sha256:c72bfdaa67c81420fdd0f728055cb389b42ff4b229e7369f285ee3690a320658?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel8&tag=v4.14.0-202311072010.p0.gf1acb05.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:019862ab06dec2182b6def5830a661b085c336e46ee20b7b632124abb6c370f3_amd64", + "product": { + "name": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:019862ab06dec2182b6def5830a661b085c336e46ee20b7b632124abb6c370f3_amd64", + "product_id": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:019862ab06dec2182b6def5830a661b085c336e46ee20b7b632124abb6c370f3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:019862ab06dec2182b6def5830a661b085c336e46ee20b7b632124abb6c370f3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8&tag=v4.14.0-202311021650.p0.ga7e5c6a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:4b5331b365d68d312fc038e23a539cf62578300f46fd8a6b706bea9634cd38f5_amd64", + "product": { + "name": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:4b5331b365d68d312fc038e23a539cf62578300f46fd8a6b706bea9634cd38f5_amd64", + "product_id": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:4b5331b365d68d312fc038e23a539cf62578300f46fd8a6b706bea9634cd38f5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-cloud-controller-manager-rhel8@sha256:4b5331b365d68d312fc038e23a539cf62578300f46fd8a6b706bea9634cd38f5?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.gea5a37b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:a31ac264570aeaaa2d0fa1435a04e2b24206670c9f678ca5591858969b681ad5_amd64", + "product": { + "name": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:a31ac264570aeaaa2d0fa1435a04e2b24206670c9f678ca5591858969b681ad5_amd64", + "product_id": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:a31ac264570aeaaa2d0fa1435a04e2b24206670c9f678ca5591858969b681ad5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibmcloud-machine-controllers-rhel8@sha256:a31ac264570aeaaa2d0fa1435a04e2b24206670c9f678ca5591858969b681ad5?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8&tag=v4.14.0-202311021650.p0.gc28b223.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:4690a68d0eeebc7b8fe74d6e75c6d97c15e99d8b4f318d1be5ace6ab67255a6c_amd64", + "product": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:4690a68d0eeebc7b8fe74d6e75c6d97c15e99d8b4f318d1be5ace6ab67255a6c_amd64", + "product_id": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:4690a68d0eeebc7b8fe74d6e75c6d97c15e99d8b4f318d1be5ace6ab67255a6c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel8@sha256:4690a68d0eeebc7b8fe74d6e75c6d97c15e99d8b4f318d1be5ace6ab67255a6c?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.g02471d9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:652f5afd8c515133edbc61bb8e7134d9240463e7b1ecc4bde903a29d6da0b108_amd64", + "product": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:652f5afd8c515133edbc61bb8e7134d9240463e7b1ecc4bde903a29d6da0b108_amd64", + "product_id": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:652f5afd8c515133edbc61bb8e7134d9240463e7b1ecc4bde903a29d6da0b108_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:652f5afd8c515133edbc61bb8e7134d9240463e7b1ecc4bde903a29d6da0b108?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8&tag=v4.14.0-202311021650.p0.gfaf68ed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-image-customization-controller-rhel8@sha256:1a4aeb6fdd985c67bde1f2f38473ca7192522dae091633ab99c0927614932bb4_amd64", + "product": { + "name": "openshift4/ose-image-customization-controller-rhel8@sha256:1a4aeb6fdd985c67bde1f2f38473ca7192522dae091633ab99c0927614932bb4_amd64", + "product_id": "openshift4/ose-image-customization-controller-rhel8@sha256:1a4aeb6fdd985c67bde1f2f38473ca7192522dae091633ab99c0927614932bb4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-image-customization-controller-rhel8@sha256:1a4aeb6fdd985c67bde1f2f38473ca7192522dae091633ab99c0927614932bb4?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel8&tag=v4.14.0-202311021650.p0.g2dda87a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-insights-rhel8-operator@sha256:5c6f510117a72da85068dfae558bc3986174f8d1ee4798fe0d34c3416f12aa8d_amd64", + "product": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:5c6f510117a72da85068dfae558bc3986174f8d1ee4798fe0d34c3416f12aa8d_amd64", + "product_id": "openshift4/ose-insights-rhel8-operator@sha256:5c6f510117a72da85068dfae558bc3986174f8d1ee4798fe0d34c3416f12aa8d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-insights-rhel8-operator@sha256:5c6f510117a72da85068dfae558bc3986174f8d1ee4798fe0d34c3416f12aa8d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-insights-rhel8-operator&tag=v4.14.0-202311021650.p0.ge0f175b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer-artifacts@sha256:b3842492d5d24584162742c037199a02e51cc1112b020b193db458fd7552e95f_amd64", + "product": { + "name": "openshift4/ose-installer-artifacts@sha256:b3842492d5d24584162742c037199a02e51cc1112b020b193db458fd7552e95f_amd64", + "product_id": "openshift4/ose-installer-artifacts@sha256:b3842492d5d24584162742c037199a02e51cc1112b020b193db458fd7552e95f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer-artifacts@sha256:b3842492d5d24584162742c037199a02e51cc1112b020b193db458fd7552e95f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-installer-artifacts&tag=v4.14.0-202311040828.p0.gc0f108b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer@sha256:f83a341bbbba4e364ea69b06791f0da6790bf368c5642c8cf59d603fe0845e8e_amd64", + "product": { + "name": "openshift4/ose-installer@sha256:f83a341bbbba4e364ea69b06791f0da6790bf368c5642c8cf59d603fe0845e8e_amd64", + "product_id": "openshift4/ose-installer@sha256:f83a341bbbba4e364ea69b06791f0da6790bf368c5642c8cf59d603fe0845e8e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer@sha256:f83a341bbbba4e364ea69b06791f0da6790bf368c5642c8cf59d603fe0845e8e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-installer&tag=v4.14.0-202311040828.p0.gc0f108b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:87c34362fea2eae0af074052733f65bfb2b42a83984a5525c38dabcc4378aa10_amd64", + "product": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:87c34362fea2eae0af074052733f65bfb2b42a83984a5525c38dabcc4378aa10_amd64", + "product_id": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:87c34362fea2eae0af074052733f65bfb2b42a83984a5525c38dabcc4378aa10_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-storage-version-migrator-rhel8@sha256:87c34362fea2eae0af074052733f65bfb2b42a83984a5525c38dabcc4378aa10?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8&tag=v4.14.0-202311021650.p0.g8558e14.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:821f045d61db0ecdc75c681bd9025535ebd6ccae5863de3f995c999f200cbeb5_amd64", + "product": { + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:821f045d61db0ecdc75c681bd9025535ebd6ccae5863de3f995c999f200cbeb5_amd64", + "product_id": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:821f045d61db0ecdc75c681bd9025535ebd6ccae5863de3f995c999f200cbeb5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel8@sha256:821f045d61db0ecdc75c681bd9025535ebd6ccae5863de3f995c999f200cbeb5?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.g62ca8ad.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:f0b1a53fc0ff4f8ce1df3de145cb99d86b45319956faaa278fd22ccb04def91b_amd64", + "product": { + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:f0b1a53fc0ff4f8ce1df3de145cb99d86b45319956faaa278fd22ccb04def91b_amd64", + "product_id": "openshift4/kubevirt-csi-driver-rhel8@sha256:f0b1a53fc0ff4f8ce1df3de145cb99d86b45319956faaa278fd22ccb04def91b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-csi-driver-rhel8@sha256:f0b1a53fc0ff4f8ce1df3de145cb99d86b45319956faaa278fd22ccb04def91b?arch=amd64&repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.g831ff3e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-libvirt-machine-controllers@sha256:fcea138ef5f072f4bc249c122ef7bd6c217c52cf25cf23306f2539cd57c4ad1c_amd64", + "product": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:fcea138ef5f072f4bc249c122ef7bd6c217c52cf25cf23306f2539cd57c4ad1c_amd64", + "product_id": "openshift4/ose-libvirt-machine-controllers@sha256:fcea138ef5f072f4bc249c122ef7bd6c217c52cf25cf23306f2539cd57c4ad1c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-libvirt-machine-controllers@sha256:fcea138ef5f072f4bc249c122ef7bd6c217c52cf25cf23306f2539cd57c4ad1c?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers&tag=v4.14.0-202311021650.p0.g34dfccb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-operator@sha256:359dc7145f1376e40218cc3b0577900175d650015450ba538a710c9f7a8f7982_amd64", + "product": { + "name": "openshift4/ose-machine-api-operator@sha256:359dc7145f1376e40218cc3b0577900175d650015450ba538a710c9f7a8f7982_amd64", + "product_id": "openshift4/ose-machine-api-operator@sha256:359dc7145f1376e40218cc3b0577900175d650015450ba538a710c9f7a8f7982_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-operator@sha256:359dc7145f1376e40218cc3b0577900175d650015450ba538a710c9f7a8f7982?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-api-operator&tag=v4.14.0-202311021650.p0.g525f8e5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:4a1656b8e8fa0fbfef20d1ad2bb3165d9dce44aa14c745bbc79293de7acb57eb_amd64", + "product": { + "name": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:4a1656b8e8fa0fbfef20d1ad2bb3165d9dce44aa14c745bbc79293de7acb57eb_amd64", + "product_id": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:4a1656b8e8fa0fbfef20d1ad2bb3165d9dce44aa14c745bbc79293de7acb57eb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-aws-rhel8@sha256:4a1656b8e8fa0fbfef20d1ad2bb3165d9dce44aa14c745bbc79293de7acb57eb?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8&tag=v4.14.0-202311021650.p0.ge292817.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:fba2f328877bd58d00d1b65f2443aba783f9b812de06c16aeb999b539e4e2008_amd64", + "product": { + "name": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:fba2f328877bd58d00d1b65f2443aba783f9b812de06c16aeb999b539e4e2008_amd64", + "product_id": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:fba2f328877bd58d00d1b65f2443aba783f9b812de06c16aeb999b539e4e2008_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-azure-rhel8@sha256:fba2f328877bd58d00d1b65f2443aba783f9b812de06c16aeb999b539e4e2008?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8&tag=v4.14.0-202311021650.p0.gb6ab233.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:9c9fd2e5aeebfd10289db5a2e11c367e723452d44c4e7930bf389c77d6eca405_amd64", + "product": { + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:9c9fd2e5aeebfd10289db5a2e11c367e723452d44c4e7930bf389c77d6eca405_amd64", + "product_id": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:9c9fd2e5aeebfd10289db5a2e11c367e723452d44c4e7930bf389c77d6eca405_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-gcp-rhel8@sha256:9c9fd2e5aeebfd10289db5a2e11c367e723452d44c4e7930bf389c77d6eca405?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8&tag=v4.14.0-202311021650.p0.ga676e6b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:dba5e91a3ec753983442bd22f1435d99d506954dbf615e7fbd97f3772222561d_amd64", + "product": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:dba5e91a3ec753983442bd22f1435d99d506954dbf615e7fbd97f3772222561d_amd64", + "product_id": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:dba5e91a3ec753983442bd22f1435d99d506954dbf615e7fbd97f3772222561d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-openstack-rhel8@sha256:dba5e91a3ec753983442bd22f1435d99d506954dbf615e7fbd97f3772222561d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8&tag=v4.14.0-202311021650.p0.g47ad284.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-config-operator@sha256:4944575ec284d508b3c5950a2246e614e5f1364add2e412507da7eb73da45bc4_amd64", + "product": { + "name": "openshift4/ose-machine-config-operator@sha256:4944575ec284d508b3c5950a2246e614e5f1364add2e412507da7eb73da45bc4_amd64", + "product_id": "openshift4/ose-machine-config-operator@sha256:4944575ec284d508b3c5950a2246e614e5f1364add2e412507da7eb73da45bc4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-config-operator@sha256:4944575ec284d508b3c5950a2246e614e5f1364add2e412507da7eb73da45bc4?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-config-operator&tag=v4.14.0-202311070105.p0.gf57144e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-os-images-rhel8@sha256:4a6ae78ff8ff20c9a8fe02cf06402627b5579af1c2ab2e0805ef35309e22aa16_amd64", + "product": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:4a6ae78ff8ff20c9a8fe02cf06402627b5579af1c2ab2e0805ef35309e22aa16_amd64", + "product_id": "openshift4/ose-machine-os-images-rhel8@sha256:4a6ae78ff8ff20c9a8fe02cf06402627b5579af1c2ab2e0805ef35309e22aa16_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-os-images-rhel8@sha256:4a6ae78ff8ff20c9a8fe02cf06402627b5579af1c2ab2e0805ef35309e22aa16?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel8&tag=v4.14.0-202311040828.p0.gd3a4a6c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-admission-controller@sha256:47ef762644ebc59350db0faae4db22dabead71f419ccf83b9f361420d75b0ed7_amd64", + "product": { + "name": "openshift4/ose-multus-admission-controller@sha256:47ef762644ebc59350db0faae4db22dabead71f419ccf83b9f361420d75b0ed7_amd64", + "product_id": "openshift4/ose-multus-admission-controller@sha256:47ef762644ebc59350db0faae4db22dabead71f419ccf83b9f361420d75b0ed7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-admission-controller@sha256:47ef762644ebc59350db0faae4db22dabead71f419ccf83b9f361420d75b0ed7?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller&tag=v4.14.0-202311021650.p0.g5e74b0f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:74a2cfe9cf3eeef58476a02e27d56e616db61a2d019a275171ab24d070c0fbf1_amd64", + "product": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:74a2cfe9cf3eeef58476a02e27d56e616db61a2d019a275171ab24d070c0fbf1_amd64", + "product_id": "openshift4/ose-multus-networkpolicy-rhel8@sha256:74a2cfe9cf3eeef58476a02e27d56e616db61a2d019a275171ab24d070c0fbf1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-networkpolicy-rhel8@sha256:74a2cfe9cf3eeef58476a02e27d56e616db61a2d019a275171ab24d070c0fbf1?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8&tag=v4.14.0-202311021650.p0.g0d76ba7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:b4cdd0e77a6e0cded703addf8f40293fa6bbbe7bcf02cc87e2eabea2c6ce1221_amd64", + "product": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:b4cdd0e77a6e0cded703addf8f40293fa6bbbe7bcf02cc87e2eabea2c6ce1221_amd64", + "product_id": "openshift4/ose-multus-route-override-cni-rhel8@sha256:b4cdd0e77a6e0cded703addf8f40293fa6bbbe7bcf02cc87e2eabea2c6ce1221_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-route-override-cni-rhel8@sha256:b4cdd0e77a6e0cded703addf8f40293fa6bbbe7bcf02cc87e2eabea2c6ce1221?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8&tag=v4.14.0-202311021650.p0.g078aee5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ba04ae3e4a2edb6105fde74f4c6e5a654b9fbfa7345b0559bbcef0e6fedc548e_amd64", + "product": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ba04ae3e4a2edb6105fde74f4c6e5a654b9fbfa7345b0559bbcef0e6fedc548e_amd64", + "product_id": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ba04ae3e4a2edb6105fde74f4c6e5a654b9fbfa7345b0559bbcef0e6fedc548e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ba04ae3e4a2edb6105fde74f4c6e5a654b9fbfa7345b0559bbcef0e6fedc548e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8&tag=v4.14.0-202311021650.p0.g7e45436.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-must-gather@sha256:66c97688016bb1ea003321b214f3dd742473863caedac0370dc848b3f377c635_amd64", + "product": { + "name": "openshift4/ose-must-gather@sha256:66c97688016bb1ea003321b214f3dd742473863caedac0370dc848b3f377c635_amd64", + "product_id": "openshift4/ose-must-gather@sha256:66c97688016bb1ea003321b214f3dd742473863caedac0370dc848b3f377c635_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-must-gather@sha256:66c97688016bb1ea003321b214f3dd742473863caedac0370dc848b3f377c635?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-must-gather&tag=v4.14.0-202311021650.p0.g833e1de.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:27b031e7106c04e0272cd0c20c4d184b0b83a952efe64808c74d701407bb5c33_amd64", + "product": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:27b031e7106c04e0272cd0c20c4d184b0b83a952efe64808c74d701407bb5c33_amd64", + "product_id": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:27b031e7106c04e0272cd0c20c4d184b0b83a952efe64808c74d701407bb5c33_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-interface-bond-cni-rhel8@sha256:27b031e7106c04e0272cd0c20c4d184b0b83a952efe64808c74d701407bb5c33?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8&tag=v4.14.0-202311021650.p0.g29f61f6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:927258c693f361224a019d437db3c80edf648cf0c1153be42554de1b4cea8b87_amd64", + "product": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:927258c693f361224a019d437db3c80edf648cf0c1153be42554de1b4cea8b87_amd64", + "product_id": "openshift4/ose-network-metrics-daemon-rhel8@sha256:927258c693f361224a019d437db3c80edf648cf0c1153be42554de1b4cea8b87_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-metrics-daemon-rhel8@sha256:927258c693f361224a019d437db3c80edf648cf0c1153be42554de1b4cea8b87?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8&tag=v4.14.0-202311021650.p0.g5fd1f2d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/network-tools-rhel8@sha256:ff966c6c5d54ed45564a36e13d3f75548c89575ece5bc9a6d8226d7c01933716_amd64", + "product": { + "name": "openshift4/network-tools-rhel8@sha256:ff966c6c5d54ed45564a36e13d3f75548c89575ece5bc9a6d8226d7c01933716_amd64", + "product_id": "openshift4/network-tools-rhel8@sha256:ff966c6c5d54ed45564a36e13d3f75548c89575ece5bc9a6d8226d7c01933716_amd64", + "product_identification_helper": { + "purl": "pkg:oci/network-tools-rhel8@sha256:ff966c6c5d54ed45564a36e13d3f75548c89575ece5bc9a6d8226d7c01933716?arch=amd64&repository_url=registry.redhat.io/openshift4/network-tools-rhel8&tag=v4.14.0-202311031050.p0.ga1dc6af.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sdn-rhel8@sha256:bd3abeb97524e69baae59593554cb94a3ab626d591948cef905499788a807598_amd64", + "product": { + "name": "openshift4/ose-sdn-rhel8@sha256:bd3abeb97524e69baae59593554cb94a3ab626d591948cef905499788a807598_amd64", + "product_id": "openshift4/ose-sdn-rhel8@sha256:bd3abeb97524e69baae59593554cb94a3ab626d591948cef905499788a807598_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sdn-rhel8@sha256:bd3abeb97524e69baae59593554cb94a3ab626d591948cef905499788a807598?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-sdn-rhel8&tag=v4.14.0-202311021650.p0.g128c28c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:e8a797e9c7b2ae730ce2ef1c8aee459eeac515e283da61de7d4856c5772dea34_amd64", + "product": { + "name": "openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:e8a797e9c7b2ae730ce2ef1c8aee459eeac515e283da61de7d4856c5772dea34_amd64", + "product_id": "openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:e8a797e9c7b2ae730ce2ef1c8aee459eeac515e283da61de7d4856c5772dea34_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-nutanix-cloud-controller-manager-rhel8@sha256:e8a797e9c7b2ae730ce2ef1c8aee459eeac515e283da61de7d4856c5772dea34?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.gbc56886.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-nutanix-machine-controllers-rhel8@sha256:65772d8620107110301a37fe727f6ecbd4228ec9e5e5de54cf0628e449e2431c_amd64", + "product": { + "name": "openshift4/ose-nutanix-machine-controllers-rhel8@sha256:65772d8620107110301a37fe727f6ecbd4228ec9e5e5de54cf0628e449e2431c_amd64", + "product_id": "openshift4/ose-nutanix-machine-controllers-rhel8@sha256:65772d8620107110301a37fe727f6ecbd4228ec9e5e5de54cf0628e449e2431c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-nutanix-machine-controllers-rhel8@sha256:65772d8620107110301a37fe727f6ecbd4228ec9e5e5de54cf0628e449e2431c?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8&tag=v4.14.0-202311021650.p0.g6f50b1a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:c058d224b3469bf97194156675cb889b32023daadb5705243c61a53abc830c88_amd64", + "product": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:c058d224b3469bf97194156675cb889b32023daadb5705243c61a53abc830c88_amd64", + "product_id": "openshift4/ose-oauth-apiserver-rhel8@sha256:c058d224b3469bf97194156675cb889b32023daadb5705243c61a53abc830c88_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-apiserver-rhel8@sha256:c058d224b3469bf97194156675cb889b32023daadb5705243c61a53abc830c88?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8&tag=v4.14.0-202311021650.p0.ga18cb3e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-olm-catalogd-rhel8@sha256:84b9469554233d4f1f96a747a016c47215a058c9d4908205fb0b58de56c62c90_amd64", + "product": { + "name": "openshift4/ose-olm-catalogd-rhel8@sha256:84b9469554233d4f1f96a747a016c47215a058c9d4908205fb0b58de56c62c90_amd64", + "product_id": "openshift4/ose-olm-catalogd-rhel8@sha256:84b9469554233d4f1f96a747a016c47215a058c9d4908205fb0b58de56c62c90_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-olm-catalogd-rhel8@sha256:84b9469554233d4f1f96a747a016c47215a058c9d4908205fb0b58de56c62c90?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel8&tag=v4.14.0-202311021650.p0.gaa44c02.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-olm-operator-controller-rhel8@sha256:5d6a0fb529bd83ad2eccad57f7a29e11213e630a6c067cacacf67721905e7ba0_amd64", + "product": { + "name": "openshift4/ose-olm-operator-controller-rhel8@sha256:5d6a0fb529bd83ad2eccad57f7a29e11213e630a6c067cacacf67721905e7ba0_amd64", + "product_id": "openshift4/ose-olm-operator-controller-rhel8@sha256:5d6a0fb529bd83ad2eccad57f7a29e11213e630a6c067cacacf67721905e7ba0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-olm-operator-controller-rhel8@sha256:5d6a0fb529bd83ad2eccad57f7a29e11213e630a6c067cacacf67721905e7ba0?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8&tag=v4.14.0-202311021650.p0.g1734329.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:ca8e4beb03a8ed741bbd16e2b8d7e304ff19b9f0346a75d3ce7d64884025cc8e_amd64", + "product": { + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:ca8e4beb03a8ed741bbd16e2b8d7e304ff19b9f0346a75d3ce7d64884025cc8e_amd64", + "product_id": "openshift4/ose-olm-rukpak-rhel8@sha256:ca8e4beb03a8ed741bbd16e2b8d7e304ff19b9f0346a75d3ce7d64884025cc8e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-olm-rukpak-rhel8@sha256:ca8e4beb03a8ed741bbd16e2b8d7e304ff19b9f0346a75d3ce7d64884025cc8e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-olm-rukpak-rhel8&tag=v4.14.0-202311021650.p0.gdaa5073.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:16ce1012f0b86fb0716150918f6de91ce40c936d9ac43d19bd4cf6ebf6edca3d_amd64", + "product": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:16ce1012f0b86fb0716150918f6de91ce40c936d9ac43d19bd4cf6ebf6edca3d_amd64", + "product_id": "openshift4/ose-openshift-apiserver-rhel8@sha256:16ce1012f0b86fb0716150918f6de91ce40c936d9ac43d19bd4cf6ebf6edca3d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-apiserver-rhel8@sha256:16ce1012f0b86fb0716150918f6de91ce40c936d9ac43d19bd4cf6ebf6edca3d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8&tag=v4.14.0-202311021650.p0.g064c2d0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:9459bcba37483a999cca593b6cd4d46a6c2eedd8ec6b37cd51d0816591c176ab_amd64", + "product": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:9459bcba37483a999cca593b6cd4d46a6c2eedd8ec6b37cd51d0816591c176ab_amd64", + "product_id": "openshift4/ose-openshift-controller-manager-rhel8@sha256:9459bcba37483a999cca593b6cd4d46a6c2eedd8ec6b37cd51d0816591c176ab_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-controller-manager-rhel8@sha256:9459bcba37483a999cca593b6cd4d46a6c2eedd8ec6b37cd51d0816591c176ab?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.g69bd018.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:28db9204190b8596270079bc3760fe4210b716c2ed815dff1d3fe1c4fb527f4d_amd64", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:28db9204190b8596270079bc3760fe4210b716c2ed815dff1d3fe1c4fb527f4d_amd64", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:28db9204190b8596270079bc3760fe4210b716c2ed815dff1d3fe1c4fb527f4d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8@sha256:28db9204190b8596270079bc3760fe4210b716c2ed815dff1d3fe1c4fb527f4d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.gecd00b5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b338c0458f28994c52c1ce0a9d886a5b75811db3ff440bae417e1e7931e79441_amd64", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b338c0458f28994c52c1ce0a9d886a5b75811db3ff440bae417e1e7931e79441_amd64", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b338c0458f28994c52c1ce0a9d886a5b75811db3ff440bae417e1e7931e79441_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b338c0458f28994c52c1ce0a9d886a5b75811db3ff440bae417e1e7931e79441?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator&tag=v4.14.0-202311021650.p0.gdcf0e7d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:0f859da06c1b69faa86a183b8d07aab692d10e8852db6c9302a934fe063b1fdf_amd64", + "product": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:0f859da06c1b69faa86a183b8d07aab692d10e8852db6c9302a934fe063b1fdf_amd64", + "product_id": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:0f859da06c1b69faa86a183b8d07aab692d10e8852db6c9302a934fe063b1fdf_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel8@sha256:0f859da06c1b69faa86a183b8d07aab692d10e8852db6c9302a934fe063b1fdf?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.gecd00b5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:f78fa9edbab247157d614d346907dca21bd20866c5477a89890fec500ad522dd_amd64", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:f78fa9edbab247157d614d346907dca21bd20866c5477a89890fec500ad522dd_amd64", + "product_id": "openshift4/ovirt-csi-driver-rhel8@sha256:f78fa9edbab247157d614d346907dca21bd20866c5477a89890fec500ad522dd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8@sha256:f78fa9edbab247157d614d346907dca21bd20866c5477a89890fec500ad522dd?arch=amd64&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.gf21b470.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:f78fa9edbab247157d614d346907dca21bd20866c5477a89890fec500ad522dd_amd64", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:f78fa9edbab247157d614d346907dca21bd20866c5477a89890fec500ad522dd_amd64", + "product_id": "openshift4/ovirt-csi-driver-rhel7@sha256:f78fa9edbab247157d614d346907dca21bd20866c5477a89890fec500ad522dd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel7@sha256:f78fa9edbab247157d614d346907dca21bd20866c5477a89890fec500ad522dd?arch=amd64&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel7&tag=v4.14.0-202311021650.p0.gf21b470.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:29d0441d8cefd87fc5a6099e053e983aade44590c26f8daccf914b778f786850_amd64", + "product": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:29d0441d8cefd87fc5a6099e053e983aade44590c26f8daccf914b778f786850_amd64", + "product_id": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:29d0441d8cefd87fc5a6099e053e983aade44590c26f8daccf914b778f786850_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovirt-machine-controllers-rhel8@sha256:29d0441d8cefd87fc5a6099e053e983aade44590c26f8daccf914b778f786850?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8&tag=v4.14.0-202311021650.p0.g5d70863.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes@sha256:106a0f7eb97104015409792ac3b8ae31d4f619fa434f323eaf4564c8c7d0a1c1_amd64", + "product": { + "name": "openshift4/ose-ovn-kubernetes@sha256:106a0f7eb97104015409792ac3b8ae31d4f619fa434f323eaf4564c8c7d0a1c1_amd64", + "product_id": "openshift4/ose-ovn-kubernetes@sha256:106a0f7eb97104015409792ac3b8ae31d4f619fa434f323eaf4564c8c7d0a1c1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes@sha256:106a0f7eb97104015409792ac3b8ae31d4f619fa434f323eaf4564c8c7d0a1c1?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes&tag=v4.14.0-202311031050.p0.g7a23238.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:f0b637b0e6e3a8af6868a63293e82c4f2cbcc03c718f3b5c628652e5ac7dcf13_amd64", + "product": { + "name": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:f0b637b0e6e3a8af6868a63293e82c4f2cbcc03c718f3b5c628652e5ac7dcf13_amd64", + "product_id": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:f0b637b0e6e3a8af6868a63293e82c4f2cbcc03c718f3b5c628652e5ac7dcf13_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-block-csi-driver-rhel8@sha256:f0b637b0e6e3a8af6868a63293e82c4f2cbcc03c718f3b5c628652e5ac7dcf13?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.ge9694ce.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:be5e2ea03898d3e470cbf376153bdacdb94f05e4ff13a70486adadd320dbd293_amd64", + "product": { + "name": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:be5e2ea03898d3e470cbf376153bdacdb94f05e4ff13a70486adadd320dbd293_amd64", + "product_id": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:be5e2ea03898d3e470cbf376153bdacdb94f05e4ff13a70486adadd320dbd293_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-block-csi-driver-operator-rhel8@sha256:be5e2ea03898d3e470cbf376153bdacdb94f05e4ff13a70486adadd320dbd293?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8&tag=v4.14.0-202311021650.p0.g48b56bb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:f3658b355807eb8a2dc0b49f4d1b15620ead5227b7b727c700d289948d8aa043_amd64", + "product": { + "name": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:f3658b355807eb8a2dc0b49f4d1b15620ead5227b7b727c700d289948d8aa043_amd64", + "product_id": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:f3658b355807eb8a2dc0b49f4d1b15620ead5227b7b727c700d289948d8aa043_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-cloud-controller-manager-rhel8@sha256:f3658b355807eb8a2dc0b49f4d1b15620ead5227b7b727c700d289948d8aa043?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.g0a89a6e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:ac075d42a132a92cb3d004503bdca19a19fad3c37c62d5a24e112e184497bfc1_amd64", + "product": { + "name": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:ac075d42a132a92cb3d004503bdca19a19fad3c37c62d5a24e112e184497bfc1_amd64", + "product_id": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:ac075d42a132a92cb3d004503bdca19a19fad3c37c62d5a24e112e184497bfc1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-machine-controllers-rhel8@sha256:ac075d42a132a92cb3d004503bdca19a19fad3c37c62d5a24e112e184497bfc1?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8&tag=v4.14.0-202311021650.p0.g02379e5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:4f13f6a4c91fb05fdd1f0fb63605d114a87f27aafe0c1b12028e7f92e830c567_amd64", + "product": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:4f13f6a4c91fb05fdd1f0fb63605d114a87f27aafe0c1b12028e7f92e830c567_amd64", + "product_id": "openshift4/ose-k8s-prometheus-adapter@sha256:4f13f6a4c91fb05fdd1f0fb63605d114a87f27aafe0c1b12028e7f92e830c567_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-k8s-prometheus-adapter@sha256:4f13f6a4c91fb05fdd1f0fb63605d114a87f27aafe0c1b12028e7f92e830c567?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter&tag=v4.14.0-202311021650.p0.g428bb46.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:a66a7ff72db57bf541a891826608d560e17d4065e99e98a6edc431bc2b081ba1_amd64", + "product": { + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:a66a7ff72db57bf541a891826608d560e17d4065e99e98a6edc431bc2b081ba1_amd64", + "product_id": "openshift4/openshift-route-controller-manager-rhel8@sha256:a66a7ff72db57bf541a891826608d560e17d4065e99e98a6edc431bc2b081ba1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/openshift-route-controller-manager-rhel8@sha256:a66a7ff72db57bf541a891826608d560e17d4065e99e98a6edc431bc2b081ba1?arch=amd64&repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.g1a5e72f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-service-ca-operator@sha256:bec96068926cabcdbf70890f9b0cd0ff5fe269b7cfe539a027a73dd81c863d85_amd64", + "product": { + "name": "openshift4/ose-service-ca-operator@sha256:bec96068926cabcdbf70890f9b0cd0ff5fe269b7cfe539a027a73dd81c863d85_amd64", + "product_id": "openshift4/ose-service-ca-operator@sha256:bec96068926cabcdbf70890f9b0cd0ff5fe269b7cfe539a027a73dd81c863d85_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-service-ca-operator@sha256:bec96068926cabcdbf70890f9b0cd0ff5fe269b7cfe539a027a73dd81c863d85?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-service-ca-operator&tag=v4.14.0-202311021650.p0.g030a429.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-thanos-rhel8@sha256:f3148358b0d2fbf0ef35400fb6900e774d42da7f5e2b54c186b9b7fc6bdad755_amd64", + "product": { + "name": "openshift4/ose-thanos-rhel8@sha256:f3148358b0d2fbf0ef35400fb6900e774d42da7f5e2b54c186b9b7fc6bdad755_amd64", + "product_id": "openshift4/ose-thanos-rhel8@sha256:f3148358b0d2fbf0ef35400fb6900e774d42da7f5e2b54c186b9b7fc6bdad755_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-thanos-rhel8@sha256:f3148358b0d2fbf0ef35400fb6900e774d42da7f5e2b54c186b9b7fc6bdad755?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-thanos-rhel8&tag=v4.14.0-202311021650.p0.g175a630.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tools-rhel8@sha256:2b409b71a03e529e5b196cc188e825f55ba143067e94ee63cd681f53af971e0c_amd64", + "product": { + "name": "openshift4/ose-tools-rhel8@sha256:2b409b71a03e529e5b196cc188e825f55ba143067e94ee63cd681f53af971e0c_amd64", + "product_id": "openshift4/ose-tools-rhel8@sha256:2b409b71a03e529e5b196cc188e825f55ba143067e94ee63cd681f53af971e0c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-tools-rhel8@sha256:2b409b71a03e529e5b196cc188e825f55ba143067e94ee63cd681f53af971e0c?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-tools-rhel8&tag=v4.14.0-202311021650.p0.g9b1e0d2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:6f494bc95a3fe64f99a4f41c43e58c840b0f8837cb31eb5c3e0a2db379490786_amd64", + "product": { + "name": "openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:6f494bc95a3fe64f99a4f41c43e58c840b0f8837cb31eb5c3e0a2db379490786_amd64", + "product_id": "openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:6f494bc95a3fe64f99a4f41c43e58c840b0f8837cb31eb5c3e0a2db379490786_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vmware-vsphere-csi-driver-rhel8@sha256:6f494bc95a3fe64f99a4f41c43e58c840b0f8837cb31eb5c3e0a2db379490786?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.ga5ed57f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vsphere-csi-driver-rhel8@sha256:6f494bc95a3fe64f99a4f41c43e58c840b0f8837cb31eb5c3e0a2db379490786_amd64", + "product": { + "name": "openshift4/ose-vsphere-csi-driver-rhel8@sha256:6f494bc95a3fe64f99a4f41c43e58c840b0f8837cb31eb5c3e0a2db379490786_amd64", + "product_id": "openshift4/ose-vsphere-csi-driver-rhel8@sha256:6f494bc95a3fe64f99a4f41c43e58c840b0f8837cb31eb5c3e0a2db379490786_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vsphere-csi-driver-rhel8@sha256:6f494bc95a3fe64f99a4f41c43e58c840b0f8837cb31eb5c3e0a2db379490786?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.ga5ed57f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:ccab3186341e5fa883d6d15f077b29cbbbe4d22ee3c664414eccaebb9e1747b3_amd64", + "product": { + "name": "openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:ccab3186341e5fa883d6d15f077b29cbbbe4d22ee3c664414eccaebb9e1747b3_amd64", + "product_id": "openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:ccab3186341e5fa883d6d15f077b29cbbbe4d22ee3c664414eccaebb9e1747b3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vsphere-csi-driver-operator-rhel8@sha256:ccab3186341e5fa883d6d15f077b29cbbbe4d22ee3c664414eccaebb9e1747b3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8&tag=v4.14.0-202311021650.p0.gf7afb64.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:ccab3186341e5fa883d6d15f077b29cbbbe4d22ee3c664414eccaebb9e1747b3_amd64", + "product": { + "name": "openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:ccab3186341e5fa883d6d15f077b29cbbbe4d22ee3c664414eccaebb9e1747b3_amd64", + "product_id": "openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:ccab3186341e5fa883d6d15f077b29cbbbe4d22ee3c664414eccaebb9e1747b3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:ccab3186341e5fa883d6d15f077b29cbbbe4d22ee3c664414eccaebb9e1747b3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8&tag=v4.14.0-202311021650.p0.gf7afb64.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:9dd229dcbffb6ef5ae9575891a1d41a9f5873ce045f7decd94ac32a0b008d750_amd64", + "product": { + "name": "openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:9dd229dcbffb6ef5ae9575891a1d41a9f5873ce045f7decd94ac32a0b008d750_amd64", + "product_id": "openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:9dd229dcbffb6ef5ae9575891a1d41a9f5873ce045f7decd94ac32a0b008d750_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vsphere-cloud-controller-manager-rhel8@sha256:9dd229dcbffb6ef5ae9575891a1d41a9f5873ce045f7decd94ac32a0b008d750?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.ga24e171.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:b7b670940c6752741e457a87ae578de4d5df8ee63075da27d38d3b0891c02239_amd64", + "product": { + "name": "openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:b7b670940c6752741e457a87ae578de4d5df8ee63075da27d38d3b0891c02239_amd64", + "product_id": "openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:b7b670940c6752741e457a87ae578de4d5df8ee63075da27d38d3b0891c02239_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vsphere-cluster-api-controllers-rhel8@sha256:b7b670940c6752741e457a87ae578de4d5df8ee63075da27d38d3b0891c02239?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8&tag=v4.14.0-202311021650.p0.g72e998c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vsphere-problem-detector-rhel8@sha256:424190de8b1cce70617a788ed5d7d120d8dfffc2ee0348c1d1319d2ed2cc2625_amd64", + "product": { + "name": "openshift4/ose-vsphere-problem-detector-rhel8@sha256:424190de8b1cce70617a788ed5d7d120d8dfffc2ee0348c1d1319d2ed2cc2625_amd64", + "product_id": "openshift4/ose-vsphere-problem-detector-rhel8@sha256:424190de8b1cce70617a788ed5d7d120d8dfffc2ee0348c1d1319d2ed2cc2625_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vsphere-problem-detector-rhel8@sha256:424190de8b1cce70617a788ed5d7d120d8dfffc2ee0348c1d1319d2ed2cc2625?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8&tag=v4.14.0-202311021650.p0.g6b359ea.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:78bb06bdf4a72f308ccb544536a4454d15d64aa18b0ddcaef723721e601585fd_amd64", + "product": { + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:78bb06bdf4a72f308ccb544536a4454d15d64aa18b0ddcaef723721e601585fd_amd64", + "product_id": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:78bb06bdf4a72f308ccb544536a4454d15d64aa18b0ddcaef723721e601585fd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256:78bb06bdf4a72f308ccb544536a4454d15d64aa18b0ddcaef723721e601585fd?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9&tag=v4.14.0-202310250645.p0.g7a23238.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-config-reloader@sha256:3457403fc9175b2264f1d8d760a55c5a07d716db4fc750fc81f22f91509fd884_amd64", + "product": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:3457403fc9175b2264f1d8d760a55c5a07d716db4fc750fc81f22f91509fd884_amd64", + "product_id": "openshift4/ose-prometheus-config-reloader@sha256:3457403fc9175b2264f1d8d760a55c5a07d716db4fc750fc81f22f91509fd884_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-config-reloader@sha256:3457403fc9175b2264f1d8d760a55c5a07d716db4fc750fc81f22f91509fd884?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader&tag=v4.14.0-202311061949.p0.g73729ed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:69a41649c2a3dcf19bef360ad5127f874a7ed70941e55a8fa0d15e1cc418cb9a_amd64", + "product": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:69a41649c2a3dcf19bef360ad5127f874a7ed70941e55a8fa0d15e1cc418cb9a_amd64", + "product_id": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:69a41649c2a3dcf19bef360ad5127f874a7ed70941e55a8fa0d15e1cc418cb9a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel8@sha256:69a41649c2a3dcf19bef360ad5127f874a7ed70941e55a8fa0d15e1cc418cb9a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8&tag=v4.14.0-202311061949.p0.g73729ed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator@sha256:3798bb3ed7fff79d6b4c2b087881bfe52600dfe79bef62e9d407aa4c20b428ea_amd64", + "product": { + "name": "openshift4/ose-prometheus-operator@sha256:3798bb3ed7fff79d6b4c2b087881bfe52600dfe79bef62e9d407aa4c20b428ea_amd64", + "product_id": "openshift4/ose-prometheus-operator@sha256:3798bb3ed7fff79d6b4c2b087881bfe52600dfe79bef62e9d407aa4c20b428ea_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator@sha256:3798bb3ed7fff79d6b4c2b087881bfe52600dfe79bef62e9d407aa4c20b428ea?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator&tag=v4.14.0-202311061949.p0.g73729ed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prom-label-proxy@sha256:ac1c4e24efe545010e0f05db87c43998a5f9b60965c4e0e53defffe6e5c804dd_amd64", + "product": { + "name": "openshift4/ose-prom-label-proxy@sha256:ac1c4e24efe545010e0f05db87c43998a5f9b60965c4e0e53defffe6e5c804dd_amd64", + "product_id": "openshift4/ose-prom-label-proxy@sha256:ac1c4e24efe545010e0f05db87c43998a5f9b60965c4e0e53defffe6e5c804dd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prom-label-proxy@sha256:ac1c4e24efe545010e0f05db87c43998a5f9b60965c4e0e53defffe6e5c804dd?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy&tag=v4.14.0-202311021650.p0.gaf40ed0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-telemeter@sha256:fa030aaa5c44208f6af1f810c023abeecc16b824341f5378b2d94b63860f4d6a_amd64", + "product": { + "name": "openshift4/ose-telemeter@sha256:fa030aaa5c44208f6af1f810c023abeecc16b824341f5378b2d94b63860f4d6a_amd64", + "product_id": "openshift4/ose-telemeter@sha256:fa030aaa5c44208f6af1f810c023abeecc16b824341f5378b2d94b63860f4d6a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-telemeter@sha256:fa030aaa5c44208f6af1f810c023abeecc16b824341f5378b2d94b63860f4d6a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-telemeter&tag=v4.14.0-202311021650.p0.gc8b876a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:83be3884c9a033c6d269960a4f0082349e0422847a4cb72c46497d95fa48c68b_amd64", + "product": { + "name": "openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:83be3884c9a033c6d269960a4f0082349e0422847a4cb72c46497d95fa48c68b_amd64", + "product_id": "openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:83be3884c9a033c6d269960a4f0082349e0422847a4cb72c46497d95fa48c68b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vsphere-csi-driver-syncer-rhel8@sha256:83be3884c9a033c6d269960a4f0082349e0422847a4cb72c46497d95fa48c68b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8&tag=v4.14.0-202311021650.p0.ga5ed57f.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler@sha256:6fd6e5f0a4e8e59dce22021dce5e59b6f431352969b4212f893404688af44289_s390x", + "product": { + "name": "openshift4/ose-cluster-autoscaler@sha256:6fd6e5f0a4e8e59dce22021dce5e59b6f431352969b4212f893404688af44289_s390x", + "product_id": "openshift4/ose-cluster-autoscaler@sha256:6fd6e5f0a4e8e59dce22021dce5e59b6f431352969b4212f893404688af44289_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler@sha256:6fd6e5f0a4e8e59dce22021dce5e59b6f431352969b4212f893404688af44289?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler&tag=v4.14.0-202311021650.p0.g0822c7b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-machine-controllers@sha256:0f534bb347007f16fab31abf3dd4235ba9d99aa85cbc03777f625f467d58bb4b_s390x", + "product": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:0f534bb347007f16fab31abf3dd4235ba9d99aa85cbc03777f625f467d58bb4b_s390x", + "product_id": "openshift4/ose-baremetal-machine-controllers@sha256:0f534bb347007f16fab31abf3dd4235ba9d99aa85cbc03777f625f467d58bb4b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-machine-controllers@sha256:0f534bb347007f16fab31abf3dd4235ba9d99aa85cbc03777f625f467d58bb4b?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers&tag=v4.14.0-202311021650.p0.g412acb3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:22e503752dfe1211287d0e76ce1180ef73505af18899e87ad73d05c1992b026c_s390x", + "product": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:22e503752dfe1211287d0e76ce1180ef73505af18899e87ad73d05c1992b026c_s390x", + "product_id": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:22e503752dfe1211287d0e76ce1180ef73505af18899e87ad73d05c1992b026c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-etcd-rhel8-operator@sha256:22e503752dfe1211287d0e76ce1180ef73505af18899e87ad73d05c1992b026c?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator&tag=v4.14.0-202311021650.p0.g578c952.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-monitoring-operator@sha256:e93685e86925b78fb9a346843e7cf9d60b336aadbf4e4f05f85d2655c40f7d40_s390x", + "product": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:e93685e86925b78fb9a346843e7cf9d60b336aadbf4e4f05f85d2655c40f7d40_s390x", + "product_id": "openshift4/ose-cluster-monitoring-operator@sha256:e93685e86925b78fb9a346843e7cf9d60b336aadbf4e4f05f85d2655c40f7d40_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-monitoring-operator@sha256:e93685e86925b78fb9a346843e7cf9d60b336aadbf4e4f05f85d2655c40f7d40?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-operator&tag=v4.14.0-202311021650.p0.gab06fd3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-network-operator@sha256:3f8f6dca69ee76d1ced7691e01ceb4d54ba15feb146c2358185347fad873c0fe_s390x", + "product": { + "name": "openshift4/ose-cluster-network-operator@sha256:3f8f6dca69ee76d1ced7691e01ceb4d54ba15feb146c2358185347fad873c0fe_s390x", + "product_id": "openshift4/ose-cluster-network-operator@sha256:3f8f6dca69ee76d1ced7691e01ceb4d54ba15feb146c2358185347fad873c0fe_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-network-operator@sha256:3f8f6dca69ee76d1ced7691e01ceb4d54ba15feb146c2358185347fad873c0fe?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-network-operator&tag=v4.14.0-202311031807.p0.g1504d2a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:f72370d4b49b403aa3fec42f6cfbda6a1e8b30c78b96e617bbf5a3eca730af1f_s390x", + "product": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:f72370d4b49b403aa3fec42f6cfbda6a1e8b30c78b96e617bbf5a3eca730af1f_s390x", + "product_id": "openshift4/ose-cluster-node-tuning-operator@sha256:f72370d4b49b403aa3fec42f6cfbda6a1e8b30c78b96e617bbf5a3eca730af1f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-node-tuning-operator@sha256:f72370d4b49b403aa3fec42f6cfbda6a1e8b30c78b96e617bbf5a3eca730af1f?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-operator&tag=v4.14.0-202311020945.p0.g9669c58.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-version-operator@sha256:076afa34ba9734a1e3a97c82dab1999e8388e1d036695adc45e33b53845266c0_s390x", + "product": { + "name": "openshift4/ose-cluster-version-operator@sha256:076afa34ba9734a1e3a97c82dab1999e8388e1d036695adc45e33b53845266c0_s390x", + "product_id": "openshift4/ose-cluster-version-operator@sha256:076afa34ba9734a1e3a97c82dab1999e8388e1d036695adc45e33b53845266c0_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-version-operator@sha256:076afa34ba9734a1e3a97c82dab1999e8388e1d036695adc45e33b53845266c0?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-version-operator&tag=v4.14.0-202311021650.p0.g2a48f5e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-configmap-reloader@sha256:5a84de6cc2c8c8ffa7250f44aba6de54a2b2dc4b36655a83e7ece6800f7ffaa4_s390x", + "product": { + "name": "openshift4/ose-configmap-reloader@sha256:5a84de6cc2c8c8ffa7250f44aba6de54a2b2dc4b36655a83e7ece6800f7ffaa4_s390x", + "product_id": "openshift4/ose-configmap-reloader@sha256:5a84de6cc2c8c8ffa7250f44aba6de54a2b2dc4b36655a83e7ece6800f7ffaa4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-configmap-reloader@sha256:5a84de6cc2c8c8ffa7250f44aba6de54a2b2dc4b36655a83e7ece6800f7ffaa4?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-configmap-reloader&tag=v4.14.0-202311021650.p0.g716a0c3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-coredns@sha256:88342cf82d69ef588bc8b2ad2ab5ecac01d13ddd2948b292f5513afab4a61973_s390x", + "product": { + "name": "openshift4/ose-coredns@sha256:88342cf82d69ef588bc8b2ad2ab5ecac01d13ddd2948b292f5513afab4a61973_s390x", + "product_id": "openshift4/ose-coredns@sha256:88342cf82d69ef588bc8b2ad2ab5ecac01d13ddd2948b292f5513afab4a61973_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-coredns@sha256:88342cf82d69ef588bc8b2ad2ab5ecac01d13ddd2948b292f5513afab4a61973?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-coredns&tag=v4.14.0-202311021650.p0.g8341fa7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:9ca553e4684fe2a8ac9d168681840fcdaa5a4975e57da1fda739e75a17a261e9_s390x", + "product": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:9ca553e4684fe2a8ac9d168681840fcdaa5a4975e57da1fda739e75a17a261e9_s390x", + "product_id": "openshift4/ose-csi-external-attacher-rhel8@sha256:9ca553e4684fe2a8ac9d168681840fcdaa5a4975e57da1fda739e75a17a261e9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher-rhel8@sha256:9ca553e4684fe2a8ac9d168681840fcdaa5a4975e57da1fda739e75a17a261e9?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8&tag=v4.14.0-202311021650.p0.g06e8ce0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher@sha256:9ca553e4684fe2a8ac9d168681840fcdaa5a4975e57da1fda739e75a17a261e9_s390x", + "product": { + "name": "openshift4/ose-csi-external-attacher@sha256:9ca553e4684fe2a8ac9d168681840fcdaa5a4975e57da1fda739e75a17a261e9_s390x", + "product_id": "openshift4/ose-csi-external-attacher@sha256:9ca553e4684fe2a8ac9d168681840fcdaa5a4975e57da1fda739e75a17a261e9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher@sha256:9ca553e4684fe2a8ac9d168681840fcdaa5a4975e57da1fda739e75a17a261e9?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher&tag=v4.14.0-202311021650.p0.g06e8ce0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:2af149306a5152120c17d34420baa15f7960ab09a1fea89a4828f67950b8d459_s390x", + "product": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:2af149306a5152120c17d34420baa15f7960ab09a1fea89a4828f67950b8d459_s390x", + "product_id": "openshift4/ose-csi-livenessprobe-rhel8@sha256:2af149306a5152120c17d34420baa15f7960ab09a1fea89a4828f67950b8d459_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe-rhel8@sha256:2af149306a5152120c17d34420baa15f7960ab09a1fea89a4828f67950b8d459?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8&tag=v4.14.0-202311021650.p0.ga9bcbde.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe@sha256:2af149306a5152120c17d34420baa15f7960ab09a1fea89a4828f67950b8d459_s390x", + "product": { + "name": "openshift4/ose-csi-livenessprobe@sha256:2af149306a5152120c17d34420baa15f7960ab09a1fea89a4828f67950b8d459_s390x", + "product_id": "openshift4/ose-csi-livenessprobe@sha256:2af149306a5152120c17d34420baa15f7960ab09a1fea89a4828f67950b8d459_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe@sha256:2af149306a5152120c17d34420baa15f7960ab09a1fea89a4828f67950b8d459?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe&tag=v4.14.0-202311021650.p0.ga9bcbde.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar@sha256:b003e5890e472ef194a40d3036f5f5d817dae7da8756a2e197afcf98ac9cf897_s390x", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:b003e5890e472ef194a40d3036f5f5d817dae7da8756a2e197afcf98ac9cf897_s390x", + "product_id": "openshift4/ose-csi-node-driver-registrar@sha256:b003e5890e472ef194a40d3036f5f5d817dae7da8756a2e197afcf98ac9cf897_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar@sha256:b003e5890e472ef194a40d3036f5f5d817dae7da8756a2e197afcf98ac9cf897?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar&tag=v4.14.0-202311021650.p0.g9dcaa7f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:b003e5890e472ef194a40d3036f5f5d817dae7da8756a2e197afcf98ac9cf897_s390x", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:b003e5890e472ef194a40d3036f5f5d817dae7da8756a2e197afcf98ac9cf897_s390x", + "product_id": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:b003e5890e472ef194a40d3036f5f5d817dae7da8756a2e197afcf98ac9cf897_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar-rhel8@sha256:b003e5890e472ef194a40d3036f5f5d817dae7da8756a2e197afcf98ac9cf897?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8&tag=v4.14.0-202311021650.p0.g9dcaa7f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner@sha256:40fe6eefb14f53aa5c362fcb58c3e55f036b705048dd4da26545e7d574f14e24_s390x", + "product": { + "name": "openshift4/ose-csi-external-provisioner@sha256:40fe6eefb14f53aa5c362fcb58c3e55f036b705048dd4da26545e7d574f14e24_s390x", + "product_id": "openshift4/ose-csi-external-provisioner@sha256:40fe6eefb14f53aa5c362fcb58c3e55f036b705048dd4da26545e7d574f14e24_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner@sha256:40fe6eefb14f53aa5c362fcb58c3e55f036b705048dd4da26545e7d574f14e24?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner&tag=v4.14.0-202311021650.p0.g78a710f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:40fe6eefb14f53aa5c362fcb58c3e55f036b705048dd4da26545e7d574f14e24_s390x", + "product": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:40fe6eefb14f53aa5c362fcb58c3e55f036b705048dd4da26545e7d574f14e24_s390x", + "product_id": "openshift4/ose-csi-external-provisioner-rhel8@sha256:40fe6eefb14f53aa5c362fcb58c3e55f036b705048dd4da26545e7d574f14e24_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner-rhel8@sha256:40fe6eefb14f53aa5c362fcb58c3e55f036b705048dd4da26545e7d574f14e24?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8&tag=v4.14.0-202311021650.p0.g78a710f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/driver-toolkit-rhel9@sha256:7e4c3fd0423e8c8e97420ac0bae4a771c7f7070fcf32367d27238150e0e9e6c3_s390x", + "product": { + "name": "openshift4/driver-toolkit-rhel9@sha256:7e4c3fd0423e8c8e97420ac0bae4a771c7f7070fcf32367d27238150e0e9e6c3_s390x", + "product_id": "openshift4/driver-toolkit-rhel9@sha256:7e4c3fd0423e8c8e97420ac0bae4a771c7f7070fcf32367d27238150e0e9e6c3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/driver-toolkit-rhel9@sha256:7e4c3fd0423e8c8e97420ac0bae4a771c7f7070fcf32367d27238150e0e9e6c3?arch=s390x&repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9&tag=v4.14.0-202311062032.p0.gcafed17.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-proxy@sha256:13d156235fd69183a23f8936330c7180d92b535e2e8abda4623a3820d4e33915_s390x", + "product": { + "name": "openshift4/ose-oauth-proxy@sha256:13d156235fd69183a23f8936330c7180d92b535e2e8abda4623a3820d4e33915_s390x", + "product_id": "openshift4/ose-oauth-proxy@sha256:13d156235fd69183a23f8936330c7180d92b535e2e8abda4623a3820d4e33915_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-proxy@sha256:13d156235fd69183a23f8936330c7180d92b535e2e8abda4623a3820d4e33915?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-oauth-proxy&tag=v4.14.0-202311021650.p0.g55e0cd1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-alertmanager@sha256:c1c500118c8a13b07034cb625171f88686e2e466b699107ea6d1cb5ada959b2b_s390x", + "product": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:c1c500118c8a13b07034cb625171f88686e2e466b699107ea6d1cb5ada959b2b_s390x", + "product_id": "openshift4/ose-prometheus-alertmanager@sha256:c1c500118c8a13b07034cb625171f88686e2e466b699107ea6d1cb5ada959b2b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-alertmanager@sha256:c1c500118c8a13b07034cb625171f88686e2e466b699107ea6d1cb5ada959b2b?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager&tag=v4.14.0-202311021650.p0.ge372516.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-node-exporter@sha256:0afc0b8adb940899e070fdcc69ea5a575daf6a2fd93247fde1ee241c4c654989_s390x", + "product": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:0afc0b8adb940899e070fdcc69ea5a575daf6a2fd93247fde1ee241c4c654989_s390x", + "product_id": "openshift4/ose-prometheus-node-exporter@sha256:0afc0b8adb940899e070fdcc69ea5a575daf6a2fd93247fde1ee241c4c654989_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-node-exporter@sha256:0afc0b8adb940899e070fdcc69ea5a575daf6a2fd93247fde1ee241c4c654989?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter&tag=v4.14.0-202311021650.p0.g5ee0a9d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus@sha256:3d8347181e89255765158bb0340f8e503aa6eb19a387fe5a45b634becbf28209_s390x", + "product": { + "name": "openshift4/ose-prometheus@sha256:3d8347181e89255765158bb0340f8e503aa6eb19a387fe5a45b634becbf28209_s390x", + "product_id": "openshift4/ose-prometheus@sha256:3d8347181e89255765158bb0340f8e503aa6eb19a387fe5a45b634becbf28209_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus@sha256:3d8347181e89255765158bb0340f8e503aa6eb19a387fe5a45b634becbf28209?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prometheus&tag=v4.14.0-202311021650.p0.gbcb475d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5147b4749e65650ba695d1b9b385135cee815cac8d44a403911f48370c01da28_s390x", + "product": { + "name": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5147b4749e65650ba695d1b9b385135cee815cac8d44a403911f48370c01da28_s390x", + "product_id": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5147b4749e65650ba695d1b9b385135cee815cac8d44a403911f48370c01da28_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-vpc-node-label-updater-rhel8@sha256:5147b4749e65650ba695d1b9b385135cee815cac8d44a403911f48370c01da28?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8&tag=v4.14.0-202311021650.p0.g44a2b94.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-proxy@sha256:c2c67de4ec964cd32fa9a3b3582023702cd34d3e7ef5f76d1ee9a55c41710a38_s390x", + "product": { + "name": "openshift4/ose-kube-proxy@sha256:c2c67de4ec964cd32fa9a3b3582023702cd34d3e7ef5f76d1ee9a55c41710a38_s390x", + "product_id": "openshift4/ose-kube-proxy@sha256:c2c67de4ec964cd32fa9a3b3582023702cd34d3e7ef5f76d1ee9a55c41710a38_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-proxy@sha256:c2c67de4ec964cd32fa9a3b3582023702cd34d3e7ef5f76d1ee9a55c41710a38?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-kube-proxy&tag=v4.14.0-202311021650.p0.g128c28c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-rbac-proxy@sha256:2e6592663beb61bd88767aa0401d287ca94e556ec13c2f39cd7a18a63ba3bd93_s390x", + "product": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:2e6592663beb61bd88767aa0401d287ca94e556ec13c2f39cd7a18a63ba3bd93_s390x", + "product_id": "openshift4/ose-kube-rbac-proxy@sha256:2e6592663beb61bd88767aa0401d287ca94e556ec13c2f39cd7a18a63ba3bd93_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-rbac-proxy@sha256:2e6592663beb61bd88767aa0401d287ca94e556ec13c2f39cd7a18a63ba3bd93?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy&tag=v4.14.0-202311021650.p0.g1a646b9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-state-metrics@sha256:fd18796ff53c50220899c8e80c25f8c1a1be60322bc471f4b00344e44e754606_s390x", + "product": { + "name": "openshift4/ose-kube-state-metrics@sha256:fd18796ff53c50220899c8e80c25f8c1a1be60322bc471f4b00344e44e754606_s390x", + "product_id": "openshift4/ose-kube-state-metrics@sha256:fd18796ff53c50220899c8e80c25f8c1a1be60322bc471f4b00344e44e754606_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-state-metrics@sha256:fd18796ff53c50220899c8e80c25f8c1a1be60322bc471f4b00344e44e754606?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics&tag=v4.14.0-202311021650.p0.gdb0c549.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-marketplace@sha256:0bf0ec1080549cd86633006168f38fa18b7b8b4997540eff01aaa976afc2e4d7_s390x", + "product": { + "name": "openshift4/ose-operator-marketplace@sha256:0bf0ec1080549cd86633006168f38fa18b7b8b4997540eff01aaa976afc2e4d7_s390x", + "product_id": "openshift4/ose-operator-marketplace@sha256:0bf0ec1080549cd86633006168f38fa18b7b8b4997540eff01aaa976afc2e4d7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-marketplace@sha256:0bf0ec1080549cd86633006168f38fa18b7b8b4997540eff01aaa976afc2e4d7?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-operator-marketplace&tag=v4.14.0-202311021650.p0.ga367cea.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-monitoring-plugin-rhel8@sha256:5b00d4acc8aa27be7b4e731d8215a313a9395a553030dfaa3eb35aea154abbf3_s390x", + "product": { + "name": "openshift4/ose-monitoring-plugin-rhel8@sha256:5b00d4acc8aa27be7b4e731d8215a313a9395a553030dfaa3eb35aea154abbf3_s390x", + "product_id": "openshift4/ose-monitoring-plugin-rhel8@sha256:5b00d4acc8aa27be7b4e731d8215a313a9395a553030dfaa3eb35aea154abbf3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-monitoring-plugin-rhel8@sha256:5b00d4acc8aa27be7b4e731d8215a313a9395a553030dfaa3eb35aea154abbf3?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8&tag=v4.14.0-202311021650.p0.g8757197.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-cni@sha256:b7bfb9d813ea6e3da2c2d7eabaa6ed944f68f53f87b10605b4236ab386976dd4_s390x", + "product": { + "name": "openshift4/ose-multus-cni@sha256:b7bfb9d813ea6e3da2c2d7eabaa6ed944f68f53f87b10605b4236ab386976dd4_s390x", + "product_id": "openshift4/ose-multus-cni@sha256:b7bfb9d813ea6e3da2c2d7eabaa6ed944f68f53f87b10605b4236ab386976dd4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-cni@sha256:b7bfb9d813ea6e3da2c2d7eabaa6ed944f68f53f87b10605b4236ab386976dd4?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-multus-cni&tag=v4.14.0-202311021650.p0.g599223b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-server-rhel8@sha256:e209d08f079d1c88ddaafc7255f9297db767b86870d54e44bcc1cdf47ad839a6_s390x", + "product": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:e209d08f079d1c88ddaafc7255f9297db767b86870d54e44bcc1cdf47ad839a6_s390x", + "product_id": "openshift4/ose-oauth-server-rhel8@sha256:e209d08f079d1c88ddaafc7255f9297db767b86870d54e44bcc1cdf47ad839a6_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-server-rhel8@sha256:e209d08f079d1c88ddaafc7255f9297db767b86870d54e44bcc1cdf47ad839a6?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel8&tag=v4.14.0-202311021650.p0.g35f4739.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/oc-mirror-plugin-rhel8@sha256:4a8d44503de543516043a6a1fd03fe583cd647dec5cac74c6db5cd979a003a71_s390x", + "product": { + "name": "openshift4/oc-mirror-plugin-rhel8@sha256:4a8d44503de543516043a6a1fd03fe583cd647dec5cac74c6db5cd979a003a71_s390x", + "product_id": "openshift4/oc-mirror-plugin-rhel8@sha256:4a8d44503de543516043a6a1fd03fe583cd647dec5cac74c6db5cd979a003a71_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oc-mirror-plugin-rhel8@sha256:4a8d44503de543516043a6a1fd03fe583cd647dec5cac74c6db5cd979a003a71?arch=s390x&repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel8&tag=v4.14.0-202311031050.p0.gd124cd5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-builder@sha256:eee6a8305bf7afe20592627deb33e5c3be6f1d24f6d1b551eb987d1d4627f0c3_s390x", + "product": { + "name": "openshift4/ose-docker-builder@sha256:eee6a8305bf7afe20592627deb33e5c3be6f1d24f6d1b551eb987d1d4627f0c3_s390x", + "product_id": "openshift4/ose-docker-builder@sha256:eee6a8305bf7afe20592627deb33e5c3be6f1d24f6d1b551eb987d1d4627f0c3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-builder@sha256:eee6a8305bf7afe20592627deb33e5c3be6f1d24f6d1b551eb987d1d4627f0c3?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-docker-builder&tag=v4.14.0-202311071732.p0.g720efaa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli@sha256:c71eb3e75314855836d713cfa80401369439032924cd42cb927247349d51165a_s390x", + "product": { + "name": "openshift4/ose-cli@sha256:c71eb3e75314855836d713cfa80401369439032924cd42cb927247349d51165a_s390x", + "product_id": "openshift4/ose-cli@sha256:c71eb3e75314855836d713cfa80401369439032924cd42cb927247349d51165a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli@sha256:c71eb3e75314855836d713cfa80401369439032924cd42cb927247349d51165a?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cli&tag=v4.14.0-202311021650.p0.g9b1e0d2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console@sha256:c1106ad6e2d3c8da039807b39021c0666ccb1d4c13b798d7c61debfbe5c0ac24_s390x", + "product": { + "name": "openshift4/ose-console@sha256:c1106ad6e2d3c8da039807b39021c0666ccb1d4c13b798d7c61debfbe5c0ac24_s390x", + "product_id": "openshift4/ose-console@sha256:c1106ad6e2d3c8da039807b39021c0666ccb1d4c13b798d7c61debfbe5c0ac24_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-console@sha256:c1106ad6e2d3c8da039807b39021c0666ccb1d4c13b798d7c61debfbe5c0ac24?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-console&tag=v4.14.0-202311061131.p0.g92b8759.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console-operator@sha256:89265b21b153806e2028b8cca870614f575d3cc089f64d8412410e0233b30d01_s390x", + "product": { + "name": "openshift4/ose-console-operator@sha256:89265b21b153806e2028b8cca870614f575d3cc089f64d8412410e0233b30d01_s390x", + "product_id": "openshift4/ose-console-operator@sha256:89265b21b153806e2028b8cca870614f575d3cc089f64d8412410e0233b30d01_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-console-operator@sha256:89265b21b153806e2028b8cca870614f575d3cc089f64d8412410e0233b30d01?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-console-operator&tag=v4.14.0-202311021650.p0.g966e915.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-deployer@sha256:b4c14ff159d813c6254deffaf6d06a3ac6521e2198e076323785b5f69bffffae_s390x", + "product": { + "name": "openshift4/ose-deployer@sha256:b4c14ff159d813c6254deffaf6d06a3ac6521e2198e076323785b5f69bffffae_s390x", + "product_id": "openshift4/ose-deployer@sha256:b4c14ff159d813c6254deffaf6d06a3ac6521e2198e076323785b5f69bffffae_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-deployer@sha256:b4c14ff159d813c6254deffaf6d06a3ac6521e2198e076323785b5f69bffffae?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-deployer&tag=v4.14.0-202311021650.p0.g9b1e0d2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-haproxy-router@sha256:fec3cbbd3087e92817f2b473f23d57571263563bc8601dd13264c80388c29155_s390x", + "product": { + "name": "openshift4/ose-haproxy-router@sha256:fec3cbbd3087e92817f2b473f23d57571263563bc8601dd13264c80388c29155_s390x", + "product_id": "openshift4/ose-haproxy-router@sha256:fec3cbbd3087e92817f2b473f23d57571263563bc8601dd13264c80388c29155_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-haproxy-router@sha256:fec3cbbd3087e92817f2b473f23d57571263563bc8601dd13264c80388c29155?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-haproxy-router&tag=v4.14.0-202311021650.p0.gb3af193.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-keepalived-ipfailover@sha256:e47d267d7adc1b1a3432a5a3c151a40e78f624d321c80fe49f490141057794e1_s390x", + "product": { + "name": "openshift4/ose-keepalived-ipfailover@sha256:e47d267d7adc1b1a3432a5a3c151a40e78f624d321c80fe49f490141057794e1_s390x", + "product_id": "openshift4/ose-keepalived-ipfailover@sha256:e47d267d7adc1b1a3432a5a3c151a40e78f624d321c80fe49f490141057794e1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-keepalived-ipfailover@sha256:e47d267d7adc1b1a3432a5a3c151a40e78f624d321c80fe49f490141057794e1?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover&tag=v4.14.0-202311021650.p0.gf08cee3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-pod@sha256:868c1db9bc24abeef9ce6c53f3f23c89a21ab9fac8bcf999e7e80a30791ac79c_s390x", + "product": { + "name": "openshift4/ose-pod@sha256:868c1db9bc24abeef9ce6c53f3f23c89a21ab9fac8bcf999e7e80a30791ac79c_s390x", + "product_id": "openshift4/ose-pod@sha256:868c1db9bc24abeef9ce6c53f3f23c89a21ab9fac8bcf999e7e80a30791ac79c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-pod@sha256:868c1db9bc24abeef9ce6c53f3f23c89a21ab9fac8bcf999e7e80a30791ac79c?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-pod&tag=v4.14.0-202311021650.p0.gf67aeb3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-registry@sha256:552429c6e5be60bcf742285dfad3f0522a5f86775eea39aa4fce2020177b4479_s390x", + "product": { + "name": "openshift4/ose-docker-registry@sha256:552429c6e5be60bcf742285dfad3f0522a5f86775eea39aa4fce2020177b4479_s390x", + "product_id": "openshift4/ose-docker-registry@sha256:552429c6e5be60bcf742285dfad3f0522a5f86775eea39aa4fce2020177b4479_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-registry@sha256:552429c6e5be60bcf742285dfad3f0522a5f86775eea39aa4fce2020177b4479?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-docker-registry&tag=v4.14.0-202311021650.p0.g5e7788a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tests@sha256:a0b903d89e329e98a4312495eae0ed2727a7af5100ef95eae31ad5a354a34e0b_s390x", + "product": { + "name": "openshift4/ose-tests@sha256:a0b903d89e329e98a4312495eae0ed2727a7af5100ef95eae31ad5a354a34e0b_s390x", + "product_id": "openshift4/ose-tests@sha256:a0b903d89e329e98a4312495eae0ed2727a7af5100ef95eae31ad5a354a34e0b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-tests@sha256:a0b903d89e329e98a4312495eae0ed2727a7af5100ef95eae31ad5a354a34e0b?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-tests&tag=v4.14.0-202311021650.p0.g81a21f1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:701cc7a9c541930681f954fffc5fc1ec1f38d8102a691e2ed73cc4f615ee7985_s390x", + "product": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:701cc7a9c541930681f954fffc5fc1ec1f38d8102a691e2ed73cc4f615ee7985_s390x", + "product_id": "openshift4/ose-openshift-state-metrics-rhel8@sha256:701cc7a9c541930681f954fffc5fc1ec1f38d8102a691e2ed73cc4f615ee7985_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-state-metrics-rhel8@sha256:701cc7a9c541930681f954fffc5fc1ec1f38d8102a691e2ed73cc4f615ee7985?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8&tag=v4.14.0-202311021650.p0.gdff4b0f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-lifecycle-manager@sha256:c4ee940cc84b828ea7228cc6cd1c2597da2b7f125ca4e1bd1e836da004ce76e4_s390x", + "product": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:c4ee940cc84b828ea7228cc6cd1c2597da2b7f125ca4e1bd1e836da004ce76e4_s390x", + "product_id": "openshift4/ose-operator-lifecycle-manager@sha256:c4ee940cc84b828ea7228cc6cd1c2597da2b7f125ca4e1bd1e836da004ce76e4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-lifecycle-manager@sha256:c4ee940cc84b828ea7228cc6cd1c2597da2b7f125ca4e1bd1e836da004ce76e4?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager&tag=v4.14.0-202311021650.p0.g48d1541.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-registry@sha256:d8e1a5d8cf42dd864e693dc2768fd608134ab7181882dc0613ff2a2e163afb80_s390x", + "product": { + "name": "openshift4/ose-operator-registry@sha256:d8e1a5d8cf42dd864e693dc2768fd608134ab7181882dc0613ff2a2e163afb80_s390x", + "product_id": "openshift4/ose-operator-registry@sha256:d8e1a5d8cf42dd864e693dc2768fd608134ab7181882dc0613ff2a2e163afb80_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-registry@sha256:d8e1a5d8cf42dd864e693dc2768fd608134ab7181882dc0613ff2a2e163afb80?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-operator-registry&tag=v4.14.0-202311021650.p0.g48d1541.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:1fa39a0d145051a36ebca280fe08387145e20cda9d0433372a2f1fa64ffa8cc9_s390x", + "product": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:1fa39a0d145051a36ebca280fe08387145e20cda9d0433372a2f1fa64ffa8cc9_s390x", + "product_id": "openshift4/ose-agent-installer-api-server-rhel8@sha256:1fa39a0d145051a36ebca280fe08387145e20cda9d0433372a2f1fa64ffa8cc9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-api-server-rhel8@sha256:1fa39a0d145051a36ebca280fe08387145e20cda9d0433372a2f1fa64ffa8cc9?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8&tag=v4.14.0-202311021650.p0.g4e1a1e5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:447dd1a4f159937f4f7baddb8e526a8cdd830bf67d02024290096ea6e8094b5b_s390x", + "product": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:447dd1a4f159937f4f7baddb8e526a8cdd830bf67d02024290096ea6e8094b5b_s390x", + "product_id": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:447dd1a4f159937f4f7baddb8e526a8cdd830bf67d02024290096ea6e8094b5b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-csr-approver-rhel8@sha256:447dd1a4f159937f4f7baddb8e526a8cdd830bf67d02024290096ea6e8094b5b?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8&tag=v4.14.0-202311021650.p0.g9fd99e3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:578faa9608909b0392b21afc58b462c1c729697641925e551a4c500d02bcdef4_s390x", + "product": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:578faa9608909b0392b21afc58b462c1c729697641925e551a4c500d02bcdef4_s390x", + "product_id": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:578faa9608909b0392b21afc58b462c1c729697641925e551a4c500d02bcdef4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-orchestrator-rhel8@sha256:578faa9608909b0392b21afc58b462c1c729697641925e551a4c500d02bcdef4?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8&tag=v4.14.0-202311021650.p0.g9fd99e3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-utils-rhel8@sha256:98324be7ab3593a7727f9473c24c61aff1c6d0c1c9ce46a022042b78a3e97770_s390x", + "product": { + "name": "openshift4/ose-agent-installer-utils-rhel8@sha256:98324be7ab3593a7727f9473c24c61aff1c6d0c1c9ce46a022042b78a3e97770_s390x", + "product_id": "openshift4/ose-agent-installer-utils-rhel8@sha256:98324be7ab3593a7727f9473c24c61aff1c6d0c1c9ce46a022042b78a3e97770_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-utils-rhel8@sha256:98324be7ab3593a7727f9473c24c61aff1c6d0c1c9ce46a022042b78a3e97770?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel8&tag=v4.14.0-202311021650.p0.gad85376.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:eef7741b8de1b9e6fc1c8425241e94a4db7f119518a9e6fc917ac9ee887a6034_s390x", + "product": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:eef7741b8de1b9e6fc1c8425241e94a4db7f119518a9e6fc917ac9ee887a6034_s390x", + "product_id": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:eef7741b8de1b9e6fc1c8425241e94a4db7f119518a9e6fc917ac9ee887a6034_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-apiserver-network-proxy-rhel8@sha256:eef7741b8de1b9e6fc1c8425241e94a4db7f119518a9e6fc917ac9ee887a6034?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8&tag=v4.14.0-202311021650.p0.g15cd434.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:6179b5f651be72065de051bf59af1169ead6194077c26bc8b0faf5554c878c20_s390x", + "product": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:6179b5f651be72065de051bf59af1169ead6194077c26bc8b0faf5554c878c20_s390x", + "product_id": "openshift4/ose-baremetal-installer-rhel8@sha256:6179b5f651be72065de051bf59af1169ead6194077c26bc8b0faf5554c878c20_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-installer-rhel8@sha256:6179b5f651be72065de051bf59af1169ead6194077c26bc8b0faf5554c878c20?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8&tag=v4.14.0-202311040828.p0.gc0f108b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:ea96cb40b6680dab55d616a81b971cad7fdb003bf711e980f2720faa9e1b583b_s390x", + "product": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:ea96cb40b6680dab55d616a81b971cad7fdb003bf711e980f2720faa9e1b583b_s390x", + "product_id": "openshift4/ose-baremetal-rhel8-operator@sha256:ea96cb40b6680dab55d616a81b971cad7fdb003bf711e980f2720faa9e1b583b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-rhel8-operator@sha256:ea96cb40b6680dab55d616a81b971cad7fdb003bf711e980f2720faa9e1b583b?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel8-operator&tag=v4.14.0-202311021650.p0.g8643f32.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:91c19715989d048d83940e0072766a6acaf00a2be8d0a4bbf056ded26c6eba44_s390x", + "product": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:91c19715989d048d83940e0072766a6acaf00a2be8d0a4bbf056ded26c6eba44_s390x", + "product_id": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:91c19715989d048d83940e0072766a6acaf00a2be8d0a4bbf056ded26c6eba44_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-runtimecfg-rhel8@sha256:91c19715989d048d83940e0072766a6acaf00a2be8d0a4bbf056ded26c6eba44?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8&tag=v4.14.0-202311021650.p0.ge7fa0f2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli-artifacts@sha256:e6887e59e38d5dd1b5ea2b67c84d75ec8a6601f76d8d888fc4ced22ffa9cb9ba_s390x", + "product": { + "name": "openshift4/ose-cli-artifacts@sha256:e6887e59e38d5dd1b5ea2b67c84d75ec8a6601f76d8d888fc4ced22ffa9cb9ba_s390x", + "product_id": "openshift4/ose-cli-artifacts@sha256:e6887e59e38d5dd1b5ea2b67c84d75ec8a6601f76d8d888fc4ced22ffa9cb9ba_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli-artifacts@sha256:e6887e59e38d5dd1b5ea2b67c84d75ec8a6601f76d8d888fc4ced22ffa9cb9ba?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cli-artifacts&tag=v4.14.0-202311021650.p0.g9b1e0d2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-credential-operator@sha256:7e58c3d61bd38143c86a6a19acfdd1de851de2c1dfc6d0240c9492db1328c09e_s390x", + "product": { + "name": "openshift4/ose-cloud-credential-operator@sha256:7e58c3d61bd38143c86a6a19acfdd1de851de2c1dfc6d0240c9492db1328c09e_s390x", + "product_id": "openshift4/ose-cloud-credential-operator@sha256:7e58c3d61bd38143c86a6a19acfdd1de851de2c1dfc6d0240c9492db1328c09e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-credential-operator@sha256:7e58c3d61bd38143c86a6a19acfdd1de851de2c1dfc6d0240c9492db1328c09e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cloud-credential-operator&tag=v4.14.0-202311031646.p0.ge70c0de.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:a31fbf509239ec5568b2abed523630ceef1adbe73264aa609c65835891830703_s390x", + "product": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:a31fbf509239ec5568b2abed523630ceef1adbe73264aa609c65835891830703_s390x", + "product_id": "openshift4/cloud-network-config-controller-rhel8@sha256:a31fbf509239ec5568b2abed523630ceef1adbe73264aa609c65835891830703_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cloud-network-config-controller-rhel8@sha256:a31fbf509239ec5568b2abed523630ceef1adbe73264aa609c65835891830703?arch=s390x&repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel8&tag=v4.14.0-202311021650.p0.g9cb1bbd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-api-rhel8@sha256:273025f1780c189fb9e36928b7820abbf599cc7bd4f727afc58ee71c817e5491_s390x", + "product": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:273025f1780c189fb9e36928b7820abbf599cc7bd4f727afc58ee71c817e5491_s390x", + "product_id": "openshift4/ose-cluster-api-rhel8@sha256:273025f1780c189fb9e36928b7820abbf599cc7bd4f727afc58ee71c817e5491_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-api-rhel8@sha256:273025f1780c189fb9e36928b7820abbf599cc7bd4f727afc58ee71c817e5491?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel8&tag=v4.14.0-202311021650.p0.gae83c55.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-authentication-operator@sha256:6696e816a0eae384b8064c8fc42607f7a5fc6dfc928fec248fc0481bb07351a2_s390x", + "product": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:6696e816a0eae384b8064c8fc42607f7a5fc6dfc928fec248fc0481bb07351a2_s390x", + "product_id": "openshift4/ose-cluster-authentication-operator@sha256:6696e816a0eae384b8064c8fc42607f7a5fc6dfc928fec248fc0481bb07351a2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-authentication-operator@sha256:6696e816a0eae384b8064c8fc42607f7a5fc6dfc928fec248fc0481bb07351a2?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-operator&tag=v4.14.0-202311021650.p0.g9ad3782.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:235dd912aff440004cbfd1f4b473fc10486c5b1bf8ef2f02b99de718ac2579e2_s390x", + "product": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:235dd912aff440004cbfd1f4b473fc10486c5b1bf8ef2f02b99de718ac2579e2_s390x", + "product_id": "openshift4/ose-cluster-autoscaler-operator@sha256:235dd912aff440004cbfd1f4b473fc10486c5b1bf8ef2f02b99de718ac2579e2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler-operator@sha256:235dd912aff440004cbfd1f4b473fc10486c5b1bf8ef2f02b99de718ac2579e2?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-operator&tag=v4.14.0-202311021650.p0.g01c3b09.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:8c1ef66f555633522772e5e22a8a936e0b575b36696ce175e6dc4dfc8fffb690_s390x", + "product": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:8c1ef66f555633522772e5e22a8a936e0b575b36696ce175e6dc4dfc8fffb690_s390x", + "product_id": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:8c1ef66f555633522772e5e22a8a936e0b575b36696ce175e6dc4dfc8fffb690_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-baremetal-operator-rhel8@sha256:8c1ef66f555633522772e5e22a8a936e0b575b36696ce175e6dc4dfc8fffb690?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8&tag=v4.14.0-202311021650.p0.g582b745.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-bootstrap@sha256:cf317200a3ee01d1ec383a086c90a04464fa8611f018290a1ec6c8f9467ace14_s390x", + "product": { + "name": "openshift4/ose-cluster-bootstrap@sha256:cf317200a3ee01d1ec383a086c90a04464fa8611f018290a1ec6c8f9467ace14_s390x", + "product_id": "openshift4/ose-cluster-bootstrap@sha256:cf317200a3ee01d1ec383a086c90a04464fa8611f018290a1ec6c8f9467ace14_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-bootstrap@sha256:cf317200a3ee01d1ec383a086c90a04464fa8611f018290a1ec6c8f9467ace14?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap&tag=v4.14.0-202311021650.p0.g93fba13.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:186430d1c3e27ab0943682aec3670a323ca90ee9e34f3e002142c23c58fb079d_s390x", + "product": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:186430d1c3e27ab0943682aec3670a323ca90ee9e34f3e002142c23c58fb079d_s390x", + "product_id": "openshift4/ose-cluster-capi-rhel8-operator@sha256:186430d1c3e27ab0943682aec3670a323ca90ee9e34f3e002142c23c58fb079d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-rhel8-operator@sha256:186430d1c3e27ab0943682aec3670a323ca90ee9e34f3e002142c23c58fb079d?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator&tag=v4.14.0-202311021650.p0.gb4c4fb1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:186430d1c3e27ab0943682aec3670a323ca90ee9e34f3e002142c23c58fb079d_s390x", + "product": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:186430d1c3e27ab0943682aec3670a323ca90ee9e34f3e002142c23c58fb079d_s390x", + "product_id": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:186430d1c3e27ab0943682aec3670a323ca90ee9e34f3e002142c23c58fb079d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-operator-container-rhel8@sha256:186430d1c3e27ab0943682aec3670a323ca90ee9e34f3e002142c23c58fb079d?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8&tag=v4.14.0-202311021650.p0.gb4c4fb1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:0e658c3294cf71923a137e4abe9f31cfeef1b1ced1b33749d5437445d346cdfb_s390x", + "product": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:0e658c3294cf71923a137e4abe9f31cfeef1b1ced1b33749d5437445d346cdfb_s390x", + "product_id": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:0e658c3294cf71923a137e4abe9f31cfeef1b1ced1b33749d5437445d346cdfb_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:0e658c3294cf71923a137e4abe9f31cfeef1b1ced1b33749d5437445d346cdfb?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8&tag=v4.14.0-202311021650.p0.g785ecef.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-config-operator@sha256:1007335eb50c0bdd7e0cb0d2250f438801b26791c66cf5f34c0852fde21a4ec6_s390x", + "product": { + "name": "openshift4/ose-cluster-config-operator@sha256:1007335eb50c0bdd7e0cb0d2250f438801b26791c66cf5f34c0852fde21a4ec6_s390x", + "product_id": "openshift4/ose-cluster-config-operator@sha256:1007335eb50c0bdd7e0cb0d2250f438801b26791c66cf5f34c0852fde21a4ec6_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-config-operator@sha256:1007335eb50c0bdd7e0cb0d2250f438801b26791c66cf5f34c0852fde21a4ec6?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-config-operator&tag=v4.14.0-202311031646.p0.gd069e14.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:34fb5e57cd1f09b04873786f9e273ec94120d759ec7d79980b831fa271b5a653_s390x", + "product": { + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:34fb5e57cd1f09b04873786f9e273ec94120d759ec7d79980b831fa271b5a653_s390x", + "product_id": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:34fb5e57cd1f09b04873786f9e273ec94120d759ec7d79980b831fa271b5a653_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:34fb5e57cd1f09b04873786f9e273ec94120d759ec7d79980b831fa271b5a653?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8&tag=v4.14.0-202311021650.p0.g0455a74.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:9e3a06432af7224c9c4cd25a98b47cb99b1ea05417d1ff62377c2b205b01bf7d_s390x", + "product": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:9e3a06432af7224c9c4cd25a98b47cb99b1ea05417d1ff62377c2b205b01bf7d_s390x", + "product_id": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:9e3a06432af7224c9c4cd25a98b47cb99b1ea05417d1ff62377c2b205b01bf7d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:9e3a06432af7224c9c4cd25a98b47cb99b1ea05417d1ff62377c2b205b01bf7d?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator&tag=v4.14.0-202311021650.p0.g5d8bae8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-dns-operator@sha256:6f7b8e7b724b174b5bbf7c5cf09a2f9768aede00eda815b611d9122de29f3e1e_s390x", + "product": { + "name": "openshift4/ose-cluster-dns-operator@sha256:6f7b8e7b724b174b5bbf7c5cf09a2f9768aede00eda815b611d9122de29f3e1e_s390x", + "product_id": "openshift4/ose-cluster-dns-operator@sha256:6f7b8e7b724b174b5bbf7c5cf09a2f9768aede00eda815b611d9122de29f3e1e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-dns-operator@sha256:6f7b8e7b724b174b5bbf7c5cf09a2f9768aede00eda815b611d9122de29f3e1e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-dns-operator&tag=v4.14.0-202311021650.p0.g5553a22.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-image-registry-operator@sha256:62ec9d4f168d1c73b8c654d00a5bc0fe374e566c48d2fa45087c735a5f5fd0c5_s390x", + "product": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:62ec9d4f168d1c73b8c654d00a5bc0fe374e566c48d2fa45087c735a5f5fd0c5_s390x", + "product_id": "openshift4/ose-cluster-image-registry-operator@sha256:62ec9d4f168d1c73b8c654d00a5bc0fe374e566c48d2fa45087c735a5f5fd0c5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-image-registry-operator@sha256:62ec9d4f168d1c73b8c654d00a5bc0fe374e566c48d2fa45087c735a5f5fd0c5?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-operator&tag=v4.14.0-202311071209.p0.gd27b918.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-ingress-operator@sha256:e1be115b194b860d32c7e6cb9d80914f777885e757532d40396283e8d11c8038_s390x", + "product": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:e1be115b194b860d32c7e6cb9d80914f777885e757532d40396283e8d11c8038_s390x", + "product_id": "openshift4/ose-cluster-ingress-operator@sha256:e1be115b194b860d32c7e6cb9d80914f777885e757532d40396283e8d11c8038_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-ingress-operator@sha256:e1be115b194b860d32c7e6cb9d80914f777885e757532d40396283e8d11c8038?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-operator&tag=v4.14.0-202311021650.p0.gd876f5a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:6af22ea8306cc2ed2b4d637bbfc3543c3f83b480fed1bfa1e030724f2a230cb1_s390x", + "product": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:6af22ea8306cc2ed2b4d637bbfc3543c3f83b480fed1bfa1e030724f2a230cb1_s390x", + "product_id": "openshift4/ose-cluster-kube-apiserver-operator@sha256:6af22ea8306cc2ed2b4d637bbfc3543c3f83b480fed1bfa1e030724f2a230cb1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-apiserver-operator@sha256:6af22ea8306cc2ed2b4d637bbfc3543c3f83b480fed1bfa1e030724f2a230cb1?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator&tag=v4.14.0-202311031050.p0.gd52dbad.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:d342102cda0fc60cef956af30ac5406f0522654ac47f09c262ec5969fb0d27cf_s390x", + "product": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:d342102cda0fc60cef956af30ac5406f0522654ac47f09c262ec5969fb0d27cf_s390x", + "product_id": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:d342102cda0fc60cef956af30ac5406f0522654ac47f09c262ec5969fb0d27cf_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel8-operator@sha256:d342102cda0fc60cef956af30ac5406f0522654ac47f09c262ec5969fb0d27cf?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator&tag=v4.14.0-202311021650.p0.gb287d08.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:3680c4443f2a83c7ec558e37f93b386d9318f9fbede21b893a3a023528fe7512_s390x", + "product": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:3680c4443f2a83c7ec558e37f93b386d9318f9fbede21b893a3a023528fe7512_s390x", + "product_id": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:3680c4443f2a83c7ec558e37f93b386d9318f9fbede21b893a3a023528fe7512_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-controller-manager-operator@sha256:3680c4443f2a83c7ec558e37f93b386d9318f9fbede21b893a3a023528fe7512?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator&tag=v4.14.0-202311021650.p0.gbc9ef03.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:2d34d4e0d265bcd3ac18465178e81bd3b4f2d0a0f0ded99f3507ca40f6503b5c_s390x", + "product": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:2d34d4e0d265bcd3ac18465178e81bd3b4f2d0a0f0ded99f3507ca40f6503b5c_s390x", + "product_id": "openshift4/ose-cluster-kube-scheduler-operator@sha256:2d34d4e0d265bcd3ac18465178e81bd3b4f2d0a0f0ded99f3507ca40f6503b5c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-scheduler-operator@sha256:2d34d4e0d265bcd3ac18465178e81bd3b4f2d0a0f0ded99f3507ca40f6503b5c?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator&tag=v4.14.0-202311021650.p0.g6e43991.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:0ef1705a6bce3b88ed42265b48aa3258a621ec73f9c56347c97423568e2fd363_s390x", + "product": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:0ef1705a6bce3b88ed42265b48aa3258a621ec73f9c56347c97423568e2fd363_s390x", + "product_id": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:0ef1705a6bce3b88ed42265b48aa3258a621ec73f9c56347c97423568e2fd363_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:0ef1705a6bce3b88ed42265b48aa3258a621ec73f9c56347c97423568e2fd363?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator&tag=v4.14.0-202311071511.p0.g9cd9922.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-machine-approver@sha256:bae6e2d67930636195ea3d5ae74bed73e2e87f33c6d3de95d3d55852bc051c7c_s390x", + "product": { + "name": "openshift4/ose-cluster-machine-approver@sha256:bae6e2d67930636195ea3d5ae74bed73e2e87f33c6d3de95d3d55852bc051c7c_s390x", + "product_id": "openshift4/ose-cluster-machine-approver@sha256:bae6e2d67930636195ea3d5ae74bed73e2e87f33c6d3de95d3d55852bc051c7c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-machine-approver@sha256:bae6e2d67930636195ea3d5ae74bed73e2e87f33c6d3de95d3d55852bc051c7c?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver&tag=v4.14.0-202311021650.p0.g926c904.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-olm-operator-rhel8@sha256:10c9275bf75149c5b2f1738d58a6c0be436a2467606764428521472a6ed4355d_s390x", + "product": { + "name": "openshift4/ose-cluster-olm-operator-rhel8@sha256:10c9275bf75149c5b2f1738d58a6c0be436a2467606764428521472a6ed4355d_s390x", + "product_id": "openshift4/ose-cluster-olm-operator-rhel8@sha256:10c9275bf75149c5b2f1738d58a6c0be436a2467606764428521472a6ed4355d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-olm-operator-rhel8@sha256:10c9275bf75149c5b2f1738d58a6c0be436a2467606764428521472a6ed4355d?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8&tag=v4.14.0-202311021650.p0.g9e05f32.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:10036fd11dfc2060079ef45714a1e0100e105d93651ff2dbaa485405aaf27040_s390x", + "product": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:10036fd11dfc2060079ef45714a1e0100e105d93651ff2dbaa485405aaf27040_s390x", + "product_id": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:10036fd11dfc2060079ef45714a1e0100e105d93651ff2dbaa485405aaf27040_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-apiserver-operator@sha256:10036fd11dfc2060079ef45714a1e0100e105d93651ff2dbaa485405aaf27040?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator&tag=v4.14.0-202311021650.p0.g8bd8602.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:06631f37592d53d7d7fe49335a2d48c0b7ae6ce9df04aa93514018ca0ca21924_s390x", + "product": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:06631f37592d53d7d7fe49335a2d48c0b7ae6ce9df04aa93514018ca0ca21924_s390x", + "product_id": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:06631f37592d53d7d7fe49335a2d48c0b7ae6ce9df04aa93514018ca0ca21924_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-controller-manager-operator@sha256:06631f37592d53d7d7fe49335a2d48c0b7ae6ce9df04aa93514018ca0ca21924?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator&tag=v4.14.0-202311021650.p0.g04cec68.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:d66e2c603108e3db51809c9443ffd3aafc77616d7c0c6b4f69ef389304ef2ba2_s390x", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:d66e2c603108e3db51809c9443ffd3aafc77616d7c0c6b4f69ef389304ef2ba2_s390x", + "product_id": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:d66e2c603108e3db51809c9443ffd3aafc77616d7c0c6b4f69ef389304ef2ba2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8-operator@sha256:d66e2c603108e3db51809c9443ffd3aafc77616d7c0c6b4f69ef389304ef2ba2?arch=s390x&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator&tag=v4.14.0-202311021650.p0.g2fa33aa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:349506f89a1095ddaed9307450b8713437afd0c70693ffac86772bc2c7fdc061_s390x", + "product": { + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:349506f89a1095ddaed9307450b8713437afd0c70693ffac86772bc2c7fdc061_s390x", + "product_id": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:349506f89a1095ddaed9307450b8713437afd0c70693ffac86772bc2c7fdc061_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-platform-operators-manager-rhel8@sha256:349506f89a1095ddaed9307450b8713437afd0c70693ffac86772bc2c7fdc061?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8&tag=v4.14.0-202311021650.p0.g08fb27e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:253efe343b45ea868ee4fa74119ad7263e7a39edcf7414694775bb58b0665d5c_s390x", + "product": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:253efe343b45ea868ee4fa74119ad7263e7a39edcf7414694775bb58b0665d5c_s390x", + "product_id": "openshift4/ose-cluster-policy-controller-rhel8@sha256:253efe343b45ea868ee4fa74119ad7263e7a39edcf7414694775bb58b0665d5c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-policy-controller-rhel8@sha256:253efe343b45ea868ee4fa74119ad7263e7a39edcf7414694775bb58b0665d5c?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8&tag=v4.14.0-202311021650.p0.g219f6f6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-samples-operator@sha256:68a7f6a75355e6841838e22292f5d9002ad3a4453e515851ac15c91963060ba8_s390x", + "product": { + "name": "openshift4/ose-cluster-samples-operator@sha256:68a7f6a75355e6841838e22292f5d9002ad3a4453e515851ac15c91963060ba8_s390x", + "product_id": "openshift4/ose-cluster-samples-operator@sha256:68a7f6a75355e6841838e22292f5d9002ad3a4453e515851ac15c91963060ba8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-samples-operator@sha256:68a7f6a75355e6841838e22292f5d9002ad3a4453e515851ac15c91963060ba8?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-samples-operator&tag=v4.14.0-202311021650.p0.gb5396eb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-storage-operator@sha256:4b3cf22cb3931fe266f4835a67688b824117b037d7085373771e5d7211a36025_s390x", + "product": { + "name": "openshift4/ose-cluster-storage-operator@sha256:4b3cf22cb3931fe266f4835a67688b824117b037d7085373771e5d7211a36025_s390x", + "product_id": "openshift4/ose-cluster-storage-operator@sha256:4b3cf22cb3931fe266f4835a67688b824117b037d7085373771e5d7211a36025_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-storage-operator@sha256:4b3cf22cb3931fe266f4835a67688b824117b037d7085373771e5d7211a36025?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-storage-operator&tag=v4.14.0-202311021650.p0.gdbb1514.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-update-keys@sha256:ddd24d600f02abffe2b46d450be203d0d32518c9627b4187292b5d8bd2583c61_s390x", + "product": { + "name": "openshift4/ose-cluster-update-keys@sha256:ddd24d600f02abffe2b46d450be203d0d32518c9627b4187292b5d8bd2583c61_s390x", + "product_id": "openshift4/ose-cluster-update-keys@sha256:ddd24d600f02abffe2b46d450be203d0d32518c9627b4187292b5d8bd2583c61_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-update-keys@sha256:ddd24d600f02abffe2b46d450be203d0d32518c9627b4187292b5d8bd2583c61?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys&tag=v4.14.0-202311021650.p0.g9dd3eed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:27693100ca36957063756521caa9007b3b11193a4ed23985263569e6ab1d531b_s390x", + "product": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:27693100ca36957063756521caa9007b3b11193a4ed23985263569e6ab1d531b_s390x", + "product_id": "openshift4/ose-container-networking-plugins-rhel8@sha256:27693100ca36957063756521caa9007b3b11193a4ed23985263569e6ab1d531b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-container-networking-plugins-rhel8@sha256:27693100ca36957063756521caa9007b3b11193a4ed23985263569e6ab1d531b?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8&tag=v4.14.0-202311021650.p0.g4633865.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:6c0072fae031243a068ea2a0e13f0a809a471076c579bb4d629f06f8e9306556_s390x", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:6c0072fae031243a068ea2a0e13f0a809a471076c579bb4d629f06f8e9306556_s390x", + "product_id": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:6c0072fae031243a068ea2a0e13f0a809a471076c579bb4d629f06f8e9306556_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-rhel8@sha256:6c0072fae031243a068ea2a0e13f0a809a471076c579bb4d629f06f8e9306556?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8&tag=v4.14.0-202311021650.p0.g740b442.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:f692c54c87fc6f5e8a3211775b78c3082468e5e775a39889170b9f1b0b1efc2a_s390x", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:f692c54c87fc6f5e8a3211775b78c3082468e5e775a39889170b9f1b0b1efc2a_s390x", + "product_id": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:f692c54c87fc6f5e8a3211775b78c3082468e5e775a39889170b9f1b0b1efc2a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-operator-rhel8@sha256:f692c54c87fc6f5e8a3211775b78c3082468e5e775a39889170b9f1b0b1efc2a?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8&tag=v4.14.0-202311021650.p0.g73ddf3e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:65fbc660587774fb9be07f684913f7580e918b09836af324d0b778f79fd1ae03_s390x", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:65fbc660587774fb9be07f684913f7580e918b09836af324d0b778f79fd1ae03_s390x", + "product_id": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:65fbc660587774fb9be07f684913f7580e918b09836af324d0b778f79fd1ae03_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-webhook-rhel8@sha256:65fbc660587774fb9be07f684913f7580e918b09836af324d0b778f79fd1ae03?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8&tag=v4.14.0-202311021650.p0.g740b442.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:6667e8fcac9cbf49514de0c06d462307e525888cf6ea632c1b26a9d1d1b46534_s390x", + "product": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:6667e8fcac9cbf49514de0c06d462307e525888cf6ea632c1b26a9d1d1b46534_s390x", + "product_id": "openshift4/ose-csi-external-resizer-rhel8@sha256:6667e8fcac9cbf49514de0c06d462307e525888cf6ea632c1b26a9d1d1b46534_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer-rhel8@sha256:6667e8fcac9cbf49514de0c06d462307e525888cf6ea632c1b26a9d1d1b46534?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8&tag=v4.14.0-202311021650.p0.g59a701a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer@sha256:6667e8fcac9cbf49514de0c06d462307e525888cf6ea632c1b26a9d1d1b46534_s390x", + "product": { + "name": "openshift4/ose-csi-external-resizer@sha256:6667e8fcac9cbf49514de0c06d462307e525888cf6ea632c1b26a9d1d1b46534_s390x", + "product_id": "openshift4/ose-csi-external-resizer@sha256:6667e8fcac9cbf49514de0c06d462307e525888cf6ea632c1b26a9d1d1b46534_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer@sha256:6667e8fcac9cbf49514de0c06d462307e525888cf6ea632c1b26a9d1d1b46534?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer&tag=v4.14.0-202311021650.p0.g59a701a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter@sha256:bb46854a38d1d8cdfe2a487928bb157bd33180637588bde32c28d796df4ea447_s390x", + "product": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:bb46854a38d1d8cdfe2a487928bb157bd33180637588bde32c28d796df4ea447_s390x", + "product_id": "openshift4/ose-csi-external-snapshotter@sha256:bb46854a38d1d8cdfe2a487928bb157bd33180637588bde32c28d796df4ea447_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter@sha256:bb46854a38d1d8cdfe2a487928bb157bd33180637588bde32c28d796df4ea447?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter&tag=v4.14.0-202311021650.p0.g0bf9276.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:bb46854a38d1d8cdfe2a487928bb157bd33180637588bde32c28d796df4ea447_s390x", + "product": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:bb46854a38d1d8cdfe2a487928bb157bd33180637588bde32c28d796df4ea447_s390x", + "product_id": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:bb46854a38d1d8cdfe2a487928bb157bd33180637588bde32c28d796df4ea447_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter-rhel8@sha256:bb46854a38d1d8cdfe2a487928bb157bd33180637588bde32c28d796df4ea447?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8&tag=v4.14.0-202311021650.p0.g0bf9276.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller@sha256:ce092427c9bd954478271a50a67fe154f39a0f2d07d53ed0e51e958b9ed7971c_s390x", + "product": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:ce092427c9bd954478271a50a67fe154f39a0f2d07d53ed0e51e958b9ed7971c_s390x", + "product_id": "openshift4/ose-csi-snapshot-controller@sha256:ce092427c9bd954478271a50a67fe154f39a0f2d07d53ed0e51e958b9ed7971c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller@sha256:ce092427c9bd954478271a50a67fe154f39a0f2d07d53ed0e51e958b9ed7971c?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller&tag=v4.14.0-202311021650.p0.g0bf9276.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:ce092427c9bd954478271a50a67fe154f39a0f2d07d53ed0e51e958b9ed7971c_s390x", + "product": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:ce092427c9bd954478271a50a67fe154f39a0f2d07d53ed0e51e958b9ed7971c_s390x", + "product_id": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:ce092427c9bd954478271a50a67fe154f39a0f2d07d53ed0e51e958b9ed7971c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller-rhel8@sha256:ce092427c9bd954478271a50a67fe154f39a0f2d07d53ed0e51e958b9ed7971c?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8&tag=v4.14.0-202311021650.p0.g0bf9276.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:163d49f79fe30ede56e7fe429a9b9748c277a4f9ec89aaaacdbaae693e128c99_s390x", + "product": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:163d49f79fe30ede56e7fe429a9b9748c277a4f9ec89aaaacdbaae693e128c99_s390x", + "product_id": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:163d49f79fe30ede56e7fe429a9b9748c277a4f9ec89aaaacdbaae693e128c99_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-validation-webhook-rhel8@sha256:163d49f79fe30ede56e7fe429a9b9748c277a4f9ec89aaaacdbaae693e128c99?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8&tag=v4.14.0-202311021650.p0.g0bf9276.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/egress-router-cni-rhel8@sha256:9249417e4903e5675b461ae62a8196f30de98fce309d7913f54b3361443b561f_s390x", + "product": { + "name": "openshift4/egress-router-cni-rhel8@sha256:9249417e4903e5675b461ae62a8196f30de98fce309d7913f54b3361443b561f_s390x", + "product_id": "openshift4/egress-router-cni-rhel8@sha256:9249417e4903e5675b461ae62a8196f30de98fce309d7913f54b3361443b561f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/egress-router-cni-rhel8@sha256:9249417e4903e5675b461ae62a8196f30de98fce309d7913f54b3361443b561f?arch=s390x&repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel8&tag=v4.14.0-202311021650.p0.gafffdd4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-etcd-rhel9@sha256:a08ee42bfef280558826f94ef5a9325d70dee08e77bf30fe75e5594c8c823abc_s390x", + "product": { + "name": "openshift4/ose-etcd-rhel9@sha256:a08ee42bfef280558826f94ef5a9325d70dee08e77bf30fe75e5594c8c823abc_s390x", + "product_id": "openshift4/ose-etcd-rhel9@sha256:a08ee42bfef280558826f94ef5a9325d70dee08e77bf30fe75e5594c8c823abc_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-etcd-rhel9@sha256:a08ee42bfef280558826f94ef5a9325d70dee08e77bf30fe75e5594c8c823abc?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9&tag=v4.14.0-202311011749.p0.gba21c5b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hypershift-rhel8@sha256:85624b5af827a0f5ef5971084593c7d949c90e2be3c62b26907354c7b6bbe58b_s390x", + "product": { + "name": "openshift4/ose-hypershift-rhel8@sha256:85624b5af827a0f5ef5971084593c7d949c90e2be3c62b26907354c7b6bbe58b_s390x", + "product_id": "openshift4/ose-hypershift-rhel8@sha256:85624b5af827a0f5ef5971084593c7d949c90e2be3c62b26907354c7b6bbe58b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-hypershift-rhel8@sha256:85624b5af827a0f5ef5971084593c7d949c90e2be3c62b26907354c7b6bbe58b?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel8&tag=v4.14.0-202311072010.p0.gf1acb05.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:31f4f65f43d79661c5d678bc65c3278cdb46090f5ff188bd13721ae7ebb293e4_s390x", + "product": { + "name": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:31f4f65f43d79661c5d678bc65c3278cdb46090f5ff188bd13721ae7ebb293e4_s390x", + "product_id": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:31f4f65f43d79661c5d678bc65c3278cdb46090f5ff188bd13721ae7ebb293e4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:31f4f65f43d79661c5d678bc65c3278cdb46090f5ff188bd13721ae7ebb293e4?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8&tag=v4.14.0-202311021650.p0.ga7e5c6a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:89789441c2f7f176205813d344bb2c949e9dfe024b8c11ff1108f2db49ef74b8_s390x", + "product": { + "name": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:89789441c2f7f176205813d344bb2c949e9dfe024b8c11ff1108f2db49ef74b8_s390x", + "product_id": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:89789441c2f7f176205813d344bb2c949e9dfe024b8c11ff1108f2db49ef74b8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-cloud-controller-manager-rhel8@sha256:89789441c2f7f176205813d344bb2c949e9dfe024b8c11ff1108f2db49ef74b8?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.gea5a37b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:9a3e467e21b2484cc8b4c71ea268a17853ef3285639d50b585adc2e465a004c8_s390x", + "product": { + "name": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:9a3e467e21b2484cc8b4c71ea268a17853ef3285639d50b585adc2e465a004c8_s390x", + "product_id": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:9a3e467e21b2484cc8b4c71ea268a17853ef3285639d50b585adc2e465a004c8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibmcloud-machine-controllers-rhel8@sha256:9a3e467e21b2484cc8b4c71ea268a17853ef3285639d50b585adc2e465a004c8?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8&tag=v4.14.0-202311021650.p0.gc28b223.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:e6321a29e175c86897014b4ed3fd2416e4fe34ad97bfa46756c01796a7bfed7d_s390x", + "product": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:e6321a29e175c86897014b4ed3fd2416e4fe34ad97bfa46756c01796a7bfed7d_s390x", + "product_id": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:e6321a29e175c86897014b4ed3fd2416e4fe34ad97bfa46756c01796a7bfed7d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel8@sha256:e6321a29e175c86897014b4ed3fd2416e4fe34ad97bfa46756c01796a7bfed7d?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.g02471d9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:6949ddff5fcf482fcb040bb6960fcafd5ff259aa0b9a7ef11537038cbc96e6f8_s390x", + "product": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:6949ddff5fcf482fcb040bb6960fcafd5ff259aa0b9a7ef11537038cbc96e6f8_s390x", + "product_id": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:6949ddff5fcf482fcb040bb6960fcafd5ff259aa0b9a7ef11537038cbc96e6f8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:6949ddff5fcf482fcb040bb6960fcafd5ff259aa0b9a7ef11537038cbc96e6f8?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8&tag=v4.14.0-202311021650.p0.gfaf68ed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-insights-rhel8-operator@sha256:5dac532f2df3f391be76f2ae0fba5e3c19ed0e0debfc031cff5f9747ddb2e251_s390x", + "product": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:5dac532f2df3f391be76f2ae0fba5e3c19ed0e0debfc031cff5f9747ddb2e251_s390x", + "product_id": "openshift4/ose-insights-rhel8-operator@sha256:5dac532f2df3f391be76f2ae0fba5e3c19ed0e0debfc031cff5f9747ddb2e251_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-insights-rhel8-operator@sha256:5dac532f2df3f391be76f2ae0fba5e3c19ed0e0debfc031cff5f9747ddb2e251?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-insights-rhel8-operator&tag=v4.14.0-202311021650.p0.ge0f175b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer-artifacts@sha256:8fb0b3359284fb55d427ec98ff1dd035d572c04513636ad46705b039b792b5e2_s390x", + "product": { + "name": "openshift4/ose-installer-artifacts@sha256:8fb0b3359284fb55d427ec98ff1dd035d572c04513636ad46705b039b792b5e2_s390x", + "product_id": "openshift4/ose-installer-artifacts@sha256:8fb0b3359284fb55d427ec98ff1dd035d572c04513636ad46705b039b792b5e2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer-artifacts@sha256:8fb0b3359284fb55d427ec98ff1dd035d572c04513636ad46705b039b792b5e2?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-installer-artifacts&tag=v4.14.0-202311040828.p0.gc0f108b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer@sha256:fc2c9209767d19f3e19fe34bea88a75f4c076b210549b59faa28759947eb4921_s390x", + "product": { + "name": "openshift4/ose-installer@sha256:fc2c9209767d19f3e19fe34bea88a75f4c076b210549b59faa28759947eb4921_s390x", + "product_id": "openshift4/ose-installer@sha256:fc2c9209767d19f3e19fe34bea88a75f4c076b210549b59faa28759947eb4921_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer@sha256:fc2c9209767d19f3e19fe34bea88a75f4c076b210549b59faa28759947eb4921?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-installer&tag=v4.14.0-202311040828.p0.gc0f108b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:219bcf8b1f7c711c01af84e4e039766f0d1a9ad56462e84ff39aa686ee6ca6bc_s390x", + "product": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:219bcf8b1f7c711c01af84e4e039766f0d1a9ad56462e84ff39aa686ee6ca6bc_s390x", + "product_id": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:219bcf8b1f7c711c01af84e4e039766f0d1a9ad56462e84ff39aa686ee6ca6bc_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-storage-version-migrator-rhel8@sha256:219bcf8b1f7c711c01af84e4e039766f0d1a9ad56462e84ff39aa686ee6ca6bc?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8&tag=v4.14.0-202311021650.p0.g8558e14.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:8bd35a6883ca9d8fdf27932c0cc724666a288706711a4e42c9c8bcb323697c4d_s390x", + "product": { + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:8bd35a6883ca9d8fdf27932c0cc724666a288706711a4e42c9c8bcb323697c4d_s390x", + "product_id": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:8bd35a6883ca9d8fdf27932c0cc724666a288706711a4e42c9c8bcb323697c4d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel8@sha256:8bd35a6883ca9d8fdf27932c0cc724666a288706711a4e42c9c8bcb323697c4d?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.g62ca8ad.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:3a610bb24c321d85193ef685469dd3c4775eac2706238191d423d7aa7e0482eb_s390x", + "product": { + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:3a610bb24c321d85193ef685469dd3c4775eac2706238191d423d7aa7e0482eb_s390x", + "product_id": "openshift4/kubevirt-csi-driver-rhel8@sha256:3a610bb24c321d85193ef685469dd3c4775eac2706238191d423d7aa7e0482eb_s390x", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-csi-driver-rhel8@sha256:3a610bb24c321d85193ef685469dd3c4775eac2706238191d423d7aa7e0482eb?arch=s390x&repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.g831ff3e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-libvirt-machine-controllers@sha256:f3595e63a3c3838e637c33d005e4da2a5d7c60dbcfe6529074b784407288e0ba_s390x", + "product": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:f3595e63a3c3838e637c33d005e4da2a5d7c60dbcfe6529074b784407288e0ba_s390x", + "product_id": "openshift4/ose-libvirt-machine-controllers@sha256:f3595e63a3c3838e637c33d005e4da2a5d7c60dbcfe6529074b784407288e0ba_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-libvirt-machine-controllers@sha256:f3595e63a3c3838e637c33d005e4da2a5d7c60dbcfe6529074b784407288e0ba?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers&tag=v4.14.0-202311021650.p0.g34dfccb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-operator@sha256:394b3ae29f2e6efa670d17d59a514f542296b153955d4050cf82e7d7b5fd5367_s390x", + "product": { + "name": "openshift4/ose-machine-api-operator@sha256:394b3ae29f2e6efa670d17d59a514f542296b153955d4050cf82e7d7b5fd5367_s390x", + "product_id": "openshift4/ose-machine-api-operator@sha256:394b3ae29f2e6efa670d17d59a514f542296b153955d4050cf82e7d7b5fd5367_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-operator@sha256:394b3ae29f2e6efa670d17d59a514f542296b153955d4050cf82e7d7b5fd5367?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-machine-api-operator&tag=v4.14.0-202311021650.p0.g525f8e5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:587ca7a55dcbb4d9ac3b3fe4665430ded6f77f97e4287728195fc0c195a9a878_s390x", + "product": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:587ca7a55dcbb4d9ac3b3fe4665430ded6f77f97e4287728195fc0c195a9a878_s390x", + "product_id": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:587ca7a55dcbb4d9ac3b3fe4665430ded6f77f97e4287728195fc0c195a9a878_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-openstack-rhel8@sha256:587ca7a55dcbb4d9ac3b3fe4665430ded6f77f97e4287728195fc0c195a9a878?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8&tag=v4.14.0-202311021650.p0.g47ad284.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-config-operator@sha256:684d8cae61c32c141ea526b843342260ce05f3d6852714ff3f9054a60fd98201_s390x", + "product": { + "name": "openshift4/ose-machine-config-operator@sha256:684d8cae61c32c141ea526b843342260ce05f3d6852714ff3f9054a60fd98201_s390x", + "product_id": "openshift4/ose-machine-config-operator@sha256:684d8cae61c32c141ea526b843342260ce05f3d6852714ff3f9054a60fd98201_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-config-operator@sha256:684d8cae61c32c141ea526b843342260ce05f3d6852714ff3f9054a60fd98201?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-machine-config-operator&tag=v4.14.0-202311070105.p0.gf57144e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-admission-controller@sha256:ab8f39b660364c79990d3e666b37f5800c34d49be69c266e91120de448d76674_s390x", + "product": { + "name": "openshift4/ose-multus-admission-controller@sha256:ab8f39b660364c79990d3e666b37f5800c34d49be69c266e91120de448d76674_s390x", + "product_id": "openshift4/ose-multus-admission-controller@sha256:ab8f39b660364c79990d3e666b37f5800c34d49be69c266e91120de448d76674_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-admission-controller@sha256:ab8f39b660364c79990d3e666b37f5800c34d49be69c266e91120de448d76674?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller&tag=v4.14.0-202311021650.p0.g5e74b0f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:5d1bdf6977b4d9b06bc630862f04d1573c32a1b4aab200cea76417436eca0d40_s390x", + "product": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:5d1bdf6977b4d9b06bc630862f04d1573c32a1b4aab200cea76417436eca0d40_s390x", + "product_id": "openshift4/ose-multus-networkpolicy-rhel8@sha256:5d1bdf6977b4d9b06bc630862f04d1573c32a1b4aab200cea76417436eca0d40_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-networkpolicy-rhel8@sha256:5d1bdf6977b4d9b06bc630862f04d1573c32a1b4aab200cea76417436eca0d40?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8&tag=v4.14.0-202311021650.p0.g0d76ba7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:1fce85c04616391ce416e6f52ae6343fd28449ac96bb08a73932e9a14b2f507c_s390x", + "product": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:1fce85c04616391ce416e6f52ae6343fd28449ac96bb08a73932e9a14b2f507c_s390x", + "product_id": "openshift4/ose-multus-route-override-cni-rhel8@sha256:1fce85c04616391ce416e6f52ae6343fd28449ac96bb08a73932e9a14b2f507c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-route-override-cni-rhel8@sha256:1fce85c04616391ce416e6f52ae6343fd28449ac96bb08a73932e9a14b2f507c?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8&tag=v4.14.0-202311021650.p0.g078aee5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:04ae36738e54eea826a195785023bd62584cd73c57e7cf8582f14f4cee211c7e_s390x", + "product": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:04ae36738e54eea826a195785023bd62584cd73c57e7cf8582f14f4cee211c7e_s390x", + "product_id": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:04ae36738e54eea826a195785023bd62584cd73c57e7cf8582f14f4cee211c7e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel8@sha256:04ae36738e54eea826a195785023bd62584cd73c57e7cf8582f14f4cee211c7e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8&tag=v4.14.0-202311021650.p0.g7e45436.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-must-gather@sha256:82239eb071f3215d5241545a510d95b1284666aca0610cb550fa494d620a91db_s390x", + "product": { + "name": "openshift4/ose-must-gather@sha256:82239eb071f3215d5241545a510d95b1284666aca0610cb550fa494d620a91db_s390x", + "product_id": "openshift4/ose-must-gather@sha256:82239eb071f3215d5241545a510d95b1284666aca0610cb550fa494d620a91db_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-must-gather@sha256:82239eb071f3215d5241545a510d95b1284666aca0610cb550fa494d620a91db?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-must-gather&tag=v4.14.0-202311021650.p0.g833e1de.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:212d41b0fe5118d5f1c7c30e8a4016fcb2cf8473935c7b1e7cdd96b9fb39e89e_s390x", + "product": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:212d41b0fe5118d5f1c7c30e8a4016fcb2cf8473935c7b1e7cdd96b9fb39e89e_s390x", + "product_id": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:212d41b0fe5118d5f1c7c30e8a4016fcb2cf8473935c7b1e7cdd96b9fb39e89e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-interface-bond-cni-rhel8@sha256:212d41b0fe5118d5f1c7c30e8a4016fcb2cf8473935c7b1e7cdd96b9fb39e89e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8&tag=v4.14.0-202311021650.p0.g29f61f6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:0ad1d9feb1c5c9eb26d49fa2c2be59518b7d8ad7d6eaf31a43302f67bcf4c9bd_s390x", + "product": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:0ad1d9feb1c5c9eb26d49fa2c2be59518b7d8ad7d6eaf31a43302f67bcf4c9bd_s390x", + "product_id": "openshift4/ose-network-metrics-daemon-rhel8@sha256:0ad1d9feb1c5c9eb26d49fa2c2be59518b7d8ad7d6eaf31a43302f67bcf4c9bd_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-metrics-daemon-rhel8@sha256:0ad1d9feb1c5c9eb26d49fa2c2be59518b7d8ad7d6eaf31a43302f67bcf4c9bd?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8&tag=v4.14.0-202311021650.p0.g5fd1f2d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/network-tools-rhel8@sha256:79964d3ba7032b35274eca07195b49c155730e6e590793433b3b2eb040c78006_s390x", + "product": { + "name": "openshift4/network-tools-rhel8@sha256:79964d3ba7032b35274eca07195b49c155730e6e590793433b3b2eb040c78006_s390x", + "product_id": "openshift4/network-tools-rhel8@sha256:79964d3ba7032b35274eca07195b49c155730e6e590793433b3b2eb040c78006_s390x", + "product_identification_helper": { + "purl": "pkg:oci/network-tools-rhel8@sha256:79964d3ba7032b35274eca07195b49c155730e6e590793433b3b2eb040c78006?arch=s390x&repository_url=registry.redhat.io/openshift4/network-tools-rhel8&tag=v4.14.0-202311031050.p0.ga1dc6af.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sdn-rhel8@sha256:635fbdae6255ec7b873593fa39dd93274e2de5589219f726a5921aca28371ae8_s390x", + "product": { + "name": "openshift4/ose-sdn-rhel8@sha256:635fbdae6255ec7b873593fa39dd93274e2de5589219f726a5921aca28371ae8_s390x", + "product_id": "openshift4/ose-sdn-rhel8@sha256:635fbdae6255ec7b873593fa39dd93274e2de5589219f726a5921aca28371ae8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-sdn-rhel8@sha256:635fbdae6255ec7b873593fa39dd93274e2de5589219f726a5921aca28371ae8?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-sdn-rhel8&tag=v4.14.0-202311021650.p0.g128c28c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:4a00ea2a8734b1aa917b3b63da79ddb2fa8ef043ebe2cacb2d1d6454e18c5e70_s390x", + "product": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:4a00ea2a8734b1aa917b3b63da79ddb2fa8ef043ebe2cacb2d1d6454e18c5e70_s390x", + "product_id": "openshift4/ose-oauth-apiserver-rhel8@sha256:4a00ea2a8734b1aa917b3b63da79ddb2fa8ef043ebe2cacb2d1d6454e18c5e70_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-apiserver-rhel8@sha256:4a00ea2a8734b1aa917b3b63da79ddb2fa8ef043ebe2cacb2d1d6454e18c5e70?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8&tag=v4.14.0-202311021650.p0.ga18cb3e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-olm-catalogd-rhel8@sha256:ea8bdcfe35fb056e7d6265ebbd14a3e6b36fef7117abc065386e0607cc9fcd14_s390x", + "product": { + "name": "openshift4/ose-olm-catalogd-rhel8@sha256:ea8bdcfe35fb056e7d6265ebbd14a3e6b36fef7117abc065386e0607cc9fcd14_s390x", + "product_id": "openshift4/ose-olm-catalogd-rhel8@sha256:ea8bdcfe35fb056e7d6265ebbd14a3e6b36fef7117abc065386e0607cc9fcd14_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-olm-catalogd-rhel8@sha256:ea8bdcfe35fb056e7d6265ebbd14a3e6b36fef7117abc065386e0607cc9fcd14?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel8&tag=v4.14.0-202311021650.p0.gaa44c02.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-olm-operator-controller-rhel8@sha256:90292249212d2e3ea4a91cfd07743ceb1a19c263a5d54918d9bd324b8c0c7ff4_s390x", + "product": { + "name": "openshift4/ose-olm-operator-controller-rhel8@sha256:90292249212d2e3ea4a91cfd07743ceb1a19c263a5d54918d9bd324b8c0c7ff4_s390x", + "product_id": "openshift4/ose-olm-operator-controller-rhel8@sha256:90292249212d2e3ea4a91cfd07743ceb1a19c263a5d54918d9bd324b8c0c7ff4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-olm-operator-controller-rhel8@sha256:90292249212d2e3ea4a91cfd07743ceb1a19c263a5d54918d9bd324b8c0c7ff4?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8&tag=v4.14.0-202311021650.p0.g1734329.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:9f41dace212c50437a056e7d94aadcd33c497f294f229563bf63c0149ab74316_s390x", + "product": { + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:9f41dace212c50437a056e7d94aadcd33c497f294f229563bf63c0149ab74316_s390x", + "product_id": "openshift4/ose-olm-rukpak-rhel8@sha256:9f41dace212c50437a056e7d94aadcd33c497f294f229563bf63c0149ab74316_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-olm-rukpak-rhel8@sha256:9f41dace212c50437a056e7d94aadcd33c497f294f229563bf63c0149ab74316?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-olm-rukpak-rhel8&tag=v4.14.0-202311021650.p0.gdaa5073.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:b7c44f2e2856baeee6e1ba17327f52e6530c3ab7e354c710df2dd36b2a7852a5_s390x", + "product": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:b7c44f2e2856baeee6e1ba17327f52e6530c3ab7e354c710df2dd36b2a7852a5_s390x", + "product_id": "openshift4/ose-openshift-apiserver-rhel8@sha256:b7c44f2e2856baeee6e1ba17327f52e6530c3ab7e354c710df2dd36b2a7852a5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-apiserver-rhel8@sha256:b7c44f2e2856baeee6e1ba17327f52e6530c3ab7e354c710df2dd36b2a7852a5?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8&tag=v4.14.0-202311021650.p0.g064c2d0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:c396fe90b9e031a41cfb7c7f8bfadc49f21e32a0f2a79113cf0048e392024d21_s390x", + "product": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:c396fe90b9e031a41cfb7c7f8bfadc49f21e32a0f2a79113cf0048e392024d21_s390x", + "product_id": "openshift4/ose-openshift-controller-manager-rhel8@sha256:c396fe90b9e031a41cfb7c7f8bfadc49f21e32a0f2a79113cf0048e392024d21_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-controller-manager-rhel8@sha256:c396fe90b9e031a41cfb7c7f8bfadc49f21e32a0f2a79113cf0048e392024d21?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.g69bd018.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:ad6aa19e94e248df631b60ae1ca3e5f0bac7aa757c9ba7747359fc06f7701d9a_s390x", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:ad6aa19e94e248df631b60ae1ca3e5f0bac7aa757c9ba7747359fc06f7701d9a_s390x", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:ad6aa19e94e248df631b60ae1ca3e5f0bac7aa757c9ba7747359fc06f7701d9a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8@sha256:ad6aa19e94e248df631b60ae1ca3e5f0bac7aa757c9ba7747359fc06f7701d9a?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.gecd00b5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8df6040633c5fc3f9cbefe36521ed343aebd8b381b66b90e32979a5774ed69e3_s390x", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8df6040633c5fc3f9cbefe36521ed343aebd8b381b66b90e32979a5774ed69e3_s390x", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8df6040633c5fc3f9cbefe36521ed343aebd8b381b66b90e32979a5774ed69e3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8df6040633c5fc3f9cbefe36521ed343aebd8b381b66b90e32979a5774ed69e3?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator&tag=v4.14.0-202311021650.p0.gdcf0e7d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:889d1bdbbb797cc3b25965b0a8a99d7a6dcb595a58c74f238f69a1c58fe92980_s390x", + "product": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:889d1bdbbb797cc3b25965b0a8a99d7a6dcb595a58c74f238f69a1c58fe92980_s390x", + "product_id": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:889d1bdbbb797cc3b25965b0a8a99d7a6dcb595a58c74f238f69a1c58fe92980_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel8@sha256:889d1bdbbb797cc3b25965b0a8a99d7a6dcb595a58c74f238f69a1c58fe92980?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.gecd00b5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:19372d4285403000a9cf62a0540910c512b5a77f8fcda3daca7f7abe7bb4068d_s390x", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:19372d4285403000a9cf62a0540910c512b5a77f8fcda3daca7f7abe7bb4068d_s390x", + "product_id": "openshift4/ovirt-csi-driver-rhel8@sha256:19372d4285403000a9cf62a0540910c512b5a77f8fcda3daca7f7abe7bb4068d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8@sha256:19372d4285403000a9cf62a0540910c512b5a77f8fcda3daca7f7abe7bb4068d?arch=s390x&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.gf21b470.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:19372d4285403000a9cf62a0540910c512b5a77f8fcda3daca7f7abe7bb4068d_s390x", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:19372d4285403000a9cf62a0540910c512b5a77f8fcda3daca7f7abe7bb4068d_s390x", + "product_id": "openshift4/ovirt-csi-driver-rhel7@sha256:19372d4285403000a9cf62a0540910c512b5a77f8fcda3daca7f7abe7bb4068d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel7@sha256:19372d4285403000a9cf62a0540910c512b5a77f8fcda3daca7f7abe7bb4068d?arch=s390x&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel7&tag=v4.14.0-202311021650.p0.gf21b470.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:7998978dc4ab0fd2d1bb94f5f9a34ac54d6a2ab3f4680dfa40c66b9f2b3af3db_s390x", + "product": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:7998978dc4ab0fd2d1bb94f5f9a34ac54d6a2ab3f4680dfa40c66b9f2b3af3db_s390x", + "product_id": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:7998978dc4ab0fd2d1bb94f5f9a34ac54d6a2ab3f4680dfa40c66b9f2b3af3db_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovirt-machine-controllers-rhel8@sha256:7998978dc4ab0fd2d1bb94f5f9a34ac54d6a2ab3f4680dfa40c66b9f2b3af3db?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8&tag=v4.14.0-202311021650.p0.g5d70863.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes@sha256:15241772f305f729414f6e29f25fcc79024d4118f5167619dc12ea6ac61a7f15_s390x", + "product": { + "name": "openshift4/ose-ovn-kubernetes@sha256:15241772f305f729414f6e29f25fcc79024d4118f5167619dc12ea6ac61a7f15_s390x", + "product_id": "openshift4/ose-ovn-kubernetes@sha256:15241772f305f729414f6e29f25fcc79024d4118f5167619dc12ea6ac61a7f15_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes@sha256:15241772f305f729414f6e29f25fcc79024d4118f5167619dc12ea6ac61a7f15?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes&tag=v4.14.0-202311031050.p0.g7a23238.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:cb54dbcc43d5874beb7ad3c176690abbe97b8da5f6b7cedd0611a672031530bb_s390x", + "product": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:cb54dbcc43d5874beb7ad3c176690abbe97b8da5f6b7cedd0611a672031530bb_s390x", + "product_id": "openshift4/ose-k8s-prometheus-adapter@sha256:cb54dbcc43d5874beb7ad3c176690abbe97b8da5f6b7cedd0611a672031530bb_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-k8s-prometheus-adapter@sha256:cb54dbcc43d5874beb7ad3c176690abbe97b8da5f6b7cedd0611a672031530bb?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter&tag=v4.14.0-202311021650.p0.g428bb46.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:2d16043315d333d0fb07013a725e119d89028aa4a366326ceae92b56b644b699_s390x", + "product": { + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:2d16043315d333d0fb07013a725e119d89028aa4a366326ceae92b56b644b699_s390x", + "product_id": "openshift4/openshift-route-controller-manager-rhel8@sha256:2d16043315d333d0fb07013a725e119d89028aa4a366326ceae92b56b644b699_s390x", + "product_identification_helper": { + "purl": "pkg:oci/openshift-route-controller-manager-rhel8@sha256:2d16043315d333d0fb07013a725e119d89028aa4a366326ceae92b56b644b699?arch=s390x&repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.g1a5e72f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-service-ca-operator@sha256:e7db74b33067c574dcf89c8458913ad2a8236c164c6bae54c345efdb42a61883_s390x", + "product": { + "name": "openshift4/ose-service-ca-operator@sha256:e7db74b33067c574dcf89c8458913ad2a8236c164c6bae54c345efdb42a61883_s390x", + "product_id": "openshift4/ose-service-ca-operator@sha256:e7db74b33067c574dcf89c8458913ad2a8236c164c6bae54c345efdb42a61883_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-service-ca-operator@sha256:e7db74b33067c574dcf89c8458913ad2a8236c164c6bae54c345efdb42a61883?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-service-ca-operator&tag=v4.14.0-202311021650.p0.g030a429.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-thanos-rhel8@sha256:e0545acb03f084d009d568efeb5f31bdac8aa39ad44013177758a307633d36b6_s390x", + "product": { + "name": "openshift4/ose-thanos-rhel8@sha256:e0545acb03f084d009d568efeb5f31bdac8aa39ad44013177758a307633d36b6_s390x", + "product_id": "openshift4/ose-thanos-rhel8@sha256:e0545acb03f084d009d568efeb5f31bdac8aa39ad44013177758a307633d36b6_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-thanos-rhel8@sha256:e0545acb03f084d009d568efeb5f31bdac8aa39ad44013177758a307633d36b6?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-thanos-rhel8&tag=v4.14.0-202311021650.p0.g175a630.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tools-rhel8@sha256:bf050429922e22d23448436c07122171cf52faddd6b2ba91a7baa74bf4733b98_s390x", + "product": { + "name": "openshift4/ose-tools-rhel8@sha256:bf050429922e22d23448436c07122171cf52faddd6b2ba91a7baa74bf4733b98_s390x", + "product_id": "openshift4/ose-tools-rhel8@sha256:bf050429922e22d23448436c07122171cf52faddd6b2ba91a7baa74bf4733b98_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-tools-rhel8@sha256:bf050429922e22d23448436c07122171cf52faddd6b2ba91a7baa74bf4733b98?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-tools-rhel8&tag=v4.14.0-202311021650.p0.g9b1e0d2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:72684264d513a3d049319ffae4e3a3cf3bc28265bdd087a5f070102d2e40a457_s390x", + "product": { + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:72684264d513a3d049319ffae4e3a3cf3bc28265bdd087a5f070102d2e40a457_s390x", + "product_id": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:72684264d513a3d049319ffae4e3a3cf3bc28265bdd087a5f070102d2e40a457_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256:72684264d513a3d049319ffae4e3a3cf3bc28265bdd087a5f070102d2e40a457?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9&tag=v4.14.0-202310250645.p0.g7a23238.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-config-reloader@sha256:f7ae68e6d4ee0be44e3a9b0af3954bfd431dfb90cffb92f9dca33c578e4ec090_s390x", + "product": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:f7ae68e6d4ee0be44e3a9b0af3954bfd431dfb90cffb92f9dca33c578e4ec090_s390x", + "product_id": "openshift4/ose-prometheus-config-reloader@sha256:f7ae68e6d4ee0be44e3a9b0af3954bfd431dfb90cffb92f9dca33c578e4ec090_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-config-reloader@sha256:f7ae68e6d4ee0be44e3a9b0af3954bfd431dfb90cffb92f9dca33c578e4ec090?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader&tag=v4.14.0-202311061949.p0.g73729ed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:29ac1cae07354973773737bef59d6b8bdcc93b8e1cdf0d68009e96a05fb1e019_s390x", + "product": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:29ac1cae07354973773737bef59d6b8bdcc93b8e1cdf0d68009e96a05fb1e019_s390x", + "product_id": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:29ac1cae07354973773737bef59d6b8bdcc93b8e1cdf0d68009e96a05fb1e019_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel8@sha256:29ac1cae07354973773737bef59d6b8bdcc93b8e1cdf0d68009e96a05fb1e019?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8&tag=v4.14.0-202311061949.p0.g73729ed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator@sha256:6a83222175b6d5d18954087c50cca29bc1645186146b828ccb8f61aecd3d2b94_s390x", + "product": { + "name": "openshift4/ose-prometheus-operator@sha256:6a83222175b6d5d18954087c50cca29bc1645186146b828ccb8f61aecd3d2b94_s390x", + "product_id": "openshift4/ose-prometheus-operator@sha256:6a83222175b6d5d18954087c50cca29bc1645186146b828ccb8f61aecd3d2b94_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator@sha256:6a83222175b6d5d18954087c50cca29bc1645186146b828ccb8f61aecd3d2b94?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator&tag=v4.14.0-202311061949.p0.g73729ed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prom-label-proxy@sha256:92c75d4e7d346b496e2d1517858deba7b27aa9b0bb3c55b2e27f88a247f53111_s390x", + "product": { + "name": "openshift4/ose-prom-label-proxy@sha256:92c75d4e7d346b496e2d1517858deba7b27aa9b0bb3c55b2e27f88a247f53111_s390x", + "product_id": "openshift4/ose-prom-label-proxy@sha256:92c75d4e7d346b496e2d1517858deba7b27aa9b0bb3c55b2e27f88a247f53111_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prom-label-proxy@sha256:92c75d4e7d346b496e2d1517858deba7b27aa9b0bb3c55b2e27f88a247f53111?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy&tag=v4.14.0-202311021650.p0.gaf40ed0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-telemeter@sha256:e4065a257b39f7067b631aa413ff3b8dfd075bb58424ca23f1a3330eba5bdf71_s390x", + "product": { + "name": "openshift4/ose-telemeter@sha256:e4065a257b39f7067b631aa413ff3b8dfd075bb58424ca23f1a3330eba5bdf71_s390x", + "product_id": "openshift4/ose-telemeter@sha256:e4065a257b39f7067b631aa413ff3b8dfd075bb58424ca23f1a3330eba5bdf71_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-telemeter@sha256:e4065a257b39f7067b631aa413ff3b8dfd075bb58424ca23f1a3330eba5bdf71?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-telemeter&tag=v4.14.0-202311021650.p0.gc8b876a.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler@sha256:28e7387625dda9bc870f93b4ec55ac00e8c2a4bcd9709890a8ed4e5a2a62202c_ppc64le", + "product": { + "name": "openshift4/ose-cluster-autoscaler@sha256:28e7387625dda9bc870f93b4ec55ac00e8c2a4bcd9709890a8ed4e5a2a62202c_ppc64le", + "product_id": "openshift4/ose-cluster-autoscaler@sha256:28e7387625dda9bc870f93b4ec55ac00e8c2a4bcd9709890a8ed4e5a2a62202c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler@sha256:28e7387625dda9bc870f93b4ec55ac00e8c2a4bcd9709890a8ed4e5a2a62202c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler&tag=v4.14.0-202311021650.p0.g0822c7b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-machine-controllers@sha256:eed0396001ad3daf71bad03831af0fbbbb29e29fa41f35c617b0837e85213699_ppc64le", + "product": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:eed0396001ad3daf71bad03831af0fbbbb29e29fa41f35c617b0837e85213699_ppc64le", + "product_id": "openshift4/ose-baremetal-machine-controllers@sha256:eed0396001ad3daf71bad03831af0fbbbb29e29fa41f35c617b0837e85213699_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-machine-controllers@sha256:eed0396001ad3daf71bad03831af0fbbbb29e29fa41f35c617b0837e85213699?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers&tag=v4.14.0-202311021650.p0.g412acb3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:9e6202f41a928101f291e6defbc722aed841d81cd95cd36bff8cf486ba217ede_ppc64le", + "product": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:9e6202f41a928101f291e6defbc722aed841d81cd95cd36bff8cf486ba217ede_ppc64le", + "product_id": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:9e6202f41a928101f291e6defbc722aed841d81cd95cd36bff8cf486ba217ede_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-etcd-rhel8-operator@sha256:9e6202f41a928101f291e6defbc722aed841d81cd95cd36bff8cf486ba217ede?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator&tag=v4.14.0-202311021650.p0.g578c952.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-monitoring-operator@sha256:b98c0be1d6fe084bc6e2d8f28592701d61335ad55079788114651faa44a154d2_ppc64le", + "product": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:b98c0be1d6fe084bc6e2d8f28592701d61335ad55079788114651faa44a154d2_ppc64le", + "product_id": "openshift4/ose-cluster-monitoring-operator@sha256:b98c0be1d6fe084bc6e2d8f28592701d61335ad55079788114651faa44a154d2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-monitoring-operator@sha256:b98c0be1d6fe084bc6e2d8f28592701d61335ad55079788114651faa44a154d2?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-operator&tag=v4.14.0-202311021650.p0.gab06fd3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-network-operator@sha256:e237d42730688ab0067ee1fbcfa2c408bed1051eb5a6f784cd497edc9d0eff77_ppc64le", + "product": { + "name": "openshift4/ose-cluster-network-operator@sha256:e237d42730688ab0067ee1fbcfa2c408bed1051eb5a6f784cd497edc9d0eff77_ppc64le", + "product_id": "openshift4/ose-cluster-network-operator@sha256:e237d42730688ab0067ee1fbcfa2c408bed1051eb5a6f784cd497edc9d0eff77_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-network-operator@sha256:e237d42730688ab0067ee1fbcfa2c408bed1051eb5a6f784cd497edc9d0eff77?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-network-operator&tag=v4.14.0-202311031807.p0.g1504d2a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:2e55f9d38a54ad06b7538c42e56a83a7b7d5e4b8ecdb1fc031e0ac95125b94fa_ppc64le", + "product": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:2e55f9d38a54ad06b7538c42e56a83a7b7d5e4b8ecdb1fc031e0ac95125b94fa_ppc64le", + "product_id": "openshift4/ose-cluster-node-tuning-operator@sha256:2e55f9d38a54ad06b7538c42e56a83a7b7d5e4b8ecdb1fc031e0ac95125b94fa_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-node-tuning-operator@sha256:2e55f9d38a54ad06b7538c42e56a83a7b7d5e4b8ecdb1fc031e0ac95125b94fa?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-operator&tag=v4.14.0-202311020945.p0.g9669c58.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-version-operator@sha256:c5469ffc4c9062c690eb6ccfaec797381bbd92d697764ecea7762f856c26a8f5_ppc64le", + "product": { + "name": "openshift4/ose-cluster-version-operator@sha256:c5469ffc4c9062c690eb6ccfaec797381bbd92d697764ecea7762f856c26a8f5_ppc64le", + "product_id": "openshift4/ose-cluster-version-operator@sha256:c5469ffc4c9062c690eb6ccfaec797381bbd92d697764ecea7762f856c26a8f5_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-version-operator@sha256:c5469ffc4c9062c690eb6ccfaec797381bbd92d697764ecea7762f856c26a8f5?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-version-operator&tag=v4.14.0-202311021650.p0.g2a48f5e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-configmap-reloader@sha256:2318fae31b17006a669da9c4a7aea1208a789f7ddd3465f15555599f34667fa6_ppc64le", + "product": { + "name": "openshift4/ose-configmap-reloader@sha256:2318fae31b17006a669da9c4a7aea1208a789f7ddd3465f15555599f34667fa6_ppc64le", + "product_id": "openshift4/ose-configmap-reloader@sha256:2318fae31b17006a669da9c4a7aea1208a789f7ddd3465f15555599f34667fa6_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-configmap-reloader@sha256:2318fae31b17006a669da9c4a7aea1208a789f7ddd3465f15555599f34667fa6?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-configmap-reloader&tag=v4.14.0-202311021650.p0.g716a0c3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-coredns@sha256:9e5cbe6f45cf4e625f7d493343c081a63934a62bda3b3028945566966cc66dca_ppc64le", + "product": { + "name": "openshift4/ose-coredns@sha256:9e5cbe6f45cf4e625f7d493343c081a63934a62bda3b3028945566966cc66dca_ppc64le", + "product_id": "openshift4/ose-coredns@sha256:9e5cbe6f45cf4e625f7d493343c081a63934a62bda3b3028945566966cc66dca_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-coredns@sha256:9e5cbe6f45cf4e625f7d493343c081a63934a62bda3b3028945566966cc66dca?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-coredns&tag=v4.14.0-202311021650.p0.g8341fa7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:0ea8aab9536fd78a8eca9460f7fb7cddc4c2ae5508fbdaf4ff9ec2a77db153ed_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:0ea8aab9536fd78a8eca9460f7fb7cddc4c2ae5508fbdaf4ff9ec2a77db153ed_ppc64le", + "product_id": "openshift4/ose-csi-external-attacher-rhel8@sha256:0ea8aab9536fd78a8eca9460f7fb7cddc4c2ae5508fbdaf4ff9ec2a77db153ed_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher-rhel8@sha256:0ea8aab9536fd78a8eca9460f7fb7cddc4c2ae5508fbdaf4ff9ec2a77db153ed?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8&tag=v4.14.0-202311021650.p0.g06e8ce0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher@sha256:0ea8aab9536fd78a8eca9460f7fb7cddc4c2ae5508fbdaf4ff9ec2a77db153ed_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-attacher@sha256:0ea8aab9536fd78a8eca9460f7fb7cddc4c2ae5508fbdaf4ff9ec2a77db153ed_ppc64le", + "product_id": "openshift4/ose-csi-external-attacher@sha256:0ea8aab9536fd78a8eca9460f7fb7cddc4c2ae5508fbdaf4ff9ec2a77db153ed_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher@sha256:0ea8aab9536fd78a8eca9460f7fb7cddc4c2ae5508fbdaf4ff9ec2a77db153ed?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher&tag=v4.14.0-202311021650.p0.g06e8ce0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:f34a7c77610729f15842702cad3ec6143bcffaf6ff499309c8012fc3f06e7e77_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:f34a7c77610729f15842702cad3ec6143bcffaf6ff499309c8012fc3f06e7e77_ppc64le", + "product_id": "openshift4/ose-csi-driver-manila-rhel8@sha256:f34a7c77610729f15842702cad3ec6143bcffaf6ff499309c8012fc3f06e7e77_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-manila-rhel8@sha256:f34a7c77610729f15842702cad3ec6143bcffaf6ff499309c8012fc3f06e7e77?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8&tag=v4.14.0-202311021650.p0.gecd00b5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:7fc196b0745e2eaa599c8054a9d282a60ffc0454a6565a6ae0eee9e69e9707c9_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:7fc196b0745e2eaa599c8054a9d282a60ffc0454a6565a6ae0eee9e69e9707c9_ppc64le", + "product_id": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:7fc196b0745e2eaa599c8054a9d282a60ffc0454a6565a6ae0eee9e69e9707c9_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-manila-rhel8-operator@sha256:7fc196b0745e2eaa599c8054a9d282a60ffc0454a6565a6ae0eee9e69e9707c9?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator&tag=v4.14.0-202311021650.p0.gea34192.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-nfs-rhel8@sha256:14b289e90b0413ea4aa479c73c3ff7955756b42310e3ccad2d4b12156568f4fd_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-nfs-rhel8@sha256:14b289e90b0413ea4aa479c73c3ff7955756b42310e3ccad2d4b12156568f4fd_ppc64le", + "product_id": "openshift4/ose-csi-driver-nfs-rhel8@sha256:14b289e90b0413ea4aa479c73c3ff7955756b42310e3ccad2d4b12156568f4fd_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-nfs-rhel8@sha256:14b289e90b0413ea4aa479c73c3ff7955756b42310e3ccad2d4b12156568f4fd?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8&tag=v4.14.0-202311021650.p0.ge1dd453.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:1dd5f3ae658c876e550a3ceaac7b0428aa44520d751d0211a059f59d7304a3de_ppc64le", + "product": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:1dd5f3ae658c876e550a3ceaac7b0428aa44520d751d0211a059f59d7304a3de_ppc64le", + "product_id": "openshift4/ose-csi-livenessprobe-rhel8@sha256:1dd5f3ae658c876e550a3ceaac7b0428aa44520d751d0211a059f59d7304a3de_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe-rhel8@sha256:1dd5f3ae658c876e550a3ceaac7b0428aa44520d751d0211a059f59d7304a3de?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8&tag=v4.14.0-202311021650.p0.ga9bcbde.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe@sha256:1dd5f3ae658c876e550a3ceaac7b0428aa44520d751d0211a059f59d7304a3de_ppc64le", + "product": { + "name": "openshift4/ose-csi-livenessprobe@sha256:1dd5f3ae658c876e550a3ceaac7b0428aa44520d751d0211a059f59d7304a3de_ppc64le", + "product_id": "openshift4/ose-csi-livenessprobe@sha256:1dd5f3ae658c876e550a3ceaac7b0428aa44520d751d0211a059f59d7304a3de_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe@sha256:1dd5f3ae658c876e550a3ceaac7b0428aa44520d751d0211a059f59d7304a3de?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe&tag=v4.14.0-202311021650.p0.ga9bcbde.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar@sha256:8dc68d9251f181e5a80c4113de27a207cd5f70fa696b62780869bcd3bd865ff6_ppc64le", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:8dc68d9251f181e5a80c4113de27a207cd5f70fa696b62780869bcd3bd865ff6_ppc64le", + "product_id": "openshift4/ose-csi-node-driver-registrar@sha256:8dc68d9251f181e5a80c4113de27a207cd5f70fa696b62780869bcd3bd865ff6_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar@sha256:8dc68d9251f181e5a80c4113de27a207cd5f70fa696b62780869bcd3bd865ff6?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar&tag=v4.14.0-202311021650.p0.g9dcaa7f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:8dc68d9251f181e5a80c4113de27a207cd5f70fa696b62780869bcd3bd865ff6_ppc64le", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:8dc68d9251f181e5a80c4113de27a207cd5f70fa696b62780869bcd3bd865ff6_ppc64le", + "product_id": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:8dc68d9251f181e5a80c4113de27a207cd5f70fa696b62780869bcd3bd865ff6_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar-rhel8@sha256:8dc68d9251f181e5a80c4113de27a207cd5f70fa696b62780869bcd3bd865ff6?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8&tag=v4.14.0-202311021650.p0.g9dcaa7f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner@sha256:4da0dc3b1692a896d5a59a44ed151f11379996ecf8ea9480435eea9682507afb_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-provisioner@sha256:4da0dc3b1692a896d5a59a44ed151f11379996ecf8ea9480435eea9682507afb_ppc64le", + "product_id": "openshift4/ose-csi-external-provisioner@sha256:4da0dc3b1692a896d5a59a44ed151f11379996ecf8ea9480435eea9682507afb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner@sha256:4da0dc3b1692a896d5a59a44ed151f11379996ecf8ea9480435eea9682507afb?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner&tag=v4.14.0-202311021650.p0.g78a710f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:4da0dc3b1692a896d5a59a44ed151f11379996ecf8ea9480435eea9682507afb_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:4da0dc3b1692a896d5a59a44ed151f11379996ecf8ea9480435eea9682507afb_ppc64le", + "product_id": "openshift4/ose-csi-external-provisioner-rhel8@sha256:4da0dc3b1692a896d5a59a44ed151f11379996ecf8ea9480435eea9682507afb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner-rhel8@sha256:4da0dc3b1692a896d5a59a44ed151f11379996ecf8ea9480435eea9682507afb?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8&tag=v4.14.0-202311021650.p0.g78a710f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/driver-toolkit-rhel9@sha256:b6aee74e78a3f795103b2bf5db887e172e0c9621886147b31a57b3eb9c0d27f2_ppc64le", + "product": { + "name": "openshift4/driver-toolkit-rhel9@sha256:b6aee74e78a3f795103b2bf5db887e172e0c9621886147b31a57b3eb9c0d27f2_ppc64le", + "product_id": "openshift4/driver-toolkit-rhel9@sha256:b6aee74e78a3f795103b2bf5db887e172e0c9621886147b31a57b3eb9c0d27f2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/driver-toolkit-rhel9@sha256:b6aee74e78a3f795103b2bf5db887e172e0c9621886147b31a57b3eb9c0d27f2?arch=ppc64le&repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9&tag=v4.14.0-202311062032.p0.gcafed17.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-proxy@sha256:68d106c82e09c17fee89f7a41565796fa74fb9b81214bfc7f33da5b96ae96de8_ppc64le", + "product": { + "name": "openshift4/ose-oauth-proxy@sha256:68d106c82e09c17fee89f7a41565796fa74fb9b81214bfc7f33da5b96ae96de8_ppc64le", + "product_id": "openshift4/ose-oauth-proxy@sha256:68d106c82e09c17fee89f7a41565796fa74fb9b81214bfc7f33da5b96ae96de8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-proxy@sha256:68d106c82e09c17fee89f7a41565796fa74fb9b81214bfc7f33da5b96ae96de8?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-oauth-proxy&tag=v4.14.0-202311021650.p0.g55e0cd1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-alertmanager@sha256:52501be1cb7cdebca0ddd8a68556af6943589032c2469a72d634a48a2b52b3f3_ppc64le", + "product": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:52501be1cb7cdebca0ddd8a68556af6943589032c2469a72d634a48a2b52b3f3_ppc64le", + "product_id": "openshift4/ose-prometheus-alertmanager@sha256:52501be1cb7cdebca0ddd8a68556af6943589032c2469a72d634a48a2b52b3f3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-alertmanager@sha256:52501be1cb7cdebca0ddd8a68556af6943589032c2469a72d634a48a2b52b3f3?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager&tag=v4.14.0-202311021650.p0.ge372516.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-node-exporter@sha256:f29d1e8e9f68738ec1cc01913047e8fd727d75625eabfc517d69af446563b91f_ppc64le", + "product": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:f29d1e8e9f68738ec1cc01913047e8fd727d75625eabfc517d69af446563b91f_ppc64le", + "product_id": "openshift4/ose-prometheus-node-exporter@sha256:f29d1e8e9f68738ec1cc01913047e8fd727d75625eabfc517d69af446563b91f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-node-exporter@sha256:f29d1e8e9f68738ec1cc01913047e8fd727d75625eabfc517d69af446563b91f?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter&tag=v4.14.0-202311021650.p0.g5ee0a9d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus@sha256:d50a4373035df9c5c7ce46bf5212296ac0c8aa3dc847b9211ebcc05c78790f20_ppc64le", + "product": { + "name": "openshift4/ose-prometheus@sha256:d50a4373035df9c5c7ce46bf5212296ac0c8aa3dc847b9211ebcc05c78790f20_ppc64le", + "product_id": "openshift4/ose-prometheus@sha256:d50a4373035df9c5c7ce46bf5212296ac0c8aa3dc847b9211ebcc05c78790f20_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus@sha256:d50a4373035df9c5c7ce46bf5212296ac0c8aa3dc847b9211ebcc05c78790f20?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prometheus&tag=v4.14.0-202311021650.p0.gbcb475d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-proxy@sha256:83298106c728b3df96c6ad749dd3e64b8bf2cb2cab719cb1b7f80d22a8349b71_ppc64le", + "product": { + "name": "openshift4/ose-kube-proxy@sha256:83298106c728b3df96c6ad749dd3e64b8bf2cb2cab719cb1b7f80d22a8349b71_ppc64le", + "product_id": "openshift4/ose-kube-proxy@sha256:83298106c728b3df96c6ad749dd3e64b8bf2cb2cab719cb1b7f80d22a8349b71_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-proxy@sha256:83298106c728b3df96c6ad749dd3e64b8bf2cb2cab719cb1b7f80d22a8349b71?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kube-proxy&tag=v4.14.0-202311021650.p0.g128c28c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-rbac-proxy@sha256:a9c04bf904a518c41ac41e141daa9f700a16c433503c0006e6a5c1cc04be2f6e_ppc64le", + "product": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:a9c04bf904a518c41ac41e141daa9f700a16c433503c0006e6a5c1cc04be2f6e_ppc64le", + "product_id": "openshift4/ose-kube-rbac-proxy@sha256:a9c04bf904a518c41ac41e141daa9f700a16c433503c0006e6a5c1cc04be2f6e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-rbac-proxy@sha256:a9c04bf904a518c41ac41e141daa9f700a16c433503c0006e6a5c1cc04be2f6e?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy&tag=v4.14.0-202311021650.p0.g1a646b9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-state-metrics@sha256:16b6ed331d12382ab09a5a9f699e80350ce5350bfd631bac0cb9bc0813a3117c_ppc64le", + "product": { + "name": "openshift4/ose-kube-state-metrics@sha256:16b6ed331d12382ab09a5a9f699e80350ce5350bfd631bac0cb9bc0813a3117c_ppc64le", + "product_id": "openshift4/ose-kube-state-metrics@sha256:16b6ed331d12382ab09a5a9f699e80350ce5350bfd631bac0cb9bc0813a3117c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-state-metrics@sha256:16b6ed331d12382ab09a5a9f699e80350ce5350bfd631bac0cb9bc0813a3117c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics&tag=v4.14.0-202311021650.p0.gdb0c549.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:701f2d6a3b79e51640f4ab8a612918e49249851be47e3db7afdfbb45611c3847_ppc64le", + "product": { + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:701f2d6a3b79e51640f4ab8a612918e49249851be47e3db7afdfbb45611c3847_ppc64le", + "product_id": "openshift4/ose-kuryr-cni-rhel8@sha256:701f2d6a3b79e51640f4ab8a612918e49249851be47e3db7afdfbb45611c3847_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kuryr-cni-rhel8@sha256:701f2d6a3b79e51640f4ab8a612918e49249851be47e3db7afdfbb45611c3847?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kuryr-cni-rhel8&tag=v4.14.0-202311021650.p0.g8926a29.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kuryr-controller-rhel8@sha256:d3ea21d9577fc16cabaa64ef3ed0c588be63df58dee8e34075163431ea218dc4_ppc64le", + "product": { + "name": "openshift4/ose-kuryr-controller-rhel8@sha256:d3ea21d9577fc16cabaa64ef3ed0c588be63df58dee8e34075163431ea218dc4_ppc64le", + "product_id": "openshift4/ose-kuryr-controller-rhel8@sha256:d3ea21d9577fc16cabaa64ef3ed0c588be63df58dee8e34075163431ea218dc4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kuryr-controller-rhel8@sha256:d3ea21d9577fc16cabaa64ef3ed0c588be63df58dee8e34075163431ea218dc4?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kuryr-controller-rhel8&tag=v4.14.0-202311021650.p0.g8926a29.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-marketplace@sha256:a58cb4f1439b89cb6ab54d57a49be3c504f41367da413d6f346ea42fb960273b_ppc64le", + "product": { + "name": "openshift4/ose-operator-marketplace@sha256:a58cb4f1439b89cb6ab54d57a49be3c504f41367da413d6f346ea42fb960273b_ppc64le", + "product_id": "openshift4/ose-operator-marketplace@sha256:a58cb4f1439b89cb6ab54d57a49be3c504f41367da413d6f346ea42fb960273b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-marketplace@sha256:a58cb4f1439b89cb6ab54d57a49be3c504f41367da413d6f346ea42fb960273b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-operator-marketplace&tag=v4.14.0-202311021650.p0.ga367cea.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-monitoring-plugin-rhel8@sha256:a19a419b9c063b094ffd5429da46a14932725d2b369f33cde7c5e86c8a6eddc9_ppc64le", + "product": { + "name": "openshift4/ose-monitoring-plugin-rhel8@sha256:a19a419b9c063b094ffd5429da46a14932725d2b369f33cde7c5e86c8a6eddc9_ppc64le", + "product_id": "openshift4/ose-monitoring-plugin-rhel8@sha256:a19a419b9c063b094ffd5429da46a14932725d2b369f33cde7c5e86c8a6eddc9_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-monitoring-plugin-rhel8@sha256:a19a419b9c063b094ffd5429da46a14932725d2b369f33cde7c5e86c8a6eddc9?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-monitoring-plugin-rhel8&tag=v4.14.0-202311021650.p0.g8757197.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-cni@sha256:b7c4588dc7fd561c850a9c330358d3dc1f6eaa4488df11c8a61bb5df15536e16_ppc64le", + "product": { + "name": "openshift4/ose-multus-cni@sha256:b7c4588dc7fd561c850a9c330358d3dc1f6eaa4488df11c8a61bb5df15536e16_ppc64le", + "product_id": "openshift4/ose-multus-cni@sha256:b7c4588dc7fd561c850a9c330358d3dc1f6eaa4488df11c8a61bb5df15536e16_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-cni@sha256:b7c4588dc7fd561c850a9c330358d3dc1f6eaa4488df11c8a61bb5df15536e16?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-multus-cni&tag=v4.14.0-202311021650.p0.g599223b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-server-rhel8@sha256:e1e452691851a5812c57c207fa8b41cfe6578a91f3fab61f17a59a0b54c9d01f_ppc64le", + "product": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:e1e452691851a5812c57c207fa8b41cfe6578a91f3fab61f17a59a0b54c9d01f_ppc64le", + "product_id": "openshift4/ose-oauth-server-rhel8@sha256:e1e452691851a5812c57c207fa8b41cfe6578a91f3fab61f17a59a0b54c9d01f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-server-rhel8@sha256:e1e452691851a5812c57c207fa8b41cfe6578a91f3fab61f17a59a0b54c9d01f?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel8&tag=v4.14.0-202311021650.p0.g35f4739.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/oc-mirror-plugin-rhel8@sha256:bb4fd225f4ff65391b4e68ebddf1099900a0f0bbab44bc96c5eb505942aab80d_ppc64le", + "product": { + "name": "openshift4/oc-mirror-plugin-rhel8@sha256:bb4fd225f4ff65391b4e68ebddf1099900a0f0bbab44bc96c5eb505942aab80d_ppc64le", + "product_id": "openshift4/oc-mirror-plugin-rhel8@sha256:bb4fd225f4ff65391b4e68ebddf1099900a0f0bbab44bc96c5eb505942aab80d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oc-mirror-plugin-rhel8@sha256:bb4fd225f4ff65391b4e68ebddf1099900a0f0bbab44bc96c5eb505942aab80d?arch=ppc64le&repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel8&tag=v4.14.0-202311031050.p0.gd124cd5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-builder@sha256:712a11a83a2a2c49767418794ba45d07a5cd347cd2d32fce7cb4dc7bdaa8a248_ppc64le", + "product": { + "name": "openshift4/ose-docker-builder@sha256:712a11a83a2a2c49767418794ba45d07a5cd347cd2d32fce7cb4dc7bdaa8a248_ppc64le", + "product_id": "openshift4/ose-docker-builder@sha256:712a11a83a2a2c49767418794ba45d07a5cd347cd2d32fce7cb4dc7bdaa8a248_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-builder@sha256:712a11a83a2a2c49767418794ba45d07a5cd347cd2d32fce7cb4dc7bdaa8a248?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-docker-builder&tag=v4.14.0-202311071732.p0.g720efaa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli@sha256:fd6f4e622a0a37f6c831f0fe7a07203bcd702ebeae2d47c1c317c70e7bd1d68a_ppc64le", + "product": { + "name": "openshift4/ose-cli@sha256:fd6f4e622a0a37f6c831f0fe7a07203bcd702ebeae2d47c1c317c70e7bd1d68a_ppc64le", + "product_id": "openshift4/ose-cli@sha256:fd6f4e622a0a37f6c831f0fe7a07203bcd702ebeae2d47c1c317c70e7bd1d68a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli@sha256:fd6f4e622a0a37f6c831f0fe7a07203bcd702ebeae2d47c1c317c70e7bd1d68a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cli&tag=v4.14.0-202311021650.p0.g9b1e0d2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console@sha256:51ec12e4dee718f3e9c925f01176b9e81696e0c3358e3b573f12bc9e3a5ac07c_ppc64le", + "product": { + "name": "openshift4/ose-console@sha256:51ec12e4dee718f3e9c925f01176b9e81696e0c3358e3b573f12bc9e3a5ac07c_ppc64le", + "product_id": "openshift4/ose-console@sha256:51ec12e4dee718f3e9c925f01176b9e81696e0c3358e3b573f12bc9e3a5ac07c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-console@sha256:51ec12e4dee718f3e9c925f01176b9e81696e0c3358e3b573f12bc9e3a5ac07c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-console&tag=v4.14.0-202311061131.p0.g92b8759.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console-operator@sha256:e1ea789ea8ab04565f8f76c441acf5e0108a84df36863dadc88666a0ec685237_ppc64le", + "product": { + "name": "openshift4/ose-console-operator@sha256:e1ea789ea8ab04565f8f76c441acf5e0108a84df36863dadc88666a0ec685237_ppc64le", + "product_id": "openshift4/ose-console-operator@sha256:e1ea789ea8ab04565f8f76c441acf5e0108a84df36863dadc88666a0ec685237_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-console-operator@sha256:e1ea789ea8ab04565f8f76c441acf5e0108a84df36863dadc88666a0ec685237?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-console-operator&tag=v4.14.0-202311021650.p0.g966e915.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-deployer@sha256:2fef367abdb4445172aaceb535cb3ea02a1dae4684ebf3287d769b0cafdbe906_ppc64le", + "product": { + "name": "openshift4/ose-deployer@sha256:2fef367abdb4445172aaceb535cb3ea02a1dae4684ebf3287d769b0cafdbe906_ppc64le", + "product_id": "openshift4/ose-deployer@sha256:2fef367abdb4445172aaceb535cb3ea02a1dae4684ebf3287d769b0cafdbe906_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-deployer@sha256:2fef367abdb4445172aaceb535cb3ea02a1dae4684ebf3287d769b0cafdbe906?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-deployer&tag=v4.14.0-202311021650.p0.g9b1e0d2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-haproxy-router@sha256:d44e84ac2d0605700f304d02bca5368428c2776bc1a7408417a581d1ef74f997_ppc64le", + "product": { + "name": "openshift4/ose-haproxy-router@sha256:d44e84ac2d0605700f304d02bca5368428c2776bc1a7408417a581d1ef74f997_ppc64le", + "product_id": "openshift4/ose-haproxy-router@sha256:d44e84ac2d0605700f304d02bca5368428c2776bc1a7408417a581d1ef74f997_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-haproxy-router@sha256:d44e84ac2d0605700f304d02bca5368428c2776bc1a7408417a581d1ef74f997?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-haproxy-router&tag=v4.14.0-202311021650.p0.gb3af193.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-keepalived-ipfailover@sha256:bfd3afb2be6afdc5dd449f0e1755dac36db0c9b15052bcef56ee29d23279baa4_ppc64le", + "product": { + "name": "openshift4/ose-keepalived-ipfailover@sha256:bfd3afb2be6afdc5dd449f0e1755dac36db0c9b15052bcef56ee29d23279baa4_ppc64le", + "product_id": "openshift4/ose-keepalived-ipfailover@sha256:bfd3afb2be6afdc5dd449f0e1755dac36db0c9b15052bcef56ee29d23279baa4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-keepalived-ipfailover@sha256:bfd3afb2be6afdc5dd449f0e1755dac36db0c9b15052bcef56ee29d23279baa4?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover&tag=v4.14.0-202311021650.p0.gf08cee3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-pod@sha256:31c81ece0f0bd7e43130db7f43943250e9b9f915d3cfed45fe6a524f839dde32_ppc64le", + "product": { + "name": "openshift4/ose-pod@sha256:31c81ece0f0bd7e43130db7f43943250e9b9f915d3cfed45fe6a524f839dde32_ppc64le", + "product_id": "openshift4/ose-pod@sha256:31c81ece0f0bd7e43130db7f43943250e9b9f915d3cfed45fe6a524f839dde32_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-pod@sha256:31c81ece0f0bd7e43130db7f43943250e9b9f915d3cfed45fe6a524f839dde32?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-pod&tag=v4.14.0-202311021650.p0.gf67aeb3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-registry@sha256:61219818469dde63708d0e8c287abe4747de5382fbc57e53cd8a82f935ce3914_ppc64le", + "product": { + "name": "openshift4/ose-docker-registry@sha256:61219818469dde63708d0e8c287abe4747de5382fbc57e53cd8a82f935ce3914_ppc64le", + "product_id": "openshift4/ose-docker-registry@sha256:61219818469dde63708d0e8c287abe4747de5382fbc57e53cd8a82f935ce3914_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-registry@sha256:61219818469dde63708d0e8c287abe4747de5382fbc57e53cd8a82f935ce3914?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-docker-registry&tag=v4.14.0-202311021650.p0.g5e7788a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tests@sha256:fcc56ab52423f7598dfc12edbbf2f2e64c96cd673b61c015409fdf28088307a6_ppc64le", + "product": { + "name": "openshift4/ose-tests@sha256:fcc56ab52423f7598dfc12edbbf2f2e64c96cd673b61c015409fdf28088307a6_ppc64le", + "product_id": "openshift4/ose-tests@sha256:fcc56ab52423f7598dfc12edbbf2f2e64c96cd673b61c015409fdf28088307a6_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-tests@sha256:fcc56ab52423f7598dfc12edbbf2f2e64c96cd673b61c015409fdf28088307a6?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-tests&tag=v4.14.0-202311021650.p0.g81a21f1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:12242c6fca5b99a967d99447d6d3fb0fdcc0a42fcb7731bc8b1b0e43f05d4940_ppc64le", + "product": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:12242c6fca5b99a967d99447d6d3fb0fdcc0a42fcb7731bc8b1b0e43f05d4940_ppc64le", + "product_id": "openshift4/ose-openshift-state-metrics-rhel8@sha256:12242c6fca5b99a967d99447d6d3fb0fdcc0a42fcb7731bc8b1b0e43f05d4940_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-state-metrics-rhel8@sha256:12242c6fca5b99a967d99447d6d3fb0fdcc0a42fcb7731bc8b1b0e43f05d4940?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8&tag=v4.14.0-202311021650.p0.gdff4b0f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-lifecycle-manager@sha256:c5073f836ce31a7fc47838ba9c3737ff469af3b18de2b5917e48b65fff5dca86_ppc64le", + "product": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:c5073f836ce31a7fc47838ba9c3737ff469af3b18de2b5917e48b65fff5dca86_ppc64le", + "product_id": "openshift4/ose-operator-lifecycle-manager@sha256:c5073f836ce31a7fc47838ba9c3737ff469af3b18de2b5917e48b65fff5dca86_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-lifecycle-manager@sha256:c5073f836ce31a7fc47838ba9c3737ff469af3b18de2b5917e48b65fff5dca86?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager&tag=v4.14.0-202311021650.p0.g48d1541.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-registry@sha256:ee62f0d060e04c6a0a15df1943bbf2a21d8ac74419f7336dd69d9056bf54f1ad_ppc64le", + "product": { + "name": "openshift4/ose-operator-registry@sha256:ee62f0d060e04c6a0a15df1943bbf2a21d8ac74419f7336dd69d9056bf54f1ad_ppc64le", + "product_id": "openshift4/ose-operator-registry@sha256:ee62f0d060e04c6a0a15df1943bbf2a21d8ac74419f7336dd69d9056bf54f1ad_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-registry@sha256:ee62f0d060e04c6a0a15df1943bbf2a21d8ac74419f7336dd69d9056bf54f1ad?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-operator-registry&tag=v4.14.0-202311021650.p0.g48d1541.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:62a3000f321297b3259c1e79496ff8b41decd2b90147d027c148192fd9720432_ppc64le", + "product": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:62a3000f321297b3259c1e79496ff8b41decd2b90147d027c148192fd9720432_ppc64le", + "product_id": "openshift4/ose-agent-installer-api-server-rhel8@sha256:62a3000f321297b3259c1e79496ff8b41decd2b90147d027c148192fd9720432_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-api-server-rhel8@sha256:62a3000f321297b3259c1e79496ff8b41decd2b90147d027c148192fd9720432?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8&tag=v4.14.0-202311021650.p0.g4e1a1e5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:23f4a1f57138d322cf26b2dbbb1d6d1d069604cb813804db7eebbecd09e2ae36_ppc64le", + "product": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:23f4a1f57138d322cf26b2dbbb1d6d1d069604cb813804db7eebbecd09e2ae36_ppc64le", + "product_id": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:23f4a1f57138d322cf26b2dbbb1d6d1d069604cb813804db7eebbecd09e2ae36_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-csr-approver-rhel8@sha256:23f4a1f57138d322cf26b2dbbb1d6d1d069604cb813804db7eebbecd09e2ae36?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8&tag=v4.14.0-202311021650.p0.g9fd99e3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:08130baef144314cda06f7c8891b2243b1b3952eebe01c2353ee35baa6c7fbee_ppc64le", + "product": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:08130baef144314cda06f7c8891b2243b1b3952eebe01c2353ee35baa6c7fbee_ppc64le", + "product_id": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:08130baef144314cda06f7c8891b2243b1b3952eebe01c2353ee35baa6c7fbee_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-orchestrator-rhel8@sha256:08130baef144314cda06f7c8891b2243b1b3952eebe01c2353ee35baa6c7fbee?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8&tag=v4.14.0-202311021650.p0.g9fd99e3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-utils-rhel8@sha256:f7bd6a15ae395e0dc0bb957618f352f16c2b95b6fe8f6f1fbe664b6c9f9a5510_ppc64le", + "product": { + "name": "openshift4/ose-agent-installer-utils-rhel8@sha256:f7bd6a15ae395e0dc0bb957618f352f16c2b95b6fe8f6f1fbe664b6c9f9a5510_ppc64le", + "product_id": "openshift4/ose-agent-installer-utils-rhel8@sha256:f7bd6a15ae395e0dc0bb957618f352f16c2b95b6fe8f6f1fbe664b6c9f9a5510_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-utils-rhel8@sha256:f7bd6a15ae395e0dc0bb957618f352f16c2b95b6fe8f6f1fbe664b6c9f9a5510?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-agent-installer-utils-rhel8&tag=v4.14.0-202311021650.p0.gad85376.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:7927c70eab7a7b6e6db148117b2d57de2409624e46a6096605e1416e2bb4b9a1_ppc64le", + "product": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:7927c70eab7a7b6e6db148117b2d57de2409624e46a6096605e1416e2bb4b9a1_ppc64le", + "product_id": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:7927c70eab7a7b6e6db148117b2d57de2409624e46a6096605e1416e2bb4b9a1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-apiserver-network-proxy-rhel8@sha256:7927c70eab7a7b6e6db148117b2d57de2409624e46a6096605e1416e2bb4b9a1?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8&tag=v4.14.0-202311021650.p0.g15cd434.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:dff96696b5e2c0962587f5bc475610a6666da9ad60a5b5e1fb76d4ba6afa3606_ppc64le", + "product": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:dff96696b5e2c0962587f5bc475610a6666da9ad60a5b5e1fb76d4ba6afa3606_ppc64le", + "product_id": "openshift4/ose-baremetal-installer-rhel8@sha256:dff96696b5e2c0962587f5bc475610a6666da9ad60a5b5e1fb76d4ba6afa3606_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-installer-rhel8@sha256:dff96696b5e2c0962587f5bc475610a6666da9ad60a5b5e1fb76d4ba6afa3606?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8&tag=v4.14.0-202311040828.p0.gc0f108b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:db5f09d0b04c0efe014741f339c4687c2547b53f8c0fc33ca96d32b23ae0071b_ppc64le", + "product": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:db5f09d0b04c0efe014741f339c4687c2547b53f8c0fc33ca96d32b23ae0071b_ppc64le", + "product_id": "openshift4/ose-baremetal-rhel8-operator@sha256:db5f09d0b04c0efe014741f339c4687c2547b53f8c0fc33ca96d32b23ae0071b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-rhel8-operator@sha256:db5f09d0b04c0efe014741f339c4687c2547b53f8c0fc33ca96d32b23ae0071b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel8-operator&tag=v4.14.0-202311021650.p0.g8643f32.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:41f5127bd9aed01479be58002a2393bf1159c9b83d6c34b1756fdec8bb93da27_ppc64le", + "product": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:41f5127bd9aed01479be58002a2393bf1159c9b83d6c34b1756fdec8bb93da27_ppc64le", + "product_id": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:41f5127bd9aed01479be58002a2393bf1159c9b83d6c34b1756fdec8bb93da27_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-runtimecfg-rhel8@sha256:41f5127bd9aed01479be58002a2393bf1159c9b83d6c34b1756fdec8bb93da27?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8&tag=v4.14.0-202311021650.p0.ge7fa0f2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli-artifacts@sha256:3234c3a74c66af9c0b42781194198450c308f5370e9915dd320244b5e3f2e670_ppc64le", + "product": { + "name": "openshift4/ose-cli-artifacts@sha256:3234c3a74c66af9c0b42781194198450c308f5370e9915dd320244b5e3f2e670_ppc64le", + "product_id": "openshift4/ose-cli-artifacts@sha256:3234c3a74c66af9c0b42781194198450c308f5370e9915dd320244b5e3f2e670_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli-artifacts@sha256:3234c3a74c66af9c0b42781194198450c308f5370e9915dd320244b5e3f2e670?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cli-artifacts&tag=v4.14.0-202311021650.p0.g9b1e0d2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-credential-operator@sha256:7d7e38b628c7e4fa63b133e63e417be1fd0afac7862151df6333e85979a8c78e_ppc64le", + "product": { + "name": "openshift4/ose-cloud-credential-operator@sha256:7d7e38b628c7e4fa63b133e63e417be1fd0afac7862151df6333e85979a8c78e_ppc64le", + "product_id": "openshift4/ose-cloud-credential-operator@sha256:7d7e38b628c7e4fa63b133e63e417be1fd0afac7862151df6333e85979a8c78e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-credential-operator@sha256:7d7e38b628c7e4fa63b133e63e417be1fd0afac7862151df6333e85979a8c78e?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cloud-credential-operator&tag=v4.14.0-202311031646.p0.ge70c0de.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:539285dbea7b601e1be4f5531f4e9eb140945d4fd1f70f0350580b4f414c254c_ppc64le", + "product": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:539285dbea7b601e1be4f5531f4e9eb140945d4fd1f70f0350580b4f414c254c_ppc64le", + "product_id": "openshift4/cloud-network-config-controller-rhel8@sha256:539285dbea7b601e1be4f5531f4e9eb140945d4fd1f70f0350580b4f414c254c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cloud-network-config-controller-rhel8@sha256:539285dbea7b601e1be4f5531f4e9eb140945d4fd1f70f0350580b4f414c254c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel8&tag=v4.14.0-202311021650.p0.g9cb1bbd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-api-rhel8@sha256:b691ac002a11eea64558da7c40f217b47d44a4cfdbfeaaab2dc05b519ea7b879_ppc64le", + "product": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:b691ac002a11eea64558da7c40f217b47d44a4cfdbfeaaab2dc05b519ea7b879_ppc64le", + "product_id": "openshift4/ose-cluster-api-rhel8@sha256:b691ac002a11eea64558da7c40f217b47d44a4cfdbfeaaab2dc05b519ea7b879_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-api-rhel8@sha256:b691ac002a11eea64558da7c40f217b47d44a4cfdbfeaaab2dc05b519ea7b879?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel8&tag=v4.14.0-202311021650.p0.gae83c55.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-authentication-operator@sha256:72691469a03972b6a5cce9a77bec8c8d2fbabc7526ea2c70d19b694e0ecca4fd_ppc64le", + "product": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:72691469a03972b6a5cce9a77bec8c8d2fbabc7526ea2c70d19b694e0ecca4fd_ppc64le", + "product_id": "openshift4/ose-cluster-authentication-operator@sha256:72691469a03972b6a5cce9a77bec8c8d2fbabc7526ea2c70d19b694e0ecca4fd_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-authentication-operator@sha256:72691469a03972b6a5cce9a77bec8c8d2fbabc7526ea2c70d19b694e0ecca4fd?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-operator&tag=v4.14.0-202311021650.p0.g9ad3782.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:00752e1ed3a2507b43687466ed26c037ada6fd87ba0e1a5c48406a92ffacbf6d_ppc64le", + "product": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:00752e1ed3a2507b43687466ed26c037ada6fd87ba0e1a5c48406a92ffacbf6d_ppc64le", + "product_id": "openshift4/ose-cluster-autoscaler-operator@sha256:00752e1ed3a2507b43687466ed26c037ada6fd87ba0e1a5c48406a92ffacbf6d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler-operator@sha256:00752e1ed3a2507b43687466ed26c037ada6fd87ba0e1a5c48406a92ffacbf6d?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-operator&tag=v4.14.0-202311021650.p0.g01c3b09.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:4186de1eb63b4d7076d8d2e11e09cd46dd3c719acf6bc39f21d51d7af6d9ce89_ppc64le", + "product": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:4186de1eb63b4d7076d8d2e11e09cd46dd3c719acf6bc39f21d51d7af6d9ce89_ppc64le", + "product_id": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:4186de1eb63b4d7076d8d2e11e09cd46dd3c719acf6bc39f21d51d7af6d9ce89_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-baremetal-operator-rhel8@sha256:4186de1eb63b4d7076d8d2e11e09cd46dd3c719acf6bc39f21d51d7af6d9ce89?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8&tag=v4.14.0-202311021650.p0.g582b745.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-bootstrap@sha256:cad859a718839c3817075b63983821cf87ebfa8c50e8b44a6897902f6d98630a_ppc64le", + "product": { + "name": "openshift4/ose-cluster-bootstrap@sha256:cad859a718839c3817075b63983821cf87ebfa8c50e8b44a6897902f6d98630a_ppc64le", + "product_id": "openshift4/ose-cluster-bootstrap@sha256:cad859a718839c3817075b63983821cf87ebfa8c50e8b44a6897902f6d98630a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-bootstrap@sha256:cad859a718839c3817075b63983821cf87ebfa8c50e8b44a6897902f6d98630a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap&tag=v4.14.0-202311021650.p0.g93fba13.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:b07b51ba7f71f8b0729a19fd2433dd832dc8481b6b61d47e9af67f6b3cc54f4c_ppc64le", + "product": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:b07b51ba7f71f8b0729a19fd2433dd832dc8481b6b61d47e9af67f6b3cc54f4c_ppc64le", + "product_id": "openshift4/ose-cluster-capi-rhel8-operator@sha256:b07b51ba7f71f8b0729a19fd2433dd832dc8481b6b61d47e9af67f6b3cc54f4c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-rhel8-operator@sha256:b07b51ba7f71f8b0729a19fd2433dd832dc8481b6b61d47e9af67f6b3cc54f4c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator&tag=v4.14.0-202311021650.p0.gb4c4fb1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:b07b51ba7f71f8b0729a19fd2433dd832dc8481b6b61d47e9af67f6b3cc54f4c_ppc64le", + "product": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:b07b51ba7f71f8b0729a19fd2433dd832dc8481b6b61d47e9af67f6b3cc54f4c_ppc64le", + "product_id": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:b07b51ba7f71f8b0729a19fd2433dd832dc8481b6b61d47e9af67f6b3cc54f4c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-operator-container-rhel8@sha256:b07b51ba7f71f8b0729a19fd2433dd832dc8481b6b61d47e9af67f6b3cc54f4c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8&tag=v4.14.0-202311021650.p0.gb4c4fb1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:3c07ff5a35f16ed7dc73b69a5a75ff21aa13663b78bd97f79ca49dba961b59d2_ppc64le", + "product": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:3c07ff5a35f16ed7dc73b69a5a75ff21aa13663b78bd97f79ca49dba961b59d2_ppc64le", + "product_id": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:3c07ff5a35f16ed7dc73b69a5a75ff21aa13663b78bd97f79ca49dba961b59d2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:3c07ff5a35f16ed7dc73b69a5a75ff21aa13663b78bd97f79ca49dba961b59d2?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8&tag=v4.14.0-202311021650.p0.g785ecef.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-config-operator@sha256:2e702cc326f405246f39f5b6da33133e024e5b3ce85d24d6b946d3ad207f34ce_ppc64le", + "product": { + "name": "openshift4/ose-cluster-config-operator@sha256:2e702cc326f405246f39f5b6da33133e024e5b3ce85d24d6b946d3ad207f34ce_ppc64le", + "product_id": "openshift4/ose-cluster-config-operator@sha256:2e702cc326f405246f39f5b6da33133e024e5b3ce85d24d6b946d3ad207f34ce_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-config-operator@sha256:2e702cc326f405246f39f5b6da33133e024e5b3ce85d24d6b946d3ad207f34ce?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-config-operator&tag=v4.14.0-202311031646.p0.gd069e14.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:fb4649afa63f583204d10091bc8a4f129ce6f7db26d33ee169234f11a3acc484_ppc64le", + "product": { + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:fb4649afa63f583204d10091bc8a4f129ce6f7db26d33ee169234f11a3acc484_ppc64le", + "product_id": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:fb4649afa63f583204d10091bc8a4f129ce6f7db26d33ee169234f11a3acc484_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:fb4649afa63f583204d10091bc8a4f129ce6f7db26d33ee169234f11a3acc484?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8&tag=v4.14.0-202311021650.p0.g0455a74.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:571cb24f2d21fdfb4dff128dee5498fbd13b7b00564b535fdb95761e6763ccc9_ppc64le", + "product": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:571cb24f2d21fdfb4dff128dee5498fbd13b7b00564b535fdb95761e6763ccc9_ppc64le", + "product_id": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:571cb24f2d21fdfb4dff128dee5498fbd13b7b00564b535fdb95761e6763ccc9_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:571cb24f2d21fdfb4dff128dee5498fbd13b7b00564b535fdb95761e6763ccc9?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator&tag=v4.14.0-202311021650.p0.g5d8bae8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-dns-operator@sha256:2c0ea3b004d02d1b07506d7b8791df9468921011173ed8e500fde107efc6ee95_ppc64le", + "product": { + "name": "openshift4/ose-cluster-dns-operator@sha256:2c0ea3b004d02d1b07506d7b8791df9468921011173ed8e500fde107efc6ee95_ppc64le", + "product_id": "openshift4/ose-cluster-dns-operator@sha256:2c0ea3b004d02d1b07506d7b8791df9468921011173ed8e500fde107efc6ee95_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-dns-operator@sha256:2c0ea3b004d02d1b07506d7b8791df9468921011173ed8e500fde107efc6ee95?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-dns-operator&tag=v4.14.0-202311021650.p0.g5553a22.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-image-registry-operator@sha256:86530da857aae0dd9224718006f4fd03c3118b633f6a71c7eb0b2667ae02337b_ppc64le", + "product": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:86530da857aae0dd9224718006f4fd03c3118b633f6a71c7eb0b2667ae02337b_ppc64le", + "product_id": "openshift4/ose-cluster-image-registry-operator@sha256:86530da857aae0dd9224718006f4fd03c3118b633f6a71c7eb0b2667ae02337b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-image-registry-operator@sha256:86530da857aae0dd9224718006f4fd03c3118b633f6a71c7eb0b2667ae02337b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-operator&tag=v4.14.0-202311071209.p0.gd27b918.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-ingress-operator@sha256:f42c8b6110a73f81df8cc3d533d1819caf9839f4f09acf6b3152462d9809f230_ppc64le", + "product": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:f42c8b6110a73f81df8cc3d533d1819caf9839f4f09acf6b3152462d9809f230_ppc64le", + "product_id": "openshift4/ose-cluster-ingress-operator@sha256:f42c8b6110a73f81df8cc3d533d1819caf9839f4f09acf6b3152462d9809f230_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-ingress-operator@sha256:f42c8b6110a73f81df8cc3d533d1819caf9839f4f09acf6b3152462d9809f230?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-operator&tag=v4.14.0-202311021650.p0.gd876f5a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:285f1babaefbf3da891d950525115d44723afe4e511fb532f303409d1328cb7d_ppc64le", + "product": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:285f1babaefbf3da891d950525115d44723afe4e511fb532f303409d1328cb7d_ppc64le", + "product_id": "openshift4/ose-cluster-kube-apiserver-operator@sha256:285f1babaefbf3da891d950525115d44723afe4e511fb532f303409d1328cb7d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-apiserver-operator@sha256:285f1babaefbf3da891d950525115d44723afe4e511fb532f303409d1328cb7d?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator&tag=v4.14.0-202311031050.p0.gd52dbad.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:81b74238dc7307c96772ecd141cd520a5677216a976f525774e4dbf98e4a2022_ppc64le", + "product": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:81b74238dc7307c96772ecd141cd520a5677216a976f525774e4dbf98e4a2022_ppc64le", + "product_id": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:81b74238dc7307c96772ecd141cd520a5677216a976f525774e4dbf98e4a2022_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel8-operator@sha256:81b74238dc7307c96772ecd141cd520a5677216a976f525774e4dbf98e4a2022?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator&tag=v4.14.0-202311021650.p0.gb287d08.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:114928facd3db6e3110e585c66139971ca1025eafd7fc8aa57cba096e991377f_ppc64le", + "product": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:114928facd3db6e3110e585c66139971ca1025eafd7fc8aa57cba096e991377f_ppc64le", + "product_id": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:114928facd3db6e3110e585c66139971ca1025eafd7fc8aa57cba096e991377f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-controller-manager-operator@sha256:114928facd3db6e3110e585c66139971ca1025eafd7fc8aa57cba096e991377f?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator&tag=v4.14.0-202311021650.p0.gbc9ef03.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:0c89eed7f0552a6bb731ef975287eb45735301ee41a78d2e4dccf99abd8372de_ppc64le", + "product": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:0c89eed7f0552a6bb731ef975287eb45735301ee41a78d2e4dccf99abd8372de_ppc64le", + "product_id": "openshift4/ose-cluster-kube-scheduler-operator@sha256:0c89eed7f0552a6bb731ef975287eb45735301ee41a78d2e4dccf99abd8372de_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-scheduler-operator@sha256:0c89eed7f0552a6bb731ef975287eb45735301ee41a78d2e4dccf99abd8372de?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator&tag=v4.14.0-202311021650.p0.g6e43991.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:c6f1ef4d1b0fe089e3d1f06ef489bef704055a3da3ac023da141c4a2ff267d37_ppc64le", + "product": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:c6f1ef4d1b0fe089e3d1f06ef489bef704055a3da3ac023da141c4a2ff267d37_ppc64le", + "product_id": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:c6f1ef4d1b0fe089e3d1f06ef489bef704055a3da3ac023da141c4a2ff267d37_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:c6f1ef4d1b0fe089e3d1f06ef489bef704055a3da3ac023da141c4a2ff267d37?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator&tag=v4.14.0-202311071511.p0.g9cd9922.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-machine-approver@sha256:f273739a29594a693a4ed26cd506ba79cce68387ae89620a577f0f97d5f2aea9_ppc64le", + "product": { + "name": "openshift4/ose-cluster-machine-approver@sha256:f273739a29594a693a4ed26cd506ba79cce68387ae89620a577f0f97d5f2aea9_ppc64le", + "product_id": "openshift4/ose-cluster-machine-approver@sha256:f273739a29594a693a4ed26cd506ba79cce68387ae89620a577f0f97d5f2aea9_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-machine-approver@sha256:f273739a29594a693a4ed26cd506ba79cce68387ae89620a577f0f97d5f2aea9?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver&tag=v4.14.0-202311021650.p0.g926c904.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-olm-operator-rhel8@sha256:5c9a84af3b139f914e604b86b5c729f7d987af46e23da9507a5e179f195c0a4b_ppc64le", + "product": { + "name": "openshift4/ose-cluster-olm-operator-rhel8@sha256:5c9a84af3b139f914e604b86b5c729f7d987af46e23da9507a5e179f195c0a4b_ppc64le", + "product_id": "openshift4/ose-cluster-olm-operator-rhel8@sha256:5c9a84af3b139f914e604b86b5c729f7d987af46e23da9507a5e179f195c0a4b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-olm-operator-rhel8@sha256:5c9a84af3b139f914e604b86b5c729f7d987af46e23da9507a5e179f195c0a4b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-olm-operator-rhel8&tag=v4.14.0-202311021650.p0.g9e05f32.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:033ccaaeb959c1be8cd9039031377fd2d303e0a16ba1e5158a14b65066a9554f_ppc64le", + "product": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:033ccaaeb959c1be8cd9039031377fd2d303e0a16ba1e5158a14b65066a9554f_ppc64le", + "product_id": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:033ccaaeb959c1be8cd9039031377fd2d303e0a16ba1e5158a14b65066a9554f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-apiserver-operator@sha256:033ccaaeb959c1be8cd9039031377fd2d303e0a16ba1e5158a14b65066a9554f?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator&tag=v4.14.0-202311021650.p0.g8bd8602.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:bf491188b92d3aa5d3f5c1af4a08ea5f405e850bcc0062e683f5f5dbb7811f0b_ppc64le", + "product": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:bf491188b92d3aa5d3f5c1af4a08ea5f405e850bcc0062e683f5f5dbb7811f0b_ppc64le", + "product_id": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:bf491188b92d3aa5d3f5c1af4a08ea5f405e850bcc0062e683f5f5dbb7811f0b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-controller-manager-operator@sha256:bf491188b92d3aa5d3f5c1af4a08ea5f405e850bcc0062e683f5f5dbb7811f0b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator&tag=v4.14.0-202311021650.p0.g04cec68.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:5a4bd8450f2ecb3b9273a9f941e2c532e6028afc70525b7b3c2215a46d23af8b_ppc64le", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:5a4bd8450f2ecb3b9273a9f941e2c532e6028afc70525b7b3c2215a46d23af8b_ppc64le", + "product_id": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:5a4bd8450f2ecb3b9273a9f941e2c532e6028afc70525b7b3c2215a46d23af8b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8-operator@sha256:5a4bd8450f2ecb3b9273a9f941e2c532e6028afc70525b7b3c2215a46d23af8b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator&tag=v4.14.0-202311021650.p0.g2fa33aa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:03786ea6a7232f86ef17d483890d2337b58022f1aa2c63ae1f3488aa0b6348fe_ppc64le", + "product": { + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:03786ea6a7232f86ef17d483890d2337b58022f1aa2c63ae1f3488aa0b6348fe_ppc64le", + "product_id": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:03786ea6a7232f86ef17d483890d2337b58022f1aa2c63ae1f3488aa0b6348fe_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-platform-operators-manager-rhel8@sha256:03786ea6a7232f86ef17d483890d2337b58022f1aa2c63ae1f3488aa0b6348fe?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8&tag=v4.14.0-202311021650.p0.g08fb27e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:f2ab65db7422ec98daed9cd25ae49fa4ed59c5da9b9d2885741cd1c402a0c305_ppc64le", + "product": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:f2ab65db7422ec98daed9cd25ae49fa4ed59c5da9b9d2885741cd1c402a0c305_ppc64le", + "product_id": "openshift4/ose-cluster-policy-controller-rhel8@sha256:f2ab65db7422ec98daed9cd25ae49fa4ed59c5da9b9d2885741cd1c402a0c305_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-policy-controller-rhel8@sha256:f2ab65db7422ec98daed9cd25ae49fa4ed59c5da9b9d2885741cd1c402a0c305?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8&tag=v4.14.0-202311021650.p0.g219f6f6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-samples-operator@sha256:32ffde926f19675f1d4c8d6172e77e17a62fa535ad53e08984cf6256e6ad8ab4_ppc64le", + "product": { + "name": "openshift4/ose-cluster-samples-operator@sha256:32ffde926f19675f1d4c8d6172e77e17a62fa535ad53e08984cf6256e6ad8ab4_ppc64le", + "product_id": "openshift4/ose-cluster-samples-operator@sha256:32ffde926f19675f1d4c8d6172e77e17a62fa535ad53e08984cf6256e6ad8ab4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-samples-operator@sha256:32ffde926f19675f1d4c8d6172e77e17a62fa535ad53e08984cf6256e6ad8ab4?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-samples-operator&tag=v4.14.0-202311021650.p0.gb5396eb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-storage-operator@sha256:7335afce818f8d4fa331e74695b56afae64df65915599b5496827579fba27f31_ppc64le", + "product": { + "name": "openshift4/ose-cluster-storage-operator@sha256:7335afce818f8d4fa331e74695b56afae64df65915599b5496827579fba27f31_ppc64le", + "product_id": "openshift4/ose-cluster-storage-operator@sha256:7335afce818f8d4fa331e74695b56afae64df65915599b5496827579fba27f31_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-storage-operator@sha256:7335afce818f8d4fa331e74695b56afae64df65915599b5496827579fba27f31?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-storage-operator&tag=v4.14.0-202311021650.p0.gdbb1514.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-update-keys@sha256:84da43189dbcc5e5971fecb6449efd69ac504ef1f26ad3ffe7427372a1190c0f_ppc64le", + "product": { + "name": "openshift4/ose-cluster-update-keys@sha256:84da43189dbcc5e5971fecb6449efd69ac504ef1f26ad3ffe7427372a1190c0f_ppc64le", + "product_id": "openshift4/ose-cluster-update-keys@sha256:84da43189dbcc5e5971fecb6449efd69ac504ef1f26ad3ffe7427372a1190c0f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-update-keys@sha256:84da43189dbcc5e5971fecb6449efd69ac504ef1f26ad3ffe7427372a1190c0f?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys&tag=v4.14.0-202311021650.p0.g9dd3eed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:94bb78f9612529cafc144ec2f37780e8124b7cad4dd3a0d03d4b2cd39f0744b2_ppc64le", + "product": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:94bb78f9612529cafc144ec2f37780e8124b7cad4dd3a0d03d4b2cd39f0744b2_ppc64le", + "product_id": "openshift4/ose-container-networking-plugins-rhel8@sha256:94bb78f9612529cafc144ec2f37780e8124b7cad4dd3a0d03d4b2cd39f0744b2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-container-networking-plugins-rhel8@sha256:94bb78f9612529cafc144ec2f37780e8124b7cad4dd3a0d03d4b2cd39f0744b2?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8&tag=v4.14.0-202311021650.p0.g4633865.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:16dadeb693ac3636963f434725c3d4636b9939b74a7cbba8ebee2dbb49c979ab_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:16dadeb693ac3636963f434725c3d4636b9939b74a7cbba8ebee2dbb49c979ab_ppc64le", + "product_id": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:16dadeb693ac3636963f434725c3d4636b9939b74a7cbba8ebee2dbb49c979ab_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-rhel8@sha256:16dadeb693ac3636963f434725c3d4636b9939b74a7cbba8ebee2dbb49c979ab?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8&tag=v4.14.0-202311021650.p0.g740b442.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:3eb7d0e1b236f2796d8cb73ee299013e41f719febbfca27468863dbc6c4963e2_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:3eb7d0e1b236f2796d8cb73ee299013e41f719febbfca27468863dbc6c4963e2_ppc64le", + "product_id": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:3eb7d0e1b236f2796d8cb73ee299013e41f719febbfca27468863dbc6c4963e2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-operator-rhel8@sha256:3eb7d0e1b236f2796d8cb73ee299013e41f719febbfca27468863dbc6c4963e2?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8&tag=v4.14.0-202311021650.p0.g73ddf3e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:3fcf193673324d2a957c926bd4d93d3e6f912a5bded15223cc91ba8c00ce66dc_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:3fcf193673324d2a957c926bd4d93d3e6f912a5bded15223cc91ba8c00ce66dc_ppc64le", + "product_id": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:3fcf193673324d2a957c926bd4d93d3e6f912a5bded15223cc91ba8c00ce66dc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-webhook-rhel8@sha256:3fcf193673324d2a957c926bd4d93d3e6f912a5bded15223cc91ba8c00ce66dc?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8&tag=v4.14.0-202311021650.p0.g740b442.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:dcf4b0aee536487f72e58386fd1212f03dbf1bbd1120de7e79e02adac91b4046_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:dcf4b0aee536487f72e58386fd1212f03dbf1bbd1120de7e79e02adac91b4046_ppc64le", + "product_id": "openshift4/ose-csi-external-resizer-rhel8@sha256:dcf4b0aee536487f72e58386fd1212f03dbf1bbd1120de7e79e02adac91b4046_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer-rhel8@sha256:dcf4b0aee536487f72e58386fd1212f03dbf1bbd1120de7e79e02adac91b4046?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8&tag=v4.14.0-202311021650.p0.g59a701a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer@sha256:dcf4b0aee536487f72e58386fd1212f03dbf1bbd1120de7e79e02adac91b4046_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-resizer@sha256:dcf4b0aee536487f72e58386fd1212f03dbf1bbd1120de7e79e02adac91b4046_ppc64le", + "product_id": "openshift4/ose-csi-external-resizer@sha256:dcf4b0aee536487f72e58386fd1212f03dbf1bbd1120de7e79e02adac91b4046_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer@sha256:dcf4b0aee536487f72e58386fd1212f03dbf1bbd1120de7e79e02adac91b4046?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer&tag=v4.14.0-202311021650.p0.g59a701a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter@sha256:deda99d0309a722172e066ce34074cc74570e968df60f9d85789c7b4d710c6ac_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:deda99d0309a722172e066ce34074cc74570e968df60f9d85789c7b4d710c6ac_ppc64le", + "product_id": "openshift4/ose-csi-external-snapshotter@sha256:deda99d0309a722172e066ce34074cc74570e968df60f9d85789c7b4d710c6ac_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter@sha256:deda99d0309a722172e066ce34074cc74570e968df60f9d85789c7b4d710c6ac?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter&tag=v4.14.0-202311021650.p0.g0bf9276.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:deda99d0309a722172e066ce34074cc74570e968df60f9d85789c7b4d710c6ac_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:deda99d0309a722172e066ce34074cc74570e968df60f9d85789c7b4d710c6ac_ppc64le", + "product_id": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:deda99d0309a722172e066ce34074cc74570e968df60f9d85789c7b4d710c6ac_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter-rhel8@sha256:deda99d0309a722172e066ce34074cc74570e968df60f9d85789c7b4d710c6ac?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8&tag=v4.14.0-202311021650.p0.g0bf9276.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller@sha256:9917d3ae82bc2084a5b6612f1446927529032625c3bee5f8adbeb65eea988cea_ppc64le", + "product": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:9917d3ae82bc2084a5b6612f1446927529032625c3bee5f8adbeb65eea988cea_ppc64le", + "product_id": "openshift4/ose-csi-snapshot-controller@sha256:9917d3ae82bc2084a5b6612f1446927529032625c3bee5f8adbeb65eea988cea_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller@sha256:9917d3ae82bc2084a5b6612f1446927529032625c3bee5f8adbeb65eea988cea?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller&tag=v4.14.0-202311021650.p0.g0bf9276.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:9917d3ae82bc2084a5b6612f1446927529032625c3bee5f8adbeb65eea988cea_ppc64le", + "product": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:9917d3ae82bc2084a5b6612f1446927529032625c3bee5f8adbeb65eea988cea_ppc64le", + "product_id": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:9917d3ae82bc2084a5b6612f1446927529032625c3bee5f8adbeb65eea988cea_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller-rhel8@sha256:9917d3ae82bc2084a5b6612f1446927529032625c3bee5f8adbeb65eea988cea?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8&tag=v4.14.0-202311021650.p0.g0bf9276.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:0f1be2cc6c90306c02d100e49ea7b7b5296195f1be758c22d4e80067fe582bb6_ppc64le", + "product": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:0f1be2cc6c90306c02d100e49ea7b7b5296195f1be758c22d4e80067fe582bb6_ppc64le", + "product_id": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:0f1be2cc6c90306c02d100e49ea7b7b5296195f1be758c22d4e80067fe582bb6_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-validation-webhook-rhel8@sha256:0f1be2cc6c90306c02d100e49ea7b7b5296195f1be758c22d4e80067fe582bb6?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8&tag=v4.14.0-202311021650.p0.g0bf9276.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/egress-router-cni-rhel8@sha256:32783188764e70d52814676eee49081f8532d1a3e4a18ce4086520f658bbc6d7_ppc64le", + "product": { + "name": "openshift4/egress-router-cni-rhel8@sha256:32783188764e70d52814676eee49081f8532d1a3e4a18ce4086520f658bbc6d7_ppc64le", + "product_id": "openshift4/egress-router-cni-rhel8@sha256:32783188764e70d52814676eee49081f8532d1a3e4a18ce4086520f658bbc6d7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/egress-router-cni-rhel8@sha256:32783188764e70d52814676eee49081f8532d1a3e4a18ce4086520f658bbc6d7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel8&tag=v4.14.0-202311021650.p0.gafffdd4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-etcd-rhel9@sha256:2c5fe133b709505d4c3a721bc9311cb56c9ad637a1f0f8e234fada83c8938d40_ppc64le", + "product": { + "name": "openshift4/ose-etcd-rhel9@sha256:2c5fe133b709505d4c3a721bc9311cb56c9ad637a1f0f8e234fada83c8938d40_ppc64le", + "product_id": "openshift4/ose-etcd-rhel9@sha256:2c5fe133b709505d4c3a721bc9311cb56c9ad637a1f0f8e234fada83c8938d40_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-etcd-rhel9@sha256:2c5fe133b709505d4c3a721bc9311cb56c9ad637a1f0f8e234fada83c8938d40?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9&tag=v4.14.0-202311011749.p0.gba21c5b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:c50b10122611f12652d328d24dde422da6a98e23bd285d59d7482aa38b4c448e_ppc64le", + "product": { + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:c50b10122611f12652d328d24dde422da6a98e23bd285d59d7482aa38b4c448e_ppc64le", + "product_id": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:c50b10122611f12652d328d24dde422da6a98e23bd285d59d7482aa38b4c448e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel8@sha256:c50b10122611f12652d328d24dde422da6a98e23bd285d59d7482aa38b4c448e?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.g37deba9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:044ce9c6e7c68c047c1f6d19d82d56652d6c35649c3d190f891c3ce64eca295a_ppc64le", + "product": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:044ce9c6e7c68c047c1f6d19d82d56652d6c35649c3d190f891c3ce64eca295a_ppc64le", + "product_id": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:044ce9c6e7c68c047c1f6d19d82d56652d6c35649c3d190f891c3ce64eca295a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel8@sha256:044ce9c6e7c68c047c1f6d19d82d56652d6c35649c3d190f891c3ce64eca295a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8&tag=v4.14.0-202311021650.p0.g38e3375.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:20520d0a4325275e148f927020acda36d8546d779e18a461eaf35573826b2e25_ppc64le", + "product": { + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:20520d0a4325275e148f927020acda36d8546d779e18a461eaf35573826b2e25_ppc64le", + "product_id": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:20520d0a4325275e148f927020acda36d8546d779e18a461eaf35573826b2e25_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel8@sha256:20520d0a4325275e148f927020acda36d8546d779e18a461eaf35573826b2e25?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.g8a626fe.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:e3345dffaf38f69b5944c113549eebf1f32492ce781bdb92723aa16a73c43743_ppc64le", + "product": { + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:e3345dffaf38f69b5944c113549eebf1f32492ce781bdb92723aa16a73c43743_ppc64le", + "product_id": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:e3345dffaf38f69b5944c113549eebf1f32492ce781bdb92723aa16a73c43743_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel8@sha256:e3345dffaf38f69b5944c113549eebf1f32492ce781bdb92723aa16a73c43743?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8&tag=v4.14.0-202311021650.p0.g92376a4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hypershift-rhel8@sha256:5b4c3f29e079e84065f8aeb4b730a85789b80599227b1267829137970d1d11a2_ppc64le", + "product": { + "name": "openshift4/ose-hypershift-rhel8@sha256:5b4c3f29e079e84065f8aeb4b730a85789b80599227b1267829137970d1d11a2_ppc64le", + "product_id": "openshift4/ose-hypershift-rhel8@sha256:5b4c3f29e079e84065f8aeb4b730a85789b80599227b1267829137970d1d11a2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-hypershift-rhel8@sha256:5b4c3f29e079e84065f8aeb4b730a85789b80599227b1267829137970d1d11a2?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel8&tag=v4.14.0-202311072010.p0.gf1acb05.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:202bc47c10e460a87420f1789c750441f6a4c3b40c3018b542ca0650c5a2629a_ppc64le", + "product": { + "name": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:202bc47c10e460a87420f1789c750441f6a4c3b40c3018b542ca0650c5a2629a_ppc64le", + "product_id": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:202bc47c10e460a87420f1789c750441f6a4c3b40c3018b542ca0650c5a2629a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:202bc47c10e460a87420f1789c750441f6a4c3b40c3018b542ca0650c5a2629a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8&tag=v4.14.0-202311021650.p0.ga7e5c6a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-insights-rhel8-operator@sha256:226ba452c2ae62e9e277a10396d54528aba32a93d6aaa78c075a35647735bd20_ppc64le", + "product": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:226ba452c2ae62e9e277a10396d54528aba32a93d6aaa78c075a35647735bd20_ppc64le", + "product_id": "openshift4/ose-insights-rhel8-operator@sha256:226ba452c2ae62e9e277a10396d54528aba32a93d6aaa78c075a35647735bd20_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-insights-rhel8-operator@sha256:226ba452c2ae62e9e277a10396d54528aba32a93d6aaa78c075a35647735bd20?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-insights-rhel8-operator&tag=v4.14.0-202311021650.p0.ge0f175b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer-artifacts@sha256:f809be309b72b77bb74b47fb5a2eda22f8c0c70059f1327af7eb7c8c70de2cc9_ppc64le", + "product": { + "name": "openshift4/ose-installer-artifacts@sha256:f809be309b72b77bb74b47fb5a2eda22f8c0c70059f1327af7eb7c8c70de2cc9_ppc64le", + "product_id": "openshift4/ose-installer-artifacts@sha256:f809be309b72b77bb74b47fb5a2eda22f8c0c70059f1327af7eb7c8c70de2cc9_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer-artifacts@sha256:f809be309b72b77bb74b47fb5a2eda22f8c0c70059f1327af7eb7c8c70de2cc9?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-installer-artifacts&tag=v4.14.0-202311040828.p0.gc0f108b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer@sha256:51e15c80513f99d613d0e885e7d63620e01e5eb3bde2c59d121ed74601144cb2_ppc64le", + "product": { + "name": "openshift4/ose-installer@sha256:51e15c80513f99d613d0e885e7d63620e01e5eb3bde2c59d121ed74601144cb2_ppc64le", + "product_id": "openshift4/ose-installer@sha256:51e15c80513f99d613d0e885e7d63620e01e5eb3bde2c59d121ed74601144cb2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer@sha256:51e15c80513f99d613d0e885e7d63620e01e5eb3bde2c59d121ed74601144cb2?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-installer&tag=v4.14.0-202311040828.p0.gc0f108b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:27836a540c3f054cd39a03328a18a270e595bc672f457e5cd60d54fb8469679c_ppc64le", + "product": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:27836a540c3f054cd39a03328a18a270e595bc672f457e5cd60d54fb8469679c_ppc64le", + "product_id": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:27836a540c3f054cd39a03328a18a270e595bc672f457e5cd60d54fb8469679c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-storage-version-migrator-rhel8@sha256:27836a540c3f054cd39a03328a18a270e595bc672f457e5cd60d54fb8469679c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8&tag=v4.14.0-202311021650.p0.g8558e14.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:c55de9c1005c98d18e9603590dee24ec170316e20018ba86ac45d1e68f7dc0da_ppc64le", + "product": { + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:c55de9c1005c98d18e9603590dee24ec170316e20018ba86ac45d1e68f7dc0da_ppc64le", + "product_id": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:c55de9c1005c98d18e9603590dee24ec170316e20018ba86ac45d1e68f7dc0da_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel8@sha256:c55de9c1005c98d18e9603590dee24ec170316e20018ba86ac45d1e68f7dc0da?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.g62ca8ad.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:8ac51e2da226aae465a85e1412a31784a9c37746a99c09ed2aa7ae248b455c13_ppc64le", + "product": { + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:8ac51e2da226aae465a85e1412a31784a9c37746a99c09ed2aa7ae248b455c13_ppc64le", + "product_id": "openshift4/kubevirt-csi-driver-rhel8@sha256:8ac51e2da226aae465a85e1412a31784a9c37746a99c09ed2aa7ae248b455c13_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-csi-driver-rhel8@sha256:8ac51e2da226aae465a85e1412a31784a9c37746a99c09ed2aa7ae248b455c13?arch=ppc64le&repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.g831ff3e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-libvirt-machine-controllers@sha256:8044893ef7232fc1570058611a03b73fb56d5c414605e6771926adaddf38c265_ppc64le", + "product": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:8044893ef7232fc1570058611a03b73fb56d5c414605e6771926adaddf38c265_ppc64le", + "product_id": "openshift4/ose-libvirt-machine-controllers@sha256:8044893ef7232fc1570058611a03b73fb56d5c414605e6771926adaddf38c265_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-libvirt-machine-controllers@sha256:8044893ef7232fc1570058611a03b73fb56d5c414605e6771926adaddf38c265?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers&tag=v4.14.0-202311021650.p0.g34dfccb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-operator@sha256:9bb21adaaced20b9b5693244238c69e9ed33ae469a1cdcc2c6a46329b9f3cbd8_ppc64le", + "product": { + "name": "openshift4/ose-machine-api-operator@sha256:9bb21adaaced20b9b5693244238c69e9ed33ae469a1cdcc2c6a46329b9f3cbd8_ppc64le", + "product_id": "openshift4/ose-machine-api-operator@sha256:9bb21adaaced20b9b5693244238c69e9ed33ae469a1cdcc2c6a46329b9f3cbd8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-operator@sha256:9bb21adaaced20b9b5693244238c69e9ed33ae469a1cdcc2c6a46329b9f3cbd8?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-machine-api-operator&tag=v4.14.0-202311021650.p0.g525f8e5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:4a909f3e3d340aeb32ab926a7c9ef48d7b0285165bc074b3241bf5754eb8df7e_ppc64le", + "product": { + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:4a909f3e3d340aeb32ab926a7c9ef48d7b0285165bc074b3241bf5754eb8df7e_ppc64le", + "product_id": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:4a909f3e3d340aeb32ab926a7c9ef48d7b0285165bc074b3241bf5754eb8df7e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-gcp-rhel8@sha256:4a909f3e3d340aeb32ab926a7c9ef48d7b0285165bc074b3241bf5754eb8df7e?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8&tag=v4.14.0-202311021650.p0.ga676e6b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:d160bb82f5e1a0249a815cf0bac74ecda37b262356cde2a4087b65d61515434c_ppc64le", + "product": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:d160bb82f5e1a0249a815cf0bac74ecda37b262356cde2a4087b65d61515434c_ppc64le", + "product_id": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:d160bb82f5e1a0249a815cf0bac74ecda37b262356cde2a4087b65d61515434c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-openstack-rhel8@sha256:d160bb82f5e1a0249a815cf0bac74ecda37b262356cde2a4087b65d61515434c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8&tag=v4.14.0-202311021650.p0.g47ad284.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-config-operator@sha256:d46c1390ff5ec2467181d9d1642a391edfb6df680eb5dccf189740706671d85a_ppc64le", + "product": { + "name": "openshift4/ose-machine-config-operator@sha256:d46c1390ff5ec2467181d9d1642a391edfb6df680eb5dccf189740706671d85a_ppc64le", + "product_id": "openshift4/ose-machine-config-operator@sha256:d46c1390ff5ec2467181d9d1642a391edfb6df680eb5dccf189740706671d85a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-config-operator@sha256:d46c1390ff5ec2467181d9d1642a391edfb6df680eb5dccf189740706671d85a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-machine-config-operator&tag=v4.14.0-202311070105.p0.gf57144e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-os-images-rhel8@sha256:b9ffb98f6eeb3b2a491a515ccdec0edd1bcd34e171f0282ad2364d6abfc65a8b_ppc64le", + "product": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:b9ffb98f6eeb3b2a491a515ccdec0edd1bcd34e171f0282ad2364d6abfc65a8b_ppc64le", + "product_id": "openshift4/ose-machine-os-images-rhel8@sha256:b9ffb98f6eeb3b2a491a515ccdec0edd1bcd34e171f0282ad2364d6abfc65a8b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-os-images-rhel8@sha256:b9ffb98f6eeb3b2a491a515ccdec0edd1bcd34e171f0282ad2364d6abfc65a8b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel8&tag=v4.14.0-202311040828.p0.gd3a4a6c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-admission-controller@sha256:26c0d623ad84619ffb13c856148a2d64338955208aa94b1bbfa78c75f6b2b9aa_ppc64le", + "product": { + "name": "openshift4/ose-multus-admission-controller@sha256:26c0d623ad84619ffb13c856148a2d64338955208aa94b1bbfa78c75f6b2b9aa_ppc64le", + "product_id": "openshift4/ose-multus-admission-controller@sha256:26c0d623ad84619ffb13c856148a2d64338955208aa94b1bbfa78c75f6b2b9aa_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-admission-controller@sha256:26c0d623ad84619ffb13c856148a2d64338955208aa94b1bbfa78c75f6b2b9aa?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller&tag=v4.14.0-202311021650.p0.g5e74b0f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:55bddd1c8143c09757c180554f96a5183d2960210d57152c130bbdeb53c6835a_ppc64le", + "product": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:55bddd1c8143c09757c180554f96a5183d2960210d57152c130bbdeb53c6835a_ppc64le", + "product_id": "openshift4/ose-multus-networkpolicy-rhel8@sha256:55bddd1c8143c09757c180554f96a5183d2960210d57152c130bbdeb53c6835a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-networkpolicy-rhel8@sha256:55bddd1c8143c09757c180554f96a5183d2960210d57152c130bbdeb53c6835a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8&tag=v4.14.0-202311021650.p0.g0d76ba7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:167bccbff750c1b34fbe7367f49f39efcc57dbd836e728a829c85609d61bd5cc_ppc64le", + "product": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:167bccbff750c1b34fbe7367f49f39efcc57dbd836e728a829c85609d61bd5cc_ppc64le", + "product_id": "openshift4/ose-multus-route-override-cni-rhel8@sha256:167bccbff750c1b34fbe7367f49f39efcc57dbd836e728a829c85609d61bd5cc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-route-override-cni-rhel8@sha256:167bccbff750c1b34fbe7367f49f39efcc57dbd836e728a829c85609d61bd5cc?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8&tag=v4.14.0-202311021650.p0.g078aee5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:99bd30c0eb8bafcccdbe110f492832386d5ebec96b1c4300fc9599888820ee4e_ppc64le", + "product": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:99bd30c0eb8bafcccdbe110f492832386d5ebec96b1c4300fc9599888820ee4e_ppc64le", + "product_id": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:99bd30c0eb8bafcccdbe110f492832386d5ebec96b1c4300fc9599888820ee4e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel8@sha256:99bd30c0eb8bafcccdbe110f492832386d5ebec96b1c4300fc9599888820ee4e?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8&tag=v4.14.0-202311021650.p0.g7e45436.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-must-gather@sha256:710bfc5a7fffed40723911c858a9969f4e3b60553af7bab5046bf9fd7b9e63e6_ppc64le", + "product": { + "name": "openshift4/ose-must-gather@sha256:710bfc5a7fffed40723911c858a9969f4e3b60553af7bab5046bf9fd7b9e63e6_ppc64le", + "product_id": "openshift4/ose-must-gather@sha256:710bfc5a7fffed40723911c858a9969f4e3b60553af7bab5046bf9fd7b9e63e6_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-must-gather@sha256:710bfc5a7fffed40723911c858a9969f4e3b60553af7bab5046bf9fd7b9e63e6?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-must-gather&tag=v4.14.0-202311021650.p0.g833e1de.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:d8b698cc027e5a1faf09cac0684fcdc7b7e08bb531520a2e200a50935143bba7_ppc64le", + "product": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:d8b698cc027e5a1faf09cac0684fcdc7b7e08bb531520a2e200a50935143bba7_ppc64le", + "product_id": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:d8b698cc027e5a1faf09cac0684fcdc7b7e08bb531520a2e200a50935143bba7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-interface-bond-cni-rhel8@sha256:d8b698cc027e5a1faf09cac0684fcdc7b7e08bb531520a2e200a50935143bba7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8&tag=v4.14.0-202311021650.p0.g29f61f6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:ee2f18f9f8ff9ebdd0813e5f8afe6a49207c0ae66b9e799fba69b4dcaf237297_ppc64le", + "product": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:ee2f18f9f8ff9ebdd0813e5f8afe6a49207c0ae66b9e799fba69b4dcaf237297_ppc64le", + "product_id": "openshift4/ose-network-metrics-daemon-rhel8@sha256:ee2f18f9f8ff9ebdd0813e5f8afe6a49207c0ae66b9e799fba69b4dcaf237297_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-metrics-daemon-rhel8@sha256:ee2f18f9f8ff9ebdd0813e5f8afe6a49207c0ae66b9e799fba69b4dcaf237297?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8&tag=v4.14.0-202311021650.p0.g5fd1f2d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/network-tools-rhel8@sha256:6d341f6db73574674fd169151c6f477b7e0c48bd3ab98d5ddac4ee4e08dc66a2_ppc64le", + "product": { + "name": "openshift4/network-tools-rhel8@sha256:6d341f6db73574674fd169151c6f477b7e0c48bd3ab98d5ddac4ee4e08dc66a2_ppc64le", + "product_id": "openshift4/network-tools-rhel8@sha256:6d341f6db73574674fd169151c6f477b7e0c48bd3ab98d5ddac4ee4e08dc66a2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/network-tools-rhel8@sha256:6d341f6db73574674fd169151c6f477b7e0c48bd3ab98d5ddac4ee4e08dc66a2?arch=ppc64le&repository_url=registry.redhat.io/openshift4/network-tools-rhel8&tag=v4.14.0-202311031050.p0.ga1dc6af.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sdn-rhel8@sha256:7310091e3e98525a3a191c8a41e9d5942b0a3085afb42e7d8ebf79042573dc30_ppc64le", + "product": { + "name": "openshift4/ose-sdn-rhel8@sha256:7310091e3e98525a3a191c8a41e9d5942b0a3085afb42e7d8ebf79042573dc30_ppc64le", + "product_id": "openshift4/ose-sdn-rhel8@sha256:7310091e3e98525a3a191c8a41e9d5942b0a3085afb42e7d8ebf79042573dc30_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-sdn-rhel8@sha256:7310091e3e98525a3a191c8a41e9d5942b0a3085afb42e7d8ebf79042573dc30?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-sdn-rhel8&tag=v4.14.0-202311021650.p0.g128c28c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:f7a5f4c5f35b5694ee860c647107131b42b8d959803ae4425e473e128230f43c_ppc64le", + "product": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:f7a5f4c5f35b5694ee860c647107131b42b8d959803ae4425e473e128230f43c_ppc64le", + "product_id": "openshift4/ose-oauth-apiserver-rhel8@sha256:f7a5f4c5f35b5694ee860c647107131b42b8d959803ae4425e473e128230f43c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-apiserver-rhel8@sha256:f7a5f4c5f35b5694ee860c647107131b42b8d959803ae4425e473e128230f43c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8&tag=v4.14.0-202311021650.p0.ga18cb3e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-olm-catalogd-rhel8@sha256:7eb406180e223f0abfe4d5a908369e97efa3478a9ea67dc9771b5357f6f2c6a3_ppc64le", + "product": { + "name": "openshift4/ose-olm-catalogd-rhel8@sha256:7eb406180e223f0abfe4d5a908369e97efa3478a9ea67dc9771b5357f6f2c6a3_ppc64le", + "product_id": "openshift4/ose-olm-catalogd-rhel8@sha256:7eb406180e223f0abfe4d5a908369e97efa3478a9ea67dc9771b5357f6f2c6a3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-olm-catalogd-rhel8@sha256:7eb406180e223f0abfe4d5a908369e97efa3478a9ea67dc9771b5357f6f2c6a3?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-olm-catalogd-rhel8&tag=v4.14.0-202311021650.p0.gaa44c02.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-olm-operator-controller-rhel8@sha256:ab3a63e935f1b2d8e9d28c75409020d8e895f040521f78103561488424f85eda_ppc64le", + "product": { + "name": "openshift4/ose-olm-operator-controller-rhel8@sha256:ab3a63e935f1b2d8e9d28c75409020d8e895f040521f78103561488424f85eda_ppc64le", + "product_id": "openshift4/ose-olm-operator-controller-rhel8@sha256:ab3a63e935f1b2d8e9d28c75409020d8e895f040521f78103561488424f85eda_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-olm-operator-controller-rhel8@sha256:ab3a63e935f1b2d8e9d28c75409020d8e895f040521f78103561488424f85eda?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-olm-operator-controller-rhel8&tag=v4.14.0-202311021650.p0.g1734329.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:9b4f383127275cb65198c9399c7371e5df31086ebf6d91b8272bf41cb5c260d9_ppc64le", + "product": { + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:9b4f383127275cb65198c9399c7371e5df31086ebf6d91b8272bf41cb5c260d9_ppc64le", + "product_id": "openshift4/ose-olm-rukpak-rhel8@sha256:9b4f383127275cb65198c9399c7371e5df31086ebf6d91b8272bf41cb5c260d9_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-olm-rukpak-rhel8@sha256:9b4f383127275cb65198c9399c7371e5df31086ebf6d91b8272bf41cb5c260d9?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-olm-rukpak-rhel8&tag=v4.14.0-202311021650.p0.gdaa5073.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:2676d215de4fa031a7a03c9a8681ed0fee873656391cd73371e569c9f0e3389f_ppc64le", + "product": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:2676d215de4fa031a7a03c9a8681ed0fee873656391cd73371e569c9f0e3389f_ppc64le", + "product_id": "openshift4/ose-openshift-apiserver-rhel8@sha256:2676d215de4fa031a7a03c9a8681ed0fee873656391cd73371e569c9f0e3389f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-apiserver-rhel8@sha256:2676d215de4fa031a7a03c9a8681ed0fee873656391cd73371e569c9f0e3389f?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8&tag=v4.14.0-202311021650.p0.g064c2d0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:7f3a2e4651f4052a7386f71bb38361973b05c5b786c56353ab43fbd7538f697f_ppc64le", + "product": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:7f3a2e4651f4052a7386f71bb38361973b05c5b786c56353ab43fbd7538f697f_ppc64le", + "product_id": "openshift4/ose-openshift-controller-manager-rhel8@sha256:7f3a2e4651f4052a7386f71bb38361973b05c5b786c56353ab43fbd7538f697f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-controller-manager-rhel8@sha256:7f3a2e4651f4052a7386f71bb38361973b05c5b786c56353ab43fbd7538f697f?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.g69bd018.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:3aa0f022e8f26349884e12895cc488f56c2d19b094f9cf787253b7caf2f0c963_ppc64le", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:3aa0f022e8f26349884e12895cc488f56c2d19b094f9cf787253b7caf2f0c963_ppc64le", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:3aa0f022e8f26349884e12895cc488f56c2d19b094f9cf787253b7caf2f0c963_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8@sha256:3aa0f022e8f26349884e12895cc488f56c2d19b094f9cf787253b7caf2f0c963?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.gecd00b5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:27466f8887e35f8f50acf3ad366341b76650aaa5dc0583b3df7eac47fa674297_ppc64le", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:27466f8887e35f8f50acf3ad366341b76650aaa5dc0583b3df7eac47fa674297_ppc64le", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:27466f8887e35f8f50acf3ad366341b76650aaa5dc0583b3df7eac47fa674297_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:27466f8887e35f8f50acf3ad366341b76650aaa5dc0583b3df7eac47fa674297?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator&tag=v4.14.0-202311021650.p0.gdcf0e7d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:d4071d55a0b0e8c541b83ea45f6027dca5a3d702ba73f748e4255109e2f363a4_ppc64le", + "product": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:d4071d55a0b0e8c541b83ea45f6027dca5a3d702ba73f748e4255109e2f363a4_ppc64le", + "product_id": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:d4071d55a0b0e8c541b83ea45f6027dca5a3d702ba73f748e4255109e2f363a4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel8@sha256:d4071d55a0b0e8c541b83ea45f6027dca5a3d702ba73f748e4255109e2f363a4?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.gecd00b5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:393157ba40b435ebff66831298005fb6909025dc250b3e8d4a09c3473f0625b3_ppc64le", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:393157ba40b435ebff66831298005fb6909025dc250b3e8d4a09c3473f0625b3_ppc64le", + "product_id": "openshift4/ovirt-csi-driver-rhel8@sha256:393157ba40b435ebff66831298005fb6909025dc250b3e8d4a09c3473f0625b3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8@sha256:393157ba40b435ebff66831298005fb6909025dc250b3e8d4a09c3473f0625b3?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.gf21b470.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:393157ba40b435ebff66831298005fb6909025dc250b3e8d4a09c3473f0625b3_ppc64le", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:393157ba40b435ebff66831298005fb6909025dc250b3e8d4a09c3473f0625b3_ppc64le", + "product_id": "openshift4/ovirt-csi-driver-rhel7@sha256:393157ba40b435ebff66831298005fb6909025dc250b3e8d4a09c3473f0625b3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel7@sha256:393157ba40b435ebff66831298005fb6909025dc250b3e8d4a09c3473f0625b3?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel7&tag=v4.14.0-202311021650.p0.gf21b470.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:8aab016c1d338b1f1fda97e163e34179e8eb67308b3f7b608e561e691f22d1f1_ppc64le", + "product": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:8aab016c1d338b1f1fda97e163e34179e8eb67308b3f7b608e561e691f22d1f1_ppc64le", + "product_id": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:8aab016c1d338b1f1fda97e163e34179e8eb67308b3f7b608e561e691f22d1f1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovirt-machine-controllers-rhel8@sha256:8aab016c1d338b1f1fda97e163e34179e8eb67308b3f7b608e561e691f22d1f1?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8&tag=v4.14.0-202311021650.p0.g5d70863.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes@sha256:a80e06b3c3100a7dcbc21017d21cd1a0a16ff767b441b205d5255bab16100da4_ppc64le", + "product": { + "name": "openshift4/ose-ovn-kubernetes@sha256:a80e06b3c3100a7dcbc21017d21cd1a0a16ff767b441b205d5255bab16100da4_ppc64le", + "product_id": "openshift4/ose-ovn-kubernetes@sha256:a80e06b3c3100a7dcbc21017d21cd1a0a16ff767b441b205d5255bab16100da4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes@sha256:a80e06b3c3100a7dcbc21017d21cd1a0a16ff767b441b205d5255bab16100da4?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes&tag=v4.14.0-202311031050.p0.g7a23238.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:95837b9c424c438e1ea30f516cba64188bcbdc2a05e7a4129a09c49db9827f11_ppc64le", + "product": { + "name": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:95837b9c424c438e1ea30f516cba64188bcbdc2a05e7a4129a09c49db9827f11_ppc64le", + "product_id": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:95837b9c424c438e1ea30f516cba64188bcbdc2a05e7a4129a09c49db9827f11_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-block-csi-driver-rhel8@sha256:95837b9c424c438e1ea30f516cba64188bcbdc2a05e7a4129a09c49db9827f11?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8&tag=v4.14.0-202311021650.p0.ge9694ce.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:67faf4afa21e27f619537813ee660671a182d8ae91b8a5396c6c29ce139b4540_ppc64le", + "product": { + "name": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:67faf4afa21e27f619537813ee660671a182d8ae91b8a5396c6c29ce139b4540_ppc64le", + "product_id": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:67faf4afa21e27f619537813ee660671a182d8ae91b8a5396c6c29ce139b4540_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-block-csi-driver-operator-rhel8@sha256:67faf4afa21e27f619537813ee660671a182d8ae91b8a5396c6c29ce139b4540?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8&tag=v4.14.0-202311021650.p0.g48b56bb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:3b4cacab255f36f481e7ad7b215b563bcef9172de4461d78b8fd9edb7d0e7551_ppc64le", + "product": { + "name": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:3b4cacab255f36f481e7ad7b215b563bcef9172de4461d78b8fd9edb7d0e7551_ppc64le", + "product_id": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:3b4cacab255f36f481e7ad7b215b563bcef9172de4461d78b8fd9edb7d0e7551_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-cloud-controller-manager-rhel8@sha256:3b4cacab255f36f481e7ad7b215b563bcef9172de4461d78b8fd9edb7d0e7551?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.g0a89a6e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:8379fa5f888b0b4db0b8e0f0e7a1e4eaa623f49567307e7bf004dab75e45be0b_ppc64le", + "product": { + "name": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:8379fa5f888b0b4db0b8e0f0e7a1e4eaa623f49567307e7bf004dab75e45be0b_ppc64le", + "product_id": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:8379fa5f888b0b4db0b8e0f0e7a1e4eaa623f49567307e7bf004dab75e45be0b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-machine-controllers-rhel8@sha256:8379fa5f888b0b4db0b8e0f0e7a1e4eaa623f49567307e7bf004dab75e45be0b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8&tag=v4.14.0-202311021650.p0.g02379e5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:8d6c8bab298e28f98d7e9bbb7b427801d536250264c8bbe03ac585b7808803df_ppc64le", + "product": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:8d6c8bab298e28f98d7e9bbb7b427801d536250264c8bbe03ac585b7808803df_ppc64le", + "product_id": "openshift4/ose-k8s-prometheus-adapter@sha256:8d6c8bab298e28f98d7e9bbb7b427801d536250264c8bbe03ac585b7808803df_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-k8s-prometheus-adapter@sha256:8d6c8bab298e28f98d7e9bbb7b427801d536250264c8bbe03ac585b7808803df?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter&tag=v4.14.0-202311021650.p0.g428bb46.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:12fe69f184e4f6fa1df681137698459fbdb1110ae24f021f6a24f131f1f41355_ppc64le", + "product": { + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:12fe69f184e4f6fa1df681137698459fbdb1110ae24f021f6a24f131f1f41355_ppc64le", + "product_id": "openshift4/openshift-route-controller-manager-rhel8@sha256:12fe69f184e4f6fa1df681137698459fbdb1110ae24f021f6a24f131f1f41355_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/openshift-route-controller-manager-rhel8@sha256:12fe69f184e4f6fa1df681137698459fbdb1110ae24f021f6a24f131f1f41355?arch=ppc64le&repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8&tag=v4.14.0-202311021650.p0.g1a5e72f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-service-ca-operator@sha256:e7982196e5a92913140684eccc03e107f660d31d3a5ef78c457945f6af50e810_ppc64le", + "product": { + "name": "openshift4/ose-service-ca-operator@sha256:e7982196e5a92913140684eccc03e107f660d31d3a5ef78c457945f6af50e810_ppc64le", + "product_id": "openshift4/ose-service-ca-operator@sha256:e7982196e5a92913140684eccc03e107f660d31d3a5ef78c457945f6af50e810_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-service-ca-operator@sha256:e7982196e5a92913140684eccc03e107f660d31d3a5ef78c457945f6af50e810?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-service-ca-operator&tag=v4.14.0-202311021650.p0.g030a429.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-thanos-rhel8@sha256:86ac89468afc7e23be34060842df3b63494c5ac2bc565df2975c0cae0d3e0ea3_ppc64le", + "product": { + "name": "openshift4/ose-thanos-rhel8@sha256:86ac89468afc7e23be34060842df3b63494c5ac2bc565df2975c0cae0d3e0ea3_ppc64le", + "product_id": "openshift4/ose-thanos-rhel8@sha256:86ac89468afc7e23be34060842df3b63494c5ac2bc565df2975c0cae0d3e0ea3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-thanos-rhel8@sha256:86ac89468afc7e23be34060842df3b63494c5ac2bc565df2975c0cae0d3e0ea3?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-thanos-rhel8&tag=v4.14.0-202311021650.p0.g175a630.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tools-rhel8@sha256:89a5d80ac49d57d64fa4239d955a75379ca50bf567bec4ddc441ff8230c86463_ppc64le", + "product": { + "name": "openshift4/ose-tools-rhel8@sha256:89a5d80ac49d57d64fa4239d955a75379ca50bf567bec4ddc441ff8230c86463_ppc64le", + "product_id": "openshift4/ose-tools-rhel8@sha256:89a5d80ac49d57d64fa4239d955a75379ca50bf567bec4ddc441ff8230c86463_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-tools-rhel8@sha256:89a5d80ac49d57d64fa4239d955a75379ca50bf567bec4ddc441ff8230c86463?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-tools-rhel8&tag=v4.14.0-202311021650.p0.g9b1e0d2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:25bbeb2c884787684687d9d84809038d0e5011f09c0492937096171a3e3fb032_ppc64le", + "product": { + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:25bbeb2c884787684687d9d84809038d0e5011f09c0492937096171a3e3fb032_ppc64le", + "product_id": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:25bbeb2c884787684687d9d84809038d0e5011f09c0492937096171a3e3fb032_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256:25bbeb2c884787684687d9d84809038d0e5011f09c0492937096171a3e3fb032?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9&tag=v4.14.0-202310250645.p0.g7a23238.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-config-reloader@sha256:cefd2a94ad74cdea2c2fb722a62fbb4bd376211f6304238766be5b1e94a3d00c_ppc64le", + "product": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:cefd2a94ad74cdea2c2fb722a62fbb4bd376211f6304238766be5b1e94a3d00c_ppc64le", + "product_id": "openshift4/ose-prometheus-config-reloader@sha256:cefd2a94ad74cdea2c2fb722a62fbb4bd376211f6304238766be5b1e94a3d00c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-config-reloader@sha256:cefd2a94ad74cdea2c2fb722a62fbb4bd376211f6304238766be5b1e94a3d00c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader&tag=v4.14.0-202311061949.p0.g73729ed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:ddb059de6158518777fd18c54cd30c240c46fb31569fb8c9c75181df297b0438_ppc64le", + "product": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:ddb059de6158518777fd18c54cd30c240c46fb31569fb8c9c75181df297b0438_ppc64le", + "product_id": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:ddb059de6158518777fd18c54cd30c240c46fb31569fb8c9c75181df297b0438_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel8@sha256:ddb059de6158518777fd18c54cd30c240c46fb31569fb8c9c75181df297b0438?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8&tag=v4.14.0-202311061949.p0.g73729ed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator@sha256:107443a5f49450693c1b7fd46aa8ad9b4dc67c66af20d007e514dbce1e7be13c_ppc64le", + "product": { + "name": "openshift4/ose-prometheus-operator@sha256:107443a5f49450693c1b7fd46aa8ad9b4dc67c66af20d007e514dbce1e7be13c_ppc64le", + "product_id": "openshift4/ose-prometheus-operator@sha256:107443a5f49450693c1b7fd46aa8ad9b4dc67c66af20d007e514dbce1e7be13c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator@sha256:107443a5f49450693c1b7fd46aa8ad9b4dc67c66af20d007e514dbce1e7be13c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator&tag=v4.14.0-202311061949.p0.g73729ed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prom-label-proxy@sha256:ed0680d1612eca2411734c30718870b371e9f6c1233a06ada3a7d32decd8462d_ppc64le", + "product": { + "name": "openshift4/ose-prom-label-proxy@sha256:ed0680d1612eca2411734c30718870b371e9f6c1233a06ada3a7d32decd8462d_ppc64le", + "product_id": "openshift4/ose-prom-label-proxy@sha256:ed0680d1612eca2411734c30718870b371e9f6c1233a06ada3a7d32decd8462d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prom-label-proxy@sha256:ed0680d1612eca2411734c30718870b371e9f6c1233a06ada3a7d32decd8462d?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy&tag=v4.14.0-202311021650.p0.gaf40ed0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-telemeter@sha256:ea36784d33dde192c25d6eac598a93ee0fb8c4b9fb355639eb285bce16bd3746_ppc64le", + "product": { + "name": "openshift4/ose-telemeter@sha256:ea36784d33dde192c25d6eac598a93ee0fb8c4b9fb355639eb285bce16bd3746_ppc64le", + "product_id": "openshift4/ose-telemeter@sha256:ea36784d33dde192c25d6eac598a93ee0fb8c4b9fb355639eb285bce16bd3746_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-telemeter@sha256:ea36784d33dde192c25d6eac598a93ee0fb8c4b9fb355639eb285bce16bd3746?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-telemeter&tag=v4.14.0-202311021650.p0.gc8b876a.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "kmm/kernel-module-management-hub-operator-bundle@sha256:7a2bbedd258140f7767e206523d21fdf407ec5596f10ad3c0936c92863939313_amd64", + "product": { + "name": "kmm/kernel-module-management-hub-operator-bundle@sha256:7a2bbedd258140f7767e206523d21fdf407ec5596f10ad3c0936c92863939313_amd64", + "product_id": "kmm/kernel-module-management-hub-operator-bundle@sha256:7a2bbedd258140f7767e206523d21fdf407ec5596f10ad3c0936c92863939313_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kernel-module-management-hub-operator-bundle@sha256:7a2bbedd258140f7767e206523d21fdf407ec5596f10ad3c0936c92863939313?arch=amd64&repository_url=registry.redhat.io/kmm/kernel-module-management-hub-operator-bundle&tag=v1.1.2-7" + } + } + }, + { + "category": "product_version", + "name": "kmm/kernel-module-management-hub-rhel9-operator@sha256:ecc37b90a477748766aa11784966f695b83e6e1a2d4eca48fd9167f920c33615_amd64", + "product": { + "name": "kmm/kernel-module-management-hub-rhel9-operator@sha256:ecc37b90a477748766aa11784966f695b83e6e1a2d4eca48fd9167f920c33615_amd64", + "product_id": "kmm/kernel-module-management-hub-rhel9-operator@sha256:ecc37b90a477748766aa11784966f695b83e6e1a2d4eca48fd9167f920c33615_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kernel-module-management-hub-rhel9-operator@sha256:ecc37b90a477748766aa11784966f695b83e6e1a2d4eca48fd9167f920c33615?arch=amd64&repository_url=registry.redhat.io/kmm/kernel-module-management-hub-rhel9-operator&tag=1.1.2-2" + } + } + }, + { + "category": "product_version", + "name": "kmm/kernel-module-management-must-gather-rhel9@sha256:0c17aa8140a586ec4271f10f252e65a380f25cc73d79a3ab20e37b4cf5b0f51c_amd64", + "product": { + "name": "kmm/kernel-module-management-must-gather-rhel9@sha256:0c17aa8140a586ec4271f10f252e65a380f25cc73d79a3ab20e37b4cf5b0f51c_amd64", + "product_id": "kmm/kernel-module-management-must-gather-rhel9@sha256:0c17aa8140a586ec4271f10f252e65a380f25cc73d79a3ab20e37b4cf5b0f51c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kernel-module-management-must-gather-rhel9@sha256:0c17aa8140a586ec4271f10f252e65a380f25cc73d79a3ab20e37b4cf5b0f51c?arch=amd64&repository_url=registry.redhat.io/kmm/kernel-module-management-must-gather-rhel9&tag=1.1.2-2" + } + } + }, + { + "category": "product_version", + "name": "kmm/kernel-module-management-operator-bundle@sha256:6e3792f846dd8f3b3a2117b46b8abcfe85ad5118eac0acf83bb007390d12fd05_amd64", + "product": { + "name": "kmm/kernel-module-management-operator-bundle@sha256:6e3792f846dd8f3b3a2117b46b8abcfe85ad5118eac0acf83bb007390d12fd05_amd64", + "product_id": "kmm/kernel-module-management-operator-bundle@sha256:6e3792f846dd8f3b3a2117b46b8abcfe85ad5118eac0acf83bb007390d12fd05_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kernel-module-management-operator-bundle@sha256:6e3792f846dd8f3b3a2117b46b8abcfe85ad5118eac0acf83bb007390d12fd05?arch=amd64&repository_url=registry.redhat.io/kmm/kernel-module-management-operator-bundle&tag=v1.1.2-7" + } + } + }, + { + "category": "product_version", + "name": "kmm/kernel-module-management-rhel9-operator@sha256:b2c25eb3dff374616b87f57caec0215af803b725b1f01784de808ee4d23068c8_amd64", + "product": { + "name": "kmm/kernel-module-management-rhel9-operator@sha256:b2c25eb3dff374616b87f57caec0215af803b725b1f01784de808ee4d23068c8_amd64", + "product_id": "kmm/kernel-module-management-rhel9-operator@sha256:b2c25eb3dff374616b87f57caec0215af803b725b1f01784de808ee4d23068c8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kernel-module-management-rhel9-operator@sha256:b2c25eb3dff374616b87f57caec0215af803b725b1f01784de808ee4d23068c8?arch=amd64&repository_url=registry.redhat.io/kmm/kernel-module-management-rhel9-operator&tag=1.1.2-2" + } + } + }, + { + "category": "product_version", + "name": "kmm/kernel-module-management-signing-rhel9@sha256:8f7e525974f388a0c33e227e9cd283b16edcf085819f89a37e41f27a872fa832_amd64", + "product": { + "name": "kmm/kernel-module-management-signing-rhel9@sha256:8f7e525974f388a0c33e227e9cd283b16edcf085819f89a37e41f27a872fa832_amd64", + "product_id": "kmm/kernel-module-management-signing-rhel9@sha256:8f7e525974f388a0c33e227e9cd283b16edcf085819f89a37e41f27a872fa832_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kernel-module-management-signing-rhel9@sha256:8f7e525974f388a0c33e227e9cd283b16edcf085819f89a37e41f27a872fa832?arch=amd64&repository_url=registry.redhat.io/kmm/kernel-module-management-signing-rhel9&tag=1.1.2-2" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "kmm/kernel-module-management-hub-operator-bundle@sha256:4b9879b5a7d6003b0c9586a11c2062a78794a6f92fe9ecc14da80e04149a62f8_arm64", + "product": { + "name": "kmm/kernel-module-management-hub-operator-bundle@sha256:4b9879b5a7d6003b0c9586a11c2062a78794a6f92fe9ecc14da80e04149a62f8_arm64", + "product_id": "kmm/kernel-module-management-hub-operator-bundle@sha256:4b9879b5a7d6003b0c9586a11c2062a78794a6f92fe9ecc14da80e04149a62f8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kernel-module-management-hub-operator-bundle@sha256:4b9879b5a7d6003b0c9586a11c2062a78794a6f92fe9ecc14da80e04149a62f8?arch=arm64&repository_url=registry.redhat.io/kmm/kernel-module-management-hub-operator-bundle&tag=v1.1.2-7" + } + } + }, + { + "category": "product_version", + "name": "kmm/kernel-module-management-hub-rhel9-operator@sha256:cb0727de29d42ac9c79bf51474b72fb55f04fdc2a05876e944443669750f5ee6_arm64", + "product": { + "name": "kmm/kernel-module-management-hub-rhel9-operator@sha256:cb0727de29d42ac9c79bf51474b72fb55f04fdc2a05876e944443669750f5ee6_arm64", + "product_id": "kmm/kernel-module-management-hub-rhel9-operator@sha256:cb0727de29d42ac9c79bf51474b72fb55f04fdc2a05876e944443669750f5ee6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kernel-module-management-hub-rhel9-operator@sha256:cb0727de29d42ac9c79bf51474b72fb55f04fdc2a05876e944443669750f5ee6?arch=arm64&repository_url=registry.redhat.io/kmm/kernel-module-management-hub-rhel9-operator&tag=1.1.2-2" + } + } + }, + { + "category": "product_version", + "name": "kmm/kernel-module-management-must-gather-rhel9@sha256:f9cec2eac1dbd3d19ce6e9d7d7c654f8eba96882dc3a5df9ad5b8cbd02e88bb9_arm64", + "product": { + "name": "kmm/kernel-module-management-must-gather-rhel9@sha256:f9cec2eac1dbd3d19ce6e9d7d7c654f8eba96882dc3a5df9ad5b8cbd02e88bb9_arm64", + "product_id": "kmm/kernel-module-management-must-gather-rhel9@sha256:f9cec2eac1dbd3d19ce6e9d7d7c654f8eba96882dc3a5df9ad5b8cbd02e88bb9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kernel-module-management-must-gather-rhel9@sha256:f9cec2eac1dbd3d19ce6e9d7d7c654f8eba96882dc3a5df9ad5b8cbd02e88bb9?arch=arm64&repository_url=registry.redhat.io/kmm/kernel-module-management-must-gather-rhel9&tag=1.1.2-2" + } + } + }, + { + "category": "product_version", + "name": "kmm/kernel-module-management-operator-bundle@sha256:e0aa6130e69dd838e31a9a8800ed518c00c73f67a24a4bcf0d572c757d68b5ee_arm64", + "product": { + "name": "kmm/kernel-module-management-operator-bundle@sha256:e0aa6130e69dd838e31a9a8800ed518c00c73f67a24a4bcf0d572c757d68b5ee_arm64", + "product_id": "kmm/kernel-module-management-operator-bundle@sha256:e0aa6130e69dd838e31a9a8800ed518c00c73f67a24a4bcf0d572c757d68b5ee_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kernel-module-management-operator-bundle@sha256:e0aa6130e69dd838e31a9a8800ed518c00c73f67a24a4bcf0d572c757d68b5ee?arch=arm64&repository_url=registry.redhat.io/kmm/kernel-module-management-operator-bundle&tag=v1.1.2-7" + } + } + }, + { + "category": "product_version", + "name": "kmm/kernel-module-management-rhel9-operator@sha256:c0062d91d15628ccc35133b67bcedb82076ed22b5c180fdfbae360c8e25e8a47_arm64", + "product": { + "name": "kmm/kernel-module-management-rhel9-operator@sha256:c0062d91d15628ccc35133b67bcedb82076ed22b5c180fdfbae360c8e25e8a47_arm64", + "product_id": "kmm/kernel-module-management-rhel9-operator@sha256:c0062d91d15628ccc35133b67bcedb82076ed22b5c180fdfbae360c8e25e8a47_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kernel-module-management-rhel9-operator@sha256:c0062d91d15628ccc35133b67bcedb82076ed22b5c180fdfbae360c8e25e8a47?arch=arm64&repository_url=registry.redhat.io/kmm/kernel-module-management-rhel9-operator&tag=1.1.2-2" + } + } + }, + { + "category": "product_version", + "name": "kmm/kernel-module-management-signing-rhel9@sha256:fe37c0a672e97518b01abf7b998d50dd79e47bcd7e1d60950d64b812a599f8cd_arm64", + "product": { + "name": "kmm/kernel-module-management-signing-rhel9@sha256:fe37c0a672e97518b01abf7b998d50dd79e47bcd7e1d60950d64b812a599f8cd_arm64", + "product_id": "kmm/kernel-module-management-signing-rhel9@sha256:fe37c0a672e97518b01abf7b998d50dd79e47bcd7e1d60950d64b812a599f8cd_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kernel-module-management-signing-rhel9@sha256:fe37c0a672e97518b01abf7b998d50dd79e47bcd7e1d60950d64b812a599f8cd?arch=arm64&repository_url=registry.redhat.io/kmm/kernel-module-management-signing-rhel9&tag=1.1.2-2" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "kmm/kernel-module-management-hub-operator-bundle@sha256:b8b8d224ada7a865ddf79b36b493c3fc93f6b89f03dcb5bf6329ae2f538002aa_ppc64le", + "product": { + "name": "kmm/kernel-module-management-hub-operator-bundle@sha256:b8b8d224ada7a865ddf79b36b493c3fc93f6b89f03dcb5bf6329ae2f538002aa_ppc64le", + "product_id": "kmm/kernel-module-management-hub-operator-bundle@sha256:b8b8d224ada7a865ddf79b36b493c3fc93f6b89f03dcb5bf6329ae2f538002aa_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kernel-module-management-hub-operator-bundle@sha256:b8b8d224ada7a865ddf79b36b493c3fc93f6b89f03dcb5bf6329ae2f538002aa?arch=ppc64le&repository_url=registry.redhat.io/kmm/kernel-module-management-hub-operator-bundle&tag=v1.1.2-7" + } + } + }, + { + "category": "product_version", + "name": "kmm/kernel-module-management-hub-rhel9-operator@sha256:6793da0209a2427a3280287c514e0f6c1f4927e65fd2079d7b1528b1d074cba6_ppc64le", + "product": { + "name": "kmm/kernel-module-management-hub-rhel9-operator@sha256:6793da0209a2427a3280287c514e0f6c1f4927e65fd2079d7b1528b1d074cba6_ppc64le", + "product_id": "kmm/kernel-module-management-hub-rhel9-operator@sha256:6793da0209a2427a3280287c514e0f6c1f4927e65fd2079d7b1528b1d074cba6_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kernel-module-management-hub-rhel9-operator@sha256:6793da0209a2427a3280287c514e0f6c1f4927e65fd2079d7b1528b1d074cba6?arch=ppc64le&repository_url=registry.redhat.io/kmm/kernel-module-management-hub-rhel9-operator&tag=1.1.2-2" + } + } + }, + { + "category": "product_version", + "name": "kmm/kernel-module-management-must-gather-rhel9@sha256:45c6a0a49602a2866490ae59036b5a585d243cdc7e802055b34eb2e8ebbbc98d_ppc64le", + "product": { + "name": "kmm/kernel-module-management-must-gather-rhel9@sha256:45c6a0a49602a2866490ae59036b5a585d243cdc7e802055b34eb2e8ebbbc98d_ppc64le", + "product_id": "kmm/kernel-module-management-must-gather-rhel9@sha256:45c6a0a49602a2866490ae59036b5a585d243cdc7e802055b34eb2e8ebbbc98d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kernel-module-management-must-gather-rhel9@sha256:45c6a0a49602a2866490ae59036b5a585d243cdc7e802055b34eb2e8ebbbc98d?arch=ppc64le&repository_url=registry.redhat.io/kmm/kernel-module-management-must-gather-rhel9&tag=1.1.2-2" + } + } + }, + { + "category": "product_version", + "name": "kmm/kernel-module-management-operator-bundle@sha256:c1fbd5600ce0eaa118012e9d7a0a3e7b4d75b5c78b369f6cb3525aee7eae93a7_ppc64le", + "product": { + "name": "kmm/kernel-module-management-operator-bundle@sha256:c1fbd5600ce0eaa118012e9d7a0a3e7b4d75b5c78b369f6cb3525aee7eae93a7_ppc64le", + "product_id": "kmm/kernel-module-management-operator-bundle@sha256:c1fbd5600ce0eaa118012e9d7a0a3e7b4d75b5c78b369f6cb3525aee7eae93a7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kernel-module-management-operator-bundle@sha256:c1fbd5600ce0eaa118012e9d7a0a3e7b4d75b5c78b369f6cb3525aee7eae93a7?arch=ppc64le&repository_url=registry.redhat.io/kmm/kernel-module-management-operator-bundle&tag=v1.1.2-7" + } + } + }, + { + "category": "product_version", + "name": "kmm/kernel-module-management-rhel9-operator@sha256:0964ed8ca8a915f0f2b3ac4cc8aa7d885e541595a9ed959a18fffc771f591716_ppc64le", + "product": { + "name": "kmm/kernel-module-management-rhel9-operator@sha256:0964ed8ca8a915f0f2b3ac4cc8aa7d885e541595a9ed959a18fffc771f591716_ppc64le", + "product_id": "kmm/kernel-module-management-rhel9-operator@sha256:0964ed8ca8a915f0f2b3ac4cc8aa7d885e541595a9ed959a18fffc771f591716_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kernel-module-management-rhel9-operator@sha256:0964ed8ca8a915f0f2b3ac4cc8aa7d885e541595a9ed959a18fffc771f591716?arch=ppc64le&repository_url=registry.redhat.io/kmm/kernel-module-management-rhel9-operator&tag=1.1.2-2" + } + } + }, + { + "category": "product_version", + "name": "kmm/kernel-module-management-signing-rhel9@sha256:3feee1b84375b7e5e936bab7d4d2340be0452bbfda959e5d1aec520f0f606887_ppc64le", + "product": { + "name": "kmm/kernel-module-management-signing-rhel9@sha256:3feee1b84375b7e5e936bab7d4d2340be0452bbfda959e5d1aec520f0f606887_ppc64le", + "product_id": "kmm/kernel-module-management-signing-rhel9@sha256:3feee1b84375b7e5e936bab7d4d2340be0452bbfda959e5d1aec520f0f606887_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kernel-module-management-signing-rhel9@sha256:3feee1b84375b7e5e936bab7d4d2340be0452bbfda959e5d1aec520f0f606887?arch=ppc64le&repository_url=registry.redhat.io/kmm/kernel-module-management-signing-rhel9&tag=1.1.2-2" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "cert-manager/cert-manager-operator-bundle@sha256:140dafad28aa23ffccfcd87ff0674aa9fcbd904194728a9ee482bfa2d8d976aa_amd64", + "product": { + "name": "cert-manager/cert-manager-operator-bundle@sha256:140dafad28aa23ffccfcd87ff0674aa9fcbd904194728a9ee482bfa2d8d976aa_amd64", + "product_id": "cert-manager/cert-manager-operator-bundle@sha256:140dafad28aa23ffccfcd87ff0674aa9fcbd904194728a9ee482bfa2d8d976aa_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cert-manager-operator-bundle@sha256:140dafad28aa23ffccfcd87ff0674aa9fcbd904194728a9ee482bfa2d8d976aa?arch=amd64&repository_url=registry.redhat.io/cert-manager/cert-manager-operator-bundle&tag=v1.12.1-3" + } + } + }, + { + "category": "product_version", + "name": "cert-manager/cert-manager-operator-rhel9@sha256:7d3029dbcbcbec5f6b257afc8866c0b87bc2c694dc7f3fa7ad9e88e2b61cb3d0_amd64", + "product": { + "name": "cert-manager/cert-manager-operator-rhel9@sha256:7d3029dbcbcbec5f6b257afc8866c0b87bc2c694dc7f3fa7ad9e88e2b61cb3d0_amd64", + "product_id": "cert-manager/cert-manager-operator-rhel9@sha256:7d3029dbcbcbec5f6b257afc8866c0b87bc2c694dc7f3fa7ad9e88e2b61cb3d0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cert-manager-operator-rhel9@sha256:7d3029dbcbcbec5f6b257afc8866c0b87bc2c694dc7f3fa7ad9e88e2b61cb3d0?arch=amd64&repository_url=registry.redhat.io/cert-manager/cert-manager-operator-rhel9&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "cert-manager/jetstack-cert-manager-acmesolver-rhel9@sha256:4db42d2b0403b2ae116c52cfa95bc54d621200072ad2c584a38a8e0e9b6e0a71_amd64", + "product": { + "name": "cert-manager/jetstack-cert-manager-acmesolver-rhel9@sha256:4db42d2b0403b2ae116c52cfa95bc54d621200072ad2c584a38a8e0e9b6e0a71_amd64", + "product_id": "cert-manager/jetstack-cert-manager-acmesolver-rhel9@sha256:4db42d2b0403b2ae116c52cfa95bc54d621200072ad2c584a38a8e0e9b6e0a71_amd64", + "product_identification_helper": { + "purl": "pkg:oci/jetstack-cert-manager-acmesolver-rhel9@sha256:4db42d2b0403b2ae116c52cfa95bc54d621200072ad2c584a38a8e0e9b6e0a71?arch=amd64&repository_url=registry.redhat.io/cert-manager/jetstack-cert-manager-acmesolver-rhel9&tag=v1.12.5-3" + } + } + }, + { + "category": "product_version", + "name": "cert-manager/jetstack-cert-manager-rhel9@sha256:1e3f9343999d6ed86d052688623de31fa74eee6f0b1a747dac32b661ec714b00_amd64", + "product": { + "name": "cert-manager/jetstack-cert-manager-rhel9@sha256:1e3f9343999d6ed86d052688623de31fa74eee6f0b1a747dac32b661ec714b00_amd64", + "product_id": "cert-manager/jetstack-cert-manager-rhel9@sha256:1e3f9343999d6ed86d052688623de31fa74eee6f0b1a747dac32b661ec714b00_amd64", + "product_identification_helper": { + "purl": "pkg:oci/jetstack-cert-manager-rhel9@sha256:1e3f9343999d6ed86d052688623de31fa74eee6f0b1a747dac32b661ec714b00?arch=amd64&repository_url=registry.redhat.io/cert-manager/jetstack-cert-manager-rhel9&tag=v1.12.5-3" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-service-mesh/istio-cni-rhel8@sha256:a0f0fcdf2d1be20c4b483d338803b4f968ed6a51ee842bae3f2539aaea660b36_amd64", + "product": { + "name": "openshift-service-mesh/istio-cni-rhel8@sha256:a0f0fcdf2d1be20c4b483d338803b4f968ed6a51ee842bae3f2539aaea660b36_amd64", + "product_id": "openshift-service-mesh/istio-cni-rhel8@sha256:a0f0fcdf2d1be20c4b483d338803b4f968ed6a51ee842bae3f2539aaea660b36_amd64", + "product_identification_helper": { + "purl": "pkg:oci/istio-cni-rhel8@sha256:a0f0fcdf2d1be20c4b483d338803b4f968ed6a51ee842bae3f2539aaea660b36?arch=amd64&repository_url=registry.redhat.io/openshift-service-mesh/istio-cni-rhel8&tag=2.2.12-2" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/grafana-rhel8@sha256:c9462389f5c148c9fa855aa54786ab28e0a522c2576e139f254c72f3135e824c_amd64", + "product": { + "name": "openshift-service-mesh/grafana-rhel8@sha256:c9462389f5c148c9fa855aa54786ab28e0a522c2576e139f254c72f3135e824c_amd64", + "product_id": "openshift-service-mesh/grafana-rhel8@sha256:c9462389f5c148c9fa855aa54786ab28e0a522c2576e139f254c72f3135e824c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/grafana-rhel8@sha256:c9462389f5c148c9fa855aa54786ab28e0a522c2576e139f254c72f3135e824c?arch=amd64&repository_url=registry.redhat.io/openshift-service-mesh/grafana-rhel8&tag=2.2.12-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/kiali-rhel8@sha256:63ce7982aa4fe759dbe7acc497105da41f6426268678df4c8407ef7da94f5965_amd64", + "product": { + "name": "openshift-service-mesh/kiali-rhel8@sha256:63ce7982aa4fe759dbe7acc497105da41f6426268678df4c8407ef7da94f5965_amd64", + "product_id": "openshift-service-mesh/kiali-rhel8@sha256:63ce7982aa4fe759dbe7acc497105da41f6426268678df4c8407ef7da94f5965_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kiali-rhel8@sha256:63ce7982aa4fe759dbe7acc497105da41f6426268678df4c8407ef7da94f5965?arch=amd64&repository_url=registry.redhat.io/openshift-service-mesh/kiali-rhel8&tag=1.48.11-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/istio-must-gather-rhel8@sha256:a3031870bd2199c28e754585b57363f953818bd20bf9ad04f5545e0eb4ae4793_amd64", + "product": { + "name": "openshift-service-mesh/istio-must-gather-rhel8@sha256:a3031870bd2199c28e754585b57363f953818bd20bf9ad04f5545e0eb4ae4793_amd64", + "product_id": "openshift-service-mesh/istio-must-gather-rhel8@sha256:a3031870bd2199c28e754585b57363f953818bd20bf9ad04f5545e0eb4ae4793_amd64", + "product_identification_helper": { + "purl": "pkg:oci/istio-must-gather-rhel8@sha256:a3031870bd2199c28e754585b57363f953818bd20bf9ad04f5545e0eb4ae4793?arch=amd64&repository_url=registry.redhat.io/openshift-service-mesh/istio-must-gather-rhel8&tag=2.2.12-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/pilot-rhel8@sha256:818fc5474a2bea0400b6b022cca31f522ea05b58bfa57fca1f6cb20efeb140f7_amd64", + "product": { + "name": "openshift-service-mesh/pilot-rhel8@sha256:818fc5474a2bea0400b6b022cca31f522ea05b58bfa57fca1f6cb20efeb140f7_amd64", + "product_id": "openshift-service-mesh/pilot-rhel8@sha256:818fc5474a2bea0400b6b022cca31f522ea05b58bfa57fca1f6cb20efeb140f7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pilot-rhel8@sha256:818fc5474a2bea0400b6b022cca31f522ea05b58bfa57fca1f6cb20efeb140f7?arch=amd64&repository_url=registry.redhat.io/openshift-service-mesh/pilot-rhel8&tag=2.2.12-2" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/prometheus-rhel8@sha256:dbcf658a5354b9b7d412826a77cfb0ce889c4704634f5d13325161021feff81e_amd64", + "product": { + "name": "openshift-service-mesh/prometheus-rhel8@sha256:dbcf658a5354b9b7d412826a77cfb0ce889c4704634f5d13325161021feff81e_amd64", + "product_id": "openshift-service-mesh/prometheus-rhel8@sha256:dbcf658a5354b9b7d412826a77cfb0ce889c4704634f5d13325161021feff81e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-rhel8@sha256:dbcf658a5354b9b7d412826a77cfb0ce889c4704634f5d13325161021feff81e?arch=amd64&repository_url=registry.redhat.io/openshift-service-mesh/prometheus-rhel8&tag=2.2.12-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/proxyv2-rhel8@sha256:4abe159e450801e062a3afceff661ab25dc57ea122ce58269b2f3566a55c8dc2_amd64", + "product": { + "name": "openshift-service-mesh/proxyv2-rhel8@sha256:4abe159e450801e062a3afceff661ab25dc57ea122ce58269b2f3566a55c8dc2_amd64", + "product_id": "openshift-service-mesh/proxyv2-rhel8@sha256:4abe159e450801e062a3afceff661ab25dc57ea122ce58269b2f3566a55c8dc2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/proxyv2-rhel8@sha256:4abe159e450801e062a3afceff661ab25dc57ea122ce58269b2f3566a55c8dc2?arch=amd64&repository_url=registry.redhat.io/openshift-service-mesh/proxyv2-rhel8&tag=2.2.12-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/ratelimit-rhel8@sha256:8a5a8bc6a54cd64330926478ac29f568ac5c83cc9550852d439ccc4cbd0b5ab5_amd64", + "product": { + "name": "openshift-service-mesh/ratelimit-rhel8@sha256:8a5a8bc6a54cd64330926478ac29f568ac5c83cc9550852d439ccc4cbd0b5ab5_amd64", + "product_id": "openshift-service-mesh/ratelimit-rhel8@sha256:8a5a8bc6a54cd64330926478ac29f568ac5c83cc9550852d439ccc4cbd0b5ab5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ratelimit-rhel8@sha256:8a5a8bc6a54cd64330926478ac29f568ac5c83cc9550852d439ccc4cbd0b5ab5?arch=amd64&repository_url=registry.redhat.io/openshift-service-mesh/ratelimit-rhel8&tag=2.2.12-1" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-service-mesh/istio-cni-rhel8@sha256:ef9adad3d6ccc52944aa6a7be7537a3fd2cef1984c09f4b57a32d5670903b679_ppc64le", + "product": { + "name": "openshift-service-mesh/istio-cni-rhel8@sha256:ef9adad3d6ccc52944aa6a7be7537a3fd2cef1984c09f4b57a32d5670903b679_ppc64le", + "product_id": "openshift-service-mesh/istio-cni-rhel8@sha256:ef9adad3d6ccc52944aa6a7be7537a3fd2cef1984c09f4b57a32d5670903b679_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/istio-cni-rhel8@sha256:ef9adad3d6ccc52944aa6a7be7537a3fd2cef1984c09f4b57a32d5670903b679?arch=ppc64le&repository_url=registry.redhat.io/openshift-service-mesh/istio-cni-rhel8&tag=2.2.12-2" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/grafana-rhel8@sha256:dcfa0e73a89d2ad273720c209dd94fe3b652c5606d196d4962a2f662ed834612_ppc64le", + "product": { + "name": "openshift-service-mesh/grafana-rhel8@sha256:dcfa0e73a89d2ad273720c209dd94fe3b652c5606d196d4962a2f662ed834612_ppc64le", + "product_id": "openshift-service-mesh/grafana-rhel8@sha256:dcfa0e73a89d2ad273720c209dd94fe3b652c5606d196d4962a2f662ed834612_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/grafana-rhel8@sha256:dcfa0e73a89d2ad273720c209dd94fe3b652c5606d196d4962a2f662ed834612?arch=ppc64le&repository_url=registry.redhat.io/openshift-service-mesh/grafana-rhel8&tag=2.2.12-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/kiali-rhel8@sha256:081d9b91f85a9fa135ddaf993b67ba01282205b5e87d31cffa1a9e659a430a61_ppc64le", + "product": { + "name": "openshift-service-mesh/kiali-rhel8@sha256:081d9b91f85a9fa135ddaf993b67ba01282205b5e87d31cffa1a9e659a430a61_ppc64le", + "product_id": "openshift-service-mesh/kiali-rhel8@sha256:081d9b91f85a9fa135ddaf993b67ba01282205b5e87d31cffa1a9e659a430a61_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kiali-rhel8@sha256:081d9b91f85a9fa135ddaf993b67ba01282205b5e87d31cffa1a9e659a430a61?arch=ppc64le&repository_url=registry.redhat.io/openshift-service-mesh/kiali-rhel8&tag=1.48.11-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/istio-must-gather-rhel8@sha256:3061637ecdeac036dc9171f5b079daa0a4a193589161e90920c681abb27c5ce3_ppc64le", + "product": { + "name": "openshift-service-mesh/istio-must-gather-rhel8@sha256:3061637ecdeac036dc9171f5b079daa0a4a193589161e90920c681abb27c5ce3_ppc64le", + "product_id": "openshift-service-mesh/istio-must-gather-rhel8@sha256:3061637ecdeac036dc9171f5b079daa0a4a193589161e90920c681abb27c5ce3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/istio-must-gather-rhel8@sha256:3061637ecdeac036dc9171f5b079daa0a4a193589161e90920c681abb27c5ce3?arch=ppc64le&repository_url=registry.redhat.io/openshift-service-mesh/istio-must-gather-rhel8&tag=2.2.12-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/pilot-rhel8@sha256:6851a60e3242789f67637d596959580c96fcd5221d71ad83e21ead53f0ba9856_ppc64le", + "product": { + "name": "openshift-service-mesh/pilot-rhel8@sha256:6851a60e3242789f67637d596959580c96fcd5221d71ad83e21ead53f0ba9856_ppc64le", + "product_id": "openshift-service-mesh/pilot-rhel8@sha256:6851a60e3242789f67637d596959580c96fcd5221d71ad83e21ead53f0ba9856_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pilot-rhel8@sha256:6851a60e3242789f67637d596959580c96fcd5221d71ad83e21ead53f0ba9856?arch=ppc64le&repository_url=registry.redhat.io/openshift-service-mesh/pilot-rhel8&tag=2.2.12-2" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/prometheus-rhel8@sha256:b2e2fbd17082d59a1fbf9e55c04b767763d968747e232bfb4789376ed1bb08cc_ppc64le", + "product": { + "name": "openshift-service-mesh/prometheus-rhel8@sha256:b2e2fbd17082d59a1fbf9e55c04b767763d968747e232bfb4789376ed1bb08cc_ppc64le", + "product_id": "openshift-service-mesh/prometheus-rhel8@sha256:b2e2fbd17082d59a1fbf9e55c04b767763d968747e232bfb4789376ed1bb08cc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-rhel8@sha256:b2e2fbd17082d59a1fbf9e55c04b767763d968747e232bfb4789376ed1bb08cc?arch=ppc64le&repository_url=registry.redhat.io/openshift-service-mesh/prometheus-rhel8&tag=2.2.12-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/proxyv2-rhel8@sha256:208a5000e943fb68e2c2cfea0ac6223fdc6a43363b19fb3ac3e6c19326afa464_ppc64le", + "product": { + "name": "openshift-service-mesh/proxyv2-rhel8@sha256:208a5000e943fb68e2c2cfea0ac6223fdc6a43363b19fb3ac3e6c19326afa464_ppc64le", + "product_id": "openshift-service-mesh/proxyv2-rhel8@sha256:208a5000e943fb68e2c2cfea0ac6223fdc6a43363b19fb3ac3e6c19326afa464_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/proxyv2-rhel8@sha256:208a5000e943fb68e2c2cfea0ac6223fdc6a43363b19fb3ac3e6c19326afa464?arch=ppc64le&repository_url=registry.redhat.io/openshift-service-mesh/proxyv2-rhel8&tag=2.2.12-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/ratelimit-rhel8@sha256:cc5d972cb2ba30e147c76202dc315a08bdba41906f808e95d8b134bfe446fc89_ppc64le", + "product": { + "name": "openshift-service-mesh/ratelimit-rhel8@sha256:cc5d972cb2ba30e147c76202dc315a08bdba41906f808e95d8b134bfe446fc89_ppc64le", + "product_id": "openshift-service-mesh/ratelimit-rhel8@sha256:cc5d972cb2ba30e147c76202dc315a08bdba41906f808e95d8b134bfe446fc89_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ratelimit-rhel8@sha256:cc5d972cb2ba30e147c76202dc315a08bdba41906f808e95d8b134bfe446fc89?arch=ppc64le&repository_url=registry.redhat.io/openshift-service-mesh/ratelimit-rhel8&tag=2.2.12-1" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-service-mesh/istio-cni-rhel8@sha256:fcc2034b3448c92e1ac6c3848def79942238733d4acf03ae2e5a2b84be0c6545_s390x", + "product": { + "name": "openshift-service-mesh/istio-cni-rhel8@sha256:fcc2034b3448c92e1ac6c3848def79942238733d4acf03ae2e5a2b84be0c6545_s390x", + "product_id": "openshift-service-mesh/istio-cni-rhel8@sha256:fcc2034b3448c92e1ac6c3848def79942238733d4acf03ae2e5a2b84be0c6545_s390x", + "product_identification_helper": { + "purl": "pkg:oci/istio-cni-rhel8@sha256:fcc2034b3448c92e1ac6c3848def79942238733d4acf03ae2e5a2b84be0c6545?arch=s390x&repository_url=registry.redhat.io/openshift-service-mesh/istio-cni-rhel8&tag=2.2.12-2" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/grafana-rhel8@sha256:2ac0267f703527a6af7cf822ac8dc33f8e27a8784c2091c6894ea9d4faeff290_s390x", + "product": { + "name": "openshift-service-mesh/grafana-rhel8@sha256:2ac0267f703527a6af7cf822ac8dc33f8e27a8784c2091c6894ea9d4faeff290_s390x", + "product_id": "openshift-service-mesh/grafana-rhel8@sha256:2ac0267f703527a6af7cf822ac8dc33f8e27a8784c2091c6894ea9d4faeff290_s390x", + "product_identification_helper": { + "purl": "pkg:oci/grafana-rhel8@sha256:2ac0267f703527a6af7cf822ac8dc33f8e27a8784c2091c6894ea9d4faeff290?arch=s390x&repository_url=registry.redhat.io/openshift-service-mesh/grafana-rhel8&tag=2.2.12-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/kiali-rhel8@sha256:b426bab535c9417d2ed4951153ef03c06d95060a3378f8621b5eb3436995aa8e_s390x", + "product": { + "name": "openshift-service-mesh/kiali-rhel8@sha256:b426bab535c9417d2ed4951153ef03c06d95060a3378f8621b5eb3436995aa8e_s390x", + "product_id": "openshift-service-mesh/kiali-rhel8@sha256:b426bab535c9417d2ed4951153ef03c06d95060a3378f8621b5eb3436995aa8e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/kiali-rhel8@sha256:b426bab535c9417d2ed4951153ef03c06d95060a3378f8621b5eb3436995aa8e?arch=s390x&repository_url=registry.redhat.io/openshift-service-mesh/kiali-rhel8&tag=1.48.11-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/istio-must-gather-rhel8@sha256:7834412d7ae6f8d1b4610a373245a675904f141534211e56657f47be68ff35a2_s390x", + "product": { + "name": "openshift-service-mesh/istio-must-gather-rhel8@sha256:7834412d7ae6f8d1b4610a373245a675904f141534211e56657f47be68ff35a2_s390x", + "product_id": "openshift-service-mesh/istio-must-gather-rhel8@sha256:7834412d7ae6f8d1b4610a373245a675904f141534211e56657f47be68ff35a2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/istio-must-gather-rhel8@sha256:7834412d7ae6f8d1b4610a373245a675904f141534211e56657f47be68ff35a2?arch=s390x&repository_url=registry.redhat.io/openshift-service-mesh/istio-must-gather-rhel8&tag=2.2.12-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/pilot-rhel8@sha256:b654048f91103418e1c503a9b45b9890c868892e746218fb26a6768a842a6310_s390x", + "product": { + "name": "openshift-service-mesh/pilot-rhel8@sha256:b654048f91103418e1c503a9b45b9890c868892e746218fb26a6768a842a6310_s390x", + "product_id": "openshift-service-mesh/pilot-rhel8@sha256:b654048f91103418e1c503a9b45b9890c868892e746218fb26a6768a842a6310_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pilot-rhel8@sha256:b654048f91103418e1c503a9b45b9890c868892e746218fb26a6768a842a6310?arch=s390x&repository_url=registry.redhat.io/openshift-service-mesh/pilot-rhel8&tag=2.2.12-2" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/prometheus-rhel8@sha256:681efb513c3eb27dce5e1225964fb1f076e7f5d5951ea0fcbf12ebe633df0602_s390x", + "product": { + "name": "openshift-service-mesh/prometheus-rhel8@sha256:681efb513c3eb27dce5e1225964fb1f076e7f5d5951ea0fcbf12ebe633df0602_s390x", + "product_id": "openshift-service-mesh/prometheus-rhel8@sha256:681efb513c3eb27dce5e1225964fb1f076e7f5d5951ea0fcbf12ebe633df0602_s390x", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-rhel8@sha256:681efb513c3eb27dce5e1225964fb1f076e7f5d5951ea0fcbf12ebe633df0602?arch=s390x&repository_url=registry.redhat.io/openshift-service-mesh/prometheus-rhel8&tag=2.2.12-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/proxyv2-rhel8@sha256:7cc28d4baf68ca0902d7dc44d9fc2a9ac626268fd4320d17caa3f22cc08618c1_s390x", + "product": { + "name": "openshift-service-mesh/proxyv2-rhel8@sha256:7cc28d4baf68ca0902d7dc44d9fc2a9ac626268fd4320d17caa3f22cc08618c1_s390x", + "product_id": "openshift-service-mesh/proxyv2-rhel8@sha256:7cc28d4baf68ca0902d7dc44d9fc2a9ac626268fd4320d17caa3f22cc08618c1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/proxyv2-rhel8@sha256:7cc28d4baf68ca0902d7dc44d9fc2a9ac626268fd4320d17caa3f22cc08618c1?arch=s390x&repository_url=registry.redhat.io/openshift-service-mesh/proxyv2-rhel8&tag=2.2.12-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/ratelimit-rhel8@sha256:096bf95cdba671943bb9f7ec5f804201c1cf06607a164c7b76ef745c26c82d73_s390x", + "product": { + "name": "openshift-service-mesh/ratelimit-rhel8@sha256:096bf95cdba671943bb9f7ec5f804201c1cf06607a164c7b76ef745c26c82d73_s390x", + "product_id": "openshift-service-mesh/ratelimit-rhel8@sha256:096bf95cdba671943bb9f7ec5f804201c1cf06607a164c7b76ef745c26c82d73_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ratelimit-rhel8@sha256:096bf95cdba671943bb9f7ec5f804201c1cf06607a164c7b76ef745c26c82d73?arch=s390x&repository_url=registry.redhat.io/openshift-service-mesh/ratelimit-rhel8&tag=2.2.12-1" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64", + "product": { + "name": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64", + "product_id": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@20.8.1-1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64", + "product": { + "name": "nodejs-debuginfo-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64", + "product_id": "nodejs-debuginfo-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@20.8.1-1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64", + "product": { + "name": "nodejs-debugsource-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64", + "product_id": "nodejs-debugsource-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@20.8.1-1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-devel-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64", + "product": { + "name": "nodejs-devel-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64", + "product_id": "nodejs-devel-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-devel@20.8.1-1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64", + "product": { + "name": "nodejs-full-i18n-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64", + "product_id": "nodejs-full-i18n-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@20.8.1-1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:10.1.0-1.20.8.1.1.module+el8.9.0+20473+c4e3d824.aarch64", + "product": { + "name": "npm-1:10.1.0-1.20.8.1.1.module+el8.9.0+20473+c4e3d824.aarch64", + "product_id": "npm-1:10.1.0-1.20.8.1.1.module+el8.9.0+20473+c4e3d824.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@10.1.0-1.20.8.1.1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=aarch64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.src", + "product": { + "name": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.src", + "product_id": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@20.8.1-1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-nodemon-0:3.0.1-1.module+el8.9.0+20473+c4e3d824.src", + "product": { + "name": "nodejs-nodemon-0:3.0.1-1.module+el8.9.0+20473+c4e3d824.src", + "product_id": "nodejs-nodemon-0:3.0.1-1.module+el8.9.0+20473+c4e3d824.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-nodemon@3.0.1-1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=src" + } + } + }, + { + "category": "product_version", + "name": "nodejs-packaging-0:2021.06-4.module+el8.9.0+19519+e25b965a.src", + "product": { + "name": "nodejs-packaging-0:2021.06-4.module+el8.9.0+19519+e25b965a.src", + "product_id": "nodejs-packaging-0:2021.06-4.module+el8.9.0+19519+e25b965a.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-packaging@2021.06-4.module%2Bel8.9.0%2B19519%2Be25b965a?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-docs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.noarch", + "product": { + "name": "nodejs-docs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.noarch", + "product_id": "nodejs-docs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-docs@20.8.1-1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-nodemon-0:3.0.1-1.module+el8.9.0+20473+c4e3d824.noarch", + "product": { + "name": "nodejs-nodemon-0:3.0.1-1.module+el8.9.0+20473+c4e3d824.noarch", + "product_id": "nodejs-nodemon-0:3.0.1-1.module+el8.9.0+20473+c4e3d824.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-nodemon@3.0.1-1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "nodejs-packaging-0:2021.06-4.module+el8.9.0+19519+e25b965a.noarch", + "product": { + "name": "nodejs-packaging-0:2021.06-4.module+el8.9.0+19519+e25b965a.noarch", + "product_id": "nodejs-packaging-0:2021.06-4.module+el8.9.0+19519+e25b965a.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-packaging@2021.06-4.module%2Bel8.9.0%2B19519%2Be25b965a?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "nodejs-packaging-bundler-0:2021.06-4.module+el8.9.0+19519+e25b965a.noarch", + "product": { + "name": "nodejs-packaging-bundler-0:2021.06-4.module+el8.9.0+19519+e25b965a.noarch", + "product_id": "nodejs-packaging-bundler-0:2021.06-4.module+el8.9.0+19519+e25b965a.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-packaging-bundler@2021.06-4.module%2Bel8.9.0%2B19519%2Be25b965a?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le", + "product": { + "name": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le", + "product_id": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@20.8.1-1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le", + "product": { + "name": "nodejs-debuginfo-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le", + "product_id": "nodejs-debuginfo-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@20.8.1-1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le", + "product": { + "name": "nodejs-debugsource-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le", + "product_id": "nodejs-debugsource-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@20.8.1-1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-devel-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le", + "product": { + "name": "nodejs-devel-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le", + "product_id": "nodejs-devel-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-devel@20.8.1-1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le", + "product": { + "name": "nodejs-full-i18n-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le", + "product_id": "nodejs-full-i18n-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@20.8.1-1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:10.1.0-1.20.8.1.1.module+el8.9.0+20473+c4e3d824.ppc64le", + "product": { + "name": "npm-1:10.1.0-1.20.8.1.1.module+el8.9.0+20473+c4e3d824.ppc64le", + "product_id": "npm-1:10.1.0-1.20.8.1.1.module+el8.9.0+20473+c4e3d824.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@10.1.0-1.20.8.1.1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=ppc64le&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x", + "product": { + "name": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x", + "product_id": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@20.8.1-1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x", + "product": { + "name": "nodejs-debuginfo-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x", + "product_id": "nodejs-debuginfo-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@20.8.1-1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x", + "product": { + "name": "nodejs-debugsource-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x", + "product_id": "nodejs-debugsource-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@20.8.1-1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-devel-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x", + "product": { + "name": "nodejs-devel-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x", + "product_id": "nodejs-devel-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-devel@20.8.1-1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x", + "product": { + "name": "nodejs-full-i18n-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x", + "product_id": "nodejs-full-i18n-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@20.8.1-1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:10.1.0-1.20.8.1.1.module+el8.9.0+20473+c4e3d824.s390x", + "product": { + "name": "npm-1:10.1.0-1.20.8.1.1.module+el8.9.0+20473+c4e3d824.s390x", + "product_id": "npm-1:10.1.0-1.20.8.1.1.module+el8.9.0+20473+c4e3d824.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@10.1.0-1.20.8.1.1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=s390x&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64", + "product": { + "name": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64", + "product_id": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@20.8.1-1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64", + "product": { + "name": "nodejs-debuginfo-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64", + "product_id": "nodejs-debuginfo-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@20.8.1-1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64", + "product": { + "name": "nodejs-debugsource-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64", + "product_id": "nodejs-debugsource-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@20.8.1-1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-devel-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64", + "product": { + "name": "nodejs-devel-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64", + "product_id": "nodejs-devel-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-devel@20.8.1-1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64", + "product": { + "name": "nodejs-full-i18n-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64", + "product_id": "nodejs-full-i18n-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@20.8.1-1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:10.1.0-1.20.8.1.1.module+el8.9.0+20473+c4e3d824.x86_64", + "product": { + "name": "npm-1:10.1.0-1.20.8.1.1.module+el8.9.0+20473+c4e3d824.x86_64", + "product_id": "npm-1:10.1.0-1.20.8.1.1.module+el8.9.0+20473+c4e3d824.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@10.1.0-1.20.8.1.1.module%2Bel8.9.0%2B20473%2Bc4e3d824?arch=x86_64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.src", + "product": { + "name": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.src", + "product_id": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ansible-collection-redhat-satellite@3.14.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.src", + "product": { + "name": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.src", + "product_id": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ansible-collection-redhat-satellite_operations@2.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "ansible-lint-0:5.0.8-4.el8pc.src", + "product": { + "name": "ansible-lint-0:5.0.8-4.el8pc.src", + "product_id": "ansible-lint-0:5.0.8-4.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ansible-lint@5.0.8-4.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.src", + "product": { + "name": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.src", + "product_id": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ansiblerole-foreman_scap_client@0.2.0-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "ansiblerole-insights-client-0:1.7.1-2.el8sat.src", + "product": { + "name": "ansiblerole-insights-client-0:1.7.1-2.el8sat.src", + "product_id": "ansiblerole-insights-client-0:1.7.1-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ansiblerole-insights-client@1.7.1-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "ansible-runner-0:2.2.1-3.el8sat.src", + "product": { + "name": "ansible-runner-0:2.2.1-3.el8sat.src", + "product_id": "ansible-runner-0:2.2.1-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ansible-runner@2.2.1-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "candlepin-0:4.3.1-1.el8sat.src", + "product": { + "name": "candlepin-0:4.3.1-1.el8sat.src", + "product_id": "candlepin-0:4.3.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/candlepin@4.3.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "cjson-0:1.7.14-5.el8sat.src", + "product": { + "name": "cjson-0:1.7.14-5.el8sat.src", + "product_id": "cjson-0:1.7.14-5.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cjson@1.7.14-5.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "createrepo_c-0:0.20.1-1.el8pc.src", + "product": { + "name": "createrepo_c-0:0.20.1-1.el8pc.src", + "product_id": "createrepo_c-0:0.20.1-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/createrepo_c@0.20.1-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "dynflow-utils-0:1.6.3-1.el8sat.src", + "product": { + "name": "dynflow-utils-0:1.6.3-1.el8sat.src", + "product_id": "dynflow-utils-0:1.6.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dynflow-utils@1.6.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "foreman-0:3.7.0.9-1.el8sat.src", + "product": { + "name": "foreman-0:3.7.0.9-1.el8sat.src", + "product_id": "foreman-0:3.7.0.9-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman@3.7.0.9-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.src", + "product": { + "name": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.src", + "product_id": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-bootloaders-redhat@202102220000-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "foreman-discovery-image-1:4.1.0-10.el8sat.src", + "product": { + "name": "foreman-discovery-image-1:4.1.0-10.el8sat.src", + "product_id": "foreman-discovery-image-1:4.1.0-10.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-discovery-image@4.1.0-10.el8sat?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.src", + "product": { + "name": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.src", + "product_id": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-discovery-image-service@1.0.0-4.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "foreman-installer-1:3.7.0.4-1.el8sat.src", + "product": { + "name": "foreman-installer-1:3.7.0.4-1.el8sat.src", + "product_id": "foreman-installer-1:3.7.0.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-installer@3.7.0.4-1.el8sat?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "foreman-obsolete-packages-0:1.5-1.el8sat.src", + "product": { + "name": "foreman-obsolete-packages-0:1.5-1.el8sat.src", + "product_id": "foreman-obsolete-packages-0:1.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-obsolete-packages@1.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "foreman-proxy-0:3.7.0-1.el8sat.src", + "product": { + "name": "foreman-proxy-0:3.7.0-1.el8sat.src", + "product_id": "foreman-proxy-0:3.7.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-proxy@3.7.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "foreman-selinux-0:3.7.0-1.el8sat.src", + "product": { + "name": "foreman-selinux-0:3.7.0-1.el8sat.src", + "product_id": "foreman-selinux-0:3.7.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-selinux@3.7.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "katello-0:4.9.0-1.el8sat.src", + "product": { + "name": "katello-0:4.9.0-1.el8sat.src", + "product_id": "katello-0:4.9.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/katello@4.9.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "katello-certs-tools-0:2.9.0-2.el8sat.src", + "product": { + "name": "katello-certs-tools-0:2.9.0-2.el8sat.src", + "product_id": "katello-certs-tools-0:2.9.0-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/katello-certs-tools@2.9.0-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "katello-client-bootstrap-0:1.7.9-1.el8sat.src", + "product": { + "name": "katello-client-bootstrap-0:1.7.9-1.el8sat.src", + "product_id": "katello-client-bootstrap-0:1.7.9-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/katello-client-bootstrap@1.7.9-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "katello-selinux-0:5.0.2-1.el8sat.src", + "product": { + "name": "katello-selinux-0:5.0.2-1.el8sat.src", + "product_id": "katello-selinux-0:5.0.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/katello-selinux@5.0.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "libcomps-0:0.1.18-4.el8pc.src", + "product": { + "name": "libcomps-0:0.1.18-4.el8pc.src", + "product_id": "libcomps-0:0.1.18-4.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libcomps@0.1.18-4.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "libsodium-0:1.0.17-3.el8sat.src", + "product": { + "name": "libsodium-0:1.0.17-3.el8sat.src", + "product_id": "libsodium-0:1.0.17-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libsodium@1.0.17-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "libsolv-0:0.7.22-4.el8pc.src", + "product": { + "name": "libsolv-0:0.7.22-4.el8pc.src", + "product_id": "libsolv-0:0.7.22-4.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libsolv@0.7.22-4.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "libwebsockets-0:2.4.2-2.el8.src", + "product": { + "name": "libwebsockets-0:2.4.2-2.el8.src", + "product_id": "libwebsockets-0:2.4.2-2.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libwebsockets@2.4.2-2.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "mosquitto-0:2.0.14-1.el8sat.src", + "product": { + "name": "mosquitto-0:2.0.14-1.el8sat.src", + "product_id": "mosquitto-0:2.0.14-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/mosquitto@2.0.14-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "postgresql-evr-0:0.0.2-1.el8sat.src", + "product": { + "name": "postgresql-evr-0:0.0.2-1.el8sat.src", + "product_id": "postgresql-evr-0:0.0.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/postgresql-evr@0.0.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "pulpcore-selinux-0:1.3.3-1.el8pc.src", + "product": { + "name": "pulpcore-selinux-0:1.3.3-1.el8pc.src", + "product_id": "pulpcore-selinux-0:1.3.3-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/pulpcore-selinux@1.3.3-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el8sat.src", + "product": { + "name": "puppet-agent-0:7.26.0-3.el8sat.src", + "product_id": "puppet-agent-0:7.26.0-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "puppet-agent-oauth-0:0.5.10-1.el8sat.src", + "product": { + "name": "puppet-agent-oauth-0:0.5.10-1.el8sat.src", + "product_id": "puppet-agent-oauth-0:0.5.10-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent-oauth@0.5.10-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.src", + "product": { + "name": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.src", + "product_id": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-foreman_scap_client@0.4.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "puppetlabs-stdlib-0:5.2.0-1.el8sat.src", + "product": { + "name": "puppetlabs-stdlib-0:5.2.0-1.el8sat.src", + "product_id": "puppetlabs-stdlib-0:5.2.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppetlabs-stdlib@5.2.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "puppetserver-0:7.11.0-1.el8sat.src", + "product": { + "name": "puppetserver-0:7.11.0-1.el8sat.src", + "product_id": "puppetserver-0:7.11.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppetserver@7.11.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-aiodns-0:3.0.0-3.el8pc.src", + "product": { + "name": "python-aiodns-0:3.0.0-3.el8pc.src", + "product_id": "python-aiodns-0:3.0.0-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-aiodns@3.0.0-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-aiofiles-0:22.1.0-1.el8pc.src", + "product": { + "name": "python-aiofiles-0:22.1.0-1.el8pc.src", + "product_id": "python-aiofiles-0:22.1.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-aiofiles@22.1.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-aiohttp-0:3.8.3-2.el8pc.src", + "product": { + "name": "python-aiohttp-0:3.8.3-2.el8pc.src", + "product_id": "python-aiohttp-0:3.8.3-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-aiohttp@3.8.3-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-aiohttp-xmlrpc-0:1.5.0-2.el8pc.src", + "product": { + "name": "python-aiohttp-xmlrpc-0:1.5.0-2.el8pc.src", + "product_id": "python-aiohttp-xmlrpc-0:1.5.0-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-aiohttp-xmlrpc@1.5.0-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-aioredis-0:2.0.1-2.el8pc.src", + "product": { + "name": "python-aioredis-0:2.0.1-2.el8pc.src", + "product_id": "python-aioredis-0:2.0.1-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-aioredis@2.0.1-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-aiosignal-0:1.3.1-1.el8pc.src", + "product": { + "name": "python-aiosignal-0:1.3.1-1.el8pc.src", + "product_id": "python-aiosignal-0:1.3.1-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-aiosignal@1.3.1-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-ansible-builder-0:1.0.1-4.el8pc.src", + "product": { + "name": "python-ansible-builder-0:1.0.1-4.el8pc.src", + "product_id": "python-ansible-builder-0:1.0.1-4.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-ansible-builder@1.0.1-4.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-asgiref-0:3.6.0-1.el8pc.src", + "product": { + "name": "python-asgiref-0:3.6.0-1.el8pc.src", + "product_id": "python-asgiref-0:3.6.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-asgiref@3.6.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-asyncio-throttle-0:1.0.2-3.el8pc.src", + "product": { + "name": "python-asyncio-throttle-0:1.0.2-3.el8pc.src", + "product_id": "python-asyncio-throttle-0:1.0.2-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-asyncio-throttle@1.0.2-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-async-lru-0:1.0.3-1.el8pc.src", + "product": { + "name": "python-async-lru-0:1.0.3-1.el8pc.src", + "product_id": "python-async-lru-0:1.0.3-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-async-lru@1.0.3-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-async-timeout-0:4.0.2-2.el8pc.src", + "product": { + "name": "python-async-timeout-0:4.0.2-2.el8pc.src", + "product_id": "python-async-timeout-0:4.0.2-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-async-timeout@4.0.2-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-attrs-0:21.4.0-2.el8pc.src", + "product": { + "name": "python-attrs-0:21.4.0-2.el8pc.src", + "product_id": "python-attrs-0:21.4.0-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-attrs@21.4.0-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-backoff-0:2.2.1-1.el8pc.src", + "product": { + "name": "python-backoff-0:2.2.1-1.el8pc.src", + "product_id": "python-backoff-0:2.2.1-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-backoff@2.2.1-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-bindep-0:2.11.0-2.el8pc.src", + "product": { + "name": "python-bindep-0:2.11.0-2.el8pc.src", + "product_id": "python-bindep-0:2.11.0-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-bindep@2.11.0-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-bleach-0:3.3.1-2.el8pc.src", + "product": { + "name": "python-bleach-0:3.3.1-2.el8pc.src", + "product_id": "python-bleach-0:3.3.1-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-bleach@3.3.1-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-bleach-allowlist-0:1.0.3-3.el8pc.src", + "product": { + "name": "python-bleach-allowlist-0:1.0.3-3.el8pc.src", + "product_id": "python-bleach-allowlist-0:1.0.3-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-bleach-allowlist@1.0.3-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-bracex-0:2.2.1-2.el8pc.src", + "product": { + "name": "python-bracex-0:2.2.1-2.el8pc.src", + "product_id": "python-bracex-0:2.2.1-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-bracex@2.2.1-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-brotli-0:1.0.9-2.el8pc.src", + "product": { + "name": "python-brotli-0:1.0.9-2.el8pc.src", + "product_id": "python-brotli-0:1.0.9-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-brotli@1.0.9-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-cchardet-0:2.1.7-4.el8pc.src", + "product": { + "name": "python-cchardet-0:2.1.7-4.el8pc.src", + "product_id": "python-cchardet-0:2.1.7-4.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-cchardet@2.1.7-4.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-certifi-0:2022.12.7-1.1.el8pc.src", + "product": { + "name": "python-certifi-0:2022.12.7-1.1.el8pc.src", + "product_id": "python-certifi-0:2022.12.7-1.1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-certifi@2022.12.7-1.1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-cffi-0:1.15.1-1.el8pc.src", + "product": { + "name": "python-cffi-0:1.15.1-1.el8pc.src", + "product_id": "python-cffi-0:1.15.1-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-cffi@1.15.1-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-chardet-0:5.0.0-1.el8pc.src", + "product": { + "name": "python-chardet-0:5.0.0-1.el8pc.src", + "product_id": "python-chardet-0:5.0.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-chardet@5.0.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-charset-normalizer-0:2.1.1-1.el8pc.src", + "product": { + "name": "python-charset-normalizer-0:2.1.1-1.el8pc.src", + "product_id": "python-charset-normalizer-0:2.1.1-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-charset-normalizer@2.1.1-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-click-0:8.1.3-1.el8pc.src", + "product": { + "name": "python-click-0:8.1.3-1.el8pc.src", + "product_id": "python-click-0:8.1.3-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-click@8.1.3-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-click-shell-0:2.1-3.el8pc.src", + "product": { + "name": "python-click-shell-0:2.1-3.el8pc.src", + "product_id": "python-click-shell-0:2.1-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-click-shell@2.1-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-colorama-0:0.4.4-3.el8pc.src", + "product": { + "name": "python-colorama-0:0.4.4-3.el8pc.src", + "product_id": "python-colorama-0:0.4.4-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-colorama@0.4.4-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-commonmark-0:0.9.1-5.el8pc.src", + "product": { + "name": "python-commonmark-0:0.9.1-5.el8pc.src", + "product_id": "python-commonmark-0:0.9.1-5.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-commonmark@0.9.1-5.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-contextlib2-0:21.6.0-3.el8pc.src", + "product": { + "name": "python-contextlib2-0:21.6.0-3.el8pc.src", + "product_id": "python-contextlib2-0:21.6.0-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-contextlib2@21.6.0-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-cryptography-0:38.0.4-1.el8pc.src", + "product": { + "name": "python-cryptography-0:38.0.4-1.el8pc.src", + "product_id": "python-cryptography-0:38.0.4-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-cryptography@38.0.4-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-daemon-0:2.3.1-1.1.el8sat.src", + "product": { + "name": "python-daemon-0:2.3.1-1.1.el8sat.src", + "product_id": "python-daemon-0:2.3.1-1.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-daemon@2.3.1-1.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-dataclasses-0:0.8-3.el8pc.src", + "product": { + "name": "python-dataclasses-0:0.8-3.el8pc.src", + "product_id": "python-dataclasses-0:0.8-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-dataclasses@0.8-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-dateutil-0:2.8.2-2.el8pc.src", + "product": { + "name": "python-dateutil-0:2.8.2-2.el8pc.src", + "product_id": "python-dateutil-0:2.8.2-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-dateutil@2.8.2-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-debian-0:0.1.44-3.el8pc.src", + "product": { + "name": "python-debian-0:0.1.44-3.el8pc.src", + "product_id": "python-debian-0:0.1.44-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-debian@0.1.44-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-defusedxml-0:0.7.1-3.el8pc.src", + "product": { + "name": "python-defusedxml-0:0.7.1-3.el8pc.src", + "product_id": "python-defusedxml-0:0.7.1-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-defusedxml@0.7.1-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-deprecated-0:1.2.13-1.el8pc.src", + "product": { + "name": "python-deprecated-0:1.2.13-1.el8pc.src", + "product_id": "python-deprecated-0:1.2.13-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-deprecated@1.2.13-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-diff-match-patch-0:20200713-3.el8pc.src", + "product": { + "name": "python-diff-match-patch-0:20200713-3.el8pc.src", + "product_id": "python-diff-match-patch-0:20200713-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-diff-match-patch@20200713-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-distro-0:1.7.0-1.el8pc.src", + "product": { + "name": "python-distro-0:1.7.0-1.el8pc.src", + "product_id": "python-distro-0:1.7.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-distro@1.7.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-django-0:3.2.21-1.el8pc.src", + "product": { + "name": "python-django-0:3.2.21-1.el8pc.src", + "product_id": "python-django-0:3.2.21-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-django@3.2.21-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-django-currentuser-0:0.5.3-5.el8pc.src", + "product": { + "name": "python-django-currentuser-0:0.5.3-5.el8pc.src", + "product_id": "python-django-currentuser-0:0.5.3-5.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-django-currentuser@0.5.3-5.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-django-filter-0:22.1-2.el8pc.src", + "product": { + "name": "python-django-filter-0:22.1-2.el8pc.src", + "product_id": "python-django-filter-0:22.1-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-django-filter@22.1-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-django-guid-0:3.3.0-1.el8pc.src", + "product": { + "name": "python-django-guid-0:3.3.0-1.el8pc.src", + "product_id": "python-django-guid-0:3.3.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-django-guid@3.3.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-django-import-export-0:3.0.2-1.el8pc.src", + "product": { + "name": "python-django-import-export-0:3.0.2-1.el8pc.src", + "product_id": "python-django-import-export-0:3.0.2-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-django-import-export@3.0.2-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-django-lifecycle-0:1.0.0-1.el8pc.src", + "product": { + "name": "python-django-lifecycle-0:1.0.0-1.el8pc.src", + "product_id": "python-django-lifecycle-0:1.0.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-django-lifecycle@1.0.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-django-readonly-field-0:1.1.2-1.el8pc.src", + "product": { + "name": "python-django-readonly-field-0:1.1.2-1.el8pc.src", + "product_id": "python-django-readonly-field-0:1.1.2-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-django-readonly-field@1.1.2-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-djangorestframework-0:3.14.0-1.el8pc.src", + "product": { + "name": "python-djangorestframework-0:3.14.0-1.el8pc.src", + "product_id": "python-djangorestframework-0:3.14.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-djangorestframework@3.14.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-djangorestframework-queryfields-0:1.0.0-5.el8pc.src", + "product": { + "name": "python-djangorestframework-queryfields-0:1.0.0-5.el8pc.src", + "product_id": "python-djangorestframework-queryfields-0:1.0.0-5.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-djangorestframework-queryfields@1.0.0-5.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-docutils-0:0.19-1.1.el8sat.src", + "product": { + "name": "python-docutils-0:0.19-1.1.el8sat.src", + "product_id": "python-docutils-0:0.19-1.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-docutils@0.19-1.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-drf-access-policy-0:1.3.0-1.el8pc.src", + "product": { + "name": "python-drf-access-policy-0:1.3.0-1.el8pc.src", + "product_id": "python-drf-access-policy-0:1.3.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-drf-access-policy@1.3.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-drf-nested-routers-0:0.93.4-3.el8pc.src", + "product": { + "name": "python-drf-nested-routers-0:0.93.4-3.el8pc.src", + "product_id": "python-drf-nested-routers-0:0.93.4-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-drf-nested-routers@0.93.4-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-drf-spectacular-0:0.25.0-1.el8pc.src", + "product": { + "name": "python-drf-spectacular-0:0.25.0-1.el8pc.src", + "product_id": "python-drf-spectacular-0:0.25.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-drf-spectacular@0.25.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-dynaconf-0:3.1.11-1.el8pc.src", + "product": { + "name": "python-dynaconf-0:3.1.11-1.el8pc.src", + "product_id": "python-dynaconf-0:3.1.11-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-dynaconf@3.1.11-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-ecdsa-0:0.18.0-1.el8pc.src", + "product": { + "name": "python-ecdsa-0:0.18.0-1.el8pc.src", + "product_id": "python-ecdsa-0:0.18.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-ecdsa@0.18.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-enrich-0:1.2.6-5.el8pc.src", + "product": { + "name": "python-enrich-0:1.2.6-5.el8pc.src", + "product_id": "python-enrich-0:1.2.6-5.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-enrich@1.2.6-5.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-et-xmlfile-0:1.1.0-2.el8pc.src", + "product": { + "name": "python-et-xmlfile-0:1.1.0-2.el8pc.src", + "product_id": "python-et-xmlfile-0:1.1.0-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-et-xmlfile@1.1.0-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-flake8-0:3.9.2-5.el8pc.src", + "product": { + "name": "python-flake8-0:3.9.2-5.el8pc.src", + "product_id": "python-flake8-0:3.9.2-5.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-flake8@3.9.2-5.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-frozenlist-0:1.3.3-1.el8pc.src", + "product": { + "name": "python-frozenlist-0:1.3.3-1.el8pc.src", + "product_id": "python-frozenlist-0:1.3.3-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-frozenlist@1.3.3-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-future-0:0.18.3-1.el8pc.src", + "product": { + "name": "python-future-0:0.18.3-1.el8pc.src", + "product_id": "python-future-0:0.18.3-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-future@0.18.3-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-galaxy-importer-0:0.4.6-1.el8pc.src", + "product": { + "name": "python-galaxy-importer-0:0.4.6-1.el8pc.src", + "product_id": "python-galaxy-importer-0:0.4.6-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-galaxy-importer@0.4.6-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-gitdb-0:4.0.10-1.el8pc.src", + "product": { + "name": "python-gitdb-0:4.0.10-1.el8pc.src", + "product_id": "python-gitdb-0:4.0.10-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-gitdb@4.0.10-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-gitpython-0:3.1.32-1.el8pc.src", + "product": { + "name": "python-gitpython-0:3.1.32-1.el8pc.src", + "product_id": "python-gitpython-0:3.1.32-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-gitpython@3.1.32-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-gnupg-0:0.5.0-1.el8pc.src", + "product": { + "name": "python-gnupg-0:0.5.0-1.el8pc.src", + "product_id": "python-gnupg-0:0.5.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-gnupg@0.5.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-gunicorn-0:20.1.0-5.el8pc.src", + "product": { + "name": "python-gunicorn-0:20.1.0-5.el8pc.src", + "product_id": "python-gunicorn-0:20.1.0-5.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-gunicorn@20.1.0-5.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-idna-0:3.3-2.el8pc.src", + "product": { + "name": "python-idna-0:3.3-2.el8pc.src", + "product_id": "python-idna-0:3.3-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-idna@3.3-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-idna-ssl-0:1.1.0-5.el8pc.src", + "product": { + "name": "python-idna-ssl-0:1.1.0-5.el8pc.src", + "product_id": "python-idna-ssl-0:1.1.0-5.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-idna-ssl@1.1.0-5.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-importlib-metadata-0:4.10.1-2.el8pc.src", + "product": { + "name": "python-importlib-metadata-0:4.10.1-2.el8pc.src", + "product_id": "python-importlib-metadata-0:4.10.1-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-importlib-metadata@4.10.1-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-inflection-0:0.5.1-3.el8pc.src", + "product": { + "name": "python-inflection-0:0.5.1-3.el8pc.src", + "product_id": "python-inflection-0:0.5.1-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-inflection@0.5.1-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-iniparse-0:0.4-35.el8pc.src", + "product": { + "name": "python-iniparse-0:0.4-35.el8pc.src", + "product_id": "python-iniparse-0:0.4-35.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-iniparse@0.4-35.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-jinja2-0:3.1.2-1.el8pc.src", + "product": { + "name": "python-jinja2-0:3.1.2-1.el8pc.src", + "product_id": "python-jinja2-0:3.1.2-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-jinja2@3.1.2-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-jsonschema-0:4.9.1-1.el8pc.src", + "product": { + "name": "python-jsonschema-0:4.9.1-1.el8pc.src", + "product_id": "python-jsonschema-0:4.9.1-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-jsonschema@4.9.1-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-lockfile-0:0.12.2-1.el8sat.src", + "product": { + "name": "python-lockfile-0:0.12.2-1.el8sat.src", + "product_id": "python-lockfile-0:0.12.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-lockfile@0.12.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-lxml-0:4.9.2-1.el8pc.src", + "product": { + "name": "python-lxml-0:4.9.2-1.el8pc.src", + "product_id": "python-lxml-0:4.9.2-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-lxml@4.9.2-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-markdown-0:3.4.1-1.el8pc.src", + "product": { + "name": "python-markdown-0:3.4.1-1.el8pc.src", + "product_id": "python-markdown-0:3.4.1-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-markdown@3.4.1-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-markuppy-0:1.14-3.el8pc.src", + "product": { + "name": "python-markuppy-0:1.14-3.el8pc.src", + "product_id": "python-markuppy-0:1.14-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-markuppy@1.14-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-markupsafe-0:2.1.2-1.el8pc.src", + "product": { + "name": "python-markupsafe-0:2.1.2-1.el8pc.src", + "product_id": "python-markupsafe-0:2.1.2-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-markupsafe@2.1.2-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-mccabe-0:0.6.1-3.el8pc.src", + "product": { + "name": "python-mccabe-0:0.6.1-3.el8pc.src", + "product_id": "python-mccabe-0:0.6.1-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-mccabe@0.6.1-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-multidict-0:6.0.4-1.el8pc.src", + "product": { + "name": "python-multidict-0:6.0.4-1.el8pc.src", + "product_id": "python-multidict-0:6.0.4-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-multidict@6.0.4-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-naya-0:1.1.1-3.el8pc.src", + "product": { + "name": "python-naya-0:1.1.1-3.el8pc.src", + "product_id": "python-naya-0:1.1.1-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-naya@1.1.1-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-odfpy-0:1.4.1-6.el8pc.src", + "product": { + "name": "python-odfpy-0:1.4.1-6.el8pc.src", + "product_id": "python-odfpy-0:1.4.1-6.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-odfpy@1.4.1-6.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-openpyxl-0:3.1.0-1.el8pc.src", + "product": { + "name": "python-openpyxl-0:3.1.0-1.el8pc.src", + "product_id": "python-openpyxl-0:3.1.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-openpyxl@3.1.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-packaging-0:21.3-1.el8pc.src", + "product": { + "name": "python-packaging-0:21.3-1.el8pc.src", + "product_id": "python-packaging-0:21.3-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-packaging@21.3-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-parsley-0:1.3-2.el8pc.src", + "product": { + "name": "python-parsley-0:1.3-2.el8pc.src", + "product_id": "python-parsley-0:1.3-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-parsley@1.3-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pbr-0:5.8.0-4.el8pc.src", + "product": { + "name": "python-pbr-0:5.8.0-4.el8pc.src", + "product_id": "python-pbr-0:5.8.0-4.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pbr@5.8.0-4.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pexpect-0:4.8.0-2.el8sat.src", + "product": { + "name": "python-pexpect-0:4.8.0-2.el8sat.src", + "product_id": "python-pexpect-0:4.8.0-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pexpect@4.8.0-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-productmd-0:1.33-3.el8pc.src", + "product": { + "name": "python-productmd-0:1.33-3.el8pc.src", + "product_id": "python-productmd-0:1.33-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-productmd@1.33-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-protobuf-0:4.21.6-1.el8pc.src", + "product": { + "name": "python-protobuf-0:4.21.6-1.el8pc.src", + "product_id": "python-protobuf-0:4.21.6-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-protobuf@4.21.6-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-psycopg2-0:2.9.3-2.el8pc.src", + "product": { + "name": "python-psycopg2-0:2.9.3-2.el8pc.src", + "product_id": "python-psycopg2-0:2.9.3-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-psycopg2@2.9.3-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-ptyprocess-0:0.7.0-1.el8sat.src", + "product": { + "name": "python-ptyprocess-0:0.7.0-1.el8sat.src", + "product_id": "python-ptyprocess-0:0.7.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-ptyprocess@0.7.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pulp-ansible-1:0.16.0-1.el8pc.src", + "product": { + "name": "python-pulp-ansible-1:0.16.0-1.el8pc.src", + "product_id": "python-pulp-ansible-1:0.16.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pulp-ansible@0.16.0-1.el8pc?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "python-pulp-certguard-0:1.5.6-1.el8pc.src", + "product": { + "name": "python-pulp-certguard-0:1.5.6-1.el8pc.src", + "product_id": "python-pulp-certguard-0:1.5.6-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pulp-certguard@1.5.6-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pulp-cli-0:0.14.0-4.el8pc.src", + "product": { + "name": "python-pulp-cli-0:0.14.0-4.el8pc.src", + "product_id": "python-pulp-cli-0:0.14.0-4.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pulp-cli@0.14.0-4.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pulp-container-0:2.14.7-1.el8pc.src", + "product": { + "name": "python-pulp-container-0:2.14.7-1.el8pc.src", + "product_id": "python-pulp-container-0:2.14.7-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pulp-container@2.14.7-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pulp-deb-0:2.20.2-1.el8pc.src", + "product": { + "name": "python-pulp-deb-0:2.20.2-1.el8pc.src", + "product_id": "python-pulp-deb-0:2.20.2-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pulp-deb@2.20.2-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pulp-file-0:1.12.0-1.el8pc.src", + "product": { + "name": "python-pulp-file-0:1.12.0-1.el8pc.src", + "product_id": "python-pulp-file-0:1.12.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pulp-file@1.12.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pulp_manifest-0:3.0.0-3.el8pc.src", + "product": { + "name": "python-pulp_manifest-0:3.0.0-3.el8pc.src", + "product_id": "python-pulp_manifest-0:3.0.0-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pulp_manifest@3.0.0-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pulp-rpm-0:3.19.9-1.el8pc.src", + "product": { + "name": "python-pulp-rpm-0:3.19.9-1.el8pc.src", + "product_id": "python-pulp-rpm-0:3.19.9-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pulp-rpm@3.19.9-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pycares-0:4.1.2-2.el8pc.src", + "product": { + "name": "python-pycares-0:4.1.2-2.el8pc.src", + "product_id": "python-pycares-0:4.1.2-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pycares@4.1.2-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pycodestyle-0:2.7.0-5.el8pc.src", + "product": { + "name": "python-pycodestyle-0:2.7.0-5.el8pc.src", + "product_id": "python-pycodestyle-0:2.7.0-5.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pycodestyle@2.7.0-5.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pycparser-0:2.21-2.el8pc.src", + "product": { + "name": "python-pycparser-0:2.21-2.el8pc.src", + "product_id": "python-pycparser-0:2.21-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pycparser@2.21-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pycryptodomex-0:3.14.1-2.el8pc.src", + "product": { + "name": "python-pycryptodomex-0:3.14.1-2.el8pc.src", + "product_id": "python-pycryptodomex-0:3.14.1-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pycryptodomex@3.14.1-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pyflakes-0:2.3.1-5.el8pc.src", + "product": { + "name": "python-pyflakes-0:2.3.1-5.el8pc.src", + "product_id": "python-pyflakes-0:2.3.1-5.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pyflakes@2.3.1-5.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pygments-0:2.14.0-1.el8pc.src", + "product": { + "name": "python-pygments-0:2.14.0-1.el8pc.src", + "product_id": "python-pygments-0:2.14.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pygments@2.14.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pygtrie-0:2.5.0-1.el8pc.src", + "product": { + "name": "python-pygtrie-0:2.5.0-1.el8pc.src", + "product_id": "python-pygtrie-0:2.5.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pygtrie@2.5.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pyjwkest-0:1.4.2-6.el8pc.src", + "product": { + "name": "python-pyjwkest-0:1.4.2-6.el8pc.src", + "product_id": "python-pyjwkest-0:1.4.2-6.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pyjwkest@1.4.2-6.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pyjwt-0:2.5.0-2.el8pc.src", + "product": { + "name": "python-pyjwt-0:2.5.0-2.el8pc.src", + "product_id": "python-pyjwt-0:2.5.0-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pyjwt@2.5.0-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pyOpenSSL-0:22.1.0-1.el8pc.src", + "product": { + "name": "python-pyOpenSSL-0:22.1.0-1.el8pc.src", + "product_id": "python-pyOpenSSL-0:22.1.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pyOpenSSL@22.1.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pyparsing-0:2.4.7-3.el8pc.src", + "product": { + "name": "python-pyparsing-0:2.4.7-3.el8pc.src", + "product_id": "python-pyparsing-0:2.4.7-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pyparsing@2.4.7-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pyrsistent-0:0.18.1-2.el8pc.src", + "product": { + "name": "python-pyrsistent-0:0.18.1-2.el8pc.src", + "product_id": "python-pyrsistent-0:0.18.1-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pyrsistent@0.18.1-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pytz-0:2022.2.1-1.el8pc.src", + "product": { + "name": "python-pytz-0:2022.2.1-1.el8pc.src", + "product_id": "python-pytz-0:2022.2.1-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pytz@2022.2.1-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pyyaml-0:5.4.1-4.el8pc.src", + "product": { + "name": "python-pyyaml-0:5.4.1-4.el8pc.src", + "product_id": "python-pyyaml-0:5.4.1-4.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pyyaml@5.4.1-4.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-qpid-0:1.37.0-1.el8.src", + "product": { + "name": "python-qpid-0:1.37.0-1.el8.src", + "product_id": "python-qpid-0:1.37.0-1.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-qpid@1.37.0-1.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-redis-0:4.3.4-1.el8pc.src", + "product": { + "name": "python-redis-0:4.3.4-1.el8pc.src", + "product_id": "python-redis-0:4.3.4-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-redis@4.3.4-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-requests-0:2.31.0-1.el8pc.src", + "product": { + "name": "python-requests-0:2.31.0-1.el8pc.src", + "product_id": "python-requests-0:2.31.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-requests@2.31.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-requirements-parser-0:0.2.0-3.el8pc.src", + "product": { + "name": "python-requirements-parser-0:0.2.0-3.el8pc.src", + "product_id": "python-requirements-parser-0:0.2.0-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-requirements-parser@0.2.0-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-rhsm-0:1.19.2-3.el8pc.src", + "product": { + "name": "python-rhsm-0:1.19.2-3.el8pc.src", + "product_id": "python-rhsm-0:1.19.2-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-rhsm@1.19.2-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-rich-0:13.3.1-2.el8pc.src", + "product": { + "name": "python-rich-0:13.3.1-2.el8pc.src", + "product_id": "python-rich-0:13.3.1-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-rich@13.3.1-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-ruamel-yaml-0:0.17.21-2.el8pc.src", + "product": { + "name": "python-ruamel-yaml-0:0.17.21-2.el8pc.src", + "product_id": "python-ruamel-yaml-0:0.17.21-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-ruamel-yaml@0.17.21-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-ruamel-yaml-clib-0:0.2.7-1.el8pc.src", + "product": { + "name": "python-ruamel-yaml-clib-0:0.2.7-1.el8pc.src", + "product_id": "python-ruamel-yaml-clib-0:0.2.7-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-ruamel-yaml-clib@0.2.7-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-schema-0:0.7.5-2.el8pc.src", + "product": { + "name": "python-schema-0:0.7.5-2.el8pc.src", + "product_id": "python-schema-0:0.7.5-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-schema@0.7.5-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-semantic-version-0:2.10.0-1.el8pc.src", + "product": { + "name": "python-semantic-version-0:2.10.0-1.el8pc.src", + "product_id": "python-semantic-version-0:2.10.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-semantic-version@2.10.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-six-0:1.16.0-2.el8pc.src", + "product": { + "name": "python-six-0:1.16.0-2.el8pc.src", + "product_id": "python-six-0:1.16.0-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-six@1.16.0-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-smmap-0:5.0.0-2.el8pc.src", + "product": { + "name": "python-smmap-0:5.0.0-2.el8pc.src", + "product_id": "python-smmap-0:5.0.0-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-smmap@5.0.0-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-sqlparse-0:0.4.4-1.el8pc.src", + "product": { + "name": "python-sqlparse-0:0.4.4-1.el8pc.src", + "product_id": "python-sqlparse-0:0.4.4-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-sqlparse@0.4.4-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-tablib-0:3.3.0-1.el8pc.src", + "product": { + "name": "python-tablib-0:3.3.0-1.el8pc.src", + "product_id": "python-tablib-0:3.3.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-tablib@3.3.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-tenacity-0:7.0.0-3.el8pc.src", + "product": { + "name": "python-tenacity-0:7.0.0-3.el8pc.src", + "product_id": "python-tenacity-0:7.0.0-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-tenacity@7.0.0-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-toml-0:0.10.2-3.el8pc.src", + "product": { + "name": "python-toml-0:0.10.2-3.el8pc.src", + "product_id": "python-toml-0:0.10.2-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-toml@0.10.2-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-types-cryptography-0:3.3.23.2-1.el8pc.src", + "product": { + "name": "python-types-cryptography-0:3.3.23.2-1.el8pc.src", + "product_id": "python-types-cryptography-0:3.3.23.2-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-types-cryptography@3.3.23.2-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-typing-extensions-0:3.10.0.2-2.el8pc.src", + "product": { + "name": "python-typing-extensions-0:3.10.0.2-2.el8pc.src", + "product_id": "python-typing-extensions-0:3.10.0.2-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-typing-extensions@3.10.0.2-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-uritemplate-0:4.1.1-2.el8pc.src", + "product": { + "name": "python-uritemplate-0:4.1.1-2.el8pc.src", + "product_id": "python-uritemplate-0:4.1.1-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-uritemplate@4.1.1-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-urllib3-0:1.26.8-2.el8pc.src", + "product": { + "name": "python-urllib3-0:1.26.8-2.el8pc.src", + "product_id": "python-urllib3-0:1.26.8-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-urllib3@1.26.8-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-urlman-0:2.0.1-1.el8pc.src", + "product": { + "name": "python-urlman-0:2.0.1-1.el8pc.src", + "product_id": "python-urlman-0:2.0.1-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-urlman@2.0.1-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-url-normalize-0:1.4.3-4.el8pc.src", + "product": { + "name": "python-url-normalize-0:1.4.3-4.el8pc.src", + "product_id": "python-url-normalize-0:1.4.3-4.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-url-normalize@1.4.3-4.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-wcmatch-0:8.3-2.el8pc.src", + "product": { + "name": "python-wcmatch-0:8.3-2.el8pc.src", + "product_id": "python-wcmatch-0:8.3-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-wcmatch@8.3-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-webencodings-0:0.5.1-3.el8pc.src", + "product": { + "name": "python-webencodings-0:0.5.1-3.el8pc.src", + "product_id": "python-webencodings-0:0.5.1-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-webencodings@0.5.1-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-websockify-0:0.10.0-3.el8sat.src", + "product": { + "name": "python-websockify-0:0.10.0-3.el8sat.src", + "product_id": "python-websockify-0:0.10.0-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-websockify@0.10.0-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-whitenoise-0:6.0.0-1.el8pc.src", + "product": { + "name": "python-whitenoise-0:6.0.0-1.el8pc.src", + "product_id": "python-whitenoise-0:6.0.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-whitenoise@6.0.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-wrapt-0:1.14.1-1.el8pc.src", + "product": { + "name": "python-wrapt-0:1.14.1-1.el8pc.src", + "product_id": "python-wrapt-0:1.14.1-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-wrapt@1.14.1-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-xlrd-0:2.0.1-5.el8pc.src", + "product": { + "name": "python-xlrd-0:2.0.1-5.el8pc.src", + "product_id": "python-xlrd-0:2.0.1-5.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-xlrd@2.0.1-5.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-xlwt-0:1.3.0-3.el8pc.src", + "product": { + "name": "python-xlwt-0:1.3.0-3.el8pc.src", + "product_id": "python-xlwt-0:1.3.0-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-xlwt@1.3.0-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-yarl-0:1.8.2-1.el8pc.src", + "product": { + "name": "python-yarl-0:1.8.2-1.el8pc.src", + "product_id": "python-yarl-0:1.8.2-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-yarl@1.8.2-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-zipp-0:3.4.0-4.el8pc.src", + "product": { + "name": "python-zipp-0:3.4.0-4.el8pc.src", + "product_id": "python-zipp-0:3.4.0-4.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-zipp@3.4.0-4.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-0:1.39.0-7.el8amq.src", + "product": { + "name": "qpid-cpp-0:1.39.0-7.el8amq.src", + "product_id": "qpid-cpp-0:1.39.0-7.el8amq.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp@1.39.0-7.el8amq?arch=src" + } + } + }, + { + "category": "product_version", + "name": "qpid-dispatch-0:1.14.0-6.el8.src", + "product": { + "name": "qpid-dispatch-0:1.14.0-6.el8.src", + "product_id": "qpid-dispatch-0:1.14.0-6.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-dispatch@1.14.0-6.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-0:0.33.0-4.el8.src", + "product": { + "name": "qpid-proton-0:0.33.0-4.el8.src", + "product_id": "qpid-proton-0:0.33.0-4.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton@0.33.0-4.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.src", + "product": { + "name": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.src", + "product_id": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/redhat-access-insights-puppet@1.0.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-actioncable-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-actioncable-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-actioncable-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-actioncable@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-actionmailbox-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-actionmailbox-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-actionmailbox-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-actionmailbox@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-actionmailer-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-actionmailer-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-actionmailer-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-actionmailer@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-actionpack-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-actionpack-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-actionpack-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-actionpack@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-actiontext-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-actiontext-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-actiontext-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-actiontext@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-actionview-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-actionview-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-actionview-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-actionview@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activejob-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-activejob-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-activejob-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activejob@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activemodel-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-activemodel-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-activemodel-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activemodel@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activerecord-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-activerecord-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-activerecord-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activerecord@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activerecord-import-0:1.4.1-1.el8sat.src", + "product": { + "name": "rubygem-activerecord-import-0:1.4.1-1.el8sat.src", + "product_id": "rubygem-activerecord-import-0:1.4.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activerecord-import@1.4.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activerecord-session_store-0:2.0.0-1.el8sat.src", + "product": { + "name": "rubygem-activerecord-session_store-0:2.0.0-1.el8sat.src", + "product_id": "rubygem-activerecord-session_store-0:2.0.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activerecord-session_store@2.0.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activestorage-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-activestorage-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-activestorage-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activestorage@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activesupport-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-activesupport-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-activesupport-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activesupport@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-acts_as_list-0:1.0.3-2.el8sat.src", + "product": { + "name": "rubygem-acts_as_list-0:1.0.3-2.el8sat.src", + "product_id": "rubygem-acts_as_list-0:1.0.3-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-acts_as_list@1.0.3-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-addressable-0:2.8.4-1.el8sat.src", + "product": { + "name": "rubygem-addressable-0:2.8.4-1.el8sat.src", + "product_id": "rubygem-addressable-0:2.8.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-addressable@2.8.4-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-algebrick-0:0.7.5-1.el8sat.src", + "product": { + "name": "rubygem-algebrick-0:0.7.5-1.el8sat.src", + "product_id": "rubygem-algebrick-0:0.7.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-algebrick@0.7.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-amazing_print-0:1.4.0-1.el8sat.src", + "product": { + "name": "rubygem-amazing_print-0:1.4.0-1.el8sat.src", + "product_id": "rubygem-amazing_print-0:1.4.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-amazing_print@1.4.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ancestry-0:4.3.3-1.el8sat.src", + "product": { + "name": "rubygem-ancestry-0:4.3.3-1.el8sat.src", + "product_id": "rubygem-ancestry-0:4.3.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ancestry@4.3.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-anemone-0:0.7.2-23.el8sat.src", + "product": { + "name": "rubygem-anemone-0:0.7.2-23.el8sat.src", + "product_id": "rubygem-anemone-0:0.7.2-23.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-anemone@0.7.2-23.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-angular-rails-templates-1:1.1.0-2.el8sat.src", + "product": { + "name": "rubygem-angular-rails-templates-1:1.1.0-2.el8sat.src", + "product_id": "rubygem-angular-rails-templates-1:1.1.0-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-angular-rails-templates@1.1.0-2.el8sat?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ansi-0:1.5.0-3.el8sat.src", + "product": { + "name": "rubygem-ansi-0:1.5.0-3.el8sat.src", + "product_id": "rubygem-ansi-0:1.5.0-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ansi@1.5.0-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.src", + "product": { + "name": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.src", + "product_id": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-apipie-bindings@0.6.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-apipie-dsl-0:2.5.0-1.el8sat.src", + "product": { + "name": "rubygem-apipie-dsl-0:2.5.0-1.el8sat.src", + "product_id": "rubygem-apipie-dsl-0:2.5.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-apipie-dsl@2.5.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.src", + "product": { + "name": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.src", + "product_id": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-apipie-params@0.0.5-5.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-apipie-rails-0:1.1.0-1.el8sat.src", + "product": { + "name": "rubygem-apipie-rails-0:1.1.0-1.el8sat.src", + "product_id": "rubygem-apipie-rails-0:1.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-apipie-rails@1.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-audited-0:5.3.2-1.el8sat.src", + "product": { + "name": "rubygem-audited-0:5.3.2-1.el8sat.src", + "product_id": "rubygem-audited-0:5.3.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-audited@5.3.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.src", + "product": { + "name": "rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.src", + "product_id": "rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-azure_mgmt_compute@0.22.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.src", + "product": { + "name": "rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.src", + "product_id": "rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-azure_mgmt_network@0.26.1-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.src", + "product": { + "name": "rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.src", + "product_id": "rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-azure_mgmt_resources@0.18.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.src", + "product": { + "name": "rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.src", + "product_id": "rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-azure_mgmt_storage@0.23.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.src", + "product": { + "name": "rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.src", + "product_id": "rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-azure_mgmt_subscriptions@0.18.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-bcrypt-0:3.1.18-1.el8sat.src", + "product": { + "name": "rubygem-bcrypt-0:3.1.18-1.el8sat.src", + "product_id": "rubygem-bcrypt-0:3.1.18-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-bcrypt@3.1.18-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-builder-0:3.2.4-2.el8sat.src", + "product": { + "name": "rubygem-builder-0:3.2.4-2.el8sat.src", + "product_id": "rubygem-builder-0:3.2.4-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-builder@3.2.4-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-bundler_ext-0:0.4.1-6.el8sat.src", + "product": { + "name": "rubygem-bundler_ext-0:0.4.1-6.el8sat.src", + "product_id": "rubygem-bundler_ext-0:0.4.1-6.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-bundler_ext@0.4.1-6.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-clamp-0:1.3.2-1.el8sat.src", + "product": { + "name": "rubygem-clamp-0:1.3.2-1.el8sat.src", + "product_id": "rubygem-clamp-0:1.3.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-clamp@1.3.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-coffee-rails-0:5.0.0-2.el8sat.src", + "product": { + "name": "rubygem-coffee-rails-0:5.0.0-2.el8sat.src", + "product_id": "rubygem-coffee-rails-0:5.0.0-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-coffee-rails@5.0.0-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-coffee-script-0:2.4.1-5.el8sat.src", + "product": { + "name": "rubygem-coffee-script-0:2.4.1-5.el8sat.src", + "product_id": "rubygem-coffee-script-0:2.4.1-5.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-coffee-script@2.4.1-5.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-coffee-script-source-0:1.12.2-5.el8sat.src", + "product": { + "name": "rubygem-coffee-script-source-0:1.12.2-5.el8sat.src", + "product_id": "rubygem-coffee-script-source-0:1.12.2-5.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-coffee-script-source@1.12.2-5.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-colorize-0:0.8.1-2.el8sat.src", + "product": { + "name": "rubygem-colorize-0:0.8.1-2.el8sat.src", + "product_id": "rubygem-colorize-0:0.8.1-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-colorize@0.8.1-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.src", + "product": { + "name": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.src", + "product_id": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-concurrent-ruby@1.1.10-1.el8sat?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.src", + "product": { + "name": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.src", + "product_id": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-concurrent-ruby-edge@0.6.0-3.el8sat?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-connection_pool-0:2.4.1-1.el8sat.src", + "product": { + "name": "rubygem-connection_pool-0:2.4.1-1.el8sat.src", + "product_id": "rubygem-connection_pool-0:2.4.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-connection_pool@2.4.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-crass-0:1.0.6-2.el8sat.src", + "product": { + "name": "rubygem-crass-0:1.0.6-2.el8sat.src", + "product_id": "rubygem-crass-0:1.0.6-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-crass@1.0.6-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-css_parser-0:1.14.0-1.el8sat.src", + "product": { + "name": "rubygem-css_parser-0:1.14.0-1.el8sat.src", + "product_id": "rubygem-css_parser-0:1.14.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-css_parser@1.14.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-daemons-0:1.4.1-1.el8sat.src", + "product": { + "name": "rubygem-daemons-0:1.4.1-1.el8sat.src", + "product_id": "rubygem-daemons-0:1.4.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-daemons@1.4.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-deacon-0:1.0.0-5.el8sat.src", + "product": { + "name": "rubygem-deacon-0:1.0.0-5.el8sat.src", + "product_id": "rubygem-deacon-0:1.0.0-5.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-deacon@1.0.0-5.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-declarative-0:0.0.20-1.el8sat.src", + "product": { + "name": "rubygem-declarative-0:0.0.20-1.el8sat.src", + "product_id": "rubygem-declarative-0:0.0.20-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-declarative@0.0.20-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-deep_cloneable-0:3.2.0-1.el8sat.src", + "product": { + "name": "rubygem-deep_cloneable-0:3.2.0-1.el8sat.src", + "product_id": "rubygem-deep_cloneable-0:3.2.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-deep_cloneable@3.2.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-deface-0:1.5.3-3.el8sat.src", + "product": { + "name": "rubygem-deface-0:1.5.3-3.el8sat.src", + "product_id": "rubygem-deface-0:1.5.3-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-deface@1.5.3-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-diffy-0:3.4.2-1.el8sat.src", + "product": { + "name": "rubygem-diffy-0:3.4.2-1.el8sat.src", + "product_id": "rubygem-diffy-0:3.4.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-diffy@3.4.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-domain_name-0:0.5.20190701-1.el8sat.src", + "product": { + "name": "rubygem-domain_name-0:0.5.20190701-1.el8sat.src", + "product_id": "rubygem-domain_name-0:0.5.20190701-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-domain_name@0.5.20190701-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-dynflow-0:1.7.0-1.el8sat.src", + "product": { + "name": "rubygem-dynflow-0:1.7.0-1.el8sat.src", + "product_id": "rubygem-dynflow-0:1.7.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-dynflow@1.7.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-erubi-0:1.12.0-1.el8sat.src", + "product": { + "name": "rubygem-erubi-0:1.12.0-1.el8sat.src", + "product_id": "rubygem-erubi-0:1.12.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-erubi@1.12.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-et-orbi-0:1.2.7-1.el8sat.src", + "product": { + "name": "rubygem-et-orbi-0:1.2.7-1.el8sat.src", + "product_id": "rubygem-et-orbi-0:1.2.7-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-et-orbi@1.2.7-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-excon-0:0.99.0-1.el8sat.src", + "product": { + "name": "rubygem-excon-0:0.99.0-1.el8sat.src", + "product_id": "rubygem-excon-0:0.99.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-excon@0.99.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-execjs-0:2.8.1-1.el8sat.src", + "product": { + "name": "rubygem-execjs-0:2.8.1-1.el8sat.src", + "product_id": "rubygem-execjs-0:2.8.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-execjs@2.8.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-facter-0:4.4.0-1.el8sat.src", + "product": { + "name": "rubygem-facter-0:4.4.0-1.el8sat.src", + "product_id": "rubygem-facter-0:4.4.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-facter@4.4.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-0:1.10.2-1.el8sat.src", + "product": { + "name": "rubygem-faraday-0:1.10.2-1.el8sat.src", + "product_id": "rubygem-faraday-0:1.10.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday@1.10.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.src", + "product": { + "name": "rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.src", + "product_id": "rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-cookie_jar@0.0.6-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.src", + "product": { + "name": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.src", + "product_id": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-em_http@1.0.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.src", + "product": { + "name": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.src", + "product_id": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-em_synchrony@1.0.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-excon-0:1.1.0-1.el8sat.src", + "product": { + "name": "rubygem-faraday-excon-0:1.1.0-1.el8sat.src", + "product_id": "rubygem-faraday-excon-0:1.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-excon@1.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.src", + "product": { + "name": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.src", + "product_id": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-httpclient@1.0.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.src", + "product": { + "name": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.src", + "product_id": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday_middleware@1.2.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.src", + "product": { + "name": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.src", + "product_id": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-multipart@1.0.4-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.src", + "product": { + "name": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.src", + "product_id": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-net_http@1.0.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.src", + "product": { + "name": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.src", + "product_id": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-net_http_persistent@1.2.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-patron-0:1.0.0-1.el8sat.src", + "product": { + "name": "rubygem-faraday-patron-0:1.0.0-1.el8sat.src", + "product_id": "rubygem-faraday-patron-0:1.0.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-patron@1.0.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-rack-0:1.0.0-1.el8sat.src", + "product": { + "name": "rubygem-faraday-rack-0:1.0.0-1.el8sat.src", + "product_id": "rubygem-faraday-rack-0:1.0.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-rack@1.0.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-retry-0:1.0.3-1.el8sat.src", + "product": { + "name": "rubygem-faraday-retry-0:1.0.3-1.el8sat.src", + "product_id": "rubygem-faraday-retry-0:1.0.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-retry@1.0.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fast_gettext-0:1.8.0-1.el8sat.src", + "product": { + "name": "rubygem-fast_gettext-0:1.8.0-1.el8sat.src", + "product_id": "rubygem-fast_gettext-0:1.8.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fast_gettext@1.8.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ffi-0:1.15.5-1.el8sat.src", + "product": { + "name": "rubygem-ffi-0:1.15.5-1.el8sat.src", + "product_id": "rubygem-ffi-0:1.15.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ffi@1.15.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-aws-0:3.19.0-1.el8sat.src", + "product": { + "name": "rubygem-fog-aws-0:3.19.0-1.el8sat.src", + "product_id": "rubygem-fog-aws-0:3.19.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-aws@3.19.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-core-0:2.3.0-1.el8sat.src", + "product": { + "name": "rubygem-fog-core-0:2.3.0-1.el8sat.src", + "product_id": "rubygem-fog-core-0:2.3.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-core@2.3.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-json-0:1.2.0-4.el8sat.src", + "product": { + "name": "rubygem-fog-json-0:1.2.0-4.el8sat.src", + "product_id": "rubygem-fog-json-0:1.2.0-4.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-json@1.2.0-4.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-kubevirt-0:1.3.7-1.el8sat.src", + "product": { + "name": "rubygem-fog-kubevirt-0:1.3.7-1.el8sat.src", + "product_id": "rubygem-fog-kubevirt-0:1.3.7-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-kubevirt@1.3.7-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-libvirt-0:0.11.0-1.el8sat.src", + "product": { + "name": "rubygem-fog-libvirt-0:0.11.0-1.el8sat.src", + "product_id": "rubygem-fog-libvirt-0:0.11.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-libvirt@0.11.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-openstack-0:1.1.0-1.el8sat.src", + "product": { + "name": "rubygem-fog-openstack-0:1.1.0-1.el8sat.src", + "product_id": "rubygem-fog-openstack-0:1.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-openstack@1.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-ovirt-0:2.0.2-1.el8sat.src", + "product": { + "name": "rubygem-fog-ovirt-0:2.0.2-1.el8sat.src", + "product_id": "rubygem-fog-ovirt-0:2.0.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-ovirt@2.0.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.src", + "product": { + "name": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.src", + "product_id": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-vsphere@3.6.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-xml-0:0.1.4-1.el8sat.src", + "product": { + "name": "rubygem-fog-xml-0:0.1.4-1.el8sat.src", + "product_id": "rubygem-fog-xml-0:0.1.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-xml@0.1.4-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_ansible-0:12.0.6-1.el8sat.src", + "product": { + "name": "rubygem-foreman_ansible-0:12.0.6-1.el8sat.src", + "product_id": "rubygem-foreman_ansible-0:12.0.6-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_ansible@12.0.6-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.src", + "product": { + "name": "rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.src", + "product_id": "rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_azure_rm@2.2.9-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.src", + "product": { + "name": "rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.src", + "product_id": "rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_bootdisk@21.0.4-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_discovery-0:22.0.4-1.el8sat.src", + "product": { + "name": "rubygem-foreman_discovery-0:22.0.4-1.el8sat.src", + "product_id": "rubygem-foreman_discovery-0:22.0.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_discovery@22.0.4-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_google-0:1.0.4-1.el8sat.src", + "product": { + "name": "rubygem-foreman_google-0:1.0.4-1.el8sat.src", + "product_id": "rubygem-foreman_google-0:1.0.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_google@1.0.4-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.src", + "product": { + "name": "rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.src", + "product_id": "rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_hooks@0.3.17-3.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.src", + "product": { + "name": "rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.src", + "product_id": "rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_kubevirt@0.1.9-4.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_leapp-0:0.1.14-1.el8sat.src", + "product": { + "name": "rubygem-foreman_leapp-0:0.1.14-1.el8sat.src", + "product_id": "rubygem-foreman_leapp-0:0.1.14-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_leapp@0.1.14-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.src", + "product": { + "name": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.src", + "product_id": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_maintain@1.3.5-1.el8sat?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_openscap-0:7.0.0-2.el8sat.src", + "product": { + "name": "rubygem-foreman_openscap-0:7.0.0-2.el8sat.src", + "product_id": "rubygem-foreman_openscap-0:7.0.0-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_openscap@7.0.0-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_puppet-0:6.0.1-1.el8sat.src", + "product": { + "name": "rubygem-foreman_puppet-0:6.0.1-1.el8sat.src", + "product_id": "rubygem-foreman_puppet-0:6.0.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_puppet@6.0.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.src", + "product": { + "name": "rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.src", + "product_id": "rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_remote_execution@10.0.7-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.src", + "product": { + "name": "rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.src", + "product_id": "rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_rh_cloud@8.0.51-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_scap_client-0:0.5.0-1.el8sat.src", + "product": { + "name": "rubygem-foreman_scap_client-0:0.5.0-1.el8sat.src", + "product_id": "rubygem-foreman_scap_client-0:0.5.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_scap_client@0.5.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_templates-0:9.4.0-1.el8sat.src", + "product": { + "name": "rubygem-foreman_templates-0:9.4.0-1.el8sat.src", + "product_id": "rubygem-foreman_templates-0:9.4.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_templates@9.4.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.src", + "product": { + "name": "rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.src", + "product_id": "rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_theme_satellite@12.0.0.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.src", + "product": { + "name": "rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.src", + "product_id": "rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_virt_who_configure@0.5.16-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_webhooks-0:3.2.1-1.el8sat.src", + "product": { + "name": "rubygem-foreman_webhooks-0:3.2.1-1.el8sat.src", + "product_id": "rubygem-foreman_webhooks-0:3.2.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_webhooks@3.2.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-formatador-0:1.1.0-1.el8sat.src", + "product": { + "name": "rubygem-formatador-0:1.1.0-1.el8sat.src", + "product_id": "rubygem-formatador-0:1.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-formatador@1.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-friendly_id-0:5.5.0-1.el8sat.src", + "product": { + "name": "rubygem-friendly_id-0:5.5.0-1.el8sat.src", + "product_id": "rubygem-friendly_id-0:5.5.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-friendly_id@5.5.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fugit-0:1.8.1-1.el8sat.src", + "product": { + "name": "rubygem-fugit-0:1.8.1-1.el8sat.src", + "product_id": "rubygem-fugit-0:1.8.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fugit@1.8.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fx-0:0.7.0-1.el8sat.src", + "product": { + "name": "rubygem-fx-0:0.7.0-1.el8sat.src", + "product_id": "rubygem-fx-0:0.7.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fx@0.7.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-gapic-common-0:0.12.0-1.el8sat.src", + "product": { + "name": "rubygem-gapic-common-0:0.12.0-1.el8sat.src", + "product_id": "rubygem-gapic-common-0:0.12.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-gapic-common@0.12.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-get_process_mem-0:0.2.7-2.1.el8sat.src", + "product": { + "name": "rubygem-get_process_mem-0:0.2.7-2.1.el8sat.src", + "product_id": "rubygem-get_process_mem-0:0.2.7-2.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-get_process_mem@0.2.7-2.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.src", + "product": { + "name": "rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.src", + "product_id": "rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-gettext_i18n_rails@1.10.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-git-0:1.18.0-1.el8sat.src", + "product": { + "name": "rubygem-git-0:1.18.0-1.el8sat.src", + "product_id": "rubygem-git-0:1.18.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-git@1.18.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.src", + "product": { + "name": "rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.src", + "product_id": "rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-gitlab-sidekiq-fetcher@0.9.0-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-globalid-0:1.1.0-1.el8sat.src", + "product": { + "name": "rubygem-globalid-0:1.1.0-1.el8sat.src", + "product_id": "rubygem-globalid-0:1.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-globalid@1.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.src", + "product": { + "name": "rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.src", + "product_id": "rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-googleapis-common-protos@1.3.12-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.src", + "product": { + "name": "rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.src", + "product_id": "rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-googleapis-common-protos-types@1.4.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.src", + "product": { + "name": "rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.src", + "product_id": "rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-apis-compute_v1@0.54.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-apis-core-0:0.9.1-1.el8sat.src", + "product": { + "name": "rubygem-google-apis-core-0:0.9.1-1.el8sat.src", + "product_id": "rubygem-google-apis-core-0:0.9.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-apis-core@0.9.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-googleauth-0:1.3.0-1.el8sat.src", + "product": { + "name": "rubygem-googleauth-0:1.3.0-1.el8sat.src", + "product_id": "rubygem-googleauth-0:1.3.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-googleauth@1.3.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-cloud-common-0:1.1.0-1.el8sat.src", + "product": { + "name": "rubygem-google-cloud-common-0:1.1.0-1.el8sat.src", + "product_id": "rubygem-google-cloud-common-0:1.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-cloud-common@1.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-cloud-compute-0:0.5.0-1.el8sat.src", + "product": { + "name": "rubygem-google-cloud-compute-0:0.5.0-1.el8sat.src", + "product_id": "rubygem-google-cloud-compute-0:0.5.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-cloud-compute@0.5.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.src", + "product": { + "name": "rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.src", + "product_id": "rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-cloud-compute-v1@1.7.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-cloud-core-0:1.6.0-1.el8sat.src", + "product": { + "name": "rubygem-google-cloud-core-0:1.6.0-1.el8sat.src", + "product_id": "rubygem-google-cloud-core-0:1.6.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-cloud-core@1.6.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-cloud-env-0:1.6.0-1.el8sat.src", + "product": { + "name": "rubygem-google-cloud-env-0:1.6.0-1.el8sat.src", + "product_id": "rubygem-google-cloud-env-0:1.6.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-cloud-env@1.6.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-cloud-errors-0:1.3.0-1.el8sat.src", + "product": { + "name": "rubygem-google-cloud-errors-0:1.3.0-1.el8sat.src", + "product_id": "rubygem-google-cloud-errors-0:1.3.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-cloud-errors@1.3.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-protobuf-0:3.21.6-1.el8sat.src", + "product": { + "name": "rubygem-google-protobuf-0:3.21.6-1.el8sat.src", + "product_id": "rubygem-google-protobuf-0:3.21.6-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-protobuf@3.21.6-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-graphql-0:1.13.19-1.el8sat.src", + "product": { + "name": "rubygem-graphql-0:1.13.19-1.el8sat.src", + "product_id": "rubygem-graphql-0:1.13.19-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-graphql@1.13.19-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-graphql-batch-0:0.5.3-1.el8sat.src", + "product": { + "name": "rubygem-graphql-batch-0:0.5.3-1.el8sat.src", + "product_id": "rubygem-graphql-batch-0:0.5.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-graphql-batch@0.5.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-grpc-0:1.49.1-1.el8sat.src", + "product": { + "name": "rubygem-grpc-0:1.49.1-1.el8sat.src", + "product_id": "rubygem-grpc-0:1.49.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-grpc@1.49.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-gssapi-0:1.3.1-1.el8sat.src", + "product": { + "name": "rubygem-gssapi-0:1.3.1-1.el8sat.src", + "product_id": "rubygem-gssapi-0:1.3.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-gssapi@1.3.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.src", + "product_id": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli@3.7.0.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman@3.7.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_admin@1.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_ansible@0.5.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_azure_rm@0.2.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_bootdisk@0.3.0-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_discovery@1.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_google@1.0.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_kubevirt@0.1.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_leapp@0.1.1-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_openscap@0.1.13-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_puppet@0.0.6-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_remote_execution@0.2.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_tasks@0.0.19-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_templates@0.2.0-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_virt_who_configure@0.0.9-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_webhooks@0.0.4-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.src", + "product_id": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_katello@1.9.1.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hashie-0:5.0.0-1.el8sat.src", + "product": { + "name": "rubygem-hashie-0:5.0.0-1.el8sat.src", + "product_id": "rubygem-hashie-0:5.0.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hashie@5.0.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-highline-0:2.1.0-1.el8sat.src", + "product": { + "name": "rubygem-highline-0:2.1.0-1.el8sat.src", + "product_id": "rubygem-highline-0:2.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-highline@2.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hocon-0:1.4.0-1.el8sat.src", + "product": { + "name": "rubygem-hocon-0:1.4.0-1.el8sat.src", + "product_id": "rubygem-hocon-0:1.4.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hocon@1.4.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-http-0:3.3.0-2.el8sat.src", + "product": { + "name": "rubygem-http-0:3.3.0-2.el8sat.src", + "product_id": "rubygem-http-0:3.3.0-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-http@3.3.0-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-http-accept-0:1.7.0-1.el8sat.src", + "product": { + "name": "rubygem-http-accept-0:1.7.0-1.el8sat.src", + "product_id": "rubygem-http-accept-0:1.7.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-http-accept@1.7.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-httpclient-0:2.8.3-4.el8sat.src", + "product": { + "name": "rubygem-httpclient-0:2.8.3-4.el8sat.src", + "product_id": "rubygem-httpclient-0:2.8.3-4.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-httpclient@2.8.3-4.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-http-cookie-0:1.0.5-1.el8sat.src", + "product": { + "name": "rubygem-http-cookie-0:1.0.5-1.el8sat.src", + "product_id": "rubygem-http-cookie-0:1.0.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-http-cookie@1.0.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-http-form_data-0:2.1.1-2.el8sat.src", + "product": { + "name": "rubygem-http-form_data-0:2.1.1-2.el8sat.src", + "product_id": "rubygem-http-form_data-0:2.1.1-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-http-form_data@2.1.1-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.src", + "product": { + "name": "rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.src", + "product_id": "rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-http_parser.rb@0.6.0-3.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-i18n-0:1.13.0-1.el8sat.src", + "product": { + "name": "rubygem-i18n-0:1.13.0-1.el8sat.src", + "product_id": "rubygem-i18n-0:1.13.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-i18n@1.13.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-infoblox-0:3.0.0-4.el8sat.src", + "product": { + "name": "rubygem-infoblox-0:3.0.0-4.el8sat.src", + "product_id": "rubygem-infoblox-0:3.0.0-4.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-infoblox@3.0.0-4.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-jgrep-0:1.3.3-11.el8sat.src", + "product": { + "name": "rubygem-jgrep-0:1.3.3-11.el8sat.src", + "product_id": "rubygem-jgrep-0:1.3.3-11.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-jgrep@1.3.3-11.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-journald-logger-0:3.1.0-1.el8sat.src", + "product": { + "name": "rubygem-journald-logger-0:3.1.0-1.el8sat.src", + "product_id": "rubygem-journald-logger-0:3.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-journald-logger@3.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-journald-native-0:1.0.12-1.el8sat.src", + "product": { + "name": "rubygem-journald-native-0:1.0.12-1.el8sat.src", + "product_id": "rubygem-journald-native-0:1.0.12-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-journald-native@1.0.12-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-jsonpath-0:1.1.2-1.el8sat.src", + "product": { + "name": "rubygem-jsonpath-0:1.1.2-1.el8sat.src", + "product_id": "rubygem-jsonpath-0:1.1.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-jsonpath@1.1.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-jwt-0:2.7.0-1.el8sat.src", + "product": { + "name": "rubygem-jwt-0:2.7.0-1.el8sat.src", + "product_id": "rubygem-jwt-0:2.7.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-jwt@2.7.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-kafo-0:7.0.0-1.el8sat.src", + "product": { + "name": "rubygem-kafo-0:7.0.0-1.el8sat.src", + "product_id": "rubygem-kafo-0:7.0.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-kafo@7.0.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.src", + "product": { + "name": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.src", + "product_id": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-kafo_parsers@1.2.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.src", + "product": { + "name": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.src", + "product_id": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-kafo_wizards@0.0.2-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-katello-0:4.9.0.16-1.el8sat.src", + "product": { + "name": "rubygem-katello-0:4.9.0.16-1.el8sat.src", + "product_id": "rubygem-katello-0:4.9.0.16-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-katello@4.9.0.16-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-kubeclient-0:4.10.1-1.el8sat.src", + "product": { + "name": "rubygem-kubeclient-0:4.10.1-1.el8sat.src", + "product_id": "rubygem-kubeclient-0:4.10.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-kubeclient@4.10.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ldap_fluff-0:0.6.0-1.el8sat.src", + "product": { + "name": "rubygem-ldap_fluff-0:0.6.0-1.el8sat.src", + "product_id": "rubygem-ldap_fluff-0:0.6.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ldap_fluff@0.6.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-little-plugger-0:1.1.4-3.el8sat.src", + "product": { + "name": "rubygem-little-plugger-0:1.1.4-3.el8sat.src", + "product_id": "rubygem-little-plugger-0:1.1.4-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-little-plugger@1.1.4-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-locale-0:2.1.3-1.el8sat.src", + "product": { + "name": "rubygem-locale-0:2.1.3-1.el8sat.src", + "product_id": "rubygem-locale-0:2.1.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-locale@2.1.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-logging-0:2.3.1-1.el8sat.src", + "product": { + "name": "rubygem-logging-0:2.3.1-1.el8sat.src", + "product_id": "rubygem-logging-0:2.3.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-logging@2.3.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-logging-journald-0:2.1.0-1.el8sat.src", + "product": { + "name": "rubygem-logging-journald-0:2.1.0-1.el8sat.src", + "product_id": "rubygem-logging-journald-0:2.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-logging-journald@2.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-loofah-0:2.21.3-1.el8sat.src", + "product": { + "name": "rubygem-loofah-0:2.21.3-1.el8sat.src", + "product_id": "rubygem-loofah-0:2.21.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-loofah@2.21.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-mail-0:2.8.0.1-1.el8sat.src", + "product": { + "name": "rubygem-mail-0:2.8.0.1-1.el8sat.src", + "product_id": "rubygem-mail-0:2.8.0.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-mail@2.8.0.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-marcel-0:1.0.2-1.el8sat.src", + "product": { + "name": "rubygem-marcel-0:1.0.2-1.el8sat.src", + "product_id": "rubygem-marcel-0:1.0.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-marcel@1.0.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-memoist-0:0.16.2-1.el8sat.src", + "product": { + "name": "rubygem-memoist-0:0.16.2-1.el8sat.src", + "product_id": "rubygem-memoist-0:0.16.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-memoist@0.16.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-method_source-0:1.0.0-1.el8sat.src", + "product": { + "name": "rubygem-method_source-0:1.0.0-1.el8sat.src", + "product_id": "rubygem-method_source-0:1.0.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-method_source@1.0.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-mime-types-0:3.4.1-1.el8sat.src", + "product": { + "name": "rubygem-mime-types-0:3.4.1-1.el8sat.src", + "product_id": "rubygem-mime-types-0:3.4.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-mime-types@3.4.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src", + "product": { + "name": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src", + "product_id": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-mime-types-data@3.2023.0218.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-mini_mime-0:1.1.2-1.el8sat.src", + "product": { + "name": "rubygem-mini_mime-0:1.1.2-1.el8sat.src", + "product_id": "rubygem-mini_mime-0:1.1.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-mini_mime@1.1.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-mqtt-0:0.5.0-1.el8sat.src", + "product": { + "name": "rubygem-mqtt-0:0.5.0-1.el8sat.src", + "product_id": "rubygem-mqtt-0:0.5.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-mqtt@0.5.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-msgpack-0:1.7.1-1.el8sat.src", + "product": { + "name": "rubygem-msgpack-0:1.7.1-1.el8sat.src", + "product_id": "rubygem-msgpack-0:1.7.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-msgpack@1.7.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ms_rest-0:0.7.6-1.el8sat.src", + "product": { + "name": "rubygem-ms_rest-0:0.7.6-1.el8sat.src", + "product_id": "rubygem-ms_rest-0:0.7.6-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ms_rest@0.7.6-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ms_rest_azure-0:0.12.0-1.el8sat.src", + "product": { + "name": "rubygem-ms_rest_azure-0:0.12.0-1.el8sat.src", + "product_id": "rubygem-ms_rest_azure-0:0.12.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ms_rest_azure@0.12.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-multi_json-0:1.15.0-1.el8sat.src", + "product": { + "name": "rubygem-multi_json-0:1.15.0-1.el8sat.src", + "product_id": "rubygem-multi_json-0:1.15.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-multi_json@1.15.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-multipart-post-0:2.2.3-1.el8sat.src", + "product": { + "name": "rubygem-multipart-post-0:2.2.3-1.el8sat.src", + "product_id": "rubygem-multipart-post-0:2.2.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-multipart-post@2.2.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-mustermann-0:2.0.2-1.el8sat.src", + "product": { + "name": "rubygem-mustermann-0:2.0.2-1.el8sat.src", + "product_id": "rubygem-mustermann-0:2.0.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-mustermann@2.0.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-net_http_unix-0:0.2.2-2.el8sat.src", + "product": { + "name": "rubygem-net_http_unix-0:0.2.2-2.el8sat.src", + "product_id": "rubygem-net_http_unix-0:0.2.2-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-net_http_unix@0.2.2-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-net-ldap-0:0.18.0-1.el8sat.src", + "product": { + "name": "rubygem-net-ldap-0:0.18.0-1.el8sat.src", + "product_id": "rubygem-net-ldap-0:0.18.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-net-ldap@0.18.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-net-ping-0:2.0.8-1.el8sat.src", + "product": { + "name": "rubygem-net-ping-0:2.0.8-1.el8sat.src", + "product_id": "rubygem-net-ping-0:2.0.8-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-net-ping@2.0.8-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-netrc-0:0.11.0-6.el8sat.src", + "product": { + "name": "rubygem-netrc-0:0.11.0-6.el8sat.src", + "product_id": "rubygem-netrc-0:0.11.0-6.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-netrc@0.11.0-6.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-net-scp-0:4.0.0-1.el8sat.src", + "product": { + "name": "rubygem-net-scp-0:4.0.0-1.el8sat.src", + "product_id": "rubygem-net-scp-0:4.0.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-net-scp@4.0.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-net-ssh-0:7.1.0-1.el8sat.src", + "product": { + "name": "rubygem-net-ssh-0:7.1.0-1.el8sat.src", + "product_id": "rubygem-net-ssh-0:7.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-net-ssh@7.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.src", + "product": { + "name": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.src", + "product_id": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-net-ssh-krb@0.4.0-4.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-newt-0:0.9.7-3.1.el8sat.src", + "product": { + "name": "rubygem-newt-0:0.9.7-3.1.el8sat.src", + "product_id": "rubygem-newt-0:0.9.7-3.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-newt@0.9.7-3.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-nio4r-0:2.5.9-1.el8sat.src", + "product": { + "name": "rubygem-nio4r-0:2.5.9-1.el8sat.src", + "product_id": "rubygem-nio4r-0:2.5.9-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-nio4r@2.5.9-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-nokogiri-0:1.15.0-1.el8sat.src", + "product": { + "name": "rubygem-nokogiri-0:1.15.0-1.el8sat.src", + "product_id": "rubygem-nokogiri-0:1.15.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-nokogiri@1.15.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-oauth-0:1.1.0-1.el8sat.src", + "product": { + "name": "rubygem-oauth-0:1.1.0-1.el8sat.src", + "product_id": "rubygem-oauth-0:1.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-oauth@1.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-oauth-tty-0:1.0.5-1.el8sat.src", + "product": { + "name": "rubygem-oauth-tty-0:1.0.5-1.el8sat.src", + "product_id": "rubygem-oauth-tty-0:1.0.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-oauth-tty@1.0.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-openscap-0:0.4.9-9.el8sat.src", + "product": { + "name": "rubygem-openscap-0:0.4.9-9.el8sat.src", + "product_id": "rubygem-openscap-0:0.4.9-9.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-openscap@0.4.9-9.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-openscap_parser-0:1.0.2-2.el8sat.src", + "product": { + "name": "rubygem-openscap_parser-0:1.0.2-2.el8sat.src", + "product_id": "rubygem-openscap_parser-0:1.0.2-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-openscap_parser@1.0.2-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-optimist-0:3.0.1-1.el8sat.src", + "product": { + "name": "rubygem-optimist-0:3.0.1-1.el8sat.src", + "product_id": "rubygem-optimist-0:3.0.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-optimist@3.0.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-os-0:1.1.4-1.el8sat.src", + "product": { + "name": "rubygem-os-0:1.1.4-1.el8sat.src", + "product_id": "rubygem-os-0:1.1.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-os@1.1.4-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.src", + "product": { + "name": "rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.src", + "product_id": "rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ovirt-engine-sdk@4.4.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.src", + "product": { + "name": "rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.src", + "product_id": "rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ovirt_provision_plugin@2.0.3-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-parallel-0:1.23.0-1.el8sat.src", + "product": { + "name": "rubygem-parallel-0:1.23.0-1.el8sat.src", + "product_id": "rubygem-parallel-0:1.23.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-parallel@1.23.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pg-0:1.5.3-1.el8sat.src", + "product": { + "name": "rubygem-pg-0:1.5.3-1.el8sat.src", + "product_id": "rubygem-pg-0:1.5.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pg@1.5.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-polyglot-0:0.3.5-3.1.el8sat.src", + "product": { + "name": "rubygem-polyglot-0:0.3.5-3.1.el8sat.src", + "product_id": "rubygem-polyglot-0:0.3.5-3.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-polyglot@0.3.5-3.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-powerbar-0:2.0.1-3.el8sat.src", + "product": { + "name": "rubygem-powerbar-0:2.0.1-3.el8sat.src", + "product_id": "rubygem-powerbar-0:2.0.1-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-powerbar@2.0.1-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-prometheus-client-0:4.1.0-1.el8sat.src", + "product": { + "name": "rubygem-prometheus-client-0:4.1.0-1.el8sat.src", + "product_id": "rubygem-prometheus-client-0:4.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-prometheus-client@4.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-promise.rb-0:0.7.4-3.el8sat.src", + "product": { + "name": "rubygem-promise.rb-0:0.7.4-3.el8sat.src", + "product_id": "rubygem-promise.rb-0:0.7.4-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-promise.rb@0.7.4-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-public_suffix-0:5.0.1-1.el8sat.src", + "product": { + "name": "rubygem-public_suffix-0:5.0.1-1.el8sat.src", + "product_id": "rubygem-public_suffix-0:5.0.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-public_suffix@5.0.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.src", + "product": { + "name": "rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.src", + "product_id": "rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_ansible_client@0.16.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.src", + "product": { + "name": "rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.src", + "product_id": "rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_certguard_client@1.6.4-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_container_client-0:2.14.5-1.el8sat.src", + "product": { + "name": "rubygem-pulp_container_client-0:2.14.5-1.el8sat.src", + "product_id": "rubygem-pulp_container_client-0:2.14.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_container_client@2.14.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulpcore_client-1:3.22.4-1.el8sat.src", + "product": { + "name": "rubygem-pulpcore_client-1:3.22.4-1.el8sat.src", + "product_id": "rubygem-pulpcore_client-1:3.22.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulpcore_client@3.22.4-1.el8sat?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_deb_client-0:2.20.2-1.el8sat.src", + "product": { + "name": "rubygem-pulp_deb_client-0:2.20.2-1.el8sat.src", + "product_id": "rubygem-pulp_deb_client-0:2.20.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_deb_client@2.20.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_file_client-0:1.12.0-2.el8sat.src", + "product": { + "name": "rubygem-pulp_file_client-0:1.12.0-2.el8sat.src", + "product_id": "rubygem-pulp_file_client-0:1.12.0-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_file_client@1.12.0-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.src", + "product": { + "name": "rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.src", + "product_id": "rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_ostree_client@2.0.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_python_client-0:3.8.0-2.el8sat.src", + "product": { + "name": "rubygem-pulp_python_client-0:3.8.0-2.el8sat.src", + "product_id": "rubygem-pulp_python_client-0:3.8.0-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_python_client@3.8.0-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.src", + "product": { + "name": "rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.src", + "product_id": "rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_rpm_client@3.19.6-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-puma-0:6.2.2-1.el8sat.src", + "product": { + "name": "rubygem-puma-0:6.2.2-1.el8sat.src", + "product_id": "rubygem-puma-0:6.2.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-puma@6.2.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-puma-status-0:1.6-1.el8sat.src", + "product": { + "name": "rubygem-puma-status-0:1.6-1.el8sat.src", + "product_id": "rubygem-puma-status-0:1.6-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-puma-status@1.6-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-qpid_proton-0:0.33.0-5.el8sat.src", + "product": { + "name": "rubygem-qpid_proton-0:0.33.0-5.el8sat.src", + "product_id": "rubygem-qpid_proton-0:0.33.0-5.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-qpid_proton@0.33.0-5.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-raabro-0:1.4.0-1.el8sat.src", + "product": { + "name": "rubygem-raabro-0:1.4.0-1.el8sat.src", + "product_id": "rubygem-raabro-0:1.4.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-raabro@1.4.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rabl-0:0.16.1-1.el8sat.src", + "product": { + "name": "rubygem-rabl-0:0.16.1-1.el8sat.src", + "product_id": "rubygem-rabl-0:0.16.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rabl@0.16.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rack-0:2.2.7-1.el8sat.src", + "product": { + "name": "rubygem-rack-0:2.2.7-1.el8sat.src", + "product_id": "rubygem-rack-0:2.2.7-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rack@2.2.7-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rack-cors-0:1.1.1-1.el8sat.src", + "product": { + "name": "rubygem-rack-cors-0:1.1.1-1.el8sat.src", + "product_id": "rubygem-rack-cors-0:1.1.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rack-cors@1.1.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rack-jsonp-0:1.3.1-10.el8sat.src", + "product": { + "name": "rubygem-rack-jsonp-0:1.3.1-10.el8sat.src", + "product_id": "rubygem-rack-jsonp-0:1.3.1-10.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rack-jsonp@1.3.1-10.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rack-protection-0:2.2.4-1.el8sat.src", + "product": { + "name": "rubygem-rack-protection-0:2.2.4-1.el8sat.src", + "product_id": "rubygem-rack-protection-0:2.2.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rack-protection@2.2.4-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rack-test-0:2.1.0-1.el8sat.src", + "product": { + "name": "rubygem-rack-test-0:2.1.0-1.el8sat.src", + "product_id": "rubygem-rack-test-0:2.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rack-test@2.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rails-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-rails-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-rails-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rails@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rails-dom-testing-0:2.0.3-7.el8sat.src", + "product": { + "name": "rubygem-rails-dom-testing-0:2.0.3-7.el8sat.src", + "product_id": "rubygem-rails-dom-testing-0:2.0.3-7.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rails-dom-testing@2.0.3-7.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.src", + "product": { + "name": "rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.src", + "product_id": "rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rails-html-sanitizer@1.5.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rails-i18n-0:7.0.7-1.el8sat.src", + "product": { + "name": "rubygem-rails-i18n-0:7.0.7-1.el8sat.src", + "product_id": "rubygem-rails-i18n-0:7.0.7-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rails-i18n@7.0.7-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-railties-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-railties-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-railties-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-railties@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rainbow-0:2.2.2-1.el8sat.src", + "product": { + "name": "rubygem-rainbow-0:2.2.2-1.el8sat.src", + "product_id": "rubygem-rainbow-0:2.2.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rainbow@2.2.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rb-inotify-0:0.10.1-1.el8sat.src", + "product": { + "name": "rubygem-rb-inotify-0:0.10.1-1.el8sat.src", + "product_id": "rubygem-rb-inotify-0:0.10.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rb-inotify@0.10.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rbnacl-0:4.0.2-2.el8sat.src", + "product": { + "name": "rubygem-rbnacl-0:4.0.2-2.el8sat.src", + "product_id": "rubygem-rbnacl-0:4.0.2-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rbnacl@4.0.2-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rbvmomi2-0:3.6.1-1.el8sat.src", + "product": { + "name": "rubygem-rbvmomi2-0:3.6.1-1.el8sat.src", + "product_id": "rubygem-rbvmomi2-0:3.6.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rbvmomi2@3.6.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rchardet-0:1.8.0-1.el8sat.src", + "product": { + "name": "rubygem-rchardet-0:1.8.0-1.el8sat.src", + "product_id": "rubygem-rchardet-0:1.8.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rchardet@1.8.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-recursive-open-struct-0:1.1.3-1.el8sat.src", + "product": { + "name": "rubygem-recursive-open-struct-0:1.1.3-1.el8sat.src", + "product_id": "rubygem-recursive-open-struct-0:1.1.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-recursive-open-struct@1.1.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-redfish_client-0:0.5.4-1.el8sat.src", + "product": { + "name": "rubygem-redfish_client-0:0.5.4-1.el8sat.src", + "product_id": "rubygem-redfish_client-0:0.5.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-redfish_client@0.5.4-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-redis-0:4.5.1-1.el8sat.src", + "product": { + "name": "rubygem-redis-0:4.5.1-1.el8sat.src", + "product_id": "rubygem-redis-0:4.5.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-redis@4.5.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-representable-0:3.2.0-1.el8sat.src", + "product": { + "name": "rubygem-representable-0:3.2.0-1.el8sat.src", + "product_id": "rubygem-representable-0:3.2.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-representable@3.2.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-responders-0:3.1.0-1.el8sat.src", + "product": { + "name": "rubygem-responders-0:3.1.0-1.el8sat.src", + "product_id": "rubygem-responders-0:3.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-responders@3.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rest-client-0:2.1.0-1.el8sat.src", + "product": { + "name": "rubygem-rest-client-0:2.1.0-1.el8sat.src", + "product_id": "rubygem-rest-client-0:2.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rest-client@2.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-retriable-0:3.1.2-3.el8sat.src", + "product": { + "name": "rubygem-retriable-0:3.1.2-3.el8sat.src", + "product_id": "rubygem-retriable-0:3.1.2-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-retriable@3.1.2-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.src", + "product": { + "name": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.src", + "product_id": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rkerberos@0.1.5-20.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-roadie-0:5.1.0-1.el8sat.src", + "product": { + "name": "rubygem-roadie-0:5.1.0-1.el8sat.src", + "product_id": "rubygem-roadie-0:5.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-roadie@5.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-roadie-rails-0:3.0.0-1.el8sat.src", + "product": { + "name": "rubygem-roadie-rails-0:3.0.0-1.el8sat.src", + "product_id": "rubygem-roadie-rails-0:3.0.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-roadie-rails@3.0.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-robotex-0:1.0.0-22.el8sat.src", + "product": { + "name": "rubygem-robotex-0:1.0.0-22.el8sat.src", + "product_id": "rubygem-robotex-0:1.0.0-22.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-robotex@1.0.0-22.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rsec-0:0.4.3-5.el8sat.src", + "product": { + "name": "rubygem-rsec-0:0.4.3-5.el8sat.src", + "product_id": "rubygem-rsec-0:0.4.3-5.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rsec@0.4.3-5.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.src", + "product": { + "name": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.src", + "product_id": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ruby2_keywords@0.0.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ruby2ruby-0:2.5.0-1.el8sat.src", + "product": { + "name": "rubygem-ruby2ruby-0:2.5.0-1.el8sat.src", + "product_id": "rubygem-ruby2ruby-0:2.5.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ruby2ruby@2.5.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rubyipmi-0:0.11.1-1.el8sat.src", + "product": { + "name": "rubygem-rubyipmi-0:0.11.1-1.el8sat.src", + "product_id": "rubygem-rubyipmi-0:0.11.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rubyipmi@0.11.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.src", + "product": { + "name": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.src", + "product_id": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ruby-libvirt@0.8.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ruby_parser-0:3.20.1-1.el8sat.src", + "product": { + "name": "rubygem-ruby_parser-0:3.20.1-1.el8sat.src", + "product_id": "rubygem-ruby_parser-0:3.20.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ruby_parser@3.20.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-safemode-0:1.3.8-1.el8sat.src", + "product": { + "name": "rubygem-safemode-0:1.3.8-1.el8sat.src", + "product_id": "rubygem-safemode-0:1.3.8-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-safemode@1.3.8-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-scoped_search-0:4.1.11-1.el8sat.src", + "product": { + "name": "rubygem-scoped_search-0:4.1.11-1.el8sat.src", + "product_id": "rubygem-scoped_search-0:4.1.11-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-scoped_search@4.1.11-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sd_notify-0:0.1.1-1.el8sat.src", + "product": { + "name": "rubygem-sd_notify-0:0.1.1-1.el8sat.src", + "product_id": "rubygem-sd_notify-0:0.1.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sd_notify@0.1.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-secure_headers-0:6.5.0-1.el8sat.src", + "product": { + "name": "rubygem-secure_headers-0:6.5.0-1.el8sat.src", + "product_id": "rubygem-secure_headers-0:6.5.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-secure_headers@6.5.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sequel-0:5.68.0-1.el8sat.src", + "product": { + "name": "rubygem-sequel-0:5.68.0-1.el8sat.src", + "product_id": "rubygem-sequel-0:5.68.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sequel@5.68.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-server_sent_events-0:0.1.3-1.el8sat.src", + "product": { + "name": "rubygem-server_sent_events-0:0.1.3-1.el8sat.src", + "product_id": "rubygem-server_sent_events-0:0.1.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-server_sent_events@0.1.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sexp_processor-0:4.17.0-1.el8sat.src", + "product": { + "name": "rubygem-sexp_processor-0:4.17.0-1.el8sat.src", + "product_id": "rubygem-sexp_processor-0:4.17.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sexp_processor@4.17.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sidekiq-0:6.3.1-2.el8sat.src", + "product": { + "name": "rubygem-sidekiq-0:6.3.1-2.el8sat.src", + "product_id": "rubygem-sidekiq-0:6.3.1-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sidekiq@6.3.1-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-signet-0:0.17.0-1.el8sat.src", + "product": { + "name": "rubygem-signet-0:0.17.0-1.el8sat.src", + "product_id": "rubygem-signet-0:0.17.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-signet@0.17.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sinatra-1:2.2.4-1.el8sat.src", + "product": { + "name": "rubygem-sinatra-1:2.2.4-1.el8sat.src", + "product_id": "rubygem-sinatra-1:2.2.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sinatra@2.2.4-1.el8sat?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.src", + "product_id": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_ansible@3.5.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.src", + "product_id": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_container_gateway@1.0.8-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.src", + "product_id": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_dhcp_infoblox@0.0.17-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.src", + "product_id": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_dhcp_remote_isc@0.0.5-6.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.src", + "product_id": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_discovery@1.0.5-9.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.src", + "product_id": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_discovery_image@1.6.0-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.src", + "product_id": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_dns_infoblox@1.1.0-7.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.src", + "product_id": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_dynflow@0.9.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.src", + "product_id": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_dynflow_core@0.4.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.src", + "product_id": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_openscap@0.9.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.src", + "product_id": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_pulp@3.2.0-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.src", + "product_id": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_shellhooks@0.9.2-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-snaky_hash-0:2.0.1-1.el8sat.src", + "product": { + "name": "rubygem-snaky_hash-0:2.0.1-1.el8sat.src", + "product_id": "rubygem-snaky_hash-0:2.0.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-snaky_hash@2.0.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sprockets-0:4.2.0-1.el8sat.src", + "product": { + "name": "rubygem-sprockets-0:4.2.0-1.el8sat.src", + "product_id": "rubygem-sprockets-0:4.2.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sprockets@4.2.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sprockets-rails-0:3.4.2-1.el8sat.src", + "product": { + "name": "rubygem-sprockets-rails-0:3.4.2-1.el8sat.src", + "product_id": "rubygem-sprockets-rails-0:3.4.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sprockets-rails@3.4.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sqlite3-0:1.4.2-1.el8sat.src", + "product": { + "name": "rubygem-sqlite3-0:1.4.2-1.el8sat.src", + "product_id": "rubygem-sqlite3-0:1.4.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sqlite3@1.4.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sshkey-0:2.0.0-1.el8sat.src", + "product": { + "name": "rubygem-sshkey-0:2.0.0-1.el8sat.src", + "product_id": "rubygem-sshkey-0:2.0.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sshkey@2.0.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.src", + "product": { + "name": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.src", + "product_id": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-statsd-instrument@2.9.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-stomp-0:1.4.10-1.el8sat.src", + "product": { + "name": "rubygem-stomp-0:1.4.10-1.el8sat.src", + "product_id": "rubygem-stomp-0:1.4.10-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-stomp@1.4.10-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-thor-0:1.2.2-1.el8sat.src", + "product": { + "name": "rubygem-thor-0:1.2.2-1.el8sat.src", + "product_id": "rubygem-thor-0:1.2.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-thor@1.2.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-tilt-0:2.1.0-1.el8sat.src", + "product": { + "name": "rubygem-tilt-0:2.1.0-1.el8sat.src", + "product_id": "rubygem-tilt-0:2.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-tilt@2.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-timeliness-0:0.3.10-2.el8sat.src", + "product": { + "name": "rubygem-timeliness-0:0.3.10-2.el8sat.src", + "product_id": "rubygem-timeliness-0:0.3.10-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-timeliness@0.3.10-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-trailblazer-option-0:0.1.2-1.el8sat.src", + "product": { + "name": "rubygem-trailblazer-option-0:0.1.2-1.el8sat.src", + "product_id": "rubygem-trailblazer-option-0:0.1.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-trailblazer-option@0.1.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-tzinfo-0:2.0.6-1.el8sat.src", + "product": { + "name": "rubygem-tzinfo-0:2.0.6-1.el8sat.src", + "product_id": "rubygem-tzinfo-0:2.0.6-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-tzinfo@2.0.6-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-uber-0:0.1.0-3.el8sat.src", + "product": { + "name": "rubygem-uber-0:0.1.0-3.el8sat.src", + "product_id": "rubygem-uber-0:0.1.0-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-uber@0.1.0-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-unf-0:0.1.4-1.el8sat.src", + "product": { + "name": "rubygem-unf-0:0.1.4-1.el8sat.src", + "product_id": "rubygem-unf-0:0.1.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-unf@0.1.4-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.src", + "product": { + "name": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.src", + "product_id": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-unf_ext@0.0.8.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.src", + "product": { + "name": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.src", + "product_id": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-unicode@0.4.4.4-4.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.src", + "product": { + "name": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.src", + "product_id": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-unicode-display_width@1.8.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.src", + "product": { + "name": "rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.src", + "product_id": "rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-validates_lengths_from_database@0.8.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-version_gem-0:1.1.2-1.el8sat.src", + "product": { + "name": "rubygem-version_gem-0:1.1.2-1.el8sat.src", + "product_id": "rubygem-version_gem-0:1.1.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-version_gem@1.1.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-webpack-rails-0:0.9.11-1.el8sat.src", + "product": { + "name": "rubygem-webpack-rails-0:0.9.11-1.el8sat.src", + "product_id": "rubygem-webpack-rails-0:0.9.11-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-webpack-rails@0.9.11-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-webrick-0:1.8.1-1.el8sat.src", + "product": { + "name": "rubygem-webrick-0:1.8.1-1.el8sat.src", + "product_id": "rubygem-webrick-0:1.8.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-webrick@1.8.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-websocket-driver-0:0.7.5-1.el8sat.src", + "product": { + "name": "rubygem-websocket-driver-0:0.7.5-1.el8sat.src", + "product_id": "rubygem-websocket-driver-0:0.7.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-websocket-driver@0.7.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-websocket-extensions-0:0.1.5-2.el8sat.src", + "product": { + "name": "rubygem-websocket-extensions-0:0.1.5-2.el8sat.src", + "product_id": "rubygem-websocket-extensions-0:0.1.5-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-websocket-extensions@0.1.5-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-will_paginate-0:3.3.1-1.el8sat.src", + "product": { + "name": "rubygem-will_paginate-0:3.3.1-1.el8sat.src", + "product_id": "rubygem-will_paginate-0:3.3.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-will_paginate@3.3.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-xmlrpc-0:0.3.2-1.el8sat.src", + "product": { + "name": "rubygem-xmlrpc-0:0.3.2-1.el8sat.src", + "product_id": "rubygem-xmlrpc-0:0.3.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-xmlrpc@0.3.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-zeitwerk-0:2.6.8-1.el8sat.src", + "product": { + "name": "rubygem-zeitwerk-0:2.6.8-1.el8sat.src", + "product_id": "rubygem-zeitwerk-0:2.6.8-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-zeitwerk@2.6.8-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "saslwrapper-0:0.22-6.el8sat.src", + "product": { + "name": "saslwrapper-0:0.22-6.el8sat.src", + "product_id": "saslwrapper-0:0.22-6.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/saslwrapper@0.22-6.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "satellite-0:6.14.0-3.el8sat.src", + "product": { + "name": "satellite-0:6.14.0-3.el8sat.src", + "product_id": "satellite-0:6.14.0-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite@6.14.0-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "satellite-clone-0:3.5.0-1.el8sat.src", + "product": { + "name": "satellite-clone-0:3.5.0-1.el8sat.src", + "product_id": "satellite-clone-0:3.5.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-clone@3.5.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "satellite-installer-0:6.14.0.5-1.el8sat.src", + "product": { + "name": "satellite-installer-0:6.14.0.5-1.el8sat.src", + "product_id": "satellite-installer-0:6.14.0.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-installer@6.14.0.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "satellite-maintain-0:0.0.2-1.el8sat.src", + "product": { + "name": "satellite-maintain-0:0.0.2-1.el8sat.src", + "product_id": "satellite-maintain-0:0.0.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-maintain@0.0.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "product": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "product_id": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil-worker-forwarder@0.0.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pulpcore-0:3.22.15-2.el8pc.src", + "product": { + "name": "python-pulpcore-0:3.22.15-2.el8pc.src", + "product_id": "python-pulpcore-0:3.22.15-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pulpcore@3.22.15-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman-tasks-0:8.1.4-1.el8sat.src", + "product": { + "name": "rubygem-foreman-tasks-0:8.1.4-1.el8sat.src", + "product_id": "rubygem-foreman-tasks-0:8.1.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman-tasks@8.1.4-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.src", + "product_id": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_remote_execution_ssh@0.10.1-1.el8sat?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.noarch", + "product": { + "name": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.noarch", + "product_id": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ansible-collection-redhat-satellite@3.14.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.noarch", + "product": { + "name": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.noarch", + "product_id": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ansible-collection-redhat-satellite_operations@2.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "ansible-lint-0:5.0.8-4.el8pc.noarch", + "product": { + "name": "ansible-lint-0:5.0.8-4.el8pc.noarch", + "product_id": "ansible-lint-0:5.0.8-4.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ansible-lint@5.0.8-4.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.noarch", + "product": { + "name": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.noarch", + "product_id": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ansiblerole-foreman_scap_client@0.2.0-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "ansiblerole-insights-client-0:1.7.1-2.el8sat.noarch", + "product": { + "name": "ansiblerole-insights-client-0:1.7.1-2.el8sat.noarch", + "product_id": "ansiblerole-insights-client-0:1.7.1-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ansiblerole-insights-client@1.7.1-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "ansible-runner-0:2.2.1-3.el8sat.noarch", + "product": { + "name": "ansible-runner-0:2.2.1-3.el8sat.noarch", + "product_id": "ansible-runner-0:2.2.1-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ansible-runner@2.2.1-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-ansible-runner-0:2.2.1-3.el8sat.noarch", + "product": { + "name": "python39-ansible-runner-0:2.2.1-3.el8sat.noarch", + "product_id": "python39-ansible-runner-0:2.2.1-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-ansible-runner@2.2.1-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "candlepin-0:4.3.1-1.el8sat.noarch", + "product": { + "name": "candlepin-0:4.3.1-1.el8sat.noarch", + "product_id": "candlepin-0:4.3.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/candlepin@4.3.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "candlepin-selinux-0:4.3.1-1.el8sat.noarch", + "product": { + "name": "candlepin-selinux-0:4.3.1-1.el8sat.noarch", + "product_id": "candlepin-selinux-0:4.3.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/candlepin-selinux@4.3.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-cli-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-cli-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-cli-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-cli@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-debug-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-debug-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-debug-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-debug@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-dynflow-sidekiq@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-ec2-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-ec2-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-ec2-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-ec2@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-journald-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-journald-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-journald-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-journald@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-libvirt-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-libvirt-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-libvirt-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-libvirt@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-openstack-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-openstack-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-openstack-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-openstack@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-ovirt-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-ovirt-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-ovirt-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-ovirt@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-postgresql-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-postgresql-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-postgresql-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-postgresql@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-redis-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-redis-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-redis-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-redis@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-service-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-service-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-service-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-service@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-telemetry-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-telemetry-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-telemetry-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-telemetry@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-vmware-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-vmware-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-vmware-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-vmware@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.noarch", + "product": { + "name": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.noarch", + "product_id": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-bootloaders-redhat@202102220000-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-bootloaders-redhat-tftpboot-0:202102220000-1.el8sat.noarch", + "product": { + "name": "foreman-bootloaders-redhat-tftpboot-0:202102220000-1.el8sat.noarch", + "product_id": "foreman-bootloaders-redhat-tftpboot-0:202102220000-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-bootloaders-redhat-tftpboot@202102220000-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-discovery-image-1:4.1.0-10.el8sat.noarch", + "product": { + "name": "foreman-discovery-image-1:4.1.0-10.el8sat.noarch", + "product_id": "foreman-discovery-image-1:4.1.0-10.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-discovery-image@4.1.0-10.el8sat?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "foreman-installer-1:3.7.0.4-1.el8sat.noarch", + "product": { + "name": "foreman-installer-1:3.7.0.4-1.el8sat.noarch", + "product_id": "foreman-installer-1:3.7.0.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-installer@3.7.0.4-1.el8sat?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "foreman-installer-katello-1:3.7.0.4-1.el8sat.noarch", + "product": { + "name": "foreman-installer-katello-1:3.7.0.4-1.el8sat.noarch", + "product_id": "foreman-installer-katello-1:3.7.0.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-installer-katello@3.7.0.4-1.el8sat?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "foreman-obsolete-packages-0:1.5-1.el8sat.noarch", + "product": { + "name": "foreman-obsolete-packages-0:1.5-1.el8sat.noarch", + "product_id": "foreman-obsolete-packages-0:1.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-obsolete-packages@1.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-proxy-0:3.7.0-1.el8sat.noarch", + "product": { + "name": "foreman-proxy-0:3.7.0-1.el8sat.noarch", + "product_id": "foreman-proxy-0:3.7.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-proxy@3.7.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-proxy-journald-0:3.7.0-1.el8sat.noarch", + "product": { + "name": "foreman-proxy-journald-0:3.7.0-1.el8sat.noarch", + "product_id": "foreman-proxy-journald-0:3.7.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-proxy-journald@3.7.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-selinux-0:3.7.0-1.el8sat.noarch", + "product": { + "name": "foreman-selinux-0:3.7.0-1.el8sat.noarch", + "product_id": "foreman-selinux-0:3.7.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-selinux@3.7.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-proxy-content-0:4.9.0-1.el8sat.noarch", + "product": { + "name": "foreman-proxy-content-0:4.9.0-1.el8sat.noarch", + "product_id": "foreman-proxy-content-0:4.9.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-proxy-content@4.9.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "katello-common-0:4.9.0-1.el8sat.noarch", + "product": { + "name": "katello-common-0:4.9.0-1.el8sat.noarch", + "product_id": "katello-common-0:4.9.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/katello-common@4.9.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "katello-debug-0:4.9.0-1.el8sat.noarch", + "product": { + "name": "katello-debug-0:4.9.0-1.el8sat.noarch", + "product_id": "katello-debug-0:4.9.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/katello-debug@4.9.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "katello-0:4.9.0-1.el8sat.noarch", + "product": { + "name": "katello-0:4.9.0-1.el8sat.noarch", + "product_id": "katello-0:4.9.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/katello@4.9.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "katello-certs-tools-0:2.9.0-2.el8sat.noarch", + "product": { + "name": "katello-certs-tools-0:2.9.0-2.el8sat.noarch", + "product_id": "katello-certs-tools-0:2.9.0-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/katello-certs-tools@2.9.0-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "katello-client-bootstrap-0:1.7.9-1.el8sat.noarch", + "product": { + "name": "katello-client-bootstrap-0:1.7.9-1.el8sat.noarch", + "product_id": "katello-client-bootstrap-0:1.7.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/katello-client-bootstrap@1.7.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "katello-selinux-0:5.0.2-1.el8sat.noarch", + "product": { + "name": "katello-selinux-0:5.0.2-1.el8sat.noarch", + "product_id": "katello-selinux-0:5.0.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/katello-selinux@5.0.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "puppet-agent-oauth-0:0.5.10-1.el8sat.noarch", + "product": { + "name": "puppet-agent-oauth-0:0.5.10-1.el8sat.noarch", + "product_id": "puppet-agent-oauth-0:0.5.10-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent-oauth@0.5.10-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.noarch", + "product": { + "name": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.noarch", + "product_id": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-foreman_scap_client@0.4.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "puppetlabs-stdlib-0:5.2.0-1.el8sat.noarch", + "product": { + "name": "puppetlabs-stdlib-0:5.2.0-1.el8sat.noarch", + "product_id": "puppetlabs-stdlib-0:5.2.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppetlabs-stdlib@5.2.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "puppetserver-0:7.11.0-1.el8sat.noarch", + "product": { + "name": "puppetserver-0:7.11.0-1.el8sat.noarch", + "product_id": "puppetserver-0:7.11.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppetserver@7.11.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-aiodns-0:3.0.0-3.el8pc.noarch", + "product": { + "name": "python39-aiodns-0:3.0.0-3.el8pc.noarch", + "product_id": "python39-aiodns-0:3.0.0-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-aiodns@3.0.0-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-aiofiles-0:22.1.0-1.el8pc.noarch", + "product": { + "name": "python39-aiofiles-0:22.1.0-1.el8pc.noarch", + "product_id": "python39-aiofiles-0:22.1.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-aiofiles@22.1.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-aiohttp-xmlrpc-0:1.5.0-2.el8pc.noarch", + "product": { + "name": "python39-aiohttp-xmlrpc-0:1.5.0-2.el8pc.noarch", + "product_id": "python39-aiohttp-xmlrpc-0:1.5.0-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-aiohttp-xmlrpc@1.5.0-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-aioredis-0:2.0.1-2.el8pc.noarch", + "product": { + "name": "python39-aioredis-0:2.0.1-2.el8pc.noarch", + "product_id": "python39-aioredis-0:2.0.1-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-aioredis@2.0.1-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-aiosignal-0:1.3.1-1.el8pc.noarch", + "product": { + "name": "python39-aiosignal-0:1.3.1-1.el8pc.noarch", + "product_id": "python39-aiosignal-0:1.3.1-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-aiosignal@1.3.1-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-ansible-builder-0:1.0.1-4.el8pc.noarch", + "product": { + "name": "python39-ansible-builder-0:1.0.1-4.el8pc.noarch", + "product_id": "python39-ansible-builder-0:1.0.1-4.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-ansible-builder@1.0.1-4.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-asgiref-0:3.6.0-1.el8pc.noarch", + "product": { + "name": "python39-asgiref-0:3.6.0-1.el8pc.noarch", + "product_id": "python39-asgiref-0:3.6.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-asgiref@3.6.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-asyncio-throttle-0:1.0.2-3.el8pc.noarch", + "product": { + "name": "python39-asyncio-throttle-0:1.0.2-3.el8pc.noarch", + "product_id": "python39-asyncio-throttle-0:1.0.2-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-asyncio-throttle@1.0.2-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-async-lru-0:1.0.3-1.el8pc.noarch", + "product": { + "name": "python39-async-lru-0:1.0.3-1.el8pc.noarch", + "product_id": "python39-async-lru-0:1.0.3-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-async-lru@1.0.3-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-async-timeout-0:4.0.2-2.el8pc.noarch", + "product": { + "name": "python39-async-timeout-0:4.0.2-2.el8pc.noarch", + "product_id": "python39-async-timeout-0:4.0.2-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-async-timeout@4.0.2-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-attrs-0:21.4.0-2.el8pc.noarch", + "product": { + "name": "python39-attrs-0:21.4.0-2.el8pc.noarch", + "product_id": "python39-attrs-0:21.4.0-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-attrs@21.4.0-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-backoff-0:2.2.1-1.el8pc.noarch", + "product": { + "name": "python39-backoff-0:2.2.1-1.el8pc.noarch", + "product_id": "python39-backoff-0:2.2.1-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-backoff@2.2.1-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-bindep-0:2.11.0-2.el8pc.noarch", + "product": { + "name": "python39-bindep-0:2.11.0-2.el8pc.noarch", + "product_id": "python39-bindep-0:2.11.0-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-bindep@2.11.0-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-bleach-0:3.3.1-2.el8pc.noarch", + "product": { + "name": "python39-bleach-0:3.3.1-2.el8pc.noarch", + "product_id": "python39-bleach-0:3.3.1-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-bleach@3.3.1-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-bleach-allowlist-0:1.0.3-3.el8pc.noarch", + "product": { + "name": "python39-bleach-allowlist-0:1.0.3-3.el8pc.noarch", + "product_id": "python39-bleach-allowlist-0:1.0.3-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-bleach-allowlist@1.0.3-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-bracex-0:2.2.1-2.el8pc.noarch", + "product": { + "name": "python39-bracex-0:2.2.1-2.el8pc.noarch", + "product_id": "python39-bracex-0:2.2.1-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-bracex@2.2.1-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-certifi-0:2022.12.7-1.1.el8pc.noarch", + "product": { + "name": "python39-certifi-0:2022.12.7-1.1.el8pc.noarch", + "product_id": "python39-certifi-0:2022.12.7-1.1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-certifi@2022.12.7-1.1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-chardet-0:5.0.0-1.el8pc.noarch", + "product": { + "name": "python39-chardet-0:5.0.0-1.el8pc.noarch", + "product_id": "python39-chardet-0:5.0.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-chardet@5.0.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-charset-normalizer-0:2.1.1-1.el8pc.noarch", + "product": { + "name": "python39-charset-normalizer-0:2.1.1-1.el8pc.noarch", + "product_id": "python39-charset-normalizer-0:2.1.1-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-charset-normalizer@2.1.1-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-click-0:8.1.3-1.el8pc.noarch", + "product": { + "name": "python39-click-0:8.1.3-1.el8pc.noarch", + "product_id": "python39-click-0:8.1.3-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-click@8.1.3-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-click-shell-0:2.1-3.el8pc.noarch", + "product": { + "name": "python39-click-shell-0:2.1-3.el8pc.noarch", + "product_id": "python39-click-shell-0:2.1-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-click-shell@2.1-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-colorama-0:0.4.4-3.el8pc.noarch", + "product": { + "name": "python39-colorama-0:0.4.4-3.el8pc.noarch", + "product_id": "python39-colorama-0:0.4.4-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-colorama@0.4.4-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-commonmark-0:0.9.1-5.el8pc.noarch", + "product": { + "name": "python39-commonmark-0:0.9.1-5.el8pc.noarch", + "product_id": "python39-commonmark-0:0.9.1-5.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-commonmark@0.9.1-5.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-contextlib2-0:21.6.0-3.el8pc.noarch", + "product": { + "name": "python39-contextlib2-0:21.6.0-3.el8pc.noarch", + "product_id": "python39-contextlib2-0:21.6.0-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-contextlib2@21.6.0-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-daemon-0:2.3.1-1.1.el8sat.noarch", + "product": { + "name": "python39-daemon-0:2.3.1-1.1.el8sat.noarch", + "product_id": "python39-daemon-0:2.3.1-1.1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-daemon@2.3.1-1.1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-dataclasses-0:0.8-3.el8pc.noarch", + "product": { + "name": "python39-dataclasses-0:0.8-3.el8pc.noarch", + "product_id": "python39-dataclasses-0:0.8-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-dataclasses@0.8-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-dateutil-0:2.8.2-2.el8pc.noarch", + "product": { + "name": "python39-dateutil-0:2.8.2-2.el8pc.noarch", + "product_id": "python39-dateutil-0:2.8.2-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-dateutil@2.8.2-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-debian-0:0.1.44-3.el8pc.noarch", + "product": { + "name": "python39-debian-0:0.1.44-3.el8pc.noarch", + "product_id": "python39-debian-0:0.1.44-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-debian@0.1.44-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-defusedxml-0:0.7.1-3.el8pc.noarch", + "product": { + "name": "python39-defusedxml-0:0.7.1-3.el8pc.noarch", + "product_id": "python39-defusedxml-0:0.7.1-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-defusedxml@0.7.1-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-deprecated-0:1.2.13-1.el8pc.noarch", + "product": { + "name": "python39-deprecated-0:1.2.13-1.el8pc.noarch", + "product_id": "python39-deprecated-0:1.2.13-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-deprecated@1.2.13-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-diff-match-patch-0:20200713-3.el8pc.noarch", + "product": { + "name": "python39-diff-match-patch-0:20200713-3.el8pc.noarch", + "product_id": "python39-diff-match-patch-0:20200713-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-diff-match-patch@20200713-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-distro-0:1.7.0-1.el8pc.noarch", + "product": { + "name": "python39-distro-0:1.7.0-1.el8pc.noarch", + "product_id": "python39-distro-0:1.7.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-distro@1.7.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-django-0:3.2.21-1.el8pc.noarch", + "product": { + "name": "python39-django-0:3.2.21-1.el8pc.noarch", + "product_id": "python39-django-0:3.2.21-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-django@3.2.21-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-django-currentuser-0:0.5.3-5.el8pc.noarch", + "product": { + "name": "python39-django-currentuser-0:0.5.3-5.el8pc.noarch", + "product_id": "python39-django-currentuser-0:0.5.3-5.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-django-currentuser@0.5.3-5.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-django-filter-0:22.1-2.el8pc.noarch", + "product": { + "name": "python39-django-filter-0:22.1-2.el8pc.noarch", + "product_id": "python39-django-filter-0:22.1-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-django-filter@22.1-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-django-guid-0:3.3.0-1.el8pc.noarch", + "product": { + "name": "python39-django-guid-0:3.3.0-1.el8pc.noarch", + "product_id": "python39-django-guid-0:3.3.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-django-guid@3.3.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-django-import-export-0:3.0.2-1.el8pc.noarch", + "product": { + "name": "python39-django-import-export-0:3.0.2-1.el8pc.noarch", + "product_id": "python39-django-import-export-0:3.0.2-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-django-import-export@3.0.2-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-django-lifecycle-0:1.0.0-1.el8pc.noarch", + "product": { + "name": "python39-django-lifecycle-0:1.0.0-1.el8pc.noarch", + "product_id": "python39-django-lifecycle-0:1.0.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-django-lifecycle@1.0.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-django-readonly-field-0:1.1.2-1.el8pc.noarch", + "product": { + "name": "python39-django-readonly-field-0:1.1.2-1.el8pc.noarch", + "product_id": "python39-django-readonly-field-0:1.1.2-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-django-readonly-field@1.1.2-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-djangorestframework-0:3.14.0-1.el8pc.noarch", + "product": { + "name": "python39-djangorestframework-0:3.14.0-1.el8pc.noarch", + "product_id": "python39-djangorestframework-0:3.14.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-djangorestframework@3.14.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-djangorestframework-queryfields-0:1.0.0-5.el8pc.noarch", + "product": { + "name": "python39-djangorestframework-queryfields-0:1.0.0-5.el8pc.noarch", + "product_id": "python39-djangorestframework-queryfields-0:1.0.0-5.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-djangorestframework-queryfields@1.0.0-5.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-docutils-0:0.19-1.1.el8sat.noarch", + "product": { + "name": "python39-docutils-0:0.19-1.1.el8sat.noarch", + "product_id": "python39-docutils-0:0.19-1.1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-docutils@0.19-1.1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-drf-access-policy-0:1.3.0-1.el8pc.noarch", + "product": { + "name": "python39-drf-access-policy-0:1.3.0-1.el8pc.noarch", + "product_id": "python39-drf-access-policy-0:1.3.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-drf-access-policy@1.3.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-drf-nested-routers-0:0.93.4-3.el8pc.noarch", + "product": { + "name": "python39-drf-nested-routers-0:0.93.4-3.el8pc.noarch", + "product_id": "python39-drf-nested-routers-0:0.93.4-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-drf-nested-routers@0.93.4-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-drf-spectacular-0:0.25.0-1.el8pc.noarch", + "product": { + "name": "python39-drf-spectacular-0:0.25.0-1.el8pc.noarch", + "product_id": "python39-drf-spectacular-0:0.25.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-drf-spectacular@0.25.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-dynaconf-0:3.1.11-1.el8pc.noarch", + "product": { + "name": "python39-dynaconf-0:3.1.11-1.el8pc.noarch", + "product_id": "python39-dynaconf-0:3.1.11-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-dynaconf@3.1.11-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-ecdsa-0:0.18.0-1.el8pc.noarch", + "product": { + "name": "python39-ecdsa-0:0.18.0-1.el8pc.noarch", + "product_id": "python39-ecdsa-0:0.18.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-ecdsa@0.18.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-enrich-0:1.2.6-5.el8pc.noarch", + "product": { + "name": "python39-enrich-0:1.2.6-5.el8pc.noarch", + "product_id": "python39-enrich-0:1.2.6-5.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-enrich@1.2.6-5.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-et-xmlfile-0:1.1.0-2.el8pc.noarch", + "product": { + "name": "python39-et-xmlfile-0:1.1.0-2.el8pc.noarch", + "product_id": "python39-et-xmlfile-0:1.1.0-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-et-xmlfile@1.1.0-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-flake8-0:3.9.2-5.el8pc.noarch", + "product": { + "name": "python39-flake8-0:3.9.2-5.el8pc.noarch", + "product_id": "python39-flake8-0:3.9.2-5.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-flake8@3.9.2-5.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-future-0:0.18.3-1.el8pc.noarch", + "product": { + "name": "python39-future-0:0.18.3-1.el8pc.noarch", + "product_id": "python39-future-0:0.18.3-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-future@0.18.3-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-galaxy-importer-0:0.4.6-1.el8pc.noarch", + "product": { + "name": "python39-galaxy-importer-0:0.4.6-1.el8pc.noarch", + "product_id": "python39-galaxy-importer-0:0.4.6-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-galaxy-importer@0.4.6-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-gitdb-0:4.0.10-1.el8pc.noarch", + "product": { + "name": "python39-gitdb-0:4.0.10-1.el8pc.noarch", + "product_id": "python39-gitdb-0:4.0.10-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-gitdb@4.0.10-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-gitpython-0:3.1.32-1.el8pc.noarch", + "product": { + "name": "python39-gitpython-0:3.1.32-1.el8pc.noarch", + "product_id": "python39-gitpython-0:3.1.32-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-gitpython@3.1.32-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-gnupg-0:0.5.0-1.el8pc.noarch", + "product": { + "name": "python39-gnupg-0:0.5.0-1.el8pc.noarch", + "product_id": "python39-gnupg-0:0.5.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-gnupg@0.5.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-gunicorn-0:20.1.0-5.el8pc.noarch", + "product": { + "name": "python39-gunicorn-0:20.1.0-5.el8pc.noarch", + "product_id": "python39-gunicorn-0:20.1.0-5.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-gunicorn@20.1.0-5.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-idna-0:3.3-2.el8pc.noarch", + "product": { + "name": "python39-idna-0:3.3-2.el8pc.noarch", + "product_id": "python39-idna-0:3.3-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-idna@3.3-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-idna-ssl-0:1.1.0-5.el8pc.noarch", + "product": { + "name": "python39-idna-ssl-0:1.1.0-5.el8pc.noarch", + "product_id": "python39-idna-ssl-0:1.1.0-5.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-idna-ssl@1.1.0-5.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-importlib-metadata-0:4.10.1-2.el8pc.noarch", + "product": { + "name": "python39-importlib-metadata-0:4.10.1-2.el8pc.noarch", + "product_id": "python39-importlib-metadata-0:4.10.1-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-importlib-metadata@4.10.1-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-inflection-0:0.5.1-3.el8pc.noarch", + "product": { + "name": "python39-inflection-0:0.5.1-3.el8pc.noarch", + "product_id": "python39-inflection-0:0.5.1-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-inflection@0.5.1-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-iniparse-0:0.4-35.el8pc.noarch", + "product": { + "name": "python39-iniparse-0:0.4-35.el8pc.noarch", + "product_id": "python39-iniparse-0:0.4-35.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-iniparse@0.4-35.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-jinja2-0:3.1.2-1.el8pc.noarch", + "product": { + "name": "python39-jinja2-0:3.1.2-1.el8pc.noarch", + "product_id": "python39-jinja2-0:3.1.2-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-jinja2@3.1.2-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-jsonschema-0:4.9.1-1.el8pc.noarch", + "product": { + "name": "python39-jsonschema-0:4.9.1-1.el8pc.noarch", + "product_id": "python39-jsonschema-0:4.9.1-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-jsonschema@4.9.1-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-lockfile-0:0.12.2-1.el8sat.noarch", + "product": { + "name": "python39-lockfile-0:0.12.2-1.el8sat.noarch", + "product_id": "python39-lockfile-0:0.12.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-lockfile@0.12.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-markdown-0:3.4.1-1.el8pc.noarch", + "product": { + "name": "python39-markdown-0:3.4.1-1.el8pc.noarch", + "product_id": "python39-markdown-0:3.4.1-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-markdown@3.4.1-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-markuppy-0:1.14-3.el8pc.noarch", + "product": { + "name": "python39-markuppy-0:1.14-3.el8pc.noarch", + "product_id": "python39-markuppy-0:1.14-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-markuppy@1.14-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-mccabe-0:0.6.1-3.el8pc.noarch", + "product": { + "name": "python39-mccabe-0:0.6.1-3.el8pc.noarch", + "product_id": "python39-mccabe-0:0.6.1-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-mccabe@0.6.1-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-naya-0:1.1.1-3.el8pc.noarch", + "product": { + "name": "python39-naya-0:1.1.1-3.el8pc.noarch", + "product_id": "python39-naya-0:1.1.1-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-naya@1.1.1-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-odfpy-0:1.4.1-6.el8pc.noarch", + "product": { + "name": "python39-odfpy-0:1.4.1-6.el8pc.noarch", + "product_id": "python39-odfpy-0:1.4.1-6.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-odfpy@1.4.1-6.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-openpyxl-0:3.1.0-1.el8pc.noarch", + "product": { + "name": "python39-openpyxl-0:3.1.0-1.el8pc.noarch", + "product_id": "python39-openpyxl-0:3.1.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-openpyxl@3.1.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-packaging-0:21.3-1.el8pc.noarch", + "product": { + "name": "python39-packaging-0:21.3-1.el8pc.noarch", + "product_id": "python39-packaging-0:21.3-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-packaging@21.3-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-parsley-0:1.3-2.el8pc.noarch", + "product": { + "name": "python39-parsley-0:1.3-2.el8pc.noarch", + "product_id": "python39-parsley-0:1.3-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-parsley@1.3-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pbr-0:5.8.0-4.el8pc.noarch", + "product": { + "name": "python39-pbr-0:5.8.0-4.el8pc.noarch", + "product_id": "python39-pbr-0:5.8.0-4.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pbr@5.8.0-4.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pexpect-0:4.8.0-2.el8sat.noarch", + "product": { + "name": "python39-pexpect-0:4.8.0-2.el8sat.noarch", + "product_id": "python39-pexpect-0:4.8.0-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pexpect@4.8.0-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-productmd-0:1.33-3.el8pc.noarch", + "product": { + "name": "python39-productmd-0:1.33-3.el8pc.noarch", + "product_id": "python39-productmd-0:1.33-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-productmd@1.33-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-protobuf-0:4.21.6-1.el8pc.noarch", + "product": { + "name": "python39-protobuf-0:4.21.6-1.el8pc.noarch", + "product_id": "python39-protobuf-0:4.21.6-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-protobuf@4.21.6-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-ptyprocess-0:0.7.0-1.el8sat.noarch", + "product": { + "name": "python39-ptyprocess-0:0.7.0-1.el8sat.noarch", + "product_id": "python39-ptyprocess-0:0.7.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-ptyprocess@0.7.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pulp-ansible-1:0.16.0-1.el8pc.noarch", + "product": { + "name": "python39-pulp-ansible-1:0.16.0-1.el8pc.noarch", + "product_id": "python39-pulp-ansible-1:0.16.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pulp-ansible@0.16.0-1.el8pc?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "python39-pulp-certguard-0:1.5.6-1.el8pc.noarch", + "product": { + "name": "python39-pulp-certguard-0:1.5.6-1.el8pc.noarch", + "product_id": "python39-pulp-certguard-0:1.5.6-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pulp-certguard@1.5.6-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pulp-cli-0:0.14.0-4.el8pc.noarch", + "product": { + "name": "python39-pulp-cli-0:0.14.0-4.el8pc.noarch", + "product_id": "python39-pulp-cli-0:0.14.0-4.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pulp-cli@0.14.0-4.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pulp-container-0:2.14.7-1.el8pc.noarch", + "product": { + "name": "python39-pulp-container-0:2.14.7-1.el8pc.noarch", + "product_id": "python39-pulp-container-0:2.14.7-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pulp-container@2.14.7-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pulp-deb-0:2.20.2-1.el8pc.noarch", + "product": { + "name": "python39-pulp-deb-0:2.20.2-1.el8pc.noarch", + "product_id": "python39-pulp-deb-0:2.20.2-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pulp-deb@2.20.2-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pulp-file-0:1.12.0-1.el8pc.noarch", + "product": { + "name": "python39-pulp-file-0:1.12.0-1.el8pc.noarch", + "product_id": "python39-pulp-file-0:1.12.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pulp-file@1.12.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pulp_manifest-0:3.0.0-3.el8pc.noarch", + "product": { + "name": "python39-pulp_manifest-0:3.0.0-3.el8pc.noarch", + "product_id": "python39-pulp_manifest-0:3.0.0-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pulp_manifest@3.0.0-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pulp-rpm-0:3.19.9-1.el8pc.noarch", + "product": { + "name": "python39-pulp-rpm-0:3.19.9-1.el8pc.noarch", + "product_id": "python39-pulp-rpm-0:3.19.9-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pulp-rpm@3.19.9-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pycodestyle-0:2.7.0-5.el8pc.noarch", + "product": { + "name": "python39-pycodestyle-0:2.7.0-5.el8pc.noarch", + "product_id": "python39-pycodestyle-0:2.7.0-5.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pycodestyle@2.7.0-5.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pycparser-0:2.21-2.el8pc.noarch", + "product": { + "name": "python39-pycparser-0:2.21-2.el8pc.noarch", + "product_id": "python39-pycparser-0:2.21-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pycparser@2.21-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pyflakes-0:2.3.1-5.el8pc.noarch", + "product": { + "name": "python39-pyflakes-0:2.3.1-5.el8pc.noarch", + "product_id": "python39-pyflakes-0:2.3.1-5.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pyflakes@2.3.1-5.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pygtrie-0:2.5.0-1.el8pc.noarch", + "product": { + "name": "python39-pygtrie-0:2.5.0-1.el8pc.noarch", + "product_id": "python39-pygtrie-0:2.5.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pygtrie@2.5.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pyjwkest-0:1.4.2-6.el8pc.noarch", + "product": { + "name": "python39-pyjwkest-0:1.4.2-6.el8pc.noarch", + "product_id": "python39-pyjwkest-0:1.4.2-6.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pyjwkest@1.4.2-6.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pyjwt-0:2.5.0-2.el8pc.noarch", + "product": { + "name": "python39-pyjwt-0:2.5.0-2.el8pc.noarch", + "product_id": "python39-pyjwt-0:2.5.0-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pyjwt@2.5.0-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pyOpenSSL-0:22.1.0-1.el8pc.noarch", + "product": { + "name": "python39-pyOpenSSL-0:22.1.0-1.el8pc.noarch", + "product_id": "python39-pyOpenSSL-0:22.1.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pyOpenSSL@22.1.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pyparsing-0:2.4.7-3.el8pc.noarch", + "product": { + "name": "python39-pyparsing-0:2.4.7-3.el8pc.noarch", + "product_id": "python39-pyparsing-0:2.4.7-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pyparsing@2.4.7-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pytz-0:2022.2.1-1.el8pc.noarch", + "product": { + "name": "python39-pytz-0:2022.2.1-1.el8pc.noarch", + "product_id": "python39-pytz-0:2022.2.1-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pytz@2022.2.1-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python2-qpid-0:1.37.0-1.el8.noarch", + "product": { + "name": "python2-qpid-0:1.37.0-1.el8.noarch", + "product_id": "python2-qpid-0:1.37.0-1.el8.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python2-qpid@1.37.0-1.el8?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-redis-0:4.3.4-1.el8pc.noarch", + "product": { + "name": "python39-redis-0:4.3.4-1.el8pc.noarch", + "product_id": "python39-redis-0:4.3.4-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-redis@4.3.4-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-requests-0:2.31.0-1.el8pc.noarch", + "product": { + "name": "python39-requests-0:2.31.0-1.el8pc.noarch", + "product_id": "python39-requests-0:2.31.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-requests@2.31.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-requirements-parser-0:0.2.0-3.el8pc.noarch", + "product": { + "name": "python39-requirements-parser-0:0.2.0-3.el8pc.noarch", + "product_id": "python39-requirements-parser-0:0.2.0-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-requirements-parser@0.2.0-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-rich-0:13.3.1-2.el8pc.noarch", + "product": { + "name": "python39-rich-0:13.3.1-2.el8pc.noarch", + "product_id": "python39-rich-0:13.3.1-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-rich@13.3.1-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-ruamel-yaml-0:0.17.21-2.el8pc.noarch", + "product": { + "name": "python39-ruamel-yaml-0:0.17.21-2.el8pc.noarch", + "product_id": "python39-ruamel-yaml-0:0.17.21-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-ruamel-yaml@0.17.21-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-schema-0:0.7.5-2.el8pc.noarch", + "product": { + "name": "python39-schema-0:0.7.5-2.el8pc.noarch", + "product_id": "python39-schema-0:0.7.5-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-schema@0.7.5-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-semantic-version-0:2.10.0-1.el8pc.noarch", + "product": { + "name": "python39-semantic-version-0:2.10.0-1.el8pc.noarch", + "product_id": "python39-semantic-version-0:2.10.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-semantic-version@2.10.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-six-0:1.16.0-2.el8pc.noarch", + "product": { + "name": "python39-six-0:1.16.0-2.el8pc.noarch", + "product_id": "python39-six-0:1.16.0-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-six@1.16.0-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-smmap-0:5.0.0-2.el8pc.noarch", + "product": { + "name": "python39-smmap-0:5.0.0-2.el8pc.noarch", + "product_id": "python39-smmap-0:5.0.0-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-smmap@5.0.0-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-sqlparse-0:0.4.4-1.el8pc.noarch", + "product": { + "name": "python39-sqlparse-0:0.4.4-1.el8pc.noarch", + "product_id": "python39-sqlparse-0:0.4.4-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-sqlparse@0.4.4-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-tablib-0:3.3.0-1.el8pc.noarch", + "product": { + "name": "python39-tablib-0:3.3.0-1.el8pc.noarch", + "product_id": "python39-tablib-0:3.3.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-tablib@3.3.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-tenacity-0:7.0.0-3.el8pc.noarch", + "product": { + "name": "python39-tenacity-0:7.0.0-3.el8pc.noarch", + "product_id": "python39-tenacity-0:7.0.0-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-tenacity@7.0.0-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-toml-0:0.10.2-3.el8pc.noarch", + "product": { + "name": "python39-toml-0:0.10.2-3.el8pc.noarch", + "product_id": "python39-toml-0:0.10.2-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-toml@0.10.2-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-types-cryptography-0:3.3.23.2-1.el8pc.noarch", + "product": { + "name": "python39-types-cryptography-0:3.3.23.2-1.el8pc.noarch", + "product_id": "python39-types-cryptography-0:3.3.23.2-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-types-cryptography@3.3.23.2-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-typing-extensions-0:3.10.0.2-2.el8pc.noarch", + "product": { + "name": "python39-typing-extensions-0:3.10.0.2-2.el8pc.noarch", + "product_id": "python39-typing-extensions-0:3.10.0.2-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-typing-extensions@3.10.0.2-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-uritemplate-0:4.1.1-2.el8pc.noarch", + "product": { + "name": "python39-uritemplate-0:4.1.1-2.el8pc.noarch", + "product_id": "python39-uritemplate-0:4.1.1-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-uritemplate@4.1.1-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-urllib3-0:1.26.8-2.el8pc.noarch", + "product": { + "name": "python39-urllib3-0:1.26.8-2.el8pc.noarch", + "product_id": "python39-urllib3-0:1.26.8-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-urllib3@1.26.8-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-urlman-0:2.0.1-1.el8pc.noarch", + "product": { + "name": "python39-urlman-0:2.0.1-1.el8pc.noarch", + "product_id": "python39-urlman-0:2.0.1-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-urlman@2.0.1-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-url-normalize-0:1.4.3-4.el8pc.noarch", + "product": { + "name": "python39-url-normalize-0:1.4.3-4.el8pc.noarch", + "product_id": "python39-url-normalize-0:1.4.3-4.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-url-normalize@1.4.3-4.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-wcmatch-0:8.3-2.el8pc.noarch", + "product": { + "name": "python39-wcmatch-0:8.3-2.el8pc.noarch", + "product_id": "python39-wcmatch-0:8.3-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-wcmatch@8.3-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-webencodings-0:0.5.1-3.el8pc.noarch", + "product": { + "name": "python39-webencodings-0:0.5.1-3.el8pc.noarch", + "product_id": "python39-webencodings-0:0.5.1-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-webencodings@0.5.1-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-websockify-0:0.10.0-3.el8sat.noarch", + "product": { + "name": "python3-websockify-0:0.10.0-3.el8sat.noarch", + "product_id": "python3-websockify-0:0.10.0-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-websockify@0.10.0-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-whitenoise-0:6.0.0-1.el8pc.noarch", + "product": { + "name": "python39-whitenoise-0:6.0.0-1.el8pc.noarch", + "product_id": "python39-whitenoise-0:6.0.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-whitenoise@6.0.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-xlrd-0:2.0.1-5.el8pc.noarch", + "product": { + "name": "python39-xlrd-0:2.0.1-5.el8pc.noarch", + "product_id": "python39-xlrd-0:2.0.1-5.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-xlrd@2.0.1-5.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-xlwt-0:1.3.0-3.el8pc.noarch", + "product": { + "name": "python39-xlwt-0:1.3.0-3.el8pc.noarch", + "product_id": "python39-xlwt-0:1.3.0-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-xlwt@1.3.0-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-zipp-0:3.4.0-4.el8pc.noarch", + "product": { + "name": "python39-zipp-0:3.4.0-4.el8pc.noarch", + "product_id": "python39-zipp-0:3.4.0-4.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-zipp@3.4.0-4.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "qpid-tools-0:1.39.0-7.el8amq.noarch", + "product": { + "name": "qpid-tools-0:1.39.0-7.el8amq.noarch", + "product_id": "qpid-tools-0:1.39.0-7.el8amq.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-tools@1.39.0-7.el8amq?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "qpid-dispatch-tools-0:1.14.0-6.el8.noarch", + "product": { + "name": "qpid-dispatch-tools-0:1.14.0-6.el8.noarch", + "product_id": "qpid-dispatch-tools-0:1.14.0-6.el8.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-dispatch-tools@1.14.0-6.el8?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.noarch", + "product": { + "name": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.noarch", + "product_id": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/redhat-access-insights-puppet@1.0.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-actioncable-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-actioncable-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-actioncable-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-actioncable@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-actionmailbox-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-actionmailbox-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-actionmailbox-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-actionmailbox@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-actionmailer-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-actionmailer-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-actionmailer-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-actionmailer@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-actionpack-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-actionpack-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-actionpack-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-actionpack@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-actiontext-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-actiontext-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-actiontext-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-actiontext@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-actionview-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-actionview-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-actionview-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-actionview@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activejob-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-activejob-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-activejob-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activejob@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activemodel-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-activemodel-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-activemodel-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activemodel@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activerecord-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-activerecord-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-activerecord-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activerecord@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activerecord-import-0:1.4.1-1.el8sat.noarch", + "product": { + "name": "rubygem-activerecord-import-0:1.4.1-1.el8sat.noarch", + "product_id": "rubygem-activerecord-import-0:1.4.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activerecord-import@1.4.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activerecord-session_store-0:2.0.0-1.el8sat.noarch", + "product": { + "name": "rubygem-activerecord-session_store-0:2.0.0-1.el8sat.noarch", + "product_id": "rubygem-activerecord-session_store-0:2.0.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activerecord-session_store@2.0.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activestorage-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-activestorage-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-activestorage-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activestorage@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activesupport-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-activesupport-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-activesupport-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activesupport@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-acts_as_list-0:1.0.3-2.el8sat.noarch", + "product": { + "name": "rubygem-acts_as_list-0:1.0.3-2.el8sat.noarch", + "product_id": "rubygem-acts_as_list-0:1.0.3-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-acts_as_list@1.0.3-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-addressable-0:2.8.4-1.el8sat.noarch", + "product": { + "name": "rubygem-addressable-0:2.8.4-1.el8sat.noarch", + "product_id": "rubygem-addressable-0:2.8.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-addressable@2.8.4-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-algebrick-0:0.7.5-1.el8sat.noarch", + "product": { + "name": "rubygem-algebrick-0:0.7.5-1.el8sat.noarch", + "product_id": "rubygem-algebrick-0:0.7.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-algebrick@0.7.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-amazing_print-0:1.4.0-1.el8sat.noarch", + "product": { + "name": "rubygem-amazing_print-0:1.4.0-1.el8sat.noarch", + "product_id": "rubygem-amazing_print-0:1.4.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-amazing_print@1.4.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ancestry-0:4.3.3-1.el8sat.noarch", + "product": { + "name": "rubygem-ancestry-0:4.3.3-1.el8sat.noarch", + "product_id": "rubygem-ancestry-0:4.3.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ancestry@4.3.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-anemone-0:0.7.2-23.el8sat.noarch", + "product": { + "name": "rubygem-anemone-0:0.7.2-23.el8sat.noarch", + "product_id": "rubygem-anemone-0:0.7.2-23.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-anemone@0.7.2-23.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-angular-rails-templates-1:1.1.0-2.el8sat.noarch", + "product": { + "name": "rubygem-angular-rails-templates-1:1.1.0-2.el8sat.noarch", + "product_id": "rubygem-angular-rails-templates-1:1.1.0-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-angular-rails-templates@1.1.0-2.el8sat?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ansi-0:1.5.0-3.el8sat.noarch", + "product": { + "name": "rubygem-ansi-0:1.5.0-3.el8sat.noarch", + "product_id": "rubygem-ansi-0:1.5.0-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ansi@1.5.0-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.noarch", + "product": { + "name": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.noarch", + "product_id": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-apipie-bindings@0.6.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-apipie-dsl-0:2.5.0-1.el8sat.noarch", + "product": { + "name": "rubygem-apipie-dsl-0:2.5.0-1.el8sat.noarch", + "product_id": "rubygem-apipie-dsl-0:2.5.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-apipie-dsl@2.5.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.noarch", + "product": { + "name": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.noarch", + "product_id": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-apipie-params@0.0.5-5.1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-apipie-rails-0:1.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-apipie-rails-0:1.1.0-1.el8sat.noarch", + "product_id": "rubygem-apipie-rails-0:1.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-apipie-rails@1.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-audited-0:5.3.2-1.el8sat.noarch", + "product": { + "name": "rubygem-audited-0:5.3.2-1.el8sat.noarch", + "product_id": "rubygem-audited-0:5.3.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-audited@5.3.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.noarch", + "product": { + "name": "rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.noarch", + "product_id": "rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-azure_mgmt_compute@0.22.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.noarch", + "product": { + "name": "rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.noarch", + "product_id": "rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-azure_mgmt_network@0.26.1-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.noarch", + "product": { + "name": "rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.noarch", + "product_id": "rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-azure_mgmt_resources@0.18.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.noarch", + "product": { + "name": "rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.noarch", + "product_id": "rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-azure_mgmt_storage@0.23.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.noarch", + "product": { + "name": "rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.noarch", + "product_id": "rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-azure_mgmt_subscriptions@0.18.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-builder-0:3.2.4-2.el8sat.noarch", + "product": { + "name": "rubygem-builder-0:3.2.4-2.el8sat.noarch", + "product_id": "rubygem-builder-0:3.2.4-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-builder@3.2.4-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-bundler_ext-0:0.4.1-6.el8sat.noarch", + "product": { + "name": "rubygem-bundler_ext-0:0.4.1-6.el8sat.noarch", + "product_id": "rubygem-bundler_ext-0:0.4.1-6.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-bundler_ext@0.4.1-6.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-clamp-0:1.3.2-1.el8sat.noarch", + "product": { + "name": "rubygem-clamp-0:1.3.2-1.el8sat.noarch", + "product_id": "rubygem-clamp-0:1.3.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-clamp@1.3.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-coffee-rails-0:5.0.0-2.el8sat.noarch", + "product": { + "name": "rubygem-coffee-rails-0:5.0.0-2.el8sat.noarch", + "product_id": "rubygem-coffee-rails-0:5.0.0-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-coffee-rails@5.0.0-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-coffee-script-0:2.4.1-5.el8sat.noarch", + "product": { + "name": "rubygem-coffee-script-0:2.4.1-5.el8sat.noarch", + "product_id": "rubygem-coffee-script-0:2.4.1-5.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-coffee-script@2.4.1-5.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-coffee-script-source-0:1.12.2-5.el8sat.noarch", + "product": { + "name": "rubygem-coffee-script-source-0:1.12.2-5.el8sat.noarch", + "product_id": "rubygem-coffee-script-source-0:1.12.2-5.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-coffee-script-source@1.12.2-5.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-colorize-0:0.8.1-2.el8sat.noarch", + "product": { + "name": "rubygem-colorize-0:0.8.1-2.el8sat.noarch", + "product_id": "rubygem-colorize-0:0.8.1-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-colorize@0.8.1-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.noarch", + "product": { + "name": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.noarch", + "product_id": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-concurrent-ruby@1.1.10-1.el8sat?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.noarch", + "product": { + "name": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.noarch", + "product_id": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-concurrent-ruby-edge@0.6.0-3.el8sat?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-connection_pool-0:2.4.1-1.el8sat.noarch", + "product": { + "name": "rubygem-connection_pool-0:2.4.1-1.el8sat.noarch", + "product_id": "rubygem-connection_pool-0:2.4.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-connection_pool@2.4.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-crass-0:1.0.6-2.el8sat.noarch", + "product": { + "name": "rubygem-crass-0:1.0.6-2.el8sat.noarch", + "product_id": "rubygem-crass-0:1.0.6-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-crass@1.0.6-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-css_parser-0:1.14.0-1.el8sat.noarch", + "product": { + "name": "rubygem-css_parser-0:1.14.0-1.el8sat.noarch", + "product_id": "rubygem-css_parser-0:1.14.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-css_parser@1.14.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-daemons-0:1.4.1-1.el8sat.noarch", + "product": { + "name": "rubygem-daemons-0:1.4.1-1.el8sat.noarch", + "product_id": "rubygem-daemons-0:1.4.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-daemons@1.4.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-deacon-0:1.0.0-5.el8sat.noarch", + "product": { + "name": "rubygem-deacon-0:1.0.0-5.el8sat.noarch", + "product_id": "rubygem-deacon-0:1.0.0-5.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-deacon@1.0.0-5.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-declarative-0:0.0.20-1.el8sat.noarch", + "product": { + "name": "rubygem-declarative-0:0.0.20-1.el8sat.noarch", + "product_id": "rubygem-declarative-0:0.0.20-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-declarative@0.0.20-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-deep_cloneable-0:3.2.0-1.el8sat.noarch", + "product": { + "name": "rubygem-deep_cloneable-0:3.2.0-1.el8sat.noarch", + "product_id": "rubygem-deep_cloneable-0:3.2.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-deep_cloneable@3.2.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-deface-0:1.5.3-3.el8sat.noarch", + "product": { + "name": "rubygem-deface-0:1.5.3-3.el8sat.noarch", + "product_id": "rubygem-deface-0:1.5.3-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-deface@1.5.3-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-diffy-0:3.4.2-1.el8sat.noarch", + "product": { + "name": "rubygem-diffy-0:3.4.2-1.el8sat.noarch", + "product_id": "rubygem-diffy-0:3.4.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-diffy@3.4.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch", + "product": { + "name": "rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch", + "product_id": "rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-domain_name@0.5.20190701-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-dynflow-0:1.7.0-1.el8sat.noarch", + "product": { + "name": "rubygem-dynflow-0:1.7.0-1.el8sat.noarch", + "product_id": "rubygem-dynflow-0:1.7.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-dynflow@1.7.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-erubi-0:1.12.0-1.el8sat.noarch", + "product": { + "name": "rubygem-erubi-0:1.12.0-1.el8sat.noarch", + "product_id": "rubygem-erubi-0:1.12.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-erubi@1.12.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-et-orbi-0:1.2.7-1.el8sat.noarch", + "product": { + "name": "rubygem-et-orbi-0:1.2.7-1.el8sat.noarch", + "product_id": "rubygem-et-orbi-0:1.2.7-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-et-orbi@1.2.7-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-excon-0:0.99.0-1.el8sat.noarch", + "product": { + "name": "rubygem-excon-0:0.99.0-1.el8sat.noarch", + "product_id": "rubygem-excon-0:0.99.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-excon@0.99.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-execjs-0:2.8.1-1.el8sat.noarch", + "product": { + "name": "rubygem-execjs-0:2.8.1-1.el8sat.noarch", + "product_id": "rubygem-execjs-0:2.8.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-execjs@2.8.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-facter-0:4.4.0-1.el8sat.noarch", + "product": { + "name": "rubygem-facter-0:4.4.0-1.el8sat.noarch", + "product_id": "rubygem-facter-0:4.4.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-facter@4.4.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-0:1.10.2-1.el8sat.noarch", + "product": { + "name": "rubygem-faraday-0:1.10.2-1.el8sat.noarch", + "product_id": "rubygem-faraday-0:1.10.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday@1.10.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.noarch", + "product": { + "name": "rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.noarch", + "product_id": "rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-cookie_jar@0.0.6-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.noarch", + "product": { + "name": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.noarch", + "product_id": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-em_http@1.0.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.noarch", + "product": { + "name": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.noarch", + "product_id": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-em_synchrony@1.0.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-excon-0:1.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-faraday-excon-0:1.1.0-1.el8sat.noarch", + "product_id": "rubygem-faraday-excon-0:1.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-excon@1.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.noarch", + "product": { + "name": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.noarch", + "product_id": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-httpclient@1.0.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.noarch", + "product": { + "name": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.noarch", + "product_id": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday_middleware@1.2.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.noarch", + "product": { + "name": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.noarch", + "product_id": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-multipart@1.0.4-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.noarch", + "product": { + "name": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.noarch", + "product_id": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-net_http@1.0.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.noarch", + "product": { + "name": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.noarch", + "product_id": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-net_http_persistent@1.2.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-patron-0:1.0.0-1.el8sat.noarch", + "product": { + "name": "rubygem-faraday-patron-0:1.0.0-1.el8sat.noarch", + "product_id": "rubygem-faraday-patron-0:1.0.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-patron@1.0.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-rack-0:1.0.0-1.el8sat.noarch", + "product": { + "name": "rubygem-faraday-rack-0:1.0.0-1.el8sat.noarch", + "product_id": "rubygem-faraday-rack-0:1.0.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-rack@1.0.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-retry-0:1.0.3-1.el8sat.noarch", + "product": { + "name": "rubygem-faraday-retry-0:1.0.3-1.el8sat.noarch", + "product_id": "rubygem-faraday-retry-0:1.0.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-retry@1.0.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch", + "product": { + "name": "rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch", + "product_id": "rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fast_gettext@1.8.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-aws-0:3.19.0-1.el8sat.noarch", + "product": { + "name": "rubygem-fog-aws-0:3.19.0-1.el8sat.noarch", + "product_id": "rubygem-fog-aws-0:3.19.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-aws@3.19.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-core-0:2.3.0-1.el8sat.noarch", + "product": { + "name": "rubygem-fog-core-0:2.3.0-1.el8sat.noarch", + "product_id": "rubygem-fog-core-0:2.3.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-core@2.3.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-json-0:1.2.0-4.el8sat.noarch", + "product": { + "name": "rubygem-fog-json-0:1.2.0-4.el8sat.noarch", + "product_id": "rubygem-fog-json-0:1.2.0-4.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-json@1.2.0-4.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-kubevirt-0:1.3.7-1.el8sat.noarch", + "product": { + "name": "rubygem-fog-kubevirt-0:1.3.7-1.el8sat.noarch", + "product_id": "rubygem-fog-kubevirt-0:1.3.7-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-kubevirt@1.3.7-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-libvirt-0:0.11.0-1.el8sat.noarch", + "product": { + "name": "rubygem-fog-libvirt-0:0.11.0-1.el8sat.noarch", + "product_id": "rubygem-fog-libvirt-0:0.11.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-libvirt@0.11.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-openstack-0:1.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-fog-openstack-0:1.1.0-1.el8sat.noarch", + "product_id": "rubygem-fog-openstack-0:1.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-openstack@1.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-ovirt-0:2.0.2-1.el8sat.noarch", + "product": { + "name": "rubygem-fog-ovirt-0:2.0.2-1.el8sat.noarch", + "product_id": "rubygem-fog-ovirt-0:2.0.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-ovirt@2.0.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.noarch", + "product": { + "name": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.noarch", + "product_id": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-vsphere@3.6.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-xml-0:0.1.4-1.el8sat.noarch", + "product": { + "name": "rubygem-fog-xml-0:0.1.4-1.el8sat.noarch", + "product_id": "rubygem-fog-xml-0:0.1.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-xml@0.1.4-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_ansible-0:12.0.6-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_ansible-0:12.0.6-1.el8sat.noarch", + "product_id": "rubygem-foreman_ansible-0:12.0.6-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_ansible@12.0.6-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.noarch", + "product_id": "rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_azure_rm@2.2.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.noarch", + "product": { + "name": "rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.noarch", + "product_id": "rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_bootdisk@21.0.4-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_discovery-0:22.0.4-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_discovery-0:22.0.4-1.el8sat.noarch", + "product_id": "rubygem-foreman_discovery-0:22.0.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_discovery@22.0.4-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_google-0:1.0.4-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_google-0:1.0.4-1.el8sat.noarch", + "product_id": "rubygem-foreman_google-0:1.0.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_google@1.0.4-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.noarch", + "product_id": "rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_hooks@0.3.17-3.1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.noarch", + "product": { + "name": "rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.noarch", + "product_id": "rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_kubevirt@0.1.9-4.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_leapp-0:0.1.14-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_leapp-0:0.1.14-1.el8sat.noarch", + "product_id": "rubygem-foreman_leapp-0:0.1.14-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_leapp@0.1.14-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch", + "product_id": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_maintain@1.3.5-1.el8sat?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_openscap-0:7.0.0-2.el8sat.noarch", + "product": { + "name": "rubygem-foreman_openscap-0:7.0.0-2.el8sat.noarch", + "product_id": "rubygem-foreman_openscap-0:7.0.0-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_openscap@7.0.0-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_puppet-0:6.0.1-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_puppet-0:6.0.1-1.el8sat.noarch", + "product_id": "rubygem-foreman_puppet-0:6.0.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_puppet@6.0.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.noarch", + "product_id": "rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_remote_execution@10.0.7-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_remote_execution-cockpit-0:10.0.7-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_remote_execution-cockpit-0:10.0.7-1.el8sat.noarch", + "product_id": "rubygem-foreman_remote_execution-cockpit-0:10.0.7-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_remote_execution-cockpit@10.0.7-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.noarch", + "product_id": "rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_rh_cloud@8.0.51-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_scap_client-0:0.5.0-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_scap_client-0:0.5.0-1.el8sat.noarch", + "product_id": "rubygem-foreman_scap_client-0:0.5.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_scap_client@0.5.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_templates-0:9.4.0-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_templates-0:9.4.0-1.el8sat.noarch", + "product_id": "rubygem-foreman_templates-0:9.4.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_templates@9.4.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.noarch", + "product_id": "rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_theme_satellite@12.0.0.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.noarch", + "product_id": "rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_virt_who_configure@0.5.16-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_webhooks-0:3.2.1-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_webhooks-0:3.2.1-1.el8sat.noarch", + "product_id": "rubygem-foreman_webhooks-0:3.2.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_webhooks@3.2.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-formatador-0:1.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-formatador-0:1.1.0-1.el8sat.noarch", + "product_id": "rubygem-formatador-0:1.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-formatador@1.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-friendly_id-0:5.5.0-1.el8sat.noarch", + "product": { + "name": "rubygem-friendly_id-0:5.5.0-1.el8sat.noarch", + "product_id": "rubygem-friendly_id-0:5.5.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-friendly_id@5.5.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fugit-0:1.8.1-1.el8sat.noarch", + "product": { + "name": "rubygem-fugit-0:1.8.1-1.el8sat.noarch", + "product_id": "rubygem-fugit-0:1.8.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fugit@1.8.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fx-0:0.7.0-1.el8sat.noarch", + "product": { + "name": "rubygem-fx-0:0.7.0-1.el8sat.noarch", + "product_id": "rubygem-fx-0:0.7.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fx@0.7.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-gapic-common-0:0.12.0-1.el8sat.noarch", + "product": { + "name": "rubygem-gapic-common-0:0.12.0-1.el8sat.noarch", + "product_id": "rubygem-gapic-common-0:0.12.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-gapic-common@0.12.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-get_process_mem-0:0.2.7-2.1.el8sat.noarch", + "product": { + "name": "rubygem-get_process_mem-0:0.2.7-2.1.el8sat.noarch", + "product_id": "rubygem-get_process_mem-0:0.2.7-2.1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-get_process_mem@0.2.7-2.1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.noarch", + "product": { + "name": "rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.noarch", + "product_id": "rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-gettext_i18n_rails@1.10.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-git-0:1.18.0-1.el8sat.noarch", + "product": { + "name": "rubygem-git-0:1.18.0-1.el8sat.noarch", + "product_id": "rubygem-git-0:1.18.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-git@1.18.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.noarch", + "product": { + "name": "rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.noarch", + "product_id": "rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-gitlab-sidekiq-fetcher@0.9.0-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-globalid-0:1.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-globalid-0:1.1.0-1.el8sat.noarch", + "product_id": "rubygem-globalid-0:1.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-globalid@1.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.noarch", + "product": { + "name": "rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.noarch", + "product_id": "rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-googleapis-common-protos@1.3.12-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.noarch", + "product": { + "name": "rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.noarch", + "product_id": "rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-googleapis-common-protos-types@1.4.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.noarch", + "product": { + "name": "rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.noarch", + "product_id": "rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-apis-compute_v1@0.54.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-apis-core-0:0.9.1-1.el8sat.noarch", + "product": { + "name": "rubygem-google-apis-core-0:0.9.1-1.el8sat.noarch", + "product_id": "rubygem-google-apis-core-0:0.9.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-apis-core@0.9.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-googleauth-0:1.3.0-1.el8sat.noarch", + "product": { + "name": "rubygem-googleauth-0:1.3.0-1.el8sat.noarch", + "product_id": "rubygem-googleauth-0:1.3.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-googleauth@1.3.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-cloud-common-0:1.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-google-cloud-common-0:1.1.0-1.el8sat.noarch", + "product_id": "rubygem-google-cloud-common-0:1.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-cloud-common@1.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-cloud-compute-0:0.5.0-1.el8sat.noarch", + "product": { + "name": "rubygem-google-cloud-compute-0:0.5.0-1.el8sat.noarch", + "product_id": "rubygem-google-cloud-compute-0:0.5.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-cloud-compute@0.5.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.noarch", + "product": { + "name": "rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.noarch", + "product_id": "rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-cloud-compute-v1@1.7.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-cloud-core-0:1.6.0-1.el8sat.noarch", + "product": { + "name": "rubygem-google-cloud-core-0:1.6.0-1.el8sat.noarch", + "product_id": "rubygem-google-cloud-core-0:1.6.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-cloud-core@1.6.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-cloud-env-0:1.6.0-1.el8sat.noarch", + "product": { + "name": "rubygem-google-cloud-env-0:1.6.0-1.el8sat.noarch", + "product_id": "rubygem-google-cloud-env-0:1.6.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-cloud-env@1.6.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-cloud-errors-0:1.3.0-1.el8sat.noarch", + "product": { + "name": "rubygem-google-cloud-errors-0:1.3.0-1.el8sat.noarch", + "product_id": "rubygem-google-cloud-errors-0:1.3.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-cloud-errors@1.3.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-graphql-0:1.13.19-1.el8sat.noarch", + "product": { + "name": "rubygem-graphql-0:1.13.19-1.el8sat.noarch", + "product_id": "rubygem-graphql-0:1.13.19-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-graphql@1.13.19-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-graphql-batch-0:0.5.3-1.el8sat.noarch", + "product": { + "name": "rubygem-graphql-batch-0:0.5.3-1.el8sat.noarch", + "product_id": "rubygem-graphql-batch-0:0.5.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-graphql-batch@0.5.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-gssapi-0:1.3.1-1.el8sat.noarch", + "product": { + "name": "rubygem-gssapi-0:1.3.1-1.el8sat.noarch", + "product_id": "rubygem-gssapi-0:1.3.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-gssapi@1.3.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli@3.7.0.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman@3.7.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_admin@1.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_ansible@0.5.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_azure_rm@0.2.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_bootdisk@0.3.0-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_discovery@1.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_google@1.0.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_kubevirt@0.1.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_leapp@0.1.1-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_openscap@0.1.13-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_puppet@0.0.6-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_remote_execution@0.2.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_tasks@0.0.19-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_templates@0.2.0-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_virt_who_configure@0.0.9-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_webhooks@0.0.4-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_katello@1.9.1.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hashie-0:5.0.0-1.el8sat.noarch", + "product": { + "name": "rubygem-hashie-0:5.0.0-1.el8sat.noarch", + "product_id": "rubygem-hashie-0:5.0.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hashie@5.0.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-highline-0:2.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-highline-0:2.1.0-1.el8sat.noarch", + "product_id": "rubygem-highline-0:2.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-highline@2.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hocon-0:1.4.0-1.el8sat.noarch", + "product": { + "name": "rubygem-hocon-0:1.4.0-1.el8sat.noarch", + "product_id": "rubygem-hocon-0:1.4.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hocon@1.4.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-http-0:3.3.0-2.el8sat.noarch", + "product": { + "name": "rubygem-http-0:3.3.0-2.el8sat.noarch", + "product_id": "rubygem-http-0:3.3.0-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-http@3.3.0-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-http-accept-0:1.7.0-1.el8sat.noarch", + "product": { + "name": "rubygem-http-accept-0:1.7.0-1.el8sat.noarch", + "product_id": "rubygem-http-accept-0:1.7.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-http-accept@1.7.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-httpclient-0:2.8.3-4.el8sat.noarch", + "product": { + "name": "rubygem-httpclient-0:2.8.3-4.el8sat.noarch", + "product_id": "rubygem-httpclient-0:2.8.3-4.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-httpclient@2.8.3-4.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-http-cookie-0:1.0.5-1.el8sat.noarch", + "product": { + "name": "rubygem-http-cookie-0:1.0.5-1.el8sat.noarch", + "product_id": "rubygem-http-cookie-0:1.0.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-http-cookie@1.0.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-http-form_data-0:2.1.1-2.el8sat.noarch", + "product": { + "name": "rubygem-http-form_data-0:2.1.1-2.el8sat.noarch", + "product_id": "rubygem-http-form_data-0:2.1.1-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-http-form_data@2.1.1-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-i18n-0:1.13.0-1.el8sat.noarch", + "product": { + "name": "rubygem-i18n-0:1.13.0-1.el8sat.noarch", + "product_id": "rubygem-i18n-0:1.13.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-i18n@1.13.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-infoblox-0:3.0.0-4.el8sat.noarch", + "product": { + "name": "rubygem-infoblox-0:3.0.0-4.el8sat.noarch", + "product_id": "rubygem-infoblox-0:3.0.0-4.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-infoblox@3.0.0-4.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-jgrep-0:1.3.3-11.el8sat.noarch", + "product": { + "name": "rubygem-jgrep-0:1.3.3-11.el8sat.noarch", + "product_id": "rubygem-jgrep-0:1.3.3-11.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-jgrep@1.3.3-11.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-journald-logger-0:3.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-journald-logger-0:3.1.0-1.el8sat.noarch", + "product_id": "rubygem-journald-logger-0:3.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-journald-logger@3.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-jsonpath-0:1.1.2-1.el8sat.noarch", + "product": { + "name": "rubygem-jsonpath-0:1.1.2-1.el8sat.noarch", + "product_id": "rubygem-jsonpath-0:1.1.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-jsonpath@1.1.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-jwt-0:2.7.0-1.el8sat.noarch", + "product": { + "name": "rubygem-jwt-0:2.7.0-1.el8sat.noarch", + "product_id": "rubygem-jwt-0:2.7.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-jwt@2.7.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-kafo-0:7.0.0-1.el8sat.noarch", + "product": { + "name": "rubygem-kafo-0:7.0.0-1.el8sat.noarch", + "product_id": "rubygem-kafo-0:7.0.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-kafo@7.0.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.noarch", + "product": { + "name": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.noarch", + "product_id": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-kafo_parsers@1.2.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.noarch", + "product": { + "name": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.noarch", + "product_id": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-kafo_wizards@0.0.2-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-katello-0:4.9.0.16-1.el8sat.noarch", + "product": { + "name": "rubygem-katello-0:4.9.0.16-1.el8sat.noarch", + "product_id": "rubygem-katello-0:4.9.0.16-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-katello@4.9.0.16-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-kubeclient-0:4.10.1-1.el8sat.noarch", + "product": { + "name": "rubygem-kubeclient-0:4.10.1-1.el8sat.noarch", + "product_id": "rubygem-kubeclient-0:4.10.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-kubeclient@4.10.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ldap_fluff-0:0.6.0-1.el8sat.noarch", + "product": { + "name": "rubygem-ldap_fluff-0:0.6.0-1.el8sat.noarch", + "product_id": "rubygem-ldap_fluff-0:0.6.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ldap_fluff@0.6.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-little-plugger-0:1.1.4-3.el8sat.noarch", + "product": { + "name": "rubygem-little-plugger-0:1.1.4-3.el8sat.noarch", + "product_id": "rubygem-little-plugger-0:1.1.4-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-little-plugger@1.1.4-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-locale-0:2.1.3-1.el8sat.noarch", + "product": { + "name": "rubygem-locale-0:2.1.3-1.el8sat.noarch", + "product_id": "rubygem-locale-0:2.1.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-locale@2.1.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-logging-0:2.3.1-1.el8sat.noarch", + "product": { + "name": "rubygem-logging-0:2.3.1-1.el8sat.noarch", + "product_id": "rubygem-logging-0:2.3.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-logging@2.3.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-logging-journald-0:2.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-logging-journald-0:2.1.0-1.el8sat.noarch", + "product_id": "rubygem-logging-journald-0:2.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-logging-journald@2.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-loofah-0:2.21.3-1.el8sat.noarch", + "product": { + "name": "rubygem-loofah-0:2.21.3-1.el8sat.noarch", + "product_id": "rubygem-loofah-0:2.21.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-loofah@2.21.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-mail-0:2.8.0.1-1.el8sat.noarch", + "product": { + "name": "rubygem-mail-0:2.8.0.1-1.el8sat.noarch", + "product_id": "rubygem-mail-0:2.8.0.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-mail@2.8.0.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-marcel-0:1.0.2-1.el8sat.noarch", + "product": { + "name": "rubygem-marcel-0:1.0.2-1.el8sat.noarch", + "product_id": "rubygem-marcel-0:1.0.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-marcel@1.0.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-memoist-0:0.16.2-1.el8sat.noarch", + "product": { + "name": "rubygem-memoist-0:0.16.2-1.el8sat.noarch", + "product_id": "rubygem-memoist-0:0.16.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-memoist@0.16.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-method_source-0:1.0.0-1.el8sat.noarch", + "product": { + "name": "rubygem-method_source-0:1.0.0-1.el8sat.noarch", + "product_id": "rubygem-method_source-0:1.0.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-method_source@1.0.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-mime-types-0:3.4.1-1.el8sat.noarch", + "product": { + "name": "rubygem-mime-types-0:3.4.1-1.el8sat.noarch", + "product_id": "rubygem-mime-types-0:3.4.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-mime-types@3.4.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch", + "product": { + "name": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch", + "product_id": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-mime-types-data@3.2023.0218.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-mini_mime-0:1.1.2-1.el8sat.noarch", + "product": { + "name": "rubygem-mini_mime-0:1.1.2-1.el8sat.noarch", + "product_id": "rubygem-mini_mime-0:1.1.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-mini_mime@1.1.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-mqtt-0:0.5.0-1.el8sat.noarch", + "product": { + "name": "rubygem-mqtt-0:0.5.0-1.el8sat.noarch", + "product_id": "rubygem-mqtt-0:0.5.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-mqtt@0.5.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ms_rest-0:0.7.6-1.el8sat.noarch", + "product": { + "name": "rubygem-ms_rest-0:0.7.6-1.el8sat.noarch", + "product_id": "rubygem-ms_rest-0:0.7.6-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ms_rest@0.7.6-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ms_rest_azure-0:0.12.0-1.el8sat.noarch", + "product": { + "name": "rubygem-ms_rest_azure-0:0.12.0-1.el8sat.noarch", + "product_id": "rubygem-ms_rest_azure-0:0.12.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ms_rest_azure@0.12.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-multi_json-0:1.15.0-1.el8sat.noarch", + "product": { + "name": "rubygem-multi_json-0:1.15.0-1.el8sat.noarch", + "product_id": "rubygem-multi_json-0:1.15.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-multi_json@1.15.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-multipart-post-0:2.2.3-1.el8sat.noarch", + "product": { + "name": "rubygem-multipart-post-0:2.2.3-1.el8sat.noarch", + "product_id": "rubygem-multipart-post-0:2.2.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-multipart-post@2.2.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-mustermann-0:2.0.2-1.el8sat.noarch", + "product": { + "name": "rubygem-mustermann-0:2.0.2-1.el8sat.noarch", + "product_id": "rubygem-mustermann-0:2.0.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-mustermann@2.0.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-net_http_unix-0:0.2.2-2.el8sat.noarch", + "product": { + "name": "rubygem-net_http_unix-0:0.2.2-2.el8sat.noarch", + "product_id": "rubygem-net_http_unix-0:0.2.2-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-net_http_unix@0.2.2-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-net-ldap-0:0.18.0-1.el8sat.noarch", + "product": { + "name": "rubygem-net-ldap-0:0.18.0-1.el8sat.noarch", + "product_id": "rubygem-net-ldap-0:0.18.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-net-ldap@0.18.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-net-ping-0:2.0.8-1.el8sat.noarch", + "product": { + "name": "rubygem-net-ping-0:2.0.8-1.el8sat.noarch", + "product_id": "rubygem-net-ping-0:2.0.8-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-net-ping@2.0.8-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-netrc-0:0.11.0-6.el8sat.noarch", + "product": { + "name": "rubygem-netrc-0:0.11.0-6.el8sat.noarch", + "product_id": "rubygem-netrc-0:0.11.0-6.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-netrc@0.11.0-6.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-net-scp-0:4.0.0-1.el8sat.noarch", + "product": { + "name": "rubygem-net-scp-0:4.0.0-1.el8sat.noarch", + "product_id": "rubygem-net-scp-0:4.0.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-net-scp@4.0.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-net-ssh-0:7.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-net-ssh-0:7.1.0-1.el8sat.noarch", + "product_id": "rubygem-net-ssh-0:7.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-net-ssh@7.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.noarch", + "product": { + "name": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.noarch", + "product_id": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-net-ssh-krb@0.4.0-4.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-oauth-0:1.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-oauth-0:1.1.0-1.el8sat.noarch", + "product_id": "rubygem-oauth-0:1.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-oauth@1.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch", + "product": { + "name": "rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch", + "product_id": "rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-oauth-tty@1.0.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-openscap-0:0.4.9-9.el8sat.noarch", + "product": { + "name": "rubygem-openscap-0:0.4.9-9.el8sat.noarch", + "product_id": "rubygem-openscap-0:0.4.9-9.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-openscap@0.4.9-9.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-openscap_parser-0:1.0.2-2.el8sat.noarch", + "product": { + "name": "rubygem-openscap_parser-0:1.0.2-2.el8sat.noarch", + "product_id": "rubygem-openscap_parser-0:1.0.2-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-openscap_parser@1.0.2-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-optimist-0:3.0.1-1.el8sat.noarch", + "product": { + "name": "rubygem-optimist-0:3.0.1-1.el8sat.noarch", + "product_id": "rubygem-optimist-0:3.0.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-optimist@3.0.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-os-0:1.1.4-1.el8sat.noarch", + "product": { + "name": "rubygem-os-0:1.1.4-1.el8sat.noarch", + "product_id": "rubygem-os-0:1.1.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-os@1.1.4-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.noarch", + "product": { + "name": "rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.noarch", + "product_id": "rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ovirt_provision_plugin@2.0.3-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-parallel-0:1.23.0-1.el8sat.noarch", + "product": { + "name": "rubygem-parallel-0:1.23.0-1.el8sat.noarch", + "product_id": "rubygem-parallel-0:1.23.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-parallel@1.23.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-polyglot-0:0.3.5-3.1.el8sat.noarch", + "product": { + "name": "rubygem-polyglot-0:0.3.5-3.1.el8sat.noarch", + "product_id": "rubygem-polyglot-0:0.3.5-3.1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-polyglot@0.3.5-3.1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-powerbar-0:2.0.1-3.el8sat.noarch", + "product": { + "name": "rubygem-powerbar-0:2.0.1-3.el8sat.noarch", + "product_id": "rubygem-powerbar-0:2.0.1-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-powerbar@2.0.1-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-prometheus-client-0:4.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-prometheus-client-0:4.1.0-1.el8sat.noarch", + "product_id": "rubygem-prometheus-client-0:4.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-prometheus-client@4.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-promise.rb-0:0.7.4-3.el8sat.noarch", + "product": { + "name": "rubygem-promise.rb-0:0.7.4-3.el8sat.noarch", + "product_id": "rubygem-promise.rb-0:0.7.4-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-promise.rb@0.7.4-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-public_suffix-0:5.0.1-1.el8sat.noarch", + "product": { + "name": "rubygem-public_suffix-0:5.0.1-1.el8sat.noarch", + "product_id": "rubygem-public_suffix-0:5.0.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-public_suffix@5.0.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.noarch", + "product": { + "name": "rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.noarch", + "product_id": "rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_ansible_client@0.16.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.noarch", + "product": { + "name": "rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.noarch", + "product_id": "rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_certguard_client@1.6.4-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_container_client-0:2.14.5-1.el8sat.noarch", + "product": { + "name": "rubygem-pulp_container_client-0:2.14.5-1.el8sat.noarch", + "product_id": "rubygem-pulp_container_client-0:2.14.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_container_client@2.14.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulpcore_client-1:3.22.4-1.el8sat.noarch", + "product": { + "name": "rubygem-pulpcore_client-1:3.22.4-1.el8sat.noarch", + "product_id": "rubygem-pulpcore_client-1:3.22.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulpcore_client@3.22.4-1.el8sat?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_deb_client-0:2.20.2-1.el8sat.noarch", + "product": { + "name": "rubygem-pulp_deb_client-0:2.20.2-1.el8sat.noarch", + "product_id": "rubygem-pulp_deb_client-0:2.20.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_deb_client@2.20.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_file_client-0:1.12.0-2.el8sat.noarch", + "product": { + "name": "rubygem-pulp_file_client-0:1.12.0-2.el8sat.noarch", + "product_id": "rubygem-pulp_file_client-0:1.12.0-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_file_client@1.12.0-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.noarch", + "product": { + "name": "rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.noarch", + "product_id": "rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_ostree_client@2.0.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_python_client-0:3.8.0-2.el8sat.noarch", + "product": { + "name": "rubygem-pulp_python_client-0:3.8.0-2.el8sat.noarch", + "product_id": "rubygem-pulp_python_client-0:3.8.0-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_python_client@3.8.0-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.noarch", + "product": { + "name": "rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.noarch", + "product_id": "rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_rpm_client@3.19.6-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-puma-status-0:1.6-1.el8sat.noarch", + "product": { + "name": "rubygem-puma-status-0:1.6-1.el8sat.noarch", + "product_id": "rubygem-puma-status-0:1.6-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-puma-status@1.6-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-raabro-0:1.4.0-1.el8sat.noarch", + "product": { + "name": "rubygem-raabro-0:1.4.0-1.el8sat.noarch", + "product_id": "rubygem-raabro-0:1.4.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-raabro@1.4.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rabl-0:0.16.1-1.el8sat.noarch", + "product": { + "name": "rubygem-rabl-0:0.16.1-1.el8sat.noarch", + "product_id": "rubygem-rabl-0:0.16.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rabl@0.16.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rack-0:2.2.7-1.el8sat.noarch", + "product": { + "name": "rubygem-rack-0:2.2.7-1.el8sat.noarch", + "product_id": "rubygem-rack-0:2.2.7-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rack@2.2.7-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rack-cors-0:1.1.1-1.el8sat.noarch", + "product": { + "name": "rubygem-rack-cors-0:1.1.1-1.el8sat.noarch", + "product_id": "rubygem-rack-cors-0:1.1.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rack-cors@1.1.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rack-jsonp-0:1.3.1-10.el8sat.noarch", + "product": { + "name": "rubygem-rack-jsonp-0:1.3.1-10.el8sat.noarch", + "product_id": "rubygem-rack-jsonp-0:1.3.1-10.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rack-jsonp@1.3.1-10.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rack-protection-0:2.2.4-1.el8sat.noarch", + "product": { + "name": "rubygem-rack-protection-0:2.2.4-1.el8sat.noarch", + "product_id": "rubygem-rack-protection-0:2.2.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rack-protection@2.2.4-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rack-test-0:2.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-rack-test-0:2.1.0-1.el8sat.noarch", + "product_id": "rubygem-rack-test-0:2.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rack-test@2.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rails-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-rails-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-rails-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rails@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rails-dom-testing-0:2.0.3-7.el8sat.noarch", + "product": { + "name": "rubygem-rails-dom-testing-0:2.0.3-7.el8sat.noarch", + "product_id": "rubygem-rails-dom-testing-0:2.0.3-7.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rails-dom-testing@2.0.3-7.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.noarch", + "product": { + "name": "rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.noarch", + "product_id": "rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rails-html-sanitizer@1.5.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rails-i18n-0:7.0.7-1.el8sat.noarch", + "product": { + "name": "rubygem-rails-i18n-0:7.0.7-1.el8sat.noarch", + "product_id": "rubygem-rails-i18n-0:7.0.7-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rails-i18n@7.0.7-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-railties-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-railties-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-railties-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-railties@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rainbow-0:2.2.2-1.el8sat.noarch", + "product": { + "name": "rubygem-rainbow-0:2.2.2-1.el8sat.noarch", + "product_id": "rubygem-rainbow-0:2.2.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rainbow@2.2.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rb-inotify-0:0.10.1-1.el8sat.noarch", + "product": { + "name": "rubygem-rb-inotify-0:0.10.1-1.el8sat.noarch", + "product_id": "rubygem-rb-inotify-0:0.10.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rb-inotify@0.10.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rbnacl-0:4.0.2-2.el8sat.noarch", + "product": { + "name": "rubygem-rbnacl-0:4.0.2-2.el8sat.noarch", + "product_id": "rubygem-rbnacl-0:4.0.2-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rbnacl@4.0.2-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rbvmomi2-0:3.6.1-1.el8sat.noarch", + "product": { + "name": "rubygem-rbvmomi2-0:3.6.1-1.el8sat.noarch", + "product_id": "rubygem-rbvmomi2-0:3.6.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rbvmomi2@3.6.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rchardet-0:1.8.0-1.el8sat.noarch", + "product": { + "name": "rubygem-rchardet-0:1.8.0-1.el8sat.noarch", + "product_id": "rubygem-rchardet-0:1.8.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rchardet@1.8.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-recursive-open-struct-0:1.1.3-1.el8sat.noarch", + "product": { + "name": "rubygem-recursive-open-struct-0:1.1.3-1.el8sat.noarch", + "product_id": "rubygem-recursive-open-struct-0:1.1.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-recursive-open-struct@1.1.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-redfish_client-0:0.5.4-1.el8sat.noarch", + "product": { + "name": "rubygem-redfish_client-0:0.5.4-1.el8sat.noarch", + "product_id": "rubygem-redfish_client-0:0.5.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-redfish_client@0.5.4-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-redis-0:4.5.1-1.el8sat.noarch", + "product": { + "name": "rubygem-redis-0:4.5.1-1.el8sat.noarch", + "product_id": "rubygem-redis-0:4.5.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-redis@4.5.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-representable-0:3.2.0-1.el8sat.noarch", + "product": { + "name": "rubygem-representable-0:3.2.0-1.el8sat.noarch", + "product_id": "rubygem-representable-0:3.2.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-representable@3.2.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-responders-0:3.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-responders-0:3.1.0-1.el8sat.noarch", + "product_id": "rubygem-responders-0:3.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-responders@3.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rest-client-0:2.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-rest-client-0:2.1.0-1.el8sat.noarch", + "product_id": "rubygem-rest-client-0:2.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rest-client@2.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-retriable-0:3.1.2-3.el8sat.noarch", + "product": { + "name": "rubygem-retriable-0:3.1.2-3.el8sat.noarch", + "product_id": "rubygem-retriable-0:3.1.2-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-retriable@3.1.2-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-roadie-0:5.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-roadie-0:5.1.0-1.el8sat.noarch", + "product_id": "rubygem-roadie-0:5.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-roadie@5.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-roadie-rails-0:3.0.0-1.el8sat.noarch", + "product": { + "name": "rubygem-roadie-rails-0:3.0.0-1.el8sat.noarch", + "product_id": "rubygem-roadie-rails-0:3.0.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-roadie-rails@3.0.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-robotex-0:1.0.0-22.el8sat.noarch", + "product": { + "name": "rubygem-robotex-0:1.0.0-22.el8sat.noarch", + "product_id": "rubygem-robotex-0:1.0.0-22.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-robotex@1.0.0-22.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rsec-0:0.4.3-5.el8sat.noarch", + "product": { + "name": "rubygem-rsec-0:0.4.3-5.el8sat.noarch", + "product_id": "rubygem-rsec-0:0.4.3-5.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rsec@0.4.3-5.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.noarch", + "product": { + "name": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.noarch", + "product_id": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ruby2_keywords@0.0.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ruby2ruby-0:2.5.0-1.el8sat.noarch", + "product": { + "name": "rubygem-ruby2ruby-0:2.5.0-1.el8sat.noarch", + "product_id": "rubygem-ruby2ruby-0:2.5.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ruby2ruby@2.5.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rubyipmi-0:0.11.1-1.el8sat.noarch", + "product": { + "name": "rubygem-rubyipmi-0:0.11.1-1.el8sat.noarch", + "product_id": "rubygem-rubyipmi-0:0.11.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rubyipmi@0.11.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ruby_parser-0:3.20.1-1.el8sat.noarch", + "product": { + "name": "rubygem-ruby_parser-0:3.20.1-1.el8sat.noarch", + "product_id": "rubygem-ruby_parser-0:3.20.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ruby_parser@3.20.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "product": { + "name": "rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "product_id": "rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-safemode@1.3.8-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-scoped_search-0:4.1.11-1.el8sat.noarch", + "product": { + "name": "rubygem-scoped_search-0:4.1.11-1.el8sat.noarch", + "product_id": "rubygem-scoped_search-0:4.1.11-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-scoped_search@4.1.11-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sd_notify-0:0.1.1-1.el8sat.noarch", + "product": { + "name": "rubygem-sd_notify-0:0.1.1-1.el8sat.noarch", + "product_id": "rubygem-sd_notify-0:0.1.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sd_notify@0.1.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-secure_headers-0:6.5.0-1.el8sat.noarch", + "product": { + "name": "rubygem-secure_headers-0:6.5.0-1.el8sat.noarch", + "product_id": "rubygem-secure_headers-0:6.5.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-secure_headers@6.5.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sequel-0:5.68.0-1.el8sat.noarch", + "product": { + "name": "rubygem-sequel-0:5.68.0-1.el8sat.noarch", + "product_id": "rubygem-sequel-0:5.68.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sequel@5.68.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-server_sent_events-0:0.1.3-1.el8sat.noarch", + "product": { + "name": "rubygem-server_sent_events-0:0.1.3-1.el8sat.noarch", + "product_id": "rubygem-server_sent_events-0:0.1.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-server_sent_events@0.1.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sexp_processor-0:4.17.0-1.el8sat.noarch", + "product": { + "name": "rubygem-sexp_processor-0:4.17.0-1.el8sat.noarch", + "product_id": "rubygem-sexp_processor-0:4.17.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sexp_processor@4.17.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sidekiq-0:6.3.1-2.el8sat.noarch", + "product": { + "name": "rubygem-sidekiq-0:6.3.1-2.el8sat.noarch", + "product_id": "rubygem-sidekiq-0:6.3.1-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sidekiq@6.3.1-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-signet-0:0.17.0-1.el8sat.noarch", + "product": { + "name": "rubygem-signet-0:0.17.0-1.el8sat.noarch", + "product_id": "rubygem-signet-0:0.17.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-signet@0.17.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sinatra-1:2.2.4-1.el8sat.noarch", + "product": { + "name": "rubygem-sinatra-1:2.2.4-1.el8sat.noarch", + "product_id": "rubygem-sinatra-1:2.2.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sinatra@2.2.4-1.el8sat?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.noarch", + "product_id": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_ansible@3.5.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.noarch", + "product_id": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_container_gateway@1.0.8-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.noarch", + "product_id": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_dhcp_infoblox@0.0.17-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.noarch", + "product_id": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_dhcp_remote_isc@0.0.5-6.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.noarch", + "product_id": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_discovery@1.0.5-9.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.noarch", + "product_id": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_discovery_image@1.6.0-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.noarch", + "product_id": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_dns_infoblox@1.1.0-7.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.noarch", + "product_id": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_dynflow@0.9.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.noarch", + "product_id": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_dynflow_core@0.4.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.noarch", + "product_id": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_openscap@0.9.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.noarch", + "product_id": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_pulp@3.2.0-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.noarch", + "product_id": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_shellhooks@0.9.2-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch", + "product": { + "name": "rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch", + "product_id": "rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-snaky_hash@2.0.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sprockets-0:4.2.0-1.el8sat.noarch", + "product": { + "name": "rubygem-sprockets-0:4.2.0-1.el8sat.noarch", + "product_id": "rubygem-sprockets-0:4.2.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sprockets@4.2.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sprockets-rails-0:3.4.2-1.el8sat.noarch", + "product": { + "name": "rubygem-sprockets-rails-0:3.4.2-1.el8sat.noarch", + "product_id": "rubygem-sprockets-rails-0:3.4.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sprockets-rails@3.4.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sshkey-0:2.0.0-1.el8sat.noarch", + "product": { + "name": "rubygem-sshkey-0:2.0.0-1.el8sat.noarch", + "product_id": "rubygem-sshkey-0:2.0.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sshkey@2.0.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.noarch", + "product": { + "name": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.noarch", + "product_id": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-statsd-instrument@2.9.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-stomp-0:1.4.10-1.el8sat.noarch", + "product": { + "name": "rubygem-stomp-0:1.4.10-1.el8sat.noarch", + "product_id": "rubygem-stomp-0:1.4.10-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-stomp@1.4.10-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-thor-0:1.2.2-1.el8sat.noarch", + "product": { + "name": "rubygem-thor-0:1.2.2-1.el8sat.noarch", + "product_id": "rubygem-thor-0:1.2.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-thor@1.2.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-tilt-0:2.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-tilt-0:2.1.0-1.el8sat.noarch", + "product_id": "rubygem-tilt-0:2.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-tilt@2.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-timeliness-0:0.3.10-2.el8sat.noarch", + "product": { + "name": "rubygem-timeliness-0:0.3.10-2.el8sat.noarch", + "product_id": "rubygem-timeliness-0:0.3.10-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-timeliness@0.3.10-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-trailblazer-option-0:0.1.2-1.el8sat.noarch", + "product": { + "name": "rubygem-trailblazer-option-0:0.1.2-1.el8sat.noarch", + "product_id": "rubygem-trailblazer-option-0:0.1.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-trailblazer-option@0.1.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-tzinfo-0:2.0.6-1.el8sat.noarch", + "product": { + "name": "rubygem-tzinfo-0:2.0.6-1.el8sat.noarch", + "product_id": "rubygem-tzinfo-0:2.0.6-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-tzinfo@2.0.6-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-uber-0:0.1.0-3.el8sat.noarch", + "product": { + "name": "rubygem-uber-0:0.1.0-3.el8sat.noarch", + "product_id": "rubygem-uber-0:0.1.0-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-uber@0.1.0-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-unf-0:0.1.4-1.el8sat.noarch", + "product": { + "name": "rubygem-unf-0:0.1.4-1.el8sat.noarch", + "product_id": "rubygem-unf-0:0.1.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-unf@0.1.4-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.noarch", + "product": { + "name": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.noarch", + "product_id": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-unicode-display_width@1.8.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.noarch", + "product": { + "name": "rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.noarch", + "product_id": "rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-validates_lengths_from_database@0.8.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-version_gem-0:1.1.2-1.el8sat.noarch", + "product": { + "name": "rubygem-version_gem-0:1.1.2-1.el8sat.noarch", + "product_id": "rubygem-version_gem-0:1.1.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-version_gem@1.1.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-webpack-rails-0:0.9.11-1.el8sat.noarch", + "product": { + "name": "rubygem-webpack-rails-0:0.9.11-1.el8sat.noarch", + "product_id": "rubygem-webpack-rails-0:0.9.11-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-webpack-rails@0.9.11-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-webrick-0:1.8.1-1.el8sat.noarch", + "product": { + "name": "rubygem-webrick-0:1.8.1-1.el8sat.noarch", + "product_id": "rubygem-webrick-0:1.8.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-webrick@1.8.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-websocket-extensions-0:0.1.5-2.el8sat.noarch", + "product": { + "name": "rubygem-websocket-extensions-0:0.1.5-2.el8sat.noarch", + "product_id": "rubygem-websocket-extensions-0:0.1.5-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-websocket-extensions@0.1.5-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-will_paginate-0:3.3.1-1.el8sat.noarch", + "product": { + "name": "rubygem-will_paginate-0:3.3.1-1.el8sat.noarch", + "product_id": "rubygem-will_paginate-0:3.3.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-will_paginate@3.3.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-xmlrpc-0:0.3.2-1.el8sat.noarch", + "product": { + "name": "rubygem-xmlrpc-0:0.3.2-1.el8sat.noarch", + "product_id": "rubygem-xmlrpc-0:0.3.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-xmlrpc@0.3.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-zeitwerk-0:2.6.8-1.el8sat.noarch", + "product": { + "name": "rubygem-zeitwerk-0:2.6.8-1.el8sat.noarch", + "product_id": "rubygem-zeitwerk-0:2.6.8-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-zeitwerk@2.6.8-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-cli-0:6.14.0-3.el8sat.noarch", + "product": { + "name": "satellite-cli-0:6.14.0-3.el8sat.noarch", + "product_id": "satellite-cli-0:6.14.0-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-cli@6.14.0-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-capsule-0:6.14.0-3.el8sat.noarch", + "product": { + "name": "satellite-capsule-0:6.14.0-3.el8sat.noarch", + "product_id": "satellite-capsule-0:6.14.0-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-capsule@6.14.0-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-common-0:6.14.0-3.el8sat.noarch", + "product": { + "name": "satellite-common-0:6.14.0-3.el8sat.noarch", + "product_id": "satellite-common-0:6.14.0-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-common@6.14.0-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-0:6.14.0-3.el8sat.noarch", + "product": { + "name": "satellite-0:6.14.0-3.el8sat.noarch", + "product_id": "satellite-0:6.14.0-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite@6.14.0-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-clone-0:3.5.0-1.el8sat.noarch", + "product": { + "name": "satellite-clone-0:3.5.0-1.el8sat.noarch", + "product_id": "satellite-clone-0:3.5.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-clone@3.5.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-installer-0:6.14.0.5-1.el8sat.noarch", + "product": { + "name": "satellite-installer-0:6.14.0.5-1.el8sat.noarch", + "product_id": "satellite-installer-0:6.14.0.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-installer@6.14.0.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-maintain-0:0.0.2-1.el8sat.noarch", + "product": { + "name": "satellite-maintain-0:0.0.2-1.el8sat.noarch", + "product_id": "satellite-maintain-0:0.0.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-maintain@0.0.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pulpcore-0:3.22.15-2.el8pc.noarch", + "product": { + "name": "python39-pulpcore-0:3.22.15-2.el8pc.noarch", + "product_id": "python39-pulpcore-0:3.22.15-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pulpcore@3.22.15-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman-tasks-0:8.1.4-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman-tasks-0:8.1.4-1.el8sat.noarch", + "product_id": "rubygem-foreman-tasks-0:8.1.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman-tasks@8.1.4-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.noarch", + "product_id": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_remote_execution_ssh@0.10.1-1.el8sat?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "cjson-0:1.7.14-5.el8sat.x86_64", + "product": { + "name": "cjson-0:1.7.14-5.el8sat.x86_64", + "product_id": "cjson-0:1.7.14-5.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cjson@1.7.14-5.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cjson-debugsource-0:1.7.14-5.el8sat.x86_64", + "product": { + "name": "cjson-debugsource-0:1.7.14-5.el8sat.x86_64", + "product_id": "cjson-debugsource-0:1.7.14-5.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cjson-debugsource@1.7.14-5.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cjson-debuginfo-0:1.7.14-5.el8sat.x86_64", + "product": { + "name": "cjson-debuginfo-0:1.7.14-5.el8sat.x86_64", + "product_id": "cjson-debuginfo-0:1.7.14-5.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cjson-debuginfo@1.7.14-5.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "createrepo_c-0:0.20.1-1.el8pc.x86_64", + "product": { + "name": "createrepo_c-0:0.20.1-1.el8pc.x86_64", + "product_id": "createrepo_c-0:0.20.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/createrepo_c@0.20.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "createrepo_c-libs-0:0.20.1-1.el8pc.x86_64", + "product": { + "name": "createrepo_c-libs-0:0.20.1-1.el8pc.x86_64", + "product_id": "createrepo_c-libs-0:0.20.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/createrepo_c-libs@0.20.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "product": { + "name": "python3-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "product_id": "python3-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-createrepo_c@0.20.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "product": { + "name": "python39-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "product_id": "python39-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-createrepo_c@0.20.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "createrepo_c-debugsource-0:0.20.1-1.el8pc.x86_64", + "product": { + "name": "createrepo_c-debugsource-0:0.20.1-1.el8pc.x86_64", + "product_id": "createrepo_c-debugsource-0:0.20.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/createrepo_c-debugsource@0.20.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "product": { + "name": "createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "product_id": "createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/createrepo_c-debuginfo@0.20.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "createrepo_c-libs-debuginfo-0:0.20.1-1.el8pc.x86_64", + "product": { + "name": "createrepo_c-libs-debuginfo-0:0.20.1-1.el8pc.x86_64", + "product_id": "createrepo_c-libs-debuginfo-0:0.20.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/createrepo_c-libs-debuginfo@0.20.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "product": { + "name": "python3-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "product_id": "python3-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-createrepo_c-debuginfo@0.20.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "product": { + "name": "python39-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "product_id": "python39-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-createrepo_c-debuginfo@0.20.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dynflow-utils-0:1.6.3-1.el8sat.x86_64", + "product": { + "name": "dynflow-utils-0:1.6.3-1.el8sat.x86_64", + "product_id": "dynflow-utils-0:1.6.3-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dynflow-utils@1.6.3-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.x86_64", + "product": { + "name": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.x86_64", + "product_id": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-discovery-image-service@1.0.0-4.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "foreman-discovery-image-service-tui-0:1.0.0-4.1.el8sat.x86_64", + "product": { + "name": "foreman-discovery-image-service-tui-0:1.0.0-4.1.el8sat.x86_64", + "product_id": "foreman-discovery-image-service-tui-0:1.0.0-4.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-discovery-image-service-tui@1.0.0-4.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libcomps-0:0.1.18-4.el8pc.x86_64", + "product": { + "name": "libcomps-0:0.1.18-4.el8pc.x86_64", + "product_id": "libcomps-0:0.1.18-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libcomps@0.1.18-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-libcomps-0:0.1.18-4.el8pc.x86_64", + "product": { + "name": "python3-libcomps-0:0.1.18-4.el8pc.x86_64", + "product_id": "python3-libcomps-0:0.1.18-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-libcomps@0.1.18-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-libcomps-0:0.1.18-4.el8pc.x86_64", + "product": { + "name": "python39-libcomps-0:0.1.18-4.el8pc.x86_64", + "product_id": "python39-libcomps-0:0.1.18-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-libcomps@0.1.18-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libcomps-debugsource-0:0.1.18-4.el8pc.x86_64", + "product": { + "name": "libcomps-debugsource-0:0.1.18-4.el8pc.x86_64", + "product_id": "libcomps-debugsource-0:0.1.18-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libcomps-debugsource@0.1.18-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "product": { + "name": "libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "product_id": "libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libcomps-debuginfo@0.1.18-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "product": { + "name": "python3-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "product_id": "python3-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-libcomps-debuginfo@0.1.18-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "product": { + "name": "python39-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "product_id": "python39-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-libcomps-debuginfo@0.1.18-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libdb-cxx-0:5.3.28-42.el8_4.x86_64", + "product": { + "name": "libdb-cxx-0:5.3.28-42.el8_4.x86_64", + "product_id": "libdb-cxx-0:5.3.28-42.el8_4.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libdb-cxx@5.3.28-42.el8_4?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libdb-debugsource-0:5.3.28-42.el8_4.x86_64", + "product": { + "name": "libdb-debugsource-0:5.3.28-42.el8_4.x86_64", + "product_id": "libdb-debugsource-0:5.3.28-42.el8_4.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libdb-debugsource@5.3.28-42.el8_4?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libdb-cxx-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product": { + "name": "libdb-cxx-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_id": "libdb-cxx-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libdb-cxx-debuginfo@5.3.28-42.el8_4?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libdb-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product": { + "name": "libdb-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_id": "libdb-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libdb-debuginfo@5.3.28-42.el8_4?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libdb-java-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product": { + "name": "libdb-java-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_id": "libdb-java-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libdb-java-debuginfo@5.3.28-42.el8_4?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libdb-sql-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product": { + "name": "libdb-sql-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_id": "libdb-sql-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libdb-sql-debuginfo@5.3.28-42.el8_4?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libdb-sql-devel-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product": { + "name": "libdb-sql-devel-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_id": "libdb-sql-devel-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libdb-sql-devel-debuginfo@5.3.28-42.el8_4?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libdb-tcl-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product": { + "name": "libdb-tcl-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_id": "libdb-tcl-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libdb-tcl-debuginfo@5.3.28-42.el8_4?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libdb-utils-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product": { + "name": "libdb-utils-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_id": "libdb-utils-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libdb-utils-debuginfo@5.3.28-42.el8_4?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libsodium-0:1.0.17-3.el8sat.x86_64", + "product": { + "name": "libsodium-0:1.0.17-3.el8sat.x86_64", + "product_id": "libsodium-0:1.0.17-3.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libsodium@1.0.17-3.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libsodium-debugsource-0:1.0.17-3.el8sat.x86_64", + "product": { + "name": "libsodium-debugsource-0:1.0.17-3.el8sat.x86_64", + "product_id": "libsodium-debugsource-0:1.0.17-3.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libsodium-debugsource@1.0.17-3.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libsodium-debuginfo-0:1.0.17-3.el8sat.x86_64", + "product": { + "name": "libsodium-debuginfo-0:1.0.17-3.el8sat.x86_64", + "product_id": "libsodium-debuginfo-0:1.0.17-3.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libsodium-debuginfo@1.0.17-3.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libsolv-0:0.7.22-4.el8pc.x86_64", + "product": { + "name": "libsolv-0:0.7.22-4.el8pc.x86_64", + "product_id": "libsolv-0:0.7.22-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libsolv@0.7.22-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-solv-0:0.7.22-4.el8pc.x86_64", + "product": { + "name": "python3-solv-0:0.7.22-4.el8pc.x86_64", + "product_id": "python3-solv-0:0.7.22-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-solv@0.7.22-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-solv-0:0.7.22-4.el8pc.x86_64", + "product": { + "name": "python39-solv-0:0.7.22-4.el8pc.x86_64", + "product_id": "python39-solv-0:0.7.22-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-solv@0.7.22-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libsolv-debugsource-0:0.7.22-4.el8pc.x86_64", + "product": { + "name": "libsolv-debugsource-0:0.7.22-4.el8pc.x86_64", + "product_id": "libsolv-debugsource-0:0.7.22-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libsolv-debugsource@0.7.22-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libsolv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product": { + "name": "libsolv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product_id": "libsolv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libsolv-debuginfo@0.7.22-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libsolv-demo-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product": { + "name": "libsolv-demo-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product_id": "libsolv-demo-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libsolv-demo-debuginfo@0.7.22-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libsolv-tools-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product": { + "name": "libsolv-tools-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product_id": "libsolv-tools-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libsolv-tools-debuginfo@0.7.22-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product": { + "name": "python3-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product_id": "python3-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-solv-debuginfo@0.7.22-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product": { + "name": "python39-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product_id": "python39-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-solv-debuginfo@0.7.22-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "ruby-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product": { + "name": "ruby-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product_id": "ruby-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ruby-solv-debuginfo@0.7.22-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libwebsockets-0:2.4.2-2.el8.x86_64", + "product": { + "name": "libwebsockets-0:2.4.2-2.el8.x86_64", + "product_id": "libwebsockets-0:2.4.2-2.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libwebsockets@2.4.2-2.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libwebsockets-debugsource-0:2.4.2-2.el8.x86_64", + "product": { + "name": "libwebsockets-debugsource-0:2.4.2-2.el8.x86_64", + "product_id": "libwebsockets-debugsource-0:2.4.2-2.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libwebsockets-debugsource@2.4.2-2.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libwebsockets-debuginfo-0:2.4.2-2.el8.x86_64", + "product": { + "name": "libwebsockets-debuginfo-0:2.4.2-2.el8.x86_64", + "product_id": "libwebsockets-debuginfo-0:2.4.2-2.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libwebsockets-debuginfo@2.4.2-2.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libwebsockets-tests-debuginfo-0:2.4.2-2.el8.x86_64", + "product": { + "name": "libwebsockets-tests-debuginfo-0:2.4.2-2.el8.x86_64", + "product_id": "libwebsockets-tests-debuginfo-0:2.4.2-2.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libwebsockets-tests-debuginfo@2.4.2-2.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "mosquitto-0:2.0.14-1.el8sat.x86_64", + "product": { + "name": "mosquitto-0:2.0.14-1.el8sat.x86_64", + "product_id": "mosquitto-0:2.0.14-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/mosquitto@2.0.14-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "mosquitto-debugsource-0:2.0.14-1.el8sat.x86_64", + "product": { + "name": "mosquitto-debugsource-0:2.0.14-1.el8sat.x86_64", + "product_id": "mosquitto-debugsource-0:2.0.14-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/mosquitto-debugsource@2.0.14-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "mosquitto-debuginfo-0:2.0.14-1.el8sat.x86_64", + "product": { + "name": "mosquitto-debuginfo-0:2.0.14-1.el8sat.x86_64", + "product_id": "mosquitto-debuginfo-0:2.0.14-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/mosquitto-debuginfo@2.0.14-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "postgresql-evr-0:0.0.2-1.el8sat.x86_64", + "product": { + "name": "postgresql-evr-0:0.0.2-1.el8sat.x86_64", + "product_id": "postgresql-evr-0:0.0.2-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/postgresql-evr@0.0.2-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "pulpcore-selinux-0:1.3.3-1.el8pc.x86_64", + "product": { + "name": "pulpcore-selinux-0:1.3.3-1.el8pc.x86_64", + "product_id": "pulpcore-selinux-0:1.3.3-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/pulpcore-selinux@1.3.3-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "product": { + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "product_id": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-aiohttp-0:3.8.3-2.el8pc.x86_64", + "product": { + "name": "python39-aiohttp-0:3.8.3-2.el8pc.x86_64", + "product_id": "python39-aiohttp-0:3.8.3-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-aiohttp@3.8.3-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-aiohttp-debugsource-0:3.8.3-2.el8pc.x86_64", + "product": { + "name": "python-aiohttp-debugsource-0:3.8.3-2.el8pc.x86_64", + "product_id": "python-aiohttp-debugsource-0:3.8.3-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-aiohttp-debugsource@3.8.3-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-aiohttp-debuginfo-0:3.8.3-2.el8pc.x86_64", + "product": { + "name": "python39-aiohttp-debuginfo-0:3.8.3-2.el8pc.x86_64", + "product_id": "python39-aiohttp-debuginfo-0:3.8.3-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-aiohttp-debuginfo@3.8.3-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-brotli-0:1.0.9-2.el8pc.x86_64", + "product": { + "name": "python39-brotli-0:1.0.9-2.el8pc.x86_64", + "product_id": "python39-brotli-0:1.0.9-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-brotli@1.0.9-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-brotli-debugsource-0:1.0.9-2.el8pc.x86_64", + "product": { + "name": "python-brotli-debugsource-0:1.0.9-2.el8pc.x86_64", + "product_id": "python-brotli-debugsource-0:1.0.9-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-brotli-debugsource@1.0.9-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-brotli-debuginfo-0:1.0.9-2.el8pc.x86_64", + "product": { + "name": "python39-brotli-debuginfo-0:1.0.9-2.el8pc.x86_64", + "product_id": "python39-brotli-debuginfo-0:1.0.9-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-brotli-debuginfo@1.0.9-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-cchardet-0:2.1.7-4.el8pc.x86_64", + "product": { + "name": "python39-cchardet-0:2.1.7-4.el8pc.x86_64", + "product_id": "python39-cchardet-0:2.1.7-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-cchardet@2.1.7-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-cchardet-debugsource-0:2.1.7-4.el8pc.x86_64", + "product": { + "name": "python-cchardet-debugsource-0:2.1.7-4.el8pc.x86_64", + "product_id": "python-cchardet-debugsource-0:2.1.7-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-cchardet-debugsource@2.1.7-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-cchardet-debuginfo-0:2.1.7-4.el8pc.x86_64", + "product": { + "name": "python39-cchardet-debuginfo-0:2.1.7-4.el8pc.x86_64", + "product_id": "python39-cchardet-debuginfo-0:2.1.7-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-cchardet-debuginfo@2.1.7-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-cffi-0:1.15.1-1.el8pc.x86_64", + "product": { + "name": "python39-cffi-0:1.15.1-1.el8pc.x86_64", + "product_id": "python39-cffi-0:1.15.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-cffi@1.15.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-cffi-debugsource-0:1.15.1-1.el8pc.x86_64", + "product": { + "name": "python-cffi-debugsource-0:1.15.1-1.el8pc.x86_64", + "product_id": "python-cffi-debugsource-0:1.15.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-cffi-debugsource@1.15.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-cffi-debuginfo-0:1.15.1-1.el8pc.x86_64", + "product": { + "name": "python39-cffi-debuginfo-0:1.15.1-1.el8pc.x86_64", + "product_id": "python39-cffi-debuginfo-0:1.15.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-cffi-debuginfo@1.15.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-cryptography-0:38.0.4-1.el8pc.x86_64", + "product": { + "name": "python39-cryptography-0:38.0.4-1.el8pc.x86_64", + "product_id": "python39-cryptography-0:38.0.4-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-cryptography@38.0.4-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-cryptography-debugsource-0:38.0.4-1.el8pc.x86_64", + "product": { + "name": "python-cryptography-debugsource-0:38.0.4-1.el8pc.x86_64", + "product_id": "python-cryptography-debugsource-0:38.0.4-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-cryptography-debugsource@38.0.4-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-cryptography-debuginfo-0:38.0.4-1.el8pc.x86_64", + "product": { + "name": "python39-cryptography-debuginfo-0:38.0.4-1.el8pc.x86_64", + "product_id": "python39-cryptography-debuginfo-0:38.0.4-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-cryptography-debuginfo@38.0.4-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-frozenlist-0:1.3.3-1.el8pc.x86_64", + "product": { + "name": "python39-frozenlist-0:1.3.3-1.el8pc.x86_64", + "product_id": "python39-frozenlist-0:1.3.3-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-frozenlist@1.3.3-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-frozenlist-debugsource-0:1.3.3-1.el8pc.x86_64", + "product": { + "name": "python-frozenlist-debugsource-0:1.3.3-1.el8pc.x86_64", + "product_id": "python-frozenlist-debugsource-0:1.3.3-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-frozenlist-debugsource@1.3.3-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-frozenlist-debuginfo-0:1.3.3-1.el8pc.x86_64", + "product": { + "name": "python39-frozenlist-debuginfo-0:1.3.3-1.el8pc.x86_64", + "product_id": "python39-frozenlist-debuginfo-0:1.3.3-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-frozenlist-debuginfo@1.3.3-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-lxml-0:4.9.2-1.el8pc.x86_64", + "product": { + "name": "python39-lxml-0:4.9.2-1.el8pc.x86_64", + "product_id": "python39-lxml-0:4.9.2-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-lxml@4.9.2-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-lxml-debugsource-0:4.9.2-1.el8pc.x86_64", + "product": { + "name": "python-lxml-debugsource-0:4.9.2-1.el8pc.x86_64", + "product_id": "python-lxml-debugsource-0:4.9.2-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-lxml-debugsource@4.9.2-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-lxml-debuginfo-0:4.9.2-1.el8pc.x86_64", + "product": { + "name": "python39-lxml-debuginfo-0:4.9.2-1.el8pc.x86_64", + "product_id": "python39-lxml-debuginfo-0:4.9.2-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-lxml-debuginfo@4.9.2-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-markupsafe-0:2.1.2-1.el8pc.x86_64", + "product": { + "name": "python39-markupsafe-0:2.1.2-1.el8pc.x86_64", + "product_id": "python39-markupsafe-0:2.1.2-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-markupsafe@2.1.2-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-markupsafe-debugsource-0:2.1.2-1.el8pc.x86_64", + "product": { + "name": "python-markupsafe-debugsource-0:2.1.2-1.el8pc.x86_64", + "product_id": "python-markupsafe-debugsource-0:2.1.2-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-markupsafe-debugsource@2.1.2-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-markupsafe-debuginfo-0:2.1.2-1.el8pc.x86_64", + "product": { + "name": "python39-markupsafe-debuginfo-0:2.1.2-1.el8pc.x86_64", + "product_id": "python39-markupsafe-debuginfo-0:2.1.2-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-markupsafe-debuginfo@2.1.2-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-multidict-0:6.0.4-1.el8pc.x86_64", + "product": { + "name": "python39-multidict-0:6.0.4-1.el8pc.x86_64", + "product_id": "python39-multidict-0:6.0.4-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-multidict@6.0.4-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-multidict-debugsource-0:6.0.4-1.el8pc.x86_64", + "product": { + "name": "python-multidict-debugsource-0:6.0.4-1.el8pc.x86_64", + "product_id": "python-multidict-debugsource-0:6.0.4-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-multidict-debugsource@6.0.4-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-multidict-debuginfo-0:6.0.4-1.el8pc.x86_64", + "product": { + "name": "python39-multidict-debuginfo-0:6.0.4-1.el8pc.x86_64", + "product_id": "python39-multidict-debuginfo-0:6.0.4-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-multidict-debuginfo@6.0.4-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-psycopg2-0:2.9.3-2.el8pc.x86_64", + "product": { + "name": "python39-psycopg2-0:2.9.3-2.el8pc.x86_64", + "product_id": "python39-psycopg2-0:2.9.3-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-psycopg2@2.9.3-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-psycopg2-debugsource-0:2.9.3-2.el8pc.x86_64", + "product": { + "name": "python-psycopg2-debugsource-0:2.9.3-2.el8pc.x86_64", + "product_id": "python-psycopg2-debugsource-0:2.9.3-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-psycopg2-debugsource@2.9.3-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-psycopg2-debuginfo-0:2.9.3-2.el8pc.x86_64", + "product": { + "name": "python39-psycopg2-debuginfo-0:2.9.3-2.el8pc.x86_64", + "product_id": "python39-psycopg2-debuginfo-0:2.9.3-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-psycopg2-debuginfo@2.9.3-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-pycares-0:4.1.2-2.el8pc.x86_64", + "product": { + "name": "python39-pycares-0:4.1.2-2.el8pc.x86_64", + "product_id": "python39-pycares-0:4.1.2-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pycares@4.1.2-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-pycares-debugsource-0:4.1.2-2.el8pc.x86_64", + "product": { + "name": "python-pycares-debugsource-0:4.1.2-2.el8pc.x86_64", + "product_id": "python-pycares-debugsource-0:4.1.2-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pycares-debugsource@4.1.2-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-pycares-debuginfo-0:4.1.2-2.el8pc.x86_64", + "product": { + "name": "python39-pycares-debuginfo-0:4.1.2-2.el8pc.x86_64", + "product_id": "python39-pycares-debuginfo-0:4.1.2-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pycares-debuginfo@4.1.2-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-pycryptodomex-0:3.14.1-2.el8pc.x86_64", + "product": { + "name": "python39-pycryptodomex-0:3.14.1-2.el8pc.x86_64", + "product_id": "python39-pycryptodomex-0:3.14.1-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pycryptodomex@3.14.1-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-pycryptodomex-debugsource-0:3.14.1-2.el8pc.x86_64", + "product": { + "name": "python-pycryptodomex-debugsource-0:3.14.1-2.el8pc.x86_64", + "product_id": "python-pycryptodomex-debugsource-0:3.14.1-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pycryptodomex-debugsource@3.14.1-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-pycryptodomex-debuginfo-0:3.14.1-2.el8pc.x86_64", + "product": { + "name": "python39-pycryptodomex-debuginfo-0:3.14.1-2.el8pc.x86_64", + "product_id": "python39-pycryptodomex-debuginfo-0:3.14.1-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pycryptodomex-debuginfo@3.14.1-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-pygments-0:2.14.0-1.el8pc.x86_64", + "product": { + "name": "python39-pygments-0:2.14.0-1.el8pc.x86_64", + "product_id": "python39-pygments-0:2.14.0-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pygments@2.14.0-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-pyrsistent-0:0.18.1-2.el8pc.x86_64", + "product": { + "name": "python39-pyrsistent-0:0.18.1-2.el8pc.x86_64", + "product_id": "python39-pyrsistent-0:0.18.1-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pyrsistent@0.18.1-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-pyrsistent-debugsource-0:0.18.1-2.el8pc.x86_64", + "product": { + "name": "python-pyrsistent-debugsource-0:0.18.1-2.el8pc.x86_64", + "product_id": "python-pyrsistent-debugsource-0:0.18.1-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pyrsistent-debugsource@0.18.1-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-pyrsistent-debuginfo-0:0.18.1-2.el8pc.x86_64", + "product": { + "name": "python39-pyrsistent-debuginfo-0:0.18.1-2.el8pc.x86_64", + "product_id": "python39-pyrsistent-debuginfo-0:0.18.1-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pyrsistent-debuginfo@0.18.1-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-pyyaml-0:5.4.1-4.el8pc.x86_64", + "product": { + "name": "python39-pyyaml-0:5.4.1-4.el8pc.x86_64", + "product_id": "python39-pyyaml-0:5.4.1-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pyyaml@5.4.1-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-rhsm-0:1.19.2-3.el8pc.x86_64", + "product": { + "name": "python39-rhsm-0:1.19.2-3.el8pc.x86_64", + "product_id": "python39-rhsm-0:1.19.2-3.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-rhsm@1.19.2-3.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-rhsm-debugsource-0:1.19.2-3.el8pc.x86_64", + "product": { + "name": "python-rhsm-debugsource-0:1.19.2-3.el8pc.x86_64", + "product_id": "python-rhsm-debugsource-0:1.19.2-3.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-rhsm-debugsource@1.19.2-3.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-rhsm-debuginfo-0:1.19.2-3.el8pc.x86_64", + "product": { + "name": "python39-rhsm-debuginfo-0:1.19.2-3.el8pc.x86_64", + "product_id": "python39-rhsm-debuginfo-0:1.19.2-3.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-rhsm-debuginfo@1.19.2-3.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-ruamel-yaml-clib-0:0.2.7-1.el8pc.x86_64", + "product": { + "name": "python39-ruamel-yaml-clib-0:0.2.7-1.el8pc.x86_64", + "product_id": "python39-ruamel-yaml-clib-0:0.2.7-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-ruamel-yaml-clib@0.2.7-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-ruamel-yaml-clib-debugsource-0:0.2.7-1.el8pc.x86_64", + "product": { + "name": "python-ruamel-yaml-clib-debugsource-0:0.2.7-1.el8pc.x86_64", + "product_id": "python-ruamel-yaml-clib-debugsource-0:0.2.7-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-ruamel-yaml-clib-debugsource@0.2.7-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-ruamel-yaml-clib-debuginfo-0:0.2.7-1.el8pc.x86_64", + "product": { + "name": "python39-ruamel-yaml-clib-debuginfo-0:0.2.7-1.el8pc.x86_64", + "product_id": "python39-ruamel-yaml-clib-debuginfo-0:0.2.7-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-ruamel-yaml-clib-debuginfo@0.2.7-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-wrapt-0:1.14.1-1.el8pc.x86_64", + "product": { + "name": "python39-wrapt-0:1.14.1-1.el8pc.x86_64", + "product_id": "python39-wrapt-0:1.14.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-wrapt@1.14.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-wrapt-debugsource-0:1.14.1-1.el8pc.x86_64", + "product": { + "name": "python-wrapt-debugsource-0:1.14.1-1.el8pc.x86_64", + "product_id": "python-wrapt-debugsource-0:1.14.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-wrapt-debugsource@1.14.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-wrapt-debuginfo-0:1.14.1-1.el8pc.x86_64", + "product": { + "name": "python39-wrapt-debuginfo-0:1.14.1-1.el8pc.x86_64", + "product_id": "python39-wrapt-debuginfo-0:1.14.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-wrapt-debuginfo@1.14.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-yarl-0:1.8.2-1.el8pc.x86_64", + "product": { + "name": "python39-yarl-0:1.8.2-1.el8pc.x86_64", + "product_id": "python39-yarl-0:1.8.2-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-yarl@1.8.2-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-yarl-debugsource-0:1.8.2-1.el8pc.x86_64", + "product": { + "name": "python-yarl-debugsource-0:1.8.2-1.el8pc.x86_64", + "product_id": "python-yarl-debugsource-0:1.8.2-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-yarl-debugsource@1.8.2-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-yarl-debuginfo-0:1.8.2-1.el8pc.x86_64", + "product": { + "name": "python39-yarl-debuginfo-0:1.8.2-1.el8pc.x86_64", + "product_id": "python39-yarl-debuginfo-0:1.8.2-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-yarl-debuginfo@1.8.2-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python2-qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "python2-qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "product_id": "python2-qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python2-qpid-qmf@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-client-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-client-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-client-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-client@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-server-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-server-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-server-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-server@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-server-linearstore-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-server-linearstore-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-server-linearstore-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-server-linearstore@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-qmf@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-debugsource-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-debugsource-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-debugsource-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-debugsource@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-client-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-client-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-client-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-client-debuginfo@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-client-devel-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-client-devel-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-client-devel-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-client-devel-debuginfo@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-client-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-client-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-client-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-client-rdma-debuginfo@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-debuginfo@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-server-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-server-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-server-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-server-debuginfo@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-server-ha-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-server-ha-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-server-ha-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-server-ha-debuginfo@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-server-linearstore-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-server-linearstore-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-server-linearstore-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-server-linearstore-debuginfo@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-server-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-server-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-server-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-server-rdma-debuginfo@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-qmf-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-qmf-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-qmf-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-qmf-debuginfo@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-client-devel-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-client-devel-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-client-devel-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-client-devel@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-dispatch-router-0:1.14.0-6.el8.x86_64", + "product": { + "name": "qpid-dispatch-router-0:1.14.0-6.el8.x86_64", + "product_id": "qpid-dispatch-router-0:1.14.0-6.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-dispatch-router@1.14.0-6.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-dispatch-debugsource-0:1.14.0-6.el8.x86_64", + "product": { + "name": "qpid-dispatch-debugsource-0:1.14.0-6.el8.x86_64", + "product_id": "qpid-dispatch-debugsource-0:1.14.0-6.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-dispatch-debugsource@1.14.0-6.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-dispatch-router-debuginfo-0:1.14.0-6.el8.x86_64", + "product": { + "name": "qpid-dispatch-router-debuginfo-0:1.14.0-6.el8.x86_64", + "product_id": "qpid-dispatch-router-debuginfo-0:1.14.0-6.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-dispatch-router-debuginfo@1.14.0-6.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-qpid-proton-0:0.33.0-4.el8.x86_64", + "product": { + "name": "python3-qpid-proton-0:0.33.0-4.el8.x86_64", + "product_id": "python3-qpid-proton-0:0.33.0-4.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-qpid-proton@0.33.0-4.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-c-0:0.33.0-4.el8.x86_64", + "product": { + "name": "qpid-proton-c-0:0.33.0-4.el8.x86_64", + "product_id": "qpid-proton-c-0:0.33.0-4.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-c@0.33.0-4.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-debugsource-0:0.33.0-4.el8.x86_64", + "product": { + "name": "qpid-proton-debugsource-0:0.33.0-4.el8.x86_64", + "product_id": "qpid-proton-debugsource-0:0.33.0-4.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-debugsource@0.33.0-4.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "product": { + "name": "python3-qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "product_id": "python3-qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-qpid-proton-debuginfo@0.33.0-4.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-c-debuginfo-0:0.33.0-4.el8.x86_64", + "product": { + "name": "qpid-proton-c-debuginfo-0:0.33.0-4.el8.x86_64", + "product_id": "qpid-proton-c-debuginfo-0:0.33.0-4.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-c-debuginfo@0.33.0-4.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-cpp-debuginfo-0:0.33.0-4.el8.x86_64", + "product": { + "name": "qpid-proton-cpp-debuginfo-0:0.33.0-4.el8.x86_64", + "product_id": "qpid-proton-cpp-debuginfo-0:0.33.0-4.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-cpp-debuginfo@0.33.0-4.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "product": { + "name": "qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "product_id": "qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-debuginfo@0.33.0-4.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-qpid_proton-debuginfo-0:0.33.0-4.el8.x86_64", + "product": { + "name": "rubygem-qpid_proton-debuginfo-0:0.33.0-4.el8.x86_64", + "product_id": "rubygem-qpid_proton-debuginfo-0:0.33.0-4.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-qpid_proton-debuginfo@0.33.0-4.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-qpid_proton-0:0.33.0-4.el8.x86_64", + "product": { + "name": "rubygem-qpid_proton-0:0.33.0-4.el8.x86_64", + "product_id": "rubygem-qpid_proton-0:0.33.0-4.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-qpid_proton@0.33.0-4.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-bcrypt-0:3.1.18-1.el8sat.x86_64", + "product": { + "name": "rubygem-bcrypt-0:3.1.18-1.el8sat.x86_64", + "product_id": "rubygem-bcrypt-0:3.1.18-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-bcrypt@3.1.18-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-bcrypt-debugsource-0:3.1.18-1.el8sat.x86_64", + "product": { + "name": "rubygem-bcrypt-debugsource-0:3.1.18-1.el8sat.x86_64", + "product_id": "rubygem-bcrypt-debugsource-0:3.1.18-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-bcrypt-debugsource@3.1.18-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-bcrypt-debuginfo-0:3.1.18-1.el8sat.x86_64", + "product": { + "name": "rubygem-bcrypt-debuginfo-0:3.1.18-1.el8sat.x86_64", + "product_id": "rubygem-bcrypt-debuginfo-0:3.1.18-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-bcrypt-debuginfo@3.1.18-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ffi-0:1.15.5-1.el8sat.x86_64", + "product": { + "name": "rubygem-ffi-0:1.15.5-1.el8sat.x86_64", + "product_id": "rubygem-ffi-0:1.15.5-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ffi@1.15.5-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64", + "product": { + "name": "rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64", + "product_id": "rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ffi-debugsource@1.15.5-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64", + "product": { + "name": "rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64", + "product_id": "rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ffi-debuginfo@1.15.5-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-protobuf-0:3.21.6-1.el8sat.x86_64", + "product": { + "name": "rubygem-google-protobuf-0:3.21.6-1.el8sat.x86_64", + "product_id": "rubygem-google-protobuf-0:3.21.6-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-protobuf@3.21.6-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-protobuf-debugsource-0:3.21.6-1.el8sat.x86_64", + "product": { + "name": "rubygem-google-protobuf-debugsource-0:3.21.6-1.el8sat.x86_64", + "product_id": "rubygem-google-protobuf-debugsource-0:3.21.6-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-protobuf-debugsource@3.21.6-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-protobuf-debuginfo-0:3.21.6-1.el8sat.x86_64", + "product": { + "name": "rubygem-google-protobuf-debuginfo-0:3.21.6-1.el8sat.x86_64", + "product_id": "rubygem-google-protobuf-debuginfo-0:3.21.6-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-protobuf-debuginfo@3.21.6-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-grpc-0:1.49.1-1.el8sat.x86_64", + "product": { + "name": "rubygem-grpc-0:1.49.1-1.el8sat.x86_64", + "product_id": "rubygem-grpc-0:1.49.1-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-grpc@1.49.1-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.x86_64", + "product": { + "name": "rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.x86_64", + "product_id": "rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-http_parser.rb@0.6.0-3.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-http_parser.rb-debugsource-0:0.6.0-3.1.el8sat.x86_64", + "product": { + "name": "rubygem-http_parser.rb-debugsource-0:0.6.0-3.1.el8sat.x86_64", + "product_id": "rubygem-http_parser.rb-debugsource-0:0.6.0-3.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-http_parser.rb-debugsource@0.6.0-3.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-http_parser.rb-debuginfo-0:0.6.0-3.1.el8sat.x86_64", + "product": { + "name": "rubygem-http_parser.rb-debuginfo-0:0.6.0-3.1.el8sat.x86_64", + "product_id": "rubygem-http_parser.rb-debuginfo-0:0.6.0-3.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-http_parser.rb-debuginfo@0.6.0-3.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-journald-native-0:1.0.12-1.el8sat.x86_64", + "product": { + "name": "rubygem-journald-native-0:1.0.12-1.el8sat.x86_64", + "product_id": "rubygem-journald-native-0:1.0.12-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-journald-native@1.0.12-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-journald-native-debugsource-0:1.0.12-1.el8sat.x86_64", + "product": { + "name": "rubygem-journald-native-debugsource-0:1.0.12-1.el8sat.x86_64", + "product_id": "rubygem-journald-native-debugsource-0:1.0.12-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-journald-native-debugsource@1.0.12-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-journald-native-debuginfo-0:1.0.12-1.el8sat.x86_64", + "product": { + "name": "rubygem-journald-native-debuginfo-0:1.0.12-1.el8sat.x86_64", + "product_id": "rubygem-journald-native-debuginfo-0:1.0.12-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-journald-native-debuginfo@1.0.12-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-msgpack-0:1.7.1-1.el8sat.x86_64", + "product": { + "name": "rubygem-msgpack-0:1.7.1-1.el8sat.x86_64", + "product_id": "rubygem-msgpack-0:1.7.1-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-msgpack@1.7.1-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-msgpack-debugsource-0:1.7.1-1.el8sat.x86_64", + "product": { + "name": "rubygem-msgpack-debugsource-0:1.7.1-1.el8sat.x86_64", + "product_id": "rubygem-msgpack-debugsource-0:1.7.1-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-msgpack-debugsource@1.7.1-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-msgpack-debuginfo-0:1.7.1-1.el8sat.x86_64", + "product": { + "name": "rubygem-msgpack-debuginfo-0:1.7.1-1.el8sat.x86_64", + "product_id": "rubygem-msgpack-debuginfo-0:1.7.1-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-msgpack-debuginfo@1.7.1-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-newt-0:0.9.7-3.1.el8sat.x86_64", + "product": { + "name": "rubygem-newt-0:0.9.7-3.1.el8sat.x86_64", + "product_id": "rubygem-newt-0:0.9.7-3.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-newt@0.9.7-3.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-newt-debugsource-0:0.9.7-3.1.el8sat.x86_64", + "product": { + "name": "rubygem-newt-debugsource-0:0.9.7-3.1.el8sat.x86_64", + "product_id": "rubygem-newt-debugsource-0:0.9.7-3.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-newt-debugsource@0.9.7-3.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-newt-debuginfo-0:0.9.7-3.1.el8sat.x86_64", + "product": { + "name": "rubygem-newt-debuginfo-0:0.9.7-3.1.el8sat.x86_64", + "product_id": "rubygem-newt-debuginfo-0:0.9.7-3.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-newt-debuginfo@0.9.7-3.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-nio4r-0:2.5.9-1.el8sat.x86_64", + "product": { + "name": "rubygem-nio4r-0:2.5.9-1.el8sat.x86_64", + "product_id": "rubygem-nio4r-0:2.5.9-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-nio4r@2.5.9-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-nio4r-debugsource-0:2.5.9-1.el8sat.x86_64", + "product": { + "name": "rubygem-nio4r-debugsource-0:2.5.9-1.el8sat.x86_64", + "product_id": "rubygem-nio4r-debugsource-0:2.5.9-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-nio4r-debugsource@2.5.9-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-nio4r-debuginfo-0:2.5.9-1.el8sat.x86_64", + "product": { + "name": "rubygem-nio4r-debuginfo-0:2.5.9-1.el8sat.x86_64", + "product_id": "rubygem-nio4r-debuginfo-0:2.5.9-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-nio4r-debuginfo@2.5.9-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-nokogiri-0:1.15.0-1.el8sat.x86_64", + "product": { + "name": "rubygem-nokogiri-0:1.15.0-1.el8sat.x86_64", + "product_id": "rubygem-nokogiri-0:1.15.0-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-nokogiri@1.15.0-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-nokogiri-debugsource-0:1.15.0-1.el8sat.x86_64", + "product": { + "name": "rubygem-nokogiri-debugsource-0:1.15.0-1.el8sat.x86_64", + "product_id": "rubygem-nokogiri-debugsource-0:1.15.0-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-nokogiri-debugsource@1.15.0-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-nokogiri-debuginfo-0:1.15.0-1.el8sat.x86_64", + "product": { + "name": "rubygem-nokogiri-debuginfo-0:1.15.0-1.el8sat.x86_64", + "product_id": "rubygem-nokogiri-debuginfo-0:1.15.0-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-nokogiri-debuginfo@1.15.0-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.x86_64", + "product": { + "name": "rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.x86_64", + "product_id": "rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ovirt-engine-sdk@4.4.1-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ovirt-engine-sdk-debugsource-0:4.4.1-1.el8sat.x86_64", + "product": { + "name": "rubygem-ovirt-engine-sdk-debugsource-0:4.4.1-1.el8sat.x86_64", + "product_id": "rubygem-ovirt-engine-sdk-debugsource-0:4.4.1-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ovirt-engine-sdk-debugsource@4.4.1-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ovirt-engine-sdk-debuginfo-0:4.4.1-1.el8sat.x86_64", + "product": { + "name": "rubygem-ovirt-engine-sdk-debuginfo-0:4.4.1-1.el8sat.x86_64", + "product_id": "rubygem-ovirt-engine-sdk-debuginfo-0:4.4.1-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ovirt-engine-sdk-debuginfo@4.4.1-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pg-0:1.5.3-1.el8sat.x86_64", + "product": { + "name": "rubygem-pg-0:1.5.3-1.el8sat.x86_64", + "product_id": "rubygem-pg-0:1.5.3-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pg@1.5.3-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pg-debugsource-0:1.5.3-1.el8sat.x86_64", + "product": { + "name": "rubygem-pg-debugsource-0:1.5.3-1.el8sat.x86_64", + "product_id": "rubygem-pg-debugsource-0:1.5.3-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pg-debugsource@1.5.3-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pg-debuginfo-0:1.5.3-1.el8sat.x86_64", + "product": { + "name": "rubygem-pg-debuginfo-0:1.5.3-1.el8sat.x86_64", + "product_id": "rubygem-pg-debuginfo-0:1.5.3-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pg-debuginfo@1.5.3-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-puma-0:6.2.2-1.el8sat.x86_64", + "product": { + "name": "rubygem-puma-0:6.2.2-1.el8sat.x86_64", + "product_id": "rubygem-puma-0:6.2.2-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-puma@6.2.2-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-puma-debugsource-0:6.2.2-1.el8sat.x86_64", + "product": { + "name": "rubygem-puma-debugsource-0:6.2.2-1.el8sat.x86_64", + "product_id": "rubygem-puma-debugsource-0:6.2.2-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-puma-debugsource@6.2.2-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-puma-debuginfo-0:6.2.2-1.el8sat.x86_64", + "product": { + "name": "rubygem-puma-debuginfo-0:6.2.2-1.el8sat.x86_64", + "product_id": "rubygem-puma-debuginfo-0:6.2.2-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-puma-debuginfo@6.2.2-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-qpid_proton-0:0.33.0-5.el8sat.x86_64", + "product": { + "name": "rubygem-qpid_proton-0:0.33.0-5.el8sat.x86_64", + "product_id": "rubygem-qpid_proton-0:0.33.0-5.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-qpid_proton@0.33.0-5.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-qpid_proton-debugsource-0:0.33.0-5.el8sat.x86_64", + "product": { + "name": "rubygem-qpid_proton-debugsource-0:0.33.0-5.el8sat.x86_64", + "product_id": "rubygem-qpid_proton-debugsource-0:0.33.0-5.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-qpid_proton-debugsource@0.33.0-5.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-qpid_proton-debuginfo-0:0.33.0-5.el8sat.x86_64", + "product": { + "name": "rubygem-qpid_proton-debuginfo-0:0.33.0-5.el8sat.x86_64", + "product_id": "rubygem-qpid_proton-debuginfo-0:0.33.0-5.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-qpid_proton-debuginfo@0.33.0-5.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.x86_64", + "product": { + "name": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.x86_64", + "product_id": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rkerberos@0.1.5-20.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rkerberos-debugsource-0:0.1.5-20.1.el8sat.x86_64", + "product": { + "name": "rubygem-rkerberos-debugsource-0:0.1.5-20.1.el8sat.x86_64", + "product_id": "rubygem-rkerberos-debugsource-0:0.1.5-20.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rkerberos-debugsource@0.1.5-20.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rkerberos-debuginfo-0:0.1.5-20.1.el8sat.x86_64", + "product": { + "name": "rubygem-rkerberos-debuginfo-0:0.1.5-20.1.el8sat.x86_64", + "product_id": "rubygem-rkerberos-debuginfo-0:0.1.5-20.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rkerberos-debuginfo@0.1.5-20.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.x86_64", + "product": { + "name": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.x86_64", + "product_id": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ruby-libvirt@0.8.0-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ruby-libvirt-debugsource-0:0.8.0-1.el8sat.x86_64", + "product": { + "name": "rubygem-ruby-libvirt-debugsource-0:0.8.0-1.el8sat.x86_64", + "product_id": "rubygem-ruby-libvirt-debugsource-0:0.8.0-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ruby-libvirt-debugsource@0.8.0-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ruby-libvirt-debuginfo-0:0.8.0-1.el8sat.x86_64", + "product": { + "name": "rubygem-ruby-libvirt-debuginfo-0:0.8.0-1.el8sat.x86_64", + "product_id": "rubygem-ruby-libvirt-debuginfo-0:0.8.0-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ruby-libvirt-debuginfo@0.8.0-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sqlite3-0:1.4.2-1.el8sat.x86_64", + "product": { + "name": "rubygem-sqlite3-0:1.4.2-1.el8sat.x86_64", + "product_id": "rubygem-sqlite3-0:1.4.2-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sqlite3@1.4.2-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sqlite3-debugsource-0:1.4.2-1.el8sat.x86_64", + "product": { + "name": "rubygem-sqlite3-debugsource-0:1.4.2-1.el8sat.x86_64", + "product_id": "rubygem-sqlite3-debugsource-0:1.4.2-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sqlite3-debugsource@1.4.2-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sqlite3-debuginfo-0:1.4.2-1.el8sat.x86_64", + "product": { + "name": "rubygem-sqlite3-debuginfo-0:1.4.2-1.el8sat.x86_64", + "product_id": "rubygem-sqlite3-debuginfo-0:1.4.2-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sqlite3-debuginfo@1.4.2-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64", + "product": { + "name": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64", + "product_id": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-unf_ext@0.0.8.2-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64", + "product": { + "name": "rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64", + "product_id": "rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-unf_ext-debugsource@0.0.8.2-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64", + "product": { + "name": "rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64", + "product_id": "rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-unf_ext-debuginfo@0.0.8.2-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.x86_64", + "product": { + "name": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.x86_64", + "product_id": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-unicode@0.4.4.4-4.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-unicode-debugsource-0:0.4.4.4-4.1.el8sat.x86_64", + "product": { + "name": "rubygem-unicode-debugsource-0:0.4.4.4-4.1.el8sat.x86_64", + "product_id": "rubygem-unicode-debugsource-0:0.4.4.4-4.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-unicode-debugsource@0.4.4.4-4.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-unicode-debuginfo-0:0.4.4.4-4.1.el8sat.x86_64", + "product": { + "name": "rubygem-unicode-debuginfo-0:0.4.4.4-4.1.el8sat.x86_64", + "product_id": "rubygem-unicode-debuginfo-0:0.4.4.4-4.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-unicode-debuginfo@0.4.4.4-4.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-websocket-driver-0:0.7.5-1.el8sat.x86_64", + "product": { + "name": "rubygem-websocket-driver-0:0.7.5-1.el8sat.x86_64", + "product_id": "rubygem-websocket-driver-0:0.7.5-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-websocket-driver@0.7.5-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-websocket-driver-debugsource-0:0.7.5-1.el8sat.x86_64", + "product": { + "name": "rubygem-websocket-driver-debugsource-0:0.7.5-1.el8sat.x86_64", + "product_id": "rubygem-websocket-driver-debugsource-0:0.7.5-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-websocket-driver-debugsource@0.7.5-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-websocket-driver-debuginfo-0:0.7.5-1.el8sat.x86_64", + "product": { + "name": "rubygem-websocket-driver-debuginfo-0:0.7.5-1.el8sat.x86_64", + "product_id": "rubygem-websocket-driver-debuginfo-0:0.7.5-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-websocket-driver-debuginfo@0.7.5-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python2-saslwrapper-0:0.22-6.el8sat.x86_64", + "product": { + "name": "python2-saslwrapper-0:0.22-6.el8sat.x86_64", + "product_id": "python2-saslwrapper-0:0.22-6.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python2-saslwrapper@0.22-6.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "saslwrapper-0:0.22-6.el8sat.x86_64", + "product": { + "name": "saslwrapper-0:0.22-6.el8sat.x86_64", + "product_id": "saslwrapper-0:0.22-6.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/saslwrapper@0.22-6.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "saslwrapper-debugsource-0:0.22-6.el8sat.x86_64", + "product": { + "name": "saslwrapper-debugsource-0:0.22-6.el8sat.x86_64", + "product_id": "saslwrapper-debugsource-0:0.22-6.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/saslwrapper-debugsource@0.22-6.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python2-saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "product": { + "name": "python2-saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "product_id": "python2-saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python2-saslwrapper-debuginfo@0.22-6.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "product": { + "name": "saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "product_id": "saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/saslwrapper-debuginfo@0.22-6.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "product": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "product_id": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil-worker-forwarder@0.0.3-1.el8sat?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "odf4/cephcsi-rhel9@sha256:19066af2eb30877d010ef66b5d538749da1f0521b4a762871a53c57ead216e9a_s390x", + "product": { + "name": "odf4/cephcsi-rhel9@sha256:19066af2eb30877d010ef66b5d538749da1f0521b4a762871a53c57ead216e9a_s390x", + "product_id": "odf4/cephcsi-rhel9@sha256:19066af2eb30877d010ef66b5d538749da1f0521b4a762871a53c57ead216e9a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cephcsi-rhel9@sha256:19066af2eb30877d010ef66b5d538749da1f0521b4a762871a53c57ead216e9a?arch=s390x&repository_url=registry.redhat.io/odf4/cephcsi-rhel9&tag=v4.14.0-29" + } + } + }, + { + "category": "product_version", + "name": "odf4/mcg-cli-rhel9@sha256:c354acbac03e2af6fcb7b5b1dbe16ab0a382004ef7a335f9327893138ce2e922_s390x", + "product": { + "name": "odf4/mcg-cli-rhel9@sha256:c354acbac03e2af6fcb7b5b1dbe16ab0a382004ef7a335f9327893138ce2e922_s390x", + "product_id": "odf4/mcg-cli-rhel9@sha256:c354acbac03e2af6fcb7b5b1dbe16ab0a382004ef7a335f9327893138ce2e922_s390x", + "product_identification_helper": { + "purl": "pkg:oci/mcg-cli-rhel9@sha256:c354acbac03e2af6fcb7b5b1dbe16ab0a382004ef7a335f9327893138ce2e922?arch=s390x&repository_url=registry.redhat.io/odf4/mcg-cli-rhel9&tag=v4.14.0-44" + } + } + }, + { + "category": "product_version", + "name": "odf4/mcg-core-rhel9@sha256:0a9ccf86889c47b950246e2f6829b568b2f3cb0f37b2ad18282ff2a40f0448d6_s390x", + "product": { + "name": "odf4/mcg-core-rhel9@sha256:0a9ccf86889c47b950246e2f6829b568b2f3cb0f37b2ad18282ff2a40f0448d6_s390x", + "product_id": "odf4/mcg-core-rhel9@sha256:0a9ccf86889c47b950246e2f6829b568b2f3cb0f37b2ad18282ff2a40f0448d6_s390x", + "product_identification_helper": { + "purl": "pkg:oci/mcg-core-rhel9@sha256:0a9ccf86889c47b950246e2f6829b568b2f3cb0f37b2ad18282ff2a40f0448d6?arch=s390x&repository_url=registry.redhat.io/odf4/mcg-core-rhel9&tag=v4.14.0-63" + } + } + }, + { + "category": "product_version", + "name": "odf4/mcg-operator-bundle@sha256:b2586abf037cc9a313b5b07a36806d27f8a5fdee8daf99a00ee491243085a7d4_s390x", + "product": { + "name": "odf4/mcg-operator-bundle@sha256:b2586abf037cc9a313b5b07a36806d27f8a5fdee8daf99a00ee491243085a7d4_s390x", + "product_id": "odf4/mcg-operator-bundle@sha256:b2586abf037cc9a313b5b07a36806d27f8a5fdee8daf99a00ee491243085a7d4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/mcg-operator-bundle@sha256:b2586abf037cc9a313b5b07a36806d27f8a5fdee8daf99a00ee491243085a7d4?arch=s390x&repository_url=registry.redhat.io/odf4/mcg-operator-bundle&tag=v4.14.0-161" + } + } + }, + { + "category": "product_version", + "name": "odf4/mcg-rhel9-operator@sha256:fcb6309f9244be94c6154d45f0a5c415783407064fee1ee48a4c05970054da1c_s390x", + "product": { + "name": "odf4/mcg-rhel9-operator@sha256:fcb6309f9244be94c6154d45f0a5c415783407064fee1ee48a4c05970054da1c_s390x", + "product_id": "odf4/mcg-rhel9-operator@sha256:fcb6309f9244be94c6154d45f0a5c415783407064fee1ee48a4c05970054da1c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/mcg-rhel9-operator@sha256:fcb6309f9244be94c6154d45f0a5c415783407064fee1ee48a4c05970054da1c?arch=s390x&repository_url=registry.redhat.io/odf4/mcg-rhel9-operator&tag=v4.14.0-43" + } + } + }, + { + "category": "product_version", + "name": "odf4/ocs-client-console-rhel9@sha256:092b03642b8adae73f45ff264d38a796fb8a7fd89b87e712db0473f9ccda3862_s390x", + "product": { + "name": "odf4/ocs-client-console-rhel9@sha256:092b03642b8adae73f45ff264d38a796fb8a7fd89b87e712db0473f9ccda3862_s390x", + "product_id": "odf4/ocs-client-console-rhel9@sha256:092b03642b8adae73f45ff264d38a796fb8a7fd89b87e712db0473f9ccda3862_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ocs-client-console-rhel9@sha256:092b03642b8adae73f45ff264d38a796fb8a7fd89b87e712db0473f9ccda3862?arch=s390x&repository_url=registry.redhat.io/odf4/ocs-client-console-rhel9&tag=v4.14.0-35" + } + } + }, + { + "category": "product_version", + "name": "odf4/ocs-client-operator-bundle@sha256:4c73760f7c2e5283d5fa197a95191d8e0568dbebfabffe476933a2545bea2b3b_s390x", + "product": { + "name": "odf4/ocs-client-operator-bundle@sha256:4c73760f7c2e5283d5fa197a95191d8e0568dbebfabffe476933a2545bea2b3b_s390x", + "product_id": "odf4/ocs-client-operator-bundle@sha256:4c73760f7c2e5283d5fa197a95191d8e0568dbebfabffe476933a2545bea2b3b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ocs-client-operator-bundle@sha256:4c73760f7c2e5283d5fa197a95191d8e0568dbebfabffe476933a2545bea2b3b?arch=s390x&repository_url=registry.redhat.io/odf4/ocs-client-operator-bundle&tag=v4.14.0-161" + } + } + }, + { + "category": "product_version", + "name": "odf4/ocs-client-rhel9-operator@sha256:6b8fb443051345da399d48c5cff2dce22b4b8b2a9ab224e76d423d820151a8fe_s390x", + "product": { + "name": "odf4/ocs-client-rhel9-operator@sha256:6b8fb443051345da399d48c5cff2dce22b4b8b2a9ab224e76d423d820151a8fe_s390x", + "product_id": "odf4/ocs-client-rhel9-operator@sha256:6b8fb443051345da399d48c5cff2dce22b4b8b2a9ab224e76d423d820151a8fe_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ocs-client-rhel9-operator@sha256:6b8fb443051345da399d48c5cff2dce22b4b8b2a9ab224e76d423d820151a8fe?arch=s390x&repository_url=registry.redhat.io/odf4/ocs-client-rhel9-operator&tag=v4.14.0-14" + } + } + }, + { + "category": "product_version", + "name": "odf4/ocs-metrics-exporter-rhel9@sha256:309b5a86d0f438d93ca64d7eea18c0b69a33a345e913977e2cd6507ce54e4fc9_s390x", + "product": { + "name": "odf4/ocs-metrics-exporter-rhel9@sha256:309b5a86d0f438d93ca64d7eea18c0b69a33a345e913977e2cd6507ce54e4fc9_s390x", + "product_id": "odf4/ocs-metrics-exporter-rhel9@sha256:309b5a86d0f438d93ca64d7eea18c0b69a33a345e913977e2cd6507ce54e4fc9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256:309b5a86d0f438d93ca64d7eea18c0b69a33a345e913977e2cd6507ce54e4fc9?arch=s390x&repository_url=registry.redhat.io/odf4/ocs-metrics-exporter-rhel9&tag=v4.14.0-68" + } + } + }, + { + "category": "product_version", + "name": "odf4/ocs-operator-bundle@sha256:e15785bfa7738c85d01dff5e137564401d9a8982785e0bdff73f7df166137cd9_s390x", + "product": { + "name": "odf4/ocs-operator-bundle@sha256:e15785bfa7738c85d01dff5e137564401d9a8982785e0bdff73f7df166137cd9_s390x", + "product_id": "odf4/ocs-operator-bundle@sha256:e15785bfa7738c85d01dff5e137564401d9a8982785e0bdff73f7df166137cd9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ocs-operator-bundle@sha256:e15785bfa7738c85d01dff5e137564401d9a8982785e0bdff73f7df166137cd9?arch=s390x&repository_url=registry.redhat.io/odf4/ocs-operator-bundle&tag=v4.14.0-161" + } + } + }, + { + "category": "product_version", + "name": "odf4/ocs-rhel9-operator@sha256:ed46de26d5f1383b2c2924535cca7af2837e6ebbffd576b20939660facd70dc7_s390x", + "product": { + "name": "odf4/ocs-rhel9-operator@sha256:ed46de26d5f1383b2c2924535cca7af2837e6ebbffd576b20939660facd70dc7_s390x", + "product_id": "odf4/ocs-rhel9-operator@sha256:ed46de26d5f1383b2c2924535cca7af2837e6ebbffd576b20939660facd70dc7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ocs-rhel9-operator@sha256:ed46de26d5f1383b2c2924535cca7af2837e6ebbffd576b20939660facd70dc7?arch=s390x&repository_url=registry.redhat.io/odf4/ocs-rhel9-operator&tag=v4.14.0-67" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-console-rhel9@sha256:d164df6e45f3541a748cfac39014048cf356aad5e90441c342f57b318dd44935_s390x", + "product": { + "name": "odf4/odf-console-rhel9@sha256:d164df6e45f3541a748cfac39014048cf356aad5e90441c342f57b318dd44935_s390x", + "product_id": "odf4/odf-console-rhel9@sha256:d164df6e45f3541a748cfac39014048cf356aad5e90441c342f57b318dd44935_s390x", + "product_identification_helper": { + "purl": "pkg:oci/odf-console-rhel9@sha256:d164df6e45f3541a748cfac39014048cf356aad5e90441c342f57b318dd44935?arch=s390x&repository_url=registry.redhat.io/odf4/odf-console-rhel9&tag=v4.14.0-77" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-cosi-sidecar-rhel9@sha256:d4cff642b23e5d006b179d81b20d1dc5aad68d0123dcb339f72973c68845ec4a_s390x", + "product": { + "name": "odf4/odf-cosi-sidecar-rhel9@sha256:d4cff642b23e5d006b179d81b20d1dc5aad68d0123dcb339f72973c68845ec4a_s390x", + "product_id": "odf4/odf-cosi-sidecar-rhel9@sha256:d4cff642b23e5d006b179d81b20d1dc5aad68d0123dcb339f72973c68845ec4a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256:d4cff642b23e5d006b179d81b20d1dc5aad68d0123dcb339f72973c68845ec4a?arch=s390x&repository_url=registry.redhat.io/odf4/odf-cosi-sidecar-rhel9&tag=v4.14.0-8" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-csi-addons-operator-bundle@sha256:d79389a67faa8bdecb904f3341125428463fd9dee0eef4c49ad62b2046b0bc3b_s390x", + "product": { + "name": "odf4/odf-csi-addons-operator-bundle@sha256:d79389a67faa8bdecb904f3341125428463fd9dee0eef4c49ad62b2046b0bc3b_s390x", + "product_id": "odf4/odf-csi-addons-operator-bundle@sha256:d79389a67faa8bdecb904f3341125428463fd9dee0eef4c49ad62b2046b0bc3b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/odf-csi-addons-operator-bundle@sha256:d79389a67faa8bdecb904f3341125428463fd9dee0eef4c49ad62b2046b0bc3b?arch=s390x&repository_url=registry.redhat.io/odf4/odf-csi-addons-operator-bundle&tag=v4.14.0-161" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-csi-addons-rhel9-operator@sha256:f380c5901d83e14c0fd49616749a1cd7d9ac83b4b3a757c152a1cc94460c0f7f_s390x", + "product": { + "name": "odf4/odf-csi-addons-rhel9-operator@sha256:f380c5901d83e14c0fd49616749a1cd7d9ac83b4b3a757c152a1cc94460c0f7f_s390x", + "product_id": "odf4/odf-csi-addons-rhel9-operator@sha256:f380c5901d83e14c0fd49616749a1cd7d9ac83b4b3a757c152a1cc94460c0f7f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256:f380c5901d83e14c0fd49616749a1cd7d9ac83b4b3a757c152a1cc94460c0f7f?arch=s390x&repository_url=registry.redhat.io/odf4/odf-csi-addons-rhel9-operator&tag=v4.14.0-14" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-csi-addons-sidecar-rhel9@sha256:98a5ddc54894ec63160dace01773f0e078d659dbf2e3a637a5061692d13d740d_s390x", + "product": { + "name": "odf4/odf-csi-addons-sidecar-rhel9@sha256:98a5ddc54894ec63160dace01773f0e078d659dbf2e3a637a5061692d13d740d_s390x", + "product_id": "odf4/odf-csi-addons-sidecar-rhel9@sha256:98a5ddc54894ec63160dace01773f0e078d659dbf2e3a637a5061692d13d740d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256:98a5ddc54894ec63160dace01773f0e078d659dbf2e3a637a5061692d13d740d?arch=s390x&repository_url=registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9&tag=v4.14.0-13" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-multicluster-console-rhel9@sha256:e2185f7ac5e82ba3271f5d11bdcf649775afb4e275ff04868c9ba7d0be511e1e_s390x", + "product": { + "name": "odf4/odf-multicluster-console-rhel9@sha256:e2185f7ac5e82ba3271f5d11bdcf649775afb4e275ff04868c9ba7d0be511e1e_s390x", + "product_id": "odf4/odf-multicluster-console-rhel9@sha256:e2185f7ac5e82ba3271f5d11bdcf649775afb4e275ff04868c9ba7d0be511e1e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/odf-multicluster-console-rhel9@sha256:e2185f7ac5e82ba3271f5d11bdcf649775afb4e275ff04868c9ba7d0be511e1e?arch=s390x&repository_url=registry.redhat.io/odf4/odf-multicluster-console-rhel9&tag=v4.14.0-74" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-multicluster-operator-bundle@sha256:1a1d5cce65a73a7ebd6796803e2adf296ca671816858d668117d9d21d14b1a87_s390x", + "product": { + "name": "odf4/odf-multicluster-operator-bundle@sha256:1a1d5cce65a73a7ebd6796803e2adf296ca671816858d668117d9d21d14b1a87_s390x", + "product_id": "odf4/odf-multicluster-operator-bundle@sha256:1a1d5cce65a73a7ebd6796803e2adf296ca671816858d668117d9d21d14b1a87_s390x", + "product_identification_helper": { + "purl": "pkg:oci/odf-multicluster-operator-bundle@sha256:1a1d5cce65a73a7ebd6796803e2adf296ca671816858d668117d9d21d14b1a87?arch=s390x&repository_url=registry.redhat.io/odf4/odf-multicluster-operator-bundle&tag=v4.14.0-161" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-multicluster-rhel9-operator@sha256:bae71b3fcde98cc26207fdab8c6e08bb1c20d5fc517107eee23e52ceb03d060e_s390x", + "product": { + "name": "odf4/odf-multicluster-rhel9-operator@sha256:bae71b3fcde98cc26207fdab8c6e08bb1c20d5fc517107eee23e52ceb03d060e_s390x", + "product_id": "odf4/odf-multicluster-rhel9-operator@sha256:bae71b3fcde98cc26207fdab8c6e08bb1c20d5fc517107eee23e52ceb03d060e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256:bae71b3fcde98cc26207fdab8c6e08bb1c20d5fc517107eee23e52ceb03d060e?arch=s390x&repository_url=registry.redhat.io/odf4/odf-multicluster-rhel9-operator&tag=v4.14.0-16" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-must-gather-rhel9@sha256:fa66ff5299778d29c990a6c177aa1378f76499f14da81ca0726705ed88205b6c_s390x", + "product": { + "name": "odf4/odf-must-gather-rhel9@sha256:fa66ff5299778d29c990a6c177aa1378f76499f14da81ca0726705ed88205b6c_s390x", + "product_id": "odf4/odf-must-gather-rhel9@sha256:fa66ff5299778d29c990a6c177aa1378f76499f14da81ca0726705ed88205b6c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/odf-must-gather-rhel9@sha256:fa66ff5299778d29c990a6c177aa1378f76499f14da81ca0726705ed88205b6c?arch=s390x&repository_url=registry.redhat.io/odf4/odf-must-gather-rhel9&tag=v4.14.0-29" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-operator-bundle@sha256:aca59c5da1ab71fda2a9c1b58d9637349c99f6501787443d102bd3312a00bf61_s390x", + "product": { + "name": "odf4/odf-operator-bundle@sha256:aca59c5da1ab71fda2a9c1b58d9637349c99f6501787443d102bd3312a00bf61_s390x", + "product_id": "odf4/odf-operator-bundle@sha256:aca59c5da1ab71fda2a9c1b58d9637349c99f6501787443d102bd3312a00bf61_s390x", + "product_identification_helper": { + "purl": "pkg:oci/odf-operator-bundle@sha256:aca59c5da1ab71fda2a9c1b58d9637349c99f6501787443d102bd3312a00bf61?arch=s390x&repository_url=registry.redhat.io/odf4/odf-operator-bundle&tag=v4.14.0-161" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-rhel9-operator@sha256:8eb089256eae891796741e26ebc18d251e24692f4fce4d6bdab6dbfa8d1930af_s390x", + "product": { + "name": "odf4/odf-rhel9-operator@sha256:8eb089256eae891796741e26ebc18d251e24692f4fce4d6bdab6dbfa8d1930af_s390x", + "product_id": "odf4/odf-rhel9-operator@sha256:8eb089256eae891796741e26ebc18d251e24692f4fce4d6bdab6dbfa8d1930af_s390x", + "product_identification_helper": { + "purl": "pkg:oci/odf-rhel9-operator@sha256:8eb089256eae891796741e26ebc18d251e24692f4fce4d6bdab6dbfa8d1930af?arch=s390x&repository_url=registry.redhat.io/odf4/odf-rhel9-operator&tag=v4.14.0-18" + } + } + }, + { + "category": "product_version", + "name": "odf4/odr-cluster-operator-bundle@sha256:91b4ab5822b81c8c731e587951830b61d318124b0f70a7b5992ab1d7979ca1e1_s390x", + "product": { + "name": "odf4/odr-cluster-operator-bundle@sha256:91b4ab5822b81c8c731e587951830b61d318124b0f70a7b5992ab1d7979ca1e1_s390x", + "product_id": "odf4/odr-cluster-operator-bundle@sha256:91b4ab5822b81c8c731e587951830b61d318124b0f70a7b5992ab1d7979ca1e1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/odr-cluster-operator-bundle@sha256:91b4ab5822b81c8c731e587951830b61d318124b0f70a7b5992ab1d7979ca1e1?arch=s390x&repository_url=registry.redhat.io/odf4/odr-cluster-operator-bundle&tag=v4.14.0-161" + } + } + }, + { + "category": "product_version", + "name": "odf4/odr-hub-operator-bundle@sha256:7a3d210c3b23f5afc21d3db41ce8904a041ad7feffd8503f5c2ee52a97357cb7_s390x", + "product": { + "name": "odf4/odr-hub-operator-bundle@sha256:7a3d210c3b23f5afc21d3db41ce8904a041ad7feffd8503f5c2ee52a97357cb7_s390x", + "product_id": "odf4/odr-hub-operator-bundle@sha256:7a3d210c3b23f5afc21d3db41ce8904a041ad7feffd8503f5c2ee52a97357cb7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/odr-hub-operator-bundle@sha256:7a3d210c3b23f5afc21d3db41ce8904a041ad7feffd8503f5c2ee52a97357cb7?arch=s390x&repository_url=registry.redhat.io/odf4/odr-hub-operator-bundle&tag=v4.14.0-161" + } + } + }, + { + "category": "product_version", + "name": "odf4/odr-rhel9-operator@sha256:a3f5d7281f9e28528923f54d816d7fe586f1cba6074f0a775fa613c99e5ad2a5_s390x", + "product": { + "name": "odf4/odr-rhel9-operator@sha256:a3f5d7281f9e28528923f54d816d7fe586f1cba6074f0a775fa613c99e5ad2a5_s390x", + "product_id": "odf4/odr-rhel9-operator@sha256:a3f5d7281f9e28528923f54d816d7fe586f1cba6074f0a775fa613c99e5ad2a5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/odr-rhel9-operator@sha256:a3f5d7281f9e28528923f54d816d7fe586f1cba6074f0a775fa613c99e5ad2a5?arch=s390x&repository_url=registry.redhat.io/odf4/odr-rhel9-operator&tag=v4.14.0-31" + } + } + }, + { + "category": "product_version", + "name": "odf4/rook-ceph-rhel9-operator@sha256:e18b3bec5944442cba078061c67c549d820522ddc6261c58a00208643def28a8_s390x", + "product": { + "name": "odf4/rook-ceph-rhel9-operator@sha256:e18b3bec5944442cba078061c67c549d820522ddc6261c58a00208643def28a8_s390x", + "product_id": "odf4/rook-ceph-rhel9-operator@sha256:e18b3bec5944442cba078061c67c549d820522ddc6261c58a00208643def28a8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rook-ceph-rhel9-operator@sha256:e18b3bec5944442cba078061c67c549d820522ddc6261c58a00208643def28a8?arch=s390x&repository_url=registry.redhat.io/odf4/rook-ceph-rhel9-operator&tag=v4.14.0-71" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "odf4/cephcsi-rhel9@sha256:d256c07680a4463f09d4a06a000fe001806cde5ccaa958005a1a3e66a127b5b1_ppc64le", + "product": { + "name": "odf4/cephcsi-rhel9@sha256:d256c07680a4463f09d4a06a000fe001806cde5ccaa958005a1a3e66a127b5b1_ppc64le", + "product_id": "odf4/cephcsi-rhel9@sha256:d256c07680a4463f09d4a06a000fe001806cde5ccaa958005a1a3e66a127b5b1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cephcsi-rhel9@sha256:d256c07680a4463f09d4a06a000fe001806cde5ccaa958005a1a3e66a127b5b1?arch=ppc64le&repository_url=registry.redhat.io/odf4/cephcsi-rhel9&tag=v4.14.0-29" + } + } + }, + { + "category": "product_version", + "name": "odf4/mcg-cli-rhel9@sha256:52cadb4a29242624ef35270f56317e019ae04dda9c6710d9d944a8628ca00818_ppc64le", + "product": { + "name": "odf4/mcg-cli-rhel9@sha256:52cadb4a29242624ef35270f56317e019ae04dda9c6710d9d944a8628ca00818_ppc64le", + "product_id": "odf4/mcg-cli-rhel9@sha256:52cadb4a29242624ef35270f56317e019ae04dda9c6710d9d944a8628ca00818_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/mcg-cli-rhel9@sha256:52cadb4a29242624ef35270f56317e019ae04dda9c6710d9d944a8628ca00818?arch=ppc64le&repository_url=registry.redhat.io/odf4/mcg-cli-rhel9&tag=v4.14.0-44" + } + } + }, + { + "category": "product_version", + "name": "odf4/mcg-core-rhel9@sha256:a3c88a63ab8c071cfd28aa97a12d2cf44f8d6f3779875b8bac79b76334995575_ppc64le", + "product": { + "name": "odf4/mcg-core-rhel9@sha256:a3c88a63ab8c071cfd28aa97a12d2cf44f8d6f3779875b8bac79b76334995575_ppc64le", + "product_id": "odf4/mcg-core-rhel9@sha256:a3c88a63ab8c071cfd28aa97a12d2cf44f8d6f3779875b8bac79b76334995575_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/mcg-core-rhel9@sha256:a3c88a63ab8c071cfd28aa97a12d2cf44f8d6f3779875b8bac79b76334995575?arch=ppc64le&repository_url=registry.redhat.io/odf4/mcg-core-rhel9&tag=v4.14.0-63" + } + } + }, + { + "category": "product_version", + "name": "odf4/mcg-operator-bundle@sha256:db479b0a4c27104c57911bead5d15b99617a2ae355586e765b04ea02f72662cf_ppc64le", + "product": { + "name": "odf4/mcg-operator-bundle@sha256:db479b0a4c27104c57911bead5d15b99617a2ae355586e765b04ea02f72662cf_ppc64le", + "product_id": "odf4/mcg-operator-bundle@sha256:db479b0a4c27104c57911bead5d15b99617a2ae355586e765b04ea02f72662cf_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/mcg-operator-bundle@sha256:db479b0a4c27104c57911bead5d15b99617a2ae355586e765b04ea02f72662cf?arch=ppc64le&repository_url=registry.redhat.io/odf4/mcg-operator-bundle&tag=v4.14.0-161" + } + } + }, + { + "category": "product_version", + "name": "odf4/mcg-rhel9-operator@sha256:45e081dc18d87532beb038ee07e9e99f3ab686ad5a4fe65664f82e490d295d14_ppc64le", + "product": { + "name": "odf4/mcg-rhel9-operator@sha256:45e081dc18d87532beb038ee07e9e99f3ab686ad5a4fe65664f82e490d295d14_ppc64le", + "product_id": "odf4/mcg-rhel9-operator@sha256:45e081dc18d87532beb038ee07e9e99f3ab686ad5a4fe65664f82e490d295d14_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/mcg-rhel9-operator@sha256:45e081dc18d87532beb038ee07e9e99f3ab686ad5a4fe65664f82e490d295d14?arch=ppc64le&repository_url=registry.redhat.io/odf4/mcg-rhel9-operator&tag=v4.14.0-43" + } + } + }, + { + "category": "product_version", + "name": "odf4/ocs-client-console-rhel9@sha256:0dbc5b109af0e72148bc5c70089e2db9f3a6a30946484ea2b75a05ed96b74049_ppc64le", + "product": { + "name": "odf4/ocs-client-console-rhel9@sha256:0dbc5b109af0e72148bc5c70089e2db9f3a6a30946484ea2b75a05ed96b74049_ppc64le", + "product_id": "odf4/ocs-client-console-rhel9@sha256:0dbc5b109af0e72148bc5c70089e2db9f3a6a30946484ea2b75a05ed96b74049_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ocs-client-console-rhel9@sha256:0dbc5b109af0e72148bc5c70089e2db9f3a6a30946484ea2b75a05ed96b74049?arch=ppc64le&repository_url=registry.redhat.io/odf4/ocs-client-console-rhel9&tag=v4.14.0-35" + } + } + }, + { + "category": "product_version", + "name": "odf4/ocs-client-operator-bundle@sha256:4ff423ec1d18619590b5e3ce4b10352dbc50894ec92ec5d0164c8488e6f45a9e_ppc64le", + "product": { + "name": "odf4/ocs-client-operator-bundle@sha256:4ff423ec1d18619590b5e3ce4b10352dbc50894ec92ec5d0164c8488e6f45a9e_ppc64le", + "product_id": "odf4/ocs-client-operator-bundle@sha256:4ff423ec1d18619590b5e3ce4b10352dbc50894ec92ec5d0164c8488e6f45a9e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ocs-client-operator-bundle@sha256:4ff423ec1d18619590b5e3ce4b10352dbc50894ec92ec5d0164c8488e6f45a9e?arch=ppc64le&repository_url=registry.redhat.io/odf4/ocs-client-operator-bundle&tag=v4.14.0-161" + } + } + }, + { + "category": "product_version", + "name": "odf4/ocs-client-rhel9-operator@sha256:7f0e8e93d13f4fd74c0e801b94c0fa79369f319e371832c59c990f80a02a29fb_ppc64le", + "product": { + "name": "odf4/ocs-client-rhel9-operator@sha256:7f0e8e93d13f4fd74c0e801b94c0fa79369f319e371832c59c990f80a02a29fb_ppc64le", + "product_id": "odf4/ocs-client-rhel9-operator@sha256:7f0e8e93d13f4fd74c0e801b94c0fa79369f319e371832c59c990f80a02a29fb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ocs-client-rhel9-operator@sha256:7f0e8e93d13f4fd74c0e801b94c0fa79369f319e371832c59c990f80a02a29fb?arch=ppc64le&repository_url=registry.redhat.io/odf4/ocs-client-rhel9-operator&tag=v4.14.0-14" + } + } + }, + { + "category": "product_version", + "name": "odf4/ocs-metrics-exporter-rhel9@sha256:52b43f37c8801a43153ea7df37ec7a20494ecaa3f6b4b3c71a97bb670b418e44_ppc64le", + "product": { + "name": "odf4/ocs-metrics-exporter-rhel9@sha256:52b43f37c8801a43153ea7df37ec7a20494ecaa3f6b4b3c71a97bb670b418e44_ppc64le", + "product_id": "odf4/ocs-metrics-exporter-rhel9@sha256:52b43f37c8801a43153ea7df37ec7a20494ecaa3f6b4b3c71a97bb670b418e44_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256:52b43f37c8801a43153ea7df37ec7a20494ecaa3f6b4b3c71a97bb670b418e44?arch=ppc64le&repository_url=registry.redhat.io/odf4/ocs-metrics-exporter-rhel9&tag=v4.14.0-68" + } + } + }, + { + "category": "product_version", + "name": "odf4/ocs-operator-bundle@sha256:2ae1361711997b8ab997c6fc09985af6909968a055d616d633bde23910a000b0_ppc64le", + "product": { + "name": "odf4/ocs-operator-bundle@sha256:2ae1361711997b8ab997c6fc09985af6909968a055d616d633bde23910a000b0_ppc64le", + "product_id": "odf4/ocs-operator-bundle@sha256:2ae1361711997b8ab997c6fc09985af6909968a055d616d633bde23910a000b0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ocs-operator-bundle@sha256:2ae1361711997b8ab997c6fc09985af6909968a055d616d633bde23910a000b0?arch=ppc64le&repository_url=registry.redhat.io/odf4/ocs-operator-bundle&tag=v4.14.0-161" + } + } + }, + { + "category": "product_version", + "name": "odf4/ocs-rhel9-operator@sha256:36a3587297be43c27a0348efc2ce0bd6d5cb4ff5447206e07770b78c6804d827_ppc64le", + "product": { + "name": "odf4/ocs-rhel9-operator@sha256:36a3587297be43c27a0348efc2ce0bd6d5cb4ff5447206e07770b78c6804d827_ppc64le", + "product_id": "odf4/ocs-rhel9-operator@sha256:36a3587297be43c27a0348efc2ce0bd6d5cb4ff5447206e07770b78c6804d827_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ocs-rhel9-operator@sha256:36a3587297be43c27a0348efc2ce0bd6d5cb4ff5447206e07770b78c6804d827?arch=ppc64le&repository_url=registry.redhat.io/odf4/ocs-rhel9-operator&tag=v4.14.0-67" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-console-rhel9@sha256:1355bfd45d0f7715fe5a8c709d92951a25d1ee06742373ad632890dbd8678dc4_ppc64le", + "product": { + "name": "odf4/odf-console-rhel9@sha256:1355bfd45d0f7715fe5a8c709d92951a25d1ee06742373ad632890dbd8678dc4_ppc64le", + "product_id": "odf4/odf-console-rhel9@sha256:1355bfd45d0f7715fe5a8c709d92951a25d1ee06742373ad632890dbd8678dc4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/odf-console-rhel9@sha256:1355bfd45d0f7715fe5a8c709d92951a25d1ee06742373ad632890dbd8678dc4?arch=ppc64le&repository_url=registry.redhat.io/odf4/odf-console-rhel9&tag=v4.14.0-77" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-cosi-sidecar-rhel9@sha256:1073a52233897ca521366b8a98c401b8f4b43a75e289dfe2bab3281498134808_ppc64le", + "product": { + "name": "odf4/odf-cosi-sidecar-rhel9@sha256:1073a52233897ca521366b8a98c401b8f4b43a75e289dfe2bab3281498134808_ppc64le", + "product_id": "odf4/odf-cosi-sidecar-rhel9@sha256:1073a52233897ca521366b8a98c401b8f4b43a75e289dfe2bab3281498134808_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256:1073a52233897ca521366b8a98c401b8f4b43a75e289dfe2bab3281498134808?arch=ppc64le&repository_url=registry.redhat.io/odf4/odf-cosi-sidecar-rhel9&tag=v4.14.0-8" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-csi-addons-operator-bundle@sha256:53e09d58b3875d5584aedc091fcce42dcfe3f0d215092ecff8da61211ba822e3_ppc64le", + "product": { + "name": "odf4/odf-csi-addons-operator-bundle@sha256:53e09d58b3875d5584aedc091fcce42dcfe3f0d215092ecff8da61211ba822e3_ppc64le", + "product_id": "odf4/odf-csi-addons-operator-bundle@sha256:53e09d58b3875d5584aedc091fcce42dcfe3f0d215092ecff8da61211ba822e3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/odf-csi-addons-operator-bundle@sha256:53e09d58b3875d5584aedc091fcce42dcfe3f0d215092ecff8da61211ba822e3?arch=ppc64le&repository_url=registry.redhat.io/odf4/odf-csi-addons-operator-bundle&tag=v4.14.0-161" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-csi-addons-rhel9-operator@sha256:f5ba1535c00f7330847db8d7202aa1bb09aa7598e2c840dabb9156135688c2ad_ppc64le", + "product": { + "name": "odf4/odf-csi-addons-rhel9-operator@sha256:f5ba1535c00f7330847db8d7202aa1bb09aa7598e2c840dabb9156135688c2ad_ppc64le", + "product_id": "odf4/odf-csi-addons-rhel9-operator@sha256:f5ba1535c00f7330847db8d7202aa1bb09aa7598e2c840dabb9156135688c2ad_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256:f5ba1535c00f7330847db8d7202aa1bb09aa7598e2c840dabb9156135688c2ad?arch=ppc64le&repository_url=registry.redhat.io/odf4/odf-csi-addons-rhel9-operator&tag=v4.14.0-14" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-csi-addons-sidecar-rhel9@sha256:eecdcf798f46f87751d06803634ee2c55dba5be4fb9191724f6f66ce8e2d1d53_ppc64le", + "product": { + "name": "odf4/odf-csi-addons-sidecar-rhel9@sha256:eecdcf798f46f87751d06803634ee2c55dba5be4fb9191724f6f66ce8e2d1d53_ppc64le", + "product_id": "odf4/odf-csi-addons-sidecar-rhel9@sha256:eecdcf798f46f87751d06803634ee2c55dba5be4fb9191724f6f66ce8e2d1d53_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256:eecdcf798f46f87751d06803634ee2c55dba5be4fb9191724f6f66ce8e2d1d53?arch=ppc64le&repository_url=registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9&tag=v4.14.0-13" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-multicluster-console-rhel9@sha256:93e15fb7e7ad0ca8bdfa151bb4bc709e19b84a93b9dd4d6c5b5f09c1669410a7_ppc64le", + "product": { + "name": "odf4/odf-multicluster-console-rhel9@sha256:93e15fb7e7ad0ca8bdfa151bb4bc709e19b84a93b9dd4d6c5b5f09c1669410a7_ppc64le", + "product_id": "odf4/odf-multicluster-console-rhel9@sha256:93e15fb7e7ad0ca8bdfa151bb4bc709e19b84a93b9dd4d6c5b5f09c1669410a7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/odf-multicluster-console-rhel9@sha256:93e15fb7e7ad0ca8bdfa151bb4bc709e19b84a93b9dd4d6c5b5f09c1669410a7?arch=ppc64le&repository_url=registry.redhat.io/odf4/odf-multicluster-console-rhel9&tag=v4.14.0-74" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-multicluster-operator-bundle@sha256:60eefcb09904faadfef9b44f25da9fc8fc4923b178090e7218e67cb9ae0793a3_ppc64le", + "product": { + "name": "odf4/odf-multicluster-operator-bundle@sha256:60eefcb09904faadfef9b44f25da9fc8fc4923b178090e7218e67cb9ae0793a3_ppc64le", + "product_id": "odf4/odf-multicluster-operator-bundle@sha256:60eefcb09904faadfef9b44f25da9fc8fc4923b178090e7218e67cb9ae0793a3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/odf-multicluster-operator-bundle@sha256:60eefcb09904faadfef9b44f25da9fc8fc4923b178090e7218e67cb9ae0793a3?arch=ppc64le&repository_url=registry.redhat.io/odf4/odf-multicluster-operator-bundle&tag=v4.14.0-161" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-multicluster-rhel9-operator@sha256:0110d494cf1e0171e50218990dde818dfbd0119e88237459dc44fd8ffa8018bc_ppc64le", + "product": { + "name": "odf4/odf-multicluster-rhel9-operator@sha256:0110d494cf1e0171e50218990dde818dfbd0119e88237459dc44fd8ffa8018bc_ppc64le", + "product_id": "odf4/odf-multicluster-rhel9-operator@sha256:0110d494cf1e0171e50218990dde818dfbd0119e88237459dc44fd8ffa8018bc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256:0110d494cf1e0171e50218990dde818dfbd0119e88237459dc44fd8ffa8018bc?arch=ppc64le&repository_url=registry.redhat.io/odf4/odf-multicluster-rhel9-operator&tag=v4.14.0-16" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-must-gather-rhel9@sha256:656596458a504dc59881347a69ed67ded606fe2ecafebe612cac4ef687b83c2a_ppc64le", + "product": { + "name": "odf4/odf-must-gather-rhel9@sha256:656596458a504dc59881347a69ed67ded606fe2ecafebe612cac4ef687b83c2a_ppc64le", + "product_id": "odf4/odf-must-gather-rhel9@sha256:656596458a504dc59881347a69ed67ded606fe2ecafebe612cac4ef687b83c2a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/odf-must-gather-rhel9@sha256:656596458a504dc59881347a69ed67ded606fe2ecafebe612cac4ef687b83c2a?arch=ppc64le&repository_url=registry.redhat.io/odf4/odf-must-gather-rhel9&tag=v4.14.0-29" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-operator-bundle@sha256:f7b2891ac970e16db4204bcc1fd562d41ff4c907223bdbec5e372fe42361a03e_ppc64le", + "product": { + "name": "odf4/odf-operator-bundle@sha256:f7b2891ac970e16db4204bcc1fd562d41ff4c907223bdbec5e372fe42361a03e_ppc64le", + "product_id": "odf4/odf-operator-bundle@sha256:f7b2891ac970e16db4204bcc1fd562d41ff4c907223bdbec5e372fe42361a03e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/odf-operator-bundle@sha256:f7b2891ac970e16db4204bcc1fd562d41ff4c907223bdbec5e372fe42361a03e?arch=ppc64le&repository_url=registry.redhat.io/odf4/odf-operator-bundle&tag=v4.14.0-161" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-rhel9-operator@sha256:d207a79a6144f1f929342f41d2270bf6528caad00bea697d9129eb405241a7df_ppc64le", + "product": { + "name": "odf4/odf-rhel9-operator@sha256:d207a79a6144f1f929342f41d2270bf6528caad00bea697d9129eb405241a7df_ppc64le", + "product_id": "odf4/odf-rhel9-operator@sha256:d207a79a6144f1f929342f41d2270bf6528caad00bea697d9129eb405241a7df_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/odf-rhel9-operator@sha256:d207a79a6144f1f929342f41d2270bf6528caad00bea697d9129eb405241a7df?arch=ppc64le&repository_url=registry.redhat.io/odf4/odf-rhel9-operator&tag=v4.14.0-18" + } + } + }, + { + "category": "product_version", + "name": "odf4/odr-cluster-operator-bundle@sha256:f0e5ba9ff8d2a7413b21dcd88e238431b8897cae5d24134faeeb17769b930702_ppc64le", + "product": { + "name": "odf4/odr-cluster-operator-bundle@sha256:f0e5ba9ff8d2a7413b21dcd88e238431b8897cae5d24134faeeb17769b930702_ppc64le", + "product_id": "odf4/odr-cluster-operator-bundle@sha256:f0e5ba9ff8d2a7413b21dcd88e238431b8897cae5d24134faeeb17769b930702_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/odr-cluster-operator-bundle@sha256:f0e5ba9ff8d2a7413b21dcd88e238431b8897cae5d24134faeeb17769b930702?arch=ppc64le&repository_url=registry.redhat.io/odf4/odr-cluster-operator-bundle&tag=v4.14.0-161" + } + } + }, + { + "category": "product_version", + "name": "odf4/odr-hub-operator-bundle@sha256:a9f630b9bfebe4e363dd4d06e471ac0bc1bb8ada15aa64eeff02d38aa359302d_ppc64le", + "product": { + "name": "odf4/odr-hub-operator-bundle@sha256:a9f630b9bfebe4e363dd4d06e471ac0bc1bb8ada15aa64eeff02d38aa359302d_ppc64le", + "product_id": "odf4/odr-hub-operator-bundle@sha256:a9f630b9bfebe4e363dd4d06e471ac0bc1bb8ada15aa64eeff02d38aa359302d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/odr-hub-operator-bundle@sha256:a9f630b9bfebe4e363dd4d06e471ac0bc1bb8ada15aa64eeff02d38aa359302d?arch=ppc64le&repository_url=registry.redhat.io/odf4/odr-hub-operator-bundle&tag=v4.14.0-161" + } + } + }, + { + "category": "product_version", + "name": "odf4/odr-rhel9-operator@sha256:4c71572fdd69a4073455467201b958a308fbd59db81fc553a6ee24eddc45f011_ppc64le", + "product": { + "name": "odf4/odr-rhel9-operator@sha256:4c71572fdd69a4073455467201b958a308fbd59db81fc553a6ee24eddc45f011_ppc64le", + "product_id": "odf4/odr-rhel9-operator@sha256:4c71572fdd69a4073455467201b958a308fbd59db81fc553a6ee24eddc45f011_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/odr-rhel9-operator@sha256:4c71572fdd69a4073455467201b958a308fbd59db81fc553a6ee24eddc45f011?arch=ppc64le&repository_url=registry.redhat.io/odf4/odr-rhel9-operator&tag=v4.14.0-31" + } + } + }, + { + "category": "product_version", + "name": "odf4/rook-ceph-rhel9-operator@sha256:9c6657db4952f5096eb9cbae6a8b5bcfaec530b9c41202e604d23bfba90dbcb4_ppc64le", + "product": { + "name": "odf4/rook-ceph-rhel9-operator@sha256:9c6657db4952f5096eb9cbae6a8b5bcfaec530b9c41202e604d23bfba90dbcb4_ppc64le", + "product_id": "odf4/rook-ceph-rhel9-operator@sha256:9c6657db4952f5096eb9cbae6a8b5bcfaec530b9c41202e604d23bfba90dbcb4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rook-ceph-rhel9-operator@sha256:9c6657db4952f5096eb9cbae6a8b5bcfaec530b9c41202e604d23bfba90dbcb4?arch=ppc64le&repository_url=registry.redhat.io/odf4/rook-ceph-rhel9-operator&tag=v4.14.0-71" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "odf4/cephcsi-rhel9@sha256:35a02234cca01c1f4acc66744fe5238c1810ba098b63f95c5c09f183647032f9_amd64", + "product": { + "name": "odf4/cephcsi-rhel9@sha256:35a02234cca01c1f4acc66744fe5238c1810ba098b63f95c5c09f183647032f9_amd64", + "product_id": "odf4/cephcsi-rhel9@sha256:35a02234cca01c1f4acc66744fe5238c1810ba098b63f95c5c09f183647032f9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cephcsi-rhel9@sha256:35a02234cca01c1f4acc66744fe5238c1810ba098b63f95c5c09f183647032f9?arch=amd64&repository_url=registry.redhat.io/odf4/cephcsi-rhel9&tag=v4.14.0-29" + } + } + }, + { + "category": "product_version", + "name": "odf4/mcg-cli-rhel9@sha256:ee129f877f166acabe289aba862cd1d0154f29987dfd9df4800b18c005725256_amd64", + "product": { + "name": "odf4/mcg-cli-rhel9@sha256:ee129f877f166acabe289aba862cd1d0154f29987dfd9df4800b18c005725256_amd64", + "product_id": "odf4/mcg-cli-rhel9@sha256:ee129f877f166acabe289aba862cd1d0154f29987dfd9df4800b18c005725256_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mcg-cli-rhel9@sha256:ee129f877f166acabe289aba862cd1d0154f29987dfd9df4800b18c005725256?arch=amd64&repository_url=registry.redhat.io/odf4/mcg-cli-rhel9&tag=v4.14.0-44" + } + } + }, + { + "category": "product_version", + "name": "odf4/mcg-core-rhel9@sha256:4db0118093d6186245a1bad6e33a7c324adf4385ffe632e72ef8eb6fa4bc7cc4_amd64", + "product": { + "name": "odf4/mcg-core-rhel9@sha256:4db0118093d6186245a1bad6e33a7c324adf4385ffe632e72ef8eb6fa4bc7cc4_amd64", + "product_id": "odf4/mcg-core-rhel9@sha256:4db0118093d6186245a1bad6e33a7c324adf4385ffe632e72ef8eb6fa4bc7cc4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mcg-core-rhel9@sha256:4db0118093d6186245a1bad6e33a7c324adf4385ffe632e72ef8eb6fa4bc7cc4?arch=amd64&repository_url=registry.redhat.io/odf4/mcg-core-rhel9&tag=v4.14.0-63" + } + } + }, + { + "category": "product_version", + "name": "odf4/mcg-operator-bundle@sha256:217ee67bfcec7b49193c035292a10577603397acae7b3d36ef2a8809a47c4b01_amd64", + "product": { + "name": "odf4/mcg-operator-bundle@sha256:217ee67bfcec7b49193c035292a10577603397acae7b3d36ef2a8809a47c4b01_amd64", + "product_id": "odf4/mcg-operator-bundle@sha256:217ee67bfcec7b49193c035292a10577603397acae7b3d36ef2a8809a47c4b01_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mcg-operator-bundle@sha256:217ee67bfcec7b49193c035292a10577603397acae7b3d36ef2a8809a47c4b01?arch=amd64&repository_url=registry.redhat.io/odf4/mcg-operator-bundle&tag=v4.14.0-161" + } + } + }, + { + "category": "product_version", + "name": "odf4/mcg-rhel9-operator@sha256:cf3caa9b68d92d8b99237dedd6631fbe96a30ce1ee44f4cc3eb4c9a45b5f906d_amd64", + "product": { + "name": "odf4/mcg-rhel9-operator@sha256:cf3caa9b68d92d8b99237dedd6631fbe96a30ce1ee44f4cc3eb4c9a45b5f906d_amd64", + "product_id": "odf4/mcg-rhel9-operator@sha256:cf3caa9b68d92d8b99237dedd6631fbe96a30ce1ee44f4cc3eb4c9a45b5f906d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mcg-rhel9-operator@sha256:cf3caa9b68d92d8b99237dedd6631fbe96a30ce1ee44f4cc3eb4c9a45b5f906d?arch=amd64&repository_url=registry.redhat.io/odf4/mcg-rhel9-operator&tag=v4.14.0-43" + } + } + }, + { + "category": "product_version", + "name": "odf4/ocs-client-console-rhel9@sha256:1a8a1d7bfa55de51ec2a777f2ad0d21d61c0e4a8be2802cbf4d76dc4a5d578d6_amd64", + "product": { + "name": "odf4/ocs-client-console-rhel9@sha256:1a8a1d7bfa55de51ec2a777f2ad0d21d61c0e4a8be2802cbf4d76dc4a5d578d6_amd64", + "product_id": "odf4/ocs-client-console-rhel9@sha256:1a8a1d7bfa55de51ec2a777f2ad0d21d61c0e4a8be2802cbf4d76dc4a5d578d6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ocs-client-console-rhel9@sha256:1a8a1d7bfa55de51ec2a777f2ad0d21d61c0e4a8be2802cbf4d76dc4a5d578d6?arch=amd64&repository_url=registry.redhat.io/odf4/ocs-client-console-rhel9&tag=v4.14.0-35" + } + } + }, + { + "category": "product_version", + "name": "odf4/ocs-client-operator-bundle@sha256:cab28a3e2b44dc6f2efebbd5a52dee943ac9a8ae1f52cd4455418a6b689d54b3_amd64", + "product": { + "name": "odf4/ocs-client-operator-bundle@sha256:cab28a3e2b44dc6f2efebbd5a52dee943ac9a8ae1f52cd4455418a6b689d54b3_amd64", + "product_id": "odf4/ocs-client-operator-bundle@sha256:cab28a3e2b44dc6f2efebbd5a52dee943ac9a8ae1f52cd4455418a6b689d54b3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ocs-client-operator-bundle@sha256:cab28a3e2b44dc6f2efebbd5a52dee943ac9a8ae1f52cd4455418a6b689d54b3?arch=amd64&repository_url=registry.redhat.io/odf4/ocs-client-operator-bundle&tag=v4.14.0-161" + } + } + }, + { + "category": "product_version", + "name": "odf4/ocs-client-rhel9-operator@sha256:923bc2abdbf6ad3594e3db6acf6a0054ee13deea7127480e4d200758cc2789d0_amd64", + "product": { + "name": "odf4/ocs-client-rhel9-operator@sha256:923bc2abdbf6ad3594e3db6acf6a0054ee13deea7127480e4d200758cc2789d0_amd64", + "product_id": "odf4/ocs-client-rhel9-operator@sha256:923bc2abdbf6ad3594e3db6acf6a0054ee13deea7127480e4d200758cc2789d0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ocs-client-rhel9-operator@sha256:923bc2abdbf6ad3594e3db6acf6a0054ee13deea7127480e4d200758cc2789d0?arch=amd64&repository_url=registry.redhat.io/odf4/ocs-client-rhel9-operator&tag=v4.14.0-14" + } + } + }, + { + "category": "product_version", + "name": "odf4/ocs-metrics-exporter-rhel9@sha256:bc2b43b18fb8a054376e2295dc8e4bd7be57e8d2898a3efca3a014c40a109964_amd64", + "product": { + "name": "odf4/ocs-metrics-exporter-rhel9@sha256:bc2b43b18fb8a054376e2295dc8e4bd7be57e8d2898a3efca3a014c40a109964_amd64", + "product_id": "odf4/ocs-metrics-exporter-rhel9@sha256:bc2b43b18fb8a054376e2295dc8e4bd7be57e8d2898a3efca3a014c40a109964_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ocs-metrics-exporter-rhel9@sha256:bc2b43b18fb8a054376e2295dc8e4bd7be57e8d2898a3efca3a014c40a109964?arch=amd64&repository_url=registry.redhat.io/odf4/ocs-metrics-exporter-rhel9&tag=v4.14.0-68" + } + } + }, + { + "category": "product_version", + "name": "odf4/ocs-operator-bundle@sha256:33726ea05cce60e263d4f64dab60543b9c70542f1649aa79f0e10bc264d82f6a_amd64", + "product": { + "name": "odf4/ocs-operator-bundle@sha256:33726ea05cce60e263d4f64dab60543b9c70542f1649aa79f0e10bc264d82f6a_amd64", + "product_id": "odf4/ocs-operator-bundle@sha256:33726ea05cce60e263d4f64dab60543b9c70542f1649aa79f0e10bc264d82f6a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ocs-operator-bundle@sha256:33726ea05cce60e263d4f64dab60543b9c70542f1649aa79f0e10bc264d82f6a?arch=amd64&repository_url=registry.redhat.io/odf4/ocs-operator-bundle&tag=v4.14.0-161" + } + } + }, + { + "category": "product_version", + "name": "odf4/ocs-rhel9-operator@sha256:d83c01e9498460d577809a37bae6c4a5e8a908209ff5e3541e8453aff29d378b_amd64", + "product": { + "name": "odf4/ocs-rhel9-operator@sha256:d83c01e9498460d577809a37bae6c4a5e8a908209ff5e3541e8453aff29d378b_amd64", + "product_id": "odf4/ocs-rhel9-operator@sha256:d83c01e9498460d577809a37bae6c4a5e8a908209ff5e3541e8453aff29d378b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ocs-rhel9-operator@sha256:d83c01e9498460d577809a37bae6c4a5e8a908209ff5e3541e8453aff29d378b?arch=amd64&repository_url=registry.redhat.io/odf4/ocs-rhel9-operator&tag=v4.14.0-67" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-console-rhel9@sha256:9e58f78573d466a52b2091df3680331b1453f8f1185d72fa8daddaa2bee34522_amd64", + "product": { + "name": "odf4/odf-console-rhel9@sha256:9e58f78573d466a52b2091df3680331b1453f8f1185d72fa8daddaa2bee34522_amd64", + "product_id": "odf4/odf-console-rhel9@sha256:9e58f78573d466a52b2091df3680331b1453f8f1185d72fa8daddaa2bee34522_amd64", + "product_identification_helper": { + "purl": "pkg:oci/odf-console-rhel9@sha256:9e58f78573d466a52b2091df3680331b1453f8f1185d72fa8daddaa2bee34522?arch=amd64&repository_url=registry.redhat.io/odf4/odf-console-rhel9&tag=v4.14.0-77" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-cosi-sidecar-rhel9@sha256:d0c257b6f5fe9790c687dd255ef574a5e5fe5d2d24f90bd76fc674febf681871_amd64", + "product": { + "name": "odf4/odf-cosi-sidecar-rhel9@sha256:d0c257b6f5fe9790c687dd255ef574a5e5fe5d2d24f90bd76fc674febf681871_amd64", + "product_id": "odf4/odf-cosi-sidecar-rhel9@sha256:d0c257b6f5fe9790c687dd255ef574a5e5fe5d2d24f90bd76fc674febf681871_amd64", + "product_identification_helper": { + "purl": "pkg:oci/odf-cosi-sidecar-rhel9@sha256:d0c257b6f5fe9790c687dd255ef574a5e5fe5d2d24f90bd76fc674febf681871?arch=amd64&repository_url=registry.redhat.io/odf4/odf-cosi-sidecar-rhel9&tag=v4.14.0-8" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-csi-addons-operator-bundle@sha256:36074f09cf007c51360bbcef9c20f05696a666ed5a7e9a087d3c5f2abc28d3b1_amd64", + "product": { + "name": "odf4/odf-csi-addons-operator-bundle@sha256:36074f09cf007c51360bbcef9c20f05696a666ed5a7e9a087d3c5f2abc28d3b1_amd64", + "product_id": "odf4/odf-csi-addons-operator-bundle@sha256:36074f09cf007c51360bbcef9c20f05696a666ed5a7e9a087d3c5f2abc28d3b1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/odf-csi-addons-operator-bundle@sha256:36074f09cf007c51360bbcef9c20f05696a666ed5a7e9a087d3c5f2abc28d3b1?arch=amd64&repository_url=registry.redhat.io/odf4/odf-csi-addons-operator-bundle&tag=v4.14.0-161" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-csi-addons-rhel9-operator@sha256:22f1de08f29857973e81b71745ac622d43de92b383a70f9efa7bff7404fb8703_amd64", + "product": { + "name": "odf4/odf-csi-addons-rhel9-operator@sha256:22f1de08f29857973e81b71745ac622d43de92b383a70f9efa7bff7404fb8703_amd64", + "product_id": "odf4/odf-csi-addons-rhel9-operator@sha256:22f1de08f29857973e81b71745ac622d43de92b383a70f9efa7bff7404fb8703_amd64", + "product_identification_helper": { + "purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256:22f1de08f29857973e81b71745ac622d43de92b383a70f9efa7bff7404fb8703?arch=amd64&repository_url=registry.redhat.io/odf4/odf-csi-addons-rhel9-operator&tag=v4.14.0-14" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-csi-addons-sidecar-rhel9@sha256:701aa70b3c88008e143b97edf1b2ad6f408f3620b3e174fe08d355eca186a8e1_amd64", + "product": { + "name": "odf4/odf-csi-addons-sidecar-rhel9@sha256:701aa70b3c88008e143b97edf1b2ad6f408f3620b3e174fe08d355eca186a8e1_amd64", + "product_id": "odf4/odf-csi-addons-sidecar-rhel9@sha256:701aa70b3c88008e143b97edf1b2ad6f408f3620b3e174fe08d355eca186a8e1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256:701aa70b3c88008e143b97edf1b2ad6f408f3620b3e174fe08d355eca186a8e1?arch=amd64&repository_url=registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9&tag=v4.14.0-13" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-multicluster-console-rhel9@sha256:7e51fe4b13a94ba6ab433112f2d165a9950b63b6e479d6fd158ad593ff9c8bac_amd64", + "product": { + "name": "odf4/odf-multicluster-console-rhel9@sha256:7e51fe4b13a94ba6ab433112f2d165a9950b63b6e479d6fd158ad593ff9c8bac_amd64", + "product_id": "odf4/odf-multicluster-console-rhel9@sha256:7e51fe4b13a94ba6ab433112f2d165a9950b63b6e479d6fd158ad593ff9c8bac_amd64", + "product_identification_helper": { + "purl": "pkg:oci/odf-multicluster-console-rhel9@sha256:7e51fe4b13a94ba6ab433112f2d165a9950b63b6e479d6fd158ad593ff9c8bac?arch=amd64&repository_url=registry.redhat.io/odf4/odf-multicluster-console-rhel9&tag=v4.14.0-74" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-multicluster-operator-bundle@sha256:c106a989373ad238437d87f84b70333bd419949a218bbd0b1b33f55ee010a892_amd64", + "product": { + "name": "odf4/odf-multicluster-operator-bundle@sha256:c106a989373ad238437d87f84b70333bd419949a218bbd0b1b33f55ee010a892_amd64", + "product_id": "odf4/odf-multicluster-operator-bundle@sha256:c106a989373ad238437d87f84b70333bd419949a218bbd0b1b33f55ee010a892_amd64", + "product_identification_helper": { + "purl": "pkg:oci/odf-multicluster-operator-bundle@sha256:c106a989373ad238437d87f84b70333bd419949a218bbd0b1b33f55ee010a892?arch=amd64&repository_url=registry.redhat.io/odf4/odf-multicluster-operator-bundle&tag=v4.14.0-161" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-multicluster-rhel9-operator@sha256:a662af8813a91db2db0bc6036b57809cba61814d06c3064d2223196883186c9c_amd64", + "product": { + "name": "odf4/odf-multicluster-rhel9-operator@sha256:a662af8813a91db2db0bc6036b57809cba61814d06c3064d2223196883186c9c_amd64", + "product_id": "odf4/odf-multicluster-rhel9-operator@sha256:a662af8813a91db2db0bc6036b57809cba61814d06c3064d2223196883186c9c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256:a662af8813a91db2db0bc6036b57809cba61814d06c3064d2223196883186c9c?arch=amd64&repository_url=registry.redhat.io/odf4/odf-multicluster-rhel9-operator&tag=v4.14.0-16" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-must-gather-rhel9@sha256:bc71d7a33f838e3afeefe1cb72df8a9e29e0cf1aa20e3beea882939dcffd51b1_amd64", + "product": { + "name": "odf4/odf-must-gather-rhel9@sha256:bc71d7a33f838e3afeefe1cb72df8a9e29e0cf1aa20e3beea882939dcffd51b1_amd64", + "product_id": "odf4/odf-must-gather-rhel9@sha256:bc71d7a33f838e3afeefe1cb72df8a9e29e0cf1aa20e3beea882939dcffd51b1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/odf-must-gather-rhel9@sha256:bc71d7a33f838e3afeefe1cb72df8a9e29e0cf1aa20e3beea882939dcffd51b1?arch=amd64&repository_url=registry.redhat.io/odf4/odf-must-gather-rhel9&tag=v4.14.0-29" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-operator-bundle@sha256:2073c981617b587e900e92a933f7d144f14a86c9ba5429923a4bba4129877290_amd64", + "product": { + "name": "odf4/odf-operator-bundle@sha256:2073c981617b587e900e92a933f7d144f14a86c9ba5429923a4bba4129877290_amd64", + "product_id": "odf4/odf-operator-bundle@sha256:2073c981617b587e900e92a933f7d144f14a86c9ba5429923a4bba4129877290_amd64", + "product_identification_helper": { + "purl": "pkg:oci/odf-operator-bundle@sha256:2073c981617b587e900e92a933f7d144f14a86c9ba5429923a4bba4129877290?arch=amd64&repository_url=registry.redhat.io/odf4/odf-operator-bundle&tag=v4.14.0-161" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-rhel9-operator@sha256:d52027bc58ef6a9a4a0b1b47abb4fb2651db958da5ffb4931c82cebb0838782e_amd64", + "product": { + "name": "odf4/odf-rhel9-operator@sha256:d52027bc58ef6a9a4a0b1b47abb4fb2651db958da5ffb4931c82cebb0838782e_amd64", + "product_id": "odf4/odf-rhel9-operator@sha256:d52027bc58ef6a9a4a0b1b47abb4fb2651db958da5ffb4931c82cebb0838782e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/odf-rhel9-operator@sha256:d52027bc58ef6a9a4a0b1b47abb4fb2651db958da5ffb4931c82cebb0838782e?arch=amd64&repository_url=registry.redhat.io/odf4/odf-rhel9-operator&tag=v4.14.0-18" + } + } + }, + { + "category": "product_version", + "name": "odf4/odr-cluster-operator-bundle@sha256:c11e131a187ff58e4143de82e9e81164359c072ecaa953ba851e2f3ce973e8c0_amd64", + "product": { + "name": "odf4/odr-cluster-operator-bundle@sha256:c11e131a187ff58e4143de82e9e81164359c072ecaa953ba851e2f3ce973e8c0_amd64", + "product_id": "odf4/odr-cluster-operator-bundle@sha256:c11e131a187ff58e4143de82e9e81164359c072ecaa953ba851e2f3ce973e8c0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/odr-cluster-operator-bundle@sha256:c11e131a187ff58e4143de82e9e81164359c072ecaa953ba851e2f3ce973e8c0?arch=amd64&repository_url=registry.redhat.io/odf4/odr-cluster-operator-bundle&tag=v4.14.0-161" + } + } + }, + { + "category": "product_version", + "name": "odf4/odr-hub-operator-bundle@sha256:50ff517fcb19def59ed5599de7ca1aadfc45f8506e605df0a6f7b28a5352e1d7_amd64", + "product": { + "name": "odf4/odr-hub-operator-bundle@sha256:50ff517fcb19def59ed5599de7ca1aadfc45f8506e605df0a6f7b28a5352e1d7_amd64", + "product_id": "odf4/odr-hub-operator-bundle@sha256:50ff517fcb19def59ed5599de7ca1aadfc45f8506e605df0a6f7b28a5352e1d7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/odr-hub-operator-bundle@sha256:50ff517fcb19def59ed5599de7ca1aadfc45f8506e605df0a6f7b28a5352e1d7?arch=amd64&repository_url=registry.redhat.io/odf4/odr-hub-operator-bundle&tag=v4.14.0-161" + } + } + }, + { + "category": "product_version", + "name": "odf4/odr-rhel9-operator@sha256:b180a6a638ac27696a64a05f59dfe0de59f95bad3ade5d922cb8ee4d13d9e024_amd64", + "product": { + "name": "odf4/odr-rhel9-operator@sha256:b180a6a638ac27696a64a05f59dfe0de59f95bad3ade5d922cb8ee4d13d9e024_amd64", + "product_id": "odf4/odr-rhel9-operator@sha256:b180a6a638ac27696a64a05f59dfe0de59f95bad3ade5d922cb8ee4d13d9e024_amd64", + "product_identification_helper": { + "purl": "pkg:oci/odr-rhel9-operator@sha256:b180a6a638ac27696a64a05f59dfe0de59f95bad3ade5d922cb8ee4d13d9e024?arch=amd64&repository_url=registry.redhat.io/odf4/odr-rhel9-operator&tag=v4.14.0-31" + } + } + }, + { + "category": "product_version", + "name": "odf4/rook-ceph-rhel9-operator@sha256:17aec04a9fbdbe6901a564743d0bdda4080b32571892a3633c63034aa7bc25cd_amd64", + "product": { + "name": "odf4/rook-ceph-rhel9-operator@sha256:17aec04a9fbdbe6901a564743d0bdda4080b32571892a3633c63034aa7bc25cd_amd64", + "product_id": "odf4/rook-ceph-rhel9-operator@sha256:17aec04a9fbdbe6901a564743d0bdda4080b32571892a3633c63034aa7bc25cd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rook-ceph-rhel9-operator@sha256:17aec04a9fbdbe6901a564743d0bdda4080b32571892a3633c63034aa7bc25cd?arch=amd64&repository_url=registry.redhat.io/odf4/rook-ceph-rhel9-operator&tag=v4.14.0-71" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "odf4/mcg-cli-rhel9@sha256:21d8549a1b42e78f04f555d4bf662da649e7411b54491055779859fa4bce2a37_arm64", + "product": { + "name": "odf4/mcg-cli-rhel9@sha256:21d8549a1b42e78f04f555d4bf662da649e7411b54491055779859fa4bce2a37_arm64", + "product_id": "odf4/mcg-cli-rhel9@sha256:21d8549a1b42e78f04f555d4bf662da649e7411b54491055779859fa4bce2a37_arm64", + "product_identification_helper": { + "purl": "pkg:oci/mcg-cli-rhel9@sha256:21d8549a1b42e78f04f555d4bf662da649e7411b54491055779859fa4bce2a37?arch=arm64&repository_url=registry.redhat.io/odf4/mcg-cli-rhel9&tag=v4.14.0-44" + } + } + }, + { + "category": "product_version", + "name": "odf4/mcg-core-rhel9@sha256:61db6bf89d17320cb1de31b07905a67db6418b8bd5da3b28c105c30c673a69ed_arm64", + "product": { + "name": "odf4/mcg-core-rhel9@sha256:61db6bf89d17320cb1de31b07905a67db6418b8bd5da3b28c105c30c673a69ed_arm64", + "product_id": "odf4/mcg-core-rhel9@sha256:61db6bf89d17320cb1de31b07905a67db6418b8bd5da3b28c105c30c673a69ed_arm64", + "product_identification_helper": { + "purl": "pkg:oci/mcg-core-rhel9@sha256:61db6bf89d17320cb1de31b07905a67db6418b8bd5da3b28c105c30c673a69ed?arch=arm64&repository_url=registry.redhat.io/odf4/mcg-core-rhel9&tag=v4.14.0-63" + } + } + }, + { + "category": "product_version", + "name": "odf4/mcg-rhel9-operator@sha256:5149a129f3caf1f0e93ce490df3e4bbab4d842cabd85556970349c81d1de6970_arm64", + "product": { + "name": "odf4/mcg-rhel9-operator@sha256:5149a129f3caf1f0e93ce490df3e4bbab4d842cabd85556970349c81d1de6970_arm64", + "product_id": "odf4/mcg-rhel9-operator@sha256:5149a129f3caf1f0e93ce490df3e4bbab4d842cabd85556970349c81d1de6970_arm64", + "product_identification_helper": { + "purl": "pkg:oci/mcg-rhel9-operator@sha256:5149a129f3caf1f0e93ce490df3e4bbab4d842cabd85556970349c81d1de6970?arch=arm64&repository_url=registry.redhat.io/odf4/mcg-rhel9-operator&tag=v4.14.0-43" + } + } + }, + { + "category": "product_version", + "name": "odf4/ocs-client-rhel9-operator@sha256:bed6367b1913369a99f1fc690df25a592b86d1fce68e2b86ae71ecbea7098952_arm64", + "product": { + "name": "odf4/ocs-client-rhel9-operator@sha256:bed6367b1913369a99f1fc690df25a592b86d1fce68e2b86ae71ecbea7098952_arm64", + "product_id": "odf4/ocs-client-rhel9-operator@sha256:bed6367b1913369a99f1fc690df25a592b86d1fce68e2b86ae71ecbea7098952_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ocs-client-rhel9-operator@sha256:bed6367b1913369a99f1fc690df25a592b86d1fce68e2b86ae71ecbea7098952?arch=arm64&repository_url=registry.redhat.io/odf4/ocs-client-rhel9-operator&tag=v4.14.0-14" + } + } + }, + { + "category": "product_version", + "name": "odf4/ocs-rhel9-operator@sha256:e5d0c68cad94e04ad024ab91c05c04606b166d30e2c81a5414b4517195878bc3_arm64", + "product": { + "name": "odf4/ocs-rhel9-operator@sha256:e5d0c68cad94e04ad024ab91c05c04606b166d30e2c81a5414b4517195878bc3_arm64", + "product_id": "odf4/ocs-rhel9-operator@sha256:e5d0c68cad94e04ad024ab91c05c04606b166d30e2c81a5414b4517195878bc3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ocs-rhel9-operator@sha256:e5d0c68cad94e04ad024ab91c05c04606b166d30e2c81a5414b4517195878bc3?arch=arm64&repository_url=registry.redhat.io/odf4/ocs-rhel9-operator&tag=v4.14.0-67" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-csi-addons-rhel9-operator@sha256:fd167d95c42008058f7b7dc10f57ab835af7bef956599284daab4d95923a687b_arm64", + "product": { + "name": "odf4/odf-csi-addons-rhel9-operator@sha256:fd167d95c42008058f7b7dc10f57ab835af7bef956599284daab4d95923a687b_arm64", + "product_id": "odf4/odf-csi-addons-rhel9-operator@sha256:fd167d95c42008058f7b7dc10f57ab835af7bef956599284daab4d95923a687b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/odf-csi-addons-rhel9-operator@sha256:fd167d95c42008058f7b7dc10f57ab835af7bef956599284daab4d95923a687b?arch=arm64&repository_url=registry.redhat.io/odf4/odf-csi-addons-rhel9-operator&tag=v4.14.0-14" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-csi-addons-sidecar-rhel9@sha256:0b1bec21a84065d144bdcfc433adccbc93038bd2a5c8a8164c50004138dbcb9f_arm64", + "product": { + "name": "odf4/odf-csi-addons-sidecar-rhel9@sha256:0b1bec21a84065d144bdcfc433adccbc93038bd2a5c8a8164c50004138dbcb9f_arm64", + "product_id": "odf4/odf-csi-addons-sidecar-rhel9@sha256:0b1bec21a84065d144bdcfc433adccbc93038bd2a5c8a8164c50004138dbcb9f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/odf-csi-addons-sidecar-rhel9@sha256:0b1bec21a84065d144bdcfc433adccbc93038bd2a5c8a8164c50004138dbcb9f?arch=arm64&repository_url=registry.redhat.io/odf4/odf-csi-addons-sidecar-rhel9&tag=v4.14.0-13" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-multicluster-rhel9-operator@sha256:1db819006c96804631357c3415b6ddf2a1c7adc6658d5f2a95dd686331893af2_arm64", + "product": { + "name": "odf4/odf-multicluster-rhel9-operator@sha256:1db819006c96804631357c3415b6ddf2a1c7adc6658d5f2a95dd686331893af2_arm64", + "product_id": "odf4/odf-multicluster-rhel9-operator@sha256:1db819006c96804631357c3415b6ddf2a1c7adc6658d5f2a95dd686331893af2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/odf-multicluster-rhel9-operator@sha256:1db819006c96804631357c3415b6ddf2a1c7adc6658d5f2a95dd686331893af2?arch=arm64&repository_url=registry.redhat.io/odf4/odf-multicluster-rhel9-operator&tag=v4.14.0-16" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-must-gather-rhel9@sha256:8c5171517378cf3d1ce8ff5526dfed9cd38c13691e425bb59c5f0ddca83c3984_arm64", + "product": { + "name": "odf4/odf-must-gather-rhel9@sha256:8c5171517378cf3d1ce8ff5526dfed9cd38c13691e425bb59c5f0ddca83c3984_arm64", + "product_id": "odf4/odf-must-gather-rhel9@sha256:8c5171517378cf3d1ce8ff5526dfed9cd38c13691e425bb59c5f0ddca83c3984_arm64", + "product_identification_helper": { + "purl": "pkg:oci/odf-must-gather-rhel9@sha256:8c5171517378cf3d1ce8ff5526dfed9cd38c13691e425bb59c5f0ddca83c3984?arch=arm64&repository_url=registry.redhat.io/odf4/odf-must-gather-rhel9&tag=v4.14.0-29" + } + } + }, + { + "category": "product_version", + "name": "odf4/odf-rhel9-operator@sha256:7bb21477b9fc520dafb79bdf074b29fc2ee34dd66ea936ed828d9cd54298afa2_arm64", + "product": { + "name": "odf4/odf-rhel9-operator@sha256:7bb21477b9fc520dafb79bdf074b29fc2ee34dd66ea936ed828d9cd54298afa2_arm64", + "product_id": "odf4/odf-rhel9-operator@sha256:7bb21477b9fc520dafb79bdf074b29fc2ee34dd66ea936ed828d9cd54298afa2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/odf-rhel9-operator@sha256:7bb21477b9fc520dafb79bdf074b29fc2ee34dd66ea936ed828d9cd54298afa2?arch=arm64&repository_url=registry.redhat.io/odf4/odf-rhel9-operator&tag=v4.14.0-18" + } + } + }, + { + "category": "product_version", + "name": "odf4/odr-rhel9-operator@sha256:6168ffb958078d292d77f6e6331d1875e248c053b05fc87c102cf24912540e80_arm64", + "product": { + "name": "odf4/odr-rhel9-operator@sha256:6168ffb958078d292d77f6e6331d1875e248c053b05fc87c102cf24912540e80_arm64", + "product_id": "odf4/odr-rhel9-operator@sha256:6168ffb958078d292d77f6e6331d1875e248c053b05fc87c102cf24912540e80_arm64", + "product_identification_helper": { + "purl": "pkg:oci/odr-rhel9-operator@sha256:6168ffb958078d292d77f6e6331d1875e248c053b05fc87c102cf24912540e80?arch=arm64&repository_url=registry.redhat.io/odf4/odr-rhel9-operator&tag=v4.14.0-31" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "container-native-virtualization/bridge-marker-rhel9@sha256:1148cc4caaf2a5eb2a39dc8255f209522fcbd206567af25508c4bce1884b44cd_amd64", + "product": { + "name": "container-native-virtualization/bridge-marker-rhel9@sha256:1148cc4caaf2a5eb2a39dc8255f209522fcbd206567af25508c4bce1884b44cd_amd64", + "product_id": "container-native-virtualization/bridge-marker-rhel9@sha256:1148cc4caaf2a5eb2a39dc8255f209522fcbd206567af25508c4bce1884b44cd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/bridge-marker-rhel9@sha256:1148cc4caaf2a5eb2a39dc8255f209522fcbd206567af25508c4bce1884b44cd?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/bridge-marker-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/cluster-network-addons-operator-rhel9@sha256:d4164a252eaac07f5f0d34a54189e894bcfe92045dfda7ea3e93c0e836be9b9e_amd64", + "product": { + "name": "container-native-virtualization/cluster-network-addons-operator-rhel9@sha256:d4164a252eaac07f5f0d34a54189e894bcfe92045dfda7ea3e93c0e836be9b9e_amd64", + "product_id": "container-native-virtualization/cluster-network-addons-operator-rhel9@sha256:d4164a252eaac07f5f0d34a54189e894bcfe92045dfda7ea3e93c0e836be9b9e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-network-addons-operator-rhel9@sha256:d4164a252eaac07f5f0d34a54189e894bcfe92045dfda7ea3e93c0e836be9b9e?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/cluster-network-addons-operator-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/cnv-containernetworking-plugins-rhel9@sha256:55cc13ec852d0c6819b0be7592b12460c4256f64f5fcba846e1875738868b421_amd64", + "product": { + "name": "container-native-virtualization/cnv-containernetworking-plugins-rhel9@sha256:55cc13ec852d0c6819b0be7592b12460c4256f64f5fcba846e1875738868b421_amd64", + "product_id": "container-native-virtualization/cnv-containernetworking-plugins-rhel9@sha256:55cc13ec852d0c6819b0be7592b12460c4256f64f5fcba846e1875738868b421_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cnv-containernetworking-plugins-rhel9@sha256:55cc13ec852d0c6819b0be7592b12460c4256f64f5fcba846e1875738868b421?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/cnv-containernetworking-plugins-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/cnv-must-gather-rhel9@sha256:f780a050fa4c92d5d3479d1092dd7973b06e17ef804bb8cee0c7168581eebe13_amd64", + "product": { + "name": "container-native-virtualization/cnv-must-gather-rhel9@sha256:f780a050fa4c92d5d3479d1092dd7973b06e17ef804bb8cee0c7168581eebe13_amd64", + "product_id": "container-native-virtualization/cnv-must-gather-rhel9@sha256:f780a050fa4c92d5d3479d1092dd7973b06e17ef804bb8cee0c7168581eebe13_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cnv-must-gather-rhel9@sha256:f780a050fa4c92d5d3479d1092dd7973b06e17ef804bb8cee0c7168581eebe13?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/cnv-must-gather-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hco-bundle-registry-rhel9@sha256:d3cbd39d4c6fb4d3c46b5155a73842827484b4ea9663751882c8e23085bcbf00_amd64", + "product": { + "name": "container-native-virtualization/hco-bundle-registry-rhel9@sha256:d3cbd39d4c6fb4d3c46b5155a73842827484b4ea9663751882c8e23085bcbf00_amd64", + "product_id": "container-native-virtualization/hco-bundle-registry-rhel9@sha256:d3cbd39d4c6fb4d3c46b5155a73842827484b4ea9663751882c8e23085bcbf00_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hco-bundle-registry-rhel9@sha256:d3cbd39d4c6fb4d3c46b5155a73842827484b4ea9663751882c8e23085bcbf00?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hco-bundle-registry-rhel9&tag=v4.14.0.rhel9-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hostpath-csi-driver-rhel9@sha256:23c604deb6d175f03678f20296346cb46c7e0635fc5d7cbf737a035dd556eb0d_amd64", + "product": { + "name": "container-native-virtualization/hostpath-csi-driver-rhel9@sha256:23c604deb6d175f03678f20296346cb46c7e0635fc5d7cbf737a035dd556eb0d_amd64", + "product_id": "container-native-virtualization/hostpath-csi-driver-rhel9@sha256:23c604deb6d175f03678f20296346cb46c7e0635fc5d7cbf737a035dd556eb0d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hostpath-csi-driver-rhel9@sha256:23c604deb6d175f03678f20296346cb46c7e0635fc5d7cbf737a035dd556eb0d?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hostpath-provisioner-operator-rhel9@sha256:82d7a5229c9b23a11c392de2cebab5a3e20b87d92da0a2c93f8aa2f25b5d5f44_amd64", + "product": { + "name": "container-native-virtualization/hostpath-provisioner-operator-rhel9@sha256:82d7a5229c9b23a11c392de2cebab5a3e20b87d92da0a2c93f8aa2f25b5d5f44_amd64", + "product_id": "container-native-virtualization/hostpath-provisioner-operator-rhel9@sha256:82d7a5229c9b23a11c392de2cebab5a3e20b87d92da0a2c93f8aa2f25b5d5f44_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hostpath-provisioner-operator-rhel9@sha256:82d7a5229c9b23a11c392de2cebab5a3e20b87d92da0a2c93f8aa2f25b5d5f44?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hostpath-provisioner-operator-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hostpath-provisioner-rhel9@sha256:5511e156acd677d58698f1511578752ffb74da39c41773817b1a8df6bb3356dd_amd64", + "product": { + "name": "container-native-virtualization/hostpath-provisioner-rhel9@sha256:5511e156acd677d58698f1511578752ffb74da39c41773817b1a8df6bb3356dd_amd64", + "product_id": "container-native-virtualization/hostpath-provisioner-rhel9@sha256:5511e156acd677d58698f1511578752ffb74da39c41773817b1a8df6bb3356dd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hostpath-provisioner-rhel9@sha256:5511e156acd677d58698f1511578752ffb74da39c41773817b1a8df6bb3356dd?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hyperconverged-cluster-operator-rhel9@sha256:f0b69c20e4d42a53d1b9a68dd90e919487d9d047d2186ad8ea217b8e29884ae9_amd64", + "product": { + "name": "container-native-virtualization/hyperconverged-cluster-operator-rhel9@sha256:f0b69c20e4d42a53d1b9a68dd90e919487d9d047d2186ad8ea217b8e29884ae9_amd64", + "product_id": "container-native-virtualization/hyperconverged-cluster-operator-rhel9@sha256:f0b69c20e4d42a53d1b9a68dd90e919487d9d047d2186ad8ea217b8e29884ae9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hyperconverged-cluster-operator-rhel9@sha256:f0b69c20e4d42a53d1b9a68dd90e919487d9d047d2186ad8ea217b8e29884ae9?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hyperconverged-cluster-operator-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hyperconverged-cluster-webhook-rhel9@sha256:46d6153c2da86702d06701c5c95e36bb06df03d982771d6791c92c559664bac7_amd64", + "product": { + "name": "container-native-virtualization/hyperconverged-cluster-webhook-rhel9@sha256:46d6153c2da86702d06701c5c95e36bb06df03d982771d6791c92c559664bac7_amd64", + "product_id": "container-native-virtualization/hyperconverged-cluster-webhook-rhel9@sha256:46d6153c2da86702d06701c5c95e36bb06df03d982771d6791c92c559664bac7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hyperconverged-cluster-webhook-rhel9@sha256:46d6153c2da86702d06701c5c95e36bb06df03d982771d6791c92c559664bac7?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hyperconverged-cluster-webhook-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubemacpool-rhel9@sha256:33a0e10a204f44c05169e78a852a8916d5c1cf4e7268b66a661795183d19aa40_amd64", + "product": { + "name": "container-native-virtualization/kubemacpool-rhel9@sha256:33a0e10a204f44c05169e78a852a8916d5c1cf4e7268b66a661795183d19aa40_amd64", + "product_id": "container-native-virtualization/kubemacpool-rhel9@sha256:33a0e10a204f44c05169e78a852a8916d5c1cf4e7268b66a661795183d19aa40_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubemacpool-rhel9@sha256:33a0e10a204f44c05169e78a852a8916d5c1cf4e7268b66a661795183d19aa40?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubemacpool-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubesecondarydns-rhel9@sha256:6421fe0e7601c9d0ba2df1af37e584e9c623fb9956809cf5de35273497574f83_amd64", + "product": { + "name": "container-native-virtualization/kubesecondarydns-rhel9@sha256:6421fe0e7601c9d0ba2df1af37e584e9c623fb9956809cf5de35273497574f83_amd64", + "product_id": "container-native-virtualization/kubesecondarydns-rhel9@sha256:6421fe0e7601c9d0ba2df1af37e584e9c623fb9956809cf5de35273497574f83_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubesecondarydns-rhel9@sha256:6421fe0e7601c9d0ba2df1af37e584e9c623fb9956809cf5de35273497574f83?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubesecondarydns-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-apiserver-proxy-rhel9@sha256:ab7992cc6f352add0162556c33516425e61058e90caa0d7f776061bd4fddafdc_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-apiserver-proxy-rhel9@sha256:ab7992cc6f352add0162556c33516425e61058e90caa0d7f776061bd4fddafdc_amd64", + "product_id": "container-native-virtualization/kubevirt-apiserver-proxy-rhel9@sha256:ab7992cc6f352add0162556c33516425e61058e90caa0d7f776061bd4fddafdc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-apiserver-proxy-rhel9@sha256:ab7992cc6f352add0162556c33516425e61058e90caa0d7f776061bd4fddafdc?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-apiserver-proxy-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-console-plugin-rhel9@sha256:5ff50d5e496d9fba3996430eaa2584b7522307753f61438081f7718a905f8985_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-console-plugin-rhel9@sha256:5ff50d5e496d9fba3996430eaa2584b7522307753f61438081f7718a905f8985_amd64", + "product_id": "container-native-virtualization/kubevirt-console-plugin-rhel9@sha256:5ff50d5e496d9fba3996430eaa2584b7522307753f61438081f7718a905f8985_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-console-plugin-rhel9@sha256:5ff50d5e496d9fba3996430eaa2584b7522307753f61438081f7718a905f8985?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-console-plugin-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-dpdk-checkup-rhel9@sha256:1ebeabc2e5712960eed6a19cf56e4610de875bf718576a53ad3885c373a419d2_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-dpdk-checkup-rhel9@sha256:1ebeabc2e5712960eed6a19cf56e4610de875bf718576a53ad3885c373a419d2_amd64", + "product_id": "container-native-virtualization/kubevirt-dpdk-checkup-rhel9@sha256:1ebeabc2e5712960eed6a19cf56e4610de875bf718576a53ad3885c373a419d2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-dpdk-checkup-rhel9@sha256:1ebeabc2e5712960eed6a19cf56e4610de875bf718576a53ad3885c373a419d2?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-dpdk-checkup-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-ssp-operator-rhel9@sha256:a63b774dc20d44862587bef79557e760b5e818bf1c6f1ff9dda5580f282e73cf_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-ssp-operator-rhel9@sha256:a63b774dc20d44862587bef79557e760b5e818bf1c6f1ff9dda5580f282e73cf_amd64", + "product_id": "container-native-virtualization/kubevirt-ssp-operator-rhel9@sha256:a63b774dc20d44862587bef79557e760b5e818bf1c6f1ff9dda5580f282e73cf_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-ssp-operator-rhel9@sha256:a63b774dc20d44862587bef79557e760b5e818bf1c6f1ff9dda5580f282e73cf?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-ssp-operator-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:2be1aed89159d415137937dcd205e0acd06261042e70148574596ec731bd1a89_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:2be1aed89159d415137937dcd205e0acd06261042e70148574596ec731bd1a89_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:2be1aed89159d415137937dcd205e0acd06261042e70148574596ec731bd1a89_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:2be1aed89159d415137937dcd205e0acd06261042e70148574596ec731bd1a89?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:a01afbb23a956f7ae4bd0af7ea68f43d6f08cc151e1f863a90991f6b6ac8fff2_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:a01afbb23a956f7ae4bd0af7ea68f43d6f08cc151e1f863a90991f6b6ac8fff2_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:a01afbb23a956f7ae4bd0af7ea68f43d6f08cc151e1f863a90991f6b6ac8fff2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:a01afbb23a956f7ae4bd0af7ea68f43d6f08cc151e1f863a90991f6b6ac8fff2?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-template-validator-rhel9@sha256:553e4f6615880542cef2fc04ab26f1b440f4c1e6bb71ef68e61fce3ba3120c94_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-template-validator-rhel9@sha256:553e4f6615880542cef2fc04ab26f1b440f4c1e6bb71ef68e61fce3ba3120c94_amd64", + "product_id": "container-native-virtualization/kubevirt-template-validator-rhel9@sha256:553e4f6615880542cef2fc04ab26f1b440f4c1e6bb71ef68e61fce3ba3120c94_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-template-validator-rhel9@sha256:553e4f6615880542cef2fc04ab26f1b440f4c1e6bb71ef68e61fce3ba3120c94?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-template-validator-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/libguestfs-tools-rhel9@sha256:06b9374b8ce3034068f364ec84d3410c9e662dbdcb6363dc2cfd595e2a48312c_amd64", + "product": { + "name": "container-native-virtualization/libguestfs-tools-rhel9@sha256:06b9374b8ce3034068f364ec84d3410c9e662dbdcb6363dc2cfd595e2a48312c_amd64", + "product_id": "container-native-virtualization/libguestfs-tools-rhel9@sha256:06b9374b8ce3034068f364ec84d3410c9e662dbdcb6363dc2cfd595e2a48312c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/libguestfs-tools-rhel9@sha256:06b9374b8ce3034068f364ec84d3410c9e662dbdcb6363dc2cfd595e2a48312c?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/libguestfs-tools-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/mtq-controller-rhel9@sha256:8463aba4cf1721a44406b3ab319be2b21e78380ff0c161fc7829faed4b601df0_amd64", + "product": { + "name": "container-native-virtualization/mtq-controller-rhel9@sha256:8463aba4cf1721a44406b3ab319be2b21e78380ff0c161fc7829faed4b601df0_amd64", + "product_id": "container-native-virtualization/mtq-controller-rhel9@sha256:8463aba4cf1721a44406b3ab319be2b21e78380ff0c161fc7829faed4b601df0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtq-controller-rhel9@sha256:8463aba4cf1721a44406b3ab319be2b21e78380ff0c161fc7829faed4b601df0?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/mtq-controller-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/mtq-lock-server-rhel9@sha256:3f97d7ef78c1ee90cbb5cafa3aa464cd8e9e07e2eb9183d980630e66bde2b4e7_amd64", + "product": { + "name": "container-native-virtualization/mtq-lock-server-rhel9@sha256:3f97d7ef78c1ee90cbb5cafa3aa464cd8e9e07e2eb9183d980630e66bde2b4e7_amd64", + "product_id": "container-native-virtualization/mtq-lock-server-rhel9@sha256:3f97d7ef78c1ee90cbb5cafa3aa464cd8e9e07e2eb9183d980630e66bde2b4e7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtq-lock-server-rhel9@sha256:3f97d7ef78c1ee90cbb5cafa3aa464cd8e9e07e2eb9183d980630e66bde2b4e7?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/mtq-lock-server-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/mtq-operator-rhel9@sha256:21902d10de6b84da9dbec1acf074045cfa60b44cd5c29f5552a326ef4794fede_amd64", + "product": { + "name": "container-native-virtualization/mtq-operator-rhel9@sha256:21902d10de6b84da9dbec1acf074045cfa60b44cd5c29f5552a326ef4794fede_amd64", + "product_id": "container-native-virtualization/mtq-operator-rhel9@sha256:21902d10de6b84da9dbec1acf074045cfa60b44cd5c29f5552a326ef4794fede_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtq-operator-rhel9@sha256:21902d10de6b84da9dbec1acf074045cfa60b44cd5c29f5552a326ef4794fede?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/mtq-operator-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/multus-dynamic-networks-rhel9@sha256:10c34fff5ef3e3e6aa9b5700151a1b0fc85bb4d2dad54667a99af4270fe387ad_amd64", + "product": { + "name": "container-native-virtualization/multus-dynamic-networks-rhel9@sha256:10c34fff5ef3e3e6aa9b5700151a1b0fc85bb4d2dad54667a99af4270fe387ad_amd64", + "product_id": "container-native-virtualization/multus-dynamic-networks-rhel9@sha256:10c34fff5ef3e3e6aa9b5700151a1b0fc85bb4d2dad54667a99af4270fe387ad_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multus-dynamic-networks-rhel9@sha256:10c34fff5ef3e3e6aa9b5700151a1b0fc85bb4d2dad54667a99af4270fe387ad?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/multus-dynamic-networks-rhel9&tag=v4.14.0-34" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/ovs-cni-plugin-rhel9@sha256:24e288ad70e7d6cba5109a9a8e79ef6a97da84cd01b66b31a8a12ba63ca901c4_amd64", + "product": { + "name": "container-native-virtualization/ovs-cni-plugin-rhel9@sha256:24e288ad70e7d6cba5109a9a8e79ef6a97da84cd01b66b31a8a12ba63ca901c4_amd64", + "product_id": "container-native-virtualization/ovs-cni-plugin-rhel9@sha256:24e288ad70e7d6cba5109a9a8e79ef6a97da84cd01b66b31a8a12ba63ca901c4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ovs-cni-plugin-rhel9@sha256:24e288ad70e7d6cba5109a9a8e79ef6a97da84cd01b66b31a8a12ba63ca901c4?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/ovs-cni-plugin-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/pr-helper-rhel9@sha256:6f7615bd4b6dd71a6154267d20ef8e35f27b39115fc8a54ea94c6f8a402b100e_amd64", + "product": { + "name": "container-native-virtualization/pr-helper-rhel9@sha256:6f7615bd4b6dd71a6154267d20ef8e35f27b39115fc8a54ea94c6f8a402b100e_amd64", + "product_id": "container-native-virtualization/pr-helper-rhel9@sha256:6f7615bd4b6dd71a6154267d20ef8e35f27b39115fc8a54ea94c6f8a402b100e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pr-helper-rhel9@sha256:6f7615bd4b6dd71a6154267d20ef8e35f27b39115fc8a54ea94c6f8a402b100e?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/pr-helper-rhel9&tag=v4.14.0-395" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-api-rhel9@sha256:dabac6c5ed363aec8fd031695eac4288c9aba686b82f7df59d89bf6ac24ea1f2_amd64", + "product": { + "name": "container-native-virtualization/virt-api-rhel9@sha256:dabac6c5ed363aec8fd031695eac4288c9aba686b82f7df59d89bf6ac24ea1f2_amd64", + "product_id": "container-native-virtualization/virt-api-rhel9@sha256:dabac6c5ed363aec8fd031695eac4288c9aba686b82f7df59d89bf6ac24ea1f2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-api-rhel9@sha256:dabac6c5ed363aec8fd031695eac4288c9aba686b82f7df59d89bf6ac24ea1f2?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-api-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-artifacts-server-rhel9@sha256:e177d1528ea5d6ee5f5f0db7c4e93ed4482f99c821889559808a64c4c2287ac9_amd64", + "product": { + "name": "container-native-virtualization/virt-artifacts-server-rhel9@sha256:e177d1528ea5d6ee5f5f0db7c4e93ed4482f99c821889559808a64c4c2287ac9_amd64", + "product_id": "container-native-virtualization/virt-artifacts-server-rhel9@sha256:e177d1528ea5d6ee5f5f0db7c4e93ed4482f99c821889559808a64c4c2287ac9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-artifacts-server-rhel9@sha256:e177d1528ea5d6ee5f5f0db7c4e93ed4482f99c821889559808a64c4c2287ac9?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-artifacts-server-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-apiserver-rhel9@sha256:9985bb428bc69ebb2c412e6abc91718208d192c1ca2fa820e2d17f42e3e43252_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-apiserver-rhel9@sha256:9985bb428bc69ebb2c412e6abc91718208d192c1ca2fa820e2d17f42e3e43252_amd64", + "product_id": "container-native-virtualization/virt-cdi-apiserver-rhel9@sha256:9985bb428bc69ebb2c412e6abc91718208d192c1ca2fa820e2d17f42e3e43252_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-apiserver-rhel9@sha256:9985bb428bc69ebb2c412e6abc91718208d192c1ca2fa820e2d17f42e3e43252?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-apiserver-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-cloner-rhel9@sha256:856dfedb2a4432a14271c2a35c2c12ea4d86f946866cf27b176f775a8c11eae8_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-cloner-rhel9@sha256:856dfedb2a4432a14271c2a35c2c12ea4d86f946866cf27b176f775a8c11eae8_amd64", + "product_id": "container-native-virtualization/virt-cdi-cloner-rhel9@sha256:856dfedb2a4432a14271c2a35c2c12ea4d86f946866cf27b176f775a8c11eae8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-cloner-rhel9@sha256:856dfedb2a4432a14271c2a35c2c12ea4d86f946866cf27b176f775a8c11eae8?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-cloner-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-controller-rhel9@sha256:690caab68784861492af8ba0106eae24f90d51800d3dd0d46d5a27ea8436bf80_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-controller-rhel9@sha256:690caab68784861492af8ba0106eae24f90d51800d3dd0d46d5a27ea8436bf80_amd64", + "product_id": "container-native-virtualization/virt-cdi-controller-rhel9@sha256:690caab68784861492af8ba0106eae24f90d51800d3dd0d46d5a27ea8436bf80_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-controller-rhel9@sha256:690caab68784861492af8ba0106eae24f90d51800d3dd0d46d5a27ea8436bf80?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-controller-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-importer-rhel9@sha256:2aa9cc79fc71dc442fa5cf0268f2ca94ec2fb73717aff18b64ff6b85f59e2b0f_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-importer-rhel9@sha256:2aa9cc79fc71dc442fa5cf0268f2ca94ec2fb73717aff18b64ff6b85f59e2b0f_amd64", + "product_id": "container-native-virtualization/virt-cdi-importer-rhel9@sha256:2aa9cc79fc71dc442fa5cf0268f2ca94ec2fb73717aff18b64ff6b85f59e2b0f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-importer-rhel9@sha256:2aa9cc79fc71dc442fa5cf0268f2ca94ec2fb73717aff18b64ff6b85f59e2b0f?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-importer-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-operator-rhel9@sha256:f614b289dc70fd7c427816182233e3a35349df27563d2bcfedb7543b6ae24e9c_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-operator-rhel9@sha256:f614b289dc70fd7c427816182233e3a35349df27563d2bcfedb7543b6ae24e9c_amd64", + "product_id": "container-native-virtualization/virt-cdi-operator-rhel9@sha256:f614b289dc70fd7c427816182233e3a35349df27563d2bcfedb7543b6ae24e9c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-operator-rhel9@sha256:f614b289dc70fd7c427816182233e3a35349df27563d2bcfedb7543b6ae24e9c?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-operator-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-uploadproxy-rhel9@sha256:6701a59bdac292d3e26d8ce02bab93b559d520fcfceea6ce5d6ae4cc847a7a91_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-uploadproxy-rhel9@sha256:6701a59bdac292d3e26d8ce02bab93b559d520fcfceea6ce5d6ae4cc847a7a91_amd64", + "product_id": "container-native-virtualization/virt-cdi-uploadproxy-rhel9@sha256:6701a59bdac292d3e26d8ce02bab93b559d520fcfceea6ce5d6ae4cc847a7a91_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-uploadproxy-rhel9@sha256:6701a59bdac292d3e26d8ce02bab93b559d520fcfceea6ce5d6ae4cc847a7a91?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-uploadproxy-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-uploadserver-rhel9@sha256:7d20c993d3f974d1523812b7147eb24c1ac7aaa6d15bc9a7bd2a087bb14ef93c_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-uploadserver-rhel9@sha256:7d20c993d3f974d1523812b7147eb24c1ac7aaa6d15bc9a7bd2a087bb14ef93c_amd64", + "product_id": "container-native-virtualization/virt-cdi-uploadserver-rhel9@sha256:7d20c993d3f974d1523812b7147eb24c1ac7aaa6d15bc9a7bd2a087bb14ef93c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-uploadserver-rhel9@sha256:7d20c993d3f974d1523812b7147eb24c1ac7aaa6d15bc9a7bd2a087bb14ef93c?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-uploadserver-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-controller-rhel9@sha256:e8119a7de44ca6d83a6d56bcde9283c69e664f24b230dbd8f894408cf0e7a8f8_amd64", + "product": { + "name": "container-native-virtualization/virt-controller-rhel9@sha256:e8119a7de44ca6d83a6d56bcde9283c69e664f24b230dbd8f894408cf0e7a8f8_amd64", + "product_id": "container-native-virtualization/virt-controller-rhel9@sha256:e8119a7de44ca6d83a6d56bcde9283c69e664f24b230dbd8f894408cf0e7a8f8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-controller-rhel9@sha256:e8119a7de44ca6d83a6d56bcde9283c69e664f24b230dbd8f894408cf0e7a8f8?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-controller-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-exportproxy-rhel9@sha256:52918efebc898b114cb630130e019fe16a2656d1ad95f27d83e52ea7a08036df_amd64", + "product": { + "name": "container-native-virtualization/virt-exportproxy-rhel9@sha256:52918efebc898b114cb630130e019fe16a2656d1ad95f27d83e52ea7a08036df_amd64", + "product_id": "container-native-virtualization/virt-exportproxy-rhel9@sha256:52918efebc898b114cb630130e019fe16a2656d1ad95f27d83e52ea7a08036df_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-exportproxy-rhel9@sha256:52918efebc898b114cb630130e019fe16a2656d1ad95f27d83e52ea7a08036df?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-exportproxy-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-exportserver-rhel9@sha256:b0945c760d7d41840911cd03d0fac101385aba33f1978b47b14d6c9e60b3df4d_amd64", + "product": { + "name": "container-native-virtualization/virt-exportserver-rhel9@sha256:b0945c760d7d41840911cd03d0fac101385aba33f1978b47b14d6c9e60b3df4d_amd64", + "product_id": "container-native-virtualization/virt-exportserver-rhel9@sha256:b0945c760d7d41840911cd03d0fac101385aba33f1978b47b14d6c9e60b3df4d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-exportserver-rhel9@sha256:b0945c760d7d41840911cd03d0fac101385aba33f1978b47b14d6c9e60b3df4d?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-exportserver-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-handler-rhel9@sha256:63c6ef708aa0c7e939131ad891d565dfda386cbabad8ab31996686b656dc0a55_amd64", + "product": { + "name": "container-native-virtualization/virt-handler-rhel9@sha256:63c6ef708aa0c7e939131ad891d565dfda386cbabad8ab31996686b656dc0a55_amd64", + "product_id": "container-native-virtualization/virt-handler-rhel9@sha256:63c6ef708aa0c7e939131ad891d565dfda386cbabad8ab31996686b656dc0a55_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-handler-rhel9@sha256:63c6ef708aa0c7e939131ad891d565dfda386cbabad8ab31996686b656dc0a55?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-handler-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virtio-win-rhel9@sha256:ce0800b46eddaabb5a726a3e95cf2a3f415931ebc0cded71638e295de6c4c835_amd64", + "product": { + "name": "container-native-virtualization/virtio-win-rhel9@sha256:ce0800b46eddaabb5a726a3e95cf2a3f415931ebc0cded71638e295de6c4c835_amd64", + "product_id": "container-native-virtualization/virtio-win-rhel9@sha256:ce0800b46eddaabb5a726a3e95cf2a3f415931ebc0cded71638e295de6c4c835_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virtio-win-rhel9@sha256:ce0800b46eddaabb5a726a3e95cf2a3f415931ebc0cded71638e295de6c4c835?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virtio-win-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-launcher-rhel9@sha256:34a4485912699707f38d3baef69ce08809c6d32af98a32c22b74d81240ecf444_amd64", + "product": { + "name": "container-native-virtualization/virt-launcher-rhel9@sha256:34a4485912699707f38d3baef69ce08809c6d32af98a32c22b74d81240ecf444_amd64", + "product_id": "container-native-virtualization/virt-launcher-rhel9@sha256:34a4485912699707f38d3baef69ce08809c6d32af98a32c22b74d81240ecf444_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-launcher-rhel9@sha256:34a4485912699707f38d3baef69ce08809c6d32af98a32c22b74d81240ecf444?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-launcher-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-operator-rhel9@sha256:a1f027b1998c32efddc27bfdc84e8825c625511393756795fcaaeb4673a71c18_amd64", + "product": { + "name": "container-native-virtualization/virt-operator-rhel9@sha256:a1f027b1998c32efddc27bfdc84e8825c625511393756795fcaaeb4673a71c18_amd64", + "product_id": "container-native-virtualization/virt-operator-rhel9@sha256:a1f027b1998c32efddc27bfdc84e8825c625511393756795fcaaeb4673a71c18_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-operator-rhel9@sha256:a1f027b1998c32efddc27bfdc84e8825c625511393756795fcaaeb4673a71c18?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-operator-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/vm-console-proxy-rhel9@sha256:19390c64a37e25706fa5cd15df97dd26cb2f89fef96a4bcba481c72177c3b8d0_amd64", + "product": { + "name": "container-native-virtualization/vm-console-proxy-rhel9@sha256:19390c64a37e25706fa5cd15df97dd26cb2f89fef96a4bcba481c72177c3b8d0_amd64", + "product_id": "container-native-virtualization/vm-console-proxy-rhel9@sha256:19390c64a37e25706fa5cd15df97dd26cb2f89fef96a4bcba481c72177c3b8d0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/vm-console-proxy-rhel9@sha256:19390c64a37e25706fa5cd15df97dd26cb2f89fef96a4bcba481c72177c3b8d0?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/vm-console-proxy-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/vm-network-latency-checkup-rhel9@sha256:90a3f832b1c015ed6b5463fbef1c2ecc52b99bb41240b70d859f13c416e45adb_amd64", + "product": { + "name": "container-native-virtualization/vm-network-latency-checkup-rhel9@sha256:90a3f832b1c015ed6b5463fbef1c2ecc52b99bb41240b70d859f13c416e45adb_amd64", + "product_id": "container-native-virtualization/vm-network-latency-checkup-rhel9@sha256:90a3f832b1c015ed6b5463fbef1c2ecc52b99bb41240b70d859f13c416e45adb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/vm-network-latency-checkup-rhel9@sha256:90a3f832b1c015ed6b5463fbef1c2ecc52b99bb41240b70d859f13c416e45adb?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/vm-network-latency-checkup-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "container-native-virtualization/bridge-marker-rhel9@sha256:d3734dfcf14530150900ab1a8055e6a75d96f2e1f8bd0e4530b21315de2dfd3d_arm64", + "product": { + "name": "container-native-virtualization/bridge-marker-rhel9@sha256:d3734dfcf14530150900ab1a8055e6a75d96f2e1f8bd0e4530b21315de2dfd3d_arm64", + "product_id": "container-native-virtualization/bridge-marker-rhel9@sha256:d3734dfcf14530150900ab1a8055e6a75d96f2e1f8bd0e4530b21315de2dfd3d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/bridge-marker-rhel9@sha256:d3734dfcf14530150900ab1a8055e6a75d96f2e1f8bd0e4530b21315de2dfd3d?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/bridge-marker-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/cluster-network-addons-operator-rhel9@sha256:f2fa89f69c3f3a1a57c64975d690e42b4b5c49b92309d29b41b903a50f546fb6_arm64", + "product": { + "name": "container-native-virtualization/cluster-network-addons-operator-rhel9@sha256:f2fa89f69c3f3a1a57c64975d690e42b4b5c49b92309d29b41b903a50f546fb6_arm64", + "product_id": "container-native-virtualization/cluster-network-addons-operator-rhel9@sha256:f2fa89f69c3f3a1a57c64975d690e42b4b5c49b92309d29b41b903a50f546fb6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-network-addons-operator-rhel9@sha256:f2fa89f69c3f3a1a57c64975d690e42b4b5c49b92309d29b41b903a50f546fb6?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/cluster-network-addons-operator-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/cnv-containernetworking-plugins-rhel9@sha256:b2cc636ae0f2a30c04b8fd319b63d7810d49c1945f3a943bec973db3abb8f483_arm64", + "product": { + "name": "container-native-virtualization/cnv-containernetworking-plugins-rhel9@sha256:b2cc636ae0f2a30c04b8fd319b63d7810d49c1945f3a943bec973db3abb8f483_arm64", + "product_id": "container-native-virtualization/cnv-containernetworking-plugins-rhel9@sha256:b2cc636ae0f2a30c04b8fd319b63d7810d49c1945f3a943bec973db3abb8f483_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cnv-containernetworking-plugins-rhel9@sha256:b2cc636ae0f2a30c04b8fd319b63d7810d49c1945f3a943bec973db3abb8f483?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/cnv-containernetworking-plugins-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/cnv-must-gather-rhel9@sha256:2a583fb0a7b1d59f8789787d59b1a17d142024b510b5ad2a95cbac2cdbe2da8c_arm64", + "product": { + "name": "container-native-virtualization/cnv-must-gather-rhel9@sha256:2a583fb0a7b1d59f8789787d59b1a17d142024b510b5ad2a95cbac2cdbe2da8c_arm64", + "product_id": "container-native-virtualization/cnv-must-gather-rhel9@sha256:2a583fb0a7b1d59f8789787d59b1a17d142024b510b5ad2a95cbac2cdbe2da8c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cnv-must-gather-rhel9@sha256:2a583fb0a7b1d59f8789787d59b1a17d142024b510b5ad2a95cbac2cdbe2da8c?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/cnv-must-gather-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hco-bundle-registry-rhel9@sha256:fc33136c9eff3e5d92207ce2c153a152fba46bc2b1927caa4957f0c5015bf440_arm64", + "product": { + "name": "container-native-virtualization/hco-bundle-registry-rhel9@sha256:fc33136c9eff3e5d92207ce2c153a152fba46bc2b1927caa4957f0c5015bf440_arm64", + "product_id": "container-native-virtualization/hco-bundle-registry-rhel9@sha256:fc33136c9eff3e5d92207ce2c153a152fba46bc2b1927caa4957f0c5015bf440_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hco-bundle-registry-rhel9@sha256:fc33136c9eff3e5d92207ce2c153a152fba46bc2b1927caa4957f0c5015bf440?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/hco-bundle-registry-rhel9&tag=v4.14.0.rhel9-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hostpath-csi-driver-rhel9@sha256:8f8d482499a71ff0d2711daeaee7bcaa05e316a003a14b2d119c2358f35de9b9_arm64", + "product": { + "name": "container-native-virtualization/hostpath-csi-driver-rhel9@sha256:8f8d482499a71ff0d2711daeaee7bcaa05e316a003a14b2d119c2358f35de9b9_arm64", + "product_id": "container-native-virtualization/hostpath-csi-driver-rhel9@sha256:8f8d482499a71ff0d2711daeaee7bcaa05e316a003a14b2d119c2358f35de9b9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hostpath-csi-driver-rhel9@sha256:8f8d482499a71ff0d2711daeaee7bcaa05e316a003a14b2d119c2358f35de9b9?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hostpath-provisioner-operator-rhel9@sha256:8d08f900b73b9a409cc9813966ecc6c4a5674bcae247f68375aed2db5523e350_arm64", + "product": { + "name": "container-native-virtualization/hostpath-provisioner-operator-rhel9@sha256:8d08f900b73b9a409cc9813966ecc6c4a5674bcae247f68375aed2db5523e350_arm64", + "product_id": "container-native-virtualization/hostpath-provisioner-operator-rhel9@sha256:8d08f900b73b9a409cc9813966ecc6c4a5674bcae247f68375aed2db5523e350_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hostpath-provisioner-operator-rhel9@sha256:8d08f900b73b9a409cc9813966ecc6c4a5674bcae247f68375aed2db5523e350?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/hostpath-provisioner-operator-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hostpath-provisioner-rhel9@sha256:5e9d32996733067f4dcbab40c9dd4f7dab25f03b985f63a393fbbd52c3de2141_arm64", + "product": { + "name": "container-native-virtualization/hostpath-provisioner-rhel9@sha256:5e9d32996733067f4dcbab40c9dd4f7dab25f03b985f63a393fbbd52c3de2141_arm64", + "product_id": "container-native-virtualization/hostpath-provisioner-rhel9@sha256:5e9d32996733067f4dcbab40c9dd4f7dab25f03b985f63a393fbbd52c3de2141_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hostpath-provisioner-rhel9@sha256:5e9d32996733067f4dcbab40c9dd4f7dab25f03b985f63a393fbbd52c3de2141?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hyperconverged-cluster-operator-rhel9@sha256:02e19daebdfa5ac0bb8d2d9dd99a58c53ba93d9b2f7ac8889d4c3083a68858b4_arm64", + "product": { + "name": "container-native-virtualization/hyperconverged-cluster-operator-rhel9@sha256:02e19daebdfa5ac0bb8d2d9dd99a58c53ba93d9b2f7ac8889d4c3083a68858b4_arm64", + "product_id": "container-native-virtualization/hyperconverged-cluster-operator-rhel9@sha256:02e19daebdfa5ac0bb8d2d9dd99a58c53ba93d9b2f7ac8889d4c3083a68858b4_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hyperconverged-cluster-operator-rhel9@sha256:02e19daebdfa5ac0bb8d2d9dd99a58c53ba93d9b2f7ac8889d4c3083a68858b4?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/hyperconverged-cluster-operator-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hyperconverged-cluster-webhook-rhel9@sha256:61ffc93edbe34fda8103dffb5c910cac8653eec650f4029bfcddedd4a9f1ba74_arm64", + "product": { + "name": "container-native-virtualization/hyperconverged-cluster-webhook-rhel9@sha256:61ffc93edbe34fda8103dffb5c910cac8653eec650f4029bfcddedd4a9f1ba74_arm64", + "product_id": "container-native-virtualization/hyperconverged-cluster-webhook-rhel9@sha256:61ffc93edbe34fda8103dffb5c910cac8653eec650f4029bfcddedd4a9f1ba74_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hyperconverged-cluster-webhook-rhel9@sha256:61ffc93edbe34fda8103dffb5c910cac8653eec650f4029bfcddedd4a9f1ba74?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/hyperconverged-cluster-webhook-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubemacpool-rhel9@sha256:0a0265375b10ff7c60397a5d486b2f48f524af9a57aa9ba7ae3775f1626fe724_arm64", + "product": { + "name": "container-native-virtualization/kubemacpool-rhel9@sha256:0a0265375b10ff7c60397a5d486b2f48f524af9a57aa9ba7ae3775f1626fe724_arm64", + "product_id": "container-native-virtualization/kubemacpool-rhel9@sha256:0a0265375b10ff7c60397a5d486b2f48f524af9a57aa9ba7ae3775f1626fe724_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubemacpool-rhel9@sha256:0a0265375b10ff7c60397a5d486b2f48f524af9a57aa9ba7ae3775f1626fe724?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/kubemacpool-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubesecondarydns-rhel9@sha256:f51800af171fb90a4e613dfafb035dd31c4d20ddc1f49e2c3f9fd1da22f777a4_arm64", + "product": { + "name": "container-native-virtualization/kubesecondarydns-rhel9@sha256:f51800af171fb90a4e613dfafb035dd31c4d20ddc1f49e2c3f9fd1da22f777a4_arm64", + "product_id": "container-native-virtualization/kubesecondarydns-rhel9@sha256:f51800af171fb90a4e613dfafb035dd31c4d20ddc1f49e2c3f9fd1da22f777a4_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubesecondarydns-rhel9@sha256:f51800af171fb90a4e613dfafb035dd31c4d20ddc1f49e2c3f9fd1da22f777a4?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/kubesecondarydns-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-apiserver-proxy-rhel9@sha256:df49bba89e997fbd4d86d6ae199ecaa19304e99556520fab02e710d06fb77a5d_arm64", + "product": { + "name": "container-native-virtualization/kubevirt-apiserver-proxy-rhel9@sha256:df49bba89e997fbd4d86d6ae199ecaa19304e99556520fab02e710d06fb77a5d_arm64", + "product_id": "container-native-virtualization/kubevirt-apiserver-proxy-rhel9@sha256:df49bba89e997fbd4d86d6ae199ecaa19304e99556520fab02e710d06fb77a5d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-apiserver-proxy-rhel9@sha256:df49bba89e997fbd4d86d6ae199ecaa19304e99556520fab02e710d06fb77a5d?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-apiserver-proxy-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-console-plugin-rhel9@sha256:1e08ddf153a2c70f68b8eeb4efbb5c385ac06ef4765012652507e9422c64e4e4_arm64", + "product": { + "name": "container-native-virtualization/kubevirt-console-plugin-rhel9@sha256:1e08ddf153a2c70f68b8eeb4efbb5c385ac06ef4765012652507e9422c64e4e4_arm64", + "product_id": "container-native-virtualization/kubevirt-console-plugin-rhel9@sha256:1e08ddf153a2c70f68b8eeb4efbb5c385ac06ef4765012652507e9422c64e4e4_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-console-plugin-rhel9@sha256:1e08ddf153a2c70f68b8eeb4efbb5c385ac06ef4765012652507e9422c64e4e4?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-console-plugin-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-dpdk-checkup-rhel9@sha256:4ee30e2dabec10b4aa887de5351a0104af178a4746573c51780f36832497cfad_arm64", + "product": { + "name": "container-native-virtualization/kubevirt-dpdk-checkup-rhel9@sha256:4ee30e2dabec10b4aa887de5351a0104af178a4746573c51780f36832497cfad_arm64", + "product_id": "container-native-virtualization/kubevirt-dpdk-checkup-rhel9@sha256:4ee30e2dabec10b4aa887de5351a0104af178a4746573c51780f36832497cfad_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-dpdk-checkup-rhel9@sha256:4ee30e2dabec10b4aa887de5351a0104af178a4746573c51780f36832497cfad?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-dpdk-checkup-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-ssp-operator-rhel9@sha256:8461ddc209c27171e837f064962f98b744a36fb7c555c55443e03ee9716e68b9_arm64", + "product": { + "name": "container-native-virtualization/kubevirt-ssp-operator-rhel9@sha256:8461ddc209c27171e837f064962f98b744a36fb7c555c55443e03ee9716e68b9_arm64", + "product_id": "container-native-virtualization/kubevirt-ssp-operator-rhel9@sha256:8461ddc209c27171e837f064962f98b744a36fb7c555c55443e03ee9716e68b9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-ssp-operator-rhel9@sha256:8461ddc209c27171e837f064962f98b744a36fb7c555c55443e03ee9716e68b9?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-ssp-operator-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:eb76194a2bea993d41b7d7101aee422b63bfd2c73a34472cd73e2952cd093600_arm64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:eb76194a2bea993d41b7d7101aee422b63bfd2c73a34472cd73e2952cd093600_arm64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:eb76194a2bea993d41b7d7101aee422b63bfd2c73a34472cd73e2952cd093600_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:eb76194a2bea993d41b7d7101aee422b63bfd2c73a34472cd73e2952cd093600?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:f83181c96bdc3bcdc7dba03eda53e7b3a5b5fb334bae95d326707c95f8eabead_arm64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:f83181c96bdc3bcdc7dba03eda53e7b3a5b5fb334bae95d326707c95f8eabead_arm64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:f83181c96bdc3bcdc7dba03eda53e7b3a5b5fb334bae95d326707c95f8eabead_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:f83181c96bdc3bcdc7dba03eda53e7b3a5b5fb334bae95d326707c95f8eabead?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-template-validator-rhel9@sha256:257c5dcdf7f9728a0d8fc2c77dc4b899b4f196f86e9b1bc769b530846166cc94_arm64", + "product": { + "name": "container-native-virtualization/kubevirt-template-validator-rhel9@sha256:257c5dcdf7f9728a0d8fc2c77dc4b899b4f196f86e9b1bc769b530846166cc94_arm64", + "product_id": "container-native-virtualization/kubevirt-template-validator-rhel9@sha256:257c5dcdf7f9728a0d8fc2c77dc4b899b4f196f86e9b1bc769b530846166cc94_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-template-validator-rhel9@sha256:257c5dcdf7f9728a0d8fc2c77dc4b899b4f196f86e9b1bc769b530846166cc94?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-template-validator-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/libguestfs-tools-rhel9@sha256:f6234e9b138bd07ffdeb858eee9b15508560e02d6b9b2a45a79dfcbb7693bdf4_arm64", + "product": { + "name": "container-native-virtualization/libguestfs-tools-rhel9@sha256:f6234e9b138bd07ffdeb858eee9b15508560e02d6b9b2a45a79dfcbb7693bdf4_arm64", + "product_id": "container-native-virtualization/libguestfs-tools-rhel9@sha256:f6234e9b138bd07ffdeb858eee9b15508560e02d6b9b2a45a79dfcbb7693bdf4_arm64", + "product_identification_helper": { + "purl": "pkg:oci/libguestfs-tools-rhel9@sha256:f6234e9b138bd07ffdeb858eee9b15508560e02d6b9b2a45a79dfcbb7693bdf4?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/libguestfs-tools-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/mtq-controller-rhel9@sha256:2a6757c0d89993c672c53c386c5908e3f2f471da3f787dd8b2a0eafd28084355_arm64", + "product": { + "name": "container-native-virtualization/mtq-controller-rhel9@sha256:2a6757c0d89993c672c53c386c5908e3f2f471da3f787dd8b2a0eafd28084355_arm64", + "product_id": "container-native-virtualization/mtq-controller-rhel9@sha256:2a6757c0d89993c672c53c386c5908e3f2f471da3f787dd8b2a0eafd28084355_arm64", + "product_identification_helper": { + "purl": "pkg:oci/mtq-controller-rhel9@sha256:2a6757c0d89993c672c53c386c5908e3f2f471da3f787dd8b2a0eafd28084355?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/mtq-controller-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/mtq-lock-server-rhel9@sha256:c2c88ad879636f4dbb8cc24ef63796fcf10d940a5648424dd2cbeeb49b6d65d3_arm64", + "product": { + "name": "container-native-virtualization/mtq-lock-server-rhel9@sha256:c2c88ad879636f4dbb8cc24ef63796fcf10d940a5648424dd2cbeeb49b6d65d3_arm64", + "product_id": "container-native-virtualization/mtq-lock-server-rhel9@sha256:c2c88ad879636f4dbb8cc24ef63796fcf10d940a5648424dd2cbeeb49b6d65d3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/mtq-lock-server-rhel9@sha256:c2c88ad879636f4dbb8cc24ef63796fcf10d940a5648424dd2cbeeb49b6d65d3?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/mtq-lock-server-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/mtq-operator-rhel9@sha256:56f8a0a7719625d34f404e73cdce09e19afa67b0a6f9ef956ffbdbbb18d5c050_arm64", + "product": { + "name": "container-native-virtualization/mtq-operator-rhel9@sha256:56f8a0a7719625d34f404e73cdce09e19afa67b0a6f9ef956ffbdbbb18d5c050_arm64", + "product_id": "container-native-virtualization/mtq-operator-rhel9@sha256:56f8a0a7719625d34f404e73cdce09e19afa67b0a6f9ef956ffbdbbb18d5c050_arm64", + "product_identification_helper": { + "purl": "pkg:oci/mtq-operator-rhel9@sha256:56f8a0a7719625d34f404e73cdce09e19afa67b0a6f9ef956ffbdbbb18d5c050?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/mtq-operator-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/multus-dynamic-networks-rhel9@sha256:29c6536be3f6a5076be0f000061af75828ea8d31333ae831e164531108b1e1e0_arm64", + "product": { + "name": "container-native-virtualization/multus-dynamic-networks-rhel9@sha256:29c6536be3f6a5076be0f000061af75828ea8d31333ae831e164531108b1e1e0_arm64", + "product_id": "container-native-virtualization/multus-dynamic-networks-rhel9@sha256:29c6536be3f6a5076be0f000061af75828ea8d31333ae831e164531108b1e1e0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multus-dynamic-networks-rhel9@sha256:29c6536be3f6a5076be0f000061af75828ea8d31333ae831e164531108b1e1e0?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/multus-dynamic-networks-rhel9&tag=v4.14.0-34" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/ovs-cni-plugin-rhel9@sha256:51ec88809134d233e965121f6dab5b2b89db10609ed6d05907d13eaf8425d40d_arm64", + "product": { + "name": "container-native-virtualization/ovs-cni-plugin-rhel9@sha256:51ec88809134d233e965121f6dab5b2b89db10609ed6d05907d13eaf8425d40d_arm64", + "product_id": "container-native-virtualization/ovs-cni-plugin-rhel9@sha256:51ec88809134d233e965121f6dab5b2b89db10609ed6d05907d13eaf8425d40d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ovs-cni-plugin-rhel9@sha256:51ec88809134d233e965121f6dab5b2b89db10609ed6d05907d13eaf8425d40d?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/ovs-cni-plugin-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/pr-helper-rhel9@sha256:97a01a00688705bdef507afbf7caee543140ae90faef070c316022359096f093_arm64", + "product": { + "name": "container-native-virtualization/pr-helper-rhel9@sha256:97a01a00688705bdef507afbf7caee543140ae90faef070c316022359096f093_arm64", + "product_id": "container-native-virtualization/pr-helper-rhel9@sha256:97a01a00688705bdef507afbf7caee543140ae90faef070c316022359096f093_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pr-helper-rhel9@sha256:97a01a00688705bdef507afbf7caee543140ae90faef070c316022359096f093?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/pr-helper-rhel9&tag=v4.14.0-395" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-api-rhel9@sha256:847c69bc5456e1a01fc9f5ae83db44d79b9e03277f2488bc22db0394940edaa0_arm64", + "product": { + "name": "container-native-virtualization/virt-api-rhel9@sha256:847c69bc5456e1a01fc9f5ae83db44d79b9e03277f2488bc22db0394940edaa0_arm64", + "product_id": "container-native-virtualization/virt-api-rhel9@sha256:847c69bc5456e1a01fc9f5ae83db44d79b9e03277f2488bc22db0394940edaa0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-api-rhel9@sha256:847c69bc5456e1a01fc9f5ae83db44d79b9e03277f2488bc22db0394940edaa0?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-api-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-artifacts-server-rhel9@sha256:781f56b1ec0a4120c09b0fb9254f1b9a8184374ee41c9d800f15e3ec6e31131d_arm64", + "product": { + "name": "container-native-virtualization/virt-artifacts-server-rhel9@sha256:781f56b1ec0a4120c09b0fb9254f1b9a8184374ee41c9d800f15e3ec6e31131d_arm64", + "product_id": "container-native-virtualization/virt-artifacts-server-rhel9@sha256:781f56b1ec0a4120c09b0fb9254f1b9a8184374ee41c9d800f15e3ec6e31131d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-artifacts-server-rhel9@sha256:781f56b1ec0a4120c09b0fb9254f1b9a8184374ee41c9d800f15e3ec6e31131d?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-artifacts-server-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-apiserver-rhel9@sha256:f0c2b09e5890611ed795a44d939a5fb3dcc2abe980a87daf257a87235ce3d293_arm64", + "product": { + "name": "container-native-virtualization/virt-cdi-apiserver-rhel9@sha256:f0c2b09e5890611ed795a44d939a5fb3dcc2abe980a87daf257a87235ce3d293_arm64", + "product_id": "container-native-virtualization/virt-cdi-apiserver-rhel9@sha256:f0c2b09e5890611ed795a44d939a5fb3dcc2abe980a87daf257a87235ce3d293_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-apiserver-rhel9@sha256:f0c2b09e5890611ed795a44d939a5fb3dcc2abe980a87daf257a87235ce3d293?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-apiserver-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-cloner-rhel9@sha256:70a7c00ba55fb485b4f34d05b90029a15c779a3666c9026f32558a0666511b98_arm64", + "product": { + "name": "container-native-virtualization/virt-cdi-cloner-rhel9@sha256:70a7c00ba55fb485b4f34d05b90029a15c779a3666c9026f32558a0666511b98_arm64", + "product_id": "container-native-virtualization/virt-cdi-cloner-rhel9@sha256:70a7c00ba55fb485b4f34d05b90029a15c779a3666c9026f32558a0666511b98_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-cloner-rhel9@sha256:70a7c00ba55fb485b4f34d05b90029a15c779a3666c9026f32558a0666511b98?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-cloner-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-controller-rhel9@sha256:261b94951bf9c04509459949611444bf68ddc079083b279d1a058442094bcbf1_arm64", + "product": { + "name": "container-native-virtualization/virt-cdi-controller-rhel9@sha256:261b94951bf9c04509459949611444bf68ddc079083b279d1a058442094bcbf1_arm64", + "product_id": "container-native-virtualization/virt-cdi-controller-rhel9@sha256:261b94951bf9c04509459949611444bf68ddc079083b279d1a058442094bcbf1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-controller-rhel9@sha256:261b94951bf9c04509459949611444bf68ddc079083b279d1a058442094bcbf1?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-controller-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-importer-rhel9@sha256:65360451c9e6ca82c0e165049cca1ac82b5b8b846038dec5be8cb0deb3b60443_arm64", + "product": { + "name": "container-native-virtualization/virt-cdi-importer-rhel9@sha256:65360451c9e6ca82c0e165049cca1ac82b5b8b846038dec5be8cb0deb3b60443_arm64", + "product_id": "container-native-virtualization/virt-cdi-importer-rhel9@sha256:65360451c9e6ca82c0e165049cca1ac82b5b8b846038dec5be8cb0deb3b60443_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-importer-rhel9@sha256:65360451c9e6ca82c0e165049cca1ac82b5b8b846038dec5be8cb0deb3b60443?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-importer-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-operator-rhel9@sha256:c03251c908e51eafec15f0eab701562dd2e5d5a5889e24f1750ff64317efe2eb_arm64", + "product": { + "name": "container-native-virtualization/virt-cdi-operator-rhel9@sha256:c03251c908e51eafec15f0eab701562dd2e5d5a5889e24f1750ff64317efe2eb_arm64", + "product_id": "container-native-virtualization/virt-cdi-operator-rhel9@sha256:c03251c908e51eafec15f0eab701562dd2e5d5a5889e24f1750ff64317efe2eb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-operator-rhel9@sha256:c03251c908e51eafec15f0eab701562dd2e5d5a5889e24f1750ff64317efe2eb?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-operator-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-uploadproxy-rhel9@sha256:c4e28993d68addf246f14b417a3c2f64a836d104ff0af8ced02665b8337016d1_arm64", + "product": { + "name": "container-native-virtualization/virt-cdi-uploadproxy-rhel9@sha256:c4e28993d68addf246f14b417a3c2f64a836d104ff0af8ced02665b8337016d1_arm64", + "product_id": "container-native-virtualization/virt-cdi-uploadproxy-rhel9@sha256:c4e28993d68addf246f14b417a3c2f64a836d104ff0af8ced02665b8337016d1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-uploadproxy-rhel9@sha256:c4e28993d68addf246f14b417a3c2f64a836d104ff0af8ced02665b8337016d1?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-uploadproxy-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-uploadserver-rhel9@sha256:2e0bde18f05f58f896f9badfbbe3a7be5e0a4e3fbcf1df64d5e1cffdccf35c37_arm64", + "product": { + "name": "container-native-virtualization/virt-cdi-uploadserver-rhel9@sha256:2e0bde18f05f58f896f9badfbbe3a7be5e0a4e3fbcf1df64d5e1cffdccf35c37_arm64", + "product_id": "container-native-virtualization/virt-cdi-uploadserver-rhel9@sha256:2e0bde18f05f58f896f9badfbbe3a7be5e0a4e3fbcf1df64d5e1cffdccf35c37_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-uploadserver-rhel9@sha256:2e0bde18f05f58f896f9badfbbe3a7be5e0a4e3fbcf1df64d5e1cffdccf35c37?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-uploadserver-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-controller-rhel9@sha256:146139d2edcc77121bf39770c6550e0bb8c090b826e1cee77c5b963bbc15982c_arm64", + "product": { + "name": "container-native-virtualization/virt-controller-rhel9@sha256:146139d2edcc77121bf39770c6550e0bb8c090b826e1cee77c5b963bbc15982c_arm64", + "product_id": "container-native-virtualization/virt-controller-rhel9@sha256:146139d2edcc77121bf39770c6550e0bb8c090b826e1cee77c5b963bbc15982c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-controller-rhel9@sha256:146139d2edcc77121bf39770c6550e0bb8c090b826e1cee77c5b963bbc15982c?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-controller-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-exportproxy-rhel9@sha256:2568e75702e1e9960d211b6c5c01f994f5d1a3a671a8c5b9e05122c29e421d61_arm64", + "product": { + "name": "container-native-virtualization/virt-exportproxy-rhel9@sha256:2568e75702e1e9960d211b6c5c01f994f5d1a3a671a8c5b9e05122c29e421d61_arm64", + "product_id": "container-native-virtualization/virt-exportproxy-rhel9@sha256:2568e75702e1e9960d211b6c5c01f994f5d1a3a671a8c5b9e05122c29e421d61_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-exportproxy-rhel9@sha256:2568e75702e1e9960d211b6c5c01f994f5d1a3a671a8c5b9e05122c29e421d61?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-exportproxy-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-exportserver-rhel9@sha256:7ae4588e3f7fd06b14c8c2c21bed8f85cb3337b5fc835b6c0dfe027d31ac96db_arm64", + "product": { + "name": "container-native-virtualization/virt-exportserver-rhel9@sha256:7ae4588e3f7fd06b14c8c2c21bed8f85cb3337b5fc835b6c0dfe027d31ac96db_arm64", + "product_id": "container-native-virtualization/virt-exportserver-rhel9@sha256:7ae4588e3f7fd06b14c8c2c21bed8f85cb3337b5fc835b6c0dfe027d31ac96db_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-exportserver-rhel9@sha256:7ae4588e3f7fd06b14c8c2c21bed8f85cb3337b5fc835b6c0dfe027d31ac96db?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-exportserver-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-handler-rhel9@sha256:22fcd5639f656bcd66e6f185094eddfc6bf035c84073f2734f1ab0243ab0966b_arm64", + "product": { + "name": "container-native-virtualization/virt-handler-rhel9@sha256:22fcd5639f656bcd66e6f185094eddfc6bf035c84073f2734f1ab0243ab0966b_arm64", + "product_id": "container-native-virtualization/virt-handler-rhel9@sha256:22fcd5639f656bcd66e6f185094eddfc6bf035c84073f2734f1ab0243ab0966b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-handler-rhel9@sha256:22fcd5639f656bcd66e6f185094eddfc6bf035c84073f2734f1ab0243ab0966b?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-handler-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virtio-win-rhel9@sha256:6cde931727a331e098d4ad977f0fbd0179d65165cff5eb05f5102eabdd2de4c9_arm64", + "product": { + "name": "container-native-virtualization/virtio-win-rhel9@sha256:6cde931727a331e098d4ad977f0fbd0179d65165cff5eb05f5102eabdd2de4c9_arm64", + "product_id": "container-native-virtualization/virtio-win-rhel9@sha256:6cde931727a331e098d4ad977f0fbd0179d65165cff5eb05f5102eabdd2de4c9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virtio-win-rhel9@sha256:6cde931727a331e098d4ad977f0fbd0179d65165cff5eb05f5102eabdd2de4c9?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virtio-win-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-launcher-rhel9@sha256:9a501b20f49acb0668d1a9b102aa52893ca3a1bad75857fd40cedcfa2ccdadfc_arm64", + "product": { + "name": "container-native-virtualization/virt-launcher-rhel9@sha256:9a501b20f49acb0668d1a9b102aa52893ca3a1bad75857fd40cedcfa2ccdadfc_arm64", + "product_id": "container-native-virtualization/virt-launcher-rhel9@sha256:9a501b20f49acb0668d1a9b102aa52893ca3a1bad75857fd40cedcfa2ccdadfc_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-launcher-rhel9@sha256:9a501b20f49acb0668d1a9b102aa52893ca3a1bad75857fd40cedcfa2ccdadfc?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-launcher-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-operator-rhel9@sha256:162e02e3bb111ae8fbb76d6348cd5dd2d521cefdfe5dd4a97c44e0f6c26d3636_arm64", + "product": { + "name": "container-native-virtualization/virt-operator-rhel9@sha256:162e02e3bb111ae8fbb76d6348cd5dd2d521cefdfe5dd4a97c44e0f6c26d3636_arm64", + "product_id": "container-native-virtualization/virt-operator-rhel9@sha256:162e02e3bb111ae8fbb76d6348cd5dd2d521cefdfe5dd4a97c44e0f6c26d3636_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-operator-rhel9@sha256:162e02e3bb111ae8fbb76d6348cd5dd2d521cefdfe5dd4a97c44e0f6c26d3636?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-operator-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/vm-console-proxy-rhel9@sha256:4a81ed581ef3ef081688216a8ee2f4cc78003b25f359b96cdd2853b833183c28_arm64", + "product": { + "name": "container-native-virtualization/vm-console-proxy-rhel9@sha256:4a81ed581ef3ef081688216a8ee2f4cc78003b25f359b96cdd2853b833183c28_arm64", + "product_id": "container-native-virtualization/vm-console-proxy-rhel9@sha256:4a81ed581ef3ef081688216a8ee2f4cc78003b25f359b96cdd2853b833183c28_arm64", + "product_identification_helper": { + "purl": "pkg:oci/vm-console-proxy-rhel9@sha256:4a81ed581ef3ef081688216a8ee2f4cc78003b25f359b96cdd2853b833183c28?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/vm-console-proxy-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/vm-network-latency-checkup-rhel9@sha256:94a316315c532d7e966091008d4e6b92cb1c5ae0fd2d0a32839c1c962c8dd293_arm64", + "product": { + "name": "container-native-virtualization/vm-network-latency-checkup-rhel9@sha256:94a316315c532d7e966091008d4e6b92cb1c5ae0fd2d0a32839c1c962c8dd293_arm64", + "product_id": "container-native-virtualization/vm-network-latency-checkup-rhel9@sha256:94a316315c532d7e966091008d4e6b92cb1c5ae0fd2d0a32839c1c962c8dd293_arm64", + "product_identification_helper": { + "purl": "pkg:oci/vm-network-latency-checkup-rhel9@sha256:94a316315c532d7e966091008d4e6b92cb1c5ae0fd2d0a32839c1c962c8dd293?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/vm-network-latency-checkup-rhel9&tag=v4.14.0-prerelease-2023-113931" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler@sha256:53d7221d26e5778a87667a65d4c88465f16c74722fce49509ac3d6806aacdf75_s390x", + "product": { + "name": "openshift4/ose-cluster-autoscaler@sha256:53d7221d26e5778a87667a65d4c88465f16c74722fce49509ac3d6806aacdf75_s390x", + "product_id": "openshift4/ose-cluster-autoscaler@sha256:53d7221d26e5778a87667a65d4c88465f16c74722fce49509ac3d6806aacdf75_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler@sha256:53d7221d26e5778a87667a65d4c88465f16c74722fce49509ac3d6806aacdf75?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler&tag=v4.11.0-202310200743.p0.gbf6c1c3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-machine-controllers@sha256:4673afc6ecc038c17941229885903df4aa3ad09912f42177813d242560cd4fec_s390x", + "product": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:4673afc6ecc038c17941229885903df4aa3ad09912f42177813d242560cd4fec_s390x", + "product_id": "openshift4/ose-baremetal-machine-controllers@sha256:4673afc6ecc038c17941229885903df4aa3ad09912f42177813d242560cd4fec_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-machine-controllers@sha256:4673afc6ecc038c17941229885903df4aa3ad09912f42177813d242560cd4fec?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers&tag=v4.11.0-202310201443.p0.g1a6f3aa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:054a137c463328f16a7a94539ce63ed128a3bcc08365de648bb8ec3c4e37b50a_s390x", + "product": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:054a137c463328f16a7a94539ce63ed128a3bcc08365de648bb8ec3c4e37b50a_s390x", + "product_id": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:054a137c463328f16a7a94539ce63ed128a3bcc08365de648bb8ec3c4e37b50a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-etcd-rhel8-operator@sha256:054a137c463328f16a7a94539ce63ed128a3bcc08365de648bb8ec3c4e37b50a?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator&tag=v4.11.0-202310200743.p0.g88e55fb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-monitoring-operator@sha256:1ffdabd7ea37686554bba6d5265b72eb43f0cafeb1e7633d683279e62637cffb_s390x", + "product": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:1ffdabd7ea37686554bba6d5265b72eb43f0cafeb1e7633d683279e62637cffb_s390x", + "product_id": "openshift4/ose-cluster-monitoring-operator@sha256:1ffdabd7ea37686554bba6d5265b72eb43f0cafeb1e7633d683279e62637cffb_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-monitoring-operator@sha256:1ffdabd7ea37686554bba6d5265b72eb43f0cafeb1e7633d683279e62637cffb?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-operator&tag=v4.11.0-202310200743.p0.g1b6bec3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-network-operator@sha256:33fdb8fa5fd55108403e5ce28bf132cd148615beaf07f4e2c30d37849688be8a_s390x", + "product": { + "name": "openshift4/ose-cluster-network-operator@sha256:33fdb8fa5fd55108403e5ce28bf132cd148615beaf07f4e2c30d37849688be8a_s390x", + "product_id": "openshift4/ose-cluster-network-operator@sha256:33fdb8fa5fd55108403e5ce28bf132cd148615beaf07f4e2c30d37849688be8a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-network-operator@sha256:33fdb8fa5fd55108403e5ce28bf132cd148615beaf07f4e2c30d37849688be8a?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-network-operator&tag=v4.11.0-202310200743.p0.gebd1976.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:74fd9ac205a007c61eff98a20f27919caa4a1acd396b388a04ef41a48aee1695_s390x", + "product": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:74fd9ac205a007c61eff98a20f27919caa4a1acd396b388a04ef41a48aee1695_s390x", + "product_id": "openshift4/ose-cluster-node-tuning-operator@sha256:74fd9ac205a007c61eff98a20f27919caa4a1acd396b388a04ef41a48aee1695_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-node-tuning-operator@sha256:74fd9ac205a007c61eff98a20f27919caa4a1acd396b388a04ef41a48aee1695?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-operator&tag=v4.11.0-202310260725.p0.ga9aadb6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-version-operator@sha256:78c6652b0c9c0817c1a276bdb1f6d2902bbb614feeb66ab0992f914a99c71082_s390x", + "product": { + "name": "openshift4/ose-cluster-version-operator@sha256:78c6652b0c9c0817c1a276bdb1f6d2902bbb614feeb66ab0992f914a99c71082_s390x", + "product_id": "openshift4/ose-cluster-version-operator@sha256:78c6652b0c9c0817c1a276bdb1f6d2902bbb614feeb66ab0992f914a99c71082_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-version-operator@sha256:78c6652b0c9c0817c1a276bdb1f6d2902bbb614feeb66ab0992f914a99c71082?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-version-operator&tag=v4.11.0-202310200743.p0.g8966b29.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-configmap-reloader@sha256:b61260c71b57ad464295192442e35ace82b3450b2797ff690c67c336578c7ddb_s390x", + "product": { + "name": "openshift4/ose-configmap-reloader@sha256:b61260c71b57ad464295192442e35ace82b3450b2797ff690c67c336578c7ddb_s390x", + "product_id": "openshift4/ose-configmap-reloader@sha256:b61260c71b57ad464295192442e35ace82b3450b2797ff690c67c336578c7ddb_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-configmap-reloader@sha256:b61260c71b57ad464295192442e35ace82b3450b2797ff690c67c336578c7ddb?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-configmap-reloader&tag=v4.11.0-202310200743.p0.gb7c03bb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-coredns@sha256:3bbf6fcac5d5410a1f9377e3285b24cf01aa39b40d6f892fc52d4b777918fec1_s390x", + "product": { + "name": "openshift4/ose-coredns@sha256:3bbf6fcac5d5410a1f9377e3285b24cf01aa39b40d6f892fc52d4b777918fec1_s390x", + "product_id": "openshift4/ose-coredns@sha256:3bbf6fcac5d5410a1f9377e3285b24cf01aa39b40d6f892fc52d4b777918fec1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-coredns@sha256:3bbf6fcac5d5410a1f9377e3285b24cf01aa39b40d6f892fc52d4b777918fec1?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-coredns&tag=v4.11.0-202310310446.p0.ge195fdd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:611c7ed340ec53125e70077e17c88dc152faf09ae0c194cf7808b710d1770562_s390x", + "product": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:611c7ed340ec53125e70077e17c88dc152faf09ae0c194cf7808b710d1770562_s390x", + "product_id": "openshift4/ose-csi-external-attacher-rhel8@sha256:611c7ed340ec53125e70077e17c88dc152faf09ae0c194cf7808b710d1770562_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher-rhel8@sha256:611c7ed340ec53125e70077e17c88dc152faf09ae0c194cf7808b710d1770562?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8&tag=v4.11.0-202310271701.p0.g1e15b60.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher@sha256:611c7ed340ec53125e70077e17c88dc152faf09ae0c194cf7808b710d1770562_s390x", + "product": { + "name": "openshift4/ose-csi-external-attacher@sha256:611c7ed340ec53125e70077e17c88dc152faf09ae0c194cf7808b710d1770562_s390x", + "product_id": "openshift4/ose-csi-external-attacher@sha256:611c7ed340ec53125e70077e17c88dc152faf09ae0c194cf7808b710d1770562_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher@sha256:611c7ed340ec53125e70077e17c88dc152faf09ae0c194cf7808b710d1770562?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher&tag=v4.11.0-202310271701.p0.g1e15b60.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe@sha256:6c47f77fd4fb1c95c2e89952e307e8f529966fabe21664349eb66f5cc22cc72e_s390x", + "product": { + "name": "openshift4/ose-csi-livenessprobe@sha256:6c47f77fd4fb1c95c2e89952e307e8f529966fabe21664349eb66f5cc22cc72e_s390x", + "product_id": "openshift4/ose-csi-livenessprobe@sha256:6c47f77fd4fb1c95c2e89952e307e8f529966fabe21664349eb66f5cc22cc72e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe@sha256:6c47f77fd4fb1c95c2e89952e307e8f529966fabe21664349eb66f5cc22cc72e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe&tag=v4.11.0-202310271701.p0.gd8ed786.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:6c47f77fd4fb1c95c2e89952e307e8f529966fabe21664349eb66f5cc22cc72e_s390x", + "product": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:6c47f77fd4fb1c95c2e89952e307e8f529966fabe21664349eb66f5cc22cc72e_s390x", + "product_id": "openshift4/ose-csi-livenessprobe-rhel8@sha256:6c47f77fd4fb1c95c2e89952e307e8f529966fabe21664349eb66f5cc22cc72e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe-rhel8@sha256:6c47f77fd4fb1c95c2e89952e307e8f529966fabe21664349eb66f5cc22cc72e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8&tag=v4.11.0-202310271701.p0.gd8ed786.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:2d409fcab38b3a7cfefdcbb5dc21d9f5cc7d198256cfa16911f00732c71e8128_s390x", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:2d409fcab38b3a7cfefdcbb5dc21d9f5cc7d198256cfa16911f00732c71e8128_s390x", + "product_id": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:2d409fcab38b3a7cfefdcbb5dc21d9f5cc7d198256cfa16911f00732c71e8128_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar-rhel8@sha256:2d409fcab38b3a7cfefdcbb5dc21d9f5cc7d198256cfa16911f00732c71e8128?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8&tag=v4.11.0-202310271626.p0.gd5100c1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar@sha256:2d409fcab38b3a7cfefdcbb5dc21d9f5cc7d198256cfa16911f00732c71e8128_s390x", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:2d409fcab38b3a7cfefdcbb5dc21d9f5cc7d198256cfa16911f00732c71e8128_s390x", + "product_id": "openshift4/ose-csi-node-driver-registrar@sha256:2d409fcab38b3a7cfefdcbb5dc21d9f5cc7d198256cfa16911f00732c71e8128_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar@sha256:2d409fcab38b3a7cfefdcbb5dc21d9f5cc7d198256cfa16911f00732c71e8128?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar&tag=v4.11.0-202310271626.p0.gd5100c1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner@sha256:314f89fa0adb7fec7870544e4b3ddd2c8290869cc0f50ccb67045a6485d7bbde_s390x", + "product": { + "name": "openshift4/ose-csi-external-provisioner@sha256:314f89fa0adb7fec7870544e4b3ddd2c8290869cc0f50ccb67045a6485d7bbde_s390x", + "product_id": "openshift4/ose-csi-external-provisioner@sha256:314f89fa0adb7fec7870544e4b3ddd2c8290869cc0f50ccb67045a6485d7bbde_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner@sha256:314f89fa0adb7fec7870544e4b3ddd2c8290869cc0f50ccb67045a6485d7bbde?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner&tag=v4.11.0-202310200743.p0.g86277ec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:314f89fa0adb7fec7870544e4b3ddd2c8290869cc0f50ccb67045a6485d7bbde_s390x", + "product": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:314f89fa0adb7fec7870544e4b3ddd2c8290869cc0f50ccb67045a6485d7bbde_s390x", + "product_id": "openshift4/ose-csi-external-provisioner-rhel8@sha256:314f89fa0adb7fec7870544e4b3ddd2c8290869cc0f50ccb67045a6485d7bbde_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner-rhel8@sha256:314f89fa0adb7fec7870544e4b3ddd2c8290869cc0f50ccb67045a6485d7bbde?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8&tag=v4.11.0-202310200743.p0.g86277ec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/driver-toolkit-rhel8@sha256:c198039813bf19c4e9e466115e4a5ba0e348f53a454c058d96acdbb6e10665e8_s390x", + "product": { + "name": "openshift4/driver-toolkit-rhel8@sha256:c198039813bf19c4e9e466115e4a5ba0e348f53a454c058d96acdbb6e10665e8_s390x", + "product_id": "openshift4/driver-toolkit-rhel8@sha256:c198039813bf19c4e9e466115e4a5ba0e348f53a454c058d96acdbb6e10665e8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/driver-toolkit-rhel8@sha256:c198039813bf19c4e9e466115e4a5ba0e348f53a454c058d96acdbb6e10665e8?arch=s390x&repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel8&tag=v4.11.0-202310260725.p0.g28589b0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-proxy@sha256:2719b27e2e9c3da3a0021afe4ec9a54778292a2053bfd0070b90f74548dd4d9b_s390x", + "product": { + "name": "openshift4/ose-oauth-proxy@sha256:2719b27e2e9c3da3a0021afe4ec9a54778292a2053bfd0070b90f74548dd4d9b_s390x", + "product_id": "openshift4/ose-oauth-proxy@sha256:2719b27e2e9c3da3a0021afe4ec9a54778292a2053bfd0070b90f74548dd4d9b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-proxy@sha256:2719b27e2e9c3da3a0021afe4ec9a54778292a2053bfd0070b90f74548dd4d9b?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-oauth-proxy&tag=v4.11.0-202310200743.p0.gaad1b28.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-alertmanager@sha256:42072b9385ea90eec98425587df9d5305b77527d253e756674fd04fbab7d9ae9_s390x", + "product": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:42072b9385ea90eec98425587df9d5305b77527d253e756674fd04fbab7d9ae9_s390x", + "product_id": "openshift4/ose-prometheus-alertmanager@sha256:42072b9385ea90eec98425587df9d5305b77527d253e756674fd04fbab7d9ae9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-alertmanager@sha256:42072b9385ea90eec98425587df9d5305b77527d253e756674fd04fbab7d9ae9?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager&tag=v4.11.0-202310200743.p0.g05cfc39.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-node-exporter@sha256:55116ec694a8ce10cfe70873397edcb1b96829ce63e4f5c70d62ee3d9d1b0a21_s390x", + "product": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:55116ec694a8ce10cfe70873397edcb1b96829ce63e4f5c70d62ee3d9d1b0a21_s390x", + "product_id": "openshift4/ose-prometheus-node-exporter@sha256:55116ec694a8ce10cfe70873397edcb1b96829ce63e4f5c70d62ee3d9d1b0a21_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-node-exporter@sha256:55116ec694a8ce10cfe70873397edcb1b96829ce63e4f5c70d62ee3d9d1b0a21?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter&tag=v4.11.0-202310200743.p0.g40942c2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus@sha256:e54f73320c2890b45d88ea0b67496ce542e4edc3972e0fe38ed2dbc6e976c0ca_s390x", + "product": { + "name": "openshift4/ose-prometheus@sha256:e54f73320c2890b45d88ea0b67496ce542e4edc3972e0fe38ed2dbc6e976c0ca_s390x", + "product_id": "openshift4/ose-prometheus@sha256:e54f73320c2890b45d88ea0b67496ce542e4edc3972e0fe38ed2dbc6e976c0ca_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus@sha256:e54f73320c2890b45d88ea0b67496ce542e4edc3972e0fe38ed2dbc6e976c0ca?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prometheus&tag=v4.11.0-202310200743.p0.ge751c61.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-proxy@sha256:f537e8e11a88725859720302f562277a389eb89ef54af57e66cfddac58804bf0_s390x", + "product": { + "name": "openshift4/ose-kube-proxy@sha256:f537e8e11a88725859720302f562277a389eb89ef54af57e66cfddac58804bf0_s390x", + "product_id": "openshift4/ose-kube-proxy@sha256:f537e8e11a88725859720302f562277a389eb89ef54af57e66cfddac58804bf0_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-proxy@sha256:f537e8e11a88725859720302f562277a389eb89ef54af57e66cfddac58804bf0?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-kube-proxy&tag=v4.11.0-202310200743.p0.ge5b34b7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-rbac-proxy@sha256:ab291018d614bcc2e2b0a91dc08789b54fc0cac80101aaa249a75a506ca6bba2_s390x", + "product": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:ab291018d614bcc2e2b0a91dc08789b54fc0cac80101aaa249a75a506ca6bba2_s390x", + "product_id": "openshift4/ose-kube-rbac-proxy@sha256:ab291018d614bcc2e2b0a91dc08789b54fc0cac80101aaa249a75a506ca6bba2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-rbac-proxy@sha256:ab291018d614bcc2e2b0a91dc08789b54fc0cac80101aaa249a75a506ca6bba2?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy&tag=v4.11.0-202310300625.p0.gc04896c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-state-metrics@sha256:4315f6e4c3ba1f107d2fb8a10c8a72f32fe94fddb45e83ef87f30d0064ba733a_s390x", + "product": { + "name": "openshift4/ose-kube-state-metrics@sha256:4315f6e4c3ba1f107d2fb8a10c8a72f32fe94fddb45e83ef87f30d0064ba733a_s390x", + "product_id": "openshift4/ose-kube-state-metrics@sha256:4315f6e4c3ba1f107d2fb8a10c8a72f32fe94fddb45e83ef87f30d0064ba733a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-state-metrics@sha256:4315f6e4c3ba1f107d2fb8a10c8a72f32fe94fddb45e83ef87f30d0064ba733a?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics&tag=v4.11.0-202310200743.p0.g8dc2dc0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-marketplace@sha256:e8b893a023283b8403f488036df317f2fdb2c90436e76d7bc2ea4f23bd7fa63e_s390x", + "product": { + "name": "openshift4/ose-operator-marketplace@sha256:e8b893a023283b8403f488036df317f2fdb2c90436e76d7bc2ea4f23bd7fa63e_s390x", + "product_id": "openshift4/ose-operator-marketplace@sha256:e8b893a023283b8403f488036df317f2fdb2c90436e76d7bc2ea4f23bd7fa63e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-marketplace@sha256:e8b893a023283b8403f488036df317f2fdb2c90436e76d7bc2ea4f23bd7fa63e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-operator-marketplace&tag=v4.11.0-202310201443.p0.gc3bae40.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-cni@sha256:00277eba91acd62556a2cbdf3964db9aa5f05f58def87fe5cceea726134c49ed_s390x", + "product": { + "name": "openshift4/ose-multus-cni@sha256:00277eba91acd62556a2cbdf3964db9aa5f05f58def87fe5cceea726134c49ed_s390x", + "product_id": "openshift4/ose-multus-cni@sha256:00277eba91acd62556a2cbdf3964db9aa5f05f58def87fe5cceea726134c49ed_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-cni@sha256:00277eba91acd62556a2cbdf3964db9aa5f05f58def87fe5cceea726134c49ed?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-multus-cni&tag=v4.11.0-202310200743.p0.g67cf297.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-server-rhel8@sha256:48fc366ada529c7e34028427e9f376914e56bcebf721da59e64c8f0d2c0c0fc4_s390x", + "product": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:48fc366ada529c7e34028427e9f376914e56bcebf721da59e64c8f0d2c0c0fc4_s390x", + "product_id": "openshift4/ose-oauth-server-rhel8@sha256:48fc366ada529c7e34028427e9f376914e56bcebf721da59e64c8f0d2c0c0fc4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-server-rhel8@sha256:48fc366ada529c7e34028427e9f376914e56bcebf721da59e64c8f0d2c0c0fc4?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel8&tag=v4.11.0-202310200743.p0.g8d80088.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-builder@sha256:9e2ba827279a79cd983501f3d0755d07d396e4c05f47c882ded51500d4885b76_s390x", + "product": { + "name": "openshift4/ose-docker-builder@sha256:9e2ba827279a79cd983501f3d0755d07d396e4c05f47c882ded51500d4885b76_s390x", + "product_id": "openshift4/ose-docker-builder@sha256:9e2ba827279a79cd983501f3d0755d07d396e4c05f47c882ded51500d4885b76_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-builder@sha256:9e2ba827279a79cd983501f3d0755d07d396e4c05f47c882ded51500d4885b76?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-docker-builder&tag=v4.11.0-202310200743.p0.gd9f5ca0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli@sha256:448c9d241da6abf7ca5be22e0ac3583ca1c24eb4c874838d761b2bfbd3bc8434_s390x", + "product": { + "name": "openshift4/ose-cli@sha256:448c9d241da6abf7ca5be22e0ac3583ca1c24eb4c874838d761b2bfbd3bc8434_s390x", + "product_id": "openshift4/ose-cli@sha256:448c9d241da6abf7ca5be22e0ac3583ca1c24eb4c874838d761b2bfbd3bc8434_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli@sha256:448c9d241da6abf7ca5be22e0ac3583ca1c24eb4c874838d761b2bfbd3bc8434?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cli&tag=v4.11.0-202310251925.p0.gbbc7c58.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console@sha256:c1bd2f2038d7ecfa564b14566370ed3647d070b2f9bb67e326f39b0164434c5b_s390x", + "product": { + "name": "openshift4/ose-console@sha256:c1bd2f2038d7ecfa564b14566370ed3647d070b2f9bb67e326f39b0164434c5b_s390x", + "product_id": "openshift4/ose-console@sha256:c1bd2f2038d7ecfa564b14566370ed3647d070b2f9bb67e326f39b0164434c5b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-console@sha256:c1bd2f2038d7ecfa564b14566370ed3647d070b2f9bb67e326f39b0164434c5b?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-console&tag=v4.11.0-202310200743.p0.g332cb4f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console-operator@sha256:59e96510d9ccd8b93949cee5e1a356eb64748b00f97db5d8813ac7580abab86c_s390x", + "product": { + "name": "openshift4/ose-console-operator@sha256:59e96510d9ccd8b93949cee5e1a356eb64748b00f97db5d8813ac7580abab86c_s390x", + "product_id": "openshift4/ose-console-operator@sha256:59e96510d9ccd8b93949cee5e1a356eb64748b00f97db5d8813ac7580abab86c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-console-operator@sha256:59e96510d9ccd8b93949cee5e1a356eb64748b00f97db5d8813ac7580abab86c?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-console-operator&tag=v4.11.0-202310261501.p0.g488fe13.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-deployer@sha256:762daec25ed98a7cf0aa6979a5e3244539bd01fb3d6f46bac39b8d5bbbf19f25_s390x", + "product": { + "name": "openshift4/ose-deployer@sha256:762daec25ed98a7cf0aa6979a5e3244539bd01fb3d6f46bac39b8d5bbbf19f25_s390x", + "product_id": "openshift4/ose-deployer@sha256:762daec25ed98a7cf0aa6979a5e3244539bd01fb3d6f46bac39b8d5bbbf19f25_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-deployer@sha256:762daec25ed98a7cf0aa6979a5e3244539bd01fb3d6f46bac39b8d5bbbf19f25?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-deployer&tag=v4.11.0-202310251925.p0.gbbc7c58.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-haproxy-router@sha256:7e5e9986c8c7255a593c9abe16bd8705d866183647784768ac9c8797649abe0d_s390x", + "product": { + "name": "openshift4/ose-haproxy-router@sha256:7e5e9986c8c7255a593c9abe16bd8705d866183647784768ac9c8797649abe0d_s390x", + "product_id": "openshift4/ose-haproxy-router@sha256:7e5e9986c8c7255a593c9abe16bd8705d866183647784768ac9c8797649abe0d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-haproxy-router@sha256:7e5e9986c8c7255a593c9abe16bd8705d866183647784768ac9c8797649abe0d?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-haproxy-router&tag=v4.11.0-202310200743.p0.gd9b76b8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hyperkube@sha256:a7c4debda9d72ec21d7fe142b4ed43df9ab952c2a9ef618086273cbffd586fe2_s390x", + "product": { + "name": "openshift4/ose-hyperkube@sha256:a7c4debda9d72ec21d7fe142b4ed43df9ab952c2a9ef618086273cbffd586fe2_s390x", + "product_id": "openshift4/ose-hyperkube@sha256:a7c4debda9d72ec21d7fe142b4ed43df9ab952c2a9ef618086273cbffd586fe2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-hyperkube@sha256:a7c4debda9d72ec21d7fe142b4ed43df9ab952c2a9ef618086273cbffd586fe2?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-hyperkube&tag=v4.11.0-202310201801.p0.gc70bea0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-keepalived-ipfailover@sha256:1e4ad0e51c814acf099a85d45050e38d7858b44c5fa82d0417b3e56c1d98a2ad_s390x", + "product": { + "name": "openshift4/ose-keepalived-ipfailover@sha256:1e4ad0e51c814acf099a85d45050e38d7858b44c5fa82d0417b3e56c1d98a2ad_s390x", + "product_id": "openshift4/ose-keepalived-ipfailover@sha256:1e4ad0e51c814acf099a85d45050e38d7858b44c5fa82d0417b3e56c1d98a2ad_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-keepalived-ipfailover@sha256:1e4ad0e51c814acf099a85d45050e38d7858b44c5fa82d0417b3e56c1d98a2ad?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover&tag=v4.11.0-202310200743.p0.gf1330f6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-pod@sha256:5517c382be67cfbecf691a82c1799a676386ef2b4c9a567edb234ca2081c417b_s390x", + "product": { + "name": "openshift4/ose-pod@sha256:5517c382be67cfbecf691a82c1799a676386ef2b4c9a567edb234ca2081c417b_s390x", + "product_id": "openshift4/ose-pod@sha256:5517c382be67cfbecf691a82c1799a676386ef2b4c9a567edb234ca2081c417b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-pod@sha256:5517c382be67cfbecf691a82c1799a676386ef2b4c9a567edb234ca2081c417b?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-pod&tag=v4.11.0-202310201801.p0.gc70bea0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-registry@sha256:5f470c25d86de4b6ba361608835f75cb8773a040187cac1e54574f8eb5c4d776_s390x", + "product": { + "name": "openshift4/ose-docker-registry@sha256:5f470c25d86de4b6ba361608835f75cb8773a040187cac1e54574f8eb5c4d776_s390x", + "product_id": "openshift4/ose-docker-registry@sha256:5f470c25d86de4b6ba361608835f75cb8773a040187cac1e54574f8eb5c4d776_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-registry@sha256:5f470c25d86de4b6ba361608835f75cb8773a040187cac1e54574f8eb5c4d776?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-docker-registry&tag=v4.11.0-202310200743.p0.g431737b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tests@sha256:35293f5212b21adbe6a58fb4d530c658bd3df0138ff36ab0eb8cb78519e6da06_s390x", + "product": { + "name": "openshift4/ose-tests@sha256:35293f5212b21adbe6a58fb4d530c658bd3df0138ff36ab0eb8cb78519e6da06_s390x", + "product_id": "openshift4/ose-tests@sha256:35293f5212b21adbe6a58fb4d530c658bd3df0138ff36ab0eb8cb78519e6da06_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-tests@sha256:35293f5212b21adbe6a58fb4d530c658bd3df0138ff36ab0eb8cb78519e6da06?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-tests&tag=v4.11.0-202310260725.p0.gb34b8a2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:d96d85ca2158ab36ed4e9dd546796aa31f6864b782eea14213a5f0ce58575b63_s390x", + "product": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:d96d85ca2158ab36ed4e9dd546796aa31f6864b782eea14213a5f0ce58575b63_s390x", + "product_id": "openshift4/ose-openshift-state-metrics-rhel8@sha256:d96d85ca2158ab36ed4e9dd546796aa31f6864b782eea14213a5f0ce58575b63_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-state-metrics-rhel8@sha256:d96d85ca2158ab36ed4e9dd546796aa31f6864b782eea14213a5f0ce58575b63?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8&tag=v4.11.0-202310200743.p0.g1a7a5dc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-lifecycle-manager@sha256:222e3b732ec87d23db39d35395f1062b2d9d22c6e624b057c76e3b6d3a138c89_s390x", + "product": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:222e3b732ec87d23db39d35395f1062b2d9d22c6e624b057c76e3b6d3a138c89_s390x", + "product_id": "openshift4/ose-operator-lifecycle-manager@sha256:222e3b732ec87d23db39d35395f1062b2d9d22c6e624b057c76e3b6d3a138c89_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-lifecycle-manager@sha256:222e3b732ec87d23db39d35395f1062b2d9d22c6e624b057c76e3b6d3a138c89?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager&tag=v4.11.0-202310200743.p0.ge0e9236.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-registry@sha256:f8674b95808167eaa4d9250d0eab999a05396cafe41d3839a005ccc0b0685866_s390x", + "product": { + "name": "openshift4/ose-operator-registry@sha256:f8674b95808167eaa4d9250d0eab999a05396cafe41d3839a005ccc0b0685866_s390x", + "product_id": "openshift4/ose-operator-registry@sha256:f8674b95808167eaa4d9250d0eab999a05396cafe41d3839a005ccc0b0685866_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-registry@sha256:f8674b95808167eaa4d9250d0eab999a05396cafe41d3839a005ccc0b0685866?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-operator-registry&tag=v4.11.0-202310200743.p0.ge0e9236.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:e65b37ee8dd7ecfff976b1dfd3b9c717d2fb973816a5c22c615d2e4ee6b3f6d7_s390x", + "product": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:e65b37ee8dd7ecfff976b1dfd3b9c717d2fb973816a5c22c615d2e4ee6b3f6d7_s390x", + "product_id": "openshift4/ose-agent-installer-api-server-rhel8@sha256:e65b37ee8dd7ecfff976b1dfd3b9c717d2fb973816a5c22c615d2e4ee6b3f6d7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-api-server-rhel8@sha256:e65b37ee8dd7ecfff976b1dfd3b9c717d2fb973816a5c22c615d2e4ee6b3f6d7?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8&tag=v4.11.0-202310251925.p0.gbc51be8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:6be395179eeb6ec093bfad88420f4394a11215fa71d0283e8469c1d1a6c4c376_s390x", + "product": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:6be395179eeb6ec093bfad88420f4394a11215fa71d0283e8469c1d1a6c4c376_s390x", + "product_id": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:6be395179eeb6ec093bfad88420f4394a11215fa71d0283e8469c1d1a6c4c376_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-csr-approver-rhel8@sha256:6be395179eeb6ec093bfad88420f4394a11215fa71d0283e8469c1d1a6c4c376?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8&tag=v4.11.0-202310251925.p0.gaa46748.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:0fca59b8bfae3e09ca1403da7df2a39be838680046263b6c2054ca13273a2949_s390x", + "product": { + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:0fca59b8bfae3e09ca1403da7df2a39be838680046263b6c2054ca13273a2949_s390x", + "product_id": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:0fca59b8bfae3e09ca1403da7df2a39be838680046263b6c2054ca13273a2949_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-node-agent-rhel8@sha256:0fca59b8bfae3e09ca1403da7df2a39be838680046263b6c2054ca13273a2949?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8&tag=v4.11.0-202310200743.p0.ge74ffbf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:d3f82286ce088c8a9e8ddde72ade594bd54d1226ee72d70d2c6e30a4b138bb8c_s390x", + "product": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:d3f82286ce088c8a9e8ddde72ade594bd54d1226ee72d70d2c6e30a4b138bb8c_s390x", + "product_id": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:d3f82286ce088c8a9e8ddde72ade594bd54d1226ee72d70d2c6e30a4b138bb8c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-orchestrator-rhel8@sha256:d3f82286ce088c8a9e8ddde72ade594bd54d1226ee72d70d2c6e30a4b138bb8c?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8&tag=v4.11.0-202310200743.p0.gaa46748.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:a525abb6e1530e6a9ddbaceaf0f02401336ed837b852f7b659a8a14a4cb6ba82_s390x", + "product": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:a525abb6e1530e6a9ddbaceaf0f02401336ed837b852f7b659a8a14a4cb6ba82_s390x", + "product_id": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:a525abb6e1530e6a9ddbaceaf0f02401336ed837b852f7b659a8a14a4cb6ba82_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-apiserver-network-proxy-rhel8@sha256:a525abb6e1530e6a9ddbaceaf0f02401336ed837b852f7b659a8a14a4cb6ba82?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8&tag=v4.11.0-202310201801.p0.g15cd434.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:27c1a8ad4454080d97060c76ca3c42fe006e988f80f114fe27723e9c91416e36_s390x", + "product": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:27c1a8ad4454080d97060c76ca3c42fe006e988f80f114fe27723e9c91416e36_s390x", + "product_id": "openshift4/ose-baremetal-installer-rhel8@sha256:27c1a8ad4454080d97060c76ca3c42fe006e988f80f114fe27723e9c91416e36_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-installer-rhel8@sha256:27c1a8ad4454080d97060c76ca3c42fe006e988f80f114fe27723e9c91416e36?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8&tag=v4.11.0-202310200743.p0.gc63578d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:f05e5b36b1b8b2f220b24a10d4b114f3c2c86b1566dc7c9fb6284dbcd08366aa_s390x", + "product": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:f05e5b36b1b8b2f220b24a10d4b114f3c2c86b1566dc7c9fb6284dbcd08366aa_s390x", + "product_id": "openshift4/ose-baremetal-rhel8-operator@sha256:f05e5b36b1b8b2f220b24a10d4b114f3c2c86b1566dc7c9fb6284dbcd08366aa_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-rhel8-operator@sha256:f05e5b36b1b8b2f220b24a10d4b114f3c2c86b1566dc7c9fb6284dbcd08366aa?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel8-operator&tag=v4.11.0-202310201226.p0.gf7b90bf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:a9a361671b0ee52e3ba9d2328a24e9f11c62c344572a25e845a2a6a06afe2c3e_s390x", + "product": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:a9a361671b0ee52e3ba9d2328a24e9f11c62c344572a25e845a2a6a06afe2c3e_s390x", + "product_id": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:a9a361671b0ee52e3ba9d2328a24e9f11c62c344572a25e845a2a6a06afe2c3e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-runtimecfg-rhel8@sha256:a9a361671b0ee52e3ba9d2328a24e9f11c62c344572a25e845a2a6a06afe2c3e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8&tag=v4.11.0-202310200743.p0.g09f5604.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli-artifacts@sha256:d16b4ebbca1cd91005d14e6714bdb8e55449a936dae2a74ea85b1b33776db3fd_s390x", + "product": { + "name": "openshift4/ose-cli-artifacts@sha256:d16b4ebbca1cd91005d14e6714bdb8e55449a936dae2a74ea85b1b33776db3fd_s390x", + "product_id": "openshift4/ose-cli-artifacts@sha256:d16b4ebbca1cd91005d14e6714bdb8e55449a936dae2a74ea85b1b33776db3fd_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli-artifacts@sha256:d16b4ebbca1cd91005d14e6714bdb8e55449a936dae2a74ea85b1b33776db3fd?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cli-artifacts&tag=v4.11.0-202310251925.p0.gbbc7c58.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-credential-operator@sha256:4d022647bb14e22ef9c54b48c3806c2774cf95b1fa7e85662075e8260cbb49c4_s390x", + "product": { + "name": "openshift4/ose-cloud-credential-operator@sha256:4d022647bb14e22ef9c54b48c3806c2774cf95b1fa7e85662075e8260cbb49c4_s390x", + "product_id": "openshift4/ose-cloud-credential-operator@sha256:4d022647bb14e22ef9c54b48c3806c2774cf95b1fa7e85662075e8260cbb49c4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-credential-operator@sha256:4d022647bb14e22ef9c54b48c3806c2774cf95b1fa7e85662075e8260cbb49c4?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cloud-credential-operator&tag=v4.11.0-202310200743.p0.g7c4c935.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:ef4af9682f3bdbfd2adb76ee3b89c51bf9edbda5be47f00c8bc4f319637a4ef2_s390x", + "product": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:ef4af9682f3bdbfd2adb76ee3b89c51bf9edbda5be47f00c8bc4f319637a4ef2_s390x", + "product_id": "openshift4/cloud-network-config-controller-rhel8@sha256:ef4af9682f3bdbfd2adb76ee3b89c51bf9edbda5be47f00c8bc4f319637a4ef2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cloud-network-config-controller-rhel8@sha256:ef4af9682f3bdbfd2adb76ee3b89c51bf9edbda5be47f00c8bc4f319637a4ef2?arch=s390x&repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel8&tag=v4.11.0-202310200743.p0.gfd849e3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-api-rhel8@sha256:9f88675c1ff271af2112d1b88b5819748a034bd81b79ec4e7e887d7faf19b7ef_s390x", + "product": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:9f88675c1ff271af2112d1b88b5819748a034bd81b79ec4e7e887d7faf19b7ef_s390x", + "product_id": "openshift4/ose-cluster-api-rhel8@sha256:9f88675c1ff271af2112d1b88b5819748a034bd81b79ec4e7e887d7faf19b7ef_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-api-rhel8@sha256:9f88675c1ff271af2112d1b88b5819748a034bd81b79ec4e7e887d7faf19b7ef?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel8&tag=v4.11.0-202310200743.p0.gf9c215c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-authentication-operator@sha256:e2883b689c1665edebeef6fdf348aa657c33dd5f27219c60e09473a70993255b_s390x", + "product": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:e2883b689c1665edebeef6fdf348aa657c33dd5f27219c60e09473a70993255b_s390x", + "product_id": "openshift4/ose-cluster-authentication-operator@sha256:e2883b689c1665edebeef6fdf348aa657c33dd5f27219c60e09473a70993255b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-authentication-operator@sha256:e2883b689c1665edebeef6fdf348aa657c33dd5f27219c60e09473a70993255b?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-operator&tag=v4.11.0-202310200743.p0.ge2bcbaa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:f8ce7e8709f77af90f87e2729d1374aa26ff3da774808484366ac3c171988623_s390x", + "product": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:f8ce7e8709f77af90f87e2729d1374aa26ff3da774808484366ac3c171988623_s390x", + "product_id": "openshift4/ose-cluster-autoscaler-operator@sha256:f8ce7e8709f77af90f87e2729d1374aa26ff3da774808484366ac3c171988623_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler-operator@sha256:f8ce7e8709f77af90f87e2729d1374aa26ff3da774808484366ac3c171988623?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-operator&tag=v4.11.0-202310200743.p0.gfcffbcd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:8114b7c8c048514b56b7d761bfcd4e6667934feba42efce30ca38488b6e37686_s390x", + "product": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:8114b7c8c048514b56b7d761bfcd4e6667934feba42efce30ca38488b6e37686_s390x", + "product_id": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:8114b7c8c048514b56b7d761bfcd4e6667934feba42efce30ca38488b6e37686_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-baremetal-operator-rhel8@sha256:8114b7c8c048514b56b7d761bfcd4e6667934feba42efce30ca38488b6e37686?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8&tag=v4.11.0-202310251925.p0.g4d2ec1d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-bootstrap@sha256:d87a386d8034a229b94186e4ef9d6042174b54741748a0c647689d216bdcd767_s390x", + "product": { + "name": "openshift4/ose-cluster-bootstrap@sha256:d87a386d8034a229b94186e4ef9d6042174b54741748a0c647689d216bdcd767_s390x", + "product_id": "openshift4/ose-cluster-bootstrap@sha256:d87a386d8034a229b94186e4ef9d6042174b54741748a0c647689d216bdcd767_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-bootstrap@sha256:d87a386d8034a229b94186e4ef9d6042174b54741748a0c647689d216bdcd767?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap&tag=v4.11.0-202310200743.p0.gffb5e2e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:12ee30ed842bf34bde1e9af46eb39fcb1c6f5412cdb97e261d7edd757a3f9534_s390x", + "product": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:12ee30ed842bf34bde1e9af46eb39fcb1c6f5412cdb97e261d7edd757a3f9534_s390x", + "product_id": "openshift4/ose-cluster-capi-rhel8-operator@sha256:12ee30ed842bf34bde1e9af46eb39fcb1c6f5412cdb97e261d7edd757a3f9534_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-rhel8-operator@sha256:12ee30ed842bf34bde1e9af46eb39fcb1c6f5412cdb97e261d7edd757a3f9534?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator&tag=v4.11.0-202310200743.p0.g06d77ef.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:12ee30ed842bf34bde1e9af46eb39fcb1c6f5412cdb97e261d7edd757a3f9534_s390x", + "product": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:12ee30ed842bf34bde1e9af46eb39fcb1c6f5412cdb97e261d7edd757a3f9534_s390x", + "product_id": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:12ee30ed842bf34bde1e9af46eb39fcb1c6f5412cdb97e261d7edd757a3f9534_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-operator-container-rhel8@sha256:12ee30ed842bf34bde1e9af46eb39fcb1c6f5412cdb97e261d7edd757a3f9534?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8&tag=v4.11.0-202310200743.p0.g06d77ef.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:e3957aa6149bfeb5e44d7ec12534f89841344a35171a91d1b22225895480a6be_s390x", + "product": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:e3957aa6149bfeb5e44d7ec12534f89841344a35171a91d1b22225895480a6be_s390x", + "product_id": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:e3957aa6149bfeb5e44d7ec12534f89841344a35171a91d1b22225895480a6be_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:e3957aa6149bfeb5e44d7ec12534f89841344a35171a91d1b22225895480a6be?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8&tag=v4.11.0-202310200743.p0.g2dbffc6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-config-operator@sha256:60d08dc8267f045242b29fd6e9108c70b5befba64a4ed757fbd22757ca6de38c_s390x", + "product": { + "name": "openshift4/ose-cluster-config-operator@sha256:60d08dc8267f045242b29fd6e9108c70b5befba64a4ed757fbd22757ca6de38c_s390x", + "product_id": "openshift4/ose-cluster-config-operator@sha256:60d08dc8267f045242b29fd6e9108c70b5befba64a4ed757fbd22757ca6de38c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-config-operator@sha256:60d08dc8267f045242b29fd6e9108c70b5befba64a4ed757fbd22757ca6de38c?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-config-operator&tag=v4.11.0-202310200743.p0.g0e01b06.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:085266acdd227d40447538306506b6cbd95d523d139c1709ebb765c5113103d3_s390x", + "product": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:085266acdd227d40447538306506b6cbd95d523d139c1709ebb765c5113103d3_s390x", + "product_id": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:085266acdd227d40447538306506b6cbd95d523d139c1709ebb765c5113103d3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:085266acdd227d40447538306506b6cbd95d523d139c1709ebb765c5113103d3?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator&tag=v4.11.0-202310280825.p0.ga95aec8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-dns-operator@sha256:4c6e5b9dfd9b698475a3f18167aa88c1ad5c43dba72a07c62b149fe5e4f607dd_s390x", + "product": { + "name": "openshift4/ose-cluster-dns-operator@sha256:4c6e5b9dfd9b698475a3f18167aa88c1ad5c43dba72a07c62b149fe5e4f607dd_s390x", + "product_id": "openshift4/ose-cluster-dns-operator@sha256:4c6e5b9dfd9b698475a3f18167aa88c1ad5c43dba72a07c62b149fe5e4f607dd_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-dns-operator@sha256:4c6e5b9dfd9b698475a3f18167aa88c1ad5c43dba72a07c62b149fe5e4f607dd?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-dns-operator&tag=v4.11.0-202310270443.p0.g69b0ceb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-image-registry-operator@sha256:d561a205a47dab3685ae0ece96eedc8fe40df15b27c7616cef1dc1e587d11c6e_s390x", + "product": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:d561a205a47dab3685ae0ece96eedc8fe40df15b27c7616cef1dc1e587d11c6e_s390x", + "product_id": "openshift4/ose-cluster-image-registry-operator@sha256:d561a205a47dab3685ae0ece96eedc8fe40df15b27c7616cef1dc1e587d11c6e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-image-registry-operator@sha256:d561a205a47dab3685ae0ece96eedc8fe40df15b27c7616cef1dc1e587d11c6e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-operator&tag=v4.11.0-202310200743.p0.g1583069.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-ingress-operator@sha256:2fdba045927065b28e7f644768883e5184f98a5873e8ea74cb234d67c85748f2_s390x", + "product": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:2fdba045927065b28e7f644768883e5184f98a5873e8ea74cb234d67c85748f2_s390x", + "product_id": "openshift4/ose-cluster-ingress-operator@sha256:2fdba045927065b28e7f644768883e5184f98a5873e8ea74cb234d67c85748f2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-ingress-operator@sha256:2fdba045927065b28e7f644768883e5184f98a5873e8ea74cb234d67c85748f2?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-operator&tag=v4.11.0-202310291243.p0.gb45e64a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:58c6a80145ea603e932b36d719137b6c486d1bef7c3ace9162a39f222ea43606_s390x", + "product": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:58c6a80145ea603e932b36d719137b6c486d1bef7c3ace9162a39f222ea43606_s390x", + "product_id": "openshift4/ose-cluster-kube-apiserver-operator@sha256:58c6a80145ea603e932b36d719137b6c486d1bef7c3ace9162a39f222ea43606_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-apiserver-operator@sha256:58c6a80145ea603e932b36d719137b6c486d1bef7c3ace9162a39f222ea43606?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator&tag=v4.11.0-202310200743.p0.g7021090.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:de5a97a2a183a493b949a426a58d8aaade47577173d1fb0bcd476e2644c48205_s390x", + "product": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:de5a97a2a183a493b949a426a58d8aaade47577173d1fb0bcd476e2644c48205_s390x", + "product_id": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:de5a97a2a183a493b949a426a58d8aaade47577173d1fb0bcd476e2644c48205_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel8-operator@sha256:de5a97a2a183a493b949a426a58d8aaade47577173d1fb0bcd476e2644c48205?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator&tag=v4.11.0-202310200743.p0.g21da027.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:7202d4619380326aea921fd46fe2f01ef65c831b8a152a84a8dc56b249554ffe_s390x", + "product": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:7202d4619380326aea921fd46fe2f01ef65c831b8a152a84a8dc56b249554ffe_s390x", + "product_id": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:7202d4619380326aea921fd46fe2f01ef65c831b8a152a84a8dc56b249554ffe_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-controller-manager-operator@sha256:7202d4619380326aea921fd46fe2f01ef65c831b8a152a84a8dc56b249554ffe?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator&tag=v4.11.0-202310200743.p0.ge65f505.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:d34f69622d3518703bbc9ffff1156864c2e952906abb1c1fbfe4674304106f04_s390x", + "product": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:d34f69622d3518703bbc9ffff1156864c2e952906abb1c1fbfe4674304106f04_s390x", + "product_id": "openshift4/ose-cluster-kube-scheduler-operator@sha256:d34f69622d3518703bbc9ffff1156864c2e952906abb1c1fbfe4674304106f04_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-scheduler-operator@sha256:d34f69622d3518703bbc9ffff1156864c2e952906abb1c1fbfe4674304106f04?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator&tag=v4.11.0-202310200743.p0.g324e1c3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:669e96f90d68efaed7607125ca4e649702629b5fc77c22874db004d5010f7922_s390x", + "product": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:669e96f90d68efaed7607125ca4e649702629b5fc77c22874db004d5010f7922_s390x", + "product_id": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:669e96f90d68efaed7607125ca4e649702629b5fc77c22874db004d5010f7922_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:669e96f90d68efaed7607125ca4e649702629b5fc77c22874db004d5010f7922?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator&tag=v4.11.0-202310200743.p0.g12d050a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-machine-approver@sha256:d3e6afb52599ea5162c9dacdf6fbaca5211ed1e499e56dceb9db6562e315ea03_s390x", + "product": { + "name": "openshift4/ose-cluster-machine-approver@sha256:d3e6afb52599ea5162c9dacdf6fbaca5211ed1e499e56dceb9db6562e315ea03_s390x", + "product_id": "openshift4/ose-cluster-machine-approver@sha256:d3e6afb52599ea5162c9dacdf6fbaca5211ed1e499e56dceb9db6562e315ea03_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-machine-approver@sha256:d3e6afb52599ea5162c9dacdf6fbaca5211ed1e499e56dceb9db6562e315ea03?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver&tag=v4.11.0-202310200743.p0.gaa62f3b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:d3ebbd443b7daee9b7ca73a26b7fbb8ecd355d543f994d0a34b185b2f090a971_s390x", + "product": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:d3ebbd443b7daee9b7ca73a26b7fbb8ecd355d543f994d0a34b185b2f090a971_s390x", + "product_id": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:d3ebbd443b7daee9b7ca73a26b7fbb8ecd355d543f994d0a34b185b2f090a971_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-apiserver-operator@sha256:d3ebbd443b7daee9b7ca73a26b7fbb8ecd355d543f994d0a34b185b2f090a971?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator&tag=v4.11.0-202310200743.p0.gcb39fde.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:7457b03663641881f84f2dbaca05d182b428d71d05f657487e0b0912386661e1_s390x", + "product": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:7457b03663641881f84f2dbaca05d182b428d71d05f657487e0b0912386661e1_s390x", + "product_id": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:7457b03663641881f84f2dbaca05d182b428d71d05f657487e0b0912386661e1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-controller-manager-operator@sha256:7457b03663641881f84f2dbaca05d182b428d71d05f657487e0b0912386661e1?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator&tag=v4.11.0-202310200743.p0.ga536525.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:a6c57b4946a89505293ed5909db6df7e2ce5e9270fe6da553024ab2961a6694b_s390x", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:a6c57b4946a89505293ed5909db6df7e2ce5e9270fe6da553024ab2961a6694b_s390x", + "product_id": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:a6c57b4946a89505293ed5909db6df7e2ce5e9270fe6da553024ab2961a6694b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8-operator@sha256:a6c57b4946a89505293ed5909db6df7e2ce5e9270fe6da553024ab2961a6694b?arch=s390x&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator&tag=v4.11.0-202310200743.p0.g1c75c12.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:ead328460d1e576964dbf14663cd9992b0a62e71fb9ed8b8aa8980eac8fe2e84_s390x", + "product": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:ead328460d1e576964dbf14663cd9992b0a62e71fb9ed8b8aa8980eac8fe2e84_s390x", + "product_id": "openshift4/ose-cluster-policy-controller-rhel8@sha256:ead328460d1e576964dbf14663cd9992b0a62e71fb9ed8b8aa8980eac8fe2e84_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-policy-controller-rhel8@sha256:ead328460d1e576964dbf14663cd9992b0a62e71fb9ed8b8aa8980eac8fe2e84?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8&tag=v4.11.0-202310200743.p0.g5651181.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-samples-operator@sha256:1b02606917ea513dc3922583423b688939660e21bdd931c85327bccfe9ed2ac2_s390x", + "product": { + "name": "openshift4/ose-cluster-samples-operator@sha256:1b02606917ea513dc3922583423b688939660e21bdd931c85327bccfe9ed2ac2_s390x", + "product_id": "openshift4/ose-cluster-samples-operator@sha256:1b02606917ea513dc3922583423b688939660e21bdd931c85327bccfe9ed2ac2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-samples-operator@sha256:1b02606917ea513dc3922583423b688939660e21bdd931c85327bccfe9ed2ac2?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-samples-operator&tag=v4.11.0-202310200743.p0.g051761b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-storage-operator@sha256:02d666abe908484f92554040f1b590a2c23fa88d37b5bd7829de27c91a5fa72f_s390x", + "product": { + "name": "openshift4/ose-cluster-storage-operator@sha256:02d666abe908484f92554040f1b590a2c23fa88d37b5bd7829de27c91a5fa72f_s390x", + "product_id": "openshift4/ose-cluster-storage-operator@sha256:02d666abe908484f92554040f1b590a2c23fa88d37b5bd7829de27c91a5fa72f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-storage-operator@sha256:02d666abe908484f92554040f1b590a2c23fa88d37b5bd7829de27c91a5fa72f?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-storage-operator&tag=v4.11.0-202310251025.p0.gbc69ea3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-update-keys@sha256:c3a14c835b77c663133ae7555d210cc29938591177bd31449c2fc1d3a3de5c7e_s390x", + "product": { + "name": "openshift4/ose-cluster-update-keys@sha256:c3a14c835b77c663133ae7555d210cc29938591177bd31449c2fc1d3a3de5c7e_s390x", + "product_id": "openshift4/ose-cluster-update-keys@sha256:c3a14c835b77c663133ae7555d210cc29938591177bd31449c2fc1d3a3de5c7e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-update-keys@sha256:c3a14c835b77c663133ae7555d210cc29938591177bd31449c2fc1d3a3de5c7e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys&tag=v4.11.0-202310200743.p0.g289032f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:add64a1587d55817e761887ea8a16a7a1a2467eb0f31e588f4c4fa37ab59a085_s390x", + "product": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:add64a1587d55817e761887ea8a16a7a1a2467eb0f31e588f4c4fa37ab59a085_s390x", + "product_id": "openshift4/ose-container-networking-plugins-rhel8@sha256:add64a1587d55817e761887ea8a16a7a1a2467eb0f31e588f4c4fa37ab59a085_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-container-networking-plugins-rhel8@sha256:add64a1587d55817e761887ea8a16a7a1a2467eb0f31e588f4c4fa37ab59a085?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8&tag=v4.11.0-202310200743.p0.g0ad9da6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:25d2ca587944e6754a33e83e46530da52238def232b301496d881851414110ea_s390x", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:25d2ca587944e6754a33e83e46530da52238def232b301496d881851414110ea_s390x", + "product_id": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:25d2ca587944e6754a33e83e46530da52238def232b301496d881851414110ea_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-rhel8@sha256:25d2ca587944e6754a33e83e46530da52238def232b301496d881851414110ea?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8&tag=v4.11.0-202310200743.p0.gb5a5a02.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:efa1f853668fcc3c2eb9ea5b627d9976e4b15c3a07dd7c5b3d657e9bdbd09bc1_s390x", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:efa1f853668fcc3c2eb9ea5b627d9976e4b15c3a07dd7c5b3d657e9bdbd09bc1_s390x", + "product_id": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:efa1f853668fcc3c2eb9ea5b627d9976e4b15c3a07dd7c5b3d657e9bdbd09bc1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-operator-rhel8@sha256:efa1f853668fcc3c2eb9ea5b627d9976e4b15c3a07dd7c5b3d657e9bdbd09bc1?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8&tag=v4.11.0-202310200743.p0.g20c9586.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:d820823520af62c64df5e7f1b406f7a968120febb15890eb75ca24ca6b992597_s390x", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:d820823520af62c64df5e7f1b406f7a968120febb15890eb75ca24ca6b992597_s390x", + "product_id": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:d820823520af62c64df5e7f1b406f7a968120febb15890eb75ca24ca6b992597_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-webhook-rhel8@sha256:d820823520af62c64df5e7f1b406f7a968120febb15890eb75ca24ca6b992597?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8&tag=v4.11.0-202310200743.p0.gb5a5a02.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:3428c46b1df2760f792e8e72d0ff590850071eb7b321df2986d0f4d888314289_s390x", + "product": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:3428c46b1df2760f792e8e72d0ff590850071eb7b321df2986d0f4d888314289_s390x", + "product_id": "openshift4/ose-csi-external-resizer-rhel8@sha256:3428c46b1df2760f792e8e72d0ff590850071eb7b321df2986d0f4d888314289_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer-rhel8@sha256:3428c46b1df2760f792e8e72d0ff590850071eb7b321df2986d0f4d888314289?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8&tag=v4.11.0-202310271626.p0.g15ef766.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer@sha256:3428c46b1df2760f792e8e72d0ff590850071eb7b321df2986d0f4d888314289_s390x", + "product": { + "name": "openshift4/ose-csi-external-resizer@sha256:3428c46b1df2760f792e8e72d0ff590850071eb7b321df2986d0f4d888314289_s390x", + "product_id": "openshift4/ose-csi-external-resizer@sha256:3428c46b1df2760f792e8e72d0ff590850071eb7b321df2986d0f4d888314289_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer@sha256:3428c46b1df2760f792e8e72d0ff590850071eb7b321df2986d0f4d888314289?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer&tag=v4.11.0-202310271626.p0.g15ef766.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter@sha256:c2eb5d0dc8c88a157ff226960723c3b8626e300127205e87b3a945e2e0041a5e_s390x", + "product": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:c2eb5d0dc8c88a157ff226960723c3b8626e300127205e87b3a945e2e0041a5e_s390x", + "product_id": "openshift4/ose-csi-external-snapshotter@sha256:c2eb5d0dc8c88a157ff226960723c3b8626e300127205e87b3a945e2e0041a5e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter@sha256:c2eb5d0dc8c88a157ff226960723c3b8626e300127205e87b3a945e2e0041a5e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter&tag=v4.11.0-202310271701.p0.g54d2f3d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:c2eb5d0dc8c88a157ff226960723c3b8626e300127205e87b3a945e2e0041a5e_s390x", + "product": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:c2eb5d0dc8c88a157ff226960723c3b8626e300127205e87b3a945e2e0041a5e_s390x", + "product_id": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:c2eb5d0dc8c88a157ff226960723c3b8626e300127205e87b3a945e2e0041a5e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter-rhel8@sha256:c2eb5d0dc8c88a157ff226960723c3b8626e300127205e87b3a945e2e0041a5e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8&tag=v4.11.0-202310271701.p0.g54d2f3d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller@sha256:c8299417cb97c81ee356d135d99805ddc6a3c7596166189a3127da53865295cb_s390x", + "product": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:c8299417cb97c81ee356d135d99805ddc6a3c7596166189a3127da53865295cb_s390x", + "product_id": "openshift4/ose-csi-snapshot-controller@sha256:c8299417cb97c81ee356d135d99805ddc6a3c7596166189a3127da53865295cb_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller@sha256:c8299417cb97c81ee356d135d99805ddc6a3c7596166189a3127da53865295cb?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller&tag=v4.11.0-202310271701.p0.g54d2f3d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:c8299417cb97c81ee356d135d99805ddc6a3c7596166189a3127da53865295cb_s390x", + "product": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:c8299417cb97c81ee356d135d99805ddc6a3c7596166189a3127da53865295cb_s390x", + "product_id": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:c8299417cb97c81ee356d135d99805ddc6a3c7596166189a3127da53865295cb_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller-rhel8@sha256:c8299417cb97c81ee356d135d99805ddc6a3c7596166189a3127da53865295cb?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8&tag=v4.11.0-202310271701.p0.g54d2f3d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:6540fb9c32a07d49836d9c0995702ae9a2055d5459b785a2f88e5697300dee1d_s390x", + "product": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:6540fb9c32a07d49836d9c0995702ae9a2055d5459b785a2f88e5697300dee1d_s390x", + "product_id": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:6540fb9c32a07d49836d9c0995702ae9a2055d5459b785a2f88e5697300dee1d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-validation-webhook-rhel8@sha256:6540fb9c32a07d49836d9c0995702ae9a2055d5459b785a2f88e5697300dee1d?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8&tag=v4.11.0-202310271701.p0.g54d2f3d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/egress-router-cni-rhel8@sha256:bf5c2e057064fad9f11a4e4f59da182576dca5adbec274898bd0e9f1ab0b2d12_s390x", + "product": { + "name": "openshift4/egress-router-cni-rhel8@sha256:bf5c2e057064fad9f11a4e4f59da182576dca5adbec274898bd0e9f1ab0b2d12_s390x", + "product_id": "openshift4/egress-router-cni-rhel8@sha256:bf5c2e057064fad9f11a4e4f59da182576dca5adbec274898bd0e9f1ab0b2d12_s390x", + "product_identification_helper": { + "purl": "pkg:oci/egress-router-cni-rhel8@sha256:bf5c2e057064fad9f11a4e4f59da182576dca5adbec274898bd0e9f1ab0b2d12?arch=s390x&repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel8&tag=v4.11.0-202310200743.p0.gfccaf1d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-etcd@sha256:9caed8691399dfdae0c8b47d7f67c59de36bc1890e79a48bdc9644f9f1430def_s390x", + "product": { + "name": "openshift4/ose-etcd@sha256:9caed8691399dfdae0c8b47d7f67c59de36bc1890e79a48bdc9644f9f1430def_s390x", + "product_id": "openshift4/ose-etcd@sha256:9caed8691399dfdae0c8b47d7f67c59de36bc1890e79a48bdc9644f9f1430def_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-etcd@sha256:9caed8691399dfdae0c8b47d7f67c59de36bc1890e79a48bdc9644f9f1430def?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-etcd&tag=v4.11.0-202310200743.p0.g2ccbc7d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hypershift-rhel8@sha256:214ce0ae868bed01c138b89b31535e9efe4ca769982583158e90bfae98b67ce4_s390x", + "product": { + "name": "openshift4/ose-hypershift-rhel8@sha256:214ce0ae868bed01c138b89b31535e9efe4ca769982583158e90bfae98b67ce4_s390x", + "product_id": "openshift4/ose-hypershift-rhel8@sha256:214ce0ae868bed01c138b89b31535e9efe4ca769982583158e90bfae98b67ce4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-hypershift-rhel8@sha256:214ce0ae868bed01c138b89b31535e9efe4ca769982583158e90bfae98b67ce4?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel8&tag=v4.11.0-202310200743.p0.gda0a576.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-insights-rhel8-operator@sha256:ad37fbb14b3494177c098fdf0f194f663679b2b2b0f2ac94a919a8a21d6aaf67_s390x", + "product": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:ad37fbb14b3494177c098fdf0f194f663679b2b2b0f2ac94a919a8a21d6aaf67_s390x", + "product_id": "openshift4/ose-insights-rhel8-operator@sha256:ad37fbb14b3494177c098fdf0f194f663679b2b2b0f2ac94a919a8a21d6aaf67_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-insights-rhel8-operator@sha256:ad37fbb14b3494177c098fdf0f194f663679b2b2b0f2ac94a919a8a21d6aaf67?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-insights-rhel8-operator&tag=v4.11.0-202310200743.p0.g14b5397.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer-artifacts@sha256:6c8cd7223c7e0c805e75fe847273ccfd618ef4d8abed4d77070d213febe15e6d_s390x", + "product": { + "name": "openshift4/ose-installer-artifacts@sha256:6c8cd7223c7e0c805e75fe847273ccfd618ef4d8abed4d77070d213febe15e6d_s390x", + "product_id": "openshift4/ose-installer-artifacts@sha256:6c8cd7223c7e0c805e75fe847273ccfd618ef4d8abed4d77070d213febe15e6d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer-artifacts@sha256:6c8cd7223c7e0c805e75fe847273ccfd618ef4d8abed4d77070d213febe15e6d?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-installer-artifacts&tag=v4.11.0-202310200743.p0.gc63578d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer@sha256:5b584cf059b16bab08ecff6be6c0876cecd8f3b683f672852028a9a5d53f49ea_s390x", + "product": { + "name": "openshift4/ose-installer@sha256:5b584cf059b16bab08ecff6be6c0876cecd8f3b683f672852028a9a5d53f49ea_s390x", + "product_id": "openshift4/ose-installer@sha256:5b584cf059b16bab08ecff6be6c0876cecd8f3b683f672852028a9a5d53f49ea_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer@sha256:5b584cf059b16bab08ecff6be6c0876cecd8f3b683f672852028a9a5d53f49ea?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-installer&tag=v4.11.0-202310200743.p0.gc63578d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:009f7c814e4aa3e79596058a6af4c07e5c06a54aa7606539f9aac6e0f6d60bd7_s390x", + "product": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:009f7c814e4aa3e79596058a6af4c07e5c06a54aa7606539f9aac6e0f6d60bd7_s390x", + "product_id": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:009f7c814e4aa3e79596058a6af4c07e5c06a54aa7606539f9aac6e0f6d60bd7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-storage-version-migrator-rhel8@sha256:009f7c814e4aa3e79596058a6af4c07e5c06a54aa7606539f9aac6e0f6d60bd7?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8&tag=v4.11.0-202310200743.p0.g596745c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-libvirt-machine-controllers@sha256:2c0a66866991ec5f6db1a32cfa64fc799de9f0d6a797921027ad540e8be261fe_s390x", + "product": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:2c0a66866991ec5f6db1a32cfa64fc799de9f0d6a797921027ad540e8be261fe_s390x", + "product_id": "openshift4/ose-libvirt-machine-controllers@sha256:2c0a66866991ec5f6db1a32cfa64fc799de9f0d6a797921027ad540e8be261fe_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-libvirt-machine-controllers@sha256:2c0a66866991ec5f6db1a32cfa64fc799de9f0d6a797921027ad540e8be261fe?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers&tag=v4.11.0-202310200743.p0.gb6e14ea.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-operator@sha256:99d5e481b7f7f4c0359fd18be0f3dfffb965b54e3271be002f71a765d66c07c2_s390x", + "product": { + "name": "openshift4/ose-machine-api-operator@sha256:99d5e481b7f7f4c0359fd18be0f3dfffb965b54e3271be002f71a765d66c07c2_s390x", + "product_id": "openshift4/ose-machine-api-operator@sha256:99d5e481b7f7f4c0359fd18be0f3dfffb965b54e3271be002f71a765d66c07c2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-operator@sha256:99d5e481b7f7f4c0359fd18be0f3dfffb965b54e3271be002f71a765d66c07c2?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-machine-api-operator&tag=v4.11.0-202310200743.p0.gaba3049.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:e21b44e337034b43adcbe0949141e7788949ba2c4572c184585e56b4da99ba42_s390x", + "product": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:e21b44e337034b43adcbe0949141e7788949ba2c4572c184585e56b4da99ba42_s390x", + "product_id": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:e21b44e337034b43adcbe0949141e7788949ba2c4572c184585e56b4da99ba42_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-openstack-rhel8@sha256:e21b44e337034b43adcbe0949141e7788949ba2c4572c184585e56b4da99ba42?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8&tag=v4.11.0-202310200743.p0.g0446d77.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-config-operator@sha256:d1437085ef51f5948227355bee3fc6594ebc7756bb6ac531a59bbfccd5d5edb3_s390x", + "product": { + "name": "openshift4/ose-machine-config-operator@sha256:d1437085ef51f5948227355bee3fc6594ebc7756bb6ac531a59bbfccd5d5edb3_s390x", + "product_id": "openshift4/ose-machine-config-operator@sha256:d1437085ef51f5948227355bee3fc6594ebc7756bb6ac531a59bbfccd5d5edb3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-config-operator@sha256:d1437085ef51f5948227355bee3fc6594ebc7756bb6ac531a59bbfccd5d5edb3?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-machine-config-operator&tag=v4.11.0-202310271243.p0.g125ab15.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-admission-controller@sha256:161ab6507025ed44bf8436bd47eee7d317c7d66427730952f152cfd207ed67d2_s390x", + "product": { + "name": "openshift4/ose-multus-admission-controller@sha256:161ab6507025ed44bf8436bd47eee7d317c7d66427730952f152cfd207ed67d2_s390x", + "product_id": "openshift4/ose-multus-admission-controller@sha256:161ab6507025ed44bf8436bd47eee7d317c7d66427730952f152cfd207ed67d2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-admission-controller@sha256:161ab6507025ed44bf8436bd47eee7d317c7d66427730952f152cfd207ed67d2?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller&tag=v4.11.0-202310200743.p0.gb876064.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:400633a9d2f854e1cd338f56a8800874495dc9022b6348506cce42433ef48121_s390x", + "product": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:400633a9d2f854e1cd338f56a8800874495dc9022b6348506cce42433ef48121_s390x", + "product_id": "openshift4/ose-multus-networkpolicy-rhel8@sha256:400633a9d2f854e1cd338f56a8800874495dc9022b6348506cce42433ef48121_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-networkpolicy-rhel8@sha256:400633a9d2f854e1cd338f56a8800874495dc9022b6348506cce42433ef48121?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8&tag=v4.11.0-202310200743.p0.g643fdaf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:74078de9b8d68a19a72d4c36b89786aae3d43f4de16bf21abac65bd27bfc72fa_s390x", + "product": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:74078de9b8d68a19a72d4c36b89786aae3d43f4de16bf21abac65bd27bfc72fa_s390x", + "product_id": "openshift4/ose-multus-route-override-cni-rhel8@sha256:74078de9b8d68a19a72d4c36b89786aae3d43f4de16bf21abac65bd27bfc72fa_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-route-override-cni-rhel8@sha256:74078de9b8d68a19a72d4c36b89786aae3d43f4de16bf21abac65bd27bfc72fa?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8&tag=v4.11.0-202310200743.p0.g523b790.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:c293d566a0b17295d8bc006d8791526e46a8f77b3ca7a7e1b4725817b37c9599_s390x", + "product": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:c293d566a0b17295d8bc006d8791526e46a8f77b3ca7a7e1b4725817b37c9599_s390x", + "product_id": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:c293d566a0b17295d8bc006d8791526e46a8f77b3ca7a7e1b4725817b37c9599_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel8@sha256:c293d566a0b17295d8bc006d8791526e46a8f77b3ca7a7e1b4725817b37c9599?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8&tag=v4.11.0-202310200743.p0.g7d544f9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-must-gather@sha256:8ecb7408971c4416adea1b2056bab48c96072036336810c4bbd5f60b9c91eeb4_s390x", + "product": { + "name": "openshift4/ose-must-gather@sha256:8ecb7408971c4416adea1b2056bab48c96072036336810c4bbd5f60b9c91eeb4_s390x", + "product_id": "openshift4/ose-must-gather@sha256:8ecb7408971c4416adea1b2056bab48c96072036336810c4bbd5f60b9c91eeb4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-must-gather@sha256:8ecb7408971c4416adea1b2056bab48c96072036336810c4bbd5f60b9c91eeb4?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-must-gather&tag=v4.11.0-202310251925.p0.g44f6ada.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:7566039fffd9341c7845c14d09d6ba1a27464c9faefa0871f358081e06555b8a_s390x", + "product": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:7566039fffd9341c7845c14d09d6ba1a27464c9faefa0871f358081e06555b8a_s390x", + "product_id": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:7566039fffd9341c7845c14d09d6ba1a27464c9faefa0871f358081e06555b8a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-interface-bond-cni-rhel8@sha256:7566039fffd9341c7845c14d09d6ba1a27464c9faefa0871f358081e06555b8a?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8&tag=v4.11.0-202310200743.p0.gb76a677.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:5cfb09a421267f37bdf03f34ed8ad7a46b06300c5ba166710e8cf8ec45dc67c4_s390x", + "product": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:5cfb09a421267f37bdf03f34ed8ad7a46b06300c5ba166710e8cf8ec45dc67c4_s390x", + "product_id": "openshift4/ose-network-metrics-daemon-rhel8@sha256:5cfb09a421267f37bdf03f34ed8ad7a46b06300c5ba166710e8cf8ec45dc67c4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-metrics-daemon-rhel8@sha256:5cfb09a421267f37bdf03f34ed8ad7a46b06300c5ba166710e8cf8ec45dc67c4?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8&tag=v4.11.0-202310200743.p0.gbeda996.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/network-tools-rhel8@sha256:96738031e629888b9dec64fe8c9e86cde378655769ff8c795d8ffb4c11838ced_s390x", + "product": { + "name": "openshift4/network-tools-rhel8@sha256:96738031e629888b9dec64fe8c9e86cde378655769ff8c795d8ffb4c11838ced_s390x", + "product_id": "openshift4/network-tools-rhel8@sha256:96738031e629888b9dec64fe8c9e86cde378655769ff8c795d8ffb4c11838ced_s390x", + "product_identification_helper": { + "purl": "pkg:oci/network-tools-rhel8@sha256:96738031e629888b9dec64fe8c9e86cde378655769ff8c795d8ffb4c11838ced?arch=s390x&repository_url=registry.redhat.io/openshift4/network-tools-rhel8&tag=v4.11.0-202310260725.p0.g4e87286.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sdn-rhel8@sha256:d49ee687d486bfbc7b0d79e90c601917b6f768b6939535e8a4493cee8c35488d_s390x", + "product": { + "name": "openshift4/ose-sdn-rhel8@sha256:d49ee687d486bfbc7b0d79e90c601917b6f768b6939535e8a4493cee8c35488d_s390x", + "product_id": "openshift4/ose-sdn-rhel8@sha256:d49ee687d486bfbc7b0d79e90c601917b6f768b6939535e8a4493cee8c35488d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-sdn-rhel8@sha256:d49ee687d486bfbc7b0d79e90c601917b6f768b6939535e8a4493cee8c35488d?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-sdn-rhel8&tag=v4.11.0-202310200743.p0.ge5b34b7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:b9284a10d4486e3ceee49cdcd35f4ec07f4bda167a91229c80efb849caaeaa29_s390x", + "product": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:b9284a10d4486e3ceee49cdcd35f4ec07f4bda167a91229c80efb849caaeaa29_s390x", + "product_id": "openshift4/ose-oauth-apiserver-rhel8@sha256:b9284a10d4486e3ceee49cdcd35f4ec07f4bda167a91229c80efb849caaeaa29_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-apiserver-rhel8@sha256:b9284a10d4486e3ceee49cdcd35f4ec07f4bda167a91229c80efb849caaeaa29?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8&tag=v4.11.0-202310200743.p0.gc9c2dd1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:f0c8fe083c6097d7cf8b9df741700acc4765311f8df97844b92286db80f5a51a_s390x", + "product": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:f0c8fe083c6097d7cf8b9df741700acc4765311f8df97844b92286db80f5a51a_s390x", + "product_id": "openshift4/ose-openshift-apiserver-rhel8@sha256:f0c8fe083c6097d7cf8b9df741700acc4765311f8df97844b92286db80f5a51a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-apiserver-rhel8@sha256:f0c8fe083c6097d7cf8b9df741700acc4765311f8df97844b92286db80f5a51a?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8&tag=v4.11.0-202310200743.p0.g35df5a0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:afaf6a56af16b3318c5487a1efc5b5e15a2685ff855fe29e8931f39f9d69ff3e_s390x", + "product": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:afaf6a56af16b3318c5487a1efc5b5e15a2685ff855fe29e8931f39f9d69ff3e_s390x", + "product_id": "openshift4/ose-openshift-controller-manager-rhel8@sha256:afaf6a56af16b3318c5487a1efc5b5e15a2685ff855fe29e8931f39f9d69ff3e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-controller-manager-rhel8@sha256:afaf6a56af16b3318c5487a1efc5b5e15a2685ff855fe29e8931f39f9d69ff3e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8&tag=v4.11.0-202310200743.p0.g911da57.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:b6b6d1685f38fb7db7ce1de0db1a98a5afe70f9898a44166806c9c3907937c36_s390x", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:b6b6d1685f38fb7db7ce1de0db1a98a5afe70f9898a44166806c9c3907937c36_s390x", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:b6b6d1685f38fb7db7ce1de0db1a98a5afe70f9898a44166806c9c3907937c36_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8@sha256:b6b6d1685f38fb7db7ce1de0db1a98a5afe70f9898a44166806c9c3907937c36?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8&tag=v4.11.0-202310200743.p0.g9eed4ed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:6dde875a01d7299226050a81897ff5675267e2050b0f29aaf1e8c1b5e5ab6640_s390x", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:6dde875a01d7299226050a81897ff5675267e2050b0f29aaf1e8c1b5e5ab6640_s390x", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:6dde875a01d7299226050a81897ff5675267e2050b0f29aaf1e8c1b5e5ab6640_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:6dde875a01d7299226050a81897ff5675267e2050b0f29aaf1e8c1b5e5ab6640?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator&tag=v4.11.0-202310301648.p0.ga6d74d7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:fef30609b36e3fe6ecb4903782c925f151750b45c1448874701348e6ea76a769_s390x", + "product": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:fef30609b36e3fe6ecb4903782c925f151750b45c1448874701348e6ea76a769_s390x", + "product_id": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:fef30609b36e3fe6ecb4903782c925f151750b45c1448874701348e6ea76a769_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel8@sha256:fef30609b36e3fe6ecb4903782c925f151750b45c1448874701348e6ea76a769?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8&tag=v4.11.0-202310200743.p0.g9eed4ed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-machine-controllers@sha256:6ffa1dc622cf8605f921600cb958a8f5e4d87c4635829b0304ccf1cde85c4ccc_s390x", + "product": { + "name": "openshift4/ose-openstack-machine-controllers@sha256:6ffa1dc622cf8605f921600cb958a8f5e4d87c4635829b0304ccf1cde85c4ccc_s390x", + "product_id": "openshift4/ose-openstack-machine-controllers@sha256:6ffa1dc622cf8605f921600cb958a8f5e4d87c4635829b0304ccf1cde85c4ccc_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-machine-controllers@sha256:6ffa1dc622cf8605f921600cb958a8f5e4d87c4635829b0304ccf1cde85c4ccc?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openstack-machine-controllers&tag=v4.11.0-202310200743.p0.g38f15db.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:d3566cd8ade5d9607ac44a45988d3a57eba2be8dade4e6397f11dd8365b3949e_s390x", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:d3566cd8ade5d9607ac44a45988d3a57eba2be8dade4e6397f11dd8365b3949e_s390x", + "product_id": "openshift4/ovirt-csi-driver-rhel7@sha256:d3566cd8ade5d9607ac44a45988d3a57eba2be8dade4e6397f11dd8365b3949e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel7@sha256:d3566cd8ade5d9607ac44a45988d3a57eba2be8dade4e6397f11dd8365b3949e?arch=s390x&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel7&tag=v4.11.0-202310200743.p0.gcd3370f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:d3566cd8ade5d9607ac44a45988d3a57eba2be8dade4e6397f11dd8365b3949e_s390x", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:d3566cd8ade5d9607ac44a45988d3a57eba2be8dade4e6397f11dd8365b3949e_s390x", + "product_id": "openshift4/ovirt-csi-driver-rhel8@sha256:d3566cd8ade5d9607ac44a45988d3a57eba2be8dade4e6397f11dd8365b3949e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8@sha256:d3566cd8ade5d9607ac44a45988d3a57eba2be8dade4e6397f11dd8365b3949e?arch=s390x&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8&tag=v4.11.0-202310200743.p0.gcd3370f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:5e09979198e0185691a4bd70dffa44079e54593b186cf0242446eda96fad0fd9_s390x", + "product": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:5e09979198e0185691a4bd70dffa44079e54593b186cf0242446eda96fad0fd9_s390x", + "product_id": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:5e09979198e0185691a4bd70dffa44079e54593b186cf0242446eda96fad0fd9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovirt-machine-controllers-rhel8@sha256:5e09979198e0185691a4bd70dffa44079e54593b186cf0242446eda96fad0fd9?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8&tag=v4.11.0-202310200743.p0.g5a93d94.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes@sha256:478707a2f0ffd68611e9cb24b13733b06deef6966c8475ad77814f0da8914d11_s390x", + "product": { + "name": "openshift4/ose-ovn-kubernetes@sha256:478707a2f0ffd68611e9cb24b13733b06deef6966c8475ad77814f0da8914d11_s390x", + "product_id": "openshift4/ose-ovn-kubernetes@sha256:478707a2f0ffd68611e9cb24b13733b06deef6966c8475ad77814f0da8914d11_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes@sha256:478707a2f0ffd68611e9cb24b13733b06deef6966c8475ad77814f0da8914d11?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes&tag=v4.11.0-202310251925.p0.g2e60df2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:5d590fdabaf472dd48cb1fed40ea38ac8f253602a287ec8c4cf8d07dc4f02103_s390x", + "product": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:5d590fdabaf472dd48cb1fed40ea38ac8f253602a287ec8c4cf8d07dc4f02103_s390x", + "product_id": "openshift4/ose-k8s-prometheus-adapter@sha256:5d590fdabaf472dd48cb1fed40ea38ac8f253602a287ec8c4cf8d07dc4f02103_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-k8s-prometheus-adapter@sha256:5d590fdabaf472dd48cb1fed40ea38ac8f253602a287ec8c4cf8d07dc4f02103?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter&tag=v4.11.0-202310200743.p0.g32fb8ea.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-service-ca-operator@sha256:addc0492b7c2137f2b5f65da31872db7b720da85687e476805ad1bd9fe0037fb_s390x", + "product": { + "name": "openshift4/ose-service-ca-operator@sha256:addc0492b7c2137f2b5f65da31872db7b720da85687e476805ad1bd9fe0037fb_s390x", + "product_id": "openshift4/ose-service-ca-operator@sha256:addc0492b7c2137f2b5f65da31872db7b720da85687e476805ad1bd9fe0037fb_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-service-ca-operator@sha256:addc0492b7c2137f2b5f65da31872db7b720da85687e476805ad1bd9fe0037fb?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-service-ca-operator&tag=v4.11.0-202310200743.p0.g0899d11.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-thanos-rhel8@sha256:29a81637a4af4e33198948659e174271a0737ce872cc79615dc6d09de29c95c8_s390x", + "product": { + "name": "openshift4/ose-thanos-rhel8@sha256:29a81637a4af4e33198948659e174271a0737ce872cc79615dc6d09de29c95c8_s390x", + "product_id": "openshift4/ose-thanos-rhel8@sha256:29a81637a4af4e33198948659e174271a0737ce872cc79615dc6d09de29c95c8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-thanos-rhel8@sha256:29a81637a4af4e33198948659e174271a0737ce872cc79615dc6d09de29c95c8?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-thanos-rhel8&tag=v4.11.0-202310200743.p0.g99b6e03.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tools-rhel8@sha256:99ed0a48c28ee460a66934ffe7033b7aa1d60a7a650782a4987fb06ff4a39ae1_s390x", + "product": { + "name": "openshift4/ose-tools-rhel8@sha256:99ed0a48c28ee460a66934ffe7033b7aa1d60a7a650782a4987fb06ff4a39ae1_s390x", + "product_id": "openshift4/ose-tools-rhel8@sha256:99ed0a48c28ee460a66934ffe7033b7aa1d60a7a650782a4987fb06ff4a39ae1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-tools-rhel8@sha256:99ed0a48c28ee460a66934ffe7033b7aa1d60a7a650782a4987fb06ff4a39ae1?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-tools-rhel8&tag=v4.11.0-202310260725.p0.gbbc7c58.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-config-reloader@sha256:50de38992a708118447b504a039fb49fe39516c736161d088206a70c3f07f3ef_s390x", + "product": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:50de38992a708118447b504a039fb49fe39516c736161d088206a70c3f07f3ef_s390x", + "product_id": "openshift4/ose-prometheus-config-reloader@sha256:50de38992a708118447b504a039fb49fe39516c736161d088206a70c3f07f3ef_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-config-reloader@sha256:50de38992a708118447b504a039fb49fe39516c736161d088206a70c3f07f3ef?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader&tag=v4.11.0-202310200743.p0.g5752c42.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:20a1195243df9bc0023c97d22cc79857361786b7bf9db9db2b968a352776270d_s390x", + "product": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:20a1195243df9bc0023c97d22cc79857361786b7bf9db9db2b968a352776270d_s390x", + "product_id": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:20a1195243df9bc0023c97d22cc79857361786b7bf9db9db2b968a352776270d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel8@sha256:20a1195243df9bc0023c97d22cc79857361786b7bf9db9db2b968a352776270d?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8&tag=v4.11.0-202310200743.p0.g5752c42.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator@sha256:924325a95729c6a960110a2335c6d2a5d1826a8df84964322afb20b271cf2dd2_s390x", + "product": { + "name": "openshift4/ose-prometheus-operator@sha256:924325a95729c6a960110a2335c6d2a5d1826a8df84964322afb20b271cf2dd2_s390x", + "product_id": "openshift4/ose-prometheus-operator@sha256:924325a95729c6a960110a2335c6d2a5d1826a8df84964322afb20b271cf2dd2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator@sha256:924325a95729c6a960110a2335c6d2a5d1826a8df84964322afb20b271cf2dd2?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator&tag=v4.11.0-202310200743.p0.g5752c42.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prom-label-proxy@sha256:b23eb335ed46152c3dd6d2ed0eef907c8ffb72a0e46804937873dadedaf9d65f_s390x", + "product": { + "name": "openshift4/ose-prom-label-proxy@sha256:b23eb335ed46152c3dd6d2ed0eef907c8ffb72a0e46804937873dadedaf9d65f_s390x", + "product_id": "openshift4/ose-prom-label-proxy@sha256:b23eb335ed46152c3dd6d2ed0eef907c8ffb72a0e46804937873dadedaf9d65f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prom-label-proxy@sha256:b23eb335ed46152c3dd6d2ed0eef907c8ffb72a0e46804937873dadedaf9d65f?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy&tag=v4.11.0-202310200743.p0.gaf12fbc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-telemeter@sha256:8e7f60476faf0cb4c64db727747bf01ab54e919991d2dd1f44874f7b0a13a056_s390x", + "product": { + "name": "openshift4/ose-telemeter@sha256:8e7f60476faf0cb4c64db727747bf01ab54e919991d2dd1f44874f7b0a13a056_s390x", + "product_id": "openshift4/ose-telemeter@sha256:8e7f60476faf0cb4c64db727747bf01ab54e919991d2dd1f44874f7b0a13a056_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-telemeter@sha256:8e7f60476faf0cb4c64db727747bf01ab54e919991d2dd1f44874f7b0a13a056?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-telemeter&tag=v4.11.0-202310200743.p0.gb1f5dd2.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler@sha256:8c98607361b06da87301e190ed35ff837eed12542e7fcf4f9f1eeab2fa397339_amd64", + "product": { + "name": "openshift4/ose-cluster-autoscaler@sha256:8c98607361b06da87301e190ed35ff837eed12542e7fcf4f9f1eeab2fa397339_amd64", + "product_id": "openshift4/ose-cluster-autoscaler@sha256:8c98607361b06da87301e190ed35ff837eed12542e7fcf4f9f1eeab2fa397339_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler@sha256:8c98607361b06da87301e190ed35ff837eed12542e7fcf4f9f1eeab2fa397339?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler&tag=v4.11.0-202310200743.p0.gbf6c1c3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-machine-controllers@sha256:52e1d455745f1d3f5b14713333ff1077554d1eb6e07b13555fd8817e24153811_amd64", + "product": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:52e1d455745f1d3f5b14713333ff1077554d1eb6e07b13555fd8817e24153811_amd64", + "product_id": "openshift4/ose-baremetal-machine-controllers@sha256:52e1d455745f1d3f5b14713333ff1077554d1eb6e07b13555fd8817e24153811_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-machine-controllers@sha256:52e1d455745f1d3f5b14713333ff1077554d1eb6e07b13555fd8817e24153811?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers&tag=v4.11.0-202310201443.p0.g1a6f3aa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:f68ade96de898a6fd9fd4e442deebd49920f289dccdd9066373b5a77f553ded4_amd64", + "product": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:f68ade96de898a6fd9fd4e442deebd49920f289dccdd9066373b5a77f553ded4_amd64", + "product_id": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:f68ade96de898a6fd9fd4e442deebd49920f289dccdd9066373b5a77f553ded4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-etcd-rhel8-operator@sha256:f68ade96de898a6fd9fd4e442deebd49920f289dccdd9066373b5a77f553ded4?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator&tag=v4.11.0-202310200743.p0.g88e55fb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-monitoring-operator@sha256:e15a51de44d65efaf2b380b94db3335f03e4ba912fafa0f915ea7afa0ab12d38_amd64", + "product": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:e15a51de44d65efaf2b380b94db3335f03e4ba912fafa0f915ea7afa0ab12d38_amd64", + "product_id": "openshift4/ose-cluster-monitoring-operator@sha256:e15a51de44d65efaf2b380b94db3335f03e4ba912fafa0f915ea7afa0ab12d38_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-monitoring-operator@sha256:e15a51de44d65efaf2b380b94db3335f03e4ba912fafa0f915ea7afa0ab12d38?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-operator&tag=v4.11.0-202310200743.p0.g1b6bec3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-network-operator@sha256:79fd9b122d1d3e42e33617eb033349b8cdfd85994d5e31bb50d77a677c3a1836_amd64", + "product": { + "name": "openshift4/ose-cluster-network-operator@sha256:79fd9b122d1d3e42e33617eb033349b8cdfd85994d5e31bb50d77a677c3a1836_amd64", + "product_id": "openshift4/ose-cluster-network-operator@sha256:79fd9b122d1d3e42e33617eb033349b8cdfd85994d5e31bb50d77a677c3a1836_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-network-operator@sha256:79fd9b122d1d3e42e33617eb033349b8cdfd85994d5e31bb50d77a677c3a1836?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-network-operator&tag=v4.11.0-202310200743.p0.gebd1976.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:71896c7701e5e5feb043c76b61d98c946bec1bf83d0eb5b8e2a6a5c64d41e165_amd64", + "product": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:71896c7701e5e5feb043c76b61d98c946bec1bf83d0eb5b8e2a6a5c64d41e165_amd64", + "product_id": "openshift4/ose-cluster-node-tuning-operator@sha256:71896c7701e5e5feb043c76b61d98c946bec1bf83d0eb5b8e2a6a5c64d41e165_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-node-tuning-operator@sha256:71896c7701e5e5feb043c76b61d98c946bec1bf83d0eb5b8e2a6a5c64d41e165?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-operator&tag=v4.11.0-202310260725.p0.ga9aadb6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-version-operator@sha256:f3fa1152082f56afb742e572e20ea7eb6726a62494f15532ed438b4ac9e7aa29_amd64", + "product": { + "name": "openshift4/ose-cluster-version-operator@sha256:f3fa1152082f56afb742e572e20ea7eb6726a62494f15532ed438b4ac9e7aa29_amd64", + "product_id": "openshift4/ose-cluster-version-operator@sha256:f3fa1152082f56afb742e572e20ea7eb6726a62494f15532ed438b4ac9e7aa29_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-version-operator@sha256:f3fa1152082f56afb742e572e20ea7eb6726a62494f15532ed438b4ac9e7aa29?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-version-operator&tag=v4.11.0-202310200743.p0.g8966b29.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-configmap-reloader@sha256:43e02aa864a605310e49bcb7cfb88096395777b9195f0ff97199674d23cc8e63_amd64", + "product": { + "name": "openshift4/ose-configmap-reloader@sha256:43e02aa864a605310e49bcb7cfb88096395777b9195f0ff97199674d23cc8e63_amd64", + "product_id": "openshift4/ose-configmap-reloader@sha256:43e02aa864a605310e49bcb7cfb88096395777b9195f0ff97199674d23cc8e63_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-configmap-reloader@sha256:43e02aa864a605310e49bcb7cfb88096395777b9195f0ff97199674d23cc8e63?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-configmap-reloader&tag=v4.11.0-202310200743.p0.gb7c03bb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-coredns@sha256:1f4d3b99d61ea340c3ee9052c2ac73a15a29bb5641337830e41259cc62cf5381_amd64", + "product": { + "name": "openshift4/ose-coredns@sha256:1f4d3b99d61ea340c3ee9052c2ac73a15a29bb5641337830e41259cc62cf5381_amd64", + "product_id": "openshift4/ose-coredns@sha256:1f4d3b99d61ea340c3ee9052c2ac73a15a29bb5641337830e41259cc62cf5381_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-coredns@sha256:1f4d3b99d61ea340c3ee9052c2ac73a15a29bb5641337830e41259cc62cf5381?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-coredns&tag=v4.11.0-202310310446.p0.ge195fdd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:e465d3e1f3432674188a64e90b360518cc1a4b8dbd67f77adfb9127550de410c_amd64", + "product": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:e465d3e1f3432674188a64e90b360518cc1a4b8dbd67f77adfb9127550de410c_amd64", + "product_id": "openshift4/ose-csi-external-attacher-rhel8@sha256:e465d3e1f3432674188a64e90b360518cc1a4b8dbd67f77adfb9127550de410c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher-rhel8@sha256:e465d3e1f3432674188a64e90b360518cc1a4b8dbd67f77adfb9127550de410c?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8&tag=v4.11.0-202310271701.p0.g1e15b60.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher@sha256:e465d3e1f3432674188a64e90b360518cc1a4b8dbd67f77adfb9127550de410c_amd64", + "product": { + "name": "openshift4/ose-csi-external-attacher@sha256:e465d3e1f3432674188a64e90b360518cc1a4b8dbd67f77adfb9127550de410c_amd64", + "product_id": "openshift4/ose-csi-external-attacher@sha256:e465d3e1f3432674188a64e90b360518cc1a4b8dbd67f77adfb9127550de410c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher@sha256:e465d3e1f3432674188a64e90b360518cc1a4b8dbd67f77adfb9127550de410c?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher&tag=v4.11.0-202310271701.p0.g1e15b60.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:dadde7981282ddab54a790d4b6a30fd7590f1006f83173fd3e3a72ad39b37638_amd64", + "product": { + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:dadde7981282ddab54a790d4b6a30fd7590f1006f83173fd3e3a72ad39b37638_amd64", + "product_id": "openshift4/ose-csi-driver-manila-rhel8@sha256:dadde7981282ddab54a790d4b6a30fd7590f1006f83173fd3e3a72ad39b37638_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-manila-rhel8@sha256:dadde7981282ddab54a790d4b6a30fd7590f1006f83173fd3e3a72ad39b37638?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8&tag=v4.11.0-202310200743.p0.g9eed4ed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:0e906218ce7ce1e8f0dfeb2c0ad663bb485b09e35a039203af7c1e05006e7b8e_amd64", + "product": { + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:0e906218ce7ce1e8f0dfeb2c0ad663bb485b09e35a039203af7c1e05006e7b8e_amd64", + "product_id": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:0e906218ce7ce1e8f0dfeb2c0ad663bb485b09e35a039203af7c1e05006e7b8e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-manila-rhel8-operator@sha256:0e906218ce7ce1e8f0dfeb2c0ad663bb485b09e35a039203af7c1e05006e7b8e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator&tag=v4.11.0-202310200743.p0.gd3cb2f5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-nfs-rhel8@sha256:e55613bef2d1f71e6724305479f73a10485bf10d8e5c055b371ff4f67f8d54ca_amd64", + "product": { + "name": "openshift4/ose-csi-driver-nfs-rhel8@sha256:e55613bef2d1f71e6724305479f73a10485bf10d8e5c055b371ff4f67f8d54ca_amd64", + "product_id": "openshift4/ose-csi-driver-nfs-rhel8@sha256:e55613bef2d1f71e6724305479f73a10485bf10d8e5c055b371ff4f67f8d54ca_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-nfs-rhel8@sha256:e55613bef2d1f71e6724305479f73a10485bf10d8e5c055b371ff4f67f8d54ca?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8&tag=v4.11.0-202310200743.p0.gf144bb4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe@sha256:adb731237c8d264dc0f5cef796cc955d3766cebc1e712b58616eef6ea970b18a_amd64", + "product": { + "name": "openshift4/ose-csi-livenessprobe@sha256:adb731237c8d264dc0f5cef796cc955d3766cebc1e712b58616eef6ea970b18a_amd64", + "product_id": "openshift4/ose-csi-livenessprobe@sha256:adb731237c8d264dc0f5cef796cc955d3766cebc1e712b58616eef6ea970b18a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe@sha256:adb731237c8d264dc0f5cef796cc955d3766cebc1e712b58616eef6ea970b18a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe&tag=v4.11.0-202310271701.p0.gd8ed786.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:adb731237c8d264dc0f5cef796cc955d3766cebc1e712b58616eef6ea970b18a_amd64", + "product": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:adb731237c8d264dc0f5cef796cc955d3766cebc1e712b58616eef6ea970b18a_amd64", + "product_id": "openshift4/ose-csi-livenessprobe-rhel8@sha256:adb731237c8d264dc0f5cef796cc955d3766cebc1e712b58616eef6ea970b18a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe-rhel8@sha256:adb731237c8d264dc0f5cef796cc955d3766cebc1e712b58616eef6ea970b18a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8&tag=v4.11.0-202310271701.p0.gd8ed786.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:71f9289320bd66c59a737051fb607a0a4647cb88eb91b99c320433fe86a7bab8_amd64", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:71f9289320bd66c59a737051fb607a0a4647cb88eb91b99c320433fe86a7bab8_amd64", + "product_id": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:71f9289320bd66c59a737051fb607a0a4647cb88eb91b99c320433fe86a7bab8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar-rhel8@sha256:71f9289320bd66c59a737051fb607a0a4647cb88eb91b99c320433fe86a7bab8?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8&tag=v4.11.0-202310271626.p0.gd5100c1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar@sha256:71f9289320bd66c59a737051fb607a0a4647cb88eb91b99c320433fe86a7bab8_amd64", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:71f9289320bd66c59a737051fb607a0a4647cb88eb91b99c320433fe86a7bab8_amd64", + "product_id": "openshift4/ose-csi-node-driver-registrar@sha256:71f9289320bd66c59a737051fb607a0a4647cb88eb91b99c320433fe86a7bab8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar@sha256:71f9289320bd66c59a737051fb607a0a4647cb88eb91b99c320433fe86a7bab8?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar&tag=v4.11.0-202310271626.p0.gd5100c1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner@sha256:d9ebb52e0b1861ee635f3447245950b8df0e04732df681b14ed2d6cedf8d68a5_amd64", + "product": { + "name": "openshift4/ose-csi-external-provisioner@sha256:d9ebb52e0b1861ee635f3447245950b8df0e04732df681b14ed2d6cedf8d68a5_amd64", + "product_id": "openshift4/ose-csi-external-provisioner@sha256:d9ebb52e0b1861ee635f3447245950b8df0e04732df681b14ed2d6cedf8d68a5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner@sha256:d9ebb52e0b1861ee635f3447245950b8df0e04732df681b14ed2d6cedf8d68a5?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner&tag=v4.11.0-202310200743.p0.g86277ec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:d9ebb52e0b1861ee635f3447245950b8df0e04732df681b14ed2d6cedf8d68a5_amd64", + "product": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:d9ebb52e0b1861ee635f3447245950b8df0e04732df681b14ed2d6cedf8d68a5_amd64", + "product_id": "openshift4/ose-csi-external-provisioner-rhel8@sha256:d9ebb52e0b1861ee635f3447245950b8df0e04732df681b14ed2d6cedf8d68a5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner-rhel8@sha256:d9ebb52e0b1861ee635f3447245950b8df0e04732df681b14ed2d6cedf8d68a5?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8&tag=v4.11.0-202310200743.p0.g86277ec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/driver-toolkit-rhel8@sha256:953076cf56eaf0b6989cd37599c60ed166b61e46d776dde4ce620ebf2b1c1e68_amd64", + "product": { + "name": "openshift4/driver-toolkit-rhel8@sha256:953076cf56eaf0b6989cd37599c60ed166b61e46d776dde4ce620ebf2b1c1e68_amd64", + "product_id": "openshift4/driver-toolkit-rhel8@sha256:953076cf56eaf0b6989cd37599c60ed166b61e46d776dde4ce620ebf2b1c1e68_amd64", + "product_identification_helper": { + "purl": "pkg:oci/driver-toolkit-rhel8@sha256:953076cf56eaf0b6989cd37599c60ed166b61e46d776dde4ce620ebf2b1c1e68?arch=amd64&repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel8&tag=v4.11.0-202310260725.p0.g28589b0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-proxy@sha256:dfc2f8fb7e35499cb6a9dee42fed7ab68986e49878daadb4b61525c79850d525_amd64", + "product": { + "name": "openshift4/ose-oauth-proxy@sha256:dfc2f8fb7e35499cb6a9dee42fed7ab68986e49878daadb4b61525c79850d525_amd64", + "product_id": "openshift4/ose-oauth-proxy@sha256:dfc2f8fb7e35499cb6a9dee42fed7ab68986e49878daadb4b61525c79850d525_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-proxy@sha256:dfc2f8fb7e35499cb6a9dee42fed7ab68986e49878daadb4b61525c79850d525?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-oauth-proxy&tag=v4.11.0-202310200743.p0.gaad1b28.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-alertmanager@sha256:ecf612c8d80313689f85da76e8daf55c8445951765acc6c34fbe5c2d5e8f405a_amd64", + "product": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:ecf612c8d80313689f85da76e8daf55c8445951765acc6c34fbe5c2d5e8f405a_amd64", + "product_id": "openshift4/ose-prometheus-alertmanager@sha256:ecf612c8d80313689f85da76e8daf55c8445951765acc6c34fbe5c2d5e8f405a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-alertmanager@sha256:ecf612c8d80313689f85da76e8daf55c8445951765acc6c34fbe5c2d5e8f405a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager&tag=v4.11.0-202310200743.p0.g05cfc39.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-node-exporter@sha256:b8e537d0fa58fd642fe1ca0e9d017f3977681f0dac580605c4c117a7094b0035_amd64", + "product": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:b8e537d0fa58fd642fe1ca0e9d017f3977681f0dac580605c4c117a7094b0035_amd64", + "product_id": "openshift4/ose-prometheus-node-exporter@sha256:b8e537d0fa58fd642fe1ca0e9d017f3977681f0dac580605c4c117a7094b0035_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-node-exporter@sha256:b8e537d0fa58fd642fe1ca0e9d017f3977681f0dac580605c4c117a7094b0035?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter&tag=v4.11.0-202310200743.p0.g40942c2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus@sha256:5017e62d8268a7d4817afb2855e06fcbd564296b1798c4d7c2e1ed5307064a02_amd64", + "product": { + "name": "openshift4/ose-prometheus@sha256:5017e62d8268a7d4817afb2855e06fcbd564296b1798c4d7c2e1ed5307064a02_amd64", + "product_id": "openshift4/ose-prometheus@sha256:5017e62d8268a7d4817afb2855e06fcbd564296b1798c4d7c2e1ed5307064a02_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus@sha256:5017e62d8268a7d4817afb2855e06fcbd564296b1798c4d7c2e1ed5307064a02?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prometheus&tag=v4.11.0-202310200743.p0.ge751c61.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:eac35be2d3b935ddcb9ad129637f853e5f2940a0c7dd564c855907c0502c6e33_amd64", + "product": { + "name": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:eac35be2d3b935ddcb9ad129637f853e5f2940a0c7dd564c855907c0502c6e33_amd64", + "product_id": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:eac35be2d3b935ddcb9ad129637f853e5f2940a0c7dd564c855907c0502c6e33_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-vpc-node-label-updater-rhel8@sha256:eac35be2d3b935ddcb9ad129637f853e5f2940a0c7dd564c855907c0502c6e33?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8&tag=v4.11.0-202310301444.p0.g1b1d427.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-agent-rhel8@sha256:962babc7fc1a79049724feac25e5c1075c3df4ebd60a3d4545987e0ff9a79646_amd64", + "product": { + "name": "openshift4/ose-ironic-agent-rhel8@sha256:962babc7fc1a79049724feac25e5c1075c3df4ebd60a3d4545987e0ff9a79646_amd64", + "product_id": "openshift4/ose-ironic-agent-rhel8@sha256:962babc7fc1a79049724feac25e5c1075c3df4ebd60a3d4545987e0ff9a79646_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-agent-rhel8@sha256:962babc7fc1a79049724feac25e5c1075c3df4ebd60a3d4545987e0ff9a79646?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel8&tag=v4.11.0-202310202025.p0.g1dad35c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-rhel8@sha256:47b29ad02b589733df4fb0e87f3c1683abb7096e5963d032b39fa23781ce285f_amd64", + "product": { + "name": "openshift4/ose-ironic-rhel8@sha256:47b29ad02b589733df4fb0e87f3c1683abb7096e5963d032b39fa23781ce285f_amd64", + "product_id": "openshift4/ose-ironic-rhel8@sha256:47b29ad02b589733df4fb0e87f3c1683abb7096e5963d032b39fa23781ce285f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-rhel8@sha256:47b29ad02b589733df4fb0e87f3c1683abb7096e5963d032b39fa23781ce285f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ironic-rhel8&tag=v4.11.0-202310201344.p0.g240777d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-machine-os-downloader-rhel8@sha256:dcfc1c01686b4db91733eae2cd75277e4e675d0df96388fa29acfdfe2e2d9410_amd64", + "product": { + "name": "openshift4/ose-ironic-machine-os-downloader-rhel8@sha256:dcfc1c01686b4db91733eae2cd75277e4e675d0df96388fa29acfdfe2e2d9410_amd64", + "product_id": "openshift4/ose-ironic-machine-os-downloader-rhel8@sha256:dcfc1c01686b4db91733eae2cd75277e4e675d0df96388fa29acfdfe2e2d9410_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-machine-os-downloader-rhel8@sha256:dcfc1c01686b4db91733eae2cd75277e4e675d0df96388fa29acfdfe2e2d9410?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel8&tag=v4.11.0-202310260725.p0.g876128b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-static-ip-manager-rhel8@sha256:c52253027cb34e1f1d368bb25a4553f2aa9eeecd6d4c4394d9fb1a8ede4c0cec_amd64", + "product": { + "name": "openshift4/ose-ironic-static-ip-manager-rhel8@sha256:c52253027cb34e1f1d368bb25a4553f2aa9eeecd6d4c4394d9fb1a8ede4c0cec_amd64", + "product_id": "openshift4/ose-ironic-static-ip-manager-rhel8@sha256:c52253027cb34e1f1d368bb25a4553f2aa9eeecd6d4c4394d9fb1a8ede4c0cec_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-static-ip-manager-rhel8@sha256:c52253027cb34e1f1d368bb25a4553f2aa9eeecd6d4c4394d9fb1a8ede4c0cec?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel8&tag=v4.11.0-202310200743.p0.g8c8af7b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-proxy@sha256:26e8794d63cfc435f4a6267b922867650ca6c37555b3d9f533d60b7ed65d8f86_amd64", + "product": { + "name": "openshift4/ose-kube-proxy@sha256:26e8794d63cfc435f4a6267b922867650ca6c37555b3d9f533d60b7ed65d8f86_amd64", + "product_id": "openshift4/ose-kube-proxy@sha256:26e8794d63cfc435f4a6267b922867650ca6c37555b3d9f533d60b7ed65d8f86_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-proxy@sha256:26e8794d63cfc435f4a6267b922867650ca6c37555b3d9f533d60b7ed65d8f86?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kube-proxy&tag=v4.11.0-202310200743.p0.ge5b34b7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-rbac-proxy@sha256:5667334a9d8b133fbe039d80b5f5cb314dc7ce1f70b20ca605af099caf705336_amd64", + "product": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:5667334a9d8b133fbe039d80b5f5cb314dc7ce1f70b20ca605af099caf705336_amd64", + "product_id": "openshift4/ose-kube-rbac-proxy@sha256:5667334a9d8b133fbe039d80b5f5cb314dc7ce1f70b20ca605af099caf705336_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-rbac-proxy@sha256:5667334a9d8b133fbe039d80b5f5cb314dc7ce1f70b20ca605af099caf705336?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy&tag=v4.11.0-202310300625.p0.gc04896c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-state-metrics@sha256:7f72a94995fa41cb3108b5b9a5e015e0c5b23d28692cd8b7ba3f5b530e5465c0_amd64", + "product": { + "name": "openshift4/ose-kube-state-metrics@sha256:7f72a94995fa41cb3108b5b9a5e015e0c5b23d28692cd8b7ba3f5b530e5465c0_amd64", + "product_id": "openshift4/ose-kube-state-metrics@sha256:7f72a94995fa41cb3108b5b9a5e015e0c5b23d28692cd8b7ba3f5b530e5465c0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-state-metrics@sha256:7f72a94995fa41cb3108b5b9a5e015e0c5b23d28692cd8b7ba3f5b530e5465c0?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics&tag=v4.11.0-202310200743.p0.g8dc2dc0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:f639d09e2bc8c9e5b0b74f0ac6ebf9715ce09ec914a1791bb27e22f1b5798e01_amd64", + "product": { + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:f639d09e2bc8c9e5b0b74f0ac6ebf9715ce09ec914a1791bb27e22f1b5798e01_amd64", + "product_id": "openshift4/ose-kuryr-cni-rhel8@sha256:f639d09e2bc8c9e5b0b74f0ac6ebf9715ce09ec914a1791bb27e22f1b5798e01_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kuryr-cni-rhel8@sha256:f639d09e2bc8c9e5b0b74f0ac6ebf9715ce09ec914a1791bb27e22f1b5798e01?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kuryr-cni-rhel8&tag=v4.11.0-202310200743.p0.gc732699.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kuryr-controller-rhel8@sha256:5d3a7d2e18aa2f7af939820bc60c2e1ab00843a5383a0f499378585d250417db_amd64", + "product": { + "name": "openshift4/ose-kuryr-controller-rhel8@sha256:5d3a7d2e18aa2f7af939820bc60c2e1ab00843a5383a0f499378585d250417db_amd64", + "product_id": "openshift4/ose-kuryr-controller-rhel8@sha256:5d3a7d2e18aa2f7af939820bc60c2e1ab00843a5383a0f499378585d250417db_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kuryr-controller-rhel8@sha256:5d3a7d2e18aa2f7af939820bc60c2e1ab00843a5383a0f499378585d250417db?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kuryr-controller-rhel8&tag=v4.11.0-202310200743.p0.gc732699.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-marketplace@sha256:c1d8521a5594ed38f44a6ff51d666e1990190e60315adf42545679bdcd74f93f_amd64", + "product": { + "name": "openshift4/ose-operator-marketplace@sha256:c1d8521a5594ed38f44a6ff51d666e1990190e60315adf42545679bdcd74f93f_amd64", + "product_id": "openshift4/ose-operator-marketplace@sha256:c1d8521a5594ed38f44a6ff51d666e1990190e60315adf42545679bdcd74f93f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-marketplace@sha256:c1d8521a5594ed38f44a6ff51d666e1990190e60315adf42545679bdcd74f93f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-operator-marketplace&tag=v4.11.0-202310201443.p0.gc3bae40.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-cni@sha256:cbd1317bdf1c8606ffb0175f9d96e1d7ff5e8eeab2369475c62ddbfa8917e14f_amd64", + "product": { + "name": "openshift4/ose-multus-cni@sha256:cbd1317bdf1c8606ffb0175f9d96e1d7ff5e8eeab2369475c62ddbfa8917e14f_amd64", + "product_id": "openshift4/ose-multus-cni@sha256:cbd1317bdf1c8606ffb0175f9d96e1d7ff5e8eeab2369475c62ddbfa8917e14f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-cni@sha256:cbd1317bdf1c8606ffb0175f9d96e1d7ff5e8eeab2369475c62ddbfa8917e14f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-multus-cni&tag=v4.11.0-202310200743.p0.g67cf297.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-server-rhel8@sha256:18c50a4120b4bf9538afa156b9ea954bfdccc363f45b2106aa7d96d9bd8e4183_amd64", + "product": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:18c50a4120b4bf9538afa156b9ea954bfdccc363f45b2106aa7d96d9bd8e4183_amd64", + "product_id": "openshift4/ose-oauth-server-rhel8@sha256:18c50a4120b4bf9538afa156b9ea954bfdccc363f45b2106aa7d96d9bd8e4183_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-server-rhel8@sha256:18c50a4120b4bf9538afa156b9ea954bfdccc363f45b2106aa7d96d9bd8e4183?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel8&tag=v4.11.0-202310200743.p0.g8d80088.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/oc-mirror-plugin-rhel8@sha256:9cbb92e3fbd1ae3f710bb308db10015047861bc21d6513698a4211cdbbb037b9_amd64", + "product": { + "name": "openshift4/oc-mirror-plugin-rhel8@sha256:9cbb92e3fbd1ae3f710bb308db10015047861bc21d6513698a4211cdbbb037b9_amd64", + "product_id": "openshift4/oc-mirror-plugin-rhel8@sha256:9cbb92e3fbd1ae3f710bb308db10015047861bc21d6513698a4211cdbbb037b9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oc-mirror-plugin-rhel8@sha256:9cbb92e3fbd1ae3f710bb308db10015047861bc21d6513698a4211cdbbb037b9?arch=amd64&repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel8&tag=v4.11.0-202310200743.p0.gcb3fce3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-builder@sha256:07459f5b40aba4f4726076cf4df73699eb1b1bd1825a5b9adb95af1700f359d5_amd64", + "product": { + "name": "openshift4/ose-docker-builder@sha256:07459f5b40aba4f4726076cf4df73699eb1b1bd1825a5b9adb95af1700f359d5_amd64", + "product_id": "openshift4/ose-docker-builder@sha256:07459f5b40aba4f4726076cf4df73699eb1b1bd1825a5b9adb95af1700f359d5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-builder@sha256:07459f5b40aba4f4726076cf4df73699eb1b1bd1825a5b9adb95af1700f359d5?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-docker-builder&tag=v4.11.0-202310200743.p0.gd9f5ca0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli@sha256:557ad4c0e69f6da2ee0c048d8465e3e46dbcebe424e92656f82e0faad39e8a43_amd64", + "product": { + "name": "openshift4/ose-cli@sha256:557ad4c0e69f6da2ee0c048d8465e3e46dbcebe424e92656f82e0faad39e8a43_amd64", + "product_id": "openshift4/ose-cli@sha256:557ad4c0e69f6da2ee0c048d8465e3e46dbcebe424e92656f82e0faad39e8a43_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli@sha256:557ad4c0e69f6da2ee0c048d8465e3e46dbcebe424e92656f82e0faad39e8a43?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cli&tag=v4.11.0-202310251925.p0.gbbc7c58.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console@sha256:67108e481bbb2758129c038df604901a1d7adf8679912dd807d65c3131fbe5d6_amd64", + "product": { + "name": "openshift4/ose-console@sha256:67108e481bbb2758129c038df604901a1d7adf8679912dd807d65c3131fbe5d6_amd64", + "product_id": "openshift4/ose-console@sha256:67108e481bbb2758129c038df604901a1d7adf8679912dd807d65c3131fbe5d6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-console@sha256:67108e481bbb2758129c038df604901a1d7adf8679912dd807d65c3131fbe5d6?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-console&tag=v4.11.0-202310200743.p0.g332cb4f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console-operator@sha256:5e71e207d681b7b58fc6c5ea938413f656896d195d9648b6e536632a2b64169b_amd64", + "product": { + "name": "openshift4/ose-console-operator@sha256:5e71e207d681b7b58fc6c5ea938413f656896d195d9648b6e536632a2b64169b_amd64", + "product_id": "openshift4/ose-console-operator@sha256:5e71e207d681b7b58fc6c5ea938413f656896d195d9648b6e536632a2b64169b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-console-operator@sha256:5e71e207d681b7b58fc6c5ea938413f656896d195d9648b6e536632a2b64169b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-console-operator&tag=v4.11.0-202310261501.p0.g488fe13.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-deployer@sha256:b2efd69dffd2ce24700fab3d93969ed088a6b0b3bff67c62a9fdc6df8f75f4b4_amd64", + "product": { + "name": "openshift4/ose-deployer@sha256:b2efd69dffd2ce24700fab3d93969ed088a6b0b3bff67c62a9fdc6df8f75f4b4_amd64", + "product_id": "openshift4/ose-deployer@sha256:b2efd69dffd2ce24700fab3d93969ed088a6b0b3bff67c62a9fdc6df8f75f4b4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-deployer@sha256:b2efd69dffd2ce24700fab3d93969ed088a6b0b3bff67c62a9fdc6df8f75f4b4?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-deployer&tag=v4.11.0-202310251925.p0.gbbc7c58.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-haproxy-router@sha256:be2c55eb6bfe9e7d7a407179a0479619cbb321a4a0b801ee75bafa260c38155b_amd64", + "product": { + "name": "openshift4/ose-haproxy-router@sha256:be2c55eb6bfe9e7d7a407179a0479619cbb321a4a0b801ee75bafa260c38155b_amd64", + "product_id": "openshift4/ose-haproxy-router@sha256:be2c55eb6bfe9e7d7a407179a0479619cbb321a4a0b801ee75bafa260c38155b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-haproxy-router@sha256:be2c55eb6bfe9e7d7a407179a0479619cbb321a4a0b801ee75bafa260c38155b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-haproxy-router&tag=v4.11.0-202310200743.p0.gd9b76b8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hyperkube@sha256:1b902f64d75320d63da9c237d8859f99d039c73f9cfd796bc3e55800551464f8_amd64", + "product": { + "name": "openshift4/ose-hyperkube@sha256:1b902f64d75320d63da9c237d8859f99d039c73f9cfd796bc3e55800551464f8_amd64", + "product_id": "openshift4/ose-hyperkube@sha256:1b902f64d75320d63da9c237d8859f99d039c73f9cfd796bc3e55800551464f8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-hyperkube@sha256:1b902f64d75320d63da9c237d8859f99d039c73f9cfd796bc3e55800551464f8?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-hyperkube&tag=v4.11.0-202310201801.p0.gc70bea0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-keepalived-ipfailover@sha256:9d47b9bf7b91d3002a0da2db8dbd960116be2e78b5322a369bf06cdacf320a04_amd64", + "product": { + "name": "openshift4/ose-keepalived-ipfailover@sha256:9d47b9bf7b91d3002a0da2db8dbd960116be2e78b5322a369bf06cdacf320a04_amd64", + "product_id": "openshift4/ose-keepalived-ipfailover@sha256:9d47b9bf7b91d3002a0da2db8dbd960116be2e78b5322a369bf06cdacf320a04_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-keepalived-ipfailover@sha256:9d47b9bf7b91d3002a0da2db8dbd960116be2e78b5322a369bf06cdacf320a04?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover&tag=v4.11.0-202310200743.p0.gf1330f6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-pod@sha256:32f057e51d39a50582e0a63945bda5d68a28748a0a5930e9b4d1a41420d120d4_amd64", + "product": { + "name": "openshift4/ose-pod@sha256:32f057e51d39a50582e0a63945bda5d68a28748a0a5930e9b4d1a41420d120d4_amd64", + "product_id": "openshift4/ose-pod@sha256:32f057e51d39a50582e0a63945bda5d68a28748a0a5930e9b4d1a41420d120d4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-pod@sha256:32f057e51d39a50582e0a63945bda5d68a28748a0a5930e9b4d1a41420d120d4?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-pod&tag=v4.11.0-202310201801.p0.gc70bea0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-registry@sha256:d89ce42899c02c1ad3054f594e5090472450d6ce791825c518bcf2841bc9f1bd_amd64", + "product": { + "name": "openshift4/ose-docker-registry@sha256:d89ce42899c02c1ad3054f594e5090472450d6ce791825c518bcf2841bc9f1bd_amd64", + "product_id": "openshift4/ose-docker-registry@sha256:d89ce42899c02c1ad3054f594e5090472450d6ce791825c518bcf2841bc9f1bd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-registry@sha256:d89ce42899c02c1ad3054f594e5090472450d6ce791825c518bcf2841bc9f1bd?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-docker-registry&tag=v4.11.0-202310200743.p0.g431737b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tests@sha256:ae9d39df5899132339bdf9e68f5ff61db7851cd264d624446575573b8b504653_amd64", + "product": { + "name": "openshift4/ose-tests@sha256:ae9d39df5899132339bdf9e68f5ff61db7851cd264d624446575573b8b504653_amd64", + "product_id": "openshift4/ose-tests@sha256:ae9d39df5899132339bdf9e68f5ff61db7851cd264d624446575573b8b504653_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-tests@sha256:ae9d39df5899132339bdf9e68f5ff61db7851cd264d624446575573b8b504653?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-tests&tag=v4.11.0-202310260725.p0.gb34b8a2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:c2dc24d90fed7771e6a66aec921741e0c9af41670558c17397b72bc572f8f570_amd64", + "product": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:c2dc24d90fed7771e6a66aec921741e0c9af41670558c17397b72bc572f8f570_amd64", + "product_id": "openshift4/ose-openshift-state-metrics-rhel8@sha256:c2dc24d90fed7771e6a66aec921741e0c9af41670558c17397b72bc572f8f570_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-state-metrics-rhel8@sha256:c2dc24d90fed7771e6a66aec921741e0c9af41670558c17397b72bc572f8f570?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8&tag=v4.11.0-202310200743.p0.g1a7a5dc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-lifecycle-manager@sha256:23542d21cc7707ecb11ec2a8150842466ea60efc7703262072a2b37493006396_amd64", + "product": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:23542d21cc7707ecb11ec2a8150842466ea60efc7703262072a2b37493006396_amd64", + "product_id": "openshift4/ose-operator-lifecycle-manager@sha256:23542d21cc7707ecb11ec2a8150842466ea60efc7703262072a2b37493006396_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-lifecycle-manager@sha256:23542d21cc7707ecb11ec2a8150842466ea60efc7703262072a2b37493006396?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager&tag=v4.11.0-202310200743.p0.ge0e9236.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-registry@sha256:63b582fe9b2d22348d2937eb689e8b73eb885f6b285bb9388a8e176ffc7e135a_amd64", + "product": { + "name": "openshift4/ose-operator-registry@sha256:63b582fe9b2d22348d2937eb689e8b73eb885f6b285bb9388a8e176ffc7e135a_amd64", + "product_id": "openshift4/ose-operator-registry@sha256:63b582fe9b2d22348d2937eb689e8b73eb885f6b285bb9388a8e176ffc7e135a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-registry@sha256:63b582fe9b2d22348d2937eb689e8b73eb885f6b285bb9388a8e176ffc7e135a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-operator-registry&tag=v4.11.0-202310200743.p0.ge0e9236.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:2b257b13a862b079351f0ad6aa1efa0cacf563d33c818c9da6d7e311e4cc41ad_amd64", + "product": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:2b257b13a862b079351f0ad6aa1efa0cacf563d33c818c9da6d7e311e4cc41ad_amd64", + "product_id": "openshift4/ose-agent-installer-api-server-rhel8@sha256:2b257b13a862b079351f0ad6aa1efa0cacf563d33c818c9da6d7e311e4cc41ad_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-api-server-rhel8@sha256:2b257b13a862b079351f0ad6aa1efa0cacf563d33c818c9da6d7e311e4cc41ad?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8&tag=v4.11.0-202310251925.p0.gbc51be8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:64d0b91e27e269cd2d8bfd09712882bcdee4efc3ca4ec7052777ff7b904b0ab5_amd64", + "product": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:64d0b91e27e269cd2d8bfd09712882bcdee4efc3ca4ec7052777ff7b904b0ab5_amd64", + "product_id": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:64d0b91e27e269cd2d8bfd09712882bcdee4efc3ca4ec7052777ff7b904b0ab5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-csr-approver-rhel8@sha256:64d0b91e27e269cd2d8bfd09712882bcdee4efc3ca4ec7052777ff7b904b0ab5?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8&tag=v4.11.0-202310251925.p0.gaa46748.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:62b9e098bf912ad4cda376c548912bb49f13813cae4d505685bc308fb316998b_amd64", + "product": { + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:62b9e098bf912ad4cda376c548912bb49f13813cae4d505685bc308fb316998b_amd64", + "product_id": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:62b9e098bf912ad4cda376c548912bb49f13813cae4d505685bc308fb316998b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-node-agent-rhel8@sha256:62b9e098bf912ad4cda376c548912bb49f13813cae4d505685bc308fb316998b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8&tag=v4.11.0-202310200743.p0.ge74ffbf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:51356c83300a918ab71d99603ae33df5a16baaae5d71bd6becb6daecdb52e360_amd64", + "product": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:51356c83300a918ab71d99603ae33df5a16baaae5d71bd6becb6daecdb52e360_amd64", + "product_id": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:51356c83300a918ab71d99603ae33df5a16baaae5d71bd6becb6daecdb52e360_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-orchestrator-rhel8@sha256:51356c83300a918ab71d99603ae33df5a16baaae5d71bd6becb6daecdb52e360?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8&tag=v4.11.0-202310200743.p0.gaa46748.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:fee723af66f10aacdf082bf936831c603b9790a65e7d331b760762cc7b9a8ef4_amd64", + "product": { + "name": "openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:fee723af66f10aacdf082bf936831c603b9790a65e7d331b760762cc7b9a8ef4_amd64", + "product_id": "openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:fee723af66f10aacdf082bf936831c603b9790a65e7d331b760762cc7b9a8ef4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-alibaba-cloud-controller-manager-rhel8@sha256:fee723af66f10aacdf082bf936831c603b9790a65e7d331b760762cc7b9a8ef4?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8&tag=v4.11.0-202310200743.p0.g0daf34f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:1476d5ac13b985fbd2145f66b56b09876b24476d65669b52cef846568ae9ebaa_amd64", + "product": { + "name": "openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:1476d5ac13b985fbd2145f66b56b09876b24476d65669b52cef846568ae9ebaa_amd64", + "product_id": "openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:1476d5ac13b985fbd2145f66b56b09876b24476d65669b52cef846568ae9ebaa_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:1476d5ac13b985fbd2145f66b56b09876b24476d65669b52cef846568ae9ebaa?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8&tag=v4.11.0-202310260625.p0.g10cd3a7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:83814af63879d7d85b065d5bdaf61a201cd4c85104031558d7936ba32d8062f7_amd64", + "product": { + "name": "openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:83814af63879d7d85b065d5bdaf61a201cd4c85104031558d7936ba32d8062f7_amd64", + "product_id": "openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:83814af63879d7d85b065d5bdaf61a201cd4c85104031558d7936ba32d8062f7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:83814af63879d7d85b065d5bdaf61a201cd4c85104031558d7936ba32d8062f7?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8&tag=v4.11.0-202310260725.p0.g481b4d4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-alibaba-machine-controllers-rhel8@sha256:e3899346afa30203bb69417903204370246512c52a194930a5bdfa0ba5ac6940_amd64", + "product": { + "name": "openshift4/ose-alibaba-machine-controllers-rhel8@sha256:e3899346afa30203bb69417903204370246512c52a194930a5bdfa0ba5ac6940_amd64", + "product_id": "openshift4/ose-alibaba-machine-controllers-rhel8@sha256:e3899346afa30203bb69417903204370246512c52a194930a5bdfa0ba5ac6940_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-alibaba-machine-controllers-rhel8@sha256:e3899346afa30203bb69417903204370246512c52a194930a5bdfa0ba5ac6940?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8&tag=v4.11.0-202310200743.p0.g4145108.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:8c5bc12cd6d2c91fad74fa4f973ef9d797444990b0441f7085c785e066abd666_amd64", + "product": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:8c5bc12cd6d2c91fad74fa4f973ef9d797444990b0441f7085c785e066abd666_amd64", + "product_id": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:8c5bc12cd6d2c91fad74fa4f973ef9d797444990b0441f7085c785e066abd666_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-apiserver-network-proxy-rhel8@sha256:8c5bc12cd6d2c91fad74fa4f973ef9d797444990b0441f7085c785e066abd666?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8&tag=v4.11.0-202310201801.p0.g15cd434.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:23000beca2cfc5a71642513c117003694e46def7604444df234e6f046379e29f_amd64", + "product": { + "name": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:23000beca2cfc5a71642513c117003694e46def7604444df234e6f046379e29f_amd64", + "product_id": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:23000beca2cfc5a71642513c117003694e46def7604444df234e6f046379e29f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-cloud-controller-manager-rhel8@sha256:23000beca2cfc5a71642513c117003694e46def7604444df234e6f046379e29f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8&tag=v4.11.0-202310200743.p0.gea1a9b2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:53649e77c1149b1ccaedf20b17a15154d59f5fe93a8861c14ce5b2871bcf8cc6_amd64", + "product": { + "name": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:53649e77c1149b1ccaedf20b17a15154d59f5fe93a8861c14ce5b2871bcf8cc6_amd64", + "product_id": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:53649e77c1149b1ccaedf20b17a15154d59f5fe93a8861c14ce5b2871bcf8cc6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-cluster-api-controllers-rhel8@sha256:53649e77c1149b1ccaedf20b17a15154d59f5fe93a8861c14ce5b2871bcf8cc6?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8&tag=v4.11.0-202310200743.p0.gb3fe15b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:0034afd914ee031f32134d562b32799ae67ecdc60d9c2f02adef8da6a00486d2_amd64", + "product": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:0034afd914ee031f32134d562b32799ae67ecdc60d9c2f02adef8da6a00486d2_amd64", + "product_id": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:0034afd914ee031f32134d562b32799ae67ecdc60d9c2f02adef8da6a00486d2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel8@sha256:0034afd914ee031f32134d562b32799ae67ecdc60d9c2f02adef8da6a00486d2?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8&tag=v4.11.0-202310251225.p0.g46bd913.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:eb8e56dc5352b3799e952489ac9af8ab4b596bfc01ac33bb53614683dc72635d_amd64", + "product": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:eb8e56dc5352b3799e952489ac9af8ab4b596bfc01ac33bb53614683dc72635d_amd64", + "product_id": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:eb8e56dc5352b3799e952489ac9af8ab4b596bfc01ac33bb53614683dc72635d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel8-operator@sha256:eb8e56dc5352b3799e952489ac9af8ab4b596bfc01ac33bb53614683dc72635d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator&tag=v4.11.0-202310251925.p0.g2c9edc2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:0655f4ee96e6df306c6d42ee1999ec69462a29642f6fc066967897fb0edc982d_amd64", + "product": { + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:0655f4ee96e6df306c6d42ee1999ec69462a29642f6fc066967897fb0edc982d_amd64", + "product_id": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:0655f4ee96e6df306c6d42ee1999ec69462a29642f6fc066967897fb0edc982d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-pod-identity-webhook-rhel8@sha256:0655f4ee96e6df306c6d42ee1999ec69462a29642f6fc066967897fb0edc982d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8&tag=v4.11.0-202310200743.p0.ga085f1c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:067780589e4742ffd52d7916fda7c12ddd4c6699574b2c1809b6857ecb50e504_amd64", + "product": { + "name": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:067780589e4742ffd52d7916fda7c12ddd4c6699574b2c1809b6857ecb50e504_amd64", + "product_id": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:067780589e4742ffd52d7916fda7c12ddd4c6699574b2c1809b6857ecb50e504_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-cloud-controller-manager-rhel8@sha256:067780589e4742ffd52d7916fda7c12ddd4c6699574b2c1809b6857ecb50e504?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8&tag=v4.11.0-202310200743.p0.g6bf2e33.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:fa1fcca522d86733e103d2366eb74de1c5454421ebbf89d0822f4d6b7d14bc28_amd64", + "product": { + "name": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:fa1fcca522d86733e103d2366eb74de1c5454421ebbf89d0822f4d6b7d14bc28_amd64", + "product_id": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:fa1fcca522d86733e103d2366eb74de1c5454421ebbf89d0822f4d6b7d14bc28_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-cloud-node-manager-rhel8@sha256:fa1fcca522d86733e103d2366eb74de1c5454421ebbf89d0822f4d6b7d14bc28?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8&tag=v4.11.0-202310200743.p0.g6bf2e33.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:3f62ef833f484877acc57d8768678db6afe43e6a9acd05fd4ccba5fcdb1e5fd9_amd64", + "product": { + "name": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:3f62ef833f484877acc57d8768678db6afe43e6a9acd05fd4ccba5fcdb1e5fd9_amd64", + "product_id": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:3f62ef833f484877acc57d8768678db6afe43e6a9acd05fd4ccba5fcdb1e5fd9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-cluster-api-controllers-rhel8@sha256:3f62ef833f484877acc57d8768678db6afe43e6a9acd05fd4ccba5fcdb1e5fd9?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8&tag=v4.11.0-202310200743.p0.ga851a35.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:46e580fc08cad0681a68217c0266b17a5906a920ebff7bed3d6ef9046d707987_amd64", + "product": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:46e580fc08cad0681a68217c0266b17a5906a920ebff7bed3d6ef9046d707987_amd64", + "product_id": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:46e580fc08cad0681a68217c0266b17a5906a920ebff7bed3d6ef9046d707987_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-disk-csi-driver-rhel8@sha256:46e580fc08cad0681a68217c0266b17a5906a920ebff7bed3d6ef9046d707987?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8&tag=v4.11.0-202310271901.p0.gf4bb81e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:60b0b8078ee1e2b799de1557a9fbb0dbf7b6ee896a9674b39e7cd8c227351e52_amd64", + "product": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:60b0b8078ee1e2b799de1557a9fbb0dbf7b6ee896a9674b39e7cd8c227351e52_amd64", + "product_id": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:60b0b8078ee1e2b799de1557a9fbb0dbf7b6ee896a9674b39e7cd8c227351e52_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-disk-csi-driver-rhel8-operator@sha256:60b0b8078ee1e2b799de1557a9fbb0dbf7b6ee896a9674b39e7cd8c227351e52?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator&tag=v4.11.0-202310200743.p0.g7e5e445.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:f89ed6c93b544c7c73ca2123303c3be3f91ba0f36e560da5e8e1174f2040351d_amd64", + "product": { + "name": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:f89ed6c93b544c7c73ca2123303c3be3f91ba0f36e560da5e8e1174f2040351d_amd64", + "product_id": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:f89ed6c93b544c7c73ca2123303c3be3f91ba0f36e560da5e8e1174f2040351d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-file-csi-driver-rhel8@sha256:f89ed6c93b544c7c73ca2123303c3be3f91ba0f36e560da5e8e1174f2040351d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8&tag=v4.11.0-202310260725.p0.gc322c8f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e779a68012a97d70c86a8220676152efe87449b85fd24f3a424c4d629c1928ba_amd64", + "product": { + "name": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e779a68012a97d70c86a8220676152efe87449b85fd24f3a424c4d629c1928ba_amd64", + "product_id": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e779a68012a97d70c86a8220676152efe87449b85fd24f3a424c4d629c1928ba_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-file-csi-driver-operator-rhel8@sha256:e779a68012a97d70c86a8220676152efe87449b85fd24f3a424c4d629c1928ba?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8&tag=v4.11.0-202310260725.p0.ga5c172b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:37b542d202b5f8cb03a8057beda98f4c4eea212d1a4fe0bc996b77ee54d7cda6_amd64", + "product": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:37b542d202b5f8cb03a8057beda98f4c4eea212d1a4fe0bc996b77ee54d7cda6_amd64", + "product_id": "openshift4/ose-baremetal-installer-rhel8@sha256:37b542d202b5f8cb03a8057beda98f4c4eea212d1a4fe0bc996b77ee54d7cda6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-installer-rhel8@sha256:37b542d202b5f8cb03a8057beda98f4c4eea212d1a4fe0bc996b77ee54d7cda6?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8&tag=v4.11.0-202310200743.p0.gc63578d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:c69f493e7a13024e627fd483132080fc8ecc9555a2f2abfdc8d2f1e6a3fcc634_amd64", + "product": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:c69f493e7a13024e627fd483132080fc8ecc9555a2f2abfdc8d2f1e6a3fcc634_amd64", + "product_id": "openshift4/ose-baremetal-rhel8-operator@sha256:c69f493e7a13024e627fd483132080fc8ecc9555a2f2abfdc8d2f1e6a3fcc634_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-rhel8-operator@sha256:c69f493e7a13024e627fd483132080fc8ecc9555a2f2abfdc8d2f1e6a3fcc634?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel8-operator&tag=v4.11.0-202310201226.p0.gf7b90bf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:b8176f8f865018cc0f8f011fd9843b78c4d7aa2619c406965f1d4e0e680b677a_amd64", + "product": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:b8176f8f865018cc0f8f011fd9843b78c4d7aa2619c406965f1d4e0e680b677a_amd64", + "product_id": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:b8176f8f865018cc0f8f011fd9843b78c4d7aa2619c406965f1d4e0e680b677a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-runtimecfg-rhel8@sha256:b8176f8f865018cc0f8f011fd9843b78c4d7aa2619c406965f1d4e0e680b677a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8&tag=v4.11.0-202310200743.p0.g09f5604.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli-artifacts@sha256:96dc9a87125d233b608ed38e74d209334a22edaf152098b063fa11ca1fd8b323_amd64", + "product": { + "name": "openshift4/ose-cli-artifacts@sha256:96dc9a87125d233b608ed38e74d209334a22edaf152098b063fa11ca1fd8b323_amd64", + "product_id": "openshift4/ose-cli-artifacts@sha256:96dc9a87125d233b608ed38e74d209334a22edaf152098b063fa11ca1fd8b323_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli-artifacts@sha256:96dc9a87125d233b608ed38e74d209334a22edaf152098b063fa11ca1fd8b323?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cli-artifacts&tag=v4.11.0-202310251925.p0.gbbc7c58.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-credential-operator@sha256:bbbd343768786c60462ab4ae0ab321e8178c2f43bb803d34e462858d3438e30f_amd64", + "product": { + "name": "openshift4/ose-cloud-credential-operator@sha256:bbbd343768786c60462ab4ae0ab321e8178c2f43bb803d34e462858d3438e30f_amd64", + "product_id": "openshift4/ose-cloud-credential-operator@sha256:bbbd343768786c60462ab4ae0ab321e8178c2f43bb803d34e462858d3438e30f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-credential-operator@sha256:bbbd343768786c60462ab4ae0ab321e8178c2f43bb803d34e462858d3438e30f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cloud-credential-operator&tag=v4.11.0-202310200743.p0.g7c4c935.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:6c21303c0bab51cc5e19cfaba71987d1eb791dea378519d1b9eaa8b4860d8262_amd64", + "product": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:6c21303c0bab51cc5e19cfaba71987d1eb791dea378519d1b9eaa8b4860d8262_amd64", + "product_id": "openshift4/cloud-network-config-controller-rhel8@sha256:6c21303c0bab51cc5e19cfaba71987d1eb791dea378519d1b9eaa8b4860d8262_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cloud-network-config-controller-rhel8@sha256:6c21303c0bab51cc5e19cfaba71987d1eb791dea378519d1b9eaa8b4860d8262?arch=amd64&repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel8&tag=v4.11.0-202310200743.p0.gfd849e3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-api-rhel8@sha256:ba337238a419795910ff972dcfaf815fdcbb409071917779ccc10526e7e60151_amd64", + "product": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:ba337238a419795910ff972dcfaf815fdcbb409071917779ccc10526e7e60151_amd64", + "product_id": "openshift4/ose-cluster-api-rhel8@sha256:ba337238a419795910ff972dcfaf815fdcbb409071917779ccc10526e7e60151_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-api-rhel8@sha256:ba337238a419795910ff972dcfaf815fdcbb409071917779ccc10526e7e60151?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel8&tag=v4.11.0-202310200743.p0.gf9c215c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-authentication-operator@sha256:cd36c522540fe8691dca5f0c037be6faa9594f5861dd1e18c39bd5108ae60fcb_amd64", + "product": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:cd36c522540fe8691dca5f0c037be6faa9594f5861dd1e18c39bd5108ae60fcb_amd64", + "product_id": "openshift4/ose-cluster-authentication-operator@sha256:cd36c522540fe8691dca5f0c037be6faa9594f5861dd1e18c39bd5108ae60fcb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-authentication-operator@sha256:cd36c522540fe8691dca5f0c037be6faa9594f5861dd1e18c39bd5108ae60fcb?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-operator&tag=v4.11.0-202310200743.p0.ge2bcbaa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:c8212a5a769a532c45ee7d3a5f6718cf10c36fd531bd9594aa7bc31c197cbb5a_amd64", + "product": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:c8212a5a769a532c45ee7d3a5f6718cf10c36fd531bd9594aa7bc31c197cbb5a_amd64", + "product_id": "openshift4/ose-cluster-autoscaler-operator@sha256:c8212a5a769a532c45ee7d3a5f6718cf10c36fd531bd9594aa7bc31c197cbb5a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler-operator@sha256:c8212a5a769a532c45ee7d3a5f6718cf10c36fd531bd9594aa7bc31c197cbb5a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-operator&tag=v4.11.0-202310200743.p0.gfcffbcd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:bedb99805e871c6ddcfeee8ff60c492703e439e9853831d328c0ebc5f093e367_amd64", + "product": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:bedb99805e871c6ddcfeee8ff60c492703e439e9853831d328c0ebc5f093e367_amd64", + "product_id": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:bedb99805e871c6ddcfeee8ff60c492703e439e9853831d328c0ebc5f093e367_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-baremetal-operator-rhel8@sha256:bedb99805e871c6ddcfeee8ff60c492703e439e9853831d328c0ebc5f093e367?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8&tag=v4.11.0-202310251925.p0.g4d2ec1d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-bootstrap@sha256:9e6b453b2ce045c9e9ba1a698d99784cadfbf3574750f4fab4cd937d9660bc6c_amd64", + "product": { + "name": "openshift4/ose-cluster-bootstrap@sha256:9e6b453b2ce045c9e9ba1a698d99784cadfbf3574750f4fab4cd937d9660bc6c_amd64", + "product_id": "openshift4/ose-cluster-bootstrap@sha256:9e6b453b2ce045c9e9ba1a698d99784cadfbf3574750f4fab4cd937d9660bc6c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-bootstrap@sha256:9e6b453b2ce045c9e9ba1a698d99784cadfbf3574750f4fab4cd937d9660bc6c?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap&tag=v4.11.0-202310200743.p0.gffb5e2e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:736cdb1d689532521a6a57016298b5284bcc098d29d634937317939d5116cf7b_amd64", + "product": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:736cdb1d689532521a6a57016298b5284bcc098d29d634937317939d5116cf7b_amd64", + "product_id": "openshift4/ose-cluster-capi-rhel8-operator@sha256:736cdb1d689532521a6a57016298b5284bcc098d29d634937317939d5116cf7b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-rhel8-operator@sha256:736cdb1d689532521a6a57016298b5284bcc098d29d634937317939d5116cf7b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator&tag=v4.11.0-202310200743.p0.g06d77ef.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:736cdb1d689532521a6a57016298b5284bcc098d29d634937317939d5116cf7b_amd64", + "product": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:736cdb1d689532521a6a57016298b5284bcc098d29d634937317939d5116cf7b_amd64", + "product_id": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:736cdb1d689532521a6a57016298b5284bcc098d29d634937317939d5116cf7b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-operator-container-rhel8@sha256:736cdb1d689532521a6a57016298b5284bcc098d29d634937317939d5116cf7b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8&tag=v4.11.0-202310200743.p0.g06d77ef.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:9bb2a75e3fd0ba23d7badf305d83bc06ab2ffdd61837d160474117249279d9fe_amd64", + "product": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:9bb2a75e3fd0ba23d7badf305d83bc06ab2ffdd61837d160474117249279d9fe_amd64", + "product_id": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:9bb2a75e3fd0ba23d7badf305d83bc06ab2ffdd61837d160474117249279d9fe_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:9bb2a75e3fd0ba23d7badf305d83bc06ab2ffdd61837d160474117249279d9fe?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8&tag=v4.11.0-202310200743.p0.g2dbffc6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-config-operator@sha256:86e9009e3b427f4c82ccf3b79a37d550656d74e014676b9ba11299cc223fbd99_amd64", + "product": { + "name": "openshift4/ose-cluster-config-operator@sha256:86e9009e3b427f4c82ccf3b79a37d550656d74e014676b9ba11299cc223fbd99_amd64", + "product_id": "openshift4/ose-cluster-config-operator@sha256:86e9009e3b427f4c82ccf3b79a37d550656d74e014676b9ba11299cc223fbd99_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-config-operator@sha256:86e9009e3b427f4c82ccf3b79a37d550656d74e014676b9ba11299cc223fbd99?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-config-operator&tag=v4.11.0-202310200743.p0.g0e01b06.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:2149d32e6ca8a2f2a3e61a1f422fbc30f690882cf76a387cf4e9b1973ed581fa_amd64", + "product": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:2149d32e6ca8a2f2a3e61a1f422fbc30f690882cf76a387cf4e9b1973ed581fa_amd64", + "product_id": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:2149d32e6ca8a2f2a3e61a1f422fbc30f690882cf76a387cf4e9b1973ed581fa_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:2149d32e6ca8a2f2a3e61a1f422fbc30f690882cf76a387cf4e9b1973ed581fa?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator&tag=v4.11.0-202310280825.p0.ga95aec8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-dns-operator@sha256:1027ac246de8778ff79d4c939b39251d8921be01d5678437d0614ece60a4055f_amd64", + "product": { + "name": "openshift4/ose-cluster-dns-operator@sha256:1027ac246de8778ff79d4c939b39251d8921be01d5678437d0614ece60a4055f_amd64", + "product_id": "openshift4/ose-cluster-dns-operator@sha256:1027ac246de8778ff79d4c939b39251d8921be01d5678437d0614ece60a4055f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-dns-operator@sha256:1027ac246de8778ff79d4c939b39251d8921be01d5678437d0614ece60a4055f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-dns-operator&tag=v4.11.0-202310270443.p0.g69b0ceb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-image-registry-operator@sha256:d0144c7c5f67b9a954c88f86a89b13a6e3a38747b1c4999be184af8c9627a23b_amd64", + "product": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:d0144c7c5f67b9a954c88f86a89b13a6e3a38747b1c4999be184af8c9627a23b_amd64", + "product_id": "openshift4/ose-cluster-image-registry-operator@sha256:d0144c7c5f67b9a954c88f86a89b13a6e3a38747b1c4999be184af8c9627a23b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-image-registry-operator@sha256:d0144c7c5f67b9a954c88f86a89b13a6e3a38747b1c4999be184af8c9627a23b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-operator&tag=v4.11.0-202310200743.p0.g1583069.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-ingress-operator@sha256:4b325435608ffaa7b2b254316e05b62e87b578d3cec42f7e71ac0af2362b15b3_amd64", + "product": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:4b325435608ffaa7b2b254316e05b62e87b578d3cec42f7e71ac0af2362b15b3_amd64", + "product_id": "openshift4/ose-cluster-ingress-operator@sha256:4b325435608ffaa7b2b254316e05b62e87b578d3cec42f7e71ac0af2362b15b3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-ingress-operator@sha256:4b325435608ffaa7b2b254316e05b62e87b578d3cec42f7e71ac0af2362b15b3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-operator&tag=v4.11.0-202310291243.p0.gb45e64a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:02a8c3209b2b0ed9bb3d602dac2ca663ee1653b3d565958631937c066a7ac9f1_amd64", + "product": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:02a8c3209b2b0ed9bb3d602dac2ca663ee1653b3d565958631937c066a7ac9f1_amd64", + "product_id": "openshift4/ose-cluster-kube-apiserver-operator@sha256:02a8c3209b2b0ed9bb3d602dac2ca663ee1653b3d565958631937c066a7ac9f1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-apiserver-operator@sha256:02a8c3209b2b0ed9bb3d602dac2ca663ee1653b3d565958631937c066a7ac9f1?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator&tag=v4.11.0-202310200743.p0.g7021090.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:1e77933d50a9798f7189a37153cd9a04fa2c7ae84e1048c659233984a0dd1c46_amd64", + "product": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:1e77933d50a9798f7189a37153cd9a04fa2c7ae84e1048c659233984a0dd1c46_amd64", + "product_id": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:1e77933d50a9798f7189a37153cd9a04fa2c7ae84e1048c659233984a0dd1c46_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel8-operator@sha256:1e77933d50a9798f7189a37153cd9a04fa2c7ae84e1048c659233984a0dd1c46?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator&tag=v4.11.0-202310200743.p0.g21da027.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:ccb3c66dfddf6129e905f0cc0556196dbd8997483bf2082ebc02883a795871aa_amd64", + "product": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:ccb3c66dfddf6129e905f0cc0556196dbd8997483bf2082ebc02883a795871aa_amd64", + "product_id": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:ccb3c66dfddf6129e905f0cc0556196dbd8997483bf2082ebc02883a795871aa_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-controller-manager-operator@sha256:ccb3c66dfddf6129e905f0cc0556196dbd8997483bf2082ebc02883a795871aa?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator&tag=v4.11.0-202310200743.p0.ge65f505.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:185ac3f27ebb9d5178205a809541000e2a81b5d62caa7620487b58e9138e97a5_amd64", + "product": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:185ac3f27ebb9d5178205a809541000e2a81b5d62caa7620487b58e9138e97a5_amd64", + "product_id": "openshift4/ose-cluster-kube-scheduler-operator@sha256:185ac3f27ebb9d5178205a809541000e2a81b5d62caa7620487b58e9138e97a5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-scheduler-operator@sha256:185ac3f27ebb9d5178205a809541000e2a81b5d62caa7620487b58e9138e97a5?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator&tag=v4.11.0-202310200743.p0.g324e1c3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:e88f6153b208debd5739278d998228362fe129c832d260f6787956d7c4931b2a_amd64", + "product": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:e88f6153b208debd5739278d998228362fe129c832d260f6787956d7c4931b2a_amd64", + "product_id": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:e88f6153b208debd5739278d998228362fe129c832d260f6787956d7c4931b2a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:e88f6153b208debd5739278d998228362fe129c832d260f6787956d7c4931b2a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator&tag=v4.11.0-202310200743.p0.g12d050a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-machine-approver@sha256:09d3b736aa01ecb04dc1fc13500db5cdc44de99abcc8d6bdffde84b03473214d_amd64", + "product": { + "name": "openshift4/ose-cluster-machine-approver@sha256:09d3b736aa01ecb04dc1fc13500db5cdc44de99abcc8d6bdffde84b03473214d_amd64", + "product_id": "openshift4/ose-cluster-machine-approver@sha256:09d3b736aa01ecb04dc1fc13500db5cdc44de99abcc8d6bdffde84b03473214d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-machine-approver@sha256:09d3b736aa01ecb04dc1fc13500db5cdc44de99abcc8d6bdffde84b03473214d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver&tag=v4.11.0-202310200743.p0.gaa62f3b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:ea06be74212b7b6264be5cde5d45644133103263d9d070a7b06369e5048b18aa_amd64", + "product": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:ea06be74212b7b6264be5cde5d45644133103263d9d070a7b06369e5048b18aa_amd64", + "product_id": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:ea06be74212b7b6264be5cde5d45644133103263d9d070a7b06369e5048b18aa_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-apiserver-operator@sha256:ea06be74212b7b6264be5cde5d45644133103263d9d070a7b06369e5048b18aa?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator&tag=v4.11.0-202310200743.p0.gcb39fde.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:226d24abd454e8a147dd34b945aca759d4a7acca6fd70af97617817354cc354b_amd64", + "product": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:226d24abd454e8a147dd34b945aca759d4a7acca6fd70af97617817354cc354b_amd64", + "product_id": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:226d24abd454e8a147dd34b945aca759d4a7acca6fd70af97617817354cc354b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-controller-manager-operator@sha256:226d24abd454e8a147dd34b945aca759d4a7acca6fd70af97617817354cc354b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator&tag=v4.11.0-202310200743.p0.ga536525.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:1da2594228aa0a8a382925208fcd0e5dc61cb04c0bef9dc89f973e55a1d0c6be_amd64", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:1da2594228aa0a8a382925208fcd0e5dc61cb04c0bef9dc89f973e55a1d0c6be_amd64", + "product_id": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:1da2594228aa0a8a382925208fcd0e5dc61cb04c0bef9dc89f973e55a1d0c6be_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8-operator@sha256:1da2594228aa0a8a382925208fcd0e5dc61cb04c0bef9dc89f973e55a1d0c6be?arch=amd64&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator&tag=v4.11.0-202310200743.p0.g1c75c12.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:7f025ebd14d5d8ff2cacad4d9054132a50ebc2d9a487c138516047a7caefad27_amd64", + "product": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:7f025ebd14d5d8ff2cacad4d9054132a50ebc2d9a487c138516047a7caefad27_amd64", + "product_id": "openshift4/ose-cluster-policy-controller-rhel8@sha256:7f025ebd14d5d8ff2cacad4d9054132a50ebc2d9a487c138516047a7caefad27_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-policy-controller-rhel8@sha256:7f025ebd14d5d8ff2cacad4d9054132a50ebc2d9a487c138516047a7caefad27?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8&tag=v4.11.0-202310200743.p0.g5651181.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-samples-operator@sha256:7782a01a8ca018e018c0846f8bbb0ff4701fb8fc7d1894ea7adda8d7cd75d992_amd64", + "product": { + "name": "openshift4/ose-cluster-samples-operator@sha256:7782a01a8ca018e018c0846f8bbb0ff4701fb8fc7d1894ea7adda8d7cd75d992_amd64", + "product_id": "openshift4/ose-cluster-samples-operator@sha256:7782a01a8ca018e018c0846f8bbb0ff4701fb8fc7d1894ea7adda8d7cd75d992_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-samples-operator@sha256:7782a01a8ca018e018c0846f8bbb0ff4701fb8fc7d1894ea7adda8d7cd75d992?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-samples-operator&tag=v4.11.0-202310200743.p0.g051761b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-storage-operator@sha256:502a502baf9ae0f6b0080cddd0342ba26a14c80dd842639047a957fe33d73964_amd64", + "product": { + "name": "openshift4/ose-cluster-storage-operator@sha256:502a502baf9ae0f6b0080cddd0342ba26a14c80dd842639047a957fe33d73964_amd64", + "product_id": "openshift4/ose-cluster-storage-operator@sha256:502a502baf9ae0f6b0080cddd0342ba26a14c80dd842639047a957fe33d73964_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-storage-operator@sha256:502a502baf9ae0f6b0080cddd0342ba26a14c80dd842639047a957fe33d73964?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-storage-operator&tag=v4.11.0-202310251025.p0.gbc69ea3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-update-keys@sha256:ff4ad9c01698263c0cce717e4cb4b7f1ee4882f12a0f2ea19d004a348137b2e0_amd64", + "product": { + "name": "openshift4/ose-cluster-update-keys@sha256:ff4ad9c01698263c0cce717e4cb4b7f1ee4882f12a0f2ea19d004a348137b2e0_amd64", + "product_id": "openshift4/ose-cluster-update-keys@sha256:ff4ad9c01698263c0cce717e4cb4b7f1ee4882f12a0f2ea19d004a348137b2e0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-update-keys@sha256:ff4ad9c01698263c0cce717e4cb4b7f1ee4882f12a0f2ea19d004a348137b2e0?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys&tag=v4.11.0-202310200743.p0.g289032f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:834cb187f56cf4da481e69d43800fd0420fe06d79a70817cef99f9adb9fbed3e_amd64", + "product": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:834cb187f56cf4da481e69d43800fd0420fe06d79a70817cef99f9adb9fbed3e_amd64", + "product_id": "openshift4/ose-container-networking-plugins-rhel8@sha256:834cb187f56cf4da481e69d43800fd0420fe06d79a70817cef99f9adb9fbed3e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-container-networking-plugins-rhel8@sha256:834cb187f56cf4da481e69d43800fd0420fe06d79a70817cef99f9adb9fbed3e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8&tag=v4.11.0-202310200743.p0.g0ad9da6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:0ee08f4af2b6f7ed675c533b70e9cd59bc009c2dd99f533cbbc27f450fb121fb_amd64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:0ee08f4af2b6f7ed675c533b70e9cd59bc009c2dd99f533cbbc27f450fb121fb_amd64", + "product_id": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:0ee08f4af2b6f7ed675c533b70e9cd59bc009c2dd99f533cbbc27f450fb121fb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-rhel8@sha256:0ee08f4af2b6f7ed675c533b70e9cd59bc009c2dd99f533cbbc27f450fb121fb?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8&tag=v4.11.0-202310200743.p0.gb5a5a02.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:1baab217d030ce975f489c6347c27d36692d66af462133184937d460d7871840_amd64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:1baab217d030ce975f489c6347c27d36692d66af462133184937d460d7871840_amd64", + "product_id": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:1baab217d030ce975f489c6347c27d36692d66af462133184937d460d7871840_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-operator-rhel8@sha256:1baab217d030ce975f489c6347c27d36692d66af462133184937d460d7871840?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8&tag=v4.11.0-202310200743.p0.g20c9586.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:a4955b2531a0df2d4e63487ae4283a6cdb1bc226e7bbf19214e277fa9cc2de59_amd64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:a4955b2531a0df2d4e63487ae4283a6cdb1bc226e7bbf19214e277fa9cc2de59_amd64", + "product_id": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:a4955b2531a0df2d4e63487ae4283a6cdb1bc226e7bbf19214e277fa9cc2de59_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-webhook-rhel8@sha256:a4955b2531a0df2d4e63487ae4283a6cdb1bc226e7bbf19214e277fa9cc2de59?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8&tag=v4.11.0-202310200743.p0.gb5a5a02.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:d8ae7124f6e30da188f7a3caff4fd054bc0032417562b203ecec03b20e027081_amd64", + "product": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:d8ae7124f6e30da188f7a3caff4fd054bc0032417562b203ecec03b20e027081_amd64", + "product_id": "openshift4/ose-csi-external-resizer-rhel8@sha256:d8ae7124f6e30da188f7a3caff4fd054bc0032417562b203ecec03b20e027081_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer-rhel8@sha256:d8ae7124f6e30da188f7a3caff4fd054bc0032417562b203ecec03b20e027081?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8&tag=v4.11.0-202310271626.p0.g15ef766.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer@sha256:d8ae7124f6e30da188f7a3caff4fd054bc0032417562b203ecec03b20e027081_amd64", + "product": { + "name": "openshift4/ose-csi-external-resizer@sha256:d8ae7124f6e30da188f7a3caff4fd054bc0032417562b203ecec03b20e027081_amd64", + "product_id": "openshift4/ose-csi-external-resizer@sha256:d8ae7124f6e30da188f7a3caff4fd054bc0032417562b203ecec03b20e027081_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer@sha256:d8ae7124f6e30da188f7a3caff4fd054bc0032417562b203ecec03b20e027081?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer&tag=v4.11.0-202310271626.p0.g15ef766.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter@sha256:63d714b7c2b8f1c46bb6568047796a480d47c0b13454696ec4e05cd2bafd6b38_amd64", + "product": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:63d714b7c2b8f1c46bb6568047796a480d47c0b13454696ec4e05cd2bafd6b38_amd64", + "product_id": "openshift4/ose-csi-external-snapshotter@sha256:63d714b7c2b8f1c46bb6568047796a480d47c0b13454696ec4e05cd2bafd6b38_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter@sha256:63d714b7c2b8f1c46bb6568047796a480d47c0b13454696ec4e05cd2bafd6b38?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter&tag=v4.11.0-202310271701.p0.g54d2f3d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:63d714b7c2b8f1c46bb6568047796a480d47c0b13454696ec4e05cd2bafd6b38_amd64", + "product": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:63d714b7c2b8f1c46bb6568047796a480d47c0b13454696ec4e05cd2bafd6b38_amd64", + "product_id": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:63d714b7c2b8f1c46bb6568047796a480d47c0b13454696ec4e05cd2bafd6b38_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter-rhel8@sha256:63d714b7c2b8f1c46bb6568047796a480d47c0b13454696ec4e05cd2bafd6b38?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8&tag=v4.11.0-202310271701.p0.g54d2f3d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller@sha256:a5cd9ad70ba8256931e79f85b5164524ceebd953c001b265d0b9521652f302fd_amd64", + "product": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:a5cd9ad70ba8256931e79f85b5164524ceebd953c001b265d0b9521652f302fd_amd64", + "product_id": "openshift4/ose-csi-snapshot-controller@sha256:a5cd9ad70ba8256931e79f85b5164524ceebd953c001b265d0b9521652f302fd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller@sha256:a5cd9ad70ba8256931e79f85b5164524ceebd953c001b265d0b9521652f302fd?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller&tag=v4.11.0-202310271701.p0.g54d2f3d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:a5cd9ad70ba8256931e79f85b5164524ceebd953c001b265d0b9521652f302fd_amd64", + "product": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:a5cd9ad70ba8256931e79f85b5164524ceebd953c001b265d0b9521652f302fd_amd64", + "product_id": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:a5cd9ad70ba8256931e79f85b5164524ceebd953c001b265d0b9521652f302fd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller-rhel8@sha256:a5cd9ad70ba8256931e79f85b5164524ceebd953c001b265d0b9521652f302fd?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8&tag=v4.11.0-202310271701.p0.g54d2f3d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:3a4632764a38d543fa8d69161bb00dfaec9761c2157cb2ff69cd4ddac4f7b43d_amd64", + "product": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:3a4632764a38d543fa8d69161bb00dfaec9761c2157cb2ff69cd4ddac4f7b43d_amd64", + "product_id": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:3a4632764a38d543fa8d69161bb00dfaec9761c2157cb2ff69cd4ddac4f7b43d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-validation-webhook-rhel8@sha256:3a4632764a38d543fa8d69161bb00dfaec9761c2157cb2ff69cd4ddac4f7b43d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8&tag=v4.11.0-202310271701.p0.g54d2f3d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/egress-router-cni-rhel8@sha256:d64fa7e4517b09a65c7f90cb7fae71adedf6d02e40a9812f2d8d884702890ff6_amd64", + "product": { + "name": "openshift4/egress-router-cni-rhel8@sha256:d64fa7e4517b09a65c7f90cb7fae71adedf6d02e40a9812f2d8d884702890ff6_amd64", + "product_id": "openshift4/egress-router-cni-rhel8@sha256:d64fa7e4517b09a65c7f90cb7fae71adedf6d02e40a9812f2d8d884702890ff6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/egress-router-cni-rhel8@sha256:d64fa7e4517b09a65c7f90cb7fae71adedf6d02e40a9812f2d8d884702890ff6?arch=amd64&repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel8&tag=v4.11.0-202310200743.p0.gfccaf1d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-etcd@sha256:cf2ad12790972756af88ab36f1588594e47b994ea63ddbd0adcc6613f5aa09a8_amd64", + "product": { + "name": "openshift4/ose-etcd@sha256:cf2ad12790972756af88ab36f1588594e47b994ea63ddbd0adcc6613f5aa09a8_amd64", + "product_id": "openshift4/ose-etcd@sha256:cf2ad12790972756af88ab36f1588594e47b994ea63ddbd0adcc6613f5aa09a8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-etcd@sha256:cf2ad12790972756af88ab36f1588594e47b994ea63ddbd0adcc6613f5aa09a8?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-etcd&tag=v4.11.0-202310200743.p0.g2ccbc7d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:32385556546b254ade518f4aafb1e1c6c0a8e0edf863384318d7251bdaa0560e_amd64", + "product": { + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:32385556546b254ade518f4aafb1e1c6c0a8e0edf863384318d7251bdaa0560e_amd64", + "product_id": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:32385556546b254ade518f4aafb1e1c6c0a8e0edf863384318d7251bdaa0560e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel8@sha256:32385556546b254ade518f4aafb1e1c6c0a8e0edf863384318d7251bdaa0560e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8&tag=v4.11.0-202310200743.p0.ga5a0048.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:1d57e938a63f656cc5e4097309c2804fd298f19a719e20d93c7128900cba1366_amd64", + "product": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:1d57e938a63f656cc5e4097309c2804fd298f19a719e20d93c7128900cba1366_amd64", + "product_id": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:1d57e938a63f656cc5e4097309c2804fd298f19a719e20d93c7128900cba1366_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel8@sha256:1d57e938a63f656cc5e4097309c2804fd298f19a719e20d93c7128900cba1366?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8&tag=v4.11.0-202310200743.p0.gff20dda.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:5c8ac4cbf0bc5b3ee97c0c324ade9e1be0a3abea0687b125d4a4359a6837a0b3_amd64", + "product": { + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:5c8ac4cbf0bc5b3ee97c0c324ade9e1be0a3abea0687b125d4a4359a6837a0b3_amd64", + "product_id": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:5c8ac4cbf0bc5b3ee97c0c324ade9e1be0a3abea0687b125d4a4359a6837a0b3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel8@sha256:5c8ac4cbf0bc5b3ee97c0c324ade9e1be0a3abea0687b125d4a4359a6837a0b3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8&tag=v4.11.0-202310301603.p0.g86fbfae.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:90f3bbced92c43ab03f06c2443447fb36fda570be13db8c148be957a92587f5f_amd64", + "product": { + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:90f3bbced92c43ab03f06c2443447fb36fda570be13db8c148be957a92587f5f_amd64", + "product_id": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:90f3bbced92c43ab03f06c2443447fb36fda570be13db8c148be957a92587f5f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel8@sha256:90f3bbced92c43ab03f06c2443447fb36fda570be13db8c148be957a92587f5f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8&tag=v4.11.0-202310301526.p0.g89605b1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hypershift-rhel8@sha256:7a1acf3d23d0dbd5c6d1426e55d381b3920b7bd4549536abb5697410e6e6e6da_amd64", + "product": { + "name": "openshift4/ose-hypershift-rhel8@sha256:7a1acf3d23d0dbd5c6d1426e55d381b3920b7bd4549536abb5697410e6e6e6da_amd64", + "product_id": "openshift4/ose-hypershift-rhel8@sha256:7a1acf3d23d0dbd5c6d1426e55d381b3920b7bd4549536abb5697410e6e6e6da_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-hypershift-rhel8@sha256:7a1acf3d23d0dbd5c6d1426e55d381b3920b7bd4549536abb5697410e6e6e6da?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel8&tag=v4.11.0-202310200743.p0.gda0a576.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:e9279e80edc52e6fb7b24777726154c57963d01f8f48e6c2aae922eb892740b3_amd64", + "product": { + "name": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:e9279e80edc52e6fb7b24777726154c57963d01f8f48e6c2aae922eb892740b3_amd64", + "product_id": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:e9279e80edc52e6fb7b24777726154c57963d01f8f48e6c2aae922eb892740b3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-cloud-controller-manager-rhel8@sha256:e9279e80edc52e6fb7b24777726154c57963d01f8f48e6c2aae922eb892740b3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8&tag=v4.11.0-202310200743.p0.gce83696.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:3d5312bb1fdfec5dcc3752fab2f01bcb3e551d404c362bfe8a3e07b0012e18d4_amd64", + "product": { + "name": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:3d5312bb1fdfec5dcc3752fab2f01bcb3e551d404c362bfe8a3e07b0012e18d4_amd64", + "product_id": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:3d5312bb1fdfec5dcc3752fab2f01bcb3e551d404c362bfe8a3e07b0012e18d4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibmcloud-machine-controllers-rhel8@sha256:3d5312bb1fdfec5dcc3752fab2f01bcb3e551d404c362bfe8a3e07b0012e18d4?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8&tag=v4.11.0-202310200743.p0.g3bde969.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:efa66a01e054415734a2286641c51bdc74858cf3825237f7d6f1ff340577724c_amd64", + "product": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:efa66a01e054415734a2286641c51bdc74858cf3825237f7d6f1ff340577724c_amd64", + "product_id": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:efa66a01e054415734a2286641c51bdc74858cf3825237f7d6f1ff340577724c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel8@sha256:efa66a01e054415734a2286641c51bdc74858cf3825237f7d6f1ff340577724c?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8&tag=v4.11.0-202310301526.p0.g60cd8f0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:b46f2f27e401a1381a4b6df5969fae444bebc78e1ebb7b41e3ec8f5242de64d0_amd64", + "product": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:b46f2f27e401a1381a4b6df5969fae444bebc78e1ebb7b41e3ec8f5242de64d0_amd64", + "product_id": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:b46f2f27e401a1381a4b6df5969fae444bebc78e1ebb7b41e3ec8f5242de64d0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:b46f2f27e401a1381a4b6df5969fae444bebc78e1ebb7b41e3ec8f5242de64d0?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8&tag=v4.11.0-202310301444.p0.g2f873ff.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-image-customization-controller-rhel8@sha256:974b603a03b18300d806c114097e000cba5cfa03ff14218d025d70613c724104_amd64", + "product": { + "name": "openshift4/ose-image-customization-controller-rhel8@sha256:974b603a03b18300d806c114097e000cba5cfa03ff14218d025d70613c724104_amd64", + "product_id": "openshift4/ose-image-customization-controller-rhel8@sha256:974b603a03b18300d806c114097e000cba5cfa03ff14218d025d70613c724104_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-image-customization-controller-rhel8@sha256:974b603a03b18300d806c114097e000cba5cfa03ff14218d025d70613c724104?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel8&tag=v4.11.0-202310261225.p0.g30f98fd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-insights-rhel8-operator@sha256:0b3656e557cff8a66aaead30b4eff4c0a421697031400c4c14f9333c5295dd78_amd64", + "product": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:0b3656e557cff8a66aaead30b4eff4c0a421697031400c4c14f9333c5295dd78_amd64", + "product_id": "openshift4/ose-insights-rhel8-operator@sha256:0b3656e557cff8a66aaead30b4eff4c0a421697031400c4c14f9333c5295dd78_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-insights-rhel8-operator@sha256:0b3656e557cff8a66aaead30b4eff4c0a421697031400c4c14f9333c5295dd78?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-insights-rhel8-operator&tag=v4.11.0-202310200743.p0.g14b5397.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer-artifacts@sha256:788a8c8ac31584801c01a8a50fbda303193ca639c287da8fb7a2d04230c9dd82_amd64", + "product": { + "name": "openshift4/ose-installer-artifacts@sha256:788a8c8ac31584801c01a8a50fbda303193ca639c287da8fb7a2d04230c9dd82_amd64", + "product_id": "openshift4/ose-installer-artifacts@sha256:788a8c8ac31584801c01a8a50fbda303193ca639c287da8fb7a2d04230c9dd82_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer-artifacts@sha256:788a8c8ac31584801c01a8a50fbda303193ca639c287da8fb7a2d04230c9dd82?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-installer-artifacts&tag=v4.11.0-202310200743.p0.gc63578d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer@sha256:42943ec48cc4bfb8e76e23920afd52a62e6e6faa629c8e771db5d8697728a38a_amd64", + "product": { + "name": "openshift4/ose-installer@sha256:42943ec48cc4bfb8e76e23920afd52a62e6e6faa629c8e771db5d8697728a38a_amd64", + "product_id": "openshift4/ose-installer@sha256:42943ec48cc4bfb8e76e23920afd52a62e6e6faa629c8e771db5d8697728a38a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer@sha256:42943ec48cc4bfb8e76e23920afd52a62e6e6faa629c8e771db5d8697728a38a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-installer&tag=v4.11.0-202310200743.p0.gc63578d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:6e63176996434ed43665e534798b798343458c827653e525ee3c5d0b2a7b6dcf_amd64", + "product": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:6e63176996434ed43665e534798b798343458c827653e525ee3c5d0b2a7b6dcf_amd64", + "product_id": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:6e63176996434ed43665e534798b798343458c827653e525ee3c5d0b2a7b6dcf_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-storage-version-migrator-rhel8@sha256:6e63176996434ed43665e534798b798343458c827653e525ee3c5d0b2a7b6dcf?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8&tag=v4.11.0-202310200743.p0.g596745c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-libvirt-machine-controllers@sha256:e10301a4292be1a501e75066c2451d2dfc404f8f7e358e431f191b03c60d8d56_amd64", + "product": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:e10301a4292be1a501e75066c2451d2dfc404f8f7e358e431f191b03c60d8d56_amd64", + "product_id": "openshift4/ose-libvirt-machine-controllers@sha256:e10301a4292be1a501e75066c2451d2dfc404f8f7e358e431f191b03c60d8d56_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-libvirt-machine-controllers@sha256:e10301a4292be1a501e75066c2451d2dfc404f8f7e358e431f191b03c60d8d56?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers&tag=v4.11.0-202310200743.p0.gb6e14ea.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-operator@sha256:1601b4d32aab33376fc4f30e1334c8a2d1b5c50608951c08dfd9ce7895ed7684_amd64", + "product": { + "name": "openshift4/ose-machine-api-operator@sha256:1601b4d32aab33376fc4f30e1334c8a2d1b5c50608951c08dfd9ce7895ed7684_amd64", + "product_id": "openshift4/ose-machine-api-operator@sha256:1601b4d32aab33376fc4f30e1334c8a2d1b5c50608951c08dfd9ce7895ed7684_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-operator@sha256:1601b4d32aab33376fc4f30e1334c8a2d1b5c50608951c08dfd9ce7895ed7684?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-api-operator&tag=v4.11.0-202310200743.p0.gaba3049.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:711f235b5079977bfaf114a0a05b9376e02ced5b2bd8a5982f277a014857cba2_amd64", + "product": { + "name": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:711f235b5079977bfaf114a0a05b9376e02ced5b2bd8a5982f277a014857cba2_amd64", + "product_id": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:711f235b5079977bfaf114a0a05b9376e02ced5b2bd8a5982f277a014857cba2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-aws-rhel8@sha256:711f235b5079977bfaf114a0a05b9376e02ced5b2bd8a5982f277a014857cba2?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8&tag=v4.11.0-202310200743.p0.ga796a77.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:3ded6aa404f3b8a5b3ff978f5c18e337a803638bec2f75f9c03bfa96b5af264e_amd64", + "product": { + "name": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:3ded6aa404f3b8a5b3ff978f5c18e337a803638bec2f75f9c03bfa96b5af264e_amd64", + "product_id": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:3ded6aa404f3b8a5b3ff978f5c18e337a803638bec2f75f9c03bfa96b5af264e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-azure-rhel8@sha256:3ded6aa404f3b8a5b3ff978f5c18e337a803638bec2f75f9c03bfa96b5af264e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8&tag=v4.11.0-202310200743.p0.g2389d45.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:e6820a6f96f2df62203aa1f319c501db88e95921094feebe9c4e58d4e0e2e7b6_amd64", + "product": { + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:e6820a6f96f2df62203aa1f319c501db88e95921094feebe9c4e58d4e0e2e7b6_amd64", + "product_id": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:e6820a6f96f2df62203aa1f319c501db88e95921094feebe9c4e58d4e0e2e7b6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-gcp-rhel8@sha256:e6820a6f96f2df62203aa1f319c501db88e95921094feebe9c4e58d4e0e2e7b6?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8&tag=v4.11.0-202310200743.p0.g9363d87.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:b53e5eeacfb0e1770ff5ab74eaacf6bd629e16afc366cf2e1ae981881b890af6_amd64", + "product": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:b53e5eeacfb0e1770ff5ab74eaacf6bd629e16afc366cf2e1ae981881b890af6_amd64", + "product_id": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:b53e5eeacfb0e1770ff5ab74eaacf6bd629e16afc366cf2e1ae981881b890af6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-openstack-rhel8@sha256:b53e5eeacfb0e1770ff5ab74eaacf6bd629e16afc366cf2e1ae981881b890af6?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8&tag=v4.11.0-202310200743.p0.g0446d77.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-config-operator@sha256:385ddc1d2bdca256d1c31bca41810e3f609214994c350c571106310372bb3e84_amd64", + "product": { + "name": "openshift4/ose-machine-config-operator@sha256:385ddc1d2bdca256d1c31bca41810e3f609214994c350c571106310372bb3e84_amd64", + "product_id": "openshift4/ose-machine-config-operator@sha256:385ddc1d2bdca256d1c31bca41810e3f609214994c350c571106310372bb3e84_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-config-operator@sha256:385ddc1d2bdca256d1c31bca41810e3f609214994c350c571106310372bb3e84?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-config-operator&tag=v4.11.0-202310271243.p0.g125ab15.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-os-images-rhel8@sha256:20bf02d10455a24003f326c6b54167c567d100e86aa5f215e76888355becdab4_amd64", + "product": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:20bf02d10455a24003f326c6b54167c567d100e86aa5f215e76888355becdab4_amd64", + "product_id": "openshift4/ose-machine-os-images-rhel8@sha256:20bf02d10455a24003f326c6b54167c567d100e86aa5f215e76888355becdab4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-os-images-rhel8@sha256:20bf02d10455a24003f326c6b54167c567d100e86aa5f215e76888355becdab4?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel8&tag=v4.11.0-202310200743.p0.gb1580a2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-admission-controller@sha256:6ae290c4d3fe0da5cd887a4b174e1bc4ba175b244560584ba5bc09c75a3c819b_amd64", + "product": { + "name": "openshift4/ose-multus-admission-controller@sha256:6ae290c4d3fe0da5cd887a4b174e1bc4ba175b244560584ba5bc09c75a3c819b_amd64", + "product_id": "openshift4/ose-multus-admission-controller@sha256:6ae290c4d3fe0da5cd887a4b174e1bc4ba175b244560584ba5bc09c75a3c819b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-admission-controller@sha256:6ae290c4d3fe0da5cd887a4b174e1bc4ba175b244560584ba5bc09c75a3c819b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller&tag=v4.11.0-202310200743.p0.gb876064.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:fb0b6eeba907426a1ee3ddbf6a56138175dac373e09556f762e05ac0687c52d9_amd64", + "product": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:fb0b6eeba907426a1ee3ddbf6a56138175dac373e09556f762e05ac0687c52d9_amd64", + "product_id": "openshift4/ose-multus-networkpolicy-rhel8@sha256:fb0b6eeba907426a1ee3ddbf6a56138175dac373e09556f762e05ac0687c52d9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-networkpolicy-rhel8@sha256:fb0b6eeba907426a1ee3ddbf6a56138175dac373e09556f762e05ac0687c52d9?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8&tag=v4.11.0-202310200743.p0.g643fdaf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:7088d33c0adf03148ad4309dd75d45bb92667e7c91bb9efdd834af304dffc969_amd64", + "product": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:7088d33c0adf03148ad4309dd75d45bb92667e7c91bb9efdd834af304dffc969_amd64", + "product_id": "openshift4/ose-multus-route-override-cni-rhel8@sha256:7088d33c0adf03148ad4309dd75d45bb92667e7c91bb9efdd834af304dffc969_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-route-override-cni-rhel8@sha256:7088d33c0adf03148ad4309dd75d45bb92667e7c91bb9efdd834af304dffc969?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8&tag=v4.11.0-202310200743.p0.g523b790.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:e6de8683dab39223e3e104a5f1f610e4db4775b8c8624db0861e1d0aeddd3b47_amd64", + "product": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:e6de8683dab39223e3e104a5f1f610e4db4775b8c8624db0861e1d0aeddd3b47_amd64", + "product_id": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:e6de8683dab39223e3e104a5f1f610e4db4775b8c8624db0861e1d0aeddd3b47_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel8@sha256:e6de8683dab39223e3e104a5f1f610e4db4775b8c8624db0861e1d0aeddd3b47?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8&tag=v4.11.0-202310200743.p0.g7d544f9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-must-gather@sha256:f0b9542544618e80debeb6a9ea26ea458288a3a4b2cb9ba794bcf0a630bf74e1_amd64", + "product": { + "name": "openshift4/ose-must-gather@sha256:f0b9542544618e80debeb6a9ea26ea458288a3a4b2cb9ba794bcf0a630bf74e1_amd64", + "product_id": "openshift4/ose-must-gather@sha256:f0b9542544618e80debeb6a9ea26ea458288a3a4b2cb9ba794bcf0a630bf74e1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-must-gather@sha256:f0b9542544618e80debeb6a9ea26ea458288a3a4b2cb9ba794bcf0a630bf74e1?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-must-gather&tag=v4.11.0-202310251925.p0.g44f6ada.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:ba427e0b17dcec6969683313bdeeb2c0cf99cf5a5fed12385496ac0b6bb0e455_amd64", + "product": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:ba427e0b17dcec6969683313bdeeb2c0cf99cf5a5fed12385496ac0b6bb0e455_amd64", + "product_id": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:ba427e0b17dcec6969683313bdeeb2c0cf99cf5a5fed12385496ac0b6bb0e455_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-interface-bond-cni-rhel8@sha256:ba427e0b17dcec6969683313bdeeb2c0cf99cf5a5fed12385496ac0b6bb0e455?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8&tag=v4.11.0-202310200743.p0.gb76a677.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:64c611ce95e342642a6e6bf179f462172fefcb4a535c3704792f2a04503346fa_amd64", + "product": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:64c611ce95e342642a6e6bf179f462172fefcb4a535c3704792f2a04503346fa_amd64", + "product_id": "openshift4/ose-network-metrics-daemon-rhel8@sha256:64c611ce95e342642a6e6bf179f462172fefcb4a535c3704792f2a04503346fa_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-metrics-daemon-rhel8@sha256:64c611ce95e342642a6e6bf179f462172fefcb4a535c3704792f2a04503346fa?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8&tag=v4.11.0-202310200743.p0.gbeda996.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/network-tools-rhel8@sha256:2f2fdc6bd3a9b05854b86f62365b348f419e946ee4eef1741ac4ffac6a2baafb_amd64", + "product": { + "name": "openshift4/network-tools-rhel8@sha256:2f2fdc6bd3a9b05854b86f62365b348f419e946ee4eef1741ac4ffac6a2baafb_amd64", + "product_id": "openshift4/network-tools-rhel8@sha256:2f2fdc6bd3a9b05854b86f62365b348f419e946ee4eef1741ac4ffac6a2baafb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/network-tools-rhel8@sha256:2f2fdc6bd3a9b05854b86f62365b348f419e946ee4eef1741ac4ffac6a2baafb?arch=amd64&repository_url=registry.redhat.io/openshift4/network-tools-rhel8&tag=v4.11.0-202310260725.p0.g4e87286.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sdn-rhel8@sha256:874b6c9f54151304602a75fe54ed8828a01ca9e0c5f32df097bcebe844bbc2c5_amd64", + "product": { + "name": "openshift4/ose-sdn-rhel8@sha256:874b6c9f54151304602a75fe54ed8828a01ca9e0c5f32df097bcebe844bbc2c5_amd64", + "product_id": "openshift4/ose-sdn-rhel8@sha256:874b6c9f54151304602a75fe54ed8828a01ca9e0c5f32df097bcebe844bbc2c5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sdn-rhel8@sha256:874b6c9f54151304602a75fe54ed8828a01ca9e0c5f32df097bcebe844bbc2c5?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-sdn-rhel8&tag=v4.11.0-202310200743.p0.ge5b34b7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-nutanix-machine-controllers-rhel8@sha256:45f34209120de3a962222b237848fe328743157e8ffeef1b688d67d09524df80_amd64", + "product": { + "name": "openshift4/ose-nutanix-machine-controllers-rhel8@sha256:45f34209120de3a962222b237848fe328743157e8ffeef1b688d67d09524df80_amd64", + "product_id": "openshift4/ose-nutanix-machine-controllers-rhel8@sha256:45f34209120de3a962222b237848fe328743157e8ffeef1b688d67d09524df80_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-nutanix-machine-controllers-rhel8@sha256:45f34209120de3a962222b237848fe328743157e8ffeef1b688d67d09524df80?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8&tag=v4.11.0-202310200743.p0.ga94eb77.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:94eab870ac578c4db1df9047af4e5c1d23a4b46fa7b2d4d826c72e7ae7935ddf_amd64", + "product": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:94eab870ac578c4db1df9047af4e5c1d23a4b46fa7b2d4d826c72e7ae7935ddf_amd64", + "product_id": "openshift4/ose-oauth-apiserver-rhel8@sha256:94eab870ac578c4db1df9047af4e5c1d23a4b46fa7b2d4d826c72e7ae7935ddf_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-apiserver-rhel8@sha256:94eab870ac578c4db1df9047af4e5c1d23a4b46fa7b2d4d826c72e7ae7935ddf?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8&tag=v4.11.0-202310200743.p0.gc9c2dd1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:ae86c44e76be9a3078258ceffd1606bdaf459979d9887e8ef053ddc926d2c94c_amd64", + "product": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:ae86c44e76be9a3078258ceffd1606bdaf459979d9887e8ef053ddc926d2c94c_amd64", + "product_id": "openshift4/ose-openshift-apiserver-rhel8@sha256:ae86c44e76be9a3078258ceffd1606bdaf459979d9887e8ef053ddc926d2c94c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-apiserver-rhel8@sha256:ae86c44e76be9a3078258ceffd1606bdaf459979d9887e8ef053ddc926d2c94c?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8&tag=v4.11.0-202310200743.p0.g35df5a0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:58a728d3108b1bbf89316a27a283e27f7d54919c15adec9028cd81bf1dd7127e_amd64", + "product": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:58a728d3108b1bbf89316a27a283e27f7d54919c15adec9028cd81bf1dd7127e_amd64", + "product_id": "openshift4/ose-openshift-controller-manager-rhel8@sha256:58a728d3108b1bbf89316a27a283e27f7d54919c15adec9028cd81bf1dd7127e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-controller-manager-rhel8@sha256:58a728d3108b1bbf89316a27a283e27f7d54919c15adec9028cd81bf1dd7127e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8&tag=v4.11.0-202310200743.p0.g911da57.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:f1cbf151c38b580c2928d6e88e0aff573bea556b76dcd71438d5eb4899e6dff7_amd64", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:f1cbf151c38b580c2928d6e88e0aff573bea556b76dcd71438d5eb4899e6dff7_amd64", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:f1cbf151c38b580c2928d6e88e0aff573bea556b76dcd71438d5eb4899e6dff7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8@sha256:f1cbf151c38b580c2928d6e88e0aff573bea556b76dcd71438d5eb4899e6dff7?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8&tag=v4.11.0-202310200743.p0.g9eed4ed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8dc289c4cead803cb5b10fd1bef238fff7f1cec85b0760a9faf8e24d5573ecda_amd64", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8dc289c4cead803cb5b10fd1bef238fff7f1cec85b0760a9faf8e24d5573ecda_amd64", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8dc289c4cead803cb5b10fd1bef238fff7f1cec85b0760a9faf8e24d5573ecda_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8dc289c4cead803cb5b10fd1bef238fff7f1cec85b0760a9faf8e24d5573ecda?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator&tag=v4.11.0-202310301648.p0.ga6d74d7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:90f46e8a9d40426b3f9679e4a92ccc7ef4028ddacd665193ac47be247c58b359_amd64", + "product": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:90f46e8a9d40426b3f9679e4a92ccc7ef4028ddacd665193ac47be247c58b359_amd64", + "product_id": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:90f46e8a9d40426b3f9679e4a92ccc7ef4028ddacd665193ac47be247c58b359_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel8@sha256:90f46e8a9d40426b3f9679e4a92ccc7ef4028ddacd665193ac47be247c58b359?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8&tag=v4.11.0-202310200743.p0.g9eed4ed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-machine-controllers@sha256:05158560873d9651bf36b4e3a6cf8ece4c2743fb14550a2795cf3c7c22194938_amd64", + "product": { + "name": "openshift4/ose-openstack-machine-controllers@sha256:05158560873d9651bf36b4e3a6cf8ece4c2743fb14550a2795cf3c7c22194938_amd64", + "product_id": "openshift4/ose-openstack-machine-controllers@sha256:05158560873d9651bf36b4e3a6cf8ece4c2743fb14550a2795cf3c7c22194938_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-machine-controllers@sha256:05158560873d9651bf36b4e3a6cf8ece4c2743fb14550a2795cf3c7c22194938?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openstack-machine-controllers&tag=v4.11.0-202310200743.p0.g38f15db.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:d6e6ae3222ae2d86bf634c2cff2f53a5c279329bf22c02208cce319be6d6c661_amd64", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:d6e6ae3222ae2d86bf634c2cff2f53a5c279329bf22c02208cce319be6d6c661_amd64", + "product_id": "openshift4/ovirt-csi-driver-rhel7@sha256:d6e6ae3222ae2d86bf634c2cff2f53a5c279329bf22c02208cce319be6d6c661_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel7@sha256:d6e6ae3222ae2d86bf634c2cff2f53a5c279329bf22c02208cce319be6d6c661?arch=amd64&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel7&tag=v4.11.0-202310200743.p0.gcd3370f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:d6e6ae3222ae2d86bf634c2cff2f53a5c279329bf22c02208cce319be6d6c661_amd64", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:d6e6ae3222ae2d86bf634c2cff2f53a5c279329bf22c02208cce319be6d6c661_amd64", + "product_id": "openshift4/ovirt-csi-driver-rhel8@sha256:d6e6ae3222ae2d86bf634c2cff2f53a5c279329bf22c02208cce319be6d6c661_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8@sha256:d6e6ae3222ae2d86bf634c2cff2f53a5c279329bf22c02208cce319be6d6c661?arch=amd64&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8&tag=v4.11.0-202310200743.p0.gcd3370f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:6e203d4456a8c4ee7bd85b570e3299a9d09f695faf7e3039963487d1a9e61d06_amd64", + "product": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:6e203d4456a8c4ee7bd85b570e3299a9d09f695faf7e3039963487d1a9e61d06_amd64", + "product_id": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:6e203d4456a8c4ee7bd85b570e3299a9d09f695faf7e3039963487d1a9e61d06_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovirt-machine-controllers-rhel8@sha256:6e203d4456a8c4ee7bd85b570e3299a9d09f695faf7e3039963487d1a9e61d06?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8&tag=v4.11.0-202310200743.p0.g5a93d94.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes@sha256:c5ef8149d360b27e6237d6a837adf2ee69f094058077cedafa9b6ab9601ea1bb_amd64", + "product": { + "name": "openshift4/ose-ovn-kubernetes@sha256:c5ef8149d360b27e6237d6a837adf2ee69f094058077cedafa9b6ab9601ea1bb_amd64", + "product_id": "openshift4/ose-ovn-kubernetes@sha256:c5ef8149d360b27e6237d6a837adf2ee69f094058077cedafa9b6ab9601ea1bb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes@sha256:c5ef8149d360b27e6237d6a837adf2ee69f094058077cedafa9b6ab9601ea1bb?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes&tag=v4.11.0-202310251925.p0.g2e60df2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:28b56c1e8a1e207e0edd4cd0b3262c1fc3bb6bb17b5a05090631be67543fc2eb_amd64", + "product": { + "name": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:28b56c1e8a1e207e0edd4cd0b3262c1fc3bb6bb17b5a05090631be67543fc2eb_amd64", + "product_id": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:28b56c1e8a1e207e0edd4cd0b3262c1fc3bb6bb17b5a05090631be67543fc2eb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-cloud-controller-manager-rhel8@sha256:28b56c1e8a1e207e0edd4cd0b3262c1fc3bb6bb17b5a05090631be67543fc2eb?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8&tag=v4.11.0-202310200743.p0.gd9b5c23.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:75bd5d831d017c6ca4bbf04366c4208d54774cf6a249c68c627701042efefe9e_amd64", + "product": { + "name": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:75bd5d831d017c6ca4bbf04366c4208d54774cf6a249c68c627701042efefe9e_amd64", + "product_id": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:75bd5d831d017c6ca4bbf04366c4208d54774cf6a249c68c627701042efefe9e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-machine-controllers-rhel8@sha256:75bd5d831d017c6ca4bbf04366c4208d54774cf6a249c68c627701042efefe9e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8&tag=v4.11.0-202310200743.p0.g4f92480.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:852f14b10f4e481189c3acacaa7afb6b27c3b0b0faeb1dfb12e4e2b05f29ac73_amd64", + "product": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:852f14b10f4e481189c3acacaa7afb6b27c3b0b0faeb1dfb12e4e2b05f29ac73_amd64", + "product_id": "openshift4/ose-k8s-prometheus-adapter@sha256:852f14b10f4e481189c3acacaa7afb6b27c3b0b0faeb1dfb12e4e2b05f29ac73_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-k8s-prometheus-adapter@sha256:852f14b10f4e481189c3acacaa7afb6b27c3b0b0faeb1dfb12e4e2b05f29ac73?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter&tag=v4.11.0-202310200743.p0.g32fb8ea.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-service-ca-operator@sha256:0fda41a9cf68eae9ad28ba7965ba350fbdf8f7707e9bfa8ddd72585bf0122a9e_amd64", + "product": { + "name": "openshift4/ose-service-ca-operator@sha256:0fda41a9cf68eae9ad28ba7965ba350fbdf8f7707e9bfa8ddd72585bf0122a9e_amd64", + "product_id": "openshift4/ose-service-ca-operator@sha256:0fda41a9cf68eae9ad28ba7965ba350fbdf8f7707e9bfa8ddd72585bf0122a9e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-service-ca-operator@sha256:0fda41a9cf68eae9ad28ba7965ba350fbdf8f7707e9bfa8ddd72585bf0122a9e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-service-ca-operator&tag=v4.11.0-202310200743.p0.g0899d11.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-thanos-rhel8@sha256:a1f3ef5b146a4e9079f89ce9046d5a9cc006ecc41965f663760093fe95c7a050_amd64", + "product": { + "name": "openshift4/ose-thanos-rhel8@sha256:a1f3ef5b146a4e9079f89ce9046d5a9cc006ecc41965f663760093fe95c7a050_amd64", + "product_id": "openshift4/ose-thanos-rhel8@sha256:a1f3ef5b146a4e9079f89ce9046d5a9cc006ecc41965f663760093fe95c7a050_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-thanos-rhel8@sha256:a1f3ef5b146a4e9079f89ce9046d5a9cc006ecc41965f663760093fe95c7a050?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-thanos-rhel8&tag=v4.11.0-202310200743.p0.g99b6e03.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tools-rhel8@sha256:5d124449226d2ae886712a0a5f8f83904313c98506b67104ede87c0d57975514_amd64", + "product": { + "name": "openshift4/ose-tools-rhel8@sha256:5d124449226d2ae886712a0a5f8f83904313c98506b67104ede87c0d57975514_amd64", + "product_id": "openshift4/ose-tools-rhel8@sha256:5d124449226d2ae886712a0a5f8f83904313c98506b67104ede87c0d57975514_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-tools-rhel8@sha256:5d124449226d2ae886712a0a5f8f83904313c98506b67104ede87c0d57975514?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-tools-rhel8&tag=v4.11.0-202310260725.p0.gbbc7c58.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vsphere-csi-driver-rhel8@sha256:510d47db1c673fcb39438ebcd64fd4b71588a3a0e48eb1eb901ba36d81c15252_amd64", + "product": { + "name": "openshift4/ose-vsphere-csi-driver-rhel8@sha256:510d47db1c673fcb39438ebcd64fd4b71588a3a0e48eb1eb901ba36d81c15252_amd64", + "product_id": "openshift4/ose-vsphere-csi-driver-rhel8@sha256:510d47db1c673fcb39438ebcd64fd4b71588a3a0e48eb1eb901ba36d81c15252_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vsphere-csi-driver-rhel8@sha256:510d47db1c673fcb39438ebcd64fd4b71588a3a0e48eb1eb901ba36d81c15252?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8&tag=v4.11.0-202310251025.p0.gf660272.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:510d47db1c673fcb39438ebcd64fd4b71588a3a0e48eb1eb901ba36d81c15252_amd64", + "product": { + "name": "openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:510d47db1c673fcb39438ebcd64fd4b71588a3a0e48eb1eb901ba36d81c15252_amd64", + "product_id": "openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:510d47db1c673fcb39438ebcd64fd4b71588a3a0e48eb1eb901ba36d81c15252_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vmware-vsphere-csi-driver-rhel8@sha256:510d47db1c673fcb39438ebcd64fd4b71588a3a0e48eb1eb901ba36d81c15252?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8&tag=v4.11.0-202310251025.p0.gf660272.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:f74510df36e96c36dd59e6e6fe7bab83cb58599c5d52ce4000d2770606e95e28_amd64", + "product": { + "name": "openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:f74510df36e96c36dd59e6e6fe7bab83cb58599c5d52ce4000d2770606e95e28_amd64", + "product_id": "openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:f74510df36e96c36dd59e6e6fe7bab83cb58599c5d52ce4000d2770606e95e28_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:f74510df36e96c36dd59e6e6fe7bab83cb58599c5d52ce4000d2770606e95e28?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8&tag=v4.11.0-202310251125.p0.g565bbff.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:f74510df36e96c36dd59e6e6fe7bab83cb58599c5d52ce4000d2770606e95e28_amd64", + "product": { + "name": "openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:f74510df36e96c36dd59e6e6fe7bab83cb58599c5d52ce4000d2770606e95e28_amd64", + "product_id": "openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:f74510df36e96c36dd59e6e6fe7bab83cb58599c5d52ce4000d2770606e95e28_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vsphere-csi-driver-operator-rhel8@sha256:f74510df36e96c36dd59e6e6fe7bab83cb58599c5d52ce4000d2770606e95e28?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8&tag=v4.11.0-202310251125.p0.g565bbff.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:4c65aab94a13313f83920d0f5591686a39a2c1c44c5bf218b0f11bc13e91ef1b_amd64", + "product": { + "name": "openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:4c65aab94a13313f83920d0f5591686a39a2c1c44c5bf218b0f11bc13e91ef1b_amd64", + "product_id": "openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:4c65aab94a13313f83920d0f5591686a39a2c1c44c5bf218b0f11bc13e91ef1b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vsphere-cloud-controller-manager-rhel8@sha256:4c65aab94a13313f83920d0f5591686a39a2c1c44c5bf218b0f11bc13e91ef1b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8&tag=v4.11.0-202310200743.p0.g91f7b1f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:e21c5fd821adf3f668e9c1a38f749f6bf71602aad2d30f89972de89e4c987207_amd64", + "product": { + "name": "openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:e21c5fd821adf3f668e9c1a38f749f6bf71602aad2d30f89972de89e4c987207_amd64", + "product_id": "openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:e21c5fd821adf3f668e9c1a38f749f6bf71602aad2d30f89972de89e4c987207_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vsphere-cluster-api-controllers-rhel8@sha256:e21c5fd821adf3f668e9c1a38f749f6bf71602aad2d30f89972de89e4c987207?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8&tag=v4.11.0-202310200743.p0.gf67d1d0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vsphere-problem-detector-rhel8@sha256:8e375a1a054dd3060efe36ea5bbc1ec2fdae7c1dfbd8dd736bcb9fd3fef004b9_amd64", + "product": { + "name": "openshift4/ose-vsphere-problem-detector-rhel8@sha256:8e375a1a054dd3060efe36ea5bbc1ec2fdae7c1dfbd8dd736bcb9fd3fef004b9_amd64", + "product_id": "openshift4/ose-vsphere-problem-detector-rhel8@sha256:8e375a1a054dd3060efe36ea5bbc1ec2fdae7c1dfbd8dd736bcb9fd3fef004b9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vsphere-problem-detector-rhel8@sha256:8e375a1a054dd3060efe36ea5bbc1ec2fdae7c1dfbd8dd736bcb9fd3fef004b9?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8&tag=v4.11.0-202310251025.p0.gb4164c4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-config-reloader@sha256:65d8fe202935aed88f4fb2ee14c217a4cc03ed7643ead1fd452f16c8ef025f9e_amd64", + "product": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:65d8fe202935aed88f4fb2ee14c217a4cc03ed7643ead1fd452f16c8ef025f9e_amd64", + "product_id": "openshift4/ose-prometheus-config-reloader@sha256:65d8fe202935aed88f4fb2ee14c217a4cc03ed7643ead1fd452f16c8ef025f9e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-config-reloader@sha256:65d8fe202935aed88f4fb2ee14c217a4cc03ed7643ead1fd452f16c8ef025f9e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader&tag=v4.11.0-202310200743.p0.g5752c42.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:b61172786994c5220ad3da42c16ec98087a8ed6ed6f0a0aedbce04d1cb96a67a_amd64", + "product": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:b61172786994c5220ad3da42c16ec98087a8ed6ed6f0a0aedbce04d1cb96a67a_amd64", + "product_id": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:b61172786994c5220ad3da42c16ec98087a8ed6ed6f0a0aedbce04d1cb96a67a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel8@sha256:b61172786994c5220ad3da42c16ec98087a8ed6ed6f0a0aedbce04d1cb96a67a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8&tag=v4.11.0-202310200743.p0.g5752c42.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator@sha256:0541cf41623e64ebbc4b5abf8f32778608da003026b2d53faf153bc50ddd6730_amd64", + "product": { + "name": "openshift4/ose-prometheus-operator@sha256:0541cf41623e64ebbc4b5abf8f32778608da003026b2d53faf153bc50ddd6730_amd64", + "product_id": "openshift4/ose-prometheus-operator@sha256:0541cf41623e64ebbc4b5abf8f32778608da003026b2d53faf153bc50ddd6730_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator@sha256:0541cf41623e64ebbc4b5abf8f32778608da003026b2d53faf153bc50ddd6730?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator&tag=v4.11.0-202310200743.p0.g5752c42.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prom-label-proxy@sha256:dfa23f7198ed5c4f6058d7b53c39ae99c9a56d3b4af31bc85eb36717dd6cc237_amd64", + "product": { + "name": "openshift4/ose-prom-label-proxy@sha256:dfa23f7198ed5c4f6058d7b53c39ae99c9a56d3b4af31bc85eb36717dd6cc237_amd64", + "product_id": "openshift4/ose-prom-label-proxy@sha256:dfa23f7198ed5c4f6058d7b53c39ae99c9a56d3b4af31bc85eb36717dd6cc237_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prom-label-proxy@sha256:dfa23f7198ed5c4f6058d7b53c39ae99c9a56d3b4af31bc85eb36717dd6cc237?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy&tag=v4.11.0-202310200743.p0.gaf12fbc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-telemeter@sha256:a2ab9310527d134d553d3fd4eee9fae4697f3a159c51433922bcccd864a4c018_amd64", + "product": { + "name": "openshift4/ose-telemeter@sha256:a2ab9310527d134d553d3fd4eee9fae4697f3a159c51433922bcccd864a4c018_amd64", + "product_id": "openshift4/ose-telemeter@sha256:a2ab9310527d134d553d3fd4eee9fae4697f3a159c51433922bcccd864a4c018_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-telemeter@sha256:a2ab9310527d134d553d3fd4eee9fae4697f3a159c51433922bcccd864a4c018?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-telemeter&tag=v4.11.0-202310200743.p0.gb1f5dd2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:cce18b1b2294560d7c38526cc81df1bb90963a0d2656a31e46d5c05d5be3d233_amd64", + "product": { + "name": "openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:cce18b1b2294560d7c38526cc81df1bb90963a0d2656a31e46d5c05d5be3d233_amd64", + "product_id": "openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:cce18b1b2294560d7c38526cc81df1bb90963a0d2656a31e46d5c05d5be3d233_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vsphere-csi-driver-syncer-rhel8@sha256:cce18b1b2294560d7c38526cc81df1bb90963a0d2656a31e46d5c05d5be3d233?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8&tag=v4.11.0-202310251025.p0.gf660272.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler@sha256:2a22f62ac799c1dd53516243c561fdb6ce9aebc36889bf8f8a3fc5f11f4b43ab_ppc64le", + "product": { + "name": "openshift4/ose-cluster-autoscaler@sha256:2a22f62ac799c1dd53516243c561fdb6ce9aebc36889bf8f8a3fc5f11f4b43ab_ppc64le", + "product_id": "openshift4/ose-cluster-autoscaler@sha256:2a22f62ac799c1dd53516243c561fdb6ce9aebc36889bf8f8a3fc5f11f4b43ab_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler@sha256:2a22f62ac799c1dd53516243c561fdb6ce9aebc36889bf8f8a3fc5f11f4b43ab?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler&tag=v4.11.0-202310200743.p0.gbf6c1c3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-machine-controllers@sha256:9b7e6d05d4a6eb98a5f7a0edb4a2ffcbd7565a05d9964a209d48c58e133cb3ec_ppc64le", + "product": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:9b7e6d05d4a6eb98a5f7a0edb4a2ffcbd7565a05d9964a209d48c58e133cb3ec_ppc64le", + "product_id": "openshift4/ose-baremetal-machine-controllers@sha256:9b7e6d05d4a6eb98a5f7a0edb4a2ffcbd7565a05d9964a209d48c58e133cb3ec_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-machine-controllers@sha256:9b7e6d05d4a6eb98a5f7a0edb4a2ffcbd7565a05d9964a209d48c58e133cb3ec?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers&tag=v4.11.0-202310201443.p0.g1a6f3aa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:d28c821e8c6afd776e61583e1cdcd6f2ce8a5e93093157824548d2e067292c1a_ppc64le", + "product": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:d28c821e8c6afd776e61583e1cdcd6f2ce8a5e93093157824548d2e067292c1a_ppc64le", + "product_id": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:d28c821e8c6afd776e61583e1cdcd6f2ce8a5e93093157824548d2e067292c1a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-etcd-rhel8-operator@sha256:d28c821e8c6afd776e61583e1cdcd6f2ce8a5e93093157824548d2e067292c1a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator&tag=v4.11.0-202310200743.p0.g88e55fb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-monitoring-operator@sha256:47e1d28eb75f13a740b5bc651d0a0b49927490d51393409900aff37a63078bf5_ppc64le", + "product": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:47e1d28eb75f13a740b5bc651d0a0b49927490d51393409900aff37a63078bf5_ppc64le", + "product_id": "openshift4/ose-cluster-monitoring-operator@sha256:47e1d28eb75f13a740b5bc651d0a0b49927490d51393409900aff37a63078bf5_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-monitoring-operator@sha256:47e1d28eb75f13a740b5bc651d0a0b49927490d51393409900aff37a63078bf5?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-operator&tag=v4.11.0-202310200743.p0.g1b6bec3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-network-operator@sha256:bbf8ba86ee4b204de16afc062c07bf24cf75abe105af2e3c8a0bc7617667261b_ppc64le", + "product": { + "name": "openshift4/ose-cluster-network-operator@sha256:bbf8ba86ee4b204de16afc062c07bf24cf75abe105af2e3c8a0bc7617667261b_ppc64le", + "product_id": "openshift4/ose-cluster-network-operator@sha256:bbf8ba86ee4b204de16afc062c07bf24cf75abe105af2e3c8a0bc7617667261b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-network-operator@sha256:bbf8ba86ee4b204de16afc062c07bf24cf75abe105af2e3c8a0bc7617667261b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-network-operator&tag=v4.11.0-202310200743.p0.gebd1976.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:a85fa1de26aca0a68cabd37b52ea1645d231b5089fdab922d41e76ed3ebb432d_ppc64le", + "product": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:a85fa1de26aca0a68cabd37b52ea1645d231b5089fdab922d41e76ed3ebb432d_ppc64le", + "product_id": "openshift4/ose-cluster-node-tuning-operator@sha256:a85fa1de26aca0a68cabd37b52ea1645d231b5089fdab922d41e76ed3ebb432d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-node-tuning-operator@sha256:a85fa1de26aca0a68cabd37b52ea1645d231b5089fdab922d41e76ed3ebb432d?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-operator&tag=v4.11.0-202310260725.p0.ga9aadb6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-version-operator@sha256:d86fdfed81e9da5c1a9249ffdcdbc4576ab0ca2a1397ef4298d4da3ea892dd5d_ppc64le", + "product": { + "name": "openshift4/ose-cluster-version-operator@sha256:d86fdfed81e9da5c1a9249ffdcdbc4576ab0ca2a1397ef4298d4da3ea892dd5d_ppc64le", + "product_id": "openshift4/ose-cluster-version-operator@sha256:d86fdfed81e9da5c1a9249ffdcdbc4576ab0ca2a1397ef4298d4da3ea892dd5d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-version-operator@sha256:d86fdfed81e9da5c1a9249ffdcdbc4576ab0ca2a1397ef4298d4da3ea892dd5d?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-version-operator&tag=v4.11.0-202310200743.p0.g8966b29.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-configmap-reloader@sha256:848ac0f2da9db19bb722624592bd36cce0849f6eea403a61b5fb5c204c29464d_ppc64le", + "product": { + "name": "openshift4/ose-configmap-reloader@sha256:848ac0f2da9db19bb722624592bd36cce0849f6eea403a61b5fb5c204c29464d_ppc64le", + "product_id": "openshift4/ose-configmap-reloader@sha256:848ac0f2da9db19bb722624592bd36cce0849f6eea403a61b5fb5c204c29464d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-configmap-reloader@sha256:848ac0f2da9db19bb722624592bd36cce0849f6eea403a61b5fb5c204c29464d?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-configmap-reloader&tag=v4.11.0-202310200743.p0.gb7c03bb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-coredns@sha256:bd147a87261bda844a594492204682a633a86ba3890a08cff1e6c89c40eb0c24_ppc64le", + "product": { + "name": "openshift4/ose-coredns@sha256:bd147a87261bda844a594492204682a633a86ba3890a08cff1e6c89c40eb0c24_ppc64le", + "product_id": "openshift4/ose-coredns@sha256:bd147a87261bda844a594492204682a633a86ba3890a08cff1e6c89c40eb0c24_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-coredns@sha256:bd147a87261bda844a594492204682a633a86ba3890a08cff1e6c89c40eb0c24?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-coredns&tag=v4.11.0-202310310446.p0.ge195fdd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:63750ca4603ff8908c211b52b1d174a0e6ee4c1cfa84889b9c1d9fe849ee9055_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:63750ca4603ff8908c211b52b1d174a0e6ee4c1cfa84889b9c1d9fe849ee9055_ppc64le", + "product_id": "openshift4/ose-csi-external-attacher-rhel8@sha256:63750ca4603ff8908c211b52b1d174a0e6ee4c1cfa84889b9c1d9fe849ee9055_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher-rhel8@sha256:63750ca4603ff8908c211b52b1d174a0e6ee4c1cfa84889b9c1d9fe849ee9055?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8&tag=v4.11.0-202310271701.p0.g1e15b60.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher@sha256:63750ca4603ff8908c211b52b1d174a0e6ee4c1cfa84889b9c1d9fe849ee9055_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-attacher@sha256:63750ca4603ff8908c211b52b1d174a0e6ee4c1cfa84889b9c1d9fe849ee9055_ppc64le", + "product_id": "openshift4/ose-csi-external-attacher@sha256:63750ca4603ff8908c211b52b1d174a0e6ee4c1cfa84889b9c1d9fe849ee9055_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher@sha256:63750ca4603ff8908c211b52b1d174a0e6ee4c1cfa84889b9c1d9fe849ee9055?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher&tag=v4.11.0-202310271701.p0.g1e15b60.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:5a5d6e0db2a267f309e90b45660b99aa88eb6eea7f0a49f3a4b0ed26df88c417_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:5a5d6e0db2a267f309e90b45660b99aa88eb6eea7f0a49f3a4b0ed26df88c417_ppc64le", + "product_id": "openshift4/ose-csi-driver-manila-rhel8@sha256:5a5d6e0db2a267f309e90b45660b99aa88eb6eea7f0a49f3a4b0ed26df88c417_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-manila-rhel8@sha256:5a5d6e0db2a267f309e90b45660b99aa88eb6eea7f0a49f3a4b0ed26df88c417?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8&tag=v4.11.0-202310200743.p0.g9eed4ed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:c6a39dcabeaa5e0953ae13a92ec2ba566f100d599ce5b32eecc6eb1420614b5b_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:c6a39dcabeaa5e0953ae13a92ec2ba566f100d599ce5b32eecc6eb1420614b5b_ppc64le", + "product_id": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:c6a39dcabeaa5e0953ae13a92ec2ba566f100d599ce5b32eecc6eb1420614b5b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-manila-rhel8-operator@sha256:c6a39dcabeaa5e0953ae13a92ec2ba566f100d599ce5b32eecc6eb1420614b5b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator&tag=v4.11.0-202310200743.p0.gd3cb2f5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-nfs-rhel8@sha256:4276877cd2e99260461e4bc01672b67cab72bba292f27087b93556bf1e76a643_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-nfs-rhel8@sha256:4276877cd2e99260461e4bc01672b67cab72bba292f27087b93556bf1e76a643_ppc64le", + "product_id": "openshift4/ose-csi-driver-nfs-rhel8@sha256:4276877cd2e99260461e4bc01672b67cab72bba292f27087b93556bf1e76a643_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-nfs-rhel8@sha256:4276877cd2e99260461e4bc01672b67cab72bba292f27087b93556bf1e76a643?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8&tag=v4.11.0-202310200743.p0.gf144bb4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe@sha256:5ac485766b7757dfff33edcb25d84773cf21dc24fe894a376e8cd145df0a6749_ppc64le", + "product": { + "name": "openshift4/ose-csi-livenessprobe@sha256:5ac485766b7757dfff33edcb25d84773cf21dc24fe894a376e8cd145df0a6749_ppc64le", + "product_id": "openshift4/ose-csi-livenessprobe@sha256:5ac485766b7757dfff33edcb25d84773cf21dc24fe894a376e8cd145df0a6749_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe@sha256:5ac485766b7757dfff33edcb25d84773cf21dc24fe894a376e8cd145df0a6749?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe&tag=v4.11.0-202310271701.p0.gd8ed786.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:5ac485766b7757dfff33edcb25d84773cf21dc24fe894a376e8cd145df0a6749_ppc64le", + "product": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:5ac485766b7757dfff33edcb25d84773cf21dc24fe894a376e8cd145df0a6749_ppc64le", + "product_id": "openshift4/ose-csi-livenessprobe-rhel8@sha256:5ac485766b7757dfff33edcb25d84773cf21dc24fe894a376e8cd145df0a6749_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe-rhel8@sha256:5ac485766b7757dfff33edcb25d84773cf21dc24fe894a376e8cd145df0a6749?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8&tag=v4.11.0-202310271701.p0.gd8ed786.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:436e7091d0e52ba8ad46d1f1ed992bf8330ed4a42aedb0dd1287a6c6fc927475_ppc64le", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:436e7091d0e52ba8ad46d1f1ed992bf8330ed4a42aedb0dd1287a6c6fc927475_ppc64le", + "product_id": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:436e7091d0e52ba8ad46d1f1ed992bf8330ed4a42aedb0dd1287a6c6fc927475_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar-rhel8@sha256:436e7091d0e52ba8ad46d1f1ed992bf8330ed4a42aedb0dd1287a6c6fc927475?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8&tag=v4.11.0-202310271626.p0.gd5100c1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar@sha256:436e7091d0e52ba8ad46d1f1ed992bf8330ed4a42aedb0dd1287a6c6fc927475_ppc64le", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:436e7091d0e52ba8ad46d1f1ed992bf8330ed4a42aedb0dd1287a6c6fc927475_ppc64le", + "product_id": "openshift4/ose-csi-node-driver-registrar@sha256:436e7091d0e52ba8ad46d1f1ed992bf8330ed4a42aedb0dd1287a6c6fc927475_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar@sha256:436e7091d0e52ba8ad46d1f1ed992bf8330ed4a42aedb0dd1287a6c6fc927475?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar&tag=v4.11.0-202310271626.p0.gd5100c1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner@sha256:624c7c71a9b16c51dec9f6a4349277095600c5f556247f5850f77a157955df90_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-provisioner@sha256:624c7c71a9b16c51dec9f6a4349277095600c5f556247f5850f77a157955df90_ppc64le", + "product_id": "openshift4/ose-csi-external-provisioner@sha256:624c7c71a9b16c51dec9f6a4349277095600c5f556247f5850f77a157955df90_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner@sha256:624c7c71a9b16c51dec9f6a4349277095600c5f556247f5850f77a157955df90?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner&tag=v4.11.0-202310200743.p0.g86277ec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:624c7c71a9b16c51dec9f6a4349277095600c5f556247f5850f77a157955df90_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:624c7c71a9b16c51dec9f6a4349277095600c5f556247f5850f77a157955df90_ppc64le", + "product_id": "openshift4/ose-csi-external-provisioner-rhel8@sha256:624c7c71a9b16c51dec9f6a4349277095600c5f556247f5850f77a157955df90_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner-rhel8@sha256:624c7c71a9b16c51dec9f6a4349277095600c5f556247f5850f77a157955df90?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8&tag=v4.11.0-202310200743.p0.g86277ec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/driver-toolkit-rhel8@sha256:eb158f2f9439aac6c216b8ddcba388f9bcf39f36295393dcc5afa20ac91db7d6_ppc64le", + "product": { + "name": "openshift4/driver-toolkit-rhel8@sha256:eb158f2f9439aac6c216b8ddcba388f9bcf39f36295393dcc5afa20ac91db7d6_ppc64le", + "product_id": "openshift4/driver-toolkit-rhel8@sha256:eb158f2f9439aac6c216b8ddcba388f9bcf39f36295393dcc5afa20ac91db7d6_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/driver-toolkit-rhel8@sha256:eb158f2f9439aac6c216b8ddcba388f9bcf39f36295393dcc5afa20ac91db7d6?arch=ppc64le&repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel8&tag=v4.11.0-202310260725.p0.g28589b0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-proxy@sha256:dc3dc816fae35f3270b5e91745f9fc3c8603450abd478526591b298f6a22088c_ppc64le", + "product": { + "name": "openshift4/ose-oauth-proxy@sha256:dc3dc816fae35f3270b5e91745f9fc3c8603450abd478526591b298f6a22088c_ppc64le", + "product_id": "openshift4/ose-oauth-proxy@sha256:dc3dc816fae35f3270b5e91745f9fc3c8603450abd478526591b298f6a22088c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-proxy@sha256:dc3dc816fae35f3270b5e91745f9fc3c8603450abd478526591b298f6a22088c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-oauth-proxy&tag=v4.11.0-202310200743.p0.gaad1b28.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-alertmanager@sha256:55bd99d1a45fa9d09fe87e6758daff67f0bd670bfaff760799623c0907a2d3ce_ppc64le", + "product": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:55bd99d1a45fa9d09fe87e6758daff67f0bd670bfaff760799623c0907a2d3ce_ppc64le", + "product_id": "openshift4/ose-prometheus-alertmanager@sha256:55bd99d1a45fa9d09fe87e6758daff67f0bd670bfaff760799623c0907a2d3ce_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-alertmanager@sha256:55bd99d1a45fa9d09fe87e6758daff67f0bd670bfaff760799623c0907a2d3ce?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager&tag=v4.11.0-202310200743.p0.g05cfc39.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-node-exporter@sha256:7d4e4618699b662f796f8480c1e10c0644d269af26ae7b85791e3adaf13bf89c_ppc64le", + "product": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:7d4e4618699b662f796f8480c1e10c0644d269af26ae7b85791e3adaf13bf89c_ppc64le", + "product_id": "openshift4/ose-prometheus-node-exporter@sha256:7d4e4618699b662f796f8480c1e10c0644d269af26ae7b85791e3adaf13bf89c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-node-exporter@sha256:7d4e4618699b662f796f8480c1e10c0644d269af26ae7b85791e3adaf13bf89c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter&tag=v4.11.0-202310200743.p0.g40942c2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus@sha256:163a4a70248f4c668abcc092df52091f987322d1c37867f9da6a957b166ab498_ppc64le", + "product": { + "name": "openshift4/ose-prometheus@sha256:163a4a70248f4c668abcc092df52091f987322d1c37867f9da6a957b166ab498_ppc64le", + "product_id": "openshift4/ose-prometheus@sha256:163a4a70248f4c668abcc092df52091f987322d1c37867f9da6a957b166ab498_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus@sha256:163a4a70248f4c668abcc092df52091f987322d1c37867f9da6a957b166ab498?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prometheus&tag=v4.11.0-202310200743.p0.ge751c61.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:be107dfb73776289b85dd1f0ac18baeeb463a64cc60b2a8a4502657b5cf829fd_ppc64le", + "product": { + "name": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:be107dfb73776289b85dd1f0ac18baeeb463a64cc60b2a8a4502657b5cf829fd_ppc64le", + "product_id": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:be107dfb73776289b85dd1f0ac18baeeb463a64cc60b2a8a4502657b5cf829fd_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-vpc-node-label-updater-rhel8@sha256:be107dfb73776289b85dd1f0ac18baeeb463a64cc60b2a8a4502657b5cf829fd?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8&tag=v4.11.0-202310301444.p0.g1b1d427.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-proxy@sha256:53d337a1363e120243cc75719a19863bdbc5f6151349d6ae9677422802e075d8_ppc64le", + "product": { + "name": "openshift4/ose-kube-proxy@sha256:53d337a1363e120243cc75719a19863bdbc5f6151349d6ae9677422802e075d8_ppc64le", + "product_id": "openshift4/ose-kube-proxy@sha256:53d337a1363e120243cc75719a19863bdbc5f6151349d6ae9677422802e075d8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-proxy@sha256:53d337a1363e120243cc75719a19863bdbc5f6151349d6ae9677422802e075d8?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kube-proxy&tag=v4.11.0-202310200743.p0.ge5b34b7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-rbac-proxy@sha256:7113035e86bfe4102aa82a38fef630cb7f0c1ac8b20eda9a410bbc31f8fe5851_ppc64le", + "product": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:7113035e86bfe4102aa82a38fef630cb7f0c1ac8b20eda9a410bbc31f8fe5851_ppc64le", + "product_id": "openshift4/ose-kube-rbac-proxy@sha256:7113035e86bfe4102aa82a38fef630cb7f0c1ac8b20eda9a410bbc31f8fe5851_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-rbac-proxy@sha256:7113035e86bfe4102aa82a38fef630cb7f0c1ac8b20eda9a410bbc31f8fe5851?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy&tag=v4.11.0-202310300625.p0.gc04896c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-state-metrics@sha256:d54268395117262d6fbdb6fa4e1e06f7dba73b98fe174063155b39b20b3ebac4_ppc64le", + "product": { + "name": "openshift4/ose-kube-state-metrics@sha256:d54268395117262d6fbdb6fa4e1e06f7dba73b98fe174063155b39b20b3ebac4_ppc64le", + "product_id": "openshift4/ose-kube-state-metrics@sha256:d54268395117262d6fbdb6fa4e1e06f7dba73b98fe174063155b39b20b3ebac4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-state-metrics@sha256:d54268395117262d6fbdb6fa4e1e06f7dba73b98fe174063155b39b20b3ebac4?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics&tag=v4.11.0-202310200743.p0.g8dc2dc0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:258f9eaf058b75264eb81dfe928c4617d193cfb045814d8ae4586b05c080bdaf_ppc64le", + "product": { + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:258f9eaf058b75264eb81dfe928c4617d193cfb045814d8ae4586b05c080bdaf_ppc64le", + "product_id": "openshift4/ose-kuryr-cni-rhel8@sha256:258f9eaf058b75264eb81dfe928c4617d193cfb045814d8ae4586b05c080bdaf_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kuryr-cni-rhel8@sha256:258f9eaf058b75264eb81dfe928c4617d193cfb045814d8ae4586b05c080bdaf?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kuryr-cni-rhel8&tag=v4.11.0-202310200743.p0.gc732699.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kuryr-controller-rhel8@sha256:ddc09d9105b6e86baeb1024831ccd3a5635377276c4b3c010cd92508a7ddb415_ppc64le", + "product": { + "name": "openshift4/ose-kuryr-controller-rhel8@sha256:ddc09d9105b6e86baeb1024831ccd3a5635377276c4b3c010cd92508a7ddb415_ppc64le", + "product_id": "openshift4/ose-kuryr-controller-rhel8@sha256:ddc09d9105b6e86baeb1024831ccd3a5635377276c4b3c010cd92508a7ddb415_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kuryr-controller-rhel8@sha256:ddc09d9105b6e86baeb1024831ccd3a5635377276c4b3c010cd92508a7ddb415?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kuryr-controller-rhel8&tag=v4.11.0-202310200743.p0.gc732699.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-marketplace@sha256:abbb65e48e1b8acf1f4254da501c762b68c684b2b352c97ba0ad7261e74b8b13_ppc64le", + "product": { + "name": "openshift4/ose-operator-marketplace@sha256:abbb65e48e1b8acf1f4254da501c762b68c684b2b352c97ba0ad7261e74b8b13_ppc64le", + "product_id": "openshift4/ose-operator-marketplace@sha256:abbb65e48e1b8acf1f4254da501c762b68c684b2b352c97ba0ad7261e74b8b13_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-marketplace@sha256:abbb65e48e1b8acf1f4254da501c762b68c684b2b352c97ba0ad7261e74b8b13?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-operator-marketplace&tag=v4.11.0-202310201443.p0.gc3bae40.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-cni@sha256:329f2260fb84f81417ddc72f61211bad8a49e6c7060aa2ff469b1b7972a56a6b_ppc64le", + "product": { + "name": "openshift4/ose-multus-cni@sha256:329f2260fb84f81417ddc72f61211bad8a49e6c7060aa2ff469b1b7972a56a6b_ppc64le", + "product_id": "openshift4/ose-multus-cni@sha256:329f2260fb84f81417ddc72f61211bad8a49e6c7060aa2ff469b1b7972a56a6b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-cni@sha256:329f2260fb84f81417ddc72f61211bad8a49e6c7060aa2ff469b1b7972a56a6b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-multus-cni&tag=v4.11.0-202310200743.p0.g67cf297.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-server-rhel8@sha256:02abd083b9c3cb965b824cb50c3f7ed0e6d490ce4714545efcf3aab9b2c8f4d7_ppc64le", + "product": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:02abd083b9c3cb965b824cb50c3f7ed0e6d490ce4714545efcf3aab9b2c8f4d7_ppc64le", + "product_id": "openshift4/ose-oauth-server-rhel8@sha256:02abd083b9c3cb965b824cb50c3f7ed0e6d490ce4714545efcf3aab9b2c8f4d7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-server-rhel8@sha256:02abd083b9c3cb965b824cb50c3f7ed0e6d490ce4714545efcf3aab9b2c8f4d7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel8&tag=v4.11.0-202310200743.p0.g8d80088.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-builder@sha256:ed5b9a4b9e8a6f70546dcb318529caf2cf7b49db970831abd54f03e015100752_ppc64le", + "product": { + "name": "openshift4/ose-docker-builder@sha256:ed5b9a4b9e8a6f70546dcb318529caf2cf7b49db970831abd54f03e015100752_ppc64le", + "product_id": "openshift4/ose-docker-builder@sha256:ed5b9a4b9e8a6f70546dcb318529caf2cf7b49db970831abd54f03e015100752_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-builder@sha256:ed5b9a4b9e8a6f70546dcb318529caf2cf7b49db970831abd54f03e015100752?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-docker-builder&tag=v4.11.0-202310200743.p0.gd9f5ca0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli@sha256:4e810ece74dca5b8daae1314b6b4b863c39b1827180d2dec00a57da0848141f0_ppc64le", + "product": { + "name": "openshift4/ose-cli@sha256:4e810ece74dca5b8daae1314b6b4b863c39b1827180d2dec00a57da0848141f0_ppc64le", + "product_id": "openshift4/ose-cli@sha256:4e810ece74dca5b8daae1314b6b4b863c39b1827180d2dec00a57da0848141f0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli@sha256:4e810ece74dca5b8daae1314b6b4b863c39b1827180d2dec00a57da0848141f0?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cli&tag=v4.11.0-202310251925.p0.gbbc7c58.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console@sha256:78cb3fc53ed6bc598736e3e4d701634abd4466a6534fc51f301ac34a60aa4c9c_ppc64le", + "product": { + "name": "openshift4/ose-console@sha256:78cb3fc53ed6bc598736e3e4d701634abd4466a6534fc51f301ac34a60aa4c9c_ppc64le", + "product_id": "openshift4/ose-console@sha256:78cb3fc53ed6bc598736e3e4d701634abd4466a6534fc51f301ac34a60aa4c9c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-console@sha256:78cb3fc53ed6bc598736e3e4d701634abd4466a6534fc51f301ac34a60aa4c9c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-console&tag=v4.11.0-202310200743.p0.g332cb4f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console-operator@sha256:61a7fca1d8bbd7971336d19f8ddc4698598797cdb93fa8e50b0dd9575805a4dd_ppc64le", + "product": { + "name": "openshift4/ose-console-operator@sha256:61a7fca1d8bbd7971336d19f8ddc4698598797cdb93fa8e50b0dd9575805a4dd_ppc64le", + "product_id": "openshift4/ose-console-operator@sha256:61a7fca1d8bbd7971336d19f8ddc4698598797cdb93fa8e50b0dd9575805a4dd_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-console-operator@sha256:61a7fca1d8bbd7971336d19f8ddc4698598797cdb93fa8e50b0dd9575805a4dd?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-console-operator&tag=v4.11.0-202310261501.p0.g488fe13.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-deployer@sha256:79dff3367ec6f976aadbea61ec50be8403c8920e372caefe81589f0129b319ea_ppc64le", + "product": { + "name": "openshift4/ose-deployer@sha256:79dff3367ec6f976aadbea61ec50be8403c8920e372caefe81589f0129b319ea_ppc64le", + "product_id": "openshift4/ose-deployer@sha256:79dff3367ec6f976aadbea61ec50be8403c8920e372caefe81589f0129b319ea_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-deployer@sha256:79dff3367ec6f976aadbea61ec50be8403c8920e372caefe81589f0129b319ea?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-deployer&tag=v4.11.0-202310251925.p0.gbbc7c58.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-haproxy-router@sha256:3f62f8f805b24a03de3176db23281bbe5d7947d1c44db32a73c4124118c37304_ppc64le", + "product": { + "name": "openshift4/ose-haproxy-router@sha256:3f62f8f805b24a03de3176db23281bbe5d7947d1c44db32a73c4124118c37304_ppc64le", + "product_id": "openshift4/ose-haproxy-router@sha256:3f62f8f805b24a03de3176db23281bbe5d7947d1c44db32a73c4124118c37304_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-haproxy-router@sha256:3f62f8f805b24a03de3176db23281bbe5d7947d1c44db32a73c4124118c37304?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-haproxy-router&tag=v4.11.0-202310200743.p0.gd9b76b8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hyperkube@sha256:963c7908ccb27a288eedf70736ee3688d7e373b359db8b5b540b7455dca85388_ppc64le", + "product": { + "name": "openshift4/ose-hyperkube@sha256:963c7908ccb27a288eedf70736ee3688d7e373b359db8b5b540b7455dca85388_ppc64le", + "product_id": "openshift4/ose-hyperkube@sha256:963c7908ccb27a288eedf70736ee3688d7e373b359db8b5b540b7455dca85388_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-hyperkube@sha256:963c7908ccb27a288eedf70736ee3688d7e373b359db8b5b540b7455dca85388?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-hyperkube&tag=v4.11.0-202310201801.p0.gc70bea0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-keepalived-ipfailover@sha256:2dce77ce57ff4eeade377924e266964a8a523914caaecc11466467a9284fdc98_ppc64le", + "product": { + "name": "openshift4/ose-keepalived-ipfailover@sha256:2dce77ce57ff4eeade377924e266964a8a523914caaecc11466467a9284fdc98_ppc64le", + "product_id": "openshift4/ose-keepalived-ipfailover@sha256:2dce77ce57ff4eeade377924e266964a8a523914caaecc11466467a9284fdc98_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-keepalived-ipfailover@sha256:2dce77ce57ff4eeade377924e266964a8a523914caaecc11466467a9284fdc98?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover&tag=v4.11.0-202310200743.p0.gf1330f6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-pod@sha256:bc7c2e4da93a0c3344ce9b9930975a5c88b313d8144a99fefd9af9f61ecb807e_ppc64le", + "product": { + "name": "openshift4/ose-pod@sha256:bc7c2e4da93a0c3344ce9b9930975a5c88b313d8144a99fefd9af9f61ecb807e_ppc64le", + "product_id": "openshift4/ose-pod@sha256:bc7c2e4da93a0c3344ce9b9930975a5c88b313d8144a99fefd9af9f61ecb807e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-pod@sha256:bc7c2e4da93a0c3344ce9b9930975a5c88b313d8144a99fefd9af9f61ecb807e?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-pod&tag=v4.11.0-202310201801.p0.gc70bea0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-registry@sha256:9e33dddcaa6c2f0676a96dce7001dc99547994d4148ebbec0008bacb08a0c79c_ppc64le", + "product": { + "name": "openshift4/ose-docker-registry@sha256:9e33dddcaa6c2f0676a96dce7001dc99547994d4148ebbec0008bacb08a0c79c_ppc64le", + "product_id": "openshift4/ose-docker-registry@sha256:9e33dddcaa6c2f0676a96dce7001dc99547994d4148ebbec0008bacb08a0c79c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-registry@sha256:9e33dddcaa6c2f0676a96dce7001dc99547994d4148ebbec0008bacb08a0c79c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-docker-registry&tag=v4.11.0-202310200743.p0.g431737b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tests@sha256:7f41a060de6f843f5ba99558fa5495cd00a3c5586be9b9d517c107d02eebf4f8_ppc64le", + "product": { + "name": "openshift4/ose-tests@sha256:7f41a060de6f843f5ba99558fa5495cd00a3c5586be9b9d517c107d02eebf4f8_ppc64le", + "product_id": "openshift4/ose-tests@sha256:7f41a060de6f843f5ba99558fa5495cd00a3c5586be9b9d517c107d02eebf4f8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-tests@sha256:7f41a060de6f843f5ba99558fa5495cd00a3c5586be9b9d517c107d02eebf4f8?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-tests&tag=v4.11.0-202310260725.p0.gb34b8a2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:58d4f874ac25bf3559e9b7cdb3ea3ce1397491cf1053d0382f354b763b7a896b_ppc64le", + "product": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:58d4f874ac25bf3559e9b7cdb3ea3ce1397491cf1053d0382f354b763b7a896b_ppc64le", + "product_id": "openshift4/ose-openshift-state-metrics-rhel8@sha256:58d4f874ac25bf3559e9b7cdb3ea3ce1397491cf1053d0382f354b763b7a896b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-state-metrics-rhel8@sha256:58d4f874ac25bf3559e9b7cdb3ea3ce1397491cf1053d0382f354b763b7a896b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8&tag=v4.11.0-202310200743.p0.g1a7a5dc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-lifecycle-manager@sha256:b5d3fc53f4d47a51f4fcfca50f38ddb71eb4938cf8bf3b829a843f6484ae45f1_ppc64le", + "product": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:b5d3fc53f4d47a51f4fcfca50f38ddb71eb4938cf8bf3b829a843f6484ae45f1_ppc64le", + "product_id": "openshift4/ose-operator-lifecycle-manager@sha256:b5d3fc53f4d47a51f4fcfca50f38ddb71eb4938cf8bf3b829a843f6484ae45f1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-lifecycle-manager@sha256:b5d3fc53f4d47a51f4fcfca50f38ddb71eb4938cf8bf3b829a843f6484ae45f1?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager&tag=v4.11.0-202310200743.p0.ge0e9236.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-registry@sha256:274e1ca723bef3990c1429f1216a9f1f47241aba62d494f278666610d4857252_ppc64le", + "product": { + "name": "openshift4/ose-operator-registry@sha256:274e1ca723bef3990c1429f1216a9f1f47241aba62d494f278666610d4857252_ppc64le", + "product_id": "openshift4/ose-operator-registry@sha256:274e1ca723bef3990c1429f1216a9f1f47241aba62d494f278666610d4857252_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-registry@sha256:274e1ca723bef3990c1429f1216a9f1f47241aba62d494f278666610d4857252?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-operator-registry&tag=v4.11.0-202310200743.p0.ge0e9236.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:87772908cc5f7aad001a52a85d074df650d8d650249d5e64e2d2730492991fed_ppc64le", + "product": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:87772908cc5f7aad001a52a85d074df650d8d650249d5e64e2d2730492991fed_ppc64le", + "product_id": "openshift4/ose-agent-installer-api-server-rhel8@sha256:87772908cc5f7aad001a52a85d074df650d8d650249d5e64e2d2730492991fed_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-api-server-rhel8@sha256:87772908cc5f7aad001a52a85d074df650d8d650249d5e64e2d2730492991fed?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8&tag=v4.11.0-202310251925.p0.gbc51be8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:002c0fa1c8a271467359b1637dd75737f68e9da0d3aa6d2f317840d4d6084a9d_ppc64le", + "product": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:002c0fa1c8a271467359b1637dd75737f68e9da0d3aa6d2f317840d4d6084a9d_ppc64le", + "product_id": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:002c0fa1c8a271467359b1637dd75737f68e9da0d3aa6d2f317840d4d6084a9d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-csr-approver-rhel8@sha256:002c0fa1c8a271467359b1637dd75737f68e9da0d3aa6d2f317840d4d6084a9d?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8&tag=v4.11.0-202310251925.p0.gaa46748.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:4d1b32d4e9b3a2e99a9d08291fd4d83100f20d341f19f3b31a3fed1b0410729d_ppc64le", + "product": { + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:4d1b32d4e9b3a2e99a9d08291fd4d83100f20d341f19f3b31a3fed1b0410729d_ppc64le", + "product_id": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:4d1b32d4e9b3a2e99a9d08291fd4d83100f20d341f19f3b31a3fed1b0410729d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-node-agent-rhel8@sha256:4d1b32d4e9b3a2e99a9d08291fd4d83100f20d341f19f3b31a3fed1b0410729d?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8&tag=v4.11.0-202310200743.p0.ge74ffbf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6d7fa8ea0329eb8a3621562321816dcfa795550ebef3d8905d2f84e073ef7689_ppc64le", + "product": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6d7fa8ea0329eb8a3621562321816dcfa795550ebef3d8905d2f84e073ef7689_ppc64le", + "product_id": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6d7fa8ea0329eb8a3621562321816dcfa795550ebef3d8905d2f84e073ef7689_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-orchestrator-rhel8@sha256:6d7fa8ea0329eb8a3621562321816dcfa795550ebef3d8905d2f84e073ef7689?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8&tag=v4.11.0-202310200743.p0.gaa46748.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:e10348944f0e109da41ff9e2f268f2bcd271e0301905df5a4079ef79f689feca_ppc64le", + "product": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:e10348944f0e109da41ff9e2f268f2bcd271e0301905df5a4079ef79f689feca_ppc64le", + "product_id": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:e10348944f0e109da41ff9e2f268f2bcd271e0301905df5a4079ef79f689feca_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-apiserver-network-proxy-rhel8@sha256:e10348944f0e109da41ff9e2f268f2bcd271e0301905df5a4079ef79f689feca?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8&tag=v4.11.0-202310201801.p0.g15cd434.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:785df2d774a8e0998219aaae3b9b6f84be74f5a64990e8ba48296190999755d8_ppc64le", + "product": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:785df2d774a8e0998219aaae3b9b6f84be74f5a64990e8ba48296190999755d8_ppc64le", + "product_id": "openshift4/ose-baremetal-installer-rhel8@sha256:785df2d774a8e0998219aaae3b9b6f84be74f5a64990e8ba48296190999755d8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-installer-rhel8@sha256:785df2d774a8e0998219aaae3b9b6f84be74f5a64990e8ba48296190999755d8?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8&tag=v4.11.0-202310200743.p0.gc63578d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:a919e2aba4fb7d260dd3fd4ddf8ebf3bde986ef3d4c8961fa71ea36b65e3b954_ppc64le", + "product": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:a919e2aba4fb7d260dd3fd4ddf8ebf3bde986ef3d4c8961fa71ea36b65e3b954_ppc64le", + "product_id": "openshift4/ose-baremetal-rhel8-operator@sha256:a919e2aba4fb7d260dd3fd4ddf8ebf3bde986ef3d4c8961fa71ea36b65e3b954_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-rhel8-operator@sha256:a919e2aba4fb7d260dd3fd4ddf8ebf3bde986ef3d4c8961fa71ea36b65e3b954?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel8-operator&tag=v4.11.0-202310201226.p0.gf7b90bf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:459c9475068ae6f71bed28adaa734740b1e54a87946659c0227d49f03c14aa1e_ppc64le", + "product": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:459c9475068ae6f71bed28adaa734740b1e54a87946659c0227d49f03c14aa1e_ppc64le", + "product_id": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:459c9475068ae6f71bed28adaa734740b1e54a87946659c0227d49f03c14aa1e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-runtimecfg-rhel8@sha256:459c9475068ae6f71bed28adaa734740b1e54a87946659c0227d49f03c14aa1e?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8&tag=v4.11.0-202310200743.p0.g09f5604.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli-artifacts@sha256:d683969f9b18e1d3b9fd188c6b6fc2e56f906157670e809e73dea78c74efa608_ppc64le", + "product": { + "name": "openshift4/ose-cli-artifacts@sha256:d683969f9b18e1d3b9fd188c6b6fc2e56f906157670e809e73dea78c74efa608_ppc64le", + "product_id": "openshift4/ose-cli-artifacts@sha256:d683969f9b18e1d3b9fd188c6b6fc2e56f906157670e809e73dea78c74efa608_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli-artifacts@sha256:d683969f9b18e1d3b9fd188c6b6fc2e56f906157670e809e73dea78c74efa608?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cli-artifacts&tag=v4.11.0-202310251925.p0.gbbc7c58.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-credential-operator@sha256:c07bcc29651733b8326737c74185d66c9c8e536c4eb0c65bad86d47fbc3dae95_ppc64le", + "product": { + "name": "openshift4/ose-cloud-credential-operator@sha256:c07bcc29651733b8326737c74185d66c9c8e536c4eb0c65bad86d47fbc3dae95_ppc64le", + "product_id": "openshift4/ose-cloud-credential-operator@sha256:c07bcc29651733b8326737c74185d66c9c8e536c4eb0c65bad86d47fbc3dae95_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-credential-operator@sha256:c07bcc29651733b8326737c74185d66c9c8e536c4eb0c65bad86d47fbc3dae95?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cloud-credential-operator&tag=v4.11.0-202310200743.p0.g7c4c935.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:7426899efa4b4d01e043b69465633739099dceaec4abd208c76057caddef7815_ppc64le", + "product": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:7426899efa4b4d01e043b69465633739099dceaec4abd208c76057caddef7815_ppc64le", + "product_id": "openshift4/cloud-network-config-controller-rhel8@sha256:7426899efa4b4d01e043b69465633739099dceaec4abd208c76057caddef7815_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cloud-network-config-controller-rhel8@sha256:7426899efa4b4d01e043b69465633739099dceaec4abd208c76057caddef7815?arch=ppc64le&repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel8&tag=v4.11.0-202310200743.p0.gfd849e3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-api-rhel8@sha256:088624d63f15e601949ec12be36a2e9a13d3783ab2b9734613ba910930c2c8f1_ppc64le", + "product": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:088624d63f15e601949ec12be36a2e9a13d3783ab2b9734613ba910930c2c8f1_ppc64le", + "product_id": "openshift4/ose-cluster-api-rhel8@sha256:088624d63f15e601949ec12be36a2e9a13d3783ab2b9734613ba910930c2c8f1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-api-rhel8@sha256:088624d63f15e601949ec12be36a2e9a13d3783ab2b9734613ba910930c2c8f1?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel8&tag=v4.11.0-202310200743.p0.gf9c215c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-authentication-operator@sha256:d43a53369784e6d17861530152d367c01a67a7b26b247ab06c4223698ae46a15_ppc64le", + "product": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:d43a53369784e6d17861530152d367c01a67a7b26b247ab06c4223698ae46a15_ppc64le", + "product_id": "openshift4/ose-cluster-authentication-operator@sha256:d43a53369784e6d17861530152d367c01a67a7b26b247ab06c4223698ae46a15_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-authentication-operator@sha256:d43a53369784e6d17861530152d367c01a67a7b26b247ab06c4223698ae46a15?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-operator&tag=v4.11.0-202310200743.p0.ge2bcbaa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:2e991b7c57cb1bab609c6d78a99c44f5034046060da09f72e14b6d261a30ffdd_ppc64le", + "product": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:2e991b7c57cb1bab609c6d78a99c44f5034046060da09f72e14b6d261a30ffdd_ppc64le", + "product_id": "openshift4/ose-cluster-autoscaler-operator@sha256:2e991b7c57cb1bab609c6d78a99c44f5034046060da09f72e14b6d261a30ffdd_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler-operator@sha256:2e991b7c57cb1bab609c6d78a99c44f5034046060da09f72e14b6d261a30ffdd?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-operator&tag=v4.11.0-202310200743.p0.gfcffbcd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:94cef6960266bc6411bfb7c58c3636c495fa8acb36ff529c393e2d57c1fe2131_ppc64le", + "product": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:94cef6960266bc6411bfb7c58c3636c495fa8acb36ff529c393e2d57c1fe2131_ppc64le", + "product_id": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:94cef6960266bc6411bfb7c58c3636c495fa8acb36ff529c393e2d57c1fe2131_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-baremetal-operator-rhel8@sha256:94cef6960266bc6411bfb7c58c3636c495fa8acb36ff529c393e2d57c1fe2131?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8&tag=v4.11.0-202310251925.p0.g4d2ec1d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-bootstrap@sha256:fd179cbdaea077fc2bf9e26aa128f16c6c17866a2fa8de0b88bdc1f6cc54d3f7_ppc64le", + "product": { + "name": "openshift4/ose-cluster-bootstrap@sha256:fd179cbdaea077fc2bf9e26aa128f16c6c17866a2fa8de0b88bdc1f6cc54d3f7_ppc64le", + "product_id": "openshift4/ose-cluster-bootstrap@sha256:fd179cbdaea077fc2bf9e26aa128f16c6c17866a2fa8de0b88bdc1f6cc54d3f7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-bootstrap@sha256:fd179cbdaea077fc2bf9e26aa128f16c6c17866a2fa8de0b88bdc1f6cc54d3f7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap&tag=v4.11.0-202310200743.p0.gffb5e2e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:25445f76fd0d60934a4910f90770d2b617c4307940c451648354bfd8b9ead43e_ppc64le", + "product": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:25445f76fd0d60934a4910f90770d2b617c4307940c451648354bfd8b9ead43e_ppc64le", + "product_id": "openshift4/ose-cluster-capi-rhel8-operator@sha256:25445f76fd0d60934a4910f90770d2b617c4307940c451648354bfd8b9ead43e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-rhel8-operator@sha256:25445f76fd0d60934a4910f90770d2b617c4307940c451648354bfd8b9ead43e?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator&tag=v4.11.0-202310200743.p0.g06d77ef.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:25445f76fd0d60934a4910f90770d2b617c4307940c451648354bfd8b9ead43e_ppc64le", + "product": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:25445f76fd0d60934a4910f90770d2b617c4307940c451648354bfd8b9ead43e_ppc64le", + "product_id": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:25445f76fd0d60934a4910f90770d2b617c4307940c451648354bfd8b9ead43e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-operator-container-rhel8@sha256:25445f76fd0d60934a4910f90770d2b617c4307940c451648354bfd8b9ead43e?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8&tag=v4.11.0-202310200743.p0.g06d77ef.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:41fa0183e7ba78146efcefec5ecdbb135279486571638a557ca06f630853e8c3_ppc64le", + "product": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:41fa0183e7ba78146efcefec5ecdbb135279486571638a557ca06f630853e8c3_ppc64le", + "product_id": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:41fa0183e7ba78146efcefec5ecdbb135279486571638a557ca06f630853e8c3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:41fa0183e7ba78146efcefec5ecdbb135279486571638a557ca06f630853e8c3?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8&tag=v4.11.0-202310200743.p0.g2dbffc6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-config-operator@sha256:152d9f10c1ec51264f2c8410be663cfab4cae6f518012906a20e0c36f541dc72_ppc64le", + "product": { + "name": "openshift4/ose-cluster-config-operator@sha256:152d9f10c1ec51264f2c8410be663cfab4cae6f518012906a20e0c36f541dc72_ppc64le", + "product_id": "openshift4/ose-cluster-config-operator@sha256:152d9f10c1ec51264f2c8410be663cfab4cae6f518012906a20e0c36f541dc72_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-config-operator@sha256:152d9f10c1ec51264f2c8410be663cfab4cae6f518012906a20e0c36f541dc72?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-config-operator&tag=v4.11.0-202310200743.p0.g0e01b06.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:a15e1913349f77a62b3cd503fecb05b89475bd0d92b29dedf474c7c2e83ae488_ppc64le", + "product": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:a15e1913349f77a62b3cd503fecb05b89475bd0d92b29dedf474c7c2e83ae488_ppc64le", + "product_id": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:a15e1913349f77a62b3cd503fecb05b89475bd0d92b29dedf474c7c2e83ae488_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:a15e1913349f77a62b3cd503fecb05b89475bd0d92b29dedf474c7c2e83ae488?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator&tag=v4.11.0-202310280825.p0.ga95aec8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-dns-operator@sha256:f0a6a2e76e1b5fae8ac781aeeb90a68c16f79735f69171f891af52eb328bdd06_ppc64le", + "product": { + "name": "openshift4/ose-cluster-dns-operator@sha256:f0a6a2e76e1b5fae8ac781aeeb90a68c16f79735f69171f891af52eb328bdd06_ppc64le", + "product_id": "openshift4/ose-cluster-dns-operator@sha256:f0a6a2e76e1b5fae8ac781aeeb90a68c16f79735f69171f891af52eb328bdd06_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-dns-operator@sha256:f0a6a2e76e1b5fae8ac781aeeb90a68c16f79735f69171f891af52eb328bdd06?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-dns-operator&tag=v4.11.0-202310270443.p0.g69b0ceb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-image-registry-operator@sha256:c59c78b7bacc4fe72e150108a9511fe36e97edbef4aa631143901afc4ff3d98b_ppc64le", + "product": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:c59c78b7bacc4fe72e150108a9511fe36e97edbef4aa631143901afc4ff3d98b_ppc64le", + "product_id": "openshift4/ose-cluster-image-registry-operator@sha256:c59c78b7bacc4fe72e150108a9511fe36e97edbef4aa631143901afc4ff3d98b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-image-registry-operator@sha256:c59c78b7bacc4fe72e150108a9511fe36e97edbef4aa631143901afc4ff3d98b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-operator&tag=v4.11.0-202310200743.p0.g1583069.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-ingress-operator@sha256:40e34f918316a0f73864d65080ae9e05f9cfd288809e1b3cea7f9a200f587180_ppc64le", + "product": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:40e34f918316a0f73864d65080ae9e05f9cfd288809e1b3cea7f9a200f587180_ppc64le", + "product_id": "openshift4/ose-cluster-ingress-operator@sha256:40e34f918316a0f73864d65080ae9e05f9cfd288809e1b3cea7f9a200f587180_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-ingress-operator@sha256:40e34f918316a0f73864d65080ae9e05f9cfd288809e1b3cea7f9a200f587180?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-operator&tag=v4.11.0-202310291243.p0.gb45e64a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:e69a059307d2c9d1c851b6cda2828c74287cbb8405f0fd10163ca45f7c45202b_ppc64le", + "product": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:e69a059307d2c9d1c851b6cda2828c74287cbb8405f0fd10163ca45f7c45202b_ppc64le", + "product_id": "openshift4/ose-cluster-kube-apiserver-operator@sha256:e69a059307d2c9d1c851b6cda2828c74287cbb8405f0fd10163ca45f7c45202b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-apiserver-operator@sha256:e69a059307d2c9d1c851b6cda2828c74287cbb8405f0fd10163ca45f7c45202b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator&tag=v4.11.0-202310200743.p0.g7021090.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:fca044f058031e3c6193477d66501f33d055d21ffc4e8bf954950ecd30c51ebd_ppc64le", + "product": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:fca044f058031e3c6193477d66501f33d055d21ffc4e8bf954950ecd30c51ebd_ppc64le", + "product_id": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:fca044f058031e3c6193477d66501f33d055d21ffc4e8bf954950ecd30c51ebd_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel8-operator@sha256:fca044f058031e3c6193477d66501f33d055d21ffc4e8bf954950ecd30c51ebd?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator&tag=v4.11.0-202310200743.p0.g21da027.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:9cd0ac824c20a38e407f4f56d47eefed247379fce19323afff6777a37f3aec95_ppc64le", + "product": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:9cd0ac824c20a38e407f4f56d47eefed247379fce19323afff6777a37f3aec95_ppc64le", + "product_id": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:9cd0ac824c20a38e407f4f56d47eefed247379fce19323afff6777a37f3aec95_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-controller-manager-operator@sha256:9cd0ac824c20a38e407f4f56d47eefed247379fce19323afff6777a37f3aec95?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator&tag=v4.11.0-202310200743.p0.ge65f505.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:e0dad09090980117ebccd4af90472f3c768404f1c3e7816eb0c4fec5a81eaed8_ppc64le", + "product": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:e0dad09090980117ebccd4af90472f3c768404f1c3e7816eb0c4fec5a81eaed8_ppc64le", + "product_id": "openshift4/ose-cluster-kube-scheduler-operator@sha256:e0dad09090980117ebccd4af90472f3c768404f1c3e7816eb0c4fec5a81eaed8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-scheduler-operator@sha256:e0dad09090980117ebccd4af90472f3c768404f1c3e7816eb0c4fec5a81eaed8?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator&tag=v4.11.0-202310200743.p0.g324e1c3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:6cdc2e03c746d1fb4b5bf898bb25dc38c624b99cbf36c801ad300cf24cd71a8b_ppc64le", + "product": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:6cdc2e03c746d1fb4b5bf898bb25dc38c624b99cbf36c801ad300cf24cd71a8b_ppc64le", + "product_id": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:6cdc2e03c746d1fb4b5bf898bb25dc38c624b99cbf36c801ad300cf24cd71a8b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:6cdc2e03c746d1fb4b5bf898bb25dc38c624b99cbf36c801ad300cf24cd71a8b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator&tag=v4.11.0-202310200743.p0.g12d050a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-machine-approver@sha256:326f7482582c73c763fdd9154ea3f4e7b9688311e4a29d1dd861ca42b8a86b15_ppc64le", + "product": { + "name": "openshift4/ose-cluster-machine-approver@sha256:326f7482582c73c763fdd9154ea3f4e7b9688311e4a29d1dd861ca42b8a86b15_ppc64le", + "product_id": "openshift4/ose-cluster-machine-approver@sha256:326f7482582c73c763fdd9154ea3f4e7b9688311e4a29d1dd861ca42b8a86b15_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-machine-approver@sha256:326f7482582c73c763fdd9154ea3f4e7b9688311e4a29d1dd861ca42b8a86b15?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver&tag=v4.11.0-202310200743.p0.gaa62f3b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:2b5bfbaa0b2ee6595be0a5b4cbc6d41d51a7a4b5306953d2676d8cf182e364e1_ppc64le", + "product": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:2b5bfbaa0b2ee6595be0a5b4cbc6d41d51a7a4b5306953d2676d8cf182e364e1_ppc64le", + "product_id": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:2b5bfbaa0b2ee6595be0a5b4cbc6d41d51a7a4b5306953d2676d8cf182e364e1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-apiserver-operator@sha256:2b5bfbaa0b2ee6595be0a5b4cbc6d41d51a7a4b5306953d2676d8cf182e364e1?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator&tag=v4.11.0-202310200743.p0.gcb39fde.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:8c6c7ea9c3e20af38a8b07036565d005acd96f5ecafb825e838a5600706248e9_ppc64le", + "product": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:8c6c7ea9c3e20af38a8b07036565d005acd96f5ecafb825e838a5600706248e9_ppc64le", + "product_id": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:8c6c7ea9c3e20af38a8b07036565d005acd96f5ecafb825e838a5600706248e9_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-controller-manager-operator@sha256:8c6c7ea9c3e20af38a8b07036565d005acd96f5ecafb825e838a5600706248e9?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator&tag=v4.11.0-202310200743.p0.ga536525.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:e4deac18608ea3a3eca50acb6d09633fdfd3d7cea955d6ec488918ff1cda4ada_ppc64le", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:e4deac18608ea3a3eca50acb6d09633fdfd3d7cea955d6ec488918ff1cda4ada_ppc64le", + "product_id": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:e4deac18608ea3a3eca50acb6d09633fdfd3d7cea955d6ec488918ff1cda4ada_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8-operator@sha256:e4deac18608ea3a3eca50acb6d09633fdfd3d7cea955d6ec488918ff1cda4ada?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator&tag=v4.11.0-202310200743.p0.g1c75c12.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:f4e89ba7297ed94f69b9d952c41b99ed4a1ce50ba0f126ee09c697af715623bc_ppc64le", + "product": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:f4e89ba7297ed94f69b9d952c41b99ed4a1ce50ba0f126ee09c697af715623bc_ppc64le", + "product_id": "openshift4/ose-cluster-policy-controller-rhel8@sha256:f4e89ba7297ed94f69b9d952c41b99ed4a1ce50ba0f126ee09c697af715623bc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-policy-controller-rhel8@sha256:f4e89ba7297ed94f69b9d952c41b99ed4a1ce50ba0f126ee09c697af715623bc?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8&tag=v4.11.0-202310200743.p0.g5651181.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-samples-operator@sha256:1f32b54665f03604cc0555f016e2075ea4ef2e169178b804ac8511d41bddd2c7_ppc64le", + "product": { + "name": "openshift4/ose-cluster-samples-operator@sha256:1f32b54665f03604cc0555f016e2075ea4ef2e169178b804ac8511d41bddd2c7_ppc64le", + "product_id": "openshift4/ose-cluster-samples-operator@sha256:1f32b54665f03604cc0555f016e2075ea4ef2e169178b804ac8511d41bddd2c7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-samples-operator@sha256:1f32b54665f03604cc0555f016e2075ea4ef2e169178b804ac8511d41bddd2c7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-samples-operator&tag=v4.11.0-202310200743.p0.g051761b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-storage-operator@sha256:8d8c828c86cb9f8745c9e673e54b9fa52ada68fa7dd4fdc3ba885467b8729fde_ppc64le", + "product": { + "name": "openshift4/ose-cluster-storage-operator@sha256:8d8c828c86cb9f8745c9e673e54b9fa52ada68fa7dd4fdc3ba885467b8729fde_ppc64le", + "product_id": "openshift4/ose-cluster-storage-operator@sha256:8d8c828c86cb9f8745c9e673e54b9fa52ada68fa7dd4fdc3ba885467b8729fde_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-storage-operator@sha256:8d8c828c86cb9f8745c9e673e54b9fa52ada68fa7dd4fdc3ba885467b8729fde?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-storage-operator&tag=v4.11.0-202310251025.p0.gbc69ea3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-update-keys@sha256:5da4f07e1b9e6fddddce0b144bc44c994d5b98e8fe7d33b0cb8be5e8d8ae18a3_ppc64le", + "product": { + "name": "openshift4/ose-cluster-update-keys@sha256:5da4f07e1b9e6fddddce0b144bc44c994d5b98e8fe7d33b0cb8be5e8d8ae18a3_ppc64le", + "product_id": "openshift4/ose-cluster-update-keys@sha256:5da4f07e1b9e6fddddce0b144bc44c994d5b98e8fe7d33b0cb8be5e8d8ae18a3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-update-keys@sha256:5da4f07e1b9e6fddddce0b144bc44c994d5b98e8fe7d33b0cb8be5e8d8ae18a3?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys&tag=v4.11.0-202310200743.p0.g289032f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:0b5e464340bcb322041deb873913fe8ff45265b97353529210014291e1e646a9_ppc64le", + "product": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:0b5e464340bcb322041deb873913fe8ff45265b97353529210014291e1e646a9_ppc64le", + "product_id": "openshift4/ose-container-networking-plugins-rhel8@sha256:0b5e464340bcb322041deb873913fe8ff45265b97353529210014291e1e646a9_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-container-networking-plugins-rhel8@sha256:0b5e464340bcb322041deb873913fe8ff45265b97353529210014291e1e646a9?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8&tag=v4.11.0-202310200743.p0.g0ad9da6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:bd22d37a9641c00785211e10843b81f7a7a7d89aaac7c56ae500ede670eae125_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:bd22d37a9641c00785211e10843b81f7a7a7d89aaac7c56ae500ede670eae125_ppc64le", + "product_id": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:bd22d37a9641c00785211e10843b81f7a7a7d89aaac7c56ae500ede670eae125_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-rhel8@sha256:bd22d37a9641c00785211e10843b81f7a7a7d89aaac7c56ae500ede670eae125?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8&tag=v4.11.0-202310200743.p0.gb5a5a02.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ca1994f18be73728a608f5af20be37ae7efb564855c9ac5514219bf019a0764a_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ca1994f18be73728a608f5af20be37ae7efb564855c9ac5514219bf019a0764a_ppc64le", + "product_id": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ca1994f18be73728a608f5af20be37ae7efb564855c9ac5514219bf019a0764a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-operator-rhel8@sha256:ca1994f18be73728a608f5af20be37ae7efb564855c9ac5514219bf019a0764a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8&tag=v4.11.0-202310200743.p0.g20c9586.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:219651e24f5e6d5a998f38abc1910d3d742d1573d0211cdd8a2fa295a6c61fb9_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:219651e24f5e6d5a998f38abc1910d3d742d1573d0211cdd8a2fa295a6c61fb9_ppc64le", + "product_id": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:219651e24f5e6d5a998f38abc1910d3d742d1573d0211cdd8a2fa295a6c61fb9_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-webhook-rhel8@sha256:219651e24f5e6d5a998f38abc1910d3d742d1573d0211cdd8a2fa295a6c61fb9?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8&tag=v4.11.0-202310200743.p0.gb5a5a02.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:239fa2640fc0781be819e9488e44421f49985986e109ccabf902e0fec9e2686c_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:239fa2640fc0781be819e9488e44421f49985986e109ccabf902e0fec9e2686c_ppc64le", + "product_id": "openshift4/ose-csi-external-resizer-rhel8@sha256:239fa2640fc0781be819e9488e44421f49985986e109ccabf902e0fec9e2686c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer-rhel8@sha256:239fa2640fc0781be819e9488e44421f49985986e109ccabf902e0fec9e2686c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8&tag=v4.11.0-202310271626.p0.g15ef766.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer@sha256:239fa2640fc0781be819e9488e44421f49985986e109ccabf902e0fec9e2686c_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-resizer@sha256:239fa2640fc0781be819e9488e44421f49985986e109ccabf902e0fec9e2686c_ppc64le", + "product_id": "openshift4/ose-csi-external-resizer@sha256:239fa2640fc0781be819e9488e44421f49985986e109ccabf902e0fec9e2686c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer@sha256:239fa2640fc0781be819e9488e44421f49985986e109ccabf902e0fec9e2686c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer&tag=v4.11.0-202310271626.p0.g15ef766.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter@sha256:e168bf8e14343e2b44e19274a3d46d20ad9113737c5150ba87eb7fbbddedc708_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:e168bf8e14343e2b44e19274a3d46d20ad9113737c5150ba87eb7fbbddedc708_ppc64le", + "product_id": "openshift4/ose-csi-external-snapshotter@sha256:e168bf8e14343e2b44e19274a3d46d20ad9113737c5150ba87eb7fbbddedc708_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter@sha256:e168bf8e14343e2b44e19274a3d46d20ad9113737c5150ba87eb7fbbddedc708?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter&tag=v4.11.0-202310271701.p0.g54d2f3d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:e168bf8e14343e2b44e19274a3d46d20ad9113737c5150ba87eb7fbbddedc708_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:e168bf8e14343e2b44e19274a3d46d20ad9113737c5150ba87eb7fbbddedc708_ppc64le", + "product_id": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:e168bf8e14343e2b44e19274a3d46d20ad9113737c5150ba87eb7fbbddedc708_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter-rhel8@sha256:e168bf8e14343e2b44e19274a3d46d20ad9113737c5150ba87eb7fbbddedc708?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8&tag=v4.11.0-202310271701.p0.g54d2f3d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller@sha256:4c126a3e0e72b93a8f0b3fb57c8c120cfe8c65aee047f7e2ac3834abef433ab2_ppc64le", + "product": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:4c126a3e0e72b93a8f0b3fb57c8c120cfe8c65aee047f7e2ac3834abef433ab2_ppc64le", + "product_id": "openshift4/ose-csi-snapshot-controller@sha256:4c126a3e0e72b93a8f0b3fb57c8c120cfe8c65aee047f7e2ac3834abef433ab2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller@sha256:4c126a3e0e72b93a8f0b3fb57c8c120cfe8c65aee047f7e2ac3834abef433ab2?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller&tag=v4.11.0-202310271701.p0.g54d2f3d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:4c126a3e0e72b93a8f0b3fb57c8c120cfe8c65aee047f7e2ac3834abef433ab2_ppc64le", + "product": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:4c126a3e0e72b93a8f0b3fb57c8c120cfe8c65aee047f7e2ac3834abef433ab2_ppc64le", + "product_id": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:4c126a3e0e72b93a8f0b3fb57c8c120cfe8c65aee047f7e2ac3834abef433ab2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller-rhel8@sha256:4c126a3e0e72b93a8f0b3fb57c8c120cfe8c65aee047f7e2ac3834abef433ab2?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8&tag=v4.11.0-202310271701.p0.g54d2f3d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:ee01a05a62315cb76c76040c512874f6a39934c0769bc926ebf38aa3bac57b2a_ppc64le", + "product": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:ee01a05a62315cb76c76040c512874f6a39934c0769bc926ebf38aa3bac57b2a_ppc64le", + "product_id": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:ee01a05a62315cb76c76040c512874f6a39934c0769bc926ebf38aa3bac57b2a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-validation-webhook-rhel8@sha256:ee01a05a62315cb76c76040c512874f6a39934c0769bc926ebf38aa3bac57b2a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8&tag=v4.11.0-202310271701.p0.g54d2f3d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/egress-router-cni-rhel8@sha256:c1077bbce8ba2b5285129978038e100ed7102609e8da9e28f6252a2b76d6c210_ppc64le", + "product": { + "name": "openshift4/egress-router-cni-rhel8@sha256:c1077bbce8ba2b5285129978038e100ed7102609e8da9e28f6252a2b76d6c210_ppc64le", + "product_id": "openshift4/egress-router-cni-rhel8@sha256:c1077bbce8ba2b5285129978038e100ed7102609e8da9e28f6252a2b76d6c210_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/egress-router-cni-rhel8@sha256:c1077bbce8ba2b5285129978038e100ed7102609e8da9e28f6252a2b76d6c210?arch=ppc64le&repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel8&tag=v4.11.0-202310200743.p0.gfccaf1d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-etcd@sha256:490fe7aabd9fda7b4c40fa26a8fd8800ec376cdb5aeb88e29f1f45a4db2ca6ce_ppc64le", + "product": { + "name": "openshift4/ose-etcd@sha256:490fe7aabd9fda7b4c40fa26a8fd8800ec376cdb5aeb88e29f1f45a4db2ca6ce_ppc64le", + "product_id": "openshift4/ose-etcd@sha256:490fe7aabd9fda7b4c40fa26a8fd8800ec376cdb5aeb88e29f1f45a4db2ca6ce_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-etcd@sha256:490fe7aabd9fda7b4c40fa26a8fd8800ec376cdb5aeb88e29f1f45a4db2ca6ce?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-etcd&tag=v4.11.0-202310200743.p0.g2ccbc7d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:b1e1d0e2ffcd56228436ea1a2c38d1aa2c1dc1bf5846123b62de57a8dafdc4a4_ppc64le", + "product": { + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:b1e1d0e2ffcd56228436ea1a2c38d1aa2c1dc1bf5846123b62de57a8dafdc4a4_ppc64le", + "product_id": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:b1e1d0e2ffcd56228436ea1a2c38d1aa2c1dc1bf5846123b62de57a8dafdc4a4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel8@sha256:b1e1d0e2ffcd56228436ea1a2c38d1aa2c1dc1bf5846123b62de57a8dafdc4a4?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8&tag=v4.11.0-202310200743.p0.ga5a0048.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:9ac45a39075f3fb0518bcb96bb11b904672c3ea0e16fcb13071d8dfb3119ddf1_ppc64le", + "product": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:9ac45a39075f3fb0518bcb96bb11b904672c3ea0e16fcb13071d8dfb3119ddf1_ppc64le", + "product_id": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:9ac45a39075f3fb0518bcb96bb11b904672c3ea0e16fcb13071d8dfb3119ddf1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel8@sha256:9ac45a39075f3fb0518bcb96bb11b904672c3ea0e16fcb13071d8dfb3119ddf1?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8&tag=v4.11.0-202310200743.p0.gff20dda.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:0d5ffbc8f419135a97d9aed954e36826fa023a6189c2dd4bfa5eb1f8b2db43ed_ppc64le", + "product": { + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:0d5ffbc8f419135a97d9aed954e36826fa023a6189c2dd4bfa5eb1f8b2db43ed_ppc64le", + "product_id": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:0d5ffbc8f419135a97d9aed954e36826fa023a6189c2dd4bfa5eb1f8b2db43ed_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel8@sha256:0d5ffbc8f419135a97d9aed954e36826fa023a6189c2dd4bfa5eb1f8b2db43ed?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8&tag=v4.11.0-202310301603.p0.g86fbfae.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:63cc071048d2bb1f87ecf50896812f90daf8503946ab9c4e59061021724053ba_ppc64le", + "product": { + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:63cc071048d2bb1f87ecf50896812f90daf8503946ab9c4e59061021724053ba_ppc64le", + "product_id": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:63cc071048d2bb1f87ecf50896812f90daf8503946ab9c4e59061021724053ba_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel8@sha256:63cc071048d2bb1f87ecf50896812f90daf8503946ab9c4e59061021724053ba?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8&tag=v4.11.0-202310301526.p0.g89605b1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hypershift-rhel8@sha256:17e33500316a2fc8cd95938bcca09ca4c0946c0f418ac903c5e05dd3c8f80fcc_ppc64le", + "product": { + "name": "openshift4/ose-hypershift-rhel8@sha256:17e33500316a2fc8cd95938bcca09ca4c0946c0f418ac903c5e05dd3c8f80fcc_ppc64le", + "product_id": "openshift4/ose-hypershift-rhel8@sha256:17e33500316a2fc8cd95938bcca09ca4c0946c0f418ac903c5e05dd3c8f80fcc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-hypershift-rhel8@sha256:17e33500316a2fc8cd95938bcca09ca4c0946c0f418ac903c5e05dd3c8f80fcc?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel8&tag=v4.11.0-202310200743.p0.gda0a576.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:2dffd149f7880393fa28a194cac2d06d5c6c684f880667dd8e8cf56bc4b7fdd3_ppc64le", + "product": { + "name": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:2dffd149f7880393fa28a194cac2d06d5c6c684f880667dd8e8cf56bc4b7fdd3_ppc64le", + "product_id": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:2dffd149f7880393fa28a194cac2d06d5c6c684f880667dd8e8cf56bc4b7fdd3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-cloud-controller-manager-rhel8@sha256:2dffd149f7880393fa28a194cac2d06d5c6c684f880667dd8e8cf56bc4b7fdd3?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8&tag=v4.11.0-202310200743.p0.gce83696.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:cb9324ed3663e5ab3693f603e611f194518d9c9d44ee0b28c0bd568aa0fa5a6b_ppc64le", + "product": { + "name": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:cb9324ed3663e5ab3693f603e611f194518d9c9d44ee0b28c0bd568aa0fa5a6b_ppc64le", + "product_id": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:cb9324ed3663e5ab3693f603e611f194518d9c9d44ee0b28c0bd568aa0fa5a6b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibmcloud-machine-controllers-rhel8@sha256:cb9324ed3663e5ab3693f603e611f194518d9c9d44ee0b28c0bd568aa0fa5a6b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8&tag=v4.11.0-202310200743.p0.g3bde969.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:3c67d66294aa88897b22fe29f1fea02106af8a3c3a09dcddb66a4b2358d35634_ppc64le", + "product": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:3c67d66294aa88897b22fe29f1fea02106af8a3c3a09dcddb66a4b2358d35634_ppc64le", + "product_id": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:3c67d66294aa88897b22fe29f1fea02106af8a3c3a09dcddb66a4b2358d35634_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel8@sha256:3c67d66294aa88897b22fe29f1fea02106af8a3c3a09dcddb66a4b2358d35634?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8&tag=v4.11.0-202310301526.p0.g60cd8f0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:0d4e04ed31fe1d483d2b07e12f6fb599cd50d7e2b2a285f8c997e0fa03293a5e_ppc64le", + "product": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:0d4e04ed31fe1d483d2b07e12f6fb599cd50d7e2b2a285f8c997e0fa03293a5e_ppc64le", + "product_id": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:0d4e04ed31fe1d483d2b07e12f6fb599cd50d7e2b2a285f8c997e0fa03293a5e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:0d4e04ed31fe1d483d2b07e12f6fb599cd50d7e2b2a285f8c997e0fa03293a5e?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8&tag=v4.11.0-202310301444.p0.g2f873ff.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-insights-rhel8-operator@sha256:6dfd76cd3e84ff3544ecc97cd526adf59a28df42e495e9a332375d1d655a101b_ppc64le", + "product": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:6dfd76cd3e84ff3544ecc97cd526adf59a28df42e495e9a332375d1d655a101b_ppc64le", + "product_id": "openshift4/ose-insights-rhel8-operator@sha256:6dfd76cd3e84ff3544ecc97cd526adf59a28df42e495e9a332375d1d655a101b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-insights-rhel8-operator@sha256:6dfd76cd3e84ff3544ecc97cd526adf59a28df42e495e9a332375d1d655a101b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-insights-rhel8-operator&tag=v4.11.0-202310200743.p0.g14b5397.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer-artifacts@sha256:34cd536e93dd439429aae758859a414e71246ce2bdf3a3bf728baabecdc0f253_ppc64le", + "product": { + "name": "openshift4/ose-installer-artifacts@sha256:34cd536e93dd439429aae758859a414e71246ce2bdf3a3bf728baabecdc0f253_ppc64le", + "product_id": "openshift4/ose-installer-artifacts@sha256:34cd536e93dd439429aae758859a414e71246ce2bdf3a3bf728baabecdc0f253_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer-artifacts@sha256:34cd536e93dd439429aae758859a414e71246ce2bdf3a3bf728baabecdc0f253?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-installer-artifacts&tag=v4.11.0-202310200743.p0.gc63578d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer@sha256:59356ffafcdea3b42d9a1823870206d5971f276273f4784518e4c526c1e9d423_ppc64le", + "product": { + "name": "openshift4/ose-installer@sha256:59356ffafcdea3b42d9a1823870206d5971f276273f4784518e4c526c1e9d423_ppc64le", + "product_id": "openshift4/ose-installer@sha256:59356ffafcdea3b42d9a1823870206d5971f276273f4784518e4c526c1e9d423_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer@sha256:59356ffafcdea3b42d9a1823870206d5971f276273f4784518e4c526c1e9d423?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-installer&tag=v4.11.0-202310200743.p0.gc63578d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:ce41ec58ed57b898dc40fbb40759666a0a0c5dff33a41f5595ecfef5e70705a0_ppc64le", + "product": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:ce41ec58ed57b898dc40fbb40759666a0a0c5dff33a41f5595ecfef5e70705a0_ppc64le", + "product_id": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:ce41ec58ed57b898dc40fbb40759666a0a0c5dff33a41f5595ecfef5e70705a0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-storage-version-migrator-rhel8@sha256:ce41ec58ed57b898dc40fbb40759666a0a0c5dff33a41f5595ecfef5e70705a0?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8&tag=v4.11.0-202310200743.p0.g596745c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-libvirt-machine-controllers@sha256:f72cea91dd4fc7ac728ff6245d09be0bc4344999622ed57b30ef354587fc2cb8_ppc64le", + "product": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:f72cea91dd4fc7ac728ff6245d09be0bc4344999622ed57b30ef354587fc2cb8_ppc64le", + "product_id": "openshift4/ose-libvirt-machine-controllers@sha256:f72cea91dd4fc7ac728ff6245d09be0bc4344999622ed57b30ef354587fc2cb8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-libvirt-machine-controllers@sha256:f72cea91dd4fc7ac728ff6245d09be0bc4344999622ed57b30ef354587fc2cb8?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers&tag=v4.11.0-202310200743.p0.gb6e14ea.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-operator@sha256:3c9a5840de0569e8be4524019a942abc661a79037c3f7400a58dbbd1cf2f64f7_ppc64le", + "product": { + "name": "openshift4/ose-machine-api-operator@sha256:3c9a5840de0569e8be4524019a942abc661a79037c3f7400a58dbbd1cf2f64f7_ppc64le", + "product_id": "openshift4/ose-machine-api-operator@sha256:3c9a5840de0569e8be4524019a942abc661a79037c3f7400a58dbbd1cf2f64f7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-operator@sha256:3c9a5840de0569e8be4524019a942abc661a79037c3f7400a58dbbd1cf2f64f7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-machine-api-operator&tag=v4.11.0-202310200743.p0.gaba3049.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:58056a98b0592cc1e32cd337c914043f4b1318fa28982f79d996c9371d64d47a_ppc64le", + "product": { + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:58056a98b0592cc1e32cd337c914043f4b1318fa28982f79d996c9371d64d47a_ppc64le", + "product_id": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:58056a98b0592cc1e32cd337c914043f4b1318fa28982f79d996c9371d64d47a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-gcp-rhel8@sha256:58056a98b0592cc1e32cd337c914043f4b1318fa28982f79d996c9371d64d47a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8&tag=v4.11.0-202310200743.p0.g9363d87.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:0a249bb8c73210f5b2b76baad4f8fa23f3f2d0a8e4e33e67b68e775cf2e80c9e_ppc64le", + "product": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:0a249bb8c73210f5b2b76baad4f8fa23f3f2d0a8e4e33e67b68e775cf2e80c9e_ppc64le", + "product_id": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:0a249bb8c73210f5b2b76baad4f8fa23f3f2d0a8e4e33e67b68e775cf2e80c9e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-openstack-rhel8@sha256:0a249bb8c73210f5b2b76baad4f8fa23f3f2d0a8e4e33e67b68e775cf2e80c9e?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8&tag=v4.11.0-202310200743.p0.g0446d77.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-config-operator@sha256:f8e359afd49386d57018091c538309c672906222efdb4847e11104b949e43dc8_ppc64le", + "product": { + "name": "openshift4/ose-machine-config-operator@sha256:f8e359afd49386d57018091c538309c672906222efdb4847e11104b949e43dc8_ppc64le", + "product_id": "openshift4/ose-machine-config-operator@sha256:f8e359afd49386d57018091c538309c672906222efdb4847e11104b949e43dc8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-config-operator@sha256:f8e359afd49386d57018091c538309c672906222efdb4847e11104b949e43dc8?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-machine-config-operator&tag=v4.11.0-202310271243.p0.g125ab15.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-admission-controller@sha256:4799f1e13dd040700a86b1743329a5f18e8a437a2309e2c46cb6f7852b45b47c_ppc64le", + "product": { + "name": "openshift4/ose-multus-admission-controller@sha256:4799f1e13dd040700a86b1743329a5f18e8a437a2309e2c46cb6f7852b45b47c_ppc64le", + "product_id": "openshift4/ose-multus-admission-controller@sha256:4799f1e13dd040700a86b1743329a5f18e8a437a2309e2c46cb6f7852b45b47c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-admission-controller@sha256:4799f1e13dd040700a86b1743329a5f18e8a437a2309e2c46cb6f7852b45b47c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller&tag=v4.11.0-202310200743.p0.gb876064.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:f84f64ddd91acb0d8777bd980aa1f9207b895990416c6383bd6e8e02d95e72ac_ppc64le", + "product": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:f84f64ddd91acb0d8777bd980aa1f9207b895990416c6383bd6e8e02d95e72ac_ppc64le", + "product_id": "openshift4/ose-multus-networkpolicy-rhel8@sha256:f84f64ddd91acb0d8777bd980aa1f9207b895990416c6383bd6e8e02d95e72ac_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-networkpolicy-rhel8@sha256:f84f64ddd91acb0d8777bd980aa1f9207b895990416c6383bd6e8e02d95e72ac?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8&tag=v4.11.0-202310200743.p0.g643fdaf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:cf0e94e151e1732cde03ae8b9603abcaf7cadf8f712a58e7c5f06814b0f9d0d2_ppc64le", + "product": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:cf0e94e151e1732cde03ae8b9603abcaf7cadf8f712a58e7c5f06814b0f9d0d2_ppc64le", + "product_id": "openshift4/ose-multus-route-override-cni-rhel8@sha256:cf0e94e151e1732cde03ae8b9603abcaf7cadf8f712a58e7c5f06814b0f9d0d2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-route-override-cni-rhel8@sha256:cf0e94e151e1732cde03ae8b9603abcaf7cadf8f712a58e7c5f06814b0f9d0d2?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8&tag=v4.11.0-202310200743.p0.g523b790.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:24c815d116cef1b1dbef79fa9f018d0cabe8069f74623b68d9db26c032e65180_ppc64le", + "product": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:24c815d116cef1b1dbef79fa9f018d0cabe8069f74623b68d9db26c032e65180_ppc64le", + "product_id": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:24c815d116cef1b1dbef79fa9f018d0cabe8069f74623b68d9db26c032e65180_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel8@sha256:24c815d116cef1b1dbef79fa9f018d0cabe8069f74623b68d9db26c032e65180?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8&tag=v4.11.0-202310200743.p0.g7d544f9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-must-gather@sha256:1eba606251ec78d195daaa1beabbed327ef78ca803e0123a1a2df9e063ea68ed_ppc64le", + "product": { + "name": "openshift4/ose-must-gather@sha256:1eba606251ec78d195daaa1beabbed327ef78ca803e0123a1a2df9e063ea68ed_ppc64le", + "product_id": "openshift4/ose-must-gather@sha256:1eba606251ec78d195daaa1beabbed327ef78ca803e0123a1a2df9e063ea68ed_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-must-gather@sha256:1eba606251ec78d195daaa1beabbed327ef78ca803e0123a1a2df9e063ea68ed?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-must-gather&tag=v4.11.0-202310251925.p0.g44f6ada.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:42f7f5aea6b65632631d3c5306d321b016fc1a6ad71ff888d62c3d38924e45cc_ppc64le", + "product": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:42f7f5aea6b65632631d3c5306d321b016fc1a6ad71ff888d62c3d38924e45cc_ppc64le", + "product_id": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:42f7f5aea6b65632631d3c5306d321b016fc1a6ad71ff888d62c3d38924e45cc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-interface-bond-cni-rhel8@sha256:42f7f5aea6b65632631d3c5306d321b016fc1a6ad71ff888d62c3d38924e45cc?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8&tag=v4.11.0-202310200743.p0.gb76a677.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:ffbc53afd8947494de2409cb8b81590e57e87c29274680635a7bb755d34cc19a_ppc64le", + "product": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:ffbc53afd8947494de2409cb8b81590e57e87c29274680635a7bb755d34cc19a_ppc64le", + "product_id": "openshift4/ose-network-metrics-daemon-rhel8@sha256:ffbc53afd8947494de2409cb8b81590e57e87c29274680635a7bb755d34cc19a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-metrics-daemon-rhel8@sha256:ffbc53afd8947494de2409cb8b81590e57e87c29274680635a7bb755d34cc19a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8&tag=v4.11.0-202310200743.p0.gbeda996.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/network-tools-rhel8@sha256:1df693b76e72036c08708ec6deb9d305dc8ef78324908926bdab6af5390e4be0_ppc64le", + "product": { + "name": "openshift4/network-tools-rhel8@sha256:1df693b76e72036c08708ec6deb9d305dc8ef78324908926bdab6af5390e4be0_ppc64le", + "product_id": "openshift4/network-tools-rhel8@sha256:1df693b76e72036c08708ec6deb9d305dc8ef78324908926bdab6af5390e4be0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/network-tools-rhel8@sha256:1df693b76e72036c08708ec6deb9d305dc8ef78324908926bdab6af5390e4be0?arch=ppc64le&repository_url=registry.redhat.io/openshift4/network-tools-rhel8&tag=v4.11.0-202310260725.p0.g4e87286.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sdn-rhel8@sha256:6ecccdbd3402e27799f6b304e1fe2aab1d3eca3cbe079c0872fdbe572222bc83_ppc64le", + "product": { + "name": "openshift4/ose-sdn-rhel8@sha256:6ecccdbd3402e27799f6b304e1fe2aab1d3eca3cbe079c0872fdbe572222bc83_ppc64le", + "product_id": "openshift4/ose-sdn-rhel8@sha256:6ecccdbd3402e27799f6b304e1fe2aab1d3eca3cbe079c0872fdbe572222bc83_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-sdn-rhel8@sha256:6ecccdbd3402e27799f6b304e1fe2aab1d3eca3cbe079c0872fdbe572222bc83?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-sdn-rhel8&tag=v4.11.0-202310200743.p0.ge5b34b7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:fb1c86ba181adec57d7d0549efb05fe43ccd01b7e99cc27c3e437886c96957cd_ppc64le", + "product": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:fb1c86ba181adec57d7d0549efb05fe43ccd01b7e99cc27c3e437886c96957cd_ppc64le", + "product_id": "openshift4/ose-oauth-apiserver-rhel8@sha256:fb1c86ba181adec57d7d0549efb05fe43ccd01b7e99cc27c3e437886c96957cd_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-apiserver-rhel8@sha256:fb1c86ba181adec57d7d0549efb05fe43ccd01b7e99cc27c3e437886c96957cd?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8&tag=v4.11.0-202310200743.p0.gc9c2dd1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:4b54e5b0a90dcb4d2eb2da8684781649500e4a3389f3a1963a9b56b63b4c0f61_ppc64le", + "product": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:4b54e5b0a90dcb4d2eb2da8684781649500e4a3389f3a1963a9b56b63b4c0f61_ppc64le", + "product_id": "openshift4/ose-openshift-apiserver-rhel8@sha256:4b54e5b0a90dcb4d2eb2da8684781649500e4a3389f3a1963a9b56b63b4c0f61_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-apiserver-rhel8@sha256:4b54e5b0a90dcb4d2eb2da8684781649500e4a3389f3a1963a9b56b63b4c0f61?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8&tag=v4.11.0-202310200743.p0.g35df5a0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:fb3a8662eb0cc938fa52f31053c7588adab2967ae0a66af93903491281c2f4b3_ppc64le", + "product": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:fb3a8662eb0cc938fa52f31053c7588adab2967ae0a66af93903491281c2f4b3_ppc64le", + "product_id": "openshift4/ose-openshift-controller-manager-rhel8@sha256:fb3a8662eb0cc938fa52f31053c7588adab2967ae0a66af93903491281c2f4b3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-controller-manager-rhel8@sha256:fb3a8662eb0cc938fa52f31053c7588adab2967ae0a66af93903491281c2f4b3?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8&tag=v4.11.0-202310200743.p0.g911da57.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:9925738fa0ab23d098ab0697e6ff58440d86ae7fb0f616d4ce2f6d3af7a87c95_ppc64le", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:9925738fa0ab23d098ab0697e6ff58440d86ae7fb0f616d4ce2f6d3af7a87c95_ppc64le", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:9925738fa0ab23d098ab0697e6ff58440d86ae7fb0f616d4ce2f6d3af7a87c95_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8@sha256:9925738fa0ab23d098ab0697e6ff58440d86ae7fb0f616d4ce2f6d3af7a87c95?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8&tag=v4.11.0-202310200743.p0.g9eed4ed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:7df9f51e98f1bfce29ac901905aafbe287e5fe8052ccb6d10b1f29276b34e587_ppc64le", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:7df9f51e98f1bfce29ac901905aafbe287e5fe8052ccb6d10b1f29276b34e587_ppc64le", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:7df9f51e98f1bfce29ac901905aafbe287e5fe8052ccb6d10b1f29276b34e587_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:7df9f51e98f1bfce29ac901905aafbe287e5fe8052ccb6d10b1f29276b34e587?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator&tag=v4.11.0-202310301648.p0.ga6d74d7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:32dc5696b5b1ebdee5cd3fb75d509cdea2096d3b0fd4cd2cce606a8ed5200d6c_ppc64le", + "product": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:32dc5696b5b1ebdee5cd3fb75d509cdea2096d3b0fd4cd2cce606a8ed5200d6c_ppc64le", + "product_id": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:32dc5696b5b1ebdee5cd3fb75d509cdea2096d3b0fd4cd2cce606a8ed5200d6c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel8@sha256:32dc5696b5b1ebdee5cd3fb75d509cdea2096d3b0fd4cd2cce606a8ed5200d6c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8&tag=v4.11.0-202310200743.p0.g9eed4ed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-machine-controllers@sha256:ace85d15574114a2e7f343767c70102922b65178de1c2edae41ac2cdc6dc38a3_ppc64le", + "product": { + "name": "openshift4/ose-openstack-machine-controllers@sha256:ace85d15574114a2e7f343767c70102922b65178de1c2edae41ac2cdc6dc38a3_ppc64le", + "product_id": "openshift4/ose-openstack-machine-controllers@sha256:ace85d15574114a2e7f343767c70102922b65178de1c2edae41ac2cdc6dc38a3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-machine-controllers@sha256:ace85d15574114a2e7f343767c70102922b65178de1c2edae41ac2cdc6dc38a3?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openstack-machine-controllers&tag=v4.11.0-202310200743.p0.g38f15db.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:a8efd9cf0bf92a5e58b584de1ff6fc87c9b4abc01230fd43b5ad1e3c8d8e3bfd_ppc64le", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:a8efd9cf0bf92a5e58b584de1ff6fc87c9b4abc01230fd43b5ad1e3c8d8e3bfd_ppc64le", + "product_id": "openshift4/ovirt-csi-driver-rhel7@sha256:a8efd9cf0bf92a5e58b584de1ff6fc87c9b4abc01230fd43b5ad1e3c8d8e3bfd_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel7@sha256:a8efd9cf0bf92a5e58b584de1ff6fc87c9b4abc01230fd43b5ad1e3c8d8e3bfd?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel7&tag=v4.11.0-202310200743.p0.gcd3370f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:a8efd9cf0bf92a5e58b584de1ff6fc87c9b4abc01230fd43b5ad1e3c8d8e3bfd_ppc64le", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:a8efd9cf0bf92a5e58b584de1ff6fc87c9b4abc01230fd43b5ad1e3c8d8e3bfd_ppc64le", + "product_id": "openshift4/ovirt-csi-driver-rhel8@sha256:a8efd9cf0bf92a5e58b584de1ff6fc87c9b4abc01230fd43b5ad1e3c8d8e3bfd_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8@sha256:a8efd9cf0bf92a5e58b584de1ff6fc87c9b4abc01230fd43b5ad1e3c8d8e3bfd?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8&tag=v4.11.0-202310200743.p0.gcd3370f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:33c528230c7c4dd32a5df559a715a72db91e398441e76c8ee9ad69c61ec0f51e_ppc64le", + "product": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:33c528230c7c4dd32a5df559a715a72db91e398441e76c8ee9ad69c61ec0f51e_ppc64le", + "product_id": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:33c528230c7c4dd32a5df559a715a72db91e398441e76c8ee9ad69c61ec0f51e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovirt-machine-controllers-rhel8@sha256:33c528230c7c4dd32a5df559a715a72db91e398441e76c8ee9ad69c61ec0f51e?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8&tag=v4.11.0-202310200743.p0.g5a93d94.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes@sha256:61ca3dc092b03d4e4f9b54704377c6422ae033163d72f9eed7033d544adf583d_ppc64le", + "product": { + "name": "openshift4/ose-ovn-kubernetes@sha256:61ca3dc092b03d4e4f9b54704377c6422ae033163d72f9eed7033d544adf583d_ppc64le", + "product_id": "openshift4/ose-ovn-kubernetes@sha256:61ca3dc092b03d4e4f9b54704377c6422ae033163d72f9eed7033d544adf583d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes@sha256:61ca3dc092b03d4e4f9b54704377c6422ae033163d72f9eed7033d544adf583d?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes&tag=v4.11.0-202310251925.p0.g2e60df2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:ea45fa997afd5834fd86aa2e9e561b272c0442b61cb3fa25588805e8d1995947_ppc64le", + "product": { + "name": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:ea45fa997afd5834fd86aa2e9e561b272c0442b61cb3fa25588805e8d1995947_ppc64le", + "product_id": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:ea45fa997afd5834fd86aa2e9e561b272c0442b61cb3fa25588805e8d1995947_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-cloud-controller-manager-rhel8@sha256:ea45fa997afd5834fd86aa2e9e561b272c0442b61cb3fa25588805e8d1995947?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8&tag=v4.11.0-202310200743.p0.gd9b5c23.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:140f3457caea88c63ccefbb79d1d71c7ce0143d985b1e2b34a0f312f5f8a0ff8_ppc64le", + "product": { + "name": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:140f3457caea88c63ccefbb79d1d71c7ce0143d985b1e2b34a0f312f5f8a0ff8_ppc64le", + "product_id": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:140f3457caea88c63ccefbb79d1d71c7ce0143d985b1e2b34a0f312f5f8a0ff8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-machine-controllers-rhel8@sha256:140f3457caea88c63ccefbb79d1d71c7ce0143d985b1e2b34a0f312f5f8a0ff8?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8&tag=v4.11.0-202310200743.p0.g4f92480.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:623f2f6ae62641453d05677753af9b16d37ad6e505b91eec855c92bf6c565079_ppc64le", + "product": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:623f2f6ae62641453d05677753af9b16d37ad6e505b91eec855c92bf6c565079_ppc64le", + "product_id": "openshift4/ose-k8s-prometheus-adapter@sha256:623f2f6ae62641453d05677753af9b16d37ad6e505b91eec855c92bf6c565079_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-k8s-prometheus-adapter@sha256:623f2f6ae62641453d05677753af9b16d37ad6e505b91eec855c92bf6c565079?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter&tag=v4.11.0-202310200743.p0.g32fb8ea.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-service-ca-operator@sha256:0c4dc8b732da5242876711232b6d0d9401c482f7e0448ffca6b9d31e63485ff7_ppc64le", + "product": { + "name": "openshift4/ose-service-ca-operator@sha256:0c4dc8b732da5242876711232b6d0d9401c482f7e0448ffca6b9d31e63485ff7_ppc64le", + "product_id": "openshift4/ose-service-ca-operator@sha256:0c4dc8b732da5242876711232b6d0d9401c482f7e0448ffca6b9d31e63485ff7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-service-ca-operator@sha256:0c4dc8b732da5242876711232b6d0d9401c482f7e0448ffca6b9d31e63485ff7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-service-ca-operator&tag=v4.11.0-202310200743.p0.g0899d11.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-thanos-rhel8@sha256:e313ab21e7f6a5805c3d98723397ac215dc0e6ea15f7c9387056553ec85da441_ppc64le", + "product": { + "name": "openshift4/ose-thanos-rhel8@sha256:e313ab21e7f6a5805c3d98723397ac215dc0e6ea15f7c9387056553ec85da441_ppc64le", + "product_id": "openshift4/ose-thanos-rhel8@sha256:e313ab21e7f6a5805c3d98723397ac215dc0e6ea15f7c9387056553ec85da441_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-thanos-rhel8@sha256:e313ab21e7f6a5805c3d98723397ac215dc0e6ea15f7c9387056553ec85da441?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-thanos-rhel8&tag=v4.11.0-202310200743.p0.g99b6e03.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tools-rhel8@sha256:84073969d6e26bda378886c20e7344af063d66ad6d5f480955351e3fe700106f_ppc64le", + "product": { + "name": "openshift4/ose-tools-rhel8@sha256:84073969d6e26bda378886c20e7344af063d66ad6d5f480955351e3fe700106f_ppc64le", + "product_id": "openshift4/ose-tools-rhel8@sha256:84073969d6e26bda378886c20e7344af063d66ad6d5f480955351e3fe700106f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-tools-rhel8@sha256:84073969d6e26bda378886c20e7344af063d66ad6d5f480955351e3fe700106f?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-tools-rhel8&tag=v4.11.0-202310260725.p0.gbbc7c58.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-config-reloader@sha256:f769151134f5fea91e38d645a8037e5fdc7a4194f96e8bc91292b43662c577ab_ppc64le", + "product": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:f769151134f5fea91e38d645a8037e5fdc7a4194f96e8bc91292b43662c577ab_ppc64le", + "product_id": "openshift4/ose-prometheus-config-reloader@sha256:f769151134f5fea91e38d645a8037e5fdc7a4194f96e8bc91292b43662c577ab_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-config-reloader@sha256:f769151134f5fea91e38d645a8037e5fdc7a4194f96e8bc91292b43662c577ab?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader&tag=v4.11.0-202310200743.p0.g5752c42.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:43eeefa4008192eb92f62f55151d0c560f23e235fafc70d9133ae62bd4bc8532_ppc64le", + "product": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:43eeefa4008192eb92f62f55151d0c560f23e235fafc70d9133ae62bd4bc8532_ppc64le", + "product_id": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:43eeefa4008192eb92f62f55151d0c560f23e235fafc70d9133ae62bd4bc8532_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel8@sha256:43eeefa4008192eb92f62f55151d0c560f23e235fafc70d9133ae62bd4bc8532?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8&tag=v4.11.0-202310200743.p0.g5752c42.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator@sha256:32e28f0358b0f04d19981559c34c3da19b9e4de820964647387c510a6eb7bdcf_ppc64le", + "product": { + "name": "openshift4/ose-prometheus-operator@sha256:32e28f0358b0f04d19981559c34c3da19b9e4de820964647387c510a6eb7bdcf_ppc64le", + "product_id": "openshift4/ose-prometheus-operator@sha256:32e28f0358b0f04d19981559c34c3da19b9e4de820964647387c510a6eb7bdcf_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator@sha256:32e28f0358b0f04d19981559c34c3da19b9e4de820964647387c510a6eb7bdcf?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator&tag=v4.11.0-202310200743.p0.g5752c42.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prom-label-proxy@sha256:0de446079ef6b4bc93067bc8f9b3155b9b8b36b8487704d7b9596e088105a1c4_ppc64le", + "product": { + "name": "openshift4/ose-prom-label-proxy@sha256:0de446079ef6b4bc93067bc8f9b3155b9b8b36b8487704d7b9596e088105a1c4_ppc64le", + "product_id": "openshift4/ose-prom-label-proxy@sha256:0de446079ef6b4bc93067bc8f9b3155b9b8b36b8487704d7b9596e088105a1c4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prom-label-proxy@sha256:0de446079ef6b4bc93067bc8f9b3155b9b8b36b8487704d7b9596e088105a1c4?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy&tag=v4.11.0-202310200743.p0.gaf12fbc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-telemeter@sha256:0daffdf77db3de8454fb6de6648a08b7e3e1d51b74dbe031cf36587d187ef9fb_ppc64le", + "product": { + "name": "openshift4/ose-telemeter@sha256:0daffdf77db3de8454fb6de6648a08b7e3e1d51b74dbe031cf36587d187ef9fb_ppc64le", + "product_id": "openshift4/ose-telemeter@sha256:0daffdf77db3de8454fb6de6648a08b7e3e1d51b74dbe031cf36587d187ef9fb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-telemeter@sha256:0daffdf77db3de8454fb6de6648a08b7e3e1d51b74dbe031cf36587d187ef9fb?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-telemeter&tag=v4.11.0-202310200743.p0.gb1f5dd2.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler@sha256:07010e0e5957be04c0d10cbaf89e1e5f30f3bf7381a675a1edf252d1d14361c9_arm64", + "product": { + "name": "openshift4/ose-cluster-autoscaler@sha256:07010e0e5957be04c0d10cbaf89e1e5f30f3bf7381a675a1edf252d1d14361c9_arm64", + "product_id": "openshift4/ose-cluster-autoscaler@sha256:07010e0e5957be04c0d10cbaf89e1e5f30f3bf7381a675a1edf252d1d14361c9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler@sha256:07010e0e5957be04c0d10cbaf89e1e5f30f3bf7381a675a1edf252d1d14361c9?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler&tag=v4.11.0-202310200743.p0.gbf6c1c3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-machine-controllers@sha256:795c52ea8d83621aabd648ac83332186bf99cc281ea49927ce08c221412b6371_arm64", + "product": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:795c52ea8d83621aabd648ac83332186bf99cc281ea49927ce08c221412b6371_arm64", + "product_id": "openshift4/ose-baremetal-machine-controllers@sha256:795c52ea8d83621aabd648ac83332186bf99cc281ea49927ce08c221412b6371_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-machine-controllers@sha256:795c52ea8d83621aabd648ac83332186bf99cc281ea49927ce08c221412b6371?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers&tag=v4.11.0-202310201443.p0.g1a6f3aa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:06660d47881bef181d19a9812ecc79bf9c06e2a3d771f6ea72fa60502ae9186d_arm64", + "product": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:06660d47881bef181d19a9812ecc79bf9c06e2a3d771f6ea72fa60502ae9186d_arm64", + "product_id": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:06660d47881bef181d19a9812ecc79bf9c06e2a3d771f6ea72fa60502ae9186d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-etcd-rhel8-operator@sha256:06660d47881bef181d19a9812ecc79bf9c06e2a3d771f6ea72fa60502ae9186d?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator&tag=v4.11.0-202310200743.p0.g88e55fb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-monitoring-operator@sha256:e35870e5d6942586a7987622379e6609a8f5119f79fa9e2a48e79e60d19a1e81_arm64", + "product": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:e35870e5d6942586a7987622379e6609a8f5119f79fa9e2a48e79e60d19a1e81_arm64", + "product_id": "openshift4/ose-cluster-monitoring-operator@sha256:e35870e5d6942586a7987622379e6609a8f5119f79fa9e2a48e79e60d19a1e81_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-monitoring-operator@sha256:e35870e5d6942586a7987622379e6609a8f5119f79fa9e2a48e79e60d19a1e81?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-operator&tag=v4.11.0-202310200743.p0.g1b6bec3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-network-operator@sha256:37811d9a34c90be4065a6efa7ae139ca693f44eb1772e337202cf0dcfd73e4a3_arm64", + "product": { + "name": "openshift4/ose-cluster-network-operator@sha256:37811d9a34c90be4065a6efa7ae139ca693f44eb1772e337202cf0dcfd73e4a3_arm64", + "product_id": "openshift4/ose-cluster-network-operator@sha256:37811d9a34c90be4065a6efa7ae139ca693f44eb1772e337202cf0dcfd73e4a3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-network-operator@sha256:37811d9a34c90be4065a6efa7ae139ca693f44eb1772e337202cf0dcfd73e4a3?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-network-operator&tag=v4.11.0-202310200743.p0.gebd1976.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:e2a5ac756267861f0f77f4ab5b0817375714b985f7261b0c981868410bf2c312_arm64", + "product": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:e2a5ac756267861f0f77f4ab5b0817375714b985f7261b0c981868410bf2c312_arm64", + "product_id": "openshift4/ose-cluster-node-tuning-operator@sha256:e2a5ac756267861f0f77f4ab5b0817375714b985f7261b0c981868410bf2c312_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-node-tuning-operator@sha256:e2a5ac756267861f0f77f4ab5b0817375714b985f7261b0c981868410bf2c312?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-operator&tag=v4.11.0-202310260725.p0.ga9aadb6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-version-operator@sha256:e84c61cf29f7118a5ae2539f573c66bfafbdcd560224e1e72d9c38fd03d88cb5_arm64", + "product": { + "name": "openshift4/ose-cluster-version-operator@sha256:e84c61cf29f7118a5ae2539f573c66bfafbdcd560224e1e72d9c38fd03d88cb5_arm64", + "product_id": "openshift4/ose-cluster-version-operator@sha256:e84c61cf29f7118a5ae2539f573c66bfafbdcd560224e1e72d9c38fd03d88cb5_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-version-operator@sha256:e84c61cf29f7118a5ae2539f573c66bfafbdcd560224e1e72d9c38fd03d88cb5?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-version-operator&tag=v4.11.0-202310200743.p0.g8966b29.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-configmap-reloader@sha256:dab3fab2da67fc70f62d4bbdef2a6573e90c088a1bc8c6b1f257e8765350f0ea_arm64", + "product": { + "name": "openshift4/ose-configmap-reloader@sha256:dab3fab2da67fc70f62d4bbdef2a6573e90c088a1bc8c6b1f257e8765350f0ea_arm64", + "product_id": "openshift4/ose-configmap-reloader@sha256:dab3fab2da67fc70f62d4bbdef2a6573e90c088a1bc8c6b1f257e8765350f0ea_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-configmap-reloader@sha256:dab3fab2da67fc70f62d4bbdef2a6573e90c088a1bc8c6b1f257e8765350f0ea?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-configmap-reloader&tag=v4.11.0-202310200743.p0.gb7c03bb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-coredns@sha256:8290812336a0b0d391d668c09f60b7bd66f0d5eec88ad00bffcaf70635b57c5b_arm64", + "product": { + "name": "openshift4/ose-coredns@sha256:8290812336a0b0d391d668c09f60b7bd66f0d5eec88ad00bffcaf70635b57c5b_arm64", + "product_id": "openshift4/ose-coredns@sha256:8290812336a0b0d391d668c09f60b7bd66f0d5eec88ad00bffcaf70635b57c5b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-coredns@sha256:8290812336a0b0d391d668c09f60b7bd66f0d5eec88ad00bffcaf70635b57c5b?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-coredns&tag=v4.11.0-202310310446.p0.ge195fdd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:e2ccd6102b16d7a3635b0f3db33aec3921ffd66fa84741be27f0237c6c58aa85_arm64", + "product": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:e2ccd6102b16d7a3635b0f3db33aec3921ffd66fa84741be27f0237c6c58aa85_arm64", + "product_id": "openshift4/ose-csi-external-attacher-rhel8@sha256:e2ccd6102b16d7a3635b0f3db33aec3921ffd66fa84741be27f0237c6c58aa85_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher-rhel8@sha256:e2ccd6102b16d7a3635b0f3db33aec3921ffd66fa84741be27f0237c6c58aa85?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8&tag=v4.11.0-202310271701.p0.g1e15b60.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher@sha256:e2ccd6102b16d7a3635b0f3db33aec3921ffd66fa84741be27f0237c6c58aa85_arm64", + "product": { + "name": "openshift4/ose-csi-external-attacher@sha256:e2ccd6102b16d7a3635b0f3db33aec3921ffd66fa84741be27f0237c6c58aa85_arm64", + "product_id": "openshift4/ose-csi-external-attacher@sha256:e2ccd6102b16d7a3635b0f3db33aec3921ffd66fa84741be27f0237c6c58aa85_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher@sha256:e2ccd6102b16d7a3635b0f3db33aec3921ffd66fa84741be27f0237c6c58aa85?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher&tag=v4.11.0-202310271701.p0.g1e15b60.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe@sha256:589f1014c64d7970a0b728e37f95f4172011c44cb8ec04744bc7cbd5a9848d8a_arm64", + "product": { + "name": "openshift4/ose-csi-livenessprobe@sha256:589f1014c64d7970a0b728e37f95f4172011c44cb8ec04744bc7cbd5a9848d8a_arm64", + "product_id": "openshift4/ose-csi-livenessprobe@sha256:589f1014c64d7970a0b728e37f95f4172011c44cb8ec04744bc7cbd5a9848d8a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe@sha256:589f1014c64d7970a0b728e37f95f4172011c44cb8ec04744bc7cbd5a9848d8a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe&tag=v4.11.0-202310271701.p0.gd8ed786.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:589f1014c64d7970a0b728e37f95f4172011c44cb8ec04744bc7cbd5a9848d8a_arm64", + "product": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:589f1014c64d7970a0b728e37f95f4172011c44cb8ec04744bc7cbd5a9848d8a_arm64", + "product_id": "openshift4/ose-csi-livenessprobe-rhel8@sha256:589f1014c64d7970a0b728e37f95f4172011c44cb8ec04744bc7cbd5a9848d8a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe-rhel8@sha256:589f1014c64d7970a0b728e37f95f4172011c44cb8ec04744bc7cbd5a9848d8a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8&tag=v4.11.0-202310271701.p0.gd8ed786.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:796968c0f22ae38d651ccb42bd9837b5420790daf4dfed6e07616b544e6e9deb_arm64", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:796968c0f22ae38d651ccb42bd9837b5420790daf4dfed6e07616b544e6e9deb_arm64", + "product_id": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:796968c0f22ae38d651ccb42bd9837b5420790daf4dfed6e07616b544e6e9deb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar-rhel8@sha256:796968c0f22ae38d651ccb42bd9837b5420790daf4dfed6e07616b544e6e9deb?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8&tag=v4.11.0-202310271626.p0.gd5100c1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar@sha256:796968c0f22ae38d651ccb42bd9837b5420790daf4dfed6e07616b544e6e9deb_arm64", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:796968c0f22ae38d651ccb42bd9837b5420790daf4dfed6e07616b544e6e9deb_arm64", + "product_id": "openshift4/ose-csi-node-driver-registrar@sha256:796968c0f22ae38d651ccb42bd9837b5420790daf4dfed6e07616b544e6e9deb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar@sha256:796968c0f22ae38d651ccb42bd9837b5420790daf4dfed6e07616b544e6e9deb?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar&tag=v4.11.0-202310271626.p0.gd5100c1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner@sha256:988f996e1e3ddae212561dbb17518c8625acec621e4862768f6f5fc0418356d3_arm64", + "product": { + "name": "openshift4/ose-csi-external-provisioner@sha256:988f996e1e3ddae212561dbb17518c8625acec621e4862768f6f5fc0418356d3_arm64", + "product_id": "openshift4/ose-csi-external-provisioner@sha256:988f996e1e3ddae212561dbb17518c8625acec621e4862768f6f5fc0418356d3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner@sha256:988f996e1e3ddae212561dbb17518c8625acec621e4862768f6f5fc0418356d3?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner&tag=v4.11.0-202310200743.p0.g86277ec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:988f996e1e3ddae212561dbb17518c8625acec621e4862768f6f5fc0418356d3_arm64", + "product": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:988f996e1e3ddae212561dbb17518c8625acec621e4862768f6f5fc0418356d3_arm64", + "product_id": "openshift4/ose-csi-external-provisioner-rhel8@sha256:988f996e1e3ddae212561dbb17518c8625acec621e4862768f6f5fc0418356d3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner-rhel8@sha256:988f996e1e3ddae212561dbb17518c8625acec621e4862768f6f5fc0418356d3?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8&tag=v4.11.0-202310200743.p0.g86277ec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/driver-toolkit-rhel8@sha256:7c8420b00c90ef520329590479845e2d85f5495fd498f2fc1961b1da616a7bbc_arm64", + "product": { + "name": "openshift4/driver-toolkit-rhel8@sha256:7c8420b00c90ef520329590479845e2d85f5495fd498f2fc1961b1da616a7bbc_arm64", + "product_id": "openshift4/driver-toolkit-rhel8@sha256:7c8420b00c90ef520329590479845e2d85f5495fd498f2fc1961b1da616a7bbc_arm64", + "product_identification_helper": { + "purl": "pkg:oci/driver-toolkit-rhel8@sha256:7c8420b00c90ef520329590479845e2d85f5495fd498f2fc1961b1da616a7bbc?arch=arm64&repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel8&tag=v4.11.0-202310260725.p0.g28589b0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-proxy@sha256:a03f2511bb142530528a9dc0647d149f337cc00e00188f34065d8aad5983f239_arm64", + "product": { + "name": "openshift4/ose-oauth-proxy@sha256:a03f2511bb142530528a9dc0647d149f337cc00e00188f34065d8aad5983f239_arm64", + "product_id": "openshift4/ose-oauth-proxy@sha256:a03f2511bb142530528a9dc0647d149f337cc00e00188f34065d8aad5983f239_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-proxy@sha256:a03f2511bb142530528a9dc0647d149f337cc00e00188f34065d8aad5983f239?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-oauth-proxy&tag=v4.11.0-202310200743.p0.gaad1b28.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-alertmanager@sha256:df3d691a760d1890133a84c633f156c311e8115e5cfe21763257d1cd9a564843_arm64", + "product": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:df3d691a760d1890133a84c633f156c311e8115e5cfe21763257d1cd9a564843_arm64", + "product_id": "openshift4/ose-prometheus-alertmanager@sha256:df3d691a760d1890133a84c633f156c311e8115e5cfe21763257d1cd9a564843_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-alertmanager@sha256:df3d691a760d1890133a84c633f156c311e8115e5cfe21763257d1cd9a564843?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager&tag=v4.11.0-202310200743.p0.g05cfc39.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-node-exporter@sha256:9c7b76ba18236eb95e49c2a9c02751085bc791a856ee96b131b408f848a614c5_arm64", + "product": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:9c7b76ba18236eb95e49c2a9c02751085bc791a856ee96b131b408f848a614c5_arm64", + "product_id": "openshift4/ose-prometheus-node-exporter@sha256:9c7b76ba18236eb95e49c2a9c02751085bc791a856ee96b131b408f848a614c5_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-node-exporter@sha256:9c7b76ba18236eb95e49c2a9c02751085bc791a856ee96b131b408f848a614c5?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter&tag=v4.11.0-202310200743.p0.g40942c2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus@sha256:47ec6a4a18dd6baeafbdf4ca1f9761d20ca9e10c00873484ca11aeac511c9348_arm64", + "product": { + "name": "openshift4/ose-prometheus@sha256:47ec6a4a18dd6baeafbdf4ca1f9761d20ca9e10c00873484ca11aeac511c9348_arm64", + "product_id": "openshift4/ose-prometheus@sha256:47ec6a4a18dd6baeafbdf4ca1f9761d20ca9e10c00873484ca11aeac511c9348_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus@sha256:47ec6a4a18dd6baeafbdf4ca1f9761d20ca9e10c00873484ca11aeac511c9348?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prometheus&tag=v4.11.0-202310200743.p0.ge751c61.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-agent-rhel8@sha256:8277a3b1e51d8f73210a4dcc86fddc24267491fb05915e44307068c1fe49eb44_arm64", + "product": { + "name": "openshift4/ose-ironic-agent-rhel8@sha256:8277a3b1e51d8f73210a4dcc86fddc24267491fb05915e44307068c1fe49eb44_arm64", + "product_id": "openshift4/ose-ironic-agent-rhel8@sha256:8277a3b1e51d8f73210a4dcc86fddc24267491fb05915e44307068c1fe49eb44_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-agent-rhel8@sha256:8277a3b1e51d8f73210a4dcc86fddc24267491fb05915e44307068c1fe49eb44?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel8&tag=v4.11.0-202310202025.p0.g1dad35c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-rhel8@sha256:6f50cd0adc0ec1a083dac27b75db123f1b51c11f66ce5a3d542e2968f46314a3_arm64", + "product": { + "name": "openshift4/ose-ironic-rhel8@sha256:6f50cd0adc0ec1a083dac27b75db123f1b51c11f66ce5a3d542e2968f46314a3_arm64", + "product_id": "openshift4/ose-ironic-rhel8@sha256:6f50cd0adc0ec1a083dac27b75db123f1b51c11f66ce5a3d542e2968f46314a3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-rhel8@sha256:6f50cd0adc0ec1a083dac27b75db123f1b51c11f66ce5a3d542e2968f46314a3?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ironic-rhel8&tag=v4.11.0-202310201344.p0.g240777d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-machine-os-downloader-rhel8@sha256:a03ee05169a505a0a4384f35e3718766f9878194bc668aa104d0036233659ed0_arm64", + "product": { + "name": "openshift4/ose-ironic-machine-os-downloader-rhel8@sha256:a03ee05169a505a0a4384f35e3718766f9878194bc668aa104d0036233659ed0_arm64", + "product_id": "openshift4/ose-ironic-machine-os-downloader-rhel8@sha256:a03ee05169a505a0a4384f35e3718766f9878194bc668aa104d0036233659ed0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-machine-os-downloader-rhel8@sha256:a03ee05169a505a0a4384f35e3718766f9878194bc668aa104d0036233659ed0?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel8&tag=v4.11.0-202310260725.p0.g876128b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-static-ip-manager-rhel8@sha256:204eadd9a588fdf093c5a32208d65736fe5881eabfeb969114325ff4a7a79b9c_arm64", + "product": { + "name": "openshift4/ose-ironic-static-ip-manager-rhel8@sha256:204eadd9a588fdf093c5a32208d65736fe5881eabfeb969114325ff4a7a79b9c_arm64", + "product_id": "openshift4/ose-ironic-static-ip-manager-rhel8@sha256:204eadd9a588fdf093c5a32208d65736fe5881eabfeb969114325ff4a7a79b9c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-static-ip-manager-rhel8@sha256:204eadd9a588fdf093c5a32208d65736fe5881eabfeb969114325ff4a7a79b9c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel8&tag=v4.11.0-202310200743.p0.g8c8af7b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-proxy@sha256:c96199a55994907d0a742f3d4a4070af5ecc23c9b139a7dec0e0267ad9fa4048_arm64", + "product": { + "name": "openshift4/ose-kube-proxy@sha256:c96199a55994907d0a742f3d4a4070af5ecc23c9b139a7dec0e0267ad9fa4048_arm64", + "product_id": "openshift4/ose-kube-proxy@sha256:c96199a55994907d0a742f3d4a4070af5ecc23c9b139a7dec0e0267ad9fa4048_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-proxy@sha256:c96199a55994907d0a742f3d4a4070af5ecc23c9b139a7dec0e0267ad9fa4048?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-kube-proxy&tag=v4.11.0-202310200743.p0.ge5b34b7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-rbac-proxy@sha256:791916a6a568331e8f56c3e50f2cf8993df3d3cce01d9ada814b6cfdd823e10b_arm64", + "product": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:791916a6a568331e8f56c3e50f2cf8993df3d3cce01d9ada814b6cfdd823e10b_arm64", + "product_id": "openshift4/ose-kube-rbac-proxy@sha256:791916a6a568331e8f56c3e50f2cf8993df3d3cce01d9ada814b6cfdd823e10b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-rbac-proxy@sha256:791916a6a568331e8f56c3e50f2cf8993df3d3cce01d9ada814b6cfdd823e10b?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy&tag=v4.11.0-202310300625.p0.gc04896c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-state-metrics@sha256:a84b8a205b8ffd69b8071e825d0f390a452df2ceb981eb1a92e8dc22e9f9061c_arm64", + "product": { + "name": "openshift4/ose-kube-state-metrics@sha256:a84b8a205b8ffd69b8071e825d0f390a452df2ceb981eb1a92e8dc22e9f9061c_arm64", + "product_id": "openshift4/ose-kube-state-metrics@sha256:a84b8a205b8ffd69b8071e825d0f390a452df2ceb981eb1a92e8dc22e9f9061c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-state-metrics@sha256:a84b8a205b8ffd69b8071e825d0f390a452df2ceb981eb1a92e8dc22e9f9061c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics&tag=v4.11.0-202310200743.p0.g8dc2dc0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-marketplace@sha256:d4036baa7bd568287442e831dc941cacbd8bcd4f618b128dc1bed1b06cc0bfef_arm64", + "product": { + "name": "openshift4/ose-operator-marketplace@sha256:d4036baa7bd568287442e831dc941cacbd8bcd4f618b128dc1bed1b06cc0bfef_arm64", + "product_id": "openshift4/ose-operator-marketplace@sha256:d4036baa7bd568287442e831dc941cacbd8bcd4f618b128dc1bed1b06cc0bfef_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-marketplace@sha256:d4036baa7bd568287442e831dc941cacbd8bcd4f618b128dc1bed1b06cc0bfef?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-operator-marketplace&tag=v4.11.0-202310201443.p0.gc3bae40.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-cni@sha256:39961db381a37135fa39eccd377c9f6fabfa83d41f3b0b27c0ee7dbfabf21cc7_arm64", + "product": { + "name": "openshift4/ose-multus-cni@sha256:39961db381a37135fa39eccd377c9f6fabfa83d41f3b0b27c0ee7dbfabf21cc7_arm64", + "product_id": "openshift4/ose-multus-cni@sha256:39961db381a37135fa39eccd377c9f6fabfa83d41f3b0b27c0ee7dbfabf21cc7_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-cni@sha256:39961db381a37135fa39eccd377c9f6fabfa83d41f3b0b27c0ee7dbfabf21cc7?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-multus-cni&tag=v4.11.0-202310200743.p0.g67cf297.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-server-rhel8@sha256:b52ce9f187dc8eb76689fc78ab46c116d7671cf4fe0a582f3fe3502afa8746d0_arm64", + "product": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:b52ce9f187dc8eb76689fc78ab46c116d7671cf4fe0a582f3fe3502afa8746d0_arm64", + "product_id": "openshift4/ose-oauth-server-rhel8@sha256:b52ce9f187dc8eb76689fc78ab46c116d7671cf4fe0a582f3fe3502afa8746d0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-server-rhel8@sha256:b52ce9f187dc8eb76689fc78ab46c116d7671cf4fe0a582f3fe3502afa8746d0?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel8&tag=v4.11.0-202310200743.p0.g8d80088.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-builder@sha256:4264dd6e2e55c5e56ebb829d9cb161e31a75a516eadf93372621a289b8ccd070_arm64", + "product": { + "name": "openshift4/ose-docker-builder@sha256:4264dd6e2e55c5e56ebb829d9cb161e31a75a516eadf93372621a289b8ccd070_arm64", + "product_id": "openshift4/ose-docker-builder@sha256:4264dd6e2e55c5e56ebb829d9cb161e31a75a516eadf93372621a289b8ccd070_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-builder@sha256:4264dd6e2e55c5e56ebb829d9cb161e31a75a516eadf93372621a289b8ccd070?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-docker-builder&tag=v4.11.0-202310200743.p0.gd9f5ca0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli@sha256:6ca39edba3455b976af84a9c1c430b03ab4adae51be0f0d98e599fc05dac95d3_arm64", + "product": { + "name": "openshift4/ose-cli@sha256:6ca39edba3455b976af84a9c1c430b03ab4adae51be0f0d98e599fc05dac95d3_arm64", + "product_id": "openshift4/ose-cli@sha256:6ca39edba3455b976af84a9c1c430b03ab4adae51be0f0d98e599fc05dac95d3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli@sha256:6ca39edba3455b976af84a9c1c430b03ab4adae51be0f0d98e599fc05dac95d3?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cli&tag=v4.11.0-202310251925.p0.gbbc7c58.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console@sha256:99b06eb6c548993b0e3801d27a0b9ef631a1eddbe8bc517da4d8e62d9f81db19_arm64", + "product": { + "name": "openshift4/ose-console@sha256:99b06eb6c548993b0e3801d27a0b9ef631a1eddbe8bc517da4d8e62d9f81db19_arm64", + "product_id": "openshift4/ose-console@sha256:99b06eb6c548993b0e3801d27a0b9ef631a1eddbe8bc517da4d8e62d9f81db19_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-console@sha256:99b06eb6c548993b0e3801d27a0b9ef631a1eddbe8bc517da4d8e62d9f81db19?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-console&tag=v4.11.0-202310200743.p0.g332cb4f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console-operator@sha256:306483c0cd297549b7780e5c6a924f263b53d33dbd8f46b08e331a7dae748f5d_arm64", + "product": { + "name": "openshift4/ose-console-operator@sha256:306483c0cd297549b7780e5c6a924f263b53d33dbd8f46b08e331a7dae748f5d_arm64", + "product_id": "openshift4/ose-console-operator@sha256:306483c0cd297549b7780e5c6a924f263b53d33dbd8f46b08e331a7dae748f5d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-console-operator@sha256:306483c0cd297549b7780e5c6a924f263b53d33dbd8f46b08e331a7dae748f5d?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-console-operator&tag=v4.11.0-202310261501.p0.g488fe13.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-deployer@sha256:cfc3c0478993aa0582c94af6ad9a724f14fe247f2e2e8f96dce4225db5a89318_arm64", + "product": { + "name": "openshift4/ose-deployer@sha256:cfc3c0478993aa0582c94af6ad9a724f14fe247f2e2e8f96dce4225db5a89318_arm64", + "product_id": "openshift4/ose-deployer@sha256:cfc3c0478993aa0582c94af6ad9a724f14fe247f2e2e8f96dce4225db5a89318_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-deployer@sha256:cfc3c0478993aa0582c94af6ad9a724f14fe247f2e2e8f96dce4225db5a89318?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-deployer&tag=v4.11.0-202310251925.p0.gbbc7c58.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-haproxy-router@sha256:5c943f736e9e186064470205427650bfc3ce06174ad426cecdd80b7aa158eda9_arm64", + "product": { + "name": "openshift4/ose-haproxy-router@sha256:5c943f736e9e186064470205427650bfc3ce06174ad426cecdd80b7aa158eda9_arm64", + "product_id": "openshift4/ose-haproxy-router@sha256:5c943f736e9e186064470205427650bfc3ce06174ad426cecdd80b7aa158eda9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-haproxy-router@sha256:5c943f736e9e186064470205427650bfc3ce06174ad426cecdd80b7aa158eda9?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-haproxy-router&tag=v4.11.0-202310200743.p0.gd9b76b8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hyperkube@sha256:ee5fc9c965caa46ea8dcd4ca667746ca2a6db982d64655df03eef319dc706146_arm64", + "product": { + "name": "openshift4/ose-hyperkube@sha256:ee5fc9c965caa46ea8dcd4ca667746ca2a6db982d64655df03eef319dc706146_arm64", + "product_id": "openshift4/ose-hyperkube@sha256:ee5fc9c965caa46ea8dcd4ca667746ca2a6db982d64655df03eef319dc706146_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-hyperkube@sha256:ee5fc9c965caa46ea8dcd4ca667746ca2a6db982d64655df03eef319dc706146?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-hyperkube&tag=v4.11.0-202310201801.p0.gc70bea0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-keepalived-ipfailover@sha256:1c81be60a88562c35769103f625f1c360b66955df23aeda279c5921ff715214e_arm64", + "product": { + "name": "openshift4/ose-keepalived-ipfailover@sha256:1c81be60a88562c35769103f625f1c360b66955df23aeda279c5921ff715214e_arm64", + "product_id": "openshift4/ose-keepalived-ipfailover@sha256:1c81be60a88562c35769103f625f1c360b66955df23aeda279c5921ff715214e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-keepalived-ipfailover@sha256:1c81be60a88562c35769103f625f1c360b66955df23aeda279c5921ff715214e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-keepalived-ipfailover&tag=v4.11.0-202310200743.p0.gf1330f6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-pod@sha256:990f6b8be9a6023055c735d0a40ccc6d46f2ce9282ba2f85cb5058b38ff0dd3c_arm64", + "product": { + "name": "openshift4/ose-pod@sha256:990f6b8be9a6023055c735d0a40ccc6d46f2ce9282ba2f85cb5058b38ff0dd3c_arm64", + "product_id": "openshift4/ose-pod@sha256:990f6b8be9a6023055c735d0a40ccc6d46f2ce9282ba2f85cb5058b38ff0dd3c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-pod@sha256:990f6b8be9a6023055c735d0a40ccc6d46f2ce9282ba2f85cb5058b38ff0dd3c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-pod&tag=v4.11.0-202310201801.p0.gc70bea0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-registry@sha256:421ca14bb7465dc679f27db95cf6a17214213c0718b9a49325194bc41f42f287_arm64", + "product": { + "name": "openshift4/ose-docker-registry@sha256:421ca14bb7465dc679f27db95cf6a17214213c0718b9a49325194bc41f42f287_arm64", + "product_id": "openshift4/ose-docker-registry@sha256:421ca14bb7465dc679f27db95cf6a17214213c0718b9a49325194bc41f42f287_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-registry@sha256:421ca14bb7465dc679f27db95cf6a17214213c0718b9a49325194bc41f42f287?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-docker-registry&tag=v4.11.0-202310200743.p0.g431737b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tests@sha256:4d1cd2c0bb7ef45db9aaea8190aa3144f0931a74e380a8f4135c87eec6ef9b50_arm64", + "product": { + "name": "openshift4/ose-tests@sha256:4d1cd2c0bb7ef45db9aaea8190aa3144f0931a74e380a8f4135c87eec6ef9b50_arm64", + "product_id": "openshift4/ose-tests@sha256:4d1cd2c0bb7ef45db9aaea8190aa3144f0931a74e380a8f4135c87eec6ef9b50_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-tests@sha256:4d1cd2c0bb7ef45db9aaea8190aa3144f0931a74e380a8f4135c87eec6ef9b50?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-tests&tag=v4.11.0-202310260725.p0.gb34b8a2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:c11ddd72c67bb6b849ba398ba82a2bb738b9dbd8fcf185c874913408d0fa50ba_arm64", + "product": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:c11ddd72c67bb6b849ba398ba82a2bb738b9dbd8fcf185c874913408d0fa50ba_arm64", + "product_id": "openshift4/ose-openshift-state-metrics-rhel8@sha256:c11ddd72c67bb6b849ba398ba82a2bb738b9dbd8fcf185c874913408d0fa50ba_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-state-metrics-rhel8@sha256:c11ddd72c67bb6b849ba398ba82a2bb738b9dbd8fcf185c874913408d0fa50ba?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8&tag=v4.11.0-202310200743.p0.g1a7a5dc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-lifecycle-manager@sha256:bd8d4e46044c5a6ffb8fe6f95e1fdfaa77a0a751ebb68085ced7c762acda69f0_arm64", + "product": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:bd8d4e46044c5a6ffb8fe6f95e1fdfaa77a0a751ebb68085ced7c762acda69f0_arm64", + "product_id": "openshift4/ose-operator-lifecycle-manager@sha256:bd8d4e46044c5a6ffb8fe6f95e1fdfaa77a0a751ebb68085ced7c762acda69f0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-lifecycle-manager@sha256:bd8d4e46044c5a6ffb8fe6f95e1fdfaa77a0a751ebb68085ced7c762acda69f0?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager&tag=v4.11.0-202310200743.p0.ge0e9236.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-registry@sha256:3d3a8232ceba35b67a2b6c71de9869dc2a849a17f2ad9894a43cbd4d5a719ea7_arm64", + "product": { + "name": "openshift4/ose-operator-registry@sha256:3d3a8232ceba35b67a2b6c71de9869dc2a849a17f2ad9894a43cbd4d5a719ea7_arm64", + "product_id": "openshift4/ose-operator-registry@sha256:3d3a8232ceba35b67a2b6c71de9869dc2a849a17f2ad9894a43cbd4d5a719ea7_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-registry@sha256:3d3a8232ceba35b67a2b6c71de9869dc2a849a17f2ad9894a43cbd4d5a719ea7?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-operator-registry&tag=v4.11.0-202310200743.p0.ge0e9236.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:4e4125ee395df9da1bd797f86aef91d52fb5b2292c6d9fac9da496ff375cf967_arm64", + "product": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:4e4125ee395df9da1bd797f86aef91d52fb5b2292c6d9fac9da496ff375cf967_arm64", + "product_id": "openshift4/ose-agent-installer-api-server-rhel8@sha256:4e4125ee395df9da1bd797f86aef91d52fb5b2292c6d9fac9da496ff375cf967_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-api-server-rhel8@sha256:4e4125ee395df9da1bd797f86aef91d52fb5b2292c6d9fac9da496ff375cf967?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8&tag=v4.11.0-202310251925.p0.gbc51be8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:fa35472c6f79fd6abed2b427d1957302df0d2253626654c92fa0bfb58a928b7b_arm64", + "product": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:fa35472c6f79fd6abed2b427d1957302df0d2253626654c92fa0bfb58a928b7b_arm64", + "product_id": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:fa35472c6f79fd6abed2b427d1957302df0d2253626654c92fa0bfb58a928b7b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-csr-approver-rhel8@sha256:fa35472c6f79fd6abed2b427d1957302df0d2253626654c92fa0bfb58a928b7b?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8&tag=v4.11.0-202310251925.p0.gaa46748.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:187cde4bf99e8f6556fb908de54e5a46dd0f8ce71d7c49f60df103da284eabaf_arm64", + "product": { + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:187cde4bf99e8f6556fb908de54e5a46dd0f8ce71d7c49f60df103da284eabaf_arm64", + "product_id": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:187cde4bf99e8f6556fb908de54e5a46dd0f8ce71d7c49f60df103da284eabaf_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-node-agent-rhel8@sha256:187cde4bf99e8f6556fb908de54e5a46dd0f8ce71d7c49f60df103da284eabaf?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8&tag=v4.11.0-202310200743.p0.ge74ffbf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:1f63912e884c8b9b65e56603443d147b6706e57d73cf9b83a0969d279d507af4_arm64", + "product": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:1f63912e884c8b9b65e56603443d147b6706e57d73cf9b83a0969d279d507af4_arm64", + "product_id": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:1f63912e884c8b9b65e56603443d147b6706e57d73cf9b83a0969d279d507af4_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-orchestrator-rhel8@sha256:1f63912e884c8b9b65e56603443d147b6706e57d73cf9b83a0969d279d507af4?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8&tag=v4.11.0-202310200743.p0.gaa46748.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:10f8bb0b768bfe58c0e88a79e58b5213fc391231bb09d16470e409bd6fd2971f_arm64", + "product": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:10f8bb0b768bfe58c0e88a79e58b5213fc391231bb09d16470e409bd6fd2971f_arm64", + "product_id": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:10f8bb0b768bfe58c0e88a79e58b5213fc391231bb09d16470e409bd6fd2971f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-apiserver-network-proxy-rhel8@sha256:10f8bb0b768bfe58c0e88a79e58b5213fc391231bb09d16470e409bd6fd2971f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8&tag=v4.11.0-202310201801.p0.g15cd434.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:c8ed965ad4fbe27cb8713bb6d46000ec87cffbf171c0ba4acaebc81378c4530a_arm64", + "product": { + "name": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:c8ed965ad4fbe27cb8713bb6d46000ec87cffbf171c0ba4acaebc81378c4530a_arm64", + "product_id": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:c8ed965ad4fbe27cb8713bb6d46000ec87cffbf171c0ba4acaebc81378c4530a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-cloud-controller-manager-rhel8@sha256:c8ed965ad4fbe27cb8713bb6d46000ec87cffbf171c0ba4acaebc81378c4530a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8&tag=v4.11.0-202310200743.p0.gea1a9b2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:71fde111463c290e7bf16a2c7aff1c5b34bdfe83516665e06bcda57dd06e3bbd_arm64", + "product": { + "name": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:71fde111463c290e7bf16a2c7aff1c5b34bdfe83516665e06bcda57dd06e3bbd_arm64", + "product_id": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:71fde111463c290e7bf16a2c7aff1c5b34bdfe83516665e06bcda57dd06e3bbd_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-cluster-api-controllers-rhel8@sha256:71fde111463c290e7bf16a2c7aff1c5b34bdfe83516665e06bcda57dd06e3bbd?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8&tag=v4.11.0-202310200743.p0.gb3fe15b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:44fed666262fa1d8935159767606ce13188d1605292fee0952986d942eb12940_arm64", + "product": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:44fed666262fa1d8935159767606ce13188d1605292fee0952986d942eb12940_arm64", + "product_id": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:44fed666262fa1d8935159767606ce13188d1605292fee0952986d942eb12940_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel8@sha256:44fed666262fa1d8935159767606ce13188d1605292fee0952986d942eb12940?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8&tag=v4.11.0-202310251225.p0.g46bd913.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:bd4d291a3e501cc8646e9ead2b925caabcef97e623952327bfb74f56525618a3_arm64", + "product": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:bd4d291a3e501cc8646e9ead2b925caabcef97e623952327bfb74f56525618a3_arm64", + "product_id": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:bd4d291a3e501cc8646e9ead2b925caabcef97e623952327bfb74f56525618a3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel8-operator@sha256:bd4d291a3e501cc8646e9ead2b925caabcef97e623952327bfb74f56525618a3?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator&tag=v4.11.0-202310251925.p0.g2c9edc2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:b01a830fca96958a5270d4e99c17c960a2e1dc9e0c7684a9262fbeae5ae5eb23_arm64", + "product": { + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:b01a830fca96958a5270d4e99c17c960a2e1dc9e0c7684a9262fbeae5ae5eb23_arm64", + "product_id": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:b01a830fca96958a5270d4e99c17c960a2e1dc9e0c7684a9262fbeae5ae5eb23_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-pod-identity-webhook-rhel8@sha256:b01a830fca96958a5270d4e99c17c960a2e1dc9e0c7684a9262fbeae5ae5eb23?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8&tag=v4.11.0-202310200743.p0.ga085f1c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:cb37337603eb86f1265ad9ea600a623fef9a07850057a866ba216f500a10734c_arm64", + "product": { + "name": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:cb37337603eb86f1265ad9ea600a623fef9a07850057a866ba216f500a10734c_arm64", + "product_id": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:cb37337603eb86f1265ad9ea600a623fef9a07850057a866ba216f500a10734c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-cloud-controller-manager-rhel8@sha256:cb37337603eb86f1265ad9ea600a623fef9a07850057a866ba216f500a10734c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8&tag=v4.11.0-202310200743.p0.g6bf2e33.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:b2c22bff9e146f631e74dbc838d236076d20c4af67a9e9ee8f4634836b3c6d41_arm64", + "product": { + "name": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:b2c22bff9e146f631e74dbc838d236076d20c4af67a9e9ee8f4634836b3c6d41_arm64", + "product_id": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:b2c22bff9e146f631e74dbc838d236076d20c4af67a9e9ee8f4634836b3c6d41_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-cloud-node-manager-rhel8@sha256:b2c22bff9e146f631e74dbc838d236076d20c4af67a9e9ee8f4634836b3c6d41?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8&tag=v4.11.0-202310200743.p0.g6bf2e33.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:39f5d19cc64a40878ad90bee6c385383fa930f7bb3661cdedb74c37d7404ab86_arm64", + "product": { + "name": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:39f5d19cc64a40878ad90bee6c385383fa930f7bb3661cdedb74c37d7404ab86_arm64", + "product_id": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:39f5d19cc64a40878ad90bee6c385383fa930f7bb3661cdedb74c37d7404ab86_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-cluster-api-controllers-rhel8@sha256:39f5d19cc64a40878ad90bee6c385383fa930f7bb3661cdedb74c37d7404ab86?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8&tag=v4.11.0-202310200743.p0.ga851a35.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:12863475e6d9cfa6c073782d68d0336e572b9741a3445bc21cf04ca21d7f13af_arm64", + "product": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:12863475e6d9cfa6c073782d68d0336e572b9741a3445bc21cf04ca21d7f13af_arm64", + "product_id": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:12863475e6d9cfa6c073782d68d0336e572b9741a3445bc21cf04ca21d7f13af_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-disk-csi-driver-rhel8@sha256:12863475e6d9cfa6c073782d68d0336e572b9741a3445bc21cf04ca21d7f13af?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8&tag=v4.11.0-202310271901.p0.gf4bb81e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:f7cd8e9f43ad7323aef733ad068582032fd0be00d98f89a662ca0da20cdcb091_arm64", + "product": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:f7cd8e9f43ad7323aef733ad068582032fd0be00d98f89a662ca0da20cdcb091_arm64", + "product_id": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:f7cd8e9f43ad7323aef733ad068582032fd0be00d98f89a662ca0da20cdcb091_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-disk-csi-driver-rhel8-operator@sha256:f7cd8e9f43ad7323aef733ad068582032fd0be00d98f89a662ca0da20cdcb091?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator&tag=v4.11.0-202310200743.p0.g7e5e445.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:fc2521cf6854a350b0745b2831c815ab331c9f7026f00e3dbcd0a6f8cb9d2cd6_arm64", + "product": { + "name": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:fc2521cf6854a350b0745b2831c815ab331c9f7026f00e3dbcd0a6f8cb9d2cd6_arm64", + "product_id": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:fc2521cf6854a350b0745b2831c815ab331c9f7026f00e3dbcd0a6f8cb9d2cd6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-file-csi-driver-rhel8@sha256:fc2521cf6854a350b0745b2831c815ab331c9f7026f00e3dbcd0a6f8cb9d2cd6?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8&tag=v4.11.0-202310260725.p0.gc322c8f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:dfb04f651468e89423db280b798051cab62b8c79a47bb15a9876a46502813762_arm64", + "product": { + "name": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:dfb04f651468e89423db280b798051cab62b8c79a47bb15a9876a46502813762_arm64", + "product_id": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:dfb04f651468e89423db280b798051cab62b8c79a47bb15a9876a46502813762_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-file-csi-driver-operator-rhel8@sha256:dfb04f651468e89423db280b798051cab62b8c79a47bb15a9876a46502813762?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8&tag=v4.11.0-202310260725.p0.ga5c172b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:2f5a1518a27ed71fd928fcd2a94c317993db29a7e7cde6adb515aa403fae217c_arm64", + "product": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:2f5a1518a27ed71fd928fcd2a94c317993db29a7e7cde6adb515aa403fae217c_arm64", + "product_id": "openshift4/ose-baremetal-installer-rhel8@sha256:2f5a1518a27ed71fd928fcd2a94c317993db29a7e7cde6adb515aa403fae217c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-installer-rhel8@sha256:2f5a1518a27ed71fd928fcd2a94c317993db29a7e7cde6adb515aa403fae217c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8&tag=v4.11.0-202310200743.p0.gc63578d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:526e988df240f7bd372f0c1ff22f676898ac1d88e272434c2e226ff828fd82ae_arm64", + "product": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:526e988df240f7bd372f0c1ff22f676898ac1d88e272434c2e226ff828fd82ae_arm64", + "product_id": "openshift4/ose-baremetal-rhel8-operator@sha256:526e988df240f7bd372f0c1ff22f676898ac1d88e272434c2e226ff828fd82ae_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-rhel8-operator@sha256:526e988df240f7bd372f0c1ff22f676898ac1d88e272434c2e226ff828fd82ae?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel8-operator&tag=v4.11.0-202310201226.p0.gf7b90bf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:f5ac67f99074dfad3fa80a9d625e130f65e4b32e78e12ed39c6dd2425d4e2d87_arm64", + "product": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:f5ac67f99074dfad3fa80a9d625e130f65e4b32e78e12ed39c6dd2425d4e2d87_arm64", + "product_id": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:f5ac67f99074dfad3fa80a9d625e130f65e4b32e78e12ed39c6dd2425d4e2d87_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-runtimecfg-rhel8@sha256:f5ac67f99074dfad3fa80a9d625e130f65e4b32e78e12ed39c6dd2425d4e2d87?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8&tag=v4.11.0-202310200743.p0.g09f5604.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli-artifacts@sha256:69e2c4adfbaf5c5af3b02447c48a09576b73a7ae6831e1b92bf134ff5d280342_arm64", + "product": { + "name": "openshift4/ose-cli-artifacts@sha256:69e2c4adfbaf5c5af3b02447c48a09576b73a7ae6831e1b92bf134ff5d280342_arm64", + "product_id": "openshift4/ose-cli-artifacts@sha256:69e2c4adfbaf5c5af3b02447c48a09576b73a7ae6831e1b92bf134ff5d280342_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli-artifacts@sha256:69e2c4adfbaf5c5af3b02447c48a09576b73a7ae6831e1b92bf134ff5d280342?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cli-artifacts&tag=v4.11.0-202310251925.p0.gbbc7c58.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-credential-operator@sha256:db4b7ad03a0762e383887f3ff2d67bc28fa4854b7414b15bf8b7bdd76d24a792_arm64", + "product": { + "name": "openshift4/ose-cloud-credential-operator@sha256:db4b7ad03a0762e383887f3ff2d67bc28fa4854b7414b15bf8b7bdd76d24a792_arm64", + "product_id": "openshift4/ose-cloud-credential-operator@sha256:db4b7ad03a0762e383887f3ff2d67bc28fa4854b7414b15bf8b7bdd76d24a792_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-credential-operator@sha256:db4b7ad03a0762e383887f3ff2d67bc28fa4854b7414b15bf8b7bdd76d24a792?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cloud-credential-operator&tag=v4.11.0-202310200743.p0.g7c4c935.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:95cf7456d548f8a2373a0fa458b493ee59c3263d8e928e885a1e0461f26b1429_arm64", + "product": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:95cf7456d548f8a2373a0fa458b493ee59c3263d8e928e885a1e0461f26b1429_arm64", + "product_id": "openshift4/cloud-network-config-controller-rhel8@sha256:95cf7456d548f8a2373a0fa458b493ee59c3263d8e928e885a1e0461f26b1429_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cloud-network-config-controller-rhel8@sha256:95cf7456d548f8a2373a0fa458b493ee59c3263d8e928e885a1e0461f26b1429?arch=arm64&repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel8&tag=v4.11.0-202310200743.p0.gfd849e3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-api-rhel8@sha256:15c8b63f86e1f0de852a3c8c0cf0d5ea4ae72802194fd0193cfc2335cd3424fe_arm64", + "product": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:15c8b63f86e1f0de852a3c8c0cf0d5ea4ae72802194fd0193cfc2335cd3424fe_arm64", + "product_id": "openshift4/ose-cluster-api-rhel8@sha256:15c8b63f86e1f0de852a3c8c0cf0d5ea4ae72802194fd0193cfc2335cd3424fe_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-api-rhel8@sha256:15c8b63f86e1f0de852a3c8c0cf0d5ea4ae72802194fd0193cfc2335cd3424fe?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel8&tag=v4.11.0-202310200743.p0.gf9c215c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-authentication-operator@sha256:5211fb0c23747922bacc6b8770b6254101ea86873f02d8700bdeec6390b6dde3_arm64", + "product": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:5211fb0c23747922bacc6b8770b6254101ea86873f02d8700bdeec6390b6dde3_arm64", + "product_id": "openshift4/ose-cluster-authentication-operator@sha256:5211fb0c23747922bacc6b8770b6254101ea86873f02d8700bdeec6390b6dde3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-authentication-operator@sha256:5211fb0c23747922bacc6b8770b6254101ea86873f02d8700bdeec6390b6dde3?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-operator&tag=v4.11.0-202310200743.p0.ge2bcbaa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:224a6cba9db6ed212d84f2778b9d0e7913ba92eef85d97ed579cad9c4c8201ec_arm64", + "product": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:224a6cba9db6ed212d84f2778b9d0e7913ba92eef85d97ed579cad9c4c8201ec_arm64", + "product_id": "openshift4/ose-cluster-autoscaler-operator@sha256:224a6cba9db6ed212d84f2778b9d0e7913ba92eef85d97ed579cad9c4c8201ec_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler-operator@sha256:224a6cba9db6ed212d84f2778b9d0e7913ba92eef85d97ed579cad9c4c8201ec?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-operator&tag=v4.11.0-202310200743.p0.gfcffbcd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:e0e346bd9f7df30d9f54d2cb5cf3572a895bf14a17f8e8e17207c0f3af1d61d2_arm64", + "product": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:e0e346bd9f7df30d9f54d2cb5cf3572a895bf14a17f8e8e17207c0f3af1d61d2_arm64", + "product_id": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:e0e346bd9f7df30d9f54d2cb5cf3572a895bf14a17f8e8e17207c0f3af1d61d2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-baremetal-operator-rhel8@sha256:e0e346bd9f7df30d9f54d2cb5cf3572a895bf14a17f8e8e17207c0f3af1d61d2?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8&tag=v4.11.0-202310251925.p0.g4d2ec1d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-bootstrap@sha256:8d96490148fe72901bdcaed137b89148d481b1cb2aa895dfe5d50071eb116391_arm64", + "product": { + "name": "openshift4/ose-cluster-bootstrap@sha256:8d96490148fe72901bdcaed137b89148d481b1cb2aa895dfe5d50071eb116391_arm64", + "product_id": "openshift4/ose-cluster-bootstrap@sha256:8d96490148fe72901bdcaed137b89148d481b1cb2aa895dfe5d50071eb116391_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-bootstrap@sha256:8d96490148fe72901bdcaed137b89148d481b1cb2aa895dfe5d50071eb116391?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap&tag=v4.11.0-202310200743.p0.gffb5e2e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:c2c0690d401873a503e445adb4e0bf1ce9c3fb3bef994367a054e5cd4e0b8ebd_arm64", + "product": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:c2c0690d401873a503e445adb4e0bf1ce9c3fb3bef994367a054e5cd4e0b8ebd_arm64", + "product_id": "openshift4/ose-cluster-capi-rhel8-operator@sha256:c2c0690d401873a503e445adb4e0bf1ce9c3fb3bef994367a054e5cd4e0b8ebd_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-rhel8-operator@sha256:c2c0690d401873a503e445adb4e0bf1ce9c3fb3bef994367a054e5cd4e0b8ebd?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator&tag=v4.11.0-202310200743.p0.g06d77ef.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:c2c0690d401873a503e445adb4e0bf1ce9c3fb3bef994367a054e5cd4e0b8ebd_arm64", + "product": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:c2c0690d401873a503e445adb4e0bf1ce9c3fb3bef994367a054e5cd4e0b8ebd_arm64", + "product_id": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:c2c0690d401873a503e445adb4e0bf1ce9c3fb3bef994367a054e5cd4e0b8ebd_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-operator-container-rhel8@sha256:c2c0690d401873a503e445adb4e0bf1ce9c3fb3bef994367a054e5cd4e0b8ebd?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8&tag=v4.11.0-202310200743.p0.g06d77ef.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:386fad4ccfed233b9171a1028337ae07e2c0bcf89a3d3f486c752d1f2f008a09_arm64", + "product": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:386fad4ccfed233b9171a1028337ae07e2c0bcf89a3d3f486c752d1f2f008a09_arm64", + "product_id": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:386fad4ccfed233b9171a1028337ae07e2c0bcf89a3d3f486c752d1f2f008a09_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:386fad4ccfed233b9171a1028337ae07e2c0bcf89a3d3f486c752d1f2f008a09?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8&tag=v4.11.0-202310200743.p0.g2dbffc6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-config-operator@sha256:d6d7c60332ef143a50b05cf5a80e87027ca33379753e820411e7cc0582adfa98_arm64", + "product": { + "name": "openshift4/ose-cluster-config-operator@sha256:d6d7c60332ef143a50b05cf5a80e87027ca33379753e820411e7cc0582adfa98_arm64", + "product_id": "openshift4/ose-cluster-config-operator@sha256:d6d7c60332ef143a50b05cf5a80e87027ca33379753e820411e7cc0582adfa98_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-config-operator@sha256:d6d7c60332ef143a50b05cf5a80e87027ca33379753e820411e7cc0582adfa98?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-config-operator&tag=v4.11.0-202310200743.p0.g0e01b06.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:99753a2f8167e026d296a912655968749ba5a64ca4c7527f77955177f8910c10_arm64", + "product": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:99753a2f8167e026d296a912655968749ba5a64ca4c7527f77955177f8910c10_arm64", + "product_id": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:99753a2f8167e026d296a912655968749ba5a64ca4c7527f77955177f8910c10_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:99753a2f8167e026d296a912655968749ba5a64ca4c7527f77955177f8910c10?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator&tag=v4.11.0-202310280825.p0.ga95aec8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-dns-operator@sha256:a94e6938d30d132ea02d2d707370c6a577431ebcc07c986ef40bb9c1f59dfead_arm64", + "product": { + "name": "openshift4/ose-cluster-dns-operator@sha256:a94e6938d30d132ea02d2d707370c6a577431ebcc07c986ef40bb9c1f59dfead_arm64", + "product_id": "openshift4/ose-cluster-dns-operator@sha256:a94e6938d30d132ea02d2d707370c6a577431ebcc07c986ef40bb9c1f59dfead_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-dns-operator@sha256:a94e6938d30d132ea02d2d707370c6a577431ebcc07c986ef40bb9c1f59dfead?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-dns-operator&tag=v4.11.0-202310270443.p0.g69b0ceb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-image-registry-operator@sha256:2c86a8c17f61f291f9fbc8b8098a44c75923dd307c7a51d5c9008abdb803b820_arm64", + "product": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:2c86a8c17f61f291f9fbc8b8098a44c75923dd307c7a51d5c9008abdb803b820_arm64", + "product_id": "openshift4/ose-cluster-image-registry-operator@sha256:2c86a8c17f61f291f9fbc8b8098a44c75923dd307c7a51d5c9008abdb803b820_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-image-registry-operator@sha256:2c86a8c17f61f291f9fbc8b8098a44c75923dd307c7a51d5c9008abdb803b820?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-operator&tag=v4.11.0-202310200743.p0.g1583069.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-ingress-operator@sha256:77a52ee7f5707947e7210f6514c0419a56b618aa7ec318f2143c46a088adfe4f_arm64", + "product": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:77a52ee7f5707947e7210f6514c0419a56b618aa7ec318f2143c46a088adfe4f_arm64", + "product_id": "openshift4/ose-cluster-ingress-operator@sha256:77a52ee7f5707947e7210f6514c0419a56b618aa7ec318f2143c46a088adfe4f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-ingress-operator@sha256:77a52ee7f5707947e7210f6514c0419a56b618aa7ec318f2143c46a088adfe4f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-operator&tag=v4.11.0-202310291243.p0.gb45e64a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:5e1f17520c786afb9f29b073677aca7830aa09d302e146cd149ba8803ae43e59_arm64", + "product": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:5e1f17520c786afb9f29b073677aca7830aa09d302e146cd149ba8803ae43e59_arm64", + "product_id": "openshift4/ose-cluster-kube-apiserver-operator@sha256:5e1f17520c786afb9f29b073677aca7830aa09d302e146cd149ba8803ae43e59_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-apiserver-operator@sha256:5e1f17520c786afb9f29b073677aca7830aa09d302e146cd149ba8803ae43e59?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator&tag=v4.11.0-202310200743.p0.g7021090.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:8283e15cf986dea446c6f1bd220a81b6f27dbb4f17f44bfda34e726bd3e9fa59_arm64", + "product": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:8283e15cf986dea446c6f1bd220a81b6f27dbb4f17f44bfda34e726bd3e9fa59_arm64", + "product_id": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:8283e15cf986dea446c6f1bd220a81b6f27dbb4f17f44bfda34e726bd3e9fa59_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel8-operator@sha256:8283e15cf986dea446c6f1bd220a81b6f27dbb4f17f44bfda34e726bd3e9fa59?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator&tag=v4.11.0-202310200743.p0.g21da027.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:5aa711db9c66fa8f1e1ded92a2f3f58dd338f3b6cc88bbe358918d435099061e_arm64", + "product": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:5aa711db9c66fa8f1e1ded92a2f3f58dd338f3b6cc88bbe358918d435099061e_arm64", + "product_id": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:5aa711db9c66fa8f1e1ded92a2f3f58dd338f3b6cc88bbe358918d435099061e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-controller-manager-operator@sha256:5aa711db9c66fa8f1e1ded92a2f3f58dd338f3b6cc88bbe358918d435099061e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator&tag=v4.11.0-202310200743.p0.ge65f505.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:7d647bb35e3b5ee7f5ac9a524bcf4254d854ef910db1cd7130dc4756dbae1c3d_arm64", + "product": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:7d647bb35e3b5ee7f5ac9a524bcf4254d854ef910db1cd7130dc4756dbae1c3d_arm64", + "product_id": "openshift4/ose-cluster-kube-scheduler-operator@sha256:7d647bb35e3b5ee7f5ac9a524bcf4254d854ef910db1cd7130dc4756dbae1c3d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-scheduler-operator@sha256:7d647bb35e3b5ee7f5ac9a524bcf4254d854ef910db1cd7130dc4756dbae1c3d?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator&tag=v4.11.0-202310200743.p0.g324e1c3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:e5b96fd293573a0e6433d3a1541a72c05cf21e7dfef796f01660e7c11b1d5eba_arm64", + "product": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:e5b96fd293573a0e6433d3a1541a72c05cf21e7dfef796f01660e7c11b1d5eba_arm64", + "product_id": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:e5b96fd293573a0e6433d3a1541a72c05cf21e7dfef796f01660e7c11b1d5eba_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:e5b96fd293573a0e6433d3a1541a72c05cf21e7dfef796f01660e7c11b1d5eba?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator&tag=v4.11.0-202310200743.p0.g12d050a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-machine-approver@sha256:0ea0a233d025abb43e8372af7a9c54a83418f296a1e5e9e58dd3800c0b2d928f_arm64", + "product": { + "name": "openshift4/ose-cluster-machine-approver@sha256:0ea0a233d025abb43e8372af7a9c54a83418f296a1e5e9e58dd3800c0b2d928f_arm64", + "product_id": "openshift4/ose-cluster-machine-approver@sha256:0ea0a233d025abb43e8372af7a9c54a83418f296a1e5e9e58dd3800c0b2d928f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-machine-approver@sha256:0ea0a233d025abb43e8372af7a9c54a83418f296a1e5e9e58dd3800c0b2d928f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver&tag=v4.11.0-202310200743.p0.gaa62f3b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:e1ace6387642e7fbfa7725f44aeed7dccb4129c57460661828974c57425ebcaa_arm64", + "product": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:e1ace6387642e7fbfa7725f44aeed7dccb4129c57460661828974c57425ebcaa_arm64", + "product_id": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:e1ace6387642e7fbfa7725f44aeed7dccb4129c57460661828974c57425ebcaa_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-apiserver-operator@sha256:e1ace6387642e7fbfa7725f44aeed7dccb4129c57460661828974c57425ebcaa?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator&tag=v4.11.0-202310200743.p0.gcb39fde.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:dfb9b45126c2169783fba566d5190bf12a38f98ddc0d1f10441897fdf00a297e_arm64", + "product": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:dfb9b45126c2169783fba566d5190bf12a38f98ddc0d1f10441897fdf00a297e_arm64", + "product_id": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:dfb9b45126c2169783fba566d5190bf12a38f98ddc0d1f10441897fdf00a297e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-controller-manager-operator@sha256:dfb9b45126c2169783fba566d5190bf12a38f98ddc0d1f10441897fdf00a297e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator&tag=v4.11.0-202310200743.p0.ga536525.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:acf65da60288d0ad94e095829dcd392fa48f91941ae6bae3bdad186485e01518_arm64", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:acf65da60288d0ad94e095829dcd392fa48f91941ae6bae3bdad186485e01518_arm64", + "product_id": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:acf65da60288d0ad94e095829dcd392fa48f91941ae6bae3bdad186485e01518_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8-operator@sha256:acf65da60288d0ad94e095829dcd392fa48f91941ae6bae3bdad186485e01518?arch=arm64&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator&tag=v4.11.0-202310200743.p0.g1c75c12.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:6ec4dda1902a4b2ae897288cf32a101c8d22ec4f087b33f9435160f9e6cc28b2_arm64", + "product": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:6ec4dda1902a4b2ae897288cf32a101c8d22ec4f087b33f9435160f9e6cc28b2_arm64", + "product_id": "openshift4/ose-cluster-policy-controller-rhel8@sha256:6ec4dda1902a4b2ae897288cf32a101c8d22ec4f087b33f9435160f9e6cc28b2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-policy-controller-rhel8@sha256:6ec4dda1902a4b2ae897288cf32a101c8d22ec4f087b33f9435160f9e6cc28b2?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8&tag=v4.11.0-202310200743.p0.g5651181.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-samples-operator@sha256:5785c9d183bee4471aa05b587467b65c2e82b866204dfb6d482347a7be7d55fa_arm64", + "product": { + "name": "openshift4/ose-cluster-samples-operator@sha256:5785c9d183bee4471aa05b587467b65c2e82b866204dfb6d482347a7be7d55fa_arm64", + "product_id": "openshift4/ose-cluster-samples-operator@sha256:5785c9d183bee4471aa05b587467b65c2e82b866204dfb6d482347a7be7d55fa_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-samples-operator@sha256:5785c9d183bee4471aa05b587467b65c2e82b866204dfb6d482347a7be7d55fa?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-samples-operator&tag=v4.11.0-202310200743.p0.g051761b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-storage-operator@sha256:e850cd4c93d30f9faa064a0f3d04ba7a1ab368d415ee6256dd395039cb01558d_arm64", + "product": { + "name": "openshift4/ose-cluster-storage-operator@sha256:e850cd4c93d30f9faa064a0f3d04ba7a1ab368d415ee6256dd395039cb01558d_arm64", + "product_id": "openshift4/ose-cluster-storage-operator@sha256:e850cd4c93d30f9faa064a0f3d04ba7a1ab368d415ee6256dd395039cb01558d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-storage-operator@sha256:e850cd4c93d30f9faa064a0f3d04ba7a1ab368d415ee6256dd395039cb01558d?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-storage-operator&tag=v4.11.0-202310251025.p0.gbc69ea3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-update-keys@sha256:0e887425fac5b10836c248126fb0f24f969e9f661877cf0003fa76abc5e6ef84_arm64", + "product": { + "name": "openshift4/ose-cluster-update-keys@sha256:0e887425fac5b10836c248126fb0f24f969e9f661877cf0003fa76abc5e6ef84_arm64", + "product_id": "openshift4/ose-cluster-update-keys@sha256:0e887425fac5b10836c248126fb0f24f969e9f661877cf0003fa76abc5e6ef84_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-update-keys@sha256:0e887425fac5b10836c248126fb0f24f969e9f661877cf0003fa76abc5e6ef84?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-update-keys&tag=v4.11.0-202310200743.p0.g289032f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:4bb3c83fdb8e071b78e79e25220d0377e9ab3779d727a5f35e6904d8f760bf0a_arm64", + "product": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:4bb3c83fdb8e071b78e79e25220d0377e9ab3779d727a5f35e6904d8f760bf0a_arm64", + "product_id": "openshift4/ose-container-networking-plugins-rhel8@sha256:4bb3c83fdb8e071b78e79e25220d0377e9ab3779d727a5f35e6904d8f760bf0a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-container-networking-plugins-rhel8@sha256:4bb3c83fdb8e071b78e79e25220d0377e9ab3779d727a5f35e6904d8f760bf0a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8&tag=v4.11.0-202310200743.p0.g0ad9da6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:9dcb3c7168663fba535cf1c6df43eeda36f86a713e32aa72f9492ee0b440466d_arm64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:9dcb3c7168663fba535cf1c6df43eeda36f86a713e32aa72f9492ee0b440466d_arm64", + "product_id": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:9dcb3c7168663fba535cf1c6df43eeda36f86a713e32aa72f9492ee0b440466d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-rhel8@sha256:9dcb3c7168663fba535cf1c6df43eeda36f86a713e32aa72f9492ee0b440466d?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8&tag=v4.11.0-202310200743.p0.gb5a5a02.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:46c8a38bc99d20d75efa9849092b0112de91e035d85d0ce7c7847d012eac185a_arm64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:46c8a38bc99d20d75efa9849092b0112de91e035d85d0ce7c7847d012eac185a_arm64", + "product_id": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:46c8a38bc99d20d75efa9849092b0112de91e035d85d0ce7c7847d012eac185a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-operator-rhel8@sha256:46c8a38bc99d20d75efa9849092b0112de91e035d85d0ce7c7847d012eac185a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8&tag=v4.11.0-202310200743.p0.g20c9586.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:e596cdf5056f574485009dff7254501f6b159178eacc9a2db2b606165f9e4204_arm64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:e596cdf5056f574485009dff7254501f6b159178eacc9a2db2b606165f9e4204_arm64", + "product_id": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:e596cdf5056f574485009dff7254501f6b159178eacc9a2db2b606165f9e4204_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-webhook-rhel8@sha256:e596cdf5056f574485009dff7254501f6b159178eacc9a2db2b606165f9e4204?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8&tag=v4.11.0-202310200743.p0.gb5a5a02.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:5d891b3c11e1f29ca9c04f372978026550665bb929b207251ecc7e73a0f91ca0_arm64", + "product": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:5d891b3c11e1f29ca9c04f372978026550665bb929b207251ecc7e73a0f91ca0_arm64", + "product_id": "openshift4/ose-csi-external-resizer-rhel8@sha256:5d891b3c11e1f29ca9c04f372978026550665bb929b207251ecc7e73a0f91ca0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer-rhel8@sha256:5d891b3c11e1f29ca9c04f372978026550665bb929b207251ecc7e73a0f91ca0?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8&tag=v4.11.0-202310271626.p0.g15ef766.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer@sha256:5d891b3c11e1f29ca9c04f372978026550665bb929b207251ecc7e73a0f91ca0_arm64", + "product": { + "name": "openshift4/ose-csi-external-resizer@sha256:5d891b3c11e1f29ca9c04f372978026550665bb929b207251ecc7e73a0f91ca0_arm64", + "product_id": "openshift4/ose-csi-external-resizer@sha256:5d891b3c11e1f29ca9c04f372978026550665bb929b207251ecc7e73a0f91ca0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer@sha256:5d891b3c11e1f29ca9c04f372978026550665bb929b207251ecc7e73a0f91ca0?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer&tag=v4.11.0-202310271626.p0.g15ef766.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter@sha256:1fd8a6f961dbf805212f508c1285f60c9a9a79a3f87c5a8e56d4dfe84a927125_arm64", + "product": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:1fd8a6f961dbf805212f508c1285f60c9a9a79a3f87c5a8e56d4dfe84a927125_arm64", + "product_id": "openshift4/ose-csi-external-snapshotter@sha256:1fd8a6f961dbf805212f508c1285f60c9a9a79a3f87c5a8e56d4dfe84a927125_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter@sha256:1fd8a6f961dbf805212f508c1285f60c9a9a79a3f87c5a8e56d4dfe84a927125?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter&tag=v4.11.0-202310271701.p0.g54d2f3d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:1fd8a6f961dbf805212f508c1285f60c9a9a79a3f87c5a8e56d4dfe84a927125_arm64", + "product": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:1fd8a6f961dbf805212f508c1285f60c9a9a79a3f87c5a8e56d4dfe84a927125_arm64", + "product_id": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:1fd8a6f961dbf805212f508c1285f60c9a9a79a3f87c5a8e56d4dfe84a927125_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter-rhel8@sha256:1fd8a6f961dbf805212f508c1285f60c9a9a79a3f87c5a8e56d4dfe84a927125?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8&tag=v4.11.0-202310271701.p0.g54d2f3d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller@sha256:82bffbad1dc1b266d9387d73065d85041b9db83078c7b8e321de1ee36e2e5ad5_arm64", + "product": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:82bffbad1dc1b266d9387d73065d85041b9db83078c7b8e321de1ee36e2e5ad5_arm64", + "product_id": "openshift4/ose-csi-snapshot-controller@sha256:82bffbad1dc1b266d9387d73065d85041b9db83078c7b8e321de1ee36e2e5ad5_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller@sha256:82bffbad1dc1b266d9387d73065d85041b9db83078c7b8e321de1ee36e2e5ad5?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller&tag=v4.11.0-202310271701.p0.g54d2f3d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:82bffbad1dc1b266d9387d73065d85041b9db83078c7b8e321de1ee36e2e5ad5_arm64", + "product": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:82bffbad1dc1b266d9387d73065d85041b9db83078c7b8e321de1ee36e2e5ad5_arm64", + "product_id": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:82bffbad1dc1b266d9387d73065d85041b9db83078c7b8e321de1ee36e2e5ad5_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller-rhel8@sha256:82bffbad1dc1b266d9387d73065d85041b9db83078c7b8e321de1ee36e2e5ad5?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8&tag=v4.11.0-202310271701.p0.g54d2f3d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:cf4b02164152f5ec256d71f9f86284ea2dbfe219b17cf6c2f0ce0eb24a056a92_arm64", + "product": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:cf4b02164152f5ec256d71f9f86284ea2dbfe219b17cf6c2f0ce0eb24a056a92_arm64", + "product_id": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:cf4b02164152f5ec256d71f9f86284ea2dbfe219b17cf6c2f0ce0eb24a056a92_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-validation-webhook-rhel8@sha256:cf4b02164152f5ec256d71f9f86284ea2dbfe219b17cf6c2f0ce0eb24a056a92?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8&tag=v4.11.0-202310271701.p0.g54d2f3d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/egress-router-cni-rhel8@sha256:f0aa07446110940ad7c43955c294627ab6c77f9b0b453027c562318604c9c1f2_arm64", + "product": { + "name": "openshift4/egress-router-cni-rhel8@sha256:f0aa07446110940ad7c43955c294627ab6c77f9b0b453027c562318604c9c1f2_arm64", + "product_id": "openshift4/egress-router-cni-rhel8@sha256:f0aa07446110940ad7c43955c294627ab6c77f9b0b453027c562318604c9c1f2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/egress-router-cni-rhel8@sha256:f0aa07446110940ad7c43955c294627ab6c77f9b0b453027c562318604c9c1f2?arch=arm64&repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel8&tag=v4.11.0-202310200743.p0.gfccaf1d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-etcd@sha256:4f21e374662d5956348c6084e1e346e2955548cfac1c1970da3ac0b66d3552dc_arm64", + "product": { + "name": "openshift4/ose-etcd@sha256:4f21e374662d5956348c6084e1e346e2955548cfac1c1970da3ac0b66d3552dc_arm64", + "product_id": "openshift4/ose-etcd@sha256:4f21e374662d5956348c6084e1e346e2955548cfac1c1970da3ac0b66d3552dc_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-etcd@sha256:4f21e374662d5956348c6084e1e346e2955548cfac1c1970da3ac0b66d3552dc?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-etcd&tag=v4.11.0-202310200743.p0.g2ccbc7d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hypershift-rhel8@sha256:e12454866f820da7067830a58cedf06491dcd4a3240da718f28b9c8e0099eb8c_arm64", + "product": { + "name": "openshift4/ose-hypershift-rhel8@sha256:e12454866f820da7067830a58cedf06491dcd4a3240da718f28b9c8e0099eb8c_arm64", + "product_id": "openshift4/ose-hypershift-rhel8@sha256:e12454866f820da7067830a58cedf06491dcd4a3240da718f28b9c8e0099eb8c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-hypershift-rhel8@sha256:e12454866f820da7067830a58cedf06491dcd4a3240da718f28b9c8e0099eb8c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel8&tag=v4.11.0-202310200743.p0.gda0a576.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-image-customization-controller-rhel8@sha256:197176795ba91704c4edd760e53cf2bce0336302bc3d4893988e3129a3797c0f_arm64", + "product": { + "name": "openshift4/ose-image-customization-controller-rhel8@sha256:197176795ba91704c4edd760e53cf2bce0336302bc3d4893988e3129a3797c0f_arm64", + "product_id": "openshift4/ose-image-customization-controller-rhel8@sha256:197176795ba91704c4edd760e53cf2bce0336302bc3d4893988e3129a3797c0f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-image-customization-controller-rhel8@sha256:197176795ba91704c4edd760e53cf2bce0336302bc3d4893988e3129a3797c0f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel8&tag=v4.11.0-202310261225.p0.g30f98fd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-insights-rhel8-operator@sha256:14730a87d51d029db698bac984fbfacecb56ae7ff8e62ea459eca4bdc1cdb1d5_arm64", + "product": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:14730a87d51d029db698bac984fbfacecb56ae7ff8e62ea459eca4bdc1cdb1d5_arm64", + "product_id": "openshift4/ose-insights-rhel8-operator@sha256:14730a87d51d029db698bac984fbfacecb56ae7ff8e62ea459eca4bdc1cdb1d5_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-insights-rhel8-operator@sha256:14730a87d51d029db698bac984fbfacecb56ae7ff8e62ea459eca4bdc1cdb1d5?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-insights-rhel8-operator&tag=v4.11.0-202310200743.p0.g14b5397.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer-artifacts@sha256:93b9c3a591a44de9f01e4613f805807741eb8ff309838b79455dc62d01a4c2f0_arm64", + "product": { + "name": "openshift4/ose-installer-artifacts@sha256:93b9c3a591a44de9f01e4613f805807741eb8ff309838b79455dc62d01a4c2f0_arm64", + "product_id": "openshift4/ose-installer-artifacts@sha256:93b9c3a591a44de9f01e4613f805807741eb8ff309838b79455dc62d01a4c2f0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer-artifacts@sha256:93b9c3a591a44de9f01e4613f805807741eb8ff309838b79455dc62d01a4c2f0?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-installer-artifacts&tag=v4.11.0-202310200743.p0.gc63578d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer@sha256:51c3b488479eb65e9123cc9c9ac2b09792c4a31192fb6f358ba23a35585f705e_arm64", + "product": { + "name": "openshift4/ose-installer@sha256:51c3b488479eb65e9123cc9c9ac2b09792c4a31192fb6f358ba23a35585f705e_arm64", + "product_id": "openshift4/ose-installer@sha256:51c3b488479eb65e9123cc9c9ac2b09792c4a31192fb6f358ba23a35585f705e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer@sha256:51c3b488479eb65e9123cc9c9ac2b09792c4a31192fb6f358ba23a35585f705e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-installer&tag=v4.11.0-202310200743.p0.gc63578d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:bda88c4b5a60de18a715d15390bf080bc463d8bc4264e255aa55d7949ce50b39_arm64", + "product": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:bda88c4b5a60de18a715d15390bf080bc463d8bc4264e255aa55d7949ce50b39_arm64", + "product_id": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:bda88c4b5a60de18a715d15390bf080bc463d8bc4264e255aa55d7949ce50b39_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-storage-version-migrator-rhel8@sha256:bda88c4b5a60de18a715d15390bf080bc463d8bc4264e255aa55d7949ce50b39?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8&tag=v4.11.0-202310200743.p0.g596745c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-libvirt-machine-controllers@sha256:ad32dca5b1517b17ff39263561ffc747b2b84935ad9baf043d872b83ec697698_arm64", + "product": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:ad32dca5b1517b17ff39263561ffc747b2b84935ad9baf043d872b83ec697698_arm64", + "product_id": "openshift4/ose-libvirt-machine-controllers@sha256:ad32dca5b1517b17ff39263561ffc747b2b84935ad9baf043d872b83ec697698_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-libvirt-machine-controllers@sha256:ad32dca5b1517b17ff39263561ffc747b2b84935ad9baf043d872b83ec697698?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers&tag=v4.11.0-202310200743.p0.gb6e14ea.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-operator@sha256:e2d0e1103a72fdc69944d3f531510835b3ae7a5e79007f56bf27acb326a85369_arm64", + "product": { + "name": "openshift4/ose-machine-api-operator@sha256:e2d0e1103a72fdc69944d3f531510835b3ae7a5e79007f56bf27acb326a85369_arm64", + "product_id": "openshift4/ose-machine-api-operator@sha256:e2d0e1103a72fdc69944d3f531510835b3ae7a5e79007f56bf27acb326a85369_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-operator@sha256:e2d0e1103a72fdc69944d3f531510835b3ae7a5e79007f56bf27acb326a85369?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-api-operator&tag=v4.11.0-202310200743.p0.gaba3049.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:afa82fba6d31ffd44065101b20d28941f2b2e4113b4326774aa67f77d5722eaf_arm64", + "product": { + "name": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:afa82fba6d31ffd44065101b20d28941f2b2e4113b4326774aa67f77d5722eaf_arm64", + "product_id": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:afa82fba6d31ffd44065101b20d28941f2b2e4113b4326774aa67f77d5722eaf_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-aws-rhel8@sha256:afa82fba6d31ffd44065101b20d28941f2b2e4113b4326774aa67f77d5722eaf?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8&tag=v4.11.0-202310200743.p0.ga796a77.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:a53416a364adbfa3c997365d734bf4eac255dfb9315986ded7dd9343a7ebbc84_arm64", + "product": { + "name": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:a53416a364adbfa3c997365d734bf4eac255dfb9315986ded7dd9343a7ebbc84_arm64", + "product_id": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:a53416a364adbfa3c997365d734bf4eac255dfb9315986ded7dd9343a7ebbc84_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-azure-rhel8@sha256:a53416a364adbfa3c997365d734bf4eac255dfb9315986ded7dd9343a7ebbc84?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8&tag=v4.11.0-202310200743.p0.g2389d45.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:f3ef246509e0c3035d4f8b159bee427f37336ba0bfd4bf90642044405eb39a73_arm64", + "product": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:f3ef246509e0c3035d4f8b159bee427f37336ba0bfd4bf90642044405eb39a73_arm64", + "product_id": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:f3ef246509e0c3035d4f8b159bee427f37336ba0bfd4bf90642044405eb39a73_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-openstack-rhel8@sha256:f3ef246509e0c3035d4f8b159bee427f37336ba0bfd4bf90642044405eb39a73?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8&tag=v4.11.0-202310200743.p0.g0446d77.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-config-operator@sha256:a73ddfffc8b36d3b98eddb2916e8dd1d6357fa67c82cd960b541ee1c3c7ae1fe_arm64", + "product": { + "name": "openshift4/ose-machine-config-operator@sha256:a73ddfffc8b36d3b98eddb2916e8dd1d6357fa67c82cd960b541ee1c3c7ae1fe_arm64", + "product_id": "openshift4/ose-machine-config-operator@sha256:a73ddfffc8b36d3b98eddb2916e8dd1d6357fa67c82cd960b541ee1c3c7ae1fe_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-config-operator@sha256:a73ddfffc8b36d3b98eddb2916e8dd1d6357fa67c82cd960b541ee1c3c7ae1fe?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-config-operator&tag=v4.11.0-202310271243.p0.g125ab15.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-os-images-rhel8@sha256:d29ea83742fbe540811a2762ae25586164d59a78fb80495ad3c04c174ad9b5d3_arm64", + "product": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:d29ea83742fbe540811a2762ae25586164d59a78fb80495ad3c04c174ad9b5d3_arm64", + "product_id": "openshift4/ose-machine-os-images-rhel8@sha256:d29ea83742fbe540811a2762ae25586164d59a78fb80495ad3c04c174ad9b5d3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-os-images-rhel8@sha256:d29ea83742fbe540811a2762ae25586164d59a78fb80495ad3c04c174ad9b5d3?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel8&tag=v4.11.0-202310200743.p0.gb1580a2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-admission-controller@sha256:b36d60ba5f9a73b19a05789d144cef83abc5c87404e4cb15ee13a85f9f95c470_arm64", + "product": { + "name": "openshift4/ose-multus-admission-controller@sha256:b36d60ba5f9a73b19a05789d144cef83abc5c87404e4cb15ee13a85f9f95c470_arm64", + "product_id": "openshift4/ose-multus-admission-controller@sha256:b36d60ba5f9a73b19a05789d144cef83abc5c87404e4cb15ee13a85f9f95c470_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-admission-controller@sha256:b36d60ba5f9a73b19a05789d144cef83abc5c87404e4cb15ee13a85f9f95c470?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller&tag=v4.11.0-202310200743.p0.gb876064.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:33177c32a8179f1bc2d2685715f219c9f8663e571ad512d4682e700a5a371746_arm64", + "product": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:33177c32a8179f1bc2d2685715f219c9f8663e571ad512d4682e700a5a371746_arm64", + "product_id": "openshift4/ose-multus-networkpolicy-rhel8@sha256:33177c32a8179f1bc2d2685715f219c9f8663e571ad512d4682e700a5a371746_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-networkpolicy-rhel8@sha256:33177c32a8179f1bc2d2685715f219c9f8663e571ad512d4682e700a5a371746?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8&tag=v4.11.0-202310200743.p0.g643fdaf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:0450b7bb50619c24754aa24327277417c00450d427f4f730e900ac724a80edbd_arm64", + "product": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:0450b7bb50619c24754aa24327277417c00450d427f4f730e900ac724a80edbd_arm64", + "product_id": "openshift4/ose-multus-route-override-cni-rhel8@sha256:0450b7bb50619c24754aa24327277417c00450d427f4f730e900ac724a80edbd_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-route-override-cni-rhel8@sha256:0450b7bb50619c24754aa24327277417c00450d427f4f730e900ac724a80edbd?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8&tag=v4.11.0-202310200743.p0.g523b790.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:02e07c7a1f22c4822d6b60645a92df9c554af16a876d87a6ae4b3f599e17b5db_arm64", + "product": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:02e07c7a1f22c4822d6b60645a92df9c554af16a876d87a6ae4b3f599e17b5db_arm64", + "product_id": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:02e07c7a1f22c4822d6b60645a92df9c554af16a876d87a6ae4b3f599e17b5db_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel8@sha256:02e07c7a1f22c4822d6b60645a92df9c554af16a876d87a6ae4b3f599e17b5db?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8&tag=v4.11.0-202310200743.p0.g7d544f9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-must-gather@sha256:5392dc381f3d77dab07d557e0de39edf711b1e4dd6d9778062ea8ea275f170b4_arm64", + "product": { + "name": "openshift4/ose-must-gather@sha256:5392dc381f3d77dab07d557e0de39edf711b1e4dd6d9778062ea8ea275f170b4_arm64", + "product_id": "openshift4/ose-must-gather@sha256:5392dc381f3d77dab07d557e0de39edf711b1e4dd6d9778062ea8ea275f170b4_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-must-gather@sha256:5392dc381f3d77dab07d557e0de39edf711b1e4dd6d9778062ea8ea275f170b4?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-must-gather&tag=v4.11.0-202310251925.p0.g44f6ada.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:d432e9d0c833dc587aa83d5118e7566d4250cff4e296acfc009bce4b11d1d1ff_arm64", + "product": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:d432e9d0c833dc587aa83d5118e7566d4250cff4e296acfc009bce4b11d1d1ff_arm64", + "product_id": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:d432e9d0c833dc587aa83d5118e7566d4250cff4e296acfc009bce4b11d1d1ff_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-interface-bond-cni-rhel8@sha256:d432e9d0c833dc587aa83d5118e7566d4250cff4e296acfc009bce4b11d1d1ff?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8&tag=v4.11.0-202310200743.p0.gb76a677.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:8b40237a9f506c04077888b30357e59a158a490a9ebae1ca3af1fb24c6de68f5_arm64", + "product": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:8b40237a9f506c04077888b30357e59a158a490a9ebae1ca3af1fb24c6de68f5_arm64", + "product_id": "openshift4/ose-network-metrics-daemon-rhel8@sha256:8b40237a9f506c04077888b30357e59a158a490a9ebae1ca3af1fb24c6de68f5_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-metrics-daemon-rhel8@sha256:8b40237a9f506c04077888b30357e59a158a490a9ebae1ca3af1fb24c6de68f5?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8&tag=v4.11.0-202310200743.p0.gbeda996.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/network-tools-rhel8@sha256:e3a1e4189ee7d9c49ed273bf078a16d279544d4548896c8e9c0b9e0753c178fa_arm64", + "product": { + "name": "openshift4/network-tools-rhel8@sha256:e3a1e4189ee7d9c49ed273bf078a16d279544d4548896c8e9c0b9e0753c178fa_arm64", + "product_id": "openshift4/network-tools-rhel8@sha256:e3a1e4189ee7d9c49ed273bf078a16d279544d4548896c8e9c0b9e0753c178fa_arm64", + "product_identification_helper": { + "purl": "pkg:oci/network-tools-rhel8@sha256:e3a1e4189ee7d9c49ed273bf078a16d279544d4548896c8e9c0b9e0753c178fa?arch=arm64&repository_url=registry.redhat.io/openshift4/network-tools-rhel8&tag=v4.11.0-202310260725.p0.g4e87286.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sdn-rhel8@sha256:f74b9b84dec998913a1af4cb43ee1dbec28f307bd3d2b1bbe4a3a416c0141df6_arm64", + "product": { + "name": "openshift4/ose-sdn-rhel8@sha256:f74b9b84dec998913a1af4cb43ee1dbec28f307bd3d2b1bbe4a3a416c0141df6_arm64", + "product_id": "openshift4/ose-sdn-rhel8@sha256:f74b9b84dec998913a1af4cb43ee1dbec28f307bd3d2b1bbe4a3a416c0141df6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sdn-rhel8@sha256:f74b9b84dec998913a1af4cb43ee1dbec28f307bd3d2b1bbe4a3a416c0141df6?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-sdn-rhel8&tag=v4.11.0-202310200743.p0.ge5b34b7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:bf497f535517fc84027efa8abd545c03f0e6288c890d6e78b5ddd91e61e5f846_arm64", + "product": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:bf497f535517fc84027efa8abd545c03f0e6288c890d6e78b5ddd91e61e5f846_arm64", + "product_id": "openshift4/ose-oauth-apiserver-rhel8@sha256:bf497f535517fc84027efa8abd545c03f0e6288c890d6e78b5ddd91e61e5f846_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-apiserver-rhel8@sha256:bf497f535517fc84027efa8abd545c03f0e6288c890d6e78b5ddd91e61e5f846?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8&tag=v4.11.0-202310200743.p0.gc9c2dd1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:a6f056621aee18c167691b6ffc137b2c6c913c5ba62ae4871400eac8ff7cac28_arm64", + "product": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:a6f056621aee18c167691b6ffc137b2c6c913c5ba62ae4871400eac8ff7cac28_arm64", + "product_id": "openshift4/ose-openshift-apiserver-rhel8@sha256:a6f056621aee18c167691b6ffc137b2c6c913c5ba62ae4871400eac8ff7cac28_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-apiserver-rhel8@sha256:a6f056621aee18c167691b6ffc137b2c6c913c5ba62ae4871400eac8ff7cac28?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8&tag=v4.11.0-202310200743.p0.g35df5a0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:b44b056aa72264b0551a9a880568fc07ef44b159d57a0c9085af9cd5552b7b46_arm64", + "product": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:b44b056aa72264b0551a9a880568fc07ef44b159d57a0c9085af9cd5552b7b46_arm64", + "product_id": "openshift4/ose-openshift-controller-manager-rhel8@sha256:b44b056aa72264b0551a9a880568fc07ef44b159d57a0c9085af9cd5552b7b46_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-controller-manager-rhel8@sha256:b44b056aa72264b0551a9a880568fc07ef44b159d57a0c9085af9cd5552b7b46?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8&tag=v4.11.0-202310200743.p0.g911da57.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:fa2b92e7d9279ee411a751e40fa63d1a092df6a8524a1c3b1abe86318c46506e_arm64", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:fa2b92e7d9279ee411a751e40fa63d1a092df6a8524a1c3b1abe86318c46506e_arm64", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:fa2b92e7d9279ee411a751e40fa63d1a092df6a8524a1c3b1abe86318c46506e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8@sha256:fa2b92e7d9279ee411a751e40fa63d1a092df6a8524a1c3b1abe86318c46506e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8&tag=v4.11.0-202310200743.p0.g9eed4ed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:e7d348586919e182bd86ea8b401e0089e9f7208e375c812285d617fce47ce5b2_arm64", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:e7d348586919e182bd86ea8b401e0089e9f7208e375c812285d617fce47ce5b2_arm64", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:e7d348586919e182bd86ea8b401e0089e9f7208e375c812285d617fce47ce5b2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:e7d348586919e182bd86ea8b401e0089e9f7208e375c812285d617fce47ce5b2?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator&tag=v4.11.0-202310301648.p0.ga6d74d7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:36bbf817e401f7bd39f87b16ed5b1cb15a0b1af1535e667798b58b6d9cc61037_arm64", + "product": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:36bbf817e401f7bd39f87b16ed5b1cb15a0b1af1535e667798b58b6d9cc61037_arm64", + "product_id": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:36bbf817e401f7bd39f87b16ed5b1cb15a0b1af1535e667798b58b6d9cc61037_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel8@sha256:36bbf817e401f7bd39f87b16ed5b1cb15a0b1af1535e667798b58b6d9cc61037?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8&tag=v4.11.0-202310200743.p0.g9eed4ed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-machine-controllers@sha256:10883fe76385f7cac30b7de03f4c6344efa07f04d70d5b75e32041168d4a4bc9_arm64", + "product": { + "name": "openshift4/ose-openstack-machine-controllers@sha256:10883fe76385f7cac30b7de03f4c6344efa07f04d70d5b75e32041168d4a4bc9_arm64", + "product_id": "openshift4/ose-openstack-machine-controllers@sha256:10883fe76385f7cac30b7de03f4c6344efa07f04d70d5b75e32041168d4a4bc9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-machine-controllers@sha256:10883fe76385f7cac30b7de03f4c6344efa07f04d70d5b75e32041168d4a4bc9?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openstack-machine-controllers&tag=v4.11.0-202310200743.p0.g38f15db.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:ede1b872a9561069ecfa18c4f93ea4d419d986ce857ccf53c9226053b511d0c9_arm64", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:ede1b872a9561069ecfa18c4f93ea4d419d986ce857ccf53c9226053b511d0c9_arm64", + "product_id": "openshift4/ovirt-csi-driver-rhel7@sha256:ede1b872a9561069ecfa18c4f93ea4d419d986ce857ccf53c9226053b511d0c9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel7@sha256:ede1b872a9561069ecfa18c4f93ea4d419d986ce857ccf53c9226053b511d0c9?arch=arm64&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel7&tag=v4.11.0-202310200743.p0.gcd3370f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:ede1b872a9561069ecfa18c4f93ea4d419d986ce857ccf53c9226053b511d0c9_arm64", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:ede1b872a9561069ecfa18c4f93ea4d419d986ce857ccf53c9226053b511d0c9_arm64", + "product_id": "openshift4/ovirt-csi-driver-rhel8@sha256:ede1b872a9561069ecfa18c4f93ea4d419d986ce857ccf53c9226053b511d0c9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8@sha256:ede1b872a9561069ecfa18c4f93ea4d419d986ce857ccf53c9226053b511d0c9?arch=arm64&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8&tag=v4.11.0-202310200743.p0.gcd3370f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:333bd5b75f8fd14ed1e82508d2ba3245f7f65505084023db3bbd5aa1e837f228_arm64", + "product": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:333bd5b75f8fd14ed1e82508d2ba3245f7f65505084023db3bbd5aa1e837f228_arm64", + "product_id": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:333bd5b75f8fd14ed1e82508d2ba3245f7f65505084023db3bbd5aa1e837f228_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovirt-machine-controllers-rhel8@sha256:333bd5b75f8fd14ed1e82508d2ba3245f7f65505084023db3bbd5aa1e837f228?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8&tag=v4.11.0-202310200743.p0.g5a93d94.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes@sha256:a7407403e02bdb7f583f8da452f3e560d96c3ab0f51827f82916e38e9ddea8c3_arm64", + "product": { + "name": "openshift4/ose-ovn-kubernetes@sha256:a7407403e02bdb7f583f8da452f3e560d96c3ab0f51827f82916e38e9ddea8c3_arm64", + "product_id": "openshift4/ose-ovn-kubernetes@sha256:a7407403e02bdb7f583f8da452f3e560d96c3ab0f51827f82916e38e9ddea8c3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes@sha256:a7407403e02bdb7f583f8da452f3e560d96c3ab0f51827f82916e38e9ddea8c3?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes&tag=v4.11.0-202310251925.p0.g2e60df2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:4dbf5c9e2eeddf9495cabd70dc7935dd4d371ad96836ca6cc4a260c433ff85bb_arm64", + "product": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:4dbf5c9e2eeddf9495cabd70dc7935dd4d371ad96836ca6cc4a260c433ff85bb_arm64", + "product_id": "openshift4/ose-k8s-prometheus-adapter@sha256:4dbf5c9e2eeddf9495cabd70dc7935dd4d371ad96836ca6cc4a260c433ff85bb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-k8s-prometheus-adapter@sha256:4dbf5c9e2eeddf9495cabd70dc7935dd4d371ad96836ca6cc4a260c433ff85bb?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter&tag=v4.11.0-202310200743.p0.g32fb8ea.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-service-ca-operator@sha256:54dbaf4f9dcd737bb4cc8a6174942f4bd2f2c860d31c7f4b3fd9db1efed5f535_arm64", + "product": { + "name": "openshift4/ose-service-ca-operator@sha256:54dbaf4f9dcd737bb4cc8a6174942f4bd2f2c860d31c7f4b3fd9db1efed5f535_arm64", + "product_id": "openshift4/ose-service-ca-operator@sha256:54dbaf4f9dcd737bb4cc8a6174942f4bd2f2c860d31c7f4b3fd9db1efed5f535_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-service-ca-operator@sha256:54dbaf4f9dcd737bb4cc8a6174942f4bd2f2c860d31c7f4b3fd9db1efed5f535?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-service-ca-operator&tag=v4.11.0-202310200743.p0.g0899d11.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-thanos-rhel8@sha256:b290faaa6b927c0000825c6aa213403822b023d309bd1437eb40bb0b45d68587_arm64", + "product": { + "name": "openshift4/ose-thanos-rhel8@sha256:b290faaa6b927c0000825c6aa213403822b023d309bd1437eb40bb0b45d68587_arm64", + "product_id": "openshift4/ose-thanos-rhel8@sha256:b290faaa6b927c0000825c6aa213403822b023d309bd1437eb40bb0b45d68587_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-thanos-rhel8@sha256:b290faaa6b927c0000825c6aa213403822b023d309bd1437eb40bb0b45d68587?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-thanos-rhel8&tag=v4.11.0-202310200743.p0.g99b6e03.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tools-rhel8@sha256:71d302aa86876906fe20659b215610d26fa00189b4a4ea5d3d979895429073e8_arm64", + "product": { + "name": "openshift4/ose-tools-rhel8@sha256:71d302aa86876906fe20659b215610d26fa00189b4a4ea5d3d979895429073e8_arm64", + "product_id": "openshift4/ose-tools-rhel8@sha256:71d302aa86876906fe20659b215610d26fa00189b4a4ea5d3d979895429073e8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-tools-rhel8@sha256:71d302aa86876906fe20659b215610d26fa00189b4a4ea5d3d979895429073e8?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-tools-rhel8&tag=v4.11.0-202310260725.p0.gbbc7c58.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-config-reloader@sha256:cab5c6e7de1e4cb18072411eaa830627c6129c31ef8e99639e0c0c3ca6cf3d49_arm64", + "product": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:cab5c6e7de1e4cb18072411eaa830627c6129c31ef8e99639e0c0c3ca6cf3d49_arm64", + "product_id": "openshift4/ose-prometheus-config-reloader@sha256:cab5c6e7de1e4cb18072411eaa830627c6129c31ef8e99639e0c0c3ca6cf3d49_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-config-reloader@sha256:cab5c6e7de1e4cb18072411eaa830627c6129c31ef8e99639e0c0c3ca6cf3d49?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader&tag=v4.11.0-202310200743.p0.g5752c42.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:8e54e195ef09a8b2be93a440b661867d462e42023a28ceae2a7ea7482b7099f5_arm64", + "product": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:8e54e195ef09a8b2be93a440b661867d462e42023a28ceae2a7ea7482b7099f5_arm64", + "product_id": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:8e54e195ef09a8b2be93a440b661867d462e42023a28ceae2a7ea7482b7099f5_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel8@sha256:8e54e195ef09a8b2be93a440b661867d462e42023a28ceae2a7ea7482b7099f5?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8&tag=v4.11.0-202310200743.p0.g5752c42.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator@sha256:64fd381410b8a024bea05dae6666b22e48e8e86a74854ea6a6e0cb4dd98970ac_arm64", + "product": { + "name": "openshift4/ose-prometheus-operator@sha256:64fd381410b8a024bea05dae6666b22e48e8e86a74854ea6a6e0cb4dd98970ac_arm64", + "product_id": "openshift4/ose-prometheus-operator@sha256:64fd381410b8a024bea05dae6666b22e48e8e86a74854ea6a6e0cb4dd98970ac_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator@sha256:64fd381410b8a024bea05dae6666b22e48e8e86a74854ea6a6e0cb4dd98970ac?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator&tag=v4.11.0-202310200743.p0.g5752c42.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prom-label-proxy@sha256:303da9b802eff64ddb960d8ad5a24d4a4c18caf9d079916af81aaafd82b7bf5d_arm64", + "product": { + "name": "openshift4/ose-prom-label-proxy@sha256:303da9b802eff64ddb960d8ad5a24d4a4c18caf9d079916af81aaafd82b7bf5d_arm64", + "product_id": "openshift4/ose-prom-label-proxy@sha256:303da9b802eff64ddb960d8ad5a24d4a4c18caf9d079916af81aaafd82b7bf5d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prom-label-proxy@sha256:303da9b802eff64ddb960d8ad5a24d4a4c18caf9d079916af81aaafd82b7bf5d?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy&tag=v4.11.0-202310200743.p0.gaf12fbc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-telemeter@sha256:3988814296fcf02c64238d5c89c5a662839681b8e0f47176ba2d1fbfea4af10a_arm64", + "product": { + "name": "openshift4/ose-telemeter@sha256:3988814296fcf02c64238d5c89c5a662839681b8e0f47176ba2d1fbfea4af10a_arm64", + "product_id": "openshift4/ose-telemeter@sha256:3988814296fcf02c64238d5c89c5a662839681b8e0f47176ba2d1fbfea4af10a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-telemeter@sha256:3988814296fcf02c64238d5c89c5a662839681b8e0f47176ba2d1fbfea4af10a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-telemeter&tag=v4.11.0-202310200743.p0.gb1f5dd2.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-gitops-1/argocd-rhel8@sha256:0d080aed6b1ce572f52c35e144fdc7b4668d8c65ae8b98ad2237d993f60b054d_s390x", + "product": { + "name": "openshift-gitops-1/argocd-rhel8@sha256:0d080aed6b1ce572f52c35e144fdc7b4668d8c65ae8b98ad2237d993f60b054d_s390x", + "product_id": "openshift-gitops-1/argocd-rhel8@sha256:0d080aed6b1ce572f52c35e144fdc7b4668d8c65ae8b98ad2237d993f60b054d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/argocd-rhel8@sha256:0d080aed6b1ce572f52c35e144fdc7b4668d8c65ae8b98ad2237d993f60b054d?arch=s390x&repository_url=registry.redhat.io/openshift-gitops-1/argocd-rhel8&tag=v1.8.6-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/console-plugin-rhel8@sha256:371a942b555139688ccaff031e17a64a7951a122fb539aea766a6685fb6f09b2_s390x", + "product": { + "name": "openshift-gitops-1/console-plugin-rhel8@sha256:371a942b555139688ccaff031e17a64a7951a122fb539aea766a6685fb6f09b2_s390x", + "product_id": "openshift-gitops-1/console-plugin-rhel8@sha256:371a942b555139688ccaff031e17a64a7951a122fb539aea766a6685fb6f09b2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/console-plugin-rhel8@sha256:371a942b555139688ccaff031e17a64a7951a122fb539aea766a6685fb6f09b2?arch=s390x&repository_url=registry.redhat.io/openshift-gitops-1/console-plugin-rhel8&tag=v1.8.6-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/gitops-rhel8@sha256:971b2e412184c040ae2909691c9e8169de372b4e73aa6ac906feff631fa96abc_s390x", + "product": { + "name": "openshift-gitops-1/gitops-rhel8@sha256:971b2e412184c040ae2909691c9e8169de372b4e73aa6ac906feff631fa96abc_s390x", + "product_id": "openshift-gitops-1/gitops-rhel8@sha256:971b2e412184c040ae2909691c9e8169de372b4e73aa6ac906feff631fa96abc_s390x", + "product_identification_helper": { + "purl": "pkg:oci/gitops-rhel8@sha256:971b2e412184c040ae2909691c9e8169de372b4e73aa6ac906feff631fa96abc?arch=s390x&repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8&tag=v1.8.6-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/dex-rhel8@sha256:8786a4bad9e5dafaefb4d9d6a82cb2cd1a5e33c5705da016a6dd678ed0bd3020_s390x", + "product": { + "name": "openshift-gitops-1/dex-rhel8@sha256:8786a4bad9e5dafaefb4d9d6a82cb2cd1a5e33c5705da016a6dd678ed0bd3020_s390x", + "product_id": "openshift-gitops-1/dex-rhel8@sha256:8786a4bad9e5dafaefb4d9d6a82cb2cd1a5e33c5705da016a6dd678ed0bd3020_s390x", + "product_identification_helper": { + "purl": "pkg:oci/dex-rhel8@sha256:8786a4bad9e5dafaefb4d9d6a82cb2cd1a5e33c5705da016a6dd678ed0bd3020?arch=s390x&repository_url=registry.redhat.io/openshift-gitops-1/dex-rhel8&tag=v1.8.6-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/kam-delivery-rhel8@sha256:0ea24b2bf85c4bdd083d155b6eb2de5e9e026e5d0de9b536c401137ab64d984a_s390x", + "product": { + "name": "openshift-gitops-1/kam-delivery-rhel8@sha256:0ea24b2bf85c4bdd083d155b6eb2de5e9e026e5d0de9b536c401137ab64d984a_s390x", + "product_id": "openshift-gitops-1/kam-delivery-rhel8@sha256:0ea24b2bf85c4bdd083d155b6eb2de5e9e026e5d0de9b536c401137ab64d984a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/kam-delivery-rhel8@sha256:0ea24b2bf85c4bdd083d155b6eb2de5e9e026e5d0de9b536c401137ab64d984a?arch=s390x&repository_url=registry.redhat.io/openshift-gitops-1/kam-delivery-rhel8&tag=v1.8.6-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/gitops-rhel8-operator@sha256:5b402f28111ffcfdd3056e585e5bd48d23fd3eba7716255936e0f0a2e76a68b0_s390x", + "product": { + "name": "openshift-gitops-1/gitops-rhel8-operator@sha256:5b402f28111ffcfdd3056e585e5bd48d23fd3eba7716255936e0f0a2e76a68b0_s390x", + "product_id": "openshift-gitops-1/gitops-rhel8-operator@sha256:5b402f28111ffcfdd3056e585e5bd48d23fd3eba7716255936e0f0a2e76a68b0_s390x", + "product_identification_helper": { + "purl": "pkg:oci/gitops-rhel8-operator@sha256:5b402f28111ffcfdd3056e585e5bd48d23fd3eba7716255936e0f0a2e76a68b0?arch=s390x&repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator&tag=v1.8.6-1" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-gitops-1/argocd-rhel8@sha256:fdf40063f9f02b0ed3843bc84d3cadf3375cad3c24b299adfbfc7bc054ca81d3_amd64", + "product": { + "name": "openshift-gitops-1/argocd-rhel8@sha256:fdf40063f9f02b0ed3843bc84d3cadf3375cad3c24b299adfbfc7bc054ca81d3_amd64", + "product_id": "openshift-gitops-1/argocd-rhel8@sha256:fdf40063f9f02b0ed3843bc84d3cadf3375cad3c24b299adfbfc7bc054ca81d3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/argocd-rhel8@sha256:fdf40063f9f02b0ed3843bc84d3cadf3375cad3c24b299adfbfc7bc054ca81d3?arch=amd64&repository_url=registry.redhat.io/openshift-gitops-1/argocd-rhel8&tag=v1.8.6-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/console-plugin-rhel8@sha256:5d7864c8650af9841477efe7346613d096a4e23c2d12c624eea18371d2652c43_amd64", + "product": { + "name": "openshift-gitops-1/console-plugin-rhel8@sha256:5d7864c8650af9841477efe7346613d096a4e23c2d12c624eea18371d2652c43_amd64", + "product_id": "openshift-gitops-1/console-plugin-rhel8@sha256:5d7864c8650af9841477efe7346613d096a4e23c2d12c624eea18371d2652c43_amd64", + "product_identification_helper": { + "purl": "pkg:oci/console-plugin-rhel8@sha256:5d7864c8650af9841477efe7346613d096a4e23c2d12c624eea18371d2652c43?arch=amd64&repository_url=registry.redhat.io/openshift-gitops-1/console-plugin-rhel8&tag=v1.8.6-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/gitops-rhel8@sha256:dd595a3c6bc0103e93f9fd29c175950dbc1df005f36188ce23929e1da46999e4_amd64", + "product": { + "name": "openshift-gitops-1/gitops-rhel8@sha256:dd595a3c6bc0103e93f9fd29c175950dbc1df005f36188ce23929e1da46999e4_amd64", + "product_id": "openshift-gitops-1/gitops-rhel8@sha256:dd595a3c6bc0103e93f9fd29c175950dbc1df005f36188ce23929e1da46999e4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/gitops-rhel8@sha256:dd595a3c6bc0103e93f9fd29c175950dbc1df005f36188ce23929e1da46999e4?arch=amd64&repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8&tag=v1.8.6-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/dex-rhel8@sha256:33aa62d739ea3c7441cf5090358a438a3145f2eb068250325a47efcfe7e2262b_amd64", + "product": { + "name": "openshift-gitops-1/dex-rhel8@sha256:33aa62d739ea3c7441cf5090358a438a3145f2eb068250325a47efcfe7e2262b_amd64", + "product_id": "openshift-gitops-1/dex-rhel8@sha256:33aa62d739ea3c7441cf5090358a438a3145f2eb068250325a47efcfe7e2262b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/dex-rhel8@sha256:33aa62d739ea3c7441cf5090358a438a3145f2eb068250325a47efcfe7e2262b?arch=amd64&repository_url=registry.redhat.io/openshift-gitops-1/dex-rhel8&tag=v1.8.6-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/kam-delivery-rhel8@sha256:49d3609e5f780d767722a60c3c18d62ab89aeccaf92b07e4c660dbe41058c616_amd64", + "product": { + "name": "openshift-gitops-1/kam-delivery-rhel8@sha256:49d3609e5f780d767722a60c3c18d62ab89aeccaf92b07e4c660dbe41058c616_amd64", + "product_id": "openshift-gitops-1/kam-delivery-rhel8@sha256:49d3609e5f780d767722a60c3c18d62ab89aeccaf92b07e4c660dbe41058c616_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kam-delivery-rhel8@sha256:49d3609e5f780d767722a60c3c18d62ab89aeccaf92b07e4c660dbe41058c616?arch=amd64&repository_url=registry.redhat.io/openshift-gitops-1/kam-delivery-rhel8&tag=v1.8.6-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/gitops-operator-bundle@sha256:b2d58f4dc20eb7e17e09af0e8c5de55fa04f9f4f697e10c6be81a7a6a08381b2_amd64", + "product": { + "name": "openshift-gitops-1/gitops-operator-bundle@sha256:b2d58f4dc20eb7e17e09af0e8c5de55fa04f9f4f697e10c6be81a7a6a08381b2_amd64", + "product_id": "openshift-gitops-1/gitops-operator-bundle@sha256:b2d58f4dc20eb7e17e09af0e8c5de55fa04f9f4f697e10c6be81a7a6a08381b2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/gitops-operator-bundle@sha256:b2d58f4dc20eb7e17e09af0e8c5de55fa04f9f4f697e10c6be81a7a6a08381b2?arch=amd64&repository_url=registry.redhat.io/openshift-gitops-1/gitops-operator-bundle&tag=v1.8.6-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/gitops-rhel8-operator@sha256:92d88294b1dc0a204a712900ee11bc0823215e2ee4da91552eb2c16467d473ba_amd64", + "product": { + "name": "openshift-gitops-1/gitops-rhel8-operator@sha256:92d88294b1dc0a204a712900ee11bc0823215e2ee4da91552eb2c16467d473ba_amd64", + "product_id": "openshift-gitops-1/gitops-rhel8-operator@sha256:92d88294b1dc0a204a712900ee11bc0823215e2ee4da91552eb2c16467d473ba_amd64", + "product_identification_helper": { + "purl": "pkg:oci/gitops-rhel8-operator@sha256:92d88294b1dc0a204a712900ee11bc0823215e2ee4da91552eb2c16467d473ba?arch=amd64&repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator&tag=v1.8.6-1" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-gitops-1/argocd-rhel8@sha256:fb09d1723d1a72831cbfc9e611ef5b50c2e0edb2ef90abac07eda8550f419cba_arm64", + "product": { + "name": "openshift-gitops-1/argocd-rhel8@sha256:fb09d1723d1a72831cbfc9e611ef5b50c2e0edb2ef90abac07eda8550f419cba_arm64", + "product_id": "openshift-gitops-1/argocd-rhel8@sha256:fb09d1723d1a72831cbfc9e611ef5b50c2e0edb2ef90abac07eda8550f419cba_arm64", + "product_identification_helper": { + "purl": "pkg:oci/argocd-rhel8@sha256:fb09d1723d1a72831cbfc9e611ef5b50c2e0edb2ef90abac07eda8550f419cba?arch=arm64&repository_url=registry.redhat.io/openshift-gitops-1/argocd-rhel8&tag=v1.8.6-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/console-plugin-rhel8@sha256:8be5858787824f521d56c1e6ac4dae8b8ad0da80bb8f9132bb15551f29d386d0_arm64", + "product": { + "name": "openshift-gitops-1/console-plugin-rhel8@sha256:8be5858787824f521d56c1e6ac4dae8b8ad0da80bb8f9132bb15551f29d386d0_arm64", + "product_id": "openshift-gitops-1/console-plugin-rhel8@sha256:8be5858787824f521d56c1e6ac4dae8b8ad0da80bb8f9132bb15551f29d386d0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/console-plugin-rhel8@sha256:8be5858787824f521d56c1e6ac4dae8b8ad0da80bb8f9132bb15551f29d386d0?arch=arm64&repository_url=registry.redhat.io/openshift-gitops-1/console-plugin-rhel8&tag=v1.8.6-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/gitops-rhel8@sha256:0b883f8ba0c6a799f0f0100c1cd40ab61e3421e0b48407d0e99a9b20a076515c_arm64", + "product": { + "name": "openshift-gitops-1/gitops-rhel8@sha256:0b883f8ba0c6a799f0f0100c1cd40ab61e3421e0b48407d0e99a9b20a076515c_arm64", + "product_id": "openshift-gitops-1/gitops-rhel8@sha256:0b883f8ba0c6a799f0f0100c1cd40ab61e3421e0b48407d0e99a9b20a076515c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/gitops-rhel8@sha256:0b883f8ba0c6a799f0f0100c1cd40ab61e3421e0b48407d0e99a9b20a076515c?arch=arm64&repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8&tag=v1.8.6-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/dex-rhel8@sha256:a2eab607bbafe95976fb45760d529eb43bd964981dac1cf75c2691a3d6f3d05a_arm64", + "product": { + "name": "openshift-gitops-1/dex-rhel8@sha256:a2eab607bbafe95976fb45760d529eb43bd964981dac1cf75c2691a3d6f3d05a_arm64", + "product_id": "openshift-gitops-1/dex-rhel8@sha256:a2eab607bbafe95976fb45760d529eb43bd964981dac1cf75c2691a3d6f3d05a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/dex-rhel8@sha256:a2eab607bbafe95976fb45760d529eb43bd964981dac1cf75c2691a3d6f3d05a?arch=arm64&repository_url=registry.redhat.io/openshift-gitops-1/dex-rhel8&tag=v1.8.6-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/kam-delivery-rhel8@sha256:781c83077c2ee1cfca7f6da18ff002b6a65a1e07c7e415704953cc6fbffbaea9_arm64", + "product": { + "name": "openshift-gitops-1/kam-delivery-rhel8@sha256:781c83077c2ee1cfca7f6da18ff002b6a65a1e07c7e415704953cc6fbffbaea9_arm64", + "product_id": "openshift-gitops-1/kam-delivery-rhel8@sha256:781c83077c2ee1cfca7f6da18ff002b6a65a1e07c7e415704953cc6fbffbaea9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kam-delivery-rhel8@sha256:781c83077c2ee1cfca7f6da18ff002b6a65a1e07c7e415704953cc6fbffbaea9?arch=arm64&repository_url=registry.redhat.io/openshift-gitops-1/kam-delivery-rhel8&tag=v1.8.6-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/gitops-rhel8-operator@sha256:527cb23f973543f90679bbb655c2a1324d3415cec0d3f2f81e5dd1e557168834_arm64", + "product": { + "name": "openshift-gitops-1/gitops-rhel8-operator@sha256:527cb23f973543f90679bbb655c2a1324d3415cec0d3f2f81e5dd1e557168834_arm64", + "product_id": "openshift-gitops-1/gitops-rhel8-operator@sha256:527cb23f973543f90679bbb655c2a1324d3415cec0d3f2f81e5dd1e557168834_arm64", + "product_identification_helper": { + "purl": "pkg:oci/gitops-rhel8-operator@sha256:527cb23f973543f90679bbb655c2a1324d3415cec0d3f2f81e5dd1e557168834?arch=arm64&repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator&tag=v1.8.6-1" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-gitops-1/argocd-rhel8@sha256:8fdda631342e2dce25d5febf607c38f6c399ddd25d9ad8c1b174a2dc575cf58c_ppc64le", + "product": { + "name": "openshift-gitops-1/argocd-rhel8@sha256:8fdda631342e2dce25d5febf607c38f6c399ddd25d9ad8c1b174a2dc575cf58c_ppc64le", + "product_id": "openshift-gitops-1/argocd-rhel8@sha256:8fdda631342e2dce25d5febf607c38f6c399ddd25d9ad8c1b174a2dc575cf58c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/argocd-rhel8@sha256:8fdda631342e2dce25d5febf607c38f6c399ddd25d9ad8c1b174a2dc575cf58c?arch=ppc64le&repository_url=registry.redhat.io/openshift-gitops-1/argocd-rhel8&tag=v1.8.6-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/console-plugin-rhel8@sha256:5dd600edbbe26c66a71346811343d087db759c236568b50588c8e2667dce07ef_ppc64le", + "product": { + "name": "openshift-gitops-1/console-plugin-rhel8@sha256:5dd600edbbe26c66a71346811343d087db759c236568b50588c8e2667dce07ef_ppc64le", + "product_id": "openshift-gitops-1/console-plugin-rhel8@sha256:5dd600edbbe26c66a71346811343d087db759c236568b50588c8e2667dce07ef_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/console-plugin-rhel8@sha256:5dd600edbbe26c66a71346811343d087db759c236568b50588c8e2667dce07ef?arch=ppc64le&repository_url=registry.redhat.io/openshift-gitops-1/console-plugin-rhel8&tag=v1.8.6-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/gitops-rhel8@sha256:5669866b9c26f4b56b3cee7b544e58c7371538570df2da6638c4556800beb2d7_ppc64le", + "product": { + "name": "openshift-gitops-1/gitops-rhel8@sha256:5669866b9c26f4b56b3cee7b544e58c7371538570df2da6638c4556800beb2d7_ppc64le", + "product_id": "openshift-gitops-1/gitops-rhel8@sha256:5669866b9c26f4b56b3cee7b544e58c7371538570df2da6638c4556800beb2d7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/gitops-rhel8@sha256:5669866b9c26f4b56b3cee7b544e58c7371538570df2da6638c4556800beb2d7?arch=ppc64le&repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8&tag=v1.8.6-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/dex-rhel8@sha256:01a11a866efae4dc4c1a8701a926f1dbaed0d59b67016af42ce3b1583f76f61e_ppc64le", + "product": { + "name": "openshift-gitops-1/dex-rhel8@sha256:01a11a866efae4dc4c1a8701a926f1dbaed0d59b67016af42ce3b1583f76f61e_ppc64le", + "product_id": "openshift-gitops-1/dex-rhel8@sha256:01a11a866efae4dc4c1a8701a926f1dbaed0d59b67016af42ce3b1583f76f61e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/dex-rhel8@sha256:01a11a866efae4dc4c1a8701a926f1dbaed0d59b67016af42ce3b1583f76f61e?arch=ppc64le&repository_url=registry.redhat.io/openshift-gitops-1/dex-rhel8&tag=v1.8.6-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/kam-delivery-rhel8@sha256:88a8aee36d303243ddb183c136d0f4d44da090b567db858fb74d5a73d35d78cd_ppc64le", + "product": { + "name": "openshift-gitops-1/kam-delivery-rhel8@sha256:88a8aee36d303243ddb183c136d0f4d44da090b567db858fb74d5a73d35d78cd_ppc64le", + "product_id": "openshift-gitops-1/kam-delivery-rhel8@sha256:88a8aee36d303243ddb183c136d0f4d44da090b567db858fb74d5a73d35d78cd_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kam-delivery-rhel8@sha256:88a8aee36d303243ddb183c136d0f4d44da090b567db858fb74d5a73d35d78cd?arch=ppc64le&repository_url=registry.redhat.io/openshift-gitops-1/kam-delivery-rhel8&tag=v1.8.6-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-1/gitops-rhel8-operator@sha256:7b80ab7f48d445d42c1dde4e6a925f31db872514f63513abd1fc9ae6b1f19ef2_ppc64le", + "product": { + "name": "openshift-gitops-1/gitops-rhel8-operator@sha256:7b80ab7f48d445d42c1dde4e6a925f31db872514f63513abd1fc9ae6b1f19ef2_ppc64le", + "product_id": "openshift-gitops-1/gitops-rhel8-operator@sha256:7b80ab7f48d445d42c1dde4e6a925f31db872514f63513abd1fc9ae6b1f19ef2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/gitops-rhel8-operator@sha256:7b80ab7f48d445d42c1dde4e6a925f31db872514f63513abd1fc9ae6b1f19ef2?arch=ppc64le&repository_url=registry.redhat.io/openshift-gitops-1/gitops-rhel8-operator&tag=v1.8.6-1" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "network-observability/network-observability-console-plugin-rhel9@sha256:f6be4953742e271e6507aa91a8ed976d7dfd68c3b9634382b18d47bb5d968ddf_s390x", + "product": { + "name": "network-observability/network-observability-console-plugin-rhel9@sha256:f6be4953742e271e6507aa91a8ed976d7dfd68c3b9634382b18d47bb5d968ddf_s390x", + "product_id": "network-observability/network-observability-console-plugin-rhel9@sha256:f6be4953742e271e6507aa91a8ed976d7dfd68c3b9634382b18d47bb5d968ddf_s390x", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-console-plugin-rhel9@sha256:f6be4953742e271e6507aa91a8ed976d7dfd68c3b9634382b18d47bb5d968ddf?arch=s390x&repository_url=registry.redhat.io/network-observability/network-observability-console-plugin-rhel9&tag=v1.4.0-57" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-ebpf-agent-rhel9@sha256:63c6d967f4c2ec9a5047be4c5e02676d80243dbc3cc6bad508e6b3162a631be9_s390x", + "product": { + "name": "network-observability/network-observability-ebpf-agent-rhel9@sha256:63c6d967f4c2ec9a5047be4c5e02676d80243dbc3cc6bad508e6b3162a631be9_s390x", + "product_id": "network-observability/network-observability-ebpf-agent-rhel9@sha256:63c6d967f4c2ec9a5047be4c5e02676d80243dbc3cc6bad508e6b3162a631be9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-ebpf-agent-rhel9@sha256:63c6d967f4c2ec9a5047be4c5e02676d80243dbc3cc6bad508e6b3162a631be9?arch=s390x&repository_url=registry.redhat.io/network-observability/network-observability-ebpf-agent-rhel9&tag=v1.4.0-57" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:26c5d2dc469ae8688abb5b87041f00d342a8542e810b1828af29781faef300a4_s390x", + "product": { + "name": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:26c5d2dc469ae8688abb5b87041f00d342a8542e810b1828af29781faef300a4_s390x", + "product_id": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:26c5d2dc469ae8688abb5b87041f00d342a8542e810b1828af29781faef300a4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-flowlogs-pipeline-rhel9@sha256:26c5d2dc469ae8688abb5b87041f00d342a8542e810b1828af29781faef300a4?arch=s390x&repository_url=registry.redhat.io/network-observability/network-observability-flowlogs-pipeline-rhel9&tag=v1.4.0-57" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-operator-bundle@sha256:1223ca28b4bbe5c4f46fdcfd0c58794034408f5c86c87e5b6eab6c140d48017d_s390x", + "product": { + "name": "network-observability/network-observability-operator-bundle@sha256:1223ca28b4bbe5c4f46fdcfd0c58794034408f5c86c87e5b6eab6c140d48017d_s390x", + "product_id": "network-observability/network-observability-operator-bundle@sha256:1223ca28b4bbe5c4f46fdcfd0c58794034408f5c86c87e5b6eab6c140d48017d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-operator-bundle@sha256:1223ca28b4bbe5c4f46fdcfd0c58794034408f5c86c87e5b6eab6c140d48017d?arch=s390x&repository_url=registry.redhat.io/network-observability/network-observability-operator-bundle&tag=1.4.0-81" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-rhel9-operator@sha256:63f7b3fe3fde774f8b8b76b8eb17b3c62220bf3270320349942ab042518e1515_s390x", + "product": { + "name": "network-observability/network-observability-rhel9-operator@sha256:63f7b3fe3fde774f8b8b76b8eb17b3c62220bf3270320349942ab042518e1515_s390x", + "product_id": "network-observability/network-observability-rhel9-operator@sha256:63f7b3fe3fde774f8b8b76b8eb17b3c62220bf3270320349942ab042518e1515_s390x", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-rhel9-operator@sha256:63f7b3fe3fde774f8b8b76b8eb17b3c62220bf3270320349942ab042518e1515?arch=s390x&repository_url=registry.redhat.io/network-observability/network-observability-rhel9-operator&tag=v1.4.0-57" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "network-observability/network-observability-console-plugin-rhel9@sha256:ee3f049527626d646f81d0a16d1911f0efe71c9286ae657429c9f0f6c6c505e3_ppc64le", + "product": { + "name": "network-observability/network-observability-console-plugin-rhel9@sha256:ee3f049527626d646f81d0a16d1911f0efe71c9286ae657429c9f0f6c6c505e3_ppc64le", + "product_id": "network-observability/network-observability-console-plugin-rhel9@sha256:ee3f049527626d646f81d0a16d1911f0efe71c9286ae657429c9f0f6c6c505e3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-console-plugin-rhel9@sha256:ee3f049527626d646f81d0a16d1911f0efe71c9286ae657429c9f0f6c6c505e3?arch=ppc64le&repository_url=registry.redhat.io/network-observability/network-observability-console-plugin-rhel9&tag=v1.4.0-57" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-ebpf-agent-rhel9@sha256:8ac8ae32fae59ae22688a6772eb77245b24b6dbe55fc309bd31395b006cbdfad_ppc64le", + "product": { + "name": "network-observability/network-observability-ebpf-agent-rhel9@sha256:8ac8ae32fae59ae22688a6772eb77245b24b6dbe55fc309bd31395b006cbdfad_ppc64le", + "product_id": "network-observability/network-observability-ebpf-agent-rhel9@sha256:8ac8ae32fae59ae22688a6772eb77245b24b6dbe55fc309bd31395b006cbdfad_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-ebpf-agent-rhel9@sha256:8ac8ae32fae59ae22688a6772eb77245b24b6dbe55fc309bd31395b006cbdfad?arch=ppc64le&repository_url=registry.redhat.io/network-observability/network-observability-ebpf-agent-rhel9&tag=v1.4.0-57" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:6620a766d61fc0395a2557fc0920f54a151d605dc932ca26fe78cfe0193c9c1c_ppc64le", + "product": { + "name": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:6620a766d61fc0395a2557fc0920f54a151d605dc932ca26fe78cfe0193c9c1c_ppc64le", + "product_id": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:6620a766d61fc0395a2557fc0920f54a151d605dc932ca26fe78cfe0193c9c1c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-flowlogs-pipeline-rhel9@sha256:6620a766d61fc0395a2557fc0920f54a151d605dc932ca26fe78cfe0193c9c1c?arch=ppc64le&repository_url=registry.redhat.io/network-observability/network-observability-flowlogs-pipeline-rhel9&tag=v1.4.0-57" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-operator-bundle@sha256:8e2171ae86ab9e78bf7827dd33cbdaaf5a4ff566da50bb7f659f613258712090_ppc64le", + "product": { + "name": "network-observability/network-observability-operator-bundle@sha256:8e2171ae86ab9e78bf7827dd33cbdaaf5a4ff566da50bb7f659f613258712090_ppc64le", + "product_id": "network-observability/network-observability-operator-bundle@sha256:8e2171ae86ab9e78bf7827dd33cbdaaf5a4ff566da50bb7f659f613258712090_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-operator-bundle@sha256:8e2171ae86ab9e78bf7827dd33cbdaaf5a4ff566da50bb7f659f613258712090?arch=ppc64le&repository_url=registry.redhat.io/network-observability/network-observability-operator-bundle&tag=1.4.0-81" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-rhel9-operator@sha256:8e560f63a3bab2a6256dc6f1c5b8c88afc7f4a7210fef2986e02d2b1018a66b7_ppc64le", + "product": { + "name": "network-observability/network-observability-rhel9-operator@sha256:8e560f63a3bab2a6256dc6f1c5b8c88afc7f4a7210fef2986e02d2b1018a66b7_ppc64le", + "product_id": "network-observability/network-observability-rhel9-operator@sha256:8e560f63a3bab2a6256dc6f1c5b8c88afc7f4a7210fef2986e02d2b1018a66b7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-rhel9-operator@sha256:8e560f63a3bab2a6256dc6f1c5b8c88afc7f4a7210fef2986e02d2b1018a66b7?arch=ppc64le&repository_url=registry.redhat.io/network-observability/network-observability-rhel9-operator&tag=v1.4.0-57" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "network-observability/network-observability-console-plugin-rhel9@sha256:95368eb313a5a252a63f567ebf8a51ca07793a8e9147bae99ed69f80ea305e6f_arm64", + "product": { + "name": "network-observability/network-observability-console-plugin-rhel9@sha256:95368eb313a5a252a63f567ebf8a51ca07793a8e9147bae99ed69f80ea305e6f_arm64", + "product_id": "network-observability/network-observability-console-plugin-rhel9@sha256:95368eb313a5a252a63f567ebf8a51ca07793a8e9147bae99ed69f80ea305e6f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-console-plugin-rhel9@sha256:95368eb313a5a252a63f567ebf8a51ca07793a8e9147bae99ed69f80ea305e6f?arch=arm64&repository_url=registry.redhat.io/network-observability/network-observability-console-plugin-rhel9&tag=v1.4.0-57" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-ebpf-agent-rhel9@sha256:d5a86121d054b9ea8a7b7ccead3a42d4b9e5c17929e188b8bd780517ceb7d96e_arm64", + "product": { + "name": "network-observability/network-observability-ebpf-agent-rhel9@sha256:d5a86121d054b9ea8a7b7ccead3a42d4b9e5c17929e188b8bd780517ceb7d96e_arm64", + "product_id": "network-observability/network-observability-ebpf-agent-rhel9@sha256:d5a86121d054b9ea8a7b7ccead3a42d4b9e5c17929e188b8bd780517ceb7d96e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-ebpf-agent-rhel9@sha256:d5a86121d054b9ea8a7b7ccead3a42d4b9e5c17929e188b8bd780517ceb7d96e?arch=arm64&repository_url=registry.redhat.io/network-observability/network-observability-ebpf-agent-rhel9&tag=v1.4.0-57" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:83858e6e99d9669b5a8766aac010ca50df6df056496367f501d8268de5d4df82_arm64", + "product": { + "name": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:83858e6e99d9669b5a8766aac010ca50df6df056496367f501d8268de5d4df82_arm64", + "product_id": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:83858e6e99d9669b5a8766aac010ca50df6df056496367f501d8268de5d4df82_arm64", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-flowlogs-pipeline-rhel9@sha256:83858e6e99d9669b5a8766aac010ca50df6df056496367f501d8268de5d4df82?arch=arm64&repository_url=registry.redhat.io/network-observability/network-observability-flowlogs-pipeline-rhel9&tag=v1.4.0-57" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-operator-bundle@sha256:cfc16fa970403528771979f8e509660918c32d1532ae419824cc81348cee4132_arm64", + "product": { + "name": "network-observability/network-observability-operator-bundle@sha256:cfc16fa970403528771979f8e509660918c32d1532ae419824cc81348cee4132_arm64", + "product_id": "network-observability/network-observability-operator-bundle@sha256:cfc16fa970403528771979f8e509660918c32d1532ae419824cc81348cee4132_arm64", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-operator-bundle@sha256:cfc16fa970403528771979f8e509660918c32d1532ae419824cc81348cee4132?arch=arm64&repository_url=registry.redhat.io/network-observability/network-observability-operator-bundle&tag=1.4.0-81" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-rhel9-operator@sha256:4c49b198ec1c97aeec39dd445b30e96af12f43a74166da53a63c11617c69a0b9_arm64", + "product": { + "name": "network-observability/network-observability-rhel9-operator@sha256:4c49b198ec1c97aeec39dd445b30e96af12f43a74166da53a63c11617c69a0b9_arm64", + "product_id": "network-observability/network-observability-rhel9-operator@sha256:4c49b198ec1c97aeec39dd445b30e96af12f43a74166da53a63c11617c69a0b9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-rhel9-operator@sha256:4c49b198ec1c97aeec39dd445b30e96af12f43a74166da53a63c11617c69a0b9?arch=arm64&repository_url=registry.redhat.io/network-observability/network-observability-rhel9-operator&tag=v1.4.0-57" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "network-observability/network-observability-console-plugin-rhel9@sha256:a60a5f1b256d627d156d5b6554b0031380e62866a90963c7933ce87b21f83491_amd64", + "product": { + "name": "network-observability/network-observability-console-plugin-rhel9@sha256:a60a5f1b256d627d156d5b6554b0031380e62866a90963c7933ce87b21f83491_amd64", + "product_id": "network-observability/network-observability-console-plugin-rhel9@sha256:a60a5f1b256d627d156d5b6554b0031380e62866a90963c7933ce87b21f83491_amd64", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-console-plugin-rhel9@sha256:a60a5f1b256d627d156d5b6554b0031380e62866a90963c7933ce87b21f83491?arch=amd64&repository_url=registry.redhat.io/network-observability/network-observability-console-plugin-rhel9&tag=v1.4.0-57" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-ebpf-agent-rhel9@sha256:6da9818638f28ca862681a668e38651ebeee18661738ae8346cbd0ecb13d4288_amd64", + "product": { + "name": "network-observability/network-observability-ebpf-agent-rhel9@sha256:6da9818638f28ca862681a668e38651ebeee18661738ae8346cbd0ecb13d4288_amd64", + "product_id": "network-observability/network-observability-ebpf-agent-rhel9@sha256:6da9818638f28ca862681a668e38651ebeee18661738ae8346cbd0ecb13d4288_amd64", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-ebpf-agent-rhel9@sha256:6da9818638f28ca862681a668e38651ebeee18661738ae8346cbd0ecb13d4288?arch=amd64&repository_url=registry.redhat.io/network-observability/network-observability-ebpf-agent-rhel9&tag=v1.4.0-57" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:51049a42b3f3f75a2dc670f3fa026a1d68280664a0ef47c3ad2fdfdb97c25611_amd64", + "product": { + "name": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:51049a42b3f3f75a2dc670f3fa026a1d68280664a0ef47c3ad2fdfdb97c25611_amd64", + "product_id": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:51049a42b3f3f75a2dc670f3fa026a1d68280664a0ef47c3ad2fdfdb97c25611_amd64", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-flowlogs-pipeline-rhel9@sha256:51049a42b3f3f75a2dc670f3fa026a1d68280664a0ef47c3ad2fdfdb97c25611?arch=amd64&repository_url=registry.redhat.io/network-observability/network-observability-flowlogs-pipeline-rhel9&tag=v1.4.0-57" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-operator-bundle@sha256:dc8f77f41b077986639b3f594f9e5eb3bf56dad90bed1927921f973c4171ba68_amd64", + "product": { + "name": "network-observability/network-observability-operator-bundle@sha256:dc8f77f41b077986639b3f594f9e5eb3bf56dad90bed1927921f973c4171ba68_amd64", + "product_id": "network-observability/network-observability-operator-bundle@sha256:dc8f77f41b077986639b3f594f9e5eb3bf56dad90bed1927921f973c4171ba68_amd64", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-operator-bundle@sha256:dc8f77f41b077986639b3f594f9e5eb3bf56dad90bed1927921f973c4171ba68?arch=amd64&repository_url=registry.redhat.io/network-observability/network-observability-operator-bundle&tag=1.4.0-81" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-rhel9-operator@sha256:2b99cf0df552ca77d35e8fd8e2e6c81938369c59241697f6220c40df27b9cd54_amd64", + "product": { + "name": "network-observability/network-observability-rhel9-operator@sha256:2b99cf0df552ca77d35e8fd8e2e6c81938369c59241697f6220c40df27b9cd54_amd64", + "product_id": "network-observability/network-observability-rhel9-operator@sha256:2b99cf0df552ca77d35e8fd8e2e6c81938369c59241697f6220c40df27b9cd54_amd64", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-rhel9-operator@sha256:2b99cf0df552ca77d35e8fd8e2e6c81938369c59241697f6220c40df27b9cd54?arch=amd64&repository_url=registry.redhat.io/network-observability/network-observability-rhel9-operator&tag=v1.4.0-57" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "workload-availability/node-healthcheck-must-gather-rhel8@sha256:29aa40527f9d289cb41939db052a658a4fdd949006854a3bab5aa41fd783d28d_amd64", + "product": { + "name": "workload-availability/node-healthcheck-must-gather-rhel8@sha256:29aa40527f9d289cb41939db052a658a4fdd949006854a3bab5aa41fd783d28d_amd64", + "product_id": "workload-availability/node-healthcheck-must-gather-rhel8@sha256:29aa40527f9d289cb41939db052a658a4fdd949006854a3bab5aa41fd783d28d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/node-healthcheck-must-gather-rhel8@sha256:29aa40527f9d289cb41939db052a658a4fdd949006854a3bab5aa41fd783d28d?arch=amd64&repository_url=registry.redhat.io/workload-availability/node-healthcheck-must-gather-rhel8&tag=v0.6.1-9" + } + } + }, + { + "category": "product_version", + "name": "workload-availability/node-healthcheck-operator-bundle@sha256:309ba89dece3ee9901ed66c40bd28d71f20c7d91a7feff552e28ea0c772b9178_amd64", + "product": { + "name": "workload-availability/node-healthcheck-operator-bundle@sha256:309ba89dece3ee9901ed66c40bd28d71f20c7d91a7feff552e28ea0c772b9178_amd64", + "product_id": "workload-availability/node-healthcheck-operator-bundle@sha256:309ba89dece3ee9901ed66c40bd28d71f20c7d91a7feff552e28ea0c772b9178_amd64", + "product_identification_helper": { + "purl": "pkg:oci/node-healthcheck-operator-bundle@sha256:309ba89dece3ee9901ed66c40bd28d71f20c7d91a7feff552e28ea0c772b9178?arch=amd64&repository_url=registry.redhat.io/workload-availability/node-healthcheck-operator-bundle&tag=v0.6.1-9" + } + } + }, + { + "category": "product_version", + "name": "workload-availability/node-healthcheck-rhel8-operator@sha256:b0035ef85a042b920d1aa53e86d390b06066d3cf6bb85956a28fa4480c324658_amd64", + "product": { + "name": "workload-availability/node-healthcheck-rhel8-operator@sha256:b0035ef85a042b920d1aa53e86d390b06066d3cf6bb85956a28fa4480c324658_amd64", + "product_id": "workload-availability/node-healthcheck-rhel8-operator@sha256:b0035ef85a042b920d1aa53e86d390b06066d3cf6bb85956a28fa4480c324658_amd64", + "product_identification_helper": { + "purl": "pkg:oci/node-healthcheck-rhel8-operator@sha256:b0035ef85a042b920d1aa53e86d390b06066d3cf6bb85956a28fa4480c324658?arch=amd64&repository_url=registry.redhat.io/workload-availability/node-healthcheck-rhel8-operator&tag=v0.6.1-9" + } + } + }, + { + "category": "product_version", + "name": "workload-availability/node-remediation-console-rhel8@sha256:154ce9bd17e6809c283526ff0fb2e7f37da86e1703d13e18c741928850e67716_amd64", + "product": { + "name": "workload-availability/node-remediation-console-rhel8@sha256:154ce9bd17e6809c283526ff0fb2e7f37da86e1703d13e18c741928850e67716_amd64", + "product_id": "workload-availability/node-remediation-console-rhel8@sha256:154ce9bd17e6809c283526ff0fb2e7f37da86e1703d13e18c741928850e67716_amd64", + "product_identification_helper": { + "purl": "pkg:oci/node-remediation-console-rhel8@sha256:154ce9bd17e6809c283526ff0fb2e7f37da86e1703d13e18c741928850e67716?arch=amd64&repository_url=registry.redhat.io/workload-availability/node-remediation-console-rhel8&tag=v0.6.1-9" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "workload-availability/fence-agents-remediation-operator-bundle@sha256:94bade4574c3679a425628f68067f9aead57bdd78e60f635041f421ed30341de_amd64", + "product": { + "name": "workload-availability/fence-agents-remediation-operator-bundle@sha256:94bade4574c3679a425628f68067f9aead57bdd78e60f635041f421ed30341de_amd64", + "product_id": "workload-availability/fence-agents-remediation-operator-bundle@sha256:94bade4574c3679a425628f68067f9aead57bdd78e60f635041f421ed30341de_amd64", + "product_identification_helper": { + "purl": "pkg:oci/fence-agents-remediation-operator-bundle@sha256:94bade4574c3679a425628f68067f9aead57bdd78e60f635041f421ed30341de?arch=amd64&repository_url=registry.redhat.io/workload-availability/fence-agents-remediation-operator-bundle&tag=v0.2.1-7" + } + } + }, + { + "category": "product_version", + "name": "workload-availability/fence-agents-remediation-rhel8-operator@sha256:bf4c69f22f3f89985fcc79f6bf78da786a619d1b96d6529038337c947260099c_amd64", + "product": { + "name": "workload-availability/fence-agents-remediation-rhel8-operator@sha256:bf4c69f22f3f89985fcc79f6bf78da786a619d1b96d6529038337c947260099c_amd64", + "product_id": "workload-availability/fence-agents-remediation-rhel8-operator@sha256:bf4c69f22f3f89985fcc79f6bf78da786a619d1b96d6529038337c947260099c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/fence-agents-remediation-rhel8-operator@sha256:bf4c69f22f3f89985fcc79f6bf78da786a619d1b96d6529038337c947260099c?arch=amd64&repository_url=registry.redhat.io/workload-availability/fence-agents-remediation-rhel8-operator&tag=v0.2.1-7" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "workload-availability/machine-deletion-remediation-operator-bundle@sha256:394d122efcf0da16bb68bfef1292395cda1bdb21909ae55f8fcc54a16814f1cf_amd64", + "product": { + "name": "workload-availability/machine-deletion-remediation-operator-bundle@sha256:394d122efcf0da16bb68bfef1292395cda1bdb21909ae55f8fcc54a16814f1cf_amd64", + "product_id": "workload-availability/machine-deletion-remediation-operator-bundle@sha256:394d122efcf0da16bb68bfef1292395cda1bdb21909ae55f8fcc54a16814f1cf_amd64", + "product_identification_helper": { + "purl": "pkg:oci/machine-deletion-remediation-operator-bundle@sha256:394d122efcf0da16bb68bfef1292395cda1bdb21909ae55f8fcc54a16814f1cf?arch=amd64&repository_url=registry.redhat.io/workload-availability/machine-deletion-remediation-operator-bundle&tag=v0.2.1-6" + } + } + }, + { + "category": "product_version", + "name": "workload-availability/machine-deletion-remediation-rhel8-operator@sha256:f2bfffe3db68a417fe64739adcc72b8e4333b18849c03ba78d751b8f371c705a_amd64", + "product": { + "name": "workload-availability/machine-deletion-remediation-rhel8-operator@sha256:f2bfffe3db68a417fe64739adcc72b8e4333b18849c03ba78d751b8f371c705a_amd64", + "product_id": "workload-availability/machine-deletion-remediation-rhel8-operator@sha256:f2bfffe3db68a417fe64739adcc72b8e4333b18849c03ba78d751b8f371c705a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/machine-deletion-remediation-rhel8-operator@sha256:f2bfffe3db68a417fe64739adcc72b8e4333b18849c03ba78d751b8f371c705a?arch=amd64&repository_url=registry.redhat.io/workload-availability/machine-deletion-remediation-rhel8-operator&tag=v0.2.1-6" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:5f964a60593f4e8f96c01ae703bd6748fe0c0f788f75dda4e357ee32db8016df_amd64", + "product": { + "name": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:5f964a60593f4e8f96c01ae703bd6748fe0c0f788f75dda4e357ee32db8016df_amd64", + "product_id": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:5f964a60593f4e8f96c01ae703bd6748fe0c0f788f75dda4e357ee32db8016df_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-chains-controller-rhel8@sha256:5f964a60593f4e8f96c01ae703bd6748fe0c0f788f75dda4e357ee32db8016df?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel8&tag=v1.11.2-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:5da30a15ec05c5651ccdc8256c5f0e2983197b1aacafc51a8d5fff5a59dc78fc_amd64", + "product": { + "name": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:5da30a15ec05c5651ccdc8256c5f0e2983197b1aacafc51a8d5fff5a59dc78fc_amd64", + "product_id": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:5da30a15ec05c5651ccdc8256c5f0e2983197b1aacafc51a8d5fff5a59dc78fc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-cli-tkn-rhel8@sha256:5da30a15ec05c5651ccdc8256c5f0e2983197b1aacafc51a8d5fff5a59dc78fc?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel8&tag=v1.11.2-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-controller-rhel8@sha256:d452c0a9759564024094bb1949d20c48c239158bb70d9875d9e66ae03e83ebe6_amd64", + "product": { + "name": "openshift-pipelines/pipelines-controller-rhel8@sha256:d452c0a9759564024094bb1949d20c48c239158bb70d9875d9e66ae03e83ebe6_amd64", + "product_id": "openshift-pipelines/pipelines-controller-rhel8@sha256:d452c0a9759564024094bb1949d20c48c239158bb70d9875d9e66ae03e83ebe6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-controller-rhel8@sha256:d452c0a9759564024094bb1949d20c48c239158bb70d9875d9e66ae03e83ebe6?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-controller-rhel8&tag=v1.11.2-21" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:657d69d0bdd7006462a81cfb1b9cb16cc8eee1f2ee47203ca29fb54524dbc1cb_amd64", + "product": { + "name": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:657d69d0bdd7006462a81cfb1b9cb16cc8eee1f2ee47203ca29fb54524dbc1cb_amd64", + "product_id": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:657d69d0bdd7006462a81cfb1b9cb16cc8eee1f2ee47203ca29fb54524dbc1cb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-entrypoint-rhel8@sha256:657d69d0bdd7006462a81cfb1b9cb16cc8eee1f2ee47203ca29fb54524dbc1cb?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel8&tag=v1.11.2-24" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:bec90770d8f779bcd8ad00eeac03eb30d3a37ba9d89b885dbf11aae1179faa90_amd64", + "product": { + "name": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:bec90770d8f779bcd8ad00eeac03eb30d3a37ba9d89b885dbf11aae1179faa90_amd64", + "product_id": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:bec90770d8f779bcd8ad00eeac03eb30d3a37ba9d89b885dbf11aae1179faa90_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-hub-api-rhel8@sha256:bec90770d8f779bcd8ad00eeac03eb30d3a37ba9d89b885dbf11aae1179faa90?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel8&tag=v1.11.2-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:631a5cc9a651a114e09c26e5c2780679afc1b5d64e93a091237ab05d9c8e33eb_amd64", + "product": { + "name": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:631a5cc9a651a114e09c26e5c2780679afc1b5d64e93a091237ab05d9c8e33eb_amd64", + "product_id": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:631a5cc9a651a114e09c26e5c2780679afc1b5d64e93a091237ab05d9c8e33eb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-hub-db-migration-rhel8@sha256:631a5cc9a651a114e09c26e5c2780679afc1b5d64e93a091237ab05d9c8e33eb?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel8&tag=v1.11.2-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:9e5123396252d9c8173b47d8b7043e19b09cc9b124c2ba2472d63b2f2996a24e_amd64", + "product": { + "name": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:9e5123396252d9c8173b47d8b7043e19b09cc9b124c2ba2472d63b2f2996a24e_amd64", + "product_id": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:9e5123396252d9c8173b47d8b7043e19b09cc9b124c2ba2472d63b2f2996a24e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-hub-ui-rhel8@sha256:9e5123396252d9c8173b47d8b7043e19b09cc9b124c2ba2472d63b2f2996a24e?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel8&tag=v1.11.2-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-nop-rhel8@sha256:6eb22a455b3d84235e61f3ce4c1113fd6b7b1cd1262c6375c38c0fc93f29d7bd_amd64", + "product": { + "name": "openshift-pipelines/pipelines-nop-rhel8@sha256:6eb22a455b3d84235e61f3ce4c1113fd6b7b1cd1262c6375c38c0fc93f29d7bd_amd64", + "product_id": "openshift-pipelines/pipelines-nop-rhel8@sha256:6eb22a455b3d84235e61f3ce4c1113fd6b7b1cd1262c6375c38c0fc93f29d7bd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-nop-rhel8@sha256:6eb22a455b3d84235e61f3ce4c1113fd6b7b1cd1262c6375c38c0fc93f29d7bd?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-nop-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-operator-bundle@sha256:25ef8ce0478993a0ad0fe40f804ceec020f1898719b53cb0491b24de1bf8de95_amd64", + "product": { + "name": "openshift-pipelines/pipelines-operator-bundle@sha256:25ef8ce0478993a0ad0fe40f804ceec020f1898719b53cb0491b24de1bf8de95_amd64", + "product_id": "openshift-pipelines/pipelines-operator-bundle@sha256:25ef8ce0478993a0ad0fe40f804ceec020f1898719b53cb0491b24de1bf8de95_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-operator-bundle@sha256:25ef8ce0478993a0ad0fe40f804ceec020f1898719b53cb0491b24de1bf8de95?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-bundle&tag=v1.11.2-17" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:90a30dafd400ead9a5eb4c7fbd5974a10706c0886c2ce1aeedb008a792ba6ad9_amd64", + "product": { + "name": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:90a30dafd400ead9a5eb4c7fbd5974a10706c0886c2ce1aeedb008a792ba6ad9_amd64", + "product_id": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:90a30dafd400ead9a5eb4c7fbd5974a10706c0886c2ce1aeedb008a792ba6ad9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-operator-proxy-rhel8@sha256:90a30dafd400ead9a5eb4c7fbd5974a10706c0886c2ce1aeedb008a792ba6ad9?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:d45688a65b20c82d509ecdb28df19e86929a6b026ab59cc8e79a34e844e75f36_amd64", + "product": { + "name": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:d45688a65b20c82d509ecdb28df19e86929a6b026ab59cc8e79a34e844e75f36_amd64", + "product_id": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:d45688a65b20c82d509ecdb28df19e86929a6b026ab59cc8e79a34e844e75f36_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-operator-webhook-rhel8@sha256:d45688a65b20c82d509ecdb28df19e86929a6b026ab59cc8e79a34e844e75f36?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:428efe5713950c4f6a7df6af68edf7b5e347b47afd62e717252fc340a70dadb1_amd64", + "product": { + "name": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:428efe5713950c4f6a7df6af68edf7b5e347b47afd62e717252fc340a70dadb1_amd64", + "product_id": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:428efe5713950c4f6a7df6af68edf7b5e347b47afd62e717252fc340a70dadb1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-pipelines-as-code-rhel8@sha256:428efe5713950c4f6a7df6af68edf7b5e347b47afd62e717252fc340a70dadb1?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-rhel8&tag=v1.11.2-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:6491e02bb55405681f62ab3bd399788743b13193e9c019b984e43e1e9167af8d_amd64", + "product": { + "name": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:6491e02bb55405681f62ab3bd399788743b13193e9c019b984e43e1e9167af8d_amd64", + "product_id": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:6491e02bb55405681f62ab3bd399788743b13193e9c019b984e43e1e9167af8d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-resolvers-rhel8@sha256:6491e02bb55405681f62ab3bd399788743b13193e9c019b984e43e1e9167af8d?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel8&tag=v1.11.2-24" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-results-api-rhel8@sha256:c427ac8a786d85d1d0bfac1a20c0578266d7e7e78ba4f618fb76aae4fbd515ab_amd64", + "product": { + "name": "openshift-pipelines/pipelines-results-api-rhel8@sha256:c427ac8a786d85d1d0bfac1a20c0578266d7e7e78ba4f618fb76aae4fbd515ab_amd64", + "product_id": "openshift-pipelines/pipelines-results-api-rhel8@sha256:c427ac8a786d85d1d0bfac1a20c0578266d7e7e78ba4f618fb76aae4fbd515ab_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-results-api-rhel8@sha256:c427ac8a786d85d1d0bfac1a20c0578266d7e7e78ba4f618fb76aae4fbd515ab?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:9ffe4b68bca39aeff9ac9a4edf221bcbb8622f3e469f9b8499be6a53c032d4b2_amd64", + "product": { + "name": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:9ffe4b68bca39aeff9ac9a4edf221bcbb8622f3e469f9b8499be6a53c032d4b2_amd64", + "product_id": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:9ffe4b68bca39aeff9ac9a4edf221bcbb8622f3e469f9b8499be6a53c032d4b2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-results-watcher-rhel8@sha256:9ffe4b68bca39aeff9ac9a4edf221bcbb8622f3e469f9b8499be6a53c032d4b2?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-rhel8-operator@sha256:a17b0a96657fed29945d4414eb8287c15b67b7af20f1bb861f9d38895c3d7ec4_amd64", + "product": { + "name": "openshift-pipelines/pipelines-rhel8-operator@sha256:a17b0a96657fed29945d4414eb8287c15b67b7af20f1bb861f9d38895c3d7ec4_amd64", + "product_id": "openshift-pipelines/pipelines-rhel8-operator@sha256:a17b0a96657fed29945d4414eb8287c15b67b7af20f1bb861f9d38895c3d7ec4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-rhel8-operator@sha256:a17b0a96657fed29945d4414eb8287c15b67b7af20f1bb861f9d38895c3d7ec4?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-rhel8-operator&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:8ecbe288abe42ddb0804c0ba487f6c9b7a897c198b91428483bac3b4f292b8c0_amd64", + "product": { + "name": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:8ecbe288abe42ddb0804c0ba487f6c9b7a897c198b91428483bac3b4f292b8c0_amd64", + "product_id": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:8ecbe288abe42ddb0804c0ba487f6c9b7a897c198b91428483bac3b4f292b8c0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-serve-tkn-cli-rhel8@sha256:8ecbe288abe42ddb0804c0ba487f6c9b7a897c198b91428483bac3b4f292b8c0?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel8&tag=v1.11.2-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:c124d6a9d0eb1893e06c0254e153baa7785b7a42189bfcf55e2275aa041c6bd3_amd64", + "product": { + "name": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:c124d6a9d0eb1893e06c0254e153baa7785b7a42189bfcf55e2275aa041c6bd3_amd64", + "product_id": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:c124d6a9d0eb1893e06c0254e153baa7785b7a42189bfcf55e2275aa041c6bd3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-controller-rhel8@sha256:c124d6a9d0eb1893e06c0254e153baa7785b7a42189bfcf55e2275aa041c6bd3?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:a1ad075ab0cb3709c4078150cf73b6499aef69d2bfd058caca3d80f31a11ac15_amd64", + "product": { + "name": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:a1ad075ab0cb3709c4078150cf73b6499aef69d2bfd058caca3d80f31a11ac15_amd64", + "product_id": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:a1ad075ab0cb3709c4078150cf73b6499aef69d2bfd058caca3d80f31a11ac15_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-core-interceptors-rhel8@sha256:a1ad075ab0cb3709c4078150cf73b6499aef69d2bfd058caca3d80f31a11ac15?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel8&tag=v1.11.2-24" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:d1ae1ef0f2d59eb58088762fc3c4eadb745182aad55dab4baf303b65cf276235_amd64", + "product": { + "name": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:d1ae1ef0f2d59eb58088762fc3c4eadb745182aad55dab4baf303b65cf276235_amd64", + "product_id": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:d1ae1ef0f2d59eb58088762fc3c4eadb745182aad55dab4baf303b65cf276235_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-eventlistenersink-rhel8@sha256:d1ae1ef0f2d59eb58088762fc3c4eadb745182aad55dab4baf303b65cf276235?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:a3381d5a211b98f383555d0aa7cf8a71f58639ddd06bf6ddb8809da230d60f22_amd64", + "product": { + "name": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:a3381d5a211b98f383555d0aa7cf8a71f58639ddd06bf6ddb8809da230d60f22_amd64", + "product_id": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:a3381d5a211b98f383555d0aa7cf8a71f58639ddd06bf6ddb8809da230d60f22_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-webhook-rhel8@sha256:a3381d5a211b98f383555d0aa7cf8a71f58639ddd06bf6ddb8809da230d60f22?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-webhook-rhel8@sha256:6b329beee4828e7148c497790d146ec559ff057f50bc1d31aa15c892e2dd1281_amd64", + "product": { + "name": "openshift-pipelines/pipelines-webhook-rhel8@sha256:6b329beee4828e7148c497790d146ec559ff057f50bc1d31aa15c892e2dd1281_amd64", + "product_id": "openshift-pipelines/pipelines-webhook-rhel8@sha256:6b329beee4828e7148c497790d146ec559ff057f50bc1d31aa15c892e2dd1281_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-webhook-rhel8@sha256:6b329beee4828e7148c497790d146ec559ff057f50bc1d31aa15c892e2dd1281?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel8&tag=v1.11.2-24" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:6de98fe9c976638bfc45555620689234b056a0af1d6894ff560762e6bd6d0bff_amd64", + "product": { + "name": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:6de98fe9c976638bfc45555620689234b056a0af1d6894ff560762e6bd6d0bff_amd64", + "product_id": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:6de98fe9c976638bfc45555620689234b056a0af1d6894ff560762e6bd6d0bff_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-workingdirinit-rhel8@sha256:6de98fe9c976638bfc45555620689234b056a0af1d6894ff560762e6bd6d0bff?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel8&tag=v1.11.2-24" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:f58a1bd922aac35c35368ca4b3bd33908070c408aaf895c69dae6ca369e3733b_s390x", + "product": { + "name": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:f58a1bd922aac35c35368ca4b3bd33908070c408aaf895c69dae6ca369e3733b_s390x", + "product_id": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:f58a1bd922aac35c35368ca4b3bd33908070c408aaf895c69dae6ca369e3733b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-chains-controller-rhel8@sha256:f58a1bd922aac35c35368ca4b3bd33908070c408aaf895c69dae6ca369e3733b?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel8&tag=v1.11.2-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:0303f01d8b2f3be3c09a6bbde001d40146ea459ca3401980af5ed0d0745528c1_s390x", + "product": { + "name": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:0303f01d8b2f3be3c09a6bbde001d40146ea459ca3401980af5ed0d0745528c1_s390x", + "product_id": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:0303f01d8b2f3be3c09a6bbde001d40146ea459ca3401980af5ed0d0745528c1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-cli-tkn-rhel8@sha256:0303f01d8b2f3be3c09a6bbde001d40146ea459ca3401980af5ed0d0745528c1?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel8&tag=v1.11.2-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-controller-rhel8@sha256:909342dadd2be08b629e05ae79e20cc74705d51eb93330ae441ca160ab07bb81_s390x", + "product": { + "name": "openshift-pipelines/pipelines-controller-rhel8@sha256:909342dadd2be08b629e05ae79e20cc74705d51eb93330ae441ca160ab07bb81_s390x", + "product_id": "openshift-pipelines/pipelines-controller-rhel8@sha256:909342dadd2be08b629e05ae79e20cc74705d51eb93330ae441ca160ab07bb81_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-controller-rhel8@sha256:909342dadd2be08b629e05ae79e20cc74705d51eb93330ae441ca160ab07bb81?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-controller-rhel8&tag=v1.11.2-21" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:84609ad6fe8c76ea9f238e253ecbb9eb8d02da08a7826917ce6a55c681f8e1dd_s390x", + "product": { + "name": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:84609ad6fe8c76ea9f238e253ecbb9eb8d02da08a7826917ce6a55c681f8e1dd_s390x", + "product_id": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:84609ad6fe8c76ea9f238e253ecbb9eb8d02da08a7826917ce6a55c681f8e1dd_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-entrypoint-rhel8@sha256:84609ad6fe8c76ea9f238e253ecbb9eb8d02da08a7826917ce6a55c681f8e1dd?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel8&tag=v1.11.2-24" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:ab0c47cf9bbf4fa18dbf314959e37a37bc03b555ddbfeaf395b0cf1bbac1d38e_s390x", + "product": { + "name": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:ab0c47cf9bbf4fa18dbf314959e37a37bc03b555ddbfeaf395b0cf1bbac1d38e_s390x", + "product_id": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:ab0c47cf9bbf4fa18dbf314959e37a37bc03b555ddbfeaf395b0cf1bbac1d38e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-hub-api-rhel8@sha256:ab0c47cf9bbf4fa18dbf314959e37a37bc03b555ddbfeaf395b0cf1bbac1d38e?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel8&tag=v1.11.2-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:0170d82ad87d1711060c8deecfe108e8191a2a2215f384698b7337768e062515_s390x", + "product": { + "name": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:0170d82ad87d1711060c8deecfe108e8191a2a2215f384698b7337768e062515_s390x", + "product_id": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:0170d82ad87d1711060c8deecfe108e8191a2a2215f384698b7337768e062515_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-hub-db-migration-rhel8@sha256:0170d82ad87d1711060c8deecfe108e8191a2a2215f384698b7337768e062515?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel8&tag=v1.11.2-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:16a287c22d6590e2c3fc6c92702483f8475696be34e4210165beeb9ac69ad4fa_s390x", + "product": { + "name": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:16a287c22d6590e2c3fc6c92702483f8475696be34e4210165beeb9ac69ad4fa_s390x", + "product_id": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:16a287c22d6590e2c3fc6c92702483f8475696be34e4210165beeb9ac69ad4fa_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-hub-ui-rhel8@sha256:16a287c22d6590e2c3fc6c92702483f8475696be34e4210165beeb9ac69ad4fa?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel8&tag=v1.11.2-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-nop-rhel8@sha256:ecbcf68557474176d2c575ab1d9d49f6c2f58e75fcc3e0ccd26fdcb872209a0b_s390x", + "product": { + "name": "openshift-pipelines/pipelines-nop-rhel8@sha256:ecbcf68557474176d2c575ab1d9d49f6c2f58e75fcc3e0ccd26fdcb872209a0b_s390x", + "product_id": "openshift-pipelines/pipelines-nop-rhel8@sha256:ecbcf68557474176d2c575ab1d9d49f6c2f58e75fcc3e0ccd26fdcb872209a0b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-nop-rhel8@sha256:ecbcf68557474176d2c575ab1d9d49f6c2f58e75fcc3e0ccd26fdcb872209a0b?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-nop-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-operator-bundle@sha256:5bcb14fe61c6052752b8db5d55b43de9f80cc771c660519421c08e4776094b6f_s390x", + "product": { + "name": "openshift-pipelines/pipelines-operator-bundle@sha256:5bcb14fe61c6052752b8db5d55b43de9f80cc771c660519421c08e4776094b6f_s390x", + "product_id": "openshift-pipelines/pipelines-operator-bundle@sha256:5bcb14fe61c6052752b8db5d55b43de9f80cc771c660519421c08e4776094b6f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-operator-bundle@sha256:5bcb14fe61c6052752b8db5d55b43de9f80cc771c660519421c08e4776094b6f?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-bundle&tag=v1.11.2-17" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:3ce3c07ca2b27db64e991df944ca9bd010ad999682e7d1cff01357dffa046a90_s390x", + "product": { + "name": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:3ce3c07ca2b27db64e991df944ca9bd010ad999682e7d1cff01357dffa046a90_s390x", + "product_id": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:3ce3c07ca2b27db64e991df944ca9bd010ad999682e7d1cff01357dffa046a90_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-operator-proxy-rhel8@sha256:3ce3c07ca2b27db64e991df944ca9bd010ad999682e7d1cff01357dffa046a90?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:7a726600ef9002edb6b8d134b2ab66ced8a31b6d33392c12e187470b4272e847_s390x", + "product": { + "name": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:7a726600ef9002edb6b8d134b2ab66ced8a31b6d33392c12e187470b4272e847_s390x", + "product_id": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:7a726600ef9002edb6b8d134b2ab66ced8a31b6d33392c12e187470b4272e847_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-operator-webhook-rhel8@sha256:7a726600ef9002edb6b8d134b2ab66ced8a31b6d33392c12e187470b4272e847?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:9920fc58712bd9bf06add59dafb87b4449ff676c3f58a677aafec22278cbcb68_s390x", + "product": { + "name": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:9920fc58712bd9bf06add59dafb87b4449ff676c3f58a677aafec22278cbcb68_s390x", + "product_id": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:9920fc58712bd9bf06add59dafb87b4449ff676c3f58a677aafec22278cbcb68_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-pipelines-as-code-rhel8@sha256:9920fc58712bd9bf06add59dafb87b4449ff676c3f58a677aafec22278cbcb68?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-rhel8&tag=v1.11.2-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:53f03dbfb145c38f484ee10c00238e411e734d9fb8cda189c76cd5664f318f15_s390x", + "product": { + "name": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:53f03dbfb145c38f484ee10c00238e411e734d9fb8cda189c76cd5664f318f15_s390x", + "product_id": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:53f03dbfb145c38f484ee10c00238e411e734d9fb8cda189c76cd5664f318f15_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-resolvers-rhel8@sha256:53f03dbfb145c38f484ee10c00238e411e734d9fb8cda189c76cd5664f318f15?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel8&tag=v1.11.2-24" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-results-api-rhel8@sha256:1f2dd09e23781d316507fc5fa626072c9e4b97ef6428c9238e1ff1ef9a1dc415_s390x", + "product": { + "name": "openshift-pipelines/pipelines-results-api-rhel8@sha256:1f2dd09e23781d316507fc5fa626072c9e4b97ef6428c9238e1ff1ef9a1dc415_s390x", + "product_id": "openshift-pipelines/pipelines-results-api-rhel8@sha256:1f2dd09e23781d316507fc5fa626072c9e4b97ef6428c9238e1ff1ef9a1dc415_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-results-api-rhel8@sha256:1f2dd09e23781d316507fc5fa626072c9e4b97ef6428c9238e1ff1ef9a1dc415?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:60e9ac3950ebd06f2d21936556f844bd72fe82312217a9664effde1cbb90fe01_s390x", + "product": { + "name": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:60e9ac3950ebd06f2d21936556f844bd72fe82312217a9664effde1cbb90fe01_s390x", + "product_id": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:60e9ac3950ebd06f2d21936556f844bd72fe82312217a9664effde1cbb90fe01_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-results-watcher-rhel8@sha256:60e9ac3950ebd06f2d21936556f844bd72fe82312217a9664effde1cbb90fe01?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-rhel8-operator@sha256:3173d641ec00d379acd33dbae09d88cf30aaf393db0ffc67ea341f92ec137426_s390x", + "product": { + "name": "openshift-pipelines/pipelines-rhel8-operator@sha256:3173d641ec00d379acd33dbae09d88cf30aaf393db0ffc67ea341f92ec137426_s390x", + "product_id": "openshift-pipelines/pipelines-rhel8-operator@sha256:3173d641ec00d379acd33dbae09d88cf30aaf393db0ffc67ea341f92ec137426_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-rhel8-operator@sha256:3173d641ec00d379acd33dbae09d88cf30aaf393db0ffc67ea341f92ec137426?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-rhel8-operator&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:2e0e8c29cff6215ff78fe8a6e38dd4b5575b076cfd0708d3ca633fa94e9d14b1_s390x", + "product": { + "name": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:2e0e8c29cff6215ff78fe8a6e38dd4b5575b076cfd0708d3ca633fa94e9d14b1_s390x", + "product_id": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:2e0e8c29cff6215ff78fe8a6e38dd4b5575b076cfd0708d3ca633fa94e9d14b1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-serve-tkn-cli-rhel8@sha256:2e0e8c29cff6215ff78fe8a6e38dd4b5575b076cfd0708d3ca633fa94e9d14b1?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel8&tag=v1.11.2-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:88b684a2b8d52fe8f36874eb75225be71f026b3e13b4deba59559a898a9caf24_s390x", + "product": { + "name": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:88b684a2b8d52fe8f36874eb75225be71f026b3e13b4deba59559a898a9caf24_s390x", + "product_id": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:88b684a2b8d52fe8f36874eb75225be71f026b3e13b4deba59559a898a9caf24_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-controller-rhel8@sha256:88b684a2b8d52fe8f36874eb75225be71f026b3e13b4deba59559a898a9caf24?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:4f81b02cb771c6f16ad216826271dfb876a57c8f8488c38884573a660c8897bf_s390x", + "product": { + "name": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:4f81b02cb771c6f16ad216826271dfb876a57c8f8488c38884573a660c8897bf_s390x", + "product_id": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:4f81b02cb771c6f16ad216826271dfb876a57c8f8488c38884573a660c8897bf_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-core-interceptors-rhel8@sha256:4f81b02cb771c6f16ad216826271dfb876a57c8f8488c38884573a660c8897bf?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel8&tag=v1.11.2-24" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:3ccc799b3c9aa6b03af0106f7be42479f068532038c62f02f5f05d510794b91c_s390x", + "product": { + "name": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:3ccc799b3c9aa6b03af0106f7be42479f068532038c62f02f5f05d510794b91c_s390x", + "product_id": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:3ccc799b3c9aa6b03af0106f7be42479f068532038c62f02f5f05d510794b91c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-eventlistenersink-rhel8@sha256:3ccc799b3c9aa6b03af0106f7be42479f068532038c62f02f5f05d510794b91c?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:d12242b47bf7007fe3dfbb46e2bc53c383ec6117052588f130e92b25d869a19b_s390x", + "product": { + "name": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:d12242b47bf7007fe3dfbb46e2bc53c383ec6117052588f130e92b25d869a19b_s390x", + "product_id": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:d12242b47bf7007fe3dfbb46e2bc53c383ec6117052588f130e92b25d869a19b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-webhook-rhel8@sha256:d12242b47bf7007fe3dfbb46e2bc53c383ec6117052588f130e92b25d869a19b?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-webhook-rhel8@sha256:71339ac4fdd95eef529b245d2dc86f8cb5601ef321340003c4b6121247418884_s390x", + "product": { + "name": "openshift-pipelines/pipelines-webhook-rhel8@sha256:71339ac4fdd95eef529b245d2dc86f8cb5601ef321340003c4b6121247418884_s390x", + "product_id": "openshift-pipelines/pipelines-webhook-rhel8@sha256:71339ac4fdd95eef529b245d2dc86f8cb5601ef321340003c4b6121247418884_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-webhook-rhel8@sha256:71339ac4fdd95eef529b245d2dc86f8cb5601ef321340003c4b6121247418884?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel8&tag=v1.11.2-24" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:3a9e28cec87f9f6086c8c096832eb3f545d2f449f9296db3edf0a2332314f5df_s390x", + "product": { + "name": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:3a9e28cec87f9f6086c8c096832eb3f545d2f449f9296db3edf0a2332314f5df_s390x", + "product_id": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:3a9e28cec87f9f6086c8c096832eb3f545d2f449f9296db3edf0a2332314f5df_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-workingdirinit-rhel8@sha256:3a9e28cec87f9f6086c8c096832eb3f545d2f449f9296db3edf0a2332314f5df?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel8&tag=v1.11.2-24" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:5fda3388d67459119980528fe03d5895310e1153c8114a08a3b05bd9ecdda687_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:5fda3388d67459119980528fe03d5895310e1153c8114a08a3b05bd9ecdda687_ppc64le", + "product_id": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:5fda3388d67459119980528fe03d5895310e1153c8114a08a3b05bd9ecdda687_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-chains-controller-rhel8@sha256:5fda3388d67459119980528fe03d5895310e1153c8114a08a3b05bd9ecdda687?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel8&tag=v1.11.2-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:ccc4687dd3054f00af5ee927ac9410d9445a8e1a54aeb58cc2e79246c8ea83ba_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:ccc4687dd3054f00af5ee927ac9410d9445a8e1a54aeb58cc2e79246c8ea83ba_ppc64le", + "product_id": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:ccc4687dd3054f00af5ee927ac9410d9445a8e1a54aeb58cc2e79246c8ea83ba_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-cli-tkn-rhel8@sha256:ccc4687dd3054f00af5ee927ac9410d9445a8e1a54aeb58cc2e79246c8ea83ba?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel8&tag=v1.11.2-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-controller-rhel8@sha256:e7f92b0f53d1f04b153b42d34e156da11e0794fc076214394595c476fc85431b_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-controller-rhel8@sha256:e7f92b0f53d1f04b153b42d34e156da11e0794fc076214394595c476fc85431b_ppc64le", + "product_id": "openshift-pipelines/pipelines-controller-rhel8@sha256:e7f92b0f53d1f04b153b42d34e156da11e0794fc076214394595c476fc85431b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-controller-rhel8@sha256:e7f92b0f53d1f04b153b42d34e156da11e0794fc076214394595c476fc85431b?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-controller-rhel8&tag=v1.11.2-21" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:a38c3344154fa7b2bfdf2f48e369aa26acdbc4b404be995aa35b685871c8e52e_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:a38c3344154fa7b2bfdf2f48e369aa26acdbc4b404be995aa35b685871c8e52e_ppc64le", + "product_id": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:a38c3344154fa7b2bfdf2f48e369aa26acdbc4b404be995aa35b685871c8e52e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-entrypoint-rhel8@sha256:a38c3344154fa7b2bfdf2f48e369aa26acdbc4b404be995aa35b685871c8e52e?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel8&tag=v1.11.2-24" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:c648fd4931eab69a12c96ebfbd1c603ebf5c38609d490c66495f3c39bdb1bb1d_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:c648fd4931eab69a12c96ebfbd1c603ebf5c38609d490c66495f3c39bdb1bb1d_ppc64le", + "product_id": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:c648fd4931eab69a12c96ebfbd1c603ebf5c38609d490c66495f3c39bdb1bb1d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-hub-api-rhel8@sha256:c648fd4931eab69a12c96ebfbd1c603ebf5c38609d490c66495f3c39bdb1bb1d?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel8&tag=v1.11.2-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:a9c70d7dfa56252cba6789be6eab48f4c8ee9c1d7bf74f27328393bf0f0ab7d2_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:a9c70d7dfa56252cba6789be6eab48f4c8ee9c1d7bf74f27328393bf0f0ab7d2_ppc64le", + "product_id": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:a9c70d7dfa56252cba6789be6eab48f4c8ee9c1d7bf74f27328393bf0f0ab7d2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-hub-db-migration-rhel8@sha256:a9c70d7dfa56252cba6789be6eab48f4c8ee9c1d7bf74f27328393bf0f0ab7d2?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel8&tag=v1.11.2-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:d62f295e4f46fa0660289f0fd65c18124cffcafe119d905f935bb15e4a7ce94d_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:d62f295e4f46fa0660289f0fd65c18124cffcafe119d905f935bb15e4a7ce94d_ppc64le", + "product_id": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:d62f295e4f46fa0660289f0fd65c18124cffcafe119d905f935bb15e4a7ce94d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-hub-ui-rhel8@sha256:d62f295e4f46fa0660289f0fd65c18124cffcafe119d905f935bb15e4a7ce94d?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel8&tag=v1.11.2-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-nop-rhel8@sha256:473dc1a323668dd972787b5c0e145d4dd90e38a7ea254fde87b326b00bd8ba99_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-nop-rhel8@sha256:473dc1a323668dd972787b5c0e145d4dd90e38a7ea254fde87b326b00bd8ba99_ppc64le", + "product_id": "openshift-pipelines/pipelines-nop-rhel8@sha256:473dc1a323668dd972787b5c0e145d4dd90e38a7ea254fde87b326b00bd8ba99_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-nop-rhel8@sha256:473dc1a323668dd972787b5c0e145d4dd90e38a7ea254fde87b326b00bd8ba99?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-nop-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-operator-bundle@sha256:cec1cdd6d41a292a4801df4d999cedab1f2c1358bbd34392e5f5c4d4b4fbc604_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-operator-bundle@sha256:cec1cdd6d41a292a4801df4d999cedab1f2c1358bbd34392e5f5c4d4b4fbc604_ppc64le", + "product_id": "openshift-pipelines/pipelines-operator-bundle@sha256:cec1cdd6d41a292a4801df4d999cedab1f2c1358bbd34392e5f5c4d4b4fbc604_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-operator-bundle@sha256:cec1cdd6d41a292a4801df4d999cedab1f2c1358bbd34392e5f5c4d4b4fbc604?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-bundle&tag=v1.11.2-17" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:2f12ba1c210ae9a6b65d66b53c40960df75a4d60e476bfd08ab64d8d44caf258_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:2f12ba1c210ae9a6b65d66b53c40960df75a4d60e476bfd08ab64d8d44caf258_ppc64le", + "product_id": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:2f12ba1c210ae9a6b65d66b53c40960df75a4d60e476bfd08ab64d8d44caf258_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-operator-proxy-rhel8@sha256:2f12ba1c210ae9a6b65d66b53c40960df75a4d60e476bfd08ab64d8d44caf258?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:0726327c92f3cedd0a7d75ba1eee1afd639b665e24754bb1ceb597dbe0afbdcf_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:0726327c92f3cedd0a7d75ba1eee1afd639b665e24754bb1ceb597dbe0afbdcf_ppc64le", + "product_id": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:0726327c92f3cedd0a7d75ba1eee1afd639b665e24754bb1ceb597dbe0afbdcf_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-operator-webhook-rhel8@sha256:0726327c92f3cedd0a7d75ba1eee1afd639b665e24754bb1ceb597dbe0afbdcf?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:46be2ed44580d4c1138776e558e323d9f275b5db5cf69c8ad4b492b532bb8de8_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:46be2ed44580d4c1138776e558e323d9f275b5db5cf69c8ad4b492b532bb8de8_ppc64le", + "product_id": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:46be2ed44580d4c1138776e558e323d9f275b5db5cf69c8ad4b492b532bb8de8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-pipelines-as-code-rhel8@sha256:46be2ed44580d4c1138776e558e323d9f275b5db5cf69c8ad4b492b532bb8de8?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-rhel8&tag=v1.11.2-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:1c31cdcfcde3f93f259192a7bf70d879fb0c9243db67cf4f90b0e2dba7c362c7_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:1c31cdcfcde3f93f259192a7bf70d879fb0c9243db67cf4f90b0e2dba7c362c7_ppc64le", + "product_id": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:1c31cdcfcde3f93f259192a7bf70d879fb0c9243db67cf4f90b0e2dba7c362c7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-resolvers-rhel8@sha256:1c31cdcfcde3f93f259192a7bf70d879fb0c9243db67cf4f90b0e2dba7c362c7?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel8&tag=v1.11.2-24" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-results-api-rhel8@sha256:96008c78ead27b3c7f9158a448946d1a52ec8a7c1ce41dc95a39104df217b6dd_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-results-api-rhel8@sha256:96008c78ead27b3c7f9158a448946d1a52ec8a7c1ce41dc95a39104df217b6dd_ppc64le", + "product_id": "openshift-pipelines/pipelines-results-api-rhel8@sha256:96008c78ead27b3c7f9158a448946d1a52ec8a7c1ce41dc95a39104df217b6dd_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-results-api-rhel8@sha256:96008c78ead27b3c7f9158a448946d1a52ec8a7c1ce41dc95a39104df217b6dd?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:5c6876c31b669716580333018eb3dcb2e4f3774369f783c64ce79e4833379f62_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:5c6876c31b669716580333018eb3dcb2e4f3774369f783c64ce79e4833379f62_ppc64le", + "product_id": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:5c6876c31b669716580333018eb3dcb2e4f3774369f783c64ce79e4833379f62_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-results-watcher-rhel8@sha256:5c6876c31b669716580333018eb3dcb2e4f3774369f783c64ce79e4833379f62?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-rhel8-operator@sha256:d87233df397bf3cdf548db58729cb70a8382c0be952d3391dc122affb122bd69_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-rhel8-operator@sha256:d87233df397bf3cdf548db58729cb70a8382c0be952d3391dc122affb122bd69_ppc64le", + "product_id": "openshift-pipelines/pipelines-rhel8-operator@sha256:d87233df397bf3cdf548db58729cb70a8382c0be952d3391dc122affb122bd69_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-rhel8-operator@sha256:d87233df397bf3cdf548db58729cb70a8382c0be952d3391dc122affb122bd69?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-rhel8-operator&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:7fae81ba69dee59bae52bd3c52ea413b6d669c4f932707185d2fa6a090b47139_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:7fae81ba69dee59bae52bd3c52ea413b6d669c4f932707185d2fa6a090b47139_ppc64le", + "product_id": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:7fae81ba69dee59bae52bd3c52ea413b6d669c4f932707185d2fa6a090b47139_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-serve-tkn-cli-rhel8@sha256:7fae81ba69dee59bae52bd3c52ea413b6d669c4f932707185d2fa6a090b47139?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel8&tag=v1.11.2-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:9e6f200692d1ec22c6ed704a3f250558328a0846dddbc95bf7a9aece2fbc7863_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:9e6f200692d1ec22c6ed704a3f250558328a0846dddbc95bf7a9aece2fbc7863_ppc64le", + "product_id": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:9e6f200692d1ec22c6ed704a3f250558328a0846dddbc95bf7a9aece2fbc7863_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-controller-rhel8@sha256:9e6f200692d1ec22c6ed704a3f250558328a0846dddbc95bf7a9aece2fbc7863?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:840fff0f30c62b107e016da16edd6540aec393af64c30b665c254131584abfaf_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:840fff0f30c62b107e016da16edd6540aec393af64c30b665c254131584abfaf_ppc64le", + "product_id": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:840fff0f30c62b107e016da16edd6540aec393af64c30b665c254131584abfaf_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-core-interceptors-rhel8@sha256:840fff0f30c62b107e016da16edd6540aec393af64c30b665c254131584abfaf?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel8&tag=v1.11.2-24" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:e40751e972df028ac7f071edfc96fbc709c834541cc39a0895bb0ce0f1472063_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:e40751e972df028ac7f071edfc96fbc709c834541cc39a0895bb0ce0f1472063_ppc64le", + "product_id": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:e40751e972df028ac7f071edfc96fbc709c834541cc39a0895bb0ce0f1472063_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-eventlistenersink-rhel8@sha256:e40751e972df028ac7f071edfc96fbc709c834541cc39a0895bb0ce0f1472063?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:0a7542dc8795ab66b578996aec5306ce30eeb84382839cec61e8a8e756969470_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:0a7542dc8795ab66b578996aec5306ce30eeb84382839cec61e8a8e756969470_ppc64le", + "product_id": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:0a7542dc8795ab66b578996aec5306ce30eeb84382839cec61e8a8e756969470_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-webhook-rhel8@sha256:0a7542dc8795ab66b578996aec5306ce30eeb84382839cec61e8a8e756969470?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-webhook-rhel8@sha256:526aad7d7e14a5036e5dc43e8f6df1d47e16bc54352ae856e8ff2c46bb7e5987_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-webhook-rhel8@sha256:526aad7d7e14a5036e5dc43e8f6df1d47e16bc54352ae856e8ff2c46bb7e5987_ppc64le", + "product_id": "openshift-pipelines/pipelines-webhook-rhel8@sha256:526aad7d7e14a5036e5dc43e8f6df1d47e16bc54352ae856e8ff2c46bb7e5987_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-webhook-rhel8@sha256:526aad7d7e14a5036e5dc43e8f6df1d47e16bc54352ae856e8ff2c46bb7e5987?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel8&tag=v1.11.2-24" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:770ee8338d6d79896772dc0002688d09955fad7bb27fdad1e91bd531b295ed00_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:770ee8338d6d79896772dc0002688d09955fad7bb27fdad1e91bd531b295ed00_ppc64le", + "product_id": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:770ee8338d6d79896772dc0002688d09955fad7bb27fdad1e91bd531b295ed00_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-workingdirinit-rhel8@sha256:770ee8338d6d79896772dc0002688d09955fad7bb27fdad1e91bd531b295ed00?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel8&tag=v1.11.2-24" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:5b6015d505075fff67033cce64ba85931f90bf9dd4b3a5b5f3f8cd618c60b13f_arm64", + "product": { + "name": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:5b6015d505075fff67033cce64ba85931f90bf9dd4b3a5b5f3f8cd618c60b13f_arm64", + "product_id": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:5b6015d505075fff67033cce64ba85931f90bf9dd4b3a5b5f3f8cd618c60b13f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-chains-controller-rhel8@sha256:5b6015d505075fff67033cce64ba85931f90bf9dd4b3a5b5f3f8cd618c60b13f?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel8&tag=v1.11.2-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:80cb3805280e496b99f459189cd28bd70303fa4f78c41e8efba18a15e5b383fd_arm64", + "product": { + "name": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:80cb3805280e496b99f459189cd28bd70303fa4f78c41e8efba18a15e5b383fd_arm64", + "product_id": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:80cb3805280e496b99f459189cd28bd70303fa4f78c41e8efba18a15e5b383fd_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-cli-tkn-rhel8@sha256:80cb3805280e496b99f459189cd28bd70303fa4f78c41e8efba18a15e5b383fd?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel8&tag=v1.11.2-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-controller-rhel8@sha256:18f8d9707850a4624764e955c0f14f7299f3fc9b9ed8852036cc809b8233a400_arm64", + "product": { + "name": "openshift-pipelines/pipelines-controller-rhel8@sha256:18f8d9707850a4624764e955c0f14f7299f3fc9b9ed8852036cc809b8233a400_arm64", + "product_id": "openshift-pipelines/pipelines-controller-rhel8@sha256:18f8d9707850a4624764e955c0f14f7299f3fc9b9ed8852036cc809b8233a400_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-controller-rhel8@sha256:18f8d9707850a4624764e955c0f14f7299f3fc9b9ed8852036cc809b8233a400?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-controller-rhel8&tag=v1.11.2-21" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:0064ab030aa6f1839bbc3dfd157064adf75e470164f902c00075127ca50d856b_arm64", + "product": { + "name": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:0064ab030aa6f1839bbc3dfd157064adf75e470164f902c00075127ca50d856b_arm64", + "product_id": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:0064ab030aa6f1839bbc3dfd157064adf75e470164f902c00075127ca50d856b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-entrypoint-rhel8@sha256:0064ab030aa6f1839bbc3dfd157064adf75e470164f902c00075127ca50d856b?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel8&tag=v1.11.2-24" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:a150b75b8e35cc3f4378122d2e1ad93dc4880488aeb03ca78be7a4f8ab3d439d_arm64", + "product": { + "name": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:a150b75b8e35cc3f4378122d2e1ad93dc4880488aeb03ca78be7a4f8ab3d439d_arm64", + "product_id": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:a150b75b8e35cc3f4378122d2e1ad93dc4880488aeb03ca78be7a4f8ab3d439d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-hub-api-rhel8@sha256:a150b75b8e35cc3f4378122d2e1ad93dc4880488aeb03ca78be7a4f8ab3d439d?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel8&tag=v1.11.2-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:40e78ea2e906d9e2e1b74c4731b428c95a1a61bb764e6aeb20189abea166a8d9_arm64", + "product": { + "name": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:40e78ea2e906d9e2e1b74c4731b428c95a1a61bb764e6aeb20189abea166a8d9_arm64", + "product_id": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:40e78ea2e906d9e2e1b74c4731b428c95a1a61bb764e6aeb20189abea166a8d9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-hub-db-migration-rhel8@sha256:40e78ea2e906d9e2e1b74c4731b428c95a1a61bb764e6aeb20189abea166a8d9?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel8&tag=v1.11.2-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:2dba2b7b58ce3a34a8fd244ade29d9d979d6d9d4373230827522c399cdd34a22_arm64", + "product": { + "name": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:2dba2b7b58ce3a34a8fd244ade29d9d979d6d9d4373230827522c399cdd34a22_arm64", + "product_id": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:2dba2b7b58ce3a34a8fd244ade29d9d979d6d9d4373230827522c399cdd34a22_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-hub-ui-rhel8@sha256:2dba2b7b58ce3a34a8fd244ade29d9d979d6d9d4373230827522c399cdd34a22?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel8&tag=v1.11.2-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-nop-rhel8@sha256:146924f960674b80d7afe465ce84bea7fa5742992d33e19e94254e4a1f02039d_arm64", + "product": { + "name": "openshift-pipelines/pipelines-nop-rhel8@sha256:146924f960674b80d7afe465ce84bea7fa5742992d33e19e94254e4a1f02039d_arm64", + "product_id": "openshift-pipelines/pipelines-nop-rhel8@sha256:146924f960674b80d7afe465ce84bea7fa5742992d33e19e94254e4a1f02039d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-nop-rhel8@sha256:146924f960674b80d7afe465ce84bea7fa5742992d33e19e94254e4a1f02039d?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-nop-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-operator-bundle@sha256:3be2f328c720338815c9147b3c135716e4f01fe3a082ea61698f49dff260c232_arm64", + "product": { + "name": "openshift-pipelines/pipelines-operator-bundle@sha256:3be2f328c720338815c9147b3c135716e4f01fe3a082ea61698f49dff260c232_arm64", + "product_id": "openshift-pipelines/pipelines-operator-bundle@sha256:3be2f328c720338815c9147b3c135716e4f01fe3a082ea61698f49dff260c232_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-operator-bundle@sha256:3be2f328c720338815c9147b3c135716e4f01fe3a082ea61698f49dff260c232?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-bundle&tag=v1.11.2-17" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:50e12e55041e99b78ebbe2cb2ca850913af24fb66fac31e192ef000b5232eb73_arm64", + "product": { + "name": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:50e12e55041e99b78ebbe2cb2ca850913af24fb66fac31e192ef000b5232eb73_arm64", + "product_id": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:50e12e55041e99b78ebbe2cb2ca850913af24fb66fac31e192ef000b5232eb73_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-operator-proxy-rhel8@sha256:50e12e55041e99b78ebbe2cb2ca850913af24fb66fac31e192ef000b5232eb73?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:121516818a708a1c28f2753d25fc814b1969d38c9419aa91d8ebc2c1636d1dce_arm64", + "product": { + "name": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:121516818a708a1c28f2753d25fc814b1969d38c9419aa91d8ebc2c1636d1dce_arm64", + "product_id": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:121516818a708a1c28f2753d25fc814b1969d38c9419aa91d8ebc2c1636d1dce_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-operator-webhook-rhel8@sha256:121516818a708a1c28f2753d25fc814b1969d38c9419aa91d8ebc2c1636d1dce?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:3129b394cbe17230b8600cd0f0d87ed7881a8bcada87f878114a9421936172e2_arm64", + "product": { + "name": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:3129b394cbe17230b8600cd0f0d87ed7881a8bcada87f878114a9421936172e2_arm64", + "product_id": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:3129b394cbe17230b8600cd0f0d87ed7881a8bcada87f878114a9421936172e2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-pipelines-as-code-rhel8@sha256:3129b394cbe17230b8600cd0f0d87ed7881a8bcada87f878114a9421936172e2?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-rhel8&tag=v1.11.2-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:cd7a7785817cdd9098d46a4b810c0bb88b5f0192c26e97087b31c3e3a6984649_arm64", + "product": { + "name": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:cd7a7785817cdd9098d46a4b810c0bb88b5f0192c26e97087b31c3e3a6984649_arm64", + "product_id": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:cd7a7785817cdd9098d46a4b810c0bb88b5f0192c26e97087b31c3e3a6984649_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-resolvers-rhel8@sha256:cd7a7785817cdd9098d46a4b810c0bb88b5f0192c26e97087b31c3e3a6984649?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel8&tag=v1.11.2-24" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-results-api-rhel8@sha256:a6817868b710d8a73ee7ff046230bfa2fcbc622a3b929ccf0745bb97f511dbbe_arm64", + "product": { + "name": "openshift-pipelines/pipelines-results-api-rhel8@sha256:a6817868b710d8a73ee7ff046230bfa2fcbc622a3b929ccf0745bb97f511dbbe_arm64", + "product_id": "openshift-pipelines/pipelines-results-api-rhel8@sha256:a6817868b710d8a73ee7ff046230bfa2fcbc622a3b929ccf0745bb97f511dbbe_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-results-api-rhel8@sha256:a6817868b710d8a73ee7ff046230bfa2fcbc622a3b929ccf0745bb97f511dbbe?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:37414e8e53c4eb0649bd6c9009bd94b69963876a50d596670997b8e68aee81cf_arm64", + "product": { + "name": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:37414e8e53c4eb0649bd6c9009bd94b69963876a50d596670997b8e68aee81cf_arm64", + "product_id": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:37414e8e53c4eb0649bd6c9009bd94b69963876a50d596670997b8e68aee81cf_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-results-watcher-rhel8@sha256:37414e8e53c4eb0649bd6c9009bd94b69963876a50d596670997b8e68aee81cf?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-rhel8-operator@sha256:a9419ae2186cd794aa0ed8115bdfa53c8180dd065796d18accf813a0286fbab2_arm64", + "product": { + "name": "openshift-pipelines/pipelines-rhel8-operator@sha256:a9419ae2186cd794aa0ed8115bdfa53c8180dd065796d18accf813a0286fbab2_arm64", + "product_id": "openshift-pipelines/pipelines-rhel8-operator@sha256:a9419ae2186cd794aa0ed8115bdfa53c8180dd065796d18accf813a0286fbab2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-rhel8-operator@sha256:a9419ae2186cd794aa0ed8115bdfa53c8180dd065796d18accf813a0286fbab2?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-rhel8-operator&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:fb0f32399df94b6b68d2dd2b67a140cf1881de337d789e5a4d8655b1120760d7_arm64", + "product": { + "name": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:fb0f32399df94b6b68d2dd2b67a140cf1881de337d789e5a4d8655b1120760d7_arm64", + "product_id": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:fb0f32399df94b6b68d2dd2b67a140cf1881de337d789e5a4d8655b1120760d7_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-serve-tkn-cli-rhel8@sha256:fb0f32399df94b6b68d2dd2b67a140cf1881de337d789e5a4d8655b1120760d7?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel8&tag=v1.11.2-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:f900ecae42f593dbdf79d2aef36d20b07f8484938cd04589141a93b3930aa326_arm64", + "product": { + "name": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:f900ecae42f593dbdf79d2aef36d20b07f8484938cd04589141a93b3930aa326_arm64", + "product_id": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:f900ecae42f593dbdf79d2aef36d20b07f8484938cd04589141a93b3930aa326_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-controller-rhel8@sha256:f900ecae42f593dbdf79d2aef36d20b07f8484938cd04589141a93b3930aa326?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:0f1cc8a81f7bab6205cd359ec7ca4479f3be5d61e5a57461b53ab6d5ba8817ee_arm64", + "product": { + "name": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:0f1cc8a81f7bab6205cd359ec7ca4479f3be5d61e5a57461b53ab6d5ba8817ee_arm64", + "product_id": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:0f1cc8a81f7bab6205cd359ec7ca4479f3be5d61e5a57461b53ab6d5ba8817ee_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-core-interceptors-rhel8@sha256:0f1cc8a81f7bab6205cd359ec7ca4479f3be5d61e5a57461b53ab6d5ba8817ee?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel8&tag=v1.11.2-24" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:c6af5b42b9e7f6022b8c0c2fe86dce1f0447ee8f3f8b6526bcd4eab59c5375aa_arm64", + "product": { + "name": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:c6af5b42b9e7f6022b8c0c2fe86dce1f0447ee8f3f8b6526bcd4eab59c5375aa_arm64", + "product_id": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:c6af5b42b9e7f6022b8c0c2fe86dce1f0447ee8f3f8b6526bcd4eab59c5375aa_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-eventlistenersink-rhel8@sha256:c6af5b42b9e7f6022b8c0c2fe86dce1f0447ee8f3f8b6526bcd4eab59c5375aa?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:f844ac2fd64e76202ab846a2e8eff56be0c7ec19a26756c0d063f416b7371cb8_arm64", + "product": { + "name": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:f844ac2fd64e76202ab846a2e8eff56be0c7ec19a26756c0d063f416b7371cb8_arm64", + "product_id": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:f844ac2fd64e76202ab846a2e8eff56be0c7ec19a26756c0d063f416b7371cb8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-webhook-rhel8@sha256:f844ac2fd64e76202ab846a2e8eff56be0c7ec19a26756c0d063f416b7371cb8?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel8&tag=v1.11.2-23" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-webhook-rhel8@sha256:eaa581618cde7526e2c2356a12cd57010c44fd41a7003ffc45c5bd7847278ab6_arm64", + "product": { + "name": "openshift-pipelines/pipelines-webhook-rhel8@sha256:eaa581618cde7526e2c2356a12cd57010c44fd41a7003ffc45c5bd7847278ab6_arm64", + "product_id": "openshift-pipelines/pipelines-webhook-rhel8@sha256:eaa581618cde7526e2c2356a12cd57010c44fd41a7003ffc45c5bd7847278ab6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-webhook-rhel8@sha256:eaa581618cde7526e2c2356a12cd57010c44fd41a7003ffc45c5bd7847278ab6?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel8&tag=v1.11.2-24" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:0b6efd46e96a6e2ff0d0b0a10be27719737ff74beaa7106f4f01817bdbb7ae27_arm64", + "product": { + "name": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:0b6efd46e96a6e2ff0d0b0a10be27719737ff74beaa7106f4f01817bdbb7ae27_arm64", + "product_id": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:0b6efd46e96a6e2ff0d0b0a10be27719737ff74beaa7106f4f01817bdbb7ae27_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-workingdirinit-rhel8@sha256:0b6efd46e96a6e2ff0d0b0a10be27719737ff74beaa7106f4f01817bdbb7ae27?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel8&tag=v1.11.2-24" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "workload-availability/node-healthcheck-operator-bundle@sha256:151e7d9bc500b7252af46d0856e3e16559ff310a1d0efedcc5d914164bbdef55_amd64", + "product": { + "name": "workload-availability/node-healthcheck-operator-bundle@sha256:151e7d9bc500b7252af46d0856e3e16559ff310a1d0efedcc5d914164bbdef55_amd64", + "product_id": "workload-availability/node-healthcheck-operator-bundle@sha256:151e7d9bc500b7252af46d0856e3e16559ff310a1d0efedcc5d914164bbdef55_amd64", + "product_identification_helper": { + "purl": "pkg:oci/node-healthcheck-operator-bundle@sha256:151e7d9bc500b7252af46d0856e3e16559ff310a1d0efedcc5d914164bbdef55?arch=amd64&repository_url=registry.redhat.io/workload-availability/node-healthcheck-operator-bundle&tag=v0.4.1-44" + } + } + }, + { + "category": "product_version", + "name": "workload-availability/node-healthcheck-rhel8-operator@sha256:1e69fca94c72373f8034b4914e113e23e418f2c1b227d7ea0c8af3dcb63187a6_amd64", + "product": { + "name": "workload-availability/node-healthcheck-rhel8-operator@sha256:1e69fca94c72373f8034b4914e113e23e418f2c1b227d7ea0c8af3dcb63187a6_amd64", + "product_id": "workload-availability/node-healthcheck-rhel8-operator@sha256:1e69fca94c72373f8034b4914e113e23e418f2c1b227d7ea0c8af3dcb63187a6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/node-healthcheck-rhel8-operator@sha256:1e69fca94c72373f8034b4914e113e23e418f2c1b227d7ea0c8af3dcb63187a6?arch=amd64&repository_url=registry.redhat.io/workload-availability/node-healthcheck-rhel8-operator&tag=v0.4.1-44" + } + } + }, + { + "category": "product_version", + "name": "workload-availability/node-remediation-console-rhel8@sha256:c4a6e43c9d96f8dbe743db5af83495d9350ef8ac45e3adbec0fbbc53db40502a_amd64", + "product": { + "name": "workload-availability/node-remediation-console-rhel8@sha256:c4a6e43c9d96f8dbe743db5af83495d9350ef8ac45e3adbec0fbbc53db40502a_amd64", + "product_id": "workload-availability/node-remediation-console-rhel8@sha256:c4a6e43c9d96f8dbe743db5af83495d9350ef8ac45e3adbec0fbbc53db40502a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/node-remediation-console-rhel8@sha256:c4a6e43c9d96f8dbe743db5af83495d9350ef8ac45e3adbec0fbbc53db40502a?arch=amd64&repository_url=registry.redhat.io/workload-availability/node-remediation-console-rhel8&tag=v0.4.1-44" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-gitops-kam-0:1.8.6-10.el8.src", + "product": { + "name": "openshift-gitops-kam-0:1.8.6-10.el8.src", + "product_id": "openshift-gitops-kam-0:1.8.6-10.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-gitops-kam@1.8.6-10.el8?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-gitops-kam-0:1.8.6-10.el8.x86_64", + "product": { + "name": "openshift-gitops-kam-0:1.8.6-10.el8.x86_64", + "product_id": "openshift-gitops-kam-0:1.8.6-10.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-gitops-kam@1.8.6-10.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-gitops-kam-redistributable-0:1.8.6-10.el8.x86_64", + "product": { + "name": "openshift-gitops-kam-redistributable-0:1.8.6-10.el8.x86_64", + "product_id": "openshift-gitops-kam-redistributable-0:1.8.6-10.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-gitops-kam-redistributable@1.8.6-10.el8?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-gitops-kam-0:1.8.6-10.el8.s390x", + "product": { + "name": "openshift-gitops-kam-0:1.8.6-10.el8.s390x", + "product_id": "openshift-gitops-kam-0:1.8.6-10.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-gitops-kam@1.8.6-10.el8?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-gitops-kam-0:1.8.6-10.el8.ppc64le", + "product": { + "name": "openshift-gitops-kam-0:1.8.6-10.el8.ppc64le", + "product_id": "openshift-gitops-kam-0:1.8.6-10.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-gitops-kam@1.8.6-10.el8?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-gitops-kam-0:1.8.6-10.el8.aarch64", + "product": { + "name": "openshift-gitops-kam-0:1.8.6-10.el8.aarch64", + "product_id": "openshift-gitops-kam-0:1.8.6-10.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-gitops-kam@1.8.6-10.el8?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-pipelines-client-0:1.11.2-11148.el8.src", + "product": { + "name": "openshift-pipelines-client-0:1.11.2-11148.el8.src", + "product_id": "openshift-pipelines-client-0:1.11.2-11148.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-pipelines-client@1.11.2-11148.el8?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-pipelines-client-0:1.11.2-11148.el8.x86_64", + "product": { + "name": "openshift-pipelines-client-0:1.11.2-11148.el8.x86_64", + "product_id": "openshift-pipelines-client-0:1.11.2-11148.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-pipelines-client@1.11.2-11148.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines-client-redistributable-0:1.11.2-11148.el8.x86_64", + "product": { + "name": "openshift-pipelines-client-redistributable-0:1.11.2-11148.el8.x86_64", + "product_id": "openshift-pipelines-client-redistributable-0:1.11.2-11148.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-pipelines-client-redistributable@1.11.2-11148.el8?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-pipelines-client-0:1.11.2-11148.el8.s390x", + "product": { + "name": "openshift-pipelines-client-0:1.11.2-11148.el8.s390x", + "product_id": "openshift-pipelines-client-0:1.11.2-11148.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-pipelines-client@1.11.2-11148.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines-client-redistributable-0:1.11.2-11148.el8.s390x", + "product": { + "name": "openshift-pipelines-client-redistributable-0:1.11.2-11148.el8.s390x", + "product_id": "openshift-pipelines-client-redistributable-0:1.11.2-11148.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-pipelines-client-redistributable@1.11.2-11148.el8?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-pipelines-client-0:1.11.2-11148.el8.ppc64le", + "product": { + "name": "openshift-pipelines-client-0:1.11.2-11148.el8.ppc64le", + "product_id": "openshift-pipelines-client-0:1.11.2-11148.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-pipelines-client@1.11.2-11148.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines-client-redistributable-0:1.11.2-11148.el8.ppc64le", + "product": { + "name": "openshift-pipelines-client-redistributable-0:1.11.2-11148.el8.ppc64le", + "product_id": "openshift-pipelines-client-redistributable-0:1.11.2-11148.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-pipelines-client-redistributable@1.11.2-11148.el8?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-pipelines-client-0:1.11.2-11148.el8.aarch64", + "product": { + "name": "openshift-pipelines-client-0:1.11.2-11148.el8.aarch64", + "product_id": "openshift-pipelines-client-0:1.11.2-11148.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-pipelines-client@1.11.2-11148.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines-client-redistributable-0:1.11.2-11148.el8.aarch64", + "product": { + "name": "openshift-pipelines-client-redistributable-0:1.11.2-11148.el8.aarch64", + "product_id": "openshift-pipelines-client-redistributable-0:1.11.2-11148.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-pipelines-client-redistributable@1.11.2-11148.el8?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.43.0-5.el9_3.1.aarch64", + "product": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_3.1.aarch64", + "product_id": "libnghttp2-devel-0:1.43.0-5.el9_3.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.43.0-5.el9_3.1?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-0:1.43.0-5.el9_3.1.aarch64", + "product": { + "name": "nghttp2-0:1.43.0-5.el9_3.1.aarch64", + "product_id": "nghttp2-0:1.43.0-5.el9_3.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.43.0-5.el9_3.1?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.aarch64", + "product": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.aarch64", + "product_id": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.43.0-5.el9_3.1?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.aarch64", + "product": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.aarch64", + "product_id": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.43.0-5.el9_3.1?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.aarch64", + "product": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.aarch64", + "product_id": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.43.0-5.el9_3.1?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-0:1.43.0-5.el9_3.1.aarch64", + "product": { + "name": "libnghttp2-0:1.43.0-5.el9_3.1.aarch64", + "product_id": "libnghttp2-0:1.43.0-5.el9_3.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.43.0-5.el9_3.1?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.43.0-5.el9_3.1.ppc64le", + "product": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_3.1.ppc64le", + "product_id": "libnghttp2-devel-0:1.43.0-5.el9_3.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.43.0-5.el9_3.1?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-0:1.43.0-5.el9_3.1.ppc64le", + "product": { + "name": "nghttp2-0:1.43.0-5.el9_3.1.ppc64le", + "product_id": "nghttp2-0:1.43.0-5.el9_3.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.43.0-5.el9_3.1?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.ppc64le", + "product": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.ppc64le", + "product_id": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.43.0-5.el9_3.1?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.ppc64le", + "product": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.ppc64le", + "product_id": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.43.0-5.el9_3.1?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.ppc64le", + "product": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.ppc64le", + "product_id": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.43.0-5.el9_3.1?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-0:1.43.0-5.el9_3.1.ppc64le", + "product": { + "name": "libnghttp2-0:1.43.0-5.el9_3.1.ppc64le", + "product_id": "libnghttp2-0:1.43.0-5.el9_3.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.43.0-5.el9_3.1?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.43.0-5.el9_3.1.i686", + "product": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_3.1.i686", + "product_id": "libnghttp2-devel-0:1.43.0-5.el9_3.1.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.43.0-5.el9_3.1?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.i686", + "product": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.i686", + "product_id": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.43.0-5.el9_3.1?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.i686", + "product": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.i686", + "product_id": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.43.0-5.el9_3.1?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.i686", + "product": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.i686", + "product_id": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.43.0-5.el9_3.1?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-0:1.43.0-5.el9_3.1.i686", + "product": { + "name": "libnghttp2-0:1.43.0-5.el9_3.1.i686", + "product_id": "libnghttp2-0:1.43.0-5.el9_3.1.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.43.0-5.el9_3.1?arch=i686" + } + } + } + ], + "category": "architecture", + "name": "i686" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.43.0-5.el9_3.1.x86_64", + "product": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_3.1.x86_64", + "product_id": "libnghttp2-devel-0:1.43.0-5.el9_3.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.43.0-5.el9_3.1?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-0:1.43.0-5.el9_3.1.x86_64", + "product": { + "name": "nghttp2-0:1.43.0-5.el9_3.1.x86_64", + "product_id": "nghttp2-0:1.43.0-5.el9_3.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.43.0-5.el9_3.1?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.x86_64", + "product": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.x86_64", + "product_id": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.43.0-5.el9_3.1?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.x86_64", + "product": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.x86_64", + "product_id": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.43.0-5.el9_3.1?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.x86_64", + "product": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.x86_64", + "product_id": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.43.0-5.el9_3.1?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-0:1.43.0-5.el9_3.1.x86_64", + "product": { + "name": "libnghttp2-0:1.43.0-5.el9_3.1.x86_64", + "product_id": "libnghttp2-0:1.43.0-5.el9_3.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.43.0-5.el9_3.1?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.43.0-5.el9_3.1.s390x", + "product": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_3.1.s390x", + "product_id": "libnghttp2-devel-0:1.43.0-5.el9_3.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.43.0-5.el9_3.1?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-0:1.43.0-5.el9_3.1.s390x", + "product": { + "name": "nghttp2-0:1.43.0-5.el9_3.1.s390x", + "product_id": "nghttp2-0:1.43.0-5.el9_3.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.43.0-5.el9_3.1?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.s390x", + "product": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.s390x", + "product_id": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.43.0-5.el9_3.1?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.s390x", + "product": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.s390x", + "product_id": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.43.0-5.el9_3.1?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.s390x", + "product": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.s390x", + "product_id": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.43.0-5.el9_3.1?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-0:1.43.0-5.el9_3.1.s390x", + "product": { + "name": "libnghttp2-0:1.43.0-5.el9_3.1.s390x", + "product_id": "libnghttp2-0:1.43.0-5.el9_3.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.43.0-5.el9_3.1?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nghttp2-0:1.43.0-5.el9_3.1.src", + "product": { + "name": "nghttp2-0:1.43.0-5.el9_3.1.src", + "product_id": "nghttp2-0:1.43.0-5.el9_3.1.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.43.0-5.el9_3.1?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "mta/mta-hub-rhel8@sha256:5dddb8ad78fd32ea95f0cecefefe23df5f91947e4ecf91545904a41d587d5f9c_amd64", + "product": { + "name": "mta/mta-hub-rhel8@sha256:5dddb8ad78fd32ea95f0cecefefe23df5f91947e4ecf91545904a41d587d5f9c_amd64", + "product_id": "mta/mta-hub-rhel8@sha256:5dddb8ad78fd32ea95f0cecefefe23df5f91947e4ecf91545904a41d587d5f9c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mta-hub-rhel8@sha256:5dddb8ad78fd32ea95f0cecefefe23df5f91947e4ecf91545904a41d587d5f9c?arch=amd64&repository_url=registry.redhat.io/mta/mta-hub-rhel8&tag=6.1.4-2" + } + } + }, + { + "category": "product_version", + "name": "mta/mta-operator-bundle@sha256:f3d585e24d65905b2e9f594dcdb67721aa95057ab7587ae531c3487aa2f94e53_amd64", + "product": { + "name": "mta/mta-operator-bundle@sha256:f3d585e24d65905b2e9f594dcdb67721aa95057ab7587ae531c3487aa2f94e53_amd64", + "product_id": "mta/mta-operator-bundle@sha256:f3d585e24d65905b2e9f594dcdb67721aa95057ab7587ae531c3487aa2f94e53_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mta-operator-bundle@sha256:f3d585e24d65905b2e9f594dcdb67721aa95057ab7587ae531c3487aa2f94e53?arch=amd64&repository_url=registry.redhat.io/mta/mta-operator-bundle&tag=6.1.4-3" + } + } + }, + { + "category": "product_version", + "name": "mta/mta-rhel8-operator@sha256:3ec660105a8b02d46e6b0fb33293f5dc8e8c628b9a0487b261e7c6c811152f55_amd64", + "product": { + "name": "mta/mta-rhel8-operator@sha256:3ec660105a8b02d46e6b0fb33293f5dc8e8c628b9a0487b261e7c6c811152f55_amd64", + "product_id": "mta/mta-rhel8-operator@sha256:3ec660105a8b02d46e6b0fb33293f5dc8e8c628b9a0487b261e7c6c811152f55_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mta-rhel8-operator@sha256:3ec660105a8b02d46e6b0fb33293f5dc8e8c628b9a0487b261e7c6c811152f55?arch=amd64&repository_url=registry.redhat.io/mta/mta-rhel8-operator&tag=6.1.4-3" + } + } + }, + { + "category": "product_version", + "name": "mta/mta-pathfinder-rhel8@sha256:e3abb9fce799c8b59e2001fa06b186fecce9f8d19d4987e3ce16ba2325f0ad00_amd64", + "product": { + "name": "mta/mta-pathfinder-rhel8@sha256:e3abb9fce799c8b59e2001fa06b186fecce9f8d19d4987e3ce16ba2325f0ad00_amd64", + "product_id": "mta/mta-pathfinder-rhel8@sha256:e3abb9fce799c8b59e2001fa06b186fecce9f8d19d4987e3ce16ba2325f0ad00_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mta-pathfinder-rhel8@sha256:e3abb9fce799c8b59e2001fa06b186fecce9f8d19d4987e3ce16ba2325f0ad00?arch=amd64&repository_url=registry.redhat.io/mta/mta-pathfinder-rhel8&tag=6.1.4-1" + } + } + }, + { + "category": "product_version", + "name": "mta/mta-ui-rhel8@sha256:c3b75025b98012483cd5d7fc3b1e2b747e6c78782e99736522b9cdbf220f5841_amd64", + "product": { + "name": "mta/mta-ui-rhel8@sha256:c3b75025b98012483cd5d7fc3b1e2b747e6c78782e99736522b9cdbf220f5841_amd64", + "product_id": "mta/mta-ui-rhel8@sha256:c3b75025b98012483cd5d7fc3b1e2b747e6c78782e99736522b9cdbf220f5841_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mta-ui-rhel8@sha256:c3b75025b98012483cd5d7fc3b1e2b747e6c78782e99736522b9cdbf220f5841?arch=amd64&repository_url=registry.redhat.io/mta/mta-ui-rhel8&tag=6.1.4-2" + } + } + }, + { + "category": "product_version", + "name": "mta/mta-windup-addon-rhel8@sha256:569e41225942bc8bebaa2d4becb83254ab5ca290363a18d186754fc7f039e95a_amd64", + "product": { + "name": "mta/mta-windup-addon-rhel8@sha256:569e41225942bc8bebaa2d4becb83254ab5ca290363a18d186754fc7f039e95a_amd64", + "product_id": "mta/mta-windup-addon-rhel8@sha256:569e41225942bc8bebaa2d4becb83254ab5ca290363a18d186754fc7f039e95a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mta-windup-addon-rhel8@sha256:569e41225942bc8bebaa2d4becb83254ab5ca290363a18d186754fc7f039e95a?arch=amd64&repository_url=registry.redhat.io/mta/mta-windup-addon-rhel8&tag=6.1.4-2" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-serverless-clients-0:1.9.2-4.el8.src", + "product": { + "name": "openshift-serverless-clients-0:1.9.2-4.el8.src", + "product_id": "openshift-serverless-clients-0:1.9.2-4.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-serverless-clients@1.9.2-4.el8?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-serverless-clients-0:1.9.2-4.el8.x86_64", + "product": { + "name": "openshift-serverless-clients-0:1.9.2-4.el8.x86_64", + "product_id": "openshift-serverless-clients-0:1.9.2-4.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-serverless-clients@1.9.2-4.el8?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-serverless-clients-0:1.9.2-4.el8.ppc64le", + "product": { + "name": "openshift-serverless-clients-0:1.9.2-4.el8.ppc64le", + "product_id": "openshift-serverless-clients-0:1.9.2-4.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-serverless-clients@1.9.2-4.el8?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-serverless-clients-0:1.9.2-4.el8.s390x", + "product": { + "name": "openshift-serverless-clients-0:1.9.2-4.el8.s390x", + "product_id": "openshift-serverless-clients-0:1.9.2-4.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-serverless-clients@1.9.2-4.el8?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-serverless-1/client-kn-rhel8@sha256:d12dc8841593e2c241d2d0239804292760f65517cb5743c24802e62c02d02abf_ppc64le", + "product": { + "name": "openshift-serverless-1/client-kn-rhel8@sha256:d12dc8841593e2c241d2d0239804292760f65517cb5743c24802e62c02d02abf_ppc64le", + "product_id": "openshift-serverless-1/client-kn-rhel8@sha256:d12dc8841593e2c241d2d0239804292760f65517cb5743c24802e62c02d02abf_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/client-kn-rhel8@sha256:d12dc8841593e2c241d2d0239804292760f65517cb5743c24802e62c02d02abf?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/client-kn-rhel8&tag=1.9.2-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-apiserver-receive-adapter-rhel8@sha256:091f2f92aa0439f7c17d203189e65ab0752c12cd385f6e51b642fd2a595f5128_ppc64le", + "product": { + "name": "openshift-serverless-1/eventing-apiserver-receive-adapter-rhel8@sha256:091f2f92aa0439f7c17d203189e65ab0752c12cd385f6e51b642fd2a595f5128_ppc64le", + "product_id": "openshift-serverless-1/eventing-apiserver-receive-adapter-rhel8@sha256:091f2f92aa0439f7c17d203189e65ab0752c12cd385f6e51b642fd2a595f5128_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/eventing-apiserver-receive-adapter-rhel8@sha256:091f2f92aa0439f7c17d203189e65ab0752c12cd385f6e51b642fd2a595f5128?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/eventing-apiserver-receive-adapter-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-controller-rhel8@sha256:4cbea97b553d63340b3943b3f5d22e6582fe4b2f9aa21447d549806528b1f785_ppc64le", + "product": { + "name": "openshift-serverless-1/eventing-controller-rhel8@sha256:4cbea97b553d63340b3943b3f5d22e6582fe4b2f9aa21447d549806528b1f785_ppc64le", + "product_id": "openshift-serverless-1/eventing-controller-rhel8@sha256:4cbea97b553d63340b3943b3f5d22e6582fe4b2f9aa21447d549806528b1f785_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/eventing-controller-rhel8@sha256:4cbea97b553d63340b3943b3f5d22e6582fe4b2f9aa21447d549806528b1f785?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/eventing-controller-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-in-memory-channel-controller-rhel8@sha256:13506b369c0d8b7a141cfd44f97b08bfbb97d5fbc3a996ead0b73e886cfe3acf_ppc64le", + "product": { + "name": "openshift-serverless-1/eventing-in-memory-channel-controller-rhel8@sha256:13506b369c0d8b7a141cfd44f97b08bfbb97d5fbc3a996ead0b73e886cfe3acf_ppc64le", + "product_id": "openshift-serverless-1/eventing-in-memory-channel-controller-rhel8@sha256:13506b369c0d8b7a141cfd44f97b08bfbb97d5fbc3a996ead0b73e886cfe3acf_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/eventing-in-memory-channel-controller-rhel8@sha256:13506b369c0d8b7a141cfd44f97b08bfbb97d5fbc3a996ead0b73e886cfe3acf?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/eventing-in-memory-channel-controller-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-in-memory-channel-dispatcher-rhel8@sha256:44aff1a5ab3171083d9c46d32425931367c720acb3733aeef4c0d5c1b5321b5d_ppc64le", + "product": { + "name": "openshift-serverless-1/eventing-in-memory-channel-dispatcher-rhel8@sha256:44aff1a5ab3171083d9c46d32425931367c720acb3733aeef4c0d5c1b5321b5d_ppc64le", + "product_id": "openshift-serverless-1/eventing-in-memory-channel-dispatcher-rhel8@sha256:44aff1a5ab3171083d9c46d32425931367c720acb3733aeef4c0d5c1b5321b5d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/eventing-in-memory-channel-dispatcher-rhel8@sha256:44aff1a5ab3171083d9c46d32425931367c720acb3733aeef4c0d5c1b5321b5d?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/eventing-in-memory-channel-dispatcher-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1-tech-preview/eventing-istio-controller-rhel8@sha256:8cb5769df87931ae625d20a0983a492a3dd7f6b12b38a4c4cb8e884cb60a4b2a_ppc64le", + "product": { + "name": "openshift-serverless-1-tech-preview/eventing-istio-controller-rhel8@sha256:8cb5769df87931ae625d20a0983a492a3dd7f6b12b38a4c4cb8e884cb60a4b2a_ppc64le", + "product_id": "openshift-serverless-1-tech-preview/eventing-istio-controller-rhel8@sha256:8cb5769df87931ae625d20a0983a492a3dd7f6b12b38a4c4cb8e884cb60a4b2a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/eventing-istio-controller-rhel8@sha256:8cb5769df87931ae625d20a0983a492a3dd7f6b12b38a4c4cb8e884cb60a4b2a?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1-tech-preview/eventing-istio-controller-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-kafka-broker-controller-rhel8@sha256:c7858bd50cbf967e498e1b79a55f458688c6fd1f4cd55139ff047a750ed0530c_ppc64le", + "product": { + "name": "openshift-serverless-1/eventing-kafka-broker-controller-rhel8@sha256:c7858bd50cbf967e498e1b79a55f458688c6fd1f4cd55139ff047a750ed0530c_ppc64le", + "product_id": "openshift-serverless-1/eventing-kafka-broker-controller-rhel8@sha256:c7858bd50cbf967e498e1b79a55f458688c6fd1f4cd55139ff047a750ed0530c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/eventing-kafka-broker-controller-rhel8@sha256:c7858bd50cbf967e498e1b79a55f458688c6fd1f4cd55139ff047a750ed0530c?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/eventing-kafka-broker-controller-rhel8&tag=1.9.0-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-kafka-broker-dispatcher-rhel8@sha256:72906ac2612567fe3ea6ea02fc0f454ea01dabf51f4c9ba2fd8cc6d894c302b0_ppc64le", + "product": { + "name": "openshift-serverless-1/eventing-kafka-broker-dispatcher-rhel8@sha256:72906ac2612567fe3ea6ea02fc0f454ea01dabf51f4c9ba2fd8cc6d894c302b0_ppc64le", + "product_id": "openshift-serverless-1/eventing-kafka-broker-dispatcher-rhel8@sha256:72906ac2612567fe3ea6ea02fc0f454ea01dabf51f4c9ba2fd8cc6d894c302b0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/eventing-kafka-broker-dispatcher-rhel8@sha256:72906ac2612567fe3ea6ea02fc0f454ea01dabf51f4c9ba2fd8cc6d894c302b0?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/eventing-kafka-broker-dispatcher-rhel8&tag=1.9.0-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-kafka-broker-post-install-rhel8@sha256:f515825c828638ca568343b2e996cc41e7044ff539e994d3cb37af0d247f0370_ppc64le", + "product": { + "name": "openshift-serverless-1/eventing-kafka-broker-post-install-rhel8@sha256:f515825c828638ca568343b2e996cc41e7044ff539e994d3cb37af0d247f0370_ppc64le", + "product_id": "openshift-serverless-1/eventing-kafka-broker-post-install-rhel8@sha256:f515825c828638ca568343b2e996cc41e7044ff539e994d3cb37af0d247f0370_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/eventing-kafka-broker-post-install-rhel8@sha256:f515825c828638ca568343b2e996cc41e7044ff539e994d3cb37af0d247f0370?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/eventing-kafka-broker-post-install-rhel8&tag=1.9.0-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-kafka-broker-receiver-rhel8@sha256:5e65c080f6b6ad721723a617b8c99c3935d5d83b9da991b3a0e3910656468f56_ppc64le", + "product": { + "name": "openshift-serverless-1/eventing-kafka-broker-receiver-rhel8@sha256:5e65c080f6b6ad721723a617b8c99c3935d5d83b9da991b3a0e3910656468f56_ppc64le", + "product_id": "openshift-serverless-1/eventing-kafka-broker-receiver-rhel8@sha256:5e65c080f6b6ad721723a617b8c99c3935d5d83b9da991b3a0e3910656468f56_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/eventing-kafka-broker-receiver-rhel8@sha256:5e65c080f6b6ad721723a617b8c99c3935d5d83b9da991b3a0e3910656468f56?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/eventing-kafka-broker-receiver-rhel8&tag=1.9.0-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-kafka-broker-webhook-rhel8@sha256:aeab9f39b40ceba048451f9cf013063cd717911ff4001b13129e3ffc68b3f126_ppc64le", + "product": { + "name": "openshift-serverless-1/eventing-kafka-broker-webhook-rhel8@sha256:aeab9f39b40ceba048451f9cf013063cd717911ff4001b13129e3ffc68b3f126_ppc64le", + "product_id": "openshift-serverless-1/eventing-kafka-broker-webhook-rhel8@sha256:aeab9f39b40ceba048451f9cf013063cd717911ff4001b13129e3ffc68b3f126_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/eventing-kafka-broker-webhook-rhel8@sha256:aeab9f39b40ceba048451f9cf013063cd717911ff4001b13129e3ffc68b3f126?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/eventing-kafka-broker-webhook-rhel8&tag=1.9.0-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-mtbroker-filter-rhel8@sha256:1fbaac91656cd8d788bacea7d3178def39c9d5a4ff98d9d2563f43f73907b7aa_ppc64le", + "product": { + "name": "openshift-serverless-1/eventing-mtbroker-filter-rhel8@sha256:1fbaac91656cd8d788bacea7d3178def39c9d5a4ff98d9d2563f43f73907b7aa_ppc64le", + "product_id": "openshift-serverless-1/eventing-mtbroker-filter-rhel8@sha256:1fbaac91656cd8d788bacea7d3178def39c9d5a4ff98d9d2563f43f73907b7aa_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/eventing-mtbroker-filter-rhel8@sha256:1fbaac91656cd8d788bacea7d3178def39c9d5a4ff98d9d2563f43f73907b7aa?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/eventing-mtbroker-filter-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-mtbroker-ingress-rhel8@sha256:56a6f4dce87527c45581c82b4e0cf573528d667fcde6a64a25bea3297bcba7b5_ppc64le", + "product": { + "name": "openshift-serverless-1/eventing-mtbroker-ingress-rhel8@sha256:56a6f4dce87527c45581c82b4e0cf573528d667fcde6a64a25bea3297bcba7b5_ppc64le", + "product_id": "openshift-serverless-1/eventing-mtbroker-ingress-rhel8@sha256:56a6f4dce87527c45581c82b4e0cf573528d667fcde6a64a25bea3297bcba7b5_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/eventing-mtbroker-ingress-rhel8@sha256:56a6f4dce87527c45581c82b4e0cf573528d667fcde6a64a25bea3297bcba7b5?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/eventing-mtbroker-ingress-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-mtchannel-broker-rhel8@sha256:a105d049342c58d4f37a97a11e4b082b0451417dcfdab1cf1cf6414e5567cab9_ppc64le", + "product": { + "name": "openshift-serverless-1/eventing-mtchannel-broker-rhel8@sha256:a105d049342c58d4f37a97a11e4b082b0451417dcfdab1cf1cf6414e5567cab9_ppc64le", + "product_id": "openshift-serverless-1/eventing-mtchannel-broker-rhel8@sha256:a105d049342c58d4f37a97a11e4b082b0451417dcfdab1cf1cf6414e5567cab9_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/eventing-mtchannel-broker-rhel8@sha256:a105d049342c58d4f37a97a11e4b082b0451417dcfdab1cf1cf6414e5567cab9?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/eventing-mtchannel-broker-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-mtping-rhel8@sha256:34692fee06034c1ee87fa0de14cbf46ba9d01b760d1a287dff48ffc745ec75a8_ppc64le", + "product": { + "name": "openshift-serverless-1/eventing-mtping-rhel8@sha256:34692fee06034c1ee87fa0de14cbf46ba9d01b760d1a287dff48ffc745ec75a8_ppc64le", + "product_id": "openshift-serverless-1/eventing-mtping-rhel8@sha256:34692fee06034c1ee87fa0de14cbf46ba9d01b760d1a287dff48ffc745ec75a8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/eventing-mtping-rhel8@sha256:34692fee06034c1ee87fa0de14cbf46ba9d01b760d1a287dff48ffc745ec75a8?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/eventing-mtping-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-storage-version-migration-rhel8@sha256:bf29f19349523b47485119c7bda8634bb4f1d1907fe86ef54880dcdb57cfe733_ppc64le", + "product": { + "name": "openshift-serverless-1/eventing-storage-version-migration-rhel8@sha256:bf29f19349523b47485119c7bda8634bb4f1d1907fe86ef54880dcdb57cfe733_ppc64le", + "product_id": "openshift-serverless-1/eventing-storage-version-migration-rhel8@sha256:bf29f19349523b47485119c7bda8634bb4f1d1907fe86ef54880dcdb57cfe733_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/eventing-storage-version-migration-rhel8@sha256:bf29f19349523b47485119c7bda8634bb4f1d1907fe86ef54880dcdb57cfe733?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/eventing-storage-version-migration-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-webhook-rhel8@sha256:86734f1f2a5dbd62e1937ae3fd04d3c088eeda74179b444259990ae6fcb665ce_ppc64le", + "product": { + "name": "openshift-serverless-1/eventing-webhook-rhel8@sha256:86734f1f2a5dbd62e1937ae3fd04d3c088eeda74179b444259990ae6fcb665ce_ppc64le", + "product_id": "openshift-serverless-1/eventing-webhook-rhel8@sha256:86734f1f2a5dbd62e1937ae3fd04d3c088eeda74179b444259990ae6fcb665ce_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/eventing-webhook-rhel8@sha256:86734f1f2a5dbd62e1937ae3fd04d3c088eeda74179b444259990ae6fcb665ce?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/eventing-webhook-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/func-utils-rhel8@sha256:537ac0e39cd5898ba65b741707fb6e5981b42a426e970f35222fe166c45f6425_ppc64le", + "product": { + "name": "openshift-serverless-1/func-utils-rhel8@sha256:537ac0e39cd5898ba65b741707fb6e5981b42a426e970f35222fe166c45f6425_ppc64le", + "product_id": "openshift-serverless-1/func-utils-rhel8@sha256:537ac0e39cd5898ba65b741707fb6e5981b42a426e970f35222fe166c45f6425_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/func-utils-rhel8@sha256:537ac0e39cd5898ba65b741707fb6e5981b42a426e970f35222fe166c45f6425?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/func-utils-rhel8&tag=1.30.2-2" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/ingress-rhel8-operator@sha256:143e80e240e30eefe8e5262529f3e43df7386aee2730d5bfe8af5d8cd3f730d1_ppc64le", + "product": { + "name": "openshift-serverless-1/ingress-rhel8-operator@sha256:143e80e240e30eefe8e5262529f3e43df7386aee2730d5bfe8af5d8cd3f730d1_ppc64le", + "product_id": "openshift-serverless-1/ingress-rhel8-operator@sha256:143e80e240e30eefe8e5262529f3e43df7386aee2730d5bfe8af5d8cd3f730d1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ingress-rhel8-operator@sha256:143e80e240e30eefe8e5262529f3e43df7386aee2730d5bfe8af5d8cd3f730d1?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/ingress-rhel8-operator&tag=1.30.2-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1-tech-preview/knative-client-plugin-event-sender-rhel8@sha256:dc2883e2c901540ee6e1e7247006e2260337cb7fe0477fc02cd029843f0e68a1_ppc64le", + "product": { + "name": "openshift-serverless-1-tech-preview/knative-client-plugin-event-sender-rhel8@sha256:dc2883e2c901540ee6e1e7247006e2260337cb7fe0477fc02cd029843f0e68a1_ppc64le", + "product_id": "openshift-serverless-1-tech-preview/knative-client-plugin-event-sender-rhel8@sha256:dc2883e2c901540ee6e1e7247006e2260337cb7fe0477fc02cd029843f0e68a1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/knative-client-plugin-event-sender-rhel8@sha256:dc2883e2c901540ee6e1e7247006e2260337cb7fe0477fc02cd029843f0e68a1?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1-tech-preview/knative-client-plugin-event-sender-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/knative-rhel8-operator@sha256:ed3107ee9d67c218ba2ad65a877356dabbc6775302b542a1db2ebfed6be60bee_ppc64le", + "product": { + "name": "openshift-serverless-1/knative-rhel8-operator@sha256:ed3107ee9d67c218ba2ad65a877356dabbc6775302b542a1db2ebfed6be60bee_ppc64le", + "product_id": "openshift-serverless-1/knative-rhel8-operator@sha256:ed3107ee9d67c218ba2ad65a877356dabbc6775302b542a1db2ebfed6be60bee_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/knative-rhel8-operator@sha256:ed3107ee9d67c218ba2ad65a877356dabbc6775302b542a1db2ebfed6be60bee?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/knative-rhel8-operator&tag=1.30.2-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/kn-cli-artifacts-rhel8@sha256:95c47ca06184e042f65fe3fbcaa76425b0d092d5575bb1a5346d75274e9908f8_ppc64le", + "product": { + "name": "openshift-serverless-1/kn-cli-artifacts-rhel8@sha256:95c47ca06184e042f65fe3fbcaa76425b0d092d5575bb1a5346d75274e9908f8_ppc64le", + "product_id": "openshift-serverless-1/kn-cli-artifacts-rhel8@sha256:95c47ca06184e042f65fe3fbcaa76425b0d092d5575bb1a5346d75274e9908f8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kn-cli-artifacts-rhel8@sha256:95c47ca06184e042f65fe3fbcaa76425b0d092d5575bb1a5346d75274e9908f8?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/kn-cli-artifacts-rhel8&tag=1.9.2-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/kourier-control-rhel8@sha256:e94285c1cce41e495873ebec367d20db30c3b47c70b735236289925ad264bf89_ppc64le", + "product": { + "name": "openshift-serverless-1/kourier-control-rhel8@sha256:e94285c1cce41e495873ebec367d20db30c3b47c70b735236289925ad264bf89_ppc64le", + "product_id": "openshift-serverless-1/kourier-control-rhel8@sha256:e94285c1cce41e495873ebec367d20db30c3b47c70b735236289925ad264bf89_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kourier-control-rhel8@sha256:e94285c1cce41e495873ebec367d20db30c3b47c70b735236289925ad264bf89?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/kourier-control-rhel8&tag=1.9.0-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1-tech-preview/logic-data-index-ephemeral-rhel8@sha256:b86203254be737f9a700f29f85b56d43367442f5fe4a7b3bcefcb0e97d24f982_ppc64le", + "product": { + "name": "openshift-serverless-1-tech-preview/logic-data-index-ephemeral-rhel8@sha256:b86203254be737f9a700f29f85b56d43367442f5fe4a7b3bcefcb0e97d24f982_ppc64le", + "product_id": "openshift-serverless-1-tech-preview/logic-data-index-ephemeral-rhel8@sha256:b86203254be737f9a700f29f85b56d43367442f5fe4a7b3bcefcb0e97d24f982_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/logic-data-index-ephemeral-rhel8@sha256:b86203254be737f9a700f29f85b56d43367442f5fe4a7b3bcefcb0e97d24f982?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1-tech-preview/logic-data-index-ephemeral-rhel8&tag=1.30.0-8" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1-tech-preview/logic-swf-builder-rhel8@sha256:fe8fe8c2cea0f2957fe7ab238c6cf6c86cb480f75fb632b9128a3c5775d3c9c1_ppc64le", + "product": { + "name": "openshift-serverless-1-tech-preview/logic-swf-builder-rhel8@sha256:fe8fe8c2cea0f2957fe7ab238c6cf6c86cb480f75fb632b9128a3c5775d3c9c1_ppc64le", + "product_id": "openshift-serverless-1-tech-preview/logic-swf-builder-rhel8@sha256:fe8fe8c2cea0f2957fe7ab238c6cf6c86cb480f75fb632b9128a3c5775d3c9c1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/logic-swf-builder-rhel8@sha256:fe8fe8c2cea0f2957fe7ab238c6cf6c86cb480f75fb632b9128a3c5775d3c9c1?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1-tech-preview/logic-swf-builder-rhel8&tag=1.30.0-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1-tech-preview/logic-swf-devmode-rhel8@sha256:248a55059ca855ffdce83ea755d7bccd0094ba7ede795ddb892f17a3d360f24a_ppc64le", + "product": { + "name": "openshift-serverless-1-tech-preview/logic-swf-devmode-rhel8@sha256:248a55059ca855ffdce83ea755d7bccd0094ba7ede795ddb892f17a3d360f24a_ppc64le", + "product_id": "openshift-serverless-1-tech-preview/logic-swf-devmode-rhel8@sha256:248a55059ca855ffdce83ea755d7bccd0094ba7ede795ddb892f17a3d360f24a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/logic-swf-devmode-rhel8@sha256:248a55059ca855ffdce83ea755d7bccd0094ba7ede795ddb892f17a3d360f24a?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1-tech-preview/logic-swf-devmode-rhel8&tag=1.30.0-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/svls-must-gather-rhel8@sha256:a959d8224e228b9140e79c5f9764e8318ce842f964346b3e94c33263ea48f943_ppc64le", + "product": { + "name": "openshift-serverless-1/svls-must-gather-rhel8@sha256:a959d8224e228b9140e79c5f9764e8318ce842f964346b3e94c33263ea48f943_ppc64le", + "product_id": "openshift-serverless-1/svls-must-gather-rhel8@sha256:a959d8224e228b9140e79c5f9764e8318ce842f964346b3e94c33263ea48f943_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/svls-must-gather-rhel8@sha256:a959d8224e228b9140e79c5f9764e8318ce842f964346b3e94c33263ea48f943?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/svls-must-gather-rhel8&tag=1.30.2-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/net-istio-controller-rhel8@sha256:9a161c1fdc3d29d2879096196ec8d946567f4788f19519ba10a40f0d2a9adef6_ppc64le", + "product": { + "name": "openshift-serverless-1/net-istio-controller-rhel8@sha256:9a161c1fdc3d29d2879096196ec8d946567f4788f19519ba10a40f0d2a9adef6_ppc64le", + "product_id": "openshift-serverless-1/net-istio-controller-rhel8@sha256:9a161c1fdc3d29d2879096196ec8d946567f4788f19519ba10a40f0d2a9adef6_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/net-istio-controller-rhel8@sha256:9a161c1fdc3d29d2879096196ec8d946567f4788f19519ba10a40f0d2a9adef6?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/net-istio-controller-rhel8&tag=1.9.0-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/net-istio-webhook-rhel8@sha256:aaa2e335310a473df6c381774490d2c6ad00e336883be018f41b70728433e61e_ppc64le", + "product": { + "name": "openshift-serverless-1/net-istio-webhook-rhel8@sha256:aaa2e335310a473df6c381774490d2c6ad00e336883be018f41b70728433e61e_ppc64le", + "product_id": "openshift-serverless-1/net-istio-webhook-rhel8@sha256:aaa2e335310a473df6c381774490d2c6ad00e336883be018f41b70728433e61e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/net-istio-webhook-rhel8@sha256:aaa2e335310a473df6c381774490d2c6ad00e336883be018f41b70728433e61e?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/net-istio-webhook-rhel8&tag=1.9.0-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serverless-rhel8-operator@sha256:5ff5cf73f24c6fc856f961f3709e3c68d15c060179666a4760d083ccddce2139_ppc64le", + "product": { + "name": "openshift-serverless-1/serverless-rhel8-operator@sha256:5ff5cf73f24c6fc856f961f3709e3c68d15c060179666a4760d083ccddce2139_ppc64le", + "product_id": "openshift-serverless-1/serverless-rhel8-operator@sha256:5ff5cf73f24c6fc856f961f3709e3c68d15c060179666a4760d083ccddce2139_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/serverless-rhel8-operator@sha256:5ff5cf73f24c6fc856f961f3709e3c68d15c060179666a4760d083ccddce2139?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/serverless-rhel8-operator&tag=1.30.2-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-activator-rhel8@sha256:273f4c0db2cc41c8f7090f4a1eb0afc34f35ffaab3c69176c9260c245fabe685_ppc64le", + "product": { + "name": "openshift-serverless-1/serving-activator-rhel8@sha256:273f4c0db2cc41c8f7090f4a1eb0afc34f35ffaab3c69176c9260c245fabe685_ppc64le", + "product_id": "openshift-serverless-1/serving-activator-rhel8@sha256:273f4c0db2cc41c8f7090f4a1eb0afc34f35ffaab3c69176c9260c245fabe685_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/serving-activator-rhel8@sha256:273f4c0db2cc41c8f7090f4a1eb0afc34f35ffaab3c69176c9260c245fabe685?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/serving-activator-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-autoscaler-hpa-rhel8@sha256:3fca9cbb23ac5feafb6d129b1258f8b4c4d982cf1a551ad88bd537874729ac44_ppc64le", + "product": { + "name": "openshift-serverless-1/serving-autoscaler-hpa-rhel8@sha256:3fca9cbb23ac5feafb6d129b1258f8b4c4d982cf1a551ad88bd537874729ac44_ppc64le", + "product_id": "openshift-serverless-1/serving-autoscaler-hpa-rhel8@sha256:3fca9cbb23ac5feafb6d129b1258f8b4c4d982cf1a551ad88bd537874729ac44_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/serving-autoscaler-hpa-rhel8@sha256:3fca9cbb23ac5feafb6d129b1258f8b4c4d982cf1a551ad88bd537874729ac44?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/serving-autoscaler-hpa-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-autoscaler-rhel8@sha256:078925d012bde32da462e97e8413782533b5fcd55d95b166fd708e0b4b3874cc_ppc64le", + "product": { + "name": "openshift-serverless-1/serving-autoscaler-rhel8@sha256:078925d012bde32da462e97e8413782533b5fcd55d95b166fd708e0b4b3874cc_ppc64le", + "product_id": "openshift-serverless-1/serving-autoscaler-rhel8@sha256:078925d012bde32da462e97e8413782533b5fcd55d95b166fd708e0b4b3874cc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/serving-autoscaler-rhel8@sha256:078925d012bde32da462e97e8413782533b5fcd55d95b166fd708e0b4b3874cc?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/serving-autoscaler-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-controller-rhel8@sha256:10eb6138e2e906ad8edcb691eb27b4b7caa9cfb33c8391bc2478b1a3c1e3a17f_ppc64le", + "product": { + "name": "openshift-serverless-1/serving-controller-rhel8@sha256:10eb6138e2e906ad8edcb691eb27b4b7caa9cfb33c8391bc2478b1a3c1e3a17f_ppc64le", + "product_id": "openshift-serverless-1/serving-controller-rhel8@sha256:10eb6138e2e906ad8edcb691eb27b4b7caa9cfb33c8391bc2478b1a3c1e3a17f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/serving-controller-rhel8@sha256:10eb6138e2e906ad8edcb691eb27b4b7caa9cfb33c8391bc2478b1a3c1e3a17f?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/serving-controller-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-domain-mapping-rhel8@sha256:fdc4600a1e8130b2d2e5bc2de95e93236ab930d27711805ab9610cdc2fd81964_ppc64le", + "product": { + "name": "openshift-serverless-1/serving-domain-mapping-rhel8@sha256:fdc4600a1e8130b2d2e5bc2de95e93236ab930d27711805ab9610cdc2fd81964_ppc64le", + "product_id": "openshift-serverless-1/serving-domain-mapping-rhel8@sha256:fdc4600a1e8130b2d2e5bc2de95e93236ab930d27711805ab9610cdc2fd81964_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/serving-domain-mapping-rhel8@sha256:fdc4600a1e8130b2d2e5bc2de95e93236ab930d27711805ab9610cdc2fd81964?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/serving-domain-mapping-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-domain-mapping-webhook-rhel8@sha256:b226a61fdffe6ab3e304715cd4193ccff122191934b937b484259906b9dddb5a_ppc64le", + "product": { + "name": "openshift-serverless-1/serving-domain-mapping-webhook-rhel8@sha256:b226a61fdffe6ab3e304715cd4193ccff122191934b937b484259906b9dddb5a_ppc64le", + "product_id": "openshift-serverless-1/serving-domain-mapping-webhook-rhel8@sha256:b226a61fdffe6ab3e304715cd4193ccff122191934b937b484259906b9dddb5a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/serving-domain-mapping-webhook-rhel8@sha256:b226a61fdffe6ab3e304715cd4193ccff122191934b937b484259906b9dddb5a?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/serving-domain-mapping-webhook-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-queue-rhel8@sha256:16e45fe259a51fd8f73b9e42d8255b6dda4e2d3e00db52113308fbc99369adae_ppc64le", + "product": { + "name": "openshift-serverless-1/serving-queue-rhel8@sha256:16e45fe259a51fd8f73b9e42d8255b6dda4e2d3e00db52113308fbc99369adae_ppc64le", + "product_id": "openshift-serverless-1/serving-queue-rhel8@sha256:16e45fe259a51fd8f73b9e42d8255b6dda4e2d3e00db52113308fbc99369adae_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/serving-queue-rhel8@sha256:16e45fe259a51fd8f73b9e42d8255b6dda4e2d3e00db52113308fbc99369adae?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/serving-queue-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-storage-version-migration-rhel8@sha256:7584e95d66f6c81fdc127bfbd685da7cd6a66c4bac86395a637b21b00dbd15de_ppc64le", + "product": { + "name": "openshift-serverless-1/serving-storage-version-migration-rhel8@sha256:7584e95d66f6c81fdc127bfbd685da7cd6a66c4bac86395a637b21b00dbd15de_ppc64le", + "product_id": "openshift-serverless-1/serving-storage-version-migration-rhel8@sha256:7584e95d66f6c81fdc127bfbd685da7cd6a66c4bac86395a637b21b00dbd15de_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/serving-storage-version-migration-rhel8@sha256:7584e95d66f6c81fdc127bfbd685da7cd6a66c4bac86395a637b21b00dbd15de?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/serving-storage-version-migration-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-webhook-rhel8@sha256:b56a36112cd592bb1b28a290fc443faa1bcc997024e9d68a333f2b19af41c518_ppc64le", + "product": { + "name": "openshift-serverless-1/serving-webhook-rhel8@sha256:b56a36112cd592bb1b28a290fc443faa1bcc997024e9d68a333f2b19af41c518_ppc64le", + "product_id": "openshift-serverless-1/serving-webhook-rhel8@sha256:b56a36112cd592bb1b28a290fc443faa1bcc997024e9d68a333f2b19af41c518_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/serving-webhook-rhel8@sha256:b56a36112cd592bb1b28a290fc443faa1bcc997024e9d68a333f2b19af41c518?arch=ppc64le&repository_url=registry.redhat.io/openshift-serverless-1/serving-webhook-rhel8&tag=1.9.0-4" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-serverless-1/client-kn-rhel8@sha256:04552463c9c9ed820a107d16739958aeae2c59e6cbf209673b083716e1831224_amd64", + "product": { + "name": "openshift-serverless-1/client-kn-rhel8@sha256:04552463c9c9ed820a107d16739958aeae2c59e6cbf209673b083716e1831224_amd64", + "product_id": "openshift-serverless-1/client-kn-rhel8@sha256:04552463c9c9ed820a107d16739958aeae2c59e6cbf209673b083716e1831224_amd64", + "product_identification_helper": { + "purl": "pkg:oci/client-kn-rhel8@sha256:04552463c9c9ed820a107d16739958aeae2c59e6cbf209673b083716e1831224?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/client-kn-rhel8&tag=1.9.2-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-apiserver-receive-adapter-rhel8@sha256:e1bb69c8055e32c298fb44dfd765a9735537406cbbf98c11ab051494e9bbaba3_amd64", + "product": { + "name": "openshift-serverless-1/eventing-apiserver-receive-adapter-rhel8@sha256:e1bb69c8055e32c298fb44dfd765a9735537406cbbf98c11ab051494e9bbaba3_amd64", + "product_id": "openshift-serverless-1/eventing-apiserver-receive-adapter-rhel8@sha256:e1bb69c8055e32c298fb44dfd765a9735537406cbbf98c11ab051494e9bbaba3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/eventing-apiserver-receive-adapter-rhel8@sha256:e1bb69c8055e32c298fb44dfd765a9735537406cbbf98c11ab051494e9bbaba3?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/eventing-apiserver-receive-adapter-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-controller-rhel8@sha256:7a189da6f0de2054ca1a56c4cb1979ab3985b68c0b81be677cd475bdee9929e4_amd64", + "product": { + "name": "openshift-serverless-1/eventing-controller-rhel8@sha256:7a189da6f0de2054ca1a56c4cb1979ab3985b68c0b81be677cd475bdee9929e4_amd64", + "product_id": "openshift-serverless-1/eventing-controller-rhel8@sha256:7a189da6f0de2054ca1a56c4cb1979ab3985b68c0b81be677cd475bdee9929e4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/eventing-controller-rhel8@sha256:7a189da6f0de2054ca1a56c4cb1979ab3985b68c0b81be677cd475bdee9929e4?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/eventing-controller-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-in-memory-channel-controller-rhel8@sha256:08c8f59d5c59885761d6004efdba303609210f7c595c28e8eb0bb0acca8e2313_amd64", + "product": { + "name": "openshift-serverless-1/eventing-in-memory-channel-controller-rhel8@sha256:08c8f59d5c59885761d6004efdba303609210f7c595c28e8eb0bb0acca8e2313_amd64", + "product_id": "openshift-serverless-1/eventing-in-memory-channel-controller-rhel8@sha256:08c8f59d5c59885761d6004efdba303609210f7c595c28e8eb0bb0acca8e2313_amd64", + "product_identification_helper": { + "purl": "pkg:oci/eventing-in-memory-channel-controller-rhel8@sha256:08c8f59d5c59885761d6004efdba303609210f7c595c28e8eb0bb0acca8e2313?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/eventing-in-memory-channel-controller-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-in-memory-channel-dispatcher-rhel8@sha256:dac1e99a50449415c2125440588975100692e76e38140a0cd002e996c8bc19d1_amd64", + "product": { + "name": "openshift-serverless-1/eventing-in-memory-channel-dispatcher-rhel8@sha256:dac1e99a50449415c2125440588975100692e76e38140a0cd002e996c8bc19d1_amd64", + "product_id": "openshift-serverless-1/eventing-in-memory-channel-dispatcher-rhel8@sha256:dac1e99a50449415c2125440588975100692e76e38140a0cd002e996c8bc19d1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/eventing-in-memory-channel-dispatcher-rhel8@sha256:dac1e99a50449415c2125440588975100692e76e38140a0cd002e996c8bc19d1?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/eventing-in-memory-channel-dispatcher-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1-tech-preview/eventing-istio-controller-rhel8@sha256:e0e773344db5018233bc9aa5954e6afe0403b2f356866efc7d4dcec60df9282b_amd64", + "product": { + "name": "openshift-serverless-1-tech-preview/eventing-istio-controller-rhel8@sha256:e0e773344db5018233bc9aa5954e6afe0403b2f356866efc7d4dcec60df9282b_amd64", + "product_id": "openshift-serverless-1-tech-preview/eventing-istio-controller-rhel8@sha256:e0e773344db5018233bc9aa5954e6afe0403b2f356866efc7d4dcec60df9282b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/eventing-istio-controller-rhel8@sha256:e0e773344db5018233bc9aa5954e6afe0403b2f356866efc7d4dcec60df9282b?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1-tech-preview/eventing-istio-controller-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-kafka-broker-controller-rhel8@sha256:3ea33587afb65d36532542f985618432cf652894738b5844830478c06a167fcc_amd64", + "product": { + "name": "openshift-serverless-1/eventing-kafka-broker-controller-rhel8@sha256:3ea33587afb65d36532542f985618432cf652894738b5844830478c06a167fcc_amd64", + "product_id": "openshift-serverless-1/eventing-kafka-broker-controller-rhel8@sha256:3ea33587afb65d36532542f985618432cf652894738b5844830478c06a167fcc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/eventing-kafka-broker-controller-rhel8@sha256:3ea33587afb65d36532542f985618432cf652894738b5844830478c06a167fcc?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/eventing-kafka-broker-controller-rhel8&tag=1.9.0-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-kafka-broker-dispatcher-rhel8@sha256:702f06a7db422c4679300f46b1f5db5f34c13c71f77960251497b9cd049e7792_amd64", + "product": { + "name": "openshift-serverless-1/eventing-kafka-broker-dispatcher-rhel8@sha256:702f06a7db422c4679300f46b1f5db5f34c13c71f77960251497b9cd049e7792_amd64", + "product_id": "openshift-serverless-1/eventing-kafka-broker-dispatcher-rhel8@sha256:702f06a7db422c4679300f46b1f5db5f34c13c71f77960251497b9cd049e7792_amd64", + "product_identification_helper": { + "purl": "pkg:oci/eventing-kafka-broker-dispatcher-rhel8@sha256:702f06a7db422c4679300f46b1f5db5f34c13c71f77960251497b9cd049e7792?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/eventing-kafka-broker-dispatcher-rhel8&tag=1.9.0-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-kafka-broker-post-install-rhel8@sha256:4255a0d699e16b5a4e7e90e3ba5057ccdf259851fa8ade71ce8c2bc50864ec97_amd64", + "product": { + "name": "openshift-serverless-1/eventing-kafka-broker-post-install-rhel8@sha256:4255a0d699e16b5a4e7e90e3ba5057ccdf259851fa8ade71ce8c2bc50864ec97_amd64", + "product_id": "openshift-serverless-1/eventing-kafka-broker-post-install-rhel8@sha256:4255a0d699e16b5a4e7e90e3ba5057ccdf259851fa8ade71ce8c2bc50864ec97_amd64", + "product_identification_helper": { + "purl": "pkg:oci/eventing-kafka-broker-post-install-rhel8@sha256:4255a0d699e16b5a4e7e90e3ba5057ccdf259851fa8ade71ce8c2bc50864ec97?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/eventing-kafka-broker-post-install-rhel8&tag=1.9.0-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-kafka-broker-receiver-rhel8@sha256:9dc02c49a4f4527142a2d688e4996d268062cdb82820a4b6c1611cf90f11d811_amd64", + "product": { + "name": "openshift-serverless-1/eventing-kafka-broker-receiver-rhel8@sha256:9dc02c49a4f4527142a2d688e4996d268062cdb82820a4b6c1611cf90f11d811_amd64", + "product_id": "openshift-serverless-1/eventing-kafka-broker-receiver-rhel8@sha256:9dc02c49a4f4527142a2d688e4996d268062cdb82820a4b6c1611cf90f11d811_amd64", + "product_identification_helper": { + "purl": "pkg:oci/eventing-kafka-broker-receiver-rhel8@sha256:9dc02c49a4f4527142a2d688e4996d268062cdb82820a4b6c1611cf90f11d811?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/eventing-kafka-broker-receiver-rhel8&tag=1.9.0-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-kafka-broker-webhook-rhel8@sha256:0c476f3dccf74f09594bddb820746326e0f944abc717877562cb6c16036ae74f_amd64", + "product": { + "name": "openshift-serverless-1/eventing-kafka-broker-webhook-rhel8@sha256:0c476f3dccf74f09594bddb820746326e0f944abc717877562cb6c16036ae74f_amd64", + "product_id": "openshift-serverless-1/eventing-kafka-broker-webhook-rhel8@sha256:0c476f3dccf74f09594bddb820746326e0f944abc717877562cb6c16036ae74f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/eventing-kafka-broker-webhook-rhel8@sha256:0c476f3dccf74f09594bddb820746326e0f944abc717877562cb6c16036ae74f?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/eventing-kafka-broker-webhook-rhel8&tag=1.9.0-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-mtbroker-filter-rhel8@sha256:7b1ef1f93c7e3711a30168b742658951adbbfbbc49e89623d34f4d15677a51a0_amd64", + "product": { + "name": "openshift-serverless-1/eventing-mtbroker-filter-rhel8@sha256:7b1ef1f93c7e3711a30168b742658951adbbfbbc49e89623d34f4d15677a51a0_amd64", + "product_id": "openshift-serverless-1/eventing-mtbroker-filter-rhel8@sha256:7b1ef1f93c7e3711a30168b742658951adbbfbbc49e89623d34f4d15677a51a0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/eventing-mtbroker-filter-rhel8@sha256:7b1ef1f93c7e3711a30168b742658951adbbfbbc49e89623d34f4d15677a51a0?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/eventing-mtbroker-filter-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-mtbroker-ingress-rhel8@sha256:6ecc1cb653580e91d2021eff5839733d2321e11fe88948c1a2ed1d9e113231b2_amd64", + "product": { + "name": "openshift-serverless-1/eventing-mtbroker-ingress-rhel8@sha256:6ecc1cb653580e91d2021eff5839733d2321e11fe88948c1a2ed1d9e113231b2_amd64", + "product_id": "openshift-serverless-1/eventing-mtbroker-ingress-rhel8@sha256:6ecc1cb653580e91d2021eff5839733d2321e11fe88948c1a2ed1d9e113231b2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/eventing-mtbroker-ingress-rhel8@sha256:6ecc1cb653580e91d2021eff5839733d2321e11fe88948c1a2ed1d9e113231b2?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/eventing-mtbroker-ingress-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-mtchannel-broker-rhel8@sha256:b9b0edd6a1808d025900a616552cad7d656783f37d80e83acbaab18b938e0db3_amd64", + "product": { + "name": "openshift-serverless-1/eventing-mtchannel-broker-rhel8@sha256:b9b0edd6a1808d025900a616552cad7d656783f37d80e83acbaab18b938e0db3_amd64", + "product_id": "openshift-serverless-1/eventing-mtchannel-broker-rhel8@sha256:b9b0edd6a1808d025900a616552cad7d656783f37d80e83acbaab18b938e0db3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/eventing-mtchannel-broker-rhel8@sha256:b9b0edd6a1808d025900a616552cad7d656783f37d80e83acbaab18b938e0db3?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/eventing-mtchannel-broker-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-mtping-rhel8@sha256:dc69eeb47b11b0306066b1a994a8faab956043390fe461df6eef5a502b396c79_amd64", + "product": { + "name": "openshift-serverless-1/eventing-mtping-rhel8@sha256:dc69eeb47b11b0306066b1a994a8faab956043390fe461df6eef5a502b396c79_amd64", + "product_id": "openshift-serverless-1/eventing-mtping-rhel8@sha256:dc69eeb47b11b0306066b1a994a8faab956043390fe461df6eef5a502b396c79_amd64", + "product_identification_helper": { + "purl": "pkg:oci/eventing-mtping-rhel8@sha256:dc69eeb47b11b0306066b1a994a8faab956043390fe461df6eef5a502b396c79?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/eventing-mtping-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-storage-version-migration-rhel8@sha256:538312d7a0f39235541f16d4bbfc68e8a0f6defd8cebdb9335f74ac13cb53ed0_amd64", + "product": { + "name": "openshift-serverless-1/eventing-storage-version-migration-rhel8@sha256:538312d7a0f39235541f16d4bbfc68e8a0f6defd8cebdb9335f74ac13cb53ed0_amd64", + "product_id": "openshift-serverless-1/eventing-storage-version-migration-rhel8@sha256:538312d7a0f39235541f16d4bbfc68e8a0f6defd8cebdb9335f74ac13cb53ed0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/eventing-storage-version-migration-rhel8@sha256:538312d7a0f39235541f16d4bbfc68e8a0f6defd8cebdb9335f74ac13cb53ed0?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/eventing-storage-version-migration-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-webhook-rhel8@sha256:76b8bac332bd58bfb9765e04d9dcb0338254a61779d2d232ea5898244da359b2_amd64", + "product": { + "name": "openshift-serverless-1/eventing-webhook-rhel8@sha256:76b8bac332bd58bfb9765e04d9dcb0338254a61779d2d232ea5898244da359b2_amd64", + "product_id": "openshift-serverless-1/eventing-webhook-rhel8@sha256:76b8bac332bd58bfb9765e04d9dcb0338254a61779d2d232ea5898244da359b2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/eventing-webhook-rhel8@sha256:76b8bac332bd58bfb9765e04d9dcb0338254a61779d2d232ea5898244da359b2?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/eventing-webhook-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/func-utils-rhel8@sha256:0b71060287485d5728b81c890fac97e6e1bc0b7fe73f488d446cd9ceefc072d6_amd64", + "product": { + "name": "openshift-serverless-1/func-utils-rhel8@sha256:0b71060287485d5728b81c890fac97e6e1bc0b7fe73f488d446cd9ceefc072d6_amd64", + "product_id": "openshift-serverless-1/func-utils-rhel8@sha256:0b71060287485d5728b81c890fac97e6e1bc0b7fe73f488d446cd9ceefc072d6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/func-utils-rhel8@sha256:0b71060287485d5728b81c890fac97e6e1bc0b7fe73f488d446cd9ceefc072d6?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/func-utils-rhel8&tag=1.30.2-2" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/ingress-rhel8-operator@sha256:f0025b73dc2af1ed481f9fc1a02f43c4b6827d04fbdca5380a1d2bae53747501_amd64", + "product": { + "name": "openshift-serverless-1/ingress-rhel8-operator@sha256:f0025b73dc2af1ed481f9fc1a02f43c4b6827d04fbdca5380a1d2bae53747501_amd64", + "product_id": "openshift-serverless-1/ingress-rhel8-operator@sha256:f0025b73dc2af1ed481f9fc1a02f43c4b6827d04fbdca5380a1d2bae53747501_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ingress-rhel8-operator@sha256:f0025b73dc2af1ed481f9fc1a02f43c4b6827d04fbdca5380a1d2bae53747501?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/ingress-rhel8-operator&tag=1.30.2-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1-tech-preview/knative-client-plugin-event-sender-rhel8@sha256:47d979bf31c3293987b3e891a8053f31a93c65c119b9afe50873654c666b92db_amd64", + "product": { + "name": "openshift-serverless-1-tech-preview/knative-client-plugin-event-sender-rhel8@sha256:47d979bf31c3293987b3e891a8053f31a93c65c119b9afe50873654c666b92db_amd64", + "product_id": "openshift-serverless-1-tech-preview/knative-client-plugin-event-sender-rhel8@sha256:47d979bf31c3293987b3e891a8053f31a93c65c119b9afe50873654c666b92db_amd64", + "product_identification_helper": { + "purl": "pkg:oci/knative-client-plugin-event-sender-rhel8@sha256:47d979bf31c3293987b3e891a8053f31a93c65c119b9afe50873654c666b92db?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1-tech-preview/knative-client-plugin-event-sender-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/knative-rhel8-operator@sha256:dd91c9f5fe71a2aea6d8f3f2d20d4eac14dd7f5cfa984e53dcf9b87ced3e3f0f_amd64", + "product": { + "name": "openshift-serverless-1/knative-rhel8-operator@sha256:dd91c9f5fe71a2aea6d8f3f2d20d4eac14dd7f5cfa984e53dcf9b87ced3e3f0f_amd64", + "product_id": "openshift-serverless-1/knative-rhel8-operator@sha256:dd91c9f5fe71a2aea6d8f3f2d20d4eac14dd7f5cfa984e53dcf9b87ced3e3f0f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/knative-rhel8-operator@sha256:dd91c9f5fe71a2aea6d8f3f2d20d4eac14dd7f5cfa984e53dcf9b87ced3e3f0f?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/knative-rhel8-operator&tag=1.30.2-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/kn-cli-artifacts-rhel8@sha256:1c31130fa638c0bf8294cda7d4029f3a4a8b6489c243f0ff245cdd1e976b182c_amd64", + "product": { + "name": "openshift-serverless-1/kn-cli-artifacts-rhel8@sha256:1c31130fa638c0bf8294cda7d4029f3a4a8b6489c243f0ff245cdd1e976b182c_amd64", + "product_id": "openshift-serverless-1/kn-cli-artifacts-rhel8@sha256:1c31130fa638c0bf8294cda7d4029f3a4a8b6489c243f0ff245cdd1e976b182c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kn-cli-artifacts-rhel8@sha256:1c31130fa638c0bf8294cda7d4029f3a4a8b6489c243f0ff245cdd1e976b182c?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/kn-cli-artifacts-rhel8&tag=1.9.2-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/kourier-control-rhel8@sha256:f01738e575acc0167a2bc73a7cc521a90e1319c0c2bb13d17a8e6c29b3586d2f_amd64", + "product": { + "name": "openshift-serverless-1/kourier-control-rhel8@sha256:f01738e575acc0167a2bc73a7cc521a90e1319c0c2bb13d17a8e6c29b3586d2f_amd64", + "product_id": "openshift-serverless-1/kourier-control-rhel8@sha256:f01738e575acc0167a2bc73a7cc521a90e1319c0c2bb13d17a8e6c29b3586d2f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kourier-control-rhel8@sha256:f01738e575acc0167a2bc73a7cc521a90e1319c0c2bb13d17a8e6c29b3586d2f?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/kourier-control-rhel8&tag=1.9.0-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1-tech-preview/logic-data-index-ephemeral-rhel8@sha256:d3e3c4777360289235620c308f57d95219ca66ccb5331a092b1e6bd0f0f90b6e_amd64", + "product": { + "name": "openshift-serverless-1-tech-preview/logic-data-index-ephemeral-rhel8@sha256:d3e3c4777360289235620c308f57d95219ca66ccb5331a092b1e6bd0f0f90b6e_amd64", + "product_id": "openshift-serverless-1-tech-preview/logic-data-index-ephemeral-rhel8@sha256:d3e3c4777360289235620c308f57d95219ca66ccb5331a092b1e6bd0f0f90b6e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/logic-data-index-ephemeral-rhel8@sha256:d3e3c4777360289235620c308f57d95219ca66ccb5331a092b1e6bd0f0f90b6e?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1-tech-preview/logic-data-index-ephemeral-rhel8&tag=1.30.0-8" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1-tech-preview/logic-swf-builder-rhel8@sha256:9254aa62c43241dddd4a0c17dcec57e8521fa5583c70d11133ee5053bd8c6b30_amd64", + "product": { + "name": "openshift-serverless-1-tech-preview/logic-swf-builder-rhel8@sha256:9254aa62c43241dddd4a0c17dcec57e8521fa5583c70d11133ee5053bd8c6b30_amd64", + "product_id": "openshift-serverless-1-tech-preview/logic-swf-builder-rhel8@sha256:9254aa62c43241dddd4a0c17dcec57e8521fa5583c70d11133ee5053bd8c6b30_amd64", + "product_identification_helper": { + "purl": "pkg:oci/logic-swf-builder-rhel8@sha256:9254aa62c43241dddd4a0c17dcec57e8521fa5583c70d11133ee5053bd8c6b30?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1-tech-preview/logic-swf-builder-rhel8&tag=1.30.0-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1-tech-preview/logic-swf-devmode-rhel8@sha256:f01f75bfd37282591cbc47907d1f5df57ccffa526a636b9e84b4b8f5f4b78997_amd64", + "product": { + "name": "openshift-serverless-1-tech-preview/logic-swf-devmode-rhel8@sha256:f01f75bfd37282591cbc47907d1f5df57ccffa526a636b9e84b4b8f5f4b78997_amd64", + "product_id": "openshift-serverless-1-tech-preview/logic-swf-devmode-rhel8@sha256:f01f75bfd37282591cbc47907d1f5df57ccffa526a636b9e84b4b8f5f4b78997_amd64", + "product_identification_helper": { + "purl": "pkg:oci/logic-swf-devmode-rhel8@sha256:f01f75bfd37282591cbc47907d1f5df57ccffa526a636b9e84b4b8f5f4b78997?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1-tech-preview/logic-swf-devmode-rhel8&tag=1.30.0-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/svls-must-gather-rhel8@sha256:65e7dca03083226bfaee40bf5edcd433f0a15a3f226ee3b84a7924c56d15a979_amd64", + "product": { + "name": "openshift-serverless-1/svls-must-gather-rhel8@sha256:65e7dca03083226bfaee40bf5edcd433f0a15a3f226ee3b84a7924c56d15a979_amd64", + "product_id": "openshift-serverless-1/svls-must-gather-rhel8@sha256:65e7dca03083226bfaee40bf5edcd433f0a15a3f226ee3b84a7924c56d15a979_amd64", + "product_identification_helper": { + "purl": "pkg:oci/svls-must-gather-rhel8@sha256:65e7dca03083226bfaee40bf5edcd433f0a15a3f226ee3b84a7924c56d15a979?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/svls-must-gather-rhel8&tag=1.30.2-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/net-istio-controller-rhel8@sha256:cb311f25036afb3aea9695aa72b5867440c5266e05b8512c5aed4cdce82d22c1_amd64", + "product": { + "name": "openshift-serverless-1/net-istio-controller-rhel8@sha256:cb311f25036afb3aea9695aa72b5867440c5266e05b8512c5aed4cdce82d22c1_amd64", + "product_id": "openshift-serverless-1/net-istio-controller-rhel8@sha256:cb311f25036afb3aea9695aa72b5867440c5266e05b8512c5aed4cdce82d22c1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/net-istio-controller-rhel8@sha256:cb311f25036afb3aea9695aa72b5867440c5266e05b8512c5aed4cdce82d22c1?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/net-istio-controller-rhel8&tag=1.9.0-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/net-istio-webhook-rhel8@sha256:65bec982ef0250c713c60c62311e290347cd9072ca82819882d91e4ed79f8d16_amd64", + "product": { + "name": "openshift-serverless-1/net-istio-webhook-rhel8@sha256:65bec982ef0250c713c60c62311e290347cd9072ca82819882d91e4ed79f8d16_amd64", + "product_id": "openshift-serverless-1/net-istio-webhook-rhel8@sha256:65bec982ef0250c713c60c62311e290347cd9072ca82819882d91e4ed79f8d16_amd64", + "product_identification_helper": { + "purl": "pkg:oci/net-istio-webhook-rhel8@sha256:65bec982ef0250c713c60c62311e290347cd9072ca82819882d91e4ed79f8d16?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/net-istio-webhook-rhel8&tag=1.9.0-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serverless-operator-bundle@sha256:51ac9aced282f62c8fb2d3696da3696b8496d8f877e9846fe3a4a743ccd63bea_amd64", + "product": { + "name": "openshift-serverless-1/serverless-operator-bundle@sha256:51ac9aced282f62c8fb2d3696da3696b8496d8f877e9846fe3a4a743ccd63bea_amd64", + "product_id": "openshift-serverless-1/serverless-operator-bundle@sha256:51ac9aced282f62c8fb2d3696da3696b8496d8f877e9846fe3a4a743ccd63bea_amd64", + "product_identification_helper": { + "purl": "pkg:oci/serverless-operator-bundle@sha256:51ac9aced282f62c8fb2d3696da3696b8496d8f877e9846fe3a4a743ccd63bea?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/serverless-operator-bundle&tag=1.30.2-2" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serverless-rhel8-operator@sha256:7fd10cd70e72c0be5ca76be3cacc4781868d525579b469cffac2e75a52235cb4_amd64", + "product": { + "name": "openshift-serverless-1/serverless-rhel8-operator@sha256:7fd10cd70e72c0be5ca76be3cacc4781868d525579b469cffac2e75a52235cb4_amd64", + "product_id": "openshift-serverless-1/serverless-rhel8-operator@sha256:7fd10cd70e72c0be5ca76be3cacc4781868d525579b469cffac2e75a52235cb4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/serverless-rhel8-operator@sha256:7fd10cd70e72c0be5ca76be3cacc4781868d525579b469cffac2e75a52235cb4?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/serverless-rhel8-operator&tag=1.30.2-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-activator-rhel8@sha256:917d5788257f3018bc70a8715e1aee3185fe93ee958deedbc3f13ffbb306c56f_amd64", + "product": { + "name": "openshift-serverless-1/serving-activator-rhel8@sha256:917d5788257f3018bc70a8715e1aee3185fe93ee958deedbc3f13ffbb306c56f_amd64", + "product_id": "openshift-serverless-1/serving-activator-rhel8@sha256:917d5788257f3018bc70a8715e1aee3185fe93ee958deedbc3f13ffbb306c56f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/serving-activator-rhel8@sha256:917d5788257f3018bc70a8715e1aee3185fe93ee958deedbc3f13ffbb306c56f?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/serving-activator-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-autoscaler-hpa-rhel8@sha256:8a87b6f46cb87037d54fc1d24799617711a38ede3941f436f23014233f219c49_amd64", + "product": { + "name": "openshift-serverless-1/serving-autoscaler-hpa-rhel8@sha256:8a87b6f46cb87037d54fc1d24799617711a38ede3941f436f23014233f219c49_amd64", + "product_id": "openshift-serverless-1/serving-autoscaler-hpa-rhel8@sha256:8a87b6f46cb87037d54fc1d24799617711a38ede3941f436f23014233f219c49_amd64", + "product_identification_helper": { + "purl": "pkg:oci/serving-autoscaler-hpa-rhel8@sha256:8a87b6f46cb87037d54fc1d24799617711a38ede3941f436f23014233f219c49?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/serving-autoscaler-hpa-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-autoscaler-rhel8@sha256:4b810766ed033d023ce0f6b1689da91fd16433541e5c93074aee2a8fda8942ce_amd64", + "product": { + "name": "openshift-serverless-1/serving-autoscaler-rhel8@sha256:4b810766ed033d023ce0f6b1689da91fd16433541e5c93074aee2a8fda8942ce_amd64", + "product_id": "openshift-serverless-1/serving-autoscaler-rhel8@sha256:4b810766ed033d023ce0f6b1689da91fd16433541e5c93074aee2a8fda8942ce_amd64", + "product_identification_helper": { + "purl": "pkg:oci/serving-autoscaler-rhel8@sha256:4b810766ed033d023ce0f6b1689da91fd16433541e5c93074aee2a8fda8942ce?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/serving-autoscaler-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-controller-rhel8@sha256:be4a2854ec292b9cf1d0ae8dbff765fe5d6d0fe73a526dbba6e9a256c60165ab_amd64", + "product": { + "name": "openshift-serverless-1/serving-controller-rhel8@sha256:be4a2854ec292b9cf1d0ae8dbff765fe5d6d0fe73a526dbba6e9a256c60165ab_amd64", + "product_id": "openshift-serverless-1/serving-controller-rhel8@sha256:be4a2854ec292b9cf1d0ae8dbff765fe5d6d0fe73a526dbba6e9a256c60165ab_amd64", + "product_identification_helper": { + "purl": "pkg:oci/serving-controller-rhel8@sha256:be4a2854ec292b9cf1d0ae8dbff765fe5d6d0fe73a526dbba6e9a256c60165ab?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/serving-controller-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-domain-mapping-rhel8@sha256:c788b9232e90fcb98c88d783655794bd7a44deb2b5323703f1a51acfba898d8c_amd64", + "product": { + "name": "openshift-serverless-1/serving-domain-mapping-rhel8@sha256:c788b9232e90fcb98c88d783655794bd7a44deb2b5323703f1a51acfba898d8c_amd64", + "product_id": "openshift-serverless-1/serving-domain-mapping-rhel8@sha256:c788b9232e90fcb98c88d783655794bd7a44deb2b5323703f1a51acfba898d8c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/serving-domain-mapping-rhel8@sha256:c788b9232e90fcb98c88d783655794bd7a44deb2b5323703f1a51acfba898d8c?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/serving-domain-mapping-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-domain-mapping-webhook-rhel8@sha256:7b1308defc8edabb10d8c6d1f6b4a05d2a1b4545a33af06943880e5824ed074c_amd64", + "product": { + "name": "openshift-serverless-1/serving-domain-mapping-webhook-rhel8@sha256:7b1308defc8edabb10d8c6d1f6b4a05d2a1b4545a33af06943880e5824ed074c_amd64", + "product_id": "openshift-serverless-1/serving-domain-mapping-webhook-rhel8@sha256:7b1308defc8edabb10d8c6d1f6b4a05d2a1b4545a33af06943880e5824ed074c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/serving-domain-mapping-webhook-rhel8@sha256:7b1308defc8edabb10d8c6d1f6b4a05d2a1b4545a33af06943880e5824ed074c?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/serving-domain-mapping-webhook-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-queue-rhel8@sha256:b209988ea641879624e144d51fba2a8de8592a72603d626952419c6ab5f7377e_amd64", + "product": { + "name": "openshift-serverless-1/serving-queue-rhel8@sha256:b209988ea641879624e144d51fba2a8de8592a72603d626952419c6ab5f7377e_amd64", + "product_id": "openshift-serverless-1/serving-queue-rhel8@sha256:b209988ea641879624e144d51fba2a8de8592a72603d626952419c6ab5f7377e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/serving-queue-rhel8@sha256:b209988ea641879624e144d51fba2a8de8592a72603d626952419c6ab5f7377e?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/serving-queue-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-storage-version-migration-rhel8@sha256:4886e839cf374e430b6aca4036696ab934db94c78acd86240cad458625b7ea84_amd64", + "product": { + "name": "openshift-serverless-1/serving-storage-version-migration-rhel8@sha256:4886e839cf374e430b6aca4036696ab934db94c78acd86240cad458625b7ea84_amd64", + "product_id": "openshift-serverless-1/serving-storage-version-migration-rhel8@sha256:4886e839cf374e430b6aca4036696ab934db94c78acd86240cad458625b7ea84_amd64", + "product_identification_helper": { + "purl": "pkg:oci/serving-storage-version-migration-rhel8@sha256:4886e839cf374e430b6aca4036696ab934db94c78acd86240cad458625b7ea84?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/serving-storage-version-migration-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-webhook-rhel8@sha256:244b0506701fcd91d306ec282b83c1d36d7b3421ed73eb177d0a34be237bdccc_amd64", + "product": { + "name": "openshift-serverless-1/serving-webhook-rhel8@sha256:244b0506701fcd91d306ec282b83c1d36d7b3421ed73eb177d0a34be237bdccc_amd64", + "product_id": "openshift-serverless-1/serving-webhook-rhel8@sha256:244b0506701fcd91d306ec282b83c1d36d7b3421ed73eb177d0a34be237bdccc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/serving-webhook-rhel8@sha256:244b0506701fcd91d306ec282b83c1d36d7b3421ed73eb177d0a34be237bdccc?arch=amd64&repository_url=registry.redhat.io/openshift-serverless-1/serving-webhook-rhel8&tag=1.9.0-4" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-serverless-1/client-kn-rhel8@sha256:632be306dc2cdb98c5025447ba6a04758d037ab55c9324f69f9718fe136c006c_s390x", + "product": { + "name": "openshift-serverless-1/client-kn-rhel8@sha256:632be306dc2cdb98c5025447ba6a04758d037ab55c9324f69f9718fe136c006c_s390x", + "product_id": "openshift-serverless-1/client-kn-rhel8@sha256:632be306dc2cdb98c5025447ba6a04758d037ab55c9324f69f9718fe136c006c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/client-kn-rhel8@sha256:632be306dc2cdb98c5025447ba6a04758d037ab55c9324f69f9718fe136c006c?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/client-kn-rhel8&tag=1.9.2-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-apiserver-receive-adapter-rhel8@sha256:133ef116ff45e4f2997465501cec4a1646d04b7c846a6640bf1a84bf3de115c4_s390x", + "product": { + "name": "openshift-serverless-1/eventing-apiserver-receive-adapter-rhel8@sha256:133ef116ff45e4f2997465501cec4a1646d04b7c846a6640bf1a84bf3de115c4_s390x", + "product_id": "openshift-serverless-1/eventing-apiserver-receive-adapter-rhel8@sha256:133ef116ff45e4f2997465501cec4a1646d04b7c846a6640bf1a84bf3de115c4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/eventing-apiserver-receive-adapter-rhel8@sha256:133ef116ff45e4f2997465501cec4a1646d04b7c846a6640bf1a84bf3de115c4?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/eventing-apiserver-receive-adapter-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-controller-rhel8@sha256:dbbfef23c109add5e192b2930941c156d0a6d2334650f144975e2d1031f8bcdf_s390x", + "product": { + "name": "openshift-serverless-1/eventing-controller-rhel8@sha256:dbbfef23c109add5e192b2930941c156d0a6d2334650f144975e2d1031f8bcdf_s390x", + "product_id": "openshift-serverless-1/eventing-controller-rhel8@sha256:dbbfef23c109add5e192b2930941c156d0a6d2334650f144975e2d1031f8bcdf_s390x", + "product_identification_helper": { + "purl": "pkg:oci/eventing-controller-rhel8@sha256:dbbfef23c109add5e192b2930941c156d0a6d2334650f144975e2d1031f8bcdf?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/eventing-controller-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-in-memory-channel-controller-rhel8@sha256:3efd01822c309d9204e2316874474b142f41704ab1f9e5d9c8a5a069f1bf040a_s390x", + "product": { + "name": "openshift-serverless-1/eventing-in-memory-channel-controller-rhel8@sha256:3efd01822c309d9204e2316874474b142f41704ab1f9e5d9c8a5a069f1bf040a_s390x", + "product_id": "openshift-serverless-1/eventing-in-memory-channel-controller-rhel8@sha256:3efd01822c309d9204e2316874474b142f41704ab1f9e5d9c8a5a069f1bf040a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/eventing-in-memory-channel-controller-rhel8@sha256:3efd01822c309d9204e2316874474b142f41704ab1f9e5d9c8a5a069f1bf040a?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/eventing-in-memory-channel-controller-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-in-memory-channel-dispatcher-rhel8@sha256:fe0033a3c0328aae5a30913490c67c7e4d1643fb6fdbfdc29d8dfa699ce0bb06_s390x", + "product": { + "name": "openshift-serverless-1/eventing-in-memory-channel-dispatcher-rhel8@sha256:fe0033a3c0328aae5a30913490c67c7e4d1643fb6fdbfdc29d8dfa699ce0bb06_s390x", + "product_id": "openshift-serverless-1/eventing-in-memory-channel-dispatcher-rhel8@sha256:fe0033a3c0328aae5a30913490c67c7e4d1643fb6fdbfdc29d8dfa699ce0bb06_s390x", + "product_identification_helper": { + "purl": "pkg:oci/eventing-in-memory-channel-dispatcher-rhel8@sha256:fe0033a3c0328aae5a30913490c67c7e4d1643fb6fdbfdc29d8dfa699ce0bb06?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/eventing-in-memory-channel-dispatcher-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1-tech-preview/eventing-istio-controller-rhel8@sha256:07cd63dc28c59acdf8fffcacd5cee403275b66bb0b36baa94d45335a5ac5c141_s390x", + "product": { + "name": "openshift-serverless-1-tech-preview/eventing-istio-controller-rhel8@sha256:07cd63dc28c59acdf8fffcacd5cee403275b66bb0b36baa94d45335a5ac5c141_s390x", + "product_id": "openshift-serverless-1-tech-preview/eventing-istio-controller-rhel8@sha256:07cd63dc28c59acdf8fffcacd5cee403275b66bb0b36baa94d45335a5ac5c141_s390x", + "product_identification_helper": { + "purl": "pkg:oci/eventing-istio-controller-rhel8@sha256:07cd63dc28c59acdf8fffcacd5cee403275b66bb0b36baa94d45335a5ac5c141?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1-tech-preview/eventing-istio-controller-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-kafka-broker-controller-rhel8@sha256:41207762bc2e8a96d9cc1f40e5be8d0785b92b9df1fae4c947fd5f58d39ce80f_s390x", + "product": { + "name": "openshift-serverless-1/eventing-kafka-broker-controller-rhel8@sha256:41207762bc2e8a96d9cc1f40e5be8d0785b92b9df1fae4c947fd5f58d39ce80f_s390x", + "product_id": "openshift-serverless-1/eventing-kafka-broker-controller-rhel8@sha256:41207762bc2e8a96d9cc1f40e5be8d0785b92b9df1fae4c947fd5f58d39ce80f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/eventing-kafka-broker-controller-rhel8@sha256:41207762bc2e8a96d9cc1f40e5be8d0785b92b9df1fae4c947fd5f58d39ce80f?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/eventing-kafka-broker-controller-rhel8&tag=1.9.0-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-kafka-broker-dispatcher-rhel8@sha256:16fb16da6f8b4456af5898879d63d449a5ae290e38c351ebd527fb5d40a0e2c7_s390x", + "product": { + "name": "openshift-serverless-1/eventing-kafka-broker-dispatcher-rhel8@sha256:16fb16da6f8b4456af5898879d63d449a5ae290e38c351ebd527fb5d40a0e2c7_s390x", + "product_id": "openshift-serverless-1/eventing-kafka-broker-dispatcher-rhel8@sha256:16fb16da6f8b4456af5898879d63d449a5ae290e38c351ebd527fb5d40a0e2c7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/eventing-kafka-broker-dispatcher-rhel8@sha256:16fb16da6f8b4456af5898879d63d449a5ae290e38c351ebd527fb5d40a0e2c7?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/eventing-kafka-broker-dispatcher-rhel8&tag=1.9.0-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-kafka-broker-post-install-rhel8@sha256:dde479e0255b31c862c73ac7aa8faa7842c279e1be7519c207211fa8331ed4f9_s390x", + "product": { + "name": "openshift-serverless-1/eventing-kafka-broker-post-install-rhel8@sha256:dde479e0255b31c862c73ac7aa8faa7842c279e1be7519c207211fa8331ed4f9_s390x", + "product_id": "openshift-serverless-1/eventing-kafka-broker-post-install-rhel8@sha256:dde479e0255b31c862c73ac7aa8faa7842c279e1be7519c207211fa8331ed4f9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/eventing-kafka-broker-post-install-rhel8@sha256:dde479e0255b31c862c73ac7aa8faa7842c279e1be7519c207211fa8331ed4f9?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/eventing-kafka-broker-post-install-rhel8&tag=1.9.0-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-kafka-broker-receiver-rhel8@sha256:ca5a592d80409f674590e3d19f8d10192e91fc5b80d26e46d269c5e77e00035a_s390x", + "product": { + "name": "openshift-serverless-1/eventing-kafka-broker-receiver-rhel8@sha256:ca5a592d80409f674590e3d19f8d10192e91fc5b80d26e46d269c5e77e00035a_s390x", + "product_id": "openshift-serverless-1/eventing-kafka-broker-receiver-rhel8@sha256:ca5a592d80409f674590e3d19f8d10192e91fc5b80d26e46d269c5e77e00035a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/eventing-kafka-broker-receiver-rhel8@sha256:ca5a592d80409f674590e3d19f8d10192e91fc5b80d26e46d269c5e77e00035a?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/eventing-kafka-broker-receiver-rhel8&tag=1.9.0-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-kafka-broker-webhook-rhel8@sha256:f9203bdf2f0e22d88722f13aee39f5e57e22de223ff95b1df58454f3322db83f_s390x", + "product": { + "name": "openshift-serverless-1/eventing-kafka-broker-webhook-rhel8@sha256:f9203bdf2f0e22d88722f13aee39f5e57e22de223ff95b1df58454f3322db83f_s390x", + "product_id": "openshift-serverless-1/eventing-kafka-broker-webhook-rhel8@sha256:f9203bdf2f0e22d88722f13aee39f5e57e22de223ff95b1df58454f3322db83f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/eventing-kafka-broker-webhook-rhel8@sha256:f9203bdf2f0e22d88722f13aee39f5e57e22de223ff95b1df58454f3322db83f?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/eventing-kafka-broker-webhook-rhel8&tag=1.9.0-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-mtbroker-filter-rhel8@sha256:8a6326f00fa7ca21ae3ffc49ba06d244591d271718192fea0391ba1085f963de_s390x", + "product": { + "name": "openshift-serverless-1/eventing-mtbroker-filter-rhel8@sha256:8a6326f00fa7ca21ae3ffc49ba06d244591d271718192fea0391ba1085f963de_s390x", + "product_id": "openshift-serverless-1/eventing-mtbroker-filter-rhel8@sha256:8a6326f00fa7ca21ae3ffc49ba06d244591d271718192fea0391ba1085f963de_s390x", + "product_identification_helper": { + "purl": "pkg:oci/eventing-mtbroker-filter-rhel8@sha256:8a6326f00fa7ca21ae3ffc49ba06d244591d271718192fea0391ba1085f963de?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/eventing-mtbroker-filter-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-mtbroker-ingress-rhel8@sha256:4fab3f57eb15ea63271d90c96fac4bb5add49a9a01b5904bb7f3a07767ef6729_s390x", + "product": { + "name": "openshift-serverless-1/eventing-mtbroker-ingress-rhel8@sha256:4fab3f57eb15ea63271d90c96fac4bb5add49a9a01b5904bb7f3a07767ef6729_s390x", + "product_id": "openshift-serverless-1/eventing-mtbroker-ingress-rhel8@sha256:4fab3f57eb15ea63271d90c96fac4bb5add49a9a01b5904bb7f3a07767ef6729_s390x", + "product_identification_helper": { + "purl": "pkg:oci/eventing-mtbroker-ingress-rhel8@sha256:4fab3f57eb15ea63271d90c96fac4bb5add49a9a01b5904bb7f3a07767ef6729?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/eventing-mtbroker-ingress-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-mtchannel-broker-rhel8@sha256:1b85b5d8f4f55241ec0db018a1943910b85791fd3e68105c67288b1ebbdb3d45_s390x", + "product": { + "name": "openshift-serverless-1/eventing-mtchannel-broker-rhel8@sha256:1b85b5d8f4f55241ec0db018a1943910b85791fd3e68105c67288b1ebbdb3d45_s390x", + "product_id": "openshift-serverless-1/eventing-mtchannel-broker-rhel8@sha256:1b85b5d8f4f55241ec0db018a1943910b85791fd3e68105c67288b1ebbdb3d45_s390x", + "product_identification_helper": { + "purl": "pkg:oci/eventing-mtchannel-broker-rhel8@sha256:1b85b5d8f4f55241ec0db018a1943910b85791fd3e68105c67288b1ebbdb3d45?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/eventing-mtchannel-broker-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-mtping-rhel8@sha256:a97241ce8f13684c9200aeffb395d87fd20e4e7d3cb071f6376b05916459f2f3_s390x", + "product": { + "name": "openshift-serverless-1/eventing-mtping-rhel8@sha256:a97241ce8f13684c9200aeffb395d87fd20e4e7d3cb071f6376b05916459f2f3_s390x", + "product_id": "openshift-serverless-1/eventing-mtping-rhel8@sha256:a97241ce8f13684c9200aeffb395d87fd20e4e7d3cb071f6376b05916459f2f3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/eventing-mtping-rhel8@sha256:a97241ce8f13684c9200aeffb395d87fd20e4e7d3cb071f6376b05916459f2f3?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/eventing-mtping-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-storage-version-migration-rhel8@sha256:036974bc6a45dd3971233370d3d61159411bdd03460fe96afc9ddbe9f8c04a58_s390x", + "product": { + "name": "openshift-serverless-1/eventing-storage-version-migration-rhel8@sha256:036974bc6a45dd3971233370d3d61159411bdd03460fe96afc9ddbe9f8c04a58_s390x", + "product_id": "openshift-serverless-1/eventing-storage-version-migration-rhel8@sha256:036974bc6a45dd3971233370d3d61159411bdd03460fe96afc9ddbe9f8c04a58_s390x", + "product_identification_helper": { + "purl": "pkg:oci/eventing-storage-version-migration-rhel8@sha256:036974bc6a45dd3971233370d3d61159411bdd03460fe96afc9ddbe9f8c04a58?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/eventing-storage-version-migration-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/eventing-webhook-rhel8@sha256:3e0afc59de7e91c6266657f6d9ce1de8405d56ab171a005a1e09159ce162b0d3_s390x", + "product": { + "name": "openshift-serverless-1/eventing-webhook-rhel8@sha256:3e0afc59de7e91c6266657f6d9ce1de8405d56ab171a005a1e09159ce162b0d3_s390x", + "product_id": "openshift-serverless-1/eventing-webhook-rhel8@sha256:3e0afc59de7e91c6266657f6d9ce1de8405d56ab171a005a1e09159ce162b0d3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/eventing-webhook-rhel8@sha256:3e0afc59de7e91c6266657f6d9ce1de8405d56ab171a005a1e09159ce162b0d3?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/eventing-webhook-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/func-utils-rhel8@sha256:3f3928554beec420eceda412196f386a52ad30d190504b7cc811ef360370c777_s390x", + "product": { + "name": "openshift-serverless-1/func-utils-rhel8@sha256:3f3928554beec420eceda412196f386a52ad30d190504b7cc811ef360370c777_s390x", + "product_id": "openshift-serverless-1/func-utils-rhel8@sha256:3f3928554beec420eceda412196f386a52ad30d190504b7cc811ef360370c777_s390x", + "product_identification_helper": { + "purl": "pkg:oci/func-utils-rhel8@sha256:3f3928554beec420eceda412196f386a52ad30d190504b7cc811ef360370c777?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/func-utils-rhel8&tag=1.30.2-2" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/ingress-rhel8-operator@sha256:254e090465e5923939888ed4e5ed187981485f8868bc31cebc300412b62e8bd8_s390x", + "product": { + "name": "openshift-serverless-1/ingress-rhel8-operator@sha256:254e090465e5923939888ed4e5ed187981485f8868bc31cebc300412b62e8bd8_s390x", + "product_id": "openshift-serverless-1/ingress-rhel8-operator@sha256:254e090465e5923939888ed4e5ed187981485f8868bc31cebc300412b62e8bd8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ingress-rhel8-operator@sha256:254e090465e5923939888ed4e5ed187981485f8868bc31cebc300412b62e8bd8?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/ingress-rhel8-operator&tag=1.30.2-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1-tech-preview/knative-client-plugin-event-sender-rhel8@sha256:3fe21a55517a7e94fc1ebe2cd7191a48c52b88b68f32a278200b4c9d47d51df7_s390x", + "product": { + "name": "openshift-serverless-1-tech-preview/knative-client-plugin-event-sender-rhel8@sha256:3fe21a55517a7e94fc1ebe2cd7191a48c52b88b68f32a278200b4c9d47d51df7_s390x", + "product_id": "openshift-serverless-1-tech-preview/knative-client-plugin-event-sender-rhel8@sha256:3fe21a55517a7e94fc1ebe2cd7191a48c52b88b68f32a278200b4c9d47d51df7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/knative-client-plugin-event-sender-rhel8@sha256:3fe21a55517a7e94fc1ebe2cd7191a48c52b88b68f32a278200b4c9d47d51df7?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1-tech-preview/knative-client-plugin-event-sender-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/knative-rhel8-operator@sha256:aa33810e0a45d2e97daf6880d259de78e2c7ef60576b8c5304deca8a91c9c0e6_s390x", + "product": { + "name": "openshift-serverless-1/knative-rhel8-operator@sha256:aa33810e0a45d2e97daf6880d259de78e2c7ef60576b8c5304deca8a91c9c0e6_s390x", + "product_id": "openshift-serverless-1/knative-rhel8-operator@sha256:aa33810e0a45d2e97daf6880d259de78e2c7ef60576b8c5304deca8a91c9c0e6_s390x", + "product_identification_helper": { + "purl": "pkg:oci/knative-rhel8-operator@sha256:aa33810e0a45d2e97daf6880d259de78e2c7ef60576b8c5304deca8a91c9c0e6?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/knative-rhel8-operator&tag=1.30.2-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/kn-cli-artifacts-rhel8@sha256:d27a87311a9a5c6a57e70ed7d15973ee730ebf53ba418070a9b6c2e9e5ce6d2f_s390x", + "product": { + "name": "openshift-serverless-1/kn-cli-artifacts-rhel8@sha256:d27a87311a9a5c6a57e70ed7d15973ee730ebf53ba418070a9b6c2e9e5ce6d2f_s390x", + "product_id": "openshift-serverless-1/kn-cli-artifacts-rhel8@sha256:d27a87311a9a5c6a57e70ed7d15973ee730ebf53ba418070a9b6c2e9e5ce6d2f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/kn-cli-artifacts-rhel8@sha256:d27a87311a9a5c6a57e70ed7d15973ee730ebf53ba418070a9b6c2e9e5ce6d2f?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/kn-cli-artifacts-rhel8&tag=1.9.2-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/kourier-control-rhel8@sha256:77d84a8e666045d96139a9c3ccd191fecb7e86718c084dbc8f532a4985393a8d_s390x", + "product": { + "name": "openshift-serverless-1/kourier-control-rhel8@sha256:77d84a8e666045d96139a9c3ccd191fecb7e86718c084dbc8f532a4985393a8d_s390x", + "product_id": "openshift-serverless-1/kourier-control-rhel8@sha256:77d84a8e666045d96139a9c3ccd191fecb7e86718c084dbc8f532a4985393a8d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/kourier-control-rhel8@sha256:77d84a8e666045d96139a9c3ccd191fecb7e86718c084dbc8f532a4985393a8d?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/kourier-control-rhel8&tag=1.9.0-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/svls-must-gather-rhel8@sha256:2cd50f474dafa4f24342a5c6ba46bdffadc2846ddd9e08b27e17afd576808d19_s390x", + "product": { + "name": "openshift-serverless-1/svls-must-gather-rhel8@sha256:2cd50f474dafa4f24342a5c6ba46bdffadc2846ddd9e08b27e17afd576808d19_s390x", + "product_id": "openshift-serverless-1/svls-must-gather-rhel8@sha256:2cd50f474dafa4f24342a5c6ba46bdffadc2846ddd9e08b27e17afd576808d19_s390x", + "product_identification_helper": { + "purl": "pkg:oci/svls-must-gather-rhel8@sha256:2cd50f474dafa4f24342a5c6ba46bdffadc2846ddd9e08b27e17afd576808d19?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/svls-must-gather-rhel8&tag=1.30.2-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/net-istio-controller-rhel8@sha256:7c78962f1e53096dc341b82f2fd0a628673a10f03bb709573d3e2571028f31d5_s390x", + "product": { + "name": "openshift-serverless-1/net-istio-controller-rhel8@sha256:7c78962f1e53096dc341b82f2fd0a628673a10f03bb709573d3e2571028f31d5_s390x", + "product_id": "openshift-serverless-1/net-istio-controller-rhel8@sha256:7c78962f1e53096dc341b82f2fd0a628673a10f03bb709573d3e2571028f31d5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/net-istio-controller-rhel8@sha256:7c78962f1e53096dc341b82f2fd0a628673a10f03bb709573d3e2571028f31d5?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/net-istio-controller-rhel8&tag=1.9.0-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/net-istio-webhook-rhel8@sha256:3a888047747246743505bafd08a70e081223225601d9a6cd94801b856ed2ba84_s390x", + "product": { + "name": "openshift-serverless-1/net-istio-webhook-rhel8@sha256:3a888047747246743505bafd08a70e081223225601d9a6cd94801b856ed2ba84_s390x", + "product_id": "openshift-serverless-1/net-istio-webhook-rhel8@sha256:3a888047747246743505bafd08a70e081223225601d9a6cd94801b856ed2ba84_s390x", + "product_identification_helper": { + "purl": "pkg:oci/net-istio-webhook-rhel8@sha256:3a888047747246743505bafd08a70e081223225601d9a6cd94801b856ed2ba84?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/net-istio-webhook-rhel8&tag=1.9.0-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serverless-rhel8-operator@sha256:8e558e1247c8278ea1bd67cf5e4814ca349acb43b649cf1f88835bfc16eb9301_s390x", + "product": { + "name": "openshift-serverless-1/serverless-rhel8-operator@sha256:8e558e1247c8278ea1bd67cf5e4814ca349acb43b649cf1f88835bfc16eb9301_s390x", + "product_id": "openshift-serverless-1/serverless-rhel8-operator@sha256:8e558e1247c8278ea1bd67cf5e4814ca349acb43b649cf1f88835bfc16eb9301_s390x", + "product_identification_helper": { + "purl": "pkg:oci/serverless-rhel8-operator@sha256:8e558e1247c8278ea1bd67cf5e4814ca349acb43b649cf1f88835bfc16eb9301?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/serverless-rhel8-operator&tag=1.30.2-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-activator-rhel8@sha256:76b5520af6d5f8499ebd13b825fbf731588e67caf0c8e8512805c6df69be6f3a_s390x", + "product": { + "name": "openshift-serverless-1/serving-activator-rhel8@sha256:76b5520af6d5f8499ebd13b825fbf731588e67caf0c8e8512805c6df69be6f3a_s390x", + "product_id": "openshift-serverless-1/serving-activator-rhel8@sha256:76b5520af6d5f8499ebd13b825fbf731588e67caf0c8e8512805c6df69be6f3a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/serving-activator-rhel8@sha256:76b5520af6d5f8499ebd13b825fbf731588e67caf0c8e8512805c6df69be6f3a?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/serving-activator-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-autoscaler-hpa-rhel8@sha256:ba07df7c30551999805eda6593ab82f5f965b05c829aa3dbf85b787e312dba5e_s390x", + "product": { + "name": "openshift-serverless-1/serving-autoscaler-hpa-rhel8@sha256:ba07df7c30551999805eda6593ab82f5f965b05c829aa3dbf85b787e312dba5e_s390x", + "product_id": "openshift-serverless-1/serving-autoscaler-hpa-rhel8@sha256:ba07df7c30551999805eda6593ab82f5f965b05c829aa3dbf85b787e312dba5e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/serving-autoscaler-hpa-rhel8@sha256:ba07df7c30551999805eda6593ab82f5f965b05c829aa3dbf85b787e312dba5e?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/serving-autoscaler-hpa-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-autoscaler-rhel8@sha256:81ec2edba91eba8bebd74ac7066cc12eb60da95289f88860e8b4549ccdf9ac8a_s390x", + "product": { + "name": "openshift-serverless-1/serving-autoscaler-rhel8@sha256:81ec2edba91eba8bebd74ac7066cc12eb60da95289f88860e8b4549ccdf9ac8a_s390x", + "product_id": "openshift-serverless-1/serving-autoscaler-rhel8@sha256:81ec2edba91eba8bebd74ac7066cc12eb60da95289f88860e8b4549ccdf9ac8a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/serving-autoscaler-rhel8@sha256:81ec2edba91eba8bebd74ac7066cc12eb60da95289f88860e8b4549ccdf9ac8a?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/serving-autoscaler-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-controller-rhel8@sha256:40bffda2a73083dfb278186d23e980788d91ef1d02ab5d67ce9becb6bb15ee63_s390x", + "product": { + "name": "openshift-serverless-1/serving-controller-rhel8@sha256:40bffda2a73083dfb278186d23e980788d91ef1d02ab5d67ce9becb6bb15ee63_s390x", + "product_id": "openshift-serverless-1/serving-controller-rhel8@sha256:40bffda2a73083dfb278186d23e980788d91ef1d02ab5d67ce9becb6bb15ee63_s390x", + "product_identification_helper": { + "purl": "pkg:oci/serving-controller-rhel8@sha256:40bffda2a73083dfb278186d23e980788d91ef1d02ab5d67ce9becb6bb15ee63?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/serving-controller-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-domain-mapping-rhel8@sha256:00325b9077cb6719dcaac55eb15f0822dfc00bbdcf8307c8e678ba79a17d4fb0_s390x", + "product": { + "name": "openshift-serverless-1/serving-domain-mapping-rhel8@sha256:00325b9077cb6719dcaac55eb15f0822dfc00bbdcf8307c8e678ba79a17d4fb0_s390x", + "product_id": "openshift-serverless-1/serving-domain-mapping-rhel8@sha256:00325b9077cb6719dcaac55eb15f0822dfc00bbdcf8307c8e678ba79a17d4fb0_s390x", + "product_identification_helper": { + "purl": "pkg:oci/serving-domain-mapping-rhel8@sha256:00325b9077cb6719dcaac55eb15f0822dfc00bbdcf8307c8e678ba79a17d4fb0?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/serving-domain-mapping-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-domain-mapping-webhook-rhel8@sha256:ef1c7a89eb10e51dfb677fd1a0a4e3475db5220b637b87def4a682d73e261078_s390x", + "product": { + "name": "openshift-serverless-1/serving-domain-mapping-webhook-rhel8@sha256:ef1c7a89eb10e51dfb677fd1a0a4e3475db5220b637b87def4a682d73e261078_s390x", + "product_id": "openshift-serverless-1/serving-domain-mapping-webhook-rhel8@sha256:ef1c7a89eb10e51dfb677fd1a0a4e3475db5220b637b87def4a682d73e261078_s390x", + "product_identification_helper": { + "purl": "pkg:oci/serving-domain-mapping-webhook-rhel8@sha256:ef1c7a89eb10e51dfb677fd1a0a4e3475db5220b637b87def4a682d73e261078?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/serving-domain-mapping-webhook-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-queue-rhel8@sha256:66199519e90664d1e9a25c29be90e0dafd36ff8fac174b5be3f7935cfdaed468_s390x", + "product": { + "name": "openshift-serverless-1/serving-queue-rhel8@sha256:66199519e90664d1e9a25c29be90e0dafd36ff8fac174b5be3f7935cfdaed468_s390x", + "product_id": "openshift-serverless-1/serving-queue-rhel8@sha256:66199519e90664d1e9a25c29be90e0dafd36ff8fac174b5be3f7935cfdaed468_s390x", + "product_identification_helper": { + "purl": "pkg:oci/serving-queue-rhel8@sha256:66199519e90664d1e9a25c29be90e0dafd36ff8fac174b5be3f7935cfdaed468?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/serving-queue-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-storage-version-migration-rhel8@sha256:c42257339c56ecf19990e9639c56c7179890b5b3d1937c1647fefccac657f903_s390x", + "product": { + "name": "openshift-serverless-1/serving-storage-version-migration-rhel8@sha256:c42257339c56ecf19990e9639c56c7179890b5b3d1937c1647fefccac657f903_s390x", + "product_id": "openshift-serverless-1/serving-storage-version-migration-rhel8@sha256:c42257339c56ecf19990e9639c56c7179890b5b3d1937c1647fefccac657f903_s390x", + "product_identification_helper": { + "purl": "pkg:oci/serving-storage-version-migration-rhel8@sha256:c42257339c56ecf19990e9639c56c7179890b5b3d1937c1647fefccac657f903?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/serving-storage-version-migration-rhel8&tag=1.9.0-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1/serving-webhook-rhel8@sha256:c9cf9b2ebec2d6c5bf3657666c709bed17b8e47237402012d73860ab07cff302_s390x", + "product": { + "name": "openshift-serverless-1/serving-webhook-rhel8@sha256:c9cf9b2ebec2d6c5bf3657666c709bed17b8e47237402012d73860ab07cff302_s390x", + "product_id": "openshift-serverless-1/serving-webhook-rhel8@sha256:c9cf9b2ebec2d6c5bf3657666c709bed17b8e47237402012d73860ab07cff302_s390x", + "product_identification_helper": { + "purl": "pkg:oci/serving-webhook-rhel8@sha256:c9cf9b2ebec2d6c5bf3657666c709bed17b8e47237402012d73860ab07cff302?arch=s390x&repository_url=registry.redhat.io/openshift-serverless-1/serving-webhook-rhel8&tag=1.9.0-4" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-serverless-1-tech-preview/logic-data-index-ephemeral-rhel8@sha256:1543654b069e9cd45b5a0d17c4c4d38c415ae3beebc3cdff45ac22596453e15b_arm64", + "product": { + "name": "openshift-serverless-1-tech-preview/logic-data-index-ephemeral-rhel8@sha256:1543654b069e9cd45b5a0d17c4c4d38c415ae3beebc3cdff45ac22596453e15b_arm64", + "product_id": "openshift-serverless-1-tech-preview/logic-data-index-ephemeral-rhel8@sha256:1543654b069e9cd45b5a0d17c4c4d38c415ae3beebc3cdff45ac22596453e15b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/logic-data-index-ephemeral-rhel8@sha256:1543654b069e9cd45b5a0d17c4c4d38c415ae3beebc3cdff45ac22596453e15b?arch=arm64&repository_url=registry.redhat.io/openshift-serverless-1-tech-preview/logic-data-index-ephemeral-rhel8&tag=1.30.0-8" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1-tech-preview/logic-swf-builder-rhel8@sha256:c2c18a5efff4a78203f38b8ca76671fc389c49237b1426d3c9a18e64708c756b_arm64", + "product": { + "name": "openshift-serverless-1-tech-preview/logic-swf-builder-rhel8@sha256:c2c18a5efff4a78203f38b8ca76671fc389c49237b1426d3c9a18e64708c756b_arm64", + "product_id": "openshift-serverless-1-tech-preview/logic-swf-builder-rhel8@sha256:c2c18a5efff4a78203f38b8ca76671fc389c49237b1426d3c9a18e64708c756b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/logic-swf-builder-rhel8@sha256:c2c18a5efff4a78203f38b8ca76671fc389c49237b1426d3c9a18e64708c756b?arch=arm64&repository_url=registry.redhat.io/openshift-serverless-1-tech-preview/logic-swf-builder-rhel8&tag=1.30.0-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-serverless-1-tech-preview/logic-swf-devmode-rhel8@sha256:38fe7d3ec137725d6d103603830866f3992608888692f981ca1e16aa03a97df3_arm64", + "product": { + "name": "openshift-serverless-1-tech-preview/logic-swf-devmode-rhel8@sha256:38fe7d3ec137725d6d103603830866f3992608888692f981ca1e16aa03a97df3_arm64", + "product_id": "openshift-serverless-1-tech-preview/logic-swf-devmode-rhel8@sha256:38fe7d3ec137725d6d103603830866f3992608888692f981ca1e16aa03a97df3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/logic-swf-devmode-rhel8@sha256:38fe7d3ec137725d6d103603830866f3992608888692f981ca1e16aa03a97df3?arch=arm64&repository_url=registry.redhat.io/openshift-serverless-1-tech-preview/logic-swf-devmode-rhel8&tag=1.30.0-9" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "mta/mta-hub-rhel9@sha256:ab08ff12c34082722cb6ea3bdf3c62f99d30efb469570938400ebdd9b6e4b4b5_amd64", + "product": { + "name": "mta/mta-hub-rhel9@sha256:ab08ff12c34082722cb6ea3bdf3c62f99d30efb469570938400ebdd9b6e4b4b5_amd64", + "product_id": "mta/mta-hub-rhel9@sha256:ab08ff12c34082722cb6ea3bdf3c62f99d30efb469570938400ebdd9b6e4b4b5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mta-hub-rhel9@sha256:ab08ff12c34082722cb6ea3bdf3c62f99d30efb469570938400ebdd9b6e4b4b5?arch=amd64&repository_url=registry.redhat.io/mta/mta-hub-rhel9&tag=6.2.1-3" + } + } + }, + { + "category": "product_version", + "name": "mta/mta-operator-bundle@sha256:2660d6e04d2f6475565999b41947e1b5e615beb6a4f82e596e21f947f0963866_amd64", + "product": { + "name": "mta/mta-operator-bundle@sha256:2660d6e04d2f6475565999b41947e1b5e615beb6a4f82e596e21f947f0963866_amd64", + "product_id": "mta/mta-operator-bundle@sha256:2660d6e04d2f6475565999b41947e1b5e615beb6a4f82e596e21f947f0963866_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mta-operator-bundle@sha256:2660d6e04d2f6475565999b41947e1b5e615beb6a4f82e596e21f947f0963866?arch=amd64&repository_url=registry.redhat.io/mta/mta-operator-bundle&tag=6.2.1-9" + } + } + }, + { + "category": "product_version", + "name": "mta/mta-rhel8-operator@sha256:a044ecc125e34bbdc41c5926b9bb49cf233c534618367e1bd57d24d4b54164fb_amd64", + "product": { + "name": "mta/mta-rhel8-operator@sha256:a044ecc125e34bbdc41c5926b9bb49cf233c534618367e1bd57d24d4b54164fb_amd64", + "product_id": "mta/mta-rhel8-operator@sha256:a044ecc125e34bbdc41c5926b9bb49cf233c534618367e1bd57d24d4b54164fb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mta-rhel8-operator@sha256:a044ecc125e34bbdc41c5926b9bb49cf233c534618367e1bd57d24d4b54164fb?arch=amd64&repository_url=registry.redhat.io/mta/mta-rhel8-operator&tag=6.2.1-5" + } + } + }, + { + "category": "product_version", + "name": "mta/mta-pathfinder-rhel9@sha256:210453bf83f0906897220af8b027215c14099dd72a88af35154165ea295e6864_amd64", + "product": { + "name": "mta/mta-pathfinder-rhel9@sha256:210453bf83f0906897220af8b027215c14099dd72a88af35154165ea295e6864_amd64", + "product_id": "mta/mta-pathfinder-rhel9@sha256:210453bf83f0906897220af8b027215c14099dd72a88af35154165ea295e6864_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mta-pathfinder-rhel9@sha256:210453bf83f0906897220af8b027215c14099dd72a88af35154165ea295e6864?arch=amd64&repository_url=registry.redhat.io/mta/mta-pathfinder-rhel9&tag=6.2.1-2" + } + } + }, + { + "category": "product_version", + "name": "mta/mta-ui-rhel9@sha256:a82420cc54e8e8cdd0d8905d4f8ef1167bfd16cd474c09f0146ed756a6fac0dc_amd64", + "product": { + "name": "mta/mta-ui-rhel9@sha256:a82420cc54e8e8cdd0d8905d4f8ef1167bfd16cd474c09f0146ed756a6fac0dc_amd64", + "product_id": "mta/mta-ui-rhel9@sha256:a82420cc54e8e8cdd0d8905d4f8ef1167bfd16cd474c09f0146ed756a6fac0dc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mta-ui-rhel9@sha256:a82420cc54e8e8cdd0d8905d4f8ef1167bfd16cd474c09f0146ed756a6fac0dc?arch=amd64&repository_url=registry.redhat.io/mta/mta-ui-rhel9&tag=6.2.1-4" + } + } + }, + { + "category": "product_version", + "name": "mta/mta-windup-addon-rhel9@sha256:8235d925582c44ea38fce014c14a4b674ae99bdf90440d7d1e9b552f4dd67069_amd64", + "product": { + "name": "mta/mta-windup-addon-rhel9@sha256:8235d925582c44ea38fce014c14a4b674ae99bdf90440d7d1e9b552f4dd67069_amd64", + "product_id": "mta/mta-windup-addon-rhel9@sha256:8235d925582c44ea38fce014c14a4b674ae99bdf90440d7d1e9b552f4dd67069_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mta-windup-addon-rhel9@sha256:8235d925582c44ea38fce014c14a4b674ae99bdf90440d7d1e9b552f4dd67069?arch=amd64&repository_url=registry.redhat.io/mta/mta-windup-addon-rhel9&tag=6.2.1-3" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "container-native-virtualization/bridge-marker@sha256:23d0f2055443e81079ef82573ff23539ff03bc0a57912638b80fdf24d6e74b4f_amd64", + "product": { + "name": "container-native-virtualization/bridge-marker@sha256:23d0f2055443e81079ef82573ff23539ff03bc0a57912638b80fdf24d6e74b4f_amd64", + "product_id": "container-native-virtualization/bridge-marker@sha256:23d0f2055443e81079ef82573ff23539ff03bc0a57912638b80fdf24d6e74b4f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/bridge-marker@sha256:23d0f2055443e81079ef82573ff23539ff03bc0a57912638b80fdf24d6e74b4f?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/bridge-marker&tag=v4.12.8-3" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/cluster-network-addons-operator@sha256:c9106a0cdf723043ad2e94fe746d084ffb4cdf50292763922389acafb6d1abf7_amd64", + "product": { + "name": "container-native-virtualization/cluster-network-addons-operator@sha256:c9106a0cdf723043ad2e94fe746d084ffb4cdf50292763922389acafb6d1abf7_amd64", + "product_id": "container-native-virtualization/cluster-network-addons-operator@sha256:c9106a0cdf723043ad2e94fe746d084ffb4cdf50292763922389acafb6d1abf7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-network-addons-operator@sha256:c9106a0cdf723043ad2e94fe746d084ffb4cdf50292763922389acafb6d1abf7?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/cluster-network-addons-operator&tag=v4.12.8-3" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/cnv-containernetworking-plugins@sha256:b60bc0fd0988c23c1224280c9b63e98d5b77998f0ed24e12a55158da8971ae4d_amd64", + "product": { + "name": "container-native-virtualization/cnv-containernetworking-plugins@sha256:b60bc0fd0988c23c1224280c9b63e98d5b77998f0ed24e12a55158da8971ae4d_amd64", + "product_id": "container-native-virtualization/cnv-containernetworking-plugins@sha256:b60bc0fd0988c23c1224280c9b63e98d5b77998f0ed24e12a55158da8971ae4d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cnv-containernetworking-plugins@sha256:b60bc0fd0988c23c1224280c9b63e98d5b77998f0ed24e12a55158da8971ae4d?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/cnv-containernetworking-plugins&tag=v4.12.8-3" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/cnv-must-gather-rhel8@sha256:74ff80f2d32a0d1dd58c7ac63cc2c5792146e3bc2a65b57727e172e0da8ed994_amd64", + "product": { + "name": "container-native-virtualization/cnv-must-gather-rhel8@sha256:74ff80f2d32a0d1dd58c7ac63cc2c5792146e3bc2a65b57727e172e0da8ed994_amd64", + "product_id": "container-native-virtualization/cnv-must-gather-rhel8@sha256:74ff80f2d32a0d1dd58c7ac63cc2c5792146e3bc2a65b57727e172e0da8ed994_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cnv-must-gather-rhel8@sha256:74ff80f2d32a0d1dd58c7ac63cc2c5792146e3bc2a65b57727e172e0da8ed994?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/cnv-must-gather-rhel8&tag=v4.12.8-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hco-bundle-registry@sha256:dddf77c42a60a2837388448d294a65719281984009708a1d90ce328c3d95aa28_amd64", + "product": { + "name": "container-native-virtualization/hco-bundle-registry@sha256:dddf77c42a60a2837388448d294a65719281984009708a1d90ce328c3d95aa28_amd64", + "product_id": "container-native-virtualization/hco-bundle-registry@sha256:dddf77c42a60a2837388448d294a65719281984009708a1d90ce328c3d95aa28_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hco-bundle-registry@sha256:dddf77c42a60a2837388448d294a65719281984009708a1d90ce328c3d95aa28?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hco-bundle-registry&tag=v4.12.8-17" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hostpath-csi-driver@sha256:6b9c72bfb44b3ed66ffbe7785bfa44d81bed9b5c802e8f664d5bd129789a108a_amd64", + "product": { + "name": "container-native-virtualization/hostpath-csi-driver@sha256:6b9c72bfb44b3ed66ffbe7785bfa44d81bed9b5c802e8f664d5bd129789a108a_amd64", + "product_id": "container-native-virtualization/hostpath-csi-driver@sha256:6b9c72bfb44b3ed66ffbe7785bfa44d81bed9b5c802e8f664d5bd129789a108a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hostpath-csi-driver@sha256:6b9c72bfb44b3ed66ffbe7785bfa44d81bed9b5c802e8f664d5bd129789a108a?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hostpath-csi-driver&tag=v4.12.8-4" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hostpath-provisioner-rhel8@sha256:a6c27e3bdbf23952f0eacb1be73c14eabb02b9e6ed12ac2f1fa3f386de11ed8c_amd64", + "product": { + "name": "container-native-virtualization/hostpath-provisioner-rhel8@sha256:a6c27e3bdbf23952f0eacb1be73c14eabb02b9e6ed12ac2f1fa3f386de11ed8c_amd64", + "product_id": "container-native-virtualization/hostpath-provisioner-rhel8@sha256:a6c27e3bdbf23952f0eacb1be73c14eabb02b9e6ed12ac2f1fa3f386de11ed8c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hostpath-provisioner-rhel8@sha256:a6c27e3bdbf23952f0eacb1be73c14eabb02b9e6ed12ac2f1fa3f386de11ed8c?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel8&tag=v4.12.8-4" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hostpath-provisioner-rhel8-operator@sha256:97a53da9d0aa186d8120558b071c8a609db2e9fdf55e88780c4df4a96d1e7fb9_amd64", + "product": { + "name": "container-native-virtualization/hostpath-provisioner-rhel8-operator@sha256:97a53da9d0aa186d8120558b071c8a609db2e9fdf55e88780c4df4a96d1e7fb9_amd64", + "product_id": "container-native-virtualization/hostpath-provisioner-rhel8-operator@sha256:97a53da9d0aa186d8120558b071c8a609db2e9fdf55e88780c4df4a96d1e7fb9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hostpath-provisioner-rhel8-operator@sha256:97a53da9d0aa186d8120558b071c8a609db2e9fdf55e88780c4df4a96d1e7fb9?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel8-operator&tag=v4.12.8-4" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hyperconverged-cluster-operator@sha256:5fbe17bcbbf20acae781c4fbdde81d1d53469f276b217a9a0339baae8c28a442_amd64", + "product": { + "name": "container-native-virtualization/hyperconverged-cluster-operator@sha256:5fbe17bcbbf20acae781c4fbdde81d1d53469f276b217a9a0339baae8c28a442_amd64", + "product_id": "container-native-virtualization/hyperconverged-cluster-operator@sha256:5fbe17bcbbf20acae781c4fbdde81d1d53469f276b217a9a0339baae8c28a442_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hyperconverged-cluster-operator@sha256:5fbe17bcbbf20acae781c4fbdde81d1d53469f276b217a9a0339baae8c28a442?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hyperconverged-cluster-operator&tag=v4.12.8-4" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hyperconverged-cluster-webhook-rhel8@sha256:3b73aae81279eb9fc9354a141230a2ae2ffaf767ec430653ceef9e8a6f5b2578_amd64", + "product": { + "name": "container-native-virtualization/hyperconverged-cluster-webhook-rhel8@sha256:3b73aae81279eb9fc9354a141230a2ae2ffaf767ec430653ceef9e8a6f5b2578_amd64", + "product_id": "container-native-virtualization/hyperconverged-cluster-webhook-rhel8@sha256:3b73aae81279eb9fc9354a141230a2ae2ffaf767ec430653ceef9e8a6f5b2578_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hyperconverged-cluster-webhook-rhel8@sha256:3b73aae81279eb9fc9354a141230a2ae2ffaf767ec430653ceef9e8a6f5b2578?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hyperconverged-cluster-webhook-rhel8&tag=v4.12.8-4" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubemacpool@sha256:a63b4835f1e1afc3d5da3b80526e494ace5fe6917a51526648b9b1228168f552_amd64", + "product": { + "name": "container-native-virtualization/kubemacpool@sha256:a63b4835f1e1afc3d5da3b80526e494ace5fe6917a51526648b9b1228168f552_amd64", + "product_id": "container-native-virtualization/kubemacpool@sha256:a63b4835f1e1afc3d5da3b80526e494ace5fe6917a51526648b9b1228168f552_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubemacpool@sha256:a63b4835f1e1afc3d5da3b80526e494ace5fe6917a51526648b9b1228168f552?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubemacpool&tag=v4.12.8-3" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-console-plugin@sha256:861fb3b8d3b009f5dda71338f5dc340081e4501cc38af55c8d03a1c00378c6a3_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-console-plugin@sha256:861fb3b8d3b009f5dda71338f5dc340081e4501cc38af55c8d03a1c00378c6a3_amd64", + "product_id": "container-native-virtualization/kubevirt-console-plugin@sha256:861fb3b8d3b009f5dda71338f5dc340081e4501cc38af55c8d03a1c00378c6a3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-console-plugin@sha256:861fb3b8d3b009f5dda71338f5dc340081e4501cc38af55c8d03a1c00378c6a3?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-console-plugin&tag=v4.12.8-3" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-ssp-operator@sha256:8218a9b29aaa5bdcddc4b67256c802fc555fc2b96fc2045671d9a62faa0517e5_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-ssp-operator@sha256:8218a9b29aaa5bdcddc4b67256c802fc555fc2b96fc2045671d9a62faa0517e5_amd64", + "product_id": "container-native-virtualization/kubevirt-ssp-operator@sha256:8218a9b29aaa5bdcddc4b67256c802fc555fc2b96fc2045671d9a62faa0517e5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-ssp-operator@sha256:8218a9b29aaa5bdcddc4b67256c802fc555fc2b96fc2045671d9a62faa0517e5?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-ssp-operator&tag=v4.12.8-4" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm@sha256:a530fcc39c11350dabf592c52288a44521f639a91716afe40c31f676a0287eb2_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm@sha256:a530fcc39c11350dabf592c52288a44521f639a91716afe40c31f676a0287eb2_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm@sha256:a530fcc39c11350dabf592c52288a44521f639a91716afe40c31f676a0287eb2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-cleanup-vm@sha256:a530fcc39c11350dabf592c52288a44521f639a91716afe40c31f676a0287eb2?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm&tag=v4.12.8-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-copy-template@sha256:b9f5f854305f631dd893995365e92ecb6a20085c84cab124bd5a1f715bbf110b_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-copy-template@sha256:b9f5f854305f631dd893995365e92ecb6a20085c84cab124bd5a1f715bbf110b_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-copy-template@sha256:b9f5f854305f631dd893995365e92ecb6a20085c84cab124bd5a1f715bbf110b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-copy-template@sha256:b9f5f854305f631dd893995365e92ecb6a20085c84cab124bd5a1f715bbf110b?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-copy-template&tag=v4.12.8-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume@sha256:1fbad55cf897a63ba992609d0b966d1a15ea33c65772a89d3ed03cc565c88ff3_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume@sha256:1fbad55cf897a63ba992609d0b966d1a15ea33c65772a89d3ed03cc565c88ff3_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume@sha256:1fbad55cf897a63ba992609d0b966d1a15ea33c65772a89d3ed03cc565c88ff3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-create-datavolume@sha256:1fbad55cf897a63ba992609d0b966d1a15ea33c65772a89d3ed03cc565c88ff3?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-create-datavolume&tag=v4.12.8-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template@sha256:420a2f4a5ccf17d354945725efd872ce48042afb02f9446348d95086f6c074e6_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template@sha256:420a2f4a5ccf17d354945725efd872ce48042afb02f9446348d95086f6c074e6_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template@sha256:420a2f4a5ccf17d354945725efd872ce48042afb02f9446348d95086f6c074e6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-create-vm-from-template@sha256:420a2f4a5ccf17d354945725efd872ce48042afb02f9446348d95086f6c074e6?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template&tag=v4.12.8-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize@sha256:aa24caef43563243aa45e2146a9be4ebe15a55e7d47cd043d0a2e1094d4662bb_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize@sha256:aa24caef43563243aa45e2146a9be4ebe15a55e7d47cd043d0a2e1094d4662bb_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize@sha256:aa24caef43563243aa45e2146a9be4ebe15a55e7d47cd043d0a2e1094d4662bb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-disk-virt-customize@sha256:aa24caef43563243aa45e2146a9be4ebe15a55e7d47cd043d0a2e1094d4662bb?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize&tag=v4.12.8-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep@sha256:0cb042eb4f9f6c8d1436d010eb9691ceb5c02f0f273ae458780ad92727f45908_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep@sha256:0cb042eb4f9f6c8d1436d010eb9691ceb5c02f0f273ae458780ad92727f45908_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep@sha256:0cb042eb4f9f6c8d1436d010eb9691ceb5c02f0f273ae458780ad92727f45908_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-disk-virt-sysprep@sha256:0cb042eb4f9f6c8d1436d010eb9691ceb5c02f0f273ae458780ad92727f45908?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep&tag=v4.12.8-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template@sha256:6337cb6e7978d8622f6948f81bd927ba97265baaedf3c527bf2b0bc9d33fd7af_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template@sha256:6337cb6e7978d8622f6948f81bd927ba97265baaedf3c527bf2b0bc9d33fd7af_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template@sha256:6337cb6e7978d8622f6948f81bd927ba97265baaedf3c527bf2b0bc9d33fd7af_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-modify-vm-template@sha256:6337cb6e7978d8622f6948f81bd927ba97265baaedf3c527bf2b0bc9d33fd7af?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template&tag=v4.12.8-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-operator@sha256:108b0a434e22eb7837b225f711d63303a08193d8af3883522c992d6486c26353_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-operator@sha256:108b0a434e22eb7837b225f711d63303a08193d8af3883522c992d6486c26353_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-operator@sha256:108b0a434e22eb7837b225f711d63303a08193d8af3883522c992d6486c26353_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-operator@sha256:108b0a434e22eb7837b225f711d63303a08193d8af3883522c992d6486c26353?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-operator&tag=v4.12.8-4" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status@sha256:4b393bbab7a0da4574a285ec365da0559e137e55c28b88ec9f4c7b75a0bde133_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status@sha256:4b393bbab7a0da4574a285ec365da0559e137e55c28b88ec9f4c7b75a0bde133_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status@sha256:4b393bbab7a0da4574a285ec365da0559e137e55c28b88ec9f4c7b75a0bde133_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-wait-for-vmi-status@sha256:4b393bbab7a0da4574a285ec365da0559e137e55c28b88ec9f4c7b75a0bde133?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status&tag=v4.12.8-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-template-validator@sha256:053df4781a11f4353e06fcc7b12e8fb81a52b7bccab5f8a6c98f56947d05c270_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-template-validator@sha256:053df4781a11f4353e06fcc7b12e8fb81a52b7bccab5f8a6c98f56947d05c270_amd64", + "product_id": "container-native-virtualization/kubevirt-template-validator@sha256:053df4781a11f4353e06fcc7b12e8fb81a52b7bccab5f8a6c98f56947d05c270_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-template-validator@sha256:053df4781a11f4353e06fcc7b12e8fb81a52b7bccab5f8a6c98f56947d05c270?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-template-validator&tag=v4.12.8-4" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/libguestfs-tools@sha256:9b0649921289b2484e05760c81890262cae75d9cbac2764ec258b57fa3b7e605_amd64", + "product": { + "name": "container-native-virtualization/libguestfs-tools@sha256:9b0649921289b2484e05760c81890262cae75d9cbac2764ec258b57fa3b7e605_amd64", + "product_id": "container-native-virtualization/libguestfs-tools@sha256:9b0649921289b2484e05760c81890262cae75d9cbac2764ec258b57fa3b7e605_amd64", + "product_identification_helper": { + "purl": "pkg:oci/libguestfs-tools@sha256:9b0649921289b2484e05760c81890262cae75d9cbac2764ec258b57fa3b7e605?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/libguestfs-tools&tag=v4.12.8-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/ovs-cni-marker@sha256:43a216c37d6ff86c2ac963f64022e1b4c475a64cb681bb504879caf70f8688df_amd64", + "product": { + "name": "container-native-virtualization/ovs-cni-marker@sha256:43a216c37d6ff86c2ac963f64022e1b4c475a64cb681bb504879caf70f8688df_amd64", + "product_id": "container-native-virtualization/ovs-cni-marker@sha256:43a216c37d6ff86c2ac963f64022e1b4c475a64cb681bb504879caf70f8688df_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ovs-cni-marker@sha256:43a216c37d6ff86c2ac963f64022e1b4c475a64cb681bb504879caf70f8688df?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/ovs-cni-marker&tag=v4.12.8-3" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/ovs-cni-plugin@sha256:dc55c6e82516b8fc6b80b858cc9c308384998b8bb578252ca25e919e3fcf7c08_amd64", + "product": { + "name": "container-native-virtualization/ovs-cni-plugin@sha256:dc55c6e82516b8fc6b80b858cc9c308384998b8bb578252ca25e919e3fcf7c08_amd64", + "product_id": "container-native-virtualization/ovs-cni-plugin@sha256:dc55c6e82516b8fc6b80b858cc9c308384998b8bb578252ca25e919e3fcf7c08_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ovs-cni-plugin@sha256:dc55c6e82516b8fc6b80b858cc9c308384998b8bb578252ca25e919e3fcf7c08?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/ovs-cni-plugin&tag=v4.12.8-3" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-api@sha256:8a8079e2bed79b5d18796db8ba44d56610b68544974e55c851b0116997b82414_amd64", + "product": { + "name": "container-native-virtualization/virt-api@sha256:8a8079e2bed79b5d18796db8ba44d56610b68544974e55c851b0116997b82414_amd64", + "product_id": "container-native-virtualization/virt-api@sha256:8a8079e2bed79b5d18796db8ba44d56610b68544974e55c851b0116997b82414_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-api@sha256:8a8079e2bed79b5d18796db8ba44d56610b68544974e55c851b0116997b82414?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-api&tag=v4.12.8-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-artifacts-server@sha256:383022adea0838abf0e7394b95059b995e616427eed4fff1e65d125c14c0a7e5_amd64", + "product": { + "name": "container-native-virtualization/virt-artifacts-server@sha256:383022adea0838abf0e7394b95059b995e616427eed4fff1e65d125c14c0a7e5_amd64", + "product_id": "container-native-virtualization/virt-artifacts-server@sha256:383022adea0838abf0e7394b95059b995e616427eed4fff1e65d125c14c0a7e5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-artifacts-server@sha256:383022adea0838abf0e7394b95059b995e616427eed4fff1e65d125c14c0a7e5?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-artifacts-server&tag=v4.12.8-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-apiserver@sha256:10c4bb9ad748bac9b04ef16f542941a67a4c78d8dd4069c8f5cbade859ae3dba_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-apiserver@sha256:10c4bb9ad748bac9b04ef16f542941a67a4c78d8dd4069c8f5cbade859ae3dba_amd64", + "product_id": "container-native-virtualization/virt-cdi-apiserver@sha256:10c4bb9ad748bac9b04ef16f542941a67a4c78d8dd4069c8f5cbade859ae3dba_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-apiserver@sha256:10c4bb9ad748bac9b04ef16f542941a67a4c78d8dd4069c8f5cbade859ae3dba?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-apiserver&tag=v4.12.8-3" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-cloner@sha256:fba428882b1637778d373ebd4c86842235fad5115334110e5d41514ccfde64c6_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-cloner@sha256:fba428882b1637778d373ebd4c86842235fad5115334110e5d41514ccfde64c6_amd64", + "product_id": "container-native-virtualization/virt-cdi-cloner@sha256:fba428882b1637778d373ebd4c86842235fad5115334110e5d41514ccfde64c6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-cloner@sha256:fba428882b1637778d373ebd4c86842235fad5115334110e5d41514ccfde64c6?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-cloner&tag=v4.12.8-3" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-controller@sha256:97208eac253cb235dd67214dc6e8bdc5335f438250b662c4ba30fb6735ea6ecb_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-controller@sha256:97208eac253cb235dd67214dc6e8bdc5335f438250b662c4ba30fb6735ea6ecb_amd64", + "product_id": "container-native-virtualization/virt-cdi-controller@sha256:97208eac253cb235dd67214dc6e8bdc5335f438250b662c4ba30fb6735ea6ecb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-controller@sha256:97208eac253cb235dd67214dc6e8bdc5335f438250b662c4ba30fb6735ea6ecb?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-controller&tag=v4.12.8-3" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-importer@sha256:7296bc1fc028558ad2c011b3a4ea66e2f058c2d0c0ca128703699ea40ad12ac2_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-importer@sha256:7296bc1fc028558ad2c011b3a4ea66e2f058c2d0c0ca128703699ea40ad12ac2_amd64", + "product_id": "container-native-virtualization/virt-cdi-importer@sha256:7296bc1fc028558ad2c011b3a4ea66e2f058c2d0c0ca128703699ea40ad12ac2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-importer@sha256:7296bc1fc028558ad2c011b3a4ea66e2f058c2d0c0ca128703699ea40ad12ac2?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-importer&tag=v4.12.8-3" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-operator@sha256:8c17826aa039376a4a50f9a2db48b3f2797b14b915aa069826f4278182fb5e22_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-operator@sha256:8c17826aa039376a4a50f9a2db48b3f2797b14b915aa069826f4278182fb5e22_amd64", + "product_id": "container-native-virtualization/virt-cdi-operator@sha256:8c17826aa039376a4a50f9a2db48b3f2797b14b915aa069826f4278182fb5e22_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-operator@sha256:8c17826aa039376a4a50f9a2db48b3f2797b14b915aa069826f4278182fb5e22?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-operator&tag=v4.12.8-3" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-uploadproxy@sha256:c980ef56b6e73b9f7e76b05b61a245d891465c3ce6a779591ef9bffa79aaa2f8_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-uploadproxy@sha256:c980ef56b6e73b9f7e76b05b61a245d891465c3ce6a779591ef9bffa79aaa2f8_amd64", + "product_id": "container-native-virtualization/virt-cdi-uploadproxy@sha256:c980ef56b6e73b9f7e76b05b61a245d891465c3ce6a779591ef9bffa79aaa2f8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-uploadproxy@sha256:c980ef56b6e73b9f7e76b05b61a245d891465c3ce6a779591ef9bffa79aaa2f8?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-uploadproxy&tag=v4.12.8-3" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-uploadserver@sha256:42e669ed714ce412b299d52edf016d478c715127916846265cc48342d9e9fcb4_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-uploadserver@sha256:42e669ed714ce412b299d52edf016d478c715127916846265cc48342d9e9fcb4_amd64", + "product_id": "container-native-virtualization/virt-cdi-uploadserver@sha256:42e669ed714ce412b299d52edf016d478c715127916846265cc48342d9e9fcb4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-uploadserver@sha256:42e669ed714ce412b299d52edf016d478c715127916846265cc48342d9e9fcb4?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-uploadserver&tag=v4.12.8-3" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-controller@sha256:c7ef9a1f3dcd6ba257b3f6a5431cf8cce5809a4b76fa14523c65b45af995bc40_amd64", + "product": { + "name": "container-native-virtualization/virt-controller@sha256:c7ef9a1f3dcd6ba257b3f6a5431cf8cce5809a4b76fa14523c65b45af995bc40_amd64", + "product_id": "container-native-virtualization/virt-controller@sha256:c7ef9a1f3dcd6ba257b3f6a5431cf8cce5809a4b76fa14523c65b45af995bc40_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-controller@sha256:c7ef9a1f3dcd6ba257b3f6a5431cf8cce5809a4b76fa14523c65b45af995bc40?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-controller&tag=v4.12.8-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-exportproxy@sha256:4b4fe7649612d6230cac655ae7ca5e2c4b2817911bdac9d9b1d53b233d7a4a72_amd64", + "product": { + "name": "container-native-virtualization/virt-exportproxy@sha256:4b4fe7649612d6230cac655ae7ca5e2c4b2817911bdac9d9b1d53b233d7a4a72_amd64", + "product_id": "container-native-virtualization/virt-exportproxy@sha256:4b4fe7649612d6230cac655ae7ca5e2c4b2817911bdac9d9b1d53b233d7a4a72_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-exportproxy@sha256:4b4fe7649612d6230cac655ae7ca5e2c4b2817911bdac9d9b1d53b233d7a4a72?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-exportproxy&tag=v4.12.8-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-exportserver@sha256:13a1fd0199c6af5555c7a357f495b160304a67fc680dc57fde1dea98a6a08e67_amd64", + "product": { + "name": "container-native-virtualization/virt-exportserver@sha256:13a1fd0199c6af5555c7a357f495b160304a67fc680dc57fde1dea98a6a08e67_amd64", + "product_id": "container-native-virtualization/virt-exportserver@sha256:13a1fd0199c6af5555c7a357f495b160304a67fc680dc57fde1dea98a6a08e67_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-exportserver@sha256:13a1fd0199c6af5555c7a357f495b160304a67fc680dc57fde1dea98a6a08e67?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-exportserver&tag=v4.12.8-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-handler@sha256:cc93189523fcc3eb3f023a576eb9501234d5d862fb91136ae16e631b0abcbe29_amd64", + "product": { + "name": "container-native-virtualization/virt-handler@sha256:cc93189523fcc3eb3f023a576eb9501234d5d862fb91136ae16e631b0abcbe29_amd64", + "product_id": "container-native-virtualization/virt-handler@sha256:cc93189523fcc3eb3f023a576eb9501234d5d862fb91136ae16e631b0abcbe29_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-handler@sha256:cc93189523fcc3eb3f023a576eb9501234d5d862fb91136ae16e631b0abcbe29?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-handler&tag=v4.12.8-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virtio-win@sha256:da501d80839308b9603eaf8fdc99cdb8f67a4c25e67b3897a162b54e7d113826_amd64", + "product": { + "name": "container-native-virtualization/virtio-win@sha256:da501d80839308b9603eaf8fdc99cdb8f67a4c25e67b3897a162b54e7d113826_amd64", + "product_id": "container-native-virtualization/virtio-win@sha256:da501d80839308b9603eaf8fdc99cdb8f67a4c25e67b3897a162b54e7d113826_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virtio-win@sha256:da501d80839308b9603eaf8fdc99cdb8f67a4c25e67b3897a162b54e7d113826?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virtio-win&tag=v4.12.8-2" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-launcher@sha256:d58d3f87c690066148fd32f4549b1df516a4085bf6bdb8de4abcd033047cf6a0_amd64", + "product": { + "name": "container-native-virtualization/virt-launcher@sha256:d58d3f87c690066148fd32f4549b1df516a4085bf6bdb8de4abcd033047cf6a0_amd64", + "product_id": "container-native-virtualization/virt-launcher@sha256:d58d3f87c690066148fd32f4549b1df516a4085bf6bdb8de4abcd033047cf6a0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-launcher@sha256:d58d3f87c690066148fd32f4549b1df516a4085bf6bdb8de4abcd033047cf6a0?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-launcher&tag=v4.12.8-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-operator@sha256:c2daeb82867dd85031ec6bb2251f9ba7e6a3961ad89c59d96c4d223e7856824c_amd64", + "product": { + "name": "container-native-virtualization/virt-operator@sha256:c2daeb82867dd85031ec6bb2251f9ba7e6a3961ad89c59d96c4d223e7856824c_amd64", + "product_id": "container-native-virtualization/virt-operator@sha256:c2daeb82867dd85031ec6bb2251f9ba7e6a3961ad89c59d96c4d223e7856824c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-operator@sha256:c2daeb82867dd85031ec6bb2251f9ba7e6a3961ad89c59d96c4d223e7856824c?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-operator&tag=v4.12.8-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/vm-network-latency-checkup@sha256:f33051f5c6ac1c7f3098e48b5388fde6c11830136641802d77a8e433cfd942fa_amd64", + "product": { + "name": "container-native-virtualization/vm-network-latency-checkup@sha256:f33051f5c6ac1c7f3098e48b5388fde6c11830136641802d77a8e433cfd942fa_amd64", + "product_id": "container-native-virtualization/vm-network-latency-checkup@sha256:f33051f5c6ac1c7f3098e48b5388fde6c11830136641802d77a8e433cfd942fa_amd64", + "product_identification_helper": { + "purl": "pkg:oci/vm-network-latency-checkup@sha256:f33051f5c6ac1c7f3098e48b5388fde6c11830136641802d77a8e433cfd942fa?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/vm-network-latency-checkup&tag=v4.12.8-4" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "container-native-virtualization/bridge-marker@sha256:6ec0d63868d6c69891b96338782db6ddefb6eeeb155a8b316112cfa3b756885c_amd64", + "product": { + "name": "container-native-virtualization/bridge-marker@sha256:6ec0d63868d6c69891b96338782db6ddefb6eeeb155a8b316112cfa3b756885c_amd64", + "product_id": "container-native-virtualization/bridge-marker@sha256:6ec0d63868d6c69891b96338782db6ddefb6eeeb155a8b316112cfa3b756885c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/bridge-marker@sha256:6ec0d63868d6c69891b96338782db6ddefb6eeeb155a8b316112cfa3b756885c?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/bridge-marker&tag=v4.11.7-4" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/checkup-framework@sha256:7a9443d47b8f954670ff3a8f0196f26a3a7bb4b16d2c3469a22d01172f31fc26_amd64", + "product": { + "name": "container-native-virtualization/checkup-framework@sha256:7a9443d47b8f954670ff3a8f0196f26a3a7bb4b16d2c3469a22d01172f31fc26_amd64", + "product_id": "container-native-virtualization/checkup-framework@sha256:7a9443d47b8f954670ff3a8f0196f26a3a7bb4b16d2c3469a22d01172f31fc26_amd64", + "product_identification_helper": { + "purl": "pkg:oci/checkup-framework@sha256:7a9443d47b8f954670ff3a8f0196f26a3a7bb4b16d2c3469a22d01172f31fc26?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/checkup-framework&tag=v4.11.7-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/cluster-network-addons-operator@sha256:bf77cbd3fa96da043778f1f27ccf009097f53a46ca1584b440a15623a6edde88_amd64", + "product": { + "name": "container-native-virtualization/cluster-network-addons-operator@sha256:bf77cbd3fa96da043778f1f27ccf009097f53a46ca1584b440a15623a6edde88_amd64", + "product_id": "container-native-virtualization/cluster-network-addons-operator@sha256:bf77cbd3fa96da043778f1f27ccf009097f53a46ca1584b440a15623a6edde88_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-network-addons-operator@sha256:bf77cbd3fa96da043778f1f27ccf009097f53a46ca1584b440a15623a6edde88?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/cluster-network-addons-operator&tag=v4.11.7-4" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/cnv-containernetworking-plugins@sha256:d34dbb657cb4a631ccca5687f05a9387d679cf03d9899c0843b4f1733ee64103_amd64", + "product": { + "name": "container-native-virtualization/cnv-containernetworking-plugins@sha256:d34dbb657cb4a631ccca5687f05a9387d679cf03d9899c0843b4f1733ee64103_amd64", + "product_id": "container-native-virtualization/cnv-containernetworking-plugins@sha256:d34dbb657cb4a631ccca5687f05a9387d679cf03d9899c0843b4f1733ee64103_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cnv-containernetworking-plugins@sha256:d34dbb657cb4a631ccca5687f05a9387d679cf03d9899c0843b4f1733ee64103?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/cnv-containernetworking-plugins&tag=v4.11.7-4" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/cnv-must-gather-rhel8@sha256:575bce5098573be251955aca405570171a458f6993d6735aa39b52012dd0320c_amd64", + "product": { + "name": "container-native-virtualization/cnv-must-gather-rhel8@sha256:575bce5098573be251955aca405570171a458f6993d6735aa39b52012dd0320c_amd64", + "product_id": "container-native-virtualization/cnv-must-gather-rhel8@sha256:575bce5098573be251955aca405570171a458f6993d6735aa39b52012dd0320c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cnv-must-gather-rhel8@sha256:575bce5098573be251955aca405570171a458f6993d6735aa39b52012dd0320c?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/cnv-must-gather-rhel8&tag=v4.11.7-10" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hco-bundle-registry@sha256:d2530174f8d682e186b1be97d1e567927c1aaaa7fe5fa1f83eb826608515dccc_amd64", + "product": { + "name": "container-native-virtualization/hco-bundle-registry@sha256:d2530174f8d682e186b1be97d1e567927c1aaaa7fe5fa1f83eb826608515dccc_amd64", + "product_id": "container-native-virtualization/hco-bundle-registry@sha256:d2530174f8d682e186b1be97d1e567927c1aaaa7fe5fa1f83eb826608515dccc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hco-bundle-registry@sha256:d2530174f8d682e186b1be97d1e567927c1aaaa7fe5fa1f83eb826608515dccc?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hco-bundle-registry&tag=v4.11.7-35" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hostpath-csi-driver@sha256:20488cf9f269a34be9a3d82e04a28b598b26be0a495f51a47a8dba02f7e9d974_amd64", + "product": { + "name": "container-native-virtualization/hostpath-csi-driver@sha256:20488cf9f269a34be9a3d82e04a28b598b26be0a495f51a47a8dba02f7e9d974_amd64", + "product_id": "container-native-virtualization/hostpath-csi-driver@sha256:20488cf9f269a34be9a3d82e04a28b598b26be0a495f51a47a8dba02f7e9d974_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hostpath-csi-driver@sha256:20488cf9f269a34be9a3d82e04a28b598b26be0a495f51a47a8dba02f7e9d974?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hostpath-csi-driver&tag=v4.11.7-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hostpath-csi-driver-rhel8@sha256:20488cf9f269a34be9a3d82e04a28b598b26be0a495f51a47a8dba02f7e9d974_amd64", + "product": { + "name": "container-native-virtualization/hostpath-csi-driver-rhel8@sha256:20488cf9f269a34be9a3d82e04a28b598b26be0a495f51a47a8dba02f7e9d974_amd64", + "product_id": "container-native-virtualization/hostpath-csi-driver-rhel8@sha256:20488cf9f269a34be9a3d82e04a28b598b26be0a495f51a47a8dba02f7e9d974_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hostpath-csi-driver-rhel8@sha256:20488cf9f269a34be9a3d82e04a28b598b26be0a495f51a47a8dba02f7e9d974?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel8&tag=v4.11.7-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hostpath-provisioner-rhel8@sha256:6a49eb5fa0d5d85d028753ccfda32c66c0d26f1d6bd4d264f0d7f1af7887e131_amd64", + "product": { + "name": "container-native-virtualization/hostpath-provisioner-rhel8@sha256:6a49eb5fa0d5d85d028753ccfda32c66c0d26f1d6bd4d264f0d7f1af7887e131_amd64", + "product_id": "container-native-virtualization/hostpath-provisioner-rhel8@sha256:6a49eb5fa0d5d85d028753ccfda32c66c0d26f1d6bd4d264f0d7f1af7887e131_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hostpath-provisioner-rhel8@sha256:6a49eb5fa0d5d85d028753ccfda32c66c0d26f1d6bd4d264f0d7f1af7887e131?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel8&tag=v4.11.7-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hostpath-provisioner-rhel8-operator@sha256:d0755533e714fde9377688064f67e3949d94db4307c36b16d9e4990caa2080b6_amd64", + "product": { + "name": "container-native-virtualization/hostpath-provisioner-rhel8-operator@sha256:d0755533e714fde9377688064f67e3949d94db4307c36b16d9e4990caa2080b6_amd64", + "product_id": "container-native-virtualization/hostpath-provisioner-rhel8-operator@sha256:d0755533e714fde9377688064f67e3949d94db4307c36b16d9e4990caa2080b6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hostpath-provisioner-rhel8-operator@sha256:d0755533e714fde9377688064f67e3949d94db4307c36b16d9e4990caa2080b6?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel8-operator&tag=v4.11.7-4" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hyperconverged-cluster-operator@sha256:5d446416c7c4ac98bf24b5c0bf7631e7feb55ebb898aedace28f8484ae628cf5_amd64", + "product": { + "name": "container-native-virtualization/hyperconverged-cluster-operator@sha256:5d446416c7c4ac98bf24b5c0bf7631e7feb55ebb898aedace28f8484ae628cf5_amd64", + "product_id": "container-native-virtualization/hyperconverged-cluster-operator@sha256:5d446416c7c4ac98bf24b5c0bf7631e7feb55ebb898aedace28f8484ae628cf5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hyperconverged-cluster-operator@sha256:5d446416c7c4ac98bf24b5c0bf7631e7feb55ebb898aedace28f8484ae628cf5?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hyperconverged-cluster-operator&tag=v4.11.7-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hyperconverged-cluster-webhook-rhel8@sha256:3f8b6e4d39648595a62b087f49b9a8e8844bf2f9a743e32db69bdcc491831b55_amd64", + "product": { + "name": "container-native-virtualization/hyperconverged-cluster-webhook-rhel8@sha256:3f8b6e4d39648595a62b087f49b9a8e8844bf2f9a743e32db69bdcc491831b55_amd64", + "product_id": "container-native-virtualization/hyperconverged-cluster-webhook-rhel8@sha256:3f8b6e4d39648595a62b087f49b9a8e8844bf2f9a743e32db69bdcc491831b55_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hyperconverged-cluster-webhook-rhel8@sha256:3f8b6e4d39648595a62b087f49b9a8e8844bf2f9a743e32db69bdcc491831b55?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hyperconverged-cluster-webhook-rhel8&tag=v4.11.7-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubemacpool@sha256:cfb161f31bc459f160a31cf9ad4ec8f0d7ee9140c13b8ba2e6477cdb971f6384_amd64", + "product": { + "name": "container-native-virtualization/kubemacpool@sha256:cfb161f31bc459f160a31cf9ad4ec8f0d7ee9140c13b8ba2e6477cdb971f6384_amd64", + "product_id": "container-native-virtualization/kubemacpool@sha256:cfb161f31bc459f160a31cf9ad4ec8f0d7ee9140c13b8ba2e6477cdb971f6384_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubemacpool@sha256:cfb161f31bc459f160a31cf9ad4ec8f0d7ee9140c13b8ba2e6477cdb971f6384?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubemacpool&tag=v4.11.7-4" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-console-plugin@sha256:3ff40d3759ea6c50aeb143a5aff6f798611267452eb8111361ef9e0a89260bf5_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-console-plugin@sha256:3ff40d3759ea6c50aeb143a5aff6f798611267452eb8111361ef9e0a89260bf5_amd64", + "product_id": "container-native-virtualization/kubevirt-console-plugin@sha256:3ff40d3759ea6c50aeb143a5aff6f798611267452eb8111361ef9e0a89260bf5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-console-plugin@sha256:3ff40d3759ea6c50aeb143a5aff6f798611267452eb8111361ef9e0a89260bf5?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-console-plugin&tag=v4.11.7-7" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-ssp-operator@sha256:81fa9feb8418ebf53d9e386fc98a8ee45fd83c30496e3574626449ab19a10236_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-ssp-operator@sha256:81fa9feb8418ebf53d9e386fc98a8ee45fd83c30496e3574626449ab19a10236_amd64", + "product_id": "container-native-virtualization/kubevirt-ssp-operator@sha256:81fa9feb8418ebf53d9e386fc98a8ee45fd83c30496e3574626449ab19a10236_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-ssp-operator@sha256:81fa9feb8418ebf53d9e386fc98a8ee45fd83c30496e3574626449ab19a10236?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-ssp-operator&tag=v4.11.7-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm@sha256:8c7d9751d790df2471a9e8606afcb2880b800ec713a089b2a801df247a0f3fec_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm@sha256:8c7d9751d790df2471a9e8606afcb2880b800ec713a089b2a801df247a0f3fec_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm@sha256:8c7d9751d790df2471a9e8606afcb2880b800ec713a089b2a801df247a0f3fec_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-cleanup-vm@sha256:8c7d9751d790df2471a9e8606afcb2880b800ec713a089b2a801df247a0f3fec?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm&tag=v4.11.7-12" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-copy-template@sha256:f4b0b6daf093a75fcd8d4cc61496a316f86899e8ce4217e9f761def5f9d0e794_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-copy-template@sha256:f4b0b6daf093a75fcd8d4cc61496a316f86899e8ce4217e9f761def5f9d0e794_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-copy-template@sha256:f4b0b6daf093a75fcd8d4cc61496a316f86899e8ce4217e9f761def5f9d0e794_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-copy-template@sha256:f4b0b6daf093a75fcd8d4cc61496a316f86899e8ce4217e9f761def5f9d0e794?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-copy-template&tag=v4.11.7-12" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume@sha256:33a16329639f805c0d75a0ed6fe699755938f602230104715c0ad3b545aaf7fa_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume@sha256:33a16329639f805c0d75a0ed6fe699755938f602230104715c0ad3b545aaf7fa_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume@sha256:33a16329639f805c0d75a0ed6fe699755938f602230104715c0ad3b545aaf7fa_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-create-datavolume@sha256:33a16329639f805c0d75a0ed6fe699755938f602230104715c0ad3b545aaf7fa?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-create-datavolume&tag=v4.11.7-12" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template@sha256:caed594ab506d7cf550130d927b68bdcfb3707b8464f2d18da468d9b884c3017_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template@sha256:caed594ab506d7cf550130d927b68bdcfb3707b8464f2d18da468d9b884c3017_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template@sha256:caed594ab506d7cf550130d927b68bdcfb3707b8464f2d18da468d9b884c3017_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-create-vm-from-template@sha256:caed594ab506d7cf550130d927b68bdcfb3707b8464f2d18da468d9b884c3017?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template&tag=v4.11.7-12" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize@sha256:4980e6eeadf62bedffff98982f0f5b5e426b0ab01867057dba027e87f9557ce4_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize@sha256:4980e6eeadf62bedffff98982f0f5b5e426b0ab01867057dba027e87f9557ce4_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize@sha256:4980e6eeadf62bedffff98982f0f5b5e426b0ab01867057dba027e87f9557ce4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-disk-virt-customize@sha256:4980e6eeadf62bedffff98982f0f5b5e426b0ab01867057dba027e87f9557ce4?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize&tag=v4.11.7-12" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep@sha256:254f671bc0443d32ba60cfafa4ed4592c2030270b160c1e7b1d302d797bd9a82_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep@sha256:254f671bc0443d32ba60cfafa4ed4592c2030270b160c1e7b1d302d797bd9a82_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep@sha256:254f671bc0443d32ba60cfafa4ed4592c2030270b160c1e7b1d302d797bd9a82_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-disk-virt-sysprep@sha256:254f671bc0443d32ba60cfafa4ed4592c2030270b160c1e7b1d302d797bd9a82?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep&tag=v4.11.7-12" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template@sha256:69ceb3d47f3c8c32abcca8ec5ad7ebce42ce64e8200f77c1b829c2cb5495c478_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template@sha256:69ceb3d47f3c8c32abcca8ec5ad7ebce42ce64e8200f77c1b829c2cb5495c478_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template@sha256:69ceb3d47f3c8c32abcca8ec5ad7ebce42ce64e8200f77c1b829c2cb5495c478_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-modify-vm-template@sha256:69ceb3d47f3c8c32abcca8ec5ad7ebce42ce64e8200f77c1b829c2cb5495c478?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template&tag=v4.11.7-12" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-operator@sha256:ec2ac2bedd9f14ff0fbdfe3844d67f1361d59eb379ef6dfcd0fa5727635bdea4_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-operator@sha256:ec2ac2bedd9f14ff0fbdfe3844d67f1361d59eb379ef6dfcd0fa5727635bdea4_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-operator@sha256:ec2ac2bedd9f14ff0fbdfe3844d67f1361d59eb379ef6dfcd0fa5727635bdea4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-operator@sha256:ec2ac2bedd9f14ff0fbdfe3844d67f1361d59eb379ef6dfcd0fa5727635bdea4?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-operator&tag=v4.11.7-6" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status@sha256:a1fac42b6bf868c20ad974a0409cd62e68be20ea9e4ca5ff4ebc211bb9dc85ab_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status@sha256:a1fac42b6bf868c20ad974a0409cd62e68be20ea9e4ca5ff4ebc211bb9dc85ab_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status@sha256:a1fac42b6bf868c20ad974a0409cd62e68be20ea9e4ca5ff4ebc211bb9dc85ab_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-wait-for-vmi-status@sha256:a1fac42b6bf868c20ad974a0409cd62e68be20ea9e4ca5ff4ebc211bb9dc85ab?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status&tag=v4.11.7-12" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-template-validator@sha256:47b866156816f285cf7ea8b8d523e2ec84bc58751e1d593e98bf8ab493c8db09_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-template-validator@sha256:47b866156816f285cf7ea8b8d523e2ec84bc58751e1d593e98bf8ab493c8db09_amd64", + "product_id": "container-native-virtualization/kubevirt-template-validator@sha256:47b866156816f285cf7ea8b8d523e2ec84bc58751e1d593e98bf8ab493c8db09_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-template-validator@sha256:47b866156816f285cf7ea8b8d523e2ec84bc58751e1d593e98bf8ab493c8db09?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-template-validator&tag=v4.11.7-3" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/libguestfs-tools@sha256:0547ff01b9717560fd81ce291acc4b3e70098df3b80d42d35ec2b563b0ce035a_amd64", + "product": { + "name": "container-native-virtualization/libguestfs-tools@sha256:0547ff01b9717560fd81ce291acc4b3e70098df3b80d42d35ec2b563b0ce035a_amd64", + "product_id": "container-native-virtualization/libguestfs-tools@sha256:0547ff01b9717560fd81ce291acc4b3e70098df3b80d42d35ec2b563b0ce035a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/libguestfs-tools@sha256:0547ff01b9717560fd81ce291acc4b3e70098df3b80d42d35ec2b563b0ce035a?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/libguestfs-tools&tag=v4.11.7-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/ovs-cni-marker@sha256:7c44a0d3bb352c0327974ccb3c2054c6cff88fa58399b1e40409e197ad78d585_amd64", + "product": { + "name": "container-native-virtualization/ovs-cni-marker@sha256:7c44a0d3bb352c0327974ccb3c2054c6cff88fa58399b1e40409e197ad78d585_amd64", + "product_id": "container-native-virtualization/ovs-cni-marker@sha256:7c44a0d3bb352c0327974ccb3c2054c6cff88fa58399b1e40409e197ad78d585_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ovs-cni-marker@sha256:7c44a0d3bb352c0327974ccb3c2054c6cff88fa58399b1e40409e197ad78d585?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/ovs-cni-marker&tag=v4.11.7-4" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/ovs-cni-plugin@sha256:4eb3e9b62fa09edc3e678fa0afad10b8e1042fb95ddecaca7a48e79c392b3029_amd64", + "product": { + "name": "container-native-virtualization/ovs-cni-plugin@sha256:4eb3e9b62fa09edc3e678fa0afad10b8e1042fb95ddecaca7a48e79c392b3029_amd64", + "product_id": "container-native-virtualization/ovs-cni-plugin@sha256:4eb3e9b62fa09edc3e678fa0afad10b8e1042fb95ddecaca7a48e79c392b3029_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ovs-cni-plugin@sha256:4eb3e9b62fa09edc3e678fa0afad10b8e1042fb95ddecaca7a48e79c392b3029?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/ovs-cni-plugin&tag=v4.11.7-4" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-api@sha256:fd9dd050e1670ffd7f1816ebcced2a77a51aa4bbf96bec893f8b7e84b3824763_amd64", + "product": { + "name": "container-native-virtualization/virt-api@sha256:fd9dd050e1670ffd7f1816ebcced2a77a51aa4bbf96bec893f8b7e84b3824763_amd64", + "product_id": "container-native-virtualization/virt-api@sha256:fd9dd050e1670ffd7f1816ebcced2a77a51aa4bbf96bec893f8b7e84b3824763_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-api@sha256:fd9dd050e1670ffd7f1816ebcced2a77a51aa4bbf96bec893f8b7e84b3824763?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-api&tag=v4.11.7-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-artifacts-server@sha256:bedf2d810c355505de7b2dcb24b27d04b0ab94d3adc711d942ee830c71ff49a3_amd64", + "product": { + "name": "container-native-virtualization/virt-artifacts-server@sha256:bedf2d810c355505de7b2dcb24b27d04b0ab94d3adc711d942ee830c71ff49a3_amd64", + "product_id": "container-native-virtualization/virt-artifacts-server@sha256:bedf2d810c355505de7b2dcb24b27d04b0ab94d3adc711d942ee830c71ff49a3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-artifacts-server@sha256:bedf2d810c355505de7b2dcb24b27d04b0ab94d3adc711d942ee830c71ff49a3?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-artifacts-server&tag=v4.11.7-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-apiserver@sha256:de581a993f71f57bced78261962524b1e1eaaf8f6c89549735475fad3b997093_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-apiserver@sha256:de581a993f71f57bced78261962524b1e1eaaf8f6c89549735475fad3b997093_amd64", + "product_id": "container-native-virtualization/virt-cdi-apiserver@sha256:de581a993f71f57bced78261962524b1e1eaaf8f6c89549735475fad3b997093_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-apiserver@sha256:de581a993f71f57bced78261962524b1e1eaaf8f6c89549735475fad3b997093?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-apiserver&tag=v4.11.7-4" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-cloner@sha256:9c5ac022e709ac0ecd77814138639b3b9e6d34fa9f98bc3ce4127b1d68af29f2_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-cloner@sha256:9c5ac022e709ac0ecd77814138639b3b9e6d34fa9f98bc3ce4127b1d68af29f2_amd64", + "product_id": "container-native-virtualization/virt-cdi-cloner@sha256:9c5ac022e709ac0ecd77814138639b3b9e6d34fa9f98bc3ce4127b1d68af29f2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-cloner@sha256:9c5ac022e709ac0ecd77814138639b3b9e6d34fa9f98bc3ce4127b1d68af29f2?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-cloner&tag=v4.11.7-4" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-controller@sha256:192f40ae9ba79582d0f9ac7ca7f1eb1f8c44abd7c79345bd579807cc94a883f0_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-controller@sha256:192f40ae9ba79582d0f9ac7ca7f1eb1f8c44abd7c79345bd579807cc94a883f0_amd64", + "product_id": "container-native-virtualization/virt-cdi-controller@sha256:192f40ae9ba79582d0f9ac7ca7f1eb1f8c44abd7c79345bd579807cc94a883f0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-controller@sha256:192f40ae9ba79582d0f9ac7ca7f1eb1f8c44abd7c79345bd579807cc94a883f0?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-controller&tag=v4.11.7-4" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-importer@sha256:ce436ec0a51e51ba209da49d6d877c7e07faf264b966849934c72d1c031a78dd_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-importer@sha256:ce436ec0a51e51ba209da49d6d877c7e07faf264b966849934c72d1c031a78dd_amd64", + "product_id": "container-native-virtualization/virt-cdi-importer@sha256:ce436ec0a51e51ba209da49d6d877c7e07faf264b966849934c72d1c031a78dd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-importer@sha256:ce436ec0a51e51ba209da49d6d877c7e07faf264b966849934c72d1c031a78dd?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-importer&tag=v4.11.7-4" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-operator@sha256:1b503bfc4177444b360c4a1a470ac8322d3394fd9e8ebe7f2bad849249d2c6fd_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-operator@sha256:1b503bfc4177444b360c4a1a470ac8322d3394fd9e8ebe7f2bad849249d2c6fd_amd64", + "product_id": "container-native-virtualization/virt-cdi-operator@sha256:1b503bfc4177444b360c4a1a470ac8322d3394fd9e8ebe7f2bad849249d2c6fd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-operator@sha256:1b503bfc4177444b360c4a1a470ac8322d3394fd9e8ebe7f2bad849249d2c6fd?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-operator&tag=v4.11.7-4" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-uploadproxy@sha256:fc0aafe98acf811a0e94091a6dcec5f465ddc64e279ad250f6c8fa4225de7c7f_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-uploadproxy@sha256:fc0aafe98acf811a0e94091a6dcec5f465ddc64e279ad250f6c8fa4225de7c7f_amd64", + "product_id": "container-native-virtualization/virt-cdi-uploadproxy@sha256:fc0aafe98acf811a0e94091a6dcec5f465ddc64e279ad250f6c8fa4225de7c7f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-uploadproxy@sha256:fc0aafe98acf811a0e94091a6dcec5f465ddc64e279ad250f6c8fa4225de7c7f?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-uploadproxy&tag=v4.11.7-4" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-uploadserver@sha256:029992238c9723c2760d24d502b95d22a46f3a1586e076da54863fc22f9cca35_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-uploadserver@sha256:029992238c9723c2760d24d502b95d22a46f3a1586e076da54863fc22f9cca35_amd64", + "product_id": "container-native-virtualization/virt-cdi-uploadserver@sha256:029992238c9723c2760d24d502b95d22a46f3a1586e076da54863fc22f9cca35_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-uploadserver@sha256:029992238c9723c2760d24d502b95d22a46f3a1586e076da54863fc22f9cca35?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-uploadserver&tag=v4.11.7-4" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-controller@sha256:3c80a72772b98e46fc1382c3dc6a7b8a41f50e8bde5a12362a121e1dd1d2cc64_amd64", + "product": { + "name": "container-native-virtualization/virt-controller@sha256:3c80a72772b98e46fc1382c3dc6a7b8a41f50e8bde5a12362a121e1dd1d2cc64_amd64", + "product_id": "container-native-virtualization/virt-controller@sha256:3c80a72772b98e46fc1382c3dc6a7b8a41f50e8bde5a12362a121e1dd1d2cc64_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-controller@sha256:3c80a72772b98e46fc1382c3dc6a7b8a41f50e8bde5a12362a121e1dd1d2cc64?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-controller&tag=v4.11.7-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-handler@sha256:841aca720b7082e72059f733ead2e02915e6ead7506d79ac6eff0b143390713e_amd64", + "product": { + "name": "container-native-virtualization/virt-handler@sha256:841aca720b7082e72059f733ead2e02915e6ead7506d79ac6eff0b143390713e_amd64", + "product_id": "container-native-virtualization/virt-handler@sha256:841aca720b7082e72059f733ead2e02915e6ead7506d79ac6eff0b143390713e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-handler@sha256:841aca720b7082e72059f733ead2e02915e6ead7506d79ac6eff0b143390713e?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-handler&tag=v4.11.7-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virtio-win@sha256:58f2d6b9b41d6a0af3a20d2ce491f2c2bf8b3f07b6ea0170b729f0db0626c21d_amd64", + "product": { + "name": "container-native-virtualization/virtio-win@sha256:58f2d6b9b41d6a0af3a20d2ce491f2c2bf8b3f07b6ea0170b729f0db0626c21d_amd64", + "product_id": "container-native-virtualization/virtio-win@sha256:58f2d6b9b41d6a0af3a20d2ce491f2c2bf8b3f07b6ea0170b729f0db0626c21d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virtio-win@sha256:58f2d6b9b41d6a0af3a20d2ce491f2c2bf8b3f07b6ea0170b729f0db0626c21d?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virtio-win&tag=v4.11.7-4" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-launcher@sha256:1480ad0874186f451bd95b51953940ad7589c2546715770be1b61f3e8dec3ea9_amd64", + "product": { + "name": "container-native-virtualization/virt-launcher@sha256:1480ad0874186f451bd95b51953940ad7589c2546715770be1b61f3e8dec3ea9_amd64", + "product_id": "container-native-virtualization/virt-launcher@sha256:1480ad0874186f451bd95b51953940ad7589c2546715770be1b61f3e8dec3ea9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-launcher@sha256:1480ad0874186f451bd95b51953940ad7589c2546715770be1b61f3e8dec3ea9?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-launcher&tag=v4.11.7-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-operator@sha256:8dc7b78fea1006af9bb0d62120b50964e2fc73ee049a0efe94d366aad296ab95_amd64", + "product": { + "name": "container-native-virtualization/virt-operator@sha256:8dc7b78fea1006af9bb0d62120b50964e2fc73ee049a0efe94d366aad296ab95_amd64", + "product_id": "container-native-virtualization/virt-operator@sha256:8dc7b78fea1006af9bb0d62120b50964e2fc73ee049a0efe94d366aad296ab95_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-operator@sha256:8dc7b78fea1006af9bb0d62120b50964e2fc73ee049a0efe94d366aad296ab95?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-operator&tag=v4.11.7-5" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/vm-network-latency-checkup@sha256:9d28ad64ab3d2858ce9b1144a77816cc1ae07f53b37599fc24609a9429c0a0b8_amd64", + "product": { + "name": "container-native-virtualization/vm-network-latency-checkup@sha256:9d28ad64ab3d2858ce9b1144a77816cc1ae07f53b37599fc24609a9429c0a0b8_amd64", + "product_id": "container-native-virtualization/vm-network-latency-checkup@sha256:9d28ad64ab3d2858ce9b1144a77816cc1ae07f53b37599fc24609a9429c0a0b8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/vm-network-latency-checkup@sha256:9d28ad64ab3d2858ce9b1144a77816cc1ae07f53b37599fc24609a9429c0a0b8?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/vm-network-latency-checkup&tag=v4.11.7-5" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "container-native-virtualization/bridge-marker-rhel9@sha256:dde9d6d3bd598203276151ca6f09a8d94bc8d68160b8eeb057d528612ee387de_amd64", + "product": { + "name": "container-native-virtualization/bridge-marker-rhel9@sha256:dde9d6d3bd598203276151ca6f09a8d94bc8d68160b8eeb057d528612ee387de_amd64", + "product_id": "container-native-virtualization/bridge-marker-rhel9@sha256:dde9d6d3bd598203276151ca6f09a8d94bc8d68160b8eeb057d528612ee387de_amd64", + "product_identification_helper": { + "purl": "pkg:oci/bridge-marker-rhel9@sha256:dde9d6d3bd598203276151ca6f09a8d94bc8d68160b8eeb057d528612ee387de?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/bridge-marker-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/cluster-network-addons-operator-rhel9@sha256:79ffb1e1fd3eb66bd8501f73376cd86e031962151fb33b1f5c99b1768558a5bf_amd64", + "product": { + "name": "container-native-virtualization/cluster-network-addons-operator-rhel9@sha256:79ffb1e1fd3eb66bd8501f73376cd86e031962151fb33b1f5c99b1768558a5bf_amd64", + "product_id": "container-native-virtualization/cluster-network-addons-operator-rhel9@sha256:79ffb1e1fd3eb66bd8501f73376cd86e031962151fb33b1f5c99b1768558a5bf_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-network-addons-operator-rhel9@sha256:79ffb1e1fd3eb66bd8501f73376cd86e031962151fb33b1f5c99b1768558a5bf?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/cluster-network-addons-operator-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/cnv-containernetworking-plugins-rhel9@sha256:0259bad586a2641e8f805cb3b011fd13ac2877afa1086be3d5f58eec5b074de0_amd64", + "product": { + "name": "container-native-virtualization/cnv-containernetworking-plugins-rhel9@sha256:0259bad586a2641e8f805cb3b011fd13ac2877afa1086be3d5f58eec5b074de0_amd64", + "product_id": "container-native-virtualization/cnv-containernetworking-plugins-rhel9@sha256:0259bad586a2641e8f805cb3b011fd13ac2877afa1086be3d5f58eec5b074de0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cnv-containernetworking-plugins-rhel9@sha256:0259bad586a2641e8f805cb3b011fd13ac2877afa1086be3d5f58eec5b074de0?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/cnv-containernetworking-plugins-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/cnv-must-gather-rhel9@sha256:bc0ed2d18c556df388a3a650d365e68f24074219683a81c12b1897c1e8a756ef_amd64", + "product": { + "name": "container-native-virtualization/cnv-must-gather-rhel9@sha256:bc0ed2d18c556df388a3a650d365e68f24074219683a81c12b1897c1e8a756ef_amd64", + "product_id": "container-native-virtualization/cnv-must-gather-rhel9@sha256:bc0ed2d18c556df388a3a650d365e68f24074219683a81c12b1897c1e8a756ef_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cnv-must-gather-rhel9@sha256:bc0ed2d18c556df388a3a650d365e68f24074219683a81c12b1897c1e8a756ef?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/cnv-must-gather-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hco-bundle-registry-rhel9@sha256:7314d53f44b9058a2a41620ea57c8eafef5161218d412b8ad7353fb570b5ae64_amd64", + "product": { + "name": "container-native-virtualization/hco-bundle-registry-rhel9@sha256:7314d53f44b9058a2a41620ea57c8eafef5161218d412b8ad7353fb570b5ae64_amd64", + "product_id": "container-native-virtualization/hco-bundle-registry-rhel9@sha256:7314d53f44b9058a2a41620ea57c8eafef5161218d412b8ad7353fb570b5ae64_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hco-bundle-registry-rhel9@sha256:7314d53f44b9058a2a41620ea57c8eafef5161218d412b8ad7353fb570b5ae64?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hco-bundle-registry-rhel9&tag=v4.13.5.rhel9-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hostpath-csi-driver-rhel9@sha256:30d2d9e998ec622648c848106328ea3a45dc17d51b058f3e222f5199232a1acc_amd64", + "product": { + "name": "container-native-virtualization/hostpath-csi-driver-rhel9@sha256:30d2d9e998ec622648c848106328ea3a45dc17d51b058f3e222f5199232a1acc_amd64", + "product_id": "container-native-virtualization/hostpath-csi-driver-rhel9@sha256:30d2d9e998ec622648c848106328ea3a45dc17d51b058f3e222f5199232a1acc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hostpath-csi-driver-rhel9@sha256:30d2d9e998ec622648c848106328ea3a45dc17d51b058f3e222f5199232a1acc?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hostpath-provisioner-operator-rhel9@sha256:280ed417e25231cefbea15d35a456e540329542d59dee59ad1824228bd35e089_amd64", + "product": { + "name": "container-native-virtualization/hostpath-provisioner-operator-rhel9@sha256:280ed417e25231cefbea15d35a456e540329542d59dee59ad1824228bd35e089_amd64", + "product_id": "container-native-virtualization/hostpath-provisioner-operator-rhel9@sha256:280ed417e25231cefbea15d35a456e540329542d59dee59ad1824228bd35e089_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hostpath-provisioner-operator-rhel9@sha256:280ed417e25231cefbea15d35a456e540329542d59dee59ad1824228bd35e089?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hostpath-provisioner-operator-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hostpath-provisioner-rhel9@sha256:c3059286198d3a75dd0cab0a8c751f4dde5b0f5e52cc38fe5b258e9324477c62_amd64", + "product": { + "name": "container-native-virtualization/hostpath-provisioner-rhel9@sha256:c3059286198d3a75dd0cab0a8c751f4dde5b0f5e52cc38fe5b258e9324477c62_amd64", + "product_id": "container-native-virtualization/hostpath-provisioner-rhel9@sha256:c3059286198d3a75dd0cab0a8c751f4dde5b0f5e52cc38fe5b258e9324477c62_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hostpath-provisioner-rhel9@sha256:c3059286198d3a75dd0cab0a8c751f4dde5b0f5e52cc38fe5b258e9324477c62?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hyperconverged-cluster-operator-rhel9@sha256:80f623b7d005f2ed6ccf81af9b032a13fee86c7f4a4f564e932073bca0436bfe_amd64", + "product": { + "name": "container-native-virtualization/hyperconverged-cluster-operator-rhel9@sha256:80f623b7d005f2ed6ccf81af9b032a13fee86c7f4a4f564e932073bca0436bfe_amd64", + "product_id": "container-native-virtualization/hyperconverged-cluster-operator-rhel9@sha256:80f623b7d005f2ed6ccf81af9b032a13fee86c7f4a4f564e932073bca0436bfe_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hyperconverged-cluster-operator-rhel9@sha256:80f623b7d005f2ed6ccf81af9b032a13fee86c7f4a4f564e932073bca0436bfe?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hyperconverged-cluster-operator-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hyperconverged-cluster-webhook-rhel9@sha256:2832fbf13013467ea73c63e5e6ad7ffe94dbbeb052ec8727f6935d41b2c4d25c_amd64", + "product": { + "name": "container-native-virtualization/hyperconverged-cluster-webhook-rhel9@sha256:2832fbf13013467ea73c63e5e6ad7ffe94dbbeb052ec8727f6935d41b2c4d25c_amd64", + "product_id": "container-native-virtualization/hyperconverged-cluster-webhook-rhel9@sha256:2832fbf13013467ea73c63e5e6ad7ffe94dbbeb052ec8727f6935d41b2c4d25c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hyperconverged-cluster-webhook-rhel9@sha256:2832fbf13013467ea73c63e5e6ad7ffe94dbbeb052ec8727f6935d41b2c4d25c?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/hyperconverged-cluster-webhook-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubemacpool-rhel9@sha256:4d91d2b48e984b99f03ad19a25cb9b1c4eb12670fda6848a303009de65e4932e_amd64", + "product": { + "name": "container-native-virtualization/kubemacpool-rhel9@sha256:4d91d2b48e984b99f03ad19a25cb9b1c4eb12670fda6848a303009de65e4932e_amd64", + "product_id": "container-native-virtualization/kubemacpool-rhel9@sha256:4d91d2b48e984b99f03ad19a25cb9b1c4eb12670fda6848a303009de65e4932e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubemacpool-rhel9@sha256:4d91d2b48e984b99f03ad19a25cb9b1c4eb12670fda6848a303009de65e4932e?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubemacpool-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubesecondarydns-rhel9@sha256:4b2ed5bc8f226433a3c6e2dd926a74085b4ed60ed4f0bd505a8613e4d3c5f3ba_amd64", + "product": { + "name": "container-native-virtualization/kubesecondarydns-rhel9@sha256:4b2ed5bc8f226433a3c6e2dd926a74085b4ed60ed4f0bd505a8613e4d3c5f3ba_amd64", + "product_id": "container-native-virtualization/kubesecondarydns-rhel9@sha256:4b2ed5bc8f226433a3c6e2dd926a74085b4ed60ed4f0bd505a8613e4d3c5f3ba_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubesecondarydns-rhel9@sha256:4b2ed5bc8f226433a3c6e2dd926a74085b4ed60ed4f0bd505a8613e4d3c5f3ba?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubesecondarydns-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-console-plugin-rhel9@sha256:f824525b97a1724c9eb4e0786a19e0dc16609b14915faf31229abc4345fd91f1_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-console-plugin-rhel9@sha256:f824525b97a1724c9eb4e0786a19e0dc16609b14915faf31229abc4345fd91f1_amd64", + "product_id": "container-native-virtualization/kubevirt-console-plugin-rhel9@sha256:f824525b97a1724c9eb4e0786a19e0dc16609b14915faf31229abc4345fd91f1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-console-plugin-rhel9@sha256:f824525b97a1724c9eb4e0786a19e0dc16609b14915faf31229abc4345fd91f1?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-console-plugin-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-dpdk-checkup-rhel9@sha256:74975f1f030959c5ad9067c709b848029d08b74a17297da8666638fc8377f4f5_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-dpdk-checkup-rhel9@sha256:74975f1f030959c5ad9067c709b848029d08b74a17297da8666638fc8377f4f5_amd64", + "product_id": "container-native-virtualization/kubevirt-dpdk-checkup-rhel9@sha256:74975f1f030959c5ad9067c709b848029d08b74a17297da8666638fc8377f4f5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-dpdk-checkup-rhel9@sha256:74975f1f030959c5ad9067c709b848029d08b74a17297da8666638fc8377f4f5?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-dpdk-checkup-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-ssp-operator-rhel9@sha256:90ef77f56d0b7a5c7ac67425fdad169d3f865cc24723bd10635c1d974b9dd540_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-ssp-operator-rhel9@sha256:90ef77f56d0b7a5c7ac67425fdad169d3f865cc24723bd10635c1d974b9dd540_amd64", + "product_id": "container-native-virtualization/kubevirt-ssp-operator-rhel9@sha256:90ef77f56d0b7a5c7ac67425fdad169d3f865cc24723bd10635c1d974b9dd540_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-ssp-operator-rhel9@sha256:90ef77f56d0b7a5c7ac67425fdad169d3f865cc24723bd10635c1d974b9dd540?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-ssp-operator-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm-rhel9@sha256:96cd6da0c42ce26091f0d9cc7fbc47d24ebeec51b4407d45c5e7d0a7d861e773_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm-rhel9@sha256:96cd6da0c42ce26091f0d9cc7fbc47d24ebeec51b4407d45c5e7d0a7d861e773_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm-rhel9@sha256:96cd6da0c42ce26091f0d9cc7fbc47d24ebeec51b4407d45c5e7d0a7d861e773_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-cleanup-vm-rhel9@sha256:96cd6da0c42ce26091f0d9cc7fbc47d24ebeec51b4407d45c5e7d0a7d861e773?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm-rhel9&tag=v4.13.5--2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-copy-template-rhel9@sha256:1d8602530af08cf8344e6d9494a9e53aa51ff54cbf4292a9c5c9633b8d3ddf62_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-copy-template-rhel9@sha256:1d8602530af08cf8344e6d9494a9e53aa51ff54cbf4292a9c5c9633b8d3ddf62_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-copy-template-rhel9@sha256:1d8602530af08cf8344e6d9494a9e53aa51ff54cbf4292a9c5c9633b8d3ddf62_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-copy-template-rhel9@sha256:1d8602530af08cf8344e6d9494a9e53aa51ff54cbf4292a9c5c9633b8d3ddf62?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-copy-template-rhel9&tag=v4.13.5--2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:7807aaec505ba59712ff21c0db7daa33ed13e52ab1f1aba346dc9cbc3295afce_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:7807aaec505ba59712ff21c0db7daa33ed13e52ab1f1aba346dc9cbc3295afce_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:7807aaec505ba59712ff21c0db7daa33ed13e52ab1f1aba346dc9cbc3295afce_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:7807aaec505ba59712ff21c0db7daa33ed13e52ab1f1aba346dc9cbc3295afce?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template-rhel9@sha256:2239c59d6e1343498d7e0c65d358be6675156a7f1626bcf0052107acb0445927_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template-rhel9@sha256:2239c59d6e1343498d7e0c65d358be6675156a7f1626bcf0052107acb0445927_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template-rhel9@sha256:2239c59d6e1343498d7e0c65d358be6675156a7f1626bcf0052107acb0445927_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-create-vm-from-template-rhel9@sha256:2239c59d6e1343498d7e0c65d358be6675156a7f1626bcf0052107acb0445927?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template-rhel9&tag=v4.13.5--2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:ae5fcba31eb7dde0f03a5a947b765b0492a9a805938bdb9075b7c1c3ca7b53c8_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:ae5fcba31eb7dde0f03a5a947b765b0492a9a805938bdb9075b7c1c3ca7b53c8_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:ae5fcba31eb7dde0f03a5a947b765b0492a9a805938bdb9075b7c1c3ca7b53c8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:ae5fcba31eb7dde0f03a5a947b765b0492a9a805938bdb9075b7c1c3ca7b53c8?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep-rhel9@sha256:21cc83f45931f6151fb8f4fdf2d06eecaa6d6ce139e41e6946b202adb107db34_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep-rhel9@sha256:21cc83f45931f6151fb8f4fdf2d06eecaa6d6ce139e41e6946b202adb107db34_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep-rhel9@sha256:21cc83f45931f6151fb8f4fdf2d06eecaa6d6ce139e41e6946b202adb107db34_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-disk-virt-sysprep-rhel9@sha256:21cc83f45931f6151fb8f4fdf2d06eecaa6d6ce139e41e6946b202adb107db34?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep-rhel9&tag=v4.13.5--2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template-rhel9@sha256:932234c21ddbe7a50cb9e0217299ff08bffac42dc6c47fba3a72b542e082c1a4_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template-rhel9@sha256:932234c21ddbe7a50cb9e0217299ff08bffac42dc6c47fba3a72b542e082c1a4_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template-rhel9@sha256:932234c21ddbe7a50cb9e0217299ff08bffac42dc6c47fba3a72b542e082c1a4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-modify-vm-template-rhel9@sha256:932234c21ddbe7a50cb9e0217299ff08bffac42dc6c47fba3a72b542e082c1a4?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template-rhel9&tag=v4.13.5--2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-operator-rhel9@sha256:176782274bed233d5a522f63c435c2504b1182f34d49a2fc87166e284d03522c_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-operator-rhel9@sha256:176782274bed233d5a522f63c435c2504b1182f34d49a2fc87166e284d03522c_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-operator-rhel9@sha256:176782274bed233d5a522f63c435c2504b1182f34d49a2fc87166e284d03522c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-operator-rhel9@sha256:176782274bed233d5a522f63c435c2504b1182f34d49a2fc87166e284d03522c?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-operator-rhel9&tag=v4.13.5--2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status-rhel9@sha256:f8532cc89663d20221bdb01642e8237f9096ba686697fda12a4f3a63ed991726_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status-rhel9@sha256:f8532cc89663d20221bdb01642e8237f9096ba686697fda12a4f3a63ed991726_amd64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status-rhel9@sha256:f8532cc89663d20221bdb01642e8237f9096ba686697fda12a4f3a63ed991726_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-wait-for-vmi-status-rhel9@sha256:f8532cc89663d20221bdb01642e8237f9096ba686697fda12a4f3a63ed991726?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status-rhel9&tag=v4.13.5--2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-template-validator-rhel9@sha256:a1c61fac7dd64e8de733db6af840d2c1c0737208634c7bd76bb8970334e456e8_amd64", + "product": { + "name": "container-native-virtualization/kubevirt-template-validator-rhel9@sha256:a1c61fac7dd64e8de733db6af840d2c1c0737208634c7bd76bb8970334e456e8_amd64", + "product_id": "container-native-virtualization/kubevirt-template-validator-rhel9@sha256:a1c61fac7dd64e8de733db6af840d2c1c0737208634c7bd76bb8970334e456e8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-template-validator-rhel9@sha256:a1c61fac7dd64e8de733db6af840d2c1c0737208634c7bd76bb8970334e456e8?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-template-validator-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/libguestfs-tools-rhel9@sha256:e667c06a7d1f5569038d0a93275da2333a47bca885a76f444d317dac6b8b6657_amd64", + "product": { + "name": "container-native-virtualization/libguestfs-tools-rhel9@sha256:e667c06a7d1f5569038d0a93275da2333a47bca885a76f444d317dac6b8b6657_amd64", + "product_id": "container-native-virtualization/libguestfs-tools-rhel9@sha256:e667c06a7d1f5569038d0a93275da2333a47bca885a76f444d317dac6b8b6657_amd64", + "product_identification_helper": { + "purl": "pkg:oci/libguestfs-tools-rhel9@sha256:e667c06a7d1f5569038d0a93275da2333a47bca885a76f444d317dac6b8b6657?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/libguestfs-tools-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/multus-dynamic-networks-rhel9@sha256:739517ad4e74e5f62f95df8301c8360c09f8a441070673bde68c3a1119b26ecb_amd64", + "product": { + "name": "container-native-virtualization/multus-dynamic-networks-rhel9@sha256:739517ad4e74e5f62f95df8301c8360c09f8a441070673bde68c3a1119b26ecb_amd64", + "product_id": "container-native-virtualization/multus-dynamic-networks-rhel9@sha256:739517ad4e74e5f62f95df8301c8360c09f8a441070673bde68c3a1119b26ecb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multus-dynamic-networks-rhel9@sha256:739517ad4e74e5f62f95df8301c8360c09f8a441070673bde68c3a1119b26ecb?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/multus-dynamic-networks-rhel9&tag=v4.13.5-6" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/ovs-cni-plugin-rhel9@sha256:ffb0c9fe819873c3d923f50aef33f0e253c81df2846a96dbe58516f95080533d_amd64", + "product": { + "name": "container-native-virtualization/ovs-cni-plugin-rhel9@sha256:ffb0c9fe819873c3d923f50aef33f0e253c81df2846a96dbe58516f95080533d_amd64", + "product_id": "container-native-virtualization/ovs-cni-plugin-rhel9@sha256:ffb0c9fe819873c3d923f50aef33f0e253c81df2846a96dbe58516f95080533d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ovs-cni-plugin-rhel9@sha256:ffb0c9fe819873c3d923f50aef33f0e253c81df2846a96dbe58516f95080533d?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/ovs-cni-plugin-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-api-rhel9@sha256:eb6fb58636e5f8d2cff86e59f722821522361de25ecd12cb590a2c50184c0f93_amd64", + "product": { + "name": "container-native-virtualization/virt-api-rhel9@sha256:eb6fb58636e5f8d2cff86e59f722821522361de25ecd12cb590a2c50184c0f93_amd64", + "product_id": "container-native-virtualization/virt-api-rhel9@sha256:eb6fb58636e5f8d2cff86e59f722821522361de25ecd12cb590a2c50184c0f93_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-api-rhel9@sha256:eb6fb58636e5f8d2cff86e59f722821522361de25ecd12cb590a2c50184c0f93?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-api-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-artifacts-server-rhel9@sha256:5a0a241bf8b334a5d52b9cefd74146628b7884e31303e9a63d96e52688e88b59_amd64", + "product": { + "name": "container-native-virtualization/virt-artifacts-server-rhel9@sha256:5a0a241bf8b334a5d52b9cefd74146628b7884e31303e9a63d96e52688e88b59_amd64", + "product_id": "container-native-virtualization/virt-artifacts-server-rhel9@sha256:5a0a241bf8b334a5d52b9cefd74146628b7884e31303e9a63d96e52688e88b59_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-artifacts-server-rhel9@sha256:5a0a241bf8b334a5d52b9cefd74146628b7884e31303e9a63d96e52688e88b59?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-artifacts-server-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-apiserver-rhel9@sha256:9f23ef7d9ebea242aca099ca05fc59f008c4b812ebfb42400cf83f9dae9d1914_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-apiserver-rhel9@sha256:9f23ef7d9ebea242aca099ca05fc59f008c4b812ebfb42400cf83f9dae9d1914_amd64", + "product_id": "container-native-virtualization/virt-cdi-apiserver-rhel9@sha256:9f23ef7d9ebea242aca099ca05fc59f008c4b812ebfb42400cf83f9dae9d1914_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-apiserver-rhel9@sha256:9f23ef7d9ebea242aca099ca05fc59f008c4b812ebfb42400cf83f9dae9d1914?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-apiserver-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-cloner-rhel9@sha256:754cdf68bd406ac6d7dec2043cc2e18644944d11d3c5a7144cbf642d0104ff27_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-cloner-rhel9@sha256:754cdf68bd406ac6d7dec2043cc2e18644944d11d3c5a7144cbf642d0104ff27_amd64", + "product_id": "container-native-virtualization/virt-cdi-cloner-rhel9@sha256:754cdf68bd406ac6d7dec2043cc2e18644944d11d3c5a7144cbf642d0104ff27_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-cloner-rhel9@sha256:754cdf68bd406ac6d7dec2043cc2e18644944d11d3c5a7144cbf642d0104ff27?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-cloner-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-controller-rhel9@sha256:e352a385250091e0e5ee314b9f62e5ab45c15226a8e687ef8735988a213bfac9_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-controller-rhel9@sha256:e352a385250091e0e5ee314b9f62e5ab45c15226a8e687ef8735988a213bfac9_amd64", + "product_id": "container-native-virtualization/virt-cdi-controller-rhel9@sha256:e352a385250091e0e5ee314b9f62e5ab45c15226a8e687ef8735988a213bfac9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-controller-rhel9@sha256:e352a385250091e0e5ee314b9f62e5ab45c15226a8e687ef8735988a213bfac9?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-controller-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-importer-rhel9@sha256:64fa194703392dd4048a9f508f7872e04864000b8728773504a09661a14684cb_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-importer-rhel9@sha256:64fa194703392dd4048a9f508f7872e04864000b8728773504a09661a14684cb_amd64", + "product_id": "container-native-virtualization/virt-cdi-importer-rhel9@sha256:64fa194703392dd4048a9f508f7872e04864000b8728773504a09661a14684cb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-importer-rhel9@sha256:64fa194703392dd4048a9f508f7872e04864000b8728773504a09661a14684cb?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-importer-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-operator-rhel9@sha256:accc78929702ab17eed27b5c3c97b7327289b1220a7688b60407489c64f93217_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-operator-rhel9@sha256:accc78929702ab17eed27b5c3c97b7327289b1220a7688b60407489c64f93217_amd64", + "product_id": "container-native-virtualization/virt-cdi-operator-rhel9@sha256:accc78929702ab17eed27b5c3c97b7327289b1220a7688b60407489c64f93217_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-operator-rhel9@sha256:accc78929702ab17eed27b5c3c97b7327289b1220a7688b60407489c64f93217?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-operator-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-uploadproxy-rhel9@sha256:7070f54131307aa3de5e76d733b1a1fd502827eca1b0d9e5099caa91a86cc26a_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-uploadproxy-rhel9@sha256:7070f54131307aa3de5e76d733b1a1fd502827eca1b0d9e5099caa91a86cc26a_amd64", + "product_id": "container-native-virtualization/virt-cdi-uploadproxy-rhel9@sha256:7070f54131307aa3de5e76d733b1a1fd502827eca1b0d9e5099caa91a86cc26a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-uploadproxy-rhel9@sha256:7070f54131307aa3de5e76d733b1a1fd502827eca1b0d9e5099caa91a86cc26a?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-uploadproxy-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-uploadserver-rhel9@sha256:c0eb37995a2899e06e6a086a458ec52669d25fda5d4fdb7ef88521a91637b318_amd64", + "product": { + "name": "container-native-virtualization/virt-cdi-uploadserver-rhel9@sha256:c0eb37995a2899e06e6a086a458ec52669d25fda5d4fdb7ef88521a91637b318_amd64", + "product_id": "container-native-virtualization/virt-cdi-uploadserver-rhel9@sha256:c0eb37995a2899e06e6a086a458ec52669d25fda5d4fdb7ef88521a91637b318_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-uploadserver-rhel9@sha256:c0eb37995a2899e06e6a086a458ec52669d25fda5d4fdb7ef88521a91637b318?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-uploadserver-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-controller-rhel9@sha256:ab0fef9bd51caa62ef0e900c7fbe72a4fe67a48ef913ba33b6d261648342a0f2_amd64", + "product": { + "name": "container-native-virtualization/virt-controller-rhel9@sha256:ab0fef9bd51caa62ef0e900c7fbe72a4fe67a48ef913ba33b6d261648342a0f2_amd64", + "product_id": "container-native-virtualization/virt-controller-rhel9@sha256:ab0fef9bd51caa62ef0e900c7fbe72a4fe67a48ef913ba33b6d261648342a0f2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-controller-rhel9@sha256:ab0fef9bd51caa62ef0e900c7fbe72a4fe67a48ef913ba33b6d261648342a0f2?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-controller-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-exportproxy-rhel9@sha256:1a7a2bb4de8718c225295b70c4d324c35e915e29e9cd01a22164962bf2f6cf15_amd64", + "product": { + "name": "container-native-virtualization/virt-exportproxy-rhel9@sha256:1a7a2bb4de8718c225295b70c4d324c35e915e29e9cd01a22164962bf2f6cf15_amd64", + "product_id": "container-native-virtualization/virt-exportproxy-rhel9@sha256:1a7a2bb4de8718c225295b70c4d324c35e915e29e9cd01a22164962bf2f6cf15_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-exportproxy-rhel9@sha256:1a7a2bb4de8718c225295b70c4d324c35e915e29e9cd01a22164962bf2f6cf15?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-exportproxy-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-exportserver-rhel9@sha256:1d8bf43099edd641ef96605e554723b312d36b1b2d81544f12f1063d7de33826_amd64", + "product": { + "name": "container-native-virtualization/virt-exportserver-rhel9@sha256:1d8bf43099edd641ef96605e554723b312d36b1b2d81544f12f1063d7de33826_amd64", + "product_id": "container-native-virtualization/virt-exportserver-rhel9@sha256:1d8bf43099edd641ef96605e554723b312d36b1b2d81544f12f1063d7de33826_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-exportserver-rhel9@sha256:1d8bf43099edd641ef96605e554723b312d36b1b2d81544f12f1063d7de33826?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-exportserver-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-handler-rhel9@sha256:4ff11fbb4fa3fa2fd9fbc9465a4bef5934101ea2a6201d91ca34c5616aeecf45_amd64", + "product": { + "name": "container-native-virtualization/virt-handler-rhel9@sha256:4ff11fbb4fa3fa2fd9fbc9465a4bef5934101ea2a6201d91ca34c5616aeecf45_amd64", + "product_id": "container-native-virtualization/virt-handler-rhel9@sha256:4ff11fbb4fa3fa2fd9fbc9465a4bef5934101ea2a6201d91ca34c5616aeecf45_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-handler-rhel9@sha256:4ff11fbb4fa3fa2fd9fbc9465a4bef5934101ea2a6201d91ca34c5616aeecf45?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-handler-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virtio-win-rhel9@sha256:0c8635ad9d5dcb052dd6a840e6a841fbafce15cbe6820878f1921652a0a7dec8_amd64", + "product": { + "name": "container-native-virtualization/virtio-win-rhel9@sha256:0c8635ad9d5dcb052dd6a840e6a841fbafce15cbe6820878f1921652a0a7dec8_amd64", + "product_id": "container-native-virtualization/virtio-win-rhel9@sha256:0c8635ad9d5dcb052dd6a840e6a841fbafce15cbe6820878f1921652a0a7dec8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virtio-win-rhel9@sha256:0c8635ad9d5dcb052dd6a840e6a841fbafce15cbe6820878f1921652a0a7dec8?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virtio-win-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-launcher-rhel9@sha256:9d7d750377de058f14baca092b7832fc756fc0b31bdf4426556b380012bd69fb_amd64", + "product": { + "name": "container-native-virtualization/virt-launcher-rhel9@sha256:9d7d750377de058f14baca092b7832fc756fc0b31bdf4426556b380012bd69fb_amd64", + "product_id": "container-native-virtualization/virt-launcher-rhel9@sha256:9d7d750377de058f14baca092b7832fc756fc0b31bdf4426556b380012bd69fb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-launcher-rhel9@sha256:9d7d750377de058f14baca092b7832fc756fc0b31bdf4426556b380012bd69fb?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-launcher-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-operator-rhel9@sha256:0b7505d513a3a5dec0ceefb1e2337c8f8c7769d1a3a45e21e3ce46f7d87b3b9b_amd64", + "product": { + "name": "container-native-virtualization/virt-operator-rhel9@sha256:0b7505d513a3a5dec0ceefb1e2337c8f8c7769d1a3a45e21e3ce46f7d87b3b9b_amd64", + "product_id": "container-native-virtualization/virt-operator-rhel9@sha256:0b7505d513a3a5dec0ceefb1e2337c8f8c7769d1a3a45e21e3ce46f7d87b3b9b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/virt-operator-rhel9@sha256:0b7505d513a3a5dec0ceefb1e2337c8f8c7769d1a3a45e21e3ce46f7d87b3b9b?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/virt-operator-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/vm-console-proxy-rhel9@sha256:527182f4a91752fe5e1d078c745c8d0763392f94b9f32a8cf2885c69a1ddbc6e_amd64", + "product": { + "name": "container-native-virtualization/vm-console-proxy-rhel9@sha256:527182f4a91752fe5e1d078c745c8d0763392f94b9f32a8cf2885c69a1ddbc6e_amd64", + "product_id": "container-native-virtualization/vm-console-proxy-rhel9@sha256:527182f4a91752fe5e1d078c745c8d0763392f94b9f32a8cf2885c69a1ddbc6e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/vm-console-proxy-rhel9@sha256:527182f4a91752fe5e1d078c745c8d0763392f94b9f32a8cf2885c69a1ddbc6e?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/vm-console-proxy-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/vm-network-latency-checkup-rhel9@sha256:1526bbc64a74f9bd86c119a9f48e83f7b1d4978bb0096624d33d2dd52a2cb2b0_amd64", + "product": { + "name": "container-native-virtualization/vm-network-latency-checkup-rhel9@sha256:1526bbc64a74f9bd86c119a9f48e83f7b1d4978bb0096624d33d2dd52a2cb2b0_amd64", + "product_id": "container-native-virtualization/vm-network-latency-checkup-rhel9@sha256:1526bbc64a74f9bd86c119a9f48e83f7b1d4978bb0096624d33d2dd52a2cb2b0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/vm-network-latency-checkup-rhel9@sha256:1526bbc64a74f9bd86c119a9f48e83f7b1d4978bb0096624d33d2dd52a2cb2b0?arch=amd64&repository_url=registry.redhat.io/container-native-virtualization/vm-network-latency-checkup-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "container-native-virtualization/bridge-marker-rhel9@sha256:043c933ecc64a18f18a23862b959e60988d7223f1899d8a77c06e75352ce5a00_arm64", + "product": { + "name": "container-native-virtualization/bridge-marker-rhel9@sha256:043c933ecc64a18f18a23862b959e60988d7223f1899d8a77c06e75352ce5a00_arm64", + "product_id": "container-native-virtualization/bridge-marker-rhel9@sha256:043c933ecc64a18f18a23862b959e60988d7223f1899d8a77c06e75352ce5a00_arm64", + "product_identification_helper": { + "purl": "pkg:oci/bridge-marker-rhel9@sha256:043c933ecc64a18f18a23862b959e60988d7223f1899d8a77c06e75352ce5a00?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/bridge-marker-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/cluster-network-addons-operator-rhel9@sha256:0723b4c1c3737c07567392abde70c8d0ff41edc628859ab78b4f1db36ce9e908_arm64", + "product": { + "name": "container-native-virtualization/cluster-network-addons-operator-rhel9@sha256:0723b4c1c3737c07567392abde70c8d0ff41edc628859ab78b4f1db36ce9e908_arm64", + "product_id": "container-native-virtualization/cluster-network-addons-operator-rhel9@sha256:0723b4c1c3737c07567392abde70c8d0ff41edc628859ab78b4f1db36ce9e908_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-network-addons-operator-rhel9@sha256:0723b4c1c3737c07567392abde70c8d0ff41edc628859ab78b4f1db36ce9e908?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/cluster-network-addons-operator-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/cnv-containernetworking-plugins-rhel9@sha256:fae3d9f5dfd142a132fd94f80e8814207aa497459d8942037c383202852ceddd_arm64", + "product": { + "name": "container-native-virtualization/cnv-containernetworking-plugins-rhel9@sha256:fae3d9f5dfd142a132fd94f80e8814207aa497459d8942037c383202852ceddd_arm64", + "product_id": "container-native-virtualization/cnv-containernetworking-plugins-rhel9@sha256:fae3d9f5dfd142a132fd94f80e8814207aa497459d8942037c383202852ceddd_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cnv-containernetworking-plugins-rhel9@sha256:fae3d9f5dfd142a132fd94f80e8814207aa497459d8942037c383202852ceddd?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/cnv-containernetworking-plugins-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/cnv-must-gather-rhel9@sha256:1aea0afaa1678d22f8c60ffaec52a2f126dfacd1d45a1698fb22239926dc43d9_arm64", + "product": { + "name": "container-native-virtualization/cnv-must-gather-rhel9@sha256:1aea0afaa1678d22f8c60ffaec52a2f126dfacd1d45a1698fb22239926dc43d9_arm64", + "product_id": "container-native-virtualization/cnv-must-gather-rhel9@sha256:1aea0afaa1678d22f8c60ffaec52a2f126dfacd1d45a1698fb22239926dc43d9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cnv-must-gather-rhel9@sha256:1aea0afaa1678d22f8c60ffaec52a2f126dfacd1d45a1698fb22239926dc43d9?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/cnv-must-gather-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hco-bundle-registry-rhel9@sha256:5c7cf709c5af87312dffbd3ad438fec546002515df7fb27e5628e387c4062da5_arm64", + "product": { + "name": "container-native-virtualization/hco-bundle-registry-rhel9@sha256:5c7cf709c5af87312dffbd3ad438fec546002515df7fb27e5628e387c4062da5_arm64", + "product_id": "container-native-virtualization/hco-bundle-registry-rhel9@sha256:5c7cf709c5af87312dffbd3ad438fec546002515df7fb27e5628e387c4062da5_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hco-bundle-registry-rhel9@sha256:5c7cf709c5af87312dffbd3ad438fec546002515df7fb27e5628e387c4062da5?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/hco-bundle-registry-rhel9&tag=v4.13.5.rhel9-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hostpath-csi-driver-rhel9@sha256:8a46da3aa2086587a1d0ff59b62724feac8f1923bede587c5d53ae60ca4256ad_arm64", + "product": { + "name": "container-native-virtualization/hostpath-csi-driver-rhel9@sha256:8a46da3aa2086587a1d0ff59b62724feac8f1923bede587c5d53ae60ca4256ad_arm64", + "product_id": "container-native-virtualization/hostpath-csi-driver-rhel9@sha256:8a46da3aa2086587a1d0ff59b62724feac8f1923bede587c5d53ae60ca4256ad_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hostpath-csi-driver-rhel9@sha256:8a46da3aa2086587a1d0ff59b62724feac8f1923bede587c5d53ae60ca4256ad?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/hostpath-csi-driver-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hostpath-provisioner-operator-rhel9@sha256:f6ba777473561391d2b0a098ae16cef0552ee7722f9a6fd527b9b06aa3677474_arm64", + "product": { + "name": "container-native-virtualization/hostpath-provisioner-operator-rhel9@sha256:f6ba777473561391d2b0a098ae16cef0552ee7722f9a6fd527b9b06aa3677474_arm64", + "product_id": "container-native-virtualization/hostpath-provisioner-operator-rhel9@sha256:f6ba777473561391d2b0a098ae16cef0552ee7722f9a6fd527b9b06aa3677474_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hostpath-provisioner-operator-rhel9@sha256:f6ba777473561391d2b0a098ae16cef0552ee7722f9a6fd527b9b06aa3677474?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/hostpath-provisioner-operator-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hostpath-provisioner-rhel9@sha256:45a08c2561bc304bf62cee9043961c578e4e3c495bec3ad2a57f9e1ac2a62316_arm64", + "product": { + "name": "container-native-virtualization/hostpath-provisioner-rhel9@sha256:45a08c2561bc304bf62cee9043961c578e4e3c495bec3ad2a57f9e1ac2a62316_arm64", + "product_id": "container-native-virtualization/hostpath-provisioner-rhel9@sha256:45a08c2561bc304bf62cee9043961c578e4e3c495bec3ad2a57f9e1ac2a62316_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hostpath-provisioner-rhel9@sha256:45a08c2561bc304bf62cee9043961c578e4e3c495bec3ad2a57f9e1ac2a62316?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/hostpath-provisioner-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hyperconverged-cluster-operator-rhel9@sha256:ebcd9f0843d8d759b3e358120c4aec90a7238046d7db0c3b6014152182b14eb5_arm64", + "product": { + "name": "container-native-virtualization/hyperconverged-cluster-operator-rhel9@sha256:ebcd9f0843d8d759b3e358120c4aec90a7238046d7db0c3b6014152182b14eb5_arm64", + "product_id": "container-native-virtualization/hyperconverged-cluster-operator-rhel9@sha256:ebcd9f0843d8d759b3e358120c4aec90a7238046d7db0c3b6014152182b14eb5_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hyperconverged-cluster-operator-rhel9@sha256:ebcd9f0843d8d759b3e358120c4aec90a7238046d7db0c3b6014152182b14eb5?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/hyperconverged-cluster-operator-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/hyperconverged-cluster-webhook-rhel9@sha256:a549dfc115062d3f9924c4d8527d80de1281d50179d157e6b42699a0535e8449_arm64", + "product": { + "name": "container-native-virtualization/hyperconverged-cluster-webhook-rhel9@sha256:a549dfc115062d3f9924c4d8527d80de1281d50179d157e6b42699a0535e8449_arm64", + "product_id": "container-native-virtualization/hyperconverged-cluster-webhook-rhel9@sha256:a549dfc115062d3f9924c4d8527d80de1281d50179d157e6b42699a0535e8449_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hyperconverged-cluster-webhook-rhel9@sha256:a549dfc115062d3f9924c4d8527d80de1281d50179d157e6b42699a0535e8449?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/hyperconverged-cluster-webhook-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubemacpool-rhel9@sha256:155d511f94a84c412a78f8b7a90f677146996bc5b3c00a0bff12b3567c63302a_arm64", + "product": { + "name": "container-native-virtualization/kubemacpool-rhel9@sha256:155d511f94a84c412a78f8b7a90f677146996bc5b3c00a0bff12b3567c63302a_arm64", + "product_id": "container-native-virtualization/kubemacpool-rhel9@sha256:155d511f94a84c412a78f8b7a90f677146996bc5b3c00a0bff12b3567c63302a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubemacpool-rhel9@sha256:155d511f94a84c412a78f8b7a90f677146996bc5b3c00a0bff12b3567c63302a?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/kubemacpool-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubesecondarydns-rhel9@sha256:eac30877a8cbe57c844e660516f0370fa4a2070c6ee805a338bde149be05a16e_arm64", + "product": { + "name": "container-native-virtualization/kubesecondarydns-rhel9@sha256:eac30877a8cbe57c844e660516f0370fa4a2070c6ee805a338bde149be05a16e_arm64", + "product_id": "container-native-virtualization/kubesecondarydns-rhel9@sha256:eac30877a8cbe57c844e660516f0370fa4a2070c6ee805a338bde149be05a16e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubesecondarydns-rhel9@sha256:eac30877a8cbe57c844e660516f0370fa4a2070c6ee805a338bde149be05a16e?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/kubesecondarydns-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-console-plugin-rhel9@sha256:dbb6f6340fd4febbb2a0b9c0493af1b02681e835a8b07ddc421b1956f3cbccab_arm64", + "product": { + "name": "container-native-virtualization/kubevirt-console-plugin-rhel9@sha256:dbb6f6340fd4febbb2a0b9c0493af1b02681e835a8b07ddc421b1956f3cbccab_arm64", + "product_id": "container-native-virtualization/kubevirt-console-plugin-rhel9@sha256:dbb6f6340fd4febbb2a0b9c0493af1b02681e835a8b07ddc421b1956f3cbccab_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-console-plugin-rhel9@sha256:dbb6f6340fd4febbb2a0b9c0493af1b02681e835a8b07ddc421b1956f3cbccab?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-console-plugin-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-dpdk-checkup-rhel9@sha256:d949f12237050460cbf61cf21cc6627c0124525088af419e718dcbaae5ab3b8c_arm64", + "product": { + "name": "container-native-virtualization/kubevirt-dpdk-checkup-rhel9@sha256:d949f12237050460cbf61cf21cc6627c0124525088af419e718dcbaae5ab3b8c_arm64", + "product_id": "container-native-virtualization/kubevirt-dpdk-checkup-rhel9@sha256:d949f12237050460cbf61cf21cc6627c0124525088af419e718dcbaae5ab3b8c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-dpdk-checkup-rhel9@sha256:d949f12237050460cbf61cf21cc6627c0124525088af419e718dcbaae5ab3b8c?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-dpdk-checkup-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-ssp-operator-rhel9@sha256:21176845533bfa0817ea0f29c749be2d6bb00539354bcfa3c013f70460d0a03d_arm64", + "product": { + "name": "container-native-virtualization/kubevirt-ssp-operator-rhel9@sha256:21176845533bfa0817ea0f29c749be2d6bb00539354bcfa3c013f70460d0a03d_arm64", + "product_id": "container-native-virtualization/kubevirt-ssp-operator-rhel9@sha256:21176845533bfa0817ea0f29c749be2d6bb00539354bcfa3c013f70460d0a03d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-ssp-operator-rhel9@sha256:21176845533bfa0817ea0f29c749be2d6bb00539354bcfa3c013f70460d0a03d?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-ssp-operator-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm-rhel9@sha256:909b0dad28dd12dd3645a661262044d16120b72658ade1a48658c2e86de3afaf_arm64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm-rhel9@sha256:909b0dad28dd12dd3645a661262044d16120b72658ade1a48658c2e86de3afaf_arm64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm-rhel9@sha256:909b0dad28dd12dd3645a661262044d16120b72658ade1a48658c2e86de3afaf_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-cleanup-vm-rhel9@sha256:909b0dad28dd12dd3645a661262044d16120b72658ade1a48658c2e86de3afaf?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm-rhel9&tag=v4.13.5--2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-copy-template-rhel9@sha256:6bae230bed0d35e81ebc4f98a9c68afa79a7c48617a21bef9d751412ef133806_arm64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-copy-template-rhel9@sha256:6bae230bed0d35e81ebc4f98a9c68afa79a7c48617a21bef9d751412ef133806_arm64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-copy-template-rhel9@sha256:6bae230bed0d35e81ebc4f98a9c68afa79a7c48617a21bef9d751412ef133806_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-copy-template-rhel9@sha256:6bae230bed0d35e81ebc4f98a9c68afa79a7c48617a21bef9d751412ef133806?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-copy-template-rhel9&tag=v4.13.5--2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:0495f03ccdc719420f530fcd530f392f0f9d59982fc0d3df9b1cc4d9dc5ac501_arm64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:0495f03ccdc719420f530fcd530f392f0f9d59982fc0d3df9b1cc4d9dc5ac501_arm64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:0495f03ccdc719420f530fcd530f392f0f9d59982fc0d3df9b1cc4d9dc5ac501_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:0495f03ccdc719420f530fcd530f392f0f9d59982fc0d3df9b1cc4d9dc5ac501?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template-rhel9@sha256:309e43a5a95f95ade124e9e30555d0f2df99a37c606a18aef1e39ba124a37f60_arm64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template-rhel9@sha256:309e43a5a95f95ade124e9e30555d0f2df99a37c606a18aef1e39ba124a37f60_arm64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template-rhel9@sha256:309e43a5a95f95ade124e9e30555d0f2df99a37c606a18aef1e39ba124a37f60_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-create-vm-from-template-rhel9@sha256:309e43a5a95f95ade124e9e30555d0f2df99a37c606a18aef1e39ba124a37f60?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template-rhel9&tag=v4.13.5--2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:811b9aaefae86a945ca7b2b9e0ca23afe36be3f9ea0728386a3e2b3df79fe376_arm64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:811b9aaefae86a945ca7b2b9e0ca23afe36be3f9ea0728386a3e2b3df79fe376_arm64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:811b9aaefae86a945ca7b2b9e0ca23afe36be3f9ea0728386a3e2b3df79fe376_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:811b9aaefae86a945ca7b2b9e0ca23afe36be3f9ea0728386a3e2b3df79fe376?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep-rhel9@sha256:648df73d58c946aa502bc6cde710239e9a63c54d116441887115c734af420dbc_arm64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep-rhel9@sha256:648df73d58c946aa502bc6cde710239e9a63c54d116441887115c734af420dbc_arm64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep-rhel9@sha256:648df73d58c946aa502bc6cde710239e9a63c54d116441887115c734af420dbc_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-disk-virt-sysprep-rhel9@sha256:648df73d58c946aa502bc6cde710239e9a63c54d116441887115c734af420dbc?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep-rhel9&tag=v4.13.5--2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template-rhel9@sha256:ea952209ad5400aeb8318869978e50fb17012e0e84d61dbc19d818e2eaf1ba43_arm64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template-rhel9@sha256:ea952209ad5400aeb8318869978e50fb17012e0e84d61dbc19d818e2eaf1ba43_arm64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template-rhel9@sha256:ea952209ad5400aeb8318869978e50fb17012e0e84d61dbc19d818e2eaf1ba43_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-modify-vm-template-rhel9@sha256:ea952209ad5400aeb8318869978e50fb17012e0e84d61dbc19d818e2eaf1ba43?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template-rhel9&tag=v4.13.5--2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-operator-rhel9@sha256:e91ef2ec173663ad40867d2696d04681d917ef76b1df7ed9c451886a2adb4825_arm64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-operator-rhel9@sha256:e91ef2ec173663ad40867d2696d04681d917ef76b1df7ed9c451886a2adb4825_arm64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-operator-rhel9@sha256:e91ef2ec173663ad40867d2696d04681d917ef76b1df7ed9c451886a2adb4825_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-operator-rhel9@sha256:e91ef2ec173663ad40867d2696d04681d917ef76b1df7ed9c451886a2adb4825?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-operator-rhel9&tag=v4.13.5--2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status-rhel9@sha256:94f24421df1e69f957caafdd28327041fa198e89824d13a864c6077d946ba54c_arm64", + "product": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status-rhel9@sha256:94f24421df1e69f957caafdd28327041fa198e89824d13a864c6077d946ba54c_arm64", + "product_id": "container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status-rhel9@sha256:94f24421df1e69f957caafdd28327041fa198e89824d13a864c6077d946ba54c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-tekton-tasks-wait-for-vmi-status-rhel9@sha256:94f24421df1e69f957caafdd28327041fa198e89824d13a864c6077d946ba54c?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status-rhel9&tag=v4.13.5--2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/kubevirt-template-validator-rhel9@sha256:c7492e63269379a8bb8415645e6195f0448247dd7e513edbadf12c07601fb948_arm64", + "product": { + "name": "container-native-virtualization/kubevirt-template-validator-rhel9@sha256:c7492e63269379a8bb8415645e6195f0448247dd7e513edbadf12c07601fb948_arm64", + "product_id": "container-native-virtualization/kubevirt-template-validator-rhel9@sha256:c7492e63269379a8bb8415645e6195f0448247dd7e513edbadf12c07601fb948_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-template-validator-rhel9@sha256:c7492e63269379a8bb8415645e6195f0448247dd7e513edbadf12c07601fb948?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/kubevirt-template-validator-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/libguestfs-tools-rhel9@sha256:3a97c4aca2b1c9fb1ca94619ba89965e6343eb6c9a92c34688f861564b8c2095_arm64", + "product": { + "name": "container-native-virtualization/libguestfs-tools-rhel9@sha256:3a97c4aca2b1c9fb1ca94619ba89965e6343eb6c9a92c34688f861564b8c2095_arm64", + "product_id": "container-native-virtualization/libguestfs-tools-rhel9@sha256:3a97c4aca2b1c9fb1ca94619ba89965e6343eb6c9a92c34688f861564b8c2095_arm64", + "product_identification_helper": { + "purl": "pkg:oci/libguestfs-tools-rhel9@sha256:3a97c4aca2b1c9fb1ca94619ba89965e6343eb6c9a92c34688f861564b8c2095?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/libguestfs-tools-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/multus-dynamic-networks-rhel9@sha256:18b22a9a9453341c3c419319bfa891437402613f01f5f10437ac81fe14a6ce6f_arm64", + "product": { + "name": "container-native-virtualization/multus-dynamic-networks-rhel9@sha256:18b22a9a9453341c3c419319bfa891437402613f01f5f10437ac81fe14a6ce6f_arm64", + "product_id": "container-native-virtualization/multus-dynamic-networks-rhel9@sha256:18b22a9a9453341c3c419319bfa891437402613f01f5f10437ac81fe14a6ce6f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multus-dynamic-networks-rhel9@sha256:18b22a9a9453341c3c419319bfa891437402613f01f5f10437ac81fe14a6ce6f?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/multus-dynamic-networks-rhel9&tag=v4.13.5-6" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/ovs-cni-plugin-rhel9@sha256:73447696068a5d2f005f9148dc9424d9ca7eb96cc22597228d1ff80a593b5124_arm64", + "product": { + "name": "container-native-virtualization/ovs-cni-plugin-rhel9@sha256:73447696068a5d2f005f9148dc9424d9ca7eb96cc22597228d1ff80a593b5124_arm64", + "product_id": "container-native-virtualization/ovs-cni-plugin-rhel9@sha256:73447696068a5d2f005f9148dc9424d9ca7eb96cc22597228d1ff80a593b5124_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ovs-cni-plugin-rhel9@sha256:73447696068a5d2f005f9148dc9424d9ca7eb96cc22597228d1ff80a593b5124?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/ovs-cni-plugin-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-api-rhel9@sha256:4ee279958ee70fa91fce05e17e14d3f5e2f016495b9cc33268441cf5cdeaacac_arm64", + "product": { + "name": "container-native-virtualization/virt-api-rhel9@sha256:4ee279958ee70fa91fce05e17e14d3f5e2f016495b9cc33268441cf5cdeaacac_arm64", + "product_id": "container-native-virtualization/virt-api-rhel9@sha256:4ee279958ee70fa91fce05e17e14d3f5e2f016495b9cc33268441cf5cdeaacac_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-api-rhel9@sha256:4ee279958ee70fa91fce05e17e14d3f5e2f016495b9cc33268441cf5cdeaacac?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-api-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-artifacts-server-rhel9@sha256:7cb9c402604382e9477ca83c253cf28a88e0c3afed7c6c2b49da21bf098ad116_arm64", + "product": { + "name": "container-native-virtualization/virt-artifacts-server-rhel9@sha256:7cb9c402604382e9477ca83c253cf28a88e0c3afed7c6c2b49da21bf098ad116_arm64", + "product_id": "container-native-virtualization/virt-artifacts-server-rhel9@sha256:7cb9c402604382e9477ca83c253cf28a88e0c3afed7c6c2b49da21bf098ad116_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-artifacts-server-rhel9@sha256:7cb9c402604382e9477ca83c253cf28a88e0c3afed7c6c2b49da21bf098ad116?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-artifacts-server-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-apiserver-rhel9@sha256:ebff907b257a40d560e6455b46f77e25a66ff5a43d20211c1f84df60afe24e71_arm64", + "product": { + "name": "container-native-virtualization/virt-cdi-apiserver-rhel9@sha256:ebff907b257a40d560e6455b46f77e25a66ff5a43d20211c1f84df60afe24e71_arm64", + "product_id": "container-native-virtualization/virt-cdi-apiserver-rhel9@sha256:ebff907b257a40d560e6455b46f77e25a66ff5a43d20211c1f84df60afe24e71_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-apiserver-rhel9@sha256:ebff907b257a40d560e6455b46f77e25a66ff5a43d20211c1f84df60afe24e71?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-apiserver-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-cloner-rhel9@sha256:3ef62bc6ce5756f16a40fc66eaede1d185a6fc6a2418434649cf046cb03e49df_arm64", + "product": { + "name": "container-native-virtualization/virt-cdi-cloner-rhel9@sha256:3ef62bc6ce5756f16a40fc66eaede1d185a6fc6a2418434649cf046cb03e49df_arm64", + "product_id": "container-native-virtualization/virt-cdi-cloner-rhel9@sha256:3ef62bc6ce5756f16a40fc66eaede1d185a6fc6a2418434649cf046cb03e49df_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-cloner-rhel9@sha256:3ef62bc6ce5756f16a40fc66eaede1d185a6fc6a2418434649cf046cb03e49df?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-cloner-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-controller-rhel9@sha256:84f8681a07967b12ae1f60fdba3e0e60e739ff503283441cd41317f15a2dd13c_arm64", + "product": { + "name": "container-native-virtualization/virt-cdi-controller-rhel9@sha256:84f8681a07967b12ae1f60fdba3e0e60e739ff503283441cd41317f15a2dd13c_arm64", + "product_id": "container-native-virtualization/virt-cdi-controller-rhel9@sha256:84f8681a07967b12ae1f60fdba3e0e60e739ff503283441cd41317f15a2dd13c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-controller-rhel9@sha256:84f8681a07967b12ae1f60fdba3e0e60e739ff503283441cd41317f15a2dd13c?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-controller-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-importer-rhel9@sha256:d4e38f20bf2227ddd9a916960c7f8f40df3e4f0df9adf4fedba6688bd26a2fe4_arm64", + "product": { + "name": "container-native-virtualization/virt-cdi-importer-rhel9@sha256:d4e38f20bf2227ddd9a916960c7f8f40df3e4f0df9adf4fedba6688bd26a2fe4_arm64", + "product_id": "container-native-virtualization/virt-cdi-importer-rhel9@sha256:d4e38f20bf2227ddd9a916960c7f8f40df3e4f0df9adf4fedba6688bd26a2fe4_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-importer-rhel9@sha256:d4e38f20bf2227ddd9a916960c7f8f40df3e4f0df9adf4fedba6688bd26a2fe4?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-importer-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-operator-rhel9@sha256:8f8262b1dfbf965f7e3be39cb4b829de84d248a9624fcbae56de3fb3ee265ce6_arm64", + "product": { + "name": "container-native-virtualization/virt-cdi-operator-rhel9@sha256:8f8262b1dfbf965f7e3be39cb4b829de84d248a9624fcbae56de3fb3ee265ce6_arm64", + "product_id": "container-native-virtualization/virt-cdi-operator-rhel9@sha256:8f8262b1dfbf965f7e3be39cb4b829de84d248a9624fcbae56de3fb3ee265ce6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-operator-rhel9@sha256:8f8262b1dfbf965f7e3be39cb4b829de84d248a9624fcbae56de3fb3ee265ce6?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-operator-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-uploadproxy-rhel9@sha256:7e8084302d1c80303a74cecbc25bb45a97c5513f8babfb22b8ef4f0ef032048c_arm64", + "product": { + "name": "container-native-virtualization/virt-cdi-uploadproxy-rhel9@sha256:7e8084302d1c80303a74cecbc25bb45a97c5513f8babfb22b8ef4f0ef032048c_arm64", + "product_id": "container-native-virtualization/virt-cdi-uploadproxy-rhel9@sha256:7e8084302d1c80303a74cecbc25bb45a97c5513f8babfb22b8ef4f0ef032048c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-uploadproxy-rhel9@sha256:7e8084302d1c80303a74cecbc25bb45a97c5513f8babfb22b8ef4f0ef032048c?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-uploadproxy-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-cdi-uploadserver-rhel9@sha256:e1f8cb4dba0f3f53b40faa9c32f5a5d98a9bf7b1d25d987ed49abe99be89b561_arm64", + "product": { + "name": "container-native-virtualization/virt-cdi-uploadserver-rhel9@sha256:e1f8cb4dba0f3f53b40faa9c32f5a5d98a9bf7b1d25d987ed49abe99be89b561_arm64", + "product_id": "container-native-virtualization/virt-cdi-uploadserver-rhel9@sha256:e1f8cb4dba0f3f53b40faa9c32f5a5d98a9bf7b1d25d987ed49abe99be89b561_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-cdi-uploadserver-rhel9@sha256:e1f8cb4dba0f3f53b40faa9c32f5a5d98a9bf7b1d25d987ed49abe99be89b561?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-cdi-uploadserver-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-controller-rhel9@sha256:5ace580e85dcdbf18ef50362c0dcfe8e24b30301752cb16efd583a346699676c_arm64", + "product": { + "name": "container-native-virtualization/virt-controller-rhel9@sha256:5ace580e85dcdbf18ef50362c0dcfe8e24b30301752cb16efd583a346699676c_arm64", + "product_id": "container-native-virtualization/virt-controller-rhel9@sha256:5ace580e85dcdbf18ef50362c0dcfe8e24b30301752cb16efd583a346699676c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-controller-rhel9@sha256:5ace580e85dcdbf18ef50362c0dcfe8e24b30301752cb16efd583a346699676c?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-controller-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-exportproxy-rhel9@sha256:1e675c5c66a08fc992909e2d06913ea8ab1420fc6560c87f048020a5ab9d055f_arm64", + "product": { + "name": "container-native-virtualization/virt-exportproxy-rhel9@sha256:1e675c5c66a08fc992909e2d06913ea8ab1420fc6560c87f048020a5ab9d055f_arm64", + "product_id": "container-native-virtualization/virt-exportproxy-rhel9@sha256:1e675c5c66a08fc992909e2d06913ea8ab1420fc6560c87f048020a5ab9d055f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-exportproxy-rhel9@sha256:1e675c5c66a08fc992909e2d06913ea8ab1420fc6560c87f048020a5ab9d055f?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-exportproxy-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-exportserver-rhel9@sha256:ee39b31117c8f8be67863e952683cdaf3d49cad742bd722b5abbfa6613aa28de_arm64", + "product": { + "name": "container-native-virtualization/virt-exportserver-rhel9@sha256:ee39b31117c8f8be67863e952683cdaf3d49cad742bd722b5abbfa6613aa28de_arm64", + "product_id": "container-native-virtualization/virt-exportserver-rhel9@sha256:ee39b31117c8f8be67863e952683cdaf3d49cad742bd722b5abbfa6613aa28de_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-exportserver-rhel9@sha256:ee39b31117c8f8be67863e952683cdaf3d49cad742bd722b5abbfa6613aa28de?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-exportserver-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-handler-rhel9@sha256:2d65599406329f5b5b81305428873638f99a937807683338091bccbda60b9cda_arm64", + "product": { + "name": "container-native-virtualization/virt-handler-rhel9@sha256:2d65599406329f5b5b81305428873638f99a937807683338091bccbda60b9cda_arm64", + "product_id": "container-native-virtualization/virt-handler-rhel9@sha256:2d65599406329f5b5b81305428873638f99a937807683338091bccbda60b9cda_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-handler-rhel9@sha256:2d65599406329f5b5b81305428873638f99a937807683338091bccbda60b9cda?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-handler-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virtio-win-rhel9@sha256:da9f96685d597eb80a59a99d64c4c59a5e6aa6fe042be8b6a8386bb01f6b5a4d_arm64", + "product": { + "name": "container-native-virtualization/virtio-win-rhel9@sha256:da9f96685d597eb80a59a99d64c4c59a5e6aa6fe042be8b6a8386bb01f6b5a4d_arm64", + "product_id": "container-native-virtualization/virtio-win-rhel9@sha256:da9f96685d597eb80a59a99d64c4c59a5e6aa6fe042be8b6a8386bb01f6b5a4d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virtio-win-rhel9@sha256:da9f96685d597eb80a59a99d64c4c59a5e6aa6fe042be8b6a8386bb01f6b5a4d?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virtio-win-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-launcher-rhel9@sha256:23b65c6518e23b353a8679ad4b80389c8a7c35797718a8e5ba00f976c85a8c68_arm64", + "product": { + "name": "container-native-virtualization/virt-launcher-rhel9@sha256:23b65c6518e23b353a8679ad4b80389c8a7c35797718a8e5ba00f976c85a8c68_arm64", + "product_id": "container-native-virtualization/virt-launcher-rhel9@sha256:23b65c6518e23b353a8679ad4b80389c8a7c35797718a8e5ba00f976c85a8c68_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-launcher-rhel9@sha256:23b65c6518e23b353a8679ad4b80389c8a7c35797718a8e5ba00f976c85a8c68?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-launcher-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/virt-operator-rhel9@sha256:e8703006f51562b0370facfca722d0064e5673db77e7a0e1edfd62418fd2847a_arm64", + "product": { + "name": "container-native-virtualization/virt-operator-rhel9@sha256:e8703006f51562b0370facfca722d0064e5673db77e7a0e1edfd62418fd2847a_arm64", + "product_id": "container-native-virtualization/virt-operator-rhel9@sha256:e8703006f51562b0370facfca722d0064e5673db77e7a0e1edfd62418fd2847a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/virt-operator-rhel9@sha256:e8703006f51562b0370facfca722d0064e5673db77e7a0e1edfd62418fd2847a?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/virt-operator-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/vm-console-proxy-rhel9@sha256:1d8b888e5c76c6de2c178d6301d6caabbc497fa3502f30731885ade2012d01b6_arm64", + "product": { + "name": "container-native-virtualization/vm-console-proxy-rhel9@sha256:1d8b888e5c76c6de2c178d6301d6caabbc497fa3502f30731885ade2012d01b6_arm64", + "product_id": "container-native-virtualization/vm-console-proxy-rhel9@sha256:1d8b888e5c76c6de2c178d6301d6caabbc497fa3502f30731885ade2012d01b6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/vm-console-proxy-rhel9@sha256:1d8b888e5c76c6de2c178d6301d6caabbc497fa3502f30731885ade2012d01b6?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/vm-console-proxy-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + }, + { + "category": "product_version", + "name": "container-native-virtualization/vm-network-latency-checkup-rhel9@sha256:9d456058997fc90c0d6acbeeaf349d33c4f6ce36509c3f68685a1be90d793b5b_arm64", + "product": { + "name": "container-native-virtualization/vm-network-latency-checkup-rhel9@sha256:9d456058997fc90c0d6acbeeaf349d33c4f6ce36509c3f68685a1be90d793b5b_arm64", + "product_id": "container-native-virtualization/vm-network-latency-checkup-rhel9@sha256:9d456058997fc90c0d6acbeeaf349d33c4f6ce36509c3f68685a1be90d793b5b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/vm-network-latency-checkup-rhel9@sha256:9d456058997fc90c0d6acbeeaf349d33c4f6ce36509c3f68685a1be90d793b5b?arch=arm64&repository_url=registry.redhat.io/container-native-virtualization/vm-network-latency-checkup-rhel9&tag=v4.13.5-prerelease-2023-120566" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/cnf-tests-rhel8@sha256:29579a785974ff1130882f04495f90ba8423ea0fb17bf445b82dd919b19c515d_amd64", + "product": { + "name": "openshift4/cnf-tests-rhel8@sha256:29579a785974ff1130882f04495f90ba8423ea0fb17bf445b82dd919b19c515d_amd64", + "product_id": "openshift4/cnf-tests-rhel8@sha256:29579a785974ff1130882f04495f90ba8423ea0fb17bf445b82dd919b19c515d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cnf-tests-rhel8@sha256:29579a785974ff1130882f04495f90ba8423ea0fb17bf445b82dd919b19c515d?arch=amd64&repository_url=registry.redhat.io/openshift4/cnf-tests-rhel8&tag=v4.12.6-4" + } + } + }, + { + "category": "product_version", + "name": "openshift4/dpdk-base-rhel8@sha256:3faf3d37e7fb8125bf5c49a93cac0e69dd2dbcafcfa27939e706f1d969caa8e7_amd64", + "product": { + "name": "openshift4/dpdk-base-rhel8@sha256:3faf3d37e7fb8125bf5c49a93cac0e69dd2dbcafcfa27939e706f1d969caa8e7_amd64", + "product_id": "openshift4/dpdk-base-rhel8@sha256:3faf3d37e7fb8125bf5c49a93cac0e69dd2dbcafcfa27939e706f1d969caa8e7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/dpdk-base-rhel8@sha256:3faf3d37e7fb8125bf5c49a93cac0e69dd2dbcafcfa27939e706f1d969caa8e7?arch=amd64&repository_url=registry.redhat.io/openshift4/dpdk-base-rhel8&tag=v4.12.6-2" + } + } + }, + { + "category": "product_version", + "name": "openshift4/noderesourcetopology-scheduler-container-rhel8@sha256:245a7c990bcb554ded0f4832957db51d0439311bd85b5c89943e33001e29a2fe_amd64", + "product": { + "name": "openshift4/noderesourcetopology-scheduler-container-rhel8@sha256:245a7c990bcb554ded0f4832957db51d0439311bd85b5c89943e33001e29a2fe_amd64", + "product_id": "openshift4/noderesourcetopology-scheduler-container-rhel8@sha256:245a7c990bcb554ded0f4832957db51d0439311bd85b5c89943e33001e29a2fe_amd64", + "product_identification_helper": { + "purl": "pkg:oci/noderesourcetopology-scheduler-container-rhel8@sha256:245a7c990bcb554ded0f4832957db51d0439311bd85b5c89943e33001e29a2fe?arch=amd64&repository_url=registry.redhat.io/openshift4/noderesourcetopology-scheduler-container-rhel8&tag=v4.12.6-8" + } + } + }, + { + "category": "product_version", + "name": "openshift4/numaresources-operator-bundle@sha256:d058f59dbc21e6b015de06bad2d42e2cec078cbbc80a76fe2f914d641caaef7b_amd64", + "product": { + "name": "openshift4/numaresources-operator-bundle@sha256:d058f59dbc21e6b015de06bad2d42e2cec078cbbc80a76fe2f914d641caaef7b_amd64", + "product_id": "openshift4/numaresources-operator-bundle@sha256:d058f59dbc21e6b015de06bad2d42e2cec078cbbc80a76fe2f914d641caaef7b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/numaresources-operator-bundle@sha256:d058f59dbc21e6b015de06bad2d42e2cec078cbbc80a76fe2f914d641caaef7b?arch=amd64&repository_url=registry.redhat.io/openshift4/numaresources-operator-bundle&tag=v4.12.6-10" + } + } + }, + { + "category": "product_version", + "name": "openshift4/numaresources-rhel8-operator@sha256:9ae57e31edf4e0a10768d52c7a0cce4f38ce16a0e75785e356ae0c00b73b200c_amd64", + "product": { + "name": "openshift4/numaresources-rhel8-operator@sha256:9ae57e31edf4e0a10768d52c7a0cce4f38ce16a0e75785e356ae0c00b73b200c_amd64", + "product_id": "openshift4/numaresources-rhel8-operator@sha256:9ae57e31edf4e0a10768d52c7a0cce4f38ce16a0e75785e356ae0c00b73b200c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/numaresources-rhel8-operator@sha256:9ae57e31edf4e0a10768d52c7a0cce4f38ce16a0e75785e356ae0c00b73b200c?arch=amd64&repository_url=registry.redhat.io/openshift4/numaresources-rhel8-operator&tag=v4.12.6-7" + } + } + }, + { + "category": "product_version", + "name": "openshift4/performance-addon-operator-must-gather-rhel8@sha256:76501b6f85aac090077094f0d4a2da4475b788b1fb7698b6ec33f17e1b2eb898_amd64", + "product": { + "name": "openshift4/performance-addon-operator-must-gather-rhel8@sha256:76501b6f85aac090077094f0d4a2da4475b788b1fb7698b6ec33f17e1b2eb898_amd64", + "product_id": "openshift4/performance-addon-operator-must-gather-rhel8@sha256:76501b6f85aac090077094f0d4a2da4475b788b1fb7698b6ec33f17e1b2eb898_amd64", + "product_identification_helper": { + "purl": "pkg:oci/performance-addon-operator-must-gather-rhel8@sha256:76501b6f85aac090077094f0d4a2da4475b788b1fb7698b6ec33f17e1b2eb898?arch=amd64&repository_url=registry.redhat.io/openshift4/performance-addon-operator-must-gather-rhel8&tag=v4.12.6-7" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-service-mesh/kiali-rhel8@sha256:e533eeb5e448687b73754f82502a735a08f46b7260c62170ee88ea35907261fa_amd64", + "product": { + "name": "openshift-service-mesh/kiali-rhel8@sha256:e533eeb5e448687b73754f82502a735a08f46b7260c62170ee88ea35907261fa_amd64", + "product_id": "openshift-service-mesh/kiali-rhel8@sha256:e533eeb5e448687b73754f82502a735a08f46b7260c62170ee88ea35907261fa_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kiali-rhel8@sha256:e533eeb5e448687b73754f82502a735a08f46b7260c62170ee88ea35907261fa?arch=amd64&repository_url=registry.redhat.io/openshift-service-mesh/kiali-rhel8&tag=1.65.10-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/kiali-rhel8-operator@sha256:29bbacd9971b9ccb2b64b1485ebcafeea7294b3518cb4c467c37452503e12a0d_amd64", + "product": { + "name": "openshift-service-mesh/kiali-rhel8-operator@sha256:29bbacd9971b9ccb2b64b1485ebcafeea7294b3518cb4c467c37452503e12a0d_amd64", + "product_id": "openshift-service-mesh/kiali-rhel8-operator@sha256:29bbacd9971b9ccb2b64b1485ebcafeea7294b3518cb4c467c37452503e12a0d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kiali-rhel8-operator@sha256:29bbacd9971b9ccb2b64b1485ebcafeea7294b3518cb4c467c37452503e12a0d?arch=amd64&repository_url=registry.redhat.io/openshift-service-mesh/kiali-rhel8-operator&tag=1.65.10-1" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-service-mesh/kiali-rhel8@sha256:e9478516ca737881e7616c1e009c1ffee5ef4d24f31b656a262510118d45633e_ppc64le", + "product": { + "name": "openshift-service-mesh/kiali-rhel8@sha256:e9478516ca737881e7616c1e009c1ffee5ef4d24f31b656a262510118d45633e_ppc64le", + "product_id": "openshift-service-mesh/kiali-rhel8@sha256:e9478516ca737881e7616c1e009c1ffee5ef4d24f31b656a262510118d45633e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kiali-rhel8@sha256:e9478516ca737881e7616c1e009c1ffee5ef4d24f31b656a262510118d45633e?arch=ppc64le&repository_url=registry.redhat.io/openshift-service-mesh/kiali-rhel8&tag=1.65.10-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/kiali-rhel8-operator@sha256:6a073f75a99df21d3185900e1c9e44ea2a6f9995fc3bcc4c826c20884ba92748_ppc64le", + "product": { + "name": "openshift-service-mesh/kiali-rhel8-operator@sha256:6a073f75a99df21d3185900e1c9e44ea2a6f9995fc3bcc4c826c20884ba92748_ppc64le", + "product_id": "openshift-service-mesh/kiali-rhel8-operator@sha256:6a073f75a99df21d3185900e1c9e44ea2a6f9995fc3bcc4c826c20884ba92748_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kiali-rhel8-operator@sha256:6a073f75a99df21d3185900e1c9e44ea2a6f9995fc3bcc4c826c20884ba92748?arch=ppc64le&repository_url=registry.redhat.io/openshift-service-mesh/kiali-rhel8-operator&tag=1.65.10-1" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-service-mesh/kiali-rhel8@sha256:14284b2fcd21b2aa7eab7269b1ae22d6efd9705267e455035eb129e66ea21a5c_arm64", + "product": { + "name": "openshift-service-mesh/kiali-rhel8@sha256:14284b2fcd21b2aa7eab7269b1ae22d6efd9705267e455035eb129e66ea21a5c_arm64", + "product_id": "openshift-service-mesh/kiali-rhel8@sha256:14284b2fcd21b2aa7eab7269b1ae22d6efd9705267e455035eb129e66ea21a5c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kiali-rhel8@sha256:14284b2fcd21b2aa7eab7269b1ae22d6efd9705267e455035eb129e66ea21a5c?arch=arm64&repository_url=registry.redhat.io/openshift-service-mesh/kiali-rhel8&tag=1.65.10-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/kiali-rhel8-operator@sha256:2b06fd2dd516b04a5ef54744114db0e2dbd48741ae8a41eb647334bdd6eb6404_arm64", + "product": { + "name": "openshift-service-mesh/kiali-rhel8-operator@sha256:2b06fd2dd516b04a5ef54744114db0e2dbd48741ae8a41eb647334bdd6eb6404_arm64", + "product_id": "openshift-service-mesh/kiali-rhel8-operator@sha256:2b06fd2dd516b04a5ef54744114db0e2dbd48741ae8a41eb647334bdd6eb6404_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kiali-rhel8-operator@sha256:2b06fd2dd516b04a5ef54744114db0e2dbd48741ae8a41eb647334bdd6eb6404?arch=arm64&repository_url=registry.redhat.io/openshift-service-mesh/kiali-rhel8-operator&tag=1.65.10-1" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-service-mesh/kiali-rhel8@sha256:d9c8aa68fdbd3f1e163db6cacc9282fc7a91474cf855cc44679177bba68365f4_s390x", + "product": { + "name": "openshift-service-mesh/kiali-rhel8@sha256:d9c8aa68fdbd3f1e163db6cacc9282fc7a91474cf855cc44679177bba68365f4_s390x", + "product_id": "openshift-service-mesh/kiali-rhel8@sha256:d9c8aa68fdbd3f1e163db6cacc9282fc7a91474cf855cc44679177bba68365f4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/kiali-rhel8@sha256:d9c8aa68fdbd3f1e163db6cacc9282fc7a91474cf855cc44679177bba68365f4?arch=s390x&repository_url=registry.redhat.io/openshift-service-mesh/kiali-rhel8&tag=1.65.10-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-service-mesh/kiali-rhel8-operator@sha256:31e0a2e76216573ed7f27d218152911d3765a38c71e4834be276fe4d1944fe04_s390x", + "product": { + "name": "openshift-service-mesh/kiali-rhel8-operator@sha256:31e0a2e76216573ed7f27d218152911d3765a38c71e4834be276fe4d1944fe04_s390x", + "product_id": "openshift-service-mesh/kiali-rhel8-operator@sha256:31e0a2e76216573ed7f27d218152911d3765a38c71e4834be276fe4d1944fe04_s390x", + "product_identification_helper": { + "purl": "pkg:oci/kiali-rhel8-operator@sha256:31e0a2e76216573ed7f27d218152911d3765a38c71e4834be276fe4d1944fe04?arch=s390x&repository_url=registry.redhat.io/openshift-service-mesh/kiali-rhel8-operator&tag=1.65.10-1" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-secondary-scheduler-operator/secondary-scheduler-operator-bundle@sha256:775e1822637d308859c4eff42d7b09c949610430ff27cf08d01d41e44cbac2ff_amd64", + "product": { + "name": "openshift-secondary-scheduler-operator/secondary-scheduler-operator-bundle@sha256:775e1822637d308859c4eff42d7b09c949610430ff27cf08d01d41e44cbac2ff_amd64", + "product_id": "openshift-secondary-scheduler-operator/secondary-scheduler-operator-bundle@sha256:775e1822637d308859c4eff42d7b09c949610430ff27cf08d01d41e44cbac2ff_amd64", + "product_identification_helper": { + "purl": "pkg:oci/secondary-scheduler-operator-bundle@sha256:775e1822637d308859c4eff42d7b09c949610430ff27cf08d01d41e44cbac2ff?arch=amd64&repository_url=registry.redhat.io/openshift-secondary-scheduler-operator/secondary-scheduler-operator-bundle&tag=v1.2-8" + } + } + }, + { + "category": "product_version", + "name": "openshift-secondary-scheduler-operator/secondary-scheduler-operator-rhel8@sha256:864b263c4dfee9c6144a910f59b6155d20fb48f49f0490efb5d14d383ba2bb84_amd64", + "product": { + "name": "openshift-secondary-scheduler-operator/secondary-scheduler-operator-rhel8@sha256:864b263c4dfee9c6144a910f59b6155d20fb48f49f0490efb5d14d383ba2bb84_amd64", + "product_id": "openshift-secondary-scheduler-operator/secondary-scheduler-operator-rhel8@sha256:864b263c4dfee9c6144a910f59b6155d20fb48f49f0490efb5d14d383ba2bb84_amd64", + "product_identification_helper": { + "purl": "pkg:oci/secondary-scheduler-operator-rhel8@sha256:864b263c4dfee9c6144a910f59b6155d20fb48f49f0490efb5d14d383ba2bb84?arch=amd64&repository_url=registry.redhat.io/openshift-secondary-scheduler-operator/secondary-scheduler-operator-rhel8&tag=v1.2-13" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "catch-0:3.3.2-1.el9.src", + "product": { + "name": "catch-0:3.3.2-1.el9.src", + "product_id": "catch-0:3.3.2-1.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/catch@3.3.2-1.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "container-selinux-3:2.221.0-2.rhaos4.14.el9.src", + "product": { + "name": "container-selinux-3:2.221.0-2.rhaos4.14.el9.src", + "product_id": "container-selinux-3:2.221.0-2.rhaos4.14.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/container-selinux@2.221.0-2.rhaos4.14.el9?arch=src&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.src", + "product": { + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.src", + "product_id": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer@0.17.0-1.rhaos4.14.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "crun-wasm-0:1.8.5-3.rhaos4.14.el9.src", + "product": { + "name": "crun-wasm-0:1.8.5-3.rhaos4.14.el9.src", + "product_id": "crun-wasm-0:1.8.5-3.rhaos4.14.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-wasm@1.8.5-3.rhaos4.14.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "fmt-0:9.1.0-1.el9.src", + "product": { + "name": "fmt-0:9.1.0-1.el9.src", + "product_id": "fmt-0:9.1.0-1.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/fmt@9.1.0-1.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "google-benchmark-0:1.8.2-1.el9.src", + "product": { + "name": "google-benchmark-0:1.8.2-1.el9.src", + "product_id": "google-benchmark-0:1.8.2-1.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/google-benchmark@1.8.2-1.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "gtest-0:1.13.0-1.el9.src", + "product": { + "name": "gtest-0:1.13.0-1.el9.src", + "product_id": "gtest-0:1.13.0-1.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gtest@1.13.0-1.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rust-afterburn-0:5.4.3-1.rhaos4.14.el9.src", + "product": { + "name": "rust-afterburn-0:5.4.3-1.rhaos4.14.el9.src", + "product_id": "rust-afterburn-0:5.4.3-1.rhaos4.14.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rust-afterburn@5.4.3-1.rhaos4.14.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "toolbox-0:0.1.2-1.rhaos4.14.el9.src", + "product": { + "name": "toolbox-0:0.1.2-1.rhaos4.14.el9.src", + "product_id": "toolbox-0:0.1.2-1.rhaos4.14.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox@0.1.2-1.rhaos4.14.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "spdlog-0:1.12.0-1.rhaos4.14.el9.src", + "product": { + "name": "spdlog-0:1.12.0-1.rhaos4.14.el9.src", + "product_id": "spdlog-0:1.12.0-1.rhaos4.14.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/spdlog@1.12.0-1.rhaos4.14.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "wasmedge-0:0.12.1-2.rhaos4.14.el9.src", + "product": { + "name": "wasmedge-0:0.12.1-2.rhaos4.14.el9.src", + "product_id": "wasmedge-0:0.12.1-2.rhaos4.14.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/wasmedge@0.12.1-2.rhaos4.14.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "crun-0:1.9.2-1.rhaos4.14.el9.src", + "product": { + "name": "crun-0:1.9.2-1.rhaos4.14.el9.src", + "product_id": "crun-0:1.9.2-1.rhaos4.14.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun@1.9.2-1.rhaos4.14.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "openshift-ansible-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el9.src", + "product": { + "name": "openshift-ansible-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el9.src", + "product_id": "openshift-ansible-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-ansible@4.14.0-202310062327.p0.gf781421.assembly.stream.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "kernel-0:5.14.0-284.36.1.el9_2.src", + "product": { + "name": "kernel-0:5.14.0-284.36.1.el9_2.src", + "product_id": "kernel-0:5.14.0-284.36.1.el9_2.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@5.14.0-284.36.1.el9_2?arch=src" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-0:5.14.0-284.36.1.rt14.321.el9_2.src", + "product": { + "name": "kernel-rt-0:5.14.0-284.36.1.rt14.321.el9_2.src", + "product_id": "kernel-rt-0:5.14.0-284.36.1.rt14.321.el9_2.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt@5.14.0-284.36.1.rt14.321.el9_2?arch=src" + } + } + }, + { + "category": "product_version", + "name": "kata-containers-0:3.1.3-4.rhaos4.14.el9.src", + "product": { + "name": "kata-containers-0:3.1.3-4.rhaos4.14.el9.src", + "product_id": "kata-containers-0:3.1.3-4.rhaos4.14.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kata-containers@3.1.3-4.rhaos4.14.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el9.src", + "product": { + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el9.src", + "product_id": "buildah-1:1.29.1-10.1.rhaos4.14.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah@1.29.1-10.1.rhaos4.14.el9?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el9.src", + "product": { + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el9.src", + "product_id": "conmon-3:2.1.7-3.1.rhaos4.14.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon@2.1.7-3.1.rhaos4.14.el9?arch=src&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.src", + "product": { + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.src", + "product_id": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.27.1-8.1.rhaos4.14.git3fecb83.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-0:1.27.0-2.1.el9.src", + "product": { + "name": "cri-tools-0:1.27.0-2.1.el9.src", + "product_id": "cri-tools-0:1.27.0-2.1.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools@1.27.0-2.1.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "ignition-0:2.16.2-1.1.rhaos4.14.el9.src", + "product": { + "name": "ignition-0:2.16.2-1.1.rhaos4.14.el9.src", + "product_id": "ignition-0:2.16.2-1.1.rhaos4.14.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ignition@2.16.2-1.1.rhaos4.14.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "openshift-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.src", + "product": { + "name": "openshift-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.src", + "product_id": "openshift-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift@4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.src", + "product": { + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.src", + "product_id": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-0:23.09.0-37.el9fdp.src", + "product": { + "name": "ovn23.09-0:23.09.0-37.el9fdp.src", + "product_id": "ovn23.09-0:23.09.0-37.el9fdp.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09@23.09.0-37.el9fdp?arch=src" + } + } + }, + { + "category": "product_version", + "name": "podman-3:4.4.1-10.1.rhaos4.14.el9.src", + "product": { + "name": "podman-3:4.4.1-10.1.rhaos4.14.el9.src", + "product_id": "podman-3:4.4.1-10.1.rhaos4.14.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman@4.4.1-10.1.rhaos4.14.el9?arch=src&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "runc-4:1.1.9-2.1.rhaos4.14.el9.src", + "product": { + "name": "runc-4:1.1.9-2.1.rhaos4.14.el9.src", + "product_id": "runc-4:1.1.9-2.1.rhaos4.14.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc@1.1.9-2.1.rhaos4.14.el9?arch=src&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.src", + "product": { + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.src", + "product_id": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo@1.11.2-10.1.rhaos4.14.el9?arch=src&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "container-selinux-3:2.221.0-1.rhaos4.14.el8.src", + "product": { + "name": "container-selinux-3:2.221.0-1.rhaos4.14.el8.src", + "product_id": "container-selinux-3:2.221.0-1.rhaos4.14.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/container-selinux@2.221.0-1.rhaos4.14.el8?arch=src&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.src", + "product": { + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.src", + "product_id": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer@0.17.0-1.rhaos4.14.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "crun-wasm-0:0.0-3.rhaos4.14.el8.src", + "product": { + "name": "crun-wasm-0:0.0-3.rhaos4.14.el8.src", + "product_id": "crun-wasm-0:0.0-3.rhaos4.14.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-wasm@0.0-3.rhaos4.14.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "haproxy-0:2.6.13-1.rhaos4.14.el8.src", + "product": { + "name": "haproxy-0:2.6.13-1.rhaos4.14.el8.src", + "product_id": "haproxy-0:2.6.13-1.rhaos4.14.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/haproxy@2.6.13-1.rhaos4.14.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "nmstate-0:2.2.12-1.rhaos4.14.el8.src", + "product": { + "name": "nmstate-0:2.2.12-1.rhaos4.14.el8.src", + "product_id": "nmstate-0:2.2.12-1.rhaos4.14.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate@2.2.12-1.rhaos4.14.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "crun-0:1.9.2-1.rhaos4.14.el8.src", + "product": { + "name": "crun-0:1.9.2-1.rhaos4.14.el8.src", + "product_id": "crun-0:1.9.2-1.rhaos4.14.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun@1.9.2-1.rhaos4.14.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "openshift-kuryr-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.src", + "product": { + "name": "openshift-kuryr-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.src", + "product_id": "openshift-kuryr-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-kuryr@4.14.0-202309272140.p0.g8926a29.assembly.stream.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "openshift4-aws-iso-0:4.14.0-202309272140.p0.gd2acdd5.assembly.stream.el8.src", + "product": { + "name": "openshift4-aws-iso-0:4.14.0-202309272140.p0.gd2acdd5.assembly.stream.el8.src", + "product_id": "openshift4-aws-iso-0:4.14.0-202309272140.p0.gd2acdd5.assembly.stream.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift4-aws-iso@4.14.0-202309272140.p0.gd2acdd5.assembly.stream.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "openshift-ansible-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el8.src", + "product": { + "name": "openshift-ansible-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el8.src", + "product_id": "openshift-ansible-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-ansible@4.14.0-202310062327.p0.gf781421.assembly.stream.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "containers-common-2:1-51.rhaos4.14.el8.src", + "product": { + "name": "containers-common-2:1-51.rhaos4.14.el8.src", + "product_id": "containers-common-2:1-51.rhaos4.14.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/containers-common@1-51.rhaos4.14.el8?arch=src&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el8.src", + "product": { + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el8.src", + "product_id": "buildah-1:1.29.1-10.1.rhaos4.14.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah@1.29.1-10.1.rhaos4.14.el8?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "butane-0:0.19.0-1.1.rhaos4.14.el8.src", + "product": { + "name": "butane-0:0.19.0-1.1.rhaos4.14.el8.src", + "product_id": "butane-0:0.19.0-1.1.rhaos4.14.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/butane@0.19.0-1.1.rhaos4.14.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el8.src", + "product": { + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el8.src", + "product_id": "conmon-3:2.1.7-3.1.rhaos4.14.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon@2.1.7-3.1.rhaos4.14.el8?arch=src&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.src", + "product": { + "name": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.src", + "product_id": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/containernetworking-plugins@1.0.1-11.1.rhaos4.14.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.src", + "product": { + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.src", + "product_id": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.27.1-8.1.rhaos4.14.git3fecb83.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-0:1.27.0-2.1.el8.src", + "product": { + "name": "cri-tools-0:1.27.0-2.1.el8.src", + "product_id": "cri-tools-0:1.27.0-2.1.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools@1.27.0-2.1.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.src", + "product": { + "name": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.src", + "product_id": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang-github-prometheus-promu@0.15.0-15.1.gitd5383c5.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "openshift-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.src", + "product": { + "name": "openshift-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.src", + "product_id": "openshift-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift@4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.src", + "product": { + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.src", + "product_id": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "podman-3:4.4.1-10.1.rhaos4.14.el8.src", + "product": { + "name": "podman-3:4.4.1-10.1.rhaos4.14.el8.src", + "product_id": "podman-3:4.4.1-10.1.rhaos4.14.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman@4.4.1-10.1.rhaos4.14.el8?arch=src&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "runc-4:1.1.9-2.1.rhaos4.14.el8.src", + "product": { + "name": "runc-4:1.1.9-2.1.rhaos4.14.el8.src", + "product_id": "runc-4:1.1.9-2.1.rhaos4.14.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc@1.1.9-2.1.rhaos4.14.el8?arch=src&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.src", + "product": { + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.src", + "product_id": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo@1.11.2-10.1.rhaos4.14.el8?arch=src&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "openstack-ironic-inspector-0:11.5.0-0.20230706175125.193aa0d.el9.src", + "product": { + "name": "openstack-ironic-inspector-0:11.5.0-0.20230706175125.193aa0d.el9.src", + "product_id": "openstack-ironic-inspector-0:11.5.0-0.20230706175125.193aa0d.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openstack-ironic-inspector@11.5.0-0.20230706175125.193aa0d.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "openstack-ironic-python-agent-0:9.5.0-0.20230728140546.fce0b8c.el9.src", + "product": { + "name": "openstack-ironic-python-agent-0:9.5.0-0.20230728140546.fce0b8c.el9.src", + "product_id": "openstack-ironic-python-agent-0:9.5.0-0.20230728140546.fce0b8c.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openstack-ironic-python-agent@9.5.0-0.20230728140546.fce0b8c.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-automaton-0:3.1.0-0.20230608140652.a4f7631.el9.src", + "product": { + "name": "python-automaton-0:3.1.0-0.20230608140652.a4f7631.el9.src", + "product_id": "python-automaton-0:3.1.0-0.20230608140652.a4f7631.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-automaton@3.1.0-0.20230608140652.a4f7631.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-cinderclient-0:9.3.0-0.20230608143053.f7a612e.el9.src", + "product": { + "name": "python-cinderclient-0:9.3.0-0.20230608143053.f7a612e.el9.src", + "product_id": "python-cinderclient-0:9.3.0-0.20230608143053.f7a612e.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-cinderclient@9.3.0-0.20230608143053.f7a612e.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-cliff-0:4.3.0-0.20230608150702.72e81d7.el9.src", + "product": { + "name": "python-cliff-0:4.3.0-0.20230608150702.72e81d7.el9.src", + "product_id": "python-cliff-0:4.3.0-0.20230608150702.72e81d7.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-cliff@4.3.0-0.20230608150702.72e81d7.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-debtcollector-0:2.5.0-0.20230308172820.a6b46c5.el9.src", + "product": { + "name": "python-debtcollector-0:2.5.0-0.20230308172820.a6b46c5.el9.src", + "product_id": "python-debtcollector-0:2.5.0-0.20230308172820.a6b46c5.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-debtcollector@2.5.0-0.20230308172820.a6b46c5.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-decorator-0:4.4.2-6.0.el9.src", + "product": { + "name": "python-decorator-0:4.4.2-6.0.el9.src", + "product_id": "python-decorator-0:4.4.2-6.0.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-decorator@4.4.2-6.0.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-dracclient-0:8.0.0-0.20230308200614.9c7499c.el9.src", + "product": { + "name": "python-dracclient-0:8.0.0-0.20230308200614.9c7499c.el9.src", + "product_id": "python-dracclient-0:8.0.0-0.20230308200614.9c7499c.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-dracclient@8.0.0-0.20230308200614.9c7499c.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-fixtures-0:4.0.1-1.el9.src", + "product": { + "name": "python-fixtures-0:4.0.1-1.el9.src", + "product_id": "python-fixtures-0:4.0.1-1.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-fixtures@4.0.1-1.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-futurist-0:2.4.1-0.20230308173923.159d752.el9.src", + "product": { + "name": "python-futurist-0:2.4.1-0.20230308173923.159d752.el9.src", + "product_id": "python-futurist-0:2.4.1-0.20230308173923.159d752.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-futurist@2.4.1-0.20230308173923.159d752.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-glanceclient-1:4.3.0-0.20230608143056.52fb6b2.el9.src", + "product": { + "name": "python-glanceclient-1:4.3.0-0.20230608143056.52fb6b2.el9.src", + "product_id": "python-glanceclient-1:4.3.0-0.20230608143056.52fb6b2.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-glanceclient@4.3.0-0.20230608143056.52fb6b2.el9?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "python-hardware-0:0.30.0-0.20230308190813.f6ff0ed.el9.src", + "product": { + "name": "python-hardware-0:0.30.0-0.20230308190813.f6ff0ed.el9.src", + "product_id": "python-hardware-0:0.30.0-0.20230308190813.f6ff0ed.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-hardware@0.30.0-0.20230308190813.f6ff0ed.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-ironic-lib-0:5.4.1-0.20230706172632.25d8671.el9.src", + "product": { + "name": "python-ironic-lib-0:5.4.1-0.20230706172632.25d8671.el9.src", + "product_id": "python-ironic-lib-0:5.4.1-0.20230706172632.25d8671.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-ironic-lib@5.4.1-0.20230706172632.25d8671.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-ironic-prometheus-exporter-0:4.1.1-0.20230614150617.7b35627.el9.src", + "product": { + "name": "python-ironic-prometheus-exporter-0:4.1.1-0.20230614150617.7b35627.el9.src", + "product_id": "python-ironic-prometheus-exporter-0:4.1.1-0.20230614150617.7b35627.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-ironic-prometheus-exporter@4.1.1-0.20230614150617.7b35627.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-keystoneauth1-0:5.2.0-0.20230608152518.2e40bbf.el9.src", + "product": { + "name": "python-keystoneauth1-0:5.2.0-0.20230608152518.2e40bbf.el9.src", + "product_id": "python-keystoneauth1-0:5.2.0-0.20230608152518.2e40bbf.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-keystoneauth1@5.2.0-0.20230608152518.2e40bbf.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-keystoneclient-1:5.1.0-0.20230608141554.4763cd8.el9.src", + "product": { + "name": "python-keystoneclient-1:5.1.0-0.20230608141554.4763cd8.el9.src", + "product_id": "python-keystoneclient-1:5.1.0-0.20230608141554.4763cd8.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-keystoneclient@5.1.0-0.20230608141554.4763cd8.el9?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "python-keystonemiddleware-0:10.3.0-0.20230608151410.92cdf8a.el9.src", + "product": { + "name": "python-keystonemiddleware-0:10.3.0-0.20230608151410.92cdf8a.el9.src", + "product_id": "python-keystonemiddleware-0:10.3.0-0.20230608151410.92cdf8a.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-keystonemiddleware@10.3.0-0.20230608151410.92cdf8a.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-openstacksdk-0:1.2.0-0.20230608155226.b7ff031.el9.src", + "product": { + "name": "python-openstacksdk-0:1.2.0-0.20230608155226.b7ff031.el9.src", + "product_id": "python-openstacksdk-0:1.2.0-0.20230608155226.b7ff031.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-openstacksdk@1.2.0-0.20230608155226.b7ff031.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-os-service-types-0:1.7.0-0.20230308170555.0b2f473.el9.src", + "product": { + "name": "python-os-service-types-0:1.7.0-0.20230308170555.0b2f473.el9.src", + "product_id": "python-os-service-types-0:1.7.0-0.20230308170555.0b2f473.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-os-service-types@1.7.0-0.20230308170555.0b2f473.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-os-traits-0:3.0.0-0.20230608152745.cff125c.el9.src", + "product": { + "name": "python-os-traits-0:3.0.0-0.20230608152745.cff125c.el9.src", + "product_id": "python-os-traits-0:3.0.0-0.20230608152745.cff125c.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-os-traits@3.0.0-0.20230608152745.cff125c.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-osc-lib-0:2.8.0-0.20230608151456.db9cdc9.el9.src", + "product": { + "name": "python-osc-lib-0:2.8.0-0.20230608151456.db9cdc9.el9.src", + "product_id": "python-osc-lib-0:2.8.0-0.20230608151456.db9cdc9.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-osc-lib@2.8.0-0.20230608151456.db9cdc9.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-cache-0:3.4.0-0.20230608153448.a720016.el9.src", + "product": { + "name": "python-oslo-cache-0:3.4.0-0.20230608153448.a720016.el9.src", + "product_id": "python-oslo-cache-0:3.4.0-0.20230608153448.a720016.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-cache@3.4.0-0.20230608153448.a720016.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-concurrency-0:5.1.1-0.20230706190204.0af5942.el9.src", + "product": { + "name": "python-oslo-concurrency-0:5.1.1-0.20230706190204.0af5942.el9.src", + "product_id": "python-oslo-concurrency-0:5.1.1-0.20230706190204.0af5942.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-concurrency@5.1.1-0.20230706190204.0af5942.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-config-2:9.1.1-0.20230608145954.515daab.el9.src", + "product": { + "name": "python-oslo-config-2:9.1.1-0.20230608145954.515daab.el9.src", + "product_id": "python-oslo-config-2:9.1.1-0.20230608145954.515daab.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-config@9.1.1-0.20230608145954.515daab.el9?arch=src&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-context-0:5.1.1-0.20230608143931.7696282.el9.src", + "product": { + "name": "python-oslo-context-0:5.1.1-0.20230608143931.7696282.el9.src", + "product_id": "python-oslo-context-0:5.1.1-0.20230608143931.7696282.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-context@5.1.1-0.20230608143931.7696282.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-db-0:12.3.1-0.20230608142355.b689b63.el9.src", + "product": { + "name": "python-oslo-db-0:12.3.1-0.20230608142355.b689b63.el9.src", + "product_id": "python-oslo-db-0:12.3.1-0.20230608142355.b689b63.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-db@12.3.1-0.20230608142355.b689b63.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-i18n-0:6.0.0-0.20230608140652.03605c2.el9.src", + "product": { + "name": "python-oslo-i18n-0:6.0.0-0.20230608140652.03605c2.el9.src", + "product_id": "python-oslo-i18n-0:6.0.0-0.20230608140652.03605c2.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-i18n@6.0.0-0.20230608140652.03605c2.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-log-0:5.2.0-0.20230608150750.16a8a42.el9.src", + "product": { + "name": "python-oslo-log-0:5.2.0-0.20230608150750.16a8a42.el9.src", + "product_id": "python-oslo-log-0:5.2.0-0.20230608150750.16a8a42.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-log@5.2.0-0.20230608150750.16a8a42.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-messaging-0:14.3.1-0.20230608152013.0602d1a.el9.src", + "product": { + "name": "python-oslo-messaging-0:14.3.1-0.20230608152013.0602d1a.el9.src", + "product_id": "python-oslo-messaging-0:14.3.1-0.20230608152013.0602d1a.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-messaging@14.3.1-0.20230608152013.0602d1a.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-middleware-0:5.1.1-0.20230608145931.7725ac9.el9.src", + "product": { + "name": "python-oslo-middleware-0:5.1.1-0.20230608145931.7725ac9.el9.src", + "product_id": "python-oslo-middleware-0:5.1.1-0.20230608145931.7725ac9.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-middleware@5.1.1-0.20230608145931.7725ac9.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-policy-0:4.2.0-0.20230608153320.93129eb.el9.src", + "product": { + "name": "python-oslo-policy-0:4.2.0-0.20230608153320.93129eb.el9.src", + "product_id": "python-oslo-policy-0:4.2.0-0.20230608153320.93129eb.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-policy@4.2.0-0.20230608153320.93129eb.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-rootwrap-0:7.0.1-0.20230608144658.b72372b.el9.src", + "product": { + "name": "python-oslo-rootwrap-0:7.0.1-0.20230608144658.b72372b.el9.src", + "product_id": "python-oslo-rootwrap-0:7.0.1-0.20230608144658.b72372b.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-rootwrap@7.0.1-0.20230608144658.b72372b.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-serialization-0:5.1.1-0.20230608144505.b4be3a4.el9.src", + "product": { + "name": "python-oslo-serialization-0:5.1.1-0.20230608144505.b4be3a4.el9.src", + "product_id": "python-oslo-serialization-0:5.1.1-0.20230608144505.b4be3a4.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-serialization@5.1.1-0.20230608144505.b4be3a4.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-service-0:3.1.1-0.20230608145222.b3ba591.el9.src", + "product": { + "name": "python-oslo-service-0:3.1.1-0.20230608145222.b3ba591.el9.src", + "product_id": "python-oslo-service-0:3.1.1-0.20230608145222.b3ba591.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-service@3.1.1-0.20230608145222.b3ba591.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-upgradecheck-0:2.1.1-0.20230608143829.eeedfc9.el9.src", + "product": { + "name": "python-oslo-upgradecheck-0:2.1.1-0.20230608143829.eeedfc9.el9.src", + "product_id": "python-oslo-upgradecheck-0:2.1.1-0.20230608143829.eeedfc9.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-upgradecheck@2.1.1-0.20230608143829.eeedfc9.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-utils-0:6.1.0-0.20230608142355.d49d594.el9.src", + "product": { + "name": "python-oslo-utils-0:6.1.0-0.20230608142355.d49d594.el9.src", + "product_id": "python-oslo-utils-0:6.1.0-0.20230608142355.d49d594.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-utils@6.1.0-0.20230608142355.d49d594.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-versionedobjects-0:3.1.0-0.20230608141554.b4ea834.el9.src", + "product": { + "name": "python-oslo-versionedobjects-0:3.1.0-0.20230608141554.b4ea834.el9.src", + "product_id": "python-oslo-versionedobjects-0:3.1.0-0.20230608141554.b4ea834.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-versionedobjects@3.1.0-0.20230608141554.b4ea834.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-osprofiler-0:3.4.3-0.20230308173821.3286301.el9.src", + "product": { + "name": "python-osprofiler-0:3.4.3-0.20230308173821.3286301.el9.src", + "product_id": "python-osprofiler-0:3.4.3-0.20230308173821.3286301.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-osprofiler@3.4.3-0.20230308173821.3286301.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pbr-0:5.11.1-0.1.el9.src", + "product": { + "name": "python-pbr-0:5.11.1-0.1.el9.src", + "product_id": "python-pbr-0:5.11.1-0.1.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pbr@5.11.1-0.1.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-proliantutils-0:2.14.1-0.20230608154738.3de2844.el9.src", + "product": { + "name": "python-proliantutils-0:2.14.1-0.20230608154738.3de2844.el9.src", + "product_id": "python-proliantutils-0:2.14.1-0.20230608154738.3de2844.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-proliantutils@2.14.1-0.20230608154738.3de2844.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pycadf-0:3.1.1-0.20230308171749.4179996.el9.src", + "product": { + "name": "python-pycadf-0:3.1.1-0.20230308171749.4179996.el9.src", + "product_id": "python-pycadf-0:3.1.1-0.20230308171749.4179996.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pycadf@3.1.1-0.20230308171749.4179996.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-requestsexceptions-0:1.4.0-0.20230308170555.d7ac0ff.el9.src", + "product": { + "name": "python-requestsexceptions-0:1.4.0-0.20230308170555.d7ac0ff.el9.src", + "product_id": "python-requestsexceptions-0:1.4.0-0.20230308170555.d7ac0ff.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-requestsexceptions@1.4.0-0.20230308170555.d7ac0ff.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-scciclient-0:0.12.3-0.20230308201513.0940a71.el9.src", + "product": { + "name": "python-scciclient-0:0.12.3-0.20230308201513.0940a71.el9.src", + "product_id": "python-scciclient-0:0.12.3-0.20230308201513.0940a71.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-scciclient@0.12.3-0.20230308201513.0940a71.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-stevedore-0:5.1.0-0.20230608154210.2d99ccc.el9.src", + "product": { + "name": "python-stevedore-0:5.1.0-0.20230608154210.2d99ccc.el9.src", + "product_id": "python-stevedore-0:5.1.0-0.20230608154210.2d99ccc.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-stevedore@5.1.0-0.20230608154210.2d99ccc.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-sushy-0:4.5.0-0.20230719180619.146ed33.el9.src", + "product": { + "name": "python-sushy-0:4.5.0-0.20230719180619.146ed33.el9.src", + "product_id": "python-sushy-0:4.5.0-0.20230719180619.146ed33.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-sushy@4.5.0-0.20230719180619.146ed33.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-sushy-oem-idrac-0:5.0.0-0.20230308202122.da9a0e4.el9.src", + "product": { + "name": "python-sushy-oem-idrac-0:5.0.0-0.20230308202122.da9a0e4.el9.src", + "product_id": "python-sushy-oem-idrac-0:5.0.0-0.20230308202122.da9a0e4.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-sushy-oem-idrac@5.0.0-0.20230308202122.da9a0e4.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-swiftclient-0:4.3.0-0.20230608151934.236c277.el9.src", + "product": { + "name": "python-swiftclient-0:4.3.0-0.20230608151934.236c277.el9.src", + "product_id": "python-swiftclient-0:4.3.0-0.20230608151934.236c277.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-swiftclient@4.3.0-0.20230608151934.236c277.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-tenacity-0:6.3.1-1.el9.src", + "product": { + "name": "python-tenacity-0:6.3.1-1.el9.src", + "product_id": "python-tenacity-0:6.3.1-1.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-tenacity@6.3.1-1.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-tooz-0:4.1.0-0.20230608154038.d5bf20c.el9.src", + "product": { + "name": "python-tooz-0:4.1.0-0.20230608154038.d5bf20c.el9.src", + "product_id": "python-tooz-0:4.1.0-0.20230608154038.d5bf20c.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-tooz@4.1.0-0.20230608154038.d5bf20c.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-wrapt-0:1.14.1-1.el9.src", + "product": { + "name": "python-wrapt-0:1.14.1-1.el9.src", + "product_id": "python-wrapt-0:1.14.1-1.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-wrapt@1.14.1-1.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "openstack-ironic-1:21.5.0-0.20231002130534.0df5961.el9.src", + "product": { + "name": "openstack-ironic-1:21.5.0-0.20231002130534.0df5961.el9.src", + "product_id": "openstack-ironic-1:21.5.0-0.20231002130534.0df5961.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openstack-ironic@21.5.0-0.20231002130534.0df5961.el9?arch=src&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "catch-0:3.3.2-1.el9.x86_64", + "product": { + "name": "catch-0:3.3.2-1.el9.x86_64", + "product_id": "catch-0:3.3.2-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/catch@3.3.2-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "catch-devel-0:3.3.2-1.el9.x86_64", + "product": { + "name": "catch-devel-0:3.3.2-1.el9.x86_64", + "product_id": "catch-devel-0:3.3.2-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/catch-devel@3.3.2-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "catch-debugsource-0:3.3.2-1.el9.x86_64", + "product": { + "name": "catch-debugsource-0:3.3.2-1.el9.x86_64", + "product_id": "catch-debugsource-0:3.3.2-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/catch-debugsource@3.3.2-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "catch-debuginfo-0:3.3.2-1.el9.x86_64", + "product": { + "name": "catch-debuginfo-0:3.3.2-1.el9.x86_64", + "product_id": "catch-debuginfo-0:3.3.2-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/catch-debuginfo@3.3.2-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.x86_64", + "product": { + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.x86_64", + "product_id": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer@0.17.0-1.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el9.x86_64", + "product": { + "name": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el9.x86_64", + "product_id": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-bootinfra@0.17.0-1.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el9.x86_64", + "product": { + "name": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el9.x86_64", + "product_id": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-dracut@0.17.0-1.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el9.x86_64", + "product": { + "name": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el9.x86_64", + "product_id": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-debugsource@0.17.0-1.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el9.x86_64", + "product": { + "name": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el9.x86_64", + "product_id": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-bootinfra-debuginfo@0.17.0-1.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el9.x86_64", + "product": { + "name": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el9.x86_64", + "product_id": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-debuginfo@0.17.0-1.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "crun-wasm-0:1.8.5-3.rhaos4.14.el9.x86_64", + "product": { + "name": "crun-wasm-0:1.8.5-3.rhaos4.14.el9.x86_64", + "product_id": "crun-wasm-0:1.8.5-3.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-wasm@1.8.5-3.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "crun-wasm-debugsource-0:1.8.5-3.rhaos4.14.el9.x86_64", + "product": { + "name": "crun-wasm-debugsource-0:1.8.5-3.rhaos4.14.el9.x86_64", + "product_id": "crun-wasm-debugsource-0:1.8.5-3.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-wasm-debugsource@1.8.5-3.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "crun-wasm-debuginfo-0:1.8.5-3.rhaos4.14.el9.x86_64", + "product": { + "name": "crun-wasm-debuginfo-0:1.8.5-3.rhaos4.14.el9.x86_64", + "product_id": "crun-wasm-debuginfo-0:1.8.5-3.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-wasm-debuginfo@1.8.5-3.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "fmt-0:9.1.0-1.el9.x86_64", + "product": { + "name": "fmt-0:9.1.0-1.el9.x86_64", + "product_id": "fmt-0:9.1.0-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/fmt@9.1.0-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "fmt-devel-0:9.1.0-1.el9.x86_64", + "product": { + "name": "fmt-devel-0:9.1.0-1.el9.x86_64", + "product_id": "fmt-devel-0:9.1.0-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/fmt-devel@9.1.0-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "fmt-debugsource-0:9.1.0-1.el9.x86_64", + "product": { + "name": "fmt-debugsource-0:9.1.0-1.el9.x86_64", + "product_id": "fmt-debugsource-0:9.1.0-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/fmt-debugsource@9.1.0-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "fmt-debuginfo-0:9.1.0-1.el9.x86_64", + "product": { + "name": "fmt-debuginfo-0:9.1.0-1.el9.x86_64", + "product_id": "fmt-debuginfo-0:9.1.0-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/fmt-debuginfo@9.1.0-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "google-benchmark-0:1.8.2-1.el9.x86_64", + "product": { + "name": "google-benchmark-0:1.8.2-1.el9.x86_64", + "product_id": "google-benchmark-0:1.8.2-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/google-benchmark@1.8.2-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "google-benchmark-devel-0:1.8.2-1.el9.x86_64", + "product": { + "name": "google-benchmark-devel-0:1.8.2-1.el9.x86_64", + "product_id": "google-benchmark-devel-0:1.8.2-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/google-benchmark-devel@1.8.2-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "google-benchmark-debugsource-0:1.8.2-1.el9.x86_64", + "product": { + "name": "google-benchmark-debugsource-0:1.8.2-1.el9.x86_64", + "product_id": "google-benchmark-debugsource-0:1.8.2-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/google-benchmark-debugsource@1.8.2-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "google-benchmark-debuginfo-0:1.8.2-1.el9.x86_64", + "product": { + "name": "google-benchmark-debuginfo-0:1.8.2-1.el9.x86_64", + "product_id": "google-benchmark-debuginfo-0:1.8.2-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/google-benchmark-debuginfo@1.8.2-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "gmock-0:1.13.0-1.el9.x86_64", + "product": { + "name": "gmock-0:1.13.0-1.el9.x86_64", + "product_id": "gmock-0:1.13.0-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gmock@1.13.0-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "gmock-devel-0:1.13.0-1.el9.x86_64", + "product": { + "name": "gmock-devel-0:1.13.0-1.el9.x86_64", + "product_id": "gmock-devel-0:1.13.0-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gmock-devel@1.13.0-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "gtest-0:1.13.0-1.el9.x86_64", + "product": { + "name": "gtest-0:1.13.0-1.el9.x86_64", + "product_id": "gtest-0:1.13.0-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gtest@1.13.0-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "gtest-devel-0:1.13.0-1.el9.x86_64", + "product": { + "name": "gtest-devel-0:1.13.0-1.el9.x86_64", + "product_id": "gtest-devel-0:1.13.0-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gtest-devel@1.13.0-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "gtest-debugsource-0:1.13.0-1.el9.x86_64", + "product": { + "name": "gtest-debugsource-0:1.13.0-1.el9.x86_64", + "product_id": "gtest-debugsource-0:1.13.0-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gtest-debugsource@1.13.0-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "gmock-debuginfo-0:1.13.0-1.el9.x86_64", + "product": { + "name": "gmock-debuginfo-0:1.13.0-1.el9.x86_64", + "product_id": "gmock-debuginfo-0:1.13.0-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gmock-debuginfo@1.13.0-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "gtest-debuginfo-0:1.13.0-1.el9.x86_64", + "product": { + "name": "gtest-debuginfo-0:1.13.0-1.el9.x86_64", + "product_id": "gtest-debuginfo-0:1.13.0-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gtest-debuginfo@1.13.0-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "afterburn-0:5.4.3-1.rhaos4.14.el9.x86_64", + "product": { + "name": "afterburn-0:5.4.3-1.rhaos4.14.el9.x86_64", + "product_id": "afterburn-0:5.4.3-1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/afterburn@5.4.3-1.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "afterburn-dracut-0:5.4.3-1.rhaos4.14.el9.x86_64", + "product": { + "name": "afterburn-dracut-0:5.4.3-1.rhaos4.14.el9.x86_64", + "product_id": "afterburn-dracut-0:5.4.3-1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/afterburn-dracut@5.4.3-1.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rust-afterburn-debugsource-0:5.4.3-1.rhaos4.14.el9.x86_64", + "product": { + "name": "rust-afterburn-debugsource-0:5.4.3-1.rhaos4.14.el9.x86_64", + "product_id": "rust-afterburn-debugsource-0:5.4.3-1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rust-afterburn-debugsource@5.4.3-1.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "afterburn-debuginfo-0:5.4.3-1.rhaos4.14.el9.x86_64", + "product": { + "name": "afterburn-debuginfo-0:5.4.3-1.rhaos4.14.el9.x86_64", + "product_id": "afterburn-debuginfo-0:5.4.3-1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/afterburn-debuginfo@5.4.3-1.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "spdlog-0:1.12.0-1.rhaos4.14.el9.x86_64", + "product": { + "name": "spdlog-0:1.12.0-1.rhaos4.14.el9.x86_64", + "product_id": "spdlog-0:1.12.0-1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/spdlog@1.12.0-1.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "spdlog-devel-0:1.12.0-1.rhaos4.14.el9.x86_64", + "product": { + "name": "spdlog-devel-0:1.12.0-1.rhaos4.14.el9.x86_64", + "product_id": "spdlog-devel-0:1.12.0-1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/spdlog-devel@1.12.0-1.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "spdlog-debugsource-0:1.12.0-1.rhaos4.14.el9.x86_64", + "product": { + "name": "spdlog-debugsource-0:1.12.0-1.rhaos4.14.el9.x86_64", + "product_id": "spdlog-debugsource-0:1.12.0-1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/spdlog-debugsource@1.12.0-1.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "spdlog-debuginfo-0:1.12.0-1.rhaos4.14.el9.x86_64", + "product": { + "name": "spdlog-debuginfo-0:1.12.0-1.rhaos4.14.el9.x86_64", + "product_id": "spdlog-debuginfo-0:1.12.0-1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/spdlog-debuginfo@1.12.0-1.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "wasmedge-0:0.12.1-2.rhaos4.14.el9.x86_64", + "product": { + "name": "wasmedge-0:0.12.1-2.rhaos4.14.el9.x86_64", + "product_id": "wasmedge-0:0.12.1-2.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/wasmedge@0.12.1-2.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "wasmedge-devel-0:0.12.1-2.rhaos4.14.el9.x86_64", + "product": { + "name": "wasmedge-devel-0:0.12.1-2.rhaos4.14.el9.x86_64", + "product_id": "wasmedge-devel-0:0.12.1-2.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/wasmedge-devel@0.12.1-2.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "wasmedge-rt-0:0.12.1-2.rhaos4.14.el9.x86_64", + "product": { + "name": "wasmedge-rt-0:0.12.1-2.rhaos4.14.el9.x86_64", + "product_id": "wasmedge-rt-0:0.12.1-2.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/wasmedge-rt@0.12.1-2.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "wasmedge-debugsource-0:0.12.1-2.rhaos4.14.el9.x86_64", + "product": { + "name": "wasmedge-debugsource-0:0.12.1-2.rhaos4.14.el9.x86_64", + "product_id": "wasmedge-debugsource-0:0.12.1-2.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/wasmedge-debugsource@0.12.1-2.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "wasmedge-debuginfo-0:0.12.1-2.rhaos4.14.el9.x86_64", + "product": { + "name": "wasmedge-debuginfo-0:0.12.1-2.rhaos4.14.el9.x86_64", + "product_id": "wasmedge-debuginfo-0:0.12.1-2.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/wasmedge-debuginfo@0.12.1-2.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "wasmedge-rt-debuginfo-0:0.12.1-2.rhaos4.14.el9.x86_64", + "product": { + "name": "wasmedge-rt-debuginfo-0:0.12.1-2.rhaos4.14.el9.x86_64", + "product_id": "wasmedge-rt-debuginfo-0:0.12.1-2.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/wasmedge-rt-debuginfo@0.12.1-2.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "crun-0:1.9.2-1.rhaos4.14.el9.x86_64", + "product": { + "name": "crun-0:1.9.2-1.rhaos4.14.el9.x86_64", + "product_id": "crun-0:1.9.2-1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun@1.9.2-1.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "crun-debugsource-0:1.9.2-1.rhaos4.14.el9.x86_64", + "product": { + "name": "crun-debugsource-0:1.9.2-1.rhaos4.14.el9.x86_64", + "product_id": "crun-debugsource-0:1.9.2-1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-debugsource@1.9.2-1.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el9.x86_64", + "product": { + "name": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el9.x86_64", + "product_id": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-debuginfo@1.9.2-1.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "bpftool-0:7.0.0-284.36.1.el9_2.x86_64", + "product": { + "name": "bpftool-0:7.0.0-284.36.1.el9_2.x86_64", + "product_id": "bpftool-0:7.0.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool@7.0.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-core-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-core-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-core-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-core@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-cross-headers-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-cross-headers-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-cross-headers-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-cross-headers@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-debug-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-core-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-core-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-debug-core-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-devel-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-debug-devel-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-matched-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-devel-matched-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-debug-devel-matched-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-modules-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-debug-modules-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-core-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-modules-core-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-debug-modules-core-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-extra-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-modules-extra-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-debug-modules-extra-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-internal-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-modules-internal-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-debug-modules-internal-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-internal@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-partner-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-modules-partner-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-debug-modules-partner-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-partner@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-uki-virt-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-uki-virt-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-debug-uki-virt-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-uki-virt@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-devel-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-devel-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-matched-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-devel-matched-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-devel-matched-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-headers-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-headers-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-headers-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-ipaclones-internal-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-ipaclones-internal-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-ipaclones-internal-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-ipaclones-internal@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-modules-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-modules-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-core-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-modules-core-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-modules-core-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-extra-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-modules-extra-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-modules-extra-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-internal-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-modules-internal-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-modules-internal-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-internal@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-partner-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-modules-partner-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-modules-partner-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-partner@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-selftests-internal-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-selftests-internal-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-selftests-internal-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-selftests-internal@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-tools-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-tools-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-tools-libs-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-tools-libs-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-devel-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-tools-libs-devel-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-tools-libs-devel-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-uki-virt-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-uki-virt-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-uki-virt-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-uki-virt@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "perf-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "perf-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "perf-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "python3-perf-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "python3-perf-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rtla-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "rtla-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "rtla-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rtla@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "bpftool-debuginfo-0:7.0.0-284.36.1.el9_2.x86_64", + "product": { + "name": "bpftool-debuginfo-0:7.0.0-284.36.1.el9_2.x86_64", + "product_id": "bpftool-debuginfo-0:7.0.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool-debuginfo@7.0.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-debug-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-debug-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-common-x86_64-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-debuginfo-common-x86_64-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-debuginfo-common-x86_64-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "kernel-tools-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "kernel-tools-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "perf-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "perf-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "perf-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64", + "product": { + "name": "python3-perf-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64", + "product_id": "python3-perf-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-284.36.1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product": { + "name": "kernel-rt-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_id": "kernel-rt-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt@5.14.0-284.36.1.rt14.321.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-core-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product": { + "name": "kernel-rt-core-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_id": "kernel-rt-core-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-core@5.14.0-284.36.1.rt14.321.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_id": "kernel-rt-debug-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug@5.14.0-284.36.1.rt14.321.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-core-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-core-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_id": "kernel-rt-debug-core-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-core@5.14.0-284.36.1.rt14.321.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-devel-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-devel-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_id": "kernel-rt-debug-devel-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-devel@5.14.0-284.36.1.rt14.321.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-devel-matched-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-devel-matched-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_id": "kernel-rt-debug-devel-matched-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-devel-matched@5.14.0-284.36.1.rt14.321.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-kvm-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-kvm-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_id": "kernel-rt-debug-kvm-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-kvm@5.14.0-284.36.1.rt14.321.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-modules-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-modules-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_id": "kernel-rt-debug-modules-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-modules@5.14.0-284.36.1.rt14.321.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-modules-core-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-modules-core-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_id": "kernel-rt-debug-modules-core-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-modules-core@5.14.0-284.36.1.rt14.321.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-modules-extra-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-modules-extra-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_id": "kernel-rt-debug-modules-extra-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@5.14.0-284.36.1.rt14.321.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-modules-internal-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-modules-internal-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_id": "kernel-rt-debug-modules-internal-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-modules-internal@5.14.0-284.36.1.rt14.321.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-modules-partner-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-modules-partner-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_id": "kernel-rt-debug-modules-partner-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-modules-partner@5.14.0-284.36.1.rt14.321.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-devel-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product": { + "name": "kernel-rt-devel-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_id": "kernel-rt-devel-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-devel@5.14.0-284.36.1.rt14.321.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-devel-matched-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product": { + "name": "kernel-rt-devel-matched-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_id": "kernel-rt-devel-matched-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-devel-matched@5.14.0-284.36.1.rt14.321.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-kvm-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product": { + "name": "kernel-rt-kvm-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_id": "kernel-rt-kvm-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-kvm@5.14.0-284.36.1.rt14.321.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-modules-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product": { + "name": "kernel-rt-modules-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_id": "kernel-rt-modules-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-modules@5.14.0-284.36.1.rt14.321.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-modules-core-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product": { + "name": "kernel-rt-modules-core-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_id": "kernel-rt-modules-core-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-modules-core@5.14.0-284.36.1.rt14.321.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-modules-extra-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product": { + "name": "kernel-rt-modules-extra-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_id": "kernel-rt-modules-extra-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-modules-extra@5.14.0-284.36.1.rt14.321.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-modules-internal-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product": { + "name": "kernel-rt-modules-internal-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_id": "kernel-rt-modules-internal-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-modules-internal@5.14.0-284.36.1.rt14.321.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-modules-partner-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product": { + "name": "kernel-rt-modules-partner-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_id": "kernel-rt-modules-partner-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-modules-partner@5.14.0-284.36.1.rt14.321.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-selftests-internal-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product": { + "name": "kernel-rt-selftests-internal-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_id": "kernel-rt-selftests-internal-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-selftests-internal@5.14.0-284.36.1.rt14.321.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-debuginfo-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product": { + "name": "kernel-rt-debug-debuginfo-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_id": "kernel-rt-debug-debuginfo-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@5.14.0-284.36.1.rt14.321.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debuginfo-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product": { + "name": "kernel-rt-debuginfo-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_id": "kernel-rt-debuginfo-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debuginfo@5.14.0-284.36.1.rt14.321.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product": { + "name": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_id": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debuginfo-common-x86_64@5.14.0-284.36.1.rt14.321.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kata-containers-0:3.1.3-4.rhaos4.14.el9.x86_64", + "product": { + "name": "kata-containers-0:3.1.3-4.rhaos4.14.el9.x86_64", + "product_id": "kata-containers-0:3.1.3-4.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kata-containers@3.1.3-4.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el9.x86_64", + "product": { + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el9.x86_64", + "product_id": "buildah-1:1.29.1-10.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah@1.29.1-10.1.rhaos4.14.el9?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el9.x86_64", + "product": { + "name": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el9.x86_64", + "product_id": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-tests@1.29.1-10.1.rhaos4.14.el9?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el9.x86_64", + "product": { + "name": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el9.x86_64", + "product_id": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-debugsource@1.29.1-10.1.rhaos4.14.el9?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.x86_64", + "product": { + "name": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.x86_64", + "product_id": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-debuginfo@1.29.1-10.1.rhaos4.14.el9?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.x86_64", + "product": { + "name": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.x86_64", + "product_id": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-tests-debuginfo@1.29.1-10.1.rhaos4.14.el9?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el9.x86_64", + "product": { + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el9.x86_64", + "product_id": "conmon-3:2.1.7-3.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon@2.1.7-3.1.rhaos4.14.el9?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el9.x86_64", + "product": { + "name": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el9.x86_64", + "product_id": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon-debugsource@2.1.7-3.1.rhaos4.14.el9?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el9.x86_64", + "product": { + "name": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el9.x86_64", + "product_id": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon-debuginfo@2.1.7-3.1.rhaos4.14.el9?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.x86_64", + "product": { + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.x86_64", + "product_id": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.27.1-8.1.rhaos4.14.git3fecb83.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.x86_64", + "product": { + "name": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.x86_64", + "product_id": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debugsource@1.27.1-8.1.rhaos4.14.git3fecb83.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.x86_64", + "product": { + "name": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.x86_64", + "product_id": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debuginfo@1.27.1-8.1.rhaos4.14.git3fecb83.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-0:1.27.0-2.1.el9.x86_64", + "product": { + "name": "cri-tools-0:1.27.0-2.1.el9.x86_64", + "product_id": "cri-tools-0:1.27.0-2.1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools@1.27.0-2.1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-debugsource-0:1.27.0-2.1.el9.x86_64", + "product": { + "name": "cri-tools-debugsource-0:1.27.0-2.1.el9.x86_64", + "product_id": "cri-tools-debugsource-0:1.27.0-2.1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools-debugsource@1.27.0-2.1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-debuginfo-0:1.27.0-2.1.el9.x86_64", + "product": { + "name": "cri-tools-debuginfo-0:1.27.0-2.1.el9.x86_64", + "product_id": "cri-tools-debuginfo-0:1.27.0-2.1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools-debuginfo@1.27.0-2.1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "ignition-0:2.16.2-1.1.rhaos4.14.el9.x86_64", + "product": { + "name": "ignition-0:2.16.2-1.1.rhaos4.14.el9.x86_64", + "product_id": "ignition-0:2.16.2-1.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ignition@2.16.2-1.1.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "ignition-validate-0:2.16.2-1.1.rhaos4.14.el9.x86_64", + "product": { + "name": "ignition-validate-0:2.16.2-1.1.rhaos4.14.el9.x86_64", + "product_id": "ignition-validate-0:2.16.2-1.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ignition-validate@2.16.2-1.1.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "ignition-debugsource-0:2.16.2-1.1.rhaos4.14.el9.x86_64", + "product": { + "name": "ignition-debugsource-0:2.16.2-1.1.rhaos4.14.el9.x86_64", + "product_id": "ignition-debugsource-0:2.16.2-1.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ignition-debugsource@2.16.2-1.1.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "ignition-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.x86_64", + "product": { + "name": "ignition-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.x86_64", + "product_id": "ignition-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ignition-debuginfo@2.16.2-1.1.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "ignition-validate-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.x86_64", + "product": { + "name": "ignition-validate-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.x86_64", + "product_id": "ignition-validate-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ignition-validate-debuginfo@2.16.2-1.1.rhaos4.14.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.x86_64", + "product": { + "name": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.x86_64", + "product_id": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-hyperkube@4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.x86_64", + "product": { + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.x86_64", + "product_id": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-redistributable-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.x86_64", + "product": { + "name": "openshift-clients-redistributable-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.x86_64", + "product_id": "openshift-clients-redistributable-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients-redistributable@4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-0:23.09.0-37.el9fdp.x86_64", + "product": { + "name": "ovn23.09-0:23.09.0-37.el9fdp.x86_64", + "product_id": "ovn23.09-0:23.09.0-37.el9fdp.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09@23.09.0-37.el9fdp?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-central-0:23.09.0-37.el9fdp.x86_64", + "product": { + "name": "ovn23.09-central-0:23.09.0-37.el9fdp.x86_64", + "product_id": "ovn23.09-central-0:23.09.0-37.el9fdp.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-central@23.09.0-37.el9fdp?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-host-0:23.09.0-37.el9fdp.x86_64", + "product": { + "name": "ovn23.09-host-0:23.09.0-37.el9fdp.x86_64", + "product_id": "ovn23.09-host-0:23.09.0-37.el9fdp.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-host@23.09.0-37.el9fdp?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-vtep-0:23.09.0-37.el9fdp.x86_64", + "product": { + "name": "ovn23.09-vtep-0:23.09.0-37.el9fdp.x86_64", + "product_id": "ovn23.09-vtep-0:23.09.0-37.el9fdp.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-vtep@23.09.0-37.el9fdp?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-debugsource-0:23.09.0-37.el9fdp.x86_64", + "product": { + "name": "ovn23.09-debugsource-0:23.09.0-37.el9fdp.x86_64", + "product_id": "ovn23.09-debugsource-0:23.09.0-37.el9fdp.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-debugsource@23.09.0-37.el9fdp?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-central-debuginfo-0:23.09.0-37.el9fdp.x86_64", + "product": { + "name": "ovn23.09-central-debuginfo-0:23.09.0-37.el9fdp.x86_64", + "product_id": "ovn23.09-central-debuginfo-0:23.09.0-37.el9fdp.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-central-debuginfo@23.09.0-37.el9fdp?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-debuginfo-0:23.09.0-37.el9fdp.x86_64", + "product": { + "name": "ovn23.09-debuginfo-0:23.09.0-37.el9fdp.x86_64", + "product_id": "ovn23.09-debuginfo-0:23.09.0-37.el9fdp.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-debuginfo@23.09.0-37.el9fdp?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-host-debuginfo-0:23.09.0-37.el9fdp.x86_64", + "product": { + "name": "ovn23.09-host-debuginfo-0:23.09.0-37.el9fdp.x86_64", + "product_id": "ovn23.09-host-debuginfo-0:23.09.0-37.el9fdp.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-host-debuginfo@23.09.0-37.el9fdp?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-vtep-debuginfo-0:23.09.0-37.el9fdp.x86_64", + "product": { + "name": "ovn23.09-vtep-debuginfo-0:23.09.0-37.el9fdp.x86_64", + "product_id": "ovn23.09-vtep-debuginfo-0:23.09.0-37.el9fdp.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-vtep-debuginfo@23.09.0-37.el9fdp?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "podman-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product": { + "name": "podman-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product_id": "podman-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman@4.4.1-10.1.rhaos4.14.el9?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product": { + "name": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product_id": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-gvproxy@4.4.1-10.1.rhaos4.14.el9?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product": { + "name": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product_id": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-plugins@4.4.1-10.1.rhaos4.14.el9?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-remote-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product": { + "name": "podman-remote-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product_id": "podman-remote-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-remote@4.4.1-10.1.rhaos4.14.el9?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-tests-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product": { + "name": "podman-tests-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product_id": "podman-tests-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-tests@4.4.1-10.1.rhaos4.14.el9?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product": { + "name": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product_id": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-debugsource@4.4.1-10.1.rhaos4.14.el9?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product": { + "name": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product_id": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-debuginfo@4.4.1-10.1.rhaos4.14.el9?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product": { + "name": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product_id": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-gvproxy-debuginfo@4.4.1-10.1.rhaos4.14.el9?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product": { + "name": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product_id": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-plugins-debuginfo@4.4.1-10.1.rhaos4.14.el9?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product": { + "name": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product_id": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-remote-debuginfo@4.4.1-10.1.rhaos4.14.el9?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "runc-4:1.1.9-2.1.rhaos4.14.el9.x86_64", + "product": { + "name": "runc-4:1.1.9-2.1.rhaos4.14.el9.x86_64", + "product_id": "runc-4:1.1.9-2.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc@1.1.9-2.1.rhaos4.14.el9?arch=x86_64&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el9.x86_64", + "product": { + "name": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el9.x86_64", + "product_id": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc-debugsource@1.1.9-2.1.rhaos4.14.el9?arch=x86_64&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el9.x86_64", + "product": { + "name": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el9.x86_64", + "product_id": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc-debuginfo@1.1.9-2.1.rhaos4.14.el9?arch=x86_64&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.x86_64", + "product": { + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.x86_64", + "product_id": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo@1.11.2-10.1.rhaos4.14.el9?arch=x86_64&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el9.x86_64", + "product": { + "name": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el9.x86_64", + "product_id": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo-tests@1.11.2-10.1.rhaos4.14.el9?arch=x86_64&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el9.x86_64", + "product": { + "name": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el9.x86_64", + "product_id": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo-debugsource@1.11.2-10.1.rhaos4.14.el9?arch=x86_64&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el9.x86_64", + "product": { + "name": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el9.x86_64", + "product_id": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo-debuginfo@1.11.2-10.1.rhaos4.14.el9?arch=x86_64&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.x86_64", + "product": { + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.x86_64", + "product_id": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer@0.17.0-1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el8.x86_64", + "product": { + "name": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el8.x86_64", + "product_id": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-bootinfra@0.17.0-1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el8.x86_64", + "product": { + "name": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el8.x86_64", + "product_id": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-dracut@0.17.0-1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el8.x86_64", + "product": { + "name": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el8.x86_64", + "product_id": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-debugsource@0.17.0-1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el8.x86_64", + "product": { + "name": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el8.x86_64", + "product_id": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-bootinfra-debuginfo@0.17.0-1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el8.x86_64", + "product": { + "name": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el8.x86_64", + "product_id": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-debuginfo@0.17.0-1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "crun-wasm-0:0.0-3.rhaos4.14.el8.x86_64", + "product": { + "name": "crun-wasm-0:0.0-3.rhaos4.14.el8.x86_64", + "product_id": "crun-wasm-0:0.0-3.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-wasm@0.0-3.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "haproxy26-0:2.6.13-1.rhaos4.14.el8.x86_64", + "product": { + "name": "haproxy26-0:2.6.13-1.rhaos4.14.el8.x86_64", + "product_id": "haproxy26-0:2.6.13-1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/haproxy26@2.6.13-1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "haproxy-debugsource-0:2.6.13-1.rhaos4.14.el8.x86_64", + "product": { + "name": "haproxy-debugsource-0:2.6.13-1.rhaos4.14.el8.x86_64", + "product_id": "haproxy-debugsource-0:2.6.13-1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/haproxy-debugsource@2.6.13-1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "haproxy26-debuginfo-0:2.6.13-1.rhaos4.14.el8.x86_64", + "product": { + "name": "haproxy26-debuginfo-0:2.6.13-1.rhaos4.14.el8.x86_64", + "product_id": "haproxy26-debuginfo-0:2.6.13-1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/haproxy26-debuginfo@2.6.13-1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nmstate-0:2.2.12-1.rhaos4.14.el8.x86_64", + "product": { + "name": "nmstate-0:2.2.12-1.rhaos4.14.el8.x86_64", + "product_id": "nmstate-0:2.2.12-1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate@2.2.12-1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nmstate-devel-0:2.2.12-1.rhaos4.14.el8.x86_64", + "product": { + "name": "nmstate-devel-0:2.2.12-1.rhaos4.14.el8.x86_64", + "product_id": "nmstate-devel-0:2.2.12-1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate-devel@2.2.12-1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nmstate-libs-0:2.2.12-1.rhaos4.14.el8.x86_64", + "product": { + "name": "nmstate-libs-0:2.2.12-1.rhaos4.14.el8.x86_64", + "product_id": "nmstate-libs-0:2.2.12-1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate-libs@2.2.12-1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nmstate-static-0:2.2.12-1.rhaos4.14.el8.x86_64", + "product": { + "name": "nmstate-static-0:2.2.12-1.rhaos4.14.el8.x86_64", + "product_id": "nmstate-static-0:2.2.12-1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate-static@2.2.12-1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-libnmstate-0:2.2.12-1.rhaos4.14.el8.x86_64", + "product": { + "name": "python3-libnmstate-0:2.2.12-1.rhaos4.14.el8.x86_64", + "product_id": "python3-libnmstate-0:2.2.12-1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-libnmstate@2.2.12-1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nmstate-debugsource-0:2.2.12-1.rhaos4.14.el8.x86_64", + "product": { + "name": "nmstate-debugsource-0:2.2.12-1.rhaos4.14.el8.x86_64", + "product_id": "nmstate-debugsource-0:2.2.12-1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate-debugsource@2.2.12-1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nmstate-debuginfo-0:2.2.12-1.rhaos4.14.el8.x86_64", + "product": { + "name": "nmstate-debuginfo-0:2.2.12-1.rhaos4.14.el8.x86_64", + "product_id": "nmstate-debuginfo-0:2.2.12-1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate-debuginfo@2.2.12-1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nmstate-libs-debuginfo-0:2.2.12-1.rhaos4.14.el8.x86_64", + "product": { + "name": "nmstate-libs-debuginfo-0:2.2.12-1.rhaos4.14.el8.x86_64", + "product_id": "nmstate-libs-debuginfo-0:2.2.12-1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate-libs-debuginfo@2.2.12-1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "crun-0:1.9.2-1.rhaos4.14.el8.x86_64", + "product": { + "name": "crun-0:1.9.2-1.rhaos4.14.el8.x86_64", + "product_id": "crun-0:1.9.2-1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun@1.9.2-1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "crun-debugsource-0:1.9.2-1.rhaos4.14.el8.x86_64", + "product": { + "name": "crun-debugsource-0:1.9.2-1.rhaos4.14.el8.x86_64", + "product_id": "crun-debugsource-0:1.9.2-1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-debugsource@1.9.2-1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el8.x86_64", + "product": { + "name": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el8.x86_64", + "product_id": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-debuginfo@1.9.2-1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "containers-common-2:1-51.rhaos4.14.el8.x86_64", + "product": { + "name": "containers-common-2:1-51.rhaos4.14.el8.x86_64", + "product_id": "containers-common-2:1-51.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/containers-common@1-51.rhaos4.14.el8?arch=x86_64&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el8.x86_64", + "product": { + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el8.x86_64", + "product_id": "buildah-1:1.29.1-10.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah@1.29.1-10.1.rhaos4.14.el8?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el8.x86_64", + "product": { + "name": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el8.x86_64", + "product_id": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-tests@1.29.1-10.1.rhaos4.14.el8?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el8.x86_64", + "product": { + "name": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el8.x86_64", + "product_id": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-debugsource@1.29.1-10.1.rhaos4.14.el8?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.x86_64", + "product": { + "name": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.x86_64", + "product_id": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-debuginfo@1.29.1-10.1.rhaos4.14.el8?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.x86_64", + "product": { + "name": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.x86_64", + "product_id": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-tests-debuginfo@1.29.1-10.1.rhaos4.14.el8?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "butane-0:0.19.0-1.1.rhaos4.14.el8.x86_64", + "product": { + "name": "butane-0:0.19.0-1.1.rhaos4.14.el8.x86_64", + "product_id": "butane-0:0.19.0-1.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/butane@0.19.0-1.1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "butane-debugsource-0:0.19.0-1.1.rhaos4.14.el8.x86_64", + "product": { + "name": "butane-debugsource-0:0.19.0-1.1.rhaos4.14.el8.x86_64", + "product_id": "butane-debugsource-0:0.19.0-1.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/butane-debugsource@0.19.0-1.1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "butane-debuginfo-0:0.19.0-1.1.rhaos4.14.el8.x86_64", + "product": { + "name": "butane-debuginfo-0:0.19.0-1.1.rhaos4.14.el8.x86_64", + "product_id": "butane-debuginfo-0:0.19.0-1.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/butane-debuginfo@0.19.0-1.1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el8.x86_64", + "product": { + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el8.x86_64", + "product_id": "conmon-3:2.1.7-3.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon@2.1.7-3.1.rhaos4.14.el8?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el8.x86_64", + "product": { + "name": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el8.x86_64", + "product_id": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon-debugsource@2.1.7-3.1.rhaos4.14.el8?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el8.x86_64", + "product": { + "name": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el8.x86_64", + "product_id": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon-debuginfo@2.1.7-3.1.rhaos4.14.el8?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.x86_64", + "product": { + "name": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.x86_64", + "product_id": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/containernetworking-plugins@1.0.1-11.1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "containernetworking-plugins-debugsource-0:1.0.1-11.1.rhaos4.14.el8.x86_64", + "product": { + "name": "containernetworking-plugins-debugsource-0:1.0.1-11.1.rhaos4.14.el8.x86_64", + "product_id": "containernetworking-plugins-debugsource-0:1.0.1-11.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/containernetworking-plugins-debugsource@1.0.1-11.1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "containernetworking-plugins-debuginfo-0:1.0.1-11.1.rhaos4.14.el8.x86_64", + "product": { + "name": "containernetworking-plugins-debuginfo-0:1.0.1-11.1.rhaos4.14.el8.x86_64", + "product_id": "containernetworking-plugins-debuginfo-0:1.0.1-11.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/containernetworking-plugins-debuginfo@1.0.1-11.1.rhaos4.14.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.x86_64", + "product": { + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.x86_64", + "product_id": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.27.1-8.1.rhaos4.14.git3fecb83.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.x86_64", + "product": { + "name": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.x86_64", + "product_id": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debugsource@1.27.1-8.1.rhaos4.14.git3fecb83.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.x86_64", + "product": { + "name": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.x86_64", + "product_id": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debuginfo@1.27.1-8.1.rhaos4.14.git3fecb83.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-0:1.27.0-2.1.el8.x86_64", + "product": { + "name": "cri-tools-0:1.27.0-2.1.el8.x86_64", + "product_id": "cri-tools-0:1.27.0-2.1.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools@1.27.0-2.1.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-debugsource-0:1.27.0-2.1.el8.x86_64", + "product": { + "name": "cri-tools-debugsource-0:1.27.0-2.1.el8.x86_64", + "product_id": "cri-tools-debugsource-0:1.27.0-2.1.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools-debugsource@1.27.0-2.1.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-debuginfo-0:1.27.0-2.1.el8.x86_64", + "product": { + "name": "cri-tools-debuginfo-0:1.27.0-2.1.el8.x86_64", + "product_id": "cri-tools-debuginfo-0:1.27.0-2.1.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools-debuginfo@1.27.0-2.1.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.x86_64", + "product": { + "name": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.x86_64", + "product_id": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang-github-prometheus-promu@0.15.0-15.1.gitd5383c5.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.x86_64", + "product": { + "name": "openshift-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.x86_64", + "product_id": "openshift-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-prometheus-promu@0.15.0-15.1.gitd5383c5.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.x86_64", + "product": { + "name": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.x86_64", + "product_id": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-hyperkube@4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.x86_64", + "product": { + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.x86_64", + "product_id": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-redistributable-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.x86_64", + "product": { + "name": "openshift-clients-redistributable-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.x86_64", + "product_id": "openshift-clients-redistributable-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients-redistributable@4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "podman-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product": { + "name": "podman-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product_id": "podman-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman@4.4.1-10.1.rhaos4.14.el8?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-catatonit-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product": { + "name": "podman-catatonit-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product_id": "podman-catatonit-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-catatonit@4.4.1-10.1.rhaos4.14.el8?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product": { + "name": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product_id": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-gvproxy@4.4.1-10.1.rhaos4.14.el8?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product": { + "name": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product_id": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-plugins@4.4.1-10.1.rhaos4.14.el8?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-remote-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product": { + "name": "podman-remote-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product_id": "podman-remote-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-remote@4.4.1-10.1.rhaos4.14.el8?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-tests-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product": { + "name": "podman-tests-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product_id": "podman-tests-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-tests@4.4.1-10.1.rhaos4.14.el8?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product": { + "name": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product_id": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-debugsource@4.4.1-10.1.rhaos4.14.el8?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-catatonit-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product": { + "name": "podman-catatonit-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product_id": "podman-catatonit-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-catatonit-debuginfo@4.4.1-10.1.rhaos4.14.el8?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product": { + "name": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product_id": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-debuginfo@4.4.1-10.1.rhaos4.14.el8?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product": { + "name": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product_id": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-gvproxy-debuginfo@4.4.1-10.1.rhaos4.14.el8?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product": { + "name": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product_id": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-plugins-debuginfo@4.4.1-10.1.rhaos4.14.el8?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product": { + "name": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product_id": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-remote-debuginfo@4.4.1-10.1.rhaos4.14.el8?arch=x86_64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "runc-4:1.1.9-2.1.rhaos4.14.el8.x86_64", + "product": { + "name": "runc-4:1.1.9-2.1.rhaos4.14.el8.x86_64", + "product_id": "runc-4:1.1.9-2.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc@1.1.9-2.1.rhaos4.14.el8?arch=x86_64&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el8.x86_64", + "product": { + "name": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el8.x86_64", + "product_id": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc-debugsource@1.1.9-2.1.rhaos4.14.el8?arch=x86_64&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el8.x86_64", + "product": { + "name": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el8.x86_64", + "product_id": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc-debuginfo@1.1.9-2.1.rhaos4.14.el8?arch=x86_64&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.x86_64", + "product": { + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.x86_64", + "product_id": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo@1.11.2-10.1.rhaos4.14.el8?arch=x86_64&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el8.x86_64", + "product": { + "name": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el8.x86_64", + "product_id": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo-tests@1.11.2-10.1.rhaos4.14.el8?arch=x86_64&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el8.x86_64", + "product": { + "name": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el8.x86_64", + "product_id": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo-debugsource@1.11.2-10.1.rhaos4.14.el8?arch=x86_64&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el8.x86_64", + "product": { + "name": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el8.x86_64", + "product_id": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo-debuginfo@1.11.2-10.1.rhaos4.14.el8?arch=x86_64&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "python-wrapt-doc-0:1.14.1-1.el9.x86_64", + "product": { + "name": "python-wrapt-doc-0:1.14.1-1.el9.x86_64", + "product_id": "python-wrapt-doc-0:1.14.1-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-wrapt-doc@1.14.1-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-wrapt-0:1.14.1-1.el9.x86_64", + "product": { + "name": "python3-wrapt-0:1.14.1-1.el9.x86_64", + "product_id": "python3-wrapt-0:1.14.1-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-wrapt@1.14.1-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-wrapt-debugsource-0:1.14.1-1.el9.x86_64", + "product": { + "name": "python-wrapt-debugsource-0:1.14.1-1.el9.x86_64", + "product_id": "python-wrapt-debugsource-0:1.14.1-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-wrapt-debugsource@1.14.1-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-wrapt-debuginfo-0:1.14.1-1.el9.x86_64", + "product": { + "name": "python3-wrapt-debuginfo-0:1.14.1-1.el9.x86_64", + "product_id": "python3-wrapt-debuginfo-0:1.14.1-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-wrapt-debuginfo@1.14.1-1.el9?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "catch-0:3.3.2-1.el9.aarch64", + "product": { + "name": "catch-0:3.3.2-1.el9.aarch64", + "product_id": "catch-0:3.3.2-1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/catch@3.3.2-1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "catch-devel-0:3.3.2-1.el9.aarch64", + "product": { + "name": "catch-devel-0:3.3.2-1.el9.aarch64", + "product_id": "catch-devel-0:3.3.2-1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/catch-devel@3.3.2-1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "catch-debugsource-0:3.3.2-1.el9.aarch64", + "product": { + "name": "catch-debugsource-0:3.3.2-1.el9.aarch64", + "product_id": "catch-debugsource-0:3.3.2-1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/catch-debugsource@3.3.2-1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "catch-debuginfo-0:3.3.2-1.el9.aarch64", + "product": { + "name": "catch-debuginfo-0:3.3.2-1.el9.aarch64", + "product_id": "catch-debuginfo-0:3.3.2-1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/catch-debuginfo@3.3.2-1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.aarch64", + "product": { + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.aarch64", + "product_id": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer@0.17.0-1.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el9.aarch64", + "product": { + "name": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el9.aarch64", + "product_id": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-bootinfra@0.17.0-1.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el9.aarch64", + "product": { + "name": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el9.aarch64", + "product_id": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-dracut@0.17.0-1.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el9.aarch64", + "product": { + "name": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el9.aarch64", + "product_id": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-debugsource@0.17.0-1.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el9.aarch64", + "product": { + "name": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el9.aarch64", + "product_id": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-bootinfra-debuginfo@0.17.0-1.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el9.aarch64", + "product": { + "name": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el9.aarch64", + "product_id": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-debuginfo@0.17.0-1.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "crun-wasm-0:1.8.5-3.rhaos4.14.el9.aarch64", + "product": { + "name": "crun-wasm-0:1.8.5-3.rhaos4.14.el9.aarch64", + "product_id": "crun-wasm-0:1.8.5-3.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-wasm@1.8.5-3.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "crun-wasm-debugsource-0:1.8.5-3.rhaos4.14.el9.aarch64", + "product": { + "name": "crun-wasm-debugsource-0:1.8.5-3.rhaos4.14.el9.aarch64", + "product_id": "crun-wasm-debugsource-0:1.8.5-3.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-wasm-debugsource@1.8.5-3.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "crun-wasm-debuginfo-0:1.8.5-3.rhaos4.14.el9.aarch64", + "product": { + "name": "crun-wasm-debuginfo-0:1.8.5-3.rhaos4.14.el9.aarch64", + "product_id": "crun-wasm-debuginfo-0:1.8.5-3.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-wasm-debuginfo@1.8.5-3.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "fmt-0:9.1.0-1.el9.aarch64", + "product": { + "name": "fmt-0:9.1.0-1.el9.aarch64", + "product_id": "fmt-0:9.1.0-1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/fmt@9.1.0-1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "fmt-devel-0:9.1.0-1.el9.aarch64", + "product": { + "name": "fmt-devel-0:9.1.0-1.el9.aarch64", + "product_id": "fmt-devel-0:9.1.0-1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/fmt-devel@9.1.0-1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "fmt-debugsource-0:9.1.0-1.el9.aarch64", + "product": { + "name": "fmt-debugsource-0:9.1.0-1.el9.aarch64", + "product_id": "fmt-debugsource-0:9.1.0-1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/fmt-debugsource@9.1.0-1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "fmt-debuginfo-0:9.1.0-1.el9.aarch64", + "product": { + "name": "fmt-debuginfo-0:9.1.0-1.el9.aarch64", + "product_id": "fmt-debuginfo-0:9.1.0-1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/fmt-debuginfo@9.1.0-1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "google-benchmark-0:1.8.2-1.el9.aarch64", + "product": { + "name": "google-benchmark-0:1.8.2-1.el9.aarch64", + "product_id": "google-benchmark-0:1.8.2-1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/google-benchmark@1.8.2-1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "google-benchmark-devel-0:1.8.2-1.el9.aarch64", + "product": { + "name": "google-benchmark-devel-0:1.8.2-1.el9.aarch64", + "product_id": "google-benchmark-devel-0:1.8.2-1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/google-benchmark-devel@1.8.2-1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "google-benchmark-debugsource-0:1.8.2-1.el9.aarch64", + "product": { + "name": "google-benchmark-debugsource-0:1.8.2-1.el9.aarch64", + "product_id": "google-benchmark-debugsource-0:1.8.2-1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/google-benchmark-debugsource@1.8.2-1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "google-benchmark-debuginfo-0:1.8.2-1.el9.aarch64", + "product": { + "name": "google-benchmark-debuginfo-0:1.8.2-1.el9.aarch64", + "product_id": "google-benchmark-debuginfo-0:1.8.2-1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/google-benchmark-debuginfo@1.8.2-1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "gmock-0:1.13.0-1.el9.aarch64", + "product": { + "name": "gmock-0:1.13.0-1.el9.aarch64", + "product_id": "gmock-0:1.13.0-1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gmock@1.13.0-1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "gmock-devel-0:1.13.0-1.el9.aarch64", + "product": { + "name": "gmock-devel-0:1.13.0-1.el9.aarch64", + "product_id": "gmock-devel-0:1.13.0-1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gmock-devel@1.13.0-1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "gtest-0:1.13.0-1.el9.aarch64", + "product": { + "name": "gtest-0:1.13.0-1.el9.aarch64", + "product_id": "gtest-0:1.13.0-1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gtest@1.13.0-1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "gtest-devel-0:1.13.0-1.el9.aarch64", + "product": { + "name": "gtest-devel-0:1.13.0-1.el9.aarch64", + "product_id": "gtest-devel-0:1.13.0-1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gtest-devel@1.13.0-1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "gtest-debugsource-0:1.13.0-1.el9.aarch64", + "product": { + "name": "gtest-debugsource-0:1.13.0-1.el9.aarch64", + "product_id": "gtest-debugsource-0:1.13.0-1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gtest-debugsource@1.13.0-1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "gmock-debuginfo-0:1.13.0-1.el9.aarch64", + "product": { + "name": "gmock-debuginfo-0:1.13.0-1.el9.aarch64", + "product_id": "gmock-debuginfo-0:1.13.0-1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gmock-debuginfo@1.13.0-1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "gtest-debuginfo-0:1.13.0-1.el9.aarch64", + "product": { + "name": "gtest-debuginfo-0:1.13.0-1.el9.aarch64", + "product_id": "gtest-debuginfo-0:1.13.0-1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gtest-debuginfo@1.13.0-1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "afterburn-0:5.4.3-1.rhaos4.14.el9.aarch64", + "product": { + "name": "afterburn-0:5.4.3-1.rhaos4.14.el9.aarch64", + "product_id": "afterburn-0:5.4.3-1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/afterburn@5.4.3-1.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "afterburn-dracut-0:5.4.3-1.rhaos4.14.el9.aarch64", + "product": { + "name": "afterburn-dracut-0:5.4.3-1.rhaos4.14.el9.aarch64", + "product_id": "afterburn-dracut-0:5.4.3-1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/afterburn-dracut@5.4.3-1.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "rust-afterburn-debugsource-0:5.4.3-1.rhaos4.14.el9.aarch64", + "product": { + "name": "rust-afterburn-debugsource-0:5.4.3-1.rhaos4.14.el9.aarch64", + "product_id": "rust-afterburn-debugsource-0:5.4.3-1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rust-afterburn-debugsource@5.4.3-1.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "afterburn-debuginfo-0:5.4.3-1.rhaos4.14.el9.aarch64", + "product": { + "name": "afterburn-debuginfo-0:5.4.3-1.rhaos4.14.el9.aarch64", + "product_id": "afterburn-debuginfo-0:5.4.3-1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/afterburn-debuginfo@5.4.3-1.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "spdlog-0:1.12.0-1.rhaos4.14.el9.aarch64", + "product": { + "name": "spdlog-0:1.12.0-1.rhaos4.14.el9.aarch64", + "product_id": "spdlog-0:1.12.0-1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/spdlog@1.12.0-1.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "spdlog-devel-0:1.12.0-1.rhaos4.14.el9.aarch64", + "product": { + "name": "spdlog-devel-0:1.12.0-1.rhaos4.14.el9.aarch64", + "product_id": "spdlog-devel-0:1.12.0-1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/spdlog-devel@1.12.0-1.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "spdlog-debugsource-0:1.12.0-1.rhaos4.14.el9.aarch64", + "product": { + "name": "spdlog-debugsource-0:1.12.0-1.rhaos4.14.el9.aarch64", + "product_id": "spdlog-debugsource-0:1.12.0-1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/spdlog-debugsource@1.12.0-1.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "spdlog-debuginfo-0:1.12.0-1.rhaos4.14.el9.aarch64", + "product": { + "name": "spdlog-debuginfo-0:1.12.0-1.rhaos4.14.el9.aarch64", + "product_id": "spdlog-debuginfo-0:1.12.0-1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/spdlog-debuginfo@1.12.0-1.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "wasmedge-0:0.12.1-2.rhaos4.14.el9.aarch64", + "product": { + "name": "wasmedge-0:0.12.1-2.rhaos4.14.el9.aarch64", + "product_id": "wasmedge-0:0.12.1-2.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/wasmedge@0.12.1-2.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "wasmedge-devel-0:0.12.1-2.rhaos4.14.el9.aarch64", + "product": { + "name": "wasmedge-devel-0:0.12.1-2.rhaos4.14.el9.aarch64", + "product_id": "wasmedge-devel-0:0.12.1-2.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/wasmedge-devel@0.12.1-2.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "wasmedge-rt-0:0.12.1-2.rhaos4.14.el9.aarch64", + "product": { + "name": "wasmedge-rt-0:0.12.1-2.rhaos4.14.el9.aarch64", + "product_id": "wasmedge-rt-0:0.12.1-2.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/wasmedge-rt@0.12.1-2.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "wasmedge-debugsource-0:0.12.1-2.rhaos4.14.el9.aarch64", + "product": { + "name": "wasmedge-debugsource-0:0.12.1-2.rhaos4.14.el9.aarch64", + "product_id": "wasmedge-debugsource-0:0.12.1-2.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/wasmedge-debugsource@0.12.1-2.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "wasmedge-debuginfo-0:0.12.1-2.rhaos4.14.el9.aarch64", + "product": { + "name": "wasmedge-debuginfo-0:0.12.1-2.rhaos4.14.el9.aarch64", + "product_id": "wasmedge-debuginfo-0:0.12.1-2.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/wasmedge-debuginfo@0.12.1-2.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "wasmedge-rt-debuginfo-0:0.12.1-2.rhaos4.14.el9.aarch64", + "product": { + "name": "wasmedge-rt-debuginfo-0:0.12.1-2.rhaos4.14.el9.aarch64", + "product_id": "wasmedge-rt-debuginfo-0:0.12.1-2.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/wasmedge-rt-debuginfo@0.12.1-2.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "crun-0:1.9.2-1.rhaos4.14.el9.aarch64", + "product": { + "name": "crun-0:1.9.2-1.rhaos4.14.el9.aarch64", + "product_id": "crun-0:1.9.2-1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun@1.9.2-1.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "crun-debugsource-0:1.9.2-1.rhaos4.14.el9.aarch64", + "product": { + "name": "crun-debugsource-0:1.9.2-1.rhaos4.14.el9.aarch64", + "product_id": "crun-debugsource-0:1.9.2-1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-debugsource@1.9.2-1.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el9.aarch64", + "product": { + "name": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el9.aarch64", + "product_id": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-debuginfo@1.9.2-1.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "bpftool-0:7.0.0-284.36.1.el9_2.aarch64", + "product": { + "name": "bpftool-0:7.0.0-284.36.1.el9_2.aarch64", + "product_id": "bpftool-0:7.0.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool@7.0.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-64k-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-core-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-core-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-64k-core-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-core@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-core-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-core-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-core-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-core@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-devel-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-devel-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-devel-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-devel@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-devel-matched-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-devel-matched-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-devel-matched-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-devel-matched@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-modules-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-modules-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-modules-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-modules@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-modules-core-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-modules-core-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-modules-core-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-modules-core@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-modules-extra-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-modules-extra-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-modules-extra-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-modules-extra@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-modules-internal-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-modules-internal-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-modules-internal-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-modules-internal@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-modules-partner-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-modules-partner-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-modules-partner-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-modules-partner@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-devel-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-devel-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-64k-devel-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-devel@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-devel-matched-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-devel-matched-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-64k-devel-matched-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-devel-matched@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-modules-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-modules-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-64k-modules-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-modules@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-modules-core-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-modules-core-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-64k-modules-core-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-modules-core@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-modules-extra-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-modules-extra-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-64k-modules-extra-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-modules-extra@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-modules-internal-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-modules-internal-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-64k-modules-internal-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-modules-internal@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-modules-partner-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-modules-partner-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-64k-modules-partner-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-modules-partner@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-core-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-core-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-core-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-core@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-cross-headers-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-cross-headers-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-cross-headers-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-cross-headers@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-debug-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-core-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-core-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-debug-core-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-devel-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-debug-devel-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-matched-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-devel-matched-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-debug-devel-matched-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-modules-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-debug-modules-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-core-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-modules-core-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-debug-modules-core-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-extra-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-modules-extra-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-debug-modules-extra-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-internal-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-modules-internal-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-debug-modules-internal-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-internal@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-partner-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-modules-partner-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-debug-modules-partner-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-partner@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-devel-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-devel-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-matched-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-devel-matched-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-devel-matched-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-headers-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-headers-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-headers-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-modules-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-modules-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-core-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-modules-core-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-modules-core-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-extra-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-modules-extra-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-modules-extra-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-internal-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-modules-internal-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-modules-internal-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-internal@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-partner-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-modules-partner-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-modules-partner-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-partner@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-selftests-internal-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-selftests-internal-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-selftests-internal-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-selftests-internal@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-tools-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-tools-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-tools-libs-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-tools-libs-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-devel-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-tools-libs-devel-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-tools-libs-devel-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "perf-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "perf-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "perf-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "python3-perf-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "python3-perf-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "rtla-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "rtla-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "rtla-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rtla@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "bpftool-debuginfo-0:7.0.0-284.36.1.el9_2.aarch64", + "product": { + "name": "bpftool-debuginfo-0:7.0.0-284.36.1.el9_2.aarch64", + "product_id": "bpftool-debuginfo-0:7.0.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool-debuginfo@7.0.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debug-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debug-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-64k-debug-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debug-debuginfo@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-64k-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-64k-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-64k-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-64k-debuginfo@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-debug-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-debug-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-common-aarch64-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-debuginfo-common-aarch64-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-debuginfo-common-aarch64-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo-common-aarch64@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "kernel-tools-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "kernel-tools-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "perf-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "perf-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "perf-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "product": { + "name": "python3-perf-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "product_id": "python3-perf-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-284.36.1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kata-containers-0:3.1.3-4.rhaos4.14.el9.aarch64", + "product": { + "name": "kata-containers-0:3.1.3-4.rhaos4.14.el9.aarch64", + "product_id": "kata-containers-0:3.1.3-4.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kata-containers@3.1.3-4.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el9.aarch64", + "product": { + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el9.aarch64", + "product_id": "buildah-1:1.29.1-10.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah@1.29.1-10.1.rhaos4.14.el9?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el9.aarch64", + "product": { + "name": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el9.aarch64", + "product_id": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-tests@1.29.1-10.1.rhaos4.14.el9?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el9.aarch64", + "product": { + "name": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el9.aarch64", + "product_id": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-debugsource@1.29.1-10.1.rhaos4.14.el9?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.aarch64", + "product": { + "name": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.aarch64", + "product_id": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-debuginfo@1.29.1-10.1.rhaos4.14.el9?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.aarch64", + "product": { + "name": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.aarch64", + "product_id": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-tests-debuginfo@1.29.1-10.1.rhaos4.14.el9?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el9.aarch64", + "product": { + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el9.aarch64", + "product_id": "conmon-3:2.1.7-3.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon@2.1.7-3.1.rhaos4.14.el9?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el9.aarch64", + "product": { + "name": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el9.aarch64", + "product_id": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon-debugsource@2.1.7-3.1.rhaos4.14.el9?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el9.aarch64", + "product": { + "name": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el9.aarch64", + "product_id": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon-debuginfo@2.1.7-3.1.rhaos4.14.el9?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.aarch64", + "product": { + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.aarch64", + "product_id": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.27.1-8.1.rhaos4.14.git3fecb83.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.aarch64", + "product": { + "name": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.aarch64", + "product_id": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debugsource@1.27.1-8.1.rhaos4.14.git3fecb83.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.aarch64", + "product": { + "name": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.aarch64", + "product_id": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debuginfo@1.27.1-8.1.rhaos4.14.git3fecb83.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-0:1.27.0-2.1.el9.aarch64", + "product": { + "name": "cri-tools-0:1.27.0-2.1.el9.aarch64", + "product_id": "cri-tools-0:1.27.0-2.1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools@1.27.0-2.1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-debugsource-0:1.27.0-2.1.el9.aarch64", + "product": { + "name": "cri-tools-debugsource-0:1.27.0-2.1.el9.aarch64", + "product_id": "cri-tools-debugsource-0:1.27.0-2.1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools-debugsource@1.27.0-2.1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-debuginfo-0:1.27.0-2.1.el9.aarch64", + "product": { + "name": "cri-tools-debuginfo-0:1.27.0-2.1.el9.aarch64", + "product_id": "cri-tools-debuginfo-0:1.27.0-2.1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools-debuginfo@1.27.0-2.1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "ignition-0:2.16.2-1.1.rhaos4.14.el9.aarch64", + "product": { + "name": "ignition-0:2.16.2-1.1.rhaos4.14.el9.aarch64", + "product_id": "ignition-0:2.16.2-1.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ignition@2.16.2-1.1.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "ignition-validate-0:2.16.2-1.1.rhaos4.14.el9.aarch64", + "product": { + "name": "ignition-validate-0:2.16.2-1.1.rhaos4.14.el9.aarch64", + "product_id": "ignition-validate-0:2.16.2-1.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ignition-validate@2.16.2-1.1.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "ignition-debugsource-0:2.16.2-1.1.rhaos4.14.el9.aarch64", + "product": { + "name": "ignition-debugsource-0:2.16.2-1.1.rhaos4.14.el9.aarch64", + "product_id": "ignition-debugsource-0:2.16.2-1.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ignition-debugsource@2.16.2-1.1.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "ignition-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.aarch64", + "product": { + "name": "ignition-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.aarch64", + "product_id": "ignition-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ignition-debuginfo@2.16.2-1.1.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "ignition-validate-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.aarch64", + "product": { + "name": "ignition-validate-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.aarch64", + "product_id": "ignition-validate-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ignition-validate-debuginfo@2.16.2-1.1.rhaos4.14.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.aarch64", + "product": { + "name": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.aarch64", + "product_id": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-hyperkube@4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.aarch64", + "product": { + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.aarch64", + "product_id": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-0:23.09.0-37.el9fdp.aarch64", + "product": { + "name": "ovn23.09-0:23.09.0-37.el9fdp.aarch64", + "product_id": "ovn23.09-0:23.09.0-37.el9fdp.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09@23.09.0-37.el9fdp?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-central-0:23.09.0-37.el9fdp.aarch64", + "product": { + "name": "ovn23.09-central-0:23.09.0-37.el9fdp.aarch64", + "product_id": "ovn23.09-central-0:23.09.0-37.el9fdp.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-central@23.09.0-37.el9fdp?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-host-0:23.09.0-37.el9fdp.aarch64", + "product": { + "name": "ovn23.09-host-0:23.09.0-37.el9fdp.aarch64", + "product_id": "ovn23.09-host-0:23.09.0-37.el9fdp.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-host@23.09.0-37.el9fdp?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-vtep-0:23.09.0-37.el9fdp.aarch64", + "product": { + "name": "ovn23.09-vtep-0:23.09.0-37.el9fdp.aarch64", + "product_id": "ovn23.09-vtep-0:23.09.0-37.el9fdp.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-vtep@23.09.0-37.el9fdp?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-debugsource-0:23.09.0-37.el9fdp.aarch64", + "product": { + "name": "ovn23.09-debugsource-0:23.09.0-37.el9fdp.aarch64", + "product_id": "ovn23.09-debugsource-0:23.09.0-37.el9fdp.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-debugsource@23.09.0-37.el9fdp?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-central-debuginfo-0:23.09.0-37.el9fdp.aarch64", + "product": { + "name": "ovn23.09-central-debuginfo-0:23.09.0-37.el9fdp.aarch64", + "product_id": "ovn23.09-central-debuginfo-0:23.09.0-37.el9fdp.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-central-debuginfo@23.09.0-37.el9fdp?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-debuginfo-0:23.09.0-37.el9fdp.aarch64", + "product": { + "name": "ovn23.09-debuginfo-0:23.09.0-37.el9fdp.aarch64", + "product_id": "ovn23.09-debuginfo-0:23.09.0-37.el9fdp.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-debuginfo@23.09.0-37.el9fdp?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-host-debuginfo-0:23.09.0-37.el9fdp.aarch64", + "product": { + "name": "ovn23.09-host-debuginfo-0:23.09.0-37.el9fdp.aarch64", + "product_id": "ovn23.09-host-debuginfo-0:23.09.0-37.el9fdp.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-host-debuginfo@23.09.0-37.el9fdp?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-vtep-debuginfo-0:23.09.0-37.el9fdp.aarch64", + "product": { + "name": "ovn23.09-vtep-debuginfo-0:23.09.0-37.el9fdp.aarch64", + "product_id": "ovn23.09-vtep-debuginfo-0:23.09.0-37.el9fdp.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-vtep-debuginfo@23.09.0-37.el9fdp?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "podman-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product": { + "name": "podman-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product_id": "podman-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman@4.4.1-10.1.rhaos4.14.el9?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product": { + "name": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product_id": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-gvproxy@4.4.1-10.1.rhaos4.14.el9?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product": { + "name": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product_id": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-plugins@4.4.1-10.1.rhaos4.14.el9?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-remote-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product": { + "name": "podman-remote-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product_id": "podman-remote-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-remote@4.4.1-10.1.rhaos4.14.el9?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-tests-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product": { + "name": "podman-tests-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product_id": "podman-tests-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-tests@4.4.1-10.1.rhaos4.14.el9?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product": { + "name": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product_id": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-debugsource@4.4.1-10.1.rhaos4.14.el9?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product": { + "name": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product_id": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-debuginfo@4.4.1-10.1.rhaos4.14.el9?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product": { + "name": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product_id": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-gvproxy-debuginfo@4.4.1-10.1.rhaos4.14.el9?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product": { + "name": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product_id": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-plugins-debuginfo@4.4.1-10.1.rhaos4.14.el9?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product": { + "name": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product_id": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-remote-debuginfo@4.4.1-10.1.rhaos4.14.el9?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "runc-4:1.1.9-2.1.rhaos4.14.el9.aarch64", + "product": { + "name": "runc-4:1.1.9-2.1.rhaos4.14.el9.aarch64", + "product_id": "runc-4:1.1.9-2.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc@1.1.9-2.1.rhaos4.14.el9?arch=aarch64&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el9.aarch64", + "product": { + "name": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el9.aarch64", + "product_id": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc-debugsource@1.1.9-2.1.rhaos4.14.el9?arch=aarch64&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el9.aarch64", + "product": { + "name": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el9.aarch64", + "product_id": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc-debuginfo@1.1.9-2.1.rhaos4.14.el9?arch=aarch64&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.aarch64", + "product": { + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.aarch64", + "product_id": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo@1.11.2-10.1.rhaos4.14.el9?arch=aarch64&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el9.aarch64", + "product": { + "name": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el9.aarch64", + "product_id": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo-tests@1.11.2-10.1.rhaos4.14.el9?arch=aarch64&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el9.aarch64", + "product": { + "name": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el9.aarch64", + "product_id": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo-debugsource@1.11.2-10.1.rhaos4.14.el9?arch=aarch64&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el9.aarch64", + "product": { + "name": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el9.aarch64", + "product_id": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo-debuginfo@1.11.2-10.1.rhaos4.14.el9?arch=aarch64&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.aarch64", + "product": { + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.aarch64", + "product_id": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer@0.17.0-1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el8.aarch64", + "product": { + "name": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el8.aarch64", + "product_id": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-bootinfra@0.17.0-1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el8.aarch64", + "product": { + "name": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el8.aarch64", + "product_id": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-dracut@0.17.0-1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el8.aarch64", + "product": { + "name": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el8.aarch64", + "product_id": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-debugsource@0.17.0-1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el8.aarch64", + "product": { + "name": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el8.aarch64", + "product_id": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-bootinfra-debuginfo@0.17.0-1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el8.aarch64", + "product": { + "name": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el8.aarch64", + "product_id": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-debuginfo@0.17.0-1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "crun-wasm-0:0.0-3.rhaos4.14.el8.aarch64", + "product": { + "name": "crun-wasm-0:0.0-3.rhaos4.14.el8.aarch64", + "product_id": "crun-wasm-0:0.0-3.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-wasm@0.0-3.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "haproxy26-0:2.6.13-1.rhaos4.14.el8.aarch64", + "product": { + "name": "haproxy26-0:2.6.13-1.rhaos4.14.el8.aarch64", + "product_id": "haproxy26-0:2.6.13-1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/haproxy26@2.6.13-1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "haproxy-debugsource-0:2.6.13-1.rhaos4.14.el8.aarch64", + "product": { + "name": "haproxy-debugsource-0:2.6.13-1.rhaos4.14.el8.aarch64", + "product_id": "haproxy-debugsource-0:2.6.13-1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/haproxy-debugsource@2.6.13-1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "haproxy26-debuginfo-0:2.6.13-1.rhaos4.14.el8.aarch64", + "product": { + "name": "haproxy26-debuginfo-0:2.6.13-1.rhaos4.14.el8.aarch64", + "product_id": "haproxy26-debuginfo-0:2.6.13-1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/haproxy26-debuginfo@2.6.13-1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "nmstate-0:2.2.12-1.rhaos4.14.el8.aarch64", + "product": { + "name": "nmstate-0:2.2.12-1.rhaos4.14.el8.aarch64", + "product_id": "nmstate-0:2.2.12-1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate@2.2.12-1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "nmstate-devel-0:2.2.12-1.rhaos4.14.el8.aarch64", + "product": { + "name": "nmstate-devel-0:2.2.12-1.rhaos4.14.el8.aarch64", + "product_id": "nmstate-devel-0:2.2.12-1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate-devel@2.2.12-1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "nmstate-libs-0:2.2.12-1.rhaos4.14.el8.aarch64", + "product": { + "name": "nmstate-libs-0:2.2.12-1.rhaos4.14.el8.aarch64", + "product_id": "nmstate-libs-0:2.2.12-1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate-libs@2.2.12-1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "nmstate-static-0:2.2.12-1.rhaos4.14.el8.aarch64", + "product": { + "name": "nmstate-static-0:2.2.12-1.rhaos4.14.el8.aarch64", + "product_id": "nmstate-static-0:2.2.12-1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate-static@2.2.12-1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "python3-libnmstate-0:2.2.12-1.rhaos4.14.el8.aarch64", + "product": { + "name": "python3-libnmstate-0:2.2.12-1.rhaos4.14.el8.aarch64", + "product_id": "python3-libnmstate-0:2.2.12-1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-libnmstate@2.2.12-1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "nmstate-debugsource-0:2.2.12-1.rhaos4.14.el8.aarch64", + "product": { + "name": "nmstate-debugsource-0:2.2.12-1.rhaos4.14.el8.aarch64", + "product_id": "nmstate-debugsource-0:2.2.12-1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate-debugsource@2.2.12-1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "nmstate-debuginfo-0:2.2.12-1.rhaos4.14.el8.aarch64", + "product": { + "name": "nmstate-debuginfo-0:2.2.12-1.rhaos4.14.el8.aarch64", + "product_id": "nmstate-debuginfo-0:2.2.12-1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate-debuginfo@2.2.12-1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "nmstate-libs-debuginfo-0:2.2.12-1.rhaos4.14.el8.aarch64", + "product": { + "name": "nmstate-libs-debuginfo-0:2.2.12-1.rhaos4.14.el8.aarch64", + "product_id": "nmstate-libs-debuginfo-0:2.2.12-1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate-libs-debuginfo@2.2.12-1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "crun-0:1.9.2-1.rhaos4.14.el8.aarch64", + "product": { + "name": "crun-0:1.9.2-1.rhaos4.14.el8.aarch64", + "product_id": "crun-0:1.9.2-1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun@1.9.2-1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "crun-debugsource-0:1.9.2-1.rhaos4.14.el8.aarch64", + "product": { + "name": "crun-debugsource-0:1.9.2-1.rhaos4.14.el8.aarch64", + "product_id": "crun-debugsource-0:1.9.2-1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-debugsource@1.9.2-1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el8.aarch64", + "product": { + "name": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el8.aarch64", + "product_id": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-debuginfo@1.9.2-1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "containers-common-2:1-51.rhaos4.14.el8.aarch64", + "product": { + "name": "containers-common-2:1-51.rhaos4.14.el8.aarch64", + "product_id": "containers-common-2:1-51.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/containers-common@1-51.rhaos4.14.el8?arch=aarch64&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el8.aarch64", + "product": { + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el8.aarch64", + "product_id": "buildah-1:1.29.1-10.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah@1.29.1-10.1.rhaos4.14.el8?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el8.aarch64", + "product": { + "name": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el8.aarch64", + "product_id": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-tests@1.29.1-10.1.rhaos4.14.el8?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el8.aarch64", + "product": { + "name": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el8.aarch64", + "product_id": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-debugsource@1.29.1-10.1.rhaos4.14.el8?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.aarch64", + "product": { + "name": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.aarch64", + "product_id": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-debuginfo@1.29.1-10.1.rhaos4.14.el8?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.aarch64", + "product": { + "name": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.aarch64", + "product_id": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-tests-debuginfo@1.29.1-10.1.rhaos4.14.el8?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "butane-0:0.19.0-1.1.rhaos4.14.el8.aarch64", + "product": { + "name": "butane-0:0.19.0-1.1.rhaos4.14.el8.aarch64", + "product_id": "butane-0:0.19.0-1.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/butane@0.19.0-1.1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "butane-debugsource-0:0.19.0-1.1.rhaos4.14.el8.aarch64", + "product": { + "name": "butane-debugsource-0:0.19.0-1.1.rhaos4.14.el8.aarch64", + "product_id": "butane-debugsource-0:0.19.0-1.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/butane-debugsource@0.19.0-1.1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "butane-debuginfo-0:0.19.0-1.1.rhaos4.14.el8.aarch64", + "product": { + "name": "butane-debuginfo-0:0.19.0-1.1.rhaos4.14.el8.aarch64", + "product_id": "butane-debuginfo-0:0.19.0-1.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/butane-debuginfo@0.19.0-1.1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el8.aarch64", + "product": { + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el8.aarch64", + "product_id": "conmon-3:2.1.7-3.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon@2.1.7-3.1.rhaos4.14.el8?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el8.aarch64", + "product": { + "name": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el8.aarch64", + "product_id": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon-debugsource@2.1.7-3.1.rhaos4.14.el8?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el8.aarch64", + "product": { + "name": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el8.aarch64", + "product_id": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon-debuginfo@2.1.7-3.1.rhaos4.14.el8?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.aarch64", + "product": { + "name": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.aarch64", + "product_id": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/containernetworking-plugins@1.0.1-11.1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "containernetworking-plugins-debugsource-0:1.0.1-11.1.rhaos4.14.el8.aarch64", + "product": { + "name": "containernetworking-plugins-debugsource-0:1.0.1-11.1.rhaos4.14.el8.aarch64", + "product_id": "containernetworking-plugins-debugsource-0:1.0.1-11.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/containernetworking-plugins-debugsource@1.0.1-11.1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "containernetworking-plugins-debuginfo-0:1.0.1-11.1.rhaos4.14.el8.aarch64", + "product": { + "name": "containernetworking-plugins-debuginfo-0:1.0.1-11.1.rhaos4.14.el8.aarch64", + "product_id": "containernetworking-plugins-debuginfo-0:1.0.1-11.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/containernetworking-plugins-debuginfo@1.0.1-11.1.rhaos4.14.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.aarch64", + "product": { + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.aarch64", + "product_id": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.27.1-8.1.rhaos4.14.git3fecb83.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.aarch64", + "product": { + "name": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.aarch64", + "product_id": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debugsource@1.27.1-8.1.rhaos4.14.git3fecb83.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.aarch64", + "product": { + "name": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.aarch64", + "product_id": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debuginfo@1.27.1-8.1.rhaos4.14.git3fecb83.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-0:1.27.0-2.1.el8.aarch64", + "product": { + "name": "cri-tools-0:1.27.0-2.1.el8.aarch64", + "product_id": "cri-tools-0:1.27.0-2.1.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools@1.27.0-2.1.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-debugsource-0:1.27.0-2.1.el8.aarch64", + "product": { + "name": "cri-tools-debugsource-0:1.27.0-2.1.el8.aarch64", + "product_id": "cri-tools-debugsource-0:1.27.0-2.1.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools-debugsource@1.27.0-2.1.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-debuginfo-0:1.27.0-2.1.el8.aarch64", + "product": { + "name": "cri-tools-debuginfo-0:1.27.0-2.1.el8.aarch64", + "product_id": "cri-tools-debuginfo-0:1.27.0-2.1.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools-debuginfo@1.27.0-2.1.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.aarch64", + "product": { + "name": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.aarch64", + "product_id": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang-github-prometheus-promu@0.15.0-15.1.gitd5383c5.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "openshift-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.aarch64", + "product": { + "name": "openshift-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.aarch64", + "product_id": "openshift-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-prometheus-promu@0.15.0-15.1.gitd5383c5.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.aarch64", + "product": { + "name": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.aarch64", + "product_id": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-hyperkube@4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.aarch64", + "product": { + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.aarch64", + "product_id": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "podman-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product": { + "name": "podman-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product_id": "podman-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman@4.4.1-10.1.rhaos4.14.el8?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-catatonit-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product": { + "name": "podman-catatonit-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product_id": "podman-catatonit-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-catatonit@4.4.1-10.1.rhaos4.14.el8?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product": { + "name": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product_id": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-gvproxy@4.4.1-10.1.rhaos4.14.el8?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product": { + "name": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product_id": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-plugins@4.4.1-10.1.rhaos4.14.el8?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-remote-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product": { + "name": "podman-remote-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product_id": "podman-remote-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-remote@4.4.1-10.1.rhaos4.14.el8?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-tests-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product": { + "name": "podman-tests-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product_id": "podman-tests-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-tests@4.4.1-10.1.rhaos4.14.el8?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product": { + "name": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product_id": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-debugsource@4.4.1-10.1.rhaos4.14.el8?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-catatonit-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product": { + "name": "podman-catatonit-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product_id": "podman-catatonit-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-catatonit-debuginfo@4.4.1-10.1.rhaos4.14.el8?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product": { + "name": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product_id": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-debuginfo@4.4.1-10.1.rhaos4.14.el8?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product": { + "name": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product_id": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-gvproxy-debuginfo@4.4.1-10.1.rhaos4.14.el8?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product": { + "name": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product_id": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-plugins-debuginfo@4.4.1-10.1.rhaos4.14.el8?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product": { + "name": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product_id": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-remote-debuginfo@4.4.1-10.1.rhaos4.14.el8?arch=aarch64&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "runc-4:1.1.9-2.1.rhaos4.14.el8.aarch64", + "product": { + "name": "runc-4:1.1.9-2.1.rhaos4.14.el8.aarch64", + "product_id": "runc-4:1.1.9-2.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc@1.1.9-2.1.rhaos4.14.el8?arch=aarch64&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el8.aarch64", + "product": { + "name": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el8.aarch64", + "product_id": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc-debugsource@1.1.9-2.1.rhaos4.14.el8?arch=aarch64&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el8.aarch64", + "product": { + "name": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el8.aarch64", + "product_id": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc-debuginfo@1.1.9-2.1.rhaos4.14.el8?arch=aarch64&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.aarch64", + "product": { + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.aarch64", + "product_id": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo@1.11.2-10.1.rhaos4.14.el8?arch=aarch64&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el8.aarch64", + "product": { + "name": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el8.aarch64", + "product_id": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo-tests@1.11.2-10.1.rhaos4.14.el8?arch=aarch64&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el8.aarch64", + "product": { + "name": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el8.aarch64", + "product_id": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo-debugsource@1.11.2-10.1.rhaos4.14.el8?arch=aarch64&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el8.aarch64", + "product": { + "name": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el8.aarch64", + "product_id": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo-debuginfo@1.11.2-10.1.rhaos4.14.el8?arch=aarch64&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "python-wrapt-doc-0:1.14.1-1.el9.aarch64", + "product": { + "name": "python-wrapt-doc-0:1.14.1-1.el9.aarch64", + "product_id": "python-wrapt-doc-0:1.14.1-1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-wrapt-doc@1.14.1-1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "python3-wrapt-0:1.14.1-1.el9.aarch64", + "product": { + "name": "python3-wrapt-0:1.14.1-1.el9.aarch64", + "product_id": "python3-wrapt-0:1.14.1-1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-wrapt@1.14.1-1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "python-wrapt-debugsource-0:1.14.1-1.el9.aarch64", + "product": { + "name": "python-wrapt-debugsource-0:1.14.1-1.el9.aarch64", + "product_id": "python-wrapt-debugsource-0:1.14.1-1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-wrapt-debugsource@1.14.1-1.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "python3-wrapt-debuginfo-0:1.14.1-1.el9.aarch64", + "product": { + "name": "python3-wrapt-debuginfo-0:1.14.1-1.el9.aarch64", + "product_id": "python3-wrapt-debuginfo-0:1.14.1-1.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-wrapt-debuginfo@1.14.1-1.el9?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "catch-0:3.3.2-1.el9.ppc64le", + "product": { + "name": "catch-0:3.3.2-1.el9.ppc64le", + "product_id": "catch-0:3.3.2-1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/catch@3.3.2-1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "catch-devel-0:3.3.2-1.el9.ppc64le", + "product": { + "name": "catch-devel-0:3.3.2-1.el9.ppc64le", + "product_id": "catch-devel-0:3.3.2-1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/catch-devel@3.3.2-1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "catch-debugsource-0:3.3.2-1.el9.ppc64le", + "product": { + "name": "catch-debugsource-0:3.3.2-1.el9.ppc64le", + "product_id": "catch-debugsource-0:3.3.2-1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/catch-debugsource@3.3.2-1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "catch-debuginfo-0:3.3.2-1.el9.ppc64le", + "product": { + "name": "catch-debuginfo-0:3.3.2-1.el9.ppc64le", + "product_id": "catch-debuginfo-0:3.3.2-1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/catch-debuginfo@3.3.2-1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.ppc64le", + "product": { + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.ppc64le", + "product_id": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer@0.17.0-1.rhaos4.14.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el9.ppc64le", + "product": { + "name": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el9.ppc64le", + "product_id": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-bootinfra@0.17.0-1.rhaos4.14.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el9.ppc64le", + "product": { + "name": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el9.ppc64le", + "product_id": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-dracut@0.17.0-1.rhaos4.14.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el9.ppc64le", + "product": { + "name": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el9.ppc64le", + "product_id": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-debugsource@0.17.0-1.rhaos4.14.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el9.ppc64le", + "product": { + "name": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el9.ppc64le", + "product_id": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-bootinfra-debuginfo@0.17.0-1.rhaos4.14.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el9.ppc64le", + "product": { + "name": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el9.ppc64le", + "product_id": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-debuginfo@0.17.0-1.rhaos4.14.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "fmt-0:9.1.0-1.el9.ppc64le", + "product": { + "name": "fmt-0:9.1.0-1.el9.ppc64le", + "product_id": "fmt-0:9.1.0-1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/fmt@9.1.0-1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "fmt-devel-0:9.1.0-1.el9.ppc64le", + "product": { + "name": "fmt-devel-0:9.1.0-1.el9.ppc64le", + "product_id": "fmt-devel-0:9.1.0-1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/fmt-devel@9.1.0-1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "fmt-debugsource-0:9.1.0-1.el9.ppc64le", + "product": { + "name": "fmt-debugsource-0:9.1.0-1.el9.ppc64le", + "product_id": "fmt-debugsource-0:9.1.0-1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/fmt-debugsource@9.1.0-1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "fmt-debuginfo-0:9.1.0-1.el9.ppc64le", + "product": { + "name": "fmt-debuginfo-0:9.1.0-1.el9.ppc64le", + "product_id": "fmt-debuginfo-0:9.1.0-1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/fmt-debuginfo@9.1.0-1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "google-benchmark-0:1.8.2-1.el9.ppc64le", + "product": { + "name": "google-benchmark-0:1.8.2-1.el9.ppc64le", + "product_id": "google-benchmark-0:1.8.2-1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/google-benchmark@1.8.2-1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "google-benchmark-devel-0:1.8.2-1.el9.ppc64le", + "product": { + "name": "google-benchmark-devel-0:1.8.2-1.el9.ppc64le", + "product_id": "google-benchmark-devel-0:1.8.2-1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/google-benchmark-devel@1.8.2-1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "google-benchmark-debugsource-0:1.8.2-1.el9.ppc64le", + "product": { + "name": "google-benchmark-debugsource-0:1.8.2-1.el9.ppc64le", + "product_id": "google-benchmark-debugsource-0:1.8.2-1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/google-benchmark-debugsource@1.8.2-1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "google-benchmark-debuginfo-0:1.8.2-1.el9.ppc64le", + "product": { + "name": "google-benchmark-debuginfo-0:1.8.2-1.el9.ppc64le", + "product_id": "google-benchmark-debuginfo-0:1.8.2-1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/google-benchmark-debuginfo@1.8.2-1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "gmock-0:1.13.0-1.el9.ppc64le", + "product": { + "name": "gmock-0:1.13.0-1.el9.ppc64le", + "product_id": "gmock-0:1.13.0-1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gmock@1.13.0-1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "gmock-devel-0:1.13.0-1.el9.ppc64le", + "product": { + "name": "gmock-devel-0:1.13.0-1.el9.ppc64le", + "product_id": "gmock-devel-0:1.13.0-1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gmock-devel@1.13.0-1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "gtest-0:1.13.0-1.el9.ppc64le", + "product": { + "name": "gtest-0:1.13.0-1.el9.ppc64le", + "product_id": "gtest-0:1.13.0-1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gtest@1.13.0-1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "gtest-devel-0:1.13.0-1.el9.ppc64le", + "product": { + "name": "gtest-devel-0:1.13.0-1.el9.ppc64le", + "product_id": "gtest-devel-0:1.13.0-1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gtest-devel@1.13.0-1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "gtest-debugsource-0:1.13.0-1.el9.ppc64le", + "product": { + "name": "gtest-debugsource-0:1.13.0-1.el9.ppc64le", + "product_id": "gtest-debugsource-0:1.13.0-1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gtest-debugsource@1.13.0-1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "gmock-debuginfo-0:1.13.0-1.el9.ppc64le", + "product": { + "name": "gmock-debuginfo-0:1.13.0-1.el9.ppc64le", + "product_id": "gmock-debuginfo-0:1.13.0-1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gmock-debuginfo@1.13.0-1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "gtest-debuginfo-0:1.13.0-1.el9.ppc64le", + "product": { + "name": "gtest-debuginfo-0:1.13.0-1.el9.ppc64le", + "product_id": "gtest-debuginfo-0:1.13.0-1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gtest-debuginfo@1.13.0-1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "afterburn-0:5.4.3-1.rhaos4.14.el9.ppc64le", + "product": { + "name": "afterburn-0:5.4.3-1.rhaos4.14.el9.ppc64le", + "product_id": "afterburn-0:5.4.3-1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/afterburn@5.4.3-1.rhaos4.14.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "afterburn-dracut-0:5.4.3-1.rhaos4.14.el9.ppc64le", + "product": { + "name": "afterburn-dracut-0:5.4.3-1.rhaos4.14.el9.ppc64le", + "product_id": "afterburn-dracut-0:5.4.3-1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/afterburn-dracut@5.4.3-1.rhaos4.14.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "rust-afterburn-debugsource-0:5.4.3-1.rhaos4.14.el9.ppc64le", + "product": { + "name": "rust-afterburn-debugsource-0:5.4.3-1.rhaos4.14.el9.ppc64le", + "product_id": "rust-afterburn-debugsource-0:5.4.3-1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rust-afterburn-debugsource@5.4.3-1.rhaos4.14.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "afterburn-debuginfo-0:5.4.3-1.rhaos4.14.el9.ppc64le", + "product": { + "name": "afterburn-debuginfo-0:5.4.3-1.rhaos4.14.el9.ppc64le", + "product_id": "afterburn-debuginfo-0:5.4.3-1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/afterburn-debuginfo@5.4.3-1.rhaos4.14.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "spdlog-0:1.12.0-1.rhaos4.14.el9.ppc64le", + "product": { + "name": "spdlog-0:1.12.0-1.rhaos4.14.el9.ppc64le", + "product_id": "spdlog-0:1.12.0-1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/spdlog@1.12.0-1.rhaos4.14.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "spdlog-devel-0:1.12.0-1.rhaos4.14.el9.ppc64le", + "product": { + "name": "spdlog-devel-0:1.12.0-1.rhaos4.14.el9.ppc64le", + "product_id": "spdlog-devel-0:1.12.0-1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/spdlog-devel@1.12.0-1.rhaos4.14.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "spdlog-debugsource-0:1.12.0-1.rhaos4.14.el9.ppc64le", + "product": { + "name": "spdlog-debugsource-0:1.12.0-1.rhaos4.14.el9.ppc64le", + "product_id": "spdlog-debugsource-0:1.12.0-1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/spdlog-debugsource@1.12.0-1.rhaos4.14.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "spdlog-debuginfo-0:1.12.0-1.rhaos4.14.el9.ppc64le", + "product": { + "name": "spdlog-debuginfo-0:1.12.0-1.rhaos4.14.el9.ppc64le", + "product_id": "spdlog-debuginfo-0:1.12.0-1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/spdlog-debuginfo@1.12.0-1.rhaos4.14.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "crun-0:1.9.2-1.rhaos4.14.el9.ppc64le", + "product": { + "name": "crun-0:1.9.2-1.rhaos4.14.el9.ppc64le", + "product_id": "crun-0:1.9.2-1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun@1.9.2-1.rhaos4.14.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "crun-debugsource-0:1.9.2-1.rhaos4.14.el9.ppc64le", + "product": { + "name": "crun-debugsource-0:1.9.2-1.rhaos4.14.el9.ppc64le", + "product_id": "crun-debugsource-0:1.9.2-1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-debugsource@1.9.2-1.rhaos4.14.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el9.ppc64le", + "product": { + "name": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el9.ppc64le", + "product_id": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-debuginfo@1.9.2-1.rhaos4.14.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "bpftool-0:7.0.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "bpftool-0:7.0.0-284.36.1.el9_2.ppc64le", + "product_id": "bpftool-0:7.0.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool@7.0.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-core-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-core-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-core-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-core@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-cross-headers-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-cross-headers-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-cross-headers-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-cross-headers@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-debug-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-core-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-core-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-debug-core-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-devel-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-debug-devel-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-matched-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-devel-matched-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-debug-devel-matched-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-modules-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-debug-modules-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-core-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-modules-core-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-debug-modules-core-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-extra-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-modules-extra-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-debug-modules-extra-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-internal-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-modules-internal-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-debug-modules-internal-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-internal@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-partner-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-modules-partner-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-debug-modules-partner-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-partner@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-devel-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-devel-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-matched-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-devel-matched-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-devel-matched-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-headers-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-headers-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-headers-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-ipaclones-internal-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-ipaclones-internal-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-ipaclones-internal-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-ipaclones-internal@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-modules-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-modules-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-core-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-modules-core-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-modules-core-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-extra-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-modules-extra-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-modules-extra-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-internal-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-modules-internal-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-modules-internal-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-internal@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-partner-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-modules-partner-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-modules-partner-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-partner@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-selftests-internal-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-selftests-internal-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-selftests-internal-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-selftests-internal@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-tools-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-tools-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-tools-libs-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-tools-libs-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-devel-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-tools-libs-devel-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-tools-libs-devel-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "perf-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "perf-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "perf-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "python3-perf-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "python3-perf-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "rtla-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "rtla-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "rtla-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rtla@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "bpftool-debuginfo-0:7.0.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "bpftool-debuginfo-0:7.0.0-284.36.1.el9_2.ppc64le", + "product_id": "bpftool-debuginfo-0:7.0.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool-debuginfo@7.0.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-debug-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-debug-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo-common-ppc64le@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "kernel-tools-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "kernel-tools-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "perf-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "perf-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "perf-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le", + "product": { + "name": "python3-perf-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_id": "python3-perf-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-284.36.1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kata-containers-0:3.1.3-4.rhaos4.14.el9.ppc64le", + "product": { + "name": "kata-containers-0:3.1.3-4.rhaos4.14.el9.ppc64le", + "product_id": "kata-containers-0:3.1.3-4.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kata-containers@3.1.3-4.rhaos4.14.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el9.ppc64le", + "product_id": "buildah-1:1.29.1-10.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah@1.29.1-10.1.rhaos4.14.el9?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el9.ppc64le", + "product_id": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-tests@1.29.1-10.1.rhaos4.14.el9?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el9.ppc64le", + "product_id": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-debugsource@1.29.1-10.1.rhaos4.14.el9?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.ppc64le", + "product_id": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-debuginfo@1.29.1-10.1.rhaos4.14.el9?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.ppc64le", + "product_id": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-tests-debuginfo@1.29.1-10.1.rhaos4.14.el9?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el9.ppc64le", + "product_id": "conmon-3:2.1.7-3.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon@2.1.7-3.1.rhaos4.14.el9?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el9.ppc64le", + "product_id": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon-debugsource@2.1.7-3.1.rhaos4.14.el9?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el9.ppc64le", + "product_id": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon-debuginfo@2.1.7-3.1.rhaos4.14.el9?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.ppc64le", + "product": { + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.ppc64le", + "product_id": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.27.1-8.1.rhaos4.14.git3fecb83.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.ppc64le", + "product": { + "name": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.ppc64le", + "product_id": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debugsource@1.27.1-8.1.rhaos4.14.git3fecb83.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.ppc64le", + "product": { + "name": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.ppc64le", + "product_id": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debuginfo@1.27.1-8.1.rhaos4.14.git3fecb83.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-0:1.27.0-2.1.el9.ppc64le", + "product": { + "name": "cri-tools-0:1.27.0-2.1.el9.ppc64le", + "product_id": "cri-tools-0:1.27.0-2.1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools@1.27.0-2.1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-debugsource-0:1.27.0-2.1.el9.ppc64le", + "product": { + "name": "cri-tools-debugsource-0:1.27.0-2.1.el9.ppc64le", + "product_id": "cri-tools-debugsource-0:1.27.0-2.1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools-debugsource@1.27.0-2.1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-debuginfo-0:1.27.0-2.1.el9.ppc64le", + "product": { + "name": "cri-tools-debuginfo-0:1.27.0-2.1.el9.ppc64le", + "product_id": "cri-tools-debuginfo-0:1.27.0-2.1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools-debuginfo@1.27.0-2.1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "ignition-0:2.16.2-1.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "ignition-0:2.16.2-1.1.rhaos4.14.el9.ppc64le", + "product_id": "ignition-0:2.16.2-1.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ignition@2.16.2-1.1.rhaos4.14.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "ignition-validate-0:2.16.2-1.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "ignition-validate-0:2.16.2-1.1.rhaos4.14.el9.ppc64le", + "product_id": "ignition-validate-0:2.16.2-1.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ignition-validate@2.16.2-1.1.rhaos4.14.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "ignition-debugsource-0:2.16.2-1.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "ignition-debugsource-0:2.16.2-1.1.rhaos4.14.el9.ppc64le", + "product_id": "ignition-debugsource-0:2.16.2-1.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ignition-debugsource@2.16.2-1.1.rhaos4.14.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "ignition-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "ignition-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.ppc64le", + "product_id": "ignition-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ignition-debuginfo@2.16.2-1.1.rhaos4.14.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "ignition-validate-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "ignition-validate-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.ppc64le", + "product_id": "ignition-validate-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ignition-validate-debuginfo@2.16.2-1.1.rhaos4.14.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.ppc64le", + "product": { + "name": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.ppc64le", + "product_id": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-hyperkube@4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.ppc64le", + "product": { + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.ppc64le", + "product_id": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-0:23.09.0-37.el9fdp.ppc64le", + "product": { + "name": "ovn23.09-0:23.09.0-37.el9fdp.ppc64le", + "product_id": "ovn23.09-0:23.09.0-37.el9fdp.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09@23.09.0-37.el9fdp?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-central-0:23.09.0-37.el9fdp.ppc64le", + "product": { + "name": "ovn23.09-central-0:23.09.0-37.el9fdp.ppc64le", + "product_id": "ovn23.09-central-0:23.09.0-37.el9fdp.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-central@23.09.0-37.el9fdp?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-host-0:23.09.0-37.el9fdp.ppc64le", + "product": { + "name": "ovn23.09-host-0:23.09.0-37.el9fdp.ppc64le", + "product_id": "ovn23.09-host-0:23.09.0-37.el9fdp.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-host@23.09.0-37.el9fdp?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-vtep-0:23.09.0-37.el9fdp.ppc64le", + "product": { + "name": "ovn23.09-vtep-0:23.09.0-37.el9fdp.ppc64le", + "product_id": "ovn23.09-vtep-0:23.09.0-37.el9fdp.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-vtep@23.09.0-37.el9fdp?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-debugsource-0:23.09.0-37.el9fdp.ppc64le", + "product": { + "name": "ovn23.09-debugsource-0:23.09.0-37.el9fdp.ppc64le", + "product_id": "ovn23.09-debugsource-0:23.09.0-37.el9fdp.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-debugsource@23.09.0-37.el9fdp?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-central-debuginfo-0:23.09.0-37.el9fdp.ppc64le", + "product": { + "name": "ovn23.09-central-debuginfo-0:23.09.0-37.el9fdp.ppc64le", + "product_id": "ovn23.09-central-debuginfo-0:23.09.0-37.el9fdp.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-central-debuginfo@23.09.0-37.el9fdp?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-debuginfo-0:23.09.0-37.el9fdp.ppc64le", + "product": { + "name": "ovn23.09-debuginfo-0:23.09.0-37.el9fdp.ppc64le", + "product_id": "ovn23.09-debuginfo-0:23.09.0-37.el9fdp.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-debuginfo@23.09.0-37.el9fdp?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-host-debuginfo-0:23.09.0-37.el9fdp.ppc64le", + "product": { + "name": "ovn23.09-host-debuginfo-0:23.09.0-37.el9fdp.ppc64le", + "product_id": "ovn23.09-host-debuginfo-0:23.09.0-37.el9fdp.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-host-debuginfo@23.09.0-37.el9fdp?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-vtep-debuginfo-0:23.09.0-37.el9fdp.ppc64le", + "product": { + "name": "ovn23.09-vtep-debuginfo-0:23.09.0-37.el9fdp.ppc64le", + "product_id": "ovn23.09-vtep-debuginfo-0:23.09.0-37.el9fdp.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-vtep-debuginfo@23.09.0-37.el9fdp?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "podman-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "podman-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product_id": "podman-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman@4.4.1-10.1.rhaos4.14.el9?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product_id": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-gvproxy@4.4.1-10.1.rhaos4.14.el9?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product_id": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-plugins@4.4.1-10.1.rhaos4.14.el9?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-remote-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "podman-remote-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product_id": "podman-remote-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-remote@4.4.1-10.1.rhaos4.14.el9?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-tests-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "podman-tests-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product_id": "podman-tests-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-tests@4.4.1-10.1.rhaos4.14.el9?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product_id": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-debugsource@4.4.1-10.1.rhaos4.14.el9?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product_id": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-debuginfo@4.4.1-10.1.rhaos4.14.el9?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product_id": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-gvproxy-debuginfo@4.4.1-10.1.rhaos4.14.el9?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product_id": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-plugins-debuginfo@4.4.1-10.1.rhaos4.14.el9?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product_id": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-remote-debuginfo@4.4.1-10.1.rhaos4.14.el9?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "runc-4:1.1.9-2.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "runc-4:1.1.9-2.1.rhaos4.14.el9.ppc64le", + "product_id": "runc-4:1.1.9-2.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc@1.1.9-2.1.rhaos4.14.el9?arch=ppc64le&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el9.ppc64le", + "product_id": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc-debugsource@1.1.9-2.1.rhaos4.14.el9?arch=ppc64le&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el9.ppc64le", + "product_id": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc-debuginfo@1.1.9-2.1.rhaos4.14.el9?arch=ppc64le&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.ppc64le", + "product_id": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo@1.11.2-10.1.rhaos4.14.el9?arch=ppc64le&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el9.ppc64le", + "product_id": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo-tests@1.11.2-10.1.rhaos4.14.el9?arch=ppc64le&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el9.ppc64le", + "product_id": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo-debugsource@1.11.2-10.1.rhaos4.14.el9?arch=ppc64le&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el9.ppc64le", + "product": { + "name": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el9.ppc64le", + "product_id": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo-debuginfo@1.11.2-10.1.rhaos4.14.el9?arch=ppc64le&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.ppc64le", + "product": { + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.ppc64le", + "product_id": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer@0.17.0-1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el8.ppc64le", + "product": { + "name": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el8.ppc64le", + "product_id": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-bootinfra@0.17.0-1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el8.ppc64le", + "product": { + "name": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el8.ppc64le", + "product_id": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-dracut@0.17.0-1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el8.ppc64le", + "product": { + "name": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el8.ppc64le", + "product_id": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-debugsource@0.17.0-1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el8.ppc64le", + "product": { + "name": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el8.ppc64le", + "product_id": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-bootinfra-debuginfo@0.17.0-1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el8.ppc64le", + "product": { + "name": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el8.ppc64le", + "product_id": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-debuginfo@0.17.0-1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "haproxy26-0:2.6.13-1.rhaos4.14.el8.ppc64le", + "product": { + "name": "haproxy26-0:2.6.13-1.rhaos4.14.el8.ppc64le", + "product_id": "haproxy26-0:2.6.13-1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/haproxy26@2.6.13-1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "haproxy-debugsource-0:2.6.13-1.rhaos4.14.el8.ppc64le", + "product": { + "name": "haproxy-debugsource-0:2.6.13-1.rhaos4.14.el8.ppc64le", + "product_id": "haproxy-debugsource-0:2.6.13-1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/haproxy-debugsource@2.6.13-1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "haproxy26-debuginfo-0:2.6.13-1.rhaos4.14.el8.ppc64le", + "product": { + "name": "haproxy26-debuginfo-0:2.6.13-1.rhaos4.14.el8.ppc64le", + "product_id": "haproxy26-debuginfo-0:2.6.13-1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/haproxy26-debuginfo@2.6.13-1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nmstate-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "product": { + "name": "nmstate-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "product_id": "nmstate-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate@2.2.12-1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nmstate-devel-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "product": { + "name": "nmstate-devel-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "product_id": "nmstate-devel-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate-devel@2.2.12-1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nmstate-libs-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "product": { + "name": "nmstate-libs-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "product_id": "nmstate-libs-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate-libs@2.2.12-1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nmstate-static-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "product": { + "name": "nmstate-static-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "product_id": "nmstate-static-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate-static@2.2.12-1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "python3-libnmstate-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "product": { + "name": "python3-libnmstate-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "product_id": "python3-libnmstate-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-libnmstate@2.2.12-1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nmstate-debugsource-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "product": { + "name": "nmstate-debugsource-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "product_id": "nmstate-debugsource-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate-debugsource@2.2.12-1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nmstate-debuginfo-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "product": { + "name": "nmstate-debuginfo-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "product_id": "nmstate-debuginfo-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate-debuginfo@2.2.12-1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nmstate-libs-debuginfo-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "product": { + "name": "nmstate-libs-debuginfo-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "product_id": "nmstate-libs-debuginfo-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate-libs-debuginfo@2.2.12-1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "crun-0:1.9.2-1.rhaos4.14.el8.ppc64le", + "product": { + "name": "crun-0:1.9.2-1.rhaos4.14.el8.ppc64le", + "product_id": "crun-0:1.9.2-1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun@1.9.2-1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "crun-debugsource-0:1.9.2-1.rhaos4.14.el8.ppc64le", + "product": { + "name": "crun-debugsource-0:1.9.2-1.rhaos4.14.el8.ppc64le", + "product_id": "crun-debugsource-0:1.9.2-1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-debugsource@1.9.2-1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el8.ppc64le", + "product": { + "name": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el8.ppc64le", + "product_id": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-debuginfo@1.9.2-1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "containers-common-2:1-51.rhaos4.14.el8.ppc64le", + "product": { + "name": "containers-common-2:1-51.rhaos4.14.el8.ppc64le", + "product_id": "containers-common-2:1-51.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/containers-common@1-51.rhaos4.14.el8?arch=ppc64le&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el8.ppc64le", + "product_id": "buildah-1:1.29.1-10.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah@1.29.1-10.1.rhaos4.14.el8?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el8.ppc64le", + "product_id": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-tests@1.29.1-10.1.rhaos4.14.el8?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el8.ppc64le", + "product_id": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-debugsource@1.29.1-10.1.rhaos4.14.el8?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.ppc64le", + "product_id": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-debuginfo@1.29.1-10.1.rhaos4.14.el8?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.ppc64le", + "product_id": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-tests-debuginfo@1.29.1-10.1.rhaos4.14.el8?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "butane-0:0.19.0-1.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "butane-0:0.19.0-1.1.rhaos4.14.el8.ppc64le", + "product_id": "butane-0:0.19.0-1.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/butane@0.19.0-1.1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "butane-debugsource-0:0.19.0-1.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "butane-debugsource-0:0.19.0-1.1.rhaos4.14.el8.ppc64le", + "product_id": "butane-debugsource-0:0.19.0-1.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/butane-debugsource@0.19.0-1.1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "butane-debuginfo-0:0.19.0-1.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "butane-debuginfo-0:0.19.0-1.1.rhaos4.14.el8.ppc64le", + "product_id": "butane-debuginfo-0:0.19.0-1.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/butane-debuginfo@0.19.0-1.1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el8.ppc64le", + "product_id": "conmon-3:2.1.7-3.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon@2.1.7-3.1.rhaos4.14.el8?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el8.ppc64le", + "product_id": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon-debugsource@2.1.7-3.1.rhaos4.14.el8?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el8.ppc64le", + "product_id": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon-debuginfo@2.1.7-3.1.rhaos4.14.el8?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.ppc64le", + "product_id": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/containernetworking-plugins@1.0.1-11.1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "containernetworking-plugins-debugsource-0:1.0.1-11.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "containernetworking-plugins-debugsource-0:1.0.1-11.1.rhaos4.14.el8.ppc64le", + "product_id": "containernetworking-plugins-debugsource-0:1.0.1-11.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/containernetworking-plugins-debugsource@1.0.1-11.1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "containernetworking-plugins-debuginfo-0:1.0.1-11.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "containernetworking-plugins-debuginfo-0:1.0.1-11.1.rhaos4.14.el8.ppc64le", + "product_id": "containernetworking-plugins-debuginfo-0:1.0.1-11.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/containernetworking-plugins-debuginfo@1.0.1-11.1.rhaos4.14.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.ppc64le", + "product": { + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.ppc64le", + "product_id": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.27.1-8.1.rhaos4.14.git3fecb83.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.ppc64le", + "product": { + "name": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.ppc64le", + "product_id": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debugsource@1.27.1-8.1.rhaos4.14.git3fecb83.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.ppc64le", + "product": { + "name": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.ppc64le", + "product_id": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debuginfo@1.27.1-8.1.rhaos4.14.git3fecb83.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-0:1.27.0-2.1.el8.ppc64le", + "product": { + "name": "cri-tools-0:1.27.0-2.1.el8.ppc64le", + "product_id": "cri-tools-0:1.27.0-2.1.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools@1.27.0-2.1.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-debugsource-0:1.27.0-2.1.el8.ppc64le", + "product": { + "name": "cri-tools-debugsource-0:1.27.0-2.1.el8.ppc64le", + "product_id": "cri-tools-debugsource-0:1.27.0-2.1.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools-debugsource@1.27.0-2.1.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-debuginfo-0:1.27.0-2.1.el8.ppc64le", + "product": { + "name": "cri-tools-debuginfo-0:1.27.0-2.1.el8.ppc64le", + "product_id": "cri-tools-debuginfo-0:1.27.0-2.1.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools-debuginfo@1.27.0-2.1.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.ppc64le", + "product": { + "name": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.ppc64le", + "product_id": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang-github-prometheus-promu@0.15.0-15.1.gitd5383c5.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "openshift-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.ppc64le", + "product": { + "name": "openshift-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.ppc64le", + "product_id": "openshift-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-prometheus-promu@0.15.0-15.1.gitd5383c5.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.ppc64le", + "product": { + "name": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.ppc64le", + "product_id": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-hyperkube@4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.ppc64le", + "product": { + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.ppc64le", + "product_id": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "podman-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "podman-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product_id": "podman-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman@4.4.1-10.1.rhaos4.14.el8?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-catatonit-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "podman-catatonit-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product_id": "podman-catatonit-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-catatonit@4.4.1-10.1.rhaos4.14.el8?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product_id": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-gvproxy@4.4.1-10.1.rhaos4.14.el8?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product_id": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-plugins@4.4.1-10.1.rhaos4.14.el8?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-remote-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "podman-remote-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product_id": "podman-remote-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-remote@4.4.1-10.1.rhaos4.14.el8?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-tests-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "podman-tests-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product_id": "podman-tests-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-tests@4.4.1-10.1.rhaos4.14.el8?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product_id": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-debugsource@4.4.1-10.1.rhaos4.14.el8?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-catatonit-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "podman-catatonit-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product_id": "podman-catatonit-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-catatonit-debuginfo@4.4.1-10.1.rhaos4.14.el8?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product_id": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-debuginfo@4.4.1-10.1.rhaos4.14.el8?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product_id": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-gvproxy-debuginfo@4.4.1-10.1.rhaos4.14.el8?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product_id": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-plugins-debuginfo@4.4.1-10.1.rhaos4.14.el8?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product_id": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-remote-debuginfo@4.4.1-10.1.rhaos4.14.el8?arch=ppc64le&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "runc-4:1.1.9-2.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "runc-4:1.1.9-2.1.rhaos4.14.el8.ppc64le", + "product_id": "runc-4:1.1.9-2.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc@1.1.9-2.1.rhaos4.14.el8?arch=ppc64le&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el8.ppc64le", + "product_id": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc-debugsource@1.1.9-2.1.rhaos4.14.el8?arch=ppc64le&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el8.ppc64le", + "product_id": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc-debuginfo@1.1.9-2.1.rhaos4.14.el8?arch=ppc64le&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.ppc64le", + "product_id": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo@1.11.2-10.1.rhaos4.14.el8?arch=ppc64le&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el8.ppc64le", + "product_id": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo-tests@1.11.2-10.1.rhaos4.14.el8?arch=ppc64le&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el8.ppc64le", + "product_id": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo-debugsource@1.11.2-10.1.rhaos4.14.el8?arch=ppc64le&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el8.ppc64le", + "product": { + "name": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el8.ppc64le", + "product_id": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo-debuginfo@1.11.2-10.1.rhaos4.14.el8?arch=ppc64le&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "python-wrapt-doc-0:1.14.1-1.el9.ppc64le", + "product": { + "name": "python-wrapt-doc-0:1.14.1-1.el9.ppc64le", + "product_id": "python-wrapt-doc-0:1.14.1-1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-wrapt-doc@1.14.1-1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "python3-wrapt-0:1.14.1-1.el9.ppc64le", + "product": { + "name": "python3-wrapt-0:1.14.1-1.el9.ppc64le", + "product_id": "python3-wrapt-0:1.14.1-1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-wrapt@1.14.1-1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "python-wrapt-debugsource-0:1.14.1-1.el9.ppc64le", + "product": { + "name": "python-wrapt-debugsource-0:1.14.1-1.el9.ppc64le", + "product_id": "python-wrapt-debugsource-0:1.14.1-1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-wrapt-debugsource@1.14.1-1.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "python3-wrapt-debuginfo-0:1.14.1-1.el9.ppc64le", + "product": { + "name": "python3-wrapt-debuginfo-0:1.14.1-1.el9.ppc64le", + "product_id": "python3-wrapt-debuginfo-0:1.14.1-1.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-wrapt-debuginfo@1.14.1-1.el9?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "catch-0:3.3.2-1.el9.s390x", + "product": { + "name": "catch-0:3.3.2-1.el9.s390x", + "product_id": "catch-0:3.3.2-1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/catch@3.3.2-1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "catch-devel-0:3.3.2-1.el9.s390x", + "product": { + "name": "catch-devel-0:3.3.2-1.el9.s390x", + "product_id": "catch-devel-0:3.3.2-1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/catch-devel@3.3.2-1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "catch-debugsource-0:3.3.2-1.el9.s390x", + "product": { + "name": "catch-debugsource-0:3.3.2-1.el9.s390x", + "product_id": "catch-debugsource-0:3.3.2-1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/catch-debugsource@3.3.2-1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "catch-debuginfo-0:3.3.2-1.el9.s390x", + "product": { + "name": "catch-debuginfo-0:3.3.2-1.el9.s390x", + "product_id": "catch-debuginfo-0:3.3.2-1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/catch-debuginfo@3.3.2-1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.s390x", + "product": { + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.s390x", + "product_id": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer@0.17.0-1.rhaos4.14.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el9.s390x", + "product": { + "name": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el9.s390x", + "product_id": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-bootinfra@0.17.0-1.rhaos4.14.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el9.s390x", + "product": { + "name": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el9.s390x", + "product_id": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-dracut@0.17.0-1.rhaos4.14.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el9.s390x", + "product": { + "name": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el9.s390x", + "product_id": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-debugsource@0.17.0-1.rhaos4.14.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el9.s390x", + "product": { + "name": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el9.s390x", + "product_id": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-bootinfra-debuginfo@0.17.0-1.rhaos4.14.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el9.s390x", + "product": { + "name": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el9.s390x", + "product_id": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-debuginfo@0.17.0-1.rhaos4.14.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "fmt-0:9.1.0-1.el9.s390x", + "product": { + "name": "fmt-0:9.1.0-1.el9.s390x", + "product_id": "fmt-0:9.1.0-1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/fmt@9.1.0-1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "fmt-devel-0:9.1.0-1.el9.s390x", + "product": { + "name": "fmt-devel-0:9.1.0-1.el9.s390x", + "product_id": "fmt-devel-0:9.1.0-1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/fmt-devel@9.1.0-1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "fmt-debugsource-0:9.1.0-1.el9.s390x", + "product": { + "name": "fmt-debugsource-0:9.1.0-1.el9.s390x", + "product_id": "fmt-debugsource-0:9.1.0-1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/fmt-debugsource@9.1.0-1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "fmt-debuginfo-0:9.1.0-1.el9.s390x", + "product": { + "name": "fmt-debuginfo-0:9.1.0-1.el9.s390x", + "product_id": "fmt-debuginfo-0:9.1.0-1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/fmt-debuginfo@9.1.0-1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "google-benchmark-0:1.8.2-1.el9.s390x", + "product": { + "name": "google-benchmark-0:1.8.2-1.el9.s390x", + "product_id": "google-benchmark-0:1.8.2-1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/google-benchmark@1.8.2-1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "google-benchmark-devel-0:1.8.2-1.el9.s390x", + "product": { + "name": "google-benchmark-devel-0:1.8.2-1.el9.s390x", + "product_id": "google-benchmark-devel-0:1.8.2-1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/google-benchmark-devel@1.8.2-1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "google-benchmark-debugsource-0:1.8.2-1.el9.s390x", + "product": { + "name": "google-benchmark-debugsource-0:1.8.2-1.el9.s390x", + "product_id": "google-benchmark-debugsource-0:1.8.2-1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/google-benchmark-debugsource@1.8.2-1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "google-benchmark-debuginfo-0:1.8.2-1.el9.s390x", + "product": { + "name": "google-benchmark-debuginfo-0:1.8.2-1.el9.s390x", + "product_id": "google-benchmark-debuginfo-0:1.8.2-1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/google-benchmark-debuginfo@1.8.2-1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "gmock-0:1.13.0-1.el9.s390x", + "product": { + "name": "gmock-0:1.13.0-1.el9.s390x", + "product_id": "gmock-0:1.13.0-1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gmock@1.13.0-1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "gmock-devel-0:1.13.0-1.el9.s390x", + "product": { + "name": "gmock-devel-0:1.13.0-1.el9.s390x", + "product_id": "gmock-devel-0:1.13.0-1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gmock-devel@1.13.0-1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "gtest-0:1.13.0-1.el9.s390x", + "product": { + "name": "gtest-0:1.13.0-1.el9.s390x", + "product_id": "gtest-0:1.13.0-1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gtest@1.13.0-1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "gtest-devel-0:1.13.0-1.el9.s390x", + "product": { + "name": "gtest-devel-0:1.13.0-1.el9.s390x", + "product_id": "gtest-devel-0:1.13.0-1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gtest-devel@1.13.0-1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "gtest-debugsource-0:1.13.0-1.el9.s390x", + "product": { + "name": "gtest-debugsource-0:1.13.0-1.el9.s390x", + "product_id": "gtest-debugsource-0:1.13.0-1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gtest-debugsource@1.13.0-1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "gmock-debuginfo-0:1.13.0-1.el9.s390x", + "product": { + "name": "gmock-debuginfo-0:1.13.0-1.el9.s390x", + "product_id": "gmock-debuginfo-0:1.13.0-1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gmock-debuginfo@1.13.0-1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "gtest-debuginfo-0:1.13.0-1.el9.s390x", + "product": { + "name": "gtest-debuginfo-0:1.13.0-1.el9.s390x", + "product_id": "gtest-debuginfo-0:1.13.0-1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/gtest-debuginfo@1.13.0-1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "afterburn-0:5.4.3-1.rhaos4.14.el9.s390x", + "product": { + "name": "afterburn-0:5.4.3-1.rhaos4.14.el9.s390x", + "product_id": "afterburn-0:5.4.3-1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/afterburn@5.4.3-1.rhaos4.14.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "afterburn-dracut-0:5.4.3-1.rhaos4.14.el9.s390x", + "product": { + "name": "afterburn-dracut-0:5.4.3-1.rhaos4.14.el9.s390x", + "product_id": "afterburn-dracut-0:5.4.3-1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/afterburn-dracut@5.4.3-1.rhaos4.14.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "rust-afterburn-debugsource-0:5.4.3-1.rhaos4.14.el9.s390x", + "product": { + "name": "rust-afterburn-debugsource-0:5.4.3-1.rhaos4.14.el9.s390x", + "product_id": "rust-afterburn-debugsource-0:5.4.3-1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rust-afterburn-debugsource@5.4.3-1.rhaos4.14.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "afterburn-debuginfo-0:5.4.3-1.rhaos4.14.el9.s390x", + "product": { + "name": "afterburn-debuginfo-0:5.4.3-1.rhaos4.14.el9.s390x", + "product_id": "afterburn-debuginfo-0:5.4.3-1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/afterburn-debuginfo@5.4.3-1.rhaos4.14.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "spdlog-0:1.12.0-1.rhaos4.14.el9.s390x", + "product": { + "name": "spdlog-0:1.12.0-1.rhaos4.14.el9.s390x", + "product_id": "spdlog-0:1.12.0-1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/spdlog@1.12.0-1.rhaos4.14.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "spdlog-devel-0:1.12.0-1.rhaos4.14.el9.s390x", + "product": { + "name": "spdlog-devel-0:1.12.0-1.rhaos4.14.el9.s390x", + "product_id": "spdlog-devel-0:1.12.0-1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/spdlog-devel@1.12.0-1.rhaos4.14.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "spdlog-debugsource-0:1.12.0-1.rhaos4.14.el9.s390x", + "product": { + "name": "spdlog-debugsource-0:1.12.0-1.rhaos4.14.el9.s390x", + "product_id": "spdlog-debugsource-0:1.12.0-1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/spdlog-debugsource@1.12.0-1.rhaos4.14.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "spdlog-debuginfo-0:1.12.0-1.rhaos4.14.el9.s390x", + "product": { + "name": "spdlog-debuginfo-0:1.12.0-1.rhaos4.14.el9.s390x", + "product_id": "spdlog-debuginfo-0:1.12.0-1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/spdlog-debuginfo@1.12.0-1.rhaos4.14.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "crun-0:1.9.2-1.rhaos4.14.el9.s390x", + "product": { + "name": "crun-0:1.9.2-1.rhaos4.14.el9.s390x", + "product_id": "crun-0:1.9.2-1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun@1.9.2-1.rhaos4.14.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "crun-debugsource-0:1.9.2-1.rhaos4.14.el9.s390x", + "product": { + "name": "crun-debugsource-0:1.9.2-1.rhaos4.14.el9.s390x", + "product_id": "crun-debugsource-0:1.9.2-1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-debugsource@1.9.2-1.rhaos4.14.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el9.s390x", + "product": { + "name": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el9.s390x", + "product_id": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-debuginfo@1.9.2-1.rhaos4.14.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "bpftool-0:7.0.0-284.36.1.el9_2.s390x", + "product": { + "name": "bpftool-0:7.0.0-284.36.1.el9_2.s390x", + "product_id": "bpftool-0:7.0.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool@7.0.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-core-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-core-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-core-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-core@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-cross-headers-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-cross-headers-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-cross-headers-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-cross-headers@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-debug-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-debug-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-core-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-debug-core-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-debug-core-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-debug-devel-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-debug-devel-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-matched-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-debug-devel-matched-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-debug-devel-matched-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-debug-modules-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-debug-modules-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-core-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-debug-modules-core-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-debug-modules-core-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-extra-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-debug-modules-extra-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-debug-modules-extra-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-internal-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-debug-modules-internal-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-debug-modules-internal-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-internal@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-partner-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-debug-modules-partner-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-debug-modules-partner-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-partner@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-devel-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-devel-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-matched-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-devel-matched-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-devel-matched-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-headers-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-headers-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-headers-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-modules-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-modules-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-core-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-modules-core-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-modules-core-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-extra-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-modules-extra-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-modules-extra-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-internal-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-modules-internal-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-modules-internal-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-internal@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-partner-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-modules-partner-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-modules-partner-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-partner@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-selftests-internal-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-selftests-internal-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-selftests-internal-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-selftests-internal@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-tools-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-tools-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-core-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-core-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-core-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-core@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-devel-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-devel-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-devel-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-devel@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-devel-matched-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-devel-matched-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-devel-matched-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-devel-matched@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-modules-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-modules-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-modules-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-modules-core-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-modules-core-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-modules-core-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-core@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-modules-extra-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-modules-extra-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-modules-extra-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-extra@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-modules-internal-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-modules-internal-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-modules-internal-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-internal@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-modules-partner-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-modules-partner-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-modules-partner-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-partner@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "perf-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "perf-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "perf-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "python3-perf-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "python3-perf-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "rtla-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "rtla-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "rtla-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rtla@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "bpftool-debuginfo-0:7.0.0-284.36.1.el9_2.s390x", + "product": { + "name": "bpftool-debuginfo-0:7.0.0-284.36.1.el9_2.s390x", + "product_id": "bpftool-debuginfo-0:7.0.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool-debuginfo@7.0.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-debuginfo-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-debug-debuginfo-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-debug-debuginfo-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-debuginfo-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-debuginfo-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-common-s390x-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-debuginfo-common-s390x-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-debuginfo-common-s390x-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo-common-s390x@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-debuginfo-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-tools-debuginfo-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-tools-debuginfo-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-debuginfo-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "kernel-zfcpdump-debuginfo-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "kernel-zfcpdump-debuginfo-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-debuginfo@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "perf-debuginfo-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "perf-debuginfo-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "perf-debuginfo-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-debuginfo-0:5.14.0-284.36.1.el9_2.s390x", + "product": { + "name": "python3-perf-debuginfo-0:5.14.0-284.36.1.el9_2.s390x", + "product_id": "python3-perf-debuginfo-0:5.14.0-284.36.1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-284.36.1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kata-containers-0:3.1.3-4.rhaos4.14.el9.s390x", + "product": { + "name": "kata-containers-0:3.1.3-4.rhaos4.14.el9.s390x", + "product_id": "kata-containers-0:3.1.3-4.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kata-containers@3.1.3-4.rhaos4.14.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el9.s390x", + "product": { + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el9.s390x", + "product_id": "buildah-1:1.29.1-10.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah@1.29.1-10.1.rhaos4.14.el9?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el9.s390x", + "product": { + "name": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el9.s390x", + "product_id": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-tests@1.29.1-10.1.rhaos4.14.el9?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el9.s390x", + "product": { + "name": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el9.s390x", + "product_id": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-debugsource@1.29.1-10.1.rhaos4.14.el9?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.s390x", + "product": { + "name": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.s390x", + "product_id": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-debuginfo@1.29.1-10.1.rhaos4.14.el9?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.s390x", + "product": { + "name": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.s390x", + "product_id": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-tests-debuginfo@1.29.1-10.1.rhaos4.14.el9?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el9.s390x", + "product": { + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el9.s390x", + "product_id": "conmon-3:2.1.7-3.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon@2.1.7-3.1.rhaos4.14.el9?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el9.s390x", + "product": { + "name": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el9.s390x", + "product_id": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon-debugsource@2.1.7-3.1.rhaos4.14.el9?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el9.s390x", + "product": { + "name": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el9.s390x", + "product_id": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon-debuginfo@2.1.7-3.1.rhaos4.14.el9?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.s390x", + "product": { + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.s390x", + "product_id": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.27.1-8.1.rhaos4.14.git3fecb83.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.s390x", + "product": { + "name": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.s390x", + "product_id": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debugsource@1.27.1-8.1.rhaos4.14.git3fecb83.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.s390x", + "product": { + "name": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.s390x", + "product_id": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debuginfo@1.27.1-8.1.rhaos4.14.git3fecb83.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-0:1.27.0-2.1.el9.s390x", + "product": { + "name": "cri-tools-0:1.27.0-2.1.el9.s390x", + "product_id": "cri-tools-0:1.27.0-2.1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools@1.27.0-2.1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-debugsource-0:1.27.0-2.1.el9.s390x", + "product": { + "name": "cri-tools-debugsource-0:1.27.0-2.1.el9.s390x", + "product_id": "cri-tools-debugsource-0:1.27.0-2.1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools-debugsource@1.27.0-2.1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-debuginfo-0:1.27.0-2.1.el9.s390x", + "product": { + "name": "cri-tools-debuginfo-0:1.27.0-2.1.el9.s390x", + "product_id": "cri-tools-debuginfo-0:1.27.0-2.1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools-debuginfo@1.27.0-2.1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "ignition-0:2.16.2-1.1.rhaos4.14.el9.s390x", + "product": { + "name": "ignition-0:2.16.2-1.1.rhaos4.14.el9.s390x", + "product_id": "ignition-0:2.16.2-1.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ignition@2.16.2-1.1.rhaos4.14.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "ignition-validate-0:2.16.2-1.1.rhaos4.14.el9.s390x", + "product": { + "name": "ignition-validate-0:2.16.2-1.1.rhaos4.14.el9.s390x", + "product_id": "ignition-validate-0:2.16.2-1.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ignition-validate@2.16.2-1.1.rhaos4.14.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "ignition-debugsource-0:2.16.2-1.1.rhaos4.14.el9.s390x", + "product": { + "name": "ignition-debugsource-0:2.16.2-1.1.rhaos4.14.el9.s390x", + "product_id": "ignition-debugsource-0:2.16.2-1.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ignition-debugsource@2.16.2-1.1.rhaos4.14.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "ignition-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.s390x", + "product": { + "name": "ignition-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.s390x", + "product_id": "ignition-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ignition-debuginfo@2.16.2-1.1.rhaos4.14.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "ignition-validate-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.s390x", + "product": { + "name": "ignition-validate-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.s390x", + "product_id": "ignition-validate-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ignition-validate-debuginfo@2.16.2-1.1.rhaos4.14.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.s390x", + "product": { + "name": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.s390x", + "product_id": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-hyperkube@4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.s390x", + "product": { + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.s390x", + "product_id": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-0:23.09.0-37.el9fdp.s390x", + "product": { + "name": "ovn23.09-0:23.09.0-37.el9fdp.s390x", + "product_id": "ovn23.09-0:23.09.0-37.el9fdp.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09@23.09.0-37.el9fdp?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-central-0:23.09.0-37.el9fdp.s390x", + "product": { + "name": "ovn23.09-central-0:23.09.0-37.el9fdp.s390x", + "product_id": "ovn23.09-central-0:23.09.0-37.el9fdp.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-central@23.09.0-37.el9fdp?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-host-0:23.09.0-37.el9fdp.s390x", + "product": { + "name": "ovn23.09-host-0:23.09.0-37.el9fdp.s390x", + "product_id": "ovn23.09-host-0:23.09.0-37.el9fdp.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-host@23.09.0-37.el9fdp?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-vtep-0:23.09.0-37.el9fdp.s390x", + "product": { + "name": "ovn23.09-vtep-0:23.09.0-37.el9fdp.s390x", + "product_id": "ovn23.09-vtep-0:23.09.0-37.el9fdp.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-vtep@23.09.0-37.el9fdp?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-debugsource-0:23.09.0-37.el9fdp.s390x", + "product": { + "name": "ovn23.09-debugsource-0:23.09.0-37.el9fdp.s390x", + "product_id": "ovn23.09-debugsource-0:23.09.0-37.el9fdp.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-debugsource@23.09.0-37.el9fdp?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-central-debuginfo-0:23.09.0-37.el9fdp.s390x", + "product": { + "name": "ovn23.09-central-debuginfo-0:23.09.0-37.el9fdp.s390x", + "product_id": "ovn23.09-central-debuginfo-0:23.09.0-37.el9fdp.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-central-debuginfo@23.09.0-37.el9fdp?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-debuginfo-0:23.09.0-37.el9fdp.s390x", + "product": { + "name": "ovn23.09-debuginfo-0:23.09.0-37.el9fdp.s390x", + "product_id": "ovn23.09-debuginfo-0:23.09.0-37.el9fdp.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-debuginfo@23.09.0-37.el9fdp?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-host-debuginfo-0:23.09.0-37.el9fdp.s390x", + "product": { + "name": "ovn23.09-host-debuginfo-0:23.09.0-37.el9fdp.s390x", + "product_id": "ovn23.09-host-debuginfo-0:23.09.0-37.el9fdp.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-host-debuginfo@23.09.0-37.el9fdp?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "ovn23.09-vtep-debuginfo-0:23.09.0-37.el9fdp.s390x", + "product": { + "name": "ovn23.09-vtep-debuginfo-0:23.09.0-37.el9fdp.s390x", + "product_id": "ovn23.09-vtep-debuginfo-0:23.09.0-37.el9fdp.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ovn23.09-vtep-debuginfo@23.09.0-37.el9fdp?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "podman-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product": { + "name": "podman-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product_id": "podman-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman@4.4.1-10.1.rhaos4.14.el9?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product": { + "name": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product_id": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-gvproxy@4.4.1-10.1.rhaos4.14.el9?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product": { + "name": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product_id": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-plugins@4.4.1-10.1.rhaos4.14.el9?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-remote-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product": { + "name": "podman-remote-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product_id": "podman-remote-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-remote@4.4.1-10.1.rhaos4.14.el9?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-tests-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product": { + "name": "podman-tests-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product_id": "podman-tests-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-tests@4.4.1-10.1.rhaos4.14.el9?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product": { + "name": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product_id": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-debugsource@4.4.1-10.1.rhaos4.14.el9?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product": { + "name": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product_id": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-debuginfo@4.4.1-10.1.rhaos4.14.el9?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product": { + "name": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product_id": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-gvproxy-debuginfo@4.4.1-10.1.rhaos4.14.el9?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product": { + "name": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product_id": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-plugins-debuginfo@4.4.1-10.1.rhaos4.14.el9?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product": { + "name": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product_id": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-remote-debuginfo@4.4.1-10.1.rhaos4.14.el9?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "runc-4:1.1.9-2.1.rhaos4.14.el9.s390x", + "product": { + "name": "runc-4:1.1.9-2.1.rhaos4.14.el9.s390x", + "product_id": "runc-4:1.1.9-2.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc@1.1.9-2.1.rhaos4.14.el9?arch=s390x&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el9.s390x", + "product": { + "name": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el9.s390x", + "product_id": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc-debugsource@1.1.9-2.1.rhaos4.14.el9?arch=s390x&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el9.s390x", + "product": { + "name": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el9.s390x", + "product_id": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc-debuginfo@1.1.9-2.1.rhaos4.14.el9?arch=s390x&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.s390x", + "product": { + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.s390x", + "product_id": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo@1.11.2-10.1.rhaos4.14.el9?arch=s390x&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el9.s390x", + "product": { + "name": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el9.s390x", + "product_id": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo-tests@1.11.2-10.1.rhaos4.14.el9?arch=s390x&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el9.s390x", + "product": { + "name": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el9.s390x", + "product_id": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo-debugsource@1.11.2-10.1.rhaos4.14.el9?arch=s390x&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el9.s390x", + "product": { + "name": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el9.s390x", + "product_id": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo-debuginfo@1.11.2-10.1.rhaos4.14.el9?arch=s390x&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.s390x", + "product": { + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.s390x", + "product_id": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer@0.17.0-1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el8.s390x", + "product": { + "name": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el8.s390x", + "product_id": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-bootinfra@0.17.0-1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el8.s390x", + "product": { + "name": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el8.s390x", + "product_id": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-dracut@0.17.0-1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el8.s390x", + "product": { + "name": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el8.s390x", + "product_id": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-debugsource@0.17.0-1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el8.s390x", + "product": { + "name": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el8.s390x", + "product_id": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-bootinfra-debuginfo@0.17.0-1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el8.s390x", + "product": { + "name": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el8.s390x", + "product_id": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/coreos-installer-debuginfo@0.17.0-1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "haproxy26-0:2.6.13-1.rhaos4.14.el8.s390x", + "product": { + "name": "haproxy26-0:2.6.13-1.rhaos4.14.el8.s390x", + "product_id": "haproxy26-0:2.6.13-1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/haproxy26@2.6.13-1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "haproxy-debugsource-0:2.6.13-1.rhaos4.14.el8.s390x", + "product": { + "name": "haproxy-debugsource-0:2.6.13-1.rhaos4.14.el8.s390x", + "product_id": "haproxy-debugsource-0:2.6.13-1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/haproxy-debugsource@2.6.13-1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "haproxy26-debuginfo-0:2.6.13-1.rhaos4.14.el8.s390x", + "product": { + "name": "haproxy26-debuginfo-0:2.6.13-1.rhaos4.14.el8.s390x", + "product_id": "haproxy26-debuginfo-0:2.6.13-1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/haproxy26-debuginfo@2.6.13-1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "nmstate-0:2.2.12-1.rhaos4.14.el8.s390x", + "product": { + "name": "nmstate-0:2.2.12-1.rhaos4.14.el8.s390x", + "product_id": "nmstate-0:2.2.12-1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate@2.2.12-1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "nmstate-devel-0:2.2.12-1.rhaos4.14.el8.s390x", + "product": { + "name": "nmstate-devel-0:2.2.12-1.rhaos4.14.el8.s390x", + "product_id": "nmstate-devel-0:2.2.12-1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate-devel@2.2.12-1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "nmstate-libs-0:2.2.12-1.rhaos4.14.el8.s390x", + "product": { + "name": "nmstate-libs-0:2.2.12-1.rhaos4.14.el8.s390x", + "product_id": "nmstate-libs-0:2.2.12-1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate-libs@2.2.12-1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "nmstate-static-0:2.2.12-1.rhaos4.14.el8.s390x", + "product": { + "name": "nmstate-static-0:2.2.12-1.rhaos4.14.el8.s390x", + "product_id": "nmstate-static-0:2.2.12-1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate-static@2.2.12-1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "python3-libnmstate-0:2.2.12-1.rhaos4.14.el8.s390x", + "product": { + "name": "python3-libnmstate-0:2.2.12-1.rhaos4.14.el8.s390x", + "product_id": "python3-libnmstate-0:2.2.12-1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-libnmstate@2.2.12-1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "nmstate-debugsource-0:2.2.12-1.rhaos4.14.el8.s390x", + "product": { + "name": "nmstate-debugsource-0:2.2.12-1.rhaos4.14.el8.s390x", + "product_id": "nmstate-debugsource-0:2.2.12-1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate-debugsource@2.2.12-1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "nmstate-debuginfo-0:2.2.12-1.rhaos4.14.el8.s390x", + "product": { + "name": "nmstate-debuginfo-0:2.2.12-1.rhaos4.14.el8.s390x", + "product_id": "nmstate-debuginfo-0:2.2.12-1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate-debuginfo@2.2.12-1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "nmstate-libs-debuginfo-0:2.2.12-1.rhaos4.14.el8.s390x", + "product": { + "name": "nmstate-libs-debuginfo-0:2.2.12-1.rhaos4.14.el8.s390x", + "product_id": "nmstate-libs-debuginfo-0:2.2.12-1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nmstate-libs-debuginfo@2.2.12-1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "crun-0:1.9.2-1.rhaos4.14.el8.s390x", + "product": { + "name": "crun-0:1.9.2-1.rhaos4.14.el8.s390x", + "product_id": "crun-0:1.9.2-1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun@1.9.2-1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "crun-debugsource-0:1.9.2-1.rhaos4.14.el8.s390x", + "product": { + "name": "crun-debugsource-0:1.9.2-1.rhaos4.14.el8.s390x", + "product_id": "crun-debugsource-0:1.9.2-1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-debugsource@1.9.2-1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el8.s390x", + "product": { + "name": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el8.s390x", + "product_id": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/crun-debuginfo@1.9.2-1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "containers-common-2:1-51.rhaos4.14.el8.s390x", + "product": { + "name": "containers-common-2:1-51.rhaos4.14.el8.s390x", + "product_id": "containers-common-2:1-51.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/containers-common@1-51.rhaos4.14.el8?arch=s390x&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el8.s390x", + "product": { + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el8.s390x", + "product_id": "buildah-1:1.29.1-10.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah@1.29.1-10.1.rhaos4.14.el8?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el8.s390x", + "product": { + "name": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el8.s390x", + "product_id": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-tests@1.29.1-10.1.rhaos4.14.el8?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el8.s390x", + "product": { + "name": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el8.s390x", + "product_id": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-debugsource@1.29.1-10.1.rhaos4.14.el8?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.s390x", + "product": { + "name": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.s390x", + "product_id": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-debuginfo@1.29.1-10.1.rhaos4.14.el8?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.s390x", + "product": { + "name": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.s390x", + "product_id": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/buildah-tests-debuginfo@1.29.1-10.1.rhaos4.14.el8?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "butane-0:0.19.0-1.1.rhaos4.14.el8.s390x", + "product": { + "name": "butane-0:0.19.0-1.1.rhaos4.14.el8.s390x", + "product_id": "butane-0:0.19.0-1.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/butane@0.19.0-1.1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "butane-debugsource-0:0.19.0-1.1.rhaos4.14.el8.s390x", + "product": { + "name": "butane-debugsource-0:0.19.0-1.1.rhaos4.14.el8.s390x", + "product_id": "butane-debugsource-0:0.19.0-1.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/butane-debugsource@0.19.0-1.1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "butane-debuginfo-0:0.19.0-1.1.rhaos4.14.el8.s390x", + "product": { + "name": "butane-debuginfo-0:0.19.0-1.1.rhaos4.14.el8.s390x", + "product_id": "butane-debuginfo-0:0.19.0-1.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/butane-debuginfo@0.19.0-1.1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el8.s390x", + "product": { + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el8.s390x", + "product_id": "conmon-3:2.1.7-3.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon@2.1.7-3.1.rhaos4.14.el8?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el8.s390x", + "product": { + "name": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el8.s390x", + "product_id": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon-debugsource@2.1.7-3.1.rhaos4.14.el8?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el8.s390x", + "product": { + "name": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el8.s390x", + "product_id": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/conmon-debuginfo@2.1.7-3.1.rhaos4.14.el8?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.s390x", + "product": { + "name": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.s390x", + "product_id": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/containernetworking-plugins@1.0.1-11.1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "containernetworking-plugins-debugsource-0:1.0.1-11.1.rhaos4.14.el8.s390x", + "product": { + "name": "containernetworking-plugins-debugsource-0:1.0.1-11.1.rhaos4.14.el8.s390x", + "product_id": "containernetworking-plugins-debugsource-0:1.0.1-11.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/containernetworking-plugins-debugsource@1.0.1-11.1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "containernetworking-plugins-debuginfo-0:1.0.1-11.1.rhaos4.14.el8.s390x", + "product": { + "name": "containernetworking-plugins-debuginfo-0:1.0.1-11.1.rhaos4.14.el8.s390x", + "product_id": "containernetworking-plugins-debuginfo-0:1.0.1-11.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/containernetworking-plugins-debuginfo@1.0.1-11.1.rhaos4.14.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.s390x", + "product": { + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.s390x", + "product_id": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o@1.27.1-8.1.rhaos4.14.git3fecb83.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.s390x", + "product": { + "name": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.s390x", + "product_id": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debugsource@1.27.1-8.1.rhaos4.14.git3fecb83.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.s390x", + "product": { + "name": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.s390x", + "product_id": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-o-debuginfo@1.27.1-8.1.rhaos4.14.git3fecb83.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-0:1.27.0-2.1.el8.s390x", + "product": { + "name": "cri-tools-0:1.27.0-2.1.el8.s390x", + "product_id": "cri-tools-0:1.27.0-2.1.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools@1.27.0-2.1.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-debugsource-0:1.27.0-2.1.el8.s390x", + "product": { + "name": "cri-tools-debugsource-0:1.27.0-2.1.el8.s390x", + "product_id": "cri-tools-debugsource-0:1.27.0-2.1.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools-debugsource@1.27.0-2.1.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "cri-tools-debuginfo-0:1.27.0-2.1.el8.s390x", + "product": { + "name": "cri-tools-debuginfo-0:1.27.0-2.1.el8.s390x", + "product_id": "cri-tools-debuginfo-0:1.27.0-2.1.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cri-tools-debuginfo@1.27.0-2.1.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.s390x", + "product": { + "name": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.s390x", + "product_id": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang-github-prometheus-promu@0.15.0-15.1.gitd5383c5.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "openshift-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.s390x", + "product": { + "name": "openshift-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.s390x", + "product_id": "openshift-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-prometheus-promu@0.15.0-15.1.gitd5383c5.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.s390x", + "product": { + "name": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.s390x", + "product_id": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-hyperkube@4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.s390x", + "product": { + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.s390x", + "product_id": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "podman-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product": { + "name": "podman-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product_id": "podman-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman@4.4.1-10.1.rhaos4.14.el8?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-catatonit-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product": { + "name": "podman-catatonit-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product_id": "podman-catatonit-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-catatonit@4.4.1-10.1.rhaos4.14.el8?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product": { + "name": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product_id": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-gvproxy@4.4.1-10.1.rhaos4.14.el8?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product": { + "name": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product_id": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-plugins@4.4.1-10.1.rhaos4.14.el8?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-remote-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product": { + "name": "podman-remote-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product_id": "podman-remote-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-remote@4.4.1-10.1.rhaos4.14.el8?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-tests-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product": { + "name": "podman-tests-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product_id": "podman-tests-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-tests@4.4.1-10.1.rhaos4.14.el8?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product": { + "name": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product_id": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-debugsource@4.4.1-10.1.rhaos4.14.el8?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-catatonit-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product": { + "name": "podman-catatonit-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product_id": "podman-catatonit-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-catatonit-debuginfo@4.4.1-10.1.rhaos4.14.el8?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product": { + "name": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product_id": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-debuginfo@4.4.1-10.1.rhaos4.14.el8?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product": { + "name": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product_id": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-gvproxy-debuginfo@4.4.1-10.1.rhaos4.14.el8?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product": { + "name": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product_id": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-plugins-debuginfo@4.4.1-10.1.rhaos4.14.el8?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product": { + "name": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product_id": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-remote-debuginfo@4.4.1-10.1.rhaos4.14.el8?arch=s390x&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "runc-4:1.1.9-2.1.rhaos4.14.el8.s390x", + "product": { + "name": "runc-4:1.1.9-2.1.rhaos4.14.el8.s390x", + "product_id": "runc-4:1.1.9-2.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc@1.1.9-2.1.rhaos4.14.el8?arch=s390x&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el8.s390x", + "product": { + "name": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el8.s390x", + "product_id": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc-debugsource@1.1.9-2.1.rhaos4.14.el8?arch=s390x&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el8.s390x", + "product": { + "name": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el8.s390x", + "product_id": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/runc-debuginfo@1.1.9-2.1.rhaos4.14.el8?arch=s390x&epoch=4" + } + } + }, + { + "category": "product_version", + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.s390x", + "product": { + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.s390x", + "product_id": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo@1.11.2-10.1.rhaos4.14.el8?arch=s390x&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el8.s390x", + "product": { + "name": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el8.s390x", + "product_id": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo-tests@1.11.2-10.1.rhaos4.14.el8?arch=s390x&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el8.s390x", + "product": { + "name": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el8.s390x", + "product_id": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo-debugsource@1.11.2-10.1.rhaos4.14.el8?arch=s390x&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el8.s390x", + "product": { + "name": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el8.s390x", + "product_id": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skopeo-debuginfo@1.11.2-10.1.rhaos4.14.el8?arch=s390x&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "python-wrapt-doc-0:1.14.1-1.el9.s390x", + "product": { + "name": "python-wrapt-doc-0:1.14.1-1.el9.s390x", + "product_id": "python-wrapt-doc-0:1.14.1-1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-wrapt-doc@1.14.1-1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "python3-wrapt-0:1.14.1-1.el9.s390x", + "product": { + "name": "python3-wrapt-0:1.14.1-1.el9.s390x", + "product_id": "python3-wrapt-0:1.14.1-1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-wrapt@1.14.1-1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "python-wrapt-debugsource-0:1.14.1-1.el9.s390x", + "product": { + "name": "python-wrapt-debugsource-0:1.14.1-1.el9.s390x", + "product_id": "python-wrapt-debugsource-0:1.14.1-1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-wrapt-debugsource@1.14.1-1.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "python3-wrapt-debuginfo-0:1.14.1-1.el9.s390x", + "product": { + "name": "python3-wrapt-debuginfo-0:1.14.1-1.el9.s390x", + "product_id": "python3-wrapt-debuginfo-0:1.14.1-1.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-wrapt-debuginfo@1.14.1-1.el9?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "container-selinux-3:2.221.0-2.rhaos4.14.el9.noarch", + "product": { + "name": "container-selinux-3:2.221.0-2.rhaos4.14.el9.noarch", + "product_id": "container-selinux-3:2.221.0-2.rhaos4.14.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/container-selinux@2.221.0-2.rhaos4.14.el9?arch=noarch&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "google-benchmark-doc-0:1.8.2-1.el9.noarch", + "product": { + "name": "google-benchmark-doc-0:1.8.2-1.el9.noarch", + "product_id": "google-benchmark-doc-0:1.8.2-1.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/google-benchmark-doc@1.8.2-1.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "toolbox-0:0.1.2-1.rhaos4.14.el9.noarch", + "product": { + "name": "toolbox-0:0.1.2-1.rhaos4.14.el9.noarch", + "product_id": "toolbox-0:0.1.2-1.rhaos4.14.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox@0.1.2-1.rhaos4.14.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "openshift-ansible-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el9.noarch", + "product": { + "name": "openshift-ansible-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el9.noarch", + "product_id": "openshift-ansible-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-ansible@4.14.0-202310062327.p0.gf781421.assembly.stream.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "openshift-ansible-test-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el9.noarch", + "product": { + "name": "openshift-ansible-test-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el9.noarch", + "product_id": "openshift-ansible-test-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-ansible-test@4.14.0-202310062327.p0.gf781421.assembly.stream.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "kernel-abi-stablelists-0:5.14.0-284.36.1.el9_2.noarch", + "product": { + "name": "kernel-abi-stablelists-0:5.14.0-284.36.1.el9_2.noarch", + "product_id": "kernel-abi-stablelists-0:5.14.0-284.36.1.el9_2.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-abi-stablelists@5.14.0-284.36.1.el9_2?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "kernel-doc-0:5.14.0-284.36.1.el9_2.noarch", + "product": { + "name": "kernel-doc-0:5.14.0-284.36.1.el9_2.noarch", + "product_id": "kernel-doc-0:5.14.0-284.36.1.el9_2.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-doc@5.14.0-284.36.1.el9_2?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "podman-docker-3:4.4.1-10.1.rhaos4.14.el9.noarch", + "product": { + "name": "podman-docker-3:4.4.1-10.1.rhaos4.14.el9.noarch", + "product_id": "podman-docker-3:4.4.1-10.1.rhaos4.14.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-docker@4.4.1-10.1.rhaos4.14.el9?arch=noarch&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "container-selinux-3:2.221.0-1.rhaos4.14.el8.noarch", + "product": { + "name": "container-selinux-3:2.221.0-1.rhaos4.14.el8.noarch", + "product_id": "container-selinux-3:2.221.0-1.rhaos4.14.el8.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/container-selinux@2.221.0-1.rhaos4.14.el8?arch=noarch&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "openshift-kuryr-cni-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.noarch", + "product": { + "name": "openshift-kuryr-cni-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.noarch", + "product_id": "openshift-kuryr-cni-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-kuryr-cni@4.14.0-202309272140.p0.g8926a29.assembly.stream.el8?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "openshift-kuryr-common-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.noarch", + "product": { + "name": "openshift-kuryr-common-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.noarch", + "product_id": "openshift-kuryr-common-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-kuryr-common@4.14.0-202309272140.p0.g8926a29.assembly.stream.el8?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "openshift-kuryr-controller-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.noarch", + "product": { + "name": "openshift-kuryr-controller-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.noarch", + "product_id": "openshift-kuryr-controller-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-kuryr-controller@4.14.0-202309272140.p0.g8926a29.assembly.stream.el8?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-kuryr-kubernetes-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.noarch", + "product": { + "name": "python3-kuryr-kubernetes-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.noarch", + "product_id": "python3-kuryr-kubernetes-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-kuryr-kubernetes@4.14.0-202309272140.p0.g8926a29.assembly.stream.el8?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "openshift4-aws-iso-0:4.14.0-202309272140.p0.gd2acdd5.assembly.stream.el8.noarch", + "product": { + "name": "openshift4-aws-iso-0:4.14.0-202309272140.p0.gd2acdd5.assembly.stream.el8.noarch", + "product_id": "openshift4-aws-iso-0:4.14.0-202309272140.p0.gd2acdd5.assembly.stream.el8.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift4-aws-iso@4.14.0-202309272140.p0.gd2acdd5.assembly.stream.el8?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "openshift-ansible-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el8.noarch", + "product": { + "name": "openshift-ansible-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el8.noarch", + "product_id": "openshift-ansible-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el8.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-ansible@4.14.0-202310062327.p0.gf781421.assembly.stream.el8?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "openshift-ansible-test-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el8.noarch", + "product": { + "name": "openshift-ansible-test-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el8.noarch", + "product_id": "openshift-ansible-test-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el8.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-ansible-test@4.14.0-202310062327.p0.gf781421.assembly.stream.el8?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "butane-redistributable-0:0.19.0-1.1.rhaos4.14.el8.noarch", + "product": { + "name": "butane-redistributable-0:0.19.0-1.1.rhaos4.14.el8.noarch", + "product_id": "butane-redistributable-0:0.19.0-1.1.rhaos4.14.el8.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/butane-redistributable@0.19.0-1.1.rhaos4.14.el8?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "podman-docker-3:4.4.1-10.1.rhaos4.14.el8.noarch", + "product": { + "name": "podman-docker-3:4.4.1-10.1.rhaos4.14.el8.noarch", + "product_id": "podman-docker-3:4.4.1-10.1.rhaos4.14.el8.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/podman-docker@4.4.1-10.1.rhaos4.14.el8?arch=noarch&epoch=3" + } + } + }, + { + "category": "product_version", + "name": "openstack-ironic-inspector-0:11.5.0-0.20230706175125.193aa0d.el9.noarch", + "product": { + "name": "openstack-ironic-inspector-0:11.5.0-0.20230706175125.193aa0d.el9.noarch", + "product_id": "openstack-ironic-inspector-0:11.5.0-0.20230706175125.193aa0d.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openstack-ironic-inspector@11.5.0-0.20230706175125.193aa0d.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "openstack-ironic-inspector-api-0:11.5.0-0.20230706175125.193aa0d.el9.noarch", + "product": { + "name": "openstack-ironic-inspector-api-0:11.5.0-0.20230706175125.193aa0d.el9.noarch", + "product_id": "openstack-ironic-inspector-api-0:11.5.0-0.20230706175125.193aa0d.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openstack-ironic-inspector-api@11.5.0-0.20230706175125.193aa0d.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "openstack-ironic-inspector-conductor-0:11.5.0-0.20230706175125.193aa0d.el9.noarch", + "product": { + "name": "openstack-ironic-inspector-conductor-0:11.5.0-0.20230706175125.193aa0d.el9.noarch", + "product_id": "openstack-ironic-inspector-conductor-0:11.5.0-0.20230706175125.193aa0d.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openstack-ironic-inspector-conductor@11.5.0-0.20230706175125.193aa0d.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "openstack-ironic-inspector-dnsmasq-0:11.5.0-0.20230706175125.193aa0d.el9.noarch", + "product": { + "name": "openstack-ironic-inspector-dnsmasq-0:11.5.0-0.20230706175125.193aa0d.el9.noarch", + "product_id": "openstack-ironic-inspector-dnsmasq-0:11.5.0-0.20230706175125.193aa0d.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openstack-ironic-inspector-dnsmasq@11.5.0-0.20230706175125.193aa0d.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-ironic-inspector-tests-0:11.5.0-0.20230706175125.193aa0d.el9.noarch", + "product": { + "name": "python3-ironic-inspector-tests-0:11.5.0-0.20230706175125.193aa0d.el9.noarch", + "product_id": "python3-ironic-inspector-tests-0:11.5.0-0.20230706175125.193aa0d.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-ironic-inspector-tests@11.5.0-0.20230706175125.193aa0d.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "openstack-ironic-python-agent-0:9.5.0-0.20230728140546.fce0b8c.el9.noarch", + "product": { + "name": "openstack-ironic-python-agent-0:9.5.0-0.20230728140546.fce0b8c.el9.noarch", + "product_id": "openstack-ironic-python-agent-0:9.5.0-0.20230728140546.fce0b8c.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openstack-ironic-python-agent@9.5.0-0.20230728140546.fce0b8c.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-ironic-python-agent-0:9.5.0-0.20230728140546.fce0b8c.el9.noarch", + "product": { + "name": "python3-ironic-python-agent-0:9.5.0-0.20230728140546.fce0b8c.el9.noarch", + "product_id": "python3-ironic-python-agent-0:9.5.0-0.20230728140546.fce0b8c.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-ironic-python-agent@9.5.0-0.20230728140546.fce0b8c.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-ironic-python-agent-tests-0:9.5.0-0.20230728140546.fce0b8c.el9.noarch", + "product": { + "name": "python3-ironic-python-agent-tests-0:9.5.0-0.20230728140546.fce0b8c.el9.noarch", + "product_id": "python3-ironic-python-agent-tests-0:9.5.0-0.20230728140546.fce0b8c.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-ironic-python-agent-tests@9.5.0-0.20230728140546.fce0b8c.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-automaton-0:3.1.0-0.20230608140652.a4f7631.el9.noarch", + "product": { + "name": "python3-automaton-0:3.1.0-0.20230608140652.a4f7631.el9.noarch", + "product_id": "python3-automaton-0:3.1.0-0.20230608140652.a4f7631.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-automaton@3.1.0-0.20230608140652.a4f7631.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-cinderclient-0:9.3.0-0.20230608143053.f7a612e.el9.noarch", + "product": { + "name": "python3-cinderclient-0:9.3.0-0.20230608143053.f7a612e.el9.noarch", + "product_id": "python3-cinderclient-0:9.3.0-0.20230608143053.f7a612e.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-cinderclient@9.3.0-0.20230608143053.f7a612e.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-cliff-0:4.3.0-0.20230608150702.72e81d7.el9.noarch", + "product": { + "name": "python3-cliff-0:4.3.0-0.20230608150702.72e81d7.el9.noarch", + "product_id": "python3-cliff-0:4.3.0-0.20230608150702.72e81d7.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-cliff@4.3.0-0.20230608150702.72e81d7.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-cliff-tests-0:4.3.0-0.20230608150702.72e81d7.el9.noarch", + "product": { + "name": "python3-cliff-tests-0:4.3.0-0.20230608150702.72e81d7.el9.noarch", + "product_id": "python3-cliff-tests-0:4.3.0-0.20230608150702.72e81d7.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-cliff-tests@4.3.0-0.20230608150702.72e81d7.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-debtcollector-0:2.5.0-0.20230308172820.a6b46c5.el9.noarch", + "product": { + "name": "python3-debtcollector-0:2.5.0-0.20230308172820.a6b46c5.el9.noarch", + "product_id": "python3-debtcollector-0:2.5.0-0.20230308172820.a6b46c5.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-debtcollector@2.5.0-0.20230308172820.a6b46c5.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-decorator-0:4.4.2-6.0.el9.noarch", + "product": { + "name": "python3-decorator-0:4.4.2-6.0.el9.noarch", + "product_id": "python3-decorator-0:4.4.2-6.0.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-decorator@4.4.2-6.0.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-dracclient-0:8.0.0-0.20230308200614.9c7499c.el9.noarch", + "product": { + "name": "python3-dracclient-0:8.0.0-0.20230308200614.9c7499c.el9.noarch", + "product_id": "python3-dracclient-0:8.0.0-0.20230308200614.9c7499c.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-dracclient@8.0.0-0.20230308200614.9c7499c.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-fixtures-0:4.0.1-1.el9.noarch", + "product": { + "name": "python3-fixtures-0:4.0.1-1.el9.noarch", + "product_id": "python3-fixtures-0:4.0.1-1.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-fixtures@4.0.1-1.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-futurist-0:2.4.1-0.20230308173923.159d752.el9.noarch", + "product": { + "name": "python3-futurist-0:2.4.1-0.20230308173923.159d752.el9.noarch", + "product_id": "python3-futurist-0:2.4.1-0.20230308173923.159d752.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-futurist@2.4.1-0.20230308173923.159d752.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-glanceclient-1:4.3.0-0.20230608143056.52fb6b2.el9.noarch", + "product": { + "name": "python3-glanceclient-1:4.3.0-0.20230608143056.52fb6b2.el9.noarch", + "product_id": "python3-glanceclient-1:4.3.0-0.20230608143056.52fb6b2.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-glanceclient@4.3.0-0.20230608143056.52fb6b2.el9?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "python3-hardware-0:0.30.0-0.20230308190813.f6ff0ed.el9.noarch", + "product": { + "name": "python3-hardware-0:0.30.0-0.20230308190813.f6ff0ed.el9.noarch", + "product_id": "python3-hardware-0:0.30.0-0.20230308190813.f6ff0ed.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-hardware@0.30.0-0.20230308190813.f6ff0ed.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-hardware-detect-0:0.30.0-0.20230308190813.f6ff0ed.el9.noarch", + "product": { + "name": "python3-hardware-detect-0:0.30.0-0.20230308190813.f6ff0ed.el9.noarch", + "product_id": "python3-hardware-detect-0:0.30.0-0.20230308190813.f6ff0ed.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-hardware-detect@0.30.0-0.20230308190813.f6ff0ed.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-ironic-lib-0:5.4.1-0.20230706172632.25d8671.el9.noarch", + "product": { + "name": "python3-ironic-lib-0:5.4.1-0.20230706172632.25d8671.el9.noarch", + "product_id": "python3-ironic-lib-0:5.4.1-0.20230706172632.25d8671.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-ironic-lib@5.4.1-0.20230706172632.25d8671.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-ironic-prometheus-exporter-0:4.1.1-0.20230614150617.7b35627.el9.noarch", + "product": { + "name": "python3-ironic-prometheus-exporter-0:4.1.1-0.20230614150617.7b35627.el9.noarch", + "product_id": "python3-ironic-prometheus-exporter-0:4.1.1-0.20230614150617.7b35627.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-ironic-prometheus-exporter@4.1.1-0.20230614150617.7b35627.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-keystoneauth1-0:5.2.0-0.20230608152518.2e40bbf.el9.noarch", + "product": { + "name": "python3-keystoneauth1-0:5.2.0-0.20230608152518.2e40bbf.el9.noarch", + "product_id": "python3-keystoneauth1-0:5.2.0-0.20230608152518.2e40bbf.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-keystoneauth1@5.2.0-0.20230608152518.2e40bbf.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-keystoneclient-1:5.1.0-0.20230608141554.4763cd8.el9.noarch", + "product": { + "name": "python3-keystoneclient-1:5.1.0-0.20230608141554.4763cd8.el9.noarch", + "product_id": "python3-keystoneclient-1:5.1.0-0.20230608141554.4763cd8.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-keystoneclient@5.1.0-0.20230608141554.4763cd8.el9?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "python3-keystoneclient-tests-1:5.1.0-0.20230608141554.4763cd8.el9.noarch", + "product": { + "name": "python3-keystoneclient-tests-1:5.1.0-0.20230608141554.4763cd8.el9.noarch", + "product_id": "python3-keystoneclient-tests-1:5.1.0-0.20230608141554.4763cd8.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-keystoneclient-tests@5.1.0-0.20230608141554.4763cd8.el9?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "python3-keystonemiddleware-0:10.3.0-0.20230608151410.92cdf8a.el9.noarch", + "product": { + "name": "python3-keystonemiddleware-0:10.3.0-0.20230608151410.92cdf8a.el9.noarch", + "product_id": "python3-keystonemiddleware-0:10.3.0-0.20230608151410.92cdf8a.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-keystonemiddleware@10.3.0-0.20230608151410.92cdf8a.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-openstacksdk-0:1.2.0-0.20230608155226.b7ff031.el9.noarch", + "product": { + "name": "python3-openstacksdk-0:1.2.0-0.20230608155226.b7ff031.el9.noarch", + "product_id": "python3-openstacksdk-0:1.2.0-0.20230608155226.b7ff031.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-openstacksdk@1.2.0-0.20230608155226.b7ff031.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-openstacksdk-tests-0:1.2.0-0.20230608155226.b7ff031.el9.noarch", + "product": { + "name": "python3-openstacksdk-tests-0:1.2.0-0.20230608155226.b7ff031.el9.noarch", + "product_id": "python3-openstacksdk-tests-0:1.2.0-0.20230608155226.b7ff031.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-openstacksdk-tests@1.2.0-0.20230608155226.b7ff031.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-os-service-types-0:1.7.0-0.20230308170555.0b2f473.el9.noarch", + "product": { + "name": "python3-os-service-types-0:1.7.0-0.20230308170555.0b2f473.el9.noarch", + "product_id": "python3-os-service-types-0:1.7.0-0.20230308170555.0b2f473.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-os-service-types@1.7.0-0.20230308170555.0b2f473.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-os-traits-0:3.0.0-0.20230608152745.cff125c.el9.noarch", + "product": { + "name": "python3-os-traits-0:3.0.0-0.20230608152745.cff125c.el9.noarch", + "product_id": "python3-os-traits-0:3.0.0-0.20230608152745.cff125c.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-os-traits@3.0.0-0.20230608152745.cff125c.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-os-traits-tests-0:3.0.0-0.20230608152745.cff125c.el9.noarch", + "product": { + "name": "python3-os-traits-tests-0:3.0.0-0.20230608152745.cff125c.el9.noarch", + "product_id": "python3-os-traits-tests-0:3.0.0-0.20230608152745.cff125c.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-os-traits-tests@3.0.0-0.20230608152745.cff125c.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-osc-lib-0:2.8.0-0.20230608151456.db9cdc9.el9.noarch", + "product": { + "name": "python3-osc-lib-0:2.8.0-0.20230608151456.db9cdc9.el9.noarch", + "product_id": "python3-osc-lib-0:2.8.0-0.20230608151456.db9cdc9.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-osc-lib@2.8.0-0.20230608151456.db9cdc9.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-osc-lib-tests-0:2.8.0-0.20230608151456.db9cdc9.el9.noarch", + "product": { + "name": "python3-osc-lib-tests-0:2.8.0-0.20230608151456.db9cdc9.el9.noarch", + "product_id": "python3-osc-lib-tests-0:2.8.0-0.20230608151456.db9cdc9.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-osc-lib-tests@2.8.0-0.20230608151456.db9cdc9.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-cache-lang-0:3.4.0-0.20230608153448.a720016.el9.noarch", + "product": { + "name": "python-oslo-cache-lang-0:3.4.0-0.20230608153448.a720016.el9.noarch", + "product_id": "python-oslo-cache-lang-0:3.4.0-0.20230608153448.a720016.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-cache-lang@3.4.0-0.20230608153448.a720016.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-cache-0:3.4.0-0.20230608153448.a720016.el9.noarch", + "product": { + "name": "python3-oslo-cache-0:3.4.0-0.20230608153448.a720016.el9.noarch", + "product_id": "python3-oslo-cache-0:3.4.0-0.20230608153448.a720016.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-cache@3.4.0-0.20230608153448.a720016.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-cache-tests-0:3.4.0-0.20230608153448.a720016.el9.noarch", + "product": { + "name": "python3-oslo-cache-tests-0:3.4.0-0.20230608153448.a720016.el9.noarch", + "product_id": "python3-oslo-cache-tests-0:3.4.0-0.20230608153448.a720016.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-cache-tests@3.4.0-0.20230608153448.a720016.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-concurrency-lang-0:5.1.1-0.20230706190204.0af5942.el9.noarch", + "product": { + "name": "python-oslo-concurrency-lang-0:5.1.1-0.20230706190204.0af5942.el9.noarch", + "product_id": "python-oslo-concurrency-lang-0:5.1.1-0.20230706190204.0af5942.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-concurrency-lang@5.1.1-0.20230706190204.0af5942.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-concurrency-0:5.1.1-0.20230706190204.0af5942.el9.noarch", + "product": { + "name": "python3-oslo-concurrency-0:5.1.1-0.20230706190204.0af5942.el9.noarch", + "product_id": "python3-oslo-concurrency-0:5.1.1-0.20230706190204.0af5942.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-concurrency@5.1.1-0.20230706190204.0af5942.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-concurrency-tests-0:5.1.1-0.20230706190204.0af5942.el9.noarch", + "product": { + "name": "python3-oslo-concurrency-tests-0:5.1.1-0.20230706190204.0af5942.el9.noarch", + "product_id": "python3-oslo-concurrency-tests-0:5.1.1-0.20230706190204.0af5942.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-concurrency-tests@5.1.1-0.20230706190204.0af5942.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-config-2:9.1.1-0.20230608145954.515daab.el9.noarch", + "product": { + "name": "python3-oslo-config-2:9.1.1-0.20230608145954.515daab.el9.noarch", + "product_id": "python3-oslo-config-2:9.1.1-0.20230608145954.515daab.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-config@9.1.1-0.20230608145954.515daab.el9?arch=noarch&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-context-0:5.1.1-0.20230608143931.7696282.el9.noarch", + "product": { + "name": "python3-oslo-context-0:5.1.1-0.20230608143931.7696282.el9.noarch", + "product_id": "python3-oslo-context-0:5.1.1-0.20230608143931.7696282.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-context@5.1.1-0.20230608143931.7696282.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-context-tests-0:5.1.1-0.20230608143931.7696282.el9.noarch", + "product": { + "name": "python3-oslo-context-tests-0:5.1.1-0.20230608143931.7696282.el9.noarch", + "product_id": "python3-oslo-context-tests-0:5.1.1-0.20230608143931.7696282.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-context-tests@5.1.1-0.20230608143931.7696282.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-db-lang-0:12.3.1-0.20230608142355.b689b63.el9.noarch", + "product": { + "name": "python-oslo-db-lang-0:12.3.1-0.20230608142355.b689b63.el9.noarch", + "product_id": "python-oslo-db-lang-0:12.3.1-0.20230608142355.b689b63.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-db-lang@12.3.1-0.20230608142355.b689b63.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-db-0:12.3.1-0.20230608142355.b689b63.el9.noarch", + "product": { + "name": "python3-oslo-db-0:12.3.1-0.20230608142355.b689b63.el9.noarch", + "product_id": "python3-oslo-db-0:12.3.1-0.20230608142355.b689b63.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-db@12.3.1-0.20230608142355.b689b63.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-db-tests-0:12.3.1-0.20230608142355.b689b63.el9.noarch", + "product": { + "name": "python3-oslo-db-tests-0:12.3.1-0.20230608142355.b689b63.el9.noarch", + "product_id": "python3-oslo-db-tests-0:12.3.1-0.20230608142355.b689b63.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-db-tests@12.3.1-0.20230608142355.b689b63.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-i18n-lang-0:6.0.0-0.20230608140652.03605c2.el9.noarch", + "product": { + "name": "python-oslo-i18n-lang-0:6.0.0-0.20230608140652.03605c2.el9.noarch", + "product_id": "python-oslo-i18n-lang-0:6.0.0-0.20230608140652.03605c2.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-i18n-lang@6.0.0-0.20230608140652.03605c2.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-i18n-0:6.0.0-0.20230608140652.03605c2.el9.noarch", + "product": { + "name": "python3-oslo-i18n-0:6.0.0-0.20230608140652.03605c2.el9.noarch", + "product_id": "python3-oslo-i18n-0:6.0.0-0.20230608140652.03605c2.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-i18n@6.0.0-0.20230608140652.03605c2.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-log-lang-0:5.2.0-0.20230608150750.16a8a42.el9.noarch", + "product": { + "name": "python-oslo-log-lang-0:5.2.0-0.20230608150750.16a8a42.el9.noarch", + "product_id": "python-oslo-log-lang-0:5.2.0-0.20230608150750.16a8a42.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-log-lang@5.2.0-0.20230608150750.16a8a42.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-log-0:5.2.0-0.20230608150750.16a8a42.el9.noarch", + "product": { + "name": "python3-oslo-log-0:5.2.0-0.20230608150750.16a8a42.el9.noarch", + "product_id": "python3-oslo-log-0:5.2.0-0.20230608150750.16a8a42.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-log@5.2.0-0.20230608150750.16a8a42.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-log-tests-0:5.2.0-0.20230608150750.16a8a42.el9.noarch", + "product": { + "name": "python3-oslo-log-tests-0:5.2.0-0.20230608150750.16a8a42.el9.noarch", + "product_id": "python3-oslo-log-tests-0:5.2.0-0.20230608150750.16a8a42.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-log-tests@5.2.0-0.20230608150750.16a8a42.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-messaging-0:14.3.1-0.20230608152013.0602d1a.el9.noarch", + "product": { + "name": "python3-oslo-messaging-0:14.3.1-0.20230608152013.0602d1a.el9.noarch", + "product_id": "python3-oslo-messaging-0:14.3.1-0.20230608152013.0602d1a.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-messaging@14.3.1-0.20230608152013.0602d1a.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-messaging-tests-0:14.3.1-0.20230608152013.0602d1a.el9.noarch", + "product": { + "name": "python3-oslo-messaging-tests-0:14.3.1-0.20230608152013.0602d1a.el9.noarch", + "product_id": "python3-oslo-messaging-tests-0:14.3.1-0.20230608152013.0602d1a.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-messaging-tests@14.3.1-0.20230608152013.0602d1a.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-middleware-lang-0:5.1.1-0.20230608145931.7725ac9.el9.noarch", + "product": { + "name": "python-oslo-middleware-lang-0:5.1.1-0.20230608145931.7725ac9.el9.noarch", + "product_id": "python-oslo-middleware-lang-0:5.1.1-0.20230608145931.7725ac9.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-middleware-lang@5.1.1-0.20230608145931.7725ac9.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-middleware-0:5.1.1-0.20230608145931.7725ac9.el9.noarch", + "product": { + "name": "python3-oslo-middleware-0:5.1.1-0.20230608145931.7725ac9.el9.noarch", + "product_id": "python3-oslo-middleware-0:5.1.1-0.20230608145931.7725ac9.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-middleware@5.1.1-0.20230608145931.7725ac9.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-middleware-tests-0:5.1.1-0.20230608145931.7725ac9.el9.noarch", + "product": { + "name": "python3-oslo-middleware-tests-0:5.1.1-0.20230608145931.7725ac9.el9.noarch", + "product_id": "python3-oslo-middleware-tests-0:5.1.1-0.20230608145931.7725ac9.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-middleware-tests@5.1.1-0.20230608145931.7725ac9.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-policy-lang-0:4.2.0-0.20230608153320.93129eb.el9.noarch", + "product": { + "name": "python-oslo-policy-lang-0:4.2.0-0.20230608153320.93129eb.el9.noarch", + "product_id": "python-oslo-policy-lang-0:4.2.0-0.20230608153320.93129eb.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-policy-lang@4.2.0-0.20230608153320.93129eb.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-policy-0:4.2.0-0.20230608153320.93129eb.el9.noarch", + "product": { + "name": "python3-oslo-policy-0:4.2.0-0.20230608153320.93129eb.el9.noarch", + "product_id": "python3-oslo-policy-0:4.2.0-0.20230608153320.93129eb.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-policy@4.2.0-0.20230608153320.93129eb.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-policy-tests-0:4.2.0-0.20230608153320.93129eb.el9.noarch", + "product": { + "name": "python3-oslo-policy-tests-0:4.2.0-0.20230608153320.93129eb.el9.noarch", + "product_id": "python3-oslo-policy-tests-0:4.2.0-0.20230608153320.93129eb.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-policy-tests@4.2.0-0.20230608153320.93129eb.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-rootwrap-0:7.0.1-0.20230608144658.b72372b.el9.noarch", + "product": { + "name": "python3-oslo-rootwrap-0:7.0.1-0.20230608144658.b72372b.el9.noarch", + "product_id": "python3-oslo-rootwrap-0:7.0.1-0.20230608144658.b72372b.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-rootwrap@7.0.1-0.20230608144658.b72372b.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-rootwrap-tests-0:7.0.1-0.20230608144658.b72372b.el9.noarch", + "product": { + "name": "python3-oslo-rootwrap-tests-0:7.0.1-0.20230608144658.b72372b.el9.noarch", + "product_id": "python3-oslo-rootwrap-tests-0:7.0.1-0.20230608144658.b72372b.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-rootwrap-tests@7.0.1-0.20230608144658.b72372b.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-serialization-0:5.1.1-0.20230608144505.b4be3a4.el9.noarch", + "product": { + "name": "python3-oslo-serialization-0:5.1.1-0.20230608144505.b4be3a4.el9.noarch", + "product_id": "python3-oslo-serialization-0:5.1.1-0.20230608144505.b4be3a4.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-serialization@5.1.1-0.20230608144505.b4be3a4.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-serialization-tests-0:5.1.1-0.20230608144505.b4be3a4.el9.noarch", + "product": { + "name": "python3-oslo-serialization-tests-0:5.1.1-0.20230608144505.b4be3a4.el9.noarch", + "product_id": "python3-oslo-serialization-tests-0:5.1.1-0.20230608144505.b4be3a4.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-serialization-tests@5.1.1-0.20230608144505.b4be3a4.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-service-0:3.1.1-0.20230608145222.b3ba591.el9.noarch", + "product": { + "name": "python3-oslo-service-0:3.1.1-0.20230608145222.b3ba591.el9.noarch", + "product_id": "python3-oslo-service-0:3.1.1-0.20230608145222.b3ba591.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-service@3.1.1-0.20230608145222.b3ba591.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-service-tests-0:3.1.1-0.20230608145222.b3ba591.el9.noarch", + "product": { + "name": "python3-oslo-service-tests-0:3.1.1-0.20230608145222.b3ba591.el9.noarch", + "product_id": "python3-oslo-service-tests-0:3.1.1-0.20230608145222.b3ba591.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-service-tests@3.1.1-0.20230608145222.b3ba591.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-upgradecheck-0:2.1.1-0.20230608143829.eeedfc9.el9.noarch", + "product": { + "name": "python3-oslo-upgradecheck-0:2.1.1-0.20230608143829.eeedfc9.el9.noarch", + "product_id": "python3-oslo-upgradecheck-0:2.1.1-0.20230608143829.eeedfc9.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-upgradecheck@2.1.1-0.20230608143829.eeedfc9.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-utils-lang-0:6.1.0-0.20230608142355.d49d594.el9.noarch", + "product": { + "name": "python-oslo-utils-lang-0:6.1.0-0.20230608142355.d49d594.el9.noarch", + "product_id": "python-oslo-utils-lang-0:6.1.0-0.20230608142355.d49d594.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-utils-lang@6.1.0-0.20230608142355.d49d594.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-utils-0:6.1.0-0.20230608142355.d49d594.el9.noarch", + "product": { + "name": "python3-oslo-utils-0:6.1.0-0.20230608142355.d49d594.el9.noarch", + "product_id": "python3-oslo-utils-0:6.1.0-0.20230608142355.d49d594.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-utils@6.1.0-0.20230608142355.d49d594.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-utils-tests-0:6.1.0-0.20230608142355.d49d594.el9.noarch", + "product": { + "name": "python3-oslo-utils-tests-0:6.1.0-0.20230608142355.d49d594.el9.noarch", + "product_id": "python3-oslo-utils-tests-0:6.1.0-0.20230608142355.d49d594.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-utils-tests@6.1.0-0.20230608142355.d49d594.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python-oslo-versionedobjects-lang-0:3.1.0-0.20230608141554.b4ea834.el9.noarch", + "product": { + "name": "python-oslo-versionedobjects-lang-0:3.1.0-0.20230608141554.b4ea834.el9.noarch", + "product_id": "python-oslo-versionedobjects-lang-0:3.1.0-0.20230608141554.b4ea834.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-oslo-versionedobjects-lang@3.1.0-0.20230608141554.b4ea834.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-versionedobjects-0:3.1.0-0.20230608141554.b4ea834.el9.noarch", + "product": { + "name": "python3-oslo-versionedobjects-0:3.1.0-0.20230608141554.b4ea834.el9.noarch", + "product_id": "python3-oslo-versionedobjects-0:3.1.0-0.20230608141554.b4ea834.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-versionedobjects@3.1.0-0.20230608141554.b4ea834.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-oslo-versionedobjects-tests-0:3.1.0-0.20230608141554.b4ea834.el9.noarch", + "product": { + "name": "python3-oslo-versionedobjects-tests-0:3.1.0-0.20230608141554.b4ea834.el9.noarch", + "product_id": "python3-oslo-versionedobjects-tests-0:3.1.0-0.20230608141554.b4ea834.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-oslo-versionedobjects-tests@3.1.0-0.20230608141554.b4ea834.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-osprofiler-0:3.4.3-0.20230308173821.3286301.el9.noarch", + "product": { + "name": "python3-osprofiler-0:3.4.3-0.20230308173821.3286301.el9.noarch", + "product_id": "python3-osprofiler-0:3.4.3-0.20230308173821.3286301.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-osprofiler@3.4.3-0.20230308173821.3286301.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-pbr-0:5.11.1-0.1.el9.noarch", + "product": { + "name": "python3-pbr-0:5.11.1-0.1.el9.noarch", + "product_id": "python3-pbr-0:5.11.1-0.1.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-pbr@5.11.1-0.1.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-proliantutils-0:2.14.1-0.20230608154738.3de2844.el9.noarch", + "product": { + "name": "python3-proliantutils-0:2.14.1-0.20230608154738.3de2844.el9.noarch", + "product_id": "python3-proliantutils-0:2.14.1-0.20230608154738.3de2844.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-proliantutils@2.14.1-0.20230608154738.3de2844.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python-pycadf-common-0:3.1.1-0.20230308171749.4179996.el9.noarch", + "product": { + "name": "python-pycadf-common-0:3.1.1-0.20230308171749.4179996.el9.noarch", + "product_id": "python-pycadf-common-0:3.1.1-0.20230308171749.4179996.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pycadf-common@3.1.1-0.20230308171749.4179996.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-pycadf-0:3.1.1-0.20230308171749.4179996.el9.noarch", + "product": { + "name": "python3-pycadf-0:3.1.1-0.20230308171749.4179996.el9.noarch", + "product_id": "python3-pycadf-0:3.1.1-0.20230308171749.4179996.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-pycadf@3.1.1-0.20230308171749.4179996.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-requestsexceptions-0:1.4.0-0.20230308170555.d7ac0ff.el9.noarch", + "product": { + "name": "python3-requestsexceptions-0:1.4.0-0.20230308170555.d7ac0ff.el9.noarch", + "product_id": "python3-requestsexceptions-0:1.4.0-0.20230308170555.d7ac0ff.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-requestsexceptions@1.4.0-0.20230308170555.d7ac0ff.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-scciclient-0:0.12.3-0.20230308201513.0940a71.el9.noarch", + "product": { + "name": "python3-scciclient-0:0.12.3-0.20230308201513.0940a71.el9.noarch", + "product_id": "python3-scciclient-0:0.12.3-0.20230308201513.0940a71.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-scciclient@0.12.3-0.20230308201513.0940a71.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-stevedore-0:5.1.0-0.20230608154210.2d99ccc.el9.noarch", + "product": { + "name": "python3-stevedore-0:5.1.0-0.20230608154210.2d99ccc.el9.noarch", + "product_id": "python3-stevedore-0:5.1.0-0.20230608154210.2d99ccc.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-stevedore@5.1.0-0.20230608154210.2d99ccc.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-sushy-0:4.5.0-0.20230719180619.146ed33.el9.noarch", + "product": { + "name": "python3-sushy-0:4.5.0-0.20230719180619.146ed33.el9.noarch", + "product_id": "python3-sushy-0:4.5.0-0.20230719180619.146ed33.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-sushy@4.5.0-0.20230719180619.146ed33.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-sushy-tests-0:4.5.0-0.20230719180619.146ed33.el9.noarch", + "product": { + "name": "python3-sushy-tests-0:4.5.0-0.20230719180619.146ed33.el9.noarch", + "product_id": "python3-sushy-tests-0:4.5.0-0.20230719180619.146ed33.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-sushy-tests@4.5.0-0.20230719180619.146ed33.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-sushy-oem-idrac-0:5.0.0-0.20230308202122.da9a0e4.el9.noarch", + "product": { + "name": "python3-sushy-oem-idrac-0:5.0.0-0.20230308202122.da9a0e4.el9.noarch", + "product_id": "python3-sushy-oem-idrac-0:5.0.0-0.20230308202122.da9a0e4.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-sushy-oem-idrac@5.0.0-0.20230308202122.da9a0e4.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-sushy-oem-idrac-tests-0:5.0.0-0.20230308202122.da9a0e4.el9.noarch", + "product": { + "name": "python3-sushy-oem-idrac-tests-0:5.0.0-0.20230308202122.da9a0e4.el9.noarch", + "product_id": "python3-sushy-oem-idrac-tests-0:5.0.0-0.20230308202122.da9a0e4.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-sushy-oem-idrac-tests@5.0.0-0.20230308202122.da9a0e4.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-swiftclient-0:4.3.0-0.20230608151934.236c277.el9.noarch", + "product": { + "name": "python3-swiftclient-0:4.3.0-0.20230608151934.236c277.el9.noarch", + "product_id": "python3-swiftclient-0:4.3.0-0.20230608151934.236c277.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-swiftclient@4.3.0-0.20230608151934.236c277.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-tenacity-0:6.3.1-1.el9.noarch", + "product": { + "name": "python3-tenacity-0:6.3.1-1.el9.noarch", + "product_id": "python3-tenacity-0:6.3.1-1.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-tenacity@6.3.1-1.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-tooz-0:4.1.0-0.20230608154038.d5bf20c.el9.noarch", + "product": { + "name": "python3-tooz-0:4.1.0-0.20230608154038.d5bf20c.el9.noarch", + "product_id": "python3-tooz-0:4.1.0-0.20230608154038.d5bf20c.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-tooz@4.1.0-0.20230608154038.d5bf20c.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "openstack-ironic-1:21.5.0-0.20231002130534.0df5961.el9.noarch", + "product": { + "name": "openstack-ironic-1:21.5.0-0.20231002130534.0df5961.el9.noarch", + "product_id": "openstack-ironic-1:21.5.0-0.20231002130534.0df5961.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openstack-ironic@21.5.0-0.20231002130534.0df5961.el9?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "openstack-ironic-api-1:21.5.0-0.20231002130534.0df5961.el9.noarch", + "product": { + "name": "openstack-ironic-api-1:21.5.0-0.20231002130534.0df5961.el9.noarch", + "product_id": "openstack-ironic-api-1:21.5.0-0.20231002130534.0df5961.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openstack-ironic-api@21.5.0-0.20231002130534.0df5961.el9?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "openstack-ironic-common-1:21.5.0-0.20231002130534.0df5961.el9.noarch", + "product": { + "name": "openstack-ironic-common-1:21.5.0-0.20231002130534.0df5961.el9.noarch", + "product_id": "openstack-ironic-common-1:21.5.0-0.20231002130534.0df5961.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openstack-ironic-common@21.5.0-0.20231002130534.0df5961.el9?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "openstack-ironic-conductor-1:21.5.0-0.20231002130534.0df5961.el9.noarch", + "product": { + "name": "openstack-ironic-conductor-1:21.5.0-0.20231002130534.0df5961.el9.noarch", + "product_id": "openstack-ironic-conductor-1:21.5.0-0.20231002130534.0df5961.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openstack-ironic-conductor@21.5.0-0.20231002130534.0df5961.el9?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "openstack-ironic-dnsmasq-tftp-server-1:21.5.0-0.20231002130534.0df5961.el9.noarch", + "product": { + "name": "openstack-ironic-dnsmasq-tftp-server-1:21.5.0-0.20231002130534.0df5961.el9.noarch", + "product_id": "openstack-ironic-dnsmasq-tftp-server-1:21.5.0-0.20231002130534.0df5961.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openstack-ironic-dnsmasq-tftp-server@21.5.0-0.20231002130534.0df5961.el9?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "python3-ironic-tests-1:21.5.0-0.20231002130534.0df5961.el9.noarch", + "product": { + "name": "python3-ironic-tests-1:21.5.0-0.20231002130534.0df5961.el9.noarch", + "product_id": "python3-ironic-tests-1:21.5.0-0.20231002130534.0df5961.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-ironic-tests@21.5.0-0.20231002130534.0df5961.el9?arch=noarch&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/cnf-tests-rhel8@sha256:dc0a4ce29d0797974b9e2b82761e522c10b1d318db423c08a7d5f7c7a44d09f4_amd64", + "product": { + "name": "openshift4/cnf-tests-rhel8@sha256:dc0a4ce29d0797974b9e2b82761e522c10b1d318db423c08a7d5f7c7a44d09f4_amd64", + "product_id": "openshift4/cnf-tests-rhel8@sha256:dc0a4ce29d0797974b9e2b82761e522c10b1d318db423c08a7d5f7c7a44d09f4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cnf-tests-rhel8@sha256:dc0a4ce29d0797974b9e2b82761e522c10b1d318db423c08a7d5f7c7a44d09f4?arch=amd64&repository_url=registry.redhat.io/openshift4/cnf-tests-rhel8&tag=v4.14.0-29" + } + } + }, + { + "category": "product_version", + "name": "openshift4/dpdk-base-rhel8@sha256:7934f2caf7af7f09ecf808dc86d435e746df74d2de065fdebcd6825f64ccb748_amd64", + "product": { + "name": "openshift4/dpdk-base-rhel8@sha256:7934f2caf7af7f09ecf808dc86d435e746df74d2de065fdebcd6825f64ccb748_amd64", + "product_id": "openshift4/dpdk-base-rhel8@sha256:7934f2caf7af7f09ecf808dc86d435e746df74d2de065fdebcd6825f64ccb748_amd64", + "product_identification_helper": { + "purl": "pkg:oci/dpdk-base-rhel8@sha256:7934f2caf7af7f09ecf808dc86d435e746df74d2de065fdebcd6825f64ccb748?arch=amd64&repository_url=registry.redhat.io/openshift4/dpdk-base-rhel8&tag=v4.14.0-10" + } + } + }, + { + "category": "product_version", + "name": "openshift4/noderesourcetopology-scheduler-rhel9@sha256:7824fe71328515ea97d7c539b9f622180e8a51ef63862897819a4a2c4cf16cc7_amd64", + "product": { + "name": "openshift4/noderesourcetopology-scheduler-rhel9@sha256:7824fe71328515ea97d7c539b9f622180e8a51ef63862897819a4a2c4cf16cc7_amd64", + "product_id": "openshift4/noderesourcetopology-scheduler-rhel9@sha256:7824fe71328515ea97d7c539b9f622180e8a51ef63862897819a4a2c4cf16cc7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/noderesourcetopology-scheduler-rhel9@sha256:7824fe71328515ea97d7c539b9f622180e8a51ef63862897819a4a2c4cf16cc7?arch=amd64&repository_url=registry.redhat.io/openshift4/noderesourcetopology-scheduler-rhel9&tag=v4.14.0-24" + } + } + }, + { + "category": "product_version", + "name": "openshift4/numaresources-must-gather-rhel9@sha256:7a1fd13b308320588ed336490e7136ac6f581d43e09acf9628d4a747f1d6257f_amd64", + "product": { + "name": "openshift4/numaresources-must-gather-rhel9@sha256:7a1fd13b308320588ed336490e7136ac6f581d43e09acf9628d4a747f1d6257f_amd64", + "product_id": "openshift4/numaresources-must-gather-rhel9@sha256:7a1fd13b308320588ed336490e7136ac6f581d43e09acf9628d4a747f1d6257f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/numaresources-must-gather-rhel9@sha256:7a1fd13b308320588ed336490e7136ac6f581d43e09acf9628d4a747f1d6257f?arch=amd64&repository_url=registry.redhat.io/openshift4/numaresources-must-gather-rhel9&tag=v4.14.0-191" + } + } + }, + { + "category": "product_version", + "name": "openshift4/numaresources-operator-bundle@sha256:44b1b733592ad126d8e48cfe0230a01552d722505c2a421e3bfe1314dac8d610_amd64", + "product": { + "name": "openshift4/numaresources-operator-bundle@sha256:44b1b733592ad126d8e48cfe0230a01552d722505c2a421e3bfe1314dac8d610_amd64", + "product_id": "openshift4/numaresources-operator-bundle@sha256:44b1b733592ad126d8e48cfe0230a01552d722505c2a421e3bfe1314dac8d610_amd64", + "product_identification_helper": { + "purl": "pkg:oci/numaresources-operator-bundle@sha256:44b1b733592ad126d8e48cfe0230a01552d722505c2a421e3bfe1314dac8d610?arch=amd64&repository_url=registry.redhat.io/openshift4/numaresources-operator-bundle&tag=v4.14.0-77" + } + } + }, + { + "category": "product_version", + "name": "openshift4/numaresources-rhel9-operator@sha256:e827220ff2b07b7acbb716f90d3834da84e66523e2ffa4a282e9f28270b73d19_amd64", + "product": { + "name": "openshift4/numaresources-rhel9-operator@sha256:e827220ff2b07b7acbb716f90d3834da84e66523e2ffa4a282e9f28270b73d19_amd64", + "product_id": "openshift4/numaresources-rhel9-operator@sha256:e827220ff2b07b7acbb716f90d3834da84e66523e2ffa4a282e9f28270b73d19_amd64", + "product_identification_helper": { + "purl": "pkg:oci/numaresources-rhel9-operator@sha256:e827220ff2b07b7acbb716f90d3834da84e66523e2ffa4a282e9f28270b73d19?arch=amd64&repository_url=registry.redhat.io/openshift4/numaresources-rhel9-operator&tag=v4.14.0-40" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:25c5c77fe79b72f805eba0e183bbca799f6f11266585fd9a24acb0aee4a4ee44_amd64", + "product": { + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:25c5c77fe79b72f805eba0e183bbca799f6f11266585fd9a24acb0aee4a4ee44_amd64", + "product_id": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:25c5c77fe79b72f805eba0e183bbca799f6f11266585fd9a24acb0aee4a4ee44_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-governance-policy-addon-controller-rhel8@sha256:25c5c77fe79b72f805eba0e183bbca799f6f11266585fd9a24acb0aee4a4ee44?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-grafana-rhel8@sha256:593eeebb93cf18d65214d810f0803e1d03689a4b662c375e00056786e25bb2b5_amd64", + "product": { + "name": "rhacm2/acm-grafana-rhel8@sha256:593eeebb93cf18d65214d810f0803e1d03689a4b662c375e00056786e25bb2b5_amd64", + "product_id": "rhacm2/acm-grafana-rhel8@sha256:593eeebb93cf18d65214d810f0803e1d03689a4b662c375e00056786e25bb2b5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-grafana-rhel8@sha256:593eeebb93cf18d65214d810f0803e1d03689a4b662c375e00056786e25bb2b5?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-grafana-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-must-gather-rhel8@sha256:f0a55d80c693cf5a618d809a27e906e258f66bcb7e3d93fe78b542c084bf7624_amd64", + "product": { + "name": "rhacm2/acm-must-gather-rhel8@sha256:f0a55d80c693cf5a618d809a27e906e258f66bcb7e3d93fe78b542c084bf7624_amd64", + "product_id": "rhacm2/acm-must-gather-rhel8@sha256:f0a55d80c693cf5a618d809a27e906e258f66bcb7e3d93fe78b542c084bf7624_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-must-gather-rhel8@sha256:f0a55d80c693cf5a618d809a27e906e258f66bcb7e3d93fe78b542c084bf7624?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-must-gather-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-operator-bundle@sha256:099e7ab081724937eabcda3fa30f892d3375f2188e95930ee8960933b09c92ae_amd64", + "product": { + "name": "rhacm2/acm-operator-bundle@sha256:099e7ab081724937eabcda3fa30f892d3375f2188e95930ee8960933b09c92ae_amd64", + "product_id": "rhacm2/acm-operator-bundle@sha256:099e7ab081724937eabcda3fa30f892d3375f2188e95930ee8960933b09c92ae_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-operator-bundle@sha256:099e7ab081724937eabcda3fa30f892d3375f2188e95930ee8960933b09c92ae?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-operator-bundle&tag=v2.6.8-14" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:3016d37cf969a94314aaaa295c0b1309f4bbfbc50d7d0789e1b875783e2904e4_amd64", + "product": { + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:3016d37cf969a94314aaaa295c0b1309f4bbfbc50d7d0789e1b875783e2904e4_amd64", + "product_id": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:3016d37cf969a94314aaaa295c0b1309f4bbfbc50d7d0789e1b875783e2904e4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-prometheus-config-reloader-rhel8@sha256:3016d37cf969a94314aaaa295c0b1309f4bbfbc50d7d0789e1b875783e2904e4?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-prometheus-rhel8@sha256:ea2ee7c76c6bce72ee098fae5a86ce6f8b68baa04cc0072f9833718ad8f84456_amd64", + "product": { + "name": "rhacm2/acm-prometheus-rhel8@sha256:ea2ee7c76c6bce72ee098fae5a86ce6f8b68baa04cc0072f9833718ad8f84456_amd64", + "product_id": "rhacm2/acm-prometheus-rhel8@sha256:ea2ee7c76c6bce72ee098fae5a86ce6f8b68baa04cc0072f9833718ad8f84456_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-prometheus-rhel8@sha256:ea2ee7c76c6bce72ee098fae5a86ce6f8b68baa04cc0072f9833718ad8f84456?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-prometheus-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:e797cb581b5d0508da0c8e14bd7aa3a49376d3c2ccaa643fd9f3b2ba858236a6_amd64", + "product": { + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:e797cb581b5d0508da0c8e14bd7aa3a49376d3c2ccaa643fd9f3b2ba858236a6_amd64", + "product_id": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:e797cb581b5d0508da0c8e14bd7aa3a49376d3c2ccaa643fd9f3b2ba858236a6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-volsync-addon-controller-rhel8@sha256:e797cb581b5d0508da0c8e14bd7aa3a49376d3c2ccaa643fd9f3b2ba858236a6?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/cert-policy-controller-rhel8@sha256:f1f513263c99d949da200459c852e77b2efb0171530e6b108a5b26e11563daf9_amd64", + "product": { + "name": "rhacm2/cert-policy-controller-rhel8@sha256:f1f513263c99d949da200459c852e77b2efb0171530e6b108a5b26e11563daf9_amd64", + "product_id": "rhacm2/cert-policy-controller-rhel8@sha256:f1f513263c99d949da200459c852e77b2efb0171530e6b108a5b26e11563daf9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cert-policy-controller-rhel8@sha256:f1f513263c99d949da200459c852e77b2efb0171530e6b108a5b26e11563daf9?arch=amd64&repository_url=registry.redhat.io/rhacm2/cert-policy-controller-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:8a7bfb5e2d3a815425c4eaa48843ec77d84641267f7439b47d36758d2cdc4c85_amd64", + "product": { + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:8a7bfb5e2d3a815425c4eaa48843ec77d84641267f7439b47d36758d2cdc4c85_amd64", + "product_id": "rhacm2/cluster-backup-rhel8-operator@sha256:8a7bfb5e2d3a815425c4eaa48843ec77d84641267f7439b47d36758d2cdc4c85_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-backup-rhel8-operator@sha256:8a7bfb5e2d3a815425c4eaa48843ec77d84641267f7439b47d36758d2cdc4c85?arch=amd64&repository_url=registry.redhat.io/rhacm2/cluster-backup-rhel8-operator&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/config-policy-controller-rhel8@sha256:71390be7a708c4997ca74895f07085fee710d3aa51d578ae6083cc71c3d5149e_amd64", + "product": { + "name": "rhacm2/config-policy-controller-rhel8@sha256:71390be7a708c4997ca74895f07085fee710d3aa51d578ae6083cc71c3d5149e_amd64", + "product_id": "rhacm2/config-policy-controller-rhel8@sha256:71390be7a708c4997ca74895f07085fee710d3aa51d578ae6083cc71c3d5149e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/config-policy-controller-rhel8@sha256:71390be7a708c4997ca74895f07085fee710d3aa51d578ae6083cc71c3d5149e?arch=amd64&repository_url=registry.redhat.io/rhacm2/config-policy-controller-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/console-rhel8@sha256:af47eee56b5df1ff8c4966af401f7d1855e5dc957b856d9f931498ac17c101f5_amd64", + "product": { + "name": "rhacm2/console-rhel8@sha256:af47eee56b5df1ff8c4966af401f7d1855e5dc957b856d9f931498ac17c101f5_amd64", + "product_id": "rhacm2/console-rhel8@sha256:af47eee56b5df1ff8c4966af401f7d1855e5dc957b856d9f931498ac17c101f5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/console-rhel8@sha256:af47eee56b5df1ff8c4966af401f7d1855e5dc957b856d9f931498ac17c101f5?arch=amd64&repository_url=registry.redhat.io/rhacm2/console-rhel8&tag=v2.6.8-7" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:0ccd5b2bc6ad1f2a65034ab24564edfd53550fed412660ca05deca650a4d2c56_amd64", + "product": { + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:0ccd5b2bc6ad1f2a65034ab24564edfd53550fed412660ca05deca650a4d2c56_amd64", + "product_id": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:0ccd5b2bc6ad1f2a65034ab24564edfd53550fed412660ca05deca650a4d2c56_amd64", + "product_identification_helper": { + "purl": "pkg:oci/endpoint-monitoring-rhel8-operator@sha256:0ccd5b2bc6ad1f2a65034ab24564edfd53550fed412660ca05deca650a4d2c56?arch=amd64&repository_url=registry.redhat.io/rhacm2/endpoint-monitoring-rhel8-operator&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:46f750706e47ab16b8f5dee46d4eb40c5ce377b874db03b5b403945d369060d1_amd64", + "product": { + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:46f750706e47ab16b8f5dee46d4eb40c5ce377b874db03b5b403945d369060d1_amd64", + "product_id": "rhacm2/governance-policy-propagator-rhel8@sha256:46f750706e47ab16b8f5dee46d4eb40c5ce377b874db03b5b403945d369060d1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/governance-policy-propagator-rhel8@sha256:46f750706e47ab16b8f5dee46d4eb40c5ce377b874db03b5b403945d369060d1?arch=amd64&repository_url=registry.redhat.io/rhacm2/governance-policy-propagator-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/governance-policy-spec-sync-rhel8@sha256:719ac6bf7f07fcb78f8ae5b599260eab62379feb427d23fe29d1b3df7e9db821_amd64", + "product": { + "name": "rhacm2/governance-policy-spec-sync-rhel8@sha256:719ac6bf7f07fcb78f8ae5b599260eab62379feb427d23fe29d1b3df7e9db821_amd64", + "product_id": "rhacm2/governance-policy-spec-sync-rhel8@sha256:719ac6bf7f07fcb78f8ae5b599260eab62379feb427d23fe29d1b3df7e9db821_amd64", + "product_identification_helper": { + "purl": "pkg:oci/governance-policy-spec-sync-rhel8@sha256:719ac6bf7f07fcb78f8ae5b599260eab62379feb427d23fe29d1b3df7e9db821?arch=amd64&repository_url=registry.redhat.io/rhacm2/governance-policy-spec-sync-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/governance-policy-status-sync-rhel8@sha256:bdd930e70499b9c894cf3998d7444b9e0ceb2caa0545e1458331fbd47fd95c2b_amd64", + "product": { + "name": "rhacm2/governance-policy-status-sync-rhel8@sha256:bdd930e70499b9c894cf3998d7444b9e0ceb2caa0545e1458331fbd47fd95c2b_amd64", + "product_id": "rhacm2/governance-policy-status-sync-rhel8@sha256:bdd930e70499b9c894cf3998d7444b9e0ceb2caa0545e1458331fbd47fd95c2b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/governance-policy-status-sync-rhel8@sha256:bdd930e70499b9c894cf3998d7444b9e0ceb2caa0545e1458331fbd47fd95c2b?arch=amd64&repository_url=registry.redhat.io/rhacm2/governance-policy-status-sync-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/governance-policy-template-sync-rhel8@sha256:1cf75fedfade2b8309551ec602ef87d423b7c7001e9bca330beb6c3e090d88e1_amd64", + "product": { + "name": "rhacm2/governance-policy-template-sync-rhel8@sha256:1cf75fedfade2b8309551ec602ef87d423b7c7001e9bca330beb6c3e090d88e1_amd64", + "product_id": "rhacm2/governance-policy-template-sync-rhel8@sha256:1cf75fedfade2b8309551ec602ef87d423b7c7001e9bca330beb6c3e090d88e1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/governance-policy-template-sync-rhel8@sha256:1cf75fedfade2b8309551ec602ef87d423b7c7001e9bca330beb6c3e090d88e1?arch=amd64&repository_url=registry.redhat.io/rhacm2/governance-policy-template-sync-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:b51eee27cb08086a8d50e580cb52b5c0e7fb89898da8ce98c91a0edcbe6577d8_amd64", + "product": { + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:b51eee27cb08086a8d50e580cb52b5c0e7fb89898da8ce98c91a0edcbe6577d8_amd64", + "product_id": "rhacm2/grafana-dashboard-loader-rhel8@sha256:b51eee27cb08086a8d50e580cb52b5c0e7fb89898da8ce98c91a0edcbe6577d8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/grafana-dashboard-loader-rhel8@sha256:b51eee27cb08086a8d50e580cb52b5c0e7fb89898da8ce98c91a0edcbe6577d8?arch=amd64&repository_url=registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/iam-policy-controller-rhel8@sha256:f48fffa8ede6ed6341b48680624c19c20ebcdd51f1c282d811cdfc1d79af3ee0_amd64", + "product": { + "name": "rhacm2/iam-policy-controller-rhel8@sha256:f48fffa8ede6ed6341b48680624c19c20ebcdd51f1c282d811cdfc1d79af3ee0_amd64", + "product_id": "rhacm2/iam-policy-controller-rhel8@sha256:f48fffa8ede6ed6341b48680624c19c20ebcdd51f1c282d811cdfc1d79af3ee0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/iam-policy-controller-rhel8@sha256:f48fffa8ede6ed6341b48680624c19c20ebcdd51f1c282d811cdfc1d79af3ee0?arch=amd64&repository_url=registry.redhat.io/rhacm2/iam-policy-controller-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/insights-client-rhel8@sha256:1390dd39465ed346b96d1fd479208183b9731f5801c86306628c298f8da99ff1_amd64", + "product": { + "name": "rhacm2/insights-client-rhel8@sha256:1390dd39465ed346b96d1fd479208183b9731f5801c86306628c298f8da99ff1_amd64", + "product_id": "rhacm2/insights-client-rhel8@sha256:1390dd39465ed346b96d1fd479208183b9731f5801c86306628c298f8da99ff1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/insights-client-rhel8@sha256:1390dd39465ed346b96d1fd479208183b9731f5801c86306628c298f8da99ff1?arch=amd64&repository_url=registry.redhat.io/rhacm2/insights-client-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/insights-metrics-rhel8@sha256:16e1537ee0a915c05da1806adbace166f213e963b2257b1c4f1c2b4a4382f278_amd64", + "product": { + "name": "rhacm2/insights-metrics-rhel8@sha256:16e1537ee0a915c05da1806adbace166f213e963b2257b1c4f1c2b4a4382f278_amd64", + "product_id": "rhacm2/insights-metrics-rhel8@sha256:16e1537ee0a915c05da1806adbace166f213e963b2257b1c4f1c2b4a4382f278_amd64", + "product_identification_helper": { + "purl": "pkg:oci/insights-metrics-rhel8@sha256:16e1537ee0a915c05da1806adbace166f213e963b2257b1c4f1c2b4a4382f278?arch=amd64&repository_url=registry.redhat.io/rhacm2/insights-metrics-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:f8d8a8b8cf13be2b54f69b5689ee8a455986990dd86da7b9c7ee292d437872b8_amd64", + "product": { + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:f8d8a8b8cf13be2b54f69b5689ee8a455986990dd86da7b9c7ee292d437872b8_amd64", + "product_id": "rhacm2/klusterlet-addon-controller-rhel8@sha256:f8d8a8b8cf13be2b54f69b5689ee8a455986990dd86da7b9c7ee292d437872b8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/klusterlet-addon-controller-rhel8@sha256:f8d8a8b8cf13be2b54f69b5689ee8a455986990dd86da7b9c7ee292d437872b8?arch=amd64&repository_url=registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:98ba161e0f36fd798e59b362259c2a7f55d0b7dc016e4231dc74f87c041923b0_amd64", + "product": { + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:98ba161e0f36fd798e59b362259c2a7f55d0b7dc016e4231dc74f87c041923b0_amd64", + "product_id": "rhacm2/kube-rbac-proxy-rhel8@sha256:98ba161e0f36fd798e59b362259c2a7f55d0b7dc016e4231dc74f87c041923b0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kube-rbac-proxy-rhel8@sha256:98ba161e0f36fd798e59b362259c2a7f55d0b7dc016e4231dc74f87c041923b0?arch=amd64&repository_url=registry.redhat.io/rhacm2/kube-rbac-proxy-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/kube-state-metrics-rhel8@sha256:d5bf8f26c314ba86b92c5d2272bd582b9f31e0177727b8c1f5840f38657f88b4_amd64", + "product": { + "name": "rhacm2/kube-state-metrics-rhel8@sha256:d5bf8f26c314ba86b92c5d2272bd582b9f31e0177727b8c1f5840f38657f88b4_amd64", + "product_id": "rhacm2/kube-state-metrics-rhel8@sha256:d5bf8f26c314ba86b92c5d2272bd582b9f31e0177727b8c1f5840f38657f88b4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kube-state-metrics-rhel8@sha256:d5bf8f26c314ba86b92c5d2272bd582b9f31e0177727b8c1f5840f38657f88b4?arch=amd64&repository_url=registry.redhat.io/rhacm2/kube-state-metrics-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/management-ingress-rhel8@sha256:3be3b5d511c7e7ad9bbfcb53a6ee92f96ee2d390ef3160a3c5bc8488e21ee747_amd64", + "product": { + "name": "rhacm2/management-ingress-rhel8@sha256:3be3b5d511c7e7ad9bbfcb53a6ee92f96ee2d390ef3160a3c5bc8488e21ee747_amd64", + "product_id": "rhacm2/management-ingress-rhel8@sha256:3be3b5d511c7e7ad9bbfcb53a6ee92f96ee2d390ef3160a3c5bc8488e21ee747_amd64", + "product_identification_helper": { + "purl": "pkg:oci/management-ingress-rhel8@sha256:3be3b5d511c7e7ad9bbfcb53a6ee92f96ee2d390ef3160a3c5bc8488e21ee747?arch=amd64&repository_url=registry.redhat.io/rhacm2/management-ingress-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/memcached-rhel8@sha256:e9dc8d532caa5ff5aaa8f95835854228aaaa35a406316f943da8af19a44331cb_amd64", + "product": { + "name": "rhacm2/memcached-rhel8@sha256:e9dc8d532caa5ff5aaa8f95835854228aaaa35a406316f943da8af19a44331cb_amd64", + "product_id": "rhacm2/memcached-rhel8@sha256:e9dc8d532caa5ff5aaa8f95835854228aaaa35a406316f943da8af19a44331cb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/memcached-rhel8@sha256:e9dc8d532caa5ff5aaa8f95835854228aaaa35a406316f943da8af19a44331cb?arch=amd64&repository_url=registry.redhat.io/rhacm2/memcached-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/memcached-exporter-rhel8@sha256:76a958137210ca481befc1050595be4b915fb7440a0d79e090766b57f12723f8_amd64", + "product": { + "name": "rhacm2/memcached-exporter-rhel8@sha256:76a958137210ca481befc1050595be4b915fb7440a0d79e090766b57f12723f8_amd64", + "product_id": "rhacm2/memcached-exporter-rhel8@sha256:76a958137210ca481befc1050595be4b915fb7440a0d79e090766b57f12723f8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/memcached-exporter-rhel8@sha256:76a958137210ca481befc1050595be4b915fb7440a0d79e090766b57f12723f8?arch=amd64&repository_url=registry.redhat.io/rhacm2/memcached-exporter-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/metrics-collector-rhel8@sha256:a64297c63c5bb0a5691874b1c2908b2233c671250a3418d72c153382594b1df0_amd64", + "product": { + "name": "rhacm2/metrics-collector-rhel8@sha256:a64297c63c5bb0a5691874b1c2908b2233c671250a3418d72c153382594b1df0_amd64", + "product_id": "rhacm2/metrics-collector-rhel8@sha256:a64297c63c5bb0a5691874b1c2908b2233c671250a3418d72c153382594b1df0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/metrics-collector-rhel8@sha256:a64297c63c5bb0a5691874b1c2908b2233c671250a3418d72c153382594b1df0?arch=amd64&repository_url=registry.redhat.io/rhacm2/metrics-collector-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicloud-integrations-rhel8@sha256:e0525e0b945fdc89c18b9bb9fc0ef728f38bc288cd81fae5b3ddcd5f008c39df_amd64", + "product": { + "name": "rhacm2/multicloud-integrations-rhel8@sha256:e0525e0b945fdc89c18b9bb9fc0ef728f38bc288cd81fae5b3ddcd5f008c39df_amd64", + "product_id": "rhacm2/multicloud-integrations-rhel8@sha256:e0525e0b945fdc89c18b9bb9fc0ef728f38bc288cd81fae5b3ddcd5f008c39df_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicloud-integrations-rhel8@sha256:e0525e0b945fdc89c18b9bb9fc0ef728f38bc288cd81fae5b3ddcd5f008c39df?arch=amd64&repository_url=registry.redhat.io/rhacm2/multicloud-integrations-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multiclusterhub-rhel8@sha256:a3311e48fbf48dbb7165f44810e526031c24b4b756a6972fc2bbf8d6a8583c44_amd64", + "product": { + "name": "rhacm2/multiclusterhub-rhel8@sha256:a3311e48fbf48dbb7165f44810e526031c24b4b756a6972fc2bbf8d6a8583c44_amd64", + "product_id": "rhacm2/multiclusterhub-rhel8@sha256:a3311e48fbf48dbb7165f44810e526031c24b4b756a6972fc2bbf8d6a8583c44_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multiclusterhub-rhel8@sha256:a3311e48fbf48dbb7165f44810e526031c24b4b756a6972fc2bbf8d6a8583c44?arch=amd64&repository_url=registry.redhat.io/rhacm2/multiclusterhub-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multiclusterhub-repo-rhel8@sha256:d1423824ee2c1288e8c56d470ca8ac1fb82f5374acb7111a9b736598f2043d1d_amd64", + "product": { + "name": "rhacm2/multiclusterhub-repo-rhel8@sha256:d1423824ee2c1288e8c56d470ca8ac1fb82f5374acb7111a9b736598f2043d1d_amd64", + "product_id": "rhacm2/multiclusterhub-repo-rhel8@sha256:d1423824ee2c1288e8c56d470ca8ac1fb82f5374acb7111a9b736598f2043d1d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multiclusterhub-repo-rhel8@sha256:d1423824ee2c1288e8c56d470ca8ac1fb82f5374acb7111a9b736598f2043d1d?arch=amd64&repository_url=registry.redhat.io/rhacm2/multiclusterhub-repo-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:5132d8d65b3e7a17ca7995b0540cd2e260194495950807f16e2aa15a46bd077d_amd64", + "product": { + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:5132d8d65b3e7a17ca7995b0540cd2e260194495950807f16e2aa15a46bd077d_amd64", + "product_id": "rhacm2/multicluster-observability-rhel8-operator@sha256:5132d8d65b3e7a17ca7995b0540cd2e260194495950807f16e2aa15a46bd077d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-observability-rhel8-operator@sha256:5132d8d65b3e7a17ca7995b0540cd2e260194495950807f16e2aa15a46bd077d?arch=amd64&repository_url=registry.redhat.io/rhacm2/multicluster-observability-rhel8-operator&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:b23fd7ae112056410ddd6f83a1a8af8cb609fcce37c10b4438e5d54f7b67ef64_amd64", + "product": { + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:b23fd7ae112056410ddd6f83a1a8af8cb609fcce37c10b4438e5d54f7b67ef64_amd64", + "product_id": "rhacm2/multicluster-operators-application-rhel8@sha256:b23fd7ae112056410ddd6f83a1a8af8cb609fcce37c10b4438e5d54f7b67ef64_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-application-rhel8@sha256:b23fd7ae112056410ddd6f83a1a8af8cb609fcce37c10b4438e5d54f7b67ef64?arch=amd64&repository_url=registry.redhat.io/rhacm2/multicluster-operators-application-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:80f5a3dadcc737d900b9e4cc54ed67ee8c18da8e6dd05c217cf4fbcaa0f7dada_amd64", + "product": { + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:80f5a3dadcc737d900b9e4cc54ed67ee8c18da8e6dd05c217cf4fbcaa0f7dada_amd64", + "product_id": "rhacm2/multicluster-operators-channel-rhel8@sha256:80f5a3dadcc737d900b9e4cc54ed67ee8c18da8e6dd05c217cf4fbcaa0f7dada_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-channel-rhel8@sha256:80f5a3dadcc737d900b9e4cc54ed67ee8c18da8e6dd05c217cf4fbcaa0f7dada?arch=amd64&repository_url=registry.redhat.io/rhacm2/multicluster-operators-channel-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:9d6dc96bb71f4a98bb2a22f27554996da153c111bd471c959f202bfaa20a09e2_amd64", + "product": { + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:9d6dc96bb71f4a98bb2a22f27554996da153c111bd471c959f202bfaa20a09e2_amd64", + "product_id": "rhacm2/multicluster-operators-subscription-rhel8@sha256:9d6dc96bb71f4a98bb2a22f27554996da153c111bd471c959f202bfaa20a09e2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-subscription-rhel8@sha256:9d6dc96bb71f4a98bb2a22f27554996da153c111bd471c959f202bfaa20a09e2?arch=amd64&repository_url=registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/node-exporter-rhel8@sha256:2b2a1911b9d808f95f1e2190557a767e66d60059d06097243bc293f534770897_amd64", + "product": { + "name": "rhacm2/node-exporter-rhel8@sha256:2b2a1911b9d808f95f1e2190557a767e66d60059d06097243bc293f534770897_amd64", + "product_id": "rhacm2/node-exporter-rhel8@sha256:2b2a1911b9d808f95f1e2190557a767e66d60059d06097243bc293f534770897_amd64", + "product_identification_helper": { + "purl": "pkg:oci/node-exporter-rhel8@sha256:2b2a1911b9d808f95f1e2190557a767e66d60059d06097243bc293f534770897?arch=amd64&repository_url=registry.redhat.io/rhacm2/node-exporter-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/observatorium-rhel8@sha256:00fe1e7400d7665bff0b6d778c4801243cf2450cf94ba8dca726aa96dc65294b_amd64", + "product": { + "name": "rhacm2/observatorium-rhel8@sha256:00fe1e7400d7665bff0b6d778c4801243cf2450cf94ba8dca726aa96dc65294b_amd64", + "product_id": "rhacm2/observatorium-rhel8@sha256:00fe1e7400d7665bff0b6d778c4801243cf2450cf94ba8dca726aa96dc65294b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/observatorium-rhel8@sha256:00fe1e7400d7665bff0b6d778c4801243cf2450cf94ba8dca726aa96dc65294b?arch=amd64&repository_url=registry.redhat.io/rhacm2/observatorium-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/observatorium-rhel8-operator@sha256:5e630cc810dfe88aad2c3df4a73bd7422ecb7ed41b953b25bea521810bc269ce_amd64", + "product": { + "name": "rhacm2/observatorium-rhel8-operator@sha256:5e630cc810dfe88aad2c3df4a73bd7422ecb7ed41b953b25bea521810bc269ce_amd64", + "product_id": "rhacm2/observatorium-rhel8-operator@sha256:5e630cc810dfe88aad2c3df4a73bd7422ecb7ed41b953b25bea521810bc269ce_amd64", + "product_identification_helper": { + "purl": "pkg:oci/observatorium-rhel8-operator@sha256:5e630cc810dfe88aad2c3df4a73bd7422ecb7ed41b953b25bea521810bc269ce?arch=amd64&repository_url=registry.redhat.io/rhacm2/observatorium-rhel8-operator&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:99f5bbd89e595a682c21d1d43ec05547103efe8444583da114d62ec89ca3c162_amd64", + "product": { + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:99f5bbd89e595a682c21d1d43ec05547103efe8444583da114d62ec89ca3c162_amd64", + "product_id": "rhacm2/prometheus-alertmanager-rhel8@sha256:99f5bbd89e595a682c21d1d43ec05547103efe8444583da114d62ec89ca3c162_amd64", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-alertmanager-rhel8@sha256:99f5bbd89e595a682c21d1d43ec05547103efe8444583da114d62ec89ca3c162?arch=amd64&repository_url=registry.redhat.io/rhacm2/prometheus-alertmanager-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/prometheus-rhel8@sha256:dd9b4a171a2acd42094d7fa6fd3a20b89fa30794ea322ad5a02767cd0d5b13c5_amd64", + "product": { + "name": "rhacm2/prometheus-rhel8@sha256:dd9b4a171a2acd42094d7fa6fd3a20b89fa30794ea322ad5a02767cd0d5b13c5_amd64", + "product_id": "rhacm2/prometheus-rhel8@sha256:dd9b4a171a2acd42094d7fa6fd3a20b89fa30794ea322ad5a02767cd0d5b13c5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-rhel8@sha256:dd9b4a171a2acd42094d7fa6fd3a20b89fa30794ea322ad5a02767cd0d5b13c5?arch=amd64&repository_url=registry.redhat.io/rhacm2/prometheus-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:285bf0611954d06a9dd3cb4c9962fa5c187e25bf4deebc1abcff6c9337fb1291_amd64", + "product": { + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:285bf0611954d06a9dd3cb4c9962fa5c187e25bf4deebc1abcff6c9337fb1291_amd64", + "product_id": "rhacm2/rbac-query-proxy-rhel8@sha256:285bf0611954d06a9dd3cb4c9962fa5c187e25bf4deebc1abcff6c9337fb1291_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rbac-query-proxy-rhel8@sha256:285bf0611954d06a9dd3cb4c9962fa5c187e25bf4deebc1abcff6c9337fb1291?arch=amd64&repository_url=registry.redhat.io/rhacm2/rbac-query-proxy-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/redisgraph-tls-rhel8@sha256:998ce9ac5a57b01d0713d94f95f8ddd8be327d72a7a2d18217251733d78c853d_amd64", + "product": { + "name": "rhacm2/redisgraph-tls-rhel8@sha256:998ce9ac5a57b01d0713d94f95f8ddd8be327d72a7a2d18217251733d78c853d_amd64", + "product_id": "rhacm2/redisgraph-tls-rhel8@sha256:998ce9ac5a57b01d0713d94f95f8ddd8be327d72a7a2d18217251733d78c853d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/redisgraph-tls-rhel8@sha256:998ce9ac5a57b01d0713d94f95f8ddd8be327d72a7a2d18217251733d78c853d?arch=amd64&repository_url=registry.redhat.io/rhacm2/redisgraph-tls-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/search-aggregator-rhel8@sha256:51888c504d51b1a3abd343f407774925bed5f0ec01087c6b0ded34a8b547916c_amd64", + "product": { + "name": "rhacm2/search-aggregator-rhel8@sha256:51888c504d51b1a3abd343f407774925bed5f0ec01087c6b0ded34a8b547916c_amd64", + "product_id": "rhacm2/search-aggregator-rhel8@sha256:51888c504d51b1a3abd343f407774925bed5f0ec01087c6b0ded34a8b547916c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/search-aggregator-rhel8@sha256:51888c504d51b1a3abd343f407774925bed5f0ec01087c6b0ded34a8b547916c?arch=amd64&repository_url=registry.redhat.io/rhacm2/search-aggregator-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/search-api-rhel8@sha256:f42a0c860fb6f84a6d1f49eebc408cdb0ae545259c9cb0f669af193216153f6f_amd64", + "product": { + "name": "rhacm2/search-api-rhel8@sha256:f42a0c860fb6f84a6d1f49eebc408cdb0ae545259c9cb0f669af193216153f6f_amd64", + "product_id": "rhacm2/search-api-rhel8@sha256:f42a0c860fb6f84a6d1f49eebc408cdb0ae545259c9cb0f669af193216153f6f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/search-api-rhel8@sha256:f42a0c860fb6f84a6d1f49eebc408cdb0ae545259c9cb0f669af193216153f6f?arch=amd64&repository_url=registry.redhat.io/rhacm2/search-api-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/search-collector-rhel8@sha256:a6cd92b570fa2d6aafcde2ff672909fab1c2ec461a725898e646266454967baf_amd64", + "product": { + "name": "rhacm2/search-collector-rhel8@sha256:a6cd92b570fa2d6aafcde2ff672909fab1c2ec461a725898e646266454967baf_amd64", + "product_id": "rhacm2/search-collector-rhel8@sha256:a6cd92b570fa2d6aafcde2ff672909fab1c2ec461a725898e646266454967baf_amd64", + "product_identification_helper": { + "purl": "pkg:oci/search-collector-rhel8@sha256:a6cd92b570fa2d6aafcde2ff672909fab1c2ec461a725898e646266454967baf?arch=amd64&repository_url=registry.redhat.io/rhacm2/search-collector-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/search-rhel8@sha256:49143b01565d10a5cad92339ea0610cc3f41f1369496acc44552aaf3b633f915_amd64", + "product": { + "name": "rhacm2/search-rhel8@sha256:49143b01565d10a5cad92339ea0610cc3f41f1369496acc44552aaf3b633f915_amd64", + "product_id": "rhacm2/search-rhel8@sha256:49143b01565d10a5cad92339ea0610cc3f41f1369496acc44552aaf3b633f915_amd64", + "product_identification_helper": { + "purl": "pkg:oci/search-rhel8@sha256:49143b01565d10a5cad92339ea0610cc3f41f1369496acc44552aaf3b633f915?arch=amd64&repository_url=registry.redhat.io/rhacm2/search-rhel8&tag=v2.6.8-7" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/submariner-addon-rhel8@sha256:1a4375944fa8d3a7a2d8e76b8354ccd1c1c9ed24577e3d55f9cf2ec3205cbac0_amd64", + "product": { + "name": "rhacm2/submariner-addon-rhel8@sha256:1a4375944fa8d3a7a2d8e76b8354ccd1c1c9ed24577e3d55f9cf2ec3205cbac0_amd64", + "product_id": "rhacm2/submariner-addon-rhel8@sha256:1a4375944fa8d3a7a2d8e76b8354ccd1c1c9ed24577e3d55f9cf2ec3205cbac0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/submariner-addon-rhel8@sha256:1a4375944fa8d3a7a2d8e76b8354ccd1c1c9ed24577e3d55f9cf2ec3205cbac0?arch=amd64&repository_url=registry.redhat.io/rhacm2/submariner-addon-rhel8&tag=v2.6.8-9" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/thanos-rhel8@sha256:6a4f4abb065cbed85e9b2ac43234939947c101059af2bc29e561f4c842c42ddb_amd64", + "product": { + "name": "rhacm2/thanos-rhel8@sha256:6a4f4abb065cbed85e9b2ac43234939947c101059af2bc29e561f4c842c42ddb_amd64", + "product_id": "rhacm2/thanos-rhel8@sha256:6a4f4abb065cbed85e9b2ac43234939947c101059af2bc29e561f4c842c42ddb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/thanos-rhel8@sha256:6a4f4abb065cbed85e9b2ac43234939947c101059af2bc29e561f4c842c42ddb?arch=amd64&repository_url=registry.redhat.io/rhacm2/thanos-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:5d52980539e3fe292d178b066ebdf214b81120e18cd6e86a4133be201388266a_amd64", + "product": { + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:5d52980539e3fe292d178b066ebdf214b81120e18cd6e86a4133be201388266a_amd64", + "product_id": "rhacm2/thanos-receive-controller-rhel8@sha256:5d52980539e3fe292d178b066ebdf214b81120e18cd6e86a4133be201388266a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/thanos-receive-controller-rhel8@sha256:5d52980539e3fe292d178b066ebdf214b81120e18cd6e86a4133be201388266a?arch=amd64&repository_url=registry.redhat.io/rhacm2/thanos-receive-controller-rhel8&tag=v2.6.8-5" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:39a3531a490d9d7a2528dca7efbbfe3742e7b02d3d7b139c47eacd0fb3398478_ppc64le", + "product": { + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:39a3531a490d9d7a2528dca7efbbfe3742e7b02d3d7b139c47eacd0fb3398478_ppc64le", + "product_id": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:39a3531a490d9d7a2528dca7efbbfe3742e7b02d3d7b139c47eacd0fb3398478_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-governance-policy-addon-controller-rhel8@sha256:39a3531a490d9d7a2528dca7efbbfe3742e7b02d3d7b139c47eacd0fb3398478?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-grafana-rhel8@sha256:4b9c090d9361d711f400ecae06bfb685d4b14ecdd2c04d1dad1c21aeffe1a7c7_ppc64le", + "product": { + "name": "rhacm2/acm-grafana-rhel8@sha256:4b9c090d9361d711f400ecae06bfb685d4b14ecdd2c04d1dad1c21aeffe1a7c7_ppc64le", + "product_id": "rhacm2/acm-grafana-rhel8@sha256:4b9c090d9361d711f400ecae06bfb685d4b14ecdd2c04d1dad1c21aeffe1a7c7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-grafana-rhel8@sha256:4b9c090d9361d711f400ecae06bfb685d4b14ecdd2c04d1dad1c21aeffe1a7c7?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-grafana-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-must-gather-rhel8@sha256:73707cce9f52bca40994ae5dc64d39512f86c2fad089cc6a98fad35600714884_ppc64le", + "product": { + "name": "rhacm2/acm-must-gather-rhel8@sha256:73707cce9f52bca40994ae5dc64d39512f86c2fad089cc6a98fad35600714884_ppc64le", + "product_id": "rhacm2/acm-must-gather-rhel8@sha256:73707cce9f52bca40994ae5dc64d39512f86c2fad089cc6a98fad35600714884_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-must-gather-rhel8@sha256:73707cce9f52bca40994ae5dc64d39512f86c2fad089cc6a98fad35600714884?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-must-gather-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-operator-bundle@sha256:1b1117268e33a09d03a7f0d7a3a586b5bd0c3e2fccd4974c3ab6c697ad21ab13_ppc64le", + "product": { + "name": "rhacm2/acm-operator-bundle@sha256:1b1117268e33a09d03a7f0d7a3a586b5bd0c3e2fccd4974c3ab6c697ad21ab13_ppc64le", + "product_id": "rhacm2/acm-operator-bundle@sha256:1b1117268e33a09d03a7f0d7a3a586b5bd0c3e2fccd4974c3ab6c697ad21ab13_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-operator-bundle@sha256:1b1117268e33a09d03a7f0d7a3a586b5bd0c3e2fccd4974c3ab6c697ad21ab13?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-operator-bundle&tag=v2.6.8-14" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:dde63fb84d127d01ad6e3a76646e9d9b385b0a4695e7b056f55418323f70b5c0_ppc64le", + "product": { + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:dde63fb84d127d01ad6e3a76646e9d9b385b0a4695e7b056f55418323f70b5c0_ppc64le", + "product_id": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:dde63fb84d127d01ad6e3a76646e9d9b385b0a4695e7b056f55418323f70b5c0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-prometheus-config-reloader-rhel8@sha256:dde63fb84d127d01ad6e3a76646e9d9b385b0a4695e7b056f55418323f70b5c0?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-prometheus-rhel8@sha256:71c105c0d3b7507efed5a5b792611cc5022dd97293da4ecfa16a593524f51f22_ppc64le", + "product": { + "name": "rhacm2/acm-prometheus-rhel8@sha256:71c105c0d3b7507efed5a5b792611cc5022dd97293da4ecfa16a593524f51f22_ppc64le", + "product_id": "rhacm2/acm-prometheus-rhel8@sha256:71c105c0d3b7507efed5a5b792611cc5022dd97293da4ecfa16a593524f51f22_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-prometheus-rhel8@sha256:71c105c0d3b7507efed5a5b792611cc5022dd97293da4ecfa16a593524f51f22?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-prometheus-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:f8f219b28fc4eb3ba76064c94b8618a185e51f701e870d773de0022e53fdec67_ppc64le", + "product": { + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:f8f219b28fc4eb3ba76064c94b8618a185e51f701e870d773de0022e53fdec67_ppc64le", + "product_id": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:f8f219b28fc4eb3ba76064c94b8618a185e51f701e870d773de0022e53fdec67_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-volsync-addon-controller-rhel8@sha256:f8f219b28fc4eb3ba76064c94b8618a185e51f701e870d773de0022e53fdec67?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/cert-policy-controller-rhel8@sha256:51e31d2ddfa55f1f1113f3a3df84326ec5bcf8fff1cf542747b6b2ad920c227d_ppc64le", + "product": { + "name": "rhacm2/cert-policy-controller-rhel8@sha256:51e31d2ddfa55f1f1113f3a3df84326ec5bcf8fff1cf542747b6b2ad920c227d_ppc64le", + "product_id": "rhacm2/cert-policy-controller-rhel8@sha256:51e31d2ddfa55f1f1113f3a3df84326ec5bcf8fff1cf542747b6b2ad920c227d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cert-policy-controller-rhel8@sha256:51e31d2ddfa55f1f1113f3a3df84326ec5bcf8fff1cf542747b6b2ad920c227d?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/cert-policy-controller-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:3e10c0acd8ea2090e75c6bf2220a0be08a932fd7c109a7449c2a331480dd64ab_ppc64le", + "product": { + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:3e10c0acd8ea2090e75c6bf2220a0be08a932fd7c109a7449c2a331480dd64ab_ppc64le", + "product_id": "rhacm2/cluster-backup-rhel8-operator@sha256:3e10c0acd8ea2090e75c6bf2220a0be08a932fd7c109a7449c2a331480dd64ab_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-backup-rhel8-operator@sha256:3e10c0acd8ea2090e75c6bf2220a0be08a932fd7c109a7449c2a331480dd64ab?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/cluster-backup-rhel8-operator&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/config-policy-controller-rhel8@sha256:bd2496dca1e8ed428d6ef911a9aaa2eb17655b9ebc110d8a6da0b837fbceec3d_ppc64le", + "product": { + "name": "rhacm2/config-policy-controller-rhel8@sha256:bd2496dca1e8ed428d6ef911a9aaa2eb17655b9ebc110d8a6da0b837fbceec3d_ppc64le", + "product_id": "rhacm2/config-policy-controller-rhel8@sha256:bd2496dca1e8ed428d6ef911a9aaa2eb17655b9ebc110d8a6da0b837fbceec3d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/config-policy-controller-rhel8@sha256:bd2496dca1e8ed428d6ef911a9aaa2eb17655b9ebc110d8a6da0b837fbceec3d?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/config-policy-controller-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/console-rhel8@sha256:3d6c5e521eaf99af4354656e9e99a20702232981a34ea285cd9d78a394a76172_ppc64le", + "product": { + "name": "rhacm2/console-rhel8@sha256:3d6c5e521eaf99af4354656e9e99a20702232981a34ea285cd9d78a394a76172_ppc64le", + "product_id": "rhacm2/console-rhel8@sha256:3d6c5e521eaf99af4354656e9e99a20702232981a34ea285cd9d78a394a76172_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/console-rhel8@sha256:3d6c5e521eaf99af4354656e9e99a20702232981a34ea285cd9d78a394a76172?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/console-rhel8&tag=v2.6.8-7" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:d50557876a2a70edd18d2d1396470f92bffdf8c063d2604ed8816884bc9c629a_ppc64le", + "product": { + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:d50557876a2a70edd18d2d1396470f92bffdf8c063d2604ed8816884bc9c629a_ppc64le", + "product_id": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:d50557876a2a70edd18d2d1396470f92bffdf8c063d2604ed8816884bc9c629a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/endpoint-monitoring-rhel8-operator@sha256:d50557876a2a70edd18d2d1396470f92bffdf8c063d2604ed8816884bc9c629a?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/endpoint-monitoring-rhel8-operator&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:6419ab49e17dbe2c04e08010e2795f2642178d52d2b6c5100ed44c4b71dbbf1d_ppc64le", + "product": { + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:6419ab49e17dbe2c04e08010e2795f2642178d52d2b6c5100ed44c4b71dbbf1d_ppc64le", + "product_id": "rhacm2/governance-policy-propagator-rhel8@sha256:6419ab49e17dbe2c04e08010e2795f2642178d52d2b6c5100ed44c4b71dbbf1d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/governance-policy-propagator-rhel8@sha256:6419ab49e17dbe2c04e08010e2795f2642178d52d2b6c5100ed44c4b71dbbf1d?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/governance-policy-propagator-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/governance-policy-spec-sync-rhel8@sha256:2aa813b972d7598880e3bd41affa80323fe60949be6cb20217f6538ce2e8bac1_ppc64le", + "product": { + "name": "rhacm2/governance-policy-spec-sync-rhel8@sha256:2aa813b972d7598880e3bd41affa80323fe60949be6cb20217f6538ce2e8bac1_ppc64le", + "product_id": "rhacm2/governance-policy-spec-sync-rhel8@sha256:2aa813b972d7598880e3bd41affa80323fe60949be6cb20217f6538ce2e8bac1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/governance-policy-spec-sync-rhel8@sha256:2aa813b972d7598880e3bd41affa80323fe60949be6cb20217f6538ce2e8bac1?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/governance-policy-spec-sync-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/governance-policy-status-sync-rhel8@sha256:ad2468a852d30eaba67cd6a685c894280e938a7471c98f73144ead47bf1a9507_ppc64le", + "product": { + "name": "rhacm2/governance-policy-status-sync-rhel8@sha256:ad2468a852d30eaba67cd6a685c894280e938a7471c98f73144ead47bf1a9507_ppc64le", + "product_id": "rhacm2/governance-policy-status-sync-rhel8@sha256:ad2468a852d30eaba67cd6a685c894280e938a7471c98f73144ead47bf1a9507_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/governance-policy-status-sync-rhel8@sha256:ad2468a852d30eaba67cd6a685c894280e938a7471c98f73144ead47bf1a9507?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/governance-policy-status-sync-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/governance-policy-template-sync-rhel8@sha256:cfa6b74968f6ff7d8ee0bd2d8fbbb40c55f224221ea6f0d964095f8943c9096f_ppc64le", + "product": { + "name": "rhacm2/governance-policy-template-sync-rhel8@sha256:cfa6b74968f6ff7d8ee0bd2d8fbbb40c55f224221ea6f0d964095f8943c9096f_ppc64le", + "product_id": "rhacm2/governance-policy-template-sync-rhel8@sha256:cfa6b74968f6ff7d8ee0bd2d8fbbb40c55f224221ea6f0d964095f8943c9096f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/governance-policy-template-sync-rhel8@sha256:cfa6b74968f6ff7d8ee0bd2d8fbbb40c55f224221ea6f0d964095f8943c9096f?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/governance-policy-template-sync-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:fc87784eff08eb0419c72f0b1d3c3291b79d02f08f212ce711dec0c4f2ca65a0_ppc64le", + "product": { + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:fc87784eff08eb0419c72f0b1d3c3291b79d02f08f212ce711dec0c4f2ca65a0_ppc64le", + "product_id": "rhacm2/grafana-dashboard-loader-rhel8@sha256:fc87784eff08eb0419c72f0b1d3c3291b79d02f08f212ce711dec0c4f2ca65a0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/grafana-dashboard-loader-rhel8@sha256:fc87784eff08eb0419c72f0b1d3c3291b79d02f08f212ce711dec0c4f2ca65a0?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/iam-policy-controller-rhel8@sha256:48cdbe1f1bed152b1cd96efb765ddcabd5d8553a3e08b8e84709f41c07b53403_ppc64le", + "product": { + "name": "rhacm2/iam-policy-controller-rhel8@sha256:48cdbe1f1bed152b1cd96efb765ddcabd5d8553a3e08b8e84709f41c07b53403_ppc64le", + "product_id": "rhacm2/iam-policy-controller-rhel8@sha256:48cdbe1f1bed152b1cd96efb765ddcabd5d8553a3e08b8e84709f41c07b53403_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/iam-policy-controller-rhel8@sha256:48cdbe1f1bed152b1cd96efb765ddcabd5d8553a3e08b8e84709f41c07b53403?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/iam-policy-controller-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/insights-client-rhel8@sha256:10e5b76b088f315f84328d78305a4304c8c0de4802b36558a758e73dde9eac3a_ppc64le", + "product": { + "name": "rhacm2/insights-client-rhel8@sha256:10e5b76b088f315f84328d78305a4304c8c0de4802b36558a758e73dde9eac3a_ppc64le", + "product_id": "rhacm2/insights-client-rhel8@sha256:10e5b76b088f315f84328d78305a4304c8c0de4802b36558a758e73dde9eac3a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/insights-client-rhel8@sha256:10e5b76b088f315f84328d78305a4304c8c0de4802b36558a758e73dde9eac3a?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/insights-client-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/insights-metrics-rhel8@sha256:dc52bb88ebbfa0dbb17fd9d9a6d6ef4dc9c67d99382dd64ec366cd77298b3a5d_ppc64le", + "product": { + "name": "rhacm2/insights-metrics-rhel8@sha256:dc52bb88ebbfa0dbb17fd9d9a6d6ef4dc9c67d99382dd64ec366cd77298b3a5d_ppc64le", + "product_id": "rhacm2/insights-metrics-rhel8@sha256:dc52bb88ebbfa0dbb17fd9d9a6d6ef4dc9c67d99382dd64ec366cd77298b3a5d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/insights-metrics-rhel8@sha256:dc52bb88ebbfa0dbb17fd9d9a6d6ef4dc9c67d99382dd64ec366cd77298b3a5d?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/insights-metrics-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:3ccbfbfff8ef7f38a3fd887d279677033ea1ab670f35d8521c2a8ecf66996070_ppc64le", + "product": { + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:3ccbfbfff8ef7f38a3fd887d279677033ea1ab670f35d8521c2a8ecf66996070_ppc64le", + "product_id": "rhacm2/klusterlet-addon-controller-rhel8@sha256:3ccbfbfff8ef7f38a3fd887d279677033ea1ab670f35d8521c2a8ecf66996070_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/klusterlet-addon-controller-rhel8@sha256:3ccbfbfff8ef7f38a3fd887d279677033ea1ab670f35d8521c2a8ecf66996070?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:e3827be6e63996d33dc5c2c680cf0e4eb9524ad35083c40c5fdd2222d18ecbad_ppc64le", + "product": { + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:e3827be6e63996d33dc5c2c680cf0e4eb9524ad35083c40c5fdd2222d18ecbad_ppc64le", + "product_id": "rhacm2/kube-rbac-proxy-rhel8@sha256:e3827be6e63996d33dc5c2c680cf0e4eb9524ad35083c40c5fdd2222d18ecbad_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kube-rbac-proxy-rhel8@sha256:e3827be6e63996d33dc5c2c680cf0e4eb9524ad35083c40c5fdd2222d18ecbad?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/kube-rbac-proxy-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/kube-state-metrics-rhel8@sha256:313fc92205aef10fe75746fe19c88b10310a4da74f2853024a6cea372b63f1cb_ppc64le", + "product": { + "name": "rhacm2/kube-state-metrics-rhel8@sha256:313fc92205aef10fe75746fe19c88b10310a4da74f2853024a6cea372b63f1cb_ppc64le", + "product_id": "rhacm2/kube-state-metrics-rhel8@sha256:313fc92205aef10fe75746fe19c88b10310a4da74f2853024a6cea372b63f1cb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kube-state-metrics-rhel8@sha256:313fc92205aef10fe75746fe19c88b10310a4da74f2853024a6cea372b63f1cb?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/kube-state-metrics-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/management-ingress-rhel8@sha256:15afd2ae756ad04616dc7678dc7e6c00eaf8bd25fec1cd32552b834f7d1afbfc_ppc64le", + "product": { + "name": "rhacm2/management-ingress-rhel8@sha256:15afd2ae756ad04616dc7678dc7e6c00eaf8bd25fec1cd32552b834f7d1afbfc_ppc64le", + "product_id": "rhacm2/management-ingress-rhel8@sha256:15afd2ae756ad04616dc7678dc7e6c00eaf8bd25fec1cd32552b834f7d1afbfc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/management-ingress-rhel8@sha256:15afd2ae756ad04616dc7678dc7e6c00eaf8bd25fec1cd32552b834f7d1afbfc?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/management-ingress-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/memcached-rhel8@sha256:881d6ffe1241d6d45c8cd5d0e85e839a0d1360bc2f38becf21395041835af0cb_ppc64le", + "product": { + "name": "rhacm2/memcached-rhel8@sha256:881d6ffe1241d6d45c8cd5d0e85e839a0d1360bc2f38becf21395041835af0cb_ppc64le", + "product_id": "rhacm2/memcached-rhel8@sha256:881d6ffe1241d6d45c8cd5d0e85e839a0d1360bc2f38becf21395041835af0cb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/memcached-rhel8@sha256:881d6ffe1241d6d45c8cd5d0e85e839a0d1360bc2f38becf21395041835af0cb?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/memcached-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/memcached-exporter-rhel8@sha256:b5dce8fe7cf6ff8ce61ab9262848e82ee41c5f5ca19ef92b5cb3a3a836b6f3de_ppc64le", + "product": { + "name": "rhacm2/memcached-exporter-rhel8@sha256:b5dce8fe7cf6ff8ce61ab9262848e82ee41c5f5ca19ef92b5cb3a3a836b6f3de_ppc64le", + "product_id": "rhacm2/memcached-exporter-rhel8@sha256:b5dce8fe7cf6ff8ce61ab9262848e82ee41c5f5ca19ef92b5cb3a3a836b6f3de_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/memcached-exporter-rhel8@sha256:b5dce8fe7cf6ff8ce61ab9262848e82ee41c5f5ca19ef92b5cb3a3a836b6f3de?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/memcached-exporter-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/metrics-collector-rhel8@sha256:b45633332fd01ea542df64dc46972f1f0c9ec5eb04be13bea1de7ca2ff0e1c8b_ppc64le", + "product": { + "name": "rhacm2/metrics-collector-rhel8@sha256:b45633332fd01ea542df64dc46972f1f0c9ec5eb04be13bea1de7ca2ff0e1c8b_ppc64le", + "product_id": "rhacm2/metrics-collector-rhel8@sha256:b45633332fd01ea542df64dc46972f1f0c9ec5eb04be13bea1de7ca2ff0e1c8b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/metrics-collector-rhel8@sha256:b45633332fd01ea542df64dc46972f1f0c9ec5eb04be13bea1de7ca2ff0e1c8b?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/metrics-collector-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicloud-integrations-rhel8@sha256:44a5e58ee9ed3e1596b8c5f3f7966afea590cd40889685465b422d01770824b0_ppc64le", + "product": { + "name": "rhacm2/multicloud-integrations-rhel8@sha256:44a5e58ee9ed3e1596b8c5f3f7966afea590cd40889685465b422d01770824b0_ppc64le", + "product_id": "rhacm2/multicloud-integrations-rhel8@sha256:44a5e58ee9ed3e1596b8c5f3f7966afea590cd40889685465b422d01770824b0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicloud-integrations-rhel8@sha256:44a5e58ee9ed3e1596b8c5f3f7966afea590cd40889685465b422d01770824b0?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/multicloud-integrations-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multiclusterhub-rhel8@sha256:9903154a3b36a4255951e5b2f1c369987c0af796d890e2400304a9f64cd7d8a2_ppc64le", + "product": { + "name": "rhacm2/multiclusterhub-rhel8@sha256:9903154a3b36a4255951e5b2f1c369987c0af796d890e2400304a9f64cd7d8a2_ppc64le", + "product_id": "rhacm2/multiclusterhub-rhel8@sha256:9903154a3b36a4255951e5b2f1c369987c0af796d890e2400304a9f64cd7d8a2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multiclusterhub-rhel8@sha256:9903154a3b36a4255951e5b2f1c369987c0af796d890e2400304a9f64cd7d8a2?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/multiclusterhub-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multiclusterhub-repo-rhel8@sha256:8506141e005b636aa67e3ef761ae403580223b9266c3e9f3e33a19b2aebf4f73_ppc64le", + "product": { + "name": "rhacm2/multiclusterhub-repo-rhel8@sha256:8506141e005b636aa67e3ef761ae403580223b9266c3e9f3e33a19b2aebf4f73_ppc64le", + "product_id": "rhacm2/multiclusterhub-repo-rhel8@sha256:8506141e005b636aa67e3ef761ae403580223b9266c3e9f3e33a19b2aebf4f73_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multiclusterhub-repo-rhel8@sha256:8506141e005b636aa67e3ef761ae403580223b9266c3e9f3e33a19b2aebf4f73?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/multiclusterhub-repo-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:452334dd5f45c01e0843576e6e559e24eb256cfc2444aad1db3f871c14abaae0_ppc64le", + "product": { + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:452334dd5f45c01e0843576e6e559e24eb256cfc2444aad1db3f871c14abaae0_ppc64le", + "product_id": "rhacm2/multicluster-observability-rhel8-operator@sha256:452334dd5f45c01e0843576e6e559e24eb256cfc2444aad1db3f871c14abaae0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-observability-rhel8-operator@sha256:452334dd5f45c01e0843576e6e559e24eb256cfc2444aad1db3f871c14abaae0?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/multicluster-observability-rhel8-operator&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:49d5b3a14be0389434a18037011d9e865e3e70bda941904e67421ca43754b291_ppc64le", + "product": { + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:49d5b3a14be0389434a18037011d9e865e3e70bda941904e67421ca43754b291_ppc64le", + "product_id": "rhacm2/multicluster-operators-application-rhel8@sha256:49d5b3a14be0389434a18037011d9e865e3e70bda941904e67421ca43754b291_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-application-rhel8@sha256:49d5b3a14be0389434a18037011d9e865e3e70bda941904e67421ca43754b291?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/multicluster-operators-application-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:c59137b491324a1557768b4adb4433cd4513ca70b9cf7a230987291e781f42a6_ppc64le", + "product": { + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:c59137b491324a1557768b4adb4433cd4513ca70b9cf7a230987291e781f42a6_ppc64le", + "product_id": "rhacm2/multicluster-operators-channel-rhel8@sha256:c59137b491324a1557768b4adb4433cd4513ca70b9cf7a230987291e781f42a6_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-channel-rhel8@sha256:c59137b491324a1557768b4adb4433cd4513ca70b9cf7a230987291e781f42a6?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/multicluster-operators-channel-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:bfb0eeba13fee57aab468e56123532bb2e27cf5a2e7670bdd5eb2bff77d35247_ppc64le", + "product": { + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:bfb0eeba13fee57aab468e56123532bb2e27cf5a2e7670bdd5eb2bff77d35247_ppc64le", + "product_id": "rhacm2/multicluster-operators-subscription-rhel8@sha256:bfb0eeba13fee57aab468e56123532bb2e27cf5a2e7670bdd5eb2bff77d35247_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-subscription-rhel8@sha256:bfb0eeba13fee57aab468e56123532bb2e27cf5a2e7670bdd5eb2bff77d35247?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/node-exporter-rhel8@sha256:4887507bf49f93f91e438f54396d1ae5f25d3919e204b62a6946eff22ca55c3c_ppc64le", + "product": { + "name": "rhacm2/node-exporter-rhel8@sha256:4887507bf49f93f91e438f54396d1ae5f25d3919e204b62a6946eff22ca55c3c_ppc64le", + "product_id": "rhacm2/node-exporter-rhel8@sha256:4887507bf49f93f91e438f54396d1ae5f25d3919e204b62a6946eff22ca55c3c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/node-exporter-rhel8@sha256:4887507bf49f93f91e438f54396d1ae5f25d3919e204b62a6946eff22ca55c3c?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/node-exporter-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/observatorium-rhel8@sha256:3f38723b51b364474f22839e68ead658a24abe195570a292f52b36476c7fb3d2_ppc64le", + "product": { + "name": "rhacm2/observatorium-rhel8@sha256:3f38723b51b364474f22839e68ead658a24abe195570a292f52b36476c7fb3d2_ppc64le", + "product_id": "rhacm2/observatorium-rhel8@sha256:3f38723b51b364474f22839e68ead658a24abe195570a292f52b36476c7fb3d2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/observatorium-rhel8@sha256:3f38723b51b364474f22839e68ead658a24abe195570a292f52b36476c7fb3d2?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/observatorium-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/observatorium-rhel8-operator@sha256:1024ad0e67b17f01a7e150a4ea0d36cb00a76526a1dbef8dce7f0fc83b845028_ppc64le", + "product": { + "name": "rhacm2/observatorium-rhel8-operator@sha256:1024ad0e67b17f01a7e150a4ea0d36cb00a76526a1dbef8dce7f0fc83b845028_ppc64le", + "product_id": "rhacm2/observatorium-rhel8-operator@sha256:1024ad0e67b17f01a7e150a4ea0d36cb00a76526a1dbef8dce7f0fc83b845028_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/observatorium-rhel8-operator@sha256:1024ad0e67b17f01a7e150a4ea0d36cb00a76526a1dbef8dce7f0fc83b845028?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/observatorium-rhel8-operator&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:5803b3954a9b51c105ccb5f62fcf8221a7b95492deed5372ca099e2915bbc14f_ppc64le", + "product": { + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:5803b3954a9b51c105ccb5f62fcf8221a7b95492deed5372ca099e2915bbc14f_ppc64le", + "product_id": "rhacm2/prometheus-alertmanager-rhel8@sha256:5803b3954a9b51c105ccb5f62fcf8221a7b95492deed5372ca099e2915bbc14f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-alertmanager-rhel8@sha256:5803b3954a9b51c105ccb5f62fcf8221a7b95492deed5372ca099e2915bbc14f?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/prometheus-alertmanager-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/prometheus-rhel8@sha256:2fa9582d314b606dfcc18b531872ce2fc3ac088e2f30306358b2d6153c1b2607_ppc64le", + "product": { + "name": "rhacm2/prometheus-rhel8@sha256:2fa9582d314b606dfcc18b531872ce2fc3ac088e2f30306358b2d6153c1b2607_ppc64le", + "product_id": "rhacm2/prometheus-rhel8@sha256:2fa9582d314b606dfcc18b531872ce2fc3ac088e2f30306358b2d6153c1b2607_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-rhel8@sha256:2fa9582d314b606dfcc18b531872ce2fc3ac088e2f30306358b2d6153c1b2607?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/prometheus-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:0b01f8782453167af4d2bb3549d2215eeaf75813d6f39a5cfbd06d9cb063d59f_ppc64le", + "product": { + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:0b01f8782453167af4d2bb3549d2215eeaf75813d6f39a5cfbd06d9cb063d59f_ppc64le", + "product_id": "rhacm2/rbac-query-proxy-rhel8@sha256:0b01f8782453167af4d2bb3549d2215eeaf75813d6f39a5cfbd06d9cb063d59f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rbac-query-proxy-rhel8@sha256:0b01f8782453167af4d2bb3549d2215eeaf75813d6f39a5cfbd06d9cb063d59f?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/rbac-query-proxy-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/redisgraph-tls-rhel8@sha256:dce2ffb6a274301a5a5ecf742cce17698e2bfd68d7a15ab492cec96c1374f495_ppc64le", + "product": { + "name": "rhacm2/redisgraph-tls-rhel8@sha256:dce2ffb6a274301a5a5ecf742cce17698e2bfd68d7a15ab492cec96c1374f495_ppc64le", + "product_id": "rhacm2/redisgraph-tls-rhel8@sha256:dce2ffb6a274301a5a5ecf742cce17698e2bfd68d7a15ab492cec96c1374f495_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/redisgraph-tls-rhel8@sha256:dce2ffb6a274301a5a5ecf742cce17698e2bfd68d7a15ab492cec96c1374f495?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/redisgraph-tls-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/search-aggregator-rhel8@sha256:afaf5779cf928369aec98aeb1dbaffb4cb3194659201c4e7eda232034b8addc2_ppc64le", + "product": { + "name": "rhacm2/search-aggregator-rhel8@sha256:afaf5779cf928369aec98aeb1dbaffb4cb3194659201c4e7eda232034b8addc2_ppc64le", + "product_id": "rhacm2/search-aggregator-rhel8@sha256:afaf5779cf928369aec98aeb1dbaffb4cb3194659201c4e7eda232034b8addc2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/search-aggregator-rhel8@sha256:afaf5779cf928369aec98aeb1dbaffb4cb3194659201c4e7eda232034b8addc2?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/search-aggregator-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/search-api-rhel8@sha256:6388fc4edbceee488ccccb50db788df7fd46f643402e7fabf3f11091eb645cd3_ppc64le", + "product": { + "name": "rhacm2/search-api-rhel8@sha256:6388fc4edbceee488ccccb50db788df7fd46f643402e7fabf3f11091eb645cd3_ppc64le", + "product_id": "rhacm2/search-api-rhel8@sha256:6388fc4edbceee488ccccb50db788df7fd46f643402e7fabf3f11091eb645cd3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/search-api-rhel8@sha256:6388fc4edbceee488ccccb50db788df7fd46f643402e7fabf3f11091eb645cd3?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/search-api-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/search-collector-rhel8@sha256:c6cc24ea2661fb8b46b9475f17339e7e449270bfb18a33e0f48cabefd59535b2_ppc64le", + "product": { + "name": "rhacm2/search-collector-rhel8@sha256:c6cc24ea2661fb8b46b9475f17339e7e449270bfb18a33e0f48cabefd59535b2_ppc64le", + "product_id": "rhacm2/search-collector-rhel8@sha256:c6cc24ea2661fb8b46b9475f17339e7e449270bfb18a33e0f48cabefd59535b2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/search-collector-rhel8@sha256:c6cc24ea2661fb8b46b9475f17339e7e449270bfb18a33e0f48cabefd59535b2?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/search-collector-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/search-rhel8@sha256:592edd12c4a506c3150738df2df16bdefe96d0b0c5a6cefd912ed2a941af8f1e_ppc64le", + "product": { + "name": "rhacm2/search-rhel8@sha256:592edd12c4a506c3150738df2df16bdefe96d0b0c5a6cefd912ed2a941af8f1e_ppc64le", + "product_id": "rhacm2/search-rhel8@sha256:592edd12c4a506c3150738df2df16bdefe96d0b0c5a6cefd912ed2a941af8f1e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/search-rhel8@sha256:592edd12c4a506c3150738df2df16bdefe96d0b0c5a6cefd912ed2a941af8f1e?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/search-rhel8&tag=v2.6.8-7" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/submariner-addon-rhel8@sha256:ca52c6c893205219efe5cf26c3a90aa8f74e4519eb2440415254f6a16cd65c1f_ppc64le", + "product": { + "name": "rhacm2/submariner-addon-rhel8@sha256:ca52c6c893205219efe5cf26c3a90aa8f74e4519eb2440415254f6a16cd65c1f_ppc64le", + "product_id": "rhacm2/submariner-addon-rhel8@sha256:ca52c6c893205219efe5cf26c3a90aa8f74e4519eb2440415254f6a16cd65c1f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/submariner-addon-rhel8@sha256:ca52c6c893205219efe5cf26c3a90aa8f74e4519eb2440415254f6a16cd65c1f?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/submariner-addon-rhel8&tag=v2.6.8-9" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/thanos-rhel8@sha256:40898f7daa28976e247b0ffb66d4993ca0fc9f8e6cf9b657630616d29cffea04_ppc64le", + "product": { + "name": "rhacm2/thanos-rhel8@sha256:40898f7daa28976e247b0ffb66d4993ca0fc9f8e6cf9b657630616d29cffea04_ppc64le", + "product_id": "rhacm2/thanos-rhel8@sha256:40898f7daa28976e247b0ffb66d4993ca0fc9f8e6cf9b657630616d29cffea04_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/thanos-rhel8@sha256:40898f7daa28976e247b0ffb66d4993ca0fc9f8e6cf9b657630616d29cffea04?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/thanos-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:b4c607562916c00520c19bfc616eaff2552a4f91279baee06d7d2905ee57bf17_ppc64le", + "product": { + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:b4c607562916c00520c19bfc616eaff2552a4f91279baee06d7d2905ee57bf17_ppc64le", + "product_id": "rhacm2/thanos-receive-controller-rhel8@sha256:b4c607562916c00520c19bfc616eaff2552a4f91279baee06d7d2905ee57bf17_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/thanos-receive-controller-rhel8@sha256:b4c607562916c00520c19bfc616eaff2552a4f91279baee06d7d2905ee57bf17?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/thanos-receive-controller-rhel8&tag=v2.6.8-5" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:41f8bcf3a01621f4df736db053571c6fdbe3bdc5be731b3f196d0b999b578bd8_s390x", + "product": { + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:41f8bcf3a01621f4df736db053571c6fdbe3bdc5be731b3f196d0b999b578bd8_s390x", + "product_id": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:41f8bcf3a01621f4df736db053571c6fdbe3bdc5be731b3f196d0b999b578bd8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-governance-policy-addon-controller-rhel8@sha256:41f8bcf3a01621f4df736db053571c6fdbe3bdc5be731b3f196d0b999b578bd8?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-grafana-rhel8@sha256:a3af2c5b71c4b4eeed51fc1e7da1ba150ffcea62b633bc3dcbb8bb2c5b91fa76_s390x", + "product": { + "name": "rhacm2/acm-grafana-rhel8@sha256:a3af2c5b71c4b4eeed51fc1e7da1ba150ffcea62b633bc3dcbb8bb2c5b91fa76_s390x", + "product_id": "rhacm2/acm-grafana-rhel8@sha256:a3af2c5b71c4b4eeed51fc1e7da1ba150ffcea62b633bc3dcbb8bb2c5b91fa76_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-grafana-rhel8@sha256:a3af2c5b71c4b4eeed51fc1e7da1ba150ffcea62b633bc3dcbb8bb2c5b91fa76?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-grafana-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-must-gather-rhel8@sha256:a5ce4bb1fbfa9e0ac1e0011d5d6e1fcbdcc716784384d9cb415f91b75c68adfd_s390x", + "product": { + "name": "rhacm2/acm-must-gather-rhel8@sha256:a5ce4bb1fbfa9e0ac1e0011d5d6e1fcbdcc716784384d9cb415f91b75c68adfd_s390x", + "product_id": "rhacm2/acm-must-gather-rhel8@sha256:a5ce4bb1fbfa9e0ac1e0011d5d6e1fcbdcc716784384d9cb415f91b75c68adfd_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-must-gather-rhel8@sha256:a5ce4bb1fbfa9e0ac1e0011d5d6e1fcbdcc716784384d9cb415f91b75c68adfd?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-must-gather-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-operator-bundle@sha256:a61b13ac0e071e213ada0a2288b81a4317e28cd5eeec7b6e78d952d06cd59c7c_s390x", + "product": { + "name": "rhacm2/acm-operator-bundle@sha256:a61b13ac0e071e213ada0a2288b81a4317e28cd5eeec7b6e78d952d06cd59c7c_s390x", + "product_id": "rhacm2/acm-operator-bundle@sha256:a61b13ac0e071e213ada0a2288b81a4317e28cd5eeec7b6e78d952d06cd59c7c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-operator-bundle@sha256:a61b13ac0e071e213ada0a2288b81a4317e28cd5eeec7b6e78d952d06cd59c7c?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-operator-bundle&tag=v2.6.8-14" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:56c3a6164c4da09aca7b487f282b3dc1ac6aeb236970afa5b2aadcb8b3d2d5c6_s390x", + "product": { + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:56c3a6164c4da09aca7b487f282b3dc1ac6aeb236970afa5b2aadcb8b3d2d5c6_s390x", + "product_id": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:56c3a6164c4da09aca7b487f282b3dc1ac6aeb236970afa5b2aadcb8b3d2d5c6_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-prometheus-config-reloader-rhel8@sha256:56c3a6164c4da09aca7b487f282b3dc1ac6aeb236970afa5b2aadcb8b3d2d5c6?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-prometheus-rhel8@sha256:17bc1745c0f54763585ad6da8d4117b471be9aeaf545c3c748d8aa963fbd46cd_s390x", + "product": { + "name": "rhacm2/acm-prometheus-rhel8@sha256:17bc1745c0f54763585ad6da8d4117b471be9aeaf545c3c748d8aa963fbd46cd_s390x", + "product_id": "rhacm2/acm-prometheus-rhel8@sha256:17bc1745c0f54763585ad6da8d4117b471be9aeaf545c3c748d8aa963fbd46cd_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-prometheus-rhel8@sha256:17bc1745c0f54763585ad6da8d4117b471be9aeaf545c3c748d8aa963fbd46cd?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-prometheus-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:6a09d93786436b8e8fadb9cacb23488caf1a131ba587da51a574dea176289ee2_s390x", + "product": { + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:6a09d93786436b8e8fadb9cacb23488caf1a131ba587da51a574dea176289ee2_s390x", + "product_id": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:6a09d93786436b8e8fadb9cacb23488caf1a131ba587da51a574dea176289ee2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-volsync-addon-controller-rhel8@sha256:6a09d93786436b8e8fadb9cacb23488caf1a131ba587da51a574dea176289ee2?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/cert-policy-controller-rhel8@sha256:9512de5254c8a20e465dcad117ec2f195f38eaf1b1369b42188d9bface8134a4_s390x", + "product": { + "name": "rhacm2/cert-policy-controller-rhel8@sha256:9512de5254c8a20e465dcad117ec2f195f38eaf1b1369b42188d9bface8134a4_s390x", + "product_id": "rhacm2/cert-policy-controller-rhel8@sha256:9512de5254c8a20e465dcad117ec2f195f38eaf1b1369b42188d9bface8134a4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cert-policy-controller-rhel8@sha256:9512de5254c8a20e465dcad117ec2f195f38eaf1b1369b42188d9bface8134a4?arch=s390x&repository_url=registry.redhat.io/rhacm2/cert-policy-controller-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:6c08a5716545d4ab34a4c4e0cca896a9d9548d6c6fb8d61fd7a527c68f6428d7_s390x", + "product": { + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:6c08a5716545d4ab34a4c4e0cca896a9d9548d6c6fb8d61fd7a527c68f6428d7_s390x", + "product_id": "rhacm2/cluster-backup-rhel8-operator@sha256:6c08a5716545d4ab34a4c4e0cca896a9d9548d6c6fb8d61fd7a527c68f6428d7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-backup-rhel8-operator@sha256:6c08a5716545d4ab34a4c4e0cca896a9d9548d6c6fb8d61fd7a527c68f6428d7?arch=s390x&repository_url=registry.redhat.io/rhacm2/cluster-backup-rhel8-operator&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/config-policy-controller-rhel8@sha256:43fb8527c7014db555972fae47184c3d50c1ec43ec87e8ba113541a3dddd4c85_s390x", + "product": { + "name": "rhacm2/config-policy-controller-rhel8@sha256:43fb8527c7014db555972fae47184c3d50c1ec43ec87e8ba113541a3dddd4c85_s390x", + "product_id": "rhacm2/config-policy-controller-rhel8@sha256:43fb8527c7014db555972fae47184c3d50c1ec43ec87e8ba113541a3dddd4c85_s390x", + "product_identification_helper": { + "purl": "pkg:oci/config-policy-controller-rhel8@sha256:43fb8527c7014db555972fae47184c3d50c1ec43ec87e8ba113541a3dddd4c85?arch=s390x&repository_url=registry.redhat.io/rhacm2/config-policy-controller-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/console-rhel8@sha256:895049fa6d8f3ff0c8949e191570d1b3565953a22a818ece69839f912dea719e_s390x", + "product": { + "name": "rhacm2/console-rhel8@sha256:895049fa6d8f3ff0c8949e191570d1b3565953a22a818ece69839f912dea719e_s390x", + "product_id": "rhacm2/console-rhel8@sha256:895049fa6d8f3ff0c8949e191570d1b3565953a22a818ece69839f912dea719e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/console-rhel8@sha256:895049fa6d8f3ff0c8949e191570d1b3565953a22a818ece69839f912dea719e?arch=s390x&repository_url=registry.redhat.io/rhacm2/console-rhel8&tag=v2.6.8-7" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:3f049362fa4c058d0f2d55f746a6c354e6391e50c29fd56f4c92243df4b1c1c5_s390x", + "product": { + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:3f049362fa4c058d0f2d55f746a6c354e6391e50c29fd56f4c92243df4b1c1c5_s390x", + "product_id": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:3f049362fa4c058d0f2d55f746a6c354e6391e50c29fd56f4c92243df4b1c1c5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/endpoint-monitoring-rhel8-operator@sha256:3f049362fa4c058d0f2d55f746a6c354e6391e50c29fd56f4c92243df4b1c1c5?arch=s390x&repository_url=registry.redhat.io/rhacm2/endpoint-monitoring-rhel8-operator&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:ad1a397be2c0c0ace78bc977bd5d7963a31a78c0a284a8aa77a377e7429c982b_s390x", + "product": { + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:ad1a397be2c0c0ace78bc977bd5d7963a31a78c0a284a8aa77a377e7429c982b_s390x", + "product_id": "rhacm2/governance-policy-propagator-rhel8@sha256:ad1a397be2c0c0ace78bc977bd5d7963a31a78c0a284a8aa77a377e7429c982b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/governance-policy-propagator-rhel8@sha256:ad1a397be2c0c0ace78bc977bd5d7963a31a78c0a284a8aa77a377e7429c982b?arch=s390x&repository_url=registry.redhat.io/rhacm2/governance-policy-propagator-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/governance-policy-spec-sync-rhel8@sha256:1ff7592a5c8dd1942b904a445f00a707bb233db2c6d92d83a818a7ad357d7a27_s390x", + "product": { + "name": "rhacm2/governance-policy-spec-sync-rhel8@sha256:1ff7592a5c8dd1942b904a445f00a707bb233db2c6d92d83a818a7ad357d7a27_s390x", + "product_id": "rhacm2/governance-policy-spec-sync-rhel8@sha256:1ff7592a5c8dd1942b904a445f00a707bb233db2c6d92d83a818a7ad357d7a27_s390x", + "product_identification_helper": { + "purl": "pkg:oci/governance-policy-spec-sync-rhel8@sha256:1ff7592a5c8dd1942b904a445f00a707bb233db2c6d92d83a818a7ad357d7a27?arch=s390x&repository_url=registry.redhat.io/rhacm2/governance-policy-spec-sync-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/governance-policy-status-sync-rhel8@sha256:f651b33aad48acdc23690c1734748fc2708deed4eb343bc9495462096dafe5b1_s390x", + "product": { + "name": "rhacm2/governance-policy-status-sync-rhel8@sha256:f651b33aad48acdc23690c1734748fc2708deed4eb343bc9495462096dafe5b1_s390x", + "product_id": "rhacm2/governance-policy-status-sync-rhel8@sha256:f651b33aad48acdc23690c1734748fc2708deed4eb343bc9495462096dafe5b1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/governance-policy-status-sync-rhel8@sha256:f651b33aad48acdc23690c1734748fc2708deed4eb343bc9495462096dafe5b1?arch=s390x&repository_url=registry.redhat.io/rhacm2/governance-policy-status-sync-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/governance-policy-template-sync-rhel8@sha256:ab7e208fb7d48575fa60933e039487cb3180e0bc9b359cb566c01cb3b4747461_s390x", + "product": { + "name": "rhacm2/governance-policy-template-sync-rhel8@sha256:ab7e208fb7d48575fa60933e039487cb3180e0bc9b359cb566c01cb3b4747461_s390x", + "product_id": "rhacm2/governance-policy-template-sync-rhel8@sha256:ab7e208fb7d48575fa60933e039487cb3180e0bc9b359cb566c01cb3b4747461_s390x", + "product_identification_helper": { + "purl": "pkg:oci/governance-policy-template-sync-rhel8@sha256:ab7e208fb7d48575fa60933e039487cb3180e0bc9b359cb566c01cb3b4747461?arch=s390x&repository_url=registry.redhat.io/rhacm2/governance-policy-template-sync-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:ec27ea669750a2540e566d3eee4c9af8d6d062706a1760c28beb0cc674656108_s390x", + "product": { + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:ec27ea669750a2540e566d3eee4c9af8d6d062706a1760c28beb0cc674656108_s390x", + "product_id": "rhacm2/grafana-dashboard-loader-rhel8@sha256:ec27ea669750a2540e566d3eee4c9af8d6d062706a1760c28beb0cc674656108_s390x", + "product_identification_helper": { + "purl": "pkg:oci/grafana-dashboard-loader-rhel8@sha256:ec27ea669750a2540e566d3eee4c9af8d6d062706a1760c28beb0cc674656108?arch=s390x&repository_url=registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/iam-policy-controller-rhel8@sha256:0ee26c04547c94f50dd5d280fc6ff73a67a71937c00d9a0c8f972e4198f5d309_s390x", + "product": { + "name": "rhacm2/iam-policy-controller-rhel8@sha256:0ee26c04547c94f50dd5d280fc6ff73a67a71937c00d9a0c8f972e4198f5d309_s390x", + "product_id": "rhacm2/iam-policy-controller-rhel8@sha256:0ee26c04547c94f50dd5d280fc6ff73a67a71937c00d9a0c8f972e4198f5d309_s390x", + "product_identification_helper": { + "purl": "pkg:oci/iam-policy-controller-rhel8@sha256:0ee26c04547c94f50dd5d280fc6ff73a67a71937c00d9a0c8f972e4198f5d309?arch=s390x&repository_url=registry.redhat.io/rhacm2/iam-policy-controller-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/insights-client-rhel8@sha256:c0b4bdb87d21f7ae4c4a8588e0fd6c0feabe0837196d971bb19ead480fc67baf_s390x", + "product": { + "name": "rhacm2/insights-client-rhel8@sha256:c0b4bdb87d21f7ae4c4a8588e0fd6c0feabe0837196d971bb19ead480fc67baf_s390x", + "product_id": "rhacm2/insights-client-rhel8@sha256:c0b4bdb87d21f7ae4c4a8588e0fd6c0feabe0837196d971bb19ead480fc67baf_s390x", + "product_identification_helper": { + "purl": "pkg:oci/insights-client-rhel8@sha256:c0b4bdb87d21f7ae4c4a8588e0fd6c0feabe0837196d971bb19ead480fc67baf?arch=s390x&repository_url=registry.redhat.io/rhacm2/insights-client-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/insights-metrics-rhel8@sha256:adfd089cea6679f71e53283efb032e887238b4416d681fee182292e5d07a0396_s390x", + "product": { + "name": "rhacm2/insights-metrics-rhel8@sha256:adfd089cea6679f71e53283efb032e887238b4416d681fee182292e5d07a0396_s390x", + "product_id": "rhacm2/insights-metrics-rhel8@sha256:adfd089cea6679f71e53283efb032e887238b4416d681fee182292e5d07a0396_s390x", + "product_identification_helper": { + "purl": "pkg:oci/insights-metrics-rhel8@sha256:adfd089cea6679f71e53283efb032e887238b4416d681fee182292e5d07a0396?arch=s390x&repository_url=registry.redhat.io/rhacm2/insights-metrics-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:1d81133a8a2daae2be9ae84035446be5d8f32ca738f1197e0dea7e9e6df5bc87_s390x", + "product": { + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:1d81133a8a2daae2be9ae84035446be5d8f32ca738f1197e0dea7e9e6df5bc87_s390x", + "product_id": "rhacm2/klusterlet-addon-controller-rhel8@sha256:1d81133a8a2daae2be9ae84035446be5d8f32ca738f1197e0dea7e9e6df5bc87_s390x", + "product_identification_helper": { + "purl": "pkg:oci/klusterlet-addon-controller-rhel8@sha256:1d81133a8a2daae2be9ae84035446be5d8f32ca738f1197e0dea7e9e6df5bc87?arch=s390x&repository_url=registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:a26bb7fc304dd11b41e0fdca7dfab7856c545067d2df9376411a18c65c5db8e5_s390x", + "product": { + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:a26bb7fc304dd11b41e0fdca7dfab7856c545067d2df9376411a18c65c5db8e5_s390x", + "product_id": "rhacm2/kube-rbac-proxy-rhel8@sha256:a26bb7fc304dd11b41e0fdca7dfab7856c545067d2df9376411a18c65c5db8e5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/kube-rbac-proxy-rhel8@sha256:a26bb7fc304dd11b41e0fdca7dfab7856c545067d2df9376411a18c65c5db8e5?arch=s390x&repository_url=registry.redhat.io/rhacm2/kube-rbac-proxy-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/kube-state-metrics-rhel8@sha256:326b842bb99ba476916e6cef4fd7a0db66ea49923f8c9943ba43c50d71e9595c_s390x", + "product": { + "name": "rhacm2/kube-state-metrics-rhel8@sha256:326b842bb99ba476916e6cef4fd7a0db66ea49923f8c9943ba43c50d71e9595c_s390x", + "product_id": "rhacm2/kube-state-metrics-rhel8@sha256:326b842bb99ba476916e6cef4fd7a0db66ea49923f8c9943ba43c50d71e9595c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/kube-state-metrics-rhel8@sha256:326b842bb99ba476916e6cef4fd7a0db66ea49923f8c9943ba43c50d71e9595c?arch=s390x&repository_url=registry.redhat.io/rhacm2/kube-state-metrics-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/management-ingress-rhel8@sha256:7f4cec5b224f6dbf066f896f4afb3462dfc8411080575c6e59f3d924eda06e31_s390x", + "product": { + "name": "rhacm2/management-ingress-rhel8@sha256:7f4cec5b224f6dbf066f896f4afb3462dfc8411080575c6e59f3d924eda06e31_s390x", + "product_id": "rhacm2/management-ingress-rhel8@sha256:7f4cec5b224f6dbf066f896f4afb3462dfc8411080575c6e59f3d924eda06e31_s390x", + "product_identification_helper": { + "purl": "pkg:oci/management-ingress-rhel8@sha256:7f4cec5b224f6dbf066f896f4afb3462dfc8411080575c6e59f3d924eda06e31?arch=s390x&repository_url=registry.redhat.io/rhacm2/management-ingress-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/memcached-rhel8@sha256:ab4987fd9c1aaa1a65f3af354b015515221e73219238a3f8862de9daae82635e_s390x", + "product": { + "name": "rhacm2/memcached-rhel8@sha256:ab4987fd9c1aaa1a65f3af354b015515221e73219238a3f8862de9daae82635e_s390x", + "product_id": "rhacm2/memcached-rhel8@sha256:ab4987fd9c1aaa1a65f3af354b015515221e73219238a3f8862de9daae82635e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/memcached-rhel8@sha256:ab4987fd9c1aaa1a65f3af354b015515221e73219238a3f8862de9daae82635e?arch=s390x&repository_url=registry.redhat.io/rhacm2/memcached-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/memcached-exporter-rhel8@sha256:c6a92af3a86073372cbb8cd1f6b58dc9c99076a422af6d9e627d458edc14d593_s390x", + "product": { + "name": "rhacm2/memcached-exporter-rhel8@sha256:c6a92af3a86073372cbb8cd1f6b58dc9c99076a422af6d9e627d458edc14d593_s390x", + "product_id": "rhacm2/memcached-exporter-rhel8@sha256:c6a92af3a86073372cbb8cd1f6b58dc9c99076a422af6d9e627d458edc14d593_s390x", + "product_identification_helper": { + "purl": "pkg:oci/memcached-exporter-rhel8@sha256:c6a92af3a86073372cbb8cd1f6b58dc9c99076a422af6d9e627d458edc14d593?arch=s390x&repository_url=registry.redhat.io/rhacm2/memcached-exporter-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/metrics-collector-rhel8@sha256:cfac691f36d544461f0b9f11df9ad4dcfd680030068bd5fcaa3de00001955e03_s390x", + "product": { + "name": "rhacm2/metrics-collector-rhel8@sha256:cfac691f36d544461f0b9f11df9ad4dcfd680030068bd5fcaa3de00001955e03_s390x", + "product_id": "rhacm2/metrics-collector-rhel8@sha256:cfac691f36d544461f0b9f11df9ad4dcfd680030068bd5fcaa3de00001955e03_s390x", + "product_identification_helper": { + "purl": "pkg:oci/metrics-collector-rhel8@sha256:cfac691f36d544461f0b9f11df9ad4dcfd680030068bd5fcaa3de00001955e03?arch=s390x&repository_url=registry.redhat.io/rhacm2/metrics-collector-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicloud-integrations-rhel8@sha256:b6afdf659710f3b91bb0b5da1281b5306cf6dfe7e307418dfe4b029353731630_s390x", + "product": { + "name": "rhacm2/multicloud-integrations-rhel8@sha256:b6afdf659710f3b91bb0b5da1281b5306cf6dfe7e307418dfe4b029353731630_s390x", + "product_id": "rhacm2/multicloud-integrations-rhel8@sha256:b6afdf659710f3b91bb0b5da1281b5306cf6dfe7e307418dfe4b029353731630_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicloud-integrations-rhel8@sha256:b6afdf659710f3b91bb0b5da1281b5306cf6dfe7e307418dfe4b029353731630?arch=s390x&repository_url=registry.redhat.io/rhacm2/multicloud-integrations-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multiclusterhub-rhel8@sha256:2b3f402dccbde738a7b212d0d92e79511974af296229f0179df98ad18d574298_s390x", + "product": { + "name": "rhacm2/multiclusterhub-rhel8@sha256:2b3f402dccbde738a7b212d0d92e79511974af296229f0179df98ad18d574298_s390x", + "product_id": "rhacm2/multiclusterhub-rhel8@sha256:2b3f402dccbde738a7b212d0d92e79511974af296229f0179df98ad18d574298_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multiclusterhub-rhel8@sha256:2b3f402dccbde738a7b212d0d92e79511974af296229f0179df98ad18d574298?arch=s390x&repository_url=registry.redhat.io/rhacm2/multiclusterhub-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multiclusterhub-repo-rhel8@sha256:bd7dfc526cc667b13d33e0e1dbcc5179a8ac9590a12adbc424ae4f10495b2196_s390x", + "product": { + "name": "rhacm2/multiclusterhub-repo-rhel8@sha256:bd7dfc526cc667b13d33e0e1dbcc5179a8ac9590a12adbc424ae4f10495b2196_s390x", + "product_id": "rhacm2/multiclusterhub-repo-rhel8@sha256:bd7dfc526cc667b13d33e0e1dbcc5179a8ac9590a12adbc424ae4f10495b2196_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multiclusterhub-repo-rhel8@sha256:bd7dfc526cc667b13d33e0e1dbcc5179a8ac9590a12adbc424ae4f10495b2196?arch=s390x&repository_url=registry.redhat.io/rhacm2/multiclusterhub-repo-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:2e1b3d0c028ea243f3de0e603b5762fef8dc424b0c4851450484c47cd5e428c5_s390x", + "product": { + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:2e1b3d0c028ea243f3de0e603b5762fef8dc424b0c4851450484c47cd5e428c5_s390x", + "product_id": "rhacm2/multicluster-observability-rhel8-operator@sha256:2e1b3d0c028ea243f3de0e603b5762fef8dc424b0c4851450484c47cd5e428c5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-observability-rhel8-operator@sha256:2e1b3d0c028ea243f3de0e603b5762fef8dc424b0c4851450484c47cd5e428c5?arch=s390x&repository_url=registry.redhat.io/rhacm2/multicluster-observability-rhel8-operator&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:6b70cbea821515eed80840d6682f9edaccb96dff35b16f1687981a3deefb0d8a_s390x", + "product": { + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:6b70cbea821515eed80840d6682f9edaccb96dff35b16f1687981a3deefb0d8a_s390x", + "product_id": "rhacm2/multicluster-operators-application-rhel8@sha256:6b70cbea821515eed80840d6682f9edaccb96dff35b16f1687981a3deefb0d8a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-application-rhel8@sha256:6b70cbea821515eed80840d6682f9edaccb96dff35b16f1687981a3deefb0d8a?arch=s390x&repository_url=registry.redhat.io/rhacm2/multicluster-operators-application-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:cef347bab739ad4581ee1b6856c7a115bf3b4283821f8a87473e123eac3e843c_s390x", + "product": { + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:cef347bab739ad4581ee1b6856c7a115bf3b4283821f8a87473e123eac3e843c_s390x", + "product_id": "rhacm2/multicluster-operators-channel-rhel8@sha256:cef347bab739ad4581ee1b6856c7a115bf3b4283821f8a87473e123eac3e843c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-channel-rhel8@sha256:cef347bab739ad4581ee1b6856c7a115bf3b4283821f8a87473e123eac3e843c?arch=s390x&repository_url=registry.redhat.io/rhacm2/multicluster-operators-channel-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:c0ab119c13aec1763d479ab66f4767d9fdd7a0e042794c78f936d9800db38c34_s390x", + "product": { + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:c0ab119c13aec1763d479ab66f4767d9fdd7a0e042794c78f936d9800db38c34_s390x", + "product_id": "rhacm2/multicluster-operators-subscription-rhel8@sha256:c0ab119c13aec1763d479ab66f4767d9fdd7a0e042794c78f936d9800db38c34_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-subscription-rhel8@sha256:c0ab119c13aec1763d479ab66f4767d9fdd7a0e042794c78f936d9800db38c34?arch=s390x&repository_url=registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/node-exporter-rhel8@sha256:604a4b2552947d0dd3f6335416b0eacf4e51869cda8976e723e273c66ceadd21_s390x", + "product": { + "name": "rhacm2/node-exporter-rhel8@sha256:604a4b2552947d0dd3f6335416b0eacf4e51869cda8976e723e273c66ceadd21_s390x", + "product_id": "rhacm2/node-exporter-rhel8@sha256:604a4b2552947d0dd3f6335416b0eacf4e51869cda8976e723e273c66ceadd21_s390x", + "product_identification_helper": { + "purl": "pkg:oci/node-exporter-rhel8@sha256:604a4b2552947d0dd3f6335416b0eacf4e51869cda8976e723e273c66ceadd21?arch=s390x&repository_url=registry.redhat.io/rhacm2/node-exporter-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/observatorium-rhel8@sha256:4d86b921b410a9ae1b17ca5e96dc42b6eb064e1832e07df58e08cba54d4fbf16_s390x", + "product": { + "name": "rhacm2/observatorium-rhel8@sha256:4d86b921b410a9ae1b17ca5e96dc42b6eb064e1832e07df58e08cba54d4fbf16_s390x", + "product_id": "rhacm2/observatorium-rhel8@sha256:4d86b921b410a9ae1b17ca5e96dc42b6eb064e1832e07df58e08cba54d4fbf16_s390x", + "product_identification_helper": { + "purl": "pkg:oci/observatorium-rhel8@sha256:4d86b921b410a9ae1b17ca5e96dc42b6eb064e1832e07df58e08cba54d4fbf16?arch=s390x&repository_url=registry.redhat.io/rhacm2/observatorium-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/observatorium-rhel8-operator@sha256:1c72d9cdc384f7c5a8f170fcda69eb3e6bc452d4195fb16d2a2a13721d2f9837_s390x", + "product": { + "name": "rhacm2/observatorium-rhel8-operator@sha256:1c72d9cdc384f7c5a8f170fcda69eb3e6bc452d4195fb16d2a2a13721d2f9837_s390x", + "product_id": "rhacm2/observatorium-rhel8-operator@sha256:1c72d9cdc384f7c5a8f170fcda69eb3e6bc452d4195fb16d2a2a13721d2f9837_s390x", + "product_identification_helper": { + "purl": "pkg:oci/observatorium-rhel8-operator@sha256:1c72d9cdc384f7c5a8f170fcda69eb3e6bc452d4195fb16d2a2a13721d2f9837?arch=s390x&repository_url=registry.redhat.io/rhacm2/observatorium-rhel8-operator&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:1a14df039768c8a2fd5f54a8336ed9ca83385811e46336a5f592b8a3914c8f7f_s390x", + "product": { + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:1a14df039768c8a2fd5f54a8336ed9ca83385811e46336a5f592b8a3914c8f7f_s390x", + "product_id": "rhacm2/prometheus-alertmanager-rhel8@sha256:1a14df039768c8a2fd5f54a8336ed9ca83385811e46336a5f592b8a3914c8f7f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-alertmanager-rhel8@sha256:1a14df039768c8a2fd5f54a8336ed9ca83385811e46336a5f592b8a3914c8f7f?arch=s390x&repository_url=registry.redhat.io/rhacm2/prometheus-alertmanager-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/prometheus-rhel8@sha256:416c680229ac711c283748dc78badb8460bf3f304c9ff9d90b4cef05edd9c845_s390x", + "product": { + "name": "rhacm2/prometheus-rhel8@sha256:416c680229ac711c283748dc78badb8460bf3f304c9ff9d90b4cef05edd9c845_s390x", + "product_id": "rhacm2/prometheus-rhel8@sha256:416c680229ac711c283748dc78badb8460bf3f304c9ff9d90b4cef05edd9c845_s390x", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-rhel8@sha256:416c680229ac711c283748dc78badb8460bf3f304c9ff9d90b4cef05edd9c845?arch=s390x&repository_url=registry.redhat.io/rhacm2/prometheus-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:6e31334cbec6e7976d6feb3ace7eab198dd902b6665de583fb8eb0a212230135_s390x", + "product": { + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:6e31334cbec6e7976d6feb3ace7eab198dd902b6665de583fb8eb0a212230135_s390x", + "product_id": "rhacm2/rbac-query-proxy-rhel8@sha256:6e31334cbec6e7976d6feb3ace7eab198dd902b6665de583fb8eb0a212230135_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rbac-query-proxy-rhel8@sha256:6e31334cbec6e7976d6feb3ace7eab198dd902b6665de583fb8eb0a212230135?arch=s390x&repository_url=registry.redhat.io/rhacm2/rbac-query-proxy-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/redisgraph-tls-rhel8@sha256:a47f1e7553291c0a43f94e067a98ea24efc47e5b8a84dcc24985f00aba0d2726_s390x", + "product": { + "name": "rhacm2/redisgraph-tls-rhel8@sha256:a47f1e7553291c0a43f94e067a98ea24efc47e5b8a84dcc24985f00aba0d2726_s390x", + "product_id": "rhacm2/redisgraph-tls-rhel8@sha256:a47f1e7553291c0a43f94e067a98ea24efc47e5b8a84dcc24985f00aba0d2726_s390x", + "product_identification_helper": { + "purl": "pkg:oci/redisgraph-tls-rhel8@sha256:a47f1e7553291c0a43f94e067a98ea24efc47e5b8a84dcc24985f00aba0d2726?arch=s390x&repository_url=registry.redhat.io/rhacm2/redisgraph-tls-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/search-aggregator-rhel8@sha256:a94e20af3a36c0cd45f3440a0c9673818dd1e05a27f29568722937b46c0fb079_s390x", + "product": { + "name": "rhacm2/search-aggregator-rhel8@sha256:a94e20af3a36c0cd45f3440a0c9673818dd1e05a27f29568722937b46c0fb079_s390x", + "product_id": "rhacm2/search-aggregator-rhel8@sha256:a94e20af3a36c0cd45f3440a0c9673818dd1e05a27f29568722937b46c0fb079_s390x", + "product_identification_helper": { + "purl": "pkg:oci/search-aggregator-rhel8@sha256:a94e20af3a36c0cd45f3440a0c9673818dd1e05a27f29568722937b46c0fb079?arch=s390x&repository_url=registry.redhat.io/rhacm2/search-aggregator-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/search-api-rhel8@sha256:f877b687db8c83e2077f70e9c0d92dc84ef330d47dd3a2a548156c3c479d151f_s390x", + "product": { + "name": "rhacm2/search-api-rhel8@sha256:f877b687db8c83e2077f70e9c0d92dc84ef330d47dd3a2a548156c3c479d151f_s390x", + "product_id": "rhacm2/search-api-rhel8@sha256:f877b687db8c83e2077f70e9c0d92dc84ef330d47dd3a2a548156c3c479d151f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/search-api-rhel8@sha256:f877b687db8c83e2077f70e9c0d92dc84ef330d47dd3a2a548156c3c479d151f?arch=s390x&repository_url=registry.redhat.io/rhacm2/search-api-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/search-collector-rhel8@sha256:dd5c05f9efe67fac19225b8c1217f6a6f2b0231fa7df472ec8611f84eb7b23dd_s390x", + "product": { + "name": "rhacm2/search-collector-rhel8@sha256:dd5c05f9efe67fac19225b8c1217f6a6f2b0231fa7df472ec8611f84eb7b23dd_s390x", + "product_id": "rhacm2/search-collector-rhel8@sha256:dd5c05f9efe67fac19225b8c1217f6a6f2b0231fa7df472ec8611f84eb7b23dd_s390x", + "product_identification_helper": { + "purl": "pkg:oci/search-collector-rhel8@sha256:dd5c05f9efe67fac19225b8c1217f6a6f2b0231fa7df472ec8611f84eb7b23dd?arch=s390x&repository_url=registry.redhat.io/rhacm2/search-collector-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/search-rhel8@sha256:acbc3116ddd9a68dd1a4448b130744f0d083b1818ee6978e79f18250c558e936_s390x", + "product": { + "name": "rhacm2/search-rhel8@sha256:acbc3116ddd9a68dd1a4448b130744f0d083b1818ee6978e79f18250c558e936_s390x", + "product_id": "rhacm2/search-rhel8@sha256:acbc3116ddd9a68dd1a4448b130744f0d083b1818ee6978e79f18250c558e936_s390x", + "product_identification_helper": { + "purl": "pkg:oci/search-rhel8@sha256:acbc3116ddd9a68dd1a4448b130744f0d083b1818ee6978e79f18250c558e936?arch=s390x&repository_url=registry.redhat.io/rhacm2/search-rhel8&tag=v2.6.8-7" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/submariner-addon-rhel8@sha256:024ad93e72022e0f203383ec4645b1eb13f07fe848fc77a1a73b3cb9b1ae497b_s390x", + "product": { + "name": "rhacm2/submariner-addon-rhel8@sha256:024ad93e72022e0f203383ec4645b1eb13f07fe848fc77a1a73b3cb9b1ae497b_s390x", + "product_id": "rhacm2/submariner-addon-rhel8@sha256:024ad93e72022e0f203383ec4645b1eb13f07fe848fc77a1a73b3cb9b1ae497b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/submariner-addon-rhel8@sha256:024ad93e72022e0f203383ec4645b1eb13f07fe848fc77a1a73b3cb9b1ae497b?arch=s390x&repository_url=registry.redhat.io/rhacm2/submariner-addon-rhel8&tag=v2.6.8-9" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/thanos-rhel8@sha256:bbe9a0bd6776a2dbab5a634804a4a8fa3b4d9e85786977488005c4d8698f161b_s390x", + "product": { + "name": "rhacm2/thanos-rhel8@sha256:bbe9a0bd6776a2dbab5a634804a4a8fa3b4d9e85786977488005c4d8698f161b_s390x", + "product_id": "rhacm2/thanos-rhel8@sha256:bbe9a0bd6776a2dbab5a634804a4a8fa3b4d9e85786977488005c4d8698f161b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/thanos-rhel8@sha256:bbe9a0bd6776a2dbab5a634804a4a8fa3b4d9e85786977488005c4d8698f161b?arch=s390x&repository_url=registry.redhat.io/rhacm2/thanos-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:f922a4bc39253f0f4a2d52c6d7d8628644dc449a01ad0580b2dcdc0e91eb9044_s390x", + "product": { + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:f922a4bc39253f0f4a2d52c6d7d8628644dc449a01ad0580b2dcdc0e91eb9044_s390x", + "product_id": "rhacm2/thanos-receive-controller-rhel8@sha256:f922a4bc39253f0f4a2d52c6d7d8628644dc449a01ad0580b2dcdc0e91eb9044_s390x", + "product_identification_helper": { + "purl": "pkg:oci/thanos-receive-controller-rhel8@sha256:f922a4bc39253f0f4a2d52c6d7d8628644dc449a01ad0580b2dcdc0e91eb9044?arch=s390x&repository_url=registry.redhat.io/rhacm2/thanos-receive-controller-rhel8&tag=v2.6.8-5" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:22041df5bf50628fd8fb62127f84c6ce8d77cb2821b0f41e1e809cf3bc2ab434_arm64", + "product": { + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:22041df5bf50628fd8fb62127f84c6ce8d77cb2821b0f41e1e809cf3bc2ab434_arm64", + "product_id": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:22041df5bf50628fd8fb62127f84c6ce8d77cb2821b0f41e1e809cf3bc2ab434_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-governance-policy-addon-controller-rhel8@sha256:22041df5bf50628fd8fb62127f84c6ce8d77cb2821b0f41e1e809cf3bc2ab434?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-grafana-rhel8@sha256:f867f63c7dd11ecf5ccf7af55de55bbedd46349aee79170b3dbacac47fcbd596_arm64", + "product": { + "name": "rhacm2/acm-grafana-rhel8@sha256:f867f63c7dd11ecf5ccf7af55de55bbedd46349aee79170b3dbacac47fcbd596_arm64", + "product_id": "rhacm2/acm-grafana-rhel8@sha256:f867f63c7dd11ecf5ccf7af55de55bbedd46349aee79170b3dbacac47fcbd596_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-grafana-rhel8@sha256:f867f63c7dd11ecf5ccf7af55de55bbedd46349aee79170b3dbacac47fcbd596?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-grafana-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-must-gather-rhel8@sha256:f251e9013b44c544d23a2572fcecf9b6494043ddd668c873552b7da7bc2fc922_arm64", + "product": { + "name": "rhacm2/acm-must-gather-rhel8@sha256:f251e9013b44c544d23a2572fcecf9b6494043ddd668c873552b7da7bc2fc922_arm64", + "product_id": "rhacm2/acm-must-gather-rhel8@sha256:f251e9013b44c544d23a2572fcecf9b6494043ddd668c873552b7da7bc2fc922_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-must-gather-rhel8@sha256:f251e9013b44c544d23a2572fcecf9b6494043ddd668c873552b7da7bc2fc922?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-must-gather-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:45efadc157d6d364d84ab040cfb327b9ff27aa3f5e3848a3fe19d75aec0b5e45_arm64", + "product": { + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:45efadc157d6d364d84ab040cfb327b9ff27aa3f5e3848a3fe19d75aec0b5e45_arm64", + "product_id": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:45efadc157d6d364d84ab040cfb327b9ff27aa3f5e3848a3fe19d75aec0b5e45_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-prometheus-config-reloader-rhel8@sha256:45efadc157d6d364d84ab040cfb327b9ff27aa3f5e3848a3fe19d75aec0b5e45?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-prometheus-rhel8@sha256:b3d2553e8f5a36382229ace49e395e7471b644663e629e87bfa007efa698e559_arm64", + "product": { + "name": "rhacm2/acm-prometheus-rhel8@sha256:b3d2553e8f5a36382229ace49e395e7471b644663e629e87bfa007efa698e559_arm64", + "product_id": "rhacm2/acm-prometheus-rhel8@sha256:b3d2553e8f5a36382229ace49e395e7471b644663e629e87bfa007efa698e559_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-prometheus-rhel8@sha256:b3d2553e8f5a36382229ace49e395e7471b644663e629e87bfa007efa698e559?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-prometheus-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:ad7289555a0aa835de14f9158a166ce503f6cf13b1a5bea2c8098fb156e03e9d_arm64", + "product": { + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:ad7289555a0aa835de14f9158a166ce503f6cf13b1a5bea2c8098fb156e03e9d_arm64", + "product_id": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:ad7289555a0aa835de14f9158a166ce503f6cf13b1a5bea2c8098fb156e03e9d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-volsync-addon-controller-rhel8@sha256:ad7289555a0aa835de14f9158a166ce503f6cf13b1a5bea2c8098fb156e03e9d?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/cert-policy-controller-rhel8@sha256:b5853015a62cffc07a9bf58ed1bc5622a1d374ae6eb7d2b0c16cfb8339b03f71_arm64", + "product": { + "name": "rhacm2/cert-policy-controller-rhel8@sha256:b5853015a62cffc07a9bf58ed1bc5622a1d374ae6eb7d2b0c16cfb8339b03f71_arm64", + "product_id": "rhacm2/cert-policy-controller-rhel8@sha256:b5853015a62cffc07a9bf58ed1bc5622a1d374ae6eb7d2b0c16cfb8339b03f71_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cert-policy-controller-rhel8@sha256:b5853015a62cffc07a9bf58ed1bc5622a1d374ae6eb7d2b0c16cfb8339b03f71?arch=arm64&repository_url=registry.redhat.io/rhacm2/cert-policy-controller-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:033221c202572fd2983a1fafd7028f3d40df8232a1660aa04b404a275ccc1b89_arm64", + "product": { + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:033221c202572fd2983a1fafd7028f3d40df8232a1660aa04b404a275ccc1b89_arm64", + "product_id": "rhacm2/cluster-backup-rhel8-operator@sha256:033221c202572fd2983a1fafd7028f3d40df8232a1660aa04b404a275ccc1b89_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-backup-rhel8-operator@sha256:033221c202572fd2983a1fafd7028f3d40df8232a1660aa04b404a275ccc1b89?arch=arm64&repository_url=registry.redhat.io/rhacm2/cluster-backup-rhel8-operator&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/config-policy-controller-rhel8@sha256:4f12590017909852fa52fca688ad625ecf65b63569b4cfabcd4215beb5bf69e9_arm64", + "product": { + "name": "rhacm2/config-policy-controller-rhel8@sha256:4f12590017909852fa52fca688ad625ecf65b63569b4cfabcd4215beb5bf69e9_arm64", + "product_id": "rhacm2/config-policy-controller-rhel8@sha256:4f12590017909852fa52fca688ad625ecf65b63569b4cfabcd4215beb5bf69e9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/config-policy-controller-rhel8@sha256:4f12590017909852fa52fca688ad625ecf65b63569b4cfabcd4215beb5bf69e9?arch=arm64&repository_url=registry.redhat.io/rhacm2/config-policy-controller-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/console-rhel8@sha256:3d311acea5ebf4d9098ffa1cb2943774060352e42d1876b1e0f6dfdd4ab4463a_arm64", + "product": { + "name": "rhacm2/console-rhel8@sha256:3d311acea5ebf4d9098ffa1cb2943774060352e42d1876b1e0f6dfdd4ab4463a_arm64", + "product_id": "rhacm2/console-rhel8@sha256:3d311acea5ebf4d9098ffa1cb2943774060352e42d1876b1e0f6dfdd4ab4463a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/console-rhel8@sha256:3d311acea5ebf4d9098ffa1cb2943774060352e42d1876b1e0f6dfdd4ab4463a?arch=arm64&repository_url=registry.redhat.io/rhacm2/console-rhel8&tag=v2.6.8-7" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:5bd37a3a9d990fc9e1bbf2f7d6de1b677818268200d3ba90a5b58685971f67cb_arm64", + "product": { + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:5bd37a3a9d990fc9e1bbf2f7d6de1b677818268200d3ba90a5b58685971f67cb_arm64", + "product_id": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:5bd37a3a9d990fc9e1bbf2f7d6de1b677818268200d3ba90a5b58685971f67cb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/endpoint-monitoring-rhel8-operator@sha256:5bd37a3a9d990fc9e1bbf2f7d6de1b677818268200d3ba90a5b58685971f67cb?arch=arm64&repository_url=registry.redhat.io/rhacm2/endpoint-monitoring-rhel8-operator&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:57a227764d3935ca20736d5d2f59d8605e5a799a1e397b5cd56249edee6fec3d_arm64", + "product": { + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:57a227764d3935ca20736d5d2f59d8605e5a799a1e397b5cd56249edee6fec3d_arm64", + "product_id": "rhacm2/governance-policy-propagator-rhel8@sha256:57a227764d3935ca20736d5d2f59d8605e5a799a1e397b5cd56249edee6fec3d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/governance-policy-propagator-rhel8@sha256:57a227764d3935ca20736d5d2f59d8605e5a799a1e397b5cd56249edee6fec3d?arch=arm64&repository_url=registry.redhat.io/rhacm2/governance-policy-propagator-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/governance-policy-spec-sync-rhel8@sha256:71eeb8d5d8de78dd1204b8b152af7d8b4b2bb09293fb9a9ddc20014bdf5e18c7_arm64", + "product": { + "name": "rhacm2/governance-policy-spec-sync-rhel8@sha256:71eeb8d5d8de78dd1204b8b152af7d8b4b2bb09293fb9a9ddc20014bdf5e18c7_arm64", + "product_id": "rhacm2/governance-policy-spec-sync-rhel8@sha256:71eeb8d5d8de78dd1204b8b152af7d8b4b2bb09293fb9a9ddc20014bdf5e18c7_arm64", + "product_identification_helper": { + "purl": "pkg:oci/governance-policy-spec-sync-rhel8@sha256:71eeb8d5d8de78dd1204b8b152af7d8b4b2bb09293fb9a9ddc20014bdf5e18c7?arch=arm64&repository_url=registry.redhat.io/rhacm2/governance-policy-spec-sync-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/governance-policy-status-sync-rhel8@sha256:88544253e9fdb1b31271900095e9f58ef2f946ab32bc5630a1d5515a185ae4cd_arm64", + "product": { + "name": "rhacm2/governance-policy-status-sync-rhel8@sha256:88544253e9fdb1b31271900095e9f58ef2f946ab32bc5630a1d5515a185ae4cd_arm64", + "product_id": "rhacm2/governance-policy-status-sync-rhel8@sha256:88544253e9fdb1b31271900095e9f58ef2f946ab32bc5630a1d5515a185ae4cd_arm64", + "product_identification_helper": { + "purl": "pkg:oci/governance-policy-status-sync-rhel8@sha256:88544253e9fdb1b31271900095e9f58ef2f946ab32bc5630a1d5515a185ae4cd?arch=arm64&repository_url=registry.redhat.io/rhacm2/governance-policy-status-sync-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/governance-policy-template-sync-rhel8@sha256:19171cb758d807feb17186bbe0a4f982689d98215416a2ecc679be76b74d028a_arm64", + "product": { + "name": "rhacm2/governance-policy-template-sync-rhel8@sha256:19171cb758d807feb17186bbe0a4f982689d98215416a2ecc679be76b74d028a_arm64", + "product_id": "rhacm2/governance-policy-template-sync-rhel8@sha256:19171cb758d807feb17186bbe0a4f982689d98215416a2ecc679be76b74d028a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/governance-policy-template-sync-rhel8@sha256:19171cb758d807feb17186bbe0a4f982689d98215416a2ecc679be76b74d028a?arch=arm64&repository_url=registry.redhat.io/rhacm2/governance-policy-template-sync-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:f899586a67adebe6e8e7c2e5ebf027eadfbd9f944a1ab996af5f6ab90f873f76_arm64", + "product": { + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:f899586a67adebe6e8e7c2e5ebf027eadfbd9f944a1ab996af5f6ab90f873f76_arm64", + "product_id": "rhacm2/grafana-dashboard-loader-rhel8@sha256:f899586a67adebe6e8e7c2e5ebf027eadfbd9f944a1ab996af5f6ab90f873f76_arm64", + "product_identification_helper": { + "purl": "pkg:oci/grafana-dashboard-loader-rhel8@sha256:f899586a67adebe6e8e7c2e5ebf027eadfbd9f944a1ab996af5f6ab90f873f76?arch=arm64&repository_url=registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/iam-policy-controller-rhel8@sha256:3f9d127573599a4d5e533d3c9e8a23f1fc8eb24ba81eb86e50a8fe4d0867f979_arm64", + "product": { + "name": "rhacm2/iam-policy-controller-rhel8@sha256:3f9d127573599a4d5e533d3c9e8a23f1fc8eb24ba81eb86e50a8fe4d0867f979_arm64", + "product_id": "rhacm2/iam-policy-controller-rhel8@sha256:3f9d127573599a4d5e533d3c9e8a23f1fc8eb24ba81eb86e50a8fe4d0867f979_arm64", + "product_identification_helper": { + "purl": "pkg:oci/iam-policy-controller-rhel8@sha256:3f9d127573599a4d5e533d3c9e8a23f1fc8eb24ba81eb86e50a8fe4d0867f979?arch=arm64&repository_url=registry.redhat.io/rhacm2/iam-policy-controller-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/insights-client-rhel8@sha256:6a97a846f10bbd5b584d7ee4e2ab4c24dfdf909223367a219e537ce2c01aa22f_arm64", + "product": { + "name": "rhacm2/insights-client-rhel8@sha256:6a97a846f10bbd5b584d7ee4e2ab4c24dfdf909223367a219e537ce2c01aa22f_arm64", + "product_id": "rhacm2/insights-client-rhel8@sha256:6a97a846f10bbd5b584d7ee4e2ab4c24dfdf909223367a219e537ce2c01aa22f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/insights-client-rhel8@sha256:6a97a846f10bbd5b584d7ee4e2ab4c24dfdf909223367a219e537ce2c01aa22f?arch=arm64&repository_url=registry.redhat.io/rhacm2/insights-client-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/insights-metrics-rhel8@sha256:b0a83c30c4355830cdf29193c8590842c0b4f80a6376b66a5e975a09948b89fe_arm64", + "product": { + "name": "rhacm2/insights-metrics-rhel8@sha256:b0a83c30c4355830cdf29193c8590842c0b4f80a6376b66a5e975a09948b89fe_arm64", + "product_id": "rhacm2/insights-metrics-rhel8@sha256:b0a83c30c4355830cdf29193c8590842c0b4f80a6376b66a5e975a09948b89fe_arm64", + "product_identification_helper": { + "purl": "pkg:oci/insights-metrics-rhel8@sha256:b0a83c30c4355830cdf29193c8590842c0b4f80a6376b66a5e975a09948b89fe?arch=arm64&repository_url=registry.redhat.io/rhacm2/insights-metrics-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:c2372b0d060c901e4492d8240e4ec817c46a2de5a688b5ba3f24d1c21b1a1064_arm64", + "product": { + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:c2372b0d060c901e4492d8240e4ec817c46a2de5a688b5ba3f24d1c21b1a1064_arm64", + "product_id": "rhacm2/klusterlet-addon-controller-rhel8@sha256:c2372b0d060c901e4492d8240e4ec817c46a2de5a688b5ba3f24d1c21b1a1064_arm64", + "product_identification_helper": { + "purl": "pkg:oci/klusterlet-addon-controller-rhel8@sha256:c2372b0d060c901e4492d8240e4ec817c46a2de5a688b5ba3f24d1c21b1a1064?arch=arm64&repository_url=registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:3e53f7641466cfb57575d655eea045b72ad0a9b727cfe8fd9fcebfead04538c9_arm64", + "product": { + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:3e53f7641466cfb57575d655eea045b72ad0a9b727cfe8fd9fcebfead04538c9_arm64", + "product_id": "rhacm2/kube-rbac-proxy-rhel8@sha256:3e53f7641466cfb57575d655eea045b72ad0a9b727cfe8fd9fcebfead04538c9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kube-rbac-proxy-rhel8@sha256:3e53f7641466cfb57575d655eea045b72ad0a9b727cfe8fd9fcebfead04538c9?arch=arm64&repository_url=registry.redhat.io/rhacm2/kube-rbac-proxy-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/kube-state-metrics-rhel8@sha256:907ad3c695448422c7cdc94e26d249cb792bf48bca63ebf158148e75b898beaf_arm64", + "product": { + "name": "rhacm2/kube-state-metrics-rhel8@sha256:907ad3c695448422c7cdc94e26d249cb792bf48bca63ebf158148e75b898beaf_arm64", + "product_id": "rhacm2/kube-state-metrics-rhel8@sha256:907ad3c695448422c7cdc94e26d249cb792bf48bca63ebf158148e75b898beaf_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kube-state-metrics-rhel8@sha256:907ad3c695448422c7cdc94e26d249cb792bf48bca63ebf158148e75b898beaf?arch=arm64&repository_url=registry.redhat.io/rhacm2/kube-state-metrics-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/management-ingress-rhel8@sha256:20f8ea5fbedad03c447c1cc92e90b89119dd3a2d84e84ea996aa8942a6a09280_arm64", + "product": { + "name": "rhacm2/management-ingress-rhel8@sha256:20f8ea5fbedad03c447c1cc92e90b89119dd3a2d84e84ea996aa8942a6a09280_arm64", + "product_id": "rhacm2/management-ingress-rhel8@sha256:20f8ea5fbedad03c447c1cc92e90b89119dd3a2d84e84ea996aa8942a6a09280_arm64", + "product_identification_helper": { + "purl": "pkg:oci/management-ingress-rhel8@sha256:20f8ea5fbedad03c447c1cc92e90b89119dd3a2d84e84ea996aa8942a6a09280?arch=arm64&repository_url=registry.redhat.io/rhacm2/management-ingress-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/memcached-rhel8@sha256:edc25c1e118892294b29e528ab07fa3e4395e88c7e8549ecdd425e15962d40e1_arm64", + "product": { + "name": "rhacm2/memcached-rhel8@sha256:edc25c1e118892294b29e528ab07fa3e4395e88c7e8549ecdd425e15962d40e1_arm64", + "product_id": "rhacm2/memcached-rhel8@sha256:edc25c1e118892294b29e528ab07fa3e4395e88c7e8549ecdd425e15962d40e1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/memcached-rhel8@sha256:edc25c1e118892294b29e528ab07fa3e4395e88c7e8549ecdd425e15962d40e1?arch=arm64&repository_url=registry.redhat.io/rhacm2/memcached-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/memcached-exporter-rhel8@sha256:5f4cc7420bea1fdc223f68d62e1960344481d99ad4db4f0dd0b64ff7dd0fc356_arm64", + "product": { + "name": "rhacm2/memcached-exporter-rhel8@sha256:5f4cc7420bea1fdc223f68d62e1960344481d99ad4db4f0dd0b64ff7dd0fc356_arm64", + "product_id": "rhacm2/memcached-exporter-rhel8@sha256:5f4cc7420bea1fdc223f68d62e1960344481d99ad4db4f0dd0b64ff7dd0fc356_arm64", + "product_identification_helper": { + "purl": "pkg:oci/memcached-exporter-rhel8@sha256:5f4cc7420bea1fdc223f68d62e1960344481d99ad4db4f0dd0b64ff7dd0fc356?arch=arm64&repository_url=registry.redhat.io/rhacm2/memcached-exporter-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/metrics-collector-rhel8@sha256:7fbf4b921d203912b8746b46cefe6d72783f8a71e58199df7d415693b0eb3f00_arm64", + "product": { + "name": "rhacm2/metrics-collector-rhel8@sha256:7fbf4b921d203912b8746b46cefe6d72783f8a71e58199df7d415693b0eb3f00_arm64", + "product_id": "rhacm2/metrics-collector-rhel8@sha256:7fbf4b921d203912b8746b46cefe6d72783f8a71e58199df7d415693b0eb3f00_arm64", + "product_identification_helper": { + "purl": "pkg:oci/metrics-collector-rhel8@sha256:7fbf4b921d203912b8746b46cefe6d72783f8a71e58199df7d415693b0eb3f00?arch=arm64&repository_url=registry.redhat.io/rhacm2/metrics-collector-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicloud-integrations-rhel8@sha256:b56998d0f6c2c7de6ac612c32e162cf8d2c120f13a622e1d96d92fd15e11f81f_arm64", + "product": { + "name": "rhacm2/multicloud-integrations-rhel8@sha256:b56998d0f6c2c7de6ac612c32e162cf8d2c120f13a622e1d96d92fd15e11f81f_arm64", + "product_id": "rhacm2/multicloud-integrations-rhel8@sha256:b56998d0f6c2c7de6ac612c32e162cf8d2c120f13a622e1d96d92fd15e11f81f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicloud-integrations-rhel8@sha256:b56998d0f6c2c7de6ac612c32e162cf8d2c120f13a622e1d96d92fd15e11f81f?arch=arm64&repository_url=registry.redhat.io/rhacm2/multicloud-integrations-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multiclusterhub-rhel8@sha256:bb05deb3986ea92b9e59499085f94d122b36b329819e4411adad5ce7dc37e067_arm64", + "product": { + "name": "rhacm2/multiclusterhub-rhel8@sha256:bb05deb3986ea92b9e59499085f94d122b36b329819e4411adad5ce7dc37e067_arm64", + "product_id": "rhacm2/multiclusterhub-rhel8@sha256:bb05deb3986ea92b9e59499085f94d122b36b329819e4411adad5ce7dc37e067_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multiclusterhub-rhel8@sha256:bb05deb3986ea92b9e59499085f94d122b36b329819e4411adad5ce7dc37e067?arch=arm64&repository_url=registry.redhat.io/rhacm2/multiclusterhub-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multiclusterhub-repo-rhel8@sha256:1048748add6fe918de9ec3b5784ce7f364544fc6f1f98932494fe548a88112e9_arm64", + "product": { + "name": "rhacm2/multiclusterhub-repo-rhel8@sha256:1048748add6fe918de9ec3b5784ce7f364544fc6f1f98932494fe548a88112e9_arm64", + "product_id": "rhacm2/multiclusterhub-repo-rhel8@sha256:1048748add6fe918de9ec3b5784ce7f364544fc6f1f98932494fe548a88112e9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multiclusterhub-repo-rhel8@sha256:1048748add6fe918de9ec3b5784ce7f364544fc6f1f98932494fe548a88112e9?arch=arm64&repository_url=registry.redhat.io/rhacm2/multiclusterhub-repo-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:07bf623b7da6a21239ae701a149dc4818d6442cfc25dcca8c1190aed63582645_arm64", + "product": { + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:07bf623b7da6a21239ae701a149dc4818d6442cfc25dcca8c1190aed63582645_arm64", + "product_id": "rhacm2/multicluster-observability-rhel8-operator@sha256:07bf623b7da6a21239ae701a149dc4818d6442cfc25dcca8c1190aed63582645_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-observability-rhel8-operator@sha256:07bf623b7da6a21239ae701a149dc4818d6442cfc25dcca8c1190aed63582645?arch=arm64&repository_url=registry.redhat.io/rhacm2/multicluster-observability-rhel8-operator&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:d2e9c3b52c106237662873984fc0c0205afaab7427a61726c658f331caa77507_arm64", + "product": { + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:d2e9c3b52c106237662873984fc0c0205afaab7427a61726c658f331caa77507_arm64", + "product_id": "rhacm2/multicluster-operators-application-rhel8@sha256:d2e9c3b52c106237662873984fc0c0205afaab7427a61726c658f331caa77507_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-application-rhel8@sha256:d2e9c3b52c106237662873984fc0c0205afaab7427a61726c658f331caa77507?arch=arm64&repository_url=registry.redhat.io/rhacm2/multicluster-operators-application-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:4424829a1a91ff7540f1ac01f4b6f2090d65810303169753ef197e95dc9315cc_arm64", + "product": { + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:4424829a1a91ff7540f1ac01f4b6f2090d65810303169753ef197e95dc9315cc_arm64", + "product_id": "rhacm2/multicluster-operators-channel-rhel8@sha256:4424829a1a91ff7540f1ac01f4b6f2090d65810303169753ef197e95dc9315cc_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-channel-rhel8@sha256:4424829a1a91ff7540f1ac01f4b6f2090d65810303169753ef197e95dc9315cc?arch=arm64&repository_url=registry.redhat.io/rhacm2/multicluster-operators-channel-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:fb2a632fbb1d442bc5f9f6c8e74494755a0f5ba9e186b93c5fcbdfb51979e780_arm64", + "product": { + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:fb2a632fbb1d442bc5f9f6c8e74494755a0f5ba9e186b93c5fcbdfb51979e780_arm64", + "product_id": "rhacm2/multicluster-operators-subscription-rhel8@sha256:fb2a632fbb1d442bc5f9f6c8e74494755a0f5ba9e186b93c5fcbdfb51979e780_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-subscription-rhel8@sha256:fb2a632fbb1d442bc5f9f6c8e74494755a0f5ba9e186b93c5fcbdfb51979e780?arch=arm64&repository_url=registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/node-exporter-rhel8@sha256:9c3756745f03a35de4527eb10e763cb183ccd0f44ddb843d25c97b5b470f0725_arm64", + "product": { + "name": "rhacm2/node-exporter-rhel8@sha256:9c3756745f03a35de4527eb10e763cb183ccd0f44ddb843d25c97b5b470f0725_arm64", + "product_id": "rhacm2/node-exporter-rhel8@sha256:9c3756745f03a35de4527eb10e763cb183ccd0f44ddb843d25c97b5b470f0725_arm64", + "product_identification_helper": { + "purl": "pkg:oci/node-exporter-rhel8@sha256:9c3756745f03a35de4527eb10e763cb183ccd0f44ddb843d25c97b5b470f0725?arch=arm64&repository_url=registry.redhat.io/rhacm2/node-exporter-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/observatorium-rhel8@sha256:2973c12aead110b123433b0c7dd3f562fc8c9f6d6133d7b23e0bdf980d079041_arm64", + "product": { + "name": "rhacm2/observatorium-rhel8@sha256:2973c12aead110b123433b0c7dd3f562fc8c9f6d6133d7b23e0bdf980d079041_arm64", + "product_id": "rhacm2/observatorium-rhel8@sha256:2973c12aead110b123433b0c7dd3f562fc8c9f6d6133d7b23e0bdf980d079041_arm64", + "product_identification_helper": { + "purl": "pkg:oci/observatorium-rhel8@sha256:2973c12aead110b123433b0c7dd3f562fc8c9f6d6133d7b23e0bdf980d079041?arch=arm64&repository_url=registry.redhat.io/rhacm2/observatorium-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/observatorium-rhel8-operator@sha256:be0b623dd01d0f2d77203c48b91d84c47da6500e8643dab6206cdaae2c677095_arm64", + "product": { + "name": "rhacm2/observatorium-rhel8-operator@sha256:be0b623dd01d0f2d77203c48b91d84c47da6500e8643dab6206cdaae2c677095_arm64", + "product_id": "rhacm2/observatorium-rhel8-operator@sha256:be0b623dd01d0f2d77203c48b91d84c47da6500e8643dab6206cdaae2c677095_arm64", + "product_identification_helper": { + "purl": "pkg:oci/observatorium-rhel8-operator@sha256:be0b623dd01d0f2d77203c48b91d84c47da6500e8643dab6206cdaae2c677095?arch=arm64&repository_url=registry.redhat.io/rhacm2/observatorium-rhel8-operator&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:a39f4c45679ce904890315d93aaff2bb54d9001dec00345a9b5a4d88f818b860_arm64", + "product": { + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:a39f4c45679ce904890315d93aaff2bb54d9001dec00345a9b5a4d88f818b860_arm64", + "product_id": "rhacm2/prometheus-alertmanager-rhel8@sha256:a39f4c45679ce904890315d93aaff2bb54d9001dec00345a9b5a4d88f818b860_arm64", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-alertmanager-rhel8@sha256:a39f4c45679ce904890315d93aaff2bb54d9001dec00345a9b5a4d88f818b860?arch=arm64&repository_url=registry.redhat.io/rhacm2/prometheus-alertmanager-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/prometheus-rhel8@sha256:0fafb9f039a1eae3f491ee18fe736e2c233dcbb84089edf8dfc61fd31a934062_arm64", + "product": { + "name": "rhacm2/prometheus-rhel8@sha256:0fafb9f039a1eae3f491ee18fe736e2c233dcbb84089edf8dfc61fd31a934062_arm64", + "product_id": "rhacm2/prometheus-rhel8@sha256:0fafb9f039a1eae3f491ee18fe736e2c233dcbb84089edf8dfc61fd31a934062_arm64", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-rhel8@sha256:0fafb9f039a1eae3f491ee18fe736e2c233dcbb84089edf8dfc61fd31a934062?arch=arm64&repository_url=registry.redhat.io/rhacm2/prometheus-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:de3202b433bde6aed32c597d1db9acb85c9e9de622189cdcfe8713a5782cfb08_arm64", + "product": { + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:de3202b433bde6aed32c597d1db9acb85c9e9de622189cdcfe8713a5782cfb08_arm64", + "product_id": "rhacm2/rbac-query-proxy-rhel8@sha256:de3202b433bde6aed32c597d1db9acb85c9e9de622189cdcfe8713a5782cfb08_arm64", + "product_identification_helper": { + "purl": "pkg:oci/rbac-query-proxy-rhel8@sha256:de3202b433bde6aed32c597d1db9acb85c9e9de622189cdcfe8713a5782cfb08?arch=arm64&repository_url=registry.redhat.io/rhacm2/rbac-query-proxy-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/redisgraph-tls-rhel8@sha256:98027a18467dc3c44ff2529ee1fa3986d3f7b43f163bd89732b87f1f99512646_arm64", + "product": { + "name": "rhacm2/redisgraph-tls-rhel8@sha256:98027a18467dc3c44ff2529ee1fa3986d3f7b43f163bd89732b87f1f99512646_arm64", + "product_id": "rhacm2/redisgraph-tls-rhel8@sha256:98027a18467dc3c44ff2529ee1fa3986d3f7b43f163bd89732b87f1f99512646_arm64", + "product_identification_helper": { + "purl": "pkg:oci/redisgraph-tls-rhel8@sha256:98027a18467dc3c44ff2529ee1fa3986d3f7b43f163bd89732b87f1f99512646?arch=arm64&repository_url=registry.redhat.io/rhacm2/redisgraph-tls-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/search-aggregator-rhel8@sha256:465f1351d66f28d46663fb4af4e7725e8d799a267bc816838eb83172fb82e509_arm64", + "product": { + "name": "rhacm2/search-aggregator-rhel8@sha256:465f1351d66f28d46663fb4af4e7725e8d799a267bc816838eb83172fb82e509_arm64", + "product_id": "rhacm2/search-aggregator-rhel8@sha256:465f1351d66f28d46663fb4af4e7725e8d799a267bc816838eb83172fb82e509_arm64", + "product_identification_helper": { + "purl": "pkg:oci/search-aggregator-rhel8@sha256:465f1351d66f28d46663fb4af4e7725e8d799a267bc816838eb83172fb82e509?arch=arm64&repository_url=registry.redhat.io/rhacm2/search-aggregator-rhel8&tag=v2.6.8-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/search-api-rhel8@sha256:d319423c8ae05292ff341bda4ba59e31b48aea560bd8749d5932bfb930fd564b_arm64", + "product": { + "name": "rhacm2/search-api-rhel8@sha256:d319423c8ae05292ff341bda4ba59e31b48aea560bd8749d5932bfb930fd564b_arm64", + "product_id": "rhacm2/search-api-rhel8@sha256:d319423c8ae05292ff341bda4ba59e31b48aea560bd8749d5932bfb930fd564b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/search-api-rhel8@sha256:d319423c8ae05292ff341bda4ba59e31b48aea560bd8749d5932bfb930fd564b?arch=arm64&repository_url=registry.redhat.io/rhacm2/search-api-rhel8&tag=v2.6.8-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/search-collector-rhel8@sha256:05559e55506c1d29fb4aef499e9e1f42f8b4e32e2b14dc2d665a751e0c5fc9c8_arm64", + "product": { + "name": "rhacm2/search-collector-rhel8@sha256:05559e55506c1d29fb4aef499e9e1f42f8b4e32e2b14dc2d665a751e0c5fc9c8_arm64", + "product_id": "rhacm2/search-collector-rhel8@sha256:05559e55506c1d29fb4aef499e9e1f42f8b4e32e2b14dc2d665a751e0c5fc9c8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/search-collector-rhel8@sha256:05559e55506c1d29fb4aef499e9e1f42f8b4e32e2b14dc2d665a751e0c5fc9c8?arch=arm64&repository_url=registry.redhat.io/rhacm2/search-collector-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/search-rhel8@sha256:6491797522cd2169accd2398d7e10601e4e2f487d3ef50cd59656724f5162533_arm64", + "product": { + "name": "rhacm2/search-rhel8@sha256:6491797522cd2169accd2398d7e10601e4e2f487d3ef50cd59656724f5162533_arm64", + "product_id": "rhacm2/search-rhel8@sha256:6491797522cd2169accd2398d7e10601e4e2f487d3ef50cd59656724f5162533_arm64", + "product_identification_helper": { + "purl": "pkg:oci/search-rhel8@sha256:6491797522cd2169accd2398d7e10601e4e2f487d3ef50cd59656724f5162533?arch=arm64&repository_url=registry.redhat.io/rhacm2/search-rhel8&tag=v2.6.8-7" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/submariner-addon-rhel8@sha256:5eccd72234d1e14ab909bb5b6940e2669ae7b0e7773e1d6603f65be1fdd216bd_arm64", + "product": { + "name": "rhacm2/submariner-addon-rhel8@sha256:5eccd72234d1e14ab909bb5b6940e2669ae7b0e7773e1d6603f65be1fdd216bd_arm64", + "product_id": "rhacm2/submariner-addon-rhel8@sha256:5eccd72234d1e14ab909bb5b6940e2669ae7b0e7773e1d6603f65be1fdd216bd_arm64", + "product_identification_helper": { + "purl": "pkg:oci/submariner-addon-rhel8@sha256:5eccd72234d1e14ab909bb5b6940e2669ae7b0e7773e1d6603f65be1fdd216bd?arch=arm64&repository_url=registry.redhat.io/rhacm2/submariner-addon-rhel8&tag=v2.6.8-9" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/thanos-rhel8@sha256:3c3db5aaa9d465e66baab189ced74f8e6485115930fd148117f7ea4048c84274_arm64", + "product": { + "name": "rhacm2/thanos-rhel8@sha256:3c3db5aaa9d465e66baab189ced74f8e6485115930fd148117f7ea4048c84274_arm64", + "product_id": "rhacm2/thanos-rhel8@sha256:3c3db5aaa9d465e66baab189ced74f8e6485115930fd148117f7ea4048c84274_arm64", + "product_identification_helper": { + "purl": "pkg:oci/thanos-rhel8@sha256:3c3db5aaa9d465e66baab189ced74f8e6485115930fd148117f7ea4048c84274?arch=arm64&repository_url=registry.redhat.io/rhacm2/thanos-rhel8&tag=v2.6.8-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:8840719e7e4a4eff44473b9b8870c326abaa01993f4148fa25066525ba3991fb_arm64", + "product": { + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:8840719e7e4a4eff44473b9b8870c326abaa01993f4148fa25066525ba3991fb_arm64", + "product_id": "rhacm2/thanos-receive-controller-rhel8@sha256:8840719e7e4a4eff44473b9b8870c326abaa01993f4148fa25066525ba3991fb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/thanos-receive-controller-rhel8@sha256:8840719e7e4a4eff44473b9b8870c326abaa01993f4148fa25066525ba3991fb?arch=arm64&repository_url=registry.redhat.io/rhacm2/thanos-receive-controller-rhel8&tag=v2.6.8-5" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "multicluster-engine/agent-service-rhel8@sha256:41ae6255dcf7ad8801dbf72a61f8f64d598f5874b2354accc6861d0603bdfe25_ppc64le", + "product": { + "name": "multicluster-engine/agent-service-rhel8@sha256:41ae6255dcf7ad8801dbf72a61f8f64d598f5874b2354accc6861d0603bdfe25_ppc64le", + "product_id": "multicluster-engine/agent-service-rhel8@sha256:41ae6255dcf7ad8801dbf72a61f8f64d598f5874b2354accc6861d0603bdfe25_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/agent-service-rhel8@sha256:41ae6255dcf7ad8801dbf72a61f8f64d598f5874b2354accc6861d0603bdfe25?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/agent-service-rhel8&tag=v2.1.9-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:13cc6b3b939bcd0c3bfb4ffbecc87bcb2354896da5138a6cc8660e54830206a5_ppc64le", + "product": { + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:13cc6b3b939bcd0c3bfb4ffbecc87bcb2354896da5138a6cc8660e54830206a5_ppc64le", + "product_id": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:13cc6b3b939bcd0c3bfb4ffbecc87bcb2354896da5138a6cc8660e54830206a5_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/apiserver-network-proxy-rhel8@sha256:13cc6b3b939bcd0c3bfb4ffbecc87bcb2354896da5138a6cc8660e54830206a5?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/apiserver-network-proxy-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:7ddb10c1ef2e49abf596c521ce9a18f974d927b4a83896958a0590d2b9672bc4_ppc64le", + "product": { + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:7ddb10c1ef2e49abf596c521ce9a18f974d927b4a83896958a0590d2b9672bc4_ppc64le", + "product_id": "multicluster-engine/assisted-image-service-rhel8@sha256:7ddb10c1ef2e49abf596c521ce9a18f974d927b4a83896958a0590d2b9672bc4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/assisted-image-service-rhel8@sha256:7ddb10c1ef2e49abf596c521ce9a18f974d927b4a83896958a0590d2b9672bc4?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/assisted-image-service-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-rhel8@sha256:39439025c6113fd48927d3442986213527d5f3bd84f3d5a794a4db1b593a4d33_ppc64le", + "product": { + "name": "multicluster-engine/assisted-installer-rhel8@sha256:39439025c6113fd48927d3442986213527d5f3bd84f3d5a794a4db1b593a4d33_ppc64le", + "product_id": "multicluster-engine/assisted-installer-rhel8@sha256:39439025c6113fd48927d3442986213527d5f3bd84f3d5a794a4db1b593a4d33_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-rhel8@sha256:39439025c6113fd48927d3442986213527d5f3bd84f3d5a794a4db1b593a4d33?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:73af5120518876a9eb414678c5b8dd6bfd98046ef9f5973aa2876a480508d421_ppc64le", + "product": { + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:73af5120518876a9eb414678c5b8dd6bfd98046ef9f5973aa2876a480508d421_ppc64le", + "product_id": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:73af5120518876a9eb414678c5b8dd6bfd98046ef9f5973aa2876a480508d421_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-reporter-rhel8@sha256:73af5120518876a9eb414678c5b8dd6bfd98046ef9f5973aa2876a480508d421?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-reporter-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:10ab26d7fe754d22e2f1d210a058b1d77719f0af3195e188124136652edfc1e9_ppc64le", + "product": { + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:10ab26d7fe754d22e2f1d210a058b1d77719f0af3195e188124136652edfc1e9_ppc64le", + "product_id": "multicluster-engine/aws-encryption-provider-rhel8@sha256:10ab26d7fe754d22e2f1d210a058b1d77719f0af3195e188124136652edfc1e9_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/aws-encryption-provider-rhel8@sha256:10ab26d7fe754d22e2f1d210a058b1d77719f0af3195e188124136652edfc1e9?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/aws-encryption-provider-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-rhel8@sha256:88c8e428138bc1fca04091bb7d6db66b63bc31ac81cea9c329ef5366d84c4bf3_ppc64le", + "product": { + "name": "multicluster-engine/cluster-api-rhel8@sha256:88c8e428138bc1fca04091bb7d6db66b63bc31ac81cea9c329ef5366d84c4bf3_ppc64le", + "product_id": "multicluster-engine/cluster-api-rhel8@sha256:88c8e428138bc1fca04091bb7d6db66b63bc31ac81cea9c329ef5366d84c4bf3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-rhel8@sha256:88c8e428138bc1fca04091bb7d6db66b63bc31ac81cea9c329ef5366d84c4bf3?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-api-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:6a3496efda51a7dd044cc165b0ff9b7ff957386ec47a22dcc7fb58dea7f5467d_ppc64le", + "product": { + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:6a3496efda51a7dd044cc165b0ff9b7ff957386ec47a22dcc7fb58dea7f5467d_ppc64le", + "product_id": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:6a3496efda51a7dd044cc165b0ff9b7ff957386ec47a22dcc7fb58dea7f5467d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:6a3496efda51a7dd044cc165b0ff9b7ff957386ec47a22dcc7fb58dea7f5467d?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:6a3496efda51a7dd044cc165b0ff9b7ff957386ec47a22dcc7fb58dea7f5467d_ppc64le", + "product": { + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:6a3496efda51a7dd044cc165b0ff9b7ff957386ec47a22dcc7fb58dea7f5467d_ppc64le", + "product_id": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:6a3496efda51a7dd044cc165b0ff9b7ff957386ec47a22dcc7fb58dea7f5467d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-agent-rhel8@sha256:6a3496efda51a7dd044cc165b0ff9b7ff957386ec47a22dcc7fb58dea7f5467d?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:d73bc8987e95753a9a2a94d1f47f4945106f58f679539d0d0aa7ff4a3cd2d61f_ppc64le", + "product": { + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:d73bc8987e95753a9a2a94d1f47f4945106f58f679539d0d0aa7ff4a3cd2d61f_ppc64le", + "product_id": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:d73bc8987e95753a9a2a94d1f47f4945106f58f679539d0d0aa7ff4a3cd2d61f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-aws-rhel8@sha256:d73bc8987e95753a9a2a94d1f47f4945106f58f679539d0d0aa7ff4a3cd2d61f?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:119231d115fa3b9092c1e1f73883d040d4de6deb470bd64f14ce1fb01c082c2d_ppc64le", + "product": { + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:119231d115fa3b9092c1e1f73883d040d4de6deb470bd64f14ce1fb01c082c2d_ppc64le", + "product_id": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:119231d115fa3b9092c1e1f73883d040d4de6deb470bd64f14ce1fb01c082c2d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-azure-rhel8@sha256:119231d115fa3b9092c1e1f73883d040d4de6deb470bd64f14ce1fb01c082c2d?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-azure-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:af50da05cc32ea1bb95d1349e29447ce5027d2a0f9d43b031e302f74920a6e14_ppc64le", + "product": { + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:af50da05cc32ea1bb95d1349e29447ce5027d2a0f9d43b031e302f74920a6e14_ppc64le", + "product_id": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:af50da05cc32ea1bb95d1349e29447ce5027d2a0f9d43b031e302f74920a6e14_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-kubevirt-rhel8@sha256:af50da05cc32ea1bb95d1349e29447ce5027d2a0f9d43b031e302f74920a6e14?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:e365acb00bfd59b2e771a49744e48bd8eb1b98637cd0426cdf1370a8132c21d4_ppc64le", + "product": { + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:e365acb00bfd59b2e771a49744e48bd8eb1b98637cd0426cdf1370a8132c21d4_ppc64le", + "product_id": "multicluster-engine/clusterclaims-controller-rhel8@sha256:e365acb00bfd59b2e771a49744e48bd8eb1b98637cd0426cdf1370a8132c21d4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/clusterclaims-controller-rhel8@sha256:e365acb00bfd59b2e771a49744e48bd8eb1b98637cd0426cdf1370a8132c21d4?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:a8bca98e6f14bd8b01e52250355f2d91bbb2d0806988ddb2ddbb114d440a4c2a_ppc64le", + "product": { + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:a8bca98e6f14bd8b01e52250355f2d91bbb2d0806988ddb2ddbb114d440a4c2a_ppc64le", + "product_id": "multicluster-engine/cluster-curator-controller-rhel8@sha256:a8bca98e6f14bd8b01e52250355f2d91bbb2d0806988ddb2ddbb114d440a4c2a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-curator-controller-rhel8@sha256:a8bca98e6f14bd8b01e52250355f2d91bbb2d0806988ddb2ddbb114d440a4c2a?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:8843c243cd19c34366ed5fc5c1bcbc3f5a8a2fd8bdd8d4adce0ba01ad82fb9cb_ppc64le", + "product": { + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:8843c243cd19c34366ed5fc5c1bcbc3f5a8a2fd8bdd8d4adce0ba01ad82fb9cb_ppc64le", + "product_id": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:8843c243cd19c34366ed5fc5c1bcbc3f5a8a2fd8bdd8d4adce0ba01ad82fb9cb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/clusterlifecycle-state-metrics-rhel8@sha256:8843c243cd19c34366ed5fc5c1bcbc3f5a8a2fd8bdd8d4adce0ba01ad82fb9cb?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:c1224e740b3195f1477b1f90f5392c9f4dcccd874b87d867ac790cd0848feef0_ppc64le", + "product": { + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:c1224e740b3195f1477b1f90f5392c9f4dcccd874b87d867ac790cd0848feef0_ppc64le", + "product_id": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:c1224e740b3195f1477b1f90f5392c9f4dcccd874b87d867ac790cd0848feef0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-proxy-addon-rhel8@sha256:c1224e740b3195f1477b1f90f5392c9f4dcccd874b87d867ac790cd0848feef0?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:06cdc7482c0ad5c94d08a98c49e3e63c23bcb8b6d80f9953fbd3959676a1e344_ppc64le", + "product": { + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:06cdc7482c0ad5c94d08a98c49e3e63c23bcb8b6d80f9953fbd3959676a1e344_ppc64le", + "product_id": "multicluster-engine/cluster-proxy-rhel8@sha256:06cdc7482c0ad5c94d08a98c49e3e63c23bcb8b6d80f9953fbd3959676a1e344_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-proxy-rhel8@sha256:06cdc7482c0ad5c94d08a98c49e3e63c23bcb8b6d80f9953fbd3959676a1e344?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:52b8ea8e91b71eed19cc521a0e67e6c2e3ba867026b57ee736e6d14388fba9ba_ppc64le", + "product": { + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:52b8ea8e91b71eed19cc521a0e67e6c2e3ba867026b57ee736e6d14388fba9ba_ppc64le", + "product_id": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:52b8ea8e91b71eed19cc521a0e67e6c2e3ba867026b57ee736e6d14388fba9ba_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-console-mce-rhel8@sha256:52b8ea8e91b71eed19cc521a0e67e6c2e3ba867026b57ee736e6d14388fba9ba?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-console-mce-rhel8&tag=v2.1.9-6" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/console-mce-rhel8@sha256:52b8ea8e91b71eed19cc521a0e67e6c2e3ba867026b57ee736e6d14388fba9ba_ppc64le", + "product": { + "name": "multicluster-engine/console-mce-rhel8@sha256:52b8ea8e91b71eed19cc521a0e67e6c2e3ba867026b57ee736e6d14388fba9ba_ppc64le", + "product_id": "multicluster-engine/console-mce-rhel8@sha256:52b8ea8e91b71eed19cc521a0e67e6c2e3ba867026b57ee736e6d14388fba9ba_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/console-mce-rhel8@sha256:52b8ea8e91b71eed19cc521a0e67e6c2e3ba867026b57ee736e6d14388fba9ba?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/console-mce-rhel8&tag=v2.1.9-6" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/discovery-rhel8@sha256:ff2cb982527aa21822aa7032facbee981c906d06da75ba6d7c9bc00e4ebe46ff_ppc64le", + "product": { + "name": "multicluster-engine/discovery-rhel8@sha256:ff2cb982527aa21822aa7032facbee981c906d06da75ba6d7c9bc00e4ebe46ff_ppc64le", + "product_id": "multicluster-engine/discovery-rhel8@sha256:ff2cb982527aa21822aa7032facbee981c906d06da75ba6d7c9bc00e4ebe46ff_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/discovery-rhel8@sha256:ff2cb982527aa21822aa7032facbee981c906d06da75ba6d7c9bc00e4ebe46ff?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/discovery-rhel8&tag=v2.1.9-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hive-rhel8@sha256:9b663a05d87daefe74645bd41dff9da17324ea5beacaa4ddbef47780234ce107_ppc64le", + "product": { + "name": "multicluster-engine/hive-rhel8@sha256:9b663a05d87daefe74645bd41dff9da17324ea5beacaa4ddbef47780234ce107_ppc64le", + "product_id": "multicluster-engine/hive-rhel8@sha256:9b663a05d87daefe74645bd41dff9da17324ea5beacaa4ddbef47780234ce107_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/hive-rhel8@sha256:9b663a05d87daefe74645bd41dff9da17324ea5beacaa4ddbef47780234ce107?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/hive-rhel8&tag=v2.1.9-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:2bd22d2dddd3495137b31fe5d6ab4dece39db118d359c917e7b4a07fc93538a3_ppc64le", + "product": { + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:2bd22d2dddd3495137b31fe5d6ab4dece39db118d359c917e7b4a07fc93538a3_ppc64le", + "product_id": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:2bd22d2dddd3495137b31fe5d6ab4dece39db118d359c917e7b4a07fc93538a3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-addon-rhel8-operator@sha256:2bd22d2dddd3495137b31fe5d6ab4dece39db118d359c917e7b4a07fc93538a3?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/hypershift-addon-rhel8-operator&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:2bd22d2dddd3495137b31fe5d6ab4dece39db118d359c917e7b4a07fc93538a3_ppc64le", + "product": { + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:2bd22d2dddd3495137b31fe5d6ab4dece39db118d359c917e7b4a07fc93538a3_ppc64le", + "product_id": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:2bd22d2dddd3495137b31fe5d6ab4dece39db118d359c917e7b4a07fc93538a3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-hypershift-addon-rhel8-operator@sha256:2bd22d2dddd3495137b31fe5d6ab4dece39db118d359c917e7b4a07fc93538a3?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-deployment-controller-rhel8@sha256:abe3b24e29bbd1d3653489de585b69f349ecc34289251f8fc5bcccfe31ca7043_ppc64le", + "product": { + "name": "multicluster-engine/hypershift-deployment-controller-rhel8@sha256:abe3b24e29bbd1d3653489de585b69f349ecc34289251f8fc5bcccfe31ca7043_ppc64le", + "product_id": "multicluster-engine/hypershift-deployment-controller-rhel8@sha256:abe3b24e29bbd1d3653489de585b69f349ecc34289251f8fc5bcccfe31ca7043_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-deployment-controller-rhel8@sha256:abe3b24e29bbd1d3653489de585b69f349ecc34289251f8fc5bcccfe31ca7043?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/hypershift-deployment-controller-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:abe3b24e29bbd1d3653489de585b69f349ecc34289251f8fc5bcccfe31ca7043_ppc64le", + "product": { + "name": "multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:abe3b24e29bbd1d3653489de585b69f349ecc34289251f8fc5bcccfe31ca7043_ppc64le", + "product_id": "multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:abe3b24e29bbd1d3653489de585b69f349ecc34289251f8fc5bcccfe31ca7043_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:abe3b24e29bbd1d3653489de585b69f349ecc34289251f8fc5bcccfe31ca7043?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:5a56609626834e2013db384d548d6167417c45b8272f9347e1104ca53e3a0c1e_ppc64le", + "product": { + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:5a56609626834e2013db384d548d6167417c45b8272f9347e1104ca53e3a0c1e_ppc64le", + "product_id": "multicluster-engine/hypershift-rhel8-operator@sha256:5a56609626834e2013db384d548d6167417c45b8272f9347e1104ca53e3a0c1e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-rhel8-operator@sha256:5a56609626834e2013db384d548d6167417c45b8272f9347e1104ca53e3a0c1e?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/hypershift-rhel8-operator&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:48623726a8a560458bea6213355052a1901e6cbf0b7cad1ae10dd6cb3523d6f2_ppc64le", + "product": { + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:48623726a8a560458bea6213355052a1901e6cbf0b7cad1ae10dd6cb3523d6f2_ppc64le", + "product_id": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:48623726a8a560458bea6213355052a1901e6cbf0b7cad1ae10dd6cb3523d6f2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/managedcluster-import-controller-rhel8@sha256:48623726a8a560458bea6213355052a1901e6cbf0b7cad1ae10dd6cb3523d6f2?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:f458bae6c5399eb3716398e7366e9a1810b201e0bb89a9c21ea30cc6a9b555b4_ppc64le", + "product": { + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:f458bae6c5399eb3716398e7366e9a1810b201e0bb89a9c21ea30cc6a9b555b4_ppc64le", + "product_id": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:f458bae6c5399eb3716398e7366e9a1810b201e0bb89a9c21ea30cc6a9b555b4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-managed-serviceaccount-rhel8@sha256:f458bae6c5399eb3716398e7366e9a1810b201e0bb89a9c21ea30cc6a9b555b4?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:f458bae6c5399eb3716398e7366e9a1810b201e0bb89a9c21ea30cc6a9b555b4_ppc64le", + "product": { + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:f458bae6c5399eb3716398e7366e9a1810b201e0bb89a9c21ea30cc6a9b555b4_ppc64le", + "product_id": "multicluster-engine/managed-serviceaccount-rhel8@sha256:f458bae6c5399eb3716398e7366e9a1810b201e0bb89a9c21ea30cc6a9b555b4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/managed-serviceaccount-rhel8@sha256:f458bae6c5399eb3716398e7366e9a1810b201e0bb89a9c21ea30cc6a9b555b4?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:e2a52d5d3ab3fd48deb265eee67a5af65c72fe0531a8cbfccace8350b19b484b_ppc64le", + "product": { + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:e2a52d5d3ab3fd48deb265eee67a5af65c72fe0531a8cbfccace8350b19b484b_ppc64le", + "product_id": "multicluster-engine/multicloud-manager-rhel8@sha256:e2a52d5d3ab3fd48deb265eee67a5af65c72fe0531a8cbfccace8350b19b484b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicloud-manager-rhel8@sha256:e2a52d5d3ab3fd48deb265eee67a5af65c72fe0531a8cbfccace8350b19b484b?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/multicloud-manager-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/must-gather-rhel8@sha256:02a8f2bf909ae85ce4a45deead724668412d35789a96dc1ea761f70ed67e8ddd_ppc64le", + "product": { + "name": "multicluster-engine/must-gather-rhel8@sha256:02a8f2bf909ae85ce4a45deead724668412d35789a96dc1ea761f70ed67e8ddd_ppc64le", + "product_id": "multicluster-engine/must-gather-rhel8@sha256:02a8f2bf909ae85ce4a45deead724668412d35789a96dc1ea761f70ed67e8ddd_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/must-gather-rhel8@sha256:02a8f2bf909ae85ce4a45deead724668412d35789a96dc1ea761f70ed67e8ddd?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/must-gather-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/mce-operator-bundle@sha256:011de123de5089c2678ca5ee697e5059908f3632d2dd2c4b24daa8c78e7c5e31_ppc64le", + "product": { + "name": "multicluster-engine/mce-operator-bundle@sha256:011de123de5089c2678ca5ee697e5059908f3632d2dd2c4b24daa8c78e7c5e31_ppc64le", + "product_id": "multicluster-engine/mce-operator-bundle@sha256:011de123de5089c2678ca5ee697e5059908f3632d2dd2c4b24daa8c78e7c5e31_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/mce-operator-bundle@sha256:011de123de5089c2678ca5ee697e5059908f3632d2dd2c4b24daa8c78e7c5e31?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/mce-operator-bundle&tag=v2.1.9-9" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/backplane-rhel8-operator@sha256:ad72ff95216c8c349357716e0aa467b6b960639e066678ed70b0ecd98207c794_ppc64le", + "product": { + "name": "multicluster-engine/backplane-rhel8-operator@sha256:ad72ff95216c8c349357716e0aa467b6b960639e066678ed70b0ecd98207c794_ppc64le", + "product_id": "multicluster-engine/backplane-rhel8-operator@sha256:ad72ff95216c8c349357716e0aa467b6b960639e066678ed70b0ecd98207c794_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/backplane-rhel8-operator@sha256:ad72ff95216c8c349357716e0aa467b6b960639e066678ed70b0ecd98207c794?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/backplane-rhel8-operator&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/placement-rhel8@sha256:3804df1f9f330358c8a989c9a7cc93b2ebb29f93d52797047333a578c12bc5bd_ppc64le", + "product": { + "name": "multicluster-engine/placement-rhel8@sha256:3804df1f9f330358c8a989c9a7cc93b2ebb29f93d52797047333a578c12bc5bd_ppc64le", + "product_id": "multicluster-engine/placement-rhel8@sha256:3804df1f9f330358c8a989c9a7cc93b2ebb29f93d52797047333a578c12bc5bd_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/placement-rhel8@sha256:3804df1f9f330358c8a989c9a7cc93b2ebb29f93d52797047333a578c12bc5bd?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/placement-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:52645339e18f528732950666a6b621e1fc834601ca36d8ef9c442c8e870d56f5_ppc64le", + "product": { + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:52645339e18f528732950666a6b621e1fc834601ca36d8ef9c442c8e870d56f5_ppc64le", + "product_id": "multicluster-engine/provider-credential-controller-rhel8@sha256:52645339e18f528732950666a6b621e1fc834601ca36d8ef9c442c8e870d56f5_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/provider-credential-controller-rhel8@sha256:52645339e18f528732950666a6b621e1fc834601ca36d8ef9c442c8e870d56f5?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/provider-credential-controller-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/registration-rhel8@sha256:e8a478f9c5c65cca626e1ad81ee4d2189c2145cdcb40e8076dfd90ccfb5a47ca_ppc64le", + "product": { + "name": "multicluster-engine/registration-rhel8@sha256:e8a478f9c5c65cca626e1ad81ee4d2189c2145cdcb40e8076dfd90ccfb5a47ca_ppc64le", + "product_id": "multicluster-engine/registration-rhel8@sha256:e8a478f9c5c65cca626e1ad81ee4d2189c2145cdcb40e8076dfd90ccfb5a47ca_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/registration-rhel8@sha256:e8a478f9c5c65cca626e1ad81ee4d2189c2145cdcb40e8076dfd90ccfb5a47ca?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/registration-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/registration-operator-rhel8@sha256:daf8b732403316c9bea81039a1f392f4cbbfd19b3ef46fe5880ac50a5f59a498_ppc64le", + "product": { + "name": "multicluster-engine/registration-operator-rhel8@sha256:daf8b732403316c9bea81039a1f392f4cbbfd19b3ef46fe5880ac50a5f59a498_ppc64le", + "product_id": "multicluster-engine/registration-operator-rhel8@sha256:daf8b732403316c9bea81039a1f392f4cbbfd19b3ef46fe5880ac50a5f59a498_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/registration-operator-rhel8@sha256:daf8b732403316c9bea81039a1f392f4cbbfd19b3ef46fe5880ac50a5f59a498?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/registration-operator-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/work-rhel8@sha256:47796108fa4b69db58d3f95bae8916053fe5433b0582babdac08c5a0472e5843_ppc64le", + "product": { + "name": "multicluster-engine/work-rhel8@sha256:47796108fa4b69db58d3f95bae8916053fe5433b0582babdac08c5a0472e5843_ppc64le", + "product_id": "multicluster-engine/work-rhel8@sha256:47796108fa4b69db58d3f95bae8916053fe5433b0582babdac08c5a0472e5843_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/work-rhel8@sha256:47796108fa4b69db58d3f95bae8916053fe5433b0582babdac08c5a0472e5843?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/work-rhel8&tag=v2.1.9-3" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "multicluster-engine/agent-service-rhel8@sha256:e4d2f2baebb2b65def3cd0570b7801c73e9b9e7fd6d42597458c0b68873a2879_arm64", + "product": { + "name": "multicluster-engine/agent-service-rhel8@sha256:e4d2f2baebb2b65def3cd0570b7801c73e9b9e7fd6d42597458c0b68873a2879_arm64", + "product_id": "multicluster-engine/agent-service-rhel8@sha256:e4d2f2baebb2b65def3cd0570b7801c73e9b9e7fd6d42597458c0b68873a2879_arm64", + "product_identification_helper": { + "purl": "pkg:oci/agent-service-rhel8@sha256:e4d2f2baebb2b65def3cd0570b7801c73e9b9e7fd6d42597458c0b68873a2879?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/agent-service-rhel8&tag=v2.1.9-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:1c497a7794e13760261ee52abc3c49d0f584e75e72ab6dbb0c407c0c3bb7a8f4_arm64", + "product": { + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:1c497a7794e13760261ee52abc3c49d0f584e75e72ab6dbb0c407c0c3bb7a8f4_arm64", + "product_id": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:1c497a7794e13760261ee52abc3c49d0f584e75e72ab6dbb0c407c0c3bb7a8f4_arm64", + "product_identification_helper": { + "purl": "pkg:oci/apiserver-network-proxy-rhel8@sha256:1c497a7794e13760261ee52abc3c49d0f584e75e72ab6dbb0c407c0c3bb7a8f4?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/apiserver-network-proxy-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:3ab9697d0cac9495e52aaf5e89dae7e62817d96c79220809689bb04043a19905_arm64", + "product": { + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:3ab9697d0cac9495e52aaf5e89dae7e62817d96c79220809689bb04043a19905_arm64", + "product_id": "multicluster-engine/assisted-image-service-rhel8@sha256:3ab9697d0cac9495e52aaf5e89dae7e62817d96c79220809689bb04043a19905_arm64", + "product_identification_helper": { + "purl": "pkg:oci/assisted-image-service-rhel8@sha256:3ab9697d0cac9495e52aaf5e89dae7e62817d96c79220809689bb04043a19905?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/assisted-image-service-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-agent-rhel8@sha256:eee64a2c454d28bf2465cbaeb54778a4666cba45d3aadeb19eb4a2a126316536_arm64", + "product": { + "name": "multicluster-engine/assisted-installer-agent-rhel8@sha256:eee64a2c454d28bf2465cbaeb54778a4666cba45d3aadeb19eb4a2a126316536_arm64", + "product_id": "multicluster-engine/assisted-installer-agent-rhel8@sha256:eee64a2c454d28bf2465cbaeb54778a4666cba45d3aadeb19eb4a2a126316536_arm64", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-agent-rhel8@sha256:eee64a2c454d28bf2465cbaeb54778a4666cba45d3aadeb19eb4a2a126316536?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-rhel8@sha256:1192df127493322bbc055859e8b157a3ebdb145079b463a69c86cef7935bb60b_arm64", + "product": { + "name": "multicluster-engine/assisted-installer-rhel8@sha256:1192df127493322bbc055859e8b157a3ebdb145079b463a69c86cef7935bb60b_arm64", + "product_id": "multicluster-engine/assisted-installer-rhel8@sha256:1192df127493322bbc055859e8b157a3ebdb145079b463a69c86cef7935bb60b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-rhel8@sha256:1192df127493322bbc055859e8b157a3ebdb145079b463a69c86cef7935bb60b?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:c1ced260adffac6d22ce06cc826ba4588f0923a0167391871662415fd238b89b_arm64", + "product": { + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:c1ced260adffac6d22ce06cc826ba4588f0923a0167391871662415fd238b89b_arm64", + "product_id": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:c1ced260adffac6d22ce06cc826ba4588f0923a0167391871662415fd238b89b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-reporter-rhel8@sha256:c1ced260adffac6d22ce06cc826ba4588f0923a0167391871662415fd238b89b?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-reporter-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:ff2bb5b6f1b5b91c958fdcb80a12710ea45b3edcf62be302fe895f85ed66aae0_arm64", + "product": { + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:ff2bb5b6f1b5b91c958fdcb80a12710ea45b3edcf62be302fe895f85ed66aae0_arm64", + "product_id": "multicluster-engine/aws-encryption-provider-rhel8@sha256:ff2bb5b6f1b5b91c958fdcb80a12710ea45b3edcf62be302fe895f85ed66aae0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/aws-encryption-provider-rhel8@sha256:ff2bb5b6f1b5b91c958fdcb80a12710ea45b3edcf62be302fe895f85ed66aae0?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/aws-encryption-provider-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-rhel8@sha256:a37f69d9f567ff839a23b8841c256d3a584817c37509c506447fb5dc02ba203a_arm64", + "product": { + "name": "multicluster-engine/cluster-api-rhel8@sha256:a37f69d9f567ff839a23b8841c256d3a584817c37509c506447fb5dc02ba203a_arm64", + "product_id": "multicluster-engine/cluster-api-rhel8@sha256:a37f69d9f567ff839a23b8841c256d3a584817c37509c506447fb5dc02ba203a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-rhel8@sha256:a37f69d9f567ff839a23b8841c256d3a584817c37509c506447fb5dc02ba203a?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:4091ee0eb09fbb381799968fe7bb2469e7b962b7f1caa534cff3b8b11b14317d_arm64", + "product": { + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:4091ee0eb09fbb381799968fe7bb2469e7b962b7f1caa534cff3b8b11b14317d_arm64", + "product_id": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:4091ee0eb09fbb381799968fe7bb2469e7b962b7f1caa534cff3b8b11b14317d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:4091ee0eb09fbb381799968fe7bb2469e7b962b7f1caa534cff3b8b11b14317d?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:4091ee0eb09fbb381799968fe7bb2469e7b962b7f1caa534cff3b8b11b14317d_arm64", + "product": { + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:4091ee0eb09fbb381799968fe7bb2469e7b962b7f1caa534cff3b8b11b14317d_arm64", + "product_id": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:4091ee0eb09fbb381799968fe7bb2469e7b962b7f1caa534cff3b8b11b14317d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-agent-rhel8@sha256:4091ee0eb09fbb381799968fe7bb2469e7b962b7f1caa534cff3b8b11b14317d?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:061589fb5e3aecda461370e0d49a221b88cbbc7a3302062f37a611a518c0b96d_arm64", + "product": { + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:061589fb5e3aecda461370e0d49a221b88cbbc7a3302062f37a611a518c0b96d_arm64", + "product_id": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:061589fb5e3aecda461370e0d49a221b88cbbc7a3302062f37a611a518c0b96d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-aws-rhel8@sha256:061589fb5e3aecda461370e0d49a221b88cbbc7a3302062f37a611a518c0b96d?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:2756166537b1c7464b866f9fd403180c548529b9691d590beafe80d2039c9830_arm64", + "product": { + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:2756166537b1c7464b866f9fd403180c548529b9691d590beafe80d2039c9830_arm64", + "product_id": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:2756166537b1c7464b866f9fd403180c548529b9691d590beafe80d2039c9830_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-azure-rhel8@sha256:2756166537b1c7464b866f9fd403180c548529b9691d590beafe80d2039c9830?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-azure-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:c9ff9535d8bfb2e5a48afce08010df20a7a716eae2f7b9ffacf125d4d916050a_arm64", + "product": { + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:c9ff9535d8bfb2e5a48afce08010df20a7a716eae2f7b9ffacf125d4d916050a_arm64", + "product_id": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:c9ff9535d8bfb2e5a48afce08010df20a7a716eae2f7b9ffacf125d4d916050a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-kubevirt-rhel8@sha256:c9ff9535d8bfb2e5a48afce08010df20a7a716eae2f7b9ffacf125d4d916050a?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:a8c676e879dba646a62937e9ee320baeb603015c245839cd233972c2dbcffa3c_arm64", + "product": { + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:a8c676e879dba646a62937e9ee320baeb603015c245839cd233972c2dbcffa3c_arm64", + "product_id": "multicluster-engine/clusterclaims-controller-rhel8@sha256:a8c676e879dba646a62937e9ee320baeb603015c245839cd233972c2dbcffa3c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/clusterclaims-controller-rhel8@sha256:a8c676e879dba646a62937e9ee320baeb603015c245839cd233972c2dbcffa3c?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:1ed8f6239324f9467d51259493c3f995401f9f4af9d2a1528cf5c068738cfc98_arm64", + "product": { + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:1ed8f6239324f9467d51259493c3f995401f9f4af9d2a1528cf5c068738cfc98_arm64", + "product_id": "multicluster-engine/cluster-curator-controller-rhel8@sha256:1ed8f6239324f9467d51259493c3f995401f9f4af9d2a1528cf5c068738cfc98_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-curator-controller-rhel8@sha256:1ed8f6239324f9467d51259493c3f995401f9f4af9d2a1528cf5c068738cfc98?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:0c783133fac03d0afb7c7b03123d41cc727cf04fc7ae27e199c39a15518ef7d6_arm64", + "product": { + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:0c783133fac03d0afb7c7b03123d41cc727cf04fc7ae27e199c39a15518ef7d6_arm64", + "product_id": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:0c783133fac03d0afb7c7b03123d41cc727cf04fc7ae27e199c39a15518ef7d6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/clusterlifecycle-state-metrics-rhel8@sha256:0c783133fac03d0afb7c7b03123d41cc727cf04fc7ae27e199c39a15518ef7d6?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:6fbf8902763010dff952fdf95d351631bdba55fd9fd439e006d092c12ab74c57_arm64", + "product": { + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:6fbf8902763010dff952fdf95d351631bdba55fd9fd439e006d092c12ab74c57_arm64", + "product_id": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:6fbf8902763010dff952fdf95d351631bdba55fd9fd439e006d092c12ab74c57_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-proxy-addon-rhel8@sha256:6fbf8902763010dff952fdf95d351631bdba55fd9fd439e006d092c12ab74c57?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:e42c22402d3d8e54519c941885931d9d97dfe252efae8d6f828a86a5e05f730e_arm64", + "product": { + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:e42c22402d3d8e54519c941885931d9d97dfe252efae8d6f828a86a5e05f730e_arm64", + "product_id": "multicluster-engine/cluster-proxy-rhel8@sha256:e42c22402d3d8e54519c941885931d9d97dfe252efae8d6f828a86a5e05f730e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-proxy-rhel8@sha256:e42c22402d3d8e54519c941885931d9d97dfe252efae8d6f828a86a5e05f730e?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:a3bc108ce725d7723a0ac9649a95596398a96ebc188dc05b507a58908a797924_arm64", + "product": { + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:a3bc108ce725d7723a0ac9649a95596398a96ebc188dc05b507a58908a797924_arm64", + "product_id": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:a3bc108ce725d7723a0ac9649a95596398a96ebc188dc05b507a58908a797924_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-console-mce-rhel8@sha256:a3bc108ce725d7723a0ac9649a95596398a96ebc188dc05b507a58908a797924?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-console-mce-rhel8&tag=v2.1.9-6" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/console-mce-rhel8@sha256:a3bc108ce725d7723a0ac9649a95596398a96ebc188dc05b507a58908a797924_arm64", + "product": { + "name": "multicluster-engine/console-mce-rhel8@sha256:a3bc108ce725d7723a0ac9649a95596398a96ebc188dc05b507a58908a797924_arm64", + "product_id": "multicluster-engine/console-mce-rhel8@sha256:a3bc108ce725d7723a0ac9649a95596398a96ebc188dc05b507a58908a797924_arm64", + "product_identification_helper": { + "purl": "pkg:oci/console-mce-rhel8@sha256:a3bc108ce725d7723a0ac9649a95596398a96ebc188dc05b507a58908a797924?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/console-mce-rhel8&tag=v2.1.9-6" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/discovery-rhel8@sha256:88c01435b5371f5474f354611220461af6a8bc6de4a6c20a7163effc919b5fc4_arm64", + "product": { + "name": "multicluster-engine/discovery-rhel8@sha256:88c01435b5371f5474f354611220461af6a8bc6de4a6c20a7163effc919b5fc4_arm64", + "product_id": "multicluster-engine/discovery-rhel8@sha256:88c01435b5371f5474f354611220461af6a8bc6de4a6c20a7163effc919b5fc4_arm64", + "product_identification_helper": { + "purl": "pkg:oci/discovery-rhel8@sha256:88c01435b5371f5474f354611220461af6a8bc6de4a6c20a7163effc919b5fc4?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/discovery-rhel8&tag=v2.1.9-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hive-rhel8@sha256:34050abfd51da7d34f486407e680a438737a5a4f1553da3091e4e4e45705bf92_arm64", + "product": { + "name": "multicluster-engine/hive-rhel8@sha256:34050abfd51da7d34f486407e680a438737a5a4f1553da3091e4e4e45705bf92_arm64", + "product_id": "multicluster-engine/hive-rhel8@sha256:34050abfd51da7d34f486407e680a438737a5a4f1553da3091e4e4e45705bf92_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hive-rhel8@sha256:34050abfd51da7d34f486407e680a438737a5a4f1553da3091e4e4e45705bf92?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/hive-rhel8&tag=v2.1.9-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:3230b552869891bebb92b64554dcef1f4314237521b66bd45430c9ef1ea2151e_arm64", + "product": { + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:3230b552869891bebb92b64554dcef1f4314237521b66bd45430c9ef1ea2151e_arm64", + "product_id": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:3230b552869891bebb92b64554dcef1f4314237521b66bd45430c9ef1ea2151e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-addon-rhel8-operator@sha256:3230b552869891bebb92b64554dcef1f4314237521b66bd45430c9ef1ea2151e?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/hypershift-addon-rhel8-operator&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:3230b552869891bebb92b64554dcef1f4314237521b66bd45430c9ef1ea2151e_arm64", + "product": { + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:3230b552869891bebb92b64554dcef1f4314237521b66bd45430c9ef1ea2151e_arm64", + "product_id": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:3230b552869891bebb92b64554dcef1f4314237521b66bd45430c9ef1ea2151e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-hypershift-addon-rhel8-operator@sha256:3230b552869891bebb92b64554dcef1f4314237521b66bd45430c9ef1ea2151e?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-deployment-controller-rhel8@sha256:9378ee57cfa430a8053b723107ffbb012253959c0b7bb613acf782e5d97ee037_arm64", + "product": { + "name": "multicluster-engine/hypershift-deployment-controller-rhel8@sha256:9378ee57cfa430a8053b723107ffbb012253959c0b7bb613acf782e5d97ee037_arm64", + "product_id": "multicluster-engine/hypershift-deployment-controller-rhel8@sha256:9378ee57cfa430a8053b723107ffbb012253959c0b7bb613acf782e5d97ee037_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-deployment-controller-rhel8@sha256:9378ee57cfa430a8053b723107ffbb012253959c0b7bb613acf782e5d97ee037?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/hypershift-deployment-controller-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:9378ee57cfa430a8053b723107ffbb012253959c0b7bb613acf782e5d97ee037_arm64", + "product": { + "name": "multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:9378ee57cfa430a8053b723107ffbb012253959c0b7bb613acf782e5d97ee037_arm64", + "product_id": "multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:9378ee57cfa430a8053b723107ffbb012253959c0b7bb613acf782e5d97ee037_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:9378ee57cfa430a8053b723107ffbb012253959c0b7bb613acf782e5d97ee037?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:2b87a0af2b7380bcb64f661591a53019c74f2688d121aacfc7e6cfa4af2233a5_arm64", + "product": { + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:2b87a0af2b7380bcb64f661591a53019c74f2688d121aacfc7e6cfa4af2233a5_arm64", + "product_id": "multicluster-engine/hypershift-rhel8-operator@sha256:2b87a0af2b7380bcb64f661591a53019c74f2688d121aacfc7e6cfa4af2233a5_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-rhel8-operator@sha256:2b87a0af2b7380bcb64f661591a53019c74f2688d121aacfc7e6cfa4af2233a5?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/hypershift-rhel8-operator&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:9c3921f6045c6ebade2711f8012aad1cf3744f1d83e6ac069011e6da2d07a175_arm64", + "product": { + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:9c3921f6045c6ebade2711f8012aad1cf3744f1d83e6ac069011e6da2d07a175_arm64", + "product_id": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:9c3921f6045c6ebade2711f8012aad1cf3744f1d83e6ac069011e6da2d07a175_arm64", + "product_identification_helper": { + "purl": "pkg:oci/managedcluster-import-controller-rhel8@sha256:9c3921f6045c6ebade2711f8012aad1cf3744f1d83e6ac069011e6da2d07a175?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:514d2f20b198143d54bb902622d71fda8c8af1fcb90b6a4ed1fd856f73894bda_arm64", + "product": { + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:514d2f20b198143d54bb902622d71fda8c8af1fcb90b6a4ed1fd856f73894bda_arm64", + "product_id": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:514d2f20b198143d54bb902622d71fda8c8af1fcb90b6a4ed1fd856f73894bda_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-managed-serviceaccount-rhel8@sha256:514d2f20b198143d54bb902622d71fda8c8af1fcb90b6a4ed1fd856f73894bda?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:514d2f20b198143d54bb902622d71fda8c8af1fcb90b6a4ed1fd856f73894bda_arm64", + "product": { + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:514d2f20b198143d54bb902622d71fda8c8af1fcb90b6a4ed1fd856f73894bda_arm64", + "product_id": "multicluster-engine/managed-serviceaccount-rhel8@sha256:514d2f20b198143d54bb902622d71fda8c8af1fcb90b6a4ed1fd856f73894bda_arm64", + "product_identification_helper": { + "purl": "pkg:oci/managed-serviceaccount-rhel8@sha256:514d2f20b198143d54bb902622d71fda8c8af1fcb90b6a4ed1fd856f73894bda?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:80f1d2212e182e8a04dc66357cf0e5e5e29b6918907ee2aa7ee32dca0bc0703f_arm64", + "product": { + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:80f1d2212e182e8a04dc66357cf0e5e5e29b6918907ee2aa7ee32dca0bc0703f_arm64", + "product_id": "multicluster-engine/multicloud-manager-rhel8@sha256:80f1d2212e182e8a04dc66357cf0e5e5e29b6918907ee2aa7ee32dca0bc0703f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicloud-manager-rhel8@sha256:80f1d2212e182e8a04dc66357cf0e5e5e29b6918907ee2aa7ee32dca0bc0703f?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/multicloud-manager-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/must-gather-rhel8@sha256:820875caa436ff17f1a84fcb36f5756cbe7b5a4de865d1f359dbea4c27beb849_arm64", + "product": { + "name": "multicluster-engine/must-gather-rhel8@sha256:820875caa436ff17f1a84fcb36f5756cbe7b5a4de865d1f359dbea4c27beb849_arm64", + "product_id": "multicluster-engine/must-gather-rhel8@sha256:820875caa436ff17f1a84fcb36f5756cbe7b5a4de865d1f359dbea4c27beb849_arm64", + "product_identification_helper": { + "purl": "pkg:oci/must-gather-rhel8@sha256:820875caa436ff17f1a84fcb36f5756cbe7b5a4de865d1f359dbea4c27beb849?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/must-gather-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/backplane-rhel8-operator@sha256:b49964f8fb3889c10d79c91253ae877e27bc1b9d69b75c9298fb8bf320d3fc2c_arm64", + "product": { + "name": "multicluster-engine/backplane-rhel8-operator@sha256:b49964f8fb3889c10d79c91253ae877e27bc1b9d69b75c9298fb8bf320d3fc2c_arm64", + "product_id": "multicluster-engine/backplane-rhel8-operator@sha256:b49964f8fb3889c10d79c91253ae877e27bc1b9d69b75c9298fb8bf320d3fc2c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/backplane-rhel8-operator@sha256:b49964f8fb3889c10d79c91253ae877e27bc1b9d69b75c9298fb8bf320d3fc2c?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/backplane-rhel8-operator&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/placement-rhel8@sha256:f2943467eba0108beb2501f0cdd88b50855c5f958e586883c87026d33976351c_arm64", + "product": { + "name": "multicluster-engine/placement-rhel8@sha256:f2943467eba0108beb2501f0cdd88b50855c5f958e586883c87026d33976351c_arm64", + "product_id": "multicluster-engine/placement-rhel8@sha256:f2943467eba0108beb2501f0cdd88b50855c5f958e586883c87026d33976351c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/placement-rhel8@sha256:f2943467eba0108beb2501f0cdd88b50855c5f958e586883c87026d33976351c?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/placement-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:7a6ee6a9d4e47132decbfc5dc4ebb4dd18fca42d2161deb6aec67ed64e71b919_arm64", + "product": { + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:7a6ee6a9d4e47132decbfc5dc4ebb4dd18fca42d2161deb6aec67ed64e71b919_arm64", + "product_id": "multicluster-engine/provider-credential-controller-rhel8@sha256:7a6ee6a9d4e47132decbfc5dc4ebb4dd18fca42d2161deb6aec67ed64e71b919_arm64", + "product_identification_helper": { + "purl": "pkg:oci/provider-credential-controller-rhel8@sha256:7a6ee6a9d4e47132decbfc5dc4ebb4dd18fca42d2161deb6aec67ed64e71b919?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/provider-credential-controller-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/registration-rhel8@sha256:cba077e67849656cd1943d30b8330184fed68bced32bc6f3b06e7998c3b5d3f8_arm64", + "product": { + "name": "multicluster-engine/registration-rhel8@sha256:cba077e67849656cd1943d30b8330184fed68bced32bc6f3b06e7998c3b5d3f8_arm64", + "product_id": "multicluster-engine/registration-rhel8@sha256:cba077e67849656cd1943d30b8330184fed68bced32bc6f3b06e7998c3b5d3f8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/registration-rhel8@sha256:cba077e67849656cd1943d30b8330184fed68bced32bc6f3b06e7998c3b5d3f8?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/registration-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/registration-operator-rhel8@sha256:42fbc7d17ba6a719c0590200378b1462dba715cfafe2091200990a746c966d72_arm64", + "product": { + "name": "multicluster-engine/registration-operator-rhel8@sha256:42fbc7d17ba6a719c0590200378b1462dba715cfafe2091200990a746c966d72_arm64", + "product_id": "multicluster-engine/registration-operator-rhel8@sha256:42fbc7d17ba6a719c0590200378b1462dba715cfafe2091200990a746c966d72_arm64", + "product_identification_helper": { + "purl": "pkg:oci/registration-operator-rhel8@sha256:42fbc7d17ba6a719c0590200378b1462dba715cfafe2091200990a746c966d72?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/registration-operator-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/work-rhel8@sha256:fb0710da904c7945076f739c6fe9b47928eec1231da3877b52c23dc929e47d9b_arm64", + "product": { + "name": "multicluster-engine/work-rhel8@sha256:fb0710da904c7945076f739c6fe9b47928eec1231da3877b52c23dc929e47d9b_arm64", + "product_id": "multicluster-engine/work-rhel8@sha256:fb0710da904c7945076f739c6fe9b47928eec1231da3877b52c23dc929e47d9b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/work-rhel8@sha256:fb0710da904c7945076f739c6fe9b47928eec1231da3877b52c23dc929e47d9b?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/work-rhel8&tag=v2.1.9-3" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "multicluster-engine/agent-service-rhel8@sha256:fe5cae48399563b7eb7cbd897869a999eb9ccd36da28f07c4cbfe874a9d8913f_s390x", + "product": { + "name": "multicluster-engine/agent-service-rhel8@sha256:fe5cae48399563b7eb7cbd897869a999eb9ccd36da28f07c4cbfe874a9d8913f_s390x", + "product_id": "multicluster-engine/agent-service-rhel8@sha256:fe5cae48399563b7eb7cbd897869a999eb9ccd36da28f07c4cbfe874a9d8913f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/agent-service-rhel8@sha256:fe5cae48399563b7eb7cbd897869a999eb9ccd36da28f07c4cbfe874a9d8913f?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/agent-service-rhel8&tag=v2.1.9-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:5178c528b0953ad89d279130f41ebe8fa06d505d9c946817869ece5a9077f7bc_s390x", + "product": { + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:5178c528b0953ad89d279130f41ebe8fa06d505d9c946817869ece5a9077f7bc_s390x", + "product_id": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:5178c528b0953ad89d279130f41ebe8fa06d505d9c946817869ece5a9077f7bc_s390x", + "product_identification_helper": { + "purl": "pkg:oci/apiserver-network-proxy-rhel8@sha256:5178c528b0953ad89d279130f41ebe8fa06d505d9c946817869ece5a9077f7bc?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/apiserver-network-proxy-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:74ee62db42c41d4f1883481277fcd0e3738b5a4c07c7dabd5dac992efc1d043a_s390x", + "product": { + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:74ee62db42c41d4f1883481277fcd0e3738b5a4c07c7dabd5dac992efc1d043a_s390x", + "product_id": "multicluster-engine/assisted-image-service-rhel8@sha256:74ee62db42c41d4f1883481277fcd0e3738b5a4c07c7dabd5dac992efc1d043a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/assisted-image-service-rhel8@sha256:74ee62db42c41d4f1883481277fcd0e3738b5a4c07c7dabd5dac992efc1d043a?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/assisted-image-service-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:6c1c16758e303952426bd5d434a1838270f6ebaec041e3dc769379a0d36a7115_s390x", + "product": { + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:6c1c16758e303952426bd5d434a1838270f6ebaec041e3dc769379a0d36a7115_s390x", + "product_id": "multicluster-engine/aws-encryption-provider-rhel8@sha256:6c1c16758e303952426bd5d434a1838270f6ebaec041e3dc769379a0d36a7115_s390x", + "product_identification_helper": { + "purl": "pkg:oci/aws-encryption-provider-rhel8@sha256:6c1c16758e303952426bd5d434a1838270f6ebaec041e3dc769379a0d36a7115?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/aws-encryption-provider-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-rhel8@sha256:b47cfd5236bbe1cf3d5416de92f614606feee351c65df6334f7c6ab8508532df_s390x", + "product": { + "name": "multicluster-engine/cluster-api-rhel8@sha256:b47cfd5236bbe1cf3d5416de92f614606feee351c65df6334f7c6ab8508532df_s390x", + "product_id": "multicluster-engine/cluster-api-rhel8@sha256:b47cfd5236bbe1cf3d5416de92f614606feee351c65df6334f7c6ab8508532df_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-rhel8@sha256:b47cfd5236bbe1cf3d5416de92f614606feee351c65df6334f7c6ab8508532df?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-api-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:5967fbe0df939721d1866bbd16f63554e441530e913220a757b8018c5eedc539_s390x", + "product": { + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:5967fbe0df939721d1866bbd16f63554e441530e913220a757b8018c5eedc539_s390x", + "product_id": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:5967fbe0df939721d1866bbd16f63554e441530e913220a757b8018c5eedc539_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:5967fbe0df939721d1866bbd16f63554e441530e913220a757b8018c5eedc539?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:5967fbe0df939721d1866bbd16f63554e441530e913220a757b8018c5eedc539_s390x", + "product": { + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:5967fbe0df939721d1866bbd16f63554e441530e913220a757b8018c5eedc539_s390x", + "product_id": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:5967fbe0df939721d1866bbd16f63554e441530e913220a757b8018c5eedc539_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-agent-rhel8@sha256:5967fbe0df939721d1866bbd16f63554e441530e913220a757b8018c5eedc539?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:ef344f4440a3b5548244c125e5af2dc5d0e42884614dd7f457301c88fb66e593_s390x", + "product": { + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:ef344f4440a3b5548244c125e5af2dc5d0e42884614dd7f457301c88fb66e593_s390x", + "product_id": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:ef344f4440a3b5548244c125e5af2dc5d0e42884614dd7f457301c88fb66e593_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-aws-rhel8@sha256:ef344f4440a3b5548244c125e5af2dc5d0e42884614dd7f457301c88fb66e593?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:0f5f542e1928b7c504b4c36f551aef5b88e7f29b807a9ef10a65b09d4db03a98_s390x", + "product": { + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:0f5f542e1928b7c504b4c36f551aef5b88e7f29b807a9ef10a65b09d4db03a98_s390x", + "product_id": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:0f5f542e1928b7c504b4c36f551aef5b88e7f29b807a9ef10a65b09d4db03a98_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-azure-rhel8@sha256:0f5f542e1928b7c504b4c36f551aef5b88e7f29b807a9ef10a65b09d4db03a98?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-azure-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:3565db257d58587ade8b160f75daf59a64fad2f7accbd85e5a6e9f00731a802d_s390x", + "product": { + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:3565db257d58587ade8b160f75daf59a64fad2f7accbd85e5a6e9f00731a802d_s390x", + "product_id": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:3565db257d58587ade8b160f75daf59a64fad2f7accbd85e5a6e9f00731a802d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-kubevirt-rhel8@sha256:3565db257d58587ade8b160f75daf59a64fad2f7accbd85e5a6e9f00731a802d?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:96eec68f9625768ee065b148ec81449edf904ad1d7f80cdc9d7b11a9ca89f8c7_s390x", + "product": { + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:96eec68f9625768ee065b148ec81449edf904ad1d7f80cdc9d7b11a9ca89f8c7_s390x", + "product_id": "multicluster-engine/clusterclaims-controller-rhel8@sha256:96eec68f9625768ee065b148ec81449edf904ad1d7f80cdc9d7b11a9ca89f8c7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/clusterclaims-controller-rhel8@sha256:96eec68f9625768ee065b148ec81449edf904ad1d7f80cdc9d7b11a9ca89f8c7?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:d224cf1c09a31dec20f9a17ec8067f4630926f6dd42c7bf9abe7ba4a8e9c0cc7_s390x", + "product": { + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:d224cf1c09a31dec20f9a17ec8067f4630926f6dd42c7bf9abe7ba4a8e9c0cc7_s390x", + "product_id": "multicluster-engine/cluster-curator-controller-rhel8@sha256:d224cf1c09a31dec20f9a17ec8067f4630926f6dd42c7bf9abe7ba4a8e9c0cc7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-curator-controller-rhel8@sha256:d224cf1c09a31dec20f9a17ec8067f4630926f6dd42c7bf9abe7ba4a8e9c0cc7?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:0a8a9b20e47f462bd3c816d5aaa0f64222f7cb5b473fda4f9f4628439e4e8a9c_s390x", + "product": { + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:0a8a9b20e47f462bd3c816d5aaa0f64222f7cb5b473fda4f9f4628439e4e8a9c_s390x", + "product_id": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:0a8a9b20e47f462bd3c816d5aaa0f64222f7cb5b473fda4f9f4628439e4e8a9c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/clusterlifecycle-state-metrics-rhel8@sha256:0a8a9b20e47f462bd3c816d5aaa0f64222f7cb5b473fda4f9f4628439e4e8a9c?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:38831cc00e0d94c56cba3db3f172afabecbc556ff39ee04b50021d223d936889_s390x", + "product": { + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:38831cc00e0d94c56cba3db3f172afabecbc556ff39ee04b50021d223d936889_s390x", + "product_id": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:38831cc00e0d94c56cba3db3f172afabecbc556ff39ee04b50021d223d936889_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-proxy-addon-rhel8@sha256:38831cc00e0d94c56cba3db3f172afabecbc556ff39ee04b50021d223d936889?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:a8cc2a8a191e381653850554d85f24a6eb4ceed521c9ea2210ba8b7ac446a46c_s390x", + "product": { + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:a8cc2a8a191e381653850554d85f24a6eb4ceed521c9ea2210ba8b7ac446a46c_s390x", + "product_id": "multicluster-engine/cluster-proxy-rhel8@sha256:a8cc2a8a191e381653850554d85f24a6eb4ceed521c9ea2210ba8b7ac446a46c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-proxy-rhel8@sha256:a8cc2a8a191e381653850554d85f24a6eb4ceed521c9ea2210ba8b7ac446a46c?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:ffebafa92bc54bdcdda7bfffae465c47802be7f2a28c804f28e380952c25d60a_s390x", + "product": { + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:ffebafa92bc54bdcdda7bfffae465c47802be7f2a28c804f28e380952c25d60a_s390x", + "product_id": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:ffebafa92bc54bdcdda7bfffae465c47802be7f2a28c804f28e380952c25d60a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-console-mce-rhel8@sha256:ffebafa92bc54bdcdda7bfffae465c47802be7f2a28c804f28e380952c25d60a?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-console-mce-rhel8&tag=v2.1.9-6" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/console-mce-rhel8@sha256:ffebafa92bc54bdcdda7bfffae465c47802be7f2a28c804f28e380952c25d60a_s390x", + "product": { + "name": "multicluster-engine/console-mce-rhel8@sha256:ffebafa92bc54bdcdda7bfffae465c47802be7f2a28c804f28e380952c25d60a_s390x", + "product_id": "multicluster-engine/console-mce-rhel8@sha256:ffebafa92bc54bdcdda7bfffae465c47802be7f2a28c804f28e380952c25d60a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/console-mce-rhel8@sha256:ffebafa92bc54bdcdda7bfffae465c47802be7f2a28c804f28e380952c25d60a?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/console-mce-rhel8&tag=v2.1.9-6" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/discovery-rhel8@sha256:f573e30a6d17654245f2063acd354d501e6a41ee8430a596724e27beb7c24127_s390x", + "product": { + "name": "multicluster-engine/discovery-rhel8@sha256:f573e30a6d17654245f2063acd354d501e6a41ee8430a596724e27beb7c24127_s390x", + "product_id": "multicluster-engine/discovery-rhel8@sha256:f573e30a6d17654245f2063acd354d501e6a41ee8430a596724e27beb7c24127_s390x", + "product_identification_helper": { + "purl": "pkg:oci/discovery-rhel8@sha256:f573e30a6d17654245f2063acd354d501e6a41ee8430a596724e27beb7c24127?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/discovery-rhel8&tag=v2.1.9-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hive-rhel8@sha256:a5c94471bce33585a2b911c412e6c2f7ff95b4dcdd98d6c88ff8059e4613c658_s390x", + "product": { + "name": "multicluster-engine/hive-rhel8@sha256:a5c94471bce33585a2b911c412e6c2f7ff95b4dcdd98d6c88ff8059e4613c658_s390x", + "product_id": "multicluster-engine/hive-rhel8@sha256:a5c94471bce33585a2b911c412e6c2f7ff95b4dcdd98d6c88ff8059e4613c658_s390x", + "product_identification_helper": { + "purl": "pkg:oci/hive-rhel8@sha256:a5c94471bce33585a2b911c412e6c2f7ff95b4dcdd98d6c88ff8059e4613c658?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/hive-rhel8&tag=v2.1.9-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:48cbe75e69b4fbc08815d57acaa0ca95e64b8d3fb3d464f0806c5cbda072d54e_s390x", + "product": { + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:48cbe75e69b4fbc08815d57acaa0ca95e64b8d3fb3d464f0806c5cbda072d54e_s390x", + "product_id": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:48cbe75e69b4fbc08815d57acaa0ca95e64b8d3fb3d464f0806c5cbda072d54e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-addon-rhel8-operator@sha256:48cbe75e69b4fbc08815d57acaa0ca95e64b8d3fb3d464f0806c5cbda072d54e?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/hypershift-addon-rhel8-operator&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:48cbe75e69b4fbc08815d57acaa0ca95e64b8d3fb3d464f0806c5cbda072d54e_s390x", + "product": { + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:48cbe75e69b4fbc08815d57acaa0ca95e64b8d3fb3d464f0806c5cbda072d54e_s390x", + "product_id": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:48cbe75e69b4fbc08815d57acaa0ca95e64b8d3fb3d464f0806c5cbda072d54e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-hypershift-addon-rhel8-operator@sha256:48cbe75e69b4fbc08815d57acaa0ca95e64b8d3fb3d464f0806c5cbda072d54e?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-deployment-controller-rhel8@sha256:2cd2c968313550d8b59c790b954c3e2d44b6506af803e4260d468ef7d2cd9269_s390x", + "product": { + "name": "multicluster-engine/hypershift-deployment-controller-rhel8@sha256:2cd2c968313550d8b59c790b954c3e2d44b6506af803e4260d468ef7d2cd9269_s390x", + "product_id": "multicluster-engine/hypershift-deployment-controller-rhel8@sha256:2cd2c968313550d8b59c790b954c3e2d44b6506af803e4260d468ef7d2cd9269_s390x", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-deployment-controller-rhel8@sha256:2cd2c968313550d8b59c790b954c3e2d44b6506af803e4260d468ef7d2cd9269?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/hypershift-deployment-controller-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:2cd2c968313550d8b59c790b954c3e2d44b6506af803e4260d468ef7d2cd9269_s390x", + "product": { + "name": "multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:2cd2c968313550d8b59c790b954c3e2d44b6506af803e4260d468ef7d2cd9269_s390x", + "product_id": "multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:2cd2c968313550d8b59c790b954c3e2d44b6506af803e4260d468ef7d2cd9269_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:2cd2c968313550d8b59c790b954c3e2d44b6506af803e4260d468ef7d2cd9269?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:a779b2342a6ab6a6d19dced0e28332ce995cfa992274efa2abddca5d1f43095b_s390x", + "product": { + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:a779b2342a6ab6a6d19dced0e28332ce995cfa992274efa2abddca5d1f43095b_s390x", + "product_id": "multicluster-engine/hypershift-rhel8-operator@sha256:a779b2342a6ab6a6d19dced0e28332ce995cfa992274efa2abddca5d1f43095b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-rhel8-operator@sha256:a779b2342a6ab6a6d19dced0e28332ce995cfa992274efa2abddca5d1f43095b?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/hypershift-rhel8-operator&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:fb25df455a49282672c4df1961167b04056c40218a0566db8f9106c670cf0bf5_s390x", + "product": { + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:fb25df455a49282672c4df1961167b04056c40218a0566db8f9106c670cf0bf5_s390x", + "product_id": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:fb25df455a49282672c4df1961167b04056c40218a0566db8f9106c670cf0bf5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/managedcluster-import-controller-rhel8@sha256:fb25df455a49282672c4df1961167b04056c40218a0566db8f9106c670cf0bf5?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:9054fb2d0b79bea4c61795ef853685dac2c4d4f59f03d674ab416910ee452bd9_s390x", + "product": { + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:9054fb2d0b79bea4c61795ef853685dac2c4d4f59f03d674ab416910ee452bd9_s390x", + "product_id": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:9054fb2d0b79bea4c61795ef853685dac2c4d4f59f03d674ab416910ee452bd9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-managed-serviceaccount-rhel8@sha256:9054fb2d0b79bea4c61795ef853685dac2c4d4f59f03d674ab416910ee452bd9?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:9054fb2d0b79bea4c61795ef853685dac2c4d4f59f03d674ab416910ee452bd9_s390x", + "product": { + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:9054fb2d0b79bea4c61795ef853685dac2c4d4f59f03d674ab416910ee452bd9_s390x", + "product_id": "multicluster-engine/managed-serviceaccount-rhel8@sha256:9054fb2d0b79bea4c61795ef853685dac2c4d4f59f03d674ab416910ee452bd9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/managed-serviceaccount-rhel8@sha256:9054fb2d0b79bea4c61795ef853685dac2c4d4f59f03d674ab416910ee452bd9?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:f09a9243dc44b3149e8f8744cbb1db47e7914630efb8684b0c86d6fc2c8d7edc_s390x", + "product": { + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:f09a9243dc44b3149e8f8744cbb1db47e7914630efb8684b0c86d6fc2c8d7edc_s390x", + "product_id": "multicluster-engine/multicloud-manager-rhel8@sha256:f09a9243dc44b3149e8f8744cbb1db47e7914630efb8684b0c86d6fc2c8d7edc_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicloud-manager-rhel8@sha256:f09a9243dc44b3149e8f8744cbb1db47e7914630efb8684b0c86d6fc2c8d7edc?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/multicloud-manager-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/must-gather-rhel8@sha256:aab9f0cebaa1c0db1e8bb574b9a12f87277442686080238e920508f27d02d4de_s390x", + "product": { + "name": "multicluster-engine/must-gather-rhel8@sha256:aab9f0cebaa1c0db1e8bb574b9a12f87277442686080238e920508f27d02d4de_s390x", + "product_id": "multicluster-engine/must-gather-rhel8@sha256:aab9f0cebaa1c0db1e8bb574b9a12f87277442686080238e920508f27d02d4de_s390x", + "product_identification_helper": { + "purl": "pkg:oci/must-gather-rhel8@sha256:aab9f0cebaa1c0db1e8bb574b9a12f87277442686080238e920508f27d02d4de?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/must-gather-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/mce-operator-bundle@sha256:5e4711dd2c70883ae2b8dedeee8fcd1cc03d20c3fe1e0467156a329ee31077cd_s390x", + "product": { + "name": "multicluster-engine/mce-operator-bundle@sha256:5e4711dd2c70883ae2b8dedeee8fcd1cc03d20c3fe1e0467156a329ee31077cd_s390x", + "product_id": "multicluster-engine/mce-operator-bundle@sha256:5e4711dd2c70883ae2b8dedeee8fcd1cc03d20c3fe1e0467156a329ee31077cd_s390x", + "product_identification_helper": { + "purl": "pkg:oci/mce-operator-bundle@sha256:5e4711dd2c70883ae2b8dedeee8fcd1cc03d20c3fe1e0467156a329ee31077cd?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/mce-operator-bundle&tag=v2.1.9-9" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/backplane-rhel8-operator@sha256:656660c28979a40abc61e4f24fcd9234b0aa503c49ee987a01ce0fa10622ddfd_s390x", + "product": { + "name": "multicluster-engine/backplane-rhel8-operator@sha256:656660c28979a40abc61e4f24fcd9234b0aa503c49ee987a01ce0fa10622ddfd_s390x", + "product_id": "multicluster-engine/backplane-rhel8-operator@sha256:656660c28979a40abc61e4f24fcd9234b0aa503c49ee987a01ce0fa10622ddfd_s390x", + "product_identification_helper": { + "purl": "pkg:oci/backplane-rhel8-operator@sha256:656660c28979a40abc61e4f24fcd9234b0aa503c49ee987a01ce0fa10622ddfd?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/backplane-rhel8-operator&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/placement-rhel8@sha256:be1582b40b4b827f7292a6240e9390e97853a9995627207be9b74003b1eb787a_s390x", + "product": { + "name": "multicluster-engine/placement-rhel8@sha256:be1582b40b4b827f7292a6240e9390e97853a9995627207be9b74003b1eb787a_s390x", + "product_id": "multicluster-engine/placement-rhel8@sha256:be1582b40b4b827f7292a6240e9390e97853a9995627207be9b74003b1eb787a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/placement-rhel8@sha256:be1582b40b4b827f7292a6240e9390e97853a9995627207be9b74003b1eb787a?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/placement-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:e413f3fe6464555a96beec91d7679e27be8c97579add4aea0d75b439042d0c31_s390x", + "product": { + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:e413f3fe6464555a96beec91d7679e27be8c97579add4aea0d75b439042d0c31_s390x", + "product_id": "multicluster-engine/provider-credential-controller-rhel8@sha256:e413f3fe6464555a96beec91d7679e27be8c97579add4aea0d75b439042d0c31_s390x", + "product_identification_helper": { + "purl": "pkg:oci/provider-credential-controller-rhel8@sha256:e413f3fe6464555a96beec91d7679e27be8c97579add4aea0d75b439042d0c31?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/provider-credential-controller-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/registration-rhel8@sha256:932b5206b6d57dc6038a174f6b6fe557b296223769fe16e1f24084580ea68758_s390x", + "product": { + "name": "multicluster-engine/registration-rhel8@sha256:932b5206b6d57dc6038a174f6b6fe557b296223769fe16e1f24084580ea68758_s390x", + "product_id": "multicluster-engine/registration-rhel8@sha256:932b5206b6d57dc6038a174f6b6fe557b296223769fe16e1f24084580ea68758_s390x", + "product_identification_helper": { + "purl": "pkg:oci/registration-rhel8@sha256:932b5206b6d57dc6038a174f6b6fe557b296223769fe16e1f24084580ea68758?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/registration-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/registration-operator-rhel8@sha256:0c15d59d65cbea4d06e79fcd36cd647a648785ef78d8c343c99d60c68c800545_s390x", + "product": { + "name": "multicluster-engine/registration-operator-rhel8@sha256:0c15d59d65cbea4d06e79fcd36cd647a648785ef78d8c343c99d60c68c800545_s390x", + "product_id": "multicluster-engine/registration-operator-rhel8@sha256:0c15d59d65cbea4d06e79fcd36cd647a648785ef78d8c343c99d60c68c800545_s390x", + "product_identification_helper": { + "purl": "pkg:oci/registration-operator-rhel8@sha256:0c15d59d65cbea4d06e79fcd36cd647a648785ef78d8c343c99d60c68c800545?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/registration-operator-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/work-rhel8@sha256:412ee16209aa5ea9864778eafdfe7e6736db3ca266257b950b79482d34cd7624_s390x", + "product": { + "name": "multicluster-engine/work-rhel8@sha256:412ee16209aa5ea9864778eafdfe7e6736db3ca266257b950b79482d34cd7624_s390x", + "product_id": "multicluster-engine/work-rhel8@sha256:412ee16209aa5ea9864778eafdfe7e6736db3ca266257b950b79482d34cd7624_s390x", + "product_identification_helper": { + "purl": "pkg:oci/work-rhel8@sha256:412ee16209aa5ea9864778eafdfe7e6736db3ca266257b950b79482d34cd7624?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/work-rhel8&tag=v2.1.9-3" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "multicluster-engine/agent-service-rhel8@sha256:a77b10111911aebbcbc8aefc27b151b7e5a277474c7e3071c7a312bc37cae914_amd64", + "product": { + "name": "multicluster-engine/agent-service-rhel8@sha256:a77b10111911aebbcbc8aefc27b151b7e5a277474c7e3071c7a312bc37cae914_amd64", + "product_id": "multicluster-engine/agent-service-rhel8@sha256:a77b10111911aebbcbc8aefc27b151b7e5a277474c7e3071c7a312bc37cae914_amd64", + "product_identification_helper": { + "purl": "pkg:oci/agent-service-rhel8@sha256:a77b10111911aebbcbc8aefc27b151b7e5a277474c7e3071c7a312bc37cae914?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/agent-service-rhel8&tag=v2.1.9-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:0b474adf2f6795b621d70c5a345930c52c6eacd11646a9984e21176feb97c3a1_amd64", + "product": { + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:0b474adf2f6795b621d70c5a345930c52c6eacd11646a9984e21176feb97c3a1_amd64", + "product_id": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:0b474adf2f6795b621d70c5a345930c52c6eacd11646a9984e21176feb97c3a1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/apiserver-network-proxy-rhel8@sha256:0b474adf2f6795b621d70c5a345930c52c6eacd11646a9984e21176feb97c3a1?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/apiserver-network-proxy-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:cc3875215b233b9b08d10e3dbc2189702949a7be146f7d58f61588b068301811_amd64", + "product": { + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:cc3875215b233b9b08d10e3dbc2189702949a7be146f7d58f61588b068301811_amd64", + "product_id": "multicluster-engine/assisted-image-service-rhel8@sha256:cc3875215b233b9b08d10e3dbc2189702949a7be146f7d58f61588b068301811_amd64", + "product_identification_helper": { + "purl": "pkg:oci/assisted-image-service-rhel8@sha256:cc3875215b233b9b08d10e3dbc2189702949a7be146f7d58f61588b068301811?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/assisted-image-service-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-agent-rhel8@sha256:9c088afd107df296a4865fa33448cd96a675b944168a02cdc07847f054ad82bd_amd64", + "product": { + "name": "multicluster-engine/assisted-installer-agent-rhel8@sha256:9c088afd107df296a4865fa33448cd96a675b944168a02cdc07847f054ad82bd_amd64", + "product_id": "multicluster-engine/assisted-installer-agent-rhel8@sha256:9c088afd107df296a4865fa33448cd96a675b944168a02cdc07847f054ad82bd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-agent-rhel8@sha256:9c088afd107df296a4865fa33448cd96a675b944168a02cdc07847f054ad82bd?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-rhel8@sha256:99e9ed31dfaaa6c0cadbfc7ad377bcb42e8e1e43f5646a46e182a22055fc8f8d_amd64", + "product": { + "name": "multicluster-engine/assisted-installer-rhel8@sha256:99e9ed31dfaaa6c0cadbfc7ad377bcb42e8e1e43f5646a46e182a22055fc8f8d_amd64", + "product_id": "multicluster-engine/assisted-installer-rhel8@sha256:99e9ed31dfaaa6c0cadbfc7ad377bcb42e8e1e43f5646a46e182a22055fc8f8d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-rhel8@sha256:99e9ed31dfaaa6c0cadbfc7ad377bcb42e8e1e43f5646a46e182a22055fc8f8d?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:cad72ecc092c649e897c48b964e32777ef256bdaaac07d90bcda478f9136bc08_amd64", + "product": { + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:cad72ecc092c649e897c48b964e32777ef256bdaaac07d90bcda478f9136bc08_amd64", + "product_id": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:cad72ecc092c649e897c48b964e32777ef256bdaaac07d90bcda478f9136bc08_amd64", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-reporter-rhel8@sha256:cad72ecc092c649e897c48b964e32777ef256bdaaac07d90bcda478f9136bc08?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-reporter-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:2f598aa58045c5acab400701e453d19a045b0efe432bce36e53ef11be22d2446_amd64", + "product": { + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:2f598aa58045c5acab400701e453d19a045b0efe432bce36e53ef11be22d2446_amd64", + "product_id": "multicluster-engine/aws-encryption-provider-rhel8@sha256:2f598aa58045c5acab400701e453d19a045b0efe432bce36e53ef11be22d2446_amd64", + "product_identification_helper": { + "purl": "pkg:oci/aws-encryption-provider-rhel8@sha256:2f598aa58045c5acab400701e453d19a045b0efe432bce36e53ef11be22d2446?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/aws-encryption-provider-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-rhel8@sha256:bfdbfb419a5c14710f6077c677742d567bd1dd17485568fb3b7159b608e32255_amd64", + "product": { + "name": "multicluster-engine/cluster-api-rhel8@sha256:bfdbfb419a5c14710f6077c677742d567bd1dd17485568fb3b7159b608e32255_amd64", + "product_id": "multicluster-engine/cluster-api-rhel8@sha256:bfdbfb419a5c14710f6077c677742d567bd1dd17485568fb3b7159b608e32255_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-rhel8@sha256:bfdbfb419a5c14710f6077c677742d567bd1dd17485568fb3b7159b608e32255?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:82c9f4891a3df24631322cda48ed92676ea4dc43774c10638d3990f0a4657e89_amd64", + "product": { + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:82c9f4891a3df24631322cda48ed92676ea4dc43774c10638d3990f0a4657e89_amd64", + "product_id": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:82c9f4891a3df24631322cda48ed92676ea4dc43774c10638d3990f0a4657e89_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:82c9f4891a3df24631322cda48ed92676ea4dc43774c10638d3990f0a4657e89?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:82c9f4891a3df24631322cda48ed92676ea4dc43774c10638d3990f0a4657e89_amd64", + "product": { + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:82c9f4891a3df24631322cda48ed92676ea4dc43774c10638d3990f0a4657e89_amd64", + "product_id": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:82c9f4891a3df24631322cda48ed92676ea4dc43774c10638d3990f0a4657e89_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-agent-rhel8@sha256:82c9f4891a3df24631322cda48ed92676ea4dc43774c10638d3990f0a4657e89?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:c7773dff5cdd908a48d19a8e5464aa9b57dd11afe5590ed96ddd6e01bce56d84_amd64", + "product": { + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:c7773dff5cdd908a48d19a8e5464aa9b57dd11afe5590ed96ddd6e01bce56d84_amd64", + "product_id": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:c7773dff5cdd908a48d19a8e5464aa9b57dd11afe5590ed96ddd6e01bce56d84_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-aws-rhel8@sha256:c7773dff5cdd908a48d19a8e5464aa9b57dd11afe5590ed96ddd6e01bce56d84?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:13836dd13b474300322e6353eb68f6369bd845559cf3382ccd4b9e08bff660d3_amd64", + "product": { + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:13836dd13b474300322e6353eb68f6369bd845559cf3382ccd4b9e08bff660d3_amd64", + "product_id": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:13836dd13b474300322e6353eb68f6369bd845559cf3382ccd4b9e08bff660d3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-azure-rhel8@sha256:13836dd13b474300322e6353eb68f6369bd845559cf3382ccd4b9e08bff660d3?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-azure-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:449096f14efebcde1aa8f2c82a8733cdfbb02ac4eece78068c8a366aa2be92ae_amd64", + "product": { + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:449096f14efebcde1aa8f2c82a8733cdfbb02ac4eece78068c8a366aa2be92ae_amd64", + "product_id": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:449096f14efebcde1aa8f2c82a8733cdfbb02ac4eece78068c8a366aa2be92ae_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-kubevirt-rhel8@sha256:449096f14efebcde1aa8f2c82a8733cdfbb02ac4eece78068c8a366aa2be92ae?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:4037ac30d5cf038ed63edcaa6516bae41a391fbda7f048b6c12b878dc036c84d_amd64", + "product": { + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:4037ac30d5cf038ed63edcaa6516bae41a391fbda7f048b6c12b878dc036c84d_amd64", + "product_id": "multicluster-engine/clusterclaims-controller-rhel8@sha256:4037ac30d5cf038ed63edcaa6516bae41a391fbda7f048b6c12b878dc036c84d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/clusterclaims-controller-rhel8@sha256:4037ac30d5cf038ed63edcaa6516bae41a391fbda7f048b6c12b878dc036c84d?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:d24f84c8f3722ae89375c22522a00f8ee9d835d75dd60c35cfa25ed64da50db4_amd64", + "product": { + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:d24f84c8f3722ae89375c22522a00f8ee9d835d75dd60c35cfa25ed64da50db4_amd64", + "product_id": "multicluster-engine/cluster-curator-controller-rhel8@sha256:d24f84c8f3722ae89375c22522a00f8ee9d835d75dd60c35cfa25ed64da50db4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-curator-controller-rhel8@sha256:d24f84c8f3722ae89375c22522a00f8ee9d835d75dd60c35cfa25ed64da50db4?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:da1669b171ae950c7018b69837b42edb7be1291373feca2137d99fd3022d9e9c_amd64", + "product": { + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:da1669b171ae950c7018b69837b42edb7be1291373feca2137d99fd3022d9e9c_amd64", + "product_id": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:da1669b171ae950c7018b69837b42edb7be1291373feca2137d99fd3022d9e9c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/clusterlifecycle-state-metrics-rhel8@sha256:da1669b171ae950c7018b69837b42edb7be1291373feca2137d99fd3022d9e9c?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:a2a96c3c2537d2f6fb1f40bac3241f779da1217796e72195ab1ca8e8cace9ccd_amd64", + "product": { + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:a2a96c3c2537d2f6fb1f40bac3241f779da1217796e72195ab1ca8e8cace9ccd_amd64", + "product_id": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:a2a96c3c2537d2f6fb1f40bac3241f779da1217796e72195ab1ca8e8cace9ccd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-proxy-addon-rhel8@sha256:a2a96c3c2537d2f6fb1f40bac3241f779da1217796e72195ab1ca8e8cace9ccd?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:bea2d41f5d2a9eceff7a2b44cc6e35d7a5cb5e0bf60b14497a83d2ac099f054a_amd64", + "product": { + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:bea2d41f5d2a9eceff7a2b44cc6e35d7a5cb5e0bf60b14497a83d2ac099f054a_amd64", + "product_id": "multicluster-engine/cluster-proxy-rhel8@sha256:bea2d41f5d2a9eceff7a2b44cc6e35d7a5cb5e0bf60b14497a83d2ac099f054a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-proxy-rhel8@sha256:bea2d41f5d2a9eceff7a2b44cc6e35d7a5cb5e0bf60b14497a83d2ac099f054a?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:6b5f443bfe61b3699a3035f566392b62b76556d60836c318cf2f2159c22bf461_amd64", + "product": { + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:6b5f443bfe61b3699a3035f566392b62b76556d60836c318cf2f2159c22bf461_amd64", + "product_id": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:6b5f443bfe61b3699a3035f566392b62b76556d60836c318cf2f2159c22bf461_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-console-mce-rhel8@sha256:6b5f443bfe61b3699a3035f566392b62b76556d60836c318cf2f2159c22bf461?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-console-mce-rhel8&tag=v2.1.9-6" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/console-mce-rhel8@sha256:6b5f443bfe61b3699a3035f566392b62b76556d60836c318cf2f2159c22bf461_amd64", + "product": { + "name": "multicluster-engine/console-mce-rhel8@sha256:6b5f443bfe61b3699a3035f566392b62b76556d60836c318cf2f2159c22bf461_amd64", + "product_id": "multicluster-engine/console-mce-rhel8@sha256:6b5f443bfe61b3699a3035f566392b62b76556d60836c318cf2f2159c22bf461_amd64", + "product_identification_helper": { + "purl": "pkg:oci/console-mce-rhel8@sha256:6b5f443bfe61b3699a3035f566392b62b76556d60836c318cf2f2159c22bf461?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/console-mce-rhel8&tag=v2.1.9-6" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/discovery-rhel8@sha256:84cfe782bb80d055792114c8f983b01c37763c959ec92d7a1814b73c2414e412_amd64", + "product": { + "name": "multicluster-engine/discovery-rhel8@sha256:84cfe782bb80d055792114c8f983b01c37763c959ec92d7a1814b73c2414e412_amd64", + "product_id": "multicluster-engine/discovery-rhel8@sha256:84cfe782bb80d055792114c8f983b01c37763c959ec92d7a1814b73c2414e412_amd64", + "product_identification_helper": { + "purl": "pkg:oci/discovery-rhel8@sha256:84cfe782bb80d055792114c8f983b01c37763c959ec92d7a1814b73c2414e412?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/discovery-rhel8&tag=v2.1.9-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hive-rhel8@sha256:d0d3e8624184787f7428f405c720a413bb2949371095f81da50c7883acf5478f_amd64", + "product": { + "name": "multicluster-engine/hive-rhel8@sha256:d0d3e8624184787f7428f405c720a413bb2949371095f81da50c7883acf5478f_amd64", + "product_id": "multicluster-engine/hive-rhel8@sha256:d0d3e8624184787f7428f405c720a413bb2949371095f81da50c7883acf5478f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hive-rhel8@sha256:d0d3e8624184787f7428f405c720a413bb2949371095f81da50c7883acf5478f?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/hive-rhel8&tag=v2.1.9-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:77c8ef9f897576cf01a71a302ab4c8f48d430da0f886c3b85df71c6cec25b5bb_amd64", + "product": { + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:77c8ef9f897576cf01a71a302ab4c8f48d430da0f886c3b85df71c6cec25b5bb_amd64", + "product_id": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:77c8ef9f897576cf01a71a302ab4c8f48d430da0f886c3b85df71c6cec25b5bb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-addon-rhel8-operator@sha256:77c8ef9f897576cf01a71a302ab4c8f48d430da0f886c3b85df71c6cec25b5bb?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/hypershift-addon-rhel8-operator&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:77c8ef9f897576cf01a71a302ab4c8f48d430da0f886c3b85df71c6cec25b5bb_amd64", + "product": { + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:77c8ef9f897576cf01a71a302ab4c8f48d430da0f886c3b85df71c6cec25b5bb_amd64", + "product_id": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:77c8ef9f897576cf01a71a302ab4c8f48d430da0f886c3b85df71c6cec25b5bb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-hypershift-addon-rhel8-operator@sha256:77c8ef9f897576cf01a71a302ab4c8f48d430da0f886c3b85df71c6cec25b5bb?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-deployment-controller-rhel8@sha256:c7a1298a0779f9e8462d6a9274956e7b779a66964f8d021abea31c59ad16a872_amd64", + "product": { + "name": "multicluster-engine/hypershift-deployment-controller-rhel8@sha256:c7a1298a0779f9e8462d6a9274956e7b779a66964f8d021abea31c59ad16a872_amd64", + "product_id": "multicluster-engine/hypershift-deployment-controller-rhel8@sha256:c7a1298a0779f9e8462d6a9274956e7b779a66964f8d021abea31c59ad16a872_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-deployment-controller-rhel8@sha256:c7a1298a0779f9e8462d6a9274956e7b779a66964f8d021abea31c59ad16a872?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/hypershift-deployment-controller-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:c7a1298a0779f9e8462d6a9274956e7b779a66964f8d021abea31c59ad16a872_amd64", + "product": { + "name": "multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:c7a1298a0779f9e8462d6a9274956e7b779a66964f8d021abea31c59ad16a872_amd64", + "product_id": "multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:c7a1298a0779f9e8462d6a9274956e7b779a66964f8d021abea31c59ad16a872_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:c7a1298a0779f9e8462d6a9274956e7b779a66964f8d021abea31c59ad16a872?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:906e21636563fdb4b08a9b27f8724051dc9ff3296ead000a646a657756729c01_amd64", + "product": { + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:906e21636563fdb4b08a9b27f8724051dc9ff3296ead000a646a657756729c01_amd64", + "product_id": "multicluster-engine/hypershift-rhel8-operator@sha256:906e21636563fdb4b08a9b27f8724051dc9ff3296ead000a646a657756729c01_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-rhel8-operator@sha256:906e21636563fdb4b08a9b27f8724051dc9ff3296ead000a646a657756729c01?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/hypershift-rhel8-operator&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/klusterlet-operator-bundle@sha256:e9641814a6bda7f0c2bbc033674871f9dcae1d612b3df6cd1f96b511d9acd367_amd64", + "product": { + "name": "multicluster-engine/klusterlet-operator-bundle@sha256:e9641814a6bda7f0c2bbc033674871f9dcae1d612b3df6cd1f96b511d9acd367_amd64", + "product_id": "multicluster-engine/klusterlet-operator-bundle@sha256:e9641814a6bda7f0c2bbc033674871f9dcae1d612b3df6cd1f96b511d9acd367_amd64", + "product_identification_helper": { + "purl": "pkg:oci/klusterlet-operator-bundle@sha256:e9641814a6bda7f0c2bbc033674871f9dcae1d612b3df6cd1f96b511d9acd367?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/klusterlet-operator-bundle&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:841c8229d748af903bf3562bc95e72ec6964cf5c225502826c49164ab95c5039_amd64", + "product": { + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:841c8229d748af903bf3562bc95e72ec6964cf5c225502826c49164ab95c5039_amd64", + "product_id": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:841c8229d748af903bf3562bc95e72ec6964cf5c225502826c49164ab95c5039_amd64", + "product_identification_helper": { + "purl": "pkg:oci/managedcluster-import-controller-rhel8@sha256:841c8229d748af903bf3562bc95e72ec6964cf5c225502826c49164ab95c5039?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:0d626368fd40f439639a9c6b553f40e71f1b22cf303121ecc3ec091bc888071e_amd64", + "product": { + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:0d626368fd40f439639a9c6b553f40e71f1b22cf303121ecc3ec091bc888071e_amd64", + "product_id": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:0d626368fd40f439639a9c6b553f40e71f1b22cf303121ecc3ec091bc888071e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-managed-serviceaccount-rhel8@sha256:0d626368fd40f439639a9c6b553f40e71f1b22cf303121ecc3ec091bc888071e?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:0d626368fd40f439639a9c6b553f40e71f1b22cf303121ecc3ec091bc888071e_amd64", + "product": { + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:0d626368fd40f439639a9c6b553f40e71f1b22cf303121ecc3ec091bc888071e_amd64", + "product_id": "multicluster-engine/managed-serviceaccount-rhel8@sha256:0d626368fd40f439639a9c6b553f40e71f1b22cf303121ecc3ec091bc888071e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/managed-serviceaccount-rhel8@sha256:0d626368fd40f439639a9c6b553f40e71f1b22cf303121ecc3ec091bc888071e?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:d10968a0c91a14bd7ad66617046df4ab86663b66a4ddce7b360fa4db59abd80c_amd64", + "product": { + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:d10968a0c91a14bd7ad66617046df4ab86663b66a4ddce7b360fa4db59abd80c_amd64", + "product_id": "multicluster-engine/multicloud-manager-rhel8@sha256:d10968a0c91a14bd7ad66617046df4ab86663b66a4ddce7b360fa4db59abd80c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicloud-manager-rhel8@sha256:d10968a0c91a14bd7ad66617046df4ab86663b66a4ddce7b360fa4db59abd80c?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/multicloud-manager-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/must-gather-rhel8@sha256:fc4f34e7ba3d392641ffd30ea00ec8b4a7f2b7983688f66ad98c774efc313743_amd64", + "product": { + "name": "multicluster-engine/must-gather-rhel8@sha256:fc4f34e7ba3d392641ffd30ea00ec8b4a7f2b7983688f66ad98c774efc313743_amd64", + "product_id": "multicluster-engine/must-gather-rhel8@sha256:fc4f34e7ba3d392641ffd30ea00ec8b4a7f2b7983688f66ad98c774efc313743_amd64", + "product_identification_helper": { + "purl": "pkg:oci/must-gather-rhel8@sha256:fc4f34e7ba3d392641ffd30ea00ec8b4a7f2b7983688f66ad98c774efc313743?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/must-gather-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/mce-operator-bundle@sha256:1f33685a3eb1afe2c96c6fbc394c69efa7b67bb813a6c41449cbf06767333e0a_amd64", + "product": { + "name": "multicluster-engine/mce-operator-bundle@sha256:1f33685a3eb1afe2c96c6fbc394c69efa7b67bb813a6c41449cbf06767333e0a_amd64", + "product_id": "multicluster-engine/mce-operator-bundle@sha256:1f33685a3eb1afe2c96c6fbc394c69efa7b67bb813a6c41449cbf06767333e0a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mce-operator-bundle@sha256:1f33685a3eb1afe2c96c6fbc394c69efa7b67bb813a6c41449cbf06767333e0a?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/mce-operator-bundle&tag=v2.1.9-9" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/backplane-rhel8-operator@sha256:67e5b872516775d3df0393ccd49088e45bc3f5ac09a35887469476d581097900_amd64", + "product": { + "name": "multicluster-engine/backplane-rhel8-operator@sha256:67e5b872516775d3df0393ccd49088e45bc3f5ac09a35887469476d581097900_amd64", + "product_id": "multicluster-engine/backplane-rhel8-operator@sha256:67e5b872516775d3df0393ccd49088e45bc3f5ac09a35887469476d581097900_amd64", + "product_identification_helper": { + "purl": "pkg:oci/backplane-rhel8-operator@sha256:67e5b872516775d3df0393ccd49088e45bc3f5ac09a35887469476d581097900?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/backplane-rhel8-operator&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/placement-rhel8@sha256:13ff33badb0e2066b4ab82e012578541648112c2523839eaf4c81b2c491c30c6_amd64", + "product": { + "name": "multicluster-engine/placement-rhel8@sha256:13ff33badb0e2066b4ab82e012578541648112c2523839eaf4c81b2c491c30c6_amd64", + "product_id": "multicluster-engine/placement-rhel8@sha256:13ff33badb0e2066b4ab82e012578541648112c2523839eaf4c81b2c491c30c6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/placement-rhel8@sha256:13ff33badb0e2066b4ab82e012578541648112c2523839eaf4c81b2c491c30c6?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/placement-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:6de9342efed99503848ebb2b43fc976bf6987ed1555d17aeb78948fa0a184bd4_amd64", + "product": { + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:6de9342efed99503848ebb2b43fc976bf6987ed1555d17aeb78948fa0a184bd4_amd64", + "product_id": "multicluster-engine/provider-credential-controller-rhel8@sha256:6de9342efed99503848ebb2b43fc976bf6987ed1555d17aeb78948fa0a184bd4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/provider-credential-controller-rhel8@sha256:6de9342efed99503848ebb2b43fc976bf6987ed1555d17aeb78948fa0a184bd4?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/provider-credential-controller-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/registration-rhel8@sha256:c1e5401bc5ecd8b2cdf70c92d8c0e8e8d0ae0a4e6d8f1332721bc9cced3effcb_amd64", + "product": { + "name": "multicluster-engine/registration-rhel8@sha256:c1e5401bc5ecd8b2cdf70c92d8c0e8e8d0ae0a4e6d8f1332721bc9cced3effcb_amd64", + "product_id": "multicluster-engine/registration-rhel8@sha256:c1e5401bc5ecd8b2cdf70c92d8c0e8e8d0ae0a4e6d8f1332721bc9cced3effcb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/registration-rhel8@sha256:c1e5401bc5ecd8b2cdf70c92d8c0e8e8d0ae0a4e6d8f1332721bc9cced3effcb?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/registration-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/registration-operator-rhel8@sha256:689bae570f5b636db94f54bc272213dc421c2c44d0886c7572f937bbf9b60d08_amd64", + "product": { + "name": "multicluster-engine/registration-operator-rhel8@sha256:689bae570f5b636db94f54bc272213dc421c2c44d0886c7572f937bbf9b60d08_amd64", + "product_id": "multicluster-engine/registration-operator-rhel8@sha256:689bae570f5b636db94f54bc272213dc421c2c44d0886c7572f937bbf9b60d08_amd64", + "product_identification_helper": { + "purl": "pkg:oci/registration-operator-rhel8@sha256:689bae570f5b636db94f54bc272213dc421c2c44d0886c7572f937bbf9b60d08?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/registration-operator-rhel8&tag=v2.1.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/work-rhel8@sha256:1c45ef9d70be5eb145a19e2fceef3417c49dc1b68a3f617107303b91222193ad_amd64", + "product": { + "name": "multicluster-engine/work-rhel8@sha256:1c45ef9d70be5eb145a19e2fceef3417c49dc1b68a3f617107303b91222193ad_amd64", + "product_id": "multicluster-engine/work-rhel8@sha256:1c45ef9d70be5eb145a19e2fceef3417c49dc1b68a3f617107303b91222193ad_amd64", + "product_identification_helper": { + "purl": "pkg:oci/work-rhel8@sha256:1c45ef9d70be5eb145a19e2fceef3417c49dc1b68a3f617107303b91222193ad?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/work-rhel8&tag=v2.1.9-3" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-descheduler@sha256:527e22dbdf9e8195f1f7a481b1ef5135e41610fde5c025b3c48c18d537c7b6c9_s390x", + "product": { + "name": "openshift4/ose-descheduler@sha256:527e22dbdf9e8195f1f7a481b1ef5135e41610fde5c025b3c48c18d537c7b6c9_s390x", + "product_id": "openshift4/ose-descheduler@sha256:527e22dbdf9e8195f1f7a481b1ef5135e41610fde5c025b3c48c18d537c7b6c9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-descheduler@sha256:527e22dbdf9e8195f1f7a481b1ef5135e41610fde5c025b3c48c18d537c7b6c9?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-descheduler&tag=v4.13.0-202310210425.p0.g27e89a0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-node-problem-detector-rhel8@sha256:18aa7061df5d769b5246c128cc605bfd79fd556c9dcb34800df8dc144d3323cc_s390x", + "product": { + "name": "openshift4/ose-node-problem-detector-rhel8@sha256:18aa7061df5d769b5246c128cc605bfd79fd556c9dcb34800df8dc144d3323cc_s390x", + "product_id": "openshift4/ose-node-problem-detector-rhel8@sha256:18aa7061df5d769b5246c128cc605bfd79fd556c9dcb34800df8dc144d3323cc_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-node-problem-detector-rhel8@sha256:18aa7061df5d769b5246c128cc605bfd79fd556c9dcb34800df8dc144d3323cc?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-node-problem-detector-rhel8&tag=v4.13.0-202310210425.p0.g9183d5c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-nfd-operator@sha256:d24cc2e52f0410d0f0e92e208a35aa2a0a28c9585b0153a005b92d3164ccd141_s390x", + "product": { + "name": "openshift4/ose-cluster-nfd-operator@sha256:d24cc2e52f0410d0f0e92e208a35aa2a0a28c9585b0153a005b92d3164ccd141_s390x", + "product_id": "openshift4/ose-cluster-nfd-operator@sha256:d24cc2e52f0410d0f0e92e208a35aa2a0a28c9585b0153a005b92d3164ccd141_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-nfd-operator@sha256:d24cc2e52f0410d0f0e92e208a35aa2a0a28c9585b0153a005b92d3164ccd141?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-operator&tag=v4.13.0-202310241102.p0.ga1d6dd8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ingress-node-firewall@sha256:aac652852848988e4f6b2a93e4e167ce03262209e30fdfbcd9e615fb60d1b597_s390x", + "product": { + "name": "openshift4/ingress-node-firewall@sha256:aac652852848988e4f6b2a93e4e167ce03262209e30fdfbcd9e615fb60d1b597_s390x", + "product_id": "openshift4/ingress-node-firewall@sha256:aac652852848988e4f6b2a93e4e167ce03262209e30fdfbcd9e615fb60d1b597_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ingress-node-firewall@sha256:aac652852848988e4f6b2a93e4e167ce03262209e30fdfbcd9e615fb60d1b597?arch=s390x&repository_url=registry.redhat.io/openshift4/ingress-node-firewall&tag=v4.13.0-202310210425.p0.g8db1084.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ingress-node-firewall-rhel8-operator@sha256:ef2fb3e4f30fec8c4e4c186cbcbb49ff7b56d4226d58edbdf15e5642bc434c72_s390x", + "product": { + "name": "openshift4/ingress-node-firewall-rhel8-operator@sha256:ef2fb3e4f30fec8c4e4c186cbcbb49ff7b56d4226d58edbdf15e5642bc434c72_s390x", + "product_id": "openshift4/ingress-node-firewall-rhel8-operator@sha256:ef2fb3e4f30fec8c4e4c186cbcbb49ff7b56d4226d58edbdf15e5642bc434c72_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ingress-node-firewall-rhel8-operator@sha256:ef2fb3e4f30fec8c4e4c186cbcbb49ff7b56d4226d58edbdf15e5642bc434c72?arch=s390x&repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel8-operator&tag=v4.13.0-202310241102.p0.g8db1084.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-local-storage-diskmaker@sha256:4c45813adbe93ab958fcb5b284dca6be3246d141dc319af32cd3fa6229956cf3_s390x", + "product": { + "name": "openshift4/ose-local-storage-diskmaker@sha256:4c45813adbe93ab958fcb5b284dca6be3246d141dc319af32cd3fa6229956cf3_s390x", + "product_id": "openshift4/ose-local-storage-diskmaker@sha256:4c45813adbe93ab958fcb5b284dca6be3246d141dc319af32cd3fa6229956cf3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-local-storage-diskmaker@sha256:4c45813adbe93ab958fcb5b284dca6be3246d141dc319af32cd3fa6229956cf3?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker&tag=v4.13.0-202310231526.p0.g84d8626.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-local-storage-operator@sha256:f0d80c23dd2eda2eac2f26ad43b028af31e97fd3f4c11e91d465f20fb0c0e51e_s390x", + "product": { + "name": "openshift4/ose-local-storage-operator@sha256:f0d80c23dd2eda2eac2f26ad43b028af31e97fd3f4c11e91d465f20fb0c0e51e_s390x", + "product_id": "openshift4/ose-local-storage-operator@sha256:f0d80c23dd2eda2eac2f26ad43b028af31e97fd3f4c11e91d465f20fb0c0e51e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-local-storage-operator@sha256:f0d80c23dd2eda2eac2f26ad43b028af31e97fd3f4c11e91d465f20fb0c0e51e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-local-storage-operator&tag=v4.13.0-202310241102.p0.g84d8626.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-node-feature-discovery@sha256:c8bf2216110c4cf793547ac96f9811c9c3c3622601e33f0feaa45c08e752a0bf_s390x", + "product": { + "name": "openshift4/ose-node-feature-discovery@sha256:c8bf2216110c4cf793547ac96f9811c9c3c3622601e33f0feaa45c08e752a0bf_s390x", + "product_id": "openshift4/ose-node-feature-discovery@sha256:c8bf2216110c4cf793547ac96f9811c9c3c3622601e33f0feaa45c08e752a0bf_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-node-feature-discovery@sha256:c8bf2216110c4cf793547ac96f9811c9c3c3622601e33f0feaa45c08e752a0bf?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery&tag=v4.13.0-202310210425.p0.g79c2147.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ansible-operator@sha256:4ca5fe22a10929b0a4ce6b3f5d22b8ed4e6c7da2e8be4b4a6731db8735a3eb66_s390x", + "product": { + "name": "openshift4/ose-ansible-operator@sha256:4ca5fe22a10929b0a4ce6b3f5d22b8ed4e6c7da2e8be4b4a6731db8735a3eb66_s390x", + "product_id": "openshift4/ose-ansible-operator@sha256:4ca5fe22a10929b0a4ce6b3f5d22b8ed4e6c7da2e8be4b4a6731db8735a3eb66_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ansible-operator@sha256:4ca5fe22a10929b0a4ce6b3f5d22b8ed4e6c7da2e8be4b4a6731db8735a3eb66?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ansible-operator&tag=v4.13.0-202310210425.p0.g860cade.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capacity@sha256:c38e9343ac169aa7ffcf732b359661a76d23a6104fa2c928704f1d2b6044bb13_s390x", + "product": { + "name": "openshift4/ose-cluster-capacity@sha256:c38e9343ac169aa7ffcf732b359661a76d23a6104fa2c928704f1d2b6044bb13_s390x", + "product_id": "openshift4/ose-cluster-capacity@sha256:c38e9343ac169aa7ffcf732b359661a76d23a6104fa2c928704f1d2b6044bb13_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capacity@sha256:c38e9343ac169aa7ffcf732b359661a76d23a6104fa2c928704f1d2b6044bb13?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-capacity&tag=v4.13.0-202310210425.p0.g3c223bb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-egress-dns-proxy@sha256:8ba7a8401a376c7aff19662d9b99625d0d7754fe0413c917d523ccc54d81a87e_s390x", + "product": { + "name": "openshift4/ose-egress-dns-proxy@sha256:8ba7a8401a376c7aff19662d9b99625d0d7754fe0413c917d523ccc54d81a87e_s390x", + "product_id": "openshift4/ose-egress-dns-proxy@sha256:8ba7a8401a376c7aff19662d9b99625d0d7754fe0413c917d523ccc54d81a87e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-egress-dns-proxy@sha256:8ba7a8401a376c7aff19662d9b99625d0d7754fe0413c917d523ccc54d81a87e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy&tag=v4.13.0-202310210425.p0.g0465934.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-egress-router@sha256:d01fa67ae2d284711e39c6eb524ed49119a25d47db78af2e37f351d165b07bf7_s390x", + "product": { + "name": "openshift4/ose-egress-router@sha256:d01fa67ae2d284711e39c6eb524ed49119a25d47db78af2e37f351d165b07bf7_s390x", + "product_id": "openshift4/ose-egress-router@sha256:d01fa67ae2d284711e39c6eb524ed49119a25d47db78af2e37f351d165b07bf7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-egress-router@sha256:d01fa67ae2d284711e39c6eb524ed49119a25d47db78af2e37f351d165b07bf7?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-egress-router&tag=v4.13.0-202310210425.p0.g0465934.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-helm-operator@sha256:35a5f927a34d0e90790780047d1b6c12d372acb77a72990d94ce2a84206932f3_s390x", + "product": { + "name": "openshift4/ose-helm-operator@sha256:35a5f927a34d0e90790780047d1b6c12d372acb77a72990d94ce2a84206932f3_s390x", + "product_id": "openshift4/ose-helm-operator@sha256:35a5f927a34d0e90790780047d1b6c12d372acb77a72990d94ce2a84206932f3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-helm-operator@sha256:35a5f927a34d0e90790780047d1b6c12d372acb77a72990d94ce2a84206932f3?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-helm-operator&tag=v4.13.0-202310210425.p0.g860cade.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-sdk-rhel8@sha256:807172a4bdc98fd0fb78ab537ddb55353266396ae9e6746b7e4f7e597fe86ad7_s390x", + "product": { + "name": "openshift4/ose-operator-sdk-rhel8@sha256:807172a4bdc98fd0fb78ab537ddb55353266396ae9e6746b7e4f7e597fe86ad7_s390x", + "product_id": "openshift4/ose-operator-sdk-rhel8@sha256:807172a4bdc98fd0fb78ab537ddb55353266396ae9e6746b7e4f7e597fe86ad7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-sdk-rhel8@sha256:807172a4bdc98fd0fb78ab537ddb55353266396ae9e6746b7e4f7e597fe86ad7?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel8&tag=v4.13.0-202310210425.p0.g860cade.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:5607e281ade26e3b5f63b54323b6c613bd7177d8e62a8923692c5f56d5adb19f_s390x", + "product": { + "name": "openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:5607e281ade26e3b5f63b54323b6c613bd7177d8e62a8923692c5f56d5adb19f_s390x", + "product_id": "openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:5607e281ade26e3b5f63b54323b6c613bd7177d8e62a8923692c5f56d5adb19f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-kubernetes-nmstate-handler-rhel8@sha256:5607e281ade26e3b5f63b54323b6c613bd7177d8e62a8923692c5f56d5adb19f?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8&tag=v4.13.0-202310210425.p0.g0c90011.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:8dd8c5c726c4f7db2d64701cad69fbc2629c66a7a02344152264e7783e10932c_s390x", + "product": { + "name": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:8dd8c5c726c4f7db2d64701cad69fbc2629c66a7a02344152264e7783e10932c_s390x", + "product_id": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:8dd8c5c726c4f7db2d64701cad69fbc2629c66a7a02344152264e7783e10932c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-proxy-pull-test-rhel8@sha256:8dd8c5c726c4f7db2d64701cad69fbc2629c66a7a02344152264e7783e10932c?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openshift-proxy-pull-test-rhel8&tag=v4.13.0-202310210425.p0.g645056f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:375a0ec754193142d4ab78d0ea8c4b4815ce6869b05378b4f7dd611dc4b3a93b_s390x", + "product": { + "name": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:375a0ec754193142d4ab78d0ea8c4b4815ce6869b05378b4f7dd611dc4b3a93b_s390x", + "product_id": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:375a0ec754193142d4ab78d0ea8c4b4815ce6869b05378b4f7dd611dc4b3a93b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-descheduler-rhel8-operator@sha256:375a0ec754193142d4ab78d0ea8c4b4815ce6869b05378b4f7dd611dc4b3a93b?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-descheduler-rhel8-operator&tag=v4.13.0-202310210425.p0.g5a1cb7d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-descheduler-operator@sha256:375a0ec754193142d4ab78d0ea8c4b4815ce6869b05378b4f7dd611dc4b3a93b_s390x", + "product": { + "name": "openshift4/ose-cluster-kube-descheduler-operator@sha256:375a0ec754193142d4ab78d0ea8c4b4815ce6869b05378b4f7dd611dc4b3a93b_s390x", + "product_id": "openshift4/ose-cluster-kube-descheduler-operator@sha256:375a0ec754193142d4ab78d0ea8c4b4815ce6869b05378b4f7dd611dc4b3a93b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-descheduler-operator@sha256:375a0ec754193142d4ab78d0ea8c4b4815ce6869b05378b4f7dd611dc4b3a93b?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-descheduler-operator&tag=v4.13.0-202310210425.p0.g5a1cb7d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-clusterresourceoverride-rhel8@sha256:5f9556621dba860b6cc3aadcd29ca3864984aa6f28d5541126214ab1f890066e_s390x", + "product": { + "name": "openshift4/ose-clusterresourceoverride-rhel8@sha256:5f9556621dba860b6cc3aadcd29ca3864984aa6f28d5541126214ab1f890066e_s390x", + "product_id": "openshift4/ose-clusterresourceoverride-rhel8@sha256:5f9556621dba860b6cc3aadcd29ca3864984aa6f28d5541126214ab1f890066e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-clusterresourceoverride-rhel8@sha256:5f9556621dba860b6cc3aadcd29ca3864984aa6f28d5541126214ab1f890066e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8&tag=v4.13.0-202310240926.p0.g63d864a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:31a9534f3d11283630ffc83b4c8460f6f3d8f8f6b1694019e0c1eb5de455abc7_s390x", + "product": { + "name": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:31a9534f3d11283630ffc83b4c8460f6f3d8f8f6b1694019e0c1eb5de455abc7_s390x", + "product_id": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:31a9534f3d11283630ffc83b4c8460f6f3d8f8f6b1694019e0c1eb5de455abc7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-clusterresourceoverride-rhel8-operator@sha256:31a9534f3d11283630ffc83b4c8460f6f3d8f8f6b1694019e0c1eb5de455abc7?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator&tag=v4.13.0-202310240926.p0.g9e3cfa4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:41c3a01dbfbb7d01b9e9d6defea92e1c92ac6fd38005966249ecc39c632bfa9f_s390x", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:41c3a01dbfbb7d01b9e9d6defea92e1c92ac6fd38005966249ecc39c632bfa9f_s390x", + "product_id": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:41c3a01dbfbb7d01b9e9d6defea92e1c92ac6fd38005966249ecc39c632bfa9f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:41c3a01dbfbb7d01b9e9d6defea92e1c92ac6fd38005966249ecc39c632bfa9f?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8&tag=v4.13.0-202310210425.p0.g9724dcf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-egress-http-proxy@sha256:de2886f7fb6e15377067a6677aaa9704944877fbe3b328dd9f91f57bb204fef6_s390x", + "product": { + "name": "openshift4/ose-egress-http-proxy@sha256:de2886f7fb6e15377067a6677aaa9704944877fbe3b328dd9f91f57bb204fef6_s390x", + "product_id": "openshift4/ose-egress-http-proxy@sha256:de2886f7fb6e15377067a6677aaa9704944877fbe3b328dd9f91f57bb204fef6_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-egress-http-proxy@sha256:de2886f7fb6e15377067a6677aaa9704944877fbe3b328dd9f91f57bb204fef6?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy&tag=v4.13.0-202310210425.p0.g0465934.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/frr-rhel8@sha256:655785d4b563319c3504bc047607d8e51e18b2f40024082e75b60a5212fa7977_s390x", + "product": { + "name": "openshift4/frr-rhel8@sha256:655785d4b563319c3504bc047607d8e51e18b2f40024082e75b60a5212fa7977_s390x", + "product_id": "openshift4/frr-rhel8@sha256:655785d4b563319c3504bc047607d8e51e18b2f40024082e75b60a5212fa7977_s390x", + "product_identification_helper": { + "purl": "pkg:oci/frr-rhel8@sha256:655785d4b563319c3504bc047607d8e51e18b2f40024082e75b60a5212fa7977?arch=s390x&repository_url=registry.redhat.io/openshift4/frr-rhel8&tag=v4.13.0-202310210425.p0.gb9ba60f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/kubernetes-nmstate-rhel8-operator@sha256:810db57ee8a3abaea97e040d1f8f6638633d80e99e521eb63cadee789b034af8_s390x", + "product": { + "name": "openshift4/kubernetes-nmstate-rhel8-operator@sha256:810db57ee8a3abaea97e040d1f8f6638633d80e99e521eb63cadee789b034af8_s390x", + "product_id": "openshift4/kubernetes-nmstate-rhel8-operator@sha256:810db57ee8a3abaea97e040d1f8f6638633d80e99e521eb63cadee789b034af8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/kubernetes-nmstate-rhel8-operator@sha256:810db57ee8a3abaea97e040d1f8f6638633d80e99e521eb63cadee789b034af8?arch=s390x&repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator&tag=v4.13.0-202310210425.p0.g0c90011.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-local-storage-mustgather-rhel8@sha256:3ad9fdceb6a31af84101a83dd09e0125c81a3be4c44e1bee8d9e00ed12e744b9_s390x", + "product": { + "name": "openshift4/ose-local-storage-mustgather-rhel8@sha256:3ad9fdceb6a31af84101a83dd09e0125c81a3be4c44e1bee8d9e00ed12e744b9_s390x", + "product_id": "openshift4/ose-local-storage-mustgather-rhel8@sha256:3ad9fdceb6a31af84101a83dd09e0125c81a3be4c44e1bee8d9e00ed12e744b9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-local-storage-mustgather-rhel8@sha256:3ad9fdceb6a31af84101a83dd09e0125c81a3be4c44e1bee8d9e00ed12e744b9?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel8&tag=v4.13.0-202310231526.p0.g84d8626.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift-tech-preview/metallb-rhel8@sha256:1ea923a6908e58ba3ca77c2f08cc7a50df4dce9341055f1aa007b5f33a172f00_s390x", + "product": { + "name": "openshift-tech-preview/metallb-rhel8@sha256:1ea923a6908e58ba3ca77c2f08cc7a50df4dce9341055f1aa007b5f33a172f00_s390x", + "product_id": "openshift-tech-preview/metallb-rhel8@sha256:1ea923a6908e58ba3ca77c2f08cc7a50df4dce9341055f1aa007b5f33a172f00_s390x", + "product_identification_helper": { + "purl": "pkg:oci/metallb-rhel8@sha256:1ea923a6908e58ba3ca77c2f08cc7a50df4dce9341055f1aa007b5f33a172f00?arch=s390x&repository_url=registry.redhat.io/openshift-tech-preview/metallb-rhel8&tag=v4.13.0-202310210425.p0.gd3c8a0d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/metallb-rhel8@sha256:1ea923a6908e58ba3ca77c2f08cc7a50df4dce9341055f1aa007b5f33a172f00_s390x", + "product": { + "name": "openshift4/metallb-rhel8@sha256:1ea923a6908e58ba3ca77c2f08cc7a50df4dce9341055f1aa007b5f33a172f00_s390x", + "product_id": "openshift4/metallb-rhel8@sha256:1ea923a6908e58ba3ca77c2f08cc7a50df4dce9341055f1aa007b5f33a172f00_s390x", + "product_identification_helper": { + "purl": "pkg:oci/metallb-rhel8@sha256:1ea923a6908e58ba3ca77c2f08cc7a50df4dce9341055f1aa007b5f33a172f00?arch=s390x&repository_url=registry.redhat.io/openshift4/metallb-rhel8&tag=v4.13.0-202310210425.p0.gd3c8a0d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/metallb-rhel8-operator@sha256:67a802fa4be2a9d8cfd661d36c8e9f88b07a68f318f2c878b741bae30b78241a_s390x", + "product": { + "name": "openshift4/metallb-rhel8-operator@sha256:67a802fa4be2a9d8cfd661d36c8e9f88b07a68f318f2c878b741bae30b78241a_s390x", + "product_id": "openshift4/metallb-rhel8-operator@sha256:67a802fa4be2a9d8cfd661d36c8e9f88b07a68f318f2c878b741bae30b78241a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/metallb-rhel8-operator@sha256:67a802fa4be2a9d8cfd661d36c8e9f88b07a68f318f2c878b741bae30b78241a?arch=s390x&repository_url=registry.redhat.io/openshift4/metallb-rhel8-operator&tag=v4.13.0-202310241102.p0.g6267b32.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:d073e7e0ce29e7307e5865b4ccf812d4cf9b5d306b1bae154eb5b5cb886a5905_s390x", + "product": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:d073e7e0ce29e7307e5865b4ccf812d4cf9b5d306b1bae154eb5b5cb886a5905_s390x", + "product_id": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:d073e7e0ce29e7307e5865b4ccf812d4cf9b5d306b1bae154eb5b5cb886a5905_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-vertical-pod-autoscaler-rhel8@sha256:d073e7e0ce29e7307e5865b4ccf812d4cf9b5d306b1bae154eb5b5cb886a5905?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8&tag=v4.13.0-202310210425.p0.gc58c53b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:c3cb969ccf77d3729507ec8d6fa5d42edaee8e7386690fb827d0a77bc03b5405_s390x", + "product": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:c3cb969ccf77d3729507ec8d6fa5d42edaee8e7386690fb827d0a77bc03b5405_s390x", + "product_id": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:c3cb969ccf77d3729507ec8d6fa5d42edaee8e7386690fb827d0a77bc03b5405_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-vertical-pod-autoscaler-rhel8-operator@sha256:c3cb969ccf77d3729507ec8d6fa5d42edaee8e7386690fb827d0a77bc03b5405?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator&tag=v4.13.0-202310210425.p0.gdc186bf.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-descheduler@sha256:786cab5554b522a05d97b18cbe2749103b39bf309ac37399d1fcf518a02f73f4_amd64", + "product": { + "name": "openshift4/ose-descheduler@sha256:786cab5554b522a05d97b18cbe2749103b39bf309ac37399d1fcf518a02f73f4_amd64", + "product_id": "openshift4/ose-descheduler@sha256:786cab5554b522a05d97b18cbe2749103b39bf309ac37399d1fcf518a02f73f4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-descheduler@sha256:786cab5554b522a05d97b18cbe2749103b39bf309ac37399d1fcf518a02f73f4?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-descheduler&tag=v4.13.0-202310210425.p0.g27e89a0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-node-problem-detector-rhel8@sha256:56f5288e84ec70e7b15c0d96421954539202b8df353a5b38c0d017e655f60dcf_amd64", + "product": { + "name": "openshift4/ose-node-problem-detector-rhel8@sha256:56f5288e84ec70e7b15c0d96421954539202b8df353a5b38c0d017e655f60dcf_amd64", + "product_id": "openshift4/ose-node-problem-detector-rhel8@sha256:56f5288e84ec70e7b15c0d96421954539202b8df353a5b38c0d017e655f60dcf_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-node-problem-detector-rhel8@sha256:56f5288e84ec70e7b15c0d96421954539202b8df353a5b38c0d017e655f60dcf?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-node-problem-detector-rhel8&tag=v4.13.0-202310210425.p0.g9183d5c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-event-proxy-rhel8@sha256:bd81d3742aa3b19363b7b715c86e7f587abd9af2b0b516145b041d9ae553e493_amd64", + "product": { + "name": "openshift4/ose-cloud-event-proxy-rhel8@sha256:bd81d3742aa3b19363b7b715c86e7f587abd9af2b0b516145b041d9ae553e493_amd64", + "product_id": "openshift4/ose-cloud-event-proxy-rhel8@sha256:bd81d3742aa3b19363b7b715c86e7f587abd9af2b0b516145b041d9ae553e493_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-event-proxy-rhel8@sha256:bd81d3742aa3b19363b7b715c86e7f587abd9af2b0b516145b041d9ae553e493?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8&tag=v4.13.0-202310210425.p0.gc423635.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-event-proxy@sha256:bd81d3742aa3b19363b7b715c86e7f587abd9af2b0b516145b041d9ae553e493_amd64", + "product": { + "name": "openshift4/ose-cloud-event-proxy@sha256:bd81d3742aa3b19363b7b715c86e7f587abd9af2b0b516145b041d9ae553e493_amd64", + "product_id": "openshift4/ose-cloud-event-proxy@sha256:bd81d3742aa3b19363b7b715c86e7f587abd9af2b0b516145b041d9ae553e493_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-event-proxy@sha256:bd81d3742aa3b19363b7b715c86e7f587abd9af2b0b516145b041d9ae553e493?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy&tag=v4.13.0-202310210425.p0.gc423635.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-nfd-operator@sha256:0af4fd0d72782504a2e62bc0ce9e877c35bacc4b2d99bd8cb17ddc16c4755ee7_amd64", + "product": { + "name": "openshift4/ose-cluster-nfd-operator@sha256:0af4fd0d72782504a2e62bc0ce9e877c35bacc4b2d99bd8cb17ddc16c4755ee7_amd64", + "product_id": "openshift4/ose-cluster-nfd-operator@sha256:0af4fd0d72782504a2e62bc0ce9e877c35bacc4b2d99bd8cb17ddc16c4755ee7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-nfd-operator@sha256:0af4fd0d72782504a2e62bc0ce9e877c35bacc4b2d99bd8cb17ddc16c4755ee7?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-operator&tag=v4.13.0-202310241102.p0.ga1d6dd8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/dpu-network-rhel8-operator@sha256:4c57f4732767082e523289b14aff8b13565e4af01036e1c50f128064fd84adbf_amd64", + "product": { + "name": "openshift4/dpu-network-rhel8-operator@sha256:4c57f4732767082e523289b14aff8b13565e4af01036e1c50f128064fd84adbf_amd64", + "product_id": "openshift4/dpu-network-rhel8-operator@sha256:4c57f4732767082e523289b14aff8b13565e4af01036e1c50f128064fd84adbf_amd64", + "product_identification_helper": { + "purl": "pkg:oci/dpu-network-rhel8-operator@sha256:4c57f4732767082e523289b14aff8b13565e4af01036e1c50f128064fd84adbf?arch=amd64&repository_url=registry.redhat.io/openshift4/dpu-network-rhel8-operator&tag=v4.13.0-202310241102.p0.g35cbabd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-infiniband-cni@sha256:ded85ecda6adb848777b08064c5a0ccc63535c1392ab5cdb66eee15200baa32d_amd64", + "product": { + "name": "openshift4/ose-sriov-infiniband-cni@sha256:ded85ecda6adb848777b08064c5a0ccc63535c1392ab5cdb66eee15200baa32d_amd64", + "product_id": "openshift4/ose-sriov-infiniband-cni@sha256:ded85ecda6adb848777b08064c5a0ccc63535c1392ab5cdb66eee15200baa32d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-infiniband-cni@sha256:ded85ecda6adb848777b08064c5a0ccc63535c1392ab5cdb66eee15200baa32d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni&tag=v4.13.0-202310210425.p0.g000884f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ingress-node-firewall@sha256:2bb2a303e2b8543d45a5f5475826c04ce8a6819de5390bc3f8bcc600c07fc71e_amd64", + "product": { + "name": "openshift4/ingress-node-firewall@sha256:2bb2a303e2b8543d45a5f5475826c04ce8a6819de5390bc3f8bcc600c07fc71e_amd64", + "product_id": "openshift4/ingress-node-firewall@sha256:2bb2a303e2b8543d45a5f5475826c04ce8a6819de5390bc3f8bcc600c07fc71e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ingress-node-firewall@sha256:2bb2a303e2b8543d45a5f5475826c04ce8a6819de5390bc3f8bcc600c07fc71e?arch=amd64&repository_url=registry.redhat.io/openshift4/ingress-node-firewall&tag=v4.13.0-202310210425.p0.g8db1084.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ingress-node-firewall-rhel8-operator@sha256:23c2ab3fefc76154846642bc7f687e540a82aa9df7725f590cee4a667f999aee_amd64", + "product": { + "name": "openshift4/ingress-node-firewall-rhel8-operator@sha256:23c2ab3fefc76154846642bc7f687e540a82aa9df7725f590cee4a667f999aee_amd64", + "product_id": "openshift4/ingress-node-firewall-rhel8-operator@sha256:23c2ab3fefc76154846642bc7f687e540a82aa9df7725f590cee4a667f999aee_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ingress-node-firewall-rhel8-operator@sha256:23c2ab3fefc76154846642bc7f687e540a82aa9df7725f590cee4a667f999aee?arch=amd64&repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel8-operator&tag=v4.13.0-202310241102.p0.g8db1084.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-local-storage-diskmaker@sha256:eaf9e9954ebe8db1e0ff118eb27e718d461306f2abd76e964d4141c0a73a5c2f_amd64", + "product": { + "name": "openshift4/ose-local-storage-diskmaker@sha256:eaf9e9954ebe8db1e0ff118eb27e718d461306f2abd76e964d4141c0a73a5c2f_amd64", + "product_id": "openshift4/ose-local-storage-diskmaker@sha256:eaf9e9954ebe8db1e0ff118eb27e718d461306f2abd76e964d4141c0a73a5c2f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-local-storage-diskmaker@sha256:eaf9e9954ebe8db1e0ff118eb27e718d461306f2abd76e964d4141c0a73a5c2f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker&tag=v4.13.0-202310231526.p0.g84d8626.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-local-storage-operator@sha256:05cdaeb001da623de78225705582a2dd849e9f2e18cf11f38fad27b1bd33ccdf_amd64", + "product": { + "name": "openshift4/ose-local-storage-operator@sha256:05cdaeb001da623de78225705582a2dd849e9f2e18cf11f38fad27b1bd33ccdf_amd64", + "product_id": "openshift4/ose-local-storage-operator@sha256:05cdaeb001da623de78225705582a2dd849e9f2e18cf11f38fad27b1bd33ccdf_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-local-storage-operator@sha256:05cdaeb001da623de78225705582a2dd849e9f2e18cf11f38fad27b1bd33ccdf?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-local-storage-operator&tag=v4.13.0-202310241102.p0.g84d8626.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-node-feature-discovery@sha256:a0f622158b2810ced7211c40a873901ec3bef0676f3bf482b402dbe621bd3b34_amd64", + "product": { + "name": "openshift4/ose-node-feature-discovery@sha256:a0f622158b2810ced7211c40a873901ec3bef0676f3bf482b402dbe621bd3b34_amd64", + "product_id": "openshift4/ose-node-feature-discovery@sha256:a0f622158b2810ced7211c40a873901ec3bef0676f3bf482b402dbe621bd3b34_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-node-feature-discovery@sha256:a0f622158b2810ced7211c40a873901ec3bef0676f3bf482b402dbe621bd3b34?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery&tag=v4.13.0-202310210425.p0.g79c2147.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ansible-operator@sha256:0a78ecd4cdad87e8a31cfbb2e951e973f052505b86e035b6fec926b26abe8767_amd64", + "product": { + "name": "openshift4/ose-ansible-operator@sha256:0a78ecd4cdad87e8a31cfbb2e951e973f052505b86e035b6fec926b26abe8767_amd64", + "product_id": "openshift4/ose-ansible-operator@sha256:0a78ecd4cdad87e8a31cfbb2e951e973f052505b86e035b6fec926b26abe8767_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ansible-operator@sha256:0a78ecd4cdad87e8a31cfbb2e951e973f052505b86e035b6fec926b26abe8767?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ansible-operator&tag=v4.13.0-202310210425.p0.g860cade.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capacity@sha256:cbe8bd7f34ac3aa47c87dd4e2473077bfd686ae38422144ee88c9cebed8e522e_amd64", + "product": { + "name": "openshift4/ose-cluster-capacity@sha256:cbe8bd7f34ac3aa47c87dd4e2473077bfd686ae38422144ee88c9cebed8e522e_amd64", + "product_id": "openshift4/ose-cluster-capacity@sha256:cbe8bd7f34ac3aa47c87dd4e2473077bfd686ae38422144ee88c9cebed8e522e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capacity@sha256:cbe8bd7f34ac3aa47c87dd4e2473077bfd686ae38422144ee88c9cebed8e522e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-capacity&tag=v4.13.0-202310210425.p0.g3c223bb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-egress-dns-proxy@sha256:6e6a079733dc2836180518de07c6996cd10cef4f375b2f43ebf5af9ab51ca25c_amd64", + "product": { + "name": "openshift4/ose-egress-dns-proxy@sha256:6e6a079733dc2836180518de07c6996cd10cef4f375b2f43ebf5af9ab51ca25c_amd64", + "product_id": "openshift4/ose-egress-dns-proxy@sha256:6e6a079733dc2836180518de07c6996cd10cef4f375b2f43ebf5af9ab51ca25c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-egress-dns-proxy@sha256:6e6a079733dc2836180518de07c6996cd10cef4f375b2f43ebf5af9ab51ca25c?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy&tag=v4.13.0-202310210425.p0.g0465934.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-egress-router@sha256:18e7bd90690fb8bd59a58bc585b37030f66452d0bfe73619971feac85486447c_amd64", + "product": { + "name": "openshift4/ose-egress-router@sha256:18e7bd90690fb8bd59a58bc585b37030f66452d0bfe73619971feac85486447c_amd64", + "product_id": "openshift4/ose-egress-router@sha256:18e7bd90690fb8bd59a58bc585b37030f66452d0bfe73619971feac85486447c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-egress-router@sha256:18e7bd90690fb8bd59a58bc585b37030f66452d0bfe73619971feac85486447c?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-egress-router&tag=v4.13.0-202310210425.p0.g0465934.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-helm-operator@sha256:bb7b172916bdf8266e0e9ebba8ffe6a7b5b59fe52dce5badeef7549ea53e7fda_amd64", + "product": { + "name": "openshift4/ose-helm-operator@sha256:bb7b172916bdf8266e0e9ebba8ffe6a7b5b59fe52dce5badeef7549ea53e7fda_amd64", + "product_id": "openshift4/ose-helm-operator@sha256:bb7b172916bdf8266e0e9ebba8ffe6a7b5b59fe52dce5badeef7549ea53e7fda_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-helm-operator@sha256:bb7b172916bdf8266e0e9ebba8ffe6a7b5b59fe52dce5badeef7549ea53e7fda?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-helm-operator&tag=v4.13.0-202310210425.p0.g860cade.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-sdk-rhel8@sha256:f6f195f361335efbcc9f39be7d785c92706676f4b4185464b5f62b9476021bc3_amd64", + "product": { + "name": "openshift4/ose-operator-sdk-rhel8@sha256:f6f195f361335efbcc9f39be7d785c92706676f4b4185464b5f62b9476021bc3_amd64", + "product_id": "openshift4/ose-operator-sdk-rhel8@sha256:f6f195f361335efbcc9f39be7d785c92706676f4b4185464b5f62b9476021bc3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-sdk-rhel8@sha256:f6f195f361335efbcc9f39be7d785c92706676f4b4185464b5f62b9476021bc3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel8&tag=v4.13.0-202310210425.p0.g860cade.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:7795d7c909c98f3ba635db85c931aaca9856909e9562c4989fd035e408b06cc4_amd64", + "product": { + "name": "openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:7795d7c909c98f3ba635db85c931aaca9856909e9562c4989fd035e408b06cc4_amd64", + "product_id": "openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:7795d7c909c98f3ba635db85c931aaca9856909e9562c4989fd035e408b06cc4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kubernetes-nmstate-handler-rhel8@sha256:7795d7c909c98f3ba635db85c931aaca9856909e9562c4989fd035e408b06cc4?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8&tag=v4.13.0-202310210425.p0.g0c90011.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:5a4c4e5438e76b6373cee7269fdd299654a7def772f1499fc82a734cb722c148_amd64", + "product": { + "name": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:5a4c4e5438e76b6373cee7269fdd299654a7def772f1499fc82a734cb722c148_amd64", + "product_id": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:5a4c4e5438e76b6373cee7269fdd299654a7def772f1499fc82a734cb722c148_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-proxy-pull-test-rhel8@sha256:5a4c4e5438e76b6373cee7269fdd299654a7def772f1499fc82a734cb722c148?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openshift-proxy-pull-test-rhel8&tag=v4.13.0-202310210425.p0.g645056f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:4902726608bbf110aceac78d8386a2613ceaff86d0a8f1dc3011afe307d64415_amd64", + "product": { + "name": "openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:4902726608bbf110aceac78d8386a2613ceaff86d0a8f1dc3011afe307d64415_amd64", + "product_id": "openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:4902726608bbf110aceac78d8386a2613ceaff86d0a8f1dc3011afe307d64415_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-efs-csi-driver-container-rhel8@sha256:4902726608bbf110aceac78d8386a2613ceaff86d0a8f1dc3011afe307d64415?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8&tag=v4.13.0-202310231526.p0.gfb4c1be.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:f4877510f6984358914ec9cde3dce4825ba4bed920e28b94a72daa15875c6c8b_amd64", + "product": { + "name": "openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:f4877510f6984358914ec9cde3dce4825ba4bed920e28b94a72daa15875c6c8b_amd64", + "product_id": "openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:f4877510f6984358914ec9cde3dce4825ba4bed920e28b94a72daa15875c6c8b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-efs-csi-driver-rhel8-operator@sha256:f4877510f6984358914ec9cde3dce4825ba4bed920e28b94a72daa15875c6c8b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator&tag=v4.13.0-202310241102.p0.g4e77e92.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:4b828313acd198d2b20c0b56bf2ae2b20c6e0d9352b300a15142b25c79303f22_amd64", + "product": { + "name": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:4b828313acd198d2b20c0b56bf2ae2b20c6e0d9352b300a15142b25c79303f22_amd64", + "product_id": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:4b828313acd198d2b20c0b56bf2ae2b20c6e0d9352b300a15142b25c79303f22_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-descheduler-rhel8-operator@sha256:4b828313acd198d2b20c0b56bf2ae2b20c6e0d9352b300a15142b25c79303f22?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-descheduler-rhel8-operator&tag=v4.13.0-202310210425.p0.g5a1cb7d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-descheduler-operator@sha256:4b828313acd198d2b20c0b56bf2ae2b20c6e0d9352b300a15142b25c79303f22_amd64", + "product": { + "name": "openshift4/ose-cluster-kube-descheduler-operator@sha256:4b828313acd198d2b20c0b56bf2ae2b20c6e0d9352b300a15142b25c79303f22_amd64", + "product_id": "openshift4/ose-cluster-kube-descheduler-operator@sha256:4b828313acd198d2b20c0b56bf2ae2b20c6e0d9352b300a15142b25c79303f22_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-descheduler-operator@sha256:4b828313acd198d2b20c0b56bf2ae2b20c6e0d9352b300a15142b25c79303f22?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-descheduler-operator&tag=v4.13.0-202310210425.p0.g5a1cb7d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-clusterresourceoverride-rhel8@sha256:991e6b322f683e04750483abaec501e427534b513fb562a90253280b292d7370_amd64", + "product": { + "name": "openshift4/ose-clusterresourceoverride-rhel8@sha256:991e6b322f683e04750483abaec501e427534b513fb562a90253280b292d7370_amd64", + "product_id": "openshift4/ose-clusterresourceoverride-rhel8@sha256:991e6b322f683e04750483abaec501e427534b513fb562a90253280b292d7370_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-clusterresourceoverride-rhel8@sha256:991e6b322f683e04750483abaec501e427534b513fb562a90253280b292d7370?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8&tag=v4.13.0-202310240926.p0.g63d864a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d68e358e7779826845424d1b3320e3019bbf8776e9edceba139ab32afc077490_amd64", + "product": { + "name": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d68e358e7779826845424d1b3320e3019bbf8776e9edceba139ab32afc077490_amd64", + "product_id": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d68e358e7779826845424d1b3320e3019bbf8776e9edceba139ab32afc077490_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-clusterresourceoverride-rhel8-operator@sha256:d68e358e7779826845424d1b3320e3019bbf8776e9edceba139ab32afc077490?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator&tag=v4.13.0-202310240926.p0.g9e3cfa4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c4345c6b7089c330348debf5bb87d82cb6cc4f24f56d5ce2a7681de63f0b52c2_amd64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c4345c6b7089c330348debf5bb87d82cb6cc4f24f56d5ce2a7681de63f0b52c2_amd64", + "product_id": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c4345c6b7089c330348debf5bb87d82cb6cc4f24f56d5ce2a7681de63f0b52c2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c4345c6b7089c330348debf5bb87d82cb6cc4f24f56d5ce2a7681de63f0b52c2?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8&tag=v4.13.0-202310210425.p0.g9724dcf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-egress-http-proxy@sha256:51e5ed9f64ce7254360305abe492b85b4ea083cc8dd559e2b5c7a4a09cef8661_amd64", + "product": { + "name": "openshift4/ose-egress-http-proxy@sha256:51e5ed9f64ce7254360305abe492b85b4ea083cc8dd559e2b5c7a4a09cef8661_amd64", + "product_id": "openshift4/ose-egress-http-proxy@sha256:51e5ed9f64ce7254360305abe492b85b4ea083cc8dd559e2b5c7a4a09cef8661_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-egress-http-proxy@sha256:51e5ed9f64ce7254360305abe492b85b4ea083cc8dd559e2b5c7a4a09cef8661?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy&tag=v4.13.0-202310210425.p0.g0465934.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/frr-rhel8@sha256:00d2a90cb8ec02add70b819e4521569b80e8778780887f2063c1fdeff05cb3c7_amd64", + "product": { + "name": "openshift4/frr-rhel8@sha256:00d2a90cb8ec02add70b819e4521569b80e8778780887f2063c1fdeff05cb3c7_amd64", + "product_id": "openshift4/frr-rhel8@sha256:00d2a90cb8ec02add70b819e4521569b80e8778780887f2063c1fdeff05cb3c7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/frr-rhel8@sha256:00d2a90cb8ec02add70b819e4521569b80e8778780887f2063c1fdeff05cb3c7?arch=amd64&repository_url=registry.redhat.io/openshift4/frr-rhel8&tag=v4.13.0-202310210425.p0.gb9ba60f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d775abcce8f3ea93015a34a8c198776ee6d5579531808ded540e36ba388005e_amd64", + "product": { + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d775abcce8f3ea93015a34a8c198776ee6d5579531808ded540e36ba388005e_amd64", + "product_id": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d775abcce8f3ea93015a34a8c198776ee6d5579531808ded540e36ba388005e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-filestore-csi-driver-rhel8@sha256:8d775abcce8f3ea93015a34a8c198776ee6d5579531808ded540e36ba388005e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8&tag=v4.13.0-202310231526.p0.g7ff360a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:aa4e5b41f60cc33157aa554aec2c81b7495f0d66ec76d90107fec9e039118f00_amd64", + "product": { + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:aa4e5b41f60cc33157aa554aec2c81b7495f0d66ec76d90107fec9e039118f00_amd64", + "product_id": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:aa4e5b41f60cc33157aa554aec2c81b7495f0d66ec76d90107fec9e039118f00_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:aa4e5b41f60cc33157aa554aec2c81b7495f0d66ec76d90107fec9e039118f00?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator&tag=v4.13.0-202310241102.p0.gc7d7f1f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/kubernetes-nmstate-rhel8-operator@sha256:0b9c891ea13e156fe5158b9180e2f5579fe8106d5b21cbfa0747587e76ff4d95_amd64", + "product": { + "name": "openshift4/kubernetes-nmstate-rhel8-operator@sha256:0b9c891ea13e156fe5158b9180e2f5579fe8106d5b21cbfa0747587e76ff4d95_amd64", + "product_id": "openshift4/kubernetes-nmstate-rhel8-operator@sha256:0b9c891ea13e156fe5158b9180e2f5579fe8106d5b21cbfa0747587e76ff4d95_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubernetes-nmstate-rhel8-operator@sha256:0b9c891ea13e156fe5158b9180e2f5579fe8106d5b21cbfa0747587e76ff4d95?arch=amd64&repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator&tag=v4.13.0-202310210425.p0.g0c90011.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ptp@sha256:336d32282380765c821f9884f69ab5a3dddf1e860993a7dccdbd61401d5d82d1_amd64", + "product": { + "name": "openshift4/ose-ptp@sha256:336d32282380765c821f9884f69ab5a3dddf1e860993a7dccdbd61401d5d82d1_amd64", + "product_id": "openshift4/ose-ptp@sha256:336d32282380765c821f9884f69ab5a3dddf1e860993a7dccdbd61401d5d82d1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ptp@sha256:336d32282380765c821f9884f69ab5a3dddf1e860993a7dccdbd61401d5d82d1?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ptp&tag=v4.13.0-202310210425.p0.ga6b24bd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-local-storage-mustgather-rhel8@sha256:8c787c6916fc351bc9f50eadf71f3fd4e29f01816839fafaf0b0cc2784e2f06b_amd64", + "product": { + "name": "openshift4/ose-local-storage-mustgather-rhel8@sha256:8c787c6916fc351bc9f50eadf71f3fd4e29f01816839fafaf0b0cc2784e2f06b_amd64", + "product_id": "openshift4/ose-local-storage-mustgather-rhel8@sha256:8c787c6916fc351bc9f50eadf71f3fd4e29f01816839fafaf0b0cc2784e2f06b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-local-storage-mustgather-rhel8@sha256:8c787c6916fc351bc9f50eadf71f3fd4e29f01816839fafaf0b0cc2784e2f06b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel8&tag=v4.13.0-202310231526.p0.g84d8626.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift-tech-preview/metallb-rhel8@sha256:dad9b83e0fb1c1ac802cb2f95932e227467e6cc3c630c569a2f46f2d4c6b8cda_amd64", + "product": { + "name": "openshift-tech-preview/metallb-rhel8@sha256:dad9b83e0fb1c1ac802cb2f95932e227467e6cc3c630c569a2f46f2d4c6b8cda_amd64", + "product_id": "openshift-tech-preview/metallb-rhel8@sha256:dad9b83e0fb1c1ac802cb2f95932e227467e6cc3c630c569a2f46f2d4c6b8cda_amd64", + "product_identification_helper": { + "purl": "pkg:oci/metallb-rhel8@sha256:dad9b83e0fb1c1ac802cb2f95932e227467e6cc3c630c569a2f46f2d4c6b8cda?arch=amd64&repository_url=registry.redhat.io/openshift-tech-preview/metallb-rhel8&tag=v4.13.0-202310210425.p0.gd3c8a0d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/metallb-rhel8@sha256:dad9b83e0fb1c1ac802cb2f95932e227467e6cc3c630c569a2f46f2d4c6b8cda_amd64", + "product": { + "name": "openshift4/metallb-rhel8@sha256:dad9b83e0fb1c1ac802cb2f95932e227467e6cc3c630c569a2f46f2d4c6b8cda_amd64", + "product_id": "openshift4/metallb-rhel8@sha256:dad9b83e0fb1c1ac802cb2f95932e227467e6cc3c630c569a2f46f2d4c6b8cda_amd64", + "product_identification_helper": { + "purl": "pkg:oci/metallb-rhel8@sha256:dad9b83e0fb1c1ac802cb2f95932e227467e6cc3c630c569a2f46f2d4c6b8cda?arch=amd64&repository_url=registry.redhat.io/openshift4/metallb-rhel8&tag=v4.13.0-202310210425.p0.gd3c8a0d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/metallb-rhel8-operator@sha256:c8a44e11f061e541610603bf51b3930d6611ba366768c1f3d8dfecd237cfc97c_amd64", + "product": { + "name": "openshift4/metallb-rhel8-operator@sha256:c8a44e11f061e541610603bf51b3930d6611ba366768c1f3d8dfecd237cfc97c_amd64", + "product_id": "openshift4/metallb-rhel8-operator@sha256:c8a44e11f061e541610603bf51b3930d6611ba366768c1f3d8dfecd237cfc97c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/metallb-rhel8-operator@sha256:c8a44e11f061e541610603bf51b3930d6611ba366768c1f3d8dfecd237cfc97c?arch=amd64&repository_url=registry.redhat.io/openshift4/metallb-rhel8-operator&tag=v4.13.0-202310241102.p0.g6267b32.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ptp-operator@sha256:8025ab3d5508dc8ef7b70e8601f2faa48890dd1ee98a59d1a50e462c2e334595_amd64", + "product": { + "name": "openshift4/ose-ptp-operator@sha256:8025ab3d5508dc8ef7b70e8601f2faa48890dd1ee98a59d1a50e462c2e334595_amd64", + "product_id": "openshift4/ose-ptp-operator@sha256:8025ab3d5508dc8ef7b70e8601f2faa48890dd1ee98a59d1a50e462c2e334595_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ptp-operator@sha256:8025ab3d5508dc8ef7b70e8601f2faa48890dd1ee98a59d1a50e462c2e334595?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ptp-operator&tag=v4.13.0-202310241102.p0.g1763e62.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:88f8d319b810353f94381d8f3f0c3c72b254e22f209da6af4e23cb46ccd1105a_amd64", + "product": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:88f8d319b810353f94381d8f3f0c3c72b254e22f209da6af4e23cb46ccd1105a_amd64", + "product_id": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:88f8d319b810353f94381d8f3f0c3c72b254e22f209da6af4e23cb46ccd1105a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vertical-pod-autoscaler-rhel8@sha256:88f8d319b810353f94381d8f3f0c3c72b254e22f209da6af4e23cb46ccd1105a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8&tag=v4.13.0-202310210425.p0.gc58c53b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:be482022b3126bbd7dd0a54e7e33a64075e2a9abf4835ae89932358df2131482_amd64", + "product": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:be482022b3126bbd7dd0a54e7e33a64075e2a9abf4835ae89932358df2131482_amd64", + "product_id": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:be482022b3126bbd7dd0a54e7e33a64075e2a9abf4835ae89932358df2131482_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vertical-pod-autoscaler-rhel8-operator@sha256:be482022b3126bbd7dd0a54e7e33a64075e2a9abf4835ae89932358df2131482?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator&tag=v4.13.0-202310210425.p0.gdc186bf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ptp-must-gather-rhel8@sha256:9d851e4f3a76fe40c7c504b2676af14cf3016033ad0ff79976e92f0163a8b8c9_amd64", + "product": { + "name": "openshift4/ptp-must-gather-rhel8@sha256:9d851e4f3a76fe40c7c504b2676af14cf3016033ad0ff79976e92f0163a8b8c9_amd64", + "product_id": "openshift4/ptp-must-gather-rhel8@sha256:9d851e4f3a76fe40c7c504b2676af14cf3016033ad0ff79976e92f0163a8b8c9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ptp-must-gather-rhel8@sha256:9d851e4f3a76fe40c7c504b2676af14cf3016033ad0ff79976e92f0163a8b8c9?arch=amd64&repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel8&tag=v4.13.0-202310210425.p0.g1763e62.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/sriov-cni-rhel9@sha256:9d440268f279fdc21a13184831ae10089eaf14026424e363914484b19680640a_amd64", + "product": { + "name": "openshift4/sriov-cni-rhel9@sha256:9d440268f279fdc21a13184831ae10089eaf14026424e363914484b19680640a_amd64", + "product_id": "openshift4/sriov-cni-rhel9@sha256:9d440268f279fdc21a13184831ae10089eaf14026424e363914484b19680640a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/sriov-cni-rhel9@sha256:9d440268f279fdc21a13184831ae10089eaf14026424e363914484b19680640a?arch=amd64&repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9&tag=v4.13.0-202310210425.p0.g5b591b3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-dp-admission-controller@sha256:48a16d032b6934270bc5082132ce61db965089cd449e27017403782d7ee756c4_amd64", + "product": { + "name": "openshift4/ose-sriov-dp-admission-controller@sha256:48a16d032b6934270bc5082132ce61db965089cd449e27017403782d7ee756c4_amd64", + "product_id": "openshift4/ose-sriov-dp-admission-controller@sha256:48a16d032b6934270bc5082132ce61db965089cd449e27017403782d7ee756c4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-dp-admission-controller@sha256:48a16d032b6934270bc5082132ce61db965089cd449e27017403782d7ee756c4?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller&tag=v4.13.0-202310210425.p0.gdb24b2a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-network-config-daemon@sha256:afbbba806d6f69eda22743d97fc50c15a4dc848ee069d01de62a2f068b5f7f69_amd64", + "product": { + "name": "openshift4/ose-sriov-network-config-daemon@sha256:afbbba806d6f69eda22743d97fc50c15a4dc848ee069d01de62a2f068b5f7f69_amd64", + "product_id": "openshift4/ose-sriov-network-config-daemon@sha256:afbbba806d6f69eda22743d97fc50c15a4dc848ee069d01de62a2f068b5f7f69_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-network-config-daemon@sha256:afbbba806d6f69eda22743d97fc50c15a4dc848ee069d01de62a2f068b5f7f69?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon&tag=v4.13.0-202310210425.p0.g04f97d5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-network-device-plugin@sha256:90311f2b4238f1d1dd971e147fd0e974c755583ddbd9869aee946edbba750281_amd64", + "product": { + "name": "openshift4/ose-sriov-network-device-plugin@sha256:90311f2b4238f1d1dd971e147fd0e974c755583ddbd9869aee946edbba750281_amd64", + "product_id": "openshift4/ose-sriov-network-device-plugin@sha256:90311f2b4238f1d1dd971e147fd0e974c755583ddbd9869aee946edbba750281_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-network-device-plugin@sha256:90311f2b4238f1d1dd971e147fd0e974c755583ddbd9869aee946edbba750281?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin&tag=v4.13.0-202310210425.p0.g385c421.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-network-operator@sha256:8da3c47a3c157e390befa1b9e7cd959f2e63a59e95af7ff336f822a37387f147_amd64", + "product": { + "name": "openshift4/ose-sriov-network-operator@sha256:8da3c47a3c157e390befa1b9e7cd959f2e63a59e95af7ff336f822a37387f147_amd64", + "product_id": "openshift4/ose-sriov-network-operator@sha256:8da3c47a3c157e390befa1b9e7cd959f2e63a59e95af7ff336f822a37387f147_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-network-operator@sha256:8da3c47a3c157e390befa1b9e7cd959f2e63a59e95af7ff336f822a37387f147?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-sriov-network-operator&tag=v4.13.0-202310210425.p0.g04f97d5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-network-webhook@sha256:a8fdbb8e51c46f6acd0fdeca7a8903e1000af0b2f419ca4ef21157ab89d621aa_amd64", + "product": { + "name": "openshift4/ose-sriov-network-webhook@sha256:a8fdbb8e51c46f6acd0fdeca7a8903e1000af0b2f419ca4ef21157ab89d621aa_amd64", + "product_id": "openshift4/ose-sriov-network-webhook@sha256:a8fdbb8e51c46f6acd0fdeca7a8903e1000af0b2f419ca4ef21157ab89d621aa_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-network-webhook@sha256:a8fdbb8e51c46f6acd0fdeca7a8903e1000af0b2f419ca4ef21157ab89d621aa?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook&tag=v4.13.0-202310210425.p0.g04f97d5.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-descheduler@sha256:3ecc0eeec64dba93f317d030b446e2c742518e034b82c555d4a7b997d008a13f_arm64", + "product": { + "name": "openshift4/ose-descheduler@sha256:3ecc0eeec64dba93f317d030b446e2c742518e034b82c555d4a7b997d008a13f_arm64", + "product_id": "openshift4/ose-descheduler@sha256:3ecc0eeec64dba93f317d030b446e2c742518e034b82c555d4a7b997d008a13f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-descheduler@sha256:3ecc0eeec64dba93f317d030b446e2c742518e034b82c555d4a7b997d008a13f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-descheduler&tag=v4.13.0-202310210425.p0.g27e89a0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-node-problem-detector-rhel8@sha256:a89bc703dd46910d733946bbee872812a1e6457d3357958e2aef09ee55050a0c_arm64", + "product": { + "name": "openshift4/ose-node-problem-detector-rhel8@sha256:a89bc703dd46910d733946bbee872812a1e6457d3357958e2aef09ee55050a0c_arm64", + "product_id": "openshift4/ose-node-problem-detector-rhel8@sha256:a89bc703dd46910d733946bbee872812a1e6457d3357958e2aef09ee55050a0c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-node-problem-detector-rhel8@sha256:a89bc703dd46910d733946bbee872812a1e6457d3357958e2aef09ee55050a0c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-node-problem-detector-rhel8&tag=v4.13.0-202310210425.p0.g9183d5c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-event-proxy-rhel8@sha256:1f0552e4f75903ba5491959f0cb7f61a93c6068113183c1d5b1a14cf6b4dafdb_arm64", + "product": { + "name": "openshift4/ose-cloud-event-proxy-rhel8@sha256:1f0552e4f75903ba5491959f0cb7f61a93c6068113183c1d5b1a14cf6b4dafdb_arm64", + "product_id": "openshift4/ose-cloud-event-proxy-rhel8@sha256:1f0552e4f75903ba5491959f0cb7f61a93c6068113183c1d5b1a14cf6b4dafdb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-event-proxy-rhel8@sha256:1f0552e4f75903ba5491959f0cb7f61a93c6068113183c1d5b1a14cf6b4dafdb?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8&tag=v4.13.0-202310210425.p0.gc423635.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-event-proxy@sha256:1f0552e4f75903ba5491959f0cb7f61a93c6068113183c1d5b1a14cf6b4dafdb_arm64", + "product": { + "name": "openshift4/ose-cloud-event-proxy@sha256:1f0552e4f75903ba5491959f0cb7f61a93c6068113183c1d5b1a14cf6b4dafdb_arm64", + "product_id": "openshift4/ose-cloud-event-proxy@sha256:1f0552e4f75903ba5491959f0cb7f61a93c6068113183c1d5b1a14cf6b4dafdb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-event-proxy@sha256:1f0552e4f75903ba5491959f0cb7f61a93c6068113183c1d5b1a14cf6b4dafdb?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy&tag=v4.13.0-202310210425.p0.gc423635.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-nfd-operator@sha256:e285b2dcba5f362fbbea4dbf6095bf3d101c69715a4a07251f28b67432f31b89_arm64", + "product": { + "name": "openshift4/ose-cluster-nfd-operator@sha256:e285b2dcba5f362fbbea4dbf6095bf3d101c69715a4a07251f28b67432f31b89_arm64", + "product_id": "openshift4/ose-cluster-nfd-operator@sha256:e285b2dcba5f362fbbea4dbf6095bf3d101c69715a4a07251f28b67432f31b89_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-nfd-operator@sha256:e285b2dcba5f362fbbea4dbf6095bf3d101c69715a4a07251f28b67432f31b89?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-operator&tag=v4.13.0-202310241102.p0.ga1d6dd8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/dpu-network-rhel8-operator@sha256:6d3659fad8fc7f49e44a5d1577789dfb373670fa2fe8ebadc04870a81a04fe53_arm64", + "product": { + "name": "openshift4/dpu-network-rhel8-operator@sha256:6d3659fad8fc7f49e44a5d1577789dfb373670fa2fe8ebadc04870a81a04fe53_arm64", + "product_id": "openshift4/dpu-network-rhel8-operator@sha256:6d3659fad8fc7f49e44a5d1577789dfb373670fa2fe8ebadc04870a81a04fe53_arm64", + "product_identification_helper": { + "purl": "pkg:oci/dpu-network-rhel8-operator@sha256:6d3659fad8fc7f49e44a5d1577789dfb373670fa2fe8ebadc04870a81a04fe53?arch=arm64&repository_url=registry.redhat.io/openshift4/dpu-network-rhel8-operator&tag=v4.13.0-202310241102.p0.g35cbabd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-infiniband-cni@sha256:767bf9ece1744ff8a22445f82d1a48d72ad2b6a7588889c9970381fc41f28992_arm64", + "product": { + "name": "openshift4/ose-sriov-infiniband-cni@sha256:767bf9ece1744ff8a22445f82d1a48d72ad2b6a7588889c9970381fc41f28992_arm64", + "product_id": "openshift4/ose-sriov-infiniband-cni@sha256:767bf9ece1744ff8a22445f82d1a48d72ad2b6a7588889c9970381fc41f28992_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-infiniband-cni@sha256:767bf9ece1744ff8a22445f82d1a48d72ad2b6a7588889c9970381fc41f28992?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni&tag=v4.13.0-202310210425.p0.g000884f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ingress-node-firewall@sha256:f7c3afb7f1233ff7732febafac2cba8a2092da4e1cb186f9c0c4225df71a7371_arm64", + "product": { + "name": "openshift4/ingress-node-firewall@sha256:f7c3afb7f1233ff7732febafac2cba8a2092da4e1cb186f9c0c4225df71a7371_arm64", + "product_id": "openshift4/ingress-node-firewall@sha256:f7c3afb7f1233ff7732febafac2cba8a2092da4e1cb186f9c0c4225df71a7371_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ingress-node-firewall@sha256:f7c3afb7f1233ff7732febafac2cba8a2092da4e1cb186f9c0c4225df71a7371?arch=arm64&repository_url=registry.redhat.io/openshift4/ingress-node-firewall&tag=v4.13.0-202310210425.p0.g8db1084.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ingress-node-firewall-rhel8-operator@sha256:2aea4ffb73a90eaecac491d20cb8b047095c8d80a4826faf4e0db8fc56cfad65_arm64", + "product": { + "name": "openshift4/ingress-node-firewall-rhel8-operator@sha256:2aea4ffb73a90eaecac491d20cb8b047095c8d80a4826faf4e0db8fc56cfad65_arm64", + "product_id": "openshift4/ingress-node-firewall-rhel8-operator@sha256:2aea4ffb73a90eaecac491d20cb8b047095c8d80a4826faf4e0db8fc56cfad65_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ingress-node-firewall-rhel8-operator@sha256:2aea4ffb73a90eaecac491d20cb8b047095c8d80a4826faf4e0db8fc56cfad65?arch=arm64&repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel8-operator&tag=v4.13.0-202310241102.p0.g8db1084.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-local-storage-diskmaker@sha256:2d75f4492de03cd38f86a916c857b3ccfa3bf42ddf3305379ede5c00a6e35640_arm64", + "product": { + "name": "openshift4/ose-local-storage-diskmaker@sha256:2d75f4492de03cd38f86a916c857b3ccfa3bf42ddf3305379ede5c00a6e35640_arm64", + "product_id": "openshift4/ose-local-storage-diskmaker@sha256:2d75f4492de03cd38f86a916c857b3ccfa3bf42ddf3305379ede5c00a6e35640_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-local-storage-diskmaker@sha256:2d75f4492de03cd38f86a916c857b3ccfa3bf42ddf3305379ede5c00a6e35640?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker&tag=v4.13.0-202310231526.p0.g84d8626.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-local-storage-operator@sha256:1bdebfc18def3143aa2fc8e939d718245b2add95a2d796ef87502fa732239259_arm64", + "product": { + "name": "openshift4/ose-local-storage-operator@sha256:1bdebfc18def3143aa2fc8e939d718245b2add95a2d796ef87502fa732239259_arm64", + "product_id": "openshift4/ose-local-storage-operator@sha256:1bdebfc18def3143aa2fc8e939d718245b2add95a2d796ef87502fa732239259_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-local-storage-operator@sha256:1bdebfc18def3143aa2fc8e939d718245b2add95a2d796ef87502fa732239259?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-local-storage-operator&tag=v4.13.0-202310241102.p0.g84d8626.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-node-feature-discovery@sha256:19e215c87dbcd160906db9518f6994bcfe07ca8fa2b994bde1d34053f44a4d1e_arm64", + "product": { + "name": "openshift4/ose-node-feature-discovery@sha256:19e215c87dbcd160906db9518f6994bcfe07ca8fa2b994bde1d34053f44a4d1e_arm64", + "product_id": "openshift4/ose-node-feature-discovery@sha256:19e215c87dbcd160906db9518f6994bcfe07ca8fa2b994bde1d34053f44a4d1e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-node-feature-discovery@sha256:19e215c87dbcd160906db9518f6994bcfe07ca8fa2b994bde1d34053f44a4d1e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery&tag=v4.13.0-202310210425.p0.g79c2147.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ansible-operator@sha256:ccd2806a5f1e06ed26cb7e148b8eebbbb1b3f135e1c5432fe1be4eb1bb0a8345_arm64", + "product": { + "name": "openshift4/ose-ansible-operator@sha256:ccd2806a5f1e06ed26cb7e148b8eebbbb1b3f135e1c5432fe1be4eb1bb0a8345_arm64", + "product_id": "openshift4/ose-ansible-operator@sha256:ccd2806a5f1e06ed26cb7e148b8eebbbb1b3f135e1c5432fe1be4eb1bb0a8345_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ansible-operator@sha256:ccd2806a5f1e06ed26cb7e148b8eebbbb1b3f135e1c5432fe1be4eb1bb0a8345?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ansible-operator&tag=v4.13.0-202310210425.p0.g860cade.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capacity@sha256:43d462f963db83b18e7123af8af6c43fafc39bd5caca40981208b4c13cf1ca97_arm64", + "product": { + "name": "openshift4/ose-cluster-capacity@sha256:43d462f963db83b18e7123af8af6c43fafc39bd5caca40981208b4c13cf1ca97_arm64", + "product_id": "openshift4/ose-cluster-capacity@sha256:43d462f963db83b18e7123af8af6c43fafc39bd5caca40981208b4c13cf1ca97_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capacity@sha256:43d462f963db83b18e7123af8af6c43fafc39bd5caca40981208b4c13cf1ca97?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-capacity&tag=v4.13.0-202310210425.p0.g3c223bb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-egress-dns-proxy@sha256:ad0ae9be4463d99801a778142cc267f40216a13bdc3a04be69dab38d85deafc3_arm64", + "product": { + "name": "openshift4/ose-egress-dns-proxy@sha256:ad0ae9be4463d99801a778142cc267f40216a13bdc3a04be69dab38d85deafc3_arm64", + "product_id": "openshift4/ose-egress-dns-proxy@sha256:ad0ae9be4463d99801a778142cc267f40216a13bdc3a04be69dab38d85deafc3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-egress-dns-proxy@sha256:ad0ae9be4463d99801a778142cc267f40216a13bdc3a04be69dab38d85deafc3?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy&tag=v4.13.0-202310210425.p0.g0465934.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-egress-router@sha256:df428c921ae12d030a3ab7fe8508a202d1b1366545aa4705d455396ea5cfc631_arm64", + "product": { + "name": "openshift4/ose-egress-router@sha256:df428c921ae12d030a3ab7fe8508a202d1b1366545aa4705d455396ea5cfc631_arm64", + "product_id": "openshift4/ose-egress-router@sha256:df428c921ae12d030a3ab7fe8508a202d1b1366545aa4705d455396ea5cfc631_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-egress-router@sha256:df428c921ae12d030a3ab7fe8508a202d1b1366545aa4705d455396ea5cfc631?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-egress-router&tag=v4.13.0-202310210425.p0.g0465934.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-helm-operator@sha256:3019e28f57bb88d095e0033d1c22c543d4b5a133ce1cf8a50ed94355220284f1_arm64", + "product": { + "name": "openshift4/ose-helm-operator@sha256:3019e28f57bb88d095e0033d1c22c543d4b5a133ce1cf8a50ed94355220284f1_arm64", + "product_id": "openshift4/ose-helm-operator@sha256:3019e28f57bb88d095e0033d1c22c543d4b5a133ce1cf8a50ed94355220284f1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-helm-operator@sha256:3019e28f57bb88d095e0033d1c22c543d4b5a133ce1cf8a50ed94355220284f1?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-helm-operator&tag=v4.13.0-202310210425.p0.g860cade.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-sdk-rhel8@sha256:120fd3d63fb4b19fe58d336984869ffba972c3b63513d215bec1efb770aca8ae_arm64", + "product": { + "name": "openshift4/ose-operator-sdk-rhel8@sha256:120fd3d63fb4b19fe58d336984869ffba972c3b63513d215bec1efb770aca8ae_arm64", + "product_id": "openshift4/ose-operator-sdk-rhel8@sha256:120fd3d63fb4b19fe58d336984869ffba972c3b63513d215bec1efb770aca8ae_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-sdk-rhel8@sha256:120fd3d63fb4b19fe58d336984869ffba972c3b63513d215bec1efb770aca8ae?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel8&tag=v4.13.0-202310210425.p0.g860cade.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:49002f025bc069b341c4bba76844db11ac9c963b3669717c81d3a5734c5feae6_arm64", + "product": { + "name": "openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:49002f025bc069b341c4bba76844db11ac9c963b3669717c81d3a5734c5feae6_arm64", + "product_id": "openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:49002f025bc069b341c4bba76844db11ac9c963b3669717c81d3a5734c5feae6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kubernetes-nmstate-handler-rhel8@sha256:49002f025bc069b341c4bba76844db11ac9c963b3669717c81d3a5734c5feae6?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8&tag=v4.13.0-202310210425.p0.g0c90011.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:f66d1ea0a1e4416daa31f5bc50c388c95cb018945425f8bda58f6ef975a3b4a1_arm64", + "product": { + "name": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:f66d1ea0a1e4416daa31f5bc50c388c95cb018945425f8bda58f6ef975a3b4a1_arm64", + "product_id": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:f66d1ea0a1e4416daa31f5bc50c388c95cb018945425f8bda58f6ef975a3b4a1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-proxy-pull-test-rhel8@sha256:f66d1ea0a1e4416daa31f5bc50c388c95cb018945425f8bda58f6ef975a3b4a1?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openshift-proxy-pull-test-rhel8&tag=v4.13.0-202310210425.p0.g645056f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:ea22e5a0f5f1a7d6da42fedb587c413210b372685c46a577a575d9c1b54de167_arm64", + "product": { + "name": "openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:ea22e5a0f5f1a7d6da42fedb587c413210b372685c46a577a575d9c1b54de167_arm64", + "product_id": "openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:ea22e5a0f5f1a7d6da42fedb587c413210b372685c46a577a575d9c1b54de167_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-efs-csi-driver-container-rhel8@sha256:ea22e5a0f5f1a7d6da42fedb587c413210b372685c46a577a575d9c1b54de167?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-container-rhel8&tag=v4.13.0-202310231526.p0.gfb4c1be.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:25a57edcf261d5078c915cd68145a378adb967fe3e7f85518896fa8b3c788063_arm64", + "product": { + "name": "openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:25a57edcf261d5078c915cd68145a378adb967fe3e7f85518896fa8b3c788063_arm64", + "product_id": "openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:25a57edcf261d5078c915cd68145a378adb967fe3e7f85518896fa8b3c788063_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-efs-csi-driver-rhel8-operator@sha256:25a57edcf261d5078c915cd68145a378adb967fe3e7f85518896fa8b3c788063?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-efs-csi-driver-rhel8-operator&tag=v4.13.0-202310241102.p0.g4e77e92.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:110f47992edd56ec24fe067c8d45bd1267d89e57039a221318f8da290131b4c0_arm64", + "product": { + "name": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:110f47992edd56ec24fe067c8d45bd1267d89e57039a221318f8da290131b4c0_arm64", + "product_id": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:110f47992edd56ec24fe067c8d45bd1267d89e57039a221318f8da290131b4c0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-descheduler-rhel8-operator@sha256:110f47992edd56ec24fe067c8d45bd1267d89e57039a221318f8da290131b4c0?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-descheduler-rhel8-operator&tag=v4.13.0-202310210425.p0.g5a1cb7d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-descheduler-operator@sha256:110f47992edd56ec24fe067c8d45bd1267d89e57039a221318f8da290131b4c0_arm64", + "product": { + "name": "openshift4/ose-cluster-kube-descheduler-operator@sha256:110f47992edd56ec24fe067c8d45bd1267d89e57039a221318f8da290131b4c0_arm64", + "product_id": "openshift4/ose-cluster-kube-descheduler-operator@sha256:110f47992edd56ec24fe067c8d45bd1267d89e57039a221318f8da290131b4c0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-descheduler-operator@sha256:110f47992edd56ec24fe067c8d45bd1267d89e57039a221318f8da290131b4c0?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-descheduler-operator&tag=v4.13.0-202310210425.p0.g5a1cb7d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-clusterresourceoverride-rhel8@sha256:5986bb8251af335d11c4745d39c9511b21f8dd68c62d7b22b98889054610b39c_arm64", + "product": { + "name": "openshift4/ose-clusterresourceoverride-rhel8@sha256:5986bb8251af335d11c4745d39c9511b21f8dd68c62d7b22b98889054610b39c_arm64", + "product_id": "openshift4/ose-clusterresourceoverride-rhel8@sha256:5986bb8251af335d11c4745d39c9511b21f8dd68c62d7b22b98889054610b39c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-clusterresourceoverride-rhel8@sha256:5986bb8251af335d11c4745d39c9511b21f8dd68c62d7b22b98889054610b39c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8&tag=v4.13.0-202310240926.p0.g63d864a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:e9b02218f1b0cf9e9c99bc1deb64ba1337144af832c285c6208c940dc6eaea14_arm64", + "product": { + "name": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:e9b02218f1b0cf9e9c99bc1deb64ba1337144af832c285c6208c940dc6eaea14_arm64", + "product_id": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:e9b02218f1b0cf9e9c99bc1deb64ba1337144af832c285c6208c940dc6eaea14_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-clusterresourceoverride-rhel8-operator@sha256:e9b02218f1b0cf9e9c99bc1deb64ba1337144af832c285c6208c940dc6eaea14?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator&tag=v4.13.0-202310240926.p0.g9e3cfa4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:5fc572219938ed89003e4a21897a448dae71bc410c7fa123754afd8b83d9a429_arm64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:5fc572219938ed89003e4a21897a448dae71bc410c7fa123754afd8b83d9a429_arm64", + "product_id": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:5fc572219938ed89003e4a21897a448dae71bc410c7fa123754afd8b83d9a429_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:5fc572219938ed89003e4a21897a448dae71bc410c7fa123754afd8b83d9a429?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8&tag=v4.13.0-202310210425.p0.g9724dcf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-egress-http-proxy@sha256:e3a2d5a38d5593f7900117781013777f35eff526d566c508211a7f63dc45291d_arm64", + "product": { + "name": "openshift4/ose-egress-http-proxy@sha256:e3a2d5a38d5593f7900117781013777f35eff526d566c508211a7f63dc45291d_arm64", + "product_id": "openshift4/ose-egress-http-proxy@sha256:e3a2d5a38d5593f7900117781013777f35eff526d566c508211a7f63dc45291d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-egress-http-proxy@sha256:e3a2d5a38d5593f7900117781013777f35eff526d566c508211a7f63dc45291d?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy&tag=v4.13.0-202310210425.p0.g0465934.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/frr-rhel8@sha256:0170422d58598b741a42ef990412a5cda856b045176a752b5914fbe025ac17b9_arm64", + "product": { + "name": "openshift4/frr-rhel8@sha256:0170422d58598b741a42ef990412a5cda856b045176a752b5914fbe025ac17b9_arm64", + "product_id": "openshift4/frr-rhel8@sha256:0170422d58598b741a42ef990412a5cda856b045176a752b5914fbe025ac17b9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/frr-rhel8@sha256:0170422d58598b741a42ef990412a5cda856b045176a752b5914fbe025ac17b9?arch=arm64&repository_url=registry.redhat.io/openshift4/frr-rhel8&tag=v4.13.0-202310210425.p0.gb9ba60f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:ebcbeb0ea85ace38326301d82560fa5b41d4ecb8fdd2ddd89646eaef67db1e03_arm64", + "product": { + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:ebcbeb0ea85ace38326301d82560fa5b41d4ecb8fdd2ddd89646eaef67db1e03_arm64", + "product_id": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:ebcbeb0ea85ace38326301d82560fa5b41d4ecb8fdd2ddd89646eaef67db1e03_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-filestore-csi-driver-rhel8@sha256:ebcbeb0ea85ace38326301d82560fa5b41d4ecb8fdd2ddd89646eaef67db1e03?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8&tag=v4.13.0-202310231526.p0.g7ff360a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:2388004d85a80b5209d4e61696d6f61e9b907fd687ea6b2df0ea891f2c3f87a1_arm64", + "product": { + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:2388004d85a80b5209d4e61696d6f61e9b907fd687ea6b2df0ea891f2c3f87a1_arm64", + "product_id": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:2388004d85a80b5209d4e61696d6f61e9b907fd687ea6b2df0ea891f2c3f87a1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:2388004d85a80b5209d4e61696d6f61e9b907fd687ea6b2df0ea891f2c3f87a1?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator&tag=v4.13.0-202310241102.p0.gc7d7f1f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/kubernetes-nmstate-rhel8-operator@sha256:193af3dfd0ac76f70e4953173eb0d5c509e54d218abae84e9d8d2e3766da239b_arm64", + "product": { + "name": "openshift4/kubernetes-nmstate-rhel8-operator@sha256:193af3dfd0ac76f70e4953173eb0d5c509e54d218abae84e9d8d2e3766da239b_arm64", + "product_id": "openshift4/kubernetes-nmstate-rhel8-operator@sha256:193af3dfd0ac76f70e4953173eb0d5c509e54d218abae84e9d8d2e3766da239b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubernetes-nmstate-rhel8-operator@sha256:193af3dfd0ac76f70e4953173eb0d5c509e54d218abae84e9d8d2e3766da239b?arch=arm64&repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator&tag=v4.13.0-202310210425.p0.g0c90011.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ptp@sha256:17f6aa98ce266c4d5f55f4625ab8006aa8ee4eddea63e013da9ce4a844bc9e0f_arm64", + "product": { + "name": "openshift4/ose-ptp@sha256:17f6aa98ce266c4d5f55f4625ab8006aa8ee4eddea63e013da9ce4a844bc9e0f_arm64", + "product_id": "openshift4/ose-ptp@sha256:17f6aa98ce266c4d5f55f4625ab8006aa8ee4eddea63e013da9ce4a844bc9e0f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ptp@sha256:17f6aa98ce266c4d5f55f4625ab8006aa8ee4eddea63e013da9ce4a844bc9e0f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ptp&tag=v4.13.0-202310210425.p0.ga6b24bd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-local-storage-mustgather-rhel8@sha256:36e226018b729d091d18bda697a1f61d07bc0de2d071bc2afc9dc28aeac136c7_arm64", + "product": { + "name": "openshift4/ose-local-storage-mustgather-rhel8@sha256:36e226018b729d091d18bda697a1f61d07bc0de2d071bc2afc9dc28aeac136c7_arm64", + "product_id": "openshift4/ose-local-storage-mustgather-rhel8@sha256:36e226018b729d091d18bda697a1f61d07bc0de2d071bc2afc9dc28aeac136c7_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-local-storage-mustgather-rhel8@sha256:36e226018b729d091d18bda697a1f61d07bc0de2d071bc2afc9dc28aeac136c7?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel8&tag=v4.13.0-202310231526.p0.g84d8626.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift-tech-preview/metallb-rhel8@sha256:a1cdafb7a4f5b399ba3a2bbbd97f6ec55fa58d0b0bcff73645a6939710218e79_arm64", + "product": { + "name": "openshift-tech-preview/metallb-rhel8@sha256:a1cdafb7a4f5b399ba3a2bbbd97f6ec55fa58d0b0bcff73645a6939710218e79_arm64", + "product_id": "openshift-tech-preview/metallb-rhel8@sha256:a1cdafb7a4f5b399ba3a2bbbd97f6ec55fa58d0b0bcff73645a6939710218e79_arm64", + "product_identification_helper": { + "purl": "pkg:oci/metallb-rhel8@sha256:a1cdafb7a4f5b399ba3a2bbbd97f6ec55fa58d0b0bcff73645a6939710218e79?arch=arm64&repository_url=registry.redhat.io/openshift-tech-preview/metallb-rhel8&tag=v4.13.0-202310210425.p0.gd3c8a0d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/metallb-rhel8@sha256:a1cdafb7a4f5b399ba3a2bbbd97f6ec55fa58d0b0bcff73645a6939710218e79_arm64", + "product": { + "name": "openshift4/metallb-rhel8@sha256:a1cdafb7a4f5b399ba3a2bbbd97f6ec55fa58d0b0bcff73645a6939710218e79_arm64", + "product_id": "openshift4/metallb-rhel8@sha256:a1cdafb7a4f5b399ba3a2bbbd97f6ec55fa58d0b0bcff73645a6939710218e79_arm64", + "product_identification_helper": { + "purl": "pkg:oci/metallb-rhel8@sha256:a1cdafb7a4f5b399ba3a2bbbd97f6ec55fa58d0b0bcff73645a6939710218e79?arch=arm64&repository_url=registry.redhat.io/openshift4/metallb-rhel8&tag=v4.13.0-202310210425.p0.gd3c8a0d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/metallb-rhel8-operator@sha256:ecfafbad777f3c53ed067e3909b6d543d235d660e228e0f9a59ea9b0e8cd3949_arm64", + "product": { + "name": "openshift4/metallb-rhel8-operator@sha256:ecfafbad777f3c53ed067e3909b6d543d235d660e228e0f9a59ea9b0e8cd3949_arm64", + "product_id": "openshift4/metallb-rhel8-operator@sha256:ecfafbad777f3c53ed067e3909b6d543d235d660e228e0f9a59ea9b0e8cd3949_arm64", + "product_identification_helper": { + "purl": "pkg:oci/metallb-rhel8-operator@sha256:ecfafbad777f3c53ed067e3909b6d543d235d660e228e0f9a59ea9b0e8cd3949?arch=arm64&repository_url=registry.redhat.io/openshift4/metallb-rhel8-operator&tag=v4.13.0-202310241102.p0.g6267b32.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ptp-operator@sha256:06589a4329529a8a3a33cd4fd472e09194e458800d7768c718d92c28b8434380_arm64", + "product": { + "name": "openshift4/ose-ptp-operator@sha256:06589a4329529a8a3a33cd4fd472e09194e458800d7768c718d92c28b8434380_arm64", + "product_id": "openshift4/ose-ptp-operator@sha256:06589a4329529a8a3a33cd4fd472e09194e458800d7768c718d92c28b8434380_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ptp-operator@sha256:06589a4329529a8a3a33cd4fd472e09194e458800d7768c718d92c28b8434380?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ptp-operator&tag=v4.13.0-202310241102.p0.g1763e62.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:0be5e3279676335fff768ad7896f5dd2fd840c7b4f8d0468ea108040e80bbd9b_arm64", + "product": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:0be5e3279676335fff768ad7896f5dd2fd840c7b4f8d0468ea108040e80bbd9b_arm64", + "product_id": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:0be5e3279676335fff768ad7896f5dd2fd840c7b4f8d0468ea108040e80bbd9b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vertical-pod-autoscaler-rhel8@sha256:0be5e3279676335fff768ad7896f5dd2fd840c7b4f8d0468ea108040e80bbd9b?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8&tag=v4.13.0-202310210425.p0.gc58c53b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:9380b581667dee61ca2895e6e970f01779fc333dbbcd6c98dd305d82cfa1567a_arm64", + "product": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:9380b581667dee61ca2895e6e970f01779fc333dbbcd6c98dd305d82cfa1567a_arm64", + "product_id": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:9380b581667dee61ca2895e6e970f01779fc333dbbcd6c98dd305d82cfa1567a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vertical-pod-autoscaler-rhel8-operator@sha256:9380b581667dee61ca2895e6e970f01779fc333dbbcd6c98dd305d82cfa1567a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator&tag=v4.13.0-202310210425.p0.gdc186bf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ptp-must-gather-rhel8@sha256:2ce3cbe42e9f232c15e6e48b36584e79feeada3f9ab7d1b28aa22a805d423ad8_arm64", + "product": { + "name": "openshift4/ptp-must-gather-rhel8@sha256:2ce3cbe42e9f232c15e6e48b36584e79feeada3f9ab7d1b28aa22a805d423ad8_arm64", + "product_id": "openshift4/ptp-must-gather-rhel8@sha256:2ce3cbe42e9f232c15e6e48b36584e79feeada3f9ab7d1b28aa22a805d423ad8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ptp-must-gather-rhel8@sha256:2ce3cbe42e9f232c15e6e48b36584e79feeada3f9ab7d1b28aa22a805d423ad8?arch=arm64&repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel8&tag=v4.13.0-202310210425.p0.g1763e62.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/sriov-cni-rhel9@sha256:e2dfa33dc5dca27baf5039d02fb06811d2ed50dd0db028620a0887961a29f8d3_arm64", + "product": { + "name": "openshift4/sriov-cni-rhel9@sha256:e2dfa33dc5dca27baf5039d02fb06811d2ed50dd0db028620a0887961a29f8d3_arm64", + "product_id": "openshift4/sriov-cni-rhel9@sha256:e2dfa33dc5dca27baf5039d02fb06811d2ed50dd0db028620a0887961a29f8d3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/sriov-cni-rhel9@sha256:e2dfa33dc5dca27baf5039d02fb06811d2ed50dd0db028620a0887961a29f8d3?arch=arm64&repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9&tag=v4.13.0-202310210425.p0.g5b591b3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-dp-admission-controller@sha256:85fceff968dc1b54edabce7a1a1cb04bde91f82302840923c2595d89041f3df7_arm64", + "product": { + "name": "openshift4/ose-sriov-dp-admission-controller@sha256:85fceff968dc1b54edabce7a1a1cb04bde91f82302840923c2595d89041f3df7_arm64", + "product_id": "openshift4/ose-sriov-dp-admission-controller@sha256:85fceff968dc1b54edabce7a1a1cb04bde91f82302840923c2595d89041f3df7_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-dp-admission-controller@sha256:85fceff968dc1b54edabce7a1a1cb04bde91f82302840923c2595d89041f3df7?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller&tag=v4.13.0-202310210425.p0.gdb24b2a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-network-config-daemon@sha256:523d18f994c0dca5d532c257cbd5d18a9888958f745028e0c9ffa0d9f888ee56_arm64", + "product": { + "name": "openshift4/ose-sriov-network-config-daemon@sha256:523d18f994c0dca5d532c257cbd5d18a9888958f745028e0c9ffa0d9f888ee56_arm64", + "product_id": "openshift4/ose-sriov-network-config-daemon@sha256:523d18f994c0dca5d532c257cbd5d18a9888958f745028e0c9ffa0d9f888ee56_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-network-config-daemon@sha256:523d18f994c0dca5d532c257cbd5d18a9888958f745028e0c9ffa0d9f888ee56?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon&tag=v4.13.0-202310210425.p0.g04f97d5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-network-device-plugin@sha256:d207a94593aec1dcf51393db4fd1813e21c7ac9d828631230d9ae2c557336514_arm64", + "product": { + "name": "openshift4/ose-sriov-network-device-plugin@sha256:d207a94593aec1dcf51393db4fd1813e21c7ac9d828631230d9ae2c557336514_arm64", + "product_id": "openshift4/ose-sriov-network-device-plugin@sha256:d207a94593aec1dcf51393db4fd1813e21c7ac9d828631230d9ae2c557336514_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-network-device-plugin@sha256:d207a94593aec1dcf51393db4fd1813e21c7ac9d828631230d9ae2c557336514?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin&tag=v4.13.0-202310210425.p0.g385c421.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-network-operator@sha256:5eb9a0742bfe48b1e3812d0e6419e9ed84a7aa0e083d91b60e254efe96dfd3e8_arm64", + "product": { + "name": "openshift4/ose-sriov-network-operator@sha256:5eb9a0742bfe48b1e3812d0e6419e9ed84a7aa0e083d91b60e254efe96dfd3e8_arm64", + "product_id": "openshift4/ose-sriov-network-operator@sha256:5eb9a0742bfe48b1e3812d0e6419e9ed84a7aa0e083d91b60e254efe96dfd3e8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-network-operator@sha256:5eb9a0742bfe48b1e3812d0e6419e9ed84a7aa0e083d91b60e254efe96dfd3e8?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-sriov-network-operator&tag=v4.13.0-202310210425.p0.g04f97d5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-network-webhook@sha256:c4f26e03c130218c56994a7e564bcd0ba35d7cc1149b1b4dcc3b5c39fc63dbd4_arm64", + "product": { + "name": "openshift4/ose-sriov-network-webhook@sha256:c4f26e03c130218c56994a7e564bcd0ba35d7cc1149b1b4dcc3b5c39fc63dbd4_arm64", + "product_id": "openshift4/ose-sriov-network-webhook@sha256:c4f26e03c130218c56994a7e564bcd0ba35d7cc1149b1b4dcc3b5c39fc63dbd4_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-network-webhook@sha256:c4f26e03c130218c56994a7e564bcd0ba35d7cc1149b1b4dcc3b5c39fc63dbd4?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook&tag=v4.13.0-202310210425.p0.g04f97d5.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-descheduler@sha256:92fdd8f1e3b95565ae598fd32842d0f7b3d32c731873f47774c9d61d379be373_ppc64le", + "product": { + "name": "openshift4/ose-descheduler@sha256:92fdd8f1e3b95565ae598fd32842d0f7b3d32c731873f47774c9d61d379be373_ppc64le", + "product_id": "openshift4/ose-descheduler@sha256:92fdd8f1e3b95565ae598fd32842d0f7b3d32c731873f47774c9d61d379be373_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-descheduler@sha256:92fdd8f1e3b95565ae598fd32842d0f7b3d32c731873f47774c9d61d379be373?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-descheduler&tag=v4.13.0-202310210425.p0.g27e89a0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-node-problem-detector-rhel8@sha256:ac23ce0179a7f71f19e56aaa4d7dc48ee26702e9ad2b1055695812dee12c7888_ppc64le", + "product": { + "name": "openshift4/ose-node-problem-detector-rhel8@sha256:ac23ce0179a7f71f19e56aaa4d7dc48ee26702e9ad2b1055695812dee12c7888_ppc64le", + "product_id": "openshift4/ose-node-problem-detector-rhel8@sha256:ac23ce0179a7f71f19e56aaa4d7dc48ee26702e9ad2b1055695812dee12c7888_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-node-problem-detector-rhel8@sha256:ac23ce0179a7f71f19e56aaa4d7dc48ee26702e9ad2b1055695812dee12c7888?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-node-problem-detector-rhel8&tag=v4.13.0-202310210425.p0.g9183d5c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-event-proxy-rhel8@sha256:b794c9ca44d41e728cef1600c4385c67bec5455ac1580a247a4d8c2868f7c468_ppc64le", + "product": { + "name": "openshift4/ose-cloud-event-proxy-rhel8@sha256:b794c9ca44d41e728cef1600c4385c67bec5455ac1580a247a4d8c2868f7c468_ppc64le", + "product_id": "openshift4/ose-cloud-event-proxy-rhel8@sha256:b794c9ca44d41e728cef1600c4385c67bec5455ac1580a247a4d8c2868f7c468_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-event-proxy-rhel8@sha256:b794c9ca44d41e728cef1600c4385c67bec5455ac1580a247a4d8c2868f7c468?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy-rhel8&tag=v4.13.0-202310210425.p0.gc423635.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-event-proxy@sha256:b794c9ca44d41e728cef1600c4385c67bec5455ac1580a247a4d8c2868f7c468_ppc64le", + "product": { + "name": "openshift4/ose-cloud-event-proxy@sha256:b794c9ca44d41e728cef1600c4385c67bec5455ac1580a247a4d8c2868f7c468_ppc64le", + "product_id": "openshift4/ose-cloud-event-proxy@sha256:b794c9ca44d41e728cef1600c4385c67bec5455ac1580a247a4d8c2868f7c468_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-event-proxy@sha256:b794c9ca44d41e728cef1600c4385c67bec5455ac1580a247a4d8c2868f7c468?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cloud-event-proxy&tag=v4.13.0-202310210425.p0.gc423635.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-nfd-operator@sha256:12daaed1d90ca668046444bd34f0526b0f6025ceb1c80c8fc72ff33c8d147224_ppc64le", + "product": { + "name": "openshift4/ose-cluster-nfd-operator@sha256:12daaed1d90ca668046444bd34f0526b0f6025ceb1c80c8fc72ff33c8d147224_ppc64le", + "product_id": "openshift4/ose-cluster-nfd-operator@sha256:12daaed1d90ca668046444bd34f0526b0f6025ceb1c80c8fc72ff33c8d147224_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-nfd-operator@sha256:12daaed1d90ca668046444bd34f0526b0f6025ceb1c80c8fc72ff33c8d147224?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-nfd-operator&tag=v4.13.0-202310241102.p0.ga1d6dd8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-infiniband-cni@sha256:8f33db44cfe95dc66ae9aefd391bcf36ad5d9344a9e3f5c1fedaf3ee2c519582_ppc64le", + "product": { + "name": "openshift4/ose-sriov-infiniband-cni@sha256:8f33db44cfe95dc66ae9aefd391bcf36ad5d9344a9e3f5c1fedaf3ee2c519582_ppc64le", + "product_id": "openshift4/ose-sriov-infiniband-cni@sha256:8f33db44cfe95dc66ae9aefd391bcf36ad5d9344a9e3f5c1fedaf3ee2c519582_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-infiniband-cni@sha256:8f33db44cfe95dc66ae9aefd391bcf36ad5d9344a9e3f5c1fedaf3ee2c519582?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-sriov-infiniband-cni&tag=v4.13.0-202310210425.p0.g000884f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ingress-node-firewall@sha256:84938ed1f7e65a6602eeb6635d438c75c6cb190cd4b0d174129243e917275d44_ppc64le", + "product": { + "name": "openshift4/ingress-node-firewall@sha256:84938ed1f7e65a6602eeb6635d438c75c6cb190cd4b0d174129243e917275d44_ppc64le", + "product_id": "openshift4/ingress-node-firewall@sha256:84938ed1f7e65a6602eeb6635d438c75c6cb190cd4b0d174129243e917275d44_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ingress-node-firewall@sha256:84938ed1f7e65a6602eeb6635d438c75c6cb190cd4b0d174129243e917275d44?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ingress-node-firewall&tag=v4.13.0-202310210425.p0.g8db1084.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ingress-node-firewall-rhel8-operator@sha256:f5cd1f4cbbaae11b48f040e2435fc01d4a66c17bc185b73eb57f5a0ebfc0dd5c_ppc64le", + "product": { + "name": "openshift4/ingress-node-firewall-rhel8-operator@sha256:f5cd1f4cbbaae11b48f040e2435fc01d4a66c17bc185b73eb57f5a0ebfc0dd5c_ppc64le", + "product_id": "openshift4/ingress-node-firewall-rhel8-operator@sha256:f5cd1f4cbbaae11b48f040e2435fc01d4a66c17bc185b73eb57f5a0ebfc0dd5c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ingress-node-firewall-rhel8-operator@sha256:f5cd1f4cbbaae11b48f040e2435fc01d4a66c17bc185b73eb57f5a0ebfc0dd5c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ingress-node-firewall-rhel8-operator&tag=v4.13.0-202310241102.p0.g8db1084.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-local-storage-diskmaker@sha256:0943f880a0b6f5f30348da6fb09b75b771bb8b734edd8f554370a94739a28bf0_ppc64le", + "product": { + "name": "openshift4/ose-local-storage-diskmaker@sha256:0943f880a0b6f5f30348da6fb09b75b771bb8b734edd8f554370a94739a28bf0_ppc64le", + "product_id": "openshift4/ose-local-storage-diskmaker@sha256:0943f880a0b6f5f30348da6fb09b75b771bb8b734edd8f554370a94739a28bf0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-local-storage-diskmaker@sha256:0943f880a0b6f5f30348da6fb09b75b771bb8b734edd8f554370a94739a28bf0?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-local-storage-diskmaker&tag=v4.13.0-202310231526.p0.g84d8626.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-local-storage-operator@sha256:b318d3db35bc55e1d2f1a48a6bc14fb56fcfb9f03bf85e6af8803928c4f004e2_ppc64le", + "product": { + "name": "openshift4/ose-local-storage-operator@sha256:b318d3db35bc55e1d2f1a48a6bc14fb56fcfb9f03bf85e6af8803928c4f004e2_ppc64le", + "product_id": "openshift4/ose-local-storage-operator@sha256:b318d3db35bc55e1d2f1a48a6bc14fb56fcfb9f03bf85e6af8803928c4f004e2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-local-storage-operator@sha256:b318d3db35bc55e1d2f1a48a6bc14fb56fcfb9f03bf85e6af8803928c4f004e2?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-local-storage-operator&tag=v4.13.0-202310241102.p0.g84d8626.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-node-feature-discovery@sha256:517d75599e24165059187f4216c5299d59841359766d929a316d23a2f8b04ee8_ppc64le", + "product": { + "name": "openshift4/ose-node-feature-discovery@sha256:517d75599e24165059187f4216c5299d59841359766d929a316d23a2f8b04ee8_ppc64le", + "product_id": "openshift4/ose-node-feature-discovery@sha256:517d75599e24165059187f4216c5299d59841359766d929a316d23a2f8b04ee8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-node-feature-discovery@sha256:517d75599e24165059187f4216c5299d59841359766d929a316d23a2f8b04ee8?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-node-feature-discovery&tag=v4.13.0-202310210425.p0.g79c2147.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ansible-operator@sha256:b9bdd60e2586824a089c06d2e4b376f377625b63db18894b46bad16477bab251_ppc64le", + "product": { + "name": "openshift4/ose-ansible-operator@sha256:b9bdd60e2586824a089c06d2e4b376f377625b63db18894b46bad16477bab251_ppc64le", + "product_id": "openshift4/ose-ansible-operator@sha256:b9bdd60e2586824a089c06d2e4b376f377625b63db18894b46bad16477bab251_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ansible-operator@sha256:b9bdd60e2586824a089c06d2e4b376f377625b63db18894b46bad16477bab251?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ansible-operator&tag=v4.13.0-202310210425.p0.g860cade.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capacity@sha256:37385b219716e2c6a28112622385750d07a2529e438aef0bc0f2d08065fbe67a_ppc64le", + "product": { + "name": "openshift4/ose-cluster-capacity@sha256:37385b219716e2c6a28112622385750d07a2529e438aef0bc0f2d08065fbe67a_ppc64le", + "product_id": "openshift4/ose-cluster-capacity@sha256:37385b219716e2c6a28112622385750d07a2529e438aef0bc0f2d08065fbe67a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capacity@sha256:37385b219716e2c6a28112622385750d07a2529e438aef0bc0f2d08065fbe67a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-capacity&tag=v4.13.0-202310210425.p0.g3c223bb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-egress-dns-proxy@sha256:788588e4da19baf7315e1fdc8a2b990b1b089964c3cc5f76e2c03889a0cd142b_ppc64le", + "product": { + "name": "openshift4/ose-egress-dns-proxy@sha256:788588e4da19baf7315e1fdc8a2b990b1b089964c3cc5f76e2c03889a0cd142b_ppc64le", + "product_id": "openshift4/ose-egress-dns-proxy@sha256:788588e4da19baf7315e1fdc8a2b990b1b089964c3cc5f76e2c03889a0cd142b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-egress-dns-proxy@sha256:788588e4da19baf7315e1fdc8a2b990b1b089964c3cc5f76e2c03889a0cd142b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-egress-dns-proxy&tag=v4.13.0-202310210425.p0.g0465934.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-egress-router@sha256:899e8d9922ef9388625db9e2e4856f668b0d4014a6897cc80e5bc4130a66f325_ppc64le", + "product": { + "name": "openshift4/ose-egress-router@sha256:899e8d9922ef9388625db9e2e4856f668b0d4014a6897cc80e5bc4130a66f325_ppc64le", + "product_id": "openshift4/ose-egress-router@sha256:899e8d9922ef9388625db9e2e4856f668b0d4014a6897cc80e5bc4130a66f325_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-egress-router@sha256:899e8d9922ef9388625db9e2e4856f668b0d4014a6897cc80e5bc4130a66f325?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-egress-router&tag=v4.13.0-202310210425.p0.g0465934.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-helm-operator@sha256:f6ff3a2a34d4ea9cdf6bb19ad978d3db8d611d8b045fae12215ca764370835aa_ppc64le", + "product": { + "name": "openshift4/ose-helm-operator@sha256:f6ff3a2a34d4ea9cdf6bb19ad978d3db8d611d8b045fae12215ca764370835aa_ppc64le", + "product_id": "openshift4/ose-helm-operator@sha256:f6ff3a2a34d4ea9cdf6bb19ad978d3db8d611d8b045fae12215ca764370835aa_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-helm-operator@sha256:f6ff3a2a34d4ea9cdf6bb19ad978d3db8d611d8b045fae12215ca764370835aa?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-helm-operator&tag=v4.13.0-202310210425.p0.g860cade.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-sdk-rhel8@sha256:2595ab6a45f9e1fc27c48fe9f73a5119e2d40bccd54cdcd14005036af1abd8f6_ppc64le", + "product": { + "name": "openshift4/ose-operator-sdk-rhel8@sha256:2595ab6a45f9e1fc27c48fe9f73a5119e2d40bccd54cdcd14005036af1abd8f6_ppc64le", + "product_id": "openshift4/ose-operator-sdk-rhel8@sha256:2595ab6a45f9e1fc27c48fe9f73a5119e2d40bccd54cdcd14005036af1abd8f6_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-sdk-rhel8@sha256:2595ab6a45f9e1fc27c48fe9f73a5119e2d40bccd54cdcd14005036af1abd8f6?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-operator-sdk-rhel8&tag=v4.13.0-202310210425.p0.g860cade.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:79757eb52872ded0daee72b36a9e7df618f3db67a43fd37b4039058c09995ec9_ppc64le", + "product": { + "name": "openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:79757eb52872ded0daee72b36a9e7df618f3db67a43fd37b4039058c09995ec9_ppc64le", + "product_id": "openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:79757eb52872ded0daee72b36a9e7df618f3db67a43fd37b4039058c09995ec9_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kubernetes-nmstate-handler-rhel8@sha256:79757eb52872ded0daee72b36a9e7df618f3db67a43fd37b4039058c09995ec9?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kubernetes-nmstate-handler-rhel8&tag=v4.13.0-202310210425.p0.g0c90011.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:61b6d453f5cbb9a51362259f8c4d152bf5474cc2f8e6c8b96cab38e8f163f51c_ppc64le", + "product": { + "name": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:61b6d453f5cbb9a51362259f8c4d152bf5474cc2f8e6c8b96cab38e8f163f51c_ppc64le", + "product_id": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:61b6d453f5cbb9a51362259f8c4d152bf5474cc2f8e6c8b96cab38e8f163f51c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-proxy-pull-test-rhel8@sha256:61b6d453f5cbb9a51362259f8c4d152bf5474cc2f8e6c8b96cab38e8f163f51c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openshift-proxy-pull-test-rhel8&tag=v4.13.0-202310210425.p0.g645056f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:a861507aa4fbf67528ccb1cea0b9e813c07a8529ed7e2d3e6dc0d2da235786a1_ppc64le", + "product": { + "name": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:a861507aa4fbf67528ccb1cea0b9e813c07a8529ed7e2d3e6dc0d2da235786a1_ppc64le", + "product_id": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:a861507aa4fbf67528ccb1cea0b9e813c07a8529ed7e2d3e6dc0d2da235786a1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-descheduler-rhel8-operator@sha256:a861507aa4fbf67528ccb1cea0b9e813c07a8529ed7e2d3e6dc0d2da235786a1?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-descheduler-rhel8-operator&tag=v4.13.0-202310210425.p0.g5a1cb7d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-descheduler-operator@sha256:a861507aa4fbf67528ccb1cea0b9e813c07a8529ed7e2d3e6dc0d2da235786a1_ppc64le", + "product": { + "name": "openshift4/ose-cluster-kube-descheduler-operator@sha256:a861507aa4fbf67528ccb1cea0b9e813c07a8529ed7e2d3e6dc0d2da235786a1_ppc64le", + "product_id": "openshift4/ose-cluster-kube-descheduler-operator@sha256:a861507aa4fbf67528ccb1cea0b9e813c07a8529ed7e2d3e6dc0d2da235786a1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-descheduler-operator@sha256:a861507aa4fbf67528ccb1cea0b9e813c07a8529ed7e2d3e6dc0d2da235786a1?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-descheduler-operator&tag=v4.13.0-202310210425.p0.g5a1cb7d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-clusterresourceoverride-rhel8@sha256:9de4e437c8bf883491be7cfc157329f2315e4fd37efe1bff56f9f50c6c8452f7_ppc64le", + "product": { + "name": "openshift4/ose-clusterresourceoverride-rhel8@sha256:9de4e437c8bf883491be7cfc157329f2315e4fd37efe1bff56f9f50c6c8452f7_ppc64le", + "product_id": "openshift4/ose-clusterresourceoverride-rhel8@sha256:9de4e437c8bf883491be7cfc157329f2315e4fd37efe1bff56f9f50c6c8452f7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-clusterresourceoverride-rhel8@sha256:9de4e437c8bf883491be7cfc157329f2315e4fd37efe1bff56f9f50c6c8452f7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8&tag=v4.13.0-202310240926.p0.g63d864a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d130f6fb427deee9d0afef7caa8c1bf038d97fe2eb7741810d68aeeb678a99cc_ppc64le", + "product": { + "name": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d130f6fb427deee9d0afef7caa8c1bf038d97fe2eb7741810d68aeeb678a99cc_ppc64le", + "product_id": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d130f6fb427deee9d0afef7caa8c1bf038d97fe2eb7741810d68aeeb678a99cc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-clusterresourceoverride-rhel8-operator@sha256:d130f6fb427deee9d0afef7caa8c1bf038d97fe2eb7741810d68aeeb678a99cc?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-clusterresourceoverride-rhel8-operator&tag=v4.13.0-202310240926.p0.g9e3cfa4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:0303c44ecef5d2ea83e87b6c1274d4d73dc68203e380e691ee2a0f97b69e1242_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:0303c44ecef5d2ea83e87b6c1274d4d73dc68203e380e691ee2a0f97b69e1242_ppc64le", + "product_id": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:0303c44ecef5d2ea83e87b6c1274d4d73dc68203e380e691ee2a0f97b69e1242_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:0303c44ecef5d2ea83e87b6c1274d4d73dc68203e380e691ee2a0f97b69e1242?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-mustgather-rhel8&tag=v4.13.0-202310210425.p0.g9724dcf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-egress-http-proxy@sha256:5a950aca0be41fefab1477a8cd396db312730ffdb6d456d347d4084c07090ca3_ppc64le", + "product": { + "name": "openshift4/ose-egress-http-proxy@sha256:5a950aca0be41fefab1477a8cd396db312730ffdb6d456d347d4084c07090ca3_ppc64le", + "product_id": "openshift4/ose-egress-http-proxy@sha256:5a950aca0be41fefab1477a8cd396db312730ffdb6d456d347d4084c07090ca3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-egress-http-proxy@sha256:5a950aca0be41fefab1477a8cd396db312730ffdb6d456d347d4084c07090ca3?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-egress-http-proxy&tag=v4.13.0-202310210425.p0.g0465934.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/frr-rhel8@sha256:6e8cd5cbac26007bf42c86773b841257be5f533aa0eb501fb4eeef45a0f27363_ppc64le", + "product": { + "name": "openshift4/frr-rhel8@sha256:6e8cd5cbac26007bf42c86773b841257be5f533aa0eb501fb4eeef45a0f27363_ppc64le", + "product_id": "openshift4/frr-rhel8@sha256:6e8cd5cbac26007bf42c86773b841257be5f533aa0eb501fb4eeef45a0f27363_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/frr-rhel8@sha256:6e8cd5cbac26007bf42c86773b841257be5f533aa0eb501fb4eeef45a0f27363?arch=ppc64le&repository_url=registry.redhat.io/openshift4/frr-rhel8&tag=v4.13.0-202310210425.p0.gb9ba60f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:df7fbde123362168429f59d2064ff50235d242b39db41547117c05814672ac57_ppc64le", + "product": { + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:df7fbde123362168429f59d2064ff50235d242b39db41547117c05814672ac57_ppc64le", + "product_id": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:df7fbde123362168429f59d2064ff50235d242b39db41547117c05814672ac57_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-filestore-csi-driver-rhel8@sha256:df7fbde123362168429f59d2064ff50235d242b39db41547117c05814672ac57?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8&tag=v4.13.0-202310231526.p0.g7ff360a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:2c5e50e2d27b3264be154a02d1a2334c086280c231de4996dad66cbbf10a4c98_ppc64le", + "product": { + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:2c5e50e2d27b3264be154a02d1a2334c086280c231de4996dad66cbbf10a4c98_ppc64le", + "product_id": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:2c5e50e2d27b3264be154a02d1a2334c086280c231de4996dad66cbbf10a4c98_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:2c5e50e2d27b3264be154a02d1a2334c086280c231de4996dad66cbbf10a4c98?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-gcp-filestore-csi-driver-rhel8-operator&tag=v4.13.0-202310241102.p0.gc7d7f1f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/kubernetes-nmstate-rhel8-operator@sha256:8f6e33f585bb8ae3ca50b0db1c3b9b7a4b37fc761894aec20d9e53f2be2ae77b_ppc64le", + "product": { + "name": "openshift4/kubernetes-nmstate-rhel8-operator@sha256:8f6e33f585bb8ae3ca50b0db1c3b9b7a4b37fc761894aec20d9e53f2be2ae77b_ppc64le", + "product_id": "openshift4/kubernetes-nmstate-rhel8-operator@sha256:8f6e33f585bb8ae3ca50b0db1c3b9b7a4b37fc761894aec20d9e53f2be2ae77b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kubernetes-nmstate-rhel8-operator@sha256:8f6e33f585bb8ae3ca50b0db1c3b9b7a4b37fc761894aec20d9e53f2be2ae77b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/kubernetes-nmstate-rhel8-operator&tag=v4.13.0-202310210425.p0.g0c90011.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ptp@sha256:b52e23ea264b29101bf9ff5beb093badb6d929a2901a008eb1c6afb8b4a1f21c_ppc64le", + "product": { + "name": "openshift4/ose-ptp@sha256:b52e23ea264b29101bf9ff5beb093badb6d929a2901a008eb1c6afb8b4a1f21c_ppc64le", + "product_id": "openshift4/ose-ptp@sha256:b52e23ea264b29101bf9ff5beb093badb6d929a2901a008eb1c6afb8b4a1f21c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ptp@sha256:b52e23ea264b29101bf9ff5beb093badb6d929a2901a008eb1c6afb8b4a1f21c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ptp&tag=v4.13.0-202310210425.p0.ga6b24bd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-local-storage-mustgather-rhel8@sha256:3b9dec60f12ae6fb249cb48fc5c2e7ea753b6a7de647a42e39fe10af8a5d1d78_ppc64le", + "product": { + "name": "openshift4/ose-local-storage-mustgather-rhel8@sha256:3b9dec60f12ae6fb249cb48fc5c2e7ea753b6a7de647a42e39fe10af8a5d1d78_ppc64le", + "product_id": "openshift4/ose-local-storage-mustgather-rhel8@sha256:3b9dec60f12ae6fb249cb48fc5c2e7ea753b6a7de647a42e39fe10af8a5d1d78_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-local-storage-mustgather-rhel8@sha256:3b9dec60f12ae6fb249cb48fc5c2e7ea753b6a7de647a42e39fe10af8a5d1d78?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-local-storage-mustgather-rhel8&tag=v4.13.0-202310231526.p0.g84d8626.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift-tech-preview/metallb-rhel8@sha256:5ea1a8f197e9c3b8cc11583b49a0c57f5679a57597e689101551d511b1cbd567_ppc64le", + "product": { + "name": "openshift-tech-preview/metallb-rhel8@sha256:5ea1a8f197e9c3b8cc11583b49a0c57f5679a57597e689101551d511b1cbd567_ppc64le", + "product_id": "openshift-tech-preview/metallb-rhel8@sha256:5ea1a8f197e9c3b8cc11583b49a0c57f5679a57597e689101551d511b1cbd567_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/metallb-rhel8@sha256:5ea1a8f197e9c3b8cc11583b49a0c57f5679a57597e689101551d511b1cbd567?arch=ppc64le&repository_url=registry.redhat.io/openshift-tech-preview/metallb-rhel8&tag=v4.13.0-202310210425.p0.gd3c8a0d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/metallb-rhel8@sha256:5ea1a8f197e9c3b8cc11583b49a0c57f5679a57597e689101551d511b1cbd567_ppc64le", + "product": { + "name": "openshift4/metallb-rhel8@sha256:5ea1a8f197e9c3b8cc11583b49a0c57f5679a57597e689101551d511b1cbd567_ppc64le", + "product_id": "openshift4/metallb-rhel8@sha256:5ea1a8f197e9c3b8cc11583b49a0c57f5679a57597e689101551d511b1cbd567_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/metallb-rhel8@sha256:5ea1a8f197e9c3b8cc11583b49a0c57f5679a57597e689101551d511b1cbd567?arch=ppc64le&repository_url=registry.redhat.io/openshift4/metallb-rhel8&tag=v4.13.0-202310210425.p0.gd3c8a0d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/metallb-rhel8-operator@sha256:de57b91ac601a39a99f3f67276f09fc03c19ffb2e8a4c316cd4925628261b566_ppc64le", + "product": { + "name": "openshift4/metallb-rhel8-operator@sha256:de57b91ac601a39a99f3f67276f09fc03c19ffb2e8a4c316cd4925628261b566_ppc64le", + "product_id": "openshift4/metallb-rhel8-operator@sha256:de57b91ac601a39a99f3f67276f09fc03c19ffb2e8a4c316cd4925628261b566_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/metallb-rhel8-operator@sha256:de57b91ac601a39a99f3f67276f09fc03c19ffb2e8a4c316cd4925628261b566?arch=ppc64le&repository_url=registry.redhat.io/openshift4/metallb-rhel8-operator&tag=v4.13.0-202310241102.p0.g6267b32.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ptp-operator@sha256:369d5bc04ed6d8aa934813a9695fe7b7f976b8061b1690712bece367b3d0e1ca_ppc64le", + "product": { + "name": "openshift4/ose-ptp-operator@sha256:369d5bc04ed6d8aa934813a9695fe7b7f976b8061b1690712bece367b3d0e1ca_ppc64le", + "product_id": "openshift4/ose-ptp-operator@sha256:369d5bc04ed6d8aa934813a9695fe7b7f976b8061b1690712bece367b3d0e1ca_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ptp-operator@sha256:369d5bc04ed6d8aa934813a9695fe7b7f976b8061b1690712bece367b3d0e1ca?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ptp-operator&tag=v4.13.0-202310241102.p0.g1763e62.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:771dcd6f354135b6b682b495443890c55eccfed036e509b35dabb79c273ff260_ppc64le", + "product": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:771dcd6f354135b6b682b495443890c55eccfed036e509b35dabb79c273ff260_ppc64le", + "product_id": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:771dcd6f354135b6b682b495443890c55eccfed036e509b35dabb79c273ff260_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-vertical-pod-autoscaler-rhel8@sha256:771dcd6f354135b6b682b495443890c55eccfed036e509b35dabb79c273ff260?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8&tag=v4.13.0-202310210425.p0.gc58c53b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:1dafc844953a5659832b5f70becd865a337602acfd6e75e6bb3b05878ec4849f_ppc64le", + "product": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:1dafc844953a5659832b5f70becd865a337602acfd6e75e6bb3b05878ec4849f_ppc64le", + "product_id": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:1dafc844953a5659832b5f70becd865a337602acfd6e75e6bb3b05878ec4849f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-vertical-pod-autoscaler-rhel8-operator@sha256:1dafc844953a5659832b5f70becd865a337602acfd6e75e6bb3b05878ec4849f?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-vertical-pod-autoscaler-rhel8-operator&tag=v4.13.0-202310210425.p0.gdc186bf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ptp-must-gather-rhel8@sha256:ca96e492869a3c654b09ba879c0b273ae9324089bea02573a3087920a2a0c162_ppc64le", + "product": { + "name": "openshift4/ptp-must-gather-rhel8@sha256:ca96e492869a3c654b09ba879c0b273ae9324089bea02573a3087920a2a0c162_ppc64le", + "product_id": "openshift4/ptp-must-gather-rhel8@sha256:ca96e492869a3c654b09ba879c0b273ae9324089bea02573a3087920a2a0c162_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ptp-must-gather-rhel8@sha256:ca96e492869a3c654b09ba879c0b273ae9324089bea02573a3087920a2a0c162?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ptp-must-gather-rhel8&tag=v4.13.0-202310210425.p0.g1763e62.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/sriov-cni-rhel9@sha256:b3b69a08da96296c6a625e2e16522d452b947555bfb1a4067dd57464eb392fbb_ppc64le", + "product": { + "name": "openshift4/sriov-cni-rhel9@sha256:b3b69a08da96296c6a625e2e16522d452b947555bfb1a4067dd57464eb392fbb_ppc64le", + "product_id": "openshift4/sriov-cni-rhel9@sha256:b3b69a08da96296c6a625e2e16522d452b947555bfb1a4067dd57464eb392fbb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/sriov-cni-rhel9@sha256:b3b69a08da96296c6a625e2e16522d452b947555bfb1a4067dd57464eb392fbb?arch=ppc64le&repository_url=registry.redhat.io/openshift4/sriov-cni-rhel9&tag=v4.13.0-202310210425.p0.g5b591b3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-dp-admission-controller@sha256:6d0db5138937a9a01a500f73bce00b5a11b3973aef124d713b6d1568bef1e54b_ppc64le", + "product": { + "name": "openshift4/ose-sriov-dp-admission-controller@sha256:6d0db5138937a9a01a500f73bce00b5a11b3973aef124d713b6d1568bef1e54b_ppc64le", + "product_id": "openshift4/ose-sriov-dp-admission-controller@sha256:6d0db5138937a9a01a500f73bce00b5a11b3973aef124d713b6d1568bef1e54b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-dp-admission-controller@sha256:6d0db5138937a9a01a500f73bce00b5a11b3973aef124d713b6d1568bef1e54b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-sriov-dp-admission-controller&tag=v4.13.0-202310210425.p0.gdb24b2a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-network-config-daemon@sha256:f9d94678e2b311441e2e95680c09c7af1515153ae56d94036e937e68fd4aab9a_ppc64le", + "product": { + "name": "openshift4/ose-sriov-network-config-daemon@sha256:f9d94678e2b311441e2e95680c09c7af1515153ae56d94036e937e68fd4aab9a_ppc64le", + "product_id": "openshift4/ose-sriov-network-config-daemon@sha256:f9d94678e2b311441e2e95680c09c7af1515153ae56d94036e937e68fd4aab9a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-network-config-daemon@sha256:f9d94678e2b311441e2e95680c09c7af1515153ae56d94036e937e68fd4aab9a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-sriov-network-config-daemon&tag=v4.13.0-202310210425.p0.g04f97d5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-network-device-plugin@sha256:fa37c9ce6e017a1c01964fdb25ea08b039aab0d60008fffd7fec3d46e1fbd7e5_ppc64le", + "product": { + "name": "openshift4/ose-sriov-network-device-plugin@sha256:fa37c9ce6e017a1c01964fdb25ea08b039aab0d60008fffd7fec3d46e1fbd7e5_ppc64le", + "product_id": "openshift4/ose-sriov-network-device-plugin@sha256:fa37c9ce6e017a1c01964fdb25ea08b039aab0d60008fffd7fec3d46e1fbd7e5_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-network-device-plugin@sha256:fa37c9ce6e017a1c01964fdb25ea08b039aab0d60008fffd7fec3d46e1fbd7e5?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-sriov-network-device-plugin&tag=v4.13.0-202310210425.p0.g385c421.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-network-operator@sha256:9464e9e3618c64c8dde89cc6f085b608e0cca8b65784596d16062831a89dbffb_ppc64le", + "product": { + "name": "openshift4/ose-sriov-network-operator@sha256:9464e9e3618c64c8dde89cc6f085b608e0cca8b65784596d16062831a89dbffb_ppc64le", + "product_id": "openshift4/ose-sriov-network-operator@sha256:9464e9e3618c64c8dde89cc6f085b608e0cca8b65784596d16062831a89dbffb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-network-operator@sha256:9464e9e3618c64c8dde89cc6f085b608e0cca8b65784596d16062831a89dbffb?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-sriov-network-operator&tag=v4.13.0-202310210425.p0.g04f97d5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sriov-network-webhook@sha256:33bbf758e6e3ec8e209b78ee8bbf75473c8ccdfddc97aceeb84677db0ca9553f_ppc64le", + "product": { + "name": "openshift4/ose-sriov-network-webhook@sha256:33bbf758e6e3ec8e209b78ee8bbf75473c8ccdfddc97aceeb84677db0ca9553f_ppc64le", + "product_id": "openshift4/ose-sriov-network-webhook@sha256:33bbf758e6e3ec8e209b78ee8bbf75473c8ccdfddc97aceeb84677db0ca9553f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-sriov-network-webhook@sha256:33bbf758e6e3ec8e209b78ee8bbf75473c8ccdfddc97aceeb84677db0ca9553f?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-sriov-network-webhook&tag=v4.13.0-202310210425.p0.g04f97d5.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "jenkins-0:2.414.3.1698292201-3.el8.src", + "product": { + "name": "jenkins-0:2.414.3.1698292201-3.el8.src", + "product_id": "jenkins-0:2.414.3.1698292201-3.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jenkins@2.414.3.1698292201-3.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "jenkins-2-plugins-0:4.13.1698292274-1.el8.src", + "product": { + "name": "jenkins-2-plugins-0:4.13.1698292274-1.el8.src", + "product_id": "jenkins-2-plugins-0:4.13.1698292274-1.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jenkins-2-plugins@4.13.1698292274-1.el8?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "jenkins-0:2.414.3.1698292201-3.el8.noarch", + "product": { + "name": "jenkins-0:2.414.3.1698292201-3.el8.noarch", + "product_id": "jenkins-0:2.414.3.1698292201-3.el8.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jenkins@2.414.3.1698292201-3.el8?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jenkins-2-plugins-0:4.13.1698292274-1.el8.noarch", + "product": { + "name": "jenkins-2-plugins-0:4.13.1698292274-1.el8.noarch", + "product_id": "jenkins-2-plugins-0:4.13.1698292274-1.el8.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jenkins-2-plugins@4.13.1698292274-1.el8?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "skupper-router-0:2.4.3-1.el8.src", + "product": { + "name": "skupper-router-0:2.4.3-1.el8.src", + "product_id": "skupper-router-0:2.4.3-1.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skupper-router@2.4.3-1.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "skupper-cli-0:1.4.3-4.el8.src", + "product": { + "name": "skupper-cli-0:1.4.3-4.el8.src", + "product_id": "skupper-cli-0:1.4.3-4.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skupper-cli@1.4.3-4.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "skupper-router-0:2.4.3-1.el9.src", + "product": { + "name": "skupper-router-0:2.4.3-1.el9.src", + "product_id": "skupper-router-0:2.4.3-1.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skupper-router@2.4.3-1.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "skupper-cli-0:1.4.3-4.el9.src", + "product": { + "name": "skupper-cli-0:1.4.3-4.el9.src", + "product_id": "skupper-cli-0:1.4.3-4.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skupper-cli@1.4.3-4.el9?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "skupper-router-0:2.4.3-1.el8.x86_64", + "product": { + "name": "skupper-router-0:2.4.3-1.el8.x86_64", + "product_id": "skupper-router-0:2.4.3-1.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skupper-router@2.4.3-1.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "skupper-router-debugsource-0:2.4.3-1.el8.x86_64", + "product": { + "name": "skupper-router-debugsource-0:2.4.3-1.el8.x86_64", + "product_id": "skupper-router-debugsource-0:2.4.3-1.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skupper-router-debugsource@2.4.3-1.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "skupper-router-debuginfo-0:2.4.3-1.el8.x86_64", + "product": { + "name": "skupper-router-debuginfo-0:2.4.3-1.el8.x86_64", + "product_id": "skupper-router-debuginfo-0:2.4.3-1.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skupper-router-debuginfo@2.4.3-1.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "skupper-cli-0:1.4.3-4.el8.x86_64", + "product": { + "name": "skupper-cli-0:1.4.3-4.el8.x86_64", + "product_id": "skupper-cli-0:1.4.3-4.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skupper-cli@1.4.3-4.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "skupper-router-0:2.4.3-1.el9.x86_64", + "product": { + "name": "skupper-router-0:2.4.3-1.el9.x86_64", + "product_id": "skupper-router-0:2.4.3-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skupper-router@2.4.3-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "skupper-router-debugsource-0:2.4.3-1.el9.x86_64", + "product": { + "name": "skupper-router-debugsource-0:2.4.3-1.el9.x86_64", + "product_id": "skupper-router-debugsource-0:2.4.3-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skupper-router-debugsource@2.4.3-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "skupper-router-debuginfo-0:2.4.3-1.el9.x86_64", + "product": { + "name": "skupper-router-debuginfo-0:2.4.3-1.el9.x86_64", + "product_id": "skupper-router-debuginfo-0:2.4.3-1.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skupper-router-debuginfo@2.4.3-1.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "skupper-cli-0:1.4.3-4.el9.x86_64", + "product": { + "name": "skupper-cli-0:1.4.3-4.el9.x86_64", + "product_id": "skupper-cli-0:1.4.3-4.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skupper-cli@1.4.3-4.el9?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "skupper-router-common-0:2.4.3-1.el8.noarch", + "product": { + "name": "skupper-router-common-0:2.4.3-1.el8.noarch", + "product_id": "skupper-router-common-0:2.4.3-1.el8.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skupper-router-common@2.4.3-1.el8?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "skupper-router-docs-0:2.4.3-1.el8.noarch", + "product": { + "name": "skupper-router-docs-0:2.4.3-1.el8.noarch", + "product_id": "skupper-router-docs-0:2.4.3-1.el8.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skupper-router-docs@2.4.3-1.el8?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "skupper-router-tools-0:2.4.3-1.el8.noarch", + "product": { + "name": "skupper-router-tools-0:2.4.3-1.el8.noarch", + "product_id": "skupper-router-tools-0:2.4.3-1.el8.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skupper-router-tools@2.4.3-1.el8?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "skupper-router-common-0:2.4.3-1.el9.noarch", + "product": { + "name": "skupper-router-common-0:2.4.3-1.el9.noarch", + "product_id": "skupper-router-common-0:2.4.3-1.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skupper-router-common@2.4.3-1.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "skupper-router-docs-0:2.4.3-1.el9.noarch", + "product": { + "name": "skupper-router-docs-0:2.4.3-1.el9.noarch", + "product_id": "skupper-router-docs-0:2.4.3-1.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skupper-router-docs@2.4.3-1.el9?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "skupper-router-tools-0:2.4.3-1.el9.noarch", + "product": { + "name": "skupper-router-tools-0:2.4.3-1.el9.noarch", + "product_id": "skupper-router-tools-0:2.4.3-1.el9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/skupper-router-tools@2.4.3-1.el9?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rhmtc/openshift-migration-controller-rhel8@sha256:db6e79aff9c592fe7f27145d01d7444f4dc4e0144cc036ae916d9cf0c95a9cfe_amd64", + "product": { + "name": "rhmtc/openshift-migration-controller-rhel8@sha256:db6e79aff9c592fe7f27145d01d7444f4dc4e0144cc036ae916d9cf0c95a9cfe_amd64", + "product_id": "rhmtc/openshift-migration-controller-rhel8@sha256:db6e79aff9c592fe7f27145d01d7444f4dc4e0144cc036ae916d9cf0c95a9cfe_amd64", + "product_identification_helper": { + "purl": "pkg:oci/openshift-migration-controller-rhel8@sha256:db6e79aff9c592fe7f27145d01d7444f4dc4e0144cc036ae916d9cf0c95a9cfe?arch=amd64&repository_url=registry.redhat.io/rhmtc/openshift-migration-controller-rhel8&tag=v1.7.14-3" + } + } + }, + { + "category": "product_version", + "name": "rhmtc/openshift-migration-hook-runner-rhel8@sha256:c12186c030ce5192c823351ac212c1acf1c85fa574267bc64d2cdf90c5dae87f_amd64", + "product": { + "name": "rhmtc/openshift-migration-hook-runner-rhel8@sha256:c12186c030ce5192c823351ac212c1acf1c85fa574267bc64d2cdf90c5dae87f_amd64", + "product_id": "rhmtc/openshift-migration-hook-runner-rhel8@sha256:c12186c030ce5192c823351ac212c1acf1c85fa574267bc64d2cdf90c5dae87f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/openshift-migration-hook-runner-rhel8@sha256:c12186c030ce5192c823351ac212c1acf1c85fa574267bc64d2cdf90c5dae87f?arch=amd64&repository_url=registry.redhat.io/rhmtc/openshift-migration-hook-runner-rhel8&tag=v1.7.14-2" + } + } + }, + { + "category": "product_version", + "name": "rhmtc/openshift-migration-legacy-rhel8-operator@sha256:ce90e9b7af04340afc72f38cfdf5b64d2a6fcae23f59223e2d510c028823d87f_amd64", + "product": { + "name": "rhmtc/openshift-migration-legacy-rhel8-operator@sha256:ce90e9b7af04340afc72f38cfdf5b64d2a6fcae23f59223e2d510c028823d87f_amd64", + "product_id": "rhmtc/openshift-migration-legacy-rhel8-operator@sha256:ce90e9b7af04340afc72f38cfdf5b64d2a6fcae23f59223e2d510c028823d87f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/openshift-migration-legacy-rhel8-operator@sha256:ce90e9b7af04340afc72f38cfdf5b64d2a6fcae23f59223e2d510c028823d87f?arch=amd64&repository_url=registry.redhat.io/rhmtc/openshift-migration-legacy-rhel8-operator&tag=v1.7.14-4" + } + } + }, + { + "category": "product_version", + "name": "rhmtc/openshift-migration-log-reader-rhel8@sha256:58f92f50972a948c40319a5c2c9abfe3d44034ba1538f018b51f9998ee875e90_amd64", + "product": { + "name": "rhmtc/openshift-migration-log-reader-rhel8@sha256:58f92f50972a948c40319a5c2c9abfe3d44034ba1538f018b51f9998ee875e90_amd64", + "product_id": "rhmtc/openshift-migration-log-reader-rhel8@sha256:58f92f50972a948c40319a5c2c9abfe3d44034ba1538f018b51f9998ee875e90_amd64", + "product_identification_helper": { + "purl": "pkg:oci/openshift-migration-log-reader-rhel8@sha256:58f92f50972a948c40319a5c2c9abfe3d44034ba1538f018b51f9998ee875e90?arch=amd64&repository_url=registry.redhat.io/rhmtc/openshift-migration-log-reader-rhel8&tag=v1.7.14-2" + } + } + }, + { + "category": "product_version", + "name": "rhmtc/openshift-migration-must-gather-rhel8@sha256:cc19dae1824b42b15a8015f6a88f1bc0f85e75a9e7d14f38313a27d93c88f22f_amd64", + "product": { + "name": "rhmtc/openshift-migration-must-gather-rhel8@sha256:cc19dae1824b42b15a8015f6a88f1bc0f85e75a9e7d14f38313a27d93c88f22f_amd64", + "product_id": "rhmtc/openshift-migration-must-gather-rhel8@sha256:cc19dae1824b42b15a8015f6a88f1bc0f85e75a9e7d14f38313a27d93c88f22f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/openshift-migration-must-gather-rhel8@sha256:cc19dae1824b42b15a8015f6a88f1bc0f85e75a9e7d14f38313a27d93c88f22f?arch=amd64&repository_url=registry.redhat.io/rhmtc/openshift-migration-must-gather-rhel8&tag=v1.7.14-2" + } + } + }, + { + "category": "product_version", + "name": "rhmtc/openshift-migration-openvpn-rhel8@sha256:79006886844f82db986d9778994727cd40943faa77b2740b54f312fca6602950_amd64", + "product": { + "name": "rhmtc/openshift-migration-openvpn-rhel8@sha256:79006886844f82db986d9778994727cd40943faa77b2740b54f312fca6602950_amd64", + "product_id": "rhmtc/openshift-migration-openvpn-rhel8@sha256:79006886844f82db986d9778994727cd40943faa77b2740b54f312fca6602950_amd64", + "product_identification_helper": { + "purl": "pkg:oci/openshift-migration-openvpn-rhel8@sha256:79006886844f82db986d9778994727cd40943faa77b2740b54f312fca6602950?arch=amd64&repository_url=registry.redhat.io/rhmtc/openshift-migration-openvpn-rhel8&tag=v1.7.14-2" + } + } + }, + { + "category": "product_version", + "name": "rhmtc/openshift-migration-rhel8-operator@sha256:0dc885972e7035f2c4b31016f4053e2bd73e328ace6aeee07380db5e0b055b02_amd64", + "product": { + "name": "rhmtc/openshift-migration-rhel8-operator@sha256:0dc885972e7035f2c4b31016f4053e2bd73e328ace6aeee07380db5e0b055b02_amd64", + "product_id": "rhmtc/openshift-migration-rhel8-operator@sha256:0dc885972e7035f2c4b31016f4053e2bd73e328ace6aeee07380db5e0b055b02_amd64", + "product_identification_helper": { + "purl": "pkg:oci/openshift-migration-rhel8-operator@sha256:0dc885972e7035f2c4b31016f4053e2bd73e328ace6aeee07380db5e0b055b02?arch=amd64&repository_url=registry.redhat.io/rhmtc/openshift-migration-rhel8-operator&tag=v1.7.14-4" + } + } + }, + { + "category": "product_version", + "name": "rhmtc/openshift-migration-operator-bundle@sha256:34e80eefb9b91a41bc4648e02de37d262347085c4da9bd032f43c8bb59e4459a_amd64", + "product": { + "name": "rhmtc/openshift-migration-operator-bundle@sha256:34e80eefb9b91a41bc4648e02de37d262347085c4da9bd032f43c8bb59e4459a_amd64", + "product_id": "rhmtc/openshift-migration-operator-bundle@sha256:34e80eefb9b91a41bc4648e02de37d262347085c4da9bd032f43c8bb59e4459a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/openshift-migration-operator-bundle@sha256:34e80eefb9b91a41bc4648e02de37d262347085c4da9bd032f43c8bb59e4459a?arch=amd64&repository_url=registry.redhat.io/rhmtc/openshift-migration-operator-bundle&tag=v1.7.14-3" + } + } + }, + { + "category": "product_version", + "name": "rhmtc/openshift-migration-registry-rhel8@sha256:4dfa0ace1d92a6ae70d08dc3aff621e5f332956f213db987d9862ed2685e6733_amd64", + "product": { + "name": "rhmtc/openshift-migration-registry-rhel8@sha256:4dfa0ace1d92a6ae70d08dc3aff621e5f332956f213db987d9862ed2685e6733_amd64", + "product_id": "rhmtc/openshift-migration-registry-rhel8@sha256:4dfa0ace1d92a6ae70d08dc3aff621e5f332956f213db987d9862ed2685e6733_amd64", + "product_identification_helper": { + "purl": "pkg:oci/openshift-migration-registry-rhel8@sha256:4dfa0ace1d92a6ae70d08dc3aff621e5f332956f213db987d9862ed2685e6733?arch=amd64&repository_url=registry.redhat.io/rhmtc/openshift-migration-registry-rhel8&tag=v1.7.14-2" + } + } + }, + { + "category": "product_version", + "name": "rhmtc/openshift-migration-rsync-transfer-rhel8@sha256:cc4a32d349982a82cee52247627f1fd76b6630a6ddb4523a326e83f99d65826d_amd64", + "product": { + "name": "rhmtc/openshift-migration-rsync-transfer-rhel8@sha256:cc4a32d349982a82cee52247627f1fd76b6630a6ddb4523a326e83f99d65826d_amd64", + "product_id": "rhmtc/openshift-migration-rsync-transfer-rhel8@sha256:cc4a32d349982a82cee52247627f1fd76b6630a6ddb4523a326e83f99d65826d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/openshift-migration-rsync-transfer-rhel8@sha256:cc4a32d349982a82cee52247627f1fd76b6630a6ddb4523a326e83f99d65826d?arch=amd64&repository_url=registry.redhat.io/rhmtc/openshift-migration-rsync-transfer-rhel8&tag=v1.7.14-2" + } + } + }, + { + "category": "product_version", + "name": "rhmtc/openshift-migration-ui-rhel8@sha256:b3fd7bf0c25ecd110635de6e7d071cfe314cbe50ee0f924f3dfa985fd24ae59e_amd64", + "product": { + "name": "rhmtc/openshift-migration-ui-rhel8@sha256:b3fd7bf0c25ecd110635de6e7d071cfe314cbe50ee0f924f3dfa985fd24ae59e_amd64", + "product_id": "rhmtc/openshift-migration-ui-rhel8@sha256:b3fd7bf0c25ecd110635de6e7d071cfe314cbe50ee0f924f3dfa985fd24ae59e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/openshift-migration-ui-rhel8@sha256:b3fd7bf0c25ecd110635de6e7d071cfe314cbe50ee0f924f3dfa985fd24ae59e?arch=amd64&repository_url=registry.redhat.io/rhmtc/openshift-migration-ui-rhel8&tag=v1.7.14-2" + } + } + }, + { + "category": "product_version", + "name": "rhmtc/openshift-migration-velero-rhel8@sha256:39ac9f6895b2f71cc699c806df204b10af71f18a28de3d3839b7cde6cde13f64_amd64", + "product": { + "name": "rhmtc/openshift-migration-velero-rhel8@sha256:39ac9f6895b2f71cc699c806df204b10af71f18a28de3d3839b7cde6cde13f64_amd64", + "product_id": "rhmtc/openshift-migration-velero-rhel8@sha256:39ac9f6895b2f71cc699c806df204b10af71f18a28de3d3839b7cde6cde13f64_amd64", + "product_identification_helper": { + "purl": "pkg:oci/openshift-migration-velero-rhel8@sha256:39ac9f6895b2f71cc699c806df204b10af71f18a28de3d3839b7cde6cde13f64?arch=amd64&repository_url=registry.redhat.io/rhmtc/openshift-migration-velero-rhel8&tag=v1.7.14-2" + } + } + }, + { + "category": "product_version", + "name": "rhmtc/openshift-migration-velero-plugin-for-aws-rhel8@sha256:c65d0ecc82eb9ebf2256c599b116e5878e57192caca90a83c1035421be914657_amd64", + "product": { + "name": "rhmtc/openshift-migration-velero-plugin-for-aws-rhel8@sha256:c65d0ecc82eb9ebf2256c599b116e5878e57192caca90a83c1035421be914657_amd64", + "product_id": "rhmtc/openshift-migration-velero-plugin-for-aws-rhel8@sha256:c65d0ecc82eb9ebf2256c599b116e5878e57192caca90a83c1035421be914657_amd64", + "product_identification_helper": { + "purl": "pkg:oci/openshift-migration-velero-plugin-for-aws-rhel8@sha256:c65d0ecc82eb9ebf2256c599b116e5878e57192caca90a83c1035421be914657?arch=amd64&repository_url=registry.redhat.io/rhmtc/openshift-migration-velero-plugin-for-aws-rhel8&tag=v1.7.14-2" + } + } + }, + { + "category": "product_version", + "name": "rhmtc/openshift-migration-velero-plugin-for-gcp-rhel8@sha256:7ab0d93fe306b1baa0ae64a9c859776109f2cb27a0e468dc1d361e72a99d21b9_amd64", + "product": { + "name": "rhmtc/openshift-migration-velero-plugin-for-gcp-rhel8@sha256:7ab0d93fe306b1baa0ae64a9c859776109f2cb27a0e468dc1d361e72a99d21b9_amd64", + "product_id": "rhmtc/openshift-migration-velero-plugin-for-gcp-rhel8@sha256:7ab0d93fe306b1baa0ae64a9c859776109f2cb27a0e468dc1d361e72a99d21b9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/openshift-migration-velero-plugin-for-gcp-rhel8@sha256:7ab0d93fe306b1baa0ae64a9c859776109f2cb27a0e468dc1d361e72a99d21b9?arch=amd64&repository_url=registry.redhat.io/rhmtc/openshift-migration-velero-plugin-for-gcp-rhel8&tag=v1.7.14-2" + } + } + }, + { + "category": "product_version", + "name": "rhmtc/openshift-migration-velero-plugin-for-microsoft-azure-rhel8@sha256:c89b222e9e9ae02a505fb6986ef1b6ca4b0e15706e3d44d2f03176af7f0d9b6a_amd64", + "product": { + "name": "rhmtc/openshift-migration-velero-plugin-for-microsoft-azure-rhel8@sha256:c89b222e9e9ae02a505fb6986ef1b6ca4b0e15706e3d44d2f03176af7f0d9b6a_amd64", + "product_id": "rhmtc/openshift-migration-velero-plugin-for-microsoft-azure-rhel8@sha256:c89b222e9e9ae02a505fb6986ef1b6ca4b0e15706e3d44d2f03176af7f0d9b6a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/openshift-migration-velero-plugin-for-microsoft-azure-rhel8@sha256:c89b222e9e9ae02a505fb6986ef1b6ca4b0e15706e3d44d2f03176af7f0d9b6a?arch=amd64&repository_url=registry.redhat.io/rhmtc/openshift-migration-velero-plugin-for-microsoft-azure-rhel8&tag=v1.7.14-2" + } + } + }, + { + "category": "product_version", + "name": "rhmtc/openshift-migration-velero-restic-restore-helper-rhel8@sha256:06010b3b3c7ad25cf0c122cf49bb7795712eebc47936e3c88db46256e93f0843_amd64", + "product": { + "name": "rhmtc/openshift-migration-velero-restic-restore-helper-rhel8@sha256:06010b3b3c7ad25cf0c122cf49bb7795712eebc47936e3c88db46256e93f0843_amd64", + "product_id": "rhmtc/openshift-migration-velero-restic-restore-helper-rhel8@sha256:06010b3b3c7ad25cf0c122cf49bb7795712eebc47936e3c88db46256e93f0843_amd64", + "product_identification_helper": { + "purl": "pkg:oci/openshift-migration-velero-restic-restore-helper-rhel8@sha256:06010b3b3c7ad25cf0c122cf49bb7795712eebc47936e3c88db46256e93f0843?arch=amd64&repository_url=registry.redhat.io/rhmtc/openshift-migration-velero-restic-restore-helper-rhel8&tag=v1.7.14-2" + } + } + }, + { + "category": "product_version", + "name": "rhmtc/openshift-velero-plugin-rhel8@sha256:4aefc874e9869305ec80f46548c5499b4887e29135efb9ecad01dfd5a54b31fa_amd64", + "product": { + "name": "rhmtc/openshift-velero-plugin-rhel8@sha256:4aefc874e9869305ec80f46548c5499b4887e29135efb9ecad01dfd5a54b31fa_amd64", + "product_id": "rhmtc/openshift-velero-plugin-rhel8@sha256:4aefc874e9869305ec80f46548c5499b4887e29135efb9ecad01dfd5a54b31fa_amd64", + "product_identification_helper": { + "purl": "pkg:oci/openshift-velero-plugin-rhel8@sha256:4aefc874e9869305ec80f46548c5499b4887e29135efb9ecad01dfd5a54b31fa?arch=amd64&repository_url=registry.redhat.io/rhmtc/openshift-velero-plugin-rhel8&tag=v1.7.14-3" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "custom-metrics-autoscaler/custom-metrics-autoscaler-adapter-rhel8@sha256:f3c6056ddc7be68ba0eac90df388e63de70da69d4b4c49a85bad7a4e1ecbeec6_amd64", + "product": { + "name": "custom-metrics-autoscaler/custom-metrics-autoscaler-adapter-rhel8@sha256:f3c6056ddc7be68ba0eac90df388e63de70da69d4b4c49a85bad7a4e1ecbeec6_amd64", + "product_id": "custom-metrics-autoscaler/custom-metrics-autoscaler-adapter-rhel8@sha256:f3c6056ddc7be68ba0eac90df388e63de70da69d4b4c49a85bad7a4e1ecbeec6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/custom-metrics-autoscaler-adapter-rhel8@sha256:f3c6056ddc7be68ba0eac90df388e63de70da69d4b4c49a85bad7a4e1ecbeec6?arch=amd64&repository_url=registry.redhat.io/custom-metrics-autoscaler/custom-metrics-autoscaler-adapter-rhel8&tag=2.11.2-322" + } + } + }, + { + "category": "product_version", + "name": "custom-metrics-autoscaler/custom-metrics-autoscaler-admission-webhooks-rhel8@sha256:5fa428c0cfb55c296ec601117ac124a7648c89f10bf6a031691cc08b15bcae4f_amd64", + "product": { + "name": "custom-metrics-autoscaler/custom-metrics-autoscaler-admission-webhooks-rhel8@sha256:5fa428c0cfb55c296ec601117ac124a7648c89f10bf6a031691cc08b15bcae4f_amd64", + "product_id": "custom-metrics-autoscaler/custom-metrics-autoscaler-admission-webhooks-rhel8@sha256:5fa428c0cfb55c296ec601117ac124a7648c89f10bf6a031691cc08b15bcae4f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/custom-metrics-autoscaler-admission-webhooks-rhel8@sha256:5fa428c0cfb55c296ec601117ac124a7648c89f10bf6a031691cc08b15bcae4f?arch=amd64&repository_url=registry.redhat.io/custom-metrics-autoscaler/custom-metrics-autoscaler-admission-webhooks-rhel8&tag=2.11.2-322" + } + } + }, + { + "category": "product_version", + "name": "custom-metrics-autoscaler/custom-metrics-autoscaler-rhel8@sha256:49bdd152e73c3339c51fce94820a8cbe00bab54e53a02654bc920daa5592bcc0_amd64", + "product": { + "name": "custom-metrics-autoscaler/custom-metrics-autoscaler-rhel8@sha256:49bdd152e73c3339c51fce94820a8cbe00bab54e53a02654bc920daa5592bcc0_amd64", + "product_id": "custom-metrics-autoscaler/custom-metrics-autoscaler-rhel8@sha256:49bdd152e73c3339c51fce94820a8cbe00bab54e53a02654bc920daa5592bcc0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/custom-metrics-autoscaler-rhel8@sha256:49bdd152e73c3339c51fce94820a8cbe00bab54e53a02654bc920daa5592bcc0?arch=amd64&repository_url=registry.redhat.io/custom-metrics-autoscaler/custom-metrics-autoscaler-rhel8&tag=2.11.2-322" + } + } + }, + { + "category": "product_version", + "name": "custom-metrics-autoscaler/custom-metrics-autoscaler-operator-bundle@sha256:f66bacfad9cab2c65003cc86331a42fe68336a73feaf802365a3badd4cf5f1b5_amd64", + "product": { + "name": "custom-metrics-autoscaler/custom-metrics-autoscaler-operator-bundle@sha256:f66bacfad9cab2c65003cc86331a42fe68336a73feaf802365a3badd4cf5f1b5_amd64", + "product_id": "custom-metrics-autoscaler/custom-metrics-autoscaler-operator-bundle@sha256:f66bacfad9cab2c65003cc86331a42fe68336a73feaf802365a3badd4cf5f1b5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/custom-metrics-autoscaler-operator-bundle@sha256:f66bacfad9cab2c65003cc86331a42fe68336a73feaf802365a3badd4cf5f1b5?arch=amd64&repository_url=registry.redhat.io/custom-metrics-autoscaler/custom-metrics-autoscaler-operator-bundle&tag=2.11.2-322" + } + } + }, + { + "category": "product_version", + "name": "custom-metrics-autoscaler/custom-metrics-autoscaler-rhel8-operator@sha256:921c402950001225c8dff5bb14b9307eb69f7a7a6bcdecb852c94a0e8e5c255c_amd64", + "product": { + "name": "custom-metrics-autoscaler/custom-metrics-autoscaler-rhel8-operator@sha256:921c402950001225c8dff5bb14b9307eb69f7a7a6bcdecb852c94a0e8e5c255c_amd64", + "product_id": "custom-metrics-autoscaler/custom-metrics-autoscaler-rhel8-operator@sha256:921c402950001225c8dff5bb14b9307eb69f7a7a6bcdecb852c94a0e8e5c255c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/custom-metrics-autoscaler-rhel8-operator@sha256:921c402950001225c8dff5bb14b9307eb69f7a7a6bcdecb852c94a0e8e5c255c?arch=amd64&repository_url=registry.redhat.io/custom-metrics-autoscaler/custom-metrics-autoscaler-rhel8-operator&tag=2.11.2-322" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.src", + "product": { + "name": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.src", + "product_id": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.0.6-2.module%2Bel8.4.0%2B20467%2B7fe641ed.4?arch=src" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.src", + "product": { + "name": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.src", + "product_id": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules@0.15.0-5.module%2Bel8.3.0%2B6843%2Bb3b42fcc?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64", + "product": { + "name": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64", + "product_id": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.0.6-2.module%2Bel8.4.0%2B20467%2B7fe641ed.4?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64", + "product": { + "name": "varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64", + "product_id": "varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.0.6-2.module%2Bel8.4.0%2B20467%2B7fe641ed.4?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64", + "product": { + "name": "varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64", + "product_id": "varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-docs@6.0.6-2.module%2Bel8.4.0%2B20467%2B7fe641ed.4?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64", + "product": { + "name": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64", + "product_id": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules@0.15.0-5.module%2Bel8.3.0%2B6843%2Bb3b42fcc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64", + "product": { + "name": "varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64", + "product_id": "varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debuginfo@0.15.0-5.module%2Bel8.3.0%2B6843%2Bb3b42fcc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64", + "product": { + "name": "varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64", + "product_id": "varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debugsource@0.15.0-5.module%2Bel8.3.0%2B6843%2Bb3b42fcc?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.aarch64", + "product": { + "name": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.aarch64", + "product_id": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.0.6-2.module%2Bel8.4.0%2B20467%2B7fe641ed.4?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.aarch64", + "product": { + "name": "varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.aarch64", + "product_id": "varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.0.6-2.module%2Bel8.4.0%2B20467%2B7fe641ed.4?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.aarch64", + "product": { + "name": "varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.aarch64", + "product_id": "varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-docs@6.0.6-2.module%2Bel8.4.0%2B20467%2B7fe641ed.4?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.aarch64", + "product": { + "name": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.aarch64", + "product_id": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules@0.15.0-5.module%2Bel8.3.0%2B6843%2Bb3b42fcc?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.aarch64", + "product": { + "name": "varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.aarch64", + "product_id": "varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debuginfo@0.15.0-5.module%2Bel8.3.0%2B6843%2Bb3b42fcc?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.aarch64", + "product": { + "name": "varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.aarch64", + "product_id": "varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debugsource@0.15.0-5.module%2Bel8.3.0%2B6843%2Bb3b42fcc?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.ppc64le", + "product": { + "name": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.ppc64le", + "product_id": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.0.6-2.module%2Bel8.4.0%2B20467%2B7fe641ed.4?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.ppc64le", + "product": { + "name": "varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.ppc64le", + "product_id": "varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.0.6-2.module%2Bel8.4.0%2B20467%2B7fe641ed.4?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.ppc64le", + "product": { + "name": "varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.ppc64le", + "product_id": "varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-docs@6.0.6-2.module%2Bel8.4.0%2B20467%2B7fe641ed.4?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.ppc64le", + "product": { + "name": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.ppc64le", + "product_id": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules@0.15.0-5.module%2Bel8.3.0%2B6843%2Bb3b42fcc?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.ppc64le", + "product": { + "name": "varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.ppc64le", + "product_id": "varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debuginfo@0.15.0-5.module%2Bel8.3.0%2B6843%2Bb3b42fcc?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.ppc64le", + "product": { + "name": "varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.ppc64le", + "product_id": "varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debugsource@0.15.0-5.module%2Bel8.3.0%2B6843%2Bb3b42fcc?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.s390x", + "product": { + "name": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.s390x", + "product_id": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.0.6-2.module%2Bel8.4.0%2B20467%2B7fe641ed.4?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.s390x", + "product": { + "name": "varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.s390x", + "product_id": "varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.0.6-2.module%2Bel8.4.0%2B20467%2B7fe641ed.4?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.s390x", + "product": { + "name": "varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.s390x", + "product_id": "varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-docs@6.0.6-2.module%2Bel8.4.0%2B20467%2B7fe641ed.4?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.s390x", + "product": { + "name": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.s390x", + "product_id": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules@0.15.0-5.module%2Bel8.3.0%2B6843%2Bb3b42fcc?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.s390x", + "product": { + "name": "varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.s390x", + "product_id": "varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debuginfo@0.15.0-5.module%2Bel8.3.0%2B6843%2Bb3b42fcc?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.s390x", + "product": { + "name": "varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.s390x", + "product_id": "varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debugsource@0.15.0-5.module%2Bel8.3.0%2B6843%2Bb3b42fcc?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.src", + "product": { + "name": "varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.src", + "product_id": "varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.0.2-2.module%2Bel8.2.0%2B20470%2B5fdd0c40.3?arch=src" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.src", + "product": { + "name": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.src", + "product_id": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules@0.15.0-4.module%2Bel8%2B2481%2B4078e9d2?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64", + "product": { + "name": "varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64", + "product_id": "varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.0.2-2.module%2Bel8.2.0%2B20470%2B5fdd0c40.3?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-devel-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64", + "product": { + "name": "varnish-devel-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64", + "product_id": "varnish-devel-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.0.2-2.module%2Bel8.2.0%2B20470%2B5fdd0c40.3?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-docs-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64", + "product": { + "name": "varnish-docs-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64", + "product_id": "varnish-docs-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-docs@6.0.2-2.module%2Bel8.2.0%2B20470%2B5fdd0c40.3?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "product": { + "name": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "product_id": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules@0.15.0-4.module%2Bel8%2B2481%2B4078e9d2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "product": { + "name": "varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "product_id": "varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debuginfo@0.15.0-4.module%2Bel8%2B2481%2B4078e9d2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "product": { + "name": "varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "product_id": "varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debugsource@0.15.0-4.module%2Bel8%2B2481%2B4078e9d2?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.ppc64le", + "product": { + "name": "varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.ppc64le", + "product_id": "varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.0.2-2.module%2Bel8.2.0%2B20470%2B5fdd0c40.3?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-devel-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.ppc64le", + "product": { + "name": "varnish-devel-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.ppc64le", + "product_id": "varnish-devel-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.0.2-2.module%2Bel8.2.0%2B20470%2B5fdd0c40.3?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-docs-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.ppc64le", + "product": { + "name": "varnish-docs-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.ppc64le", + "product_id": "varnish-docs-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-docs@6.0.2-2.module%2Bel8.2.0%2B20470%2B5fdd0c40.3?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le", + "product": { + "name": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le", + "product_id": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules@0.15.0-4.module%2Bel8%2B2481%2B4078e9d2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le", + "product": { + "name": "varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le", + "product_id": "varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debuginfo@0.15.0-4.module%2Bel8%2B2481%2B4078e9d2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le", + "product": { + "name": "varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le", + "product_id": "varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debugsource@0.15.0-4.module%2Bel8%2B2481%2B4078e9d2?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:4ffd9d8b6b3c28eaddec00cf0f916b23d0cfcc9ee6cf101f4ac390126cd794c6_ppc64le", + "product": { + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:4ffd9d8b6b3c28eaddec00cf0f916b23d0cfcc9ee6cf101f4ac390126cd794c6_ppc64le", + "product_id": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:4ffd9d8b6b3c28eaddec00cf0f916b23d0cfcc9ee6cf101f4ac390126cd794c6_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-governance-policy-addon-controller-rhel8@sha256:4ffd9d8b6b3c28eaddec00cf0f916b23d0cfcc9ee6cf101f4ac390126cd794c6?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel8&tag=v2.7.9-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:9a5ba16abc74f79ca68f42d616ef9a25c2af32a54985b18b2a481b24812411a2_ppc64le", + "product": { + "name": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:9a5ba16abc74f79ca68f42d616ef9a25c2af32a54985b18b2a481b24812411a2_ppc64le", + "product_id": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:9a5ba16abc74f79ca68f42d616ef9a25c2af32a54985b18b2a481b24812411a2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-governance-policy-framework-addon-rhel8@sha256:9a5ba16abc74f79ca68f42d616ef9a25c2af32a54985b18b2a481b24812411a2?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-grafana-rhel8@sha256:407ef4d320ec75954e710b7662ee74002fbdae952b227efbb3e80f3b5a5be3dd_ppc64le", + "product": { + "name": "rhacm2/acm-grafana-rhel8@sha256:407ef4d320ec75954e710b7662ee74002fbdae952b227efbb3e80f3b5a5be3dd_ppc64le", + "product_id": "rhacm2/acm-grafana-rhel8@sha256:407ef4d320ec75954e710b7662ee74002fbdae952b227efbb3e80f3b5a5be3dd_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-grafana-rhel8@sha256:407ef4d320ec75954e710b7662ee74002fbdae952b227efbb3e80f3b5a5be3dd?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-grafana-rhel8&tag=v2.7.9-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-must-gather-rhel8@sha256:ca46575c7c69d7c37dc8b902736d725ec9387db927c3b8c2c9396e9d807672a1_ppc64le", + "product": { + "name": "rhacm2/acm-must-gather-rhel8@sha256:ca46575c7c69d7c37dc8b902736d725ec9387db927c3b8c2c9396e9d807672a1_ppc64le", + "product_id": "rhacm2/acm-must-gather-rhel8@sha256:ca46575c7c69d7c37dc8b902736d725ec9387db927c3b8c2c9396e9d807672a1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-must-gather-rhel8@sha256:ca46575c7c69d7c37dc8b902736d725ec9387db927c3b8c2c9396e9d807672a1?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-must-gather-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-operator-bundle@sha256:523014ec9d1ca9c932f8b983a90432114d74d9a668202109f5c246fd6163329c_ppc64le", + "product": { + "name": "rhacm2/acm-operator-bundle@sha256:523014ec9d1ca9c932f8b983a90432114d74d9a668202109f5c246fd6163329c_ppc64le", + "product_id": "rhacm2/acm-operator-bundle@sha256:523014ec9d1ca9c932f8b983a90432114d74d9a668202109f5c246fd6163329c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-operator-bundle@sha256:523014ec9d1ca9c932f8b983a90432114d74d9a668202109f5c246fd6163329c?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-operator-bundle&tag=v2.7.9-12" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:d59b82ac8d3613908b6e43bf195c003baf2145ff6e64b41f27cd1cfbe03d3197_ppc64le", + "product": { + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:d59b82ac8d3613908b6e43bf195c003baf2145ff6e64b41f27cd1cfbe03d3197_ppc64le", + "product_id": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:d59b82ac8d3613908b6e43bf195c003baf2145ff6e64b41f27cd1cfbe03d3197_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-prometheus-config-reloader-rhel8@sha256:d59b82ac8d3613908b6e43bf195c003baf2145ff6e64b41f27cd1cfbe03d3197?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-prometheus-rhel8@sha256:e68bca7ac166592e005f9fc99917fd4533771c9a816884142c33fac561688319_ppc64le", + "product": { + "name": "rhacm2/acm-prometheus-rhel8@sha256:e68bca7ac166592e005f9fc99917fd4533771c9a816884142c33fac561688319_ppc64le", + "product_id": "rhacm2/acm-prometheus-rhel8@sha256:e68bca7ac166592e005f9fc99917fd4533771c9a816884142c33fac561688319_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-prometheus-rhel8@sha256:e68bca7ac166592e005f9fc99917fd4533771c9a816884142c33fac561688319?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-prometheus-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-search-indexer-rhel8@sha256:014085eb094bddc231f32dc3b70fa2d647b9ebc2d639d8ad30ca4501dbebce4d_ppc64le", + "product": { + "name": "rhacm2/acm-search-indexer-rhel8@sha256:014085eb094bddc231f32dc3b70fa2d647b9ebc2d639d8ad30ca4501dbebce4d_ppc64le", + "product_id": "rhacm2/acm-search-indexer-rhel8@sha256:014085eb094bddc231f32dc3b70fa2d647b9ebc2d639d8ad30ca4501dbebce4d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-search-indexer-rhel8@sha256:014085eb094bddc231f32dc3b70fa2d647b9ebc2d639d8ad30ca4501dbebce4d?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-search-indexer-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-search-v2-api-rhel8@sha256:a8ea4ccf051b23fc97b2321408e44ccb7fe5d58af50a9e3e342fbfd636c8896e_ppc64le", + "product": { + "name": "rhacm2/acm-search-v2-api-rhel8@sha256:a8ea4ccf051b23fc97b2321408e44ccb7fe5d58af50a9e3e342fbfd636c8896e_ppc64le", + "product_id": "rhacm2/acm-search-v2-api-rhel8@sha256:a8ea4ccf051b23fc97b2321408e44ccb7fe5d58af50a9e3e342fbfd636c8896e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-search-v2-api-rhel8@sha256:a8ea4ccf051b23fc97b2321408e44ccb7fe5d58af50a9e3e342fbfd636c8896e?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-search-v2-api-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-search-v2-rhel8@sha256:12d14fb1f6aeda236617e05dd6ce6825df60ea491d0fe77a04bd147ccfe20d8c_ppc64le", + "product": { + "name": "rhacm2/acm-search-v2-rhel8@sha256:12d14fb1f6aeda236617e05dd6ce6825df60ea491d0fe77a04bd147ccfe20d8c_ppc64le", + "product_id": "rhacm2/acm-search-v2-rhel8@sha256:12d14fb1f6aeda236617e05dd6ce6825df60ea491d0fe77a04bd147ccfe20d8c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-search-v2-rhel8@sha256:12d14fb1f6aeda236617e05dd6ce6825df60ea491d0fe77a04bd147ccfe20d8c?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-search-v2-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:71ddf2a944953a71f723e4f6c7d265bf528a26880b85085d4b580209701300be_ppc64le", + "product": { + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:71ddf2a944953a71f723e4f6c7d265bf528a26880b85085d4b580209701300be_ppc64le", + "product_id": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:71ddf2a944953a71f723e4f6c7d265bf528a26880b85085d4b580209701300be_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-volsync-addon-controller-rhel8@sha256:71ddf2a944953a71f723e4f6c7d265bf528a26880b85085d4b580209701300be?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/cert-policy-controller-rhel8@sha256:17d6c9184efbe544edf3ca50d59cf545136e4d7cca27892ef2ce19eb31952633_ppc64le", + "product": { + "name": "rhacm2/cert-policy-controller-rhel8@sha256:17d6c9184efbe544edf3ca50d59cf545136e4d7cca27892ef2ce19eb31952633_ppc64le", + "product_id": "rhacm2/cert-policy-controller-rhel8@sha256:17d6c9184efbe544edf3ca50d59cf545136e4d7cca27892ef2ce19eb31952633_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cert-policy-controller-rhel8@sha256:17d6c9184efbe544edf3ca50d59cf545136e4d7cca27892ef2ce19eb31952633?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/cert-policy-controller-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:24001aeff6b8b0f151f9110791a001806bd6f5dcff28bdf899a34fc9cb44ab2f_ppc64le", + "product": { + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:24001aeff6b8b0f151f9110791a001806bd6f5dcff28bdf899a34fc9cb44ab2f_ppc64le", + "product_id": "rhacm2/cluster-backup-rhel8-operator@sha256:24001aeff6b8b0f151f9110791a001806bd6f5dcff28bdf899a34fc9cb44ab2f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-backup-rhel8-operator@sha256:24001aeff6b8b0f151f9110791a001806bd6f5dcff28bdf899a34fc9cb44ab2f?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/cluster-backup-rhel8-operator&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/config-policy-controller-rhel8@sha256:1192ffe45a699edc1b4d42f6df7ca3ace15b4ad4341a7866cc2d7a6dcb83834f_ppc64le", + "product": { + "name": "rhacm2/config-policy-controller-rhel8@sha256:1192ffe45a699edc1b4d42f6df7ca3ace15b4ad4341a7866cc2d7a6dcb83834f_ppc64le", + "product_id": "rhacm2/config-policy-controller-rhel8@sha256:1192ffe45a699edc1b4d42f6df7ca3ace15b4ad4341a7866cc2d7a6dcb83834f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/config-policy-controller-rhel8@sha256:1192ffe45a699edc1b4d42f6df7ca3ace15b4ad4341a7866cc2d7a6dcb83834f?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/config-policy-controller-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/console-rhel8@sha256:8e407966ba663c8c8259e4a3c99fee8af8ddee11343a4f67e1c1ef750f6e1018_ppc64le", + "product": { + "name": "rhacm2/console-rhel8@sha256:8e407966ba663c8c8259e4a3c99fee8af8ddee11343a4f67e1c1ef750f6e1018_ppc64le", + "product_id": "rhacm2/console-rhel8@sha256:8e407966ba663c8c8259e4a3c99fee8af8ddee11343a4f67e1c1ef750f6e1018_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/console-rhel8@sha256:8e407966ba663c8c8259e4a3c99fee8af8ddee11343a4f67e1c1ef750f6e1018?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/console-rhel8&tag=v2.7.9-8" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:34e57b7f13fab4b7252d7c0e3ae0df6a6c3a4096be936e9066a310c2c21f566f_ppc64le", + "product": { + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:34e57b7f13fab4b7252d7c0e3ae0df6a6c3a4096be936e9066a310c2c21f566f_ppc64le", + "product_id": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:34e57b7f13fab4b7252d7c0e3ae0df6a6c3a4096be936e9066a310c2c21f566f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/endpoint-monitoring-rhel8-operator@sha256:34e57b7f13fab4b7252d7c0e3ae0df6a6c3a4096be936e9066a310c2c21f566f?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/endpoint-monitoring-rhel8-operator&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:568cb892832fcce1496b165d68c65db5545fb0158320a8b0b5fcc68475f35d63_ppc64le", + "product": { + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:568cb892832fcce1496b165d68c65db5545fb0158320a8b0b5fcc68475f35d63_ppc64le", + "product_id": "rhacm2/governance-policy-propagator-rhel8@sha256:568cb892832fcce1496b165d68c65db5545fb0158320a8b0b5fcc68475f35d63_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/governance-policy-propagator-rhel8@sha256:568cb892832fcce1496b165d68c65db5545fb0158320a8b0b5fcc68475f35d63?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/governance-policy-propagator-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:7c246660b9761d7a2c2314d02d2cac9877ad58c1b3931c5082da283a552a007c_ppc64le", + "product": { + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:7c246660b9761d7a2c2314d02d2cac9877ad58c1b3931c5082da283a552a007c_ppc64le", + "product_id": "rhacm2/grafana-dashboard-loader-rhel8@sha256:7c246660b9761d7a2c2314d02d2cac9877ad58c1b3931c5082da283a552a007c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/grafana-dashboard-loader-rhel8@sha256:7c246660b9761d7a2c2314d02d2cac9877ad58c1b3931c5082da283a552a007c?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/iam-policy-controller-rhel8@sha256:80696c15028c27762ab36abddd51b39244bf7f94d92a86cd03294e2de487cc2a_ppc64le", + "product": { + "name": "rhacm2/iam-policy-controller-rhel8@sha256:80696c15028c27762ab36abddd51b39244bf7f94d92a86cd03294e2de487cc2a_ppc64le", + "product_id": "rhacm2/iam-policy-controller-rhel8@sha256:80696c15028c27762ab36abddd51b39244bf7f94d92a86cd03294e2de487cc2a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/iam-policy-controller-rhel8@sha256:80696c15028c27762ab36abddd51b39244bf7f94d92a86cd03294e2de487cc2a?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/iam-policy-controller-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/insights-client-rhel8@sha256:f9772a8ab44052d85ac4c555b9ada66eb1f21be33ac4f9e42559983d4b249e66_ppc64le", + "product": { + "name": "rhacm2/insights-client-rhel8@sha256:f9772a8ab44052d85ac4c555b9ada66eb1f21be33ac4f9e42559983d4b249e66_ppc64le", + "product_id": "rhacm2/insights-client-rhel8@sha256:f9772a8ab44052d85ac4c555b9ada66eb1f21be33ac4f9e42559983d4b249e66_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/insights-client-rhel8@sha256:f9772a8ab44052d85ac4c555b9ada66eb1f21be33ac4f9e42559983d4b249e66?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/insights-client-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/insights-metrics-rhel8@sha256:2a9da115463b6b2c345937c773f7b03fccb4f2b346af52c4481a690942bde1cb_ppc64le", + "product": { + "name": "rhacm2/insights-metrics-rhel8@sha256:2a9da115463b6b2c345937c773f7b03fccb4f2b346af52c4481a690942bde1cb_ppc64le", + "product_id": "rhacm2/insights-metrics-rhel8@sha256:2a9da115463b6b2c345937c773f7b03fccb4f2b346af52c4481a690942bde1cb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/insights-metrics-rhel8@sha256:2a9da115463b6b2c345937c773f7b03fccb4f2b346af52c4481a690942bde1cb?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/insights-metrics-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:d73888566b7ca3846ffdfec544af07401fa0c2c3c6d3b436dd61dd45c70b86b1_ppc64le", + "product": { + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:d73888566b7ca3846ffdfec544af07401fa0c2c3c6d3b436dd61dd45c70b86b1_ppc64le", + "product_id": "rhacm2/klusterlet-addon-controller-rhel8@sha256:d73888566b7ca3846ffdfec544af07401fa0c2c3c6d3b436dd61dd45c70b86b1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/klusterlet-addon-controller-rhel8@sha256:d73888566b7ca3846ffdfec544af07401fa0c2c3c6d3b436dd61dd45c70b86b1?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:de46d82a99d05c9deddf6bf43544b9ee443eaf3551d9c3f33e7e9b6c4a59d254_ppc64le", + "product": { + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:de46d82a99d05c9deddf6bf43544b9ee443eaf3551d9c3f33e7e9b6c4a59d254_ppc64le", + "product_id": "rhacm2/kube-rbac-proxy-rhel8@sha256:de46d82a99d05c9deddf6bf43544b9ee443eaf3551d9c3f33e7e9b6c4a59d254_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kube-rbac-proxy-rhel8@sha256:de46d82a99d05c9deddf6bf43544b9ee443eaf3551d9c3f33e7e9b6c4a59d254?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/kube-rbac-proxy-rhel8&tag=v2.7.9-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/kube-state-metrics-rhel8@sha256:3a475d7006ef73d62a6e355752ae4fcb5955e65e1e5c2437e25973d5652ee8dc_ppc64le", + "product": { + "name": "rhacm2/kube-state-metrics-rhel8@sha256:3a475d7006ef73d62a6e355752ae4fcb5955e65e1e5c2437e25973d5652ee8dc_ppc64le", + "product_id": "rhacm2/kube-state-metrics-rhel8@sha256:3a475d7006ef73d62a6e355752ae4fcb5955e65e1e5c2437e25973d5652ee8dc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kube-state-metrics-rhel8@sha256:3a475d7006ef73d62a6e355752ae4fcb5955e65e1e5c2437e25973d5652ee8dc?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/kube-state-metrics-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/memcached-rhel8@sha256:51a97d5c25e8076cb1636fca98a887a2b118cf274ab01ffc780bea80c97fb130_ppc64le", + "product": { + "name": "rhacm2/memcached-rhel8@sha256:51a97d5c25e8076cb1636fca98a887a2b118cf274ab01ffc780bea80c97fb130_ppc64le", + "product_id": "rhacm2/memcached-rhel8@sha256:51a97d5c25e8076cb1636fca98a887a2b118cf274ab01ffc780bea80c97fb130_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/memcached-rhel8@sha256:51a97d5c25e8076cb1636fca98a887a2b118cf274ab01ffc780bea80c97fb130?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/memcached-rhel8&tag=v2.7.9-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/memcached-exporter-rhel8@sha256:d4a4e826b18e055d9d0331a4d505d3fc39f80d9ae1de266583002ef6b02c05d0_ppc64le", + "product": { + "name": "rhacm2/memcached-exporter-rhel8@sha256:d4a4e826b18e055d9d0331a4d505d3fc39f80d9ae1de266583002ef6b02c05d0_ppc64le", + "product_id": "rhacm2/memcached-exporter-rhel8@sha256:d4a4e826b18e055d9d0331a4d505d3fc39f80d9ae1de266583002ef6b02c05d0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/memcached-exporter-rhel8@sha256:d4a4e826b18e055d9d0331a4d505d3fc39f80d9ae1de266583002ef6b02c05d0?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/memcached-exporter-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/metrics-collector-rhel8@sha256:49193aa0256958f6a614476026d0d2b92288339f3d9b2c40ca630947d200af8c_ppc64le", + "product": { + "name": "rhacm2/metrics-collector-rhel8@sha256:49193aa0256958f6a614476026d0d2b92288339f3d9b2c40ca630947d200af8c_ppc64le", + "product_id": "rhacm2/metrics-collector-rhel8@sha256:49193aa0256958f6a614476026d0d2b92288339f3d9b2c40ca630947d200af8c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/metrics-collector-rhel8@sha256:49193aa0256958f6a614476026d0d2b92288339f3d9b2c40ca630947d200af8c?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/metrics-collector-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicloud-integrations-rhel8@sha256:5f606a789c8ba5ab82a554dc5bfa92c54b54d490ebef8865a2e114de6572c456_ppc64le", + "product": { + "name": "rhacm2/multicloud-integrations-rhel8@sha256:5f606a789c8ba5ab82a554dc5bfa92c54b54d490ebef8865a2e114de6572c456_ppc64le", + "product_id": "rhacm2/multicloud-integrations-rhel8@sha256:5f606a789c8ba5ab82a554dc5bfa92c54b54d490ebef8865a2e114de6572c456_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicloud-integrations-rhel8@sha256:5f606a789c8ba5ab82a554dc5bfa92c54b54d490ebef8865a2e114de6572c456?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/multicloud-integrations-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multiclusterhub-rhel8@sha256:249789b887760f7c3ff23706cf03feccfa5718351a7b330f095b0e40200be919_ppc64le", + "product": { + "name": "rhacm2/multiclusterhub-rhel8@sha256:249789b887760f7c3ff23706cf03feccfa5718351a7b330f095b0e40200be919_ppc64le", + "product_id": "rhacm2/multiclusterhub-rhel8@sha256:249789b887760f7c3ff23706cf03feccfa5718351a7b330f095b0e40200be919_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multiclusterhub-rhel8@sha256:249789b887760f7c3ff23706cf03feccfa5718351a7b330f095b0e40200be919?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/multiclusterhub-rhel8&tag=v2.7.9-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:06e80b429a8c9fd6109f36aa059a2fb2de2ede519b5bd0a42709e0d9296a72fa_ppc64le", + "product": { + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:06e80b429a8c9fd6109f36aa059a2fb2de2ede519b5bd0a42709e0d9296a72fa_ppc64le", + "product_id": "rhacm2/multicluster-observability-rhel8-operator@sha256:06e80b429a8c9fd6109f36aa059a2fb2de2ede519b5bd0a42709e0d9296a72fa_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-observability-rhel8-operator@sha256:06e80b429a8c9fd6109f36aa059a2fb2de2ede519b5bd0a42709e0d9296a72fa?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/multicluster-observability-rhel8-operator&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:51b6140571aa4c6e7a84154632095d4816109bd0a3513b3b4a2b4d422b64f2f0_ppc64le", + "product": { + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:51b6140571aa4c6e7a84154632095d4816109bd0a3513b3b4a2b4d422b64f2f0_ppc64le", + "product_id": "rhacm2/multicluster-operators-application-rhel8@sha256:51b6140571aa4c6e7a84154632095d4816109bd0a3513b3b4a2b4d422b64f2f0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-application-rhel8@sha256:51b6140571aa4c6e7a84154632095d4816109bd0a3513b3b4a2b4d422b64f2f0?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/multicluster-operators-application-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:eac4a1d50d69f041bcbacb595e8eeaaa9da8888cdc1584ef42f946e46dfe7ba6_ppc64le", + "product": { + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:eac4a1d50d69f041bcbacb595e8eeaaa9da8888cdc1584ef42f946e46dfe7ba6_ppc64le", + "product_id": "rhacm2/multicluster-operators-channel-rhel8@sha256:eac4a1d50d69f041bcbacb595e8eeaaa9da8888cdc1584ef42f946e46dfe7ba6_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-channel-rhel8@sha256:eac4a1d50d69f041bcbacb595e8eeaaa9da8888cdc1584ef42f946e46dfe7ba6?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/multicluster-operators-channel-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:26e81840a7d6be515a77007cc2a39355f3a85d86315193d173df7ff15360013d_ppc64le", + "product": { + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:26e81840a7d6be515a77007cc2a39355f3a85d86315193d173df7ff15360013d_ppc64le", + "product_id": "rhacm2/multicluster-operators-subscription-rhel8@sha256:26e81840a7d6be515a77007cc2a39355f3a85d86315193d173df7ff15360013d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-subscription-rhel8@sha256:26e81840a7d6be515a77007cc2a39355f3a85d86315193d173df7ff15360013d?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/node-exporter-rhel8@sha256:4a5001cd02ad785a93bf5b2863efc4e5b1dd5a32cad763177a65570bab7bf14d_ppc64le", + "product": { + "name": "rhacm2/node-exporter-rhel8@sha256:4a5001cd02ad785a93bf5b2863efc4e5b1dd5a32cad763177a65570bab7bf14d_ppc64le", + "product_id": "rhacm2/node-exporter-rhel8@sha256:4a5001cd02ad785a93bf5b2863efc4e5b1dd5a32cad763177a65570bab7bf14d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/node-exporter-rhel8@sha256:4a5001cd02ad785a93bf5b2863efc4e5b1dd5a32cad763177a65570bab7bf14d?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/node-exporter-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/observatorium-rhel8@sha256:87459371da3da99de6810d29b079a5384b7fc6cefc0664f2ded4886b4dc46763_ppc64le", + "product": { + "name": "rhacm2/observatorium-rhel8@sha256:87459371da3da99de6810d29b079a5384b7fc6cefc0664f2ded4886b4dc46763_ppc64le", + "product_id": "rhacm2/observatorium-rhel8@sha256:87459371da3da99de6810d29b079a5384b7fc6cefc0664f2ded4886b4dc46763_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/observatorium-rhel8@sha256:87459371da3da99de6810d29b079a5384b7fc6cefc0664f2ded4886b4dc46763?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/observatorium-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/observatorium-rhel8-operator@sha256:2efc875c6a5c0fe03db8618153bd441e4ce3d2c8a30ef27de3558bdac73533ae_ppc64le", + "product": { + "name": "rhacm2/observatorium-rhel8-operator@sha256:2efc875c6a5c0fe03db8618153bd441e4ce3d2c8a30ef27de3558bdac73533ae_ppc64le", + "product_id": "rhacm2/observatorium-rhel8-operator@sha256:2efc875c6a5c0fe03db8618153bd441e4ce3d2c8a30ef27de3558bdac73533ae_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/observatorium-rhel8-operator@sha256:2efc875c6a5c0fe03db8618153bd441e4ce3d2c8a30ef27de3558bdac73533ae?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/observatorium-rhel8-operator&tag=v2.7.9-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:116ac1acacb1d6e036be8b877e25678d4884378581c6bde98b65e545dfc6e45e_ppc64le", + "product": { + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:116ac1acacb1d6e036be8b877e25678d4884378581c6bde98b65e545dfc6e45e_ppc64le", + "product_id": "rhacm2/prometheus-alertmanager-rhel8@sha256:116ac1acacb1d6e036be8b877e25678d4884378581c6bde98b65e545dfc6e45e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-alertmanager-rhel8@sha256:116ac1acacb1d6e036be8b877e25678d4884378581c6bde98b65e545dfc6e45e?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/prometheus-alertmanager-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/prometheus-rhel8@sha256:9d1483142ba377a0351e7d84a94787c777f6407d732ef41d77d4d872f3e2b2fc_ppc64le", + "product": { + "name": "rhacm2/prometheus-rhel8@sha256:9d1483142ba377a0351e7d84a94787c777f6407d732ef41d77d4d872f3e2b2fc_ppc64le", + "product_id": "rhacm2/prometheus-rhel8@sha256:9d1483142ba377a0351e7d84a94787c777f6407d732ef41d77d4d872f3e2b2fc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-rhel8@sha256:9d1483142ba377a0351e7d84a94787c777f6407d732ef41d77d4d872f3e2b2fc?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/prometheus-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:ca957311c7bcdff8d9ed8694fe3523a02ddce73ffcdccd06580cf57555f599cc_ppc64le", + "product": { + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:ca957311c7bcdff8d9ed8694fe3523a02ddce73ffcdccd06580cf57555f599cc_ppc64le", + "product_id": "rhacm2/rbac-query-proxy-rhel8@sha256:ca957311c7bcdff8d9ed8694fe3523a02ddce73ffcdccd06580cf57555f599cc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rbac-query-proxy-rhel8@sha256:ca957311c7bcdff8d9ed8694fe3523a02ddce73ffcdccd06580cf57555f599cc?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/rbac-query-proxy-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/search-collector-rhel8@sha256:94022ed8b900257ff760e1cbcbed2382d399577b3123d947da9b668443e0f1cb_ppc64le", + "product": { + "name": "rhacm2/search-collector-rhel8@sha256:94022ed8b900257ff760e1cbcbed2382d399577b3123d947da9b668443e0f1cb_ppc64le", + "product_id": "rhacm2/search-collector-rhel8@sha256:94022ed8b900257ff760e1cbcbed2382d399577b3123d947da9b668443e0f1cb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/search-collector-rhel8@sha256:94022ed8b900257ff760e1cbcbed2382d399577b3123d947da9b668443e0f1cb?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/search-collector-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/submariner-addon-rhel8@sha256:132659ca491d75dd1eaf645b6a2b98f9f1e5b5e4aa352d231d82b1b766490522_ppc64le", + "product": { + "name": "rhacm2/submariner-addon-rhel8@sha256:132659ca491d75dd1eaf645b6a2b98f9f1e5b5e4aa352d231d82b1b766490522_ppc64le", + "product_id": "rhacm2/submariner-addon-rhel8@sha256:132659ca491d75dd1eaf645b6a2b98f9f1e5b5e4aa352d231d82b1b766490522_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/submariner-addon-rhel8@sha256:132659ca491d75dd1eaf645b6a2b98f9f1e5b5e4aa352d231d82b1b766490522?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/submariner-addon-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/thanos-rhel8@sha256:156c00a64a6d59aa5e7a0a0e0de7c71675a45251e49adabfc7cfc6525b70b3a1_ppc64le", + "product": { + "name": "rhacm2/thanos-rhel8@sha256:156c00a64a6d59aa5e7a0a0e0de7c71675a45251e49adabfc7cfc6525b70b3a1_ppc64le", + "product_id": "rhacm2/thanos-rhel8@sha256:156c00a64a6d59aa5e7a0a0e0de7c71675a45251e49adabfc7cfc6525b70b3a1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/thanos-rhel8@sha256:156c00a64a6d59aa5e7a0a0e0de7c71675a45251e49adabfc7cfc6525b70b3a1?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/thanos-rhel8&tag=v2.7.9-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:0db75e56976b120fa9649721cde3e3529032ca5ce27ec2b0c43fd391ea04d37b_ppc64le", + "product": { + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:0db75e56976b120fa9649721cde3e3529032ca5ce27ec2b0c43fd391ea04d37b_ppc64le", + "product_id": "rhacm2/thanos-receive-controller-rhel8@sha256:0db75e56976b120fa9649721cde3e3529032ca5ce27ec2b0c43fd391ea04d37b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/thanos-receive-controller-rhel8@sha256:0db75e56976b120fa9649721cde3e3529032ca5ce27ec2b0c43fd391ea04d37b?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/thanos-receive-controller-rhel8&tag=v2.7.9-5" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:be04990624a3c49f741cfc123cffffa50c594a03f5efd08e5cf06e3567f56faf_amd64", + "product": { + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:be04990624a3c49f741cfc123cffffa50c594a03f5efd08e5cf06e3567f56faf_amd64", + "product_id": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:be04990624a3c49f741cfc123cffffa50c594a03f5efd08e5cf06e3567f56faf_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-governance-policy-addon-controller-rhel8@sha256:be04990624a3c49f741cfc123cffffa50c594a03f5efd08e5cf06e3567f56faf?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel8&tag=v2.7.9-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:b142cc821c14f1f3ebe50ceb85466212a709124f1d9645f787295932668743c2_amd64", + "product": { + "name": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:b142cc821c14f1f3ebe50ceb85466212a709124f1d9645f787295932668743c2_amd64", + "product_id": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:b142cc821c14f1f3ebe50ceb85466212a709124f1d9645f787295932668743c2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-governance-policy-framework-addon-rhel8@sha256:b142cc821c14f1f3ebe50ceb85466212a709124f1d9645f787295932668743c2?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-grafana-rhel8@sha256:a0db1de1dfb46d3d7cfd76cd65b24e918310dcef83e8f02915fd522b8d3e0a70_amd64", + "product": { + "name": "rhacm2/acm-grafana-rhel8@sha256:a0db1de1dfb46d3d7cfd76cd65b24e918310dcef83e8f02915fd522b8d3e0a70_amd64", + "product_id": "rhacm2/acm-grafana-rhel8@sha256:a0db1de1dfb46d3d7cfd76cd65b24e918310dcef83e8f02915fd522b8d3e0a70_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-grafana-rhel8@sha256:a0db1de1dfb46d3d7cfd76cd65b24e918310dcef83e8f02915fd522b8d3e0a70?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-grafana-rhel8&tag=v2.7.9-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-must-gather-rhel8@sha256:1b8acd8f3b6eedd4fb5ef671f08361f9a662cfdf1b6a7c817fd0ff75e2baca87_amd64", + "product": { + "name": "rhacm2/acm-must-gather-rhel8@sha256:1b8acd8f3b6eedd4fb5ef671f08361f9a662cfdf1b6a7c817fd0ff75e2baca87_amd64", + "product_id": "rhacm2/acm-must-gather-rhel8@sha256:1b8acd8f3b6eedd4fb5ef671f08361f9a662cfdf1b6a7c817fd0ff75e2baca87_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-must-gather-rhel8@sha256:1b8acd8f3b6eedd4fb5ef671f08361f9a662cfdf1b6a7c817fd0ff75e2baca87?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-must-gather-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-operator-bundle@sha256:95a7dc1932aaa0782e7f201cd2d30710cba05c1fcc4a04af036d1585079003f1_amd64", + "product": { + "name": "rhacm2/acm-operator-bundle@sha256:95a7dc1932aaa0782e7f201cd2d30710cba05c1fcc4a04af036d1585079003f1_amd64", + "product_id": "rhacm2/acm-operator-bundle@sha256:95a7dc1932aaa0782e7f201cd2d30710cba05c1fcc4a04af036d1585079003f1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-operator-bundle@sha256:95a7dc1932aaa0782e7f201cd2d30710cba05c1fcc4a04af036d1585079003f1?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-operator-bundle&tag=v2.7.9-12" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:0786de1ca50aabde9ddd4f61af80500458c482f5e29e7240f59a74b4b8a98ba4_amd64", + "product": { + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:0786de1ca50aabde9ddd4f61af80500458c482f5e29e7240f59a74b4b8a98ba4_amd64", + "product_id": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:0786de1ca50aabde9ddd4f61af80500458c482f5e29e7240f59a74b4b8a98ba4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-prometheus-config-reloader-rhel8@sha256:0786de1ca50aabde9ddd4f61af80500458c482f5e29e7240f59a74b4b8a98ba4?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-prometheus-rhel8@sha256:2a32dc2f67b84c39cfb3463f33e25bb7872688914c7dd68270c5c9efbdbfc97f_amd64", + "product": { + "name": "rhacm2/acm-prometheus-rhel8@sha256:2a32dc2f67b84c39cfb3463f33e25bb7872688914c7dd68270c5c9efbdbfc97f_amd64", + "product_id": "rhacm2/acm-prometheus-rhel8@sha256:2a32dc2f67b84c39cfb3463f33e25bb7872688914c7dd68270c5c9efbdbfc97f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-prometheus-rhel8@sha256:2a32dc2f67b84c39cfb3463f33e25bb7872688914c7dd68270c5c9efbdbfc97f?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-prometheus-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-search-indexer-rhel8@sha256:08b2f00aac5abbd6c4599670aa45658934744f92ca0fb6031637eb2325cc0516_amd64", + "product": { + "name": "rhacm2/acm-search-indexer-rhel8@sha256:08b2f00aac5abbd6c4599670aa45658934744f92ca0fb6031637eb2325cc0516_amd64", + "product_id": "rhacm2/acm-search-indexer-rhel8@sha256:08b2f00aac5abbd6c4599670aa45658934744f92ca0fb6031637eb2325cc0516_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-search-indexer-rhel8@sha256:08b2f00aac5abbd6c4599670aa45658934744f92ca0fb6031637eb2325cc0516?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-search-indexer-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-search-v2-api-rhel8@sha256:627450e93bae015febadee96eb042b073e5d10b83fe328e5ed66de308686675a_amd64", + "product": { + "name": "rhacm2/acm-search-v2-api-rhel8@sha256:627450e93bae015febadee96eb042b073e5d10b83fe328e5ed66de308686675a_amd64", + "product_id": "rhacm2/acm-search-v2-api-rhel8@sha256:627450e93bae015febadee96eb042b073e5d10b83fe328e5ed66de308686675a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-search-v2-api-rhel8@sha256:627450e93bae015febadee96eb042b073e5d10b83fe328e5ed66de308686675a?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-search-v2-api-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-search-v2-rhel8@sha256:5910815b230c6cea2cb14c7d333078aedefe85ba396330144accff2c3fe427e0_amd64", + "product": { + "name": "rhacm2/acm-search-v2-rhel8@sha256:5910815b230c6cea2cb14c7d333078aedefe85ba396330144accff2c3fe427e0_amd64", + "product_id": "rhacm2/acm-search-v2-rhel8@sha256:5910815b230c6cea2cb14c7d333078aedefe85ba396330144accff2c3fe427e0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-search-v2-rhel8@sha256:5910815b230c6cea2cb14c7d333078aedefe85ba396330144accff2c3fe427e0?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-search-v2-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:1c5162b261ce13effd5c45d40a8ae1bec07adc657f485c67b5ec0cd312543434_amd64", + "product": { + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:1c5162b261ce13effd5c45d40a8ae1bec07adc657f485c67b5ec0cd312543434_amd64", + "product_id": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:1c5162b261ce13effd5c45d40a8ae1bec07adc657f485c67b5ec0cd312543434_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-volsync-addon-controller-rhel8@sha256:1c5162b261ce13effd5c45d40a8ae1bec07adc657f485c67b5ec0cd312543434?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/cert-policy-controller-rhel8@sha256:0d858bada6f78887c707757b9dcb997e13a95ab452c4da639a6443db07499885_amd64", + "product": { + "name": "rhacm2/cert-policy-controller-rhel8@sha256:0d858bada6f78887c707757b9dcb997e13a95ab452c4da639a6443db07499885_amd64", + "product_id": "rhacm2/cert-policy-controller-rhel8@sha256:0d858bada6f78887c707757b9dcb997e13a95ab452c4da639a6443db07499885_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cert-policy-controller-rhel8@sha256:0d858bada6f78887c707757b9dcb997e13a95ab452c4da639a6443db07499885?arch=amd64&repository_url=registry.redhat.io/rhacm2/cert-policy-controller-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:550aeda277ec2cb3d9c25416a6b055ec0849b68fb90086f00cec1110aa19b354_amd64", + "product": { + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:550aeda277ec2cb3d9c25416a6b055ec0849b68fb90086f00cec1110aa19b354_amd64", + "product_id": "rhacm2/cluster-backup-rhel8-operator@sha256:550aeda277ec2cb3d9c25416a6b055ec0849b68fb90086f00cec1110aa19b354_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-backup-rhel8-operator@sha256:550aeda277ec2cb3d9c25416a6b055ec0849b68fb90086f00cec1110aa19b354?arch=amd64&repository_url=registry.redhat.io/rhacm2/cluster-backup-rhel8-operator&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/config-policy-controller-rhel8@sha256:ce3eaadf709a9c2f53274620071d87b916352149d7405ce265c94750bd916203_amd64", + "product": { + "name": "rhacm2/config-policy-controller-rhel8@sha256:ce3eaadf709a9c2f53274620071d87b916352149d7405ce265c94750bd916203_amd64", + "product_id": "rhacm2/config-policy-controller-rhel8@sha256:ce3eaadf709a9c2f53274620071d87b916352149d7405ce265c94750bd916203_amd64", + "product_identification_helper": { + "purl": "pkg:oci/config-policy-controller-rhel8@sha256:ce3eaadf709a9c2f53274620071d87b916352149d7405ce265c94750bd916203?arch=amd64&repository_url=registry.redhat.io/rhacm2/config-policy-controller-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/console-rhel8@sha256:2d7cc90095dde471fff97878863e1f264c778cdc67edc8a6842c7dcceb5efefb_amd64", + "product": { + "name": "rhacm2/console-rhel8@sha256:2d7cc90095dde471fff97878863e1f264c778cdc67edc8a6842c7dcceb5efefb_amd64", + "product_id": "rhacm2/console-rhel8@sha256:2d7cc90095dde471fff97878863e1f264c778cdc67edc8a6842c7dcceb5efefb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/console-rhel8@sha256:2d7cc90095dde471fff97878863e1f264c778cdc67edc8a6842c7dcceb5efefb?arch=amd64&repository_url=registry.redhat.io/rhacm2/console-rhel8&tag=v2.7.9-8" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:372cbad0d3e7f659a3ce8c100081cf9b98350e8093a65d5a2e56c12b72f6b6c9_amd64", + "product": { + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:372cbad0d3e7f659a3ce8c100081cf9b98350e8093a65d5a2e56c12b72f6b6c9_amd64", + "product_id": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:372cbad0d3e7f659a3ce8c100081cf9b98350e8093a65d5a2e56c12b72f6b6c9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/endpoint-monitoring-rhel8-operator@sha256:372cbad0d3e7f659a3ce8c100081cf9b98350e8093a65d5a2e56c12b72f6b6c9?arch=amd64&repository_url=registry.redhat.io/rhacm2/endpoint-monitoring-rhel8-operator&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:2ddd44785d00482b1ef44e537fdac939ac698ae129939b72c76209dfdc1190a7_amd64", + "product": { + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:2ddd44785d00482b1ef44e537fdac939ac698ae129939b72c76209dfdc1190a7_amd64", + "product_id": "rhacm2/governance-policy-propagator-rhel8@sha256:2ddd44785d00482b1ef44e537fdac939ac698ae129939b72c76209dfdc1190a7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/governance-policy-propagator-rhel8@sha256:2ddd44785d00482b1ef44e537fdac939ac698ae129939b72c76209dfdc1190a7?arch=amd64&repository_url=registry.redhat.io/rhacm2/governance-policy-propagator-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:f0e51020bd8b79182e45635fe0e06df7935375c4f82b8bbd387cdf50316913aa_amd64", + "product": { + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:f0e51020bd8b79182e45635fe0e06df7935375c4f82b8bbd387cdf50316913aa_amd64", + "product_id": "rhacm2/grafana-dashboard-loader-rhel8@sha256:f0e51020bd8b79182e45635fe0e06df7935375c4f82b8bbd387cdf50316913aa_amd64", + "product_identification_helper": { + "purl": "pkg:oci/grafana-dashboard-loader-rhel8@sha256:f0e51020bd8b79182e45635fe0e06df7935375c4f82b8bbd387cdf50316913aa?arch=amd64&repository_url=registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/iam-policy-controller-rhel8@sha256:d2e448393ccfb9ec61de3ad5fa4f8fb0876d46114420d131f97606a72790a373_amd64", + "product": { + "name": "rhacm2/iam-policy-controller-rhel8@sha256:d2e448393ccfb9ec61de3ad5fa4f8fb0876d46114420d131f97606a72790a373_amd64", + "product_id": "rhacm2/iam-policy-controller-rhel8@sha256:d2e448393ccfb9ec61de3ad5fa4f8fb0876d46114420d131f97606a72790a373_amd64", + "product_identification_helper": { + "purl": "pkg:oci/iam-policy-controller-rhel8@sha256:d2e448393ccfb9ec61de3ad5fa4f8fb0876d46114420d131f97606a72790a373?arch=amd64&repository_url=registry.redhat.io/rhacm2/iam-policy-controller-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/insights-client-rhel8@sha256:66ecbe8f55293bce099a36dee17499b4e759ef452764f893abe1e281cfafc896_amd64", + "product": { + "name": "rhacm2/insights-client-rhel8@sha256:66ecbe8f55293bce099a36dee17499b4e759ef452764f893abe1e281cfafc896_amd64", + "product_id": "rhacm2/insights-client-rhel8@sha256:66ecbe8f55293bce099a36dee17499b4e759ef452764f893abe1e281cfafc896_amd64", + "product_identification_helper": { + "purl": "pkg:oci/insights-client-rhel8@sha256:66ecbe8f55293bce099a36dee17499b4e759ef452764f893abe1e281cfafc896?arch=amd64&repository_url=registry.redhat.io/rhacm2/insights-client-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/insights-metrics-rhel8@sha256:0b69b37e0693e3f748a0d989c63ce015c60905fe409fe67ab2150c8877c18fa2_amd64", + "product": { + "name": "rhacm2/insights-metrics-rhel8@sha256:0b69b37e0693e3f748a0d989c63ce015c60905fe409fe67ab2150c8877c18fa2_amd64", + "product_id": "rhacm2/insights-metrics-rhel8@sha256:0b69b37e0693e3f748a0d989c63ce015c60905fe409fe67ab2150c8877c18fa2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/insights-metrics-rhel8@sha256:0b69b37e0693e3f748a0d989c63ce015c60905fe409fe67ab2150c8877c18fa2?arch=amd64&repository_url=registry.redhat.io/rhacm2/insights-metrics-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:4e6abfcf3d7addc5e61b760d2cba8527752a6e559eaf64c843f368008f54c449_amd64", + "product": { + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:4e6abfcf3d7addc5e61b760d2cba8527752a6e559eaf64c843f368008f54c449_amd64", + "product_id": "rhacm2/klusterlet-addon-controller-rhel8@sha256:4e6abfcf3d7addc5e61b760d2cba8527752a6e559eaf64c843f368008f54c449_amd64", + "product_identification_helper": { + "purl": "pkg:oci/klusterlet-addon-controller-rhel8@sha256:4e6abfcf3d7addc5e61b760d2cba8527752a6e559eaf64c843f368008f54c449?arch=amd64&repository_url=registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:8257b8e7c74d7389661fab47a810781ad472642c6c4f27f0aae5cf079a5cf885_amd64", + "product": { + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:8257b8e7c74d7389661fab47a810781ad472642c6c4f27f0aae5cf079a5cf885_amd64", + "product_id": "rhacm2/kube-rbac-proxy-rhel8@sha256:8257b8e7c74d7389661fab47a810781ad472642c6c4f27f0aae5cf079a5cf885_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kube-rbac-proxy-rhel8@sha256:8257b8e7c74d7389661fab47a810781ad472642c6c4f27f0aae5cf079a5cf885?arch=amd64&repository_url=registry.redhat.io/rhacm2/kube-rbac-proxy-rhel8&tag=v2.7.9-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/kube-state-metrics-rhel8@sha256:2ffab3cdf3be45dc9f621c8a09eba248c2c65098e3f27b6867b916966a0909d2_amd64", + "product": { + "name": "rhacm2/kube-state-metrics-rhel8@sha256:2ffab3cdf3be45dc9f621c8a09eba248c2c65098e3f27b6867b916966a0909d2_amd64", + "product_id": "rhacm2/kube-state-metrics-rhel8@sha256:2ffab3cdf3be45dc9f621c8a09eba248c2c65098e3f27b6867b916966a0909d2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kube-state-metrics-rhel8@sha256:2ffab3cdf3be45dc9f621c8a09eba248c2c65098e3f27b6867b916966a0909d2?arch=amd64&repository_url=registry.redhat.io/rhacm2/kube-state-metrics-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/memcached-rhel8@sha256:34e6553fcdaaddec9070dfdba7e313c5fc7b259b95392af8e7f4dc438c12e6cb_amd64", + "product": { + "name": "rhacm2/memcached-rhel8@sha256:34e6553fcdaaddec9070dfdba7e313c5fc7b259b95392af8e7f4dc438c12e6cb_amd64", + "product_id": "rhacm2/memcached-rhel8@sha256:34e6553fcdaaddec9070dfdba7e313c5fc7b259b95392af8e7f4dc438c12e6cb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/memcached-rhel8@sha256:34e6553fcdaaddec9070dfdba7e313c5fc7b259b95392af8e7f4dc438c12e6cb?arch=amd64&repository_url=registry.redhat.io/rhacm2/memcached-rhel8&tag=v2.7.9-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/memcached-exporter-rhel8@sha256:23f1671505862dfd0ff3cc38b275c42da7046dfa0ca04677068b62fb3cb52018_amd64", + "product": { + "name": "rhacm2/memcached-exporter-rhel8@sha256:23f1671505862dfd0ff3cc38b275c42da7046dfa0ca04677068b62fb3cb52018_amd64", + "product_id": "rhacm2/memcached-exporter-rhel8@sha256:23f1671505862dfd0ff3cc38b275c42da7046dfa0ca04677068b62fb3cb52018_amd64", + "product_identification_helper": { + "purl": "pkg:oci/memcached-exporter-rhel8@sha256:23f1671505862dfd0ff3cc38b275c42da7046dfa0ca04677068b62fb3cb52018?arch=amd64&repository_url=registry.redhat.io/rhacm2/memcached-exporter-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/metrics-collector-rhel8@sha256:59518651f43332c7bee15907edb06591804f9317fa5c323b604ab94b6c957927_amd64", + "product": { + "name": "rhacm2/metrics-collector-rhel8@sha256:59518651f43332c7bee15907edb06591804f9317fa5c323b604ab94b6c957927_amd64", + "product_id": "rhacm2/metrics-collector-rhel8@sha256:59518651f43332c7bee15907edb06591804f9317fa5c323b604ab94b6c957927_amd64", + "product_identification_helper": { + "purl": "pkg:oci/metrics-collector-rhel8@sha256:59518651f43332c7bee15907edb06591804f9317fa5c323b604ab94b6c957927?arch=amd64&repository_url=registry.redhat.io/rhacm2/metrics-collector-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicloud-integrations-rhel8@sha256:a7acfc755a4b86c07299b0b7c58464e19551fe0d19c9d57a62217210597f51ef_amd64", + "product": { + "name": "rhacm2/multicloud-integrations-rhel8@sha256:a7acfc755a4b86c07299b0b7c58464e19551fe0d19c9d57a62217210597f51ef_amd64", + "product_id": "rhacm2/multicloud-integrations-rhel8@sha256:a7acfc755a4b86c07299b0b7c58464e19551fe0d19c9d57a62217210597f51ef_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicloud-integrations-rhel8@sha256:a7acfc755a4b86c07299b0b7c58464e19551fe0d19c9d57a62217210597f51ef?arch=amd64&repository_url=registry.redhat.io/rhacm2/multicloud-integrations-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multiclusterhub-rhel8@sha256:3b701e20c7bf2d8031ad5a979e9b21cea8599205755c0773f0b6ac53d3fe00af_amd64", + "product": { + "name": "rhacm2/multiclusterhub-rhel8@sha256:3b701e20c7bf2d8031ad5a979e9b21cea8599205755c0773f0b6ac53d3fe00af_amd64", + "product_id": "rhacm2/multiclusterhub-rhel8@sha256:3b701e20c7bf2d8031ad5a979e9b21cea8599205755c0773f0b6ac53d3fe00af_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multiclusterhub-rhel8@sha256:3b701e20c7bf2d8031ad5a979e9b21cea8599205755c0773f0b6ac53d3fe00af?arch=amd64&repository_url=registry.redhat.io/rhacm2/multiclusterhub-rhel8&tag=v2.7.9-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:fe8d090aefee9e73f8ffb2423cab7024254f17f978347d9c0fdf600d3f9f6b50_amd64", + "product": { + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:fe8d090aefee9e73f8ffb2423cab7024254f17f978347d9c0fdf600d3f9f6b50_amd64", + "product_id": "rhacm2/multicluster-observability-rhel8-operator@sha256:fe8d090aefee9e73f8ffb2423cab7024254f17f978347d9c0fdf600d3f9f6b50_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-observability-rhel8-operator@sha256:fe8d090aefee9e73f8ffb2423cab7024254f17f978347d9c0fdf600d3f9f6b50?arch=amd64&repository_url=registry.redhat.io/rhacm2/multicluster-observability-rhel8-operator&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:eb132d5efe17ade5bf3ec5b153dd333521412f27682afea30f1018d98d37c93d_amd64", + "product": { + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:eb132d5efe17ade5bf3ec5b153dd333521412f27682afea30f1018d98d37c93d_amd64", + "product_id": "rhacm2/multicluster-operators-application-rhel8@sha256:eb132d5efe17ade5bf3ec5b153dd333521412f27682afea30f1018d98d37c93d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-application-rhel8@sha256:eb132d5efe17ade5bf3ec5b153dd333521412f27682afea30f1018d98d37c93d?arch=amd64&repository_url=registry.redhat.io/rhacm2/multicluster-operators-application-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:0ef16de05314a24c3b0d1f6a8e32d3054edb6d8f9bc04b4324c845e3f016c5f9_amd64", + "product": { + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:0ef16de05314a24c3b0d1f6a8e32d3054edb6d8f9bc04b4324c845e3f016c5f9_amd64", + "product_id": "rhacm2/multicluster-operators-channel-rhel8@sha256:0ef16de05314a24c3b0d1f6a8e32d3054edb6d8f9bc04b4324c845e3f016c5f9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-channel-rhel8@sha256:0ef16de05314a24c3b0d1f6a8e32d3054edb6d8f9bc04b4324c845e3f016c5f9?arch=amd64&repository_url=registry.redhat.io/rhacm2/multicluster-operators-channel-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:ca0eda9d3eaa78da3917f97f8988dd27e4d289e806a8b453af3f9bf272af43b2_amd64", + "product": { + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:ca0eda9d3eaa78da3917f97f8988dd27e4d289e806a8b453af3f9bf272af43b2_amd64", + "product_id": "rhacm2/multicluster-operators-subscription-rhel8@sha256:ca0eda9d3eaa78da3917f97f8988dd27e4d289e806a8b453af3f9bf272af43b2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-subscription-rhel8@sha256:ca0eda9d3eaa78da3917f97f8988dd27e4d289e806a8b453af3f9bf272af43b2?arch=amd64&repository_url=registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/node-exporter-rhel8@sha256:bb1ae67b0c71bb8c3050692087f235a45e489da875c8f7786cd64fab53bc3f9d_amd64", + "product": { + "name": "rhacm2/node-exporter-rhel8@sha256:bb1ae67b0c71bb8c3050692087f235a45e489da875c8f7786cd64fab53bc3f9d_amd64", + "product_id": "rhacm2/node-exporter-rhel8@sha256:bb1ae67b0c71bb8c3050692087f235a45e489da875c8f7786cd64fab53bc3f9d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/node-exporter-rhel8@sha256:bb1ae67b0c71bb8c3050692087f235a45e489da875c8f7786cd64fab53bc3f9d?arch=amd64&repository_url=registry.redhat.io/rhacm2/node-exporter-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/observatorium-rhel8@sha256:0bdb4a4829fad9a95ceec48706fe93a276ed68a7366c6f8fd7d0e1f51205e1eb_amd64", + "product": { + "name": "rhacm2/observatorium-rhel8@sha256:0bdb4a4829fad9a95ceec48706fe93a276ed68a7366c6f8fd7d0e1f51205e1eb_amd64", + "product_id": "rhacm2/observatorium-rhel8@sha256:0bdb4a4829fad9a95ceec48706fe93a276ed68a7366c6f8fd7d0e1f51205e1eb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/observatorium-rhel8@sha256:0bdb4a4829fad9a95ceec48706fe93a276ed68a7366c6f8fd7d0e1f51205e1eb?arch=amd64&repository_url=registry.redhat.io/rhacm2/observatorium-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/observatorium-rhel8-operator@sha256:51299b4ac2ff84c990826191540befaeb7d291861c90430c68c92164150d48c6_amd64", + "product": { + "name": "rhacm2/observatorium-rhel8-operator@sha256:51299b4ac2ff84c990826191540befaeb7d291861c90430c68c92164150d48c6_amd64", + "product_id": "rhacm2/observatorium-rhel8-operator@sha256:51299b4ac2ff84c990826191540befaeb7d291861c90430c68c92164150d48c6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/observatorium-rhel8-operator@sha256:51299b4ac2ff84c990826191540befaeb7d291861c90430c68c92164150d48c6?arch=amd64&repository_url=registry.redhat.io/rhacm2/observatorium-rhel8-operator&tag=v2.7.9-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:75ce0c796cd35bf8f430681c7f006141cff7238874441d01a0a6b23a29110002_amd64", + "product": { + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:75ce0c796cd35bf8f430681c7f006141cff7238874441d01a0a6b23a29110002_amd64", + "product_id": "rhacm2/prometheus-alertmanager-rhel8@sha256:75ce0c796cd35bf8f430681c7f006141cff7238874441d01a0a6b23a29110002_amd64", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-alertmanager-rhel8@sha256:75ce0c796cd35bf8f430681c7f006141cff7238874441d01a0a6b23a29110002?arch=amd64&repository_url=registry.redhat.io/rhacm2/prometheus-alertmanager-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/prometheus-rhel8@sha256:b3f74a16bb9f4d72cd95c171652344d676935b7516a4b983e3eeea1be6b677f1_amd64", + "product": { + "name": "rhacm2/prometheus-rhel8@sha256:b3f74a16bb9f4d72cd95c171652344d676935b7516a4b983e3eeea1be6b677f1_amd64", + "product_id": "rhacm2/prometheus-rhel8@sha256:b3f74a16bb9f4d72cd95c171652344d676935b7516a4b983e3eeea1be6b677f1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-rhel8@sha256:b3f74a16bb9f4d72cd95c171652344d676935b7516a4b983e3eeea1be6b677f1?arch=amd64&repository_url=registry.redhat.io/rhacm2/prometheus-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:02a72731414ecc961684a1a102fb77a0ed7b0f33332168c75b2fb705af762035_amd64", + "product": { + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:02a72731414ecc961684a1a102fb77a0ed7b0f33332168c75b2fb705af762035_amd64", + "product_id": "rhacm2/rbac-query-proxy-rhel8@sha256:02a72731414ecc961684a1a102fb77a0ed7b0f33332168c75b2fb705af762035_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rbac-query-proxy-rhel8@sha256:02a72731414ecc961684a1a102fb77a0ed7b0f33332168c75b2fb705af762035?arch=amd64&repository_url=registry.redhat.io/rhacm2/rbac-query-proxy-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/search-collector-rhel8@sha256:a82e092b2a07e56199bbfb743221a15508558eaae045adde7b238d81078b5a8c_amd64", + "product": { + "name": "rhacm2/search-collector-rhel8@sha256:a82e092b2a07e56199bbfb743221a15508558eaae045adde7b238d81078b5a8c_amd64", + "product_id": "rhacm2/search-collector-rhel8@sha256:a82e092b2a07e56199bbfb743221a15508558eaae045adde7b238d81078b5a8c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/search-collector-rhel8@sha256:a82e092b2a07e56199bbfb743221a15508558eaae045adde7b238d81078b5a8c?arch=amd64&repository_url=registry.redhat.io/rhacm2/search-collector-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/submariner-addon-rhel8@sha256:670cdada591c009519b4f7fbb1adda45bdf5a8932801df2cf2831507c0effb4f_amd64", + "product": { + "name": "rhacm2/submariner-addon-rhel8@sha256:670cdada591c009519b4f7fbb1adda45bdf5a8932801df2cf2831507c0effb4f_amd64", + "product_id": "rhacm2/submariner-addon-rhel8@sha256:670cdada591c009519b4f7fbb1adda45bdf5a8932801df2cf2831507c0effb4f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/submariner-addon-rhel8@sha256:670cdada591c009519b4f7fbb1adda45bdf5a8932801df2cf2831507c0effb4f?arch=amd64&repository_url=registry.redhat.io/rhacm2/submariner-addon-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/thanos-rhel8@sha256:623a1fcc8d5911a0b286d58bc5bee663a9afa2482dda4e121a07e0641e3000f0_amd64", + "product": { + "name": "rhacm2/thanos-rhel8@sha256:623a1fcc8d5911a0b286d58bc5bee663a9afa2482dda4e121a07e0641e3000f0_amd64", + "product_id": "rhacm2/thanos-rhel8@sha256:623a1fcc8d5911a0b286d58bc5bee663a9afa2482dda4e121a07e0641e3000f0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/thanos-rhel8@sha256:623a1fcc8d5911a0b286d58bc5bee663a9afa2482dda4e121a07e0641e3000f0?arch=amd64&repository_url=registry.redhat.io/rhacm2/thanos-rhel8&tag=v2.7.9-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:223b070eb0696cd5bd2981d5a8e2bc0d588d9d5ea7169ab6474fb17b9aa56214_amd64", + "product": { + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:223b070eb0696cd5bd2981d5a8e2bc0d588d9d5ea7169ab6474fb17b9aa56214_amd64", + "product_id": "rhacm2/thanos-receive-controller-rhel8@sha256:223b070eb0696cd5bd2981d5a8e2bc0d588d9d5ea7169ab6474fb17b9aa56214_amd64", + "product_identification_helper": { + "purl": "pkg:oci/thanos-receive-controller-rhel8@sha256:223b070eb0696cd5bd2981d5a8e2bc0d588d9d5ea7169ab6474fb17b9aa56214?arch=amd64&repository_url=registry.redhat.io/rhacm2/thanos-receive-controller-rhel8&tag=v2.7.9-5" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:9ac73e246d0b2acda83c778ec7f289a3344e75e90d4e7891859981b7d3c0ba2a_arm64", + "product": { + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:9ac73e246d0b2acda83c778ec7f289a3344e75e90d4e7891859981b7d3c0ba2a_arm64", + "product_id": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:9ac73e246d0b2acda83c778ec7f289a3344e75e90d4e7891859981b7d3c0ba2a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-governance-policy-addon-controller-rhel8@sha256:9ac73e246d0b2acda83c778ec7f289a3344e75e90d4e7891859981b7d3c0ba2a?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel8&tag=v2.7.9-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:e120418c666d3199f993a0f5233b9419c7574b47f4ee31193e5fb53c02fc72ac_arm64", + "product": { + "name": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:e120418c666d3199f993a0f5233b9419c7574b47f4ee31193e5fb53c02fc72ac_arm64", + "product_id": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:e120418c666d3199f993a0f5233b9419c7574b47f4ee31193e5fb53c02fc72ac_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-governance-policy-framework-addon-rhel8@sha256:e120418c666d3199f993a0f5233b9419c7574b47f4ee31193e5fb53c02fc72ac?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-grafana-rhel8@sha256:5804763c8400693d515ad6d2955783d31a3f8c0ffa11c21b058a611384b4cb99_arm64", + "product": { + "name": "rhacm2/acm-grafana-rhel8@sha256:5804763c8400693d515ad6d2955783d31a3f8c0ffa11c21b058a611384b4cb99_arm64", + "product_id": "rhacm2/acm-grafana-rhel8@sha256:5804763c8400693d515ad6d2955783d31a3f8c0ffa11c21b058a611384b4cb99_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-grafana-rhel8@sha256:5804763c8400693d515ad6d2955783d31a3f8c0ffa11c21b058a611384b4cb99?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-grafana-rhel8&tag=v2.7.9-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-must-gather-rhel8@sha256:1c3bc20a767401ce32a07e56835372d16c06c8e68d435e46db24d6f46006f614_arm64", + "product": { + "name": "rhacm2/acm-must-gather-rhel8@sha256:1c3bc20a767401ce32a07e56835372d16c06c8e68d435e46db24d6f46006f614_arm64", + "product_id": "rhacm2/acm-must-gather-rhel8@sha256:1c3bc20a767401ce32a07e56835372d16c06c8e68d435e46db24d6f46006f614_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-must-gather-rhel8@sha256:1c3bc20a767401ce32a07e56835372d16c06c8e68d435e46db24d6f46006f614?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-must-gather-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:a0aaeca37538bf3f7a95c8731dd98b9109d9557295213207d67e0e45d222df21_arm64", + "product": { + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:a0aaeca37538bf3f7a95c8731dd98b9109d9557295213207d67e0e45d222df21_arm64", + "product_id": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:a0aaeca37538bf3f7a95c8731dd98b9109d9557295213207d67e0e45d222df21_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-prometheus-config-reloader-rhel8@sha256:a0aaeca37538bf3f7a95c8731dd98b9109d9557295213207d67e0e45d222df21?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-prometheus-rhel8@sha256:ef2b25a2fbb2c9504c97cdad39c6699248431ef9bb57d4a497e819c52cb0469a_arm64", + "product": { + "name": "rhacm2/acm-prometheus-rhel8@sha256:ef2b25a2fbb2c9504c97cdad39c6699248431ef9bb57d4a497e819c52cb0469a_arm64", + "product_id": "rhacm2/acm-prometheus-rhel8@sha256:ef2b25a2fbb2c9504c97cdad39c6699248431ef9bb57d4a497e819c52cb0469a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-prometheus-rhel8@sha256:ef2b25a2fbb2c9504c97cdad39c6699248431ef9bb57d4a497e819c52cb0469a?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-prometheus-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-search-indexer-rhel8@sha256:648be3417cf67a51de1ee3c6b170284b8f74cb6e66447ff55235511fb7f64ea6_arm64", + "product": { + "name": "rhacm2/acm-search-indexer-rhel8@sha256:648be3417cf67a51de1ee3c6b170284b8f74cb6e66447ff55235511fb7f64ea6_arm64", + "product_id": "rhacm2/acm-search-indexer-rhel8@sha256:648be3417cf67a51de1ee3c6b170284b8f74cb6e66447ff55235511fb7f64ea6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-search-indexer-rhel8@sha256:648be3417cf67a51de1ee3c6b170284b8f74cb6e66447ff55235511fb7f64ea6?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-search-indexer-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-search-v2-api-rhel8@sha256:c779bdf5acdd1a33c32b5530472878f387dc1aba106bb82375fd9475f73c5a29_arm64", + "product": { + "name": "rhacm2/acm-search-v2-api-rhel8@sha256:c779bdf5acdd1a33c32b5530472878f387dc1aba106bb82375fd9475f73c5a29_arm64", + "product_id": "rhacm2/acm-search-v2-api-rhel8@sha256:c779bdf5acdd1a33c32b5530472878f387dc1aba106bb82375fd9475f73c5a29_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-search-v2-api-rhel8@sha256:c779bdf5acdd1a33c32b5530472878f387dc1aba106bb82375fd9475f73c5a29?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-search-v2-api-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-search-v2-rhel8@sha256:abc5e636d8ddac8043d5bc37c183a086d07fe41ca1bd76513f566f2df5a38d9e_arm64", + "product": { + "name": "rhacm2/acm-search-v2-rhel8@sha256:abc5e636d8ddac8043d5bc37c183a086d07fe41ca1bd76513f566f2df5a38d9e_arm64", + "product_id": "rhacm2/acm-search-v2-rhel8@sha256:abc5e636d8ddac8043d5bc37c183a086d07fe41ca1bd76513f566f2df5a38d9e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-search-v2-rhel8@sha256:abc5e636d8ddac8043d5bc37c183a086d07fe41ca1bd76513f566f2df5a38d9e?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-search-v2-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:dffa95f5d243d869e2a59eb67176cb20ea2bf599a825ad3e20472164917ea6d6_arm64", + "product": { + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:dffa95f5d243d869e2a59eb67176cb20ea2bf599a825ad3e20472164917ea6d6_arm64", + "product_id": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:dffa95f5d243d869e2a59eb67176cb20ea2bf599a825ad3e20472164917ea6d6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-volsync-addon-controller-rhel8@sha256:dffa95f5d243d869e2a59eb67176cb20ea2bf599a825ad3e20472164917ea6d6?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/cert-policy-controller-rhel8@sha256:0c07e61a43f825158d5d783beafedc03699604f0cf68c48b357cb389fcf04b7c_arm64", + "product": { + "name": "rhacm2/cert-policy-controller-rhel8@sha256:0c07e61a43f825158d5d783beafedc03699604f0cf68c48b357cb389fcf04b7c_arm64", + "product_id": "rhacm2/cert-policy-controller-rhel8@sha256:0c07e61a43f825158d5d783beafedc03699604f0cf68c48b357cb389fcf04b7c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cert-policy-controller-rhel8@sha256:0c07e61a43f825158d5d783beafedc03699604f0cf68c48b357cb389fcf04b7c?arch=arm64&repository_url=registry.redhat.io/rhacm2/cert-policy-controller-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:2cc45caec24aad547950655044005c4210cf9f732cb4e936d13ccad48d39a0a6_arm64", + "product": { + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:2cc45caec24aad547950655044005c4210cf9f732cb4e936d13ccad48d39a0a6_arm64", + "product_id": "rhacm2/cluster-backup-rhel8-operator@sha256:2cc45caec24aad547950655044005c4210cf9f732cb4e936d13ccad48d39a0a6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-backup-rhel8-operator@sha256:2cc45caec24aad547950655044005c4210cf9f732cb4e936d13ccad48d39a0a6?arch=arm64&repository_url=registry.redhat.io/rhacm2/cluster-backup-rhel8-operator&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/config-policy-controller-rhel8@sha256:8fece907b56871171b194cbabde7d3e759ea4589ea9fe8bf18fcc9eb9aec81eb_arm64", + "product": { + "name": "rhacm2/config-policy-controller-rhel8@sha256:8fece907b56871171b194cbabde7d3e759ea4589ea9fe8bf18fcc9eb9aec81eb_arm64", + "product_id": "rhacm2/config-policy-controller-rhel8@sha256:8fece907b56871171b194cbabde7d3e759ea4589ea9fe8bf18fcc9eb9aec81eb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/config-policy-controller-rhel8@sha256:8fece907b56871171b194cbabde7d3e759ea4589ea9fe8bf18fcc9eb9aec81eb?arch=arm64&repository_url=registry.redhat.io/rhacm2/config-policy-controller-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/console-rhel8@sha256:fbdba1f6ee3715970785cc831e33e846c878e3f6e3e9fefb601c76f4fe19d815_arm64", + "product": { + "name": "rhacm2/console-rhel8@sha256:fbdba1f6ee3715970785cc831e33e846c878e3f6e3e9fefb601c76f4fe19d815_arm64", + "product_id": "rhacm2/console-rhel8@sha256:fbdba1f6ee3715970785cc831e33e846c878e3f6e3e9fefb601c76f4fe19d815_arm64", + "product_identification_helper": { + "purl": "pkg:oci/console-rhel8@sha256:fbdba1f6ee3715970785cc831e33e846c878e3f6e3e9fefb601c76f4fe19d815?arch=arm64&repository_url=registry.redhat.io/rhacm2/console-rhel8&tag=v2.7.9-8" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:6f6646191d33c864d42d998210f4cf4c18a08459be75306a9f490b172564175c_arm64", + "product": { + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:6f6646191d33c864d42d998210f4cf4c18a08459be75306a9f490b172564175c_arm64", + "product_id": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:6f6646191d33c864d42d998210f4cf4c18a08459be75306a9f490b172564175c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/endpoint-monitoring-rhel8-operator@sha256:6f6646191d33c864d42d998210f4cf4c18a08459be75306a9f490b172564175c?arch=arm64&repository_url=registry.redhat.io/rhacm2/endpoint-monitoring-rhel8-operator&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:f4795bde04f07ad3adee7cf87e7351f926f6b28bb5336d8be26ed9b7fa551e49_arm64", + "product": { + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:f4795bde04f07ad3adee7cf87e7351f926f6b28bb5336d8be26ed9b7fa551e49_arm64", + "product_id": "rhacm2/governance-policy-propagator-rhel8@sha256:f4795bde04f07ad3adee7cf87e7351f926f6b28bb5336d8be26ed9b7fa551e49_arm64", + "product_identification_helper": { + "purl": "pkg:oci/governance-policy-propagator-rhel8@sha256:f4795bde04f07ad3adee7cf87e7351f926f6b28bb5336d8be26ed9b7fa551e49?arch=arm64&repository_url=registry.redhat.io/rhacm2/governance-policy-propagator-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:68c36ba7ef2b891541f3aa8ec95546a081966aba94143b16041a344b4061f9dd_arm64", + "product": { + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:68c36ba7ef2b891541f3aa8ec95546a081966aba94143b16041a344b4061f9dd_arm64", + "product_id": "rhacm2/grafana-dashboard-loader-rhel8@sha256:68c36ba7ef2b891541f3aa8ec95546a081966aba94143b16041a344b4061f9dd_arm64", + "product_identification_helper": { + "purl": "pkg:oci/grafana-dashboard-loader-rhel8@sha256:68c36ba7ef2b891541f3aa8ec95546a081966aba94143b16041a344b4061f9dd?arch=arm64&repository_url=registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/iam-policy-controller-rhel8@sha256:f09bcd763fa16c191efcad09414dbd12c1402c51bba4ee6072fa23fa030cfe6e_arm64", + "product": { + "name": "rhacm2/iam-policy-controller-rhel8@sha256:f09bcd763fa16c191efcad09414dbd12c1402c51bba4ee6072fa23fa030cfe6e_arm64", + "product_id": "rhacm2/iam-policy-controller-rhel8@sha256:f09bcd763fa16c191efcad09414dbd12c1402c51bba4ee6072fa23fa030cfe6e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/iam-policy-controller-rhel8@sha256:f09bcd763fa16c191efcad09414dbd12c1402c51bba4ee6072fa23fa030cfe6e?arch=arm64&repository_url=registry.redhat.io/rhacm2/iam-policy-controller-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/insights-client-rhel8@sha256:05c2cbcd8d9124a73584910ae11243ab363c9800396cc95504ffb4adc004e928_arm64", + "product": { + "name": "rhacm2/insights-client-rhel8@sha256:05c2cbcd8d9124a73584910ae11243ab363c9800396cc95504ffb4adc004e928_arm64", + "product_id": "rhacm2/insights-client-rhel8@sha256:05c2cbcd8d9124a73584910ae11243ab363c9800396cc95504ffb4adc004e928_arm64", + "product_identification_helper": { + "purl": "pkg:oci/insights-client-rhel8@sha256:05c2cbcd8d9124a73584910ae11243ab363c9800396cc95504ffb4adc004e928?arch=arm64&repository_url=registry.redhat.io/rhacm2/insights-client-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/insights-metrics-rhel8@sha256:cd42af3f047187a8d0ba83ed7d838751d30c6ad2a7410f4dd2260170127ed03d_arm64", + "product": { + "name": "rhacm2/insights-metrics-rhel8@sha256:cd42af3f047187a8d0ba83ed7d838751d30c6ad2a7410f4dd2260170127ed03d_arm64", + "product_id": "rhacm2/insights-metrics-rhel8@sha256:cd42af3f047187a8d0ba83ed7d838751d30c6ad2a7410f4dd2260170127ed03d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/insights-metrics-rhel8@sha256:cd42af3f047187a8d0ba83ed7d838751d30c6ad2a7410f4dd2260170127ed03d?arch=arm64&repository_url=registry.redhat.io/rhacm2/insights-metrics-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:e4ce50cfc352f152a48c14025f576dd3c90ae9329bffa137ff6a83d4d14e2c1a_arm64", + "product": { + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:e4ce50cfc352f152a48c14025f576dd3c90ae9329bffa137ff6a83d4d14e2c1a_arm64", + "product_id": "rhacm2/klusterlet-addon-controller-rhel8@sha256:e4ce50cfc352f152a48c14025f576dd3c90ae9329bffa137ff6a83d4d14e2c1a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/klusterlet-addon-controller-rhel8@sha256:e4ce50cfc352f152a48c14025f576dd3c90ae9329bffa137ff6a83d4d14e2c1a?arch=arm64&repository_url=registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:33042554acc053a3e7df606c36ab474e72424bdefbb69bb2783054b25b062909_arm64", + "product": { + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:33042554acc053a3e7df606c36ab474e72424bdefbb69bb2783054b25b062909_arm64", + "product_id": "rhacm2/kube-rbac-proxy-rhel8@sha256:33042554acc053a3e7df606c36ab474e72424bdefbb69bb2783054b25b062909_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kube-rbac-proxy-rhel8@sha256:33042554acc053a3e7df606c36ab474e72424bdefbb69bb2783054b25b062909?arch=arm64&repository_url=registry.redhat.io/rhacm2/kube-rbac-proxy-rhel8&tag=v2.7.9-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/kube-state-metrics-rhel8@sha256:a0283dc8f1644ff565c2bd5b96a3922cce7771163957072bf1e5b5c15afbbe38_arm64", + "product": { + "name": "rhacm2/kube-state-metrics-rhel8@sha256:a0283dc8f1644ff565c2bd5b96a3922cce7771163957072bf1e5b5c15afbbe38_arm64", + "product_id": "rhacm2/kube-state-metrics-rhel8@sha256:a0283dc8f1644ff565c2bd5b96a3922cce7771163957072bf1e5b5c15afbbe38_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kube-state-metrics-rhel8@sha256:a0283dc8f1644ff565c2bd5b96a3922cce7771163957072bf1e5b5c15afbbe38?arch=arm64&repository_url=registry.redhat.io/rhacm2/kube-state-metrics-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/memcached-rhel8@sha256:b7d14b760adec885a14bda22744ade2b212769f09a0388cd3d6ce0eb9acb0943_arm64", + "product": { + "name": "rhacm2/memcached-rhel8@sha256:b7d14b760adec885a14bda22744ade2b212769f09a0388cd3d6ce0eb9acb0943_arm64", + "product_id": "rhacm2/memcached-rhel8@sha256:b7d14b760adec885a14bda22744ade2b212769f09a0388cd3d6ce0eb9acb0943_arm64", + "product_identification_helper": { + "purl": "pkg:oci/memcached-rhel8@sha256:b7d14b760adec885a14bda22744ade2b212769f09a0388cd3d6ce0eb9acb0943?arch=arm64&repository_url=registry.redhat.io/rhacm2/memcached-rhel8&tag=v2.7.9-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/memcached-exporter-rhel8@sha256:9f88b2bc2f479193d6a771e6793bee37077c8d895b1c553d3ae66eb9c0e5011a_arm64", + "product": { + "name": "rhacm2/memcached-exporter-rhel8@sha256:9f88b2bc2f479193d6a771e6793bee37077c8d895b1c553d3ae66eb9c0e5011a_arm64", + "product_id": "rhacm2/memcached-exporter-rhel8@sha256:9f88b2bc2f479193d6a771e6793bee37077c8d895b1c553d3ae66eb9c0e5011a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/memcached-exporter-rhel8@sha256:9f88b2bc2f479193d6a771e6793bee37077c8d895b1c553d3ae66eb9c0e5011a?arch=arm64&repository_url=registry.redhat.io/rhacm2/memcached-exporter-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/metrics-collector-rhel8@sha256:2c6dbf4487de944835ef83fc068413cab0aaeb0477cb4e72d7c76e6a9476f461_arm64", + "product": { + "name": "rhacm2/metrics-collector-rhel8@sha256:2c6dbf4487de944835ef83fc068413cab0aaeb0477cb4e72d7c76e6a9476f461_arm64", + "product_id": "rhacm2/metrics-collector-rhel8@sha256:2c6dbf4487de944835ef83fc068413cab0aaeb0477cb4e72d7c76e6a9476f461_arm64", + "product_identification_helper": { + "purl": "pkg:oci/metrics-collector-rhel8@sha256:2c6dbf4487de944835ef83fc068413cab0aaeb0477cb4e72d7c76e6a9476f461?arch=arm64&repository_url=registry.redhat.io/rhacm2/metrics-collector-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicloud-integrations-rhel8@sha256:1d39dc9b3b16bebb0fe9e718d3995bcf34fc81c827037ac093e9228f20a61033_arm64", + "product": { + "name": "rhacm2/multicloud-integrations-rhel8@sha256:1d39dc9b3b16bebb0fe9e718d3995bcf34fc81c827037ac093e9228f20a61033_arm64", + "product_id": "rhacm2/multicloud-integrations-rhel8@sha256:1d39dc9b3b16bebb0fe9e718d3995bcf34fc81c827037ac093e9228f20a61033_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicloud-integrations-rhel8@sha256:1d39dc9b3b16bebb0fe9e718d3995bcf34fc81c827037ac093e9228f20a61033?arch=arm64&repository_url=registry.redhat.io/rhacm2/multicloud-integrations-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multiclusterhub-rhel8@sha256:e1fcfdcebd7317c108abb981f883e8587edbd1132e1005e6f4f1dc44ff9c5109_arm64", + "product": { + "name": "rhacm2/multiclusterhub-rhel8@sha256:e1fcfdcebd7317c108abb981f883e8587edbd1132e1005e6f4f1dc44ff9c5109_arm64", + "product_id": "rhacm2/multiclusterhub-rhel8@sha256:e1fcfdcebd7317c108abb981f883e8587edbd1132e1005e6f4f1dc44ff9c5109_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multiclusterhub-rhel8@sha256:e1fcfdcebd7317c108abb981f883e8587edbd1132e1005e6f4f1dc44ff9c5109?arch=arm64&repository_url=registry.redhat.io/rhacm2/multiclusterhub-rhel8&tag=v2.7.9-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:23d1f549cfa49d58009be021b06b013e23f55634fc0b16109d88d7d4a0cbdeef_arm64", + "product": { + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:23d1f549cfa49d58009be021b06b013e23f55634fc0b16109d88d7d4a0cbdeef_arm64", + "product_id": "rhacm2/multicluster-observability-rhel8-operator@sha256:23d1f549cfa49d58009be021b06b013e23f55634fc0b16109d88d7d4a0cbdeef_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-observability-rhel8-operator@sha256:23d1f549cfa49d58009be021b06b013e23f55634fc0b16109d88d7d4a0cbdeef?arch=arm64&repository_url=registry.redhat.io/rhacm2/multicluster-observability-rhel8-operator&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:72f7dc328c709ea23eaa79a8859d85ad786e35aec575f0979f383979d04fce3f_arm64", + "product": { + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:72f7dc328c709ea23eaa79a8859d85ad786e35aec575f0979f383979d04fce3f_arm64", + "product_id": "rhacm2/multicluster-operators-application-rhel8@sha256:72f7dc328c709ea23eaa79a8859d85ad786e35aec575f0979f383979d04fce3f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-application-rhel8@sha256:72f7dc328c709ea23eaa79a8859d85ad786e35aec575f0979f383979d04fce3f?arch=arm64&repository_url=registry.redhat.io/rhacm2/multicluster-operators-application-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:f559073821c7213c611062d868ffa71f48875f8720cf411a32ff399733a92752_arm64", + "product": { + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:f559073821c7213c611062d868ffa71f48875f8720cf411a32ff399733a92752_arm64", + "product_id": "rhacm2/multicluster-operators-channel-rhel8@sha256:f559073821c7213c611062d868ffa71f48875f8720cf411a32ff399733a92752_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-channel-rhel8@sha256:f559073821c7213c611062d868ffa71f48875f8720cf411a32ff399733a92752?arch=arm64&repository_url=registry.redhat.io/rhacm2/multicluster-operators-channel-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:206e6646976eccc0a2824f512aed4c019fc9140a49c86b0e3edba28f1c2ccdf3_arm64", + "product": { + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:206e6646976eccc0a2824f512aed4c019fc9140a49c86b0e3edba28f1c2ccdf3_arm64", + "product_id": "rhacm2/multicluster-operators-subscription-rhel8@sha256:206e6646976eccc0a2824f512aed4c019fc9140a49c86b0e3edba28f1c2ccdf3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-subscription-rhel8@sha256:206e6646976eccc0a2824f512aed4c019fc9140a49c86b0e3edba28f1c2ccdf3?arch=arm64&repository_url=registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/node-exporter-rhel8@sha256:44afe6666fba927709b61f8fe11bfb5e417c1a9a636d949ea498051c9cf30109_arm64", + "product": { + "name": "rhacm2/node-exporter-rhel8@sha256:44afe6666fba927709b61f8fe11bfb5e417c1a9a636d949ea498051c9cf30109_arm64", + "product_id": "rhacm2/node-exporter-rhel8@sha256:44afe6666fba927709b61f8fe11bfb5e417c1a9a636d949ea498051c9cf30109_arm64", + "product_identification_helper": { + "purl": "pkg:oci/node-exporter-rhel8@sha256:44afe6666fba927709b61f8fe11bfb5e417c1a9a636d949ea498051c9cf30109?arch=arm64&repository_url=registry.redhat.io/rhacm2/node-exporter-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/observatorium-rhel8@sha256:be950787b7921c2407ec29fbf309ab5f9e6a7e9f286fd79bf0ecd782d3f71474_arm64", + "product": { + "name": "rhacm2/observatorium-rhel8@sha256:be950787b7921c2407ec29fbf309ab5f9e6a7e9f286fd79bf0ecd782d3f71474_arm64", + "product_id": "rhacm2/observatorium-rhel8@sha256:be950787b7921c2407ec29fbf309ab5f9e6a7e9f286fd79bf0ecd782d3f71474_arm64", + "product_identification_helper": { + "purl": "pkg:oci/observatorium-rhel8@sha256:be950787b7921c2407ec29fbf309ab5f9e6a7e9f286fd79bf0ecd782d3f71474?arch=arm64&repository_url=registry.redhat.io/rhacm2/observatorium-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/observatorium-rhel8-operator@sha256:deee6c9ef749b7ba011b2f53dcdf06221648563a146b5802d3719ddd3f5c0a82_arm64", + "product": { + "name": "rhacm2/observatorium-rhel8-operator@sha256:deee6c9ef749b7ba011b2f53dcdf06221648563a146b5802d3719ddd3f5c0a82_arm64", + "product_id": "rhacm2/observatorium-rhel8-operator@sha256:deee6c9ef749b7ba011b2f53dcdf06221648563a146b5802d3719ddd3f5c0a82_arm64", + "product_identification_helper": { + "purl": "pkg:oci/observatorium-rhel8-operator@sha256:deee6c9ef749b7ba011b2f53dcdf06221648563a146b5802d3719ddd3f5c0a82?arch=arm64&repository_url=registry.redhat.io/rhacm2/observatorium-rhel8-operator&tag=v2.7.9-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:aaa7f7ac39119a98620aa0b64f101587594f2d5e46d06512efa281d19ac1fa8d_arm64", + "product": { + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:aaa7f7ac39119a98620aa0b64f101587594f2d5e46d06512efa281d19ac1fa8d_arm64", + "product_id": "rhacm2/prometheus-alertmanager-rhel8@sha256:aaa7f7ac39119a98620aa0b64f101587594f2d5e46d06512efa281d19ac1fa8d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-alertmanager-rhel8@sha256:aaa7f7ac39119a98620aa0b64f101587594f2d5e46d06512efa281d19ac1fa8d?arch=arm64&repository_url=registry.redhat.io/rhacm2/prometheus-alertmanager-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/prometheus-rhel8@sha256:2ef70d3391863dd359b2ad2373d1678472a6f0b6464fd0409c3b0026e91d9f99_arm64", + "product": { + "name": "rhacm2/prometheus-rhel8@sha256:2ef70d3391863dd359b2ad2373d1678472a6f0b6464fd0409c3b0026e91d9f99_arm64", + "product_id": "rhacm2/prometheus-rhel8@sha256:2ef70d3391863dd359b2ad2373d1678472a6f0b6464fd0409c3b0026e91d9f99_arm64", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-rhel8@sha256:2ef70d3391863dd359b2ad2373d1678472a6f0b6464fd0409c3b0026e91d9f99?arch=arm64&repository_url=registry.redhat.io/rhacm2/prometheus-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:a32c04e7d60d5a5109ba306942503ced5591e08362a060c502b47d93291101ee_arm64", + "product": { + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:a32c04e7d60d5a5109ba306942503ced5591e08362a060c502b47d93291101ee_arm64", + "product_id": "rhacm2/rbac-query-proxy-rhel8@sha256:a32c04e7d60d5a5109ba306942503ced5591e08362a060c502b47d93291101ee_arm64", + "product_identification_helper": { + "purl": "pkg:oci/rbac-query-proxy-rhel8@sha256:a32c04e7d60d5a5109ba306942503ced5591e08362a060c502b47d93291101ee?arch=arm64&repository_url=registry.redhat.io/rhacm2/rbac-query-proxy-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/search-collector-rhel8@sha256:04cf8b9ffd2c9614794707712710e4d35a77a4e16a000dda8cd83b71798fa11b_arm64", + "product": { + "name": "rhacm2/search-collector-rhel8@sha256:04cf8b9ffd2c9614794707712710e4d35a77a4e16a000dda8cd83b71798fa11b_arm64", + "product_id": "rhacm2/search-collector-rhel8@sha256:04cf8b9ffd2c9614794707712710e4d35a77a4e16a000dda8cd83b71798fa11b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/search-collector-rhel8@sha256:04cf8b9ffd2c9614794707712710e4d35a77a4e16a000dda8cd83b71798fa11b?arch=arm64&repository_url=registry.redhat.io/rhacm2/search-collector-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/submariner-addon-rhel8@sha256:9ad81706a3c4ca1c80868ea793d9c8551e40f4600ba531a466c0e48c304ca171_arm64", + "product": { + "name": "rhacm2/submariner-addon-rhel8@sha256:9ad81706a3c4ca1c80868ea793d9c8551e40f4600ba531a466c0e48c304ca171_arm64", + "product_id": "rhacm2/submariner-addon-rhel8@sha256:9ad81706a3c4ca1c80868ea793d9c8551e40f4600ba531a466c0e48c304ca171_arm64", + "product_identification_helper": { + "purl": "pkg:oci/submariner-addon-rhel8@sha256:9ad81706a3c4ca1c80868ea793d9c8551e40f4600ba531a466c0e48c304ca171?arch=arm64&repository_url=registry.redhat.io/rhacm2/submariner-addon-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/thanos-rhel8@sha256:193d2700f2abba96c11af9b96afe65579ed071cbb3be7b2aba4c8a26d7e84855_arm64", + "product": { + "name": "rhacm2/thanos-rhel8@sha256:193d2700f2abba96c11af9b96afe65579ed071cbb3be7b2aba4c8a26d7e84855_arm64", + "product_id": "rhacm2/thanos-rhel8@sha256:193d2700f2abba96c11af9b96afe65579ed071cbb3be7b2aba4c8a26d7e84855_arm64", + "product_identification_helper": { + "purl": "pkg:oci/thanos-rhel8@sha256:193d2700f2abba96c11af9b96afe65579ed071cbb3be7b2aba4c8a26d7e84855?arch=arm64&repository_url=registry.redhat.io/rhacm2/thanos-rhel8&tag=v2.7.9-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:2f0bfbe4560a27bc77c2bf79fd544548c299bd5ab185b813f0f56e826861b0f9_arm64", + "product": { + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:2f0bfbe4560a27bc77c2bf79fd544548c299bd5ab185b813f0f56e826861b0f9_arm64", + "product_id": "rhacm2/thanos-receive-controller-rhel8@sha256:2f0bfbe4560a27bc77c2bf79fd544548c299bd5ab185b813f0f56e826861b0f9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/thanos-receive-controller-rhel8@sha256:2f0bfbe4560a27bc77c2bf79fd544548c299bd5ab185b813f0f56e826861b0f9?arch=arm64&repository_url=registry.redhat.io/rhacm2/thanos-receive-controller-rhel8&tag=v2.7.9-5" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:fa0cffb08d32608bf3324c56a53786fabf01a2de0716d5b8e63ee58d28ac2bd6_s390x", + "product": { + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:fa0cffb08d32608bf3324c56a53786fabf01a2de0716d5b8e63ee58d28ac2bd6_s390x", + "product_id": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:fa0cffb08d32608bf3324c56a53786fabf01a2de0716d5b8e63ee58d28ac2bd6_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-governance-policy-addon-controller-rhel8@sha256:fa0cffb08d32608bf3324c56a53786fabf01a2de0716d5b8e63ee58d28ac2bd6?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel8&tag=v2.7.9-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:e5ae855b79e9cabbe1a7835e62cdc4220050b369e64cb48eee3c18e259f48d1a_s390x", + "product": { + "name": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:e5ae855b79e9cabbe1a7835e62cdc4220050b369e64cb48eee3c18e259f48d1a_s390x", + "product_id": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:e5ae855b79e9cabbe1a7835e62cdc4220050b369e64cb48eee3c18e259f48d1a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-governance-policy-framework-addon-rhel8@sha256:e5ae855b79e9cabbe1a7835e62cdc4220050b369e64cb48eee3c18e259f48d1a?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-grafana-rhel8@sha256:53a999e96f682d66772e18cb4f8abb424ce5005c0421509a01576850398a8df0_s390x", + "product": { + "name": "rhacm2/acm-grafana-rhel8@sha256:53a999e96f682d66772e18cb4f8abb424ce5005c0421509a01576850398a8df0_s390x", + "product_id": "rhacm2/acm-grafana-rhel8@sha256:53a999e96f682d66772e18cb4f8abb424ce5005c0421509a01576850398a8df0_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-grafana-rhel8@sha256:53a999e96f682d66772e18cb4f8abb424ce5005c0421509a01576850398a8df0?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-grafana-rhel8&tag=v2.7.9-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-must-gather-rhel8@sha256:c5c7e49ae56fce81d05d3dc83e229d3dcdbd89ecdcd90781202605f494ad21ad_s390x", + "product": { + "name": "rhacm2/acm-must-gather-rhel8@sha256:c5c7e49ae56fce81d05d3dc83e229d3dcdbd89ecdcd90781202605f494ad21ad_s390x", + "product_id": "rhacm2/acm-must-gather-rhel8@sha256:c5c7e49ae56fce81d05d3dc83e229d3dcdbd89ecdcd90781202605f494ad21ad_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-must-gather-rhel8@sha256:c5c7e49ae56fce81d05d3dc83e229d3dcdbd89ecdcd90781202605f494ad21ad?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-must-gather-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-operator-bundle@sha256:59b9a7f7f421dd9dcfc01b0ff7e09283d2579abbb6374017e37a83c3ab4a8a2a_s390x", + "product": { + "name": "rhacm2/acm-operator-bundle@sha256:59b9a7f7f421dd9dcfc01b0ff7e09283d2579abbb6374017e37a83c3ab4a8a2a_s390x", + "product_id": "rhacm2/acm-operator-bundle@sha256:59b9a7f7f421dd9dcfc01b0ff7e09283d2579abbb6374017e37a83c3ab4a8a2a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-operator-bundle@sha256:59b9a7f7f421dd9dcfc01b0ff7e09283d2579abbb6374017e37a83c3ab4a8a2a?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-operator-bundle&tag=v2.7.9-12" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:f74e98045a1ea79c2c8dfc0b7d5a43988f7f79263a5481791fa68208a638b3f3_s390x", + "product": { + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:f74e98045a1ea79c2c8dfc0b7d5a43988f7f79263a5481791fa68208a638b3f3_s390x", + "product_id": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:f74e98045a1ea79c2c8dfc0b7d5a43988f7f79263a5481791fa68208a638b3f3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-prometheus-config-reloader-rhel8@sha256:f74e98045a1ea79c2c8dfc0b7d5a43988f7f79263a5481791fa68208a638b3f3?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-prometheus-rhel8@sha256:94c104b662e58a47bd848878a4e60252e56abed80cd395068b87b36ba333c56f_s390x", + "product": { + "name": "rhacm2/acm-prometheus-rhel8@sha256:94c104b662e58a47bd848878a4e60252e56abed80cd395068b87b36ba333c56f_s390x", + "product_id": "rhacm2/acm-prometheus-rhel8@sha256:94c104b662e58a47bd848878a4e60252e56abed80cd395068b87b36ba333c56f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-prometheus-rhel8@sha256:94c104b662e58a47bd848878a4e60252e56abed80cd395068b87b36ba333c56f?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-prometheus-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-search-indexer-rhel8@sha256:1c70bab38c211c2d31c15b55fb0a19c27a58cd952faba642bbf392eb7a1f01ca_s390x", + "product": { + "name": "rhacm2/acm-search-indexer-rhel8@sha256:1c70bab38c211c2d31c15b55fb0a19c27a58cd952faba642bbf392eb7a1f01ca_s390x", + "product_id": "rhacm2/acm-search-indexer-rhel8@sha256:1c70bab38c211c2d31c15b55fb0a19c27a58cd952faba642bbf392eb7a1f01ca_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-search-indexer-rhel8@sha256:1c70bab38c211c2d31c15b55fb0a19c27a58cd952faba642bbf392eb7a1f01ca?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-search-indexer-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-search-v2-api-rhel8@sha256:5e70dc2a1e9ccfdf5cf28e8f559fd8bac029b1a13f658993bbe237ac53964349_s390x", + "product": { + "name": "rhacm2/acm-search-v2-api-rhel8@sha256:5e70dc2a1e9ccfdf5cf28e8f559fd8bac029b1a13f658993bbe237ac53964349_s390x", + "product_id": "rhacm2/acm-search-v2-api-rhel8@sha256:5e70dc2a1e9ccfdf5cf28e8f559fd8bac029b1a13f658993bbe237ac53964349_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-search-v2-api-rhel8@sha256:5e70dc2a1e9ccfdf5cf28e8f559fd8bac029b1a13f658993bbe237ac53964349?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-search-v2-api-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-search-v2-rhel8@sha256:0c09b9b18b8b2ccf6a701efe9244f6100fdf273c60069ac2496bb8828d29a4f9_s390x", + "product": { + "name": "rhacm2/acm-search-v2-rhel8@sha256:0c09b9b18b8b2ccf6a701efe9244f6100fdf273c60069ac2496bb8828d29a4f9_s390x", + "product_id": "rhacm2/acm-search-v2-rhel8@sha256:0c09b9b18b8b2ccf6a701efe9244f6100fdf273c60069ac2496bb8828d29a4f9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-search-v2-rhel8@sha256:0c09b9b18b8b2ccf6a701efe9244f6100fdf273c60069ac2496bb8828d29a4f9?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-search-v2-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:1c36e08be26c3cb3c8ea3217b11a8b92dd31040ec5158f5079f47d113c8c2a8e_s390x", + "product": { + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:1c36e08be26c3cb3c8ea3217b11a8b92dd31040ec5158f5079f47d113c8c2a8e_s390x", + "product_id": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:1c36e08be26c3cb3c8ea3217b11a8b92dd31040ec5158f5079f47d113c8c2a8e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-volsync-addon-controller-rhel8@sha256:1c36e08be26c3cb3c8ea3217b11a8b92dd31040ec5158f5079f47d113c8c2a8e?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/cert-policy-controller-rhel8@sha256:2dbd6b6b99ffaf78d7eed8f72d124c339d09e765b86f6b780818917928b9995e_s390x", + "product": { + "name": "rhacm2/cert-policy-controller-rhel8@sha256:2dbd6b6b99ffaf78d7eed8f72d124c339d09e765b86f6b780818917928b9995e_s390x", + "product_id": "rhacm2/cert-policy-controller-rhel8@sha256:2dbd6b6b99ffaf78d7eed8f72d124c339d09e765b86f6b780818917928b9995e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cert-policy-controller-rhel8@sha256:2dbd6b6b99ffaf78d7eed8f72d124c339d09e765b86f6b780818917928b9995e?arch=s390x&repository_url=registry.redhat.io/rhacm2/cert-policy-controller-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:db49fb760a193e39798d05f850181d55b3461ba8924272f9527cf7fc38d3bca9_s390x", + "product": { + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:db49fb760a193e39798d05f850181d55b3461ba8924272f9527cf7fc38d3bca9_s390x", + "product_id": "rhacm2/cluster-backup-rhel8-operator@sha256:db49fb760a193e39798d05f850181d55b3461ba8924272f9527cf7fc38d3bca9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-backup-rhel8-operator@sha256:db49fb760a193e39798d05f850181d55b3461ba8924272f9527cf7fc38d3bca9?arch=s390x&repository_url=registry.redhat.io/rhacm2/cluster-backup-rhel8-operator&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/config-policy-controller-rhel8@sha256:51ef5745cbdcd1e53d7869e1a432fab2c419c8cc0035eb1c27ac23e54b84c432_s390x", + "product": { + "name": "rhacm2/config-policy-controller-rhel8@sha256:51ef5745cbdcd1e53d7869e1a432fab2c419c8cc0035eb1c27ac23e54b84c432_s390x", + "product_id": "rhacm2/config-policy-controller-rhel8@sha256:51ef5745cbdcd1e53d7869e1a432fab2c419c8cc0035eb1c27ac23e54b84c432_s390x", + "product_identification_helper": { + "purl": "pkg:oci/config-policy-controller-rhel8@sha256:51ef5745cbdcd1e53d7869e1a432fab2c419c8cc0035eb1c27ac23e54b84c432?arch=s390x&repository_url=registry.redhat.io/rhacm2/config-policy-controller-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/console-rhel8@sha256:ca48488f565ed97f625a8d10c520ad2959ec693648b791d7cad1f0d4341646c7_s390x", + "product": { + "name": "rhacm2/console-rhel8@sha256:ca48488f565ed97f625a8d10c520ad2959ec693648b791d7cad1f0d4341646c7_s390x", + "product_id": "rhacm2/console-rhel8@sha256:ca48488f565ed97f625a8d10c520ad2959ec693648b791d7cad1f0d4341646c7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/console-rhel8@sha256:ca48488f565ed97f625a8d10c520ad2959ec693648b791d7cad1f0d4341646c7?arch=s390x&repository_url=registry.redhat.io/rhacm2/console-rhel8&tag=v2.7.9-8" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:f7274b2790726ece43c1da61465a124a945ea2b3caba738833f7d7659776916c_s390x", + "product": { + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:f7274b2790726ece43c1da61465a124a945ea2b3caba738833f7d7659776916c_s390x", + "product_id": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:f7274b2790726ece43c1da61465a124a945ea2b3caba738833f7d7659776916c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/endpoint-monitoring-rhel8-operator@sha256:f7274b2790726ece43c1da61465a124a945ea2b3caba738833f7d7659776916c?arch=s390x&repository_url=registry.redhat.io/rhacm2/endpoint-monitoring-rhel8-operator&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:e97a31d9eacb0b6a2c9f3860e88b61fb96f1ae1dde24df9391555cd10437d9e9_s390x", + "product": { + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:e97a31d9eacb0b6a2c9f3860e88b61fb96f1ae1dde24df9391555cd10437d9e9_s390x", + "product_id": "rhacm2/governance-policy-propagator-rhel8@sha256:e97a31d9eacb0b6a2c9f3860e88b61fb96f1ae1dde24df9391555cd10437d9e9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/governance-policy-propagator-rhel8@sha256:e97a31d9eacb0b6a2c9f3860e88b61fb96f1ae1dde24df9391555cd10437d9e9?arch=s390x&repository_url=registry.redhat.io/rhacm2/governance-policy-propagator-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:421ee0fad526062676a4043011ca6fea1502c0c6fc26d32d53fdff5833720452_s390x", + "product": { + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:421ee0fad526062676a4043011ca6fea1502c0c6fc26d32d53fdff5833720452_s390x", + "product_id": "rhacm2/grafana-dashboard-loader-rhel8@sha256:421ee0fad526062676a4043011ca6fea1502c0c6fc26d32d53fdff5833720452_s390x", + "product_identification_helper": { + "purl": "pkg:oci/grafana-dashboard-loader-rhel8@sha256:421ee0fad526062676a4043011ca6fea1502c0c6fc26d32d53fdff5833720452?arch=s390x&repository_url=registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/iam-policy-controller-rhel8@sha256:8fd2b3d1b7e827a46a57a75aef33e792864d1ee2b11634b0fd23fe466ccb8894_s390x", + "product": { + "name": "rhacm2/iam-policy-controller-rhel8@sha256:8fd2b3d1b7e827a46a57a75aef33e792864d1ee2b11634b0fd23fe466ccb8894_s390x", + "product_id": "rhacm2/iam-policy-controller-rhel8@sha256:8fd2b3d1b7e827a46a57a75aef33e792864d1ee2b11634b0fd23fe466ccb8894_s390x", + "product_identification_helper": { + "purl": "pkg:oci/iam-policy-controller-rhel8@sha256:8fd2b3d1b7e827a46a57a75aef33e792864d1ee2b11634b0fd23fe466ccb8894?arch=s390x&repository_url=registry.redhat.io/rhacm2/iam-policy-controller-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/insights-client-rhel8@sha256:41a26793fe3dafc0dbd6b7a316acd463ff97b994979d3783f69cd607a8ab2658_s390x", + "product": { + "name": "rhacm2/insights-client-rhel8@sha256:41a26793fe3dafc0dbd6b7a316acd463ff97b994979d3783f69cd607a8ab2658_s390x", + "product_id": "rhacm2/insights-client-rhel8@sha256:41a26793fe3dafc0dbd6b7a316acd463ff97b994979d3783f69cd607a8ab2658_s390x", + "product_identification_helper": { + "purl": "pkg:oci/insights-client-rhel8@sha256:41a26793fe3dafc0dbd6b7a316acd463ff97b994979d3783f69cd607a8ab2658?arch=s390x&repository_url=registry.redhat.io/rhacm2/insights-client-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/insights-metrics-rhel8@sha256:9febb7bb4549aa64d2a17767330020053e622e5e68f7d2bf6f5532a554fb8eb6_s390x", + "product": { + "name": "rhacm2/insights-metrics-rhel8@sha256:9febb7bb4549aa64d2a17767330020053e622e5e68f7d2bf6f5532a554fb8eb6_s390x", + "product_id": "rhacm2/insights-metrics-rhel8@sha256:9febb7bb4549aa64d2a17767330020053e622e5e68f7d2bf6f5532a554fb8eb6_s390x", + "product_identification_helper": { + "purl": "pkg:oci/insights-metrics-rhel8@sha256:9febb7bb4549aa64d2a17767330020053e622e5e68f7d2bf6f5532a554fb8eb6?arch=s390x&repository_url=registry.redhat.io/rhacm2/insights-metrics-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:8d39a8ec5fb4d1574c9e6d5e2066af924a4f37a9af4209fd61a9822f38099274_s390x", + "product": { + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:8d39a8ec5fb4d1574c9e6d5e2066af924a4f37a9af4209fd61a9822f38099274_s390x", + "product_id": "rhacm2/klusterlet-addon-controller-rhel8@sha256:8d39a8ec5fb4d1574c9e6d5e2066af924a4f37a9af4209fd61a9822f38099274_s390x", + "product_identification_helper": { + "purl": "pkg:oci/klusterlet-addon-controller-rhel8@sha256:8d39a8ec5fb4d1574c9e6d5e2066af924a4f37a9af4209fd61a9822f38099274?arch=s390x&repository_url=registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:1508a46c15ede059dd12548151c8d4caec17ec8e3732ec99b13988a31e38f286_s390x", + "product": { + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:1508a46c15ede059dd12548151c8d4caec17ec8e3732ec99b13988a31e38f286_s390x", + "product_id": "rhacm2/kube-rbac-proxy-rhel8@sha256:1508a46c15ede059dd12548151c8d4caec17ec8e3732ec99b13988a31e38f286_s390x", + "product_identification_helper": { + "purl": "pkg:oci/kube-rbac-proxy-rhel8@sha256:1508a46c15ede059dd12548151c8d4caec17ec8e3732ec99b13988a31e38f286?arch=s390x&repository_url=registry.redhat.io/rhacm2/kube-rbac-proxy-rhel8&tag=v2.7.9-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/kube-state-metrics-rhel8@sha256:5ab6c969a81a61a37646614b87abeadf30cc66023f2f9e73a5a91eb63edc8ba3_s390x", + "product": { + "name": "rhacm2/kube-state-metrics-rhel8@sha256:5ab6c969a81a61a37646614b87abeadf30cc66023f2f9e73a5a91eb63edc8ba3_s390x", + "product_id": "rhacm2/kube-state-metrics-rhel8@sha256:5ab6c969a81a61a37646614b87abeadf30cc66023f2f9e73a5a91eb63edc8ba3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/kube-state-metrics-rhel8@sha256:5ab6c969a81a61a37646614b87abeadf30cc66023f2f9e73a5a91eb63edc8ba3?arch=s390x&repository_url=registry.redhat.io/rhacm2/kube-state-metrics-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/memcached-rhel8@sha256:e469633bb4ae670ce3508457aef0843ed87561504ef8322e54abe998f8c49ade_s390x", + "product": { + "name": "rhacm2/memcached-rhel8@sha256:e469633bb4ae670ce3508457aef0843ed87561504ef8322e54abe998f8c49ade_s390x", + "product_id": "rhacm2/memcached-rhel8@sha256:e469633bb4ae670ce3508457aef0843ed87561504ef8322e54abe998f8c49ade_s390x", + "product_identification_helper": { + "purl": "pkg:oci/memcached-rhel8@sha256:e469633bb4ae670ce3508457aef0843ed87561504ef8322e54abe998f8c49ade?arch=s390x&repository_url=registry.redhat.io/rhacm2/memcached-rhel8&tag=v2.7.9-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/memcached-exporter-rhel8@sha256:76b6c4ae987d8d9512784e63b4c75d364e7dcee66a497a15bac49f5edb508d2b_s390x", + "product": { + "name": "rhacm2/memcached-exporter-rhel8@sha256:76b6c4ae987d8d9512784e63b4c75d364e7dcee66a497a15bac49f5edb508d2b_s390x", + "product_id": "rhacm2/memcached-exporter-rhel8@sha256:76b6c4ae987d8d9512784e63b4c75d364e7dcee66a497a15bac49f5edb508d2b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/memcached-exporter-rhel8@sha256:76b6c4ae987d8d9512784e63b4c75d364e7dcee66a497a15bac49f5edb508d2b?arch=s390x&repository_url=registry.redhat.io/rhacm2/memcached-exporter-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/metrics-collector-rhel8@sha256:d4baa2a50505ba7a73b7d5a231794a68da15a4be57920e1a3b318e4d5ef17052_s390x", + "product": { + "name": "rhacm2/metrics-collector-rhel8@sha256:d4baa2a50505ba7a73b7d5a231794a68da15a4be57920e1a3b318e4d5ef17052_s390x", + "product_id": "rhacm2/metrics-collector-rhel8@sha256:d4baa2a50505ba7a73b7d5a231794a68da15a4be57920e1a3b318e4d5ef17052_s390x", + "product_identification_helper": { + "purl": "pkg:oci/metrics-collector-rhel8@sha256:d4baa2a50505ba7a73b7d5a231794a68da15a4be57920e1a3b318e4d5ef17052?arch=s390x&repository_url=registry.redhat.io/rhacm2/metrics-collector-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicloud-integrations-rhel8@sha256:f42ec0da9c0d0bd95266fc5bc60c0d4e263b2332aff260b990f804ae1d138123_s390x", + "product": { + "name": "rhacm2/multicloud-integrations-rhel8@sha256:f42ec0da9c0d0bd95266fc5bc60c0d4e263b2332aff260b990f804ae1d138123_s390x", + "product_id": "rhacm2/multicloud-integrations-rhel8@sha256:f42ec0da9c0d0bd95266fc5bc60c0d4e263b2332aff260b990f804ae1d138123_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicloud-integrations-rhel8@sha256:f42ec0da9c0d0bd95266fc5bc60c0d4e263b2332aff260b990f804ae1d138123?arch=s390x&repository_url=registry.redhat.io/rhacm2/multicloud-integrations-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multiclusterhub-rhel8@sha256:fb20c8f580259ce1929ca0d7a3174e06643dd29d3e3ba69f6c107d4f0a23b764_s390x", + "product": { + "name": "rhacm2/multiclusterhub-rhel8@sha256:fb20c8f580259ce1929ca0d7a3174e06643dd29d3e3ba69f6c107d4f0a23b764_s390x", + "product_id": "rhacm2/multiclusterhub-rhel8@sha256:fb20c8f580259ce1929ca0d7a3174e06643dd29d3e3ba69f6c107d4f0a23b764_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multiclusterhub-rhel8@sha256:fb20c8f580259ce1929ca0d7a3174e06643dd29d3e3ba69f6c107d4f0a23b764?arch=s390x&repository_url=registry.redhat.io/rhacm2/multiclusterhub-rhel8&tag=v2.7.9-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:227f7b89f463001986ac0a419e62863e0781aaed829d6d47820ca7f042e62c01_s390x", + "product": { + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:227f7b89f463001986ac0a419e62863e0781aaed829d6d47820ca7f042e62c01_s390x", + "product_id": "rhacm2/multicluster-observability-rhel8-operator@sha256:227f7b89f463001986ac0a419e62863e0781aaed829d6d47820ca7f042e62c01_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-observability-rhel8-operator@sha256:227f7b89f463001986ac0a419e62863e0781aaed829d6d47820ca7f042e62c01?arch=s390x&repository_url=registry.redhat.io/rhacm2/multicluster-observability-rhel8-operator&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:32ae3ad3863663fc5b25b40c6cb7748b9d19925cd06c7f3dd6b8ec6d0913b923_s390x", + "product": { + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:32ae3ad3863663fc5b25b40c6cb7748b9d19925cd06c7f3dd6b8ec6d0913b923_s390x", + "product_id": "rhacm2/multicluster-operators-application-rhel8@sha256:32ae3ad3863663fc5b25b40c6cb7748b9d19925cd06c7f3dd6b8ec6d0913b923_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-application-rhel8@sha256:32ae3ad3863663fc5b25b40c6cb7748b9d19925cd06c7f3dd6b8ec6d0913b923?arch=s390x&repository_url=registry.redhat.io/rhacm2/multicluster-operators-application-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:f47b0451ca6c08481721fd2b4dd99105cf5d6aff65bfe30d90b8aae49675c11c_s390x", + "product": { + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:f47b0451ca6c08481721fd2b4dd99105cf5d6aff65bfe30d90b8aae49675c11c_s390x", + "product_id": "rhacm2/multicluster-operators-channel-rhel8@sha256:f47b0451ca6c08481721fd2b4dd99105cf5d6aff65bfe30d90b8aae49675c11c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-channel-rhel8@sha256:f47b0451ca6c08481721fd2b4dd99105cf5d6aff65bfe30d90b8aae49675c11c?arch=s390x&repository_url=registry.redhat.io/rhacm2/multicluster-operators-channel-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:0d5b085e922233f44bb948a99ddfcd5b497ca81485c93a177fb767998fcb705f_s390x", + "product": { + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:0d5b085e922233f44bb948a99ddfcd5b497ca81485c93a177fb767998fcb705f_s390x", + "product_id": "rhacm2/multicluster-operators-subscription-rhel8@sha256:0d5b085e922233f44bb948a99ddfcd5b497ca81485c93a177fb767998fcb705f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-subscription-rhel8@sha256:0d5b085e922233f44bb948a99ddfcd5b497ca81485c93a177fb767998fcb705f?arch=s390x&repository_url=registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/node-exporter-rhel8@sha256:6ab877e385e399554328d5cc0298efa61e98024944f232b1ef42db9e9557dd49_s390x", + "product": { + "name": "rhacm2/node-exporter-rhel8@sha256:6ab877e385e399554328d5cc0298efa61e98024944f232b1ef42db9e9557dd49_s390x", + "product_id": "rhacm2/node-exporter-rhel8@sha256:6ab877e385e399554328d5cc0298efa61e98024944f232b1ef42db9e9557dd49_s390x", + "product_identification_helper": { + "purl": "pkg:oci/node-exporter-rhel8@sha256:6ab877e385e399554328d5cc0298efa61e98024944f232b1ef42db9e9557dd49?arch=s390x&repository_url=registry.redhat.io/rhacm2/node-exporter-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/observatorium-rhel8@sha256:c9d6d24f468cc982450ad14b8b0402e6261be668a9bf154863b35abb4a24db9f_s390x", + "product": { + "name": "rhacm2/observatorium-rhel8@sha256:c9d6d24f468cc982450ad14b8b0402e6261be668a9bf154863b35abb4a24db9f_s390x", + "product_id": "rhacm2/observatorium-rhel8@sha256:c9d6d24f468cc982450ad14b8b0402e6261be668a9bf154863b35abb4a24db9f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/observatorium-rhel8@sha256:c9d6d24f468cc982450ad14b8b0402e6261be668a9bf154863b35abb4a24db9f?arch=s390x&repository_url=registry.redhat.io/rhacm2/observatorium-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/observatorium-rhel8-operator@sha256:b9cb71ed0ac27970aaaf0f60e1c90d5b1dbfb2bcd8a432537bb2db3ad4d82d83_s390x", + "product": { + "name": "rhacm2/observatorium-rhel8-operator@sha256:b9cb71ed0ac27970aaaf0f60e1c90d5b1dbfb2bcd8a432537bb2db3ad4d82d83_s390x", + "product_id": "rhacm2/observatorium-rhel8-operator@sha256:b9cb71ed0ac27970aaaf0f60e1c90d5b1dbfb2bcd8a432537bb2db3ad4d82d83_s390x", + "product_identification_helper": { + "purl": "pkg:oci/observatorium-rhel8-operator@sha256:b9cb71ed0ac27970aaaf0f60e1c90d5b1dbfb2bcd8a432537bb2db3ad4d82d83?arch=s390x&repository_url=registry.redhat.io/rhacm2/observatorium-rhel8-operator&tag=v2.7.9-4" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:60b0054b6061ee4a17deeb80ccd2936ed8a26e05445cd2c4ee68cfea4080bb7e_s390x", + "product": { + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:60b0054b6061ee4a17deeb80ccd2936ed8a26e05445cd2c4ee68cfea4080bb7e_s390x", + "product_id": "rhacm2/prometheus-alertmanager-rhel8@sha256:60b0054b6061ee4a17deeb80ccd2936ed8a26e05445cd2c4ee68cfea4080bb7e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-alertmanager-rhel8@sha256:60b0054b6061ee4a17deeb80ccd2936ed8a26e05445cd2c4ee68cfea4080bb7e?arch=s390x&repository_url=registry.redhat.io/rhacm2/prometheus-alertmanager-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/prometheus-rhel8@sha256:0b5f6bb09c9398cfe36c7f9cced3b6532c075487ae7e3c06676fa1f43ace9f59_s390x", + "product": { + "name": "rhacm2/prometheus-rhel8@sha256:0b5f6bb09c9398cfe36c7f9cced3b6532c075487ae7e3c06676fa1f43ace9f59_s390x", + "product_id": "rhacm2/prometheus-rhel8@sha256:0b5f6bb09c9398cfe36c7f9cced3b6532c075487ae7e3c06676fa1f43ace9f59_s390x", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-rhel8@sha256:0b5f6bb09c9398cfe36c7f9cced3b6532c075487ae7e3c06676fa1f43ace9f59?arch=s390x&repository_url=registry.redhat.io/rhacm2/prometheus-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:67eca891e208cd3de56250b22ff0ca8625c767181cd282e85c837183427e85ca_s390x", + "product": { + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:67eca891e208cd3de56250b22ff0ca8625c767181cd282e85c837183427e85ca_s390x", + "product_id": "rhacm2/rbac-query-proxy-rhel8@sha256:67eca891e208cd3de56250b22ff0ca8625c767181cd282e85c837183427e85ca_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rbac-query-proxy-rhel8@sha256:67eca891e208cd3de56250b22ff0ca8625c767181cd282e85c837183427e85ca?arch=s390x&repository_url=registry.redhat.io/rhacm2/rbac-query-proxy-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/search-collector-rhel8@sha256:d6d9dee94b5a27e9c5f138a1564bf1ea8494dbf8860768b5b381b7e894995ada_s390x", + "product": { + "name": "rhacm2/search-collector-rhel8@sha256:d6d9dee94b5a27e9c5f138a1564bf1ea8494dbf8860768b5b381b7e894995ada_s390x", + "product_id": "rhacm2/search-collector-rhel8@sha256:d6d9dee94b5a27e9c5f138a1564bf1ea8494dbf8860768b5b381b7e894995ada_s390x", + "product_identification_helper": { + "purl": "pkg:oci/search-collector-rhel8@sha256:d6d9dee94b5a27e9c5f138a1564bf1ea8494dbf8860768b5b381b7e894995ada?arch=s390x&repository_url=registry.redhat.io/rhacm2/search-collector-rhel8&tag=v2.7.9-3" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/submariner-addon-rhel8@sha256:7497c2b85c22510beff99aa8aa7ab81541ccff7ef01a9cb3bd3614616a3f92ea_s390x", + "product": { + "name": "rhacm2/submariner-addon-rhel8@sha256:7497c2b85c22510beff99aa8aa7ab81541ccff7ef01a9cb3bd3614616a3f92ea_s390x", + "product_id": "rhacm2/submariner-addon-rhel8@sha256:7497c2b85c22510beff99aa8aa7ab81541ccff7ef01a9cb3bd3614616a3f92ea_s390x", + "product_identification_helper": { + "purl": "pkg:oci/submariner-addon-rhel8@sha256:7497c2b85c22510beff99aa8aa7ab81541ccff7ef01a9cb3bd3614616a3f92ea?arch=s390x&repository_url=registry.redhat.io/rhacm2/submariner-addon-rhel8&tag=v2.7.9-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/thanos-rhel8@sha256:0e35756239bd71e15a08433545047d65345037facee55d464b976c803e0d1883_s390x", + "product": { + "name": "rhacm2/thanos-rhel8@sha256:0e35756239bd71e15a08433545047d65345037facee55d464b976c803e0d1883_s390x", + "product_id": "rhacm2/thanos-rhel8@sha256:0e35756239bd71e15a08433545047d65345037facee55d464b976c803e0d1883_s390x", + "product_identification_helper": { + "purl": "pkg:oci/thanos-rhel8@sha256:0e35756239bd71e15a08433545047d65345037facee55d464b976c803e0d1883?arch=s390x&repository_url=registry.redhat.io/rhacm2/thanos-rhel8&tag=v2.7.9-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:2bb7b042c305d21168eaf726d15854d8e187011cf7e00c892dfc424cd30c720d_s390x", + "product": { + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:2bb7b042c305d21168eaf726d15854d8e187011cf7e00c892dfc424cd30c720d_s390x", + "product_id": "rhacm2/thanos-receive-controller-rhel8@sha256:2bb7b042c305d21168eaf726d15854d8e187011cf7e00c892dfc424cd30c720d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/thanos-receive-controller-rhel8@sha256:2bb7b042c305d21168eaf726d15854d8e187011cf7e00c892dfc424cd30c720d?arch=s390x&repository_url=registry.redhat.io/rhacm2/thanos-receive-controller-rhel8&tag=v2.7.9-5" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "multicluster-engine/agent-service-rhel8@sha256:13ceb488e9022286773218de2d35eed798ae435975faaf7b394da3f6a44a655b_ppc64le", + "product": { + "name": "multicluster-engine/agent-service-rhel8@sha256:13ceb488e9022286773218de2d35eed798ae435975faaf7b394da3f6a44a655b_ppc64le", + "product_id": "multicluster-engine/agent-service-rhel8@sha256:13ceb488e9022286773218de2d35eed798ae435975faaf7b394da3f6a44a655b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/agent-service-rhel8@sha256:13ceb488e9022286773218de2d35eed798ae435975faaf7b394da3f6a44a655b?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/agent-service-rhel8&tag=v2.2.9-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:dcef337b257e8748e65cf4ffb2f8181a8349dc44c4b03027f78e90cc7f822f39_ppc64le", + "product": { + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:dcef337b257e8748e65cf4ffb2f8181a8349dc44c4b03027f78e90cc7f822f39_ppc64le", + "product_id": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:dcef337b257e8748e65cf4ffb2f8181a8349dc44c4b03027f78e90cc7f822f39_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/apiserver-network-proxy-rhel8@sha256:dcef337b257e8748e65cf4ffb2f8181a8349dc44c4b03027f78e90cc7f822f39?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/apiserver-network-proxy-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:2d3ec283ffee2f6f026698d0f1eceefd73c0b7ed6d357e178966fe77b6d1d50b_ppc64le", + "product": { + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:2d3ec283ffee2f6f026698d0f1eceefd73c0b7ed6d357e178966fe77b6d1d50b_ppc64le", + "product_id": "multicluster-engine/assisted-image-service-rhel8@sha256:2d3ec283ffee2f6f026698d0f1eceefd73c0b7ed6d357e178966fe77b6d1d50b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/assisted-image-service-rhel8@sha256:2d3ec283ffee2f6f026698d0f1eceefd73c0b7ed6d357e178966fe77b6d1d50b?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/assisted-image-service-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-rhel8@sha256:d435b5da83e7d1655a3d45e5f0c5d0ee16b50f9bb3ce1f5767b98ad32123a528_ppc64le", + "product": { + "name": "multicluster-engine/assisted-installer-rhel8@sha256:d435b5da83e7d1655a3d45e5f0c5d0ee16b50f9bb3ce1f5767b98ad32123a528_ppc64le", + "product_id": "multicluster-engine/assisted-installer-rhel8@sha256:d435b5da83e7d1655a3d45e5f0c5d0ee16b50f9bb3ce1f5767b98ad32123a528_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-rhel8@sha256:d435b5da83e7d1655a3d45e5f0c5d0ee16b50f9bb3ce1f5767b98ad32123a528?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:4a742bcab0256c709aebdcb5b32a7213e8ff1ad1ca9cb6fd885fd99889ea7ddf_ppc64le", + "product": { + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:4a742bcab0256c709aebdcb5b32a7213e8ff1ad1ca9cb6fd885fd99889ea7ddf_ppc64le", + "product_id": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:4a742bcab0256c709aebdcb5b32a7213e8ff1ad1ca9cb6fd885fd99889ea7ddf_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-reporter-rhel8@sha256:4a742bcab0256c709aebdcb5b32a7213e8ff1ad1ca9cb6fd885fd99889ea7ddf?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-reporter-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:fc9799c161a7c3a0dea38e1137881c6e85695f968b3f2b69e2f2254db8a506a8_ppc64le", + "product": { + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:fc9799c161a7c3a0dea38e1137881c6e85695f968b3f2b69e2f2254db8a506a8_ppc64le", + "product_id": "multicluster-engine/aws-encryption-provider-rhel8@sha256:fc9799c161a7c3a0dea38e1137881c6e85695f968b3f2b69e2f2254db8a506a8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/aws-encryption-provider-rhel8@sha256:fc9799c161a7c3a0dea38e1137881c6e85695f968b3f2b69e2f2254db8a506a8?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/aws-encryption-provider-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-rhel8@sha256:1f8c9f64cf73726f05cef541afe4f977ef68a6119d35a50e019a0565154ac30c_ppc64le", + "product": { + "name": "multicluster-engine/cluster-api-rhel8@sha256:1f8c9f64cf73726f05cef541afe4f977ef68a6119d35a50e019a0565154ac30c_ppc64le", + "product_id": "multicluster-engine/cluster-api-rhel8@sha256:1f8c9f64cf73726f05cef541afe4f977ef68a6119d35a50e019a0565154ac30c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-rhel8@sha256:1f8c9f64cf73726f05cef541afe4f977ef68a6119d35a50e019a0565154ac30c?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-api-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:f39c140b644ceaa84993041f052cf1e3059fd05f3f66f125ffe5b9a97cb7b622_ppc64le", + "product": { + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:f39c140b644ceaa84993041f052cf1e3059fd05f3f66f125ffe5b9a97cb7b622_ppc64le", + "product_id": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:f39c140b644ceaa84993041f052cf1e3059fd05f3f66f125ffe5b9a97cb7b622_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:f39c140b644ceaa84993041f052cf1e3059fd05f3f66f125ffe5b9a97cb7b622?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8&tag=v2.2.9-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:f39c140b644ceaa84993041f052cf1e3059fd05f3f66f125ffe5b9a97cb7b622_ppc64le", + "product": { + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:f39c140b644ceaa84993041f052cf1e3059fd05f3f66f125ffe5b9a97cb7b622_ppc64le", + "product_id": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:f39c140b644ceaa84993041f052cf1e3059fd05f3f66f125ffe5b9a97cb7b622_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-agent-rhel8@sha256:f39c140b644ceaa84993041f052cf1e3059fd05f3f66f125ffe5b9a97cb7b622?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel8&tag=v2.2.9-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:1322ba8da3b4c6aada47c74789e39b78eb51fb4b39b55829aa744f60733a572e_ppc64le", + "product": { + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:1322ba8da3b4c6aada47c74789e39b78eb51fb4b39b55829aa744f60733a572e_ppc64le", + "product_id": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:1322ba8da3b4c6aada47c74789e39b78eb51fb4b39b55829aa744f60733a572e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-aws-rhel8@sha256:1322ba8da3b4c6aada47c74789e39b78eb51fb4b39b55829aa744f60733a572e?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:47a172abec88a6d80dc5f44ac27a860cfdb7cc5b0f9d814436b749c185115199_ppc64le", + "product": { + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:47a172abec88a6d80dc5f44ac27a860cfdb7cc5b0f9d814436b749c185115199_ppc64le", + "product_id": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:47a172abec88a6d80dc5f44ac27a860cfdb7cc5b0f9d814436b749c185115199_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-azure-rhel8@sha256:47a172abec88a6d80dc5f44ac27a860cfdb7cc5b0f9d814436b749c185115199?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-azure-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:eb3ff1229636b158692969fe66a4beb99193cc11b969c28c85e3f8d8122188c0_ppc64le", + "product": { + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:eb3ff1229636b158692969fe66a4beb99193cc11b969c28c85e3f8d8122188c0_ppc64le", + "product_id": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:eb3ff1229636b158692969fe66a4beb99193cc11b969c28c85e3f8d8122188c0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-kubevirt-rhel8@sha256:eb3ff1229636b158692969fe66a4beb99193cc11b969c28c85e3f8d8122188c0?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:d153eba1230b53540be1d8da5c07816cfbaf43a120f6fa58ae104b633637d435_ppc64le", + "product": { + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:d153eba1230b53540be1d8da5c07816cfbaf43a120f6fa58ae104b633637d435_ppc64le", + "product_id": "multicluster-engine/clusterclaims-controller-rhel8@sha256:d153eba1230b53540be1d8da5c07816cfbaf43a120f6fa58ae104b633637d435_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/clusterclaims-controller-rhel8@sha256:d153eba1230b53540be1d8da5c07816cfbaf43a120f6fa58ae104b633637d435?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:95848d33a2d4b431107c5e7205e9b8a512904922a9834afdc5cbaf7fa9ee76ef_ppc64le", + "product": { + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:95848d33a2d4b431107c5e7205e9b8a512904922a9834afdc5cbaf7fa9ee76ef_ppc64le", + "product_id": "multicluster-engine/cluster-curator-controller-rhel8@sha256:95848d33a2d4b431107c5e7205e9b8a512904922a9834afdc5cbaf7fa9ee76ef_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-curator-controller-rhel8@sha256:95848d33a2d4b431107c5e7205e9b8a512904922a9834afdc5cbaf7fa9ee76ef?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:45981544df19e1839d9a5a638c3c298dc6f3be0aae4cf534b49afee082303b9a_ppc64le", + "product": { + "name": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:45981544df19e1839d9a5a638c3c298dc6f3be0aae4cf534b49afee082303b9a_ppc64le", + "product_id": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:45981544df19e1839d9a5a638c3c298dc6f3be0aae4cf534b49afee082303b9a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-image-set-controller-rhel8@sha256:45981544df19e1839d9a5a638c3c298dc6f3be0aae4cf534b49afee082303b9a?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:c85388a1b41abb429354b989ce01a2065f840da88a38df5c4a6e0c904c03a6b5_ppc64le", + "product": { + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:c85388a1b41abb429354b989ce01a2065f840da88a38df5c4a6e0c904c03a6b5_ppc64le", + "product_id": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:c85388a1b41abb429354b989ce01a2065f840da88a38df5c4a6e0c904c03a6b5_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/clusterlifecycle-state-metrics-rhel8@sha256:c85388a1b41abb429354b989ce01a2065f840da88a38df5c4a6e0c904c03a6b5?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:fa430f3bb4ca57a9292615561cfc83c87137ad966bf45e19da0d8b0d9601776e_ppc64le", + "product": { + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:fa430f3bb4ca57a9292615561cfc83c87137ad966bf45e19da0d8b0d9601776e_ppc64le", + "product_id": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:fa430f3bb4ca57a9292615561cfc83c87137ad966bf45e19da0d8b0d9601776e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-proxy-addon-rhel8@sha256:fa430f3bb4ca57a9292615561cfc83c87137ad966bf45e19da0d8b0d9601776e?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:11984055ea5d9528d09f73f1710fac33b4f4944c1d526f6fd7917175346c26c7_ppc64le", + "product": { + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:11984055ea5d9528d09f73f1710fac33b4f4944c1d526f6fd7917175346c26c7_ppc64le", + "product_id": "multicluster-engine/cluster-proxy-rhel8@sha256:11984055ea5d9528d09f73f1710fac33b4f4944c1d526f6fd7917175346c26c7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-proxy-rhel8@sha256:11984055ea5d9528d09f73f1710fac33b4f4944c1d526f6fd7917175346c26c7?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:7d4fa723f9fe34a4520ee6afcddf7586d3066cf64c1733cef5484baa071fba40_ppc64le", + "product": { + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:7d4fa723f9fe34a4520ee6afcddf7586d3066cf64c1733cef5484baa071fba40_ppc64le", + "product_id": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:7d4fa723f9fe34a4520ee6afcddf7586d3066cf64c1733cef5484baa071fba40_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-console-mce-rhel8@sha256:7d4fa723f9fe34a4520ee6afcddf7586d3066cf64c1733cef5484baa071fba40?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-console-mce-rhel8&tag=v2.2.9-8" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/console-mce-rhel8@sha256:7d4fa723f9fe34a4520ee6afcddf7586d3066cf64c1733cef5484baa071fba40_ppc64le", + "product": { + "name": "multicluster-engine/console-mce-rhel8@sha256:7d4fa723f9fe34a4520ee6afcddf7586d3066cf64c1733cef5484baa071fba40_ppc64le", + "product_id": "multicluster-engine/console-mce-rhel8@sha256:7d4fa723f9fe34a4520ee6afcddf7586d3066cf64c1733cef5484baa071fba40_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/console-mce-rhel8@sha256:7d4fa723f9fe34a4520ee6afcddf7586d3066cf64c1733cef5484baa071fba40?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/console-mce-rhel8&tag=v2.2.9-8" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/discovery-rhel8@sha256:c2e21b373c613e68070528232217914db185eff34cf84d5113d9265361b7d316_ppc64le", + "product": { + "name": "multicluster-engine/discovery-rhel8@sha256:c2e21b373c613e68070528232217914db185eff34cf84d5113d9265361b7d316_ppc64le", + "product_id": "multicluster-engine/discovery-rhel8@sha256:c2e21b373c613e68070528232217914db185eff34cf84d5113d9265361b7d316_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/discovery-rhel8@sha256:c2e21b373c613e68070528232217914db185eff34cf84d5113d9265361b7d316?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/discovery-rhel8&tag=v2.2.9-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hive-rhel8@sha256:57fb135eb11cb93894d629213cede6c4a345fa2b19349b2b6eb66323ba8064ef_ppc64le", + "product": { + "name": "multicluster-engine/hive-rhel8@sha256:57fb135eb11cb93894d629213cede6c4a345fa2b19349b2b6eb66323ba8064ef_ppc64le", + "product_id": "multicluster-engine/hive-rhel8@sha256:57fb135eb11cb93894d629213cede6c4a345fa2b19349b2b6eb66323ba8064ef_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/hive-rhel8@sha256:57fb135eb11cb93894d629213cede6c4a345fa2b19349b2b6eb66323ba8064ef?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/hive-rhel8&tag=v2.2.9-6" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:d7aa0c96bb5d944cf925f4db924c8c10adee84519c45dffefc7898873743821f_ppc64le", + "product": { + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:d7aa0c96bb5d944cf925f4db924c8c10adee84519c45dffefc7898873743821f_ppc64le", + "product_id": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:d7aa0c96bb5d944cf925f4db924c8c10adee84519c45dffefc7898873743821f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-hypershift-addon-rhel8-operator@sha256:d7aa0c96bb5d944cf925f4db924c8c10adee84519c45dffefc7898873743821f?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:d7aa0c96bb5d944cf925f4db924c8c10adee84519c45dffefc7898873743821f_ppc64le", + "product": { + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:d7aa0c96bb5d944cf925f4db924c8c10adee84519c45dffefc7898873743821f_ppc64le", + "product_id": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:d7aa0c96bb5d944cf925f4db924c8c10adee84519c45dffefc7898873743821f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-addon-rhel8-operator@sha256:d7aa0c96bb5d944cf925f4db924c8c10adee84519c45dffefc7898873743821f?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/hypershift-addon-rhel8-operator&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-cli-rhel8@sha256:55f1b4be1efe373833fc57f2cd731834924647973d12cf647984a1856c84b0a8_ppc64le", + "product": { + "name": "multicluster-engine/hypershift-cli-rhel8@sha256:55f1b4be1efe373833fc57f2cd731834924647973d12cf647984a1856c84b0a8_ppc64le", + "product_id": "multicluster-engine/hypershift-cli-rhel8@sha256:55f1b4be1efe373833fc57f2cd731834924647973d12cf647984a1856c84b0a8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-cli-rhel8@sha256:55f1b4be1efe373833fc57f2cd731834924647973d12cf647984a1856c84b0a8?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/hypershift-cli-rhel8&tag=v2.2.9-7" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:9f37612352002537fa14edee1336b710e45786050edeb3c50525ed7123006a88_ppc64le", + "product": { + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:9f37612352002537fa14edee1336b710e45786050edeb3c50525ed7123006a88_ppc64le", + "product_id": "multicluster-engine/hypershift-rhel8-operator@sha256:9f37612352002537fa14edee1336b710e45786050edeb3c50525ed7123006a88_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-rhel8-operator@sha256:9f37612352002537fa14edee1336b710e45786050edeb3c50525ed7123006a88?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/hypershift-rhel8-operator&tag=v2.2.9-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:bbb2386f2ae82f9282877555161ddac8683f80bb95d07ab0333f3ed51f4da0fa_ppc64le", + "product": { + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:bbb2386f2ae82f9282877555161ddac8683f80bb95d07ab0333f3ed51f4da0fa_ppc64le", + "product_id": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:bbb2386f2ae82f9282877555161ddac8683f80bb95d07ab0333f3ed51f4da0fa_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/managedcluster-import-controller-rhel8@sha256:bbb2386f2ae82f9282877555161ddac8683f80bb95d07ab0333f3ed51f4da0fa?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:1be91e48d39a89db42a7bcde18e1247e4143d242897b3ac8b0a4bf2980265179_ppc64le", + "product": { + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:1be91e48d39a89db42a7bcde18e1247e4143d242897b3ac8b0a4bf2980265179_ppc64le", + "product_id": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:1be91e48d39a89db42a7bcde18e1247e4143d242897b3ac8b0a4bf2980265179_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-managed-serviceaccount-rhel8@sha256:1be91e48d39a89db42a7bcde18e1247e4143d242897b3ac8b0a4bf2980265179?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:1be91e48d39a89db42a7bcde18e1247e4143d242897b3ac8b0a4bf2980265179_ppc64le", + "product": { + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:1be91e48d39a89db42a7bcde18e1247e4143d242897b3ac8b0a4bf2980265179_ppc64le", + "product_id": "multicluster-engine/managed-serviceaccount-rhel8@sha256:1be91e48d39a89db42a7bcde18e1247e4143d242897b3ac8b0a4bf2980265179_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/managed-serviceaccount-rhel8@sha256:1be91e48d39a89db42a7bcde18e1247e4143d242897b3ac8b0a4bf2980265179?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:280ee6148bc42ab88ff483a56be8ac7be390ce7fc2bfb3dfe99b080e292c9dee_ppc64le", + "product": { + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:280ee6148bc42ab88ff483a56be8ac7be390ce7fc2bfb3dfe99b080e292c9dee_ppc64le", + "product_id": "multicluster-engine/multicloud-manager-rhel8@sha256:280ee6148bc42ab88ff483a56be8ac7be390ce7fc2bfb3dfe99b080e292c9dee_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicloud-manager-rhel8@sha256:280ee6148bc42ab88ff483a56be8ac7be390ce7fc2bfb3dfe99b080e292c9dee?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/multicloud-manager-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/must-gather-rhel8@sha256:c91154ced307f3421a95d55929a0b3f09b7ba6acb1a503d3b0931e5d57f5479e_ppc64le", + "product": { + "name": "multicluster-engine/must-gather-rhel8@sha256:c91154ced307f3421a95d55929a0b3f09b7ba6acb1a503d3b0931e5d57f5479e_ppc64le", + "product_id": "multicluster-engine/must-gather-rhel8@sha256:c91154ced307f3421a95d55929a0b3f09b7ba6acb1a503d3b0931e5d57f5479e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/must-gather-rhel8@sha256:c91154ced307f3421a95d55929a0b3f09b7ba6acb1a503d3b0931e5d57f5479e?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/must-gather-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/mce-operator-bundle@sha256:d54375f38b7d2901ec83e500c79fcf6e21a607bfb753e2ae6107c38f73d2fe9f_ppc64le", + "product": { + "name": "multicluster-engine/mce-operator-bundle@sha256:d54375f38b7d2901ec83e500c79fcf6e21a607bfb753e2ae6107c38f73d2fe9f_ppc64le", + "product_id": "multicluster-engine/mce-operator-bundle@sha256:d54375f38b7d2901ec83e500c79fcf6e21a607bfb753e2ae6107c38f73d2fe9f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/mce-operator-bundle@sha256:d54375f38b7d2901ec83e500c79fcf6e21a607bfb753e2ae6107c38f73d2fe9f?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/mce-operator-bundle&tag=v2.2.9-10" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/backplane-rhel8-operator@sha256:346e75af2f8fbf6b1354832d53bcf7b4dfcf5a57f0a74f74b85cc653fb1c4eab_ppc64le", + "product": { + "name": "multicluster-engine/backplane-rhel8-operator@sha256:346e75af2f8fbf6b1354832d53bcf7b4dfcf5a57f0a74f74b85cc653fb1c4eab_ppc64le", + "product_id": "multicluster-engine/backplane-rhel8-operator@sha256:346e75af2f8fbf6b1354832d53bcf7b4dfcf5a57f0a74f74b85cc653fb1c4eab_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/backplane-rhel8-operator@sha256:346e75af2f8fbf6b1354832d53bcf7b4dfcf5a57f0a74f74b85cc653fb1c4eab?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/backplane-rhel8-operator&tag=v2.2.9-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/placement-rhel8@sha256:6804525adea26731c11273197582172c30e51e54bca0be3791444b518014557f_ppc64le", + "product": { + "name": "multicluster-engine/placement-rhel8@sha256:6804525adea26731c11273197582172c30e51e54bca0be3791444b518014557f_ppc64le", + "product_id": "multicluster-engine/placement-rhel8@sha256:6804525adea26731c11273197582172c30e51e54bca0be3791444b518014557f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/placement-rhel8@sha256:6804525adea26731c11273197582172c30e51e54bca0be3791444b518014557f?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/placement-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:20151e8fecc49374a948366083ec02e2efaba84a84a7d3af7757e7e8709ffbcd_ppc64le", + "product": { + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:20151e8fecc49374a948366083ec02e2efaba84a84a7d3af7757e7e8709ffbcd_ppc64le", + "product_id": "multicluster-engine/provider-credential-controller-rhel8@sha256:20151e8fecc49374a948366083ec02e2efaba84a84a7d3af7757e7e8709ffbcd_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/provider-credential-controller-rhel8@sha256:20151e8fecc49374a948366083ec02e2efaba84a84a7d3af7757e7e8709ffbcd?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/provider-credential-controller-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/registration-rhel8@sha256:d8f7c496c4eb82a5cc011d96ee634d4d59ab722fe9e757dfad14e4028207e9dc_ppc64le", + "product": { + "name": "multicluster-engine/registration-rhel8@sha256:d8f7c496c4eb82a5cc011d96ee634d4d59ab722fe9e757dfad14e4028207e9dc_ppc64le", + "product_id": "multicluster-engine/registration-rhel8@sha256:d8f7c496c4eb82a5cc011d96ee634d4d59ab722fe9e757dfad14e4028207e9dc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/registration-rhel8@sha256:d8f7c496c4eb82a5cc011d96ee634d4d59ab722fe9e757dfad14e4028207e9dc?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/registration-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/registration-operator-rhel8@sha256:4387e1f13d5ac8139fc6ec926b872b36335b5d422a886d9f129d9493292c560c_ppc64le", + "product": { + "name": "multicluster-engine/registration-operator-rhel8@sha256:4387e1f13d5ac8139fc6ec926b872b36335b5d422a886d9f129d9493292c560c_ppc64le", + "product_id": "multicluster-engine/registration-operator-rhel8@sha256:4387e1f13d5ac8139fc6ec926b872b36335b5d422a886d9f129d9493292c560c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/registration-operator-rhel8@sha256:4387e1f13d5ac8139fc6ec926b872b36335b5d422a886d9f129d9493292c560c?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/registration-operator-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/work-rhel8@sha256:d051b848bdd49f506ad5f96c9dd21d1ef314c598cb35f113dc2ad23dc9c2ff52_ppc64le", + "product": { + "name": "multicluster-engine/work-rhel8@sha256:d051b848bdd49f506ad5f96c9dd21d1ef314c598cb35f113dc2ad23dc9c2ff52_ppc64le", + "product_id": "multicluster-engine/work-rhel8@sha256:d051b848bdd49f506ad5f96c9dd21d1ef314c598cb35f113dc2ad23dc9c2ff52_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/work-rhel8@sha256:d051b848bdd49f506ad5f96c9dd21d1ef314c598cb35f113dc2ad23dc9c2ff52?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/work-rhel8&tag=v2.2.9-3" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "multicluster-engine/agent-service-rhel8@sha256:444adb203db753267008270647520b35c4b5191c626dcde98994d154fe6378b6_arm64", + "product": { + "name": "multicluster-engine/agent-service-rhel8@sha256:444adb203db753267008270647520b35c4b5191c626dcde98994d154fe6378b6_arm64", + "product_id": "multicluster-engine/agent-service-rhel8@sha256:444adb203db753267008270647520b35c4b5191c626dcde98994d154fe6378b6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/agent-service-rhel8@sha256:444adb203db753267008270647520b35c4b5191c626dcde98994d154fe6378b6?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/agent-service-rhel8&tag=v2.2.9-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:d0e502cdb5f6eaed51e3d21288da0c29fda2d423774371bc2e6cbfc9d77ca902_arm64", + "product": { + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:d0e502cdb5f6eaed51e3d21288da0c29fda2d423774371bc2e6cbfc9d77ca902_arm64", + "product_id": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:d0e502cdb5f6eaed51e3d21288da0c29fda2d423774371bc2e6cbfc9d77ca902_arm64", + "product_identification_helper": { + "purl": "pkg:oci/apiserver-network-proxy-rhel8@sha256:d0e502cdb5f6eaed51e3d21288da0c29fda2d423774371bc2e6cbfc9d77ca902?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/apiserver-network-proxy-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:a1d7888ec907404a0cd73ad74fcbe56c0992baa63463a27d5c757b9fbf5b12f7_arm64", + "product": { + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:a1d7888ec907404a0cd73ad74fcbe56c0992baa63463a27d5c757b9fbf5b12f7_arm64", + "product_id": "multicluster-engine/assisted-image-service-rhel8@sha256:a1d7888ec907404a0cd73ad74fcbe56c0992baa63463a27d5c757b9fbf5b12f7_arm64", + "product_identification_helper": { + "purl": "pkg:oci/assisted-image-service-rhel8@sha256:a1d7888ec907404a0cd73ad74fcbe56c0992baa63463a27d5c757b9fbf5b12f7?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/assisted-image-service-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-agent-rhel8@sha256:7f4ad3dda21ea85e7c7fb86801ecdf0bfd2616ce600f8e210f5b80e59f6e31ba_arm64", + "product": { + "name": "multicluster-engine/assisted-installer-agent-rhel8@sha256:7f4ad3dda21ea85e7c7fb86801ecdf0bfd2616ce600f8e210f5b80e59f6e31ba_arm64", + "product_id": "multicluster-engine/assisted-installer-agent-rhel8@sha256:7f4ad3dda21ea85e7c7fb86801ecdf0bfd2616ce600f8e210f5b80e59f6e31ba_arm64", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-agent-rhel8@sha256:7f4ad3dda21ea85e7c7fb86801ecdf0bfd2616ce600f8e210f5b80e59f6e31ba?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-rhel8@sha256:7b1b5cd96995fcc52fcb90e0a8037f428360579fb9d6f3e198963fc5afe28199_arm64", + "product": { + "name": "multicluster-engine/assisted-installer-rhel8@sha256:7b1b5cd96995fcc52fcb90e0a8037f428360579fb9d6f3e198963fc5afe28199_arm64", + "product_id": "multicluster-engine/assisted-installer-rhel8@sha256:7b1b5cd96995fcc52fcb90e0a8037f428360579fb9d6f3e198963fc5afe28199_arm64", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-rhel8@sha256:7b1b5cd96995fcc52fcb90e0a8037f428360579fb9d6f3e198963fc5afe28199?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:a4b2de8bfd2aab93784315ed9f7c416de86ccc2c996d8311130fcccc37ab9f18_arm64", + "product": { + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:a4b2de8bfd2aab93784315ed9f7c416de86ccc2c996d8311130fcccc37ab9f18_arm64", + "product_id": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:a4b2de8bfd2aab93784315ed9f7c416de86ccc2c996d8311130fcccc37ab9f18_arm64", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-reporter-rhel8@sha256:a4b2de8bfd2aab93784315ed9f7c416de86ccc2c996d8311130fcccc37ab9f18?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-reporter-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:5bbe762813e6d3e6ce486e4ac79152f7fa025b6ae9b50f9d04662a3e43f547d8_arm64", + "product": { + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:5bbe762813e6d3e6ce486e4ac79152f7fa025b6ae9b50f9d04662a3e43f547d8_arm64", + "product_id": "multicluster-engine/aws-encryption-provider-rhel8@sha256:5bbe762813e6d3e6ce486e4ac79152f7fa025b6ae9b50f9d04662a3e43f547d8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/aws-encryption-provider-rhel8@sha256:5bbe762813e6d3e6ce486e4ac79152f7fa025b6ae9b50f9d04662a3e43f547d8?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/aws-encryption-provider-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-rhel8@sha256:8fc6cc98bf2ff322c5dab7e7242a0b56137f6ca21033f6d726b77b452cd0ccf0_arm64", + "product": { + "name": "multicluster-engine/cluster-api-rhel8@sha256:8fc6cc98bf2ff322c5dab7e7242a0b56137f6ca21033f6d726b77b452cd0ccf0_arm64", + "product_id": "multicluster-engine/cluster-api-rhel8@sha256:8fc6cc98bf2ff322c5dab7e7242a0b56137f6ca21033f6d726b77b452cd0ccf0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-rhel8@sha256:8fc6cc98bf2ff322c5dab7e7242a0b56137f6ca21033f6d726b77b452cd0ccf0?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:d5cbc7dec099676a2893e4d750453d6620971f171a5b20ca3813a69a0b987dfc_arm64", + "product": { + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:d5cbc7dec099676a2893e4d750453d6620971f171a5b20ca3813a69a0b987dfc_arm64", + "product_id": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:d5cbc7dec099676a2893e4d750453d6620971f171a5b20ca3813a69a0b987dfc_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:d5cbc7dec099676a2893e4d750453d6620971f171a5b20ca3813a69a0b987dfc?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8&tag=v2.2.9-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:d5cbc7dec099676a2893e4d750453d6620971f171a5b20ca3813a69a0b987dfc_arm64", + "product": { + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:d5cbc7dec099676a2893e4d750453d6620971f171a5b20ca3813a69a0b987dfc_arm64", + "product_id": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:d5cbc7dec099676a2893e4d750453d6620971f171a5b20ca3813a69a0b987dfc_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-agent-rhel8@sha256:d5cbc7dec099676a2893e4d750453d6620971f171a5b20ca3813a69a0b987dfc?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel8&tag=v2.2.9-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:95cdfc1ff2a7424b3ed2705f680008c4aa4c0b2f77faf788357b9c7923988238_arm64", + "product": { + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:95cdfc1ff2a7424b3ed2705f680008c4aa4c0b2f77faf788357b9c7923988238_arm64", + "product_id": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:95cdfc1ff2a7424b3ed2705f680008c4aa4c0b2f77faf788357b9c7923988238_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-aws-rhel8@sha256:95cdfc1ff2a7424b3ed2705f680008c4aa4c0b2f77faf788357b9c7923988238?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:aaf876d4b2b92e454220cfb6c4a2765f65b85fa16d69fe008017b6096a925da2_arm64", + "product": { + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:aaf876d4b2b92e454220cfb6c4a2765f65b85fa16d69fe008017b6096a925da2_arm64", + "product_id": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:aaf876d4b2b92e454220cfb6c4a2765f65b85fa16d69fe008017b6096a925da2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-azure-rhel8@sha256:aaf876d4b2b92e454220cfb6c4a2765f65b85fa16d69fe008017b6096a925da2?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-azure-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:38d3d68d7ec3bcfde0c7bcc26f29bdddcca462e001afc53a7c5879594f2bdab6_arm64", + "product": { + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:38d3d68d7ec3bcfde0c7bcc26f29bdddcca462e001afc53a7c5879594f2bdab6_arm64", + "product_id": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:38d3d68d7ec3bcfde0c7bcc26f29bdddcca462e001afc53a7c5879594f2bdab6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-kubevirt-rhel8@sha256:38d3d68d7ec3bcfde0c7bcc26f29bdddcca462e001afc53a7c5879594f2bdab6?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:cc5e46b2b0dcbabca7d963e2cd79231966600e832ad042a977eb7e8e8046a42f_arm64", + "product": { + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:cc5e46b2b0dcbabca7d963e2cd79231966600e832ad042a977eb7e8e8046a42f_arm64", + "product_id": "multicluster-engine/clusterclaims-controller-rhel8@sha256:cc5e46b2b0dcbabca7d963e2cd79231966600e832ad042a977eb7e8e8046a42f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/clusterclaims-controller-rhel8@sha256:cc5e46b2b0dcbabca7d963e2cd79231966600e832ad042a977eb7e8e8046a42f?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:44c6ed8b8e28eef583f4e76c4da5aac6fc2d33d0aab932907054b1b8d71d3dd1_arm64", + "product": { + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:44c6ed8b8e28eef583f4e76c4da5aac6fc2d33d0aab932907054b1b8d71d3dd1_arm64", + "product_id": "multicluster-engine/cluster-curator-controller-rhel8@sha256:44c6ed8b8e28eef583f4e76c4da5aac6fc2d33d0aab932907054b1b8d71d3dd1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-curator-controller-rhel8@sha256:44c6ed8b8e28eef583f4e76c4da5aac6fc2d33d0aab932907054b1b8d71d3dd1?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:2c946689b21a8e7c3d1f3dee2fb070becb572954cb20a6e45aee9b132a6c973b_arm64", + "product": { + "name": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:2c946689b21a8e7c3d1f3dee2fb070becb572954cb20a6e45aee9b132a6c973b_arm64", + "product_id": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:2c946689b21a8e7c3d1f3dee2fb070becb572954cb20a6e45aee9b132a6c973b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-image-set-controller-rhel8@sha256:2c946689b21a8e7c3d1f3dee2fb070becb572954cb20a6e45aee9b132a6c973b?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:66179c37d6fb933e5215021278f4a65a4e4647b18697578227221ef64d08d4a2_arm64", + "product": { + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:66179c37d6fb933e5215021278f4a65a4e4647b18697578227221ef64d08d4a2_arm64", + "product_id": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:66179c37d6fb933e5215021278f4a65a4e4647b18697578227221ef64d08d4a2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/clusterlifecycle-state-metrics-rhel8@sha256:66179c37d6fb933e5215021278f4a65a4e4647b18697578227221ef64d08d4a2?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:d40ad5fac0126a5ca31ab3461f6e9d02214deb66baea8fb7c384c2893af8d15b_arm64", + "product": { + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:d40ad5fac0126a5ca31ab3461f6e9d02214deb66baea8fb7c384c2893af8d15b_arm64", + "product_id": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:d40ad5fac0126a5ca31ab3461f6e9d02214deb66baea8fb7c384c2893af8d15b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-proxy-addon-rhel8@sha256:d40ad5fac0126a5ca31ab3461f6e9d02214deb66baea8fb7c384c2893af8d15b?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:ba982b491c35dd40aae02d5a75dd3f898249d8dc2eeceafa445b617b7e6867ea_arm64", + "product": { + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:ba982b491c35dd40aae02d5a75dd3f898249d8dc2eeceafa445b617b7e6867ea_arm64", + "product_id": "multicluster-engine/cluster-proxy-rhel8@sha256:ba982b491c35dd40aae02d5a75dd3f898249d8dc2eeceafa445b617b7e6867ea_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-proxy-rhel8@sha256:ba982b491c35dd40aae02d5a75dd3f898249d8dc2eeceafa445b617b7e6867ea?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:75ec5b31ec19c6f84ae0557eb16998e71bc85096b3b807d0329608362d8f3102_arm64", + "product": { + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:75ec5b31ec19c6f84ae0557eb16998e71bc85096b3b807d0329608362d8f3102_arm64", + "product_id": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:75ec5b31ec19c6f84ae0557eb16998e71bc85096b3b807d0329608362d8f3102_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-console-mce-rhel8@sha256:75ec5b31ec19c6f84ae0557eb16998e71bc85096b3b807d0329608362d8f3102?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-console-mce-rhel8&tag=v2.2.9-8" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/console-mce-rhel8@sha256:75ec5b31ec19c6f84ae0557eb16998e71bc85096b3b807d0329608362d8f3102_arm64", + "product": { + "name": "multicluster-engine/console-mce-rhel8@sha256:75ec5b31ec19c6f84ae0557eb16998e71bc85096b3b807d0329608362d8f3102_arm64", + "product_id": "multicluster-engine/console-mce-rhel8@sha256:75ec5b31ec19c6f84ae0557eb16998e71bc85096b3b807d0329608362d8f3102_arm64", + "product_identification_helper": { + "purl": "pkg:oci/console-mce-rhel8@sha256:75ec5b31ec19c6f84ae0557eb16998e71bc85096b3b807d0329608362d8f3102?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/console-mce-rhel8&tag=v2.2.9-8" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/discovery-rhel8@sha256:564609237b874dd21e9be0424863266f54e25f0f2fb47a4db19a8499283cf25c_arm64", + "product": { + "name": "multicluster-engine/discovery-rhel8@sha256:564609237b874dd21e9be0424863266f54e25f0f2fb47a4db19a8499283cf25c_arm64", + "product_id": "multicluster-engine/discovery-rhel8@sha256:564609237b874dd21e9be0424863266f54e25f0f2fb47a4db19a8499283cf25c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/discovery-rhel8@sha256:564609237b874dd21e9be0424863266f54e25f0f2fb47a4db19a8499283cf25c?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/discovery-rhel8&tag=v2.2.9-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hive-rhel8@sha256:fa0a2dc0421fd9825a5f64b059826091ade79b73e9523b322c35e7120188b0bb_arm64", + "product": { + "name": "multicluster-engine/hive-rhel8@sha256:fa0a2dc0421fd9825a5f64b059826091ade79b73e9523b322c35e7120188b0bb_arm64", + "product_id": "multicluster-engine/hive-rhel8@sha256:fa0a2dc0421fd9825a5f64b059826091ade79b73e9523b322c35e7120188b0bb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hive-rhel8@sha256:fa0a2dc0421fd9825a5f64b059826091ade79b73e9523b322c35e7120188b0bb?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/hive-rhel8&tag=v2.2.9-6" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:9f46121efddfb4acc798adaccfa3ac9428858b43d8adea3efdbf5d7fad73eac3_arm64", + "product": { + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:9f46121efddfb4acc798adaccfa3ac9428858b43d8adea3efdbf5d7fad73eac3_arm64", + "product_id": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:9f46121efddfb4acc798adaccfa3ac9428858b43d8adea3efdbf5d7fad73eac3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-hypershift-addon-rhel8-operator@sha256:9f46121efddfb4acc798adaccfa3ac9428858b43d8adea3efdbf5d7fad73eac3?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:9f46121efddfb4acc798adaccfa3ac9428858b43d8adea3efdbf5d7fad73eac3_arm64", + "product": { + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:9f46121efddfb4acc798adaccfa3ac9428858b43d8adea3efdbf5d7fad73eac3_arm64", + "product_id": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:9f46121efddfb4acc798adaccfa3ac9428858b43d8adea3efdbf5d7fad73eac3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-addon-rhel8-operator@sha256:9f46121efddfb4acc798adaccfa3ac9428858b43d8adea3efdbf5d7fad73eac3?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/hypershift-addon-rhel8-operator&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-cli-rhel8@sha256:92df9df5643072cbe36e075ac6a8d533b7c9736d38e978ab6d8d3207de985ee0_arm64", + "product": { + "name": "multicluster-engine/hypershift-cli-rhel8@sha256:92df9df5643072cbe36e075ac6a8d533b7c9736d38e978ab6d8d3207de985ee0_arm64", + "product_id": "multicluster-engine/hypershift-cli-rhel8@sha256:92df9df5643072cbe36e075ac6a8d533b7c9736d38e978ab6d8d3207de985ee0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-cli-rhel8@sha256:92df9df5643072cbe36e075ac6a8d533b7c9736d38e978ab6d8d3207de985ee0?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/hypershift-cli-rhel8&tag=v2.2.9-7" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:d22a94adcb4df407f1e918178c3aab659a7c40be4ae4d91abb4c8bf77cd50509_arm64", + "product": { + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:d22a94adcb4df407f1e918178c3aab659a7c40be4ae4d91abb4c8bf77cd50509_arm64", + "product_id": "multicluster-engine/hypershift-rhel8-operator@sha256:d22a94adcb4df407f1e918178c3aab659a7c40be4ae4d91abb4c8bf77cd50509_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-rhel8-operator@sha256:d22a94adcb4df407f1e918178c3aab659a7c40be4ae4d91abb4c8bf77cd50509?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/hypershift-rhel8-operator&tag=v2.2.9-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:5028187dd9145f91cbec4f3a37861abe0a493a1fb95f13506296cc9ff8faba7e_arm64", + "product": { + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:5028187dd9145f91cbec4f3a37861abe0a493a1fb95f13506296cc9ff8faba7e_arm64", + "product_id": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:5028187dd9145f91cbec4f3a37861abe0a493a1fb95f13506296cc9ff8faba7e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/managedcluster-import-controller-rhel8@sha256:5028187dd9145f91cbec4f3a37861abe0a493a1fb95f13506296cc9ff8faba7e?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:2105ee5d8e82a1a889551075886ba946f0a5e8186ceb356f5be53ca6cc9caa35_arm64", + "product": { + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:2105ee5d8e82a1a889551075886ba946f0a5e8186ceb356f5be53ca6cc9caa35_arm64", + "product_id": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:2105ee5d8e82a1a889551075886ba946f0a5e8186ceb356f5be53ca6cc9caa35_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-managed-serviceaccount-rhel8@sha256:2105ee5d8e82a1a889551075886ba946f0a5e8186ceb356f5be53ca6cc9caa35?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:2105ee5d8e82a1a889551075886ba946f0a5e8186ceb356f5be53ca6cc9caa35_arm64", + "product": { + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:2105ee5d8e82a1a889551075886ba946f0a5e8186ceb356f5be53ca6cc9caa35_arm64", + "product_id": "multicluster-engine/managed-serviceaccount-rhel8@sha256:2105ee5d8e82a1a889551075886ba946f0a5e8186ceb356f5be53ca6cc9caa35_arm64", + "product_identification_helper": { + "purl": "pkg:oci/managed-serviceaccount-rhel8@sha256:2105ee5d8e82a1a889551075886ba946f0a5e8186ceb356f5be53ca6cc9caa35?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:c266bdcb42da7bbd4c92e68f462ae42643f8937d4f432ff917e26abb7fbe7a82_arm64", + "product": { + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:c266bdcb42da7bbd4c92e68f462ae42643f8937d4f432ff917e26abb7fbe7a82_arm64", + "product_id": "multicluster-engine/multicloud-manager-rhel8@sha256:c266bdcb42da7bbd4c92e68f462ae42643f8937d4f432ff917e26abb7fbe7a82_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicloud-manager-rhel8@sha256:c266bdcb42da7bbd4c92e68f462ae42643f8937d4f432ff917e26abb7fbe7a82?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/multicloud-manager-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/must-gather-rhel8@sha256:a4a9ccf8f597f6b1dcdbf29247b9440f3623e23cfe49411999ea684d11ca11aa_arm64", + "product": { + "name": "multicluster-engine/must-gather-rhel8@sha256:a4a9ccf8f597f6b1dcdbf29247b9440f3623e23cfe49411999ea684d11ca11aa_arm64", + "product_id": "multicluster-engine/must-gather-rhel8@sha256:a4a9ccf8f597f6b1dcdbf29247b9440f3623e23cfe49411999ea684d11ca11aa_arm64", + "product_identification_helper": { + "purl": "pkg:oci/must-gather-rhel8@sha256:a4a9ccf8f597f6b1dcdbf29247b9440f3623e23cfe49411999ea684d11ca11aa?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/must-gather-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/backplane-rhel8-operator@sha256:65fb43b770b378a069cc4a085cfa831582d01776c6100b43b0032762fc6e007f_arm64", + "product": { + "name": "multicluster-engine/backplane-rhel8-operator@sha256:65fb43b770b378a069cc4a085cfa831582d01776c6100b43b0032762fc6e007f_arm64", + "product_id": "multicluster-engine/backplane-rhel8-operator@sha256:65fb43b770b378a069cc4a085cfa831582d01776c6100b43b0032762fc6e007f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/backplane-rhel8-operator@sha256:65fb43b770b378a069cc4a085cfa831582d01776c6100b43b0032762fc6e007f?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/backplane-rhel8-operator&tag=v2.2.9-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/placement-rhel8@sha256:1d2e06b13bd0cdbd7b4f11e6a48276a466e90023372253639ad1859c58c9d18c_arm64", + "product": { + "name": "multicluster-engine/placement-rhel8@sha256:1d2e06b13bd0cdbd7b4f11e6a48276a466e90023372253639ad1859c58c9d18c_arm64", + "product_id": "multicluster-engine/placement-rhel8@sha256:1d2e06b13bd0cdbd7b4f11e6a48276a466e90023372253639ad1859c58c9d18c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/placement-rhel8@sha256:1d2e06b13bd0cdbd7b4f11e6a48276a466e90023372253639ad1859c58c9d18c?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/placement-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:e7dc21f124fba54882801cfbebc09fdc945d821e99aaed443aa179d6f6f1c9ab_arm64", + "product": { + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:e7dc21f124fba54882801cfbebc09fdc945d821e99aaed443aa179d6f6f1c9ab_arm64", + "product_id": "multicluster-engine/provider-credential-controller-rhel8@sha256:e7dc21f124fba54882801cfbebc09fdc945d821e99aaed443aa179d6f6f1c9ab_arm64", + "product_identification_helper": { + "purl": "pkg:oci/provider-credential-controller-rhel8@sha256:e7dc21f124fba54882801cfbebc09fdc945d821e99aaed443aa179d6f6f1c9ab?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/provider-credential-controller-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/registration-rhel8@sha256:4d3be051fb0829f0a36616c70041ec8eab701ae327b2298244a3cccd729a7040_arm64", + "product": { + "name": "multicluster-engine/registration-rhel8@sha256:4d3be051fb0829f0a36616c70041ec8eab701ae327b2298244a3cccd729a7040_arm64", + "product_id": "multicluster-engine/registration-rhel8@sha256:4d3be051fb0829f0a36616c70041ec8eab701ae327b2298244a3cccd729a7040_arm64", + "product_identification_helper": { + "purl": "pkg:oci/registration-rhel8@sha256:4d3be051fb0829f0a36616c70041ec8eab701ae327b2298244a3cccd729a7040?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/registration-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/registration-operator-rhel8@sha256:8d91147a2b462965ebaa22a219450ba4e88cfb8f1c9d5b7bf35c45c98aceafcb_arm64", + "product": { + "name": "multicluster-engine/registration-operator-rhel8@sha256:8d91147a2b462965ebaa22a219450ba4e88cfb8f1c9d5b7bf35c45c98aceafcb_arm64", + "product_id": "multicluster-engine/registration-operator-rhel8@sha256:8d91147a2b462965ebaa22a219450ba4e88cfb8f1c9d5b7bf35c45c98aceafcb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/registration-operator-rhel8@sha256:8d91147a2b462965ebaa22a219450ba4e88cfb8f1c9d5b7bf35c45c98aceafcb?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/registration-operator-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/work-rhel8@sha256:599e0cd4f185adcd520da278bb548b7380020f92d9fbc7149a342fb34ef88f81_arm64", + "product": { + "name": "multicluster-engine/work-rhel8@sha256:599e0cd4f185adcd520da278bb548b7380020f92d9fbc7149a342fb34ef88f81_arm64", + "product_id": "multicluster-engine/work-rhel8@sha256:599e0cd4f185adcd520da278bb548b7380020f92d9fbc7149a342fb34ef88f81_arm64", + "product_identification_helper": { + "purl": "pkg:oci/work-rhel8@sha256:599e0cd4f185adcd520da278bb548b7380020f92d9fbc7149a342fb34ef88f81?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/work-rhel8&tag=v2.2.9-3" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "multicluster-engine/agent-service-rhel8@sha256:301d15258f99bfe86cc0e0a780c13399eecf5d6e6264138fe12acba35edf0a13_amd64", + "product": { + "name": "multicluster-engine/agent-service-rhel8@sha256:301d15258f99bfe86cc0e0a780c13399eecf5d6e6264138fe12acba35edf0a13_amd64", + "product_id": "multicluster-engine/agent-service-rhel8@sha256:301d15258f99bfe86cc0e0a780c13399eecf5d6e6264138fe12acba35edf0a13_amd64", + "product_identification_helper": { + "purl": "pkg:oci/agent-service-rhel8@sha256:301d15258f99bfe86cc0e0a780c13399eecf5d6e6264138fe12acba35edf0a13?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/agent-service-rhel8&tag=v2.2.9-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:14c6a7954d75e2d0696fb708500bb0f2db970bedff1843ecdb559183bf079f87_amd64", + "product": { + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:14c6a7954d75e2d0696fb708500bb0f2db970bedff1843ecdb559183bf079f87_amd64", + "product_id": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:14c6a7954d75e2d0696fb708500bb0f2db970bedff1843ecdb559183bf079f87_amd64", + "product_identification_helper": { + "purl": "pkg:oci/apiserver-network-proxy-rhel8@sha256:14c6a7954d75e2d0696fb708500bb0f2db970bedff1843ecdb559183bf079f87?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/apiserver-network-proxy-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:ad9ec504ca8cf5c26a269e3248edb446f3d85fb7a5ba791539647c30895f2b85_amd64", + "product": { + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:ad9ec504ca8cf5c26a269e3248edb446f3d85fb7a5ba791539647c30895f2b85_amd64", + "product_id": "multicluster-engine/assisted-image-service-rhel8@sha256:ad9ec504ca8cf5c26a269e3248edb446f3d85fb7a5ba791539647c30895f2b85_amd64", + "product_identification_helper": { + "purl": "pkg:oci/assisted-image-service-rhel8@sha256:ad9ec504ca8cf5c26a269e3248edb446f3d85fb7a5ba791539647c30895f2b85?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/assisted-image-service-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-agent-rhel8@sha256:5d4e73b96c960fe85a6333392f208ae296c709d20c1dafbd49ef590198d69026_amd64", + "product": { + "name": "multicluster-engine/assisted-installer-agent-rhel8@sha256:5d4e73b96c960fe85a6333392f208ae296c709d20c1dafbd49ef590198d69026_amd64", + "product_id": "multicluster-engine/assisted-installer-agent-rhel8@sha256:5d4e73b96c960fe85a6333392f208ae296c709d20c1dafbd49ef590198d69026_amd64", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-agent-rhel8@sha256:5d4e73b96c960fe85a6333392f208ae296c709d20c1dafbd49ef590198d69026?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-rhel8@sha256:3dc40ac18f2b151bc4a2cf8f6d71bc75a10d6e48cae31190ef1a7780e733a85e_amd64", + "product": { + "name": "multicluster-engine/assisted-installer-rhel8@sha256:3dc40ac18f2b151bc4a2cf8f6d71bc75a10d6e48cae31190ef1a7780e733a85e_amd64", + "product_id": "multicluster-engine/assisted-installer-rhel8@sha256:3dc40ac18f2b151bc4a2cf8f6d71bc75a10d6e48cae31190ef1a7780e733a85e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-rhel8@sha256:3dc40ac18f2b151bc4a2cf8f6d71bc75a10d6e48cae31190ef1a7780e733a85e?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:d09a16c1e7eb6f4a547f35a98b0f8c6aaf777c54eea688cf17c52341f7073504_amd64", + "product": { + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:d09a16c1e7eb6f4a547f35a98b0f8c6aaf777c54eea688cf17c52341f7073504_amd64", + "product_id": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:d09a16c1e7eb6f4a547f35a98b0f8c6aaf777c54eea688cf17c52341f7073504_amd64", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-reporter-rhel8@sha256:d09a16c1e7eb6f4a547f35a98b0f8c6aaf777c54eea688cf17c52341f7073504?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-reporter-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:94de655701d4d5a151929e026c9a284b4964f95ec957d91d13f8f58f284f2a02_amd64", + "product": { + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:94de655701d4d5a151929e026c9a284b4964f95ec957d91d13f8f58f284f2a02_amd64", + "product_id": "multicluster-engine/aws-encryption-provider-rhel8@sha256:94de655701d4d5a151929e026c9a284b4964f95ec957d91d13f8f58f284f2a02_amd64", + "product_identification_helper": { + "purl": "pkg:oci/aws-encryption-provider-rhel8@sha256:94de655701d4d5a151929e026c9a284b4964f95ec957d91d13f8f58f284f2a02?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/aws-encryption-provider-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-rhel8@sha256:54dae953271f6bcd3ea7b6452b960c1d11ee87cedfb5292b65f356929b579bad_amd64", + "product": { + "name": "multicluster-engine/cluster-api-rhel8@sha256:54dae953271f6bcd3ea7b6452b960c1d11ee87cedfb5292b65f356929b579bad_amd64", + "product_id": "multicluster-engine/cluster-api-rhel8@sha256:54dae953271f6bcd3ea7b6452b960c1d11ee87cedfb5292b65f356929b579bad_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-rhel8@sha256:54dae953271f6bcd3ea7b6452b960c1d11ee87cedfb5292b65f356929b579bad?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:18c5b6c1a503a44ab3efb19e0ffcb88fd42499e056e9e94883bad512f898ba20_amd64", + "product": { + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:18c5b6c1a503a44ab3efb19e0ffcb88fd42499e056e9e94883bad512f898ba20_amd64", + "product_id": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:18c5b6c1a503a44ab3efb19e0ffcb88fd42499e056e9e94883bad512f898ba20_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:18c5b6c1a503a44ab3efb19e0ffcb88fd42499e056e9e94883bad512f898ba20?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8&tag=v2.2.9-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:18c5b6c1a503a44ab3efb19e0ffcb88fd42499e056e9e94883bad512f898ba20_amd64", + "product": { + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:18c5b6c1a503a44ab3efb19e0ffcb88fd42499e056e9e94883bad512f898ba20_amd64", + "product_id": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:18c5b6c1a503a44ab3efb19e0ffcb88fd42499e056e9e94883bad512f898ba20_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-agent-rhel8@sha256:18c5b6c1a503a44ab3efb19e0ffcb88fd42499e056e9e94883bad512f898ba20?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel8&tag=v2.2.9-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:05fade3aa91e21858e2dc611d123c3c7219cb3ee3dacc5f4c0af3077ce281553_amd64", + "product": { + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:05fade3aa91e21858e2dc611d123c3c7219cb3ee3dacc5f4c0af3077ce281553_amd64", + "product_id": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:05fade3aa91e21858e2dc611d123c3c7219cb3ee3dacc5f4c0af3077ce281553_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-aws-rhel8@sha256:05fade3aa91e21858e2dc611d123c3c7219cb3ee3dacc5f4c0af3077ce281553?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:51543e7a7b842bd5aac4b7a18ce5493b1c1b10fd4aa2f616f39b7d3e5f216888_amd64", + "product": { + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:51543e7a7b842bd5aac4b7a18ce5493b1c1b10fd4aa2f616f39b7d3e5f216888_amd64", + "product_id": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:51543e7a7b842bd5aac4b7a18ce5493b1c1b10fd4aa2f616f39b7d3e5f216888_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-azure-rhel8@sha256:51543e7a7b842bd5aac4b7a18ce5493b1c1b10fd4aa2f616f39b7d3e5f216888?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-azure-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:d44407afb70de690bd9a3735509dded01feca581b8c94596f9f7580eb9e7e872_amd64", + "product": { + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:d44407afb70de690bd9a3735509dded01feca581b8c94596f9f7580eb9e7e872_amd64", + "product_id": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:d44407afb70de690bd9a3735509dded01feca581b8c94596f9f7580eb9e7e872_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-kubevirt-rhel8@sha256:d44407afb70de690bd9a3735509dded01feca581b8c94596f9f7580eb9e7e872?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:05f170a6a876b15b8ade349f1024f1ba24da091ce3a6037934cfcf3055a18586_amd64", + "product": { + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:05f170a6a876b15b8ade349f1024f1ba24da091ce3a6037934cfcf3055a18586_amd64", + "product_id": "multicluster-engine/clusterclaims-controller-rhel8@sha256:05f170a6a876b15b8ade349f1024f1ba24da091ce3a6037934cfcf3055a18586_amd64", + "product_identification_helper": { + "purl": "pkg:oci/clusterclaims-controller-rhel8@sha256:05f170a6a876b15b8ade349f1024f1ba24da091ce3a6037934cfcf3055a18586?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:420aed032aa777b2f107947899f839c39dcb83001779d0a46abdaa1c694036af_amd64", + "product": { + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:420aed032aa777b2f107947899f839c39dcb83001779d0a46abdaa1c694036af_amd64", + "product_id": "multicluster-engine/cluster-curator-controller-rhel8@sha256:420aed032aa777b2f107947899f839c39dcb83001779d0a46abdaa1c694036af_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-curator-controller-rhel8@sha256:420aed032aa777b2f107947899f839c39dcb83001779d0a46abdaa1c694036af?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:0c2108e6664dece9014c7be844df5f7725926aaca33d28ed1b9c3a876c19fcfb_amd64", + "product": { + "name": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:0c2108e6664dece9014c7be844df5f7725926aaca33d28ed1b9c3a876c19fcfb_amd64", + "product_id": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:0c2108e6664dece9014c7be844df5f7725926aaca33d28ed1b9c3a876c19fcfb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-image-set-controller-rhel8@sha256:0c2108e6664dece9014c7be844df5f7725926aaca33d28ed1b9c3a876c19fcfb?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:f3d25bf5a3fb0fb8ddfc0ccd5fcd73f9fc533ea2fd7dbeaaa1e557b351421dcf_amd64", + "product": { + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:f3d25bf5a3fb0fb8ddfc0ccd5fcd73f9fc533ea2fd7dbeaaa1e557b351421dcf_amd64", + "product_id": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:f3d25bf5a3fb0fb8ddfc0ccd5fcd73f9fc533ea2fd7dbeaaa1e557b351421dcf_amd64", + "product_identification_helper": { + "purl": "pkg:oci/clusterlifecycle-state-metrics-rhel8@sha256:f3d25bf5a3fb0fb8ddfc0ccd5fcd73f9fc533ea2fd7dbeaaa1e557b351421dcf?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:649b3d0174a6cf195401d9f649b09169115228eeff6f0ebaacaa86dc746984a2_amd64", + "product": { + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:649b3d0174a6cf195401d9f649b09169115228eeff6f0ebaacaa86dc746984a2_amd64", + "product_id": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:649b3d0174a6cf195401d9f649b09169115228eeff6f0ebaacaa86dc746984a2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-proxy-addon-rhel8@sha256:649b3d0174a6cf195401d9f649b09169115228eeff6f0ebaacaa86dc746984a2?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:8549714610d5acfa02e447172de901d16b9a417597ed8847a86e54c0343e66f8_amd64", + "product": { + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:8549714610d5acfa02e447172de901d16b9a417597ed8847a86e54c0343e66f8_amd64", + "product_id": "multicluster-engine/cluster-proxy-rhel8@sha256:8549714610d5acfa02e447172de901d16b9a417597ed8847a86e54c0343e66f8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-proxy-rhel8@sha256:8549714610d5acfa02e447172de901d16b9a417597ed8847a86e54c0343e66f8?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:3e1c00734b635f973d978d0119ccbe944d9d37e63a185765a56db571fc90c7b0_amd64", + "product": { + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:3e1c00734b635f973d978d0119ccbe944d9d37e63a185765a56db571fc90c7b0_amd64", + "product_id": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:3e1c00734b635f973d978d0119ccbe944d9d37e63a185765a56db571fc90c7b0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-console-mce-rhel8@sha256:3e1c00734b635f973d978d0119ccbe944d9d37e63a185765a56db571fc90c7b0?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-console-mce-rhel8&tag=v2.2.9-8" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/console-mce-rhel8@sha256:3e1c00734b635f973d978d0119ccbe944d9d37e63a185765a56db571fc90c7b0_amd64", + "product": { + "name": "multicluster-engine/console-mce-rhel8@sha256:3e1c00734b635f973d978d0119ccbe944d9d37e63a185765a56db571fc90c7b0_amd64", + "product_id": "multicluster-engine/console-mce-rhel8@sha256:3e1c00734b635f973d978d0119ccbe944d9d37e63a185765a56db571fc90c7b0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/console-mce-rhel8@sha256:3e1c00734b635f973d978d0119ccbe944d9d37e63a185765a56db571fc90c7b0?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/console-mce-rhel8&tag=v2.2.9-8" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/discovery-rhel8@sha256:bd95d4802f5f77ef3ef521a0824ae61b119bff52d413c89578cab0e53a8c7a38_amd64", + "product": { + "name": "multicluster-engine/discovery-rhel8@sha256:bd95d4802f5f77ef3ef521a0824ae61b119bff52d413c89578cab0e53a8c7a38_amd64", + "product_id": "multicluster-engine/discovery-rhel8@sha256:bd95d4802f5f77ef3ef521a0824ae61b119bff52d413c89578cab0e53a8c7a38_amd64", + "product_identification_helper": { + "purl": "pkg:oci/discovery-rhel8@sha256:bd95d4802f5f77ef3ef521a0824ae61b119bff52d413c89578cab0e53a8c7a38?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/discovery-rhel8&tag=v2.2.9-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hive-rhel8@sha256:f00ebe414e51c2e502c8e254af3c5ae7056a591a4f4da855817dd8e8ad862d83_amd64", + "product": { + "name": "multicluster-engine/hive-rhel8@sha256:f00ebe414e51c2e502c8e254af3c5ae7056a591a4f4da855817dd8e8ad862d83_amd64", + "product_id": "multicluster-engine/hive-rhel8@sha256:f00ebe414e51c2e502c8e254af3c5ae7056a591a4f4da855817dd8e8ad862d83_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hive-rhel8@sha256:f00ebe414e51c2e502c8e254af3c5ae7056a591a4f4da855817dd8e8ad862d83?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/hive-rhel8&tag=v2.2.9-6" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:cda585eca14419f3e8ad482e1a6eb021c0ae83c1fec284a7c10787ab13f2de08_amd64", + "product": { + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:cda585eca14419f3e8ad482e1a6eb021c0ae83c1fec284a7c10787ab13f2de08_amd64", + "product_id": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:cda585eca14419f3e8ad482e1a6eb021c0ae83c1fec284a7c10787ab13f2de08_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-hypershift-addon-rhel8-operator@sha256:cda585eca14419f3e8ad482e1a6eb021c0ae83c1fec284a7c10787ab13f2de08?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:cda585eca14419f3e8ad482e1a6eb021c0ae83c1fec284a7c10787ab13f2de08_amd64", + "product": { + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:cda585eca14419f3e8ad482e1a6eb021c0ae83c1fec284a7c10787ab13f2de08_amd64", + "product_id": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:cda585eca14419f3e8ad482e1a6eb021c0ae83c1fec284a7c10787ab13f2de08_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-addon-rhel8-operator@sha256:cda585eca14419f3e8ad482e1a6eb021c0ae83c1fec284a7c10787ab13f2de08?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/hypershift-addon-rhel8-operator&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-cli-rhel8@sha256:dcbedf06462850300f71e119fd46b7feac182d069c58ab6594d8155c8302d566_amd64", + "product": { + "name": "multicluster-engine/hypershift-cli-rhel8@sha256:dcbedf06462850300f71e119fd46b7feac182d069c58ab6594d8155c8302d566_amd64", + "product_id": "multicluster-engine/hypershift-cli-rhel8@sha256:dcbedf06462850300f71e119fd46b7feac182d069c58ab6594d8155c8302d566_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-cli-rhel8@sha256:dcbedf06462850300f71e119fd46b7feac182d069c58ab6594d8155c8302d566?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/hypershift-cli-rhel8&tag=v2.2.9-7" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:33c92a8f71f2075967fe9707cafac4705acfd3c7d3dbfc03d44a300d11f8b3c9_amd64", + "product": { + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:33c92a8f71f2075967fe9707cafac4705acfd3c7d3dbfc03d44a300d11f8b3c9_amd64", + "product_id": "multicluster-engine/hypershift-rhel8-operator@sha256:33c92a8f71f2075967fe9707cafac4705acfd3c7d3dbfc03d44a300d11f8b3c9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-rhel8-operator@sha256:33c92a8f71f2075967fe9707cafac4705acfd3c7d3dbfc03d44a300d11f8b3c9?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/hypershift-rhel8-operator&tag=v2.2.9-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/klusterlet-operator-bundle@sha256:6090d7c88fb7dcc463f80e4a7c86102a411bf32160f6cbbfd55c7daea282bc92_amd64", + "product": { + "name": "multicluster-engine/klusterlet-operator-bundle@sha256:6090d7c88fb7dcc463f80e4a7c86102a411bf32160f6cbbfd55c7daea282bc92_amd64", + "product_id": "multicluster-engine/klusterlet-operator-bundle@sha256:6090d7c88fb7dcc463f80e4a7c86102a411bf32160f6cbbfd55c7daea282bc92_amd64", + "product_identification_helper": { + "purl": "pkg:oci/klusterlet-operator-bundle@sha256:6090d7c88fb7dcc463f80e4a7c86102a411bf32160f6cbbfd55c7daea282bc92?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/klusterlet-operator-bundle&tag=v2.2.9-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:d5915b27cd5fdb13d56d00d4b94fb58203ba75849c3317a555e222b05239d5f5_amd64", + "product": { + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:d5915b27cd5fdb13d56d00d4b94fb58203ba75849c3317a555e222b05239d5f5_amd64", + "product_id": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:d5915b27cd5fdb13d56d00d4b94fb58203ba75849c3317a555e222b05239d5f5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/managedcluster-import-controller-rhel8@sha256:d5915b27cd5fdb13d56d00d4b94fb58203ba75849c3317a555e222b05239d5f5?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:6ab84dc7bcaf2a1b8c58f371547d47292895a5a192d83d52740201341791f2db_amd64", + "product": { + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:6ab84dc7bcaf2a1b8c58f371547d47292895a5a192d83d52740201341791f2db_amd64", + "product_id": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:6ab84dc7bcaf2a1b8c58f371547d47292895a5a192d83d52740201341791f2db_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-managed-serviceaccount-rhel8@sha256:6ab84dc7bcaf2a1b8c58f371547d47292895a5a192d83d52740201341791f2db?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:6ab84dc7bcaf2a1b8c58f371547d47292895a5a192d83d52740201341791f2db_amd64", + "product": { + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:6ab84dc7bcaf2a1b8c58f371547d47292895a5a192d83d52740201341791f2db_amd64", + "product_id": "multicluster-engine/managed-serviceaccount-rhel8@sha256:6ab84dc7bcaf2a1b8c58f371547d47292895a5a192d83d52740201341791f2db_amd64", + "product_identification_helper": { + "purl": "pkg:oci/managed-serviceaccount-rhel8@sha256:6ab84dc7bcaf2a1b8c58f371547d47292895a5a192d83d52740201341791f2db?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:74837b37294468d77d9ae890c1cdf46f539a2a258553500a396de3b99237e253_amd64", + "product": { + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:74837b37294468d77d9ae890c1cdf46f539a2a258553500a396de3b99237e253_amd64", + "product_id": "multicluster-engine/multicloud-manager-rhel8@sha256:74837b37294468d77d9ae890c1cdf46f539a2a258553500a396de3b99237e253_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicloud-manager-rhel8@sha256:74837b37294468d77d9ae890c1cdf46f539a2a258553500a396de3b99237e253?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/multicloud-manager-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/must-gather-rhel8@sha256:7af7515cbcb9d0a9d0642ee0a4073a6fcc3ea4ed30b074cbf275498c2d38d030_amd64", + "product": { + "name": "multicluster-engine/must-gather-rhel8@sha256:7af7515cbcb9d0a9d0642ee0a4073a6fcc3ea4ed30b074cbf275498c2d38d030_amd64", + "product_id": "multicluster-engine/must-gather-rhel8@sha256:7af7515cbcb9d0a9d0642ee0a4073a6fcc3ea4ed30b074cbf275498c2d38d030_amd64", + "product_identification_helper": { + "purl": "pkg:oci/must-gather-rhel8@sha256:7af7515cbcb9d0a9d0642ee0a4073a6fcc3ea4ed30b074cbf275498c2d38d030?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/must-gather-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/mce-operator-bundle@sha256:b2822b32471c38c6384caeb3ea9f47e914d69a6aabd82e50739780a55b5a1110_amd64", + "product": { + "name": "multicluster-engine/mce-operator-bundle@sha256:b2822b32471c38c6384caeb3ea9f47e914d69a6aabd82e50739780a55b5a1110_amd64", + "product_id": "multicluster-engine/mce-operator-bundle@sha256:b2822b32471c38c6384caeb3ea9f47e914d69a6aabd82e50739780a55b5a1110_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mce-operator-bundle@sha256:b2822b32471c38c6384caeb3ea9f47e914d69a6aabd82e50739780a55b5a1110?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/mce-operator-bundle&tag=v2.2.9-10" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/backplane-rhel8-operator@sha256:adaede500462cb062df408292cf33bea8f75152f3538b4c5c2e33b29ff4d2f36_amd64", + "product": { + "name": "multicluster-engine/backplane-rhel8-operator@sha256:adaede500462cb062df408292cf33bea8f75152f3538b4c5c2e33b29ff4d2f36_amd64", + "product_id": "multicluster-engine/backplane-rhel8-operator@sha256:adaede500462cb062df408292cf33bea8f75152f3538b4c5c2e33b29ff4d2f36_amd64", + "product_identification_helper": { + "purl": "pkg:oci/backplane-rhel8-operator@sha256:adaede500462cb062df408292cf33bea8f75152f3538b4c5c2e33b29ff4d2f36?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/backplane-rhel8-operator&tag=v2.2.9-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/placement-rhel8@sha256:fd382d8b4bdd3bde7935e5ad02b6cc36055891b01bb284a30dfe3de155b5a603_amd64", + "product": { + "name": "multicluster-engine/placement-rhel8@sha256:fd382d8b4bdd3bde7935e5ad02b6cc36055891b01bb284a30dfe3de155b5a603_amd64", + "product_id": "multicluster-engine/placement-rhel8@sha256:fd382d8b4bdd3bde7935e5ad02b6cc36055891b01bb284a30dfe3de155b5a603_amd64", + "product_identification_helper": { + "purl": "pkg:oci/placement-rhel8@sha256:fd382d8b4bdd3bde7935e5ad02b6cc36055891b01bb284a30dfe3de155b5a603?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/placement-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:52b07f6cc6418fe26c63f8878fa842270a33f6dbc95385b3e6163786a1b67a16_amd64", + "product": { + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:52b07f6cc6418fe26c63f8878fa842270a33f6dbc95385b3e6163786a1b67a16_amd64", + "product_id": "multicluster-engine/provider-credential-controller-rhel8@sha256:52b07f6cc6418fe26c63f8878fa842270a33f6dbc95385b3e6163786a1b67a16_amd64", + "product_identification_helper": { + "purl": "pkg:oci/provider-credential-controller-rhel8@sha256:52b07f6cc6418fe26c63f8878fa842270a33f6dbc95385b3e6163786a1b67a16?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/provider-credential-controller-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/registration-rhel8@sha256:f6e7d1c75af32e5f17ed381a72ca2175e592a0335cc0fdb5f93e88ec4131b3ef_amd64", + "product": { + "name": "multicluster-engine/registration-rhel8@sha256:f6e7d1c75af32e5f17ed381a72ca2175e592a0335cc0fdb5f93e88ec4131b3ef_amd64", + "product_id": "multicluster-engine/registration-rhel8@sha256:f6e7d1c75af32e5f17ed381a72ca2175e592a0335cc0fdb5f93e88ec4131b3ef_amd64", + "product_identification_helper": { + "purl": "pkg:oci/registration-rhel8@sha256:f6e7d1c75af32e5f17ed381a72ca2175e592a0335cc0fdb5f93e88ec4131b3ef?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/registration-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/registration-operator-rhel8@sha256:c4adb05602711d00caa49eff2063843ebb1ead9de59bb0f8713d8505002b21e2_amd64", + "product": { + "name": "multicluster-engine/registration-operator-rhel8@sha256:c4adb05602711d00caa49eff2063843ebb1ead9de59bb0f8713d8505002b21e2_amd64", + "product_id": "multicluster-engine/registration-operator-rhel8@sha256:c4adb05602711d00caa49eff2063843ebb1ead9de59bb0f8713d8505002b21e2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/registration-operator-rhel8@sha256:c4adb05602711d00caa49eff2063843ebb1ead9de59bb0f8713d8505002b21e2?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/registration-operator-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/work-rhel8@sha256:63ce281389b1d6398188bb0baf2d64c02dd9472091a3d9767c3261289704e54d_amd64", + "product": { + "name": "multicluster-engine/work-rhel8@sha256:63ce281389b1d6398188bb0baf2d64c02dd9472091a3d9767c3261289704e54d_amd64", + "product_id": "multicluster-engine/work-rhel8@sha256:63ce281389b1d6398188bb0baf2d64c02dd9472091a3d9767c3261289704e54d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/work-rhel8@sha256:63ce281389b1d6398188bb0baf2d64c02dd9472091a3d9767c3261289704e54d?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/work-rhel8&tag=v2.2.9-3" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "multicluster-engine/agent-service-rhel8@sha256:45e1c82fa7539f32cdaa7eae2bbcbbffb1b9fa4d84c3a9a12538f5e5bb3add8e_s390x", + "product": { + "name": "multicluster-engine/agent-service-rhel8@sha256:45e1c82fa7539f32cdaa7eae2bbcbbffb1b9fa4d84c3a9a12538f5e5bb3add8e_s390x", + "product_id": "multicluster-engine/agent-service-rhel8@sha256:45e1c82fa7539f32cdaa7eae2bbcbbffb1b9fa4d84c3a9a12538f5e5bb3add8e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/agent-service-rhel8@sha256:45e1c82fa7539f32cdaa7eae2bbcbbffb1b9fa4d84c3a9a12538f5e5bb3add8e?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/agent-service-rhel8&tag=v2.2.9-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:2a3fa66f895963d60e39d6e97c3ae63898edff5de70d80fc02e7ab40d932f25f_s390x", + "product": { + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:2a3fa66f895963d60e39d6e97c3ae63898edff5de70d80fc02e7ab40d932f25f_s390x", + "product_id": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:2a3fa66f895963d60e39d6e97c3ae63898edff5de70d80fc02e7ab40d932f25f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/apiserver-network-proxy-rhel8@sha256:2a3fa66f895963d60e39d6e97c3ae63898edff5de70d80fc02e7ab40d932f25f?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/apiserver-network-proxy-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:5adaa639698a26676126cb55d9922c2864e3176e0afefcda6f93e251bff0ee9f_s390x", + "product": { + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:5adaa639698a26676126cb55d9922c2864e3176e0afefcda6f93e251bff0ee9f_s390x", + "product_id": "multicluster-engine/assisted-image-service-rhel8@sha256:5adaa639698a26676126cb55d9922c2864e3176e0afefcda6f93e251bff0ee9f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/assisted-image-service-rhel8@sha256:5adaa639698a26676126cb55d9922c2864e3176e0afefcda6f93e251bff0ee9f?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/assisted-image-service-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:b0ddf532be9bce73fdecd1939d0495b160ba5e76bdc915dc84fdbfd29223e9b5_s390x", + "product": { + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:b0ddf532be9bce73fdecd1939d0495b160ba5e76bdc915dc84fdbfd29223e9b5_s390x", + "product_id": "multicluster-engine/aws-encryption-provider-rhel8@sha256:b0ddf532be9bce73fdecd1939d0495b160ba5e76bdc915dc84fdbfd29223e9b5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/aws-encryption-provider-rhel8@sha256:b0ddf532be9bce73fdecd1939d0495b160ba5e76bdc915dc84fdbfd29223e9b5?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/aws-encryption-provider-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-rhel8@sha256:a26fc52c717987705005909ab2371925a3c7f2da1cbec99555ec6b5bf97c1798_s390x", + "product": { + "name": "multicluster-engine/cluster-api-rhel8@sha256:a26fc52c717987705005909ab2371925a3c7f2da1cbec99555ec6b5bf97c1798_s390x", + "product_id": "multicluster-engine/cluster-api-rhel8@sha256:a26fc52c717987705005909ab2371925a3c7f2da1cbec99555ec6b5bf97c1798_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-rhel8@sha256:a26fc52c717987705005909ab2371925a3c7f2da1cbec99555ec6b5bf97c1798?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-api-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:a8645dae7272a25d3f666d22b673688227a4723af7ff0d0bab1948cd927618a8_s390x", + "product": { + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:a8645dae7272a25d3f666d22b673688227a4723af7ff0d0bab1948cd927618a8_s390x", + "product_id": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:a8645dae7272a25d3f666d22b673688227a4723af7ff0d0bab1948cd927618a8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:a8645dae7272a25d3f666d22b673688227a4723af7ff0d0bab1948cd927618a8?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8&tag=v2.2.9-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:a8645dae7272a25d3f666d22b673688227a4723af7ff0d0bab1948cd927618a8_s390x", + "product": { + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:a8645dae7272a25d3f666d22b673688227a4723af7ff0d0bab1948cd927618a8_s390x", + "product_id": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:a8645dae7272a25d3f666d22b673688227a4723af7ff0d0bab1948cd927618a8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-agent-rhel8@sha256:a8645dae7272a25d3f666d22b673688227a4723af7ff0d0bab1948cd927618a8?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel8&tag=v2.2.9-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:75d9f33c8182bdc28f1422856c1f48ab648929b5366bc55671cb851e8b55088f_s390x", + "product": { + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:75d9f33c8182bdc28f1422856c1f48ab648929b5366bc55671cb851e8b55088f_s390x", + "product_id": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:75d9f33c8182bdc28f1422856c1f48ab648929b5366bc55671cb851e8b55088f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-aws-rhel8@sha256:75d9f33c8182bdc28f1422856c1f48ab648929b5366bc55671cb851e8b55088f?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:c2963d4acdcd7a7e19d231f302b9a438883b661f5299d9a58988d588ef09aff6_s390x", + "product": { + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:c2963d4acdcd7a7e19d231f302b9a438883b661f5299d9a58988d588ef09aff6_s390x", + "product_id": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:c2963d4acdcd7a7e19d231f302b9a438883b661f5299d9a58988d588ef09aff6_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-azure-rhel8@sha256:c2963d4acdcd7a7e19d231f302b9a438883b661f5299d9a58988d588ef09aff6?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-azure-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:4a5663b97f02bd1d43717f34213664b8deb96457256f4a46b4763775f3bfb2a5_s390x", + "product": { + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:4a5663b97f02bd1d43717f34213664b8deb96457256f4a46b4763775f3bfb2a5_s390x", + "product_id": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:4a5663b97f02bd1d43717f34213664b8deb96457256f4a46b4763775f3bfb2a5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-kubevirt-rhel8@sha256:4a5663b97f02bd1d43717f34213664b8deb96457256f4a46b4763775f3bfb2a5?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:ae9c8267b416de8890df4e0fc77a0791b9ac4668fa01c11864b6195108365d83_s390x", + "product": { + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:ae9c8267b416de8890df4e0fc77a0791b9ac4668fa01c11864b6195108365d83_s390x", + "product_id": "multicluster-engine/clusterclaims-controller-rhel8@sha256:ae9c8267b416de8890df4e0fc77a0791b9ac4668fa01c11864b6195108365d83_s390x", + "product_identification_helper": { + "purl": "pkg:oci/clusterclaims-controller-rhel8@sha256:ae9c8267b416de8890df4e0fc77a0791b9ac4668fa01c11864b6195108365d83?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:cea9577d6a0feb17a0b282ecf1d0ee017a56e4f2e3fa63f8c6a0cb3a780d3100_s390x", + "product": { + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:cea9577d6a0feb17a0b282ecf1d0ee017a56e4f2e3fa63f8c6a0cb3a780d3100_s390x", + "product_id": "multicluster-engine/cluster-curator-controller-rhel8@sha256:cea9577d6a0feb17a0b282ecf1d0ee017a56e4f2e3fa63f8c6a0cb3a780d3100_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-curator-controller-rhel8@sha256:cea9577d6a0feb17a0b282ecf1d0ee017a56e4f2e3fa63f8c6a0cb3a780d3100?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:c6cf9d0e14388b748791d1610efaa488c319cdb0852544723c51eaf8261aeeb8_s390x", + "product": { + "name": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:c6cf9d0e14388b748791d1610efaa488c319cdb0852544723c51eaf8261aeeb8_s390x", + "product_id": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:c6cf9d0e14388b748791d1610efaa488c319cdb0852544723c51eaf8261aeeb8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-image-set-controller-rhel8@sha256:c6cf9d0e14388b748791d1610efaa488c319cdb0852544723c51eaf8261aeeb8?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:6bdd476aa24ccacf2f3be3c5cd37600501a2379a4668045567d51ce88a839b65_s390x", + "product": { + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:6bdd476aa24ccacf2f3be3c5cd37600501a2379a4668045567d51ce88a839b65_s390x", + "product_id": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:6bdd476aa24ccacf2f3be3c5cd37600501a2379a4668045567d51ce88a839b65_s390x", + "product_identification_helper": { + "purl": "pkg:oci/clusterlifecycle-state-metrics-rhel8@sha256:6bdd476aa24ccacf2f3be3c5cd37600501a2379a4668045567d51ce88a839b65?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:71c0034b4a40952491ce1835000365838822ed415c1238a7c6c82dcd0a1ec566_s390x", + "product": { + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:71c0034b4a40952491ce1835000365838822ed415c1238a7c6c82dcd0a1ec566_s390x", + "product_id": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:71c0034b4a40952491ce1835000365838822ed415c1238a7c6c82dcd0a1ec566_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-proxy-addon-rhel8@sha256:71c0034b4a40952491ce1835000365838822ed415c1238a7c6c82dcd0a1ec566?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:aeab55ae47246097d9862b9a531e9992e00972c1f46a46cefdb7d94bb25baf86_s390x", + "product": { + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:aeab55ae47246097d9862b9a531e9992e00972c1f46a46cefdb7d94bb25baf86_s390x", + "product_id": "multicluster-engine/cluster-proxy-rhel8@sha256:aeab55ae47246097d9862b9a531e9992e00972c1f46a46cefdb7d94bb25baf86_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-proxy-rhel8@sha256:aeab55ae47246097d9862b9a531e9992e00972c1f46a46cefdb7d94bb25baf86?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:8739fd1b941ccc676330dc8185382ed4bc46b20e55e09ba81b0c9ceb7676b51d_s390x", + "product": { + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:8739fd1b941ccc676330dc8185382ed4bc46b20e55e09ba81b0c9ceb7676b51d_s390x", + "product_id": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:8739fd1b941ccc676330dc8185382ed4bc46b20e55e09ba81b0c9ceb7676b51d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-console-mce-rhel8@sha256:8739fd1b941ccc676330dc8185382ed4bc46b20e55e09ba81b0c9ceb7676b51d?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-console-mce-rhel8&tag=v2.2.9-8" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/console-mce-rhel8@sha256:8739fd1b941ccc676330dc8185382ed4bc46b20e55e09ba81b0c9ceb7676b51d_s390x", + "product": { + "name": "multicluster-engine/console-mce-rhel8@sha256:8739fd1b941ccc676330dc8185382ed4bc46b20e55e09ba81b0c9ceb7676b51d_s390x", + "product_id": "multicluster-engine/console-mce-rhel8@sha256:8739fd1b941ccc676330dc8185382ed4bc46b20e55e09ba81b0c9ceb7676b51d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/console-mce-rhel8@sha256:8739fd1b941ccc676330dc8185382ed4bc46b20e55e09ba81b0c9ceb7676b51d?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/console-mce-rhel8&tag=v2.2.9-8" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/discovery-rhel8@sha256:f68a57bf14a6698a512b65e46c2595bc1c201a2ce7872418f1b06cbcfe55795c_s390x", + "product": { + "name": "multicluster-engine/discovery-rhel8@sha256:f68a57bf14a6698a512b65e46c2595bc1c201a2ce7872418f1b06cbcfe55795c_s390x", + "product_id": "multicluster-engine/discovery-rhel8@sha256:f68a57bf14a6698a512b65e46c2595bc1c201a2ce7872418f1b06cbcfe55795c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/discovery-rhel8@sha256:f68a57bf14a6698a512b65e46c2595bc1c201a2ce7872418f1b06cbcfe55795c?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/discovery-rhel8&tag=v2.2.9-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hive-rhel8@sha256:97409c4bf39293827ce3dadf2d0dcc1747f74cd0d5091019de636d0e06957bbb_s390x", + "product": { + "name": "multicluster-engine/hive-rhel8@sha256:97409c4bf39293827ce3dadf2d0dcc1747f74cd0d5091019de636d0e06957bbb_s390x", + "product_id": "multicluster-engine/hive-rhel8@sha256:97409c4bf39293827ce3dadf2d0dcc1747f74cd0d5091019de636d0e06957bbb_s390x", + "product_identification_helper": { + "purl": "pkg:oci/hive-rhel8@sha256:97409c4bf39293827ce3dadf2d0dcc1747f74cd0d5091019de636d0e06957bbb?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/hive-rhel8&tag=v2.2.9-6" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:07ab7148d89dacea0dd1dfda3ee7fc08816d39b08eafe96580ded1c65d6607e8_s390x", + "product": { + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:07ab7148d89dacea0dd1dfda3ee7fc08816d39b08eafe96580ded1c65d6607e8_s390x", + "product_id": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:07ab7148d89dacea0dd1dfda3ee7fc08816d39b08eafe96580ded1c65d6607e8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-hypershift-addon-rhel8-operator@sha256:07ab7148d89dacea0dd1dfda3ee7fc08816d39b08eafe96580ded1c65d6607e8?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:07ab7148d89dacea0dd1dfda3ee7fc08816d39b08eafe96580ded1c65d6607e8_s390x", + "product": { + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:07ab7148d89dacea0dd1dfda3ee7fc08816d39b08eafe96580ded1c65d6607e8_s390x", + "product_id": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:07ab7148d89dacea0dd1dfda3ee7fc08816d39b08eafe96580ded1c65d6607e8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-addon-rhel8-operator@sha256:07ab7148d89dacea0dd1dfda3ee7fc08816d39b08eafe96580ded1c65d6607e8?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/hypershift-addon-rhel8-operator&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-cli-rhel8@sha256:5c9a19f8feccbacd1d097ac183ee3b4a06f9c277abf1421604c50a3618d00fb5_s390x", + "product": { + "name": "multicluster-engine/hypershift-cli-rhel8@sha256:5c9a19f8feccbacd1d097ac183ee3b4a06f9c277abf1421604c50a3618d00fb5_s390x", + "product_id": "multicluster-engine/hypershift-cli-rhel8@sha256:5c9a19f8feccbacd1d097ac183ee3b4a06f9c277abf1421604c50a3618d00fb5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-cli-rhel8@sha256:5c9a19f8feccbacd1d097ac183ee3b4a06f9c277abf1421604c50a3618d00fb5?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/hypershift-cli-rhel8&tag=v2.2.9-7" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:bf86b86099bcfa86ab5fe1132498f8f314441408f75217df40a3f17ea7924034_s390x", + "product": { + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:bf86b86099bcfa86ab5fe1132498f8f314441408f75217df40a3f17ea7924034_s390x", + "product_id": "multicluster-engine/hypershift-rhel8-operator@sha256:bf86b86099bcfa86ab5fe1132498f8f314441408f75217df40a3f17ea7924034_s390x", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-rhel8-operator@sha256:bf86b86099bcfa86ab5fe1132498f8f314441408f75217df40a3f17ea7924034?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/hypershift-rhel8-operator&tag=v2.2.9-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:9961cd9e68650d1f430fbfd46db02baee530e7a4104e7b937d594929d31d9538_s390x", + "product": { + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:9961cd9e68650d1f430fbfd46db02baee530e7a4104e7b937d594929d31d9538_s390x", + "product_id": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:9961cd9e68650d1f430fbfd46db02baee530e7a4104e7b937d594929d31d9538_s390x", + "product_identification_helper": { + "purl": "pkg:oci/managedcluster-import-controller-rhel8@sha256:9961cd9e68650d1f430fbfd46db02baee530e7a4104e7b937d594929d31d9538?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:06291b0360950d5d9552246b4bd8e9c76e6d6701bafbdabeac40c97cd3691fc2_s390x", + "product": { + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:06291b0360950d5d9552246b4bd8e9c76e6d6701bafbdabeac40c97cd3691fc2_s390x", + "product_id": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:06291b0360950d5d9552246b4bd8e9c76e6d6701bafbdabeac40c97cd3691fc2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-managed-serviceaccount-rhel8@sha256:06291b0360950d5d9552246b4bd8e9c76e6d6701bafbdabeac40c97cd3691fc2?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:06291b0360950d5d9552246b4bd8e9c76e6d6701bafbdabeac40c97cd3691fc2_s390x", + "product": { + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:06291b0360950d5d9552246b4bd8e9c76e6d6701bafbdabeac40c97cd3691fc2_s390x", + "product_id": "multicluster-engine/managed-serviceaccount-rhel8@sha256:06291b0360950d5d9552246b4bd8e9c76e6d6701bafbdabeac40c97cd3691fc2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/managed-serviceaccount-rhel8@sha256:06291b0360950d5d9552246b4bd8e9c76e6d6701bafbdabeac40c97cd3691fc2?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:fd788e278c3f96ca45f0b6ef178de9d94c496390e39a89834f8d4747ac992c7b_s390x", + "product": { + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:fd788e278c3f96ca45f0b6ef178de9d94c496390e39a89834f8d4747ac992c7b_s390x", + "product_id": "multicluster-engine/multicloud-manager-rhel8@sha256:fd788e278c3f96ca45f0b6ef178de9d94c496390e39a89834f8d4747ac992c7b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicloud-manager-rhel8@sha256:fd788e278c3f96ca45f0b6ef178de9d94c496390e39a89834f8d4747ac992c7b?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/multicloud-manager-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/must-gather-rhel8@sha256:837a264de600671af8e6b329a0d1aedf76865d125678d1e1b9fe7f6212a8d2e9_s390x", + "product": { + "name": "multicluster-engine/must-gather-rhel8@sha256:837a264de600671af8e6b329a0d1aedf76865d125678d1e1b9fe7f6212a8d2e9_s390x", + "product_id": "multicluster-engine/must-gather-rhel8@sha256:837a264de600671af8e6b329a0d1aedf76865d125678d1e1b9fe7f6212a8d2e9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/must-gather-rhel8@sha256:837a264de600671af8e6b329a0d1aedf76865d125678d1e1b9fe7f6212a8d2e9?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/must-gather-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/mce-operator-bundle@sha256:529ddee9eafb42815b2cec46a3c11e88be6b29ff58142288d77f71557283b304_s390x", + "product": { + "name": "multicluster-engine/mce-operator-bundle@sha256:529ddee9eafb42815b2cec46a3c11e88be6b29ff58142288d77f71557283b304_s390x", + "product_id": "multicluster-engine/mce-operator-bundle@sha256:529ddee9eafb42815b2cec46a3c11e88be6b29ff58142288d77f71557283b304_s390x", + "product_identification_helper": { + "purl": "pkg:oci/mce-operator-bundle@sha256:529ddee9eafb42815b2cec46a3c11e88be6b29ff58142288d77f71557283b304?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/mce-operator-bundle&tag=v2.2.9-10" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/backplane-rhel8-operator@sha256:65c7f69f5d1dd06da4a073d2878585f36c7f392516e045d4e756321e3da9c6b2_s390x", + "product": { + "name": "multicluster-engine/backplane-rhel8-operator@sha256:65c7f69f5d1dd06da4a073d2878585f36c7f392516e045d4e756321e3da9c6b2_s390x", + "product_id": "multicluster-engine/backplane-rhel8-operator@sha256:65c7f69f5d1dd06da4a073d2878585f36c7f392516e045d4e756321e3da9c6b2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/backplane-rhel8-operator@sha256:65c7f69f5d1dd06da4a073d2878585f36c7f392516e045d4e756321e3da9c6b2?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/backplane-rhel8-operator&tag=v2.2.9-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/placement-rhel8@sha256:a5d1f477b81c23606e8f64abaa3c1fc2b433f68bdeb869850d015f2d63fc7c13_s390x", + "product": { + "name": "multicluster-engine/placement-rhel8@sha256:a5d1f477b81c23606e8f64abaa3c1fc2b433f68bdeb869850d015f2d63fc7c13_s390x", + "product_id": "multicluster-engine/placement-rhel8@sha256:a5d1f477b81c23606e8f64abaa3c1fc2b433f68bdeb869850d015f2d63fc7c13_s390x", + "product_identification_helper": { + "purl": "pkg:oci/placement-rhel8@sha256:a5d1f477b81c23606e8f64abaa3c1fc2b433f68bdeb869850d015f2d63fc7c13?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/placement-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:8536216f0f019a29af598f5788c193986c5cde4d3f55fcc9f59646a38be430c8_s390x", + "product": { + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:8536216f0f019a29af598f5788c193986c5cde4d3f55fcc9f59646a38be430c8_s390x", + "product_id": "multicluster-engine/provider-credential-controller-rhel8@sha256:8536216f0f019a29af598f5788c193986c5cde4d3f55fcc9f59646a38be430c8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/provider-credential-controller-rhel8@sha256:8536216f0f019a29af598f5788c193986c5cde4d3f55fcc9f59646a38be430c8?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/provider-credential-controller-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/registration-rhel8@sha256:53dd2682b25c39c5409c610d540bd4b6262aec171d27147703bd1b7f95e04915_s390x", + "product": { + "name": "multicluster-engine/registration-rhel8@sha256:53dd2682b25c39c5409c610d540bd4b6262aec171d27147703bd1b7f95e04915_s390x", + "product_id": "multicluster-engine/registration-rhel8@sha256:53dd2682b25c39c5409c610d540bd4b6262aec171d27147703bd1b7f95e04915_s390x", + "product_identification_helper": { + "purl": "pkg:oci/registration-rhel8@sha256:53dd2682b25c39c5409c610d540bd4b6262aec171d27147703bd1b7f95e04915?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/registration-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/registration-operator-rhel8@sha256:ef58d8acde73b203f92a8d09db4909ae0d29f4968911fad8bf2855ba6d24734a_s390x", + "product": { + "name": "multicluster-engine/registration-operator-rhel8@sha256:ef58d8acde73b203f92a8d09db4909ae0d29f4968911fad8bf2855ba6d24734a_s390x", + "product_id": "multicluster-engine/registration-operator-rhel8@sha256:ef58d8acde73b203f92a8d09db4909ae0d29f4968911fad8bf2855ba6d24734a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/registration-operator-rhel8@sha256:ef58d8acde73b203f92a8d09db4909ae0d29f4968911fad8bf2855ba6d24734a?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/registration-operator-rhel8&tag=v2.2.9-3" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/work-rhel8@sha256:70d849a1d75a9fe97db7cdbd3281546f22aa3801cbc4fc96117a4a4ba441ac41_s390x", + "product": { + "name": "multicluster-engine/work-rhel8@sha256:70d849a1d75a9fe97db7cdbd3281546f22aa3801cbc4fc96117a4a4ba441ac41_s390x", + "product_id": "multicluster-engine/work-rhel8@sha256:70d849a1d75a9fe97db7cdbd3281546f22aa3801cbc4fc96117a4a4ba441ac41_s390x", + "product_identification_helper": { + "purl": "pkg:oci/work-rhel8@sha256:70d849a1d75a9fe97db7cdbd3281546f22aa3801cbc4fc96117a4a4ba441ac41?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/work-rhel8&tag=v2.2.9-3" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "jbcs-httpd24-nghttp2-0:1.43.0-12.el7jbcs.src", + "product": { + "name": "jbcs-httpd24-nghttp2-0:1.43.0-12.el7jbcs.src", + "product_id": "jbcs-httpd24-nghttp2-0:1.43.0-12.el7jbcs.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-nghttp2@1.43.0-12.el7jbcs?arch=src" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-curl-0:8.2.1-2.el7jbcs.src", + "product": { + "name": "jbcs-httpd24-curl-0:8.2.1-2.el7jbcs.src", + "product_id": "jbcs-httpd24-curl-0:8.2.1-2.el7jbcs.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-curl@8.2.1-2.el7jbcs?arch=src" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-httpd-0:2.4.57-6.el7jbcs.src", + "product": { + "name": "jbcs-httpd24-httpd-0:2.4.57-6.el7jbcs.src", + "product_id": "jbcs-httpd24-httpd-0:2.4.57-6.el7jbcs.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-httpd@2.4.57-6.el7jbcs?arch=src" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_http2-0:1.15.19-30.el7jbcs.src", + "product": { + "name": "jbcs-httpd24-mod_http2-0:1.15.19-30.el7jbcs.src", + "product_id": "jbcs-httpd24-mod_http2-0:1.15.19-30.el7jbcs.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_http2@1.15.19-30.el7jbcs?arch=src" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_jk-0:1.2.48-53.redhat_1.el7jbcs.src", + "product": { + "name": "jbcs-httpd24-mod_jk-0:1.2.48-53.redhat_1.el7jbcs.src", + "product_id": "jbcs-httpd24-mod_jk-0:1.2.48-53.redhat_1.el7jbcs.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_jk@1.2.48-53.redhat_1.el7jbcs?arch=src" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_md-1:2.4.0-27.el7jbcs.src", + "product": { + "name": "jbcs-httpd24-mod_md-1:2.4.0-27.el7jbcs.src", + "product_id": "jbcs-httpd24-mod_md-1:2.4.0-27.el7jbcs.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_md@2.4.0-27.el7jbcs?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_proxy_cluster-0:1.3.19-6.el7jbcs.src", + "product": { + "name": "jbcs-httpd24-mod_proxy_cluster-0:1.3.19-6.el7jbcs.src", + "product_id": "jbcs-httpd24-mod_proxy_cluster-0:1.3.19-6.el7jbcs.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_proxy_cluster@1.3.19-6.el7jbcs?arch=src" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_security-0:2.9.3-31.el7jbcs.src", + "product": { + "name": "jbcs-httpd24-mod_security-0:2.9.3-31.el7jbcs.src", + "product_id": "jbcs-httpd24-mod_security-0:2.9.3-31.el7jbcs.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_security@2.9.3-31.el7jbcs?arch=src" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-nghttp2-0:1.43.0-12.el8jbcs.src", + "product": { + "name": "jbcs-httpd24-nghttp2-0:1.43.0-12.el8jbcs.src", + "product_id": "jbcs-httpd24-nghttp2-0:1.43.0-12.el8jbcs.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-nghttp2@1.43.0-12.el8jbcs?arch=src" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-curl-0:8.2.1-2.el8jbcs.src", + "product": { + "name": "jbcs-httpd24-curl-0:8.2.1-2.el8jbcs.src", + "product_id": "jbcs-httpd24-curl-0:8.2.1-2.el8jbcs.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-curl@8.2.1-2.el8jbcs?arch=src" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-httpd-0:2.4.57-6.el8jbcs.src", + "product": { + "name": "jbcs-httpd24-httpd-0:2.4.57-6.el8jbcs.src", + "product_id": "jbcs-httpd24-httpd-0:2.4.57-6.el8jbcs.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-httpd@2.4.57-6.el8jbcs?arch=src" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_http2-0:1.15.19-30.el8jbcs.src", + "product": { + "name": "jbcs-httpd24-mod_http2-0:1.15.19-30.el8jbcs.src", + "product_id": "jbcs-httpd24-mod_http2-0:1.15.19-30.el8jbcs.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_http2@1.15.19-30.el8jbcs?arch=src" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_jk-0:1.2.48-53.redhat_1.el8jbcs.src", + "product": { + "name": "jbcs-httpd24-mod_jk-0:1.2.48-53.redhat_1.el8jbcs.src", + "product_id": "jbcs-httpd24-mod_jk-0:1.2.48-53.redhat_1.el8jbcs.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_jk@1.2.48-53.redhat_1.el8jbcs?arch=src" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_md-1:2.4.0-27.el8jbcs.src", + "product": { + "name": "jbcs-httpd24-mod_md-1:2.4.0-27.el8jbcs.src", + "product_id": "jbcs-httpd24-mod_md-1:2.4.0-27.el8jbcs.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_md@2.4.0-27.el8jbcs?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_proxy_cluster-0:1.3.19-6.el8jbcs.src", + "product": { + "name": "jbcs-httpd24-mod_proxy_cluster-0:1.3.19-6.el8jbcs.src", + "product_id": "jbcs-httpd24-mod_proxy_cluster-0:1.3.19-6.el8jbcs.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_proxy_cluster@1.3.19-6.el8jbcs?arch=src" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_security-0:2.9.3-31.el8jbcs.src", + "product": { + "name": "jbcs-httpd24-mod_security-0:2.9.3-31.el8jbcs.src", + "product_id": "jbcs-httpd24-mod_security-0:2.9.3-31.el8jbcs.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_security@2.9.3-31.el8jbcs?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "jbcs-httpd24-nghttp2-0:1.43.0-12.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-nghttp2-0:1.43.0-12.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-nghttp2-0:1.43.0-12.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-nghttp2@1.43.0-12.el7jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-nghttp2-devel-0:1.43.0-12.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-nghttp2-devel-0:1.43.0-12.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-nghttp2-devel-0:1.43.0-12.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-nghttp2-devel@1.43.0-12.el7jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-nghttp2-debuginfo-0:1.43.0-12.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-nghttp2-debuginfo-0:1.43.0-12.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-nghttp2-debuginfo-0:1.43.0-12.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-nghttp2-debuginfo@1.43.0-12.el7jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-curl-0:8.2.1-2.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-curl-0:8.2.1-2.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-curl-0:8.2.1-2.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-curl@8.2.1-2.el7jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-libcurl-0:8.2.1-2.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-libcurl-0:8.2.1-2.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-libcurl-0:8.2.1-2.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-libcurl@8.2.1-2.el7jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-libcurl-devel-0:8.2.1-2.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-libcurl-devel-0:8.2.1-2.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-libcurl-devel-0:8.2.1-2.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-libcurl-devel@8.2.1-2.el7jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-curl-debuginfo-0:8.2.1-2.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-curl-debuginfo-0:8.2.1-2.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-curl-debuginfo-0:8.2.1-2.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-curl-debuginfo@8.2.1-2.el7jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-httpd-0:2.4.57-6.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-httpd-0:2.4.57-6.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-httpd-0:2.4.57-6.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-httpd@2.4.57-6.el7jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-httpd-devel-0:2.4.57-6.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-httpd-devel-0:2.4.57-6.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-httpd-devel-0:2.4.57-6.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-httpd-devel@2.4.57-6.el7jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-httpd-selinux-0:2.4.57-6.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-httpd-selinux-0:2.4.57-6.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-httpd-selinux-0:2.4.57-6.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-httpd-selinux@2.4.57-6.el7jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-httpd-tools-0:2.4.57-6.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-httpd-tools-0:2.4.57-6.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-httpd-tools-0:2.4.57-6.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-httpd-tools@2.4.57-6.el7jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_ldap-0:2.4.57-6.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_ldap-0:2.4.57-6.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_ldap-0:2.4.57-6.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_ldap@2.4.57-6.el7jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_proxy_html-1:2.4.57-6.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_proxy_html-1:2.4.57-6.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_proxy_html-1:2.4.57-6.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_proxy_html@2.4.57-6.el7jbcs?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_session-0:2.4.57-6.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_session-0:2.4.57-6.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_session-0:2.4.57-6.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_session@2.4.57-6.el7jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_ssl-1:2.4.57-6.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_ssl-1:2.4.57-6.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_ssl-1:2.4.57-6.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_ssl@2.4.57-6.el7jbcs?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-httpd-debuginfo-0:2.4.57-6.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-httpd-debuginfo-0:2.4.57-6.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-httpd-debuginfo-0:2.4.57-6.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-httpd-debuginfo@2.4.57-6.el7jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_http2-0:1.15.19-30.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_http2-0:1.15.19-30.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_http2-0:1.15.19-30.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_http2@1.15.19-30.el7jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-30.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-30.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-30.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_http2-debuginfo@1.15.19-30.el7jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_jk-ap24-0:1.2.48-53.redhat_1.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_jk-ap24-0:1.2.48-53.redhat_1.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_jk-ap24-0:1.2.48-53.redhat_1.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_jk-ap24@1.2.48-53.redhat_1.el7jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-53.redhat_1.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-53.redhat_1.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-53.redhat_1.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_jk-debuginfo@1.2.48-53.redhat_1.el7jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_md-1:2.4.0-27.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_md-1:2.4.0-27.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_md-1:2.4.0-27.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_md@2.4.0-27.el7jbcs?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_md-debuginfo-1:2.4.0-27.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_md-debuginfo-1:2.4.0-27.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_md-debuginfo-1:2.4.0-27.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_md-debuginfo@2.4.0-27.el7jbcs?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_proxy_cluster-0:1.3.19-6.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_proxy_cluster-0:1.3.19-6.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_proxy_cluster-0:1.3.19-6.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_proxy_cluster@1.3.19-6.el7jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.19-6.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.19-6.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.19-6.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_proxy_cluster-debuginfo@1.3.19-6.el7jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_security-0:2.9.3-31.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_security-0:2.9.3-31.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_security-0:2.9.3-31.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_security@2.9.3-31.el7jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_security-debuginfo-0:2.9.3-31.el7jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_security-debuginfo-0:2.9.3-31.el7jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_security-debuginfo-0:2.9.3-31.el7jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_security-debuginfo@2.9.3-31.el7jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-nghttp2-0:1.43.0-12.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-nghttp2-0:1.43.0-12.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-nghttp2-0:1.43.0-12.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-nghttp2@1.43.0-12.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-nghttp2-devel-0:1.43.0-12.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-nghttp2-devel-0:1.43.0-12.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-nghttp2-devel-0:1.43.0-12.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-nghttp2-devel@1.43.0-12.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-nghttp2-debuginfo-0:1.43.0-12.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-nghttp2-debuginfo-0:1.43.0-12.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-nghttp2-debuginfo-0:1.43.0-12.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-nghttp2-debuginfo@1.43.0-12.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-curl-0:8.2.1-2.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-curl-0:8.2.1-2.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-curl-0:8.2.1-2.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-curl@8.2.1-2.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-libcurl-0:8.2.1-2.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-libcurl-0:8.2.1-2.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-libcurl-0:8.2.1-2.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-libcurl@8.2.1-2.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-libcurl-devel-0:8.2.1-2.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-libcurl-devel-0:8.2.1-2.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-libcurl-devel-0:8.2.1-2.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-libcurl-devel@8.2.1-2.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-curl-debuginfo-0:8.2.1-2.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-curl-debuginfo-0:8.2.1-2.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-curl-debuginfo-0:8.2.1-2.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-curl-debuginfo@8.2.1-2.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-libcurl-debuginfo-0:8.2.1-2.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-libcurl-debuginfo-0:8.2.1-2.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-libcurl-debuginfo-0:8.2.1-2.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-libcurl-debuginfo@8.2.1-2.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-httpd-0:2.4.57-6.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-httpd-0:2.4.57-6.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-httpd-0:2.4.57-6.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-httpd@2.4.57-6.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-httpd-devel-0:2.4.57-6.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-httpd-devel-0:2.4.57-6.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-httpd-devel-0:2.4.57-6.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-httpd-devel@2.4.57-6.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-httpd-selinux-0:2.4.57-6.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-httpd-selinux-0:2.4.57-6.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-httpd-selinux-0:2.4.57-6.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-httpd-selinux@2.4.57-6.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-httpd-tools-0:2.4.57-6.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-httpd-tools-0:2.4.57-6.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-httpd-tools-0:2.4.57-6.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-httpd-tools@2.4.57-6.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_ldap-0:2.4.57-6.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_ldap-0:2.4.57-6.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_ldap-0:2.4.57-6.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_ldap@2.4.57-6.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_proxy_html-1:2.4.57-6.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_proxy_html-1:2.4.57-6.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_proxy_html-1:2.4.57-6.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_proxy_html@2.4.57-6.el8jbcs?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_session-0:2.4.57-6.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_session-0:2.4.57-6.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_session-0:2.4.57-6.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_session@2.4.57-6.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_ssl-1:2.4.57-6.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_ssl-1:2.4.57-6.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_ssl-1:2.4.57-6.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_ssl@2.4.57-6.el8jbcs?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-httpd-debuginfo-0:2.4.57-6.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-httpd-debuginfo-0:2.4.57-6.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-httpd-debuginfo-0:2.4.57-6.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-httpd-debuginfo@2.4.57-6.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-httpd-tools-debuginfo-0:2.4.57-6.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-httpd-tools-debuginfo-0:2.4.57-6.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-httpd-tools-debuginfo-0:2.4.57-6.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-httpd-tools-debuginfo@2.4.57-6.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_ldap-debuginfo-0:2.4.57-6.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_ldap-debuginfo-0:2.4.57-6.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_ldap-debuginfo-0:2.4.57-6.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_ldap-debuginfo@2.4.57-6.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.57-6.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.57-6.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.57-6.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_proxy_html-debuginfo@2.4.57-6.el8jbcs?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_session-debuginfo-0:2.4.57-6.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_session-debuginfo-0:2.4.57-6.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_session-debuginfo-0:2.4.57-6.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_session-debuginfo@2.4.57-6.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_ssl-debuginfo-1:2.4.57-6.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_ssl-debuginfo-1:2.4.57-6.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_ssl-debuginfo-1:2.4.57-6.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_ssl-debuginfo@2.4.57-6.el8jbcs?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_http2-0:1.15.19-30.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_http2-0:1.15.19-30.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_http2-0:1.15.19-30.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_http2@1.15.19-30.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-30.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-30.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-30.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_http2-debuginfo@1.15.19-30.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_jk-ap24-0:1.2.48-53.redhat_1.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_jk-ap24-0:1.2.48-53.redhat_1.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_jk-ap24-0:1.2.48-53.redhat_1.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_jk-ap24@1.2.48-53.redhat_1.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-53.redhat_1.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-53.redhat_1.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-53.redhat_1.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_jk-ap24-debuginfo@1.2.48-53.redhat_1.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_md-1:2.4.0-27.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_md-1:2.4.0-27.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_md-1:2.4.0-27.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_md@2.4.0-27.el8jbcs?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_md-debuginfo-1:2.4.0-27.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_md-debuginfo-1:2.4.0-27.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_md-debuginfo-1:2.4.0-27.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_md-debuginfo@2.4.0-27.el8jbcs?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_proxy_cluster-0:1.3.19-6.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_proxy_cluster-0:1.3.19-6.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_proxy_cluster-0:1.3.19-6.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_proxy_cluster@1.3.19-6.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.19-6.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.19-6.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.19-6.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_proxy_cluster-debuginfo@1.3.19-6.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_security-0:2.9.3-31.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_security-0:2.9.3-31.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_security-0:2.9.3-31.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_security@2.9.3-31.el8jbcs?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-mod_security-debuginfo-0:2.9.3-31.el8jbcs.x86_64", + "product": { + "name": "jbcs-httpd24-mod_security-debuginfo-0:2.9.3-31.el8jbcs.x86_64", + "product_id": "jbcs-httpd24-mod_security-debuginfo-0:2.9.3-31.el8jbcs.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-mod_security-debuginfo@2.9.3-31.el8jbcs?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "jbcs-httpd24-httpd-manual-0:2.4.57-6.el7jbcs.noarch", + "product": { + "name": "jbcs-httpd24-httpd-manual-0:2.4.57-6.el7jbcs.noarch", + "product_id": "jbcs-httpd24-httpd-manual-0:2.4.57-6.el7jbcs.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-httpd-manual@2.4.57-6.el7jbcs?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jbcs-httpd24-httpd-manual-0:2.4.57-6.el8jbcs.noarch", + "product": { + "name": "jbcs-httpd24-httpd-manual-0:2.4.57-6.el8jbcs.noarch", + "product_id": "jbcs-httpd24-httpd-manual-0:2.4.57-6.el8jbcs.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jbcs-httpd24-httpd-manual@2.4.57-6.el8jbcs?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "mtr/mtr-operator-bundle@sha256:13b3c51ad5aed90c1df7b98294baae889766c76c7c14fb952a6c0808980473ea_s390x", + "product": { + "name": "mtr/mtr-operator-bundle@sha256:13b3c51ad5aed90c1df7b98294baae889766c76c7c14fb952a6c0808980473ea_s390x", + "product_id": "mtr/mtr-operator-bundle@sha256:13b3c51ad5aed90c1df7b98294baae889766c76c7c14fb952a6c0808980473ea_s390x", + "product_identification_helper": { + "purl": "pkg:oci/mtr-operator-bundle@sha256:13b3c51ad5aed90c1df7b98294baae889766c76c7c14fb952a6c0808980473ea?arch=s390x&repository_url=registry.redhat.io/mtr/mtr-operator-bundle&tag=latest" + } + } + }, + { + "category": "product_version", + "name": "mtr/mtr-rhel8-operator@sha256:f55c866e421df052ccacb5145893fc6fe0a42f3d5d224123b0c9bfdde6495001_s390x", + "product": { + "name": "mtr/mtr-rhel8-operator@sha256:f55c866e421df052ccacb5145893fc6fe0a42f3d5d224123b0c9bfdde6495001_s390x", + "product_id": "mtr/mtr-rhel8-operator@sha256:f55c866e421df052ccacb5145893fc6fe0a42f3d5d224123b0c9bfdde6495001_s390x", + "product_identification_helper": { + "purl": "pkg:oci/mtr-rhel8-operator@sha256:f55c866e421df052ccacb5145893fc6fe0a42f3d5d224123b0c9bfdde6495001?arch=s390x&repository_url=registry.redhat.io/mtr/mtr-rhel8-operator&tag=latest" + } + } + }, + { + "category": "product_version", + "name": "mtr/mtr-web-container-rhel8@sha256:1165d0a18300b3ca0a432311e392aacbac822e5efe1d2e01429907b248f81774_s390x", + "product": { + "name": "mtr/mtr-web-container-rhel8@sha256:1165d0a18300b3ca0a432311e392aacbac822e5efe1d2e01429907b248f81774_s390x", + "product_id": "mtr/mtr-web-container-rhel8@sha256:1165d0a18300b3ca0a432311e392aacbac822e5efe1d2e01429907b248f81774_s390x", + "product_identification_helper": { + "purl": "pkg:oci/mtr-web-container-rhel8@sha256:1165d0a18300b3ca0a432311e392aacbac822e5efe1d2e01429907b248f81774?arch=s390x&repository_url=registry.redhat.io/mtr/mtr-web-container-rhel8&tag=latest" + } + } + }, + { + "category": "product_version", + "name": "mtr/mtr-web-executor-container-rhel8@sha256:deb6fa4f9b3f4ac7356383dee6137558c842af367f275f72c27ba04104f95d4a_s390x", + "product": { + "name": "mtr/mtr-web-executor-container-rhel8@sha256:deb6fa4f9b3f4ac7356383dee6137558c842af367f275f72c27ba04104f95d4a_s390x", + "product_id": "mtr/mtr-web-executor-container-rhel8@sha256:deb6fa4f9b3f4ac7356383dee6137558c842af367f275f72c27ba04104f95d4a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/mtr-web-executor-container-rhel8@sha256:deb6fa4f9b3f4ac7356383dee6137558c842af367f275f72c27ba04104f95d4a?arch=s390x&repository_url=registry.redhat.io/mtr/mtr-web-executor-container-rhel8&tag=latest" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "mtr/mtr-operator-bundle@sha256:a1656094f8f5b859d15e4be824e714478a028b18cf2c8acef38acbc9b35428fe_arm64", + "product": { + "name": "mtr/mtr-operator-bundle@sha256:a1656094f8f5b859d15e4be824e714478a028b18cf2c8acef38acbc9b35428fe_arm64", + "product_id": "mtr/mtr-operator-bundle@sha256:a1656094f8f5b859d15e4be824e714478a028b18cf2c8acef38acbc9b35428fe_arm64", + "product_identification_helper": { + "purl": "pkg:oci/mtr-operator-bundle@sha256:a1656094f8f5b859d15e4be824e714478a028b18cf2c8acef38acbc9b35428fe?arch=arm64&repository_url=registry.redhat.io/mtr/mtr-operator-bundle&tag=latest" + } + } + }, + { + "category": "product_version", + "name": "mtr/mtr-rhel8-operator@sha256:aa640165558c9f5e916db580b354a358c167eae36597439b5c393d9686b9be6f_arm64", + "product": { + "name": "mtr/mtr-rhel8-operator@sha256:aa640165558c9f5e916db580b354a358c167eae36597439b5c393d9686b9be6f_arm64", + "product_id": "mtr/mtr-rhel8-operator@sha256:aa640165558c9f5e916db580b354a358c167eae36597439b5c393d9686b9be6f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/mtr-rhel8-operator@sha256:aa640165558c9f5e916db580b354a358c167eae36597439b5c393d9686b9be6f?arch=arm64&repository_url=registry.redhat.io/mtr/mtr-rhel8-operator&tag=latest" + } + } + }, + { + "category": "product_version", + "name": "mtr/mtr-web-executor-container-rhel8@sha256:91fb192d6b10008cb42d014c1c6a31fca5a21bbe033ef7694ff487f291a828b9_arm64", + "product": { + "name": "mtr/mtr-web-executor-container-rhel8@sha256:91fb192d6b10008cb42d014c1c6a31fca5a21bbe033ef7694ff487f291a828b9_arm64", + "product_id": "mtr/mtr-web-executor-container-rhel8@sha256:91fb192d6b10008cb42d014c1c6a31fca5a21bbe033ef7694ff487f291a828b9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/mtr-web-executor-container-rhel8@sha256:91fb192d6b10008cb42d014c1c6a31fca5a21bbe033ef7694ff487f291a828b9?arch=arm64&repository_url=registry.redhat.io/mtr/mtr-web-executor-container-rhel8&tag=latest" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "mtr/mtr-operator-bundle@sha256:a34d7e0a9c5064a9a61d297dec40dca605e7a2dd933a1b6bde445f1dfdda6003_ppc64le", + "product": { + "name": "mtr/mtr-operator-bundle@sha256:a34d7e0a9c5064a9a61d297dec40dca605e7a2dd933a1b6bde445f1dfdda6003_ppc64le", + "product_id": "mtr/mtr-operator-bundle@sha256:a34d7e0a9c5064a9a61d297dec40dca605e7a2dd933a1b6bde445f1dfdda6003_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/mtr-operator-bundle@sha256:a34d7e0a9c5064a9a61d297dec40dca605e7a2dd933a1b6bde445f1dfdda6003?arch=ppc64le&repository_url=registry.redhat.io/mtr/mtr-operator-bundle&tag=latest" + } + } + }, + { + "category": "product_version", + "name": "mtr/mtr-rhel8-operator@sha256:a4a3645358bca40d262ab0e796d5462c1bbc34be1d6fed6ecb0d09e4ac55f7a6_ppc64le", + "product": { + "name": "mtr/mtr-rhel8-operator@sha256:a4a3645358bca40d262ab0e796d5462c1bbc34be1d6fed6ecb0d09e4ac55f7a6_ppc64le", + "product_id": "mtr/mtr-rhel8-operator@sha256:a4a3645358bca40d262ab0e796d5462c1bbc34be1d6fed6ecb0d09e4ac55f7a6_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/mtr-rhel8-operator@sha256:a4a3645358bca40d262ab0e796d5462c1bbc34be1d6fed6ecb0d09e4ac55f7a6?arch=ppc64le&repository_url=registry.redhat.io/mtr/mtr-rhel8-operator&tag=latest" + } + } + }, + { + "category": "product_version", + "name": "mtr/mtr-web-container-rhel8@sha256:12bb394a495be9cd01d5038256299462e5ec93ba4b593e60687f23f9f75090f1_ppc64le", + "product": { + "name": "mtr/mtr-web-container-rhel8@sha256:12bb394a495be9cd01d5038256299462e5ec93ba4b593e60687f23f9f75090f1_ppc64le", + "product_id": "mtr/mtr-web-container-rhel8@sha256:12bb394a495be9cd01d5038256299462e5ec93ba4b593e60687f23f9f75090f1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/mtr-web-container-rhel8@sha256:12bb394a495be9cd01d5038256299462e5ec93ba4b593e60687f23f9f75090f1?arch=ppc64le&repository_url=registry.redhat.io/mtr/mtr-web-container-rhel8&tag=latest" + } + } + }, + { + "category": "product_version", + "name": "mtr/mtr-web-executor-container-rhel8@sha256:ae7617841e45fb30cd8880ca48481b8451a203d63e06bc69c54f18152c034a53_ppc64le", + "product": { + "name": "mtr/mtr-web-executor-container-rhel8@sha256:ae7617841e45fb30cd8880ca48481b8451a203d63e06bc69c54f18152c034a53_ppc64le", + "product_id": "mtr/mtr-web-executor-container-rhel8@sha256:ae7617841e45fb30cd8880ca48481b8451a203d63e06bc69c54f18152c034a53_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/mtr-web-executor-container-rhel8@sha256:ae7617841e45fb30cd8880ca48481b8451a203d63e06bc69c54f18152c034a53?arch=ppc64le&repository_url=registry.redhat.io/mtr/mtr-web-executor-container-rhel8&tag=latest" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "mtr/mtr-operator-bundle@sha256:d625ba8a43c5e2f672fc1eacf894792cb11be7397a7678ae768dfb37f5feaf29_amd64", + "product": { + "name": "mtr/mtr-operator-bundle@sha256:d625ba8a43c5e2f672fc1eacf894792cb11be7397a7678ae768dfb37f5feaf29_amd64", + "product_id": "mtr/mtr-operator-bundle@sha256:d625ba8a43c5e2f672fc1eacf894792cb11be7397a7678ae768dfb37f5feaf29_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtr-operator-bundle@sha256:d625ba8a43c5e2f672fc1eacf894792cb11be7397a7678ae768dfb37f5feaf29?arch=amd64&repository_url=registry.redhat.io/mtr/mtr-operator-bundle&tag=latest" + } + } + }, + { + "category": "product_version", + "name": "mtr/mtr-rhel8-operator@sha256:8b69faaf8c6d271bdc915cbeaf8e8aba924ab061d5c46aaacb17db8adcfadb84_amd64", + "product": { + "name": "mtr/mtr-rhel8-operator@sha256:8b69faaf8c6d271bdc915cbeaf8e8aba924ab061d5c46aaacb17db8adcfadb84_amd64", + "product_id": "mtr/mtr-rhel8-operator@sha256:8b69faaf8c6d271bdc915cbeaf8e8aba924ab061d5c46aaacb17db8adcfadb84_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtr-rhel8-operator@sha256:8b69faaf8c6d271bdc915cbeaf8e8aba924ab061d5c46aaacb17db8adcfadb84?arch=amd64&repository_url=registry.redhat.io/mtr/mtr-rhel8-operator&tag=latest" + } + } + }, + { + "category": "product_version", + "name": "mtr/mtr-web-container-rhel8@sha256:c3e0a56a743b64e197f24898c847825102ec9309a97112906cb03a1c3f9f93e6_amd64", + "product": { + "name": "mtr/mtr-web-container-rhel8@sha256:c3e0a56a743b64e197f24898c847825102ec9309a97112906cb03a1c3f9f93e6_amd64", + "product_id": "mtr/mtr-web-container-rhel8@sha256:c3e0a56a743b64e197f24898c847825102ec9309a97112906cb03a1c3f9f93e6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtr-web-container-rhel8@sha256:c3e0a56a743b64e197f24898c847825102ec9309a97112906cb03a1c3f9f93e6?arch=amd64&repository_url=registry.redhat.io/mtr/mtr-web-container-rhel8&tag=latest" + } + } + }, + { + "category": "product_version", + "name": "mtr/mtr-web-executor-container-rhel8@sha256:dd3df81b45579bf9cd1480922504ddf85dd09c5d8d99de5b0a1886b3fb6e02c2_amd64", + "product": { + "name": "mtr/mtr-web-executor-container-rhel8@sha256:dd3df81b45579bf9cd1480922504ddf85dd09c5d8d99de5b0a1886b3fb6e02c2_amd64", + "product_id": "mtr/mtr-web-executor-container-rhel8@sha256:dd3df81b45579bf9cd1480922504ddf85dd09c5d8d99de5b0a1886b3fb6e02c2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtr-web-executor-container-rhel8@sha256:dd3df81b45579bf9cd1480922504ddf85dd09c5d8d99de5b0a1886b3fb6e02c2?arch=amd64&repository_url=registry.redhat.io/mtr/mtr-web-executor-container-rhel8&tag=latest" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "run-once-duration-override-operator/run-once-duration-override-rhel8@sha256:70c5f120078cec9a22f2e754e5606ebe5d086e38aeb5fc9daac18fced6705f43_amd64", + "product": { + "name": "run-once-duration-override-operator/run-once-duration-override-rhel8@sha256:70c5f120078cec9a22f2e754e5606ebe5d086e38aeb5fc9daac18fced6705f43_amd64", + "product_id": "run-once-duration-override-operator/run-once-duration-override-rhel8@sha256:70c5f120078cec9a22f2e754e5606ebe5d086e38aeb5fc9daac18fced6705f43_amd64", + "product_identification_helper": { + "purl": "pkg:oci/run-once-duration-override-rhel8@sha256:70c5f120078cec9a22f2e754e5606ebe5d086e38aeb5fc9daac18fced6705f43?arch=amd64&repository_url=registry.redhat.io/run-once-duration-override-operator/run-once-duration-override-rhel8&tag=v1.0-30" + } + } + }, + { + "category": "product_version", + "name": "run-once-duration-override-operator/run-once-duration-override-operator-bundle@sha256:5e2f382d233fab6817da02d17459b3e6e8c16f0be58270221b66d87ce3d09cc6_amd64", + "product": { + "name": "run-once-duration-override-operator/run-once-duration-override-operator-bundle@sha256:5e2f382d233fab6817da02d17459b3e6e8c16f0be58270221b66d87ce3d09cc6_amd64", + "product_id": "run-once-duration-override-operator/run-once-duration-override-operator-bundle@sha256:5e2f382d233fab6817da02d17459b3e6e8c16f0be58270221b66d87ce3d09cc6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/run-once-duration-override-operator-bundle@sha256:5e2f382d233fab6817da02d17459b3e6e8c16f0be58270221b66d87ce3d09cc6?arch=amd64&repository_url=registry.redhat.io/run-once-duration-override-operator/run-once-duration-override-operator-bundle&tag=v1.0-20" + } + } + }, + { + "category": "product_version", + "name": "run-once-duration-override-operator/run-once-duration-override-operator-rhel8@sha256:a43806835a54ea3c712e1cbb96cd7ff2cd0434912ae1cbc11b4f54524c15c40b_amd64", + "product": { + "name": "run-once-duration-override-operator/run-once-duration-override-operator-rhel8@sha256:a43806835a54ea3c712e1cbb96cd7ff2cd0434912ae1cbc11b4f54524c15c40b_amd64", + "product_id": "run-once-duration-override-operator/run-once-duration-override-operator-rhel8@sha256:a43806835a54ea3c712e1cbb96cd7ff2cd0434912ae1cbc11b4f54524c15c40b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/run-once-duration-override-operator-rhel8@sha256:a43806835a54ea3c712e1cbb96cd7ff2cd0434912ae1cbc11b4f54524c15c40b?arch=amd64&repository_url=registry.redhat.io/run-once-duration-override-operator/run-once-duration-override-operator-rhel8&tag=v1.0-25" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-secondary-scheduler-operator/secondary-scheduler-operator-bundle@sha256:51458b1eafc32dd920558e757506e9b71856b5b47744284c961c5430766536b2_amd64", + "product": { + "name": "openshift-secondary-scheduler-operator/secondary-scheduler-operator-bundle@sha256:51458b1eafc32dd920558e757506e9b71856b5b47744284c961c5430766536b2_amd64", + "product_id": "openshift-secondary-scheduler-operator/secondary-scheduler-operator-bundle@sha256:51458b1eafc32dd920558e757506e9b71856b5b47744284c961c5430766536b2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/secondary-scheduler-operator-bundle@sha256:51458b1eafc32dd920558e757506e9b71856b5b47744284c961c5430766536b2?arch=amd64&repository_url=registry.redhat.io/openshift-secondary-scheduler-operator/secondary-scheduler-operator-bundle&tag=v1.1-34" + } + } + }, + { + "category": "product_version", + "name": "openshift-secondary-scheduler-operator/secondary-scheduler-operator-rhel8@sha256:fb305e8ee14a0cd1f45da0bdd9000a1f9d0a9c4dd20e300004c3cef26997b9b8_amd64", + "product": { + "name": "openshift-secondary-scheduler-operator/secondary-scheduler-operator-rhel8@sha256:fb305e8ee14a0cd1f45da0bdd9000a1f9d0a9c4dd20e300004c3cef26997b9b8_amd64", + "product_id": "openshift-secondary-scheduler-operator/secondary-scheduler-operator-rhel8@sha256:fb305e8ee14a0cd1f45da0bdd9000a1f9d0a9c4dd20e300004c3cef26997b9b8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/secondary-scheduler-operator-rhel8@sha256:fb305e8ee14a0cd1f45da0bdd9000a1f9d0a9c4dd20e300004c3cef26997b9b8?arch=amd64&repository_url=registry.redhat.io/openshift-secondary-scheduler-operator/secondary-scheduler-operator-rhel8&tag=v1.1-37" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:ae0f7c315e5eb2ba0fc166966ffb7ebac10d399cafa47132f7333b06d2f15b99_amd64", + "product": { + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:ae0f7c315e5eb2ba0fc166966ffb7ebac10d399cafa47132f7333b06d2f15b99_amd64", + "product_id": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:ae0f7c315e5eb2ba0fc166966ffb7ebac10d399cafa47132f7333b06d2f15b99_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-governance-policy-addon-controller-rhel8@sha256:ae0f7c315e5eb2ba0fc166966ffb7ebac10d399cafa47132f7333b06d2f15b99?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:751c1e2bd2d9a69825825e26d202604e61afc09bef83bb065cca5f29a962eb75_amd64", + "product": { + "name": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:751c1e2bd2d9a69825825e26d202604e61afc09bef83bb065cca5f29a962eb75_amd64", + "product_id": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:751c1e2bd2d9a69825825e26d202604e61afc09bef83bb065cca5f29a962eb75_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-governance-policy-framework-addon-rhel8@sha256:751c1e2bd2d9a69825825e26d202604e61afc09bef83bb065cca5f29a962eb75?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-grafana-rhel8@sha256:25ba12ecdf0ffdc8d6df41b422bcd3b036dab4ec0cc24152fcda39f23dea222c_amd64", + "product": { + "name": "rhacm2/acm-grafana-rhel8@sha256:25ba12ecdf0ffdc8d6df41b422bcd3b036dab4ec0cc24152fcda39f23dea222c_amd64", + "product_id": "rhacm2/acm-grafana-rhel8@sha256:25ba12ecdf0ffdc8d6df41b422bcd3b036dab4ec0cc24152fcda39f23dea222c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-grafana-rhel8@sha256:25ba12ecdf0ffdc8d6df41b422bcd3b036dab4ec0cc24152fcda39f23dea222c?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-grafana-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-must-gather-rhel8@sha256:3cdce8a566221b913a88d9b7a9afd9a7766e15675957963a8cbd3459441955c5_amd64", + "product": { + "name": "rhacm2/acm-must-gather-rhel8@sha256:3cdce8a566221b913a88d9b7a9afd9a7766e15675957963a8cbd3459441955c5_amd64", + "product_id": "rhacm2/acm-must-gather-rhel8@sha256:3cdce8a566221b913a88d9b7a9afd9a7766e15675957963a8cbd3459441955c5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-must-gather-rhel8@sha256:3cdce8a566221b913a88d9b7a9afd9a7766e15675957963a8cbd3459441955c5?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-must-gather-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-operator-bundle@sha256:6a324ce5650572e54c17daebdea1f04d0db27d36862ea1eccef55661c96a0a38_amd64", + "product": { + "name": "rhacm2/acm-operator-bundle@sha256:6a324ce5650572e54c17daebdea1f04d0db27d36862ea1eccef55661c96a0a38_amd64", + "product_id": "rhacm2/acm-operator-bundle@sha256:6a324ce5650572e54c17daebdea1f04d0db27d36862ea1eccef55661c96a0a38_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-operator-bundle@sha256:6a324ce5650572e54c17daebdea1f04d0db27d36862ea1eccef55661c96a0a38?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-operator-bundle&tag=v2.8.3-17" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:a8003ffc721d10f5ebcc1370f19aa7c36d0cfe6845e6727fd90b4f04eec1e1be_amd64", + "product": { + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:a8003ffc721d10f5ebcc1370f19aa7c36d0cfe6845e6727fd90b4f04eec1e1be_amd64", + "product_id": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:a8003ffc721d10f5ebcc1370f19aa7c36d0cfe6845e6727fd90b4f04eec1e1be_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-prometheus-config-reloader-rhel8@sha256:a8003ffc721d10f5ebcc1370f19aa7c36d0cfe6845e6727fd90b4f04eec1e1be?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-prometheus-rhel8@sha256:2c6617b626b4eb1bb72d5ed6da29e5bbd3c1c469950054d8f7ff5ccd43c4d9cf_amd64", + "product": { + "name": "rhacm2/acm-prometheus-rhel8@sha256:2c6617b626b4eb1bb72d5ed6da29e5bbd3c1c469950054d8f7ff5ccd43c4d9cf_amd64", + "product_id": "rhacm2/acm-prometheus-rhel8@sha256:2c6617b626b4eb1bb72d5ed6da29e5bbd3c1c469950054d8f7ff5ccd43c4d9cf_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-prometheus-rhel8@sha256:2c6617b626b4eb1bb72d5ed6da29e5bbd3c1c469950054d8f7ff5ccd43c4d9cf?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-prometheus-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-search-indexer-rhel8@sha256:e9400f0866719bdc0722fc2de331d0fe7e95235809bc1e9f234ec0505069d415_amd64", + "product": { + "name": "rhacm2/acm-search-indexer-rhel8@sha256:e9400f0866719bdc0722fc2de331d0fe7e95235809bc1e9f234ec0505069d415_amd64", + "product_id": "rhacm2/acm-search-indexer-rhel8@sha256:e9400f0866719bdc0722fc2de331d0fe7e95235809bc1e9f234ec0505069d415_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-search-indexer-rhel8@sha256:e9400f0866719bdc0722fc2de331d0fe7e95235809bc1e9f234ec0505069d415?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-search-indexer-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-search-v2-api-rhel8@sha256:058c73937555fe4958768cc256557479d7b7457a2b9b54ab0cb1b45a283c0e9f_amd64", + "product": { + "name": "rhacm2/acm-search-v2-api-rhel8@sha256:058c73937555fe4958768cc256557479d7b7457a2b9b54ab0cb1b45a283c0e9f_amd64", + "product_id": "rhacm2/acm-search-v2-api-rhel8@sha256:058c73937555fe4958768cc256557479d7b7457a2b9b54ab0cb1b45a283c0e9f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-search-v2-api-rhel8@sha256:058c73937555fe4958768cc256557479d7b7457a2b9b54ab0cb1b45a283c0e9f?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-search-v2-api-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-search-v2-rhel8@sha256:7258c07ed8a7390aa22132fa41a00b6fa226974008d4c0431d84e5de5d391611_amd64", + "product": { + "name": "rhacm2/acm-search-v2-rhel8@sha256:7258c07ed8a7390aa22132fa41a00b6fa226974008d4c0431d84e5de5d391611_amd64", + "product_id": "rhacm2/acm-search-v2-rhel8@sha256:7258c07ed8a7390aa22132fa41a00b6fa226974008d4c0431d84e5de5d391611_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-search-v2-rhel8@sha256:7258c07ed8a7390aa22132fa41a00b6fa226974008d4c0431d84e5de5d391611?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-search-v2-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:178fff3d28af5530f439c63a258a58963bc79a157ee44db5074235e95a33f0f0_amd64", + "product": { + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:178fff3d28af5530f439c63a258a58963bc79a157ee44db5074235e95a33f0f0_amd64", + "product_id": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:178fff3d28af5530f439c63a258a58963bc79a157ee44db5074235e95a33f0f0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/acm-volsync-addon-controller-rhel8@sha256:178fff3d28af5530f439c63a258a58963bc79a157ee44db5074235e95a33f0f0?arch=amd64&repository_url=registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/cert-policy-controller-rhel8@sha256:3070a15209ffe7feb42e9955e307aa127be19dfca78e50599144382c57be04e6_amd64", + "product": { + "name": "rhacm2/cert-policy-controller-rhel8@sha256:3070a15209ffe7feb42e9955e307aa127be19dfca78e50599144382c57be04e6_amd64", + "product_id": "rhacm2/cert-policy-controller-rhel8@sha256:3070a15209ffe7feb42e9955e307aa127be19dfca78e50599144382c57be04e6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cert-policy-controller-rhel8@sha256:3070a15209ffe7feb42e9955e307aa127be19dfca78e50599144382c57be04e6?arch=amd64&repository_url=registry.redhat.io/rhacm2/cert-policy-controller-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:8f9405dc9f298d99627bf0803bad675d6329db0a59537e077040fee5720f863f_amd64", + "product": { + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:8f9405dc9f298d99627bf0803bad675d6329db0a59537e077040fee5720f863f_amd64", + "product_id": "rhacm2/cluster-backup-rhel8-operator@sha256:8f9405dc9f298d99627bf0803bad675d6329db0a59537e077040fee5720f863f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-backup-rhel8-operator@sha256:8f9405dc9f298d99627bf0803bad675d6329db0a59537e077040fee5720f863f?arch=amd64&repository_url=registry.redhat.io/rhacm2/cluster-backup-rhel8-operator&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/config-policy-controller-rhel8@sha256:3be79ccfb0def98cd55002728e41f9f1ce4b4887dbc3a056417c43c6d9dd6974_amd64", + "product": { + "name": "rhacm2/config-policy-controller-rhel8@sha256:3be79ccfb0def98cd55002728e41f9f1ce4b4887dbc3a056417c43c6d9dd6974_amd64", + "product_id": "rhacm2/config-policy-controller-rhel8@sha256:3be79ccfb0def98cd55002728e41f9f1ce4b4887dbc3a056417c43c6d9dd6974_amd64", + "product_identification_helper": { + "purl": "pkg:oci/config-policy-controller-rhel8@sha256:3be79ccfb0def98cd55002728e41f9f1ce4b4887dbc3a056417c43c6d9dd6974?arch=amd64&repository_url=registry.redhat.io/rhacm2/config-policy-controller-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/console-rhel8@sha256:37aefd991caedb01d3349c17984897dab48c49f9f1792b73658c8b3ab8070866_amd64", + "product": { + "name": "rhacm2/console-rhel8@sha256:37aefd991caedb01d3349c17984897dab48c49f9f1792b73658c8b3ab8070866_amd64", + "product_id": "rhacm2/console-rhel8@sha256:37aefd991caedb01d3349c17984897dab48c49f9f1792b73658c8b3ab8070866_amd64", + "product_identification_helper": { + "purl": "pkg:oci/console-rhel8@sha256:37aefd991caedb01d3349c17984897dab48c49f9f1792b73658c8b3ab8070866?arch=amd64&repository_url=registry.redhat.io/rhacm2/console-rhel8&tag=v2.8.3-7" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:335e491f0e0ecf8c115a5f45833b8601a3fe3284bd9e3b9be8760b96c27fd761_amd64", + "product": { + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:335e491f0e0ecf8c115a5f45833b8601a3fe3284bd9e3b9be8760b96c27fd761_amd64", + "product_id": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:335e491f0e0ecf8c115a5f45833b8601a3fe3284bd9e3b9be8760b96c27fd761_amd64", + "product_identification_helper": { + "purl": "pkg:oci/endpoint-monitoring-rhel8-operator@sha256:335e491f0e0ecf8c115a5f45833b8601a3fe3284bd9e3b9be8760b96c27fd761?arch=amd64&repository_url=registry.redhat.io/rhacm2/endpoint-monitoring-rhel8-operator&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:198ad3884b346f49e847f6d2b14f34e902140e4441495c892b0c843e63c24943_amd64", + "product": { + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:198ad3884b346f49e847f6d2b14f34e902140e4441495c892b0c843e63c24943_amd64", + "product_id": "rhacm2/governance-policy-propagator-rhel8@sha256:198ad3884b346f49e847f6d2b14f34e902140e4441495c892b0c843e63c24943_amd64", + "product_identification_helper": { + "purl": "pkg:oci/governance-policy-propagator-rhel8@sha256:198ad3884b346f49e847f6d2b14f34e902140e4441495c892b0c843e63c24943?arch=amd64&repository_url=registry.redhat.io/rhacm2/governance-policy-propagator-rhel8&tag=v2.8.3-7" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:7d1bfe68bea92a14a58cb9563cd243bafe05ade62000c9da013a2def9243fcda_amd64", + "product": { + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:7d1bfe68bea92a14a58cb9563cd243bafe05ade62000c9da013a2def9243fcda_amd64", + "product_id": "rhacm2/grafana-dashboard-loader-rhel8@sha256:7d1bfe68bea92a14a58cb9563cd243bafe05ade62000c9da013a2def9243fcda_amd64", + "product_identification_helper": { + "purl": "pkg:oci/grafana-dashboard-loader-rhel8@sha256:7d1bfe68bea92a14a58cb9563cd243bafe05ade62000c9da013a2def9243fcda?arch=amd64&repository_url=registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/iam-policy-controller-rhel8@sha256:9040f97acb8e727a19a94bd66efffe6aea1ae8d299387c18de039fc6720d8032_amd64", + "product": { + "name": "rhacm2/iam-policy-controller-rhel8@sha256:9040f97acb8e727a19a94bd66efffe6aea1ae8d299387c18de039fc6720d8032_amd64", + "product_id": "rhacm2/iam-policy-controller-rhel8@sha256:9040f97acb8e727a19a94bd66efffe6aea1ae8d299387c18de039fc6720d8032_amd64", + "product_identification_helper": { + "purl": "pkg:oci/iam-policy-controller-rhel8@sha256:9040f97acb8e727a19a94bd66efffe6aea1ae8d299387c18de039fc6720d8032?arch=amd64&repository_url=registry.redhat.io/rhacm2/iam-policy-controller-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/insights-client-rhel8@sha256:21679709b39db5d24cd20ec18f4d305a2e0d297645b457b40b5ac0c415fca7ed_amd64", + "product": { + "name": "rhacm2/insights-client-rhel8@sha256:21679709b39db5d24cd20ec18f4d305a2e0d297645b457b40b5ac0c415fca7ed_amd64", + "product_id": "rhacm2/insights-client-rhel8@sha256:21679709b39db5d24cd20ec18f4d305a2e0d297645b457b40b5ac0c415fca7ed_amd64", + "product_identification_helper": { + "purl": "pkg:oci/insights-client-rhel8@sha256:21679709b39db5d24cd20ec18f4d305a2e0d297645b457b40b5ac0c415fca7ed?arch=amd64&repository_url=registry.redhat.io/rhacm2/insights-client-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/insights-metrics-rhel8@sha256:f63f53be892ac9d1b9e347a0be4d1670ab3615ce36d9156dd4f7696561a6c89b_amd64", + "product": { + "name": "rhacm2/insights-metrics-rhel8@sha256:f63f53be892ac9d1b9e347a0be4d1670ab3615ce36d9156dd4f7696561a6c89b_amd64", + "product_id": "rhacm2/insights-metrics-rhel8@sha256:f63f53be892ac9d1b9e347a0be4d1670ab3615ce36d9156dd4f7696561a6c89b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/insights-metrics-rhel8@sha256:f63f53be892ac9d1b9e347a0be4d1670ab3615ce36d9156dd4f7696561a6c89b?arch=amd64&repository_url=registry.redhat.io/rhacm2/insights-metrics-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:a9e1277a6c105698aadea156f2bd8928e112898b1b71304e080866dfc27f975a_amd64", + "product": { + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:a9e1277a6c105698aadea156f2bd8928e112898b1b71304e080866dfc27f975a_amd64", + "product_id": "rhacm2/klusterlet-addon-controller-rhel8@sha256:a9e1277a6c105698aadea156f2bd8928e112898b1b71304e080866dfc27f975a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/klusterlet-addon-controller-rhel8@sha256:a9e1277a6c105698aadea156f2bd8928e112898b1b71304e080866dfc27f975a?arch=amd64&repository_url=registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:a21ba83c2fe2d36e6e6333a72b8af74c46187256590bf38cd4bb349581f9fee2_amd64", + "product": { + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:a21ba83c2fe2d36e6e6333a72b8af74c46187256590bf38cd4bb349581f9fee2_amd64", + "product_id": "rhacm2/kube-rbac-proxy-rhel8@sha256:a21ba83c2fe2d36e6e6333a72b8af74c46187256590bf38cd4bb349581f9fee2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kube-rbac-proxy-rhel8@sha256:a21ba83c2fe2d36e6e6333a72b8af74c46187256590bf38cd4bb349581f9fee2?arch=amd64&repository_url=registry.redhat.io/rhacm2/kube-rbac-proxy-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/kube-state-metrics-rhel8@sha256:e82b3a6d566d5f602ab58ade6511e6e1e10dd5dbe58af89e415797b626185b9b_amd64", + "product": { + "name": "rhacm2/kube-state-metrics-rhel8@sha256:e82b3a6d566d5f602ab58ade6511e6e1e10dd5dbe58af89e415797b626185b9b_amd64", + "product_id": "rhacm2/kube-state-metrics-rhel8@sha256:e82b3a6d566d5f602ab58ade6511e6e1e10dd5dbe58af89e415797b626185b9b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kube-state-metrics-rhel8@sha256:e82b3a6d566d5f602ab58ade6511e6e1e10dd5dbe58af89e415797b626185b9b?arch=amd64&repository_url=registry.redhat.io/rhacm2/kube-state-metrics-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/memcached-rhel8@sha256:9afa5618d8f6414cd94a0207ae9acceec2a5028974fd198d5c2f50d445a2dd50_amd64", + "product": { + "name": "rhacm2/memcached-rhel8@sha256:9afa5618d8f6414cd94a0207ae9acceec2a5028974fd198d5c2f50d445a2dd50_amd64", + "product_id": "rhacm2/memcached-rhel8@sha256:9afa5618d8f6414cd94a0207ae9acceec2a5028974fd198d5c2f50d445a2dd50_amd64", + "product_identification_helper": { + "purl": "pkg:oci/memcached-rhel8@sha256:9afa5618d8f6414cd94a0207ae9acceec2a5028974fd198d5c2f50d445a2dd50?arch=amd64&repository_url=registry.redhat.io/rhacm2/memcached-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/memcached-exporter-rhel8@sha256:5cace1854f0c245b9b94a76eb3ddbf7fe65a15efe523273abc7a5e214582c266_amd64", + "product": { + "name": "rhacm2/memcached-exporter-rhel8@sha256:5cace1854f0c245b9b94a76eb3ddbf7fe65a15efe523273abc7a5e214582c266_amd64", + "product_id": "rhacm2/memcached-exporter-rhel8@sha256:5cace1854f0c245b9b94a76eb3ddbf7fe65a15efe523273abc7a5e214582c266_amd64", + "product_identification_helper": { + "purl": "pkg:oci/memcached-exporter-rhel8@sha256:5cace1854f0c245b9b94a76eb3ddbf7fe65a15efe523273abc7a5e214582c266?arch=amd64&repository_url=registry.redhat.io/rhacm2/memcached-exporter-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/metrics-collector-rhel8@sha256:ebde295c5bf1c20c1a2efb8d11187add61a67f9ac5bcacd7f82ea676bf16eb65_amd64", + "product": { + "name": "rhacm2/metrics-collector-rhel8@sha256:ebde295c5bf1c20c1a2efb8d11187add61a67f9ac5bcacd7f82ea676bf16eb65_amd64", + "product_id": "rhacm2/metrics-collector-rhel8@sha256:ebde295c5bf1c20c1a2efb8d11187add61a67f9ac5bcacd7f82ea676bf16eb65_amd64", + "product_identification_helper": { + "purl": "pkg:oci/metrics-collector-rhel8@sha256:ebde295c5bf1c20c1a2efb8d11187add61a67f9ac5bcacd7f82ea676bf16eb65?arch=amd64&repository_url=registry.redhat.io/rhacm2/metrics-collector-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicloud-integrations-rhel8@sha256:09d5d1423228f8f55e95467da4417e6bc9c5bdd66b2dc68b5a54256552196bde_amd64", + "product": { + "name": "rhacm2/multicloud-integrations-rhel8@sha256:09d5d1423228f8f55e95467da4417e6bc9c5bdd66b2dc68b5a54256552196bde_amd64", + "product_id": "rhacm2/multicloud-integrations-rhel8@sha256:09d5d1423228f8f55e95467da4417e6bc9c5bdd66b2dc68b5a54256552196bde_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicloud-integrations-rhel8@sha256:09d5d1423228f8f55e95467da4417e6bc9c5bdd66b2dc68b5a54256552196bde?arch=amd64&repository_url=registry.redhat.io/rhacm2/multicloud-integrations-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multiclusterhub-rhel8@sha256:0406a9e33ff91d4ed7b98afeca50328f8434af36a4f3a82c1c3dc0da860ebcb8_amd64", + "product": { + "name": "rhacm2/multiclusterhub-rhel8@sha256:0406a9e33ff91d4ed7b98afeca50328f8434af36a4f3a82c1c3dc0da860ebcb8_amd64", + "product_id": "rhacm2/multiclusterhub-rhel8@sha256:0406a9e33ff91d4ed7b98afeca50328f8434af36a4f3a82c1c3dc0da860ebcb8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multiclusterhub-rhel8@sha256:0406a9e33ff91d4ed7b98afeca50328f8434af36a4f3a82c1c3dc0da860ebcb8?arch=amd64&repository_url=registry.redhat.io/rhacm2/multiclusterhub-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:69179b6be192d6a47aa6fdc4cab0286e63e94c217aaff3e9a5211850dfe1ef43_amd64", + "product": { + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:69179b6be192d6a47aa6fdc4cab0286e63e94c217aaff3e9a5211850dfe1ef43_amd64", + "product_id": "rhacm2/multicluster-observability-rhel8-operator@sha256:69179b6be192d6a47aa6fdc4cab0286e63e94c217aaff3e9a5211850dfe1ef43_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-observability-rhel8-operator@sha256:69179b6be192d6a47aa6fdc4cab0286e63e94c217aaff3e9a5211850dfe1ef43?arch=amd64&repository_url=registry.redhat.io/rhacm2/multicluster-observability-rhel8-operator&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:fffccc640a9b8b7c81f0dcbf385fc05b38af819a378494b9ef40d5666cf2a6af_amd64", + "product": { + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:fffccc640a9b8b7c81f0dcbf385fc05b38af819a378494b9ef40d5666cf2a6af_amd64", + "product_id": "rhacm2/multicluster-operators-application-rhel8@sha256:fffccc640a9b8b7c81f0dcbf385fc05b38af819a378494b9ef40d5666cf2a6af_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-application-rhel8@sha256:fffccc640a9b8b7c81f0dcbf385fc05b38af819a378494b9ef40d5666cf2a6af?arch=amd64&repository_url=registry.redhat.io/rhacm2/multicluster-operators-application-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:cde618e9b8c0a3262fc612ed8970d6b948bc8af4f5afee54f5c719f5a58ef881_amd64", + "product": { + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:cde618e9b8c0a3262fc612ed8970d6b948bc8af4f5afee54f5c719f5a58ef881_amd64", + "product_id": "rhacm2/multicluster-operators-channel-rhel8@sha256:cde618e9b8c0a3262fc612ed8970d6b948bc8af4f5afee54f5c719f5a58ef881_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-channel-rhel8@sha256:cde618e9b8c0a3262fc612ed8970d6b948bc8af4f5afee54f5c719f5a58ef881?arch=amd64&repository_url=registry.redhat.io/rhacm2/multicluster-operators-channel-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:76468bac9ac8fc1cb96518eeca3c79c39fb28cccfc7446b698194b265e8067f1_amd64", + "product": { + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:76468bac9ac8fc1cb96518eeca3c79c39fb28cccfc7446b698194b265e8067f1_amd64", + "product_id": "rhacm2/multicluster-operators-subscription-rhel8@sha256:76468bac9ac8fc1cb96518eeca3c79c39fb28cccfc7446b698194b265e8067f1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-subscription-rhel8@sha256:76468bac9ac8fc1cb96518eeca3c79c39fb28cccfc7446b698194b265e8067f1?arch=amd64&repository_url=registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/node-exporter-rhel8@sha256:4ac90daec74a95efbbd4db97b0f38c3dc364151429702d190791c374382ee8ec_amd64", + "product": { + "name": "rhacm2/node-exporter-rhel8@sha256:4ac90daec74a95efbbd4db97b0f38c3dc364151429702d190791c374382ee8ec_amd64", + "product_id": "rhacm2/node-exporter-rhel8@sha256:4ac90daec74a95efbbd4db97b0f38c3dc364151429702d190791c374382ee8ec_amd64", + "product_identification_helper": { + "purl": "pkg:oci/node-exporter-rhel8@sha256:4ac90daec74a95efbbd4db97b0f38c3dc364151429702d190791c374382ee8ec?arch=amd64&repository_url=registry.redhat.io/rhacm2/node-exporter-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/observatorium-rhel8@sha256:92fd9dffb48a6712d7f8351404561b0d96917874cddc3bdefef0df18a150710e_amd64", + "product": { + "name": "rhacm2/observatorium-rhel8@sha256:92fd9dffb48a6712d7f8351404561b0d96917874cddc3bdefef0df18a150710e_amd64", + "product_id": "rhacm2/observatorium-rhel8@sha256:92fd9dffb48a6712d7f8351404561b0d96917874cddc3bdefef0df18a150710e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/observatorium-rhel8@sha256:92fd9dffb48a6712d7f8351404561b0d96917874cddc3bdefef0df18a150710e?arch=amd64&repository_url=registry.redhat.io/rhacm2/observatorium-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/observatorium-rhel8-operator@sha256:415f56738bc2011a5a058f64cd61c49c6d5a839889126bdbdd03372c6c4048da_amd64", + "product": { + "name": "rhacm2/observatorium-rhel8-operator@sha256:415f56738bc2011a5a058f64cd61c49c6d5a839889126bdbdd03372c6c4048da_amd64", + "product_id": "rhacm2/observatorium-rhel8-operator@sha256:415f56738bc2011a5a058f64cd61c49c6d5a839889126bdbdd03372c6c4048da_amd64", + "product_identification_helper": { + "purl": "pkg:oci/observatorium-rhel8-operator@sha256:415f56738bc2011a5a058f64cd61c49c6d5a839889126bdbdd03372c6c4048da?arch=amd64&repository_url=registry.redhat.io/rhacm2/observatorium-rhel8-operator&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:0d34ad23f02657ff74534f8badb61066c6e1d4d35114b85172399571839175ca_amd64", + "product": { + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:0d34ad23f02657ff74534f8badb61066c6e1d4d35114b85172399571839175ca_amd64", + "product_id": "rhacm2/prometheus-alertmanager-rhel8@sha256:0d34ad23f02657ff74534f8badb61066c6e1d4d35114b85172399571839175ca_amd64", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-alertmanager-rhel8@sha256:0d34ad23f02657ff74534f8badb61066c6e1d4d35114b85172399571839175ca?arch=amd64&repository_url=registry.redhat.io/rhacm2/prometheus-alertmanager-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/prometheus-rhel8@sha256:1c3dd279c41c323216b4f5741b2cb71ac28e99ff550478a847ee740441886461_amd64", + "product": { + "name": "rhacm2/prometheus-rhel8@sha256:1c3dd279c41c323216b4f5741b2cb71ac28e99ff550478a847ee740441886461_amd64", + "product_id": "rhacm2/prometheus-rhel8@sha256:1c3dd279c41c323216b4f5741b2cb71ac28e99ff550478a847ee740441886461_amd64", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-rhel8@sha256:1c3dd279c41c323216b4f5741b2cb71ac28e99ff550478a847ee740441886461?arch=amd64&repository_url=registry.redhat.io/rhacm2/prometheus-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:bdd40befd1bb0f660f01ee4a1ba782e885ffe82bedc8799f1d0ca946b28a90d8_amd64", + "product": { + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:bdd40befd1bb0f660f01ee4a1ba782e885ffe82bedc8799f1d0ca946b28a90d8_amd64", + "product_id": "rhacm2/rbac-query-proxy-rhel8@sha256:bdd40befd1bb0f660f01ee4a1ba782e885ffe82bedc8799f1d0ca946b28a90d8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rbac-query-proxy-rhel8@sha256:bdd40befd1bb0f660f01ee4a1ba782e885ffe82bedc8799f1d0ca946b28a90d8?arch=amd64&repository_url=registry.redhat.io/rhacm2/rbac-query-proxy-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/search-collector-rhel8@sha256:075f357114bf42f157f888115eb05db87cb1e4bd100d162efb91ed4e83edca4c_amd64", + "product": { + "name": "rhacm2/search-collector-rhel8@sha256:075f357114bf42f157f888115eb05db87cb1e4bd100d162efb91ed4e83edca4c_amd64", + "product_id": "rhacm2/search-collector-rhel8@sha256:075f357114bf42f157f888115eb05db87cb1e4bd100d162efb91ed4e83edca4c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/search-collector-rhel8@sha256:075f357114bf42f157f888115eb05db87cb1e4bd100d162efb91ed4e83edca4c?arch=amd64&repository_url=registry.redhat.io/rhacm2/search-collector-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/submariner-addon-rhel8@sha256:2f3e6474a2f980a19739ef1d0a5b7253b9a2159571fadfc417a6e1ab5f211316_amd64", + "product": { + "name": "rhacm2/submariner-addon-rhel8@sha256:2f3e6474a2f980a19739ef1d0a5b7253b9a2159571fadfc417a6e1ab5f211316_amd64", + "product_id": "rhacm2/submariner-addon-rhel8@sha256:2f3e6474a2f980a19739ef1d0a5b7253b9a2159571fadfc417a6e1ab5f211316_amd64", + "product_identification_helper": { + "purl": "pkg:oci/submariner-addon-rhel8@sha256:2f3e6474a2f980a19739ef1d0a5b7253b9a2159571fadfc417a6e1ab5f211316?arch=amd64&repository_url=registry.redhat.io/rhacm2/submariner-addon-rhel8&tag=v2.8.3-8" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/thanos-rhel8@sha256:e23a3b213824a4ce701d4c3d07ad01b8be15a05c365098570b298666fefceaf2_amd64", + "product": { + "name": "rhacm2/thanos-rhel8@sha256:e23a3b213824a4ce701d4c3d07ad01b8be15a05c365098570b298666fefceaf2_amd64", + "product_id": "rhacm2/thanos-rhel8@sha256:e23a3b213824a4ce701d4c3d07ad01b8be15a05c365098570b298666fefceaf2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/thanos-rhel8@sha256:e23a3b213824a4ce701d4c3d07ad01b8be15a05c365098570b298666fefceaf2?arch=amd64&repository_url=registry.redhat.io/rhacm2/thanos-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:4fde5e8108d91c67542f6e0e8f81783d5e5d25ca312dfdd8ff1d2c90f4c3d291_amd64", + "product": { + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:4fde5e8108d91c67542f6e0e8f81783d5e5d25ca312dfdd8ff1d2c90f4c3d291_amd64", + "product_id": "rhacm2/thanos-receive-controller-rhel8@sha256:4fde5e8108d91c67542f6e0e8f81783d5e5d25ca312dfdd8ff1d2c90f4c3d291_amd64", + "product_identification_helper": { + "purl": "pkg:oci/thanos-receive-controller-rhel8@sha256:4fde5e8108d91c67542f6e0e8f81783d5e5d25ca312dfdd8ff1d2c90f4c3d291?arch=amd64&repository_url=registry.redhat.io/rhacm2/thanos-receive-controller-rhel8&tag=v2.8.3-5" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:2d22ec274c21b8a9baee1257a6384c8711093f12048418bf77e9432fd826d7e5_ppc64le", + "product": { + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:2d22ec274c21b8a9baee1257a6384c8711093f12048418bf77e9432fd826d7e5_ppc64le", + "product_id": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:2d22ec274c21b8a9baee1257a6384c8711093f12048418bf77e9432fd826d7e5_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-governance-policy-addon-controller-rhel8@sha256:2d22ec274c21b8a9baee1257a6384c8711093f12048418bf77e9432fd826d7e5?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:5eeefe240d422252c631bee7d2c07bed893570a3af2962e5036f48489db9c8f0_ppc64le", + "product": { + "name": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:5eeefe240d422252c631bee7d2c07bed893570a3af2962e5036f48489db9c8f0_ppc64le", + "product_id": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:5eeefe240d422252c631bee7d2c07bed893570a3af2962e5036f48489db9c8f0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-governance-policy-framework-addon-rhel8@sha256:5eeefe240d422252c631bee7d2c07bed893570a3af2962e5036f48489db9c8f0?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-grafana-rhel8@sha256:1c4f46b57a32da7133acd2f6c822d16ba008012e2e8841d53a138d460e2106c8_ppc64le", + "product": { + "name": "rhacm2/acm-grafana-rhel8@sha256:1c4f46b57a32da7133acd2f6c822d16ba008012e2e8841d53a138d460e2106c8_ppc64le", + "product_id": "rhacm2/acm-grafana-rhel8@sha256:1c4f46b57a32da7133acd2f6c822d16ba008012e2e8841d53a138d460e2106c8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-grafana-rhel8@sha256:1c4f46b57a32da7133acd2f6c822d16ba008012e2e8841d53a138d460e2106c8?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-grafana-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-must-gather-rhel8@sha256:d2b819b62d625930714cd4f7e6f54c2b8e035d2c4c0cc6cbec49c7bb93500f0f_ppc64le", + "product": { + "name": "rhacm2/acm-must-gather-rhel8@sha256:d2b819b62d625930714cd4f7e6f54c2b8e035d2c4c0cc6cbec49c7bb93500f0f_ppc64le", + "product_id": "rhacm2/acm-must-gather-rhel8@sha256:d2b819b62d625930714cd4f7e6f54c2b8e035d2c4c0cc6cbec49c7bb93500f0f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-must-gather-rhel8@sha256:d2b819b62d625930714cd4f7e6f54c2b8e035d2c4c0cc6cbec49c7bb93500f0f?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-must-gather-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-operator-bundle@sha256:969c8cea475b770644c2b7b7232805b7315cdda53556e45ca4d3d1ab931cecaf_ppc64le", + "product": { + "name": "rhacm2/acm-operator-bundle@sha256:969c8cea475b770644c2b7b7232805b7315cdda53556e45ca4d3d1ab931cecaf_ppc64le", + "product_id": "rhacm2/acm-operator-bundle@sha256:969c8cea475b770644c2b7b7232805b7315cdda53556e45ca4d3d1ab931cecaf_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-operator-bundle@sha256:969c8cea475b770644c2b7b7232805b7315cdda53556e45ca4d3d1ab931cecaf?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-operator-bundle&tag=v2.8.3-17" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:9506bb2b641bab7ce5c109e300521d1124e69dd2e5033e8d987cfc5ad15e1b65_ppc64le", + "product": { + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:9506bb2b641bab7ce5c109e300521d1124e69dd2e5033e8d987cfc5ad15e1b65_ppc64le", + "product_id": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:9506bb2b641bab7ce5c109e300521d1124e69dd2e5033e8d987cfc5ad15e1b65_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-prometheus-config-reloader-rhel8@sha256:9506bb2b641bab7ce5c109e300521d1124e69dd2e5033e8d987cfc5ad15e1b65?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-prometheus-rhel8@sha256:b56b6d227dfb907ee8ab9e26337288607ecf133a1e032c708265df64c30bec10_ppc64le", + "product": { + "name": "rhacm2/acm-prometheus-rhel8@sha256:b56b6d227dfb907ee8ab9e26337288607ecf133a1e032c708265df64c30bec10_ppc64le", + "product_id": "rhacm2/acm-prometheus-rhel8@sha256:b56b6d227dfb907ee8ab9e26337288607ecf133a1e032c708265df64c30bec10_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-prometheus-rhel8@sha256:b56b6d227dfb907ee8ab9e26337288607ecf133a1e032c708265df64c30bec10?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-prometheus-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-search-indexer-rhel8@sha256:519b21080b9051d3326a374129a338f80f82ac07b2f9222f27628ace971175c2_ppc64le", + "product": { + "name": "rhacm2/acm-search-indexer-rhel8@sha256:519b21080b9051d3326a374129a338f80f82ac07b2f9222f27628ace971175c2_ppc64le", + "product_id": "rhacm2/acm-search-indexer-rhel8@sha256:519b21080b9051d3326a374129a338f80f82ac07b2f9222f27628ace971175c2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-search-indexer-rhel8@sha256:519b21080b9051d3326a374129a338f80f82ac07b2f9222f27628ace971175c2?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-search-indexer-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-search-v2-api-rhel8@sha256:f8aa1327fa5304e6630bcf508a2376552e0243760c9f8f30e5104a89bdefa6ad_ppc64le", + "product": { + "name": "rhacm2/acm-search-v2-api-rhel8@sha256:f8aa1327fa5304e6630bcf508a2376552e0243760c9f8f30e5104a89bdefa6ad_ppc64le", + "product_id": "rhacm2/acm-search-v2-api-rhel8@sha256:f8aa1327fa5304e6630bcf508a2376552e0243760c9f8f30e5104a89bdefa6ad_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-search-v2-api-rhel8@sha256:f8aa1327fa5304e6630bcf508a2376552e0243760c9f8f30e5104a89bdefa6ad?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-search-v2-api-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-search-v2-rhel8@sha256:83b861095e72d2e93aadbcce196aaac90153e175b71aea331c3f85ab35e85e74_ppc64le", + "product": { + "name": "rhacm2/acm-search-v2-rhel8@sha256:83b861095e72d2e93aadbcce196aaac90153e175b71aea331c3f85ab35e85e74_ppc64le", + "product_id": "rhacm2/acm-search-v2-rhel8@sha256:83b861095e72d2e93aadbcce196aaac90153e175b71aea331c3f85ab35e85e74_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-search-v2-rhel8@sha256:83b861095e72d2e93aadbcce196aaac90153e175b71aea331c3f85ab35e85e74?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-search-v2-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:1a58bb060db9aea2ccb8de99a12d19098688ab6e0cffb3202e9ec26bb4d43f7c_ppc64le", + "product": { + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:1a58bb060db9aea2ccb8de99a12d19098688ab6e0cffb3202e9ec26bb4d43f7c_ppc64le", + "product_id": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:1a58bb060db9aea2ccb8de99a12d19098688ab6e0cffb3202e9ec26bb4d43f7c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/acm-volsync-addon-controller-rhel8@sha256:1a58bb060db9aea2ccb8de99a12d19098688ab6e0cffb3202e9ec26bb4d43f7c?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/cert-policy-controller-rhel8@sha256:d236dc498b623adaf6df43ae7ffb11585acdd328537daff9edf96461a429ad3c_ppc64le", + "product": { + "name": "rhacm2/cert-policy-controller-rhel8@sha256:d236dc498b623adaf6df43ae7ffb11585acdd328537daff9edf96461a429ad3c_ppc64le", + "product_id": "rhacm2/cert-policy-controller-rhel8@sha256:d236dc498b623adaf6df43ae7ffb11585acdd328537daff9edf96461a429ad3c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cert-policy-controller-rhel8@sha256:d236dc498b623adaf6df43ae7ffb11585acdd328537daff9edf96461a429ad3c?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/cert-policy-controller-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:ed2b197bb829ea7568808d6c4413ddc6486f8547ca0b6f1749d7fdfaf8174c52_ppc64le", + "product": { + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:ed2b197bb829ea7568808d6c4413ddc6486f8547ca0b6f1749d7fdfaf8174c52_ppc64le", + "product_id": "rhacm2/cluster-backup-rhel8-operator@sha256:ed2b197bb829ea7568808d6c4413ddc6486f8547ca0b6f1749d7fdfaf8174c52_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-backup-rhel8-operator@sha256:ed2b197bb829ea7568808d6c4413ddc6486f8547ca0b6f1749d7fdfaf8174c52?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/cluster-backup-rhel8-operator&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/config-policy-controller-rhel8@sha256:572e07f03d2355a5b0e3fc8dccf2ad016f68ad93dd7edd9695248e07c9d37784_ppc64le", + "product": { + "name": "rhacm2/config-policy-controller-rhel8@sha256:572e07f03d2355a5b0e3fc8dccf2ad016f68ad93dd7edd9695248e07c9d37784_ppc64le", + "product_id": "rhacm2/config-policy-controller-rhel8@sha256:572e07f03d2355a5b0e3fc8dccf2ad016f68ad93dd7edd9695248e07c9d37784_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/config-policy-controller-rhel8@sha256:572e07f03d2355a5b0e3fc8dccf2ad016f68ad93dd7edd9695248e07c9d37784?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/config-policy-controller-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/console-rhel8@sha256:eca333c34cd335180edcff4b0db5050e55ef1436fb5878c7c371482f5a110998_ppc64le", + "product": { + "name": "rhacm2/console-rhel8@sha256:eca333c34cd335180edcff4b0db5050e55ef1436fb5878c7c371482f5a110998_ppc64le", + "product_id": "rhacm2/console-rhel8@sha256:eca333c34cd335180edcff4b0db5050e55ef1436fb5878c7c371482f5a110998_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/console-rhel8@sha256:eca333c34cd335180edcff4b0db5050e55ef1436fb5878c7c371482f5a110998?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/console-rhel8&tag=v2.8.3-7" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:989e584e202a5daf0ac46ccb5d29b7d921c2b7db385ae0685efd0a1e65e72431_ppc64le", + "product": { + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:989e584e202a5daf0ac46ccb5d29b7d921c2b7db385ae0685efd0a1e65e72431_ppc64le", + "product_id": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:989e584e202a5daf0ac46ccb5d29b7d921c2b7db385ae0685efd0a1e65e72431_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/endpoint-monitoring-rhel8-operator@sha256:989e584e202a5daf0ac46ccb5d29b7d921c2b7db385ae0685efd0a1e65e72431?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/endpoint-monitoring-rhel8-operator&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:ed4a390f57d41d09d3c7d10a7114ef805c90f7a199b16aa3eed304b259a33dad_ppc64le", + "product": { + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:ed4a390f57d41d09d3c7d10a7114ef805c90f7a199b16aa3eed304b259a33dad_ppc64le", + "product_id": "rhacm2/governance-policy-propagator-rhel8@sha256:ed4a390f57d41d09d3c7d10a7114ef805c90f7a199b16aa3eed304b259a33dad_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/governance-policy-propagator-rhel8@sha256:ed4a390f57d41d09d3c7d10a7114ef805c90f7a199b16aa3eed304b259a33dad?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/governance-policy-propagator-rhel8&tag=v2.8.3-7" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:1373ba0c04ed11c621995495ca56e57d8f03dc3a1e1b249443e06334d42748aa_ppc64le", + "product": { + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:1373ba0c04ed11c621995495ca56e57d8f03dc3a1e1b249443e06334d42748aa_ppc64le", + "product_id": "rhacm2/grafana-dashboard-loader-rhel8@sha256:1373ba0c04ed11c621995495ca56e57d8f03dc3a1e1b249443e06334d42748aa_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/grafana-dashboard-loader-rhel8@sha256:1373ba0c04ed11c621995495ca56e57d8f03dc3a1e1b249443e06334d42748aa?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/iam-policy-controller-rhel8@sha256:b515f6a2392cdd343a462b573c777dedd360539491cda02778357e119a92fdc8_ppc64le", + "product": { + "name": "rhacm2/iam-policy-controller-rhel8@sha256:b515f6a2392cdd343a462b573c777dedd360539491cda02778357e119a92fdc8_ppc64le", + "product_id": "rhacm2/iam-policy-controller-rhel8@sha256:b515f6a2392cdd343a462b573c777dedd360539491cda02778357e119a92fdc8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/iam-policy-controller-rhel8@sha256:b515f6a2392cdd343a462b573c777dedd360539491cda02778357e119a92fdc8?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/iam-policy-controller-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/insights-client-rhel8@sha256:2db72d8dc9cc59054bb771d4d9295409f05230d65595280901fd6f1fe772bb23_ppc64le", + "product": { + "name": "rhacm2/insights-client-rhel8@sha256:2db72d8dc9cc59054bb771d4d9295409f05230d65595280901fd6f1fe772bb23_ppc64le", + "product_id": "rhacm2/insights-client-rhel8@sha256:2db72d8dc9cc59054bb771d4d9295409f05230d65595280901fd6f1fe772bb23_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/insights-client-rhel8@sha256:2db72d8dc9cc59054bb771d4d9295409f05230d65595280901fd6f1fe772bb23?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/insights-client-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/insights-metrics-rhel8@sha256:8de3fa1c1cc9a29e344798f70636e4bfbbf3e2b80edffedfe6179b6d64e76ad7_ppc64le", + "product": { + "name": "rhacm2/insights-metrics-rhel8@sha256:8de3fa1c1cc9a29e344798f70636e4bfbbf3e2b80edffedfe6179b6d64e76ad7_ppc64le", + "product_id": "rhacm2/insights-metrics-rhel8@sha256:8de3fa1c1cc9a29e344798f70636e4bfbbf3e2b80edffedfe6179b6d64e76ad7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/insights-metrics-rhel8@sha256:8de3fa1c1cc9a29e344798f70636e4bfbbf3e2b80edffedfe6179b6d64e76ad7?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/insights-metrics-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:211d0ec2fd1ba5fd31eb22a37c848a7b7ad89aa34ee6649a1ff01816f681fbfe_ppc64le", + "product": { + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:211d0ec2fd1ba5fd31eb22a37c848a7b7ad89aa34ee6649a1ff01816f681fbfe_ppc64le", + "product_id": "rhacm2/klusterlet-addon-controller-rhel8@sha256:211d0ec2fd1ba5fd31eb22a37c848a7b7ad89aa34ee6649a1ff01816f681fbfe_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/klusterlet-addon-controller-rhel8@sha256:211d0ec2fd1ba5fd31eb22a37c848a7b7ad89aa34ee6649a1ff01816f681fbfe?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:e147090acd98be60573d39257eb66d4414da89a653fc284b15c65a6ac7fafacb_ppc64le", + "product": { + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:e147090acd98be60573d39257eb66d4414da89a653fc284b15c65a6ac7fafacb_ppc64le", + "product_id": "rhacm2/kube-rbac-proxy-rhel8@sha256:e147090acd98be60573d39257eb66d4414da89a653fc284b15c65a6ac7fafacb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kube-rbac-proxy-rhel8@sha256:e147090acd98be60573d39257eb66d4414da89a653fc284b15c65a6ac7fafacb?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/kube-rbac-proxy-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/kube-state-metrics-rhel8@sha256:b7d4e66064ffa415a6efb92b5b070252864516fb4627ab4a4e15c1b4b3c83caa_ppc64le", + "product": { + "name": "rhacm2/kube-state-metrics-rhel8@sha256:b7d4e66064ffa415a6efb92b5b070252864516fb4627ab4a4e15c1b4b3c83caa_ppc64le", + "product_id": "rhacm2/kube-state-metrics-rhel8@sha256:b7d4e66064ffa415a6efb92b5b070252864516fb4627ab4a4e15c1b4b3c83caa_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kube-state-metrics-rhel8@sha256:b7d4e66064ffa415a6efb92b5b070252864516fb4627ab4a4e15c1b4b3c83caa?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/kube-state-metrics-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/memcached-rhel8@sha256:b0ca573192c41233c6f6bf107a90771e5d8f1dd1eae023c881b12f1db812b16a_ppc64le", + "product": { + "name": "rhacm2/memcached-rhel8@sha256:b0ca573192c41233c6f6bf107a90771e5d8f1dd1eae023c881b12f1db812b16a_ppc64le", + "product_id": "rhacm2/memcached-rhel8@sha256:b0ca573192c41233c6f6bf107a90771e5d8f1dd1eae023c881b12f1db812b16a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/memcached-rhel8@sha256:b0ca573192c41233c6f6bf107a90771e5d8f1dd1eae023c881b12f1db812b16a?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/memcached-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/memcached-exporter-rhel8@sha256:29c01316edcc63d830435bd9116f085ad341d1c660ec553777c038af3fc62f57_ppc64le", + "product": { + "name": "rhacm2/memcached-exporter-rhel8@sha256:29c01316edcc63d830435bd9116f085ad341d1c660ec553777c038af3fc62f57_ppc64le", + "product_id": "rhacm2/memcached-exporter-rhel8@sha256:29c01316edcc63d830435bd9116f085ad341d1c660ec553777c038af3fc62f57_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/memcached-exporter-rhel8@sha256:29c01316edcc63d830435bd9116f085ad341d1c660ec553777c038af3fc62f57?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/memcached-exporter-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/metrics-collector-rhel8@sha256:918e223335575550260e173f8225b7b01500535ee1af6338f2b4c8d66bf87c0a_ppc64le", + "product": { + "name": "rhacm2/metrics-collector-rhel8@sha256:918e223335575550260e173f8225b7b01500535ee1af6338f2b4c8d66bf87c0a_ppc64le", + "product_id": "rhacm2/metrics-collector-rhel8@sha256:918e223335575550260e173f8225b7b01500535ee1af6338f2b4c8d66bf87c0a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/metrics-collector-rhel8@sha256:918e223335575550260e173f8225b7b01500535ee1af6338f2b4c8d66bf87c0a?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/metrics-collector-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicloud-integrations-rhel8@sha256:e76d5d7b13380999436ed9467627282e1e9e311a73cd7340c92d68c029c2dfcf_ppc64le", + "product": { + "name": "rhacm2/multicloud-integrations-rhel8@sha256:e76d5d7b13380999436ed9467627282e1e9e311a73cd7340c92d68c029c2dfcf_ppc64le", + "product_id": "rhacm2/multicloud-integrations-rhel8@sha256:e76d5d7b13380999436ed9467627282e1e9e311a73cd7340c92d68c029c2dfcf_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicloud-integrations-rhel8@sha256:e76d5d7b13380999436ed9467627282e1e9e311a73cd7340c92d68c029c2dfcf?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/multicloud-integrations-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multiclusterhub-rhel8@sha256:dacbf8c6b2f0b3951f6817b88011df58e802492f30495c62b9984eb3fc40926b_ppc64le", + "product": { + "name": "rhacm2/multiclusterhub-rhel8@sha256:dacbf8c6b2f0b3951f6817b88011df58e802492f30495c62b9984eb3fc40926b_ppc64le", + "product_id": "rhacm2/multiclusterhub-rhel8@sha256:dacbf8c6b2f0b3951f6817b88011df58e802492f30495c62b9984eb3fc40926b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multiclusterhub-rhel8@sha256:dacbf8c6b2f0b3951f6817b88011df58e802492f30495c62b9984eb3fc40926b?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/multiclusterhub-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:5de6071dd040aed8b2730d5ac4eec48b50ac8c3a2bacf1fa1bd0f776348dc080_ppc64le", + "product": { + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:5de6071dd040aed8b2730d5ac4eec48b50ac8c3a2bacf1fa1bd0f776348dc080_ppc64le", + "product_id": "rhacm2/multicluster-observability-rhel8-operator@sha256:5de6071dd040aed8b2730d5ac4eec48b50ac8c3a2bacf1fa1bd0f776348dc080_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-observability-rhel8-operator@sha256:5de6071dd040aed8b2730d5ac4eec48b50ac8c3a2bacf1fa1bd0f776348dc080?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/multicluster-observability-rhel8-operator&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:e15e8d37784258175a80ad7d9fa078a7d15766cd6e214f3bf24a42b77c3c2a1e_ppc64le", + "product": { + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:e15e8d37784258175a80ad7d9fa078a7d15766cd6e214f3bf24a42b77c3c2a1e_ppc64le", + "product_id": "rhacm2/multicluster-operators-application-rhel8@sha256:e15e8d37784258175a80ad7d9fa078a7d15766cd6e214f3bf24a42b77c3c2a1e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-application-rhel8@sha256:e15e8d37784258175a80ad7d9fa078a7d15766cd6e214f3bf24a42b77c3c2a1e?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/multicluster-operators-application-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:89bbb4fb1ec38a227c8649bc10f305496c522b2c5d990ac38f220c6f3d3d6593_ppc64le", + "product": { + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:89bbb4fb1ec38a227c8649bc10f305496c522b2c5d990ac38f220c6f3d3d6593_ppc64le", + "product_id": "rhacm2/multicluster-operators-channel-rhel8@sha256:89bbb4fb1ec38a227c8649bc10f305496c522b2c5d990ac38f220c6f3d3d6593_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-channel-rhel8@sha256:89bbb4fb1ec38a227c8649bc10f305496c522b2c5d990ac38f220c6f3d3d6593?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/multicluster-operators-channel-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:6f4cf0eaba976cef1e20e4c9376a7047cb2d0dbea3e92fef0a9cfab992d148f7_ppc64le", + "product": { + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:6f4cf0eaba976cef1e20e4c9376a7047cb2d0dbea3e92fef0a9cfab992d148f7_ppc64le", + "product_id": "rhacm2/multicluster-operators-subscription-rhel8@sha256:6f4cf0eaba976cef1e20e4c9376a7047cb2d0dbea3e92fef0a9cfab992d148f7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-subscription-rhel8@sha256:6f4cf0eaba976cef1e20e4c9376a7047cb2d0dbea3e92fef0a9cfab992d148f7?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/node-exporter-rhel8@sha256:3d07a180d9bda173215cf2e2b820ffeada3830cb018e1a61efaf952484e73345_ppc64le", + "product": { + "name": "rhacm2/node-exporter-rhel8@sha256:3d07a180d9bda173215cf2e2b820ffeada3830cb018e1a61efaf952484e73345_ppc64le", + "product_id": "rhacm2/node-exporter-rhel8@sha256:3d07a180d9bda173215cf2e2b820ffeada3830cb018e1a61efaf952484e73345_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/node-exporter-rhel8@sha256:3d07a180d9bda173215cf2e2b820ffeada3830cb018e1a61efaf952484e73345?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/node-exporter-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/observatorium-rhel8@sha256:2830e97f7f61431f4679e7254dea3c3744548533ce7fdd9d94b522388b25230c_ppc64le", + "product": { + "name": "rhacm2/observatorium-rhel8@sha256:2830e97f7f61431f4679e7254dea3c3744548533ce7fdd9d94b522388b25230c_ppc64le", + "product_id": "rhacm2/observatorium-rhel8@sha256:2830e97f7f61431f4679e7254dea3c3744548533ce7fdd9d94b522388b25230c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/observatorium-rhel8@sha256:2830e97f7f61431f4679e7254dea3c3744548533ce7fdd9d94b522388b25230c?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/observatorium-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/observatorium-rhel8-operator@sha256:e4b953e67c4d34dd732e39679bc602878241e215d1b28f21a947bbea3409b0e6_ppc64le", + "product": { + "name": "rhacm2/observatorium-rhel8-operator@sha256:e4b953e67c4d34dd732e39679bc602878241e215d1b28f21a947bbea3409b0e6_ppc64le", + "product_id": "rhacm2/observatorium-rhel8-operator@sha256:e4b953e67c4d34dd732e39679bc602878241e215d1b28f21a947bbea3409b0e6_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/observatorium-rhel8-operator@sha256:e4b953e67c4d34dd732e39679bc602878241e215d1b28f21a947bbea3409b0e6?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/observatorium-rhel8-operator&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:281071ee44d8d8ad7e41737ad67617d15a19417ac03e0c3c66695cc521dc4762_ppc64le", + "product": { + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:281071ee44d8d8ad7e41737ad67617d15a19417ac03e0c3c66695cc521dc4762_ppc64le", + "product_id": "rhacm2/prometheus-alertmanager-rhel8@sha256:281071ee44d8d8ad7e41737ad67617d15a19417ac03e0c3c66695cc521dc4762_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-alertmanager-rhel8@sha256:281071ee44d8d8ad7e41737ad67617d15a19417ac03e0c3c66695cc521dc4762?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/prometheus-alertmanager-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/prometheus-rhel8@sha256:05cfaba966546984efedbd1c43369e196b2c73e64961176b50590364d82793b7_ppc64le", + "product": { + "name": "rhacm2/prometheus-rhel8@sha256:05cfaba966546984efedbd1c43369e196b2c73e64961176b50590364d82793b7_ppc64le", + "product_id": "rhacm2/prometheus-rhel8@sha256:05cfaba966546984efedbd1c43369e196b2c73e64961176b50590364d82793b7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-rhel8@sha256:05cfaba966546984efedbd1c43369e196b2c73e64961176b50590364d82793b7?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/prometheus-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:6b78c7fe0d19175d35d95b39bd40c41dc103786370b04dc7a25ca99a0a3a265d_ppc64le", + "product": { + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:6b78c7fe0d19175d35d95b39bd40c41dc103786370b04dc7a25ca99a0a3a265d_ppc64le", + "product_id": "rhacm2/rbac-query-proxy-rhel8@sha256:6b78c7fe0d19175d35d95b39bd40c41dc103786370b04dc7a25ca99a0a3a265d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rbac-query-proxy-rhel8@sha256:6b78c7fe0d19175d35d95b39bd40c41dc103786370b04dc7a25ca99a0a3a265d?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/rbac-query-proxy-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/search-collector-rhel8@sha256:99b321599e1d5de91d26541f8c6b603aa6ca5f6f95945184ad5ebd3339858313_ppc64le", + "product": { + "name": "rhacm2/search-collector-rhel8@sha256:99b321599e1d5de91d26541f8c6b603aa6ca5f6f95945184ad5ebd3339858313_ppc64le", + "product_id": "rhacm2/search-collector-rhel8@sha256:99b321599e1d5de91d26541f8c6b603aa6ca5f6f95945184ad5ebd3339858313_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/search-collector-rhel8@sha256:99b321599e1d5de91d26541f8c6b603aa6ca5f6f95945184ad5ebd3339858313?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/search-collector-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/submariner-addon-rhel8@sha256:6c93cac2647c9815381c1892dc1a631d7fdcd11a38ab0d023a2e07c2dc7ddd70_ppc64le", + "product": { + "name": "rhacm2/submariner-addon-rhel8@sha256:6c93cac2647c9815381c1892dc1a631d7fdcd11a38ab0d023a2e07c2dc7ddd70_ppc64le", + "product_id": "rhacm2/submariner-addon-rhel8@sha256:6c93cac2647c9815381c1892dc1a631d7fdcd11a38ab0d023a2e07c2dc7ddd70_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/submariner-addon-rhel8@sha256:6c93cac2647c9815381c1892dc1a631d7fdcd11a38ab0d023a2e07c2dc7ddd70?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/submariner-addon-rhel8&tag=v2.8.3-8" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/thanos-rhel8@sha256:d86212ccfbfe4a381d8adab2fee776a7bc28476f93c5c0134b632399d391e3c3_ppc64le", + "product": { + "name": "rhacm2/thanos-rhel8@sha256:d86212ccfbfe4a381d8adab2fee776a7bc28476f93c5c0134b632399d391e3c3_ppc64le", + "product_id": "rhacm2/thanos-rhel8@sha256:d86212ccfbfe4a381d8adab2fee776a7bc28476f93c5c0134b632399d391e3c3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/thanos-rhel8@sha256:d86212ccfbfe4a381d8adab2fee776a7bc28476f93c5c0134b632399d391e3c3?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/thanos-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:810cea838a9f89b18b2b73f1b862f35601f1cdfaf3b795ab6816eea098d7c703_ppc64le", + "product": { + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:810cea838a9f89b18b2b73f1b862f35601f1cdfaf3b795ab6816eea098d7c703_ppc64le", + "product_id": "rhacm2/thanos-receive-controller-rhel8@sha256:810cea838a9f89b18b2b73f1b862f35601f1cdfaf3b795ab6816eea098d7c703_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/thanos-receive-controller-rhel8@sha256:810cea838a9f89b18b2b73f1b862f35601f1cdfaf3b795ab6816eea098d7c703?arch=ppc64le&repository_url=registry.redhat.io/rhacm2/thanos-receive-controller-rhel8&tag=v2.8.3-5" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:c2ab23aa77bf351bf401dd26adfefe2797419493b643ae8ab2d04ba8dc02b98d_s390x", + "product": { + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:c2ab23aa77bf351bf401dd26adfefe2797419493b643ae8ab2d04ba8dc02b98d_s390x", + "product_id": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:c2ab23aa77bf351bf401dd26adfefe2797419493b643ae8ab2d04ba8dc02b98d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-governance-policy-addon-controller-rhel8@sha256:c2ab23aa77bf351bf401dd26adfefe2797419493b643ae8ab2d04ba8dc02b98d?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:2e6f43857d9b2e8a253c642ed8ddc7d2026d61164bd9b7adb55cce2554d04575_s390x", + "product": { + "name": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:2e6f43857d9b2e8a253c642ed8ddc7d2026d61164bd9b7adb55cce2554d04575_s390x", + "product_id": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:2e6f43857d9b2e8a253c642ed8ddc7d2026d61164bd9b7adb55cce2554d04575_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-governance-policy-framework-addon-rhel8@sha256:2e6f43857d9b2e8a253c642ed8ddc7d2026d61164bd9b7adb55cce2554d04575?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-grafana-rhel8@sha256:a6dab3ca60bd0301bf99f110bd60ec8c38f4524c1dbb7752660379215611408d_s390x", + "product": { + "name": "rhacm2/acm-grafana-rhel8@sha256:a6dab3ca60bd0301bf99f110bd60ec8c38f4524c1dbb7752660379215611408d_s390x", + "product_id": "rhacm2/acm-grafana-rhel8@sha256:a6dab3ca60bd0301bf99f110bd60ec8c38f4524c1dbb7752660379215611408d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-grafana-rhel8@sha256:a6dab3ca60bd0301bf99f110bd60ec8c38f4524c1dbb7752660379215611408d?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-grafana-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-must-gather-rhel8@sha256:7ec612840d9ec8dc33d383382bf7ece05ede3863e90e268328b0904cb0e20485_s390x", + "product": { + "name": "rhacm2/acm-must-gather-rhel8@sha256:7ec612840d9ec8dc33d383382bf7ece05ede3863e90e268328b0904cb0e20485_s390x", + "product_id": "rhacm2/acm-must-gather-rhel8@sha256:7ec612840d9ec8dc33d383382bf7ece05ede3863e90e268328b0904cb0e20485_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-must-gather-rhel8@sha256:7ec612840d9ec8dc33d383382bf7ece05ede3863e90e268328b0904cb0e20485?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-must-gather-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-operator-bundle@sha256:8f7d98d3b4bfc5d62a79a8cf4b92e68b91a33e3275017a195acda843897840a1_s390x", + "product": { + "name": "rhacm2/acm-operator-bundle@sha256:8f7d98d3b4bfc5d62a79a8cf4b92e68b91a33e3275017a195acda843897840a1_s390x", + "product_id": "rhacm2/acm-operator-bundle@sha256:8f7d98d3b4bfc5d62a79a8cf4b92e68b91a33e3275017a195acda843897840a1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-operator-bundle@sha256:8f7d98d3b4bfc5d62a79a8cf4b92e68b91a33e3275017a195acda843897840a1?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-operator-bundle&tag=v2.8.3-17" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:4b0a77a9ef75f088438fe4d44e5ba2ef6240ea93053991bdc25f9cba653d35bf_s390x", + "product": { + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:4b0a77a9ef75f088438fe4d44e5ba2ef6240ea93053991bdc25f9cba653d35bf_s390x", + "product_id": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:4b0a77a9ef75f088438fe4d44e5ba2ef6240ea93053991bdc25f9cba653d35bf_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-prometheus-config-reloader-rhel8@sha256:4b0a77a9ef75f088438fe4d44e5ba2ef6240ea93053991bdc25f9cba653d35bf?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-prometheus-rhel8@sha256:d95cc03e85672b97f0d591d56126d945f85e0661c3625225570cea0543b4e45c_s390x", + "product": { + "name": "rhacm2/acm-prometheus-rhel8@sha256:d95cc03e85672b97f0d591d56126d945f85e0661c3625225570cea0543b4e45c_s390x", + "product_id": "rhacm2/acm-prometheus-rhel8@sha256:d95cc03e85672b97f0d591d56126d945f85e0661c3625225570cea0543b4e45c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-prometheus-rhel8@sha256:d95cc03e85672b97f0d591d56126d945f85e0661c3625225570cea0543b4e45c?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-prometheus-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-search-indexer-rhel8@sha256:bbeaf4cf6b1b70ae274ec160aacf64769676ebb22b94aca7e7ad4b109276db60_s390x", + "product": { + "name": "rhacm2/acm-search-indexer-rhel8@sha256:bbeaf4cf6b1b70ae274ec160aacf64769676ebb22b94aca7e7ad4b109276db60_s390x", + "product_id": "rhacm2/acm-search-indexer-rhel8@sha256:bbeaf4cf6b1b70ae274ec160aacf64769676ebb22b94aca7e7ad4b109276db60_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-search-indexer-rhel8@sha256:bbeaf4cf6b1b70ae274ec160aacf64769676ebb22b94aca7e7ad4b109276db60?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-search-indexer-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-search-v2-api-rhel8@sha256:bdab33be5c6359510a261b7ac3669bed2d9b2c2c90f52fc87a556a66a484c377_s390x", + "product": { + "name": "rhacm2/acm-search-v2-api-rhel8@sha256:bdab33be5c6359510a261b7ac3669bed2d9b2c2c90f52fc87a556a66a484c377_s390x", + "product_id": "rhacm2/acm-search-v2-api-rhel8@sha256:bdab33be5c6359510a261b7ac3669bed2d9b2c2c90f52fc87a556a66a484c377_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-search-v2-api-rhel8@sha256:bdab33be5c6359510a261b7ac3669bed2d9b2c2c90f52fc87a556a66a484c377?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-search-v2-api-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-search-v2-rhel8@sha256:902f1268e0f058c53edb63846b0dc49b0a94a8021c39740318cfaedc3b010e6d_s390x", + "product": { + "name": "rhacm2/acm-search-v2-rhel8@sha256:902f1268e0f058c53edb63846b0dc49b0a94a8021c39740318cfaedc3b010e6d_s390x", + "product_id": "rhacm2/acm-search-v2-rhel8@sha256:902f1268e0f058c53edb63846b0dc49b0a94a8021c39740318cfaedc3b010e6d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-search-v2-rhel8@sha256:902f1268e0f058c53edb63846b0dc49b0a94a8021c39740318cfaedc3b010e6d?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-search-v2-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:8486d69a2db1b3422572b51ed9dbc245200d88372d7132ce6e876eec42e9db7a_s390x", + "product": { + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:8486d69a2db1b3422572b51ed9dbc245200d88372d7132ce6e876eec42e9db7a_s390x", + "product_id": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:8486d69a2db1b3422572b51ed9dbc245200d88372d7132ce6e876eec42e9db7a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/acm-volsync-addon-controller-rhel8@sha256:8486d69a2db1b3422572b51ed9dbc245200d88372d7132ce6e876eec42e9db7a?arch=s390x&repository_url=registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/cert-policy-controller-rhel8@sha256:fc7a20396546797065d4fbbced1c4023ff639091008e59efc87e48ddf5b36d23_s390x", + "product": { + "name": "rhacm2/cert-policy-controller-rhel8@sha256:fc7a20396546797065d4fbbced1c4023ff639091008e59efc87e48ddf5b36d23_s390x", + "product_id": "rhacm2/cert-policy-controller-rhel8@sha256:fc7a20396546797065d4fbbced1c4023ff639091008e59efc87e48ddf5b36d23_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cert-policy-controller-rhel8@sha256:fc7a20396546797065d4fbbced1c4023ff639091008e59efc87e48ddf5b36d23?arch=s390x&repository_url=registry.redhat.io/rhacm2/cert-policy-controller-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:c220a29e4394e70fe8b384dd5d0b5cfe462cce9dd5e16363214b895a3c5579e9_s390x", + "product": { + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:c220a29e4394e70fe8b384dd5d0b5cfe462cce9dd5e16363214b895a3c5579e9_s390x", + "product_id": "rhacm2/cluster-backup-rhel8-operator@sha256:c220a29e4394e70fe8b384dd5d0b5cfe462cce9dd5e16363214b895a3c5579e9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-backup-rhel8-operator@sha256:c220a29e4394e70fe8b384dd5d0b5cfe462cce9dd5e16363214b895a3c5579e9?arch=s390x&repository_url=registry.redhat.io/rhacm2/cluster-backup-rhel8-operator&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/config-policy-controller-rhel8@sha256:c1b575138eb2062c9c4fb42c94da1fba90660a484b67accce842f385b9fdd2f4_s390x", + "product": { + "name": "rhacm2/config-policy-controller-rhel8@sha256:c1b575138eb2062c9c4fb42c94da1fba90660a484b67accce842f385b9fdd2f4_s390x", + "product_id": "rhacm2/config-policy-controller-rhel8@sha256:c1b575138eb2062c9c4fb42c94da1fba90660a484b67accce842f385b9fdd2f4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/config-policy-controller-rhel8@sha256:c1b575138eb2062c9c4fb42c94da1fba90660a484b67accce842f385b9fdd2f4?arch=s390x&repository_url=registry.redhat.io/rhacm2/config-policy-controller-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/console-rhel8@sha256:204cf5044ec3346d411f86d02c7bee1dbf98e73b690e07efa5a6f429cd9b1c41_s390x", + "product": { + "name": "rhacm2/console-rhel8@sha256:204cf5044ec3346d411f86d02c7bee1dbf98e73b690e07efa5a6f429cd9b1c41_s390x", + "product_id": "rhacm2/console-rhel8@sha256:204cf5044ec3346d411f86d02c7bee1dbf98e73b690e07efa5a6f429cd9b1c41_s390x", + "product_identification_helper": { + "purl": "pkg:oci/console-rhel8@sha256:204cf5044ec3346d411f86d02c7bee1dbf98e73b690e07efa5a6f429cd9b1c41?arch=s390x&repository_url=registry.redhat.io/rhacm2/console-rhel8&tag=v2.8.3-7" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:40b3e627927111a4842b4e36afd9fab043927ba46efffe89fe20616ddf59a2b5_s390x", + "product": { + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:40b3e627927111a4842b4e36afd9fab043927ba46efffe89fe20616ddf59a2b5_s390x", + "product_id": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:40b3e627927111a4842b4e36afd9fab043927ba46efffe89fe20616ddf59a2b5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/endpoint-monitoring-rhel8-operator@sha256:40b3e627927111a4842b4e36afd9fab043927ba46efffe89fe20616ddf59a2b5?arch=s390x&repository_url=registry.redhat.io/rhacm2/endpoint-monitoring-rhel8-operator&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:69e1bbb1c9e0d10e1c9408c163af287456cade57b54067766696a68c261bf6a6_s390x", + "product": { + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:69e1bbb1c9e0d10e1c9408c163af287456cade57b54067766696a68c261bf6a6_s390x", + "product_id": "rhacm2/governance-policy-propagator-rhel8@sha256:69e1bbb1c9e0d10e1c9408c163af287456cade57b54067766696a68c261bf6a6_s390x", + "product_identification_helper": { + "purl": "pkg:oci/governance-policy-propagator-rhel8@sha256:69e1bbb1c9e0d10e1c9408c163af287456cade57b54067766696a68c261bf6a6?arch=s390x&repository_url=registry.redhat.io/rhacm2/governance-policy-propagator-rhel8&tag=v2.8.3-7" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:6a63ed2f1ea81d99b7158d41c342bb20fc2a18bf3a136b873e640a18c45e17f0_s390x", + "product": { + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:6a63ed2f1ea81d99b7158d41c342bb20fc2a18bf3a136b873e640a18c45e17f0_s390x", + "product_id": "rhacm2/grafana-dashboard-loader-rhel8@sha256:6a63ed2f1ea81d99b7158d41c342bb20fc2a18bf3a136b873e640a18c45e17f0_s390x", + "product_identification_helper": { + "purl": "pkg:oci/grafana-dashboard-loader-rhel8@sha256:6a63ed2f1ea81d99b7158d41c342bb20fc2a18bf3a136b873e640a18c45e17f0?arch=s390x&repository_url=registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/iam-policy-controller-rhel8@sha256:283e7d735988551bb7d440251ad63f11e0c8dc2cae0ec18490d875e29302ae01_s390x", + "product": { + "name": "rhacm2/iam-policy-controller-rhel8@sha256:283e7d735988551bb7d440251ad63f11e0c8dc2cae0ec18490d875e29302ae01_s390x", + "product_id": "rhacm2/iam-policy-controller-rhel8@sha256:283e7d735988551bb7d440251ad63f11e0c8dc2cae0ec18490d875e29302ae01_s390x", + "product_identification_helper": { + "purl": "pkg:oci/iam-policy-controller-rhel8@sha256:283e7d735988551bb7d440251ad63f11e0c8dc2cae0ec18490d875e29302ae01?arch=s390x&repository_url=registry.redhat.io/rhacm2/iam-policy-controller-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/insights-client-rhel8@sha256:beb0f9332b9bcfb58cd0db15279085412827ace954ec2ce34d574fc72c5a16a5_s390x", + "product": { + "name": "rhacm2/insights-client-rhel8@sha256:beb0f9332b9bcfb58cd0db15279085412827ace954ec2ce34d574fc72c5a16a5_s390x", + "product_id": "rhacm2/insights-client-rhel8@sha256:beb0f9332b9bcfb58cd0db15279085412827ace954ec2ce34d574fc72c5a16a5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/insights-client-rhel8@sha256:beb0f9332b9bcfb58cd0db15279085412827ace954ec2ce34d574fc72c5a16a5?arch=s390x&repository_url=registry.redhat.io/rhacm2/insights-client-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/insights-metrics-rhel8@sha256:cf4924480de9c8f69453476e0aabe378607dd64caae389125f19d3327e7b6ef4_s390x", + "product": { + "name": "rhacm2/insights-metrics-rhel8@sha256:cf4924480de9c8f69453476e0aabe378607dd64caae389125f19d3327e7b6ef4_s390x", + "product_id": "rhacm2/insights-metrics-rhel8@sha256:cf4924480de9c8f69453476e0aabe378607dd64caae389125f19d3327e7b6ef4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/insights-metrics-rhel8@sha256:cf4924480de9c8f69453476e0aabe378607dd64caae389125f19d3327e7b6ef4?arch=s390x&repository_url=registry.redhat.io/rhacm2/insights-metrics-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:cdd3ebf85eeb85c398f94a19d11e9eeafeb1c4c5fb4d40777f13b461ccde5342_s390x", + "product": { + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:cdd3ebf85eeb85c398f94a19d11e9eeafeb1c4c5fb4d40777f13b461ccde5342_s390x", + "product_id": "rhacm2/klusterlet-addon-controller-rhel8@sha256:cdd3ebf85eeb85c398f94a19d11e9eeafeb1c4c5fb4d40777f13b461ccde5342_s390x", + "product_identification_helper": { + "purl": "pkg:oci/klusterlet-addon-controller-rhel8@sha256:cdd3ebf85eeb85c398f94a19d11e9eeafeb1c4c5fb4d40777f13b461ccde5342?arch=s390x&repository_url=registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:9c5e421fe5acaefae5ba644261686662a5a045d2b52725de8f25629d0be37c15_s390x", + "product": { + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:9c5e421fe5acaefae5ba644261686662a5a045d2b52725de8f25629d0be37c15_s390x", + "product_id": "rhacm2/kube-rbac-proxy-rhel8@sha256:9c5e421fe5acaefae5ba644261686662a5a045d2b52725de8f25629d0be37c15_s390x", + "product_identification_helper": { + "purl": "pkg:oci/kube-rbac-proxy-rhel8@sha256:9c5e421fe5acaefae5ba644261686662a5a045d2b52725de8f25629d0be37c15?arch=s390x&repository_url=registry.redhat.io/rhacm2/kube-rbac-proxy-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/kube-state-metrics-rhel8@sha256:22b541bb6a683e87da37cbb3d6cecc6e8d1d16795633522c3b7b793f1f4e5a77_s390x", + "product": { + "name": "rhacm2/kube-state-metrics-rhel8@sha256:22b541bb6a683e87da37cbb3d6cecc6e8d1d16795633522c3b7b793f1f4e5a77_s390x", + "product_id": "rhacm2/kube-state-metrics-rhel8@sha256:22b541bb6a683e87da37cbb3d6cecc6e8d1d16795633522c3b7b793f1f4e5a77_s390x", + "product_identification_helper": { + "purl": "pkg:oci/kube-state-metrics-rhel8@sha256:22b541bb6a683e87da37cbb3d6cecc6e8d1d16795633522c3b7b793f1f4e5a77?arch=s390x&repository_url=registry.redhat.io/rhacm2/kube-state-metrics-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/memcached-rhel8@sha256:132af7474c22c393b48dd119d9d932e7b2e0775b788226f11305d8e895bf9969_s390x", + "product": { + "name": "rhacm2/memcached-rhel8@sha256:132af7474c22c393b48dd119d9d932e7b2e0775b788226f11305d8e895bf9969_s390x", + "product_id": "rhacm2/memcached-rhel8@sha256:132af7474c22c393b48dd119d9d932e7b2e0775b788226f11305d8e895bf9969_s390x", + "product_identification_helper": { + "purl": "pkg:oci/memcached-rhel8@sha256:132af7474c22c393b48dd119d9d932e7b2e0775b788226f11305d8e895bf9969?arch=s390x&repository_url=registry.redhat.io/rhacm2/memcached-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/memcached-exporter-rhel8@sha256:cacf8cfe17cdefb9ca386c382af1b9e02c14fed5c13d1a96806019b2fe770fbb_s390x", + "product": { + "name": "rhacm2/memcached-exporter-rhel8@sha256:cacf8cfe17cdefb9ca386c382af1b9e02c14fed5c13d1a96806019b2fe770fbb_s390x", + "product_id": "rhacm2/memcached-exporter-rhel8@sha256:cacf8cfe17cdefb9ca386c382af1b9e02c14fed5c13d1a96806019b2fe770fbb_s390x", + "product_identification_helper": { + "purl": "pkg:oci/memcached-exporter-rhel8@sha256:cacf8cfe17cdefb9ca386c382af1b9e02c14fed5c13d1a96806019b2fe770fbb?arch=s390x&repository_url=registry.redhat.io/rhacm2/memcached-exporter-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/metrics-collector-rhel8@sha256:e843365c24dad96c9435a15c7d93b234843e67e248f5194c9412896295ac1585_s390x", + "product": { + "name": "rhacm2/metrics-collector-rhel8@sha256:e843365c24dad96c9435a15c7d93b234843e67e248f5194c9412896295ac1585_s390x", + "product_id": "rhacm2/metrics-collector-rhel8@sha256:e843365c24dad96c9435a15c7d93b234843e67e248f5194c9412896295ac1585_s390x", + "product_identification_helper": { + "purl": "pkg:oci/metrics-collector-rhel8@sha256:e843365c24dad96c9435a15c7d93b234843e67e248f5194c9412896295ac1585?arch=s390x&repository_url=registry.redhat.io/rhacm2/metrics-collector-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicloud-integrations-rhel8@sha256:730221cd6770537be9d03511386e6603cca8788e3f0c9ae5e599e27fea007dab_s390x", + "product": { + "name": "rhacm2/multicloud-integrations-rhel8@sha256:730221cd6770537be9d03511386e6603cca8788e3f0c9ae5e599e27fea007dab_s390x", + "product_id": "rhacm2/multicloud-integrations-rhel8@sha256:730221cd6770537be9d03511386e6603cca8788e3f0c9ae5e599e27fea007dab_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicloud-integrations-rhel8@sha256:730221cd6770537be9d03511386e6603cca8788e3f0c9ae5e599e27fea007dab?arch=s390x&repository_url=registry.redhat.io/rhacm2/multicloud-integrations-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multiclusterhub-rhel8@sha256:f70805b4bc8414b2c44ca332ec421c3cfa8adb85c25a789c41db3d5bd28ace55_s390x", + "product": { + "name": "rhacm2/multiclusterhub-rhel8@sha256:f70805b4bc8414b2c44ca332ec421c3cfa8adb85c25a789c41db3d5bd28ace55_s390x", + "product_id": "rhacm2/multiclusterhub-rhel8@sha256:f70805b4bc8414b2c44ca332ec421c3cfa8adb85c25a789c41db3d5bd28ace55_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multiclusterhub-rhel8@sha256:f70805b4bc8414b2c44ca332ec421c3cfa8adb85c25a789c41db3d5bd28ace55?arch=s390x&repository_url=registry.redhat.io/rhacm2/multiclusterhub-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:f7f24be1b881736d8b89c5d42ac9c0e20de26da299471f20537242ca5e60efb9_s390x", + "product": { + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:f7f24be1b881736d8b89c5d42ac9c0e20de26da299471f20537242ca5e60efb9_s390x", + "product_id": "rhacm2/multicluster-observability-rhel8-operator@sha256:f7f24be1b881736d8b89c5d42ac9c0e20de26da299471f20537242ca5e60efb9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-observability-rhel8-operator@sha256:f7f24be1b881736d8b89c5d42ac9c0e20de26da299471f20537242ca5e60efb9?arch=s390x&repository_url=registry.redhat.io/rhacm2/multicluster-observability-rhel8-operator&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:b18f0b6782fb7c10ec5eed47eded08327b3142268288bfc4a9971927691d56c5_s390x", + "product": { + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:b18f0b6782fb7c10ec5eed47eded08327b3142268288bfc4a9971927691d56c5_s390x", + "product_id": "rhacm2/multicluster-operators-application-rhel8@sha256:b18f0b6782fb7c10ec5eed47eded08327b3142268288bfc4a9971927691d56c5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-application-rhel8@sha256:b18f0b6782fb7c10ec5eed47eded08327b3142268288bfc4a9971927691d56c5?arch=s390x&repository_url=registry.redhat.io/rhacm2/multicluster-operators-application-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:c2e848a787613458658f1521327c4783c338a6d3c561356c41be924c3ff999f3_s390x", + "product": { + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:c2e848a787613458658f1521327c4783c338a6d3c561356c41be924c3ff999f3_s390x", + "product_id": "rhacm2/multicluster-operators-channel-rhel8@sha256:c2e848a787613458658f1521327c4783c338a6d3c561356c41be924c3ff999f3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-channel-rhel8@sha256:c2e848a787613458658f1521327c4783c338a6d3c561356c41be924c3ff999f3?arch=s390x&repository_url=registry.redhat.io/rhacm2/multicluster-operators-channel-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:6990aa404c71c13de81e6945cb11a75df8ad1391a1531ab302a3ff2d05958e07_s390x", + "product": { + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:6990aa404c71c13de81e6945cb11a75df8ad1391a1531ab302a3ff2d05958e07_s390x", + "product_id": "rhacm2/multicluster-operators-subscription-rhel8@sha256:6990aa404c71c13de81e6945cb11a75df8ad1391a1531ab302a3ff2d05958e07_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-subscription-rhel8@sha256:6990aa404c71c13de81e6945cb11a75df8ad1391a1531ab302a3ff2d05958e07?arch=s390x&repository_url=registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/node-exporter-rhel8@sha256:d7c88b926b7d2acb8e508da6030cec692b12b0ea1a3cbcdd0b06c9239d4ecf30_s390x", + "product": { + "name": "rhacm2/node-exporter-rhel8@sha256:d7c88b926b7d2acb8e508da6030cec692b12b0ea1a3cbcdd0b06c9239d4ecf30_s390x", + "product_id": "rhacm2/node-exporter-rhel8@sha256:d7c88b926b7d2acb8e508da6030cec692b12b0ea1a3cbcdd0b06c9239d4ecf30_s390x", + "product_identification_helper": { + "purl": "pkg:oci/node-exporter-rhel8@sha256:d7c88b926b7d2acb8e508da6030cec692b12b0ea1a3cbcdd0b06c9239d4ecf30?arch=s390x&repository_url=registry.redhat.io/rhacm2/node-exporter-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/observatorium-rhel8@sha256:8a189e5401dcc15282ad2ec143a5c1e184b3df410af43994ad98ad3f33daf31c_s390x", + "product": { + "name": "rhacm2/observatorium-rhel8@sha256:8a189e5401dcc15282ad2ec143a5c1e184b3df410af43994ad98ad3f33daf31c_s390x", + "product_id": "rhacm2/observatorium-rhel8@sha256:8a189e5401dcc15282ad2ec143a5c1e184b3df410af43994ad98ad3f33daf31c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/observatorium-rhel8@sha256:8a189e5401dcc15282ad2ec143a5c1e184b3df410af43994ad98ad3f33daf31c?arch=s390x&repository_url=registry.redhat.io/rhacm2/observatorium-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/observatorium-rhel8-operator@sha256:c1d8921bbd4b4490640c3585e1443835d1cba14ee7514fe91b13f34978eaf9cd_s390x", + "product": { + "name": "rhacm2/observatorium-rhel8-operator@sha256:c1d8921bbd4b4490640c3585e1443835d1cba14ee7514fe91b13f34978eaf9cd_s390x", + "product_id": "rhacm2/observatorium-rhel8-operator@sha256:c1d8921bbd4b4490640c3585e1443835d1cba14ee7514fe91b13f34978eaf9cd_s390x", + "product_identification_helper": { + "purl": "pkg:oci/observatorium-rhel8-operator@sha256:c1d8921bbd4b4490640c3585e1443835d1cba14ee7514fe91b13f34978eaf9cd?arch=s390x&repository_url=registry.redhat.io/rhacm2/observatorium-rhel8-operator&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:cee29442ae18ce94953ca0751d41a8e1c1f41234cdd6fa87ea42f0b961c791f6_s390x", + "product": { + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:cee29442ae18ce94953ca0751d41a8e1c1f41234cdd6fa87ea42f0b961c791f6_s390x", + "product_id": "rhacm2/prometheus-alertmanager-rhel8@sha256:cee29442ae18ce94953ca0751d41a8e1c1f41234cdd6fa87ea42f0b961c791f6_s390x", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-alertmanager-rhel8@sha256:cee29442ae18ce94953ca0751d41a8e1c1f41234cdd6fa87ea42f0b961c791f6?arch=s390x&repository_url=registry.redhat.io/rhacm2/prometheus-alertmanager-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/prometheus-rhel8@sha256:acf3d1f575ce051bf0c04e45393c81138f86d0437d5d0f36a7ec2212925f9a92_s390x", + "product": { + "name": "rhacm2/prometheus-rhel8@sha256:acf3d1f575ce051bf0c04e45393c81138f86d0437d5d0f36a7ec2212925f9a92_s390x", + "product_id": "rhacm2/prometheus-rhel8@sha256:acf3d1f575ce051bf0c04e45393c81138f86d0437d5d0f36a7ec2212925f9a92_s390x", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-rhel8@sha256:acf3d1f575ce051bf0c04e45393c81138f86d0437d5d0f36a7ec2212925f9a92?arch=s390x&repository_url=registry.redhat.io/rhacm2/prometheus-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:e14b36c0a7c23a47b3a425511d46aff2acb289bd836464088adc7d57cf380bef_s390x", + "product": { + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:e14b36c0a7c23a47b3a425511d46aff2acb289bd836464088adc7d57cf380bef_s390x", + "product_id": "rhacm2/rbac-query-proxy-rhel8@sha256:e14b36c0a7c23a47b3a425511d46aff2acb289bd836464088adc7d57cf380bef_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rbac-query-proxy-rhel8@sha256:e14b36c0a7c23a47b3a425511d46aff2acb289bd836464088adc7d57cf380bef?arch=s390x&repository_url=registry.redhat.io/rhacm2/rbac-query-proxy-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/search-collector-rhel8@sha256:9c0d344de37947aeefe29a0b122dfcd5258772e944309d2276fc0049c224d058_s390x", + "product": { + "name": "rhacm2/search-collector-rhel8@sha256:9c0d344de37947aeefe29a0b122dfcd5258772e944309d2276fc0049c224d058_s390x", + "product_id": "rhacm2/search-collector-rhel8@sha256:9c0d344de37947aeefe29a0b122dfcd5258772e944309d2276fc0049c224d058_s390x", + "product_identification_helper": { + "purl": "pkg:oci/search-collector-rhel8@sha256:9c0d344de37947aeefe29a0b122dfcd5258772e944309d2276fc0049c224d058?arch=s390x&repository_url=registry.redhat.io/rhacm2/search-collector-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/submariner-addon-rhel8@sha256:f8881d5d9042d2d15c7754480f1309e682cd6baafa8732776fa45a78595c4206_s390x", + "product": { + "name": "rhacm2/submariner-addon-rhel8@sha256:f8881d5d9042d2d15c7754480f1309e682cd6baafa8732776fa45a78595c4206_s390x", + "product_id": "rhacm2/submariner-addon-rhel8@sha256:f8881d5d9042d2d15c7754480f1309e682cd6baafa8732776fa45a78595c4206_s390x", + "product_identification_helper": { + "purl": "pkg:oci/submariner-addon-rhel8@sha256:f8881d5d9042d2d15c7754480f1309e682cd6baafa8732776fa45a78595c4206?arch=s390x&repository_url=registry.redhat.io/rhacm2/submariner-addon-rhel8&tag=v2.8.3-8" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/thanos-rhel8@sha256:4188e1ff8ab01644abe3082f069f47087be55d7549bec11a3fbd62ed4460444f_s390x", + "product": { + "name": "rhacm2/thanos-rhel8@sha256:4188e1ff8ab01644abe3082f069f47087be55d7549bec11a3fbd62ed4460444f_s390x", + "product_id": "rhacm2/thanos-rhel8@sha256:4188e1ff8ab01644abe3082f069f47087be55d7549bec11a3fbd62ed4460444f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/thanos-rhel8@sha256:4188e1ff8ab01644abe3082f069f47087be55d7549bec11a3fbd62ed4460444f?arch=s390x&repository_url=registry.redhat.io/rhacm2/thanos-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:8175e65d039dd727d441f6e33762bc8f621f677ad35120bda8a4ab0012eb1011_s390x", + "product": { + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:8175e65d039dd727d441f6e33762bc8f621f677ad35120bda8a4ab0012eb1011_s390x", + "product_id": "rhacm2/thanos-receive-controller-rhel8@sha256:8175e65d039dd727d441f6e33762bc8f621f677ad35120bda8a4ab0012eb1011_s390x", + "product_identification_helper": { + "purl": "pkg:oci/thanos-receive-controller-rhel8@sha256:8175e65d039dd727d441f6e33762bc8f621f677ad35120bda8a4ab0012eb1011?arch=s390x&repository_url=registry.redhat.io/rhacm2/thanos-receive-controller-rhel8&tag=v2.8.3-5" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:8ea03298ea9b7ad2ab5e7044ec97f36be2ddadd67aecd0b009257c163c5954af_arm64", + "product": { + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:8ea03298ea9b7ad2ab5e7044ec97f36be2ddadd67aecd0b009257c163c5954af_arm64", + "product_id": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:8ea03298ea9b7ad2ab5e7044ec97f36be2ddadd67aecd0b009257c163c5954af_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-governance-policy-addon-controller-rhel8@sha256:8ea03298ea9b7ad2ab5e7044ec97f36be2ddadd67aecd0b009257c163c5954af?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-governance-policy-addon-controller-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:4396bef1d25c606399d775da80d8df03d41cf86081ebedab4b0acf28458ca9b2_arm64", + "product": { + "name": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:4396bef1d25c606399d775da80d8df03d41cf86081ebedab4b0acf28458ca9b2_arm64", + "product_id": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:4396bef1d25c606399d775da80d8df03d41cf86081ebedab4b0acf28458ca9b2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-governance-policy-framework-addon-rhel8@sha256:4396bef1d25c606399d775da80d8df03d41cf86081ebedab4b0acf28458ca9b2?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-governance-policy-framework-addon-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-grafana-rhel8@sha256:3fc6d018b92a00067d8e58bd178d4ccfdd45c922600179e5caf85068735cd1da_arm64", + "product": { + "name": "rhacm2/acm-grafana-rhel8@sha256:3fc6d018b92a00067d8e58bd178d4ccfdd45c922600179e5caf85068735cd1da_arm64", + "product_id": "rhacm2/acm-grafana-rhel8@sha256:3fc6d018b92a00067d8e58bd178d4ccfdd45c922600179e5caf85068735cd1da_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-grafana-rhel8@sha256:3fc6d018b92a00067d8e58bd178d4ccfdd45c922600179e5caf85068735cd1da?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-grafana-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-must-gather-rhel8@sha256:eaef7a412290769e6782af14aaecf4347418e762a9e9ce4b66b4cf1124c600d3_arm64", + "product": { + "name": "rhacm2/acm-must-gather-rhel8@sha256:eaef7a412290769e6782af14aaecf4347418e762a9e9ce4b66b4cf1124c600d3_arm64", + "product_id": "rhacm2/acm-must-gather-rhel8@sha256:eaef7a412290769e6782af14aaecf4347418e762a9e9ce4b66b4cf1124c600d3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-must-gather-rhel8@sha256:eaef7a412290769e6782af14aaecf4347418e762a9e9ce4b66b4cf1124c600d3?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-must-gather-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:198cd84a895a867e262086c84c8a6fea7cfec53bb080ff93c730d3c9169b5b52_arm64", + "product": { + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:198cd84a895a867e262086c84c8a6fea7cfec53bb080ff93c730d3c9169b5b52_arm64", + "product_id": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:198cd84a895a867e262086c84c8a6fea7cfec53bb080ff93c730d3c9169b5b52_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-prometheus-config-reloader-rhel8@sha256:198cd84a895a867e262086c84c8a6fea7cfec53bb080ff93c730d3c9169b5b52?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-prometheus-config-reloader-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-prometheus-rhel8@sha256:fc38b151c466158a8ac994332e41a9c739c28f5768907caafeebde5b8dc4cc1b_arm64", + "product": { + "name": "rhacm2/acm-prometheus-rhel8@sha256:fc38b151c466158a8ac994332e41a9c739c28f5768907caafeebde5b8dc4cc1b_arm64", + "product_id": "rhacm2/acm-prometheus-rhel8@sha256:fc38b151c466158a8ac994332e41a9c739c28f5768907caafeebde5b8dc4cc1b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-prometheus-rhel8@sha256:fc38b151c466158a8ac994332e41a9c739c28f5768907caafeebde5b8dc4cc1b?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-prometheus-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-search-indexer-rhel8@sha256:6117c9c95c21d09e2f996b14f23e21e986ee88a3f9485ec74a2aa32515347896_arm64", + "product": { + "name": "rhacm2/acm-search-indexer-rhel8@sha256:6117c9c95c21d09e2f996b14f23e21e986ee88a3f9485ec74a2aa32515347896_arm64", + "product_id": "rhacm2/acm-search-indexer-rhel8@sha256:6117c9c95c21d09e2f996b14f23e21e986ee88a3f9485ec74a2aa32515347896_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-search-indexer-rhel8@sha256:6117c9c95c21d09e2f996b14f23e21e986ee88a3f9485ec74a2aa32515347896?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-search-indexer-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-search-v2-api-rhel8@sha256:7d73e38dd9451ebd7f9f721271ddfb238c2fa537caecad82e80246f14b93a339_arm64", + "product": { + "name": "rhacm2/acm-search-v2-api-rhel8@sha256:7d73e38dd9451ebd7f9f721271ddfb238c2fa537caecad82e80246f14b93a339_arm64", + "product_id": "rhacm2/acm-search-v2-api-rhel8@sha256:7d73e38dd9451ebd7f9f721271ddfb238c2fa537caecad82e80246f14b93a339_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-search-v2-api-rhel8@sha256:7d73e38dd9451ebd7f9f721271ddfb238c2fa537caecad82e80246f14b93a339?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-search-v2-api-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-search-v2-rhel8@sha256:13d0a4f5c707e4b9b0d69f5924b606fc5924a2bb5dbc372119565c51727a353f_arm64", + "product": { + "name": "rhacm2/acm-search-v2-rhel8@sha256:13d0a4f5c707e4b9b0d69f5924b606fc5924a2bb5dbc372119565c51727a353f_arm64", + "product_id": "rhacm2/acm-search-v2-rhel8@sha256:13d0a4f5c707e4b9b0d69f5924b606fc5924a2bb5dbc372119565c51727a353f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-search-v2-rhel8@sha256:13d0a4f5c707e4b9b0d69f5924b606fc5924a2bb5dbc372119565c51727a353f?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-search-v2-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:22cc0d6d6d348ae55168cec56ab5420f3000a6a41c6d8b10da0e41e16b91d3b9_arm64", + "product": { + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:22cc0d6d6d348ae55168cec56ab5420f3000a6a41c6d8b10da0e41e16b91d3b9_arm64", + "product_id": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:22cc0d6d6d348ae55168cec56ab5420f3000a6a41c6d8b10da0e41e16b91d3b9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/acm-volsync-addon-controller-rhel8@sha256:22cc0d6d6d348ae55168cec56ab5420f3000a6a41c6d8b10da0e41e16b91d3b9?arch=arm64&repository_url=registry.redhat.io/rhacm2/acm-volsync-addon-controller-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/cert-policy-controller-rhel8@sha256:d7b28b1208af6c3a6b07327ab9ae95eb8466d16e164e7e10a517c1b85b1e2f8e_arm64", + "product": { + "name": "rhacm2/cert-policy-controller-rhel8@sha256:d7b28b1208af6c3a6b07327ab9ae95eb8466d16e164e7e10a517c1b85b1e2f8e_arm64", + "product_id": "rhacm2/cert-policy-controller-rhel8@sha256:d7b28b1208af6c3a6b07327ab9ae95eb8466d16e164e7e10a517c1b85b1e2f8e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cert-policy-controller-rhel8@sha256:d7b28b1208af6c3a6b07327ab9ae95eb8466d16e164e7e10a517c1b85b1e2f8e?arch=arm64&repository_url=registry.redhat.io/rhacm2/cert-policy-controller-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:f3b572ca76ec12c87f8866e33c4865cad9da6292e3d28bd9a736f856d8f48ffd_arm64", + "product": { + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:f3b572ca76ec12c87f8866e33c4865cad9da6292e3d28bd9a736f856d8f48ffd_arm64", + "product_id": "rhacm2/cluster-backup-rhel8-operator@sha256:f3b572ca76ec12c87f8866e33c4865cad9da6292e3d28bd9a736f856d8f48ffd_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-backup-rhel8-operator@sha256:f3b572ca76ec12c87f8866e33c4865cad9da6292e3d28bd9a736f856d8f48ffd?arch=arm64&repository_url=registry.redhat.io/rhacm2/cluster-backup-rhel8-operator&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/config-policy-controller-rhel8@sha256:b8e48d0af1d00a7e33b71dc370f7d1a7491242cef5cf239b1036d21ccd14b56e_arm64", + "product": { + "name": "rhacm2/config-policy-controller-rhel8@sha256:b8e48d0af1d00a7e33b71dc370f7d1a7491242cef5cf239b1036d21ccd14b56e_arm64", + "product_id": "rhacm2/config-policy-controller-rhel8@sha256:b8e48d0af1d00a7e33b71dc370f7d1a7491242cef5cf239b1036d21ccd14b56e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/config-policy-controller-rhel8@sha256:b8e48d0af1d00a7e33b71dc370f7d1a7491242cef5cf239b1036d21ccd14b56e?arch=arm64&repository_url=registry.redhat.io/rhacm2/config-policy-controller-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/console-rhel8@sha256:dfc987cc4b0f21bc67d5303f1f881980df9a750b1ad96746205cde47e143adcd_arm64", + "product": { + "name": "rhacm2/console-rhel8@sha256:dfc987cc4b0f21bc67d5303f1f881980df9a750b1ad96746205cde47e143adcd_arm64", + "product_id": "rhacm2/console-rhel8@sha256:dfc987cc4b0f21bc67d5303f1f881980df9a750b1ad96746205cde47e143adcd_arm64", + "product_identification_helper": { + "purl": "pkg:oci/console-rhel8@sha256:dfc987cc4b0f21bc67d5303f1f881980df9a750b1ad96746205cde47e143adcd?arch=arm64&repository_url=registry.redhat.io/rhacm2/console-rhel8&tag=v2.8.3-7" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:aa07d31f828b1015169538c35a73bb8584123c99f0ea35c3e1c2bc2d38ec5ddd_arm64", + "product": { + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:aa07d31f828b1015169538c35a73bb8584123c99f0ea35c3e1c2bc2d38ec5ddd_arm64", + "product_id": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:aa07d31f828b1015169538c35a73bb8584123c99f0ea35c3e1c2bc2d38ec5ddd_arm64", + "product_identification_helper": { + "purl": "pkg:oci/endpoint-monitoring-rhel8-operator@sha256:aa07d31f828b1015169538c35a73bb8584123c99f0ea35c3e1c2bc2d38ec5ddd?arch=arm64&repository_url=registry.redhat.io/rhacm2/endpoint-monitoring-rhel8-operator&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:2c6b83ede0d61101032e831a8927e20d53aad5ae5617d99ebb29d5d2b8460d86_arm64", + "product": { + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:2c6b83ede0d61101032e831a8927e20d53aad5ae5617d99ebb29d5d2b8460d86_arm64", + "product_id": "rhacm2/governance-policy-propagator-rhel8@sha256:2c6b83ede0d61101032e831a8927e20d53aad5ae5617d99ebb29d5d2b8460d86_arm64", + "product_identification_helper": { + "purl": "pkg:oci/governance-policy-propagator-rhel8@sha256:2c6b83ede0d61101032e831a8927e20d53aad5ae5617d99ebb29d5d2b8460d86?arch=arm64&repository_url=registry.redhat.io/rhacm2/governance-policy-propagator-rhel8&tag=v2.8.3-7" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:9785892abbe11d983879cae1716d3483bebffdf5635759a6bb60c79bee4de876_arm64", + "product": { + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:9785892abbe11d983879cae1716d3483bebffdf5635759a6bb60c79bee4de876_arm64", + "product_id": "rhacm2/grafana-dashboard-loader-rhel8@sha256:9785892abbe11d983879cae1716d3483bebffdf5635759a6bb60c79bee4de876_arm64", + "product_identification_helper": { + "purl": "pkg:oci/grafana-dashboard-loader-rhel8@sha256:9785892abbe11d983879cae1716d3483bebffdf5635759a6bb60c79bee4de876?arch=arm64&repository_url=registry.redhat.io/rhacm2/grafana-dashboard-loader-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/iam-policy-controller-rhel8@sha256:a43b1518b8377e28dd79558394c45a9a15cea6d2910054ef0566312451deea57_arm64", + "product": { + "name": "rhacm2/iam-policy-controller-rhel8@sha256:a43b1518b8377e28dd79558394c45a9a15cea6d2910054ef0566312451deea57_arm64", + "product_id": "rhacm2/iam-policy-controller-rhel8@sha256:a43b1518b8377e28dd79558394c45a9a15cea6d2910054ef0566312451deea57_arm64", + "product_identification_helper": { + "purl": "pkg:oci/iam-policy-controller-rhel8@sha256:a43b1518b8377e28dd79558394c45a9a15cea6d2910054ef0566312451deea57?arch=arm64&repository_url=registry.redhat.io/rhacm2/iam-policy-controller-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/insights-client-rhel8@sha256:6715cf45c09921e2041400d6f3346f5fa09f568bbea29635200d05caadc3b773_arm64", + "product": { + "name": "rhacm2/insights-client-rhel8@sha256:6715cf45c09921e2041400d6f3346f5fa09f568bbea29635200d05caadc3b773_arm64", + "product_id": "rhacm2/insights-client-rhel8@sha256:6715cf45c09921e2041400d6f3346f5fa09f568bbea29635200d05caadc3b773_arm64", + "product_identification_helper": { + "purl": "pkg:oci/insights-client-rhel8@sha256:6715cf45c09921e2041400d6f3346f5fa09f568bbea29635200d05caadc3b773?arch=arm64&repository_url=registry.redhat.io/rhacm2/insights-client-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/insights-metrics-rhel8@sha256:4cd64a0df35effbcac4df5a8af2af7ba8b25809344823e1f7131501c94d291f7_arm64", + "product": { + "name": "rhacm2/insights-metrics-rhel8@sha256:4cd64a0df35effbcac4df5a8af2af7ba8b25809344823e1f7131501c94d291f7_arm64", + "product_id": "rhacm2/insights-metrics-rhel8@sha256:4cd64a0df35effbcac4df5a8af2af7ba8b25809344823e1f7131501c94d291f7_arm64", + "product_identification_helper": { + "purl": "pkg:oci/insights-metrics-rhel8@sha256:4cd64a0df35effbcac4df5a8af2af7ba8b25809344823e1f7131501c94d291f7?arch=arm64&repository_url=registry.redhat.io/rhacm2/insights-metrics-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:54d205dd8adcaf5c3527e740962902aa58fb965312f0c5700225a66fae04a91f_arm64", + "product": { + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:54d205dd8adcaf5c3527e740962902aa58fb965312f0c5700225a66fae04a91f_arm64", + "product_id": "rhacm2/klusterlet-addon-controller-rhel8@sha256:54d205dd8adcaf5c3527e740962902aa58fb965312f0c5700225a66fae04a91f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/klusterlet-addon-controller-rhel8@sha256:54d205dd8adcaf5c3527e740962902aa58fb965312f0c5700225a66fae04a91f?arch=arm64&repository_url=registry.redhat.io/rhacm2/klusterlet-addon-controller-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:7421984aba8fe9f8ab8212086eb38bed439644d0f52f08d8d1d903e6d1fe3014_arm64", + "product": { + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:7421984aba8fe9f8ab8212086eb38bed439644d0f52f08d8d1d903e6d1fe3014_arm64", + "product_id": "rhacm2/kube-rbac-proxy-rhel8@sha256:7421984aba8fe9f8ab8212086eb38bed439644d0f52f08d8d1d903e6d1fe3014_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kube-rbac-proxy-rhel8@sha256:7421984aba8fe9f8ab8212086eb38bed439644d0f52f08d8d1d903e6d1fe3014?arch=arm64&repository_url=registry.redhat.io/rhacm2/kube-rbac-proxy-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/kube-state-metrics-rhel8@sha256:407b61e84a5f000bbe2efac0a6137e5efb21c614ae48762de2af71bf162a480e_arm64", + "product": { + "name": "rhacm2/kube-state-metrics-rhel8@sha256:407b61e84a5f000bbe2efac0a6137e5efb21c614ae48762de2af71bf162a480e_arm64", + "product_id": "rhacm2/kube-state-metrics-rhel8@sha256:407b61e84a5f000bbe2efac0a6137e5efb21c614ae48762de2af71bf162a480e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kube-state-metrics-rhel8@sha256:407b61e84a5f000bbe2efac0a6137e5efb21c614ae48762de2af71bf162a480e?arch=arm64&repository_url=registry.redhat.io/rhacm2/kube-state-metrics-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/memcached-rhel8@sha256:ea00c275e1b3c77d9bd80f216f09a2474f34d4d981e3803996a15cde3c8572af_arm64", + "product": { + "name": "rhacm2/memcached-rhel8@sha256:ea00c275e1b3c77d9bd80f216f09a2474f34d4d981e3803996a15cde3c8572af_arm64", + "product_id": "rhacm2/memcached-rhel8@sha256:ea00c275e1b3c77d9bd80f216f09a2474f34d4d981e3803996a15cde3c8572af_arm64", + "product_identification_helper": { + "purl": "pkg:oci/memcached-rhel8@sha256:ea00c275e1b3c77d9bd80f216f09a2474f34d4d981e3803996a15cde3c8572af?arch=arm64&repository_url=registry.redhat.io/rhacm2/memcached-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/memcached-exporter-rhel8@sha256:fe11bab716998c748e46b24736a902fef429706a5be2336bfb585a5987beffa9_arm64", + "product": { + "name": "rhacm2/memcached-exporter-rhel8@sha256:fe11bab716998c748e46b24736a902fef429706a5be2336bfb585a5987beffa9_arm64", + "product_id": "rhacm2/memcached-exporter-rhel8@sha256:fe11bab716998c748e46b24736a902fef429706a5be2336bfb585a5987beffa9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/memcached-exporter-rhel8@sha256:fe11bab716998c748e46b24736a902fef429706a5be2336bfb585a5987beffa9?arch=arm64&repository_url=registry.redhat.io/rhacm2/memcached-exporter-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/metrics-collector-rhel8@sha256:3cd9604f468fe68386f4b441f7c790e0e865e12a18bfd457220589ec41e6e981_arm64", + "product": { + "name": "rhacm2/metrics-collector-rhel8@sha256:3cd9604f468fe68386f4b441f7c790e0e865e12a18bfd457220589ec41e6e981_arm64", + "product_id": "rhacm2/metrics-collector-rhel8@sha256:3cd9604f468fe68386f4b441f7c790e0e865e12a18bfd457220589ec41e6e981_arm64", + "product_identification_helper": { + "purl": "pkg:oci/metrics-collector-rhel8@sha256:3cd9604f468fe68386f4b441f7c790e0e865e12a18bfd457220589ec41e6e981?arch=arm64&repository_url=registry.redhat.io/rhacm2/metrics-collector-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicloud-integrations-rhel8@sha256:baa9baf651e73ea576e910c36df51f9ab96350a42e301ad6ac917869cdf57060_arm64", + "product": { + "name": "rhacm2/multicloud-integrations-rhel8@sha256:baa9baf651e73ea576e910c36df51f9ab96350a42e301ad6ac917869cdf57060_arm64", + "product_id": "rhacm2/multicloud-integrations-rhel8@sha256:baa9baf651e73ea576e910c36df51f9ab96350a42e301ad6ac917869cdf57060_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicloud-integrations-rhel8@sha256:baa9baf651e73ea576e910c36df51f9ab96350a42e301ad6ac917869cdf57060?arch=arm64&repository_url=registry.redhat.io/rhacm2/multicloud-integrations-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multiclusterhub-rhel8@sha256:e49598f46fbb8aa9323c1cf3a26554383429489fe8fcbcb995aae0f7bb006b64_arm64", + "product": { + "name": "rhacm2/multiclusterhub-rhel8@sha256:e49598f46fbb8aa9323c1cf3a26554383429489fe8fcbcb995aae0f7bb006b64_arm64", + "product_id": "rhacm2/multiclusterhub-rhel8@sha256:e49598f46fbb8aa9323c1cf3a26554383429489fe8fcbcb995aae0f7bb006b64_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multiclusterhub-rhel8@sha256:e49598f46fbb8aa9323c1cf3a26554383429489fe8fcbcb995aae0f7bb006b64?arch=arm64&repository_url=registry.redhat.io/rhacm2/multiclusterhub-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:e25adb6d63bc98e71c723c46e0fe1c4f1254363b48e106ab2e03692fc10ece83_arm64", + "product": { + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:e25adb6d63bc98e71c723c46e0fe1c4f1254363b48e106ab2e03692fc10ece83_arm64", + "product_id": "rhacm2/multicluster-observability-rhel8-operator@sha256:e25adb6d63bc98e71c723c46e0fe1c4f1254363b48e106ab2e03692fc10ece83_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-observability-rhel8-operator@sha256:e25adb6d63bc98e71c723c46e0fe1c4f1254363b48e106ab2e03692fc10ece83?arch=arm64&repository_url=registry.redhat.io/rhacm2/multicluster-observability-rhel8-operator&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:c5110059eae4f4686f5f4241a6c6554b55762da4af5fd63352076bc4dca3e3a2_arm64", + "product": { + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:c5110059eae4f4686f5f4241a6c6554b55762da4af5fd63352076bc4dca3e3a2_arm64", + "product_id": "rhacm2/multicluster-operators-application-rhel8@sha256:c5110059eae4f4686f5f4241a6c6554b55762da4af5fd63352076bc4dca3e3a2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-application-rhel8@sha256:c5110059eae4f4686f5f4241a6c6554b55762da4af5fd63352076bc4dca3e3a2?arch=arm64&repository_url=registry.redhat.io/rhacm2/multicluster-operators-application-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:e9324cfef796306a65cd912f5391e78662613a1c270afb4402b57b3ccac884a7_arm64", + "product": { + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:e9324cfef796306a65cd912f5391e78662613a1c270afb4402b57b3ccac884a7_arm64", + "product_id": "rhacm2/multicluster-operators-channel-rhel8@sha256:e9324cfef796306a65cd912f5391e78662613a1c270afb4402b57b3ccac884a7_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-channel-rhel8@sha256:e9324cfef796306a65cd912f5391e78662613a1c270afb4402b57b3ccac884a7?arch=arm64&repository_url=registry.redhat.io/rhacm2/multicluster-operators-channel-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:8dd5f35ec3935e0a20e319087be6b7bb5dfe39c6e3c9b54fb5718a12869f3809_arm64", + "product": { + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:8dd5f35ec3935e0a20e319087be6b7bb5dfe39c6e3c9b54fb5718a12869f3809_arm64", + "product_id": "rhacm2/multicluster-operators-subscription-rhel8@sha256:8dd5f35ec3935e0a20e319087be6b7bb5dfe39c6e3c9b54fb5718a12869f3809_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-operators-subscription-rhel8@sha256:8dd5f35ec3935e0a20e319087be6b7bb5dfe39c6e3c9b54fb5718a12869f3809?arch=arm64&repository_url=registry.redhat.io/rhacm2/multicluster-operators-subscription-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/node-exporter-rhel8@sha256:d736cf3539c30e44abaf8478e34de874ef11da74d6ff19ad2f2cb3207b1fc7a8_arm64", + "product": { + "name": "rhacm2/node-exporter-rhel8@sha256:d736cf3539c30e44abaf8478e34de874ef11da74d6ff19ad2f2cb3207b1fc7a8_arm64", + "product_id": "rhacm2/node-exporter-rhel8@sha256:d736cf3539c30e44abaf8478e34de874ef11da74d6ff19ad2f2cb3207b1fc7a8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/node-exporter-rhel8@sha256:d736cf3539c30e44abaf8478e34de874ef11da74d6ff19ad2f2cb3207b1fc7a8?arch=arm64&repository_url=registry.redhat.io/rhacm2/node-exporter-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/observatorium-rhel8@sha256:1c39ffe1868f2fa48d7bf4f3a7deb9f03f47a9c0b93ca15d98cec710b87ee420_arm64", + "product": { + "name": "rhacm2/observatorium-rhel8@sha256:1c39ffe1868f2fa48d7bf4f3a7deb9f03f47a9c0b93ca15d98cec710b87ee420_arm64", + "product_id": "rhacm2/observatorium-rhel8@sha256:1c39ffe1868f2fa48d7bf4f3a7deb9f03f47a9c0b93ca15d98cec710b87ee420_arm64", + "product_identification_helper": { + "purl": "pkg:oci/observatorium-rhel8@sha256:1c39ffe1868f2fa48d7bf4f3a7deb9f03f47a9c0b93ca15d98cec710b87ee420?arch=arm64&repository_url=registry.redhat.io/rhacm2/observatorium-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/observatorium-rhel8-operator@sha256:b7b55b0036e421c84a2a1c2fffe0c7f4c90d399ec0c31fdaad6ed6517ce927de_arm64", + "product": { + "name": "rhacm2/observatorium-rhel8-operator@sha256:b7b55b0036e421c84a2a1c2fffe0c7f4c90d399ec0c31fdaad6ed6517ce927de_arm64", + "product_id": "rhacm2/observatorium-rhel8-operator@sha256:b7b55b0036e421c84a2a1c2fffe0c7f4c90d399ec0c31fdaad6ed6517ce927de_arm64", + "product_identification_helper": { + "purl": "pkg:oci/observatorium-rhel8-operator@sha256:b7b55b0036e421c84a2a1c2fffe0c7f4c90d399ec0c31fdaad6ed6517ce927de?arch=arm64&repository_url=registry.redhat.io/rhacm2/observatorium-rhel8-operator&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:96490ee0865cfd75c591789c415115c638dd309b06bad37d840154f8e030d70d_arm64", + "product": { + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:96490ee0865cfd75c591789c415115c638dd309b06bad37d840154f8e030d70d_arm64", + "product_id": "rhacm2/prometheus-alertmanager-rhel8@sha256:96490ee0865cfd75c591789c415115c638dd309b06bad37d840154f8e030d70d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-alertmanager-rhel8@sha256:96490ee0865cfd75c591789c415115c638dd309b06bad37d840154f8e030d70d?arch=arm64&repository_url=registry.redhat.io/rhacm2/prometheus-alertmanager-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/prometheus-rhel8@sha256:3b70591e49960ee52a7c7f3d1736ef83a55c2989c283df09c6d02a76e096918e_arm64", + "product": { + "name": "rhacm2/prometheus-rhel8@sha256:3b70591e49960ee52a7c7f3d1736ef83a55c2989c283df09c6d02a76e096918e_arm64", + "product_id": "rhacm2/prometheus-rhel8@sha256:3b70591e49960ee52a7c7f3d1736ef83a55c2989c283df09c6d02a76e096918e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-rhel8@sha256:3b70591e49960ee52a7c7f3d1736ef83a55c2989c283df09c6d02a76e096918e?arch=arm64&repository_url=registry.redhat.io/rhacm2/prometheus-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:f6d9e53d5bbac3b0c4f12749e91f2be33fb0744432c9e1b537c68f087bd1ca21_arm64", + "product": { + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:f6d9e53d5bbac3b0c4f12749e91f2be33fb0744432c9e1b537c68f087bd1ca21_arm64", + "product_id": "rhacm2/rbac-query-proxy-rhel8@sha256:f6d9e53d5bbac3b0c4f12749e91f2be33fb0744432c9e1b537c68f087bd1ca21_arm64", + "product_identification_helper": { + "purl": "pkg:oci/rbac-query-proxy-rhel8@sha256:f6d9e53d5bbac3b0c4f12749e91f2be33fb0744432c9e1b537c68f087bd1ca21?arch=arm64&repository_url=registry.redhat.io/rhacm2/rbac-query-proxy-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/search-collector-rhel8@sha256:59134348c5e1cd6a4015b990716374ba1ca98c1b326eaf2b09d5919fd00f89a1_arm64", + "product": { + "name": "rhacm2/search-collector-rhel8@sha256:59134348c5e1cd6a4015b990716374ba1ca98c1b326eaf2b09d5919fd00f89a1_arm64", + "product_id": "rhacm2/search-collector-rhel8@sha256:59134348c5e1cd6a4015b990716374ba1ca98c1b326eaf2b09d5919fd00f89a1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/search-collector-rhel8@sha256:59134348c5e1cd6a4015b990716374ba1ca98c1b326eaf2b09d5919fd00f89a1?arch=arm64&repository_url=registry.redhat.io/rhacm2/search-collector-rhel8&tag=v2.8.3-5" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/submariner-addon-rhel8@sha256:3c87dd67c5a7eb884f2ce7a091db8b48cce539b92fb5d5be1c10b9cbea5184ed_arm64", + "product": { + "name": "rhacm2/submariner-addon-rhel8@sha256:3c87dd67c5a7eb884f2ce7a091db8b48cce539b92fb5d5be1c10b9cbea5184ed_arm64", + "product_id": "rhacm2/submariner-addon-rhel8@sha256:3c87dd67c5a7eb884f2ce7a091db8b48cce539b92fb5d5be1c10b9cbea5184ed_arm64", + "product_identification_helper": { + "purl": "pkg:oci/submariner-addon-rhel8@sha256:3c87dd67c5a7eb884f2ce7a091db8b48cce539b92fb5d5be1c10b9cbea5184ed?arch=arm64&repository_url=registry.redhat.io/rhacm2/submariner-addon-rhel8&tag=v2.8.3-8" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/thanos-rhel8@sha256:0ff9bf2d3989c7ea645d65aec11520fa9735e926bb51f28655e21b2467f9fef0_arm64", + "product": { + "name": "rhacm2/thanos-rhel8@sha256:0ff9bf2d3989c7ea645d65aec11520fa9735e926bb51f28655e21b2467f9fef0_arm64", + "product_id": "rhacm2/thanos-rhel8@sha256:0ff9bf2d3989c7ea645d65aec11520fa9735e926bb51f28655e21b2467f9fef0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/thanos-rhel8@sha256:0ff9bf2d3989c7ea645d65aec11520fa9735e926bb51f28655e21b2467f9fef0?arch=arm64&repository_url=registry.redhat.io/rhacm2/thanos-rhel8&tag=v2.8.3-6" + } + } + }, + { + "category": "product_version", + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:ee071999e06e5184b189d2bef0fcadc7738e257ca9246b8846f8af428100a9e9_arm64", + "product": { + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:ee071999e06e5184b189d2bef0fcadc7738e257ca9246b8846f8af428100a9e9_arm64", + "product_id": "rhacm2/thanos-receive-controller-rhel8@sha256:ee071999e06e5184b189d2bef0fcadc7738e257ca9246b8846f8af428100a9e9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/thanos-receive-controller-rhel8@sha256:ee071999e06e5184b189d2bef0fcadc7738e257ca9246b8846f8af428100a9e9?arch=arm64&repository_url=registry.redhat.io/rhacm2/thanos-receive-controller-rhel8&tag=v2.8.3-5" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "multicluster-engine/addon-manager-rhel8@sha256:50cad933417e6636796fbad40c2ce2356d546a06ea6831a81857e5188223ad64_amd64", + "product": { + "name": "multicluster-engine/addon-manager-rhel8@sha256:50cad933417e6636796fbad40c2ce2356d546a06ea6831a81857e5188223ad64_amd64", + "product_id": "multicluster-engine/addon-manager-rhel8@sha256:50cad933417e6636796fbad40c2ce2356d546a06ea6831a81857e5188223ad64_amd64", + "product_identification_helper": { + "purl": "pkg:oci/addon-manager-rhel8@sha256:50cad933417e6636796fbad40c2ce2356d546a06ea6831a81857e5188223ad64?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/addon-manager-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/agent-service-rhel8@sha256:6dd6c5d41ce67926b4fab265258afad6cf313788bc66ba2e03c1d7312f2122e9_amd64", + "product": { + "name": "multicluster-engine/agent-service-rhel8@sha256:6dd6c5d41ce67926b4fab265258afad6cf313788bc66ba2e03c1d7312f2122e9_amd64", + "product_id": "multicluster-engine/agent-service-rhel8@sha256:6dd6c5d41ce67926b4fab265258afad6cf313788bc66ba2e03c1d7312f2122e9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/agent-service-rhel8@sha256:6dd6c5d41ce67926b4fab265258afad6cf313788bc66ba2e03c1d7312f2122e9?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/agent-service-rhel8&tag=v2.3.3-8" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:83354fd2be20965f92188b485bbc8675b79133334eedc7b4c5b22cf6242081b7_amd64", + "product": { + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:83354fd2be20965f92188b485bbc8675b79133334eedc7b4c5b22cf6242081b7_amd64", + "product_id": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:83354fd2be20965f92188b485bbc8675b79133334eedc7b4c5b22cf6242081b7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/apiserver-network-proxy-rhel8@sha256:83354fd2be20965f92188b485bbc8675b79133334eedc7b4c5b22cf6242081b7?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/apiserver-network-proxy-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:16d31314a4c46c4872edfd3e49aa2eb32ec6aa68788646701c6a2bfecfb03f3d_amd64", + "product": { + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:16d31314a4c46c4872edfd3e49aa2eb32ec6aa68788646701c6a2bfecfb03f3d_amd64", + "product_id": "multicluster-engine/assisted-image-service-rhel8@sha256:16d31314a4c46c4872edfd3e49aa2eb32ec6aa68788646701c6a2bfecfb03f3d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/assisted-image-service-rhel8@sha256:16d31314a4c46c4872edfd3e49aa2eb32ec6aa68788646701c6a2bfecfb03f3d?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/assisted-image-service-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-agent-rhel8@sha256:52bb6504a93c65a761700a787768797a04bb9f0199e20ab6eb3247b604347c35_amd64", + "product": { + "name": "multicluster-engine/assisted-installer-agent-rhel8@sha256:52bb6504a93c65a761700a787768797a04bb9f0199e20ab6eb3247b604347c35_amd64", + "product_id": "multicluster-engine/assisted-installer-agent-rhel8@sha256:52bb6504a93c65a761700a787768797a04bb9f0199e20ab6eb3247b604347c35_amd64", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-agent-rhel8@sha256:52bb6504a93c65a761700a787768797a04bb9f0199e20ab6eb3247b604347c35?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel8&tag=v2.3.3-7" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-rhel8@sha256:e22ef482c3b0b5ef3b32873b3e53743d1c24f5353f06a071848b74cc6e232fbd_amd64", + "product": { + "name": "multicluster-engine/assisted-installer-rhel8@sha256:e22ef482c3b0b5ef3b32873b3e53743d1c24f5353f06a071848b74cc6e232fbd_amd64", + "product_id": "multicluster-engine/assisted-installer-rhel8@sha256:e22ef482c3b0b5ef3b32873b3e53743d1c24f5353f06a071848b74cc6e232fbd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-rhel8@sha256:e22ef482c3b0b5ef3b32873b3e53743d1c24f5353f06a071848b74cc6e232fbd?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:e4a81f4e68b52bea9e615e15037e2a486c21d08a6011ba7188999534ee88f6cd_amd64", + "product": { + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:e4a81f4e68b52bea9e615e15037e2a486c21d08a6011ba7188999534ee88f6cd_amd64", + "product_id": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:e4a81f4e68b52bea9e615e15037e2a486c21d08a6011ba7188999534ee88f6cd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-reporter-rhel8@sha256:e4a81f4e68b52bea9e615e15037e2a486c21d08a6011ba7188999534ee88f6cd?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-reporter-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:c54d8e74b8468c6c1b2dfbf924933b4324304102431e8319c33c943ce5714a0a_amd64", + "product": { + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:c54d8e74b8468c6c1b2dfbf924933b4324304102431e8319c33c943ce5714a0a_amd64", + "product_id": "multicluster-engine/aws-encryption-provider-rhel8@sha256:c54d8e74b8468c6c1b2dfbf924933b4324304102431e8319c33c943ce5714a0a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/aws-encryption-provider-rhel8@sha256:c54d8e74b8468c6c1b2dfbf924933b4324304102431e8319c33c943ce5714a0a?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/aws-encryption-provider-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-rhel8@sha256:75bfc4d1c7e97eb385633effa24d34ea641d7aa28edd97fb1cfafb3f259fcd51_amd64", + "product": { + "name": "multicluster-engine/cluster-api-rhel8@sha256:75bfc4d1c7e97eb385633effa24d34ea641d7aa28edd97fb1cfafb3f259fcd51_amd64", + "product_id": "multicluster-engine/cluster-api-rhel8@sha256:75bfc4d1c7e97eb385633effa24d34ea641d7aa28edd97fb1cfafb3f259fcd51_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-rhel8@sha256:75bfc4d1c7e97eb385633effa24d34ea641d7aa28edd97fb1cfafb3f259fcd51?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:6aa6df5b334170f4151aedd2d5e19fe5f0ee0e0c81a4c266690e4eeac98863ac_amd64", + "product": { + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:6aa6df5b334170f4151aedd2d5e19fe5f0ee0e0c81a4c266690e4eeac98863ac_amd64", + "product_id": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:6aa6df5b334170f4151aedd2d5e19fe5f0ee0e0c81a4c266690e4eeac98863ac_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:6aa6df5b334170f4151aedd2d5e19fe5f0ee0e0c81a4c266690e4eeac98863ac?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:6aa6df5b334170f4151aedd2d5e19fe5f0ee0e0c81a4c266690e4eeac98863ac_amd64", + "product": { + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:6aa6df5b334170f4151aedd2d5e19fe5f0ee0e0c81a4c266690e4eeac98863ac_amd64", + "product_id": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:6aa6df5b334170f4151aedd2d5e19fe5f0ee0e0c81a4c266690e4eeac98863ac_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-agent-rhel8@sha256:6aa6df5b334170f4151aedd2d5e19fe5f0ee0e0c81a4c266690e4eeac98863ac?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:b991d5afa5c302fc1853179b6fbac247a813dd1c60e45410a09f144203b36744_amd64", + "product": { + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:b991d5afa5c302fc1853179b6fbac247a813dd1c60e45410a09f144203b36744_amd64", + "product_id": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:b991d5afa5c302fc1853179b6fbac247a813dd1c60e45410a09f144203b36744_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-aws-rhel8@sha256:b991d5afa5c302fc1853179b6fbac247a813dd1c60e45410a09f144203b36744?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:5a79e9e99259d22709acd5403fa1f36bd469137803f21640fc5a5c7e25efcef5_amd64", + "product": { + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:5a79e9e99259d22709acd5403fa1f36bd469137803f21640fc5a5c7e25efcef5_amd64", + "product_id": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:5a79e9e99259d22709acd5403fa1f36bd469137803f21640fc5a5c7e25efcef5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-azure-rhel8@sha256:5a79e9e99259d22709acd5403fa1f36bd469137803f21640fc5a5c7e25efcef5?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-azure-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:68b81f2b1d1a87a06eb5279a4dcfcbf5827a7b1c5b1734078f407a50483e0df9_amd64", + "product": { + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:68b81f2b1d1a87a06eb5279a4dcfcbf5827a7b1c5b1734078f407a50483e0df9_amd64", + "product_id": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:68b81f2b1d1a87a06eb5279a4dcfcbf5827a7b1c5b1734078f407a50483e0df9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-kubevirt-rhel8@sha256:68b81f2b1d1a87a06eb5279a4dcfcbf5827a7b1c5b1734078f407a50483e0df9?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:2e27ac1fe717737ef15ebc710e0c57728b4b5f61f5da92f183b8840b1f1b222a_amd64", + "product": { + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:2e27ac1fe717737ef15ebc710e0c57728b4b5f61f5da92f183b8840b1f1b222a_amd64", + "product_id": "multicluster-engine/clusterclaims-controller-rhel8@sha256:2e27ac1fe717737ef15ebc710e0c57728b4b5f61f5da92f183b8840b1f1b222a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/clusterclaims-controller-rhel8@sha256:2e27ac1fe717737ef15ebc710e0c57728b4b5f61f5da92f183b8840b1f1b222a?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:cd5dea0821fb1808423519811a3faaffc0d3fe0eefea879f55c848999a7cc9e9_amd64", + "product": { + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:cd5dea0821fb1808423519811a3faaffc0d3fe0eefea879f55c848999a7cc9e9_amd64", + "product_id": "multicluster-engine/cluster-curator-controller-rhel8@sha256:cd5dea0821fb1808423519811a3faaffc0d3fe0eefea879f55c848999a7cc9e9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-curator-controller-rhel8@sha256:cd5dea0821fb1808423519811a3faaffc0d3fe0eefea879f55c848999a7cc9e9?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:46bce64a807b68bfa67a6e527ae4dd9062d0c57d26b1c586be77a5ae2e9152ee_amd64", + "product": { + "name": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:46bce64a807b68bfa67a6e527ae4dd9062d0c57d26b1c586be77a5ae2e9152ee_amd64", + "product_id": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:46bce64a807b68bfa67a6e527ae4dd9062d0c57d26b1c586be77a5ae2e9152ee_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-image-set-controller-rhel8@sha256:46bce64a807b68bfa67a6e527ae4dd9062d0c57d26b1c586be77a5ae2e9152ee?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:4302d50fee31bb5c82b2aca83e17c81f41520ff23638ea07b1a6895d4010fa8e_amd64", + "product": { + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:4302d50fee31bb5c82b2aca83e17c81f41520ff23638ea07b1a6895d4010fa8e_amd64", + "product_id": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:4302d50fee31bb5c82b2aca83e17c81f41520ff23638ea07b1a6895d4010fa8e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/clusterlifecycle-state-metrics-rhel8@sha256:4302d50fee31bb5c82b2aca83e17c81f41520ff23638ea07b1a6895d4010fa8e?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:627b0049a7385adadf5207ab7298077f2a5783a9590bc12b1953ba14b3e7ca72_amd64", + "product": { + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:627b0049a7385adadf5207ab7298077f2a5783a9590bc12b1953ba14b3e7ca72_amd64", + "product_id": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:627b0049a7385adadf5207ab7298077f2a5783a9590bc12b1953ba14b3e7ca72_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-proxy-addon-rhel8@sha256:627b0049a7385adadf5207ab7298077f2a5783a9590bc12b1953ba14b3e7ca72?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:cd0cff8fcf84541306ff160060cb8482e157a7efc6aa502c32988c81c13c115b_amd64", + "product": { + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:cd0cff8fcf84541306ff160060cb8482e157a7efc6aa502c32988c81c13c115b_amd64", + "product_id": "multicluster-engine/cluster-proxy-rhel8@sha256:cd0cff8fcf84541306ff160060cb8482e157a7efc6aa502c32988c81c13c115b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-proxy-rhel8@sha256:cd0cff8fcf84541306ff160060cb8482e157a7efc6aa502c32988c81c13c115b?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/console-mce-rhel8@sha256:54cf697f751239fe433c0c07ed7c333e8eacb032bed6cb9ae4d3a1744ddd395b_amd64", + "product": { + "name": "multicluster-engine/console-mce-rhel8@sha256:54cf697f751239fe433c0c07ed7c333e8eacb032bed6cb9ae4d3a1744ddd395b_amd64", + "product_id": "multicluster-engine/console-mce-rhel8@sha256:54cf697f751239fe433c0c07ed7c333e8eacb032bed6cb9ae4d3a1744ddd395b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/console-mce-rhel8@sha256:54cf697f751239fe433c0c07ed7c333e8eacb032bed6cb9ae4d3a1744ddd395b?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/console-mce-rhel8&tag=v2.3.3-7" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:54cf697f751239fe433c0c07ed7c333e8eacb032bed6cb9ae4d3a1744ddd395b_amd64", + "product": { + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:54cf697f751239fe433c0c07ed7c333e8eacb032bed6cb9ae4d3a1744ddd395b_amd64", + "product_id": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:54cf697f751239fe433c0c07ed7c333e8eacb032bed6cb9ae4d3a1744ddd395b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-console-mce-rhel8@sha256:54cf697f751239fe433c0c07ed7c333e8eacb032bed6cb9ae4d3a1744ddd395b?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-console-mce-rhel8&tag=v2.3.3-7" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/discovery-rhel8@sha256:0ff23b4efe326461634460014e303ed41f374fe91e5a6d27d6b9605fa83df9c6_amd64", + "product": { + "name": "multicluster-engine/discovery-rhel8@sha256:0ff23b4efe326461634460014e303ed41f374fe91e5a6d27d6b9605fa83df9c6_amd64", + "product_id": "multicluster-engine/discovery-rhel8@sha256:0ff23b4efe326461634460014e303ed41f374fe91e5a6d27d6b9605fa83df9c6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/discovery-rhel8@sha256:0ff23b4efe326461634460014e303ed41f374fe91e5a6d27d6b9605fa83df9c6?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/discovery-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hive-rhel8@sha256:17ae9414eb8215493d07e7d5cf755ce63531340bd5ad741411671db5e4475530_amd64", + "product": { + "name": "multicluster-engine/hive-rhel8@sha256:17ae9414eb8215493d07e7d5cf755ce63531340bd5ad741411671db5e4475530_amd64", + "product_id": "multicluster-engine/hive-rhel8@sha256:17ae9414eb8215493d07e7d5cf755ce63531340bd5ad741411671db5e4475530_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hive-rhel8@sha256:17ae9414eb8215493d07e7d5cf755ce63531340bd5ad741411671db5e4475530?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/hive-rhel8&tag=v2.3.3-7" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:6948beef79528dbc7b6b1c95418b6960fb4b40926431c1cab0861d801229f5e1_amd64", + "product": { + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:6948beef79528dbc7b6b1c95418b6960fb4b40926431c1cab0861d801229f5e1_amd64", + "product_id": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:6948beef79528dbc7b6b1c95418b6960fb4b40926431c1cab0861d801229f5e1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-hypershift-addon-rhel8-operator@sha256:6948beef79528dbc7b6b1c95418b6960fb4b40926431c1cab0861d801229f5e1?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:6948beef79528dbc7b6b1c95418b6960fb4b40926431c1cab0861d801229f5e1_amd64", + "product": { + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:6948beef79528dbc7b6b1c95418b6960fb4b40926431c1cab0861d801229f5e1_amd64", + "product_id": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:6948beef79528dbc7b6b1c95418b6960fb4b40926431c1cab0861d801229f5e1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-addon-rhel8-operator@sha256:6948beef79528dbc7b6b1c95418b6960fb4b40926431c1cab0861d801229f5e1?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/hypershift-addon-rhel8-operator&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-cli-rhel8@sha256:b156078fa98259e63b63e11cd977710ab77d088fb448780ff48083a6dd323ebc_amd64", + "product": { + "name": "multicluster-engine/hypershift-cli-rhel8@sha256:b156078fa98259e63b63e11cd977710ab77d088fb448780ff48083a6dd323ebc_amd64", + "product_id": "multicluster-engine/hypershift-cli-rhel8@sha256:b156078fa98259e63b63e11cd977710ab77d088fb448780ff48083a6dd323ebc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-cli-rhel8@sha256:b156078fa98259e63b63e11cd977710ab77d088fb448780ff48083a6dd323ebc?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/hypershift-cli-rhel8&tag=v2.3.3-8" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:08e3891fc166ec041ec9b4bded9789a257b25a125195e9a43dfb38d4a2648259_amd64", + "product": { + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:08e3891fc166ec041ec9b4bded9789a257b25a125195e9a43dfb38d4a2648259_amd64", + "product_id": "multicluster-engine/hypershift-rhel8-operator@sha256:08e3891fc166ec041ec9b4bded9789a257b25a125195e9a43dfb38d4a2648259_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-rhel8-operator@sha256:08e3891fc166ec041ec9b4bded9789a257b25a125195e9a43dfb38d4a2648259?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/hypershift-rhel8-operator&tag=v2.3.3-6" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/klusterlet-operator-bundle@sha256:8e8a04f6c10e7002bd3ba88a58aa771d74fa63abc95c9a503cc9ccf34cc6530f_amd64", + "product": { + "name": "multicluster-engine/klusterlet-operator-bundle@sha256:8e8a04f6c10e7002bd3ba88a58aa771d74fa63abc95c9a503cc9ccf34cc6530f_amd64", + "product_id": "multicluster-engine/klusterlet-operator-bundle@sha256:8e8a04f6c10e7002bd3ba88a58aa771d74fa63abc95c9a503cc9ccf34cc6530f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/klusterlet-operator-bundle@sha256:8e8a04f6c10e7002bd3ba88a58aa771d74fa63abc95c9a503cc9ccf34cc6530f?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/klusterlet-operator-bundle&tag=v2.3.3-7" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/kube-rbac-proxy-mce-rhel8@sha256:8853cd934a5a5f1da4dd7247a9e5694918961e7ba66e52c5fbcce957b670aec3_amd64", + "product": { + "name": "multicluster-engine/kube-rbac-proxy-mce-rhel8@sha256:8853cd934a5a5f1da4dd7247a9e5694918961e7ba66e52c5fbcce957b670aec3_amd64", + "product_id": "multicluster-engine/kube-rbac-proxy-mce-rhel8@sha256:8853cd934a5a5f1da4dd7247a9e5694918961e7ba66e52c5fbcce957b670aec3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kube-rbac-proxy-mce-rhel8@sha256:8853cd934a5a5f1da4dd7247a9e5694918961e7ba66e52c5fbcce957b670aec3?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel8&tag=v2.3.3-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:1348528802346b4731c43f09cb3fd24816c569b372ab86e3c8c681a501ba0247_amd64", + "product": { + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:1348528802346b4731c43f09cb3fd24816c569b372ab86e3c8c681a501ba0247_amd64", + "product_id": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:1348528802346b4731c43f09cb3fd24816c569b372ab86e3c8c681a501ba0247_amd64", + "product_identification_helper": { + "purl": "pkg:oci/managedcluster-import-controller-rhel8@sha256:1348528802346b4731c43f09cb3fd24816c569b372ab86e3c8c681a501ba0247?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:5ee998c169cebe65dc6ffeb480170f9babdc38ac7756440ad7e48f26ea80f13a_amd64", + "product": { + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:5ee998c169cebe65dc6ffeb480170f9babdc38ac7756440ad7e48f26ea80f13a_amd64", + "product_id": "multicluster-engine/managed-serviceaccount-rhel8@sha256:5ee998c169cebe65dc6ffeb480170f9babdc38ac7756440ad7e48f26ea80f13a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/managed-serviceaccount-rhel8@sha256:5ee998c169cebe65dc6ffeb480170f9babdc38ac7756440ad7e48f26ea80f13a?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:5ee998c169cebe65dc6ffeb480170f9babdc38ac7756440ad7e48f26ea80f13a_amd64", + "product": { + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:5ee998c169cebe65dc6ffeb480170f9babdc38ac7756440ad7e48f26ea80f13a_amd64", + "product_id": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:5ee998c169cebe65dc6ffeb480170f9babdc38ac7756440ad7e48f26ea80f13a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-managed-serviceaccount-rhel8@sha256:5ee998c169cebe65dc6ffeb480170f9babdc38ac7756440ad7e48f26ea80f13a?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:ab869f59bb0ba570f18773d584de1cc1b66a286d463f5ff27ec09868a7f76ac4_amd64", + "product": { + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:ab869f59bb0ba570f18773d584de1cc1b66a286d463f5ff27ec09868a7f76ac4_amd64", + "product_id": "multicluster-engine/multicloud-manager-rhel8@sha256:ab869f59bb0ba570f18773d584de1cc1b66a286d463f5ff27ec09868a7f76ac4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/multicloud-manager-rhel8@sha256:ab869f59bb0ba570f18773d584de1cc1b66a286d463f5ff27ec09868a7f76ac4?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/multicloud-manager-rhel8&tag=v2.3.3-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/must-gather-rhel8@sha256:e00d63127ba85c75766a508beb53d209029ff987c1096bf730537a696cccec96_amd64", + "product": { + "name": "multicluster-engine/must-gather-rhel8@sha256:e00d63127ba85c75766a508beb53d209029ff987c1096bf730537a696cccec96_amd64", + "product_id": "multicluster-engine/must-gather-rhel8@sha256:e00d63127ba85c75766a508beb53d209029ff987c1096bf730537a696cccec96_amd64", + "product_identification_helper": { + "purl": "pkg:oci/must-gather-rhel8@sha256:e00d63127ba85c75766a508beb53d209029ff987c1096bf730537a696cccec96?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/must-gather-rhel8&tag=v2.3.3-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/mce-operator-bundle@sha256:a1495277c868d68d624a4f2b3a8fe99859eaea4d1898bed0cf0ec7681a162250_amd64", + "product": { + "name": "multicluster-engine/mce-operator-bundle@sha256:a1495277c868d68d624a4f2b3a8fe99859eaea4d1898bed0cf0ec7681a162250_amd64", + "product_id": "multicluster-engine/mce-operator-bundle@sha256:a1495277c868d68d624a4f2b3a8fe99859eaea4d1898bed0cf0ec7681a162250_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mce-operator-bundle@sha256:a1495277c868d68d624a4f2b3a8fe99859eaea4d1898bed0cf0ec7681a162250?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/mce-operator-bundle&tag=v2.3.3-15" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/backplane-rhel8-operator@sha256:a5b44837a8d24819f0b9c497fd8734a55dc36c5ce3972e8f530496503e6afc45_amd64", + "product": { + "name": "multicluster-engine/backplane-rhel8-operator@sha256:a5b44837a8d24819f0b9c497fd8734a55dc36c5ce3972e8f530496503e6afc45_amd64", + "product_id": "multicluster-engine/backplane-rhel8-operator@sha256:a5b44837a8d24819f0b9c497fd8734a55dc36c5ce3972e8f530496503e6afc45_amd64", + "product_identification_helper": { + "purl": "pkg:oci/backplane-rhel8-operator@sha256:a5b44837a8d24819f0b9c497fd8734a55dc36c5ce3972e8f530496503e6afc45?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/backplane-rhel8-operator&tag=v2.3.3-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/placement-rhel8@sha256:eee3f786cd81e57ab39352116288c6f25e69b6a70422b934ce973eaa57c530c1_amd64", + "product": { + "name": "multicluster-engine/placement-rhel8@sha256:eee3f786cd81e57ab39352116288c6f25e69b6a70422b934ce973eaa57c530c1_amd64", + "product_id": "multicluster-engine/placement-rhel8@sha256:eee3f786cd81e57ab39352116288c6f25e69b6a70422b934ce973eaa57c530c1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/placement-rhel8@sha256:eee3f786cd81e57ab39352116288c6f25e69b6a70422b934ce973eaa57c530c1?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/placement-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:947e3e38bb3660c356deb2577a82f39bfb7af0957b7ec608fcafbee1d2e8c68f_amd64", + "product": { + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:947e3e38bb3660c356deb2577a82f39bfb7af0957b7ec608fcafbee1d2e8c68f_amd64", + "product_id": "multicluster-engine/provider-credential-controller-rhel8@sha256:947e3e38bb3660c356deb2577a82f39bfb7af0957b7ec608fcafbee1d2e8c68f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/provider-credential-controller-rhel8@sha256:947e3e38bb3660c356deb2577a82f39bfb7af0957b7ec608fcafbee1d2e8c68f?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/provider-credential-controller-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/registration-rhel8@sha256:29bd20d4c5b6c207282ae3a425f5c4370f25e606ba902a85c27a287eb133b4a4_amd64", + "product": { + "name": "multicluster-engine/registration-rhel8@sha256:29bd20d4c5b6c207282ae3a425f5c4370f25e606ba902a85c27a287eb133b4a4_amd64", + "product_id": "multicluster-engine/registration-rhel8@sha256:29bd20d4c5b6c207282ae3a425f5c4370f25e606ba902a85c27a287eb133b4a4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/registration-rhel8@sha256:29bd20d4c5b6c207282ae3a425f5c4370f25e606ba902a85c27a287eb133b4a4?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/registration-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/registration-operator-rhel8@sha256:da29f38170bda20809a8e0a425762b9af307bd4e0688d30482fe522d16aca869_amd64", + "product": { + "name": "multicluster-engine/registration-operator-rhel8@sha256:da29f38170bda20809a8e0a425762b9af307bd4e0688d30482fe522d16aca869_amd64", + "product_id": "multicluster-engine/registration-operator-rhel8@sha256:da29f38170bda20809a8e0a425762b9af307bd4e0688d30482fe522d16aca869_amd64", + "product_identification_helper": { + "purl": "pkg:oci/registration-operator-rhel8@sha256:da29f38170bda20809a8e0a425762b9af307bd4e0688d30482fe522d16aca869?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/registration-operator-rhel8&tag=v2.3.3-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/work-rhel8@sha256:a838889415c0b6674c207d1e617c8f8dc54ef9539a5b4efb4b680c4a1497c32e_amd64", + "product": { + "name": "multicluster-engine/work-rhel8@sha256:a838889415c0b6674c207d1e617c8f8dc54ef9539a5b4efb4b680c4a1497c32e_amd64", + "product_id": "multicluster-engine/work-rhel8@sha256:a838889415c0b6674c207d1e617c8f8dc54ef9539a5b4efb4b680c4a1497c32e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/work-rhel8@sha256:a838889415c0b6674c207d1e617c8f8dc54ef9539a5b4efb4b680c4a1497c32e?arch=amd64&repository_url=registry.redhat.io/multicluster-engine/work-rhel8&tag=v2.3.3-4" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "multicluster-engine/addon-manager-rhel8@sha256:bdf0b6e5e4fc8c88f16ab409325219c845d1c21a7473fa6943e733345faf8a93_s390x", + "product": { + "name": "multicluster-engine/addon-manager-rhel8@sha256:bdf0b6e5e4fc8c88f16ab409325219c845d1c21a7473fa6943e733345faf8a93_s390x", + "product_id": "multicluster-engine/addon-manager-rhel8@sha256:bdf0b6e5e4fc8c88f16ab409325219c845d1c21a7473fa6943e733345faf8a93_s390x", + "product_identification_helper": { + "purl": "pkg:oci/addon-manager-rhel8@sha256:bdf0b6e5e4fc8c88f16ab409325219c845d1c21a7473fa6943e733345faf8a93?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/addon-manager-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/agent-service-rhel8@sha256:0110d6aa2228b04270771da207d22fc1619abe2c69c5eaf3db8afa7ab989f082_s390x", + "product": { + "name": "multicluster-engine/agent-service-rhel8@sha256:0110d6aa2228b04270771da207d22fc1619abe2c69c5eaf3db8afa7ab989f082_s390x", + "product_id": "multicluster-engine/agent-service-rhel8@sha256:0110d6aa2228b04270771da207d22fc1619abe2c69c5eaf3db8afa7ab989f082_s390x", + "product_identification_helper": { + "purl": "pkg:oci/agent-service-rhel8@sha256:0110d6aa2228b04270771da207d22fc1619abe2c69c5eaf3db8afa7ab989f082?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/agent-service-rhel8&tag=v2.3.3-8" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:d740e67a764c1f17449889a3907c606118c833420a4ec562946068753939553e_s390x", + "product": { + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:d740e67a764c1f17449889a3907c606118c833420a4ec562946068753939553e_s390x", + "product_id": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:d740e67a764c1f17449889a3907c606118c833420a4ec562946068753939553e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/apiserver-network-proxy-rhel8@sha256:d740e67a764c1f17449889a3907c606118c833420a4ec562946068753939553e?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/apiserver-network-proxy-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:4f2c40442aa58b5e844ffff411ead3740e60fdb467b7f24a6c675f1f649f7fd9_s390x", + "product": { + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:4f2c40442aa58b5e844ffff411ead3740e60fdb467b7f24a6c675f1f649f7fd9_s390x", + "product_id": "multicluster-engine/assisted-image-service-rhel8@sha256:4f2c40442aa58b5e844ffff411ead3740e60fdb467b7f24a6c675f1f649f7fd9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/assisted-image-service-rhel8@sha256:4f2c40442aa58b5e844ffff411ead3740e60fdb467b7f24a6c675f1f649f7fd9?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/assisted-image-service-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-agent-rhel8@sha256:2a987bcd6adf5c52afdd56d79a28c5efb7349ccd83da2d5badd0e45a2896f078_s390x", + "product": { + "name": "multicluster-engine/assisted-installer-agent-rhel8@sha256:2a987bcd6adf5c52afdd56d79a28c5efb7349ccd83da2d5badd0e45a2896f078_s390x", + "product_id": "multicluster-engine/assisted-installer-agent-rhel8@sha256:2a987bcd6adf5c52afdd56d79a28c5efb7349ccd83da2d5badd0e45a2896f078_s390x", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-agent-rhel8@sha256:2a987bcd6adf5c52afdd56d79a28c5efb7349ccd83da2d5badd0e45a2896f078?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel8&tag=v2.3.3-7" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-rhel8@sha256:b013de5b2b48b8abe4bea8e696398d5a0ae2fc6a9bb3f3e82f413933ba70e764_s390x", + "product": { + "name": "multicluster-engine/assisted-installer-rhel8@sha256:b013de5b2b48b8abe4bea8e696398d5a0ae2fc6a9bb3f3e82f413933ba70e764_s390x", + "product_id": "multicluster-engine/assisted-installer-rhel8@sha256:b013de5b2b48b8abe4bea8e696398d5a0ae2fc6a9bb3f3e82f413933ba70e764_s390x", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-rhel8@sha256:b013de5b2b48b8abe4bea8e696398d5a0ae2fc6a9bb3f3e82f413933ba70e764?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:327a162bc47703f4b9bd62849ee92db630b17770b554ca6a896efdd0b7f3a4a9_s390x", + "product": { + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:327a162bc47703f4b9bd62849ee92db630b17770b554ca6a896efdd0b7f3a4a9_s390x", + "product_id": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:327a162bc47703f4b9bd62849ee92db630b17770b554ca6a896efdd0b7f3a4a9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-reporter-rhel8@sha256:327a162bc47703f4b9bd62849ee92db630b17770b554ca6a896efdd0b7f3a4a9?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-reporter-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:ae6bd88c083e6e2ccbfe927a6f79068fbf9630f1b217352d29a588aa9e8bd0c7_s390x", + "product": { + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:ae6bd88c083e6e2ccbfe927a6f79068fbf9630f1b217352d29a588aa9e8bd0c7_s390x", + "product_id": "multicluster-engine/aws-encryption-provider-rhel8@sha256:ae6bd88c083e6e2ccbfe927a6f79068fbf9630f1b217352d29a588aa9e8bd0c7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/aws-encryption-provider-rhel8@sha256:ae6bd88c083e6e2ccbfe927a6f79068fbf9630f1b217352d29a588aa9e8bd0c7?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/aws-encryption-provider-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-rhel8@sha256:2cf6980ef8da9881410ff93c70dfe3bf463bd2e065d0bfb432dff2a3c5c1735d_s390x", + "product": { + "name": "multicluster-engine/cluster-api-rhel8@sha256:2cf6980ef8da9881410ff93c70dfe3bf463bd2e065d0bfb432dff2a3c5c1735d_s390x", + "product_id": "multicluster-engine/cluster-api-rhel8@sha256:2cf6980ef8da9881410ff93c70dfe3bf463bd2e065d0bfb432dff2a3c5c1735d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-rhel8@sha256:2cf6980ef8da9881410ff93c70dfe3bf463bd2e065d0bfb432dff2a3c5c1735d?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-api-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:8288be44125f590ef2e066be0a6362e428884a7c5df118e86681090f47fe0504_s390x", + "product": { + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:8288be44125f590ef2e066be0a6362e428884a7c5df118e86681090f47fe0504_s390x", + "product_id": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:8288be44125f590ef2e066be0a6362e428884a7c5df118e86681090f47fe0504_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:8288be44125f590ef2e066be0a6362e428884a7c5df118e86681090f47fe0504?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:8288be44125f590ef2e066be0a6362e428884a7c5df118e86681090f47fe0504_s390x", + "product": { + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:8288be44125f590ef2e066be0a6362e428884a7c5df118e86681090f47fe0504_s390x", + "product_id": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:8288be44125f590ef2e066be0a6362e428884a7c5df118e86681090f47fe0504_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-agent-rhel8@sha256:8288be44125f590ef2e066be0a6362e428884a7c5df118e86681090f47fe0504?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:356433998a796e23907f5d22bff7de0ef3d615b07b9b64a3f2f80b49ba3b991f_s390x", + "product": { + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:356433998a796e23907f5d22bff7de0ef3d615b07b9b64a3f2f80b49ba3b991f_s390x", + "product_id": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:356433998a796e23907f5d22bff7de0ef3d615b07b9b64a3f2f80b49ba3b991f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-aws-rhel8@sha256:356433998a796e23907f5d22bff7de0ef3d615b07b9b64a3f2f80b49ba3b991f?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:bef27790531e4936c7312449978d3dc586270aec7e0ec0a6e9d351f2538d2282_s390x", + "product": { + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:bef27790531e4936c7312449978d3dc586270aec7e0ec0a6e9d351f2538d2282_s390x", + "product_id": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:bef27790531e4936c7312449978d3dc586270aec7e0ec0a6e9d351f2538d2282_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-azure-rhel8@sha256:bef27790531e4936c7312449978d3dc586270aec7e0ec0a6e9d351f2538d2282?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-azure-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:bded18f726ffca3c45acfc1474da90808c6997a6231f47eb9b804f8420dd98d7_s390x", + "product": { + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:bded18f726ffca3c45acfc1474da90808c6997a6231f47eb9b804f8420dd98d7_s390x", + "product_id": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:bded18f726ffca3c45acfc1474da90808c6997a6231f47eb9b804f8420dd98d7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-kubevirt-rhel8@sha256:bded18f726ffca3c45acfc1474da90808c6997a6231f47eb9b804f8420dd98d7?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:7fe96a8daa3c58ad601c6b374f82f645baeb256008b2fe457cd74c49bacb7562_s390x", + "product": { + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:7fe96a8daa3c58ad601c6b374f82f645baeb256008b2fe457cd74c49bacb7562_s390x", + "product_id": "multicluster-engine/clusterclaims-controller-rhel8@sha256:7fe96a8daa3c58ad601c6b374f82f645baeb256008b2fe457cd74c49bacb7562_s390x", + "product_identification_helper": { + "purl": "pkg:oci/clusterclaims-controller-rhel8@sha256:7fe96a8daa3c58ad601c6b374f82f645baeb256008b2fe457cd74c49bacb7562?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:658503cadaeea5d79763da3e5906cd85ea64af774ae92b46dab7e96abb2f9e3b_s390x", + "product": { + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:658503cadaeea5d79763da3e5906cd85ea64af774ae92b46dab7e96abb2f9e3b_s390x", + "product_id": "multicluster-engine/cluster-curator-controller-rhel8@sha256:658503cadaeea5d79763da3e5906cd85ea64af774ae92b46dab7e96abb2f9e3b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-curator-controller-rhel8@sha256:658503cadaeea5d79763da3e5906cd85ea64af774ae92b46dab7e96abb2f9e3b?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:920498f51d30b4e2292d30289b234c6aba84e914d8bfd8e79993c980e95c3621_s390x", + "product": { + "name": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:920498f51d30b4e2292d30289b234c6aba84e914d8bfd8e79993c980e95c3621_s390x", + "product_id": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:920498f51d30b4e2292d30289b234c6aba84e914d8bfd8e79993c980e95c3621_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-image-set-controller-rhel8@sha256:920498f51d30b4e2292d30289b234c6aba84e914d8bfd8e79993c980e95c3621?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:6b43b10ce593a524476e992e18e3a86208ba11fed1074126d25f737e9e8cb0c6_s390x", + "product": { + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:6b43b10ce593a524476e992e18e3a86208ba11fed1074126d25f737e9e8cb0c6_s390x", + "product_id": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:6b43b10ce593a524476e992e18e3a86208ba11fed1074126d25f737e9e8cb0c6_s390x", + "product_identification_helper": { + "purl": "pkg:oci/clusterlifecycle-state-metrics-rhel8@sha256:6b43b10ce593a524476e992e18e3a86208ba11fed1074126d25f737e9e8cb0c6?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:0f22c078d16ca3011d373abf33f0c78ee399c0d26da9acdd48e73a9683a11fd0_s390x", + "product": { + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:0f22c078d16ca3011d373abf33f0c78ee399c0d26da9acdd48e73a9683a11fd0_s390x", + "product_id": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:0f22c078d16ca3011d373abf33f0c78ee399c0d26da9acdd48e73a9683a11fd0_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-proxy-addon-rhel8@sha256:0f22c078d16ca3011d373abf33f0c78ee399c0d26da9acdd48e73a9683a11fd0?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:ebdf4b8276177b7ed9c07358a67c35f1e061e3a589feb66a989965e0360947d0_s390x", + "product": { + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:ebdf4b8276177b7ed9c07358a67c35f1e061e3a589feb66a989965e0360947d0_s390x", + "product_id": "multicluster-engine/cluster-proxy-rhel8@sha256:ebdf4b8276177b7ed9c07358a67c35f1e061e3a589feb66a989965e0360947d0_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-proxy-rhel8@sha256:ebdf4b8276177b7ed9c07358a67c35f1e061e3a589feb66a989965e0360947d0?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/console-mce-rhel8@sha256:879f10141d56618573a79fec9d8b9b4fe3da00a3af509f499e7838d7e2570cfb_s390x", + "product": { + "name": "multicluster-engine/console-mce-rhel8@sha256:879f10141d56618573a79fec9d8b9b4fe3da00a3af509f499e7838d7e2570cfb_s390x", + "product_id": "multicluster-engine/console-mce-rhel8@sha256:879f10141d56618573a79fec9d8b9b4fe3da00a3af509f499e7838d7e2570cfb_s390x", + "product_identification_helper": { + "purl": "pkg:oci/console-mce-rhel8@sha256:879f10141d56618573a79fec9d8b9b4fe3da00a3af509f499e7838d7e2570cfb?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/console-mce-rhel8&tag=v2.3.3-7" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:879f10141d56618573a79fec9d8b9b4fe3da00a3af509f499e7838d7e2570cfb_s390x", + "product": { + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:879f10141d56618573a79fec9d8b9b4fe3da00a3af509f499e7838d7e2570cfb_s390x", + "product_id": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:879f10141d56618573a79fec9d8b9b4fe3da00a3af509f499e7838d7e2570cfb_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-console-mce-rhel8@sha256:879f10141d56618573a79fec9d8b9b4fe3da00a3af509f499e7838d7e2570cfb?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-console-mce-rhel8&tag=v2.3.3-7" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/discovery-rhel8@sha256:b1d4fc9f686f284af83a8c946d8eae146aecd102e6fb684773b08db641a6624f_s390x", + "product": { + "name": "multicluster-engine/discovery-rhel8@sha256:b1d4fc9f686f284af83a8c946d8eae146aecd102e6fb684773b08db641a6624f_s390x", + "product_id": "multicluster-engine/discovery-rhel8@sha256:b1d4fc9f686f284af83a8c946d8eae146aecd102e6fb684773b08db641a6624f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/discovery-rhel8@sha256:b1d4fc9f686f284af83a8c946d8eae146aecd102e6fb684773b08db641a6624f?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/discovery-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hive-rhel8@sha256:1f82e07a5e93c07b244b78d4899d06c38d20494eee0f874ad57b0370cdf74390_s390x", + "product": { + "name": "multicluster-engine/hive-rhel8@sha256:1f82e07a5e93c07b244b78d4899d06c38d20494eee0f874ad57b0370cdf74390_s390x", + "product_id": "multicluster-engine/hive-rhel8@sha256:1f82e07a5e93c07b244b78d4899d06c38d20494eee0f874ad57b0370cdf74390_s390x", + "product_identification_helper": { + "purl": "pkg:oci/hive-rhel8@sha256:1f82e07a5e93c07b244b78d4899d06c38d20494eee0f874ad57b0370cdf74390?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/hive-rhel8&tag=v2.3.3-7" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:44ad5a101a03c382c88b8345db3f626e0728d4b320c6c821b243fd68e31da469_s390x", + "product": { + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:44ad5a101a03c382c88b8345db3f626e0728d4b320c6c821b243fd68e31da469_s390x", + "product_id": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:44ad5a101a03c382c88b8345db3f626e0728d4b320c6c821b243fd68e31da469_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-hypershift-addon-rhel8-operator@sha256:44ad5a101a03c382c88b8345db3f626e0728d4b320c6c821b243fd68e31da469?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:44ad5a101a03c382c88b8345db3f626e0728d4b320c6c821b243fd68e31da469_s390x", + "product": { + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:44ad5a101a03c382c88b8345db3f626e0728d4b320c6c821b243fd68e31da469_s390x", + "product_id": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:44ad5a101a03c382c88b8345db3f626e0728d4b320c6c821b243fd68e31da469_s390x", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-addon-rhel8-operator@sha256:44ad5a101a03c382c88b8345db3f626e0728d4b320c6c821b243fd68e31da469?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/hypershift-addon-rhel8-operator&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-cli-rhel8@sha256:280b5ed5d502586d14b43658cdea8afb762f4361fe3a5dde965a76d27fea76ca_s390x", + "product": { + "name": "multicluster-engine/hypershift-cli-rhel8@sha256:280b5ed5d502586d14b43658cdea8afb762f4361fe3a5dde965a76d27fea76ca_s390x", + "product_id": "multicluster-engine/hypershift-cli-rhel8@sha256:280b5ed5d502586d14b43658cdea8afb762f4361fe3a5dde965a76d27fea76ca_s390x", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-cli-rhel8@sha256:280b5ed5d502586d14b43658cdea8afb762f4361fe3a5dde965a76d27fea76ca?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/hypershift-cli-rhel8&tag=v2.3.3-8" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:4e71ad3a84abfd8fd1c25a8f7ce214ad94e40089088f81931b1dcd9d892585a2_s390x", + "product": { + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:4e71ad3a84abfd8fd1c25a8f7ce214ad94e40089088f81931b1dcd9d892585a2_s390x", + "product_id": "multicluster-engine/hypershift-rhel8-operator@sha256:4e71ad3a84abfd8fd1c25a8f7ce214ad94e40089088f81931b1dcd9d892585a2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-rhel8-operator@sha256:4e71ad3a84abfd8fd1c25a8f7ce214ad94e40089088f81931b1dcd9d892585a2?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/hypershift-rhel8-operator&tag=v2.3.3-6" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/kube-rbac-proxy-mce-rhel8@sha256:911bff3e3a641fc8b205eac42744cfd08e78ad5259b8f2fee54aaf80254b2549_s390x", + "product": { + "name": "multicluster-engine/kube-rbac-proxy-mce-rhel8@sha256:911bff3e3a641fc8b205eac42744cfd08e78ad5259b8f2fee54aaf80254b2549_s390x", + "product_id": "multicluster-engine/kube-rbac-proxy-mce-rhel8@sha256:911bff3e3a641fc8b205eac42744cfd08e78ad5259b8f2fee54aaf80254b2549_s390x", + "product_identification_helper": { + "purl": "pkg:oci/kube-rbac-proxy-mce-rhel8@sha256:911bff3e3a641fc8b205eac42744cfd08e78ad5259b8f2fee54aaf80254b2549?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel8&tag=v2.3.3-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:7952fcbfdad7a3831647d665c194c3ea4b0dcd3fa2df5645b1cb5ee0d92fd927_s390x", + "product": { + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:7952fcbfdad7a3831647d665c194c3ea4b0dcd3fa2df5645b1cb5ee0d92fd927_s390x", + "product_id": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:7952fcbfdad7a3831647d665c194c3ea4b0dcd3fa2df5645b1cb5ee0d92fd927_s390x", + "product_identification_helper": { + "purl": "pkg:oci/managedcluster-import-controller-rhel8@sha256:7952fcbfdad7a3831647d665c194c3ea4b0dcd3fa2df5645b1cb5ee0d92fd927?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:9528777141349b0c173e0a80d5876ade9090b2760763d6d9abf24f9e771fc6f4_s390x", + "product": { + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:9528777141349b0c173e0a80d5876ade9090b2760763d6d9abf24f9e771fc6f4_s390x", + "product_id": "multicluster-engine/managed-serviceaccount-rhel8@sha256:9528777141349b0c173e0a80d5876ade9090b2760763d6d9abf24f9e771fc6f4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/managed-serviceaccount-rhel8@sha256:9528777141349b0c173e0a80d5876ade9090b2760763d6d9abf24f9e771fc6f4?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:9528777141349b0c173e0a80d5876ade9090b2760763d6d9abf24f9e771fc6f4_s390x", + "product": { + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:9528777141349b0c173e0a80d5876ade9090b2760763d6d9abf24f9e771fc6f4_s390x", + "product_id": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:9528777141349b0c173e0a80d5876ade9090b2760763d6d9abf24f9e771fc6f4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-managed-serviceaccount-rhel8@sha256:9528777141349b0c173e0a80d5876ade9090b2760763d6d9abf24f9e771fc6f4?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:afc23ad755a3ff6c0b41a954bd6e32c1eb268db0a06964da691275ff7670d5ea_s390x", + "product": { + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:afc23ad755a3ff6c0b41a954bd6e32c1eb268db0a06964da691275ff7670d5ea_s390x", + "product_id": "multicluster-engine/multicloud-manager-rhel8@sha256:afc23ad755a3ff6c0b41a954bd6e32c1eb268db0a06964da691275ff7670d5ea_s390x", + "product_identification_helper": { + "purl": "pkg:oci/multicloud-manager-rhel8@sha256:afc23ad755a3ff6c0b41a954bd6e32c1eb268db0a06964da691275ff7670d5ea?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/multicloud-manager-rhel8&tag=v2.3.3-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/must-gather-rhel8@sha256:3516fec07dfa2c3d298fececf3b3e13ad5a71e4c59f546487d484892d22a7bc1_s390x", + "product": { + "name": "multicluster-engine/must-gather-rhel8@sha256:3516fec07dfa2c3d298fececf3b3e13ad5a71e4c59f546487d484892d22a7bc1_s390x", + "product_id": "multicluster-engine/must-gather-rhel8@sha256:3516fec07dfa2c3d298fececf3b3e13ad5a71e4c59f546487d484892d22a7bc1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/must-gather-rhel8@sha256:3516fec07dfa2c3d298fececf3b3e13ad5a71e4c59f546487d484892d22a7bc1?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/must-gather-rhel8&tag=v2.3.3-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/mce-operator-bundle@sha256:e03c5e0eff302754f7ae755cffc1f762ecb2ef09760c54395183f944c0f2da3f_s390x", + "product": { + "name": "multicluster-engine/mce-operator-bundle@sha256:e03c5e0eff302754f7ae755cffc1f762ecb2ef09760c54395183f944c0f2da3f_s390x", + "product_id": "multicluster-engine/mce-operator-bundle@sha256:e03c5e0eff302754f7ae755cffc1f762ecb2ef09760c54395183f944c0f2da3f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/mce-operator-bundle@sha256:e03c5e0eff302754f7ae755cffc1f762ecb2ef09760c54395183f944c0f2da3f?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/mce-operator-bundle&tag=v2.3.3-15" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/backplane-rhel8-operator@sha256:5b74e83d82f67cf477a27ee9aab2c1669ab97bcbd9a4575f30181886e4f1341e_s390x", + "product": { + "name": "multicluster-engine/backplane-rhel8-operator@sha256:5b74e83d82f67cf477a27ee9aab2c1669ab97bcbd9a4575f30181886e4f1341e_s390x", + "product_id": "multicluster-engine/backplane-rhel8-operator@sha256:5b74e83d82f67cf477a27ee9aab2c1669ab97bcbd9a4575f30181886e4f1341e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/backplane-rhel8-operator@sha256:5b74e83d82f67cf477a27ee9aab2c1669ab97bcbd9a4575f30181886e4f1341e?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/backplane-rhel8-operator&tag=v2.3.3-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/placement-rhel8@sha256:935ae8325af21c62576d8a3feea37cc9c920f69830eca12bb69956011b14cfe1_s390x", + "product": { + "name": "multicluster-engine/placement-rhel8@sha256:935ae8325af21c62576d8a3feea37cc9c920f69830eca12bb69956011b14cfe1_s390x", + "product_id": "multicluster-engine/placement-rhel8@sha256:935ae8325af21c62576d8a3feea37cc9c920f69830eca12bb69956011b14cfe1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/placement-rhel8@sha256:935ae8325af21c62576d8a3feea37cc9c920f69830eca12bb69956011b14cfe1?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/placement-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:6bce18f14067b04233b9ec969cab71f853ea256e3c47f1498cbf34715fe2c727_s390x", + "product": { + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:6bce18f14067b04233b9ec969cab71f853ea256e3c47f1498cbf34715fe2c727_s390x", + "product_id": "multicluster-engine/provider-credential-controller-rhel8@sha256:6bce18f14067b04233b9ec969cab71f853ea256e3c47f1498cbf34715fe2c727_s390x", + "product_identification_helper": { + "purl": "pkg:oci/provider-credential-controller-rhel8@sha256:6bce18f14067b04233b9ec969cab71f853ea256e3c47f1498cbf34715fe2c727?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/provider-credential-controller-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/registration-rhel8@sha256:625330be6319b0fbec5cc4054d75288ceba25508c51440bc88b54faeebdd27ab_s390x", + "product": { + "name": "multicluster-engine/registration-rhel8@sha256:625330be6319b0fbec5cc4054d75288ceba25508c51440bc88b54faeebdd27ab_s390x", + "product_id": "multicluster-engine/registration-rhel8@sha256:625330be6319b0fbec5cc4054d75288ceba25508c51440bc88b54faeebdd27ab_s390x", + "product_identification_helper": { + "purl": "pkg:oci/registration-rhel8@sha256:625330be6319b0fbec5cc4054d75288ceba25508c51440bc88b54faeebdd27ab?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/registration-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/registration-operator-rhel8@sha256:3af327313fd9f77ada1516cb8e5c237476efd08aa43cb2005d40a252c9bd83fe_s390x", + "product": { + "name": "multicluster-engine/registration-operator-rhel8@sha256:3af327313fd9f77ada1516cb8e5c237476efd08aa43cb2005d40a252c9bd83fe_s390x", + "product_id": "multicluster-engine/registration-operator-rhel8@sha256:3af327313fd9f77ada1516cb8e5c237476efd08aa43cb2005d40a252c9bd83fe_s390x", + "product_identification_helper": { + "purl": "pkg:oci/registration-operator-rhel8@sha256:3af327313fd9f77ada1516cb8e5c237476efd08aa43cb2005d40a252c9bd83fe?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/registration-operator-rhel8&tag=v2.3.3-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/work-rhel8@sha256:6ac9797c8287580bc67fe2258f45816cba0b87b9d33b877d1b28c291d8f47199_s390x", + "product": { + "name": "multicluster-engine/work-rhel8@sha256:6ac9797c8287580bc67fe2258f45816cba0b87b9d33b877d1b28c291d8f47199_s390x", + "product_id": "multicluster-engine/work-rhel8@sha256:6ac9797c8287580bc67fe2258f45816cba0b87b9d33b877d1b28c291d8f47199_s390x", + "product_identification_helper": { + "purl": "pkg:oci/work-rhel8@sha256:6ac9797c8287580bc67fe2258f45816cba0b87b9d33b877d1b28c291d8f47199?arch=s390x&repository_url=registry.redhat.io/multicluster-engine/work-rhel8&tag=v2.3.3-4" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "multicluster-engine/addon-manager-rhel8@sha256:730b8af24bdd4d1a1ebdfbc78b95681ba406ce826a9dc6c987bf1de7747d31b2_ppc64le", + "product": { + "name": "multicluster-engine/addon-manager-rhel8@sha256:730b8af24bdd4d1a1ebdfbc78b95681ba406ce826a9dc6c987bf1de7747d31b2_ppc64le", + "product_id": "multicluster-engine/addon-manager-rhel8@sha256:730b8af24bdd4d1a1ebdfbc78b95681ba406ce826a9dc6c987bf1de7747d31b2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/addon-manager-rhel8@sha256:730b8af24bdd4d1a1ebdfbc78b95681ba406ce826a9dc6c987bf1de7747d31b2?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/addon-manager-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/agent-service-rhel8@sha256:74741601c7dbf528798340b4c0e12660c24625870ca9dec9db013dac8e4be600_ppc64le", + "product": { + "name": "multicluster-engine/agent-service-rhel8@sha256:74741601c7dbf528798340b4c0e12660c24625870ca9dec9db013dac8e4be600_ppc64le", + "product_id": "multicluster-engine/agent-service-rhel8@sha256:74741601c7dbf528798340b4c0e12660c24625870ca9dec9db013dac8e4be600_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/agent-service-rhel8@sha256:74741601c7dbf528798340b4c0e12660c24625870ca9dec9db013dac8e4be600?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/agent-service-rhel8&tag=v2.3.3-8" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:6a66f0c16c0688e2ba9dbd6c7bc6953aa06267e6d31974398dd3a49ca2d8724a_ppc64le", + "product": { + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:6a66f0c16c0688e2ba9dbd6c7bc6953aa06267e6d31974398dd3a49ca2d8724a_ppc64le", + "product_id": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:6a66f0c16c0688e2ba9dbd6c7bc6953aa06267e6d31974398dd3a49ca2d8724a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/apiserver-network-proxy-rhel8@sha256:6a66f0c16c0688e2ba9dbd6c7bc6953aa06267e6d31974398dd3a49ca2d8724a?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/apiserver-network-proxy-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:5550a048a3a947d5c6dde948aa14349fafb4e795a17f60671ed4e060eea84cea_ppc64le", + "product": { + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:5550a048a3a947d5c6dde948aa14349fafb4e795a17f60671ed4e060eea84cea_ppc64le", + "product_id": "multicluster-engine/assisted-image-service-rhel8@sha256:5550a048a3a947d5c6dde948aa14349fafb4e795a17f60671ed4e060eea84cea_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/assisted-image-service-rhel8@sha256:5550a048a3a947d5c6dde948aa14349fafb4e795a17f60671ed4e060eea84cea?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/assisted-image-service-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-agent-rhel8@sha256:703c586bfcd91b783521d828a1e415ffd79d9ecbb319d9e8b8c2735025147eda_ppc64le", + "product": { + "name": "multicluster-engine/assisted-installer-agent-rhel8@sha256:703c586bfcd91b783521d828a1e415ffd79d9ecbb319d9e8b8c2735025147eda_ppc64le", + "product_id": "multicluster-engine/assisted-installer-agent-rhel8@sha256:703c586bfcd91b783521d828a1e415ffd79d9ecbb319d9e8b8c2735025147eda_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-agent-rhel8@sha256:703c586bfcd91b783521d828a1e415ffd79d9ecbb319d9e8b8c2735025147eda?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel8&tag=v2.3.3-7" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-rhel8@sha256:c431a1b29e246382e2ab246289932719969befadb09493ddd0d654784bcf6317_ppc64le", + "product": { + "name": "multicluster-engine/assisted-installer-rhel8@sha256:c431a1b29e246382e2ab246289932719969befadb09493ddd0d654784bcf6317_ppc64le", + "product_id": "multicluster-engine/assisted-installer-rhel8@sha256:c431a1b29e246382e2ab246289932719969befadb09493ddd0d654784bcf6317_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-rhel8@sha256:c431a1b29e246382e2ab246289932719969befadb09493ddd0d654784bcf6317?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:cb3f0e48c9abe3ac082a3ed0f8b4772db42b25b071dd25992726dede11801512_ppc64le", + "product": { + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:cb3f0e48c9abe3ac082a3ed0f8b4772db42b25b071dd25992726dede11801512_ppc64le", + "product_id": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:cb3f0e48c9abe3ac082a3ed0f8b4772db42b25b071dd25992726dede11801512_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-reporter-rhel8@sha256:cb3f0e48c9abe3ac082a3ed0f8b4772db42b25b071dd25992726dede11801512?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-reporter-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:4884be49b5402618e23bd18b1d5d2bb90b2ecfed1681a590463437c84b65dba7_ppc64le", + "product": { + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:4884be49b5402618e23bd18b1d5d2bb90b2ecfed1681a590463437c84b65dba7_ppc64le", + "product_id": "multicluster-engine/aws-encryption-provider-rhel8@sha256:4884be49b5402618e23bd18b1d5d2bb90b2ecfed1681a590463437c84b65dba7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/aws-encryption-provider-rhel8@sha256:4884be49b5402618e23bd18b1d5d2bb90b2ecfed1681a590463437c84b65dba7?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/aws-encryption-provider-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-rhel8@sha256:1119d1989064c0686327c9457206da85c36393d3e910e6ad1431a8ca853f4bca_ppc64le", + "product": { + "name": "multicluster-engine/cluster-api-rhel8@sha256:1119d1989064c0686327c9457206da85c36393d3e910e6ad1431a8ca853f4bca_ppc64le", + "product_id": "multicluster-engine/cluster-api-rhel8@sha256:1119d1989064c0686327c9457206da85c36393d3e910e6ad1431a8ca853f4bca_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-rhel8@sha256:1119d1989064c0686327c9457206da85c36393d3e910e6ad1431a8ca853f4bca?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-api-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:7b0478b7d410bbe717cc91af37e7a5c575e81f3d440266b8d28f09a591d35f6e_ppc64le", + "product": { + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:7b0478b7d410bbe717cc91af37e7a5c575e81f3d440266b8d28f09a591d35f6e_ppc64le", + "product_id": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:7b0478b7d410bbe717cc91af37e7a5c575e81f3d440266b8d28f09a591d35f6e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:7b0478b7d410bbe717cc91af37e7a5c575e81f3d440266b8d28f09a591d35f6e?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:7b0478b7d410bbe717cc91af37e7a5c575e81f3d440266b8d28f09a591d35f6e_ppc64le", + "product": { + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:7b0478b7d410bbe717cc91af37e7a5c575e81f3d440266b8d28f09a591d35f6e_ppc64le", + "product_id": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:7b0478b7d410bbe717cc91af37e7a5c575e81f3d440266b8d28f09a591d35f6e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-agent-rhel8@sha256:7b0478b7d410bbe717cc91af37e7a5c575e81f3d440266b8d28f09a591d35f6e?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:571293b7441729770fbf581914544c70e10c706f10834f87cfd26b086745f28f_ppc64le", + "product": { + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:571293b7441729770fbf581914544c70e10c706f10834f87cfd26b086745f28f_ppc64le", + "product_id": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:571293b7441729770fbf581914544c70e10c706f10834f87cfd26b086745f28f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-aws-rhel8@sha256:571293b7441729770fbf581914544c70e10c706f10834f87cfd26b086745f28f?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:a42cd6ecff85dc1fce2e59aaf89d5c937ba9f33c9ab2b9cd97f1b6f98132ebeb_ppc64le", + "product": { + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:a42cd6ecff85dc1fce2e59aaf89d5c937ba9f33c9ab2b9cd97f1b6f98132ebeb_ppc64le", + "product_id": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:a42cd6ecff85dc1fce2e59aaf89d5c937ba9f33c9ab2b9cd97f1b6f98132ebeb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-azure-rhel8@sha256:a42cd6ecff85dc1fce2e59aaf89d5c937ba9f33c9ab2b9cd97f1b6f98132ebeb?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-azure-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:0108c242c1b735ef8e3d64b3092b9967ccf433cc4e696fd6ad764987b78417fd_ppc64le", + "product": { + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:0108c242c1b735ef8e3d64b3092b9967ccf433cc4e696fd6ad764987b78417fd_ppc64le", + "product_id": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:0108c242c1b735ef8e3d64b3092b9967ccf433cc4e696fd6ad764987b78417fd_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-kubevirt-rhel8@sha256:0108c242c1b735ef8e3d64b3092b9967ccf433cc4e696fd6ad764987b78417fd?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:1e1eb4017f6dccef77138b8bff782535bdc10ae29559d44bcd4d386d6f32b92f_ppc64le", + "product": { + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:1e1eb4017f6dccef77138b8bff782535bdc10ae29559d44bcd4d386d6f32b92f_ppc64le", + "product_id": "multicluster-engine/clusterclaims-controller-rhel8@sha256:1e1eb4017f6dccef77138b8bff782535bdc10ae29559d44bcd4d386d6f32b92f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/clusterclaims-controller-rhel8@sha256:1e1eb4017f6dccef77138b8bff782535bdc10ae29559d44bcd4d386d6f32b92f?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:2fb3280f6302eadfd9937d9da6dc9aba702075a7b652c11a65b1a5d73ec6e918_ppc64le", + "product": { + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:2fb3280f6302eadfd9937d9da6dc9aba702075a7b652c11a65b1a5d73ec6e918_ppc64le", + "product_id": "multicluster-engine/cluster-curator-controller-rhel8@sha256:2fb3280f6302eadfd9937d9da6dc9aba702075a7b652c11a65b1a5d73ec6e918_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-curator-controller-rhel8@sha256:2fb3280f6302eadfd9937d9da6dc9aba702075a7b652c11a65b1a5d73ec6e918?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:3f29e96636ab32268bc9ceea352b50e6aaea22b572e794866f2d61b75e0d4a0d_ppc64le", + "product": { + "name": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:3f29e96636ab32268bc9ceea352b50e6aaea22b572e794866f2d61b75e0d4a0d_ppc64le", + "product_id": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:3f29e96636ab32268bc9ceea352b50e6aaea22b572e794866f2d61b75e0d4a0d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-image-set-controller-rhel8@sha256:3f29e96636ab32268bc9ceea352b50e6aaea22b572e794866f2d61b75e0d4a0d?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:41d92ba15e0655797f77d31567d2bee13d6aff135dc6f707b97c9ebd1b1f5ae0_ppc64le", + "product": { + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:41d92ba15e0655797f77d31567d2bee13d6aff135dc6f707b97c9ebd1b1f5ae0_ppc64le", + "product_id": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:41d92ba15e0655797f77d31567d2bee13d6aff135dc6f707b97c9ebd1b1f5ae0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/clusterlifecycle-state-metrics-rhel8@sha256:41d92ba15e0655797f77d31567d2bee13d6aff135dc6f707b97c9ebd1b1f5ae0?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:4a3c59e9ca92aab2fd025c0056bcae789fe04b917a9a0742fd59b220a05de323_ppc64le", + "product": { + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:4a3c59e9ca92aab2fd025c0056bcae789fe04b917a9a0742fd59b220a05de323_ppc64le", + "product_id": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:4a3c59e9ca92aab2fd025c0056bcae789fe04b917a9a0742fd59b220a05de323_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-proxy-addon-rhel8@sha256:4a3c59e9ca92aab2fd025c0056bcae789fe04b917a9a0742fd59b220a05de323?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:9928fc0e552ce2c9ac06cfaa706fe78cfac8a1305ef35fe0b76e7960f268959c_ppc64le", + "product": { + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:9928fc0e552ce2c9ac06cfaa706fe78cfac8a1305ef35fe0b76e7960f268959c_ppc64le", + "product_id": "multicluster-engine/cluster-proxy-rhel8@sha256:9928fc0e552ce2c9ac06cfaa706fe78cfac8a1305ef35fe0b76e7960f268959c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-proxy-rhel8@sha256:9928fc0e552ce2c9ac06cfaa706fe78cfac8a1305ef35fe0b76e7960f268959c?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/console-mce-rhel8@sha256:6e3cc2ab54ccb2a7fd0782d8b7cc62ea20bbb04a5c609b0304789c5d4aa0960b_ppc64le", + "product": { + "name": "multicluster-engine/console-mce-rhel8@sha256:6e3cc2ab54ccb2a7fd0782d8b7cc62ea20bbb04a5c609b0304789c5d4aa0960b_ppc64le", + "product_id": "multicluster-engine/console-mce-rhel8@sha256:6e3cc2ab54ccb2a7fd0782d8b7cc62ea20bbb04a5c609b0304789c5d4aa0960b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/console-mce-rhel8@sha256:6e3cc2ab54ccb2a7fd0782d8b7cc62ea20bbb04a5c609b0304789c5d4aa0960b?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/console-mce-rhel8&tag=v2.3.3-7" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:6e3cc2ab54ccb2a7fd0782d8b7cc62ea20bbb04a5c609b0304789c5d4aa0960b_ppc64le", + "product": { + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:6e3cc2ab54ccb2a7fd0782d8b7cc62ea20bbb04a5c609b0304789c5d4aa0960b_ppc64le", + "product_id": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:6e3cc2ab54ccb2a7fd0782d8b7cc62ea20bbb04a5c609b0304789c5d4aa0960b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-console-mce-rhel8@sha256:6e3cc2ab54ccb2a7fd0782d8b7cc62ea20bbb04a5c609b0304789c5d4aa0960b?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-console-mce-rhel8&tag=v2.3.3-7" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/discovery-rhel8@sha256:22704ba6cc5df920fe976e60bbfbd2f852eeda90ebaac3d3ba67d911d737637f_ppc64le", + "product": { + "name": "multicluster-engine/discovery-rhel8@sha256:22704ba6cc5df920fe976e60bbfbd2f852eeda90ebaac3d3ba67d911d737637f_ppc64le", + "product_id": "multicluster-engine/discovery-rhel8@sha256:22704ba6cc5df920fe976e60bbfbd2f852eeda90ebaac3d3ba67d911d737637f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/discovery-rhel8@sha256:22704ba6cc5df920fe976e60bbfbd2f852eeda90ebaac3d3ba67d911d737637f?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/discovery-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hive-rhel8@sha256:2a665de36107df7f84868130e21af37f08e842ca4e3f70aa0c5e43fa6a4b933c_ppc64le", + "product": { + "name": "multicluster-engine/hive-rhel8@sha256:2a665de36107df7f84868130e21af37f08e842ca4e3f70aa0c5e43fa6a4b933c_ppc64le", + "product_id": "multicluster-engine/hive-rhel8@sha256:2a665de36107df7f84868130e21af37f08e842ca4e3f70aa0c5e43fa6a4b933c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/hive-rhel8@sha256:2a665de36107df7f84868130e21af37f08e842ca4e3f70aa0c5e43fa6a4b933c?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/hive-rhel8&tag=v2.3.3-7" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:31a5b5cc3f470435550e5a453d8f69b278ffd276d0c33c24a7a4012a513859df_ppc64le", + "product": { + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:31a5b5cc3f470435550e5a453d8f69b278ffd276d0c33c24a7a4012a513859df_ppc64le", + "product_id": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:31a5b5cc3f470435550e5a453d8f69b278ffd276d0c33c24a7a4012a513859df_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-hypershift-addon-rhel8-operator@sha256:31a5b5cc3f470435550e5a453d8f69b278ffd276d0c33c24a7a4012a513859df?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:31a5b5cc3f470435550e5a453d8f69b278ffd276d0c33c24a7a4012a513859df_ppc64le", + "product": { + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:31a5b5cc3f470435550e5a453d8f69b278ffd276d0c33c24a7a4012a513859df_ppc64le", + "product_id": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:31a5b5cc3f470435550e5a453d8f69b278ffd276d0c33c24a7a4012a513859df_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-addon-rhel8-operator@sha256:31a5b5cc3f470435550e5a453d8f69b278ffd276d0c33c24a7a4012a513859df?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/hypershift-addon-rhel8-operator&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-cli-rhel8@sha256:70da610a75d47216590cff7c5ab3ee645bade26c45e75b82ba7ac13370ada5aa_ppc64le", + "product": { + "name": "multicluster-engine/hypershift-cli-rhel8@sha256:70da610a75d47216590cff7c5ab3ee645bade26c45e75b82ba7ac13370ada5aa_ppc64le", + "product_id": "multicluster-engine/hypershift-cli-rhel8@sha256:70da610a75d47216590cff7c5ab3ee645bade26c45e75b82ba7ac13370ada5aa_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-cli-rhel8@sha256:70da610a75d47216590cff7c5ab3ee645bade26c45e75b82ba7ac13370ada5aa?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/hypershift-cli-rhel8&tag=v2.3.3-8" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:c39337c22ab08f70435e89ca431cb11a102bfccfa8329df2ded6e5010f9c5c5f_ppc64le", + "product": { + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:c39337c22ab08f70435e89ca431cb11a102bfccfa8329df2ded6e5010f9c5c5f_ppc64le", + "product_id": "multicluster-engine/hypershift-rhel8-operator@sha256:c39337c22ab08f70435e89ca431cb11a102bfccfa8329df2ded6e5010f9c5c5f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-rhel8-operator@sha256:c39337c22ab08f70435e89ca431cb11a102bfccfa8329df2ded6e5010f9c5c5f?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/hypershift-rhel8-operator&tag=v2.3.3-6" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/kube-rbac-proxy-mce-rhel8@sha256:b2a457cc02c43590ef24f633f06b0e5b56ae27f3ce00e78bb13e16a8d4f21a5a_ppc64le", + "product": { + "name": "multicluster-engine/kube-rbac-proxy-mce-rhel8@sha256:b2a457cc02c43590ef24f633f06b0e5b56ae27f3ce00e78bb13e16a8d4f21a5a_ppc64le", + "product_id": "multicluster-engine/kube-rbac-proxy-mce-rhel8@sha256:b2a457cc02c43590ef24f633f06b0e5b56ae27f3ce00e78bb13e16a8d4f21a5a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kube-rbac-proxy-mce-rhel8@sha256:b2a457cc02c43590ef24f633f06b0e5b56ae27f3ce00e78bb13e16a8d4f21a5a?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel8&tag=v2.3.3-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:6c7dad094381e68a78f6318b56d67586cf667aacac0a0823b8199974da17e7fc_ppc64le", + "product": { + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:6c7dad094381e68a78f6318b56d67586cf667aacac0a0823b8199974da17e7fc_ppc64le", + "product_id": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:6c7dad094381e68a78f6318b56d67586cf667aacac0a0823b8199974da17e7fc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/managedcluster-import-controller-rhel8@sha256:6c7dad094381e68a78f6318b56d67586cf667aacac0a0823b8199974da17e7fc?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:34a8705f7a4b067ce03e1f23738ffc9cc0c860880c51b80d540d8059669b5df8_ppc64le", + "product": { + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:34a8705f7a4b067ce03e1f23738ffc9cc0c860880c51b80d540d8059669b5df8_ppc64le", + "product_id": "multicluster-engine/managed-serviceaccount-rhel8@sha256:34a8705f7a4b067ce03e1f23738ffc9cc0c860880c51b80d540d8059669b5df8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/managed-serviceaccount-rhel8@sha256:34a8705f7a4b067ce03e1f23738ffc9cc0c860880c51b80d540d8059669b5df8?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:34a8705f7a4b067ce03e1f23738ffc9cc0c860880c51b80d540d8059669b5df8_ppc64le", + "product": { + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:34a8705f7a4b067ce03e1f23738ffc9cc0c860880c51b80d540d8059669b5df8_ppc64le", + "product_id": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:34a8705f7a4b067ce03e1f23738ffc9cc0c860880c51b80d540d8059669b5df8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-managed-serviceaccount-rhel8@sha256:34a8705f7a4b067ce03e1f23738ffc9cc0c860880c51b80d540d8059669b5df8?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:78831fe1426ee9d0c0332b29378c1e9c454b851edf9ab3a1ed390c288162cb52_ppc64le", + "product": { + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:78831fe1426ee9d0c0332b29378c1e9c454b851edf9ab3a1ed390c288162cb52_ppc64le", + "product_id": "multicluster-engine/multicloud-manager-rhel8@sha256:78831fe1426ee9d0c0332b29378c1e9c454b851edf9ab3a1ed390c288162cb52_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/multicloud-manager-rhel8@sha256:78831fe1426ee9d0c0332b29378c1e9c454b851edf9ab3a1ed390c288162cb52?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/multicloud-manager-rhel8&tag=v2.3.3-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/must-gather-rhel8@sha256:9f4b674f8fb14bfabcd289682550e8b67066607e26aa92fcc808baffe1bece7e_ppc64le", + "product": { + "name": "multicluster-engine/must-gather-rhel8@sha256:9f4b674f8fb14bfabcd289682550e8b67066607e26aa92fcc808baffe1bece7e_ppc64le", + "product_id": "multicluster-engine/must-gather-rhel8@sha256:9f4b674f8fb14bfabcd289682550e8b67066607e26aa92fcc808baffe1bece7e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/must-gather-rhel8@sha256:9f4b674f8fb14bfabcd289682550e8b67066607e26aa92fcc808baffe1bece7e?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/must-gather-rhel8&tag=v2.3.3-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/mce-operator-bundle@sha256:d5fb50ae999c6f334a41f25bbea3a62ccd416f92d9aea9fba4a4b36a471d7372_ppc64le", + "product": { + "name": "multicluster-engine/mce-operator-bundle@sha256:d5fb50ae999c6f334a41f25bbea3a62ccd416f92d9aea9fba4a4b36a471d7372_ppc64le", + "product_id": "multicluster-engine/mce-operator-bundle@sha256:d5fb50ae999c6f334a41f25bbea3a62ccd416f92d9aea9fba4a4b36a471d7372_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/mce-operator-bundle@sha256:d5fb50ae999c6f334a41f25bbea3a62ccd416f92d9aea9fba4a4b36a471d7372?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/mce-operator-bundle&tag=v2.3.3-15" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/backplane-rhel8-operator@sha256:1add29c07989c250a4a6c35445c7524ed74a142d2ba5457575055b77a2581f51_ppc64le", + "product": { + "name": "multicluster-engine/backplane-rhel8-operator@sha256:1add29c07989c250a4a6c35445c7524ed74a142d2ba5457575055b77a2581f51_ppc64le", + "product_id": "multicluster-engine/backplane-rhel8-operator@sha256:1add29c07989c250a4a6c35445c7524ed74a142d2ba5457575055b77a2581f51_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/backplane-rhel8-operator@sha256:1add29c07989c250a4a6c35445c7524ed74a142d2ba5457575055b77a2581f51?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/backplane-rhel8-operator&tag=v2.3.3-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/placement-rhel8@sha256:9359cdef6ab04445ad4f29e9b573dcad0bdf8336b2010560a26baaec29f76ab8_ppc64le", + "product": { + "name": "multicluster-engine/placement-rhel8@sha256:9359cdef6ab04445ad4f29e9b573dcad0bdf8336b2010560a26baaec29f76ab8_ppc64le", + "product_id": "multicluster-engine/placement-rhel8@sha256:9359cdef6ab04445ad4f29e9b573dcad0bdf8336b2010560a26baaec29f76ab8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/placement-rhel8@sha256:9359cdef6ab04445ad4f29e9b573dcad0bdf8336b2010560a26baaec29f76ab8?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/placement-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:c9be4ae3482a9dc8bf180f6fbd902ad613e82b963b864e8c4b59bbc10d563cd7_ppc64le", + "product": { + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:c9be4ae3482a9dc8bf180f6fbd902ad613e82b963b864e8c4b59bbc10d563cd7_ppc64le", + "product_id": "multicluster-engine/provider-credential-controller-rhel8@sha256:c9be4ae3482a9dc8bf180f6fbd902ad613e82b963b864e8c4b59bbc10d563cd7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/provider-credential-controller-rhel8@sha256:c9be4ae3482a9dc8bf180f6fbd902ad613e82b963b864e8c4b59bbc10d563cd7?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/provider-credential-controller-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/registration-rhel8@sha256:70304487c0f82628bcc67ffd48f8bafe12f47340bd5852f9bcc0a05e93a18994_ppc64le", + "product": { + "name": "multicluster-engine/registration-rhel8@sha256:70304487c0f82628bcc67ffd48f8bafe12f47340bd5852f9bcc0a05e93a18994_ppc64le", + "product_id": "multicluster-engine/registration-rhel8@sha256:70304487c0f82628bcc67ffd48f8bafe12f47340bd5852f9bcc0a05e93a18994_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/registration-rhel8@sha256:70304487c0f82628bcc67ffd48f8bafe12f47340bd5852f9bcc0a05e93a18994?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/registration-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/registration-operator-rhel8@sha256:390c47baed2e7b2644a31125cc47ea4cc7cd7efa2becda86882fb509071b02b4_ppc64le", + "product": { + "name": "multicluster-engine/registration-operator-rhel8@sha256:390c47baed2e7b2644a31125cc47ea4cc7cd7efa2becda86882fb509071b02b4_ppc64le", + "product_id": "multicluster-engine/registration-operator-rhel8@sha256:390c47baed2e7b2644a31125cc47ea4cc7cd7efa2becda86882fb509071b02b4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/registration-operator-rhel8@sha256:390c47baed2e7b2644a31125cc47ea4cc7cd7efa2becda86882fb509071b02b4?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/registration-operator-rhel8&tag=v2.3.3-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/work-rhel8@sha256:bceda760fbf7fef7c3d0a5544a1e81756ebe071094032b491bef3c913af70da5_ppc64le", + "product": { + "name": "multicluster-engine/work-rhel8@sha256:bceda760fbf7fef7c3d0a5544a1e81756ebe071094032b491bef3c913af70da5_ppc64le", + "product_id": "multicluster-engine/work-rhel8@sha256:bceda760fbf7fef7c3d0a5544a1e81756ebe071094032b491bef3c913af70da5_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/work-rhel8@sha256:bceda760fbf7fef7c3d0a5544a1e81756ebe071094032b491bef3c913af70da5?arch=ppc64le&repository_url=registry.redhat.io/multicluster-engine/work-rhel8&tag=v2.3.3-4" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "multicluster-engine/addon-manager-rhel8@sha256:f76dcedc1a8a5e44c022f86d4d425ddecf7265ca991fb8d91e0843c222f3683d_arm64", + "product": { + "name": "multicluster-engine/addon-manager-rhel8@sha256:f76dcedc1a8a5e44c022f86d4d425ddecf7265ca991fb8d91e0843c222f3683d_arm64", + "product_id": "multicluster-engine/addon-manager-rhel8@sha256:f76dcedc1a8a5e44c022f86d4d425ddecf7265ca991fb8d91e0843c222f3683d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/addon-manager-rhel8@sha256:f76dcedc1a8a5e44c022f86d4d425ddecf7265ca991fb8d91e0843c222f3683d?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/addon-manager-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/agent-service-rhel8@sha256:f756a04cc55a7c21ea1c4251e83e9d7a65a3501989bcd705395f5a19e0c47586_arm64", + "product": { + "name": "multicluster-engine/agent-service-rhel8@sha256:f756a04cc55a7c21ea1c4251e83e9d7a65a3501989bcd705395f5a19e0c47586_arm64", + "product_id": "multicluster-engine/agent-service-rhel8@sha256:f756a04cc55a7c21ea1c4251e83e9d7a65a3501989bcd705395f5a19e0c47586_arm64", + "product_identification_helper": { + "purl": "pkg:oci/agent-service-rhel8@sha256:f756a04cc55a7c21ea1c4251e83e9d7a65a3501989bcd705395f5a19e0c47586?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/agent-service-rhel8&tag=v2.3.3-8" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:b4f8fa2b6fb601cf5c88a480ed2f336e49e7b6b804f1223cf65b195d11d217ee_arm64", + "product": { + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:b4f8fa2b6fb601cf5c88a480ed2f336e49e7b6b804f1223cf65b195d11d217ee_arm64", + "product_id": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:b4f8fa2b6fb601cf5c88a480ed2f336e49e7b6b804f1223cf65b195d11d217ee_arm64", + "product_identification_helper": { + "purl": "pkg:oci/apiserver-network-proxy-rhel8@sha256:b4f8fa2b6fb601cf5c88a480ed2f336e49e7b6b804f1223cf65b195d11d217ee?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/apiserver-network-proxy-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:292422be5e0ab3ef1fd5743e9bcec4350ac330defb99ae0b7cd3eb0d4ab8dca4_arm64", + "product": { + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:292422be5e0ab3ef1fd5743e9bcec4350ac330defb99ae0b7cd3eb0d4ab8dca4_arm64", + "product_id": "multicluster-engine/assisted-image-service-rhel8@sha256:292422be5e0ab3ef1fd5743e9bcec4350ac330defb99ae0b7cd3eb0d4ab8dca4_arm64", + "product_identification_helper": { + "purl": "pkg:oci/assisted-image-service-rhel8@sha256:292422be5e0ab3ef1fd5743e9bcec4350ac330defb99ae0b7cd3eb0d4ab8dca4?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/assisted-image-service-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-agent-rhel8@sha256:246e288b05a8ccd5bd89e2d58673993e879aa371a84ae1fa212c11938d949c18_arm64", + "product": { + "name": "multicluster-engine/assisted-installer-agent-rhel8@sha256:246e288b05a8ccd5bd89e2d58673993e879aa371a84ae1fa212c11938d949c18_arm64", + "product_id": "multicluster-engine/assisted-installer-agent-rhel8@sha256:246e288b05a8ccd5bd89e2d58673993e879aa371a84ae1fa212c11938d949c18_arm64", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-agent-rhel8@sha256:246e288b05a8ccd5bd89e2d58673993e879aa371a84ae1fa212c11938d949c18?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-agent-rhel8&tag=v2.3.3-7" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-rhel8@sha256:3afb896280894beb97ecc70cecb60da8f4059601f00fa975fad9f67c9cbf9450_arm64", + "product": { + "name": "multicluster-engine/assisted-installer-rhel8@sha256:3afb896280894beb97ecc70cecb60da8f4059601f00fa975fad9f67c9cbf9450_arm64", + "product_id": "multicluster-engine/assisted-installer-rhel8@sha256:3afb896280894beb97ecc70cecb60da8f4059601f00fa975fad9f67c9cbf9450_arm64", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-rhel8@sha256:3afb896280894beb97ecc70cecb60da8f4059601f00fa975fad9f67c9cbf9450?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:cdf55c7fdccf55e0630c8d3d45be6babad89986390341d211d128d8f4ef8d767_arm64", + "product": { + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:cdf55c7fdccf55e0630c8d3d45be6babad89986390341d211d128d8f4ef8d767_arm64", + "product_id": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:cdf55c7fdccf55e0630c8d3d45be6babad89986390341d211d128d8f4ef8d767_arm64", + "product_identification_helper": { + "purl": "pkg:oci/assisted-installer-reporter-rhel8@sha256:cdf55c7fdccf55e0630c8d3d45be6babad89986390341d211d128d8f4ef8d767?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/assisted-installer-reporter-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:cf23e1048915774fe0ca1843335c4e3eed8a37fd516def47cbad8bfd88f65672_arm64", + "product": { + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:cf23e1048915774fe0ca1843335c4e3eed8a37fd516def47cbad8bfd88f65672_arm64", + "product_id": "multicluster-engine/aws-encryption-provider-rhel8@sha256:cf23e1048915774fe0ca1843335c4e3eed8a37fd516def47cbad8bfd88f65672_arm64", + "product_identification_helper": { + "purl": "pkg:oci/aws-encryption-provider-rhel8@sha256:cf23e1048915774fe0ca1843335c4e3eed8a37fd516def47cbad8bfd88f65672?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/aws-encryption-provider-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-rhel8@sha256:9539729907da9a5e0135c9269ee61328530a7b8659fb6b305339585a698cb4ba_arm64", + "product": { + "name": "multicluster-engine/cluster-api-rhel8@sha256:9539729907da9a5e0135c9269ee61328530a7b8659fb6b305339585a698cb4ba_arm64", + "product_id": "multicluster-engine/cluster-api-rhel8@sha256:9539729907da9a5e0135c9269ee61328530a7b8659fb6b305339585a698cb4ba_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-rhel8@sha256:9539729907da9a5e0135c9269ee61328530a7b8659fb6b305339585a698cb4ba?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:054c686d0a22bf88c5ea9d3093d446212101142a83d055b5c2ef9ff9e0339f40_arm64", + "product": { + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:054c686d0a22bf88c5ea9d3093d446212101142a83d055b5c2ef9ff9e0339f40_arm64", + "product_id": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:054c686d0a22bf88c5ea9d3093d446212101142a83d055b5c2ef9ff9e0339f40_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:054c686d0a22bf88c5ea9d3093d446212101142a83d055b5c2ef9ff9e0339f40?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:054c686d0a22bf88c5ea9d3093d446212101142a83d055b5c2ef9ff9e0339f40_arm64", + "product": { + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:054c686d0a22bf88c5ea9d3093d446212101142a83d055b5c2ef9ff9e0339f40_arm64", + "product_id": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:054c686d0a22bf88c5ea9d3093d446212101142a83d055b5c2ef9ff9e0339f40_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-agent-rhel8@sha256:054c686d0a22bf88c5ea9d3093d446212101142a83d055b5c2ef9ff9e0339f40?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-agent-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:0472573539fd5a19f7e939292d72917c01a3c14e72a33e88e767f3348fb4020e_arm64", + "product": { + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:0472573539fd5a19f7e939292d72917c01a3c14e72a33e88e767f3348fb4020e_arm64", + "product_id": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:0472573539fd5a19f7e939292d72917c01a3c14e72a33e88e767f3348fb4020e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-aws-rhel8@sha256:0472573539fd5a19f7e939292d72917c01a3c14e72a33e88e767f3348fb4020e?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-aws-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:6997087b1c982b674c5fa5e438a571c1dce4601e3aa3d8142ecc5feea4f846a1_arm64", + "product": { + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:6997087b1c982b674c5fa5e438a571c1dce4601e3aa3d8142ecc5feea4f846a1_arm64", + "product_id": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:6997087b1c982b674c5fa5e438a571c1dce4601e3aa3d8142ecc5feea4f846a1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-azure-rhel8@sha256:6997087b1c982b674c5fa5e438a571c1dce4601e3aa3d8142ecc5feea4f846a1?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-azure-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:eb3abff61211c4c94dbaee9f91fcd443bb84a9db7e80c839de1e20baff6cb46e_arm64", + "product": { + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:eb3abff61211c4c94dbaee9f91fcd443bb84a9db7e80c839de1e20baff6cb46e_arm64", + "product_id": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:eb3abff61211c4c94dbaee9f91fcd443bb84a9db7e80c839de1e20baff6cb46e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-api-provider-kubevirt-rhel8@sha256:eb3abff61211c4c94dbaee9f91fcd443bb84a9db7e80c839de1e20baff6cb46e?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-api-provider-kubevirt-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:1335b6df5e07c65f936d4e458b218462f390fb99472f09b50999bd8ae1d2aa07_arm64", + "product": { + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:1335b6df5e07c65f936d4e458b218462f390fb99472f09b50999bd8ae1d2aa07_arm64", + "product_id": "multicluster-engine/clusterclaims-controller-rhel8@sha256:1335b6df5e07c65f936d4e458b218462f390fb99472f09b50999bd8ae1d2aa07_arm64", + "product_identification_helper": { + "purl": "pkg:oci/clusterclaims-controller-rhel8@sha256:1335b6df5e07c65f936d4e458b218462f390fb99472f09b50999bd8ae1d2aa07?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/clusterclaims-controller-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:8d3c03b33af3e088cae138f693d4eda498338ab25feda4d5930c98c9953e9265_arm64", + "product": { + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:8d3c03b33af3e088cae138f693d4eda498338ab25feda4d5930c98c9953e9265_arm64", + "product_id": "multicluster-engine/cluster-curator-controller-rhel8@sha256:8d3c03b33af3e088cae138f693d4eda498338ab25feda4d5930c98c9953e9265_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-curator-controller-rhel8@sha256:8d3c03b33af3e088cae138f693d4eda498338ab25feda4d5930c98c9953e9265?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-curator-controller-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:3884284b178051e856224d5bf60b546dffbd626f02a9b67abb9504b8455585e5_arm64", + "product": { + "name": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:3884284b178051e856224d5bf60b546dffbd626f02a9b67abb9504b8455585e5_arm64", + "product_id": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:3884284b178051e856224d5bf60b546dffbd626f02a9b67abb9504b8455585e5_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-image-set-controller-rhel8@sha256:3884284b178051e856224d5bf60b546dffbd626f02a9b67abb9504b8455585e5?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-image-set-controller-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:6cd7df2f56225e373611f65c879798a31e07da75a9fb56d875490311b89eff6a_arm64", + "product": { + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:6cd7df2f56225e373611f65c879798a31e07da75a9fb56d875490311b89eff6a_arm64", + "product_id": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:6cd7df2f56225e373611f65c879798a31e07da75a9fb56d875490311b89eff6a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/clusterlifecycle-state-metrics-rhel8@sha256:6cd7df2f56225e373611f65c879798a31e07da75a9fb56d875490311b89eff6a?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/clusterlifecycle-state-metrics-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:bbd78159a13d1f217db9a3ce4f1793c6dfa833253f8759e6d1e5f94d6a44246a_arm64", + "product": { + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:bbd78159a13d1f217db9a3ce4f1793c6dfa833253f8759e6d1e5f94d6a44246a_arm64", + "product_id": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:bbd78159a13d1f217db9a3ce4f1793c6dfa833253f8759e6d1e5f94d6a44246a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-proxy-addon-rhel8@sha256:bbd78159a13d1f217db9a3ce4f1793c6dfa833253f8759e6d1e5f94d6a44246a?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-addon-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:30ceaf457e742c74ff84b6e44bd69c011e967ef972aa8e499b3ba63336d43449_arm64", + "product": { + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:30ceaf457e742c74ff84b6e44bd69c011e967ef972aa8e499b3ba63336d43449_arm64", + "product_id": "multicluster-engine/cluster-proxy-rhel8@sha256:30ceaf457e742c74ff84b6e44bd69c011e967ef972aa8e499b3ba63336d43449_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-proxy-rhel8@sha256:30ceaf457e742c74ff84b6e44bd69c011e967ef972aa8e499b3ba63336d43449?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/cluster-proxy-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/console-mce-rhel8@sha256:1fbba225e966e3c1c16b641b7f37c499eb362dff580cda4a01425856eb03ff3a_arm64", + "product": { + "name": "multicluster-engine/console-mce-rhel8@sha256:1fbba225e966e3c1c16b641b7f37c499eb362dff580cda4a01425856eb03ff3a_arm64", + "product_id": "multicluster-engine/console-mce-rhel8@sha256:1fbba225e966e3c1c16b641b7f37c499eb362dff580cda4a01425856eb03ff3a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/console-mce-rhel8@sha256:1fbba225e966e3c1c16b641b7f37c499eb362dff580cda4a01425856eb03ff3a?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/console-mce-rhel8&tag=v2.3.3-7" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:1fbba225e966e3c1c16b641b7f37c499eb362dff580cda4a01425856eb03ff3a_arm64", + "product": { + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:1fbba225e966e3c1c16b641b7f37c499eb362dff580cda4a01425856eb03ff3a_arm64", + "product_id": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:1fbba225e966e3c1c16b641b7f37c499eb362dff580cda4a01425856eb03ff3a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-console-mce-rhel8@sha256:1fbba225e966e3c1c16b641b7f37c499eb362dff580cda4a01425856eb03ff3a?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-console-mce-rhel8&tag=v2.3.3-7" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/discovery-rhel8@sha256:a59e01d260808f4549a63859ef49f51d6217ab6d65b5dd555c12047d230ae313_arm64", + "product": { + "name": "multicluster-engine/discovery-rhel8@sha256:a59e01d260808f4549a63859ef49f51d6217ab6d65b5dd555c12047d230ae313_arm64", + "product_id": "multicluster-engine/discovery-rhel8@sha256:a59e01d260808f4549a63859ef49f51d6217ab6d65b5dd555c12047d230ae313_arm64", + "product_identification_helper": { + "purl": "pkg:oci/discovery-rhel8@sha256:a59e01d260808f4549a63859ef49f51d6217ab6d65b5dd555c12047d230ae313?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/discovery-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hive-rhel8@sha256:d888f204da3b0ddd7eea7087ea1329dc0d1d9cd3f789cf7759686767fffae9d5_arm64", + "product": { + "name": "multicluster-engine/hive-rhel8@sha256:d888f204da3b0ddd7eea7087ea1329dc0d1d9cd3f789cf7759686767fffae9d5_arm64", + "product_id": "multicluster-engine/hive-rhel8@sha256:d888f204da3b0ddd7eea7087ea1329dc0d1d9cd3f789cf7759686767fffae9d5_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hive-rhel8@sha256:d888f204da3b0ddd7eea7087ea1329dc0d1d9cd3f789cf7759686767fffae9d5?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/hive-rhel8&tag=v2.3.3-7" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:351553c9c7819665b60d5c330aca3e02ae1a69bf0459f8970fa79fc92a3eec12_arm64", + "product": { + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:351553c9c7819665b60d5c330aca3e02ae1a69bf0459f8970fa79fc92a3eec12_arm64", + "product_id": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:351553c9c7819665b60d5c330aca3e02ae1a69bf0459f8970fa79fc92a3eec12_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-hypershift-addon-rhel8-operator@sha256:351553c9c7819665b60d5c330aca3e02ae1a69bf0459f8970fa79fc92a3eec12?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:351553c9c7819665b60d5c330aca3e02ae1a69bf0459f8970fa79fc92a3eec12_arm64", + "product": { + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:351553c9c7819665b60d5c330aca3e02ae1a69bf0459f8970fa79fc92a3eec12_arm64", + "product_id": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:351553c9c7819665b60d5c330aca3e02ae1a69bf0459f8970fa79fc92a3eec12_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-addon-rhel8-operator@sha256:351553c9c7819665b60d5c330aca3e02ae1a69bf0459f8970fa79fc92a3eec12?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/hypershift-addon-rhel8-operator&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-cli-rhel8@sha256:f4e2a5b4db804d03afc2c8b2cabee332684fa48b0459afc18ecb8783895a2592_arm64", + "product": { + "name": "multicluster-engine/hypershift-cli-rhel8@sha256:f4e2a5b4db804d03afc2c8b2cabee332684fa48b0459afc18ecb8783895a2592_arm64", + "product_id": "multicluster-engine/hypershift-cli-rhel8@sha256:f4e2a5b4db804d03afc2c8b2cabee332684fa48b0459afc18ecb8783895a2592_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-cli-rhel8@sha256:f4e2a5b4db804d03afc2c8b2cabee332684fa48b0459afc18ecb8783895a2592?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/hypershift-cli-rhel8&tag=v2.3.3-8" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:970d55cfbdc630ac833ab753bdf8f10cf8c9614839905db0b93256dda4b14385_arm64", + "product": { + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:970d55cfbdc630ac833ab753bdf8f10cf8c9614839905db0b93256dda4b14385_arm64", + "product_id": "multicluster-engine/hypershift-rhel8-operator@sha256:970d55cfbdc630ac833ab753bdf8f10cf8c9614839905db0b93256dda4b14385_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hypershift-rhel8-operator@sha256:970d55cfbdc630ac833ab753bdf8f10cf8c9614839905db0b93256dda4b14385?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/hypershift-rhel8-operator&tag=v2.3.3-6" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/kube-rbac-proxy-mce-rhel8@sha256:f97af913307811a9e48abb280c84f0c0f0cbb8275c127825062a15c20ef28538_arm64", + "product": { + "name": "multicluster-engine/kube-rbac-proxy-mce-rhel8@sha256:f97af913307811a9e48abb280c84f0c0f0cbb8275c127825062a15c20ef28538_arm64", + "product_id": "multicluster-engine/kube-rbac-proxy-mce-rhel8@sha256:f97af913307811a9e48abb280c84f0c0f0cbb8275c127825062a15c20ef28538_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kube-rbac-proxy-mce-rhel8@sha256:f97af913307811a9e48abb280c84f0c0f0cbb8275c127825062a15c20ef28538?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/kube-rbac-proxy-mce-rhel8&tag=v2.3.3-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:353f91d986eff3484d20263734d950f6bf62d4ebce2c2271dd1fc0d0f422f44d_arm64", + "product": { + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:353f91d986eff3484d20263734d950f6bf62d4ebce2c2271dd1fc0d0f422f44d_arm64", + "product_id": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:353f91d986eff3484d20263734d950f6bf62d4ebce2c2271dd1fc0d0f422f44d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/managedcluster-import-controller-rhel8@sha256:353f91d986eff3484d20263734d950f6bf62d4ebce2c2271dd1fc0d0f422f44d?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/managedcluster-import-controller-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:5ea0b32eb67a710d1b9bb133579bfd16142b157f23a9d615e06a5dcd40f224d7_arm64", + "product": { + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:5ea0b32eb67a710d1b9bb133579bfd16142b157f23a9d615e06a5dcd40f224d7_arm64", + "product_id": "multicluster-engine/managed-serviceaccount-rhel8@sha256:5ea0b32eb67a710d1b9bb133579bfd16142b157f23a9d615e06a5dcd40f224d7_arm64", + "product_identification_helper": { + "purl": "pkg:oci/managed-serviceaccount-rhel8@sha256:5ea0b32eb67a710d1b9bb133579bfd16142b157f23a9d615e06a5dcd40f224d7?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/managed-serviceaccount-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:5ea0b32eb67a710d1b9bb133579bfd16142b157f23a9d615e06a5dcd40f224d7_arm64", + "product": { + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:5ea0b32eb67a710d1b9bb133579bfd16142b157f23a9d615e06a5dcd40f224d7_arm64", + "product_id": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:5ea0b32eb67a710d1b9bb133579bfd16142b157f23a9d615e06a5dcd40f224d7_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicluster-engine-managed-serviceaccount-rhel8@sha256:5ea0b32eb67a710d1b9bb133579bfd16142b157f23a9d615e06a5dcd40f224d7?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:2363df8e501f382fcac724fab7cb8c060441c209e6f26758c4a2e135174f9f7f_arm64", + "product": { + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:2363df8e501f382fcac724fab7cb8c060441c209e6f26758c4a2e135174f9f7f_arm64", + "product_id": "multicluster-engine/multicloud-manager-rhel8@sha256:2363df8e501f382fcac724fab7cb8c060441c209e6f26758c4a2e135174f9f7f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/multicloud-manager-rhel8@sha256:2363df8e501f382fcac724fab7cb8c060441c209e6f26758c4a2e135174f9f7f?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/multicloud-manager-rhel8&tag=v2.3.3-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/must-gather-rhel8@sha256:2cc54e2a2f556bf582aff10eae7df64a0c63567508f0f9754cc20205f9941c54_arm64", + "product": { + "name": "multicluster-engine/must-gather-rhel8@sha256:2cc54e2a2f556bf582aff10eae7df64a0c63567508f0f9754cc20205f9941c54_arm64", + "product_id": "multicluster-engine/must-gather-rhel8@sha256:2cc54e2a2f556bf582aff10eae7df64a0c63567508f0f9754cc20205f9941c54_arm64", + "product_identification_helper": { + "purl": "pkg:oci/must-gather-rhel8@sha256:2cc54e2a2f556bf582aff10eae7df64a0c63567508f0f9754cc20205f9941c54?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/must-gather-rhel8&tag=v2.3.3-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/backplane-rhel8-operator@sha256:401558fa766d90a9c43f7fbce1a9a9afa315341e06d93bc4ea03300099e36612_arm64", + "product": { + "name": "multicluster-engine/backplane-rhel8-operator@sha256:401558fa766d90a9c43f7fbce1a9a9afa315341e06d93bc4ea03300099e36612_arm64", + "product_id": "multicluster-engine/backplane-rhel8-operator@sha256:401558fa766d90a9c43f7fbce1a9a9afa315341e06d93bc4ea03300099e36612_arm64", + "product_identification_helper": { + "purl": "pkg:oci/backplane-rhel8-operator@sha256:401558fa766d90a9c43f7fbce1a9a9afa315341e06d93bc4ea03300099e36612?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/backplane-rhel8-operator&tag=v2.3.3-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/placement-rhel8@sha256:03bd7cac39ba01ad3eef1ed98e3af811d620247e4e5f7be577d4f5e94bc882ed_arm64", + "product": { + "name": "multicluster-engine/placement-rhel8@sha256:03bd7cac39ba01ad3eef1ed98e3af811d620247e4e5f7be577d4f5e94bc882ed_arm64", + "product_id": "multicluster-engine/placement-rhel8@sha256:03bd7cac39ba01ad3eef1ed98e3af811d620247e4e5f7be577d4f5e94bc882ed_arm64", + "product_identification_helper": { + "purl": "pkg:oci/placement-rhel8@sha256:03bd7cac39ba01ad3eef1ed98e3af811d620247e4e5f7be577d4f5e94bc882ed?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/placement-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:f4c67a0da6c82a910471956c6c539e58f6137fe9b04410462b9dcc71fc7374b4_arm64", + "product": { + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:f4c67a0da6c82a910471956c6c539e58f6137fe9b04410462b9dcc71fc7374b4_arm64", + "product_id": "multicluster-engine/provider-credential-controller-rhel8@sha256:f4c67a0da6c82a910471956c6c539e58f6137fe9b04410462b9dcc71fc7374b4_arm64", + "product_identification_helper": { + "purl": "pkg:oci/provider-credential-controller-rhel8@sha256:f4c67a0da6c82a910471956c6c539e58f6137fe9b04410462b9dcc71fc7374b4?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/provider-credential-controller-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/registration-rhel8@sha256:5dd673221bdbdff42a494811a88665c846ab5be074961d18aa5131b27e4f717a_arm64", + "product": { + "name": "multicluster-engine/registration-rhel8@sha256:5dd673221bdbdff42a494811a88665c846ab5be074961d18aa5131b27e4f717a_arm64", + "product_id": "multicluster-engine/registration-rhel8@sha256:5dd673221bdbdff42a494811a88665c846ab5be074961d18aa5131b27e4f717a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/registration-rhel8@sha256:5dd673221bdbdff42a494811a88665c846ab5be074961d18aa5131b27e4f717a?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/registration-rhel8&tag=v2.3.3-4" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/registration-operator-rhel8@sha256:62442255e121f82c6eb344c7f8daaacfc526a277bc83437cad21ec8241838ca9_arm64", + "product": { + "name": "multicluster-engine/registration-operator-rhel8@sha256:62442255e121f82c6eb344c7f8daaacfc526a277bc83437cad21ec8241838ca9_arm64", + "product_id": "multicluster-engine/registration-operator-rhel8@sha256:62442255e121f82c6eb344c7f8daaacfc526a277bc83437cad21ec8241838ca9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/registration-operator-rhel8@sha256:62442255e121f82c6eb344c7f8daaacfc526a277bc83437cad21ec8241838ca9?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/registration-operator-rhel8&tag=v2.3.3-5" + } + } + }, + { + "category": "product_version", + "name": "multicluster-engine/work-rhel8@sha256:63edddbe908660112c27fc294ca7d95bfada8db7350deed02edc705b630c6e60_arm64", + "product": { + "name": "multicluster-engine/work-rhel8@sha256:63edddbe908660112c27fc294ca7d95bfada8db7350deed02edc705b630c6e60_arm64", + "product_id": "multicluster-engine/work-rhel8@sha256:63edddbe908660112c27fc294ca7d95bfada8db7350deed02edc705b630c6e60_arm64", + "product_identification_helper": { + "purl": "pkg:oci/work-rhel8@sha256:63edddbe908660112c27fc294ca7d95bfada8db7350deed02edc705b630c6e60?arch=arm64&repository_url=registry.redhat.io/multicluster-engine/work-rhel8&tag=v2.3.3-4" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:ca91eab699f97705c3e696150446582caab5b97db9230c0a2a7d0b9e09a7c571_s390x", + "product": { + "name": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:ca91eab699f97705c3e696150446582caab5b97db9230c0a2a7d0b9e09a7c571_s390x", + "product_id": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:ca91eab699f97705c3e696150446582caab5b97db9230c0a2a7d0b9e09a7c571_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-kubevirt-velero-plugin-rhel8@sha256:ca91eab699f97705c3e696150446582caab5b97db9230c0a2a7d0b9e09a7c571?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel8&tag=1.1.7-6" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-mustgather-rhel8@sha256:2d68a7b0030a673d88d59d712352614f136704fc95a5523484eea11eeeb76619_s390x", + "product": { + "name": "oadp/oadp-mustgather-rhel8@sha256:2d68a7b0030a673d88d59d712352614f136704fc95a5523484eea11eeeb76619_s390x", + "product_id": "oadp/oadp-mustgather-rhel8@sha256:2d68a7b0030a673d88d59d712352614f136704fc95a5523484eea11eeeb76619_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-mustgather-rhel8@sha256:2d68a7b0030a673d88d59d712352614f136704fc95a5523484eea11eeeb76619?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-mustgather-rhel8&tag=1.1.7-8" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-operator-bundle@sha256:f6e549d662f01f8ccf0c1ab9016b1aadcd417096bc49133a536292c55049c13a_s390x", + "product": { + "name": "oadp/oadp-operator-bundle@sha256:f6e549d662f01f8ccf0c1ab9016b1aadcd417096bc49133a536292c55049c13a_s390x", + "product_id": "oadp/oadp-operator-bundle@sha256:f6e549d662f01f8ccf0c1ab9016b1aadcd417096bc49133a536292c55049c13a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-operator-bundle@sha256:f6e549d662f01f8ccf0c1ab9016b1aadcd417096bc49133a536292c55049c13a?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-operator-bundle&tag=1.1.7-8" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-rhel8-operator@sha256:2d3e387f50011ea9496e7524624100afb1e5eb9aeb220c971ac850e3d3fb3ecd_s390x", + "product": { + "name": "oadp/oadp-rhel8-operator@sha256:2d3e387f50011ea9496e7524624100afb1e5eb9aeb220c971ac850e3d3fb3ecd_s390x", + "product_id": "oadp/oadp-rhel8-operator@sha256:2d3e387f50011ea9496e7524624100afb1e5eb9aeb220c971ac850e3d3fb3ecd_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-rhel8-operator@sha256:2d3e387f50011ea9496e7524624100afb1e5eb9aeb220c971ac850e3d3fb3ecd?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-rhel8-operator&tag=1.1.7-7" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-rhel8@sha256:19772d059d2f70b59c21f01b8cdb34736dd835a695586e74234785b577abbf74_s390x", + "product": { + "name": "oadp/oadp-velero-rhel8@sha256:19772d059d2f70b59c21f01b8cdb34736dd835a695586e74234785b577abbf74_s390x", + "product_id": "oadp/oadp-velero-rhel8@sha256:19772d059d2f70b59c21f01b8cdb34736dd835a695586e74234785b577abbf74_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-rhel8@sha256:19772d059d2f70b59c21f01b8cdb34736dd835a695586e74234785b577abbf74?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-velero-rhel8&tag=1.1.7-6" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-rhel8@sha256:c521866aa8677b189bfe5b07f38b640e5fe5f392bcf6af9a25cda0daab393cd9_s390x", + "product": { + "name": "oadp/oadp-velero-plugin-rhel8@sha256:c521866aa8677b189bfe5b07f38b640e5fe5f392bcf6af9a25cda0daab393cd9_s390x", + "product_id": "oadp/oadp-velero-plugin-rhel8@sha256:c521866aa8677b189bfe5b07f38b640e5fe5f392bcf6af9a25cda0daab393cd9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-rhel8@sha256:c521866aa8677b189bfe5b07f38b640e5fe5f392bcf6af9a25cda0daab393cd9?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-rhel8&tag=1.1.7-6" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:fbef5cf169028b7e2c16c00ab699bcdb5733e2368ead683639495c2c584e08d7_s390x", + "product": { + "name": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:fbef5cf169028b7e2c16c00ab699bcdb5733e2368ead683639495c2c584e08d7_s390x", + "product_id": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:fbef5cf169028b7e2c16c00ab699bcdb5733e2368ead683639495c2c584e08d7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-aws-rhel8@sha256:fbef5cf169028b7e2c16c00ab699bcdb5733e2368ead683639495c2c584e08d7?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel8&tag=1.1.7-6" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:a68d39f20190d5dd35cb799b02ad3ff4fdaf52ab22f7785ba4be4d20c95a09af_s390x", + "product": { + "name": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:a68d39f20190d5dd35cb799b02ad3ff4fdaf52ab22f7785ba4be4d20c95a09af_s390x", + "product_id": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:a68d39f20190d5dd35cb799b02ad3ff4fdaf52ab22f7785ba4be4d20c95a09af_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-csi-rhel8@sha256:a68d39f20190d5dd35cb799b02ad3ff4fdaf52ab22f7785ba4be4d20c95a09af?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-csi-rhel8&tag=1.1.7-6" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:7933617816babdf5e6da973b7ffbf54a2c280a66fc6a9861e2dc731f01043d80_s390x", + "product": { + "name": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:7933617816babdf5e6da973b7ffbf54a2c280a66fc6a9861e2dc731f01043d80_s390x", + "product_id": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:7933617816babdf5e6da973b7ffbf54a2c280a66fc6a9861e2dc731f01043d80_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-gcp-rhel8@sha256:7933617816babdf5e6da973b7ffbf54a2c280a66fc6a9861e2dc731f01043d80?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel8&tag=1.1.7-6" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:7b4c2fbf7ae8c859bfc976a1e07ef02e430792b16f36fd7fe9e447c7427d5003_s390x", + "product": { + "name": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:7b4c2fbf7ae8c859bfc976a1e07ef02e430792b16f36fd7fe9e447c7427d5003_s390x", + "product_id": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:7b4c2fbf7ae8c859bfc976a1e07ef02e430792b16f36fd7fe9e447c7427d5003_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:7b4c2fbf7ae8c859bfc976a1e07ef02e430792b16f36fd7fe9e447c7427d5003?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel8&tag=1.1.7-6" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:7466b02853935e62195da737dc4dc1e7776537a330b943feb971d9b0aab01a5b_s390x", + "product": { + "name": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:7466b02853935e62195da737dc4dc1e7776537a330b943feb971d9b0aab01a5b_s390x", + "product_id": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:7466b02853935e62195da737dc4dc1e7776537a330b943feb971d9b0aab01a5b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-restic-restore-helper-rhel8@sha256:7466b02853935e62195da737dc4dc1e7776537a330b943feb971d9b0aab01a5b?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-velero-restic-restore-helper-rhel8&tag=1.1.7-6" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:7cc9fc024056ca5e857a6135bd99607d14eef47426eea87286f4e33f0751fcbd_s390x", + "product": { + "name": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:7cc9fc024056ca5e857a6135bd99607d14eef47426eea87286f4e33f0751fcbd_s390x", + "product_id": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:7cc9fc024056ca5e857a6135bd99607d14eef47426eea87286f4e33f0751fcbd_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-volume-snapshot-mover-rhel8@sha256:7cc9fc024056ca5e857a6135bd99607d14eef47426eea87286f4e33f0751fcbd?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-volume-snapshot-mover-rhel8&tag=1.1.7-6" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:1d9eb04551c7629c1c955a83f56c9950af52cf507a960673fbbb71bc53a45d42_amd64", + "product": { + "name": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:1d9eb04551c7629c1c955a83f56c9950af52cf507a960673fbbb71bc53a45d42_amd64", + "product_id": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:1d9eb04551c7629c1c955a83f56c9950af52cf507a960673fbbb71bc53a45d42_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-kubevirt-velero-plugin-rhel8@sha256:1d9eb04551c7629c1c955a83f56c9950af52cf507a960673fbbb71bc53a45d42?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel8&tag=1.1.7-6" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-mustgather-rhel8@sha256:d2ea8cc469b9bc2cb99dc81ef1c8c043ef7d4c320b588f7bf1e221807767a21c_amd64", + "product": { + "name": "oadp/oadp-mustgather-rhel8@sha256:d2ea8cc469b9bc2cb99dc81ef1c8c043ef7d4c320b588f7bf1e221807767a21c_amd64", + "product_id": "oadp/oadp-mustgather-rhel8@sha256:d2ea8cc469b9bc2cb99dc81ef1c8c043ef7d4c320b588f7bf1e221807767a21c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-mustgather-rhel8@sha256:d2ea8cc469b9bc2cb99dc81ef1c8c043ef7d4c320b588f7bf1e221807767a21c?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-mustgather-rhel8&tag=1.1.7-8" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-operator-bundle@sha256:a709259c3a6d923485ed217e9dd74f11c02a32c113f017ebbd8c49d60c83c47b_amd64", + "product": { + "name": "oadp/oadp-operator-bundle@sha256:a709259c3a6d923485ed217e9dd74f11c02a32c113f017ebbd8c49d60c83c47b_amd64", + "product_id": "oadp/oadp-operator-bundle@sha256:a709259c3a6d923485ed217e9dd74f11c02a32c113f017ebbd8c49d60c83c47b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-operator-bundle@sha256:a709259c3a6d923485ed217e9dd74f11c02a32c113f017ebbd8c49d60c83c47b?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-operator-bundle&tag=1.1.7-8" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-rhel8-operator@sha256:bf0607d865944a9011852bcbd92d2f289f4086aba2186331ab4a65c7bd065604_amd64", + "product": { + "name": "oadp/oadp-rhel8-operator@sha256:bf0607d865944a9011852bcbd92d2f289f4086aba2186331ab4a65c7bd065604_amd64", + "product_id": "oadp/oadp-rhel8-operator@sha256:bf0607d865944a9011852bcbd92d2f289f4086aba2186331ab4a65c7bd065604_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-rhel8-operator@sha256:bf0607d865944a9011852bcbd92d2f289f4086aba2186331ab4a65c7bd065604?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-rhel8-operator&tag=1.1.7-7" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-rhel8@sha256:f1d013a16cc4ef007406323214d6e72b2a09ce9f38326df50497a2425e3a66b2_amd64", + "product": { + "name": "oadp/oadp-velero-rhel8@sha256:f1d013a16cc4ef007406323214d6e72b2a09ce9f38326df50497a2425e3a66b2_amd64", + "product_id": "oadp/oadp-velero-rhel8@sha256:f1d013a16cc4ef007406323214d6e72b2a09ce9f38326df50497a2425e3a66b2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-rhel8@sha256:f1d013a16cc4ef007406323214d6e72b2a09ce9f38326df50497a2425e3a66b2?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-velero-rhel8&tag=1.1.7-6" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-rhel8@sha256:569d29f6abf7e47afa87dc786028dd1b3b25c703f03bb72f0cdb56fa9fd8322e_amd64", + "product": { + "name": "oadp/oadp-velero-plugin-rhel8@sha256:569d29f6abf7e47afa87dc786028dd1b3b25c703f03bb72f0cdb56fa9fd8322e_amd64", + "product_id": "oadp/oadp-velero-plugin-rhel8@sha256:569d29f6abf7e47afa87dc786028dd1b3b25c703f03bb72f0cdb56fa9fd8322e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-rhel8@sha256:569d29f6abf7e47afa87dc786028dd1b3b25c703f03bb72f0cdb56fa9fd8322e?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-rhel8&tag=1.1.7-6" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:9bc0630106402a86da33e4a21c5d64c6379125f6a446519f5a659ba1ed110b76_amd64", + "product": { + "name": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:9bc0630106402a86da33e4a21c5d64c6379125f6a446519f5a659ba1ed110b76_amd64", + "product_id": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:9bc0630106402a86da33e4a21c5d64c6379125f6a446519f5a659ba1ed110b76_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-aws-rhel8@sha256:9bc0630106402a86da33e4a21c5d64c6379125f6a446519f5a659ba1ed110b76?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel8&tag=1.1.7-6" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:57e64b3f70a5d06d68b2dfa3dfd329474ee39354e1ff3730742ae5869ffe9242_amd64", + "product": { + "name": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:57e64b3f70a5d06d68b2dfa3dfd329474ee39354e1ff3730742ae5869ffe9242_amd64", + "product_id": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:57e64b3f70a5d06d68b2dfa3dfd329474ee39354e1ff3730742ae5869ffe9242_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-csi-rhel8@sha256:57e64b3f70a5d06d68b2dfa3dfd329474ee39354e1ff3730742ae5869ffe9242?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-csi-rhel8&tag=1.1.7-6" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:4a509a9562f941a6eb85e29db424080204172cfcee21b2cbbe066efb5c60198c_amd64", + "product": { + "name": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:4a509a9562f941a6eb85e29db424080204172cfcee21b2cbbe066efb5c60198c_amd64", + "product_id": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:4a509a9562f941a6eb85e29db424080204172cfcee21b2cbbe066efb5c60198c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-gcp-rhel8@sha256:4a509a9562f941a6eb85e29db424080204172cfcee21b2cbbe066efb5c60198c?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel8&tag=1.1.7-6" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:7bc516a3dc31d5675989c253dfc5d4f5b6e5675ed0dcd99aeabcf45748cfb82a_amd64", + "product": { + "name": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:7bc516a3dc31d5675989c253dfc5d4f5b6e5675ed0dcd99aeabcf45748cfb82a_amd64", + "product_id": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:7bc516a3dc31d5675989c253dfc5d4f5b6e5675ed0dcd99aeabcf45748cfb82a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:7bc516a3dc31d5675989c253dfc5d4f5b6e5675ed0dcd99aeabcf45748cfb82a?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel8&tag=1.1.7-6" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:2ced4f24ae6649bdeda3d075841b77c2171193e882c5559ec1d6f3cad6f94a8b_amd64", + "product": { + "name": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:2ced4f24ae6649bdeda3d075841b77c2171193e882c5559ec1d6f3cad6f94a8b_amd64", + "product_id": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:2ced4f24ae6649bdeda3d075841b77c2171193e882c5559ec1d6f3cad6f94a8b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-restic-restore-helper-rhel8@sha256:2ced4f24ae6649bdeda3d075841b77c2171193e882c5559ec1d6f3cad6f94a8b?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-velero-restic-restore-helper-rhel8&tag=1.1.7-6" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:0e4b9f532f0ae2242b50ce34be7b7f5df6986c19ff126198a7b6aca4f8661d4a_amd64", + "product": { + "name": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:0e4b9f532f0ae2242b50ce34be7b7f5df6986c19ff126198a7b6aca4f8661d4a_amd64", + "product_id": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:0e4b9f532f0ae2242b50ce34be7b7f5df6986c19ff126198a7b6aca4f8661d4a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-volume-snapshot-mover-rhel8@sha256:0e4b9f532f0ae2242b50ce34be7b7f5df6986c19ff126198a7b6aca4f8661d4a?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-volume-snapshot-mover-rhel8&tag=1.1.7-6" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:a107558ebc95b2d1c57a3571491bbf6ec88921ca8e6e45419dbec9bf47d505b9_ppc64le", + "product": { + "name": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:a107558ebc95b2d1c57a3571491bbf6ec88921ca8e6e45419dbec9bf47d505b9_ppc64le", + "product_id": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:a107558ebc95b2d1c57a3571491bbf6ec88921ca8e6e45419dbec9bf47d505b9_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-kubevirt-velero-plugin-rhel8@sha256:a107558ebc95b2d1c57a3571491bbf6ec88921ca8e6e45419dbec9bf47d505b9?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel8&tag=1.1.7-6" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-mustgather-rhel8@sha256:f4db0cbe93b098c3e73e65bf83cdd73214e6eb9894a5d1d42d0f5fd58162a750_ppc64le", + "product": { + "name": "oadp/oadp-mustgather-rhel8@sha256:f4db0cbe93b098c3e73e65bf83cdd73214e6eb9894a5d1d42d0f5fd58162a750_ppc64le", + "product_id": "oadp/oadp-mustgather-rhel8@sha256:f4db0cbe93b098c3e73e65bf83cdd73214e6eb9894a5d1d42d0f5fd58162a750_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-mustgather-rhel8@sha256:f4db0cbe93b098c3e73e65bf83cdd73214e6eb9894a5d1d42d0f5fd58162a750?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-mustgather-rhel8&tag=1.1.7-8" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-operator-bundle@sha256:7381cf4462e525945055a1b2b0bf168d469d2bd3f67bb10f6c8cb13e58fa9569_ppc64le", + "product": { + "name": "oadp/oadp-operator-bundle@sha256:7381cf4462e525945055a1b2b0bf168d469d2bd3f67bb10f6c8cb13e58fa9569_ppc64le", + "product_id": "oadp/oadp-operator-bundle@sha256:7381cf4462e525945055a1b2b0bf168d469d2bd3f67bb10f6c8cb13e58fa9569_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-operator-bundle@sha256:7381cf4462e525945055a1b2b0bf168d469d2bd3f67bb10f6c8cb13e58fa9569?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-operator-bundle&tag=1.1.7-8" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-rhel8-operator@sha256:0f7a9f47f67af388ebebb7ef28a775857ac37d35e234ee228a4ea25bfc64c3e3_ppc64le", + "product": { + "name": "oadp/oadp-rhel8-operator@sha256:0f7a9f47f67af388ebebb7ef28a775857ac37d35e234ee228a4ea25bfc64c3e3_ppc64le", + "product_id": "oadp/oadp-rhel8-operator@sha256:0f7a9f47f67af388ebebb7ef28a775857ac37d35e234ee228a4ea25bfc64c3e3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-rhel8-operator@sha256:0f7a9f47f67af388ebebb7ef28a775857ac37d35e234ee228a4ea25bfc64c3e3?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-rhel8-operator&tag=1.1.7-7" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-rhel8@sha256:12379906744bbe5df4574415a81fa2a2d79e42317cf72c168e5ee05380d2c412_ppc64le", + "product": { + "name": "oadp/oadp-velero-rhel8@sha256:12379906744bbe5df4574415a81fa2a2d79e42317cf72c168e5ee05380d2c412_ppc64le", + "product_id": "oadp/oadp-velero-rhel8@sha256:12379906744bbe5df4574415a81fa2a2d79e42317cf72c168e5ee05380d2c412_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-rhel8@sha256:12379906744bbe5df4574415a81fa2a2d79e42317cf72c168e5ee05380d2c412?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-velero-rhel8&tag=1.1.7-6" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-rhel8@sha256:c2e022362052875f262fc082268fe1093d1a7a60aa51479b05346f5fc857864c_ppc64le", + "product": { + "name": "oadp/oadp-velero-plugin-rhel8@sha256:c2e022362052875f262fc082268fe1093d1a7a60aa51479b05346f5fc857864c_ppc64le", + "product_id": "oadp/oadp-velero-plugin-rhel8@sha256:c2e022362052875f262fc082268fe1093d1a7a60aa51479b05346f5fc857864c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-rhel8@sha256:c2e022362052875f262fc082268fe1093d1a7a60aa51479b05346f5fc857864c?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-rhel8&tag=1.1.7-6" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:ec6dd5b1b4a9382b86ae970240e25f11a4eb8e2ba42a2f6f727a984cf79f0cdb_ppc64le", + "product": { + "name": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:ec6dd5b1b4a9382b86ae970240e25f11a4eb8e2ba42a2f6f727a984cf79f0cdb_ppc64le", + "product_id": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:ec6dd5b1b4a9382b86ae970240e25f11a4eb8e2ba42a2f6f727a984cf79f0cdb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-aws-rhel8@sha256:ec6dd5b1b4a9382b86ae970240e25f11a4eb8e2ba42a2f6f727a984cf79f0cdb?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel8&tag=1.1.7-6" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:9535d60aeca08fbcb35f5ddecc455fbf8fd240b185b0359fcf15db088beed93b_ppc64le", + "product": { + "name": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:9535d60aeca08fbcb35f5ddecc455fbf8fd240b185b0359fcf15db088beed93b_ppc64le", + "product_id": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:9535d60aeca08fbcb35f5ddecc455fbf8fd240b185b0359fcf15db088beed93b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-csi-rhel8@sha256:9535d60aeca08fbcb35f5ddecc455fbf8fd240b185b0359fcf15db088beed93b?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-csi-rhel8&tag=1.1.7-6" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:c8e99a08d99db02bb8a5f3fde5ff77108b4699fa710c12b257e411e1f3014f7b_ppc64le", + "product": { + "name": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:c8e99a08d99db02bb8a5f3fde5ff77108b4699fa710c12b257e411e1f3014f7b_ppc64le", + "product_id": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:c8e99a08d99db02bb8a5f3fde5ff77108b4699fa710c12b257e411e1f3014f7b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-gcp-rhel8@sha256:c8e99a08d99db02bb8a5f3fde5ff77108b4699fa710c12b257e411e1f3014f7b?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel8&tag=1.1.7-6" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:209ccbbf81de2154f620e3dc690a053d7110bc805fc148cff668bcab43674894_ppc64le", + "product": { + "name": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:209ccbbf81de2154f620e3dc690a053d7110bc805fc148cff668bcab43674894_ppc64le", + "product_id": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:209ccbbf81de2154f620e3dc690a053d7110bc805fc148cff668bcab43674894_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:209ccbbf81de2154f620e3dc690a053d7110bc805fc148cff668bcab43674894?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel8&tag=1.1.7-6" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:27b11e8db2a414fdbc1cf7d0844db973f3f23c2d47af1c6890f42b1e7627efda_ppc64le", + "product": { + "name": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:27b11e8db2a414fdbc1cf7d0844db973f3f23c2d47af1c6890f42b1e7627efda_ppc64le", + "product_id": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:27b11e8db2a414fdbc1cf7d0844db973f3f23c2d47af1c6890f42b1e7627efda_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-restic-restore-helper-rhel8@sha256:27b11e8db2a414fdbc1cf7d0844db973f3f23c2d47af1c6890f42b1e7627efda?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-velero-restic-restore-helper-rhel8&tag=1.1.7-6" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:8abfd51f73690022c8e646ffe9a30f8b8e135c56eb67348a4bc0c2cfedbea29c_ppc64le", + "product": { + "name": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:8abfd51f73690022c8e646ffe9a30f8b8e135c56eb67348a4bc0c2cfedbea29c_ppc64le", + "product_id": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:8abfd51f73690022c8e646ffe9a30f8b8e135c56eb67348a4bc0c2cfedbea29c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-volume-snapshot-mover-rhel8@sha256:8abfd51f73690022c8e646ffe9a30f8b8e135c56eb67348a4bc0c2cfedbea29c?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-volume-snapshot-mover-rhel8&tag=1.1.7-6" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:d79146d04177eda5ccc777815932fda586542cf53e88d2069b980d14a3bccfa8_arm64", + "product": { + "name": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:d79146d04177eda5ccc777815932fda586542cf53e88d2069b980d14a3bccfa8_arm64", + "product_id": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:d79146d04177eda5ccc777815932fda586542cf53e88d2069b980d14a3bccfa8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-kubevirt-velero-plugin-rhel8@sha256:d79146d04177eda5ccc777815932fda586542cf53e88d2069b980d14a3bccfa8?arch=arm64&repository_url=registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-mustgather-rhel8@sha256:4410001b038f57f2b53a0aa8a7187db960410a3e6091b4923c0b1924d3ce2592_arm64", + "product": { + "name": "oadp/oadp-mustgather-rhel8@sha256:4410001b038f57f2b53a0aa8a7187db960410a3e6091b4923c0b1924d3ce2592_arm64", + "product_id": "oadp/oadp-mustgather-rhel8@sha256:4410001b038f57f2b53a0aa8a7187db960410a3e6091b4923c0b1924d3ce2592_arm64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-mustgather-rhel8@sha256:4410001b038f57f2b53a0aa8a7187db960410a3e6091b4923c0b1924d3ce2592?arch=arm64&repository_url=registry.redhat.io/oadp/oadp-mustgather-rhel8&tag=1.2.3-7" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-operator-bundle@sha256:dea1e97ee88949b9692f2077f4769b214031366f72f392cd89f85c0c7dcfffd2_arm64", + "product": { + "name": "oadp/oadp-operator-bundle@sha256:dea1e97ee88949b9692f2077f4769b214031366f72f392cd89f85c0c7dcfffd2_arm64", + "product_id": "oadp/oadp-operator-bundle@sha256:dea1e97ee88949b9692f2077f4769b214031366f72f392cd89f85c0c7dcfffd2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-operator-bundle@sha256:dea1e97ee88949b9692f2077f4769b214031366f72f392cd89f85c0c7dcfffd2?arch=arm64&repository_url=registry.redhat.io/oadp/oadp-operator-bundle&tag=1.2.3-5" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-rhel8-operator@sha256:4628ec389b445fae40227657c9b1b6330fae7a9a76cf80798c4c7f74181050f9_arm64", + "product": { + "name": "oadp/oadp-rhel8-operator@sha256:4628ec389b445fae40227657c9b1b6330fae7a9a76cf80798c4c7f74181050f9_arm64", + "product_id": "oadp/oadp-rhel8-operator@sha256:4628ec389b445fae40227657c9b1b6330fae7a9a76cf80798c4c7f74181050f9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-rhel8-operator@sha256:4628ec389b445fae40227657c9b1b6330fae7a9a76cf80798c4c7f74181050f9?arch=arm64&repository_url=registry.redhat.io/oadp/oadp-rhel8-operator&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-rhel8@sha256:e2e8e59932a0b8db365458347161fdd0589c2a533d3eb9b68330b7d3c64af363_arm64", + "product": { + "name": "oadp/oadp-velero-rhel8@sha256:e2e8e59932a0b8db365458347161fdd0589c2a533d3eb9b68330b7d3c64af363_arm64", + "product_id": "oadp/oadp-velero-rhel8@sha256:e2e8e59932a0b8db365458347161fdd0589c2a533d3eb9b68330b7d3c64af363_arm64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-rhel8@sha256:e2e8e59932a0b8db365458347161fdd0589c2a533d3eb9b68330b7d3c64af363?arch=arm64&repository_url=registry.redhat.io/oadp/oadp-velero-rhel8&tag=1.2.3-5" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-rhel8@sha256:9615a84312443cd9b090d51f6dd132b526e58b962c00ac8475a41ad764fa35a0_arm64", + "product": { + "name": "oadp/oadp-velero-plugin-rhel8@sha256:9615a84312443cd9b090d51f6dd132b526e58b962c00ac8475a41ad764fa35a0_arm64", + "product_id": "oadp/oadp-velero-plugin-rhel8@sha256:9615a84312443cd9b090d51f6dd132b526e58b962c00ac8475a41ad764fa35a0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-rhel8@sha256:9615a84312443cd9b090d51f6dd132b526e58b962c00ac8475a41ad764fa35a0?arch=arm64&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:a2118e62fcd7dfe8e65b0b1e9df909da3a6317137d2097f4c4ac335c80aefdfc_arm64", + "product": { + "name": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:a2118e62fcd7dfe8e65b0b1e9df909da3a6317137d2097f4c4ac335c80aefdfc_arm64", + "product_id": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:a2118e62fcd7dfe8e65b0b1e9df909da3a6317137d2097f4c4ac335c80aefdfc_arm64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-aws-rhel8@sha256:a2118e62fcd7dfe8e65b0b1e9df909da3a6317137d2097f4c4ac335c80aefdfc?arch=arm64&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:d5e564b3d10e44ae21a66f1cbe877b23f55ab397328f4bd168fb4340bbb1569d_arm64", + "product": { + "name": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:d5e564b3d10e44ae21a66f1cbe877b23f55ab397328f4bd168fb4340bbb1569d_arm64", + "product_id": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:d5e564b3d10e44ae21a66f1cbe877b23f55ab397328f4bd168fb4340bbb1569d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-csi-rhel8@sha256:d5e564b3d10e44ae21a66f1cbe877b23f55ab397328f4bd168fb4340bbb1569d?arch=arm64&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-csi-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:09426f08a141993d299b940acf33c1065deba4f6bdf9d93db2496cdb043d2f8d_arm64", + "product": { + "name": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:09426f08a141993d299b940acf33c1065deba4f6bdf9d93db2496cdb043d2f8d_arm64", + "product_id": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:09426f08a141993d299b940acf33c1065deba4f6bdf9d93db2496cdb043d2f8d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-gcp-rhel8@sha256:09426f08a141993d299b940acf33c1065deba4f6bdf9d93db2496cdb043d2f8d?arch=arm64&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:934290eeb999c5cbf67ff7d306299cc1c54db613e148cea14489db94ca0c3295_arm64", + "product": { + "name": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:934290eeb999c5cbf67ff7d306299cc1c54db613e148cea14489db94ca0c3295_arm64", + "product_id": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:934290eeb999c5cbf67ff7d306299cc1c54db613e148cea14489db94ca0c3295_arm64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:934290eeb999c5cbf67ff7d306299cc1c54db613e148cea14489db94ca0c3295?arch=arm64&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-vsm-rhel8@sha256:a7faed6579c5d1f8ff56f18889abd458e6c359a1fd038b86d6bb078cecc3d990_arm64", + "product": { + "name": "oadp/oadp-velero-plugin-for-vsm-rhel8@sha256:a7faed6579c5d1f8ff56f18889abd458e6c359a1fd038b86d6bb078cecc3d990_arm64", + "product_id": "oadp/oadp-velero-plugin-for-vsm-rhel8@sha256:a7faed6579c5d1f8ff56f18889abd458e6c359a1fd038b86d6bb078cecc3d990_arm64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-vsm-rhel8@sha256:a7faed6579c5d1f8ff56f18889abd458e6c359a1fd038b86d6bb078cecc3d990?arch=arm64&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-vsm-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:c34c2a171210bc35bef35c783e9d3989e9426ec00e87c3040c5e5de808e1e90e_arm64", + "product": { + "name": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:c34c2a171210bc35bef35c783e9d3989e9426ec00e87c3040c5e5de808e1e90e_arm64", + "product_id": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:c34c2a171210bc35bef35c783e9d3989e9426ec00e87c3040c5e5de808e1e90e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-restic-restore-helper-rhel8@sha256:c34c2a171210bc35bef35c783e9d3989e9426ec00e87c3040c5e5de808e1e90e?arch=arm64&repository_url=registry.redhat.io/oadp/oadp-velero-restic-restore-helper-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:80a01ef4f6e44980e755f6939dc00252bd7274c9d13792dfa80f15423806f277_arm64", + "product": { + "name": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:80a01ef4f6e44980e755f6939dc00252bd7274c9d13792dfa80f15423806f277_arm64", + "product_id": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:80a01ef4f6e44980e755f6939dc00252bd7274c9d13792dfa80f15423806f277_arm64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-volume-snapshot-mover-rhel8@sha256:80a01ef4f6e44980e755f6939dc00252bd7274c9d13792dfa80f15423806f277?arch=arm64&repository_url=registry.redhat.io/oadp/oadp-volume-snapshot-mover-rhel8&tag=1.2.3-4" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:e2cecef9337f9aba8285a8d917e5cf75e24d93d44197578f93a497eed309d94a_s390x", + "product": { + "name": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:e2cecef9337f9aba8285a8d917e5cf75e24d93d44197578f93a497eed309d94a_s390x", + "product_id": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:e2cecef9337f9aba8285a8d917e5cf75e24d93d44197578f93a497eed309d94a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-kubevirt-velero-plugin-rhel8@sha256:e2cecef9337f9aba8285a8d917e5cf75e24d93d44197578f93a497eed309d94a?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-mustgather-rhel8@sha256:5220e6df18cb18dc2d566bae6b49ced636d9627a111f7bb042ebab3eb0372754_s390x", + "product": { + "name": "oadp/oadp-mustgather-rhel8@sha256:5220e6df18cb18dc2d566bae6b49ced636d9627a111f7bb042ebab3eb0372754_s390x", + "product_id": "oadp/oadp-mustgather-rhel8@sha256:5220e6df18cb18dc2d566bae6b49ced636d9627a111f7bb042ebab3eb0372754_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-mustgather-rhel8@sha256:5220e6df18cb18dc2d566bae6b49ced636d9627a111f7bb042ebab3eb0372754?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-mustgather-rhel8&tag=1.2.3-7" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-operator-bundle@sha256:912b4769343594442f2eee159d52a61ff72a559628b57002cc9fedf7fab7d992_s390x", + "product": { + "name": "oadp/oadp-operator-bundle@sha256:912b4769343594442f2eee159d52a61ff72a559628b57002cc9fedf7fab7d992_s390x", + "product_id": "oadp/oadp-operator-bundle@sha256:912b4769343594442f2eee159d52a61ff72a559628b57002cc9fedf7fab7d992_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-operator-bundle@sha256:912b4769343594442f2eee159d52a61ff72a559628b57002cc9fedf7fab7d992?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-operator-bundle&tag=1.2.3-5" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-rhel8-operator@sha256:f1ca2345c320ccef8c1336e2b4caba0c97e6d455e9f1c70cfb921b07d26e9024_s390x", + "product": { + "name": "oadp/oadp-rhel8-operator@sha256:f1ca2345c320ccef8c1336e2b4caba0c97e6d455e9f1c70cfb921b07d26e9024_s390x", + "product_id": "oadp/oadp-rhel8-operator@sha256:f1ca2345c320ccef8c1336e2b4caba0c97e6d455e9f1c70cfb921b07d26e9024_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-rhel8-operator@sha256:f1ca2345c320ccef8c1336e2b4caba0c97e6d455e9f1c70cfb921b07d26e9024?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-rhel8-operator&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-rhel8@sha256:3d842994b0247323a38ff8c8fe943033e63b05bdc91ae17f222847e0ac11c353_s390x", + "product": { + "name": "oadp/oadp-velero-rhel8@sha256:3d842994b0247323a38ff8c8fe943033e63b05bdc91ae17f222847e0ac11c353_s390x", + "product_id": "oadp/oadp-velero-rhel8@sha256:3d842994b0247323a38ff8c8fe943033e63b05bdc91ae17f222847e0ac11c353_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-rhel8@sha256:3d842994b0247323a38ff8c8fe943033e63b05bdc91ae17f222847e0ac11c353?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-velero-rhel8&tag=1.2.3-5" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-rhel8@sha256:ea6fe5af28e3c79f2545b46c1639ae5e54e3845a5df2624955a7339511982479_s390x", + "product": { + "name": "oadp/oadp-velero-plugin-rhel8@sha256:ea6fe5af28e3c79f2545b46c1639ae5e54e3845a5df2624955a7339511982479_s390x", + "product_id": "oadp/oadp-velero-plugin-rhel8@sha256:ea6fe5af28e3c79f2545b46c1639ae5e54e3845a5df2624955a7339511982479_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-rhel8@sha256:ea6fe5af28e3c79f2545b46c1639ae5e54e3845a5df2624955a7339511982479?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:6876a1fbf67f9b91ef0cd8442ed56a2b3be79daca4f30ab583c4e95b6179b935_s390x", + "product": { + "name": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:6876a1fbf67f9b91ef0cd8442ed56a2b3be79daca4f30ab583c4e95b6179b935_s390x", + "product_id": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:6876a1fbf67f9b91ef0cd8442ed56a2b3be79daca4f30ab583c4e95b6179b935_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-aws-rhel8@sha256:6876a1fbf67f9b91ef0cd8442ed56a2b3be79daca4f30ab583c4e95b6179b935?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:8ad05b4f05a94234566276f923ac3ef40ecc17d9e4d05821851b20e381d57bae_s390x", + "product": { + "name": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:8ad05b4f05a94234566276f923ac3ef40ecc17d9e4d05821851b20e381d57bae_s390x", + "product_id": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:8ad05b4f05a94234566276f923ac3ef40ecc17d9e4d05821851b20e381d57bae_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-csi-rhel8@sha256:8ad05b4f05a94234566276f923ac3ef40ecc17d9e4d05821851b20e381d57bae?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-csi-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:3613dc6e2c0b94095d30deae7009f05245f55b01b8caea791d99f8492d751b96_s390x", + "product": { + "name": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:3613dc6e2c0b94095d30deae7009f05245f55b01b8caea791d99f8492d751b96_s390x", + "product_id": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:3613dc6e2c0b94095d30deae7009f05245f55b01b8caea791d99f8492d751b96_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-gcp-rhel8@sha256:3613dc6e2c0b94095d30deae7009f05245f55b01b8caea791d99f8492d751b96?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:44861c3facde9c65e656ae68a8ec6c8871252d6d7e585c37743f0625e4ca7d45_s390x", + "product": { + "name": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:44861c3facde9c65e656ae68a8ec6c8871252d6d7e585c37743f0625e4ca7d45_s390x", + "product_id": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:44861c3facde9c65e656ae68a8ec6c8871252d6d7e585c37743f0625e4ca7d45_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:44861c3facde9c65e656ae68a8ec6c8871252d6d7e585c37743f0625e4ca7d45?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-vsm-rhel8@sha256:871dbeefc4f519a91948a3ab7c2e2fddc4d3f69d18a84a1a18856e0ac291eccb_s390x", + "product": { + "name": "oadp/oadp-velero-plugin-for-vsm-rhel8@sha256:871dbeefc4f519a91948a3ab7c2e2fddc4d3f69d18a84a1a18856e0ac291eccb_s390x", + "product_id": "oadp/oadp-velero-plugin-for-vsm-rhel8@sha256:871dbeefc4f519a91948a3ab7c2e2fddc4d3f69d18a84a1a18856e0ac291eccb_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-vsm-rhel8@sha256:871dbeefc4f519a91948a3ab7c2e2fddc4d3f69d18a84a1a18856e0ac291eccb?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-vsm-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:982c9120f45add7a8832505823da117a054a79913f0c2811efde3b0349f5a79e_s390x", + "product": { + "name": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:982c9120f45add7a8832505823da117a054a79913f0c2811efde3b0349f5a79e_s390x", + "product_id": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:982c9120f45add7a8832505823da117a054a79913f0c2811efde3b0349f5a79e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-restic-restore-helper-rhel8@sha256:982c9120f45add7a8832505823da117a054a79913f0c2811efde3b0349f5a79e?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-velero-restic-restore-helper-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:4a519c0df406c04c1b03a3a88ed075fb6815f0d43fe5d364f006aaf25074c12b_s390x", + "product": { + "name": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:4a519c0df406c04c1b03a3a88ed075fb6815f0d43fe5d364f006aaf25074c12b_s390x", + "product_id": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:4a519c0df406c04c1b03a3a88ed075fb6815f0d43fe5d364f006aaf25074c12b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/oadp-volume-snapshot-mover-rhel8@sha256:4a519c0df406c04c1b03a3a88ed075fb6815f0d43fe5d364f006aaf25074c12b?arch=s390x&repository_url=registry.redhat.io/oadp/oadp-volume-snapshot-mover-rhel8&tag=1.2.3-4" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:1eba8b3a26d43f2946391817f37cdd8c64415f65108acdfeba66ef9cfebcf0e0_amd64", + "product": { + "name": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:1eba8b3a26d43f2946391817f37cdd8c64415f65108acdfeba66ef9cfebcf0e0_amd64", + "product_id": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:1eba8b3a26d43f2946391817f37cdd8c64415f65108acdfeba66ef9cfebcf0e0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-kubevirt-velero-plugin-rhel8@sha256:1eba8b3a26d43f2946391817f37cdd8c64415f65108acdfeba66ef9cfebcf0e0?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-mustgather-rhel8@sha256:7d66d863ae6c46e1701ed0c55a7ebd5eaba3d0a330fed5dcbdde5d5f0c5c889d_amd64", + "product": { + "name": "oadp/oadp-mustgather-rhel8@sha256:7d66d863ae6c46e1701ed0c55a7ebd5eaba3d0a330fed5dcbdde5d5f0c5c889d_amd64", + "product_id": "oadp/oadp-mustgather-rhel8@sha256:7d66d863ae6c46e1701ed0c55a7ebd5eaba3d0a330fed5dcbdde5d5f0c5c889d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-mustgather-rhel8@sha256:7d66d863ae6c46e1701ed0c55a7ebd5eaba3d0a330fed5dcbdde5d5f0c5c889d?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-mustgather-rhel8&tag=1.2.3-7" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-operator-bundle@sha256:22d1ac29ae9c3b35e4f850cf26cdcbdf61d5630a1a9aeed079c2dc8f46bb7434_amd64", + "product": { + "name": "oadp/oadp-operator-bundle@sha256:22d1ac29ae9c3b35e4f850cf26cdcbdf61d5630a1a9aeed079c2dc8f46bb7434_amd64", + "product_id": "oadp/oadp-operator-bundle@sha256:22d1ac29ae9c3b35e4f850cf26cdcbdf61d5630a1a9aeed079c2dc8f46bb7434_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-operator-bundle@sha256:22d1ac29ae9c3b35e4f850cf26cdcbdf61d5630a1a9aeed079c2dc8f46bb7434?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-operator-bundle&tag=1.2.3-5" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-rhel8-operator@sha256:d610d59b4d11ca019611a80ff929cea304a333c78ae8339a8c24628daa97ccdb_amd64", + "product": { + "name": "oadp/oadp-rhel8-operator@sha256:d610d59b4d11ca019611a80ff929cea304a333c78ae8339a8c24628daa97ccdb_amd64", + "product_id": "oadp/oadp-rhel8-operator@sha256:d610d59b4d11ca019611a80ff929cea304a333c78ae8339a8c24628daa97ccdb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-rhel8-operator@sha256:d610d59b4d11ca019611a80ff929cea304a333c78ae8339a8c24628daa97ccdb?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-rhel8-operator&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-rhel8@sha256:f44e0b13bbfeb73b64f9e7407a81c4ca0bbe783442dd0d29abb12e02e1bd7b8f_amd64", + "product": { + "name": "oadp/oadp-velero-rhel8@sha256:f44e0b13bbfeb73b64f9e7407a81c4ca0bbe783442dd0d29abb12e02e1bd7b8f_amd64", + "product_id": "oadp/oadp-velero-rhel8@sha256:f44e0b13bbfeb73b64f9e7407a81c4ca0bbe783442dd0d29abb12e02e1bd7b8f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-rhel8@sha256:f44e0b13bbfeb73b64f9e7407a81c4ca0bbe783442dd0d29abb12e02e1bd7b8f?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-velero-rhel8&tag=1.2.3-5" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-rhel8@sha256:017ae58a715980dfc2b32aa9d1865a7786991ab86a8c17880d142d43fe5188dd_amd64", + "product": { + "name": "oadp/oadp-velero-plugin-rhel8@sha256:017ae58a715980dfc2b32aa9d1865a7786991ab86a8c17880d142d43fe5188dd_amd64", + "product_id": "oadp/oadp-velero-plugin-rhel8@sha256:017ae58a715980dfc2b32aa9d1865a7786991ab86a8c17880d142d43fe5188dd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-rhel8@sha256:017ae58a715980dfc2b32aa9d1865a7786991ab86a8c17880d142d43fe5188dd?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:81072079708e5808b6a73d8ad9fa6838680a90565a64eed263dfac62eb074f32_amd64", + "product": { + "name": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:81072079708e5808b6a73d8ad9fa6838680a90565a64eed263dfac62eb074f32_amd64", + "product_id": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:81072079708e5808b6a73d8ad9fa6838680a90565a64eed263dfac62eb074f32_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-aws-rhel8@sha256:81072079708e5808b6a73d8ad9fa6838680a90565a64eed263dfac62eb074f32?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:166cc137856090465797a03844a1ce0c7c5b315917264d1a3c570ff8630c097f_amd64", + "product": { + "name": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:166cc137856090465797a03844a1ce0c7c5b315917264d1a3c570ff8630c097f_amd64", + "product_id": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:166cc137856090465797a03844a1ce0c7c5b315917264d1a3c570ff8630c097f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-csi-rhel8@sha256:166cc137856090465797a03844a1ce0c7c5b315917264d1a3c570ff8630c097f?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-csi-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:31e7cdd4e0965814bfa1a5e07047e3b7ed4953c11bdd0b5adadf493d9b54b534_amd64", + "product": { + "name": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:31e7cdd4e0965814bfa1a5e07047e3b7ed4953c11bdd0b5adadf493d9b54b534_amd64", + "product_id": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:31e7cdd4e0965814bfa1a5e07047e3b7ed4953c11bdd0b5adadf493d9b54b534_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-gcp-rhel8@sha256:31e7cdd4e0965814bfa1a5e07047e3b7ed4953c11bdd0b5adadf493d9b54b534?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:d75d79f906c5385cfd85777780eb85a1750b76b09125d5d6bbb963f8e160ebe2_amd64", + "product": { + "name": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:d75d79f906c5385cfd85777780eb85a1750b76b09125d5d6bbb963f8e160ebe2_amd64", + "product_id": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:d75d79f906c5385cfd85777780eb85a1750b76b09125d5d6bbb963f8e160ebe2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:d75d79f906c5385cfd85777780eb85a1750b76b09125d5d6bbb963f8e160ebe2?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-vsm-rhel8@sha256:7131005d74a60827511929b9a029b1e1b16284fd90d19e8fdf626fad02d65a45_amd64", + "product": { + "name": "oadp/oadp-velero-plugin-for-vsm-rhel8@sha256:7131005d74a60827511929b9a029b1e1b16284fd90d19e8fdf626fad02d65a45_amd64", + "product_id": "oadp/oadp-velero-plugin-for-vsm-rhel8@sha256:7131005d74a60827511929b9a029b1e1b16284fd90d19e8fdf626fad02d65a45_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-vsm-rhel8@sha256:7131005d74a60827511929b9a029b1e1b16284fd90d19e8fdf626fad02d65a45?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-vsm-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:66fde1bc2e17380cff5503c81cc0b1e4912c310d4c778d7d3b76835fd1aaf45d_amd64", + "product": { + "name": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:66fde1bc2e17380cff5503c81cc0b1e4912c310d4c778d7d3b76835fd1aaf45d_amd64", + "product_id": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:66fde1bc2e17380cff5503c81cc0b1e4912c310d4c778d7d3b76835fd1aaf45d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-restic-restore-helper-rhel8@sha256:66fde1bc2e17380cff5503c81cc0b1e4912c310d4c778d7d3b76835fd1aaf45d?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-velero-restic-restore-helper-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:41726661a3574000106c13ee6d8c24745dfc53775aea3a7a4bc60e45e3f3968b_amd64", + "product": { + "name": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:41726661a3574000106c13ee6d8c24745dfc53775aea3a7a4bc60e45e3f3968b_amd64", + "product_id": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:41726661a3574000106c13ee6d8c24745dfc53775aea3a7a4bc60e45e3f3968b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oadp-volume-snapshot-mover-rhel8@sha256:41726661a3574000106c13ee6d8c24745dfc53775aea3a7a4bc60e45e3f3968b?arch=amd64&repository_url=registry.redhat.io/oadp/oadp-volume-snapshot-mover-rhel8&tag=1.2.3-4" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:d98265aa2ddfe8a051e6e332f450ae4007e5f719eb456b2db582fe095f7cb88a_ppc64le", + "product": { + "name": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:d98265aa2ddfe8a051e6e332f450ae4007e5f719eb456b2db582fe095f7cb88a_ppc64le", + "product_id": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:d98265aa2ddfe8a051e6e332f450ae4007e5f719eb456b2db582fe095f7cb88a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-kubevirt-velero-plugin-rhel8@sha256:d98265aa2ddfe8a051e6e332f450ae4007e5f719eb456b2db582fe095f7cb88a?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-kubevirt-velero-plugin-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-mustgather-rhel8@sha256:e712baa2a2a94afc004397d10fc6f65334dc3a4c547a97ecea5dc96247d28d4f_ppc64le", + "product": { + "name": "oadp/oadp-mustgather-rhel8@sha256:e712baa2a2a94afc004397d10fc6f65334dc3a4c547a97ecea5dc96247d28d4f_ppc64le", + "product_id": "oadp/oadp-mustgather-rhel8@sha256:e712baa2a2a94afc004397d10fc6f65334dc3a4c547a97ecea5dc96247d28d4f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-mustgather-rhel8@sha256:e712baa2a2a94afc004397d10fc6f65334dc3a4c547a97ecea5dc96247d28d4f?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-mustgather-rhel8&tag=1.2.3-7" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-operator-bundle@sha256:42d3bb0d645e427380af3f100307fb1aace330ed107a35961d30e2f3a1ded213_ppc64le", + "product": { + "name": "oadp/oadp-operator-bundle@sha256:42d3bb0d645e427380af3f100307fb1aace330ed107a35961d30e2f3a1ded213_ppc64le", + "product_id": "oadp/oadp-operator-bundle@sha256:42d3bb0d645e427380af3f100307fb1aace330ed107a35961d30e2f3a1ded213_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-operator-bundle@sha256:42d3bb0d645e427380af3f100307fb1aace330ed107a35961d30e2f3a1ded213?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-operator-bundle&tag=1.2.3-5" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-rhel8-operator@sha256:7572bcc6b877c605805601dca3a6daf8c74b4c82defff9d53dd4173abad84e85_ppc64le", + "product": { + "name": "oadp/oadp-rhel8-operator@sha256:7572bcc6b877c605805601dca3a6daf8c74b4c82defff9d53dd4173abad84e85_ppc64le", + "product_id": "oadp/oadp-rhel8-operator@sha256:7572bcc6b877c605805601dca3a6daf8c74b4c82defff9d53dd4173abad84e85_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-rhel8-operator@sha256:7572bcc6b877c605805601dca3a6daf8c74b4c82defff9d53dd4173abad84e85?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-rhel8-operator&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-rhel8@sha256:ee41521bcac4206c966bc054416c92f14c240a1ef488ce4b126a8478d45966cc_ppc64le", + "product": { + "name": "oadp/oadp-velero-rhel8@sha256:ee41521bcac4206c966bc054416c92f14c240a1ef488ce4b126a8478d45966cc_ppc64le", + "product_id": "oadp/oadp-velero-rhel8@sha256:ee41521bcac4206c966bc054416c92f14c240a1ef488ce4b126a8478d45966cc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-rhel8@sha256:ee41521bcac4206c966bc054416c92f14c240a1ef488ce4b126a8478d45966cc?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-velero-rhel8&tag=1.2.3-5" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-rhel8@sha256:a5d985fb6042a03fa996552e43b7734de7f82a05bd69627412ba9350d0a0d318_ppc64le", + "product": { + "name": "oadp/oadp-velero-plugin-rhel8@sha256:a5d985fb6042a03fa996552e43b7734de7f82a05bd69627412ba9350d0a0d318_ppc64le", + "product_id": "oadp/oadp-velero-plugin-rhel8@sha256:a5d985fb6042a03fa996552e43b7734de7f82a05bd69627412ba9350d0a0d318_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-rhel8@sha256:a5d985fb6042a03fa996552e43b7734de7f82a05bd69627412ba9350d0a0d318?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:64777c17edf16c46a0519a6a3a479e2004da580f5f1b9987d3464894cdc3d621_ppc64le", + "product": { + "name": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:64777c17edf16c46a0519a6a3a479e2004da580f5f1b9987d3464894cdc3d621_ppc64le", + "product_id": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:64777c17edf16c46a0519a6a3a479e2004da580f5f1b9987d3464894cdc3d621_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-aws-rhel8@sha256:64777c17edf16c46a0519a6a3a479e2004da580f5f1b9987d3464894cdc3d621?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-aws-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:fbc5a4985c0cdf01f6b4aa0d2c9e516f7da8f6a5a6e5e795076e3f710333bb67_ppc64le", + "product": { + "name": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:fbc5a4985c0cdf01f6b4aa0d2c9e516f7da8f6a5a6e5e795076e3f710333bb67_ppc64le", + "product_id": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:fbc5a4985c0cdf01f6b4aa0d2c9e516f7da8f6a5a6e5e795076e3f710333bb67_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-csi-rhel8@sha256:fbc5a4985c0cdf01f6b4aa0d2c9e516f7da8f6a5a6e5e795076e3f710333bb67?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-csi-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:da7601aa767656db6edea1eac57f8a891eebbf74155c395b569e2d4ff5d81269_ppc64le", + "product": { + "name": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:da7601aa767656db6edea1eac57f8a891eebbf74155c395b569e2d4ff5d81269_ppc64le", + "product_id": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:da7601aa767656db6edea1eac57f8a891eebbf74155c395b569e2d4ff5d81269_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-gcp-rhel8@sha256:da7601aa767656db6edea1eac57f8a891eebbf74155c395b569e2d4ff5d81269?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-gcp-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:782f4fdab3ad3507e50ad2d77bc3517c3eb74670909ffbea0a0b913c895c69f5_ppc64le", + "product": { + "name": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:782f4fdab3ad3507e50ad2d77bc3517c3eb74670909ffbea0a0b913c895c69f5_ppc64le", + "product_id": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:782f4fdab3ad3507e50ad2d77bc3517c3eb74670909ffbea0a0b913c895c69f5_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:782f4fdab3ad3507e50ad2d77bc3517c3eb74670909ffbea0a0b913c895c69f5?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-microsoft-azure-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-plugin-for-vsm-rhel8@sha256:c29da97ce94aff1b538072d27d58ed65a2db5caf5f079f837c949fa866b53eaa_ppc64le", + "product": { + "name": "oadp/oadp-velero-plugin-for-vsm-rhel8@sha256:c29da97ce94aff1b538072d27d58ed65a2db5caf5f079f837c949fa866b53eaa_ppc64le", + "product_id": "oadp/oadp-velero-plugin-for-vsm-rhel8@sha256:c29da97ce94aff1b538072d27d58ed65a2db5caf5f079f837c949fa866b53eaa_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-plugin-for-vsm-rhel8@sha256:c29da97ce94aff1b538072d27d58ed65a2db5caf5f079f837c949fa866b53eaa?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-velero-plugin-for-vsm-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:d234e14c2c5789d9d00dc64d8b67d699517c647b05f7190aeb624cd21a5cca8c_ppc64le", + "product": { + "name": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:d234e14c2c5789d9d00dc64d8b67d699517c647b05f7190aeb624cd21a5cca8c_ppc64le", + "product_id": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:d234e14c2c5789d9d00dc64d8b67d699517c647b05f7190aeb624cd21a5cca8c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-velero-restic-restore-helper-rhel8@sha256:d234e14c2c5789d9d00dc64d8b67d699517c647b05f7190aeb624cd21a5cca8c?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-velero-restic-restore-helper-rhel8&tag=1.2.3-4" + } + } + }, + { + "category": "product_version", + "name": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:d1f8e31d8ab726c672f3c53044aa7b563735686968ef0b95686c54171c3faf22_ppc64le", + "product": { + "name": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:d1f8e31d8ab726c672f3c53044aa7b563735686968ef0b95686c54171c3faf22_ppc64le", + "product_id": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:d1f8e31d8ab726c672f3c53044aa7b563735686968ef0b95686c54171c3faf22_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/oadp-volume-snapshot-mover-rhel8@sha256:d1f8e31d8ab726c672f3c53044aa7b563735686968ef0b95686c54171c3faf22?arch=ppc64le&repository_url=registry.redhat.io/oadp/oadp-volume-snapshot-mover-rhel8&tag=1.2.3-4" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product": { + "name": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_id": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-core-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product": { + "name": "nginx-core-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_id": "nginx-core-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-core@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-core-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product": { + "name": "nginx-core-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_id": "nginx-core-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-core-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product": { + "name": "nginx-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_id": "nginx-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debugsource-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product": { + "name": "nginx-debugsource-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_id": "nginx-debugsource-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debugsource@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-devel-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product": { + "name": "nginx-mod-devel-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_id": "nginx-mod-devel-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-devel@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product": { + "name": "nginx-mod-http-image-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_id": "nginx-mod-http-image-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_id": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product": { + "name": "nginx-mod-http-perl-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_id": "nginx-mod-http-perl-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product": { + "name": "nginx-mod-http-perl-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_id": "nginx-mod-http-perl-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product": { + "name": "nginx-mod-http-xslt-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_id": "nginx-mod-http-xslt-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_id": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product": { + "name": "nginx-mod-mail-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_id": "nginx-mod-mail-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product": { + "name": "nginx-mod-mail-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_id": "nginx-mod-mail-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product": { + "name": "nginx-mod-stream-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_id": "nginx-mod-stream-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product": { + "name": "nginx-mod-stream-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_id": "nginx-mod-stream-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=aarch64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.src", + "product": { + "name": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.src", + "product_id": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=src&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-all-modules-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.noarch", + "product": { + "name": "nginx-all-modules-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.noarch", + "product_id": "nginx-all-modules-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-all-modules@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-filesystem-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.noarch", + "product": { + "name": "nginx-filesystem-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.noarch", + "product_id": "nginx-filesystem-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-filesystem@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=noarch&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product": { + "name": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_id": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-core-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product": { + "name": "nginx-core-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_id": "nginx-core-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-core@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-core-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product": { + "name": "nginx-core-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_id": "nginx-core-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-core-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product": { + "name": "nginx-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_id": "nginx-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debugsource-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product": { + "name": "nginx-debugsource-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_id": "nginx-debugsource-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debugsource@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-devel-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product": { + "name": "nginx-mod-devel-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_id": "nginx-mod-devel-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-devel@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product": { + "name": "nginx-mod-http-image-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_id": "nginx-mod-http-image-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_id": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product": { + "name": "nginx-mod-http-perl-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_id": "nginx-mod-http-perl-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product": { + "name": "nginx-mod-http-perl-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_id": "nginx-mod-http-perl-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product": { + "name": "nginx-mod-http-xslt-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_id": "nginx-mod-http-xslt-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_id": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product": { + "name": "nginx-mod-mail-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_id": "nginx-mod-mail-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product": { + "name": "nginx-mod-mail-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_id": "nginx-mod-mail-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product": { + "name": "nginx-mod-stream-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_id": "nginx-mod-stream-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product": { + "name": "nginx-mod-stream-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_id": "nginx-mod-stream-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=ppc64le&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product": { + "name": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_id": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-core-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product": { + "name": "nginx-core-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_id": "nginx-core-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-core@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-core-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product": { + "name": "nginx-core-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_id": "nginx-core-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-core-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product": { + "name": "nginx-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_id": "nginx-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debugsource-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product": { + "name": "nginx-debugsource-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_id": "nginx-debugsource-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debugsource@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-devel-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product": { + "name": "nginx-mod-devel-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_id": "nginx-mod-devel-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-devel@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product": { + "name": "nginx-mod-http-image-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_id": "nginx-mod-http-image-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_id": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product": { + "name": "nginx-mod-http-perl-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_id": "nginx-mod-http-perl-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product": { + "name": "nginx-mod-http-perl-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_id": "nginx-mod-http-perl-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product": { + "name": "nginx-mod-http-xslt-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_id": "nginx-mod-http-xslt-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_id": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product": { + "name": "nginx-mod-mail-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_id": "nginx-mod-mail-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product": { + "name": "nginx-mod-mail-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_id": "nginx-mod-mail-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product": { + "name": "nginx-mod-stream-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_id": "nginx-mod-stream-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product": { + "name": "nginx-mod-stream-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_id": "nginx-mod-stream-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=s390x&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product": { + "name": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_id": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-core-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product": { + "name": "nginx-core-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_id": "nginx-core-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-core@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-core-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product": { + "name": "nginx-core-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_id": "nginx-core-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-core-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product": { + "name": "nginx-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_id": "nginx-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debugsource-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product": { + "name": "nginx-debugsource-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_id": "nginx-debugsource-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debugsource@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-devel-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product": { + "name": "nginx-mod-devel-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_id": "nginx-mod-devel-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-devel@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product": { + "name": "nginx-mod-http-image-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_id": "nginx-mod-http-image-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_id": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product": { + "name": "nginx-mod-http-perl-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_id": "nginx-mod-http-perl-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product": { + "name": "nginx-mod-http-perl-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_id": "nginx-mod-http-perl-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product": { + "name": "nginx-mod-http-xslt-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_id": "nginx-mod-http-xslt-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_id": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product": { + "name": "nginx-mod-mail-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_id": "nginx-mod-mail-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product": { + "name": "nginx-mod-mail-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_id": "nginx-mod-mail-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product": { + "name": "nginx-mod-stream-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_id": "nginx-mod-stream-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product": { + "name": "nginx-mod-stream-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_id": "nginx-mod-stream-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream-debuginfo@1.22.1-3.module%2Bel9.2.0.z%2B20353%2B5a828d50.1?arch=x86_64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-api-rhel9@sha256:61de05b8dffe208fb8d4c00aed8bba71a4e428f74cc06b936debfbe4fb640747_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-api-rhel9@sha256:61de05b8dffe208fb8d4c00aed8bba71a4e428f74cc06b936debfbe4fb640747_amd64", + "product_id": "migration-toolkit-virtualization/mtv-api-rhel9@sha256:61de05b8dffe208fb8d4c00aed8bba71a4e428f74cc06b936debfbe4fb640747_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-api-rhel9@sha256:61de05b8dffe208fb8d4c00aed8bba71a4e428f74cc06b936debfbe4fb640747?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-api-rhel9&tag=2.4.3-5" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-console-plugin-rhel9@sha256:3022d96f38b8900d1b545cbf045f96816194bfba917f08c2e67758f7928acf2c_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-console-plugin-rhel9@sha256:3022d96f38b8900d1b545cbf045f96816194bfba917f08c2e67758f7928acf2c_amd64", + "product_id": "migration-toolkit-virtualization/mtv-console-plugin-rhel9@sha256:3022d96f38b8900d1b545cbf045f96816194bfba917f08c2e67758f7928acf2c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-console-plugin-rhel9@sha256:3022d96f38b8900d1b545cbf045f96816194bfba917f08c2e67758f7928acf2c?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-console-plugin-rhel9&tag=2.4.3-3" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-controller-rhel9@sha256:c9b7db0c74e38e5f028b3b72066892c96b6f684575d395a197a0826c09d96e1d_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-controller-rhel9@sha256:c9b7db0c74e38e5f028b3b72066892c96b6f684575d395a197a0826c09d96e1d_amd64", + "product_id": "migration-toolkit-virtualization/mtv-controller-rhel9@sha256:c9b7db0c74e38e5f028b3b72066892c96b6f684575d395a197a0826c09d96e1d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-controller-rhel9@sha256:c9b7db0c74e38e5f028b3b72066892c96b6f684575d395a197a0826c09d96e1d?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-controller-rhel9&tag=2.4.3-5" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-must-gather-api-rhel8@sha256:afc08bab3b5b19bcd4003819d4e1bc1c9c3faf71370154ee1695c9a3a6192223_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-must-gather-api-rhel8@sha256:afc08bab3b5b19bcd4003819d4e1bc1c9c3faf71370154ee1695c9a3a6192223_amd64", + "product_id": "migration-toolkit-virtualization/mtv-must-gather-api-rhel8@sha256:afc08bab3b5b19bcd4003819d4e1bc1c9c3faf71370154ee1695c9a3a6192223_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-must-gather-api-rhel8@sha256:afc08bab3b5b19bcd4003819d4e1bc1c9c3faf71370154ee1695c9a3a6192223?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-must-gather-api-rhel8&tag=2.4.3-5" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-must-gather-rhel8@sha256:0b766d8e51580920d3b558eaac237b39b70f890127adaac34177aff1b97596fa_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-must-gather-rhel8@sha256:0b766d8e51580920d3b558eaac237b39b70f890127adaac34177aff1b97596fa_amd64", + "product_id": "migration-toolkit-virtualization/mtv-must-gather-rhel8@sha256:0b766d8e51580920d3b558eaac237b39b70f890127adaac34177aff1b97596fa_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-must-gather-rhel8@sha256:0b766d8e51580920d3b558eaac237b39b70f890127adaac34177aff1b97596fa?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-must-gather-rhel8&tag=2.4.3-6" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-openstack-populator-rhel9@sha256:cb8d1bc7320c4ba9caa1d3bb45e48c6d1d2b71799f5dc466c5de8b87579d0c63_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-openstack-populator-rhel9@sha256:cb8d1bc7320c4ba9caa1d3bb45e48c6d1d2b71799f5dc466c5de8b87579d0c63_amd64", + "product_id": "migration-toolkit-virtualization/mtv-openstack-populator-rhel9@sha256:cb8d1bc7320c4ba9caa1d3bb45e48c6d1d2b71799f5dc466c5de8b87579d0c63_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-openstack-populator-rhel9@sha256:cb8d1bc7320c4ba9caa1d3bb45e48c6d1d2b71799f5dc466c5de8b87579d0c63?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-openstack-populator-rhel9&tag=2.4.3-5" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-operator-bundle@sha256:f3172be67364c2a3a5acc25976759e91643c30dfa4d034ea39884ce2be084741_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-operator-bundle@sha256:f3172be67364c2a3a5acc25976759e91643c30dfa4d034ea39884ce2be084741_amd64", + "product_id": "migration-toolkit-virtualization/mtv-operator-bundle@sha256:f3172be67364c2a3a5acc25976759e91643c30dfa4d034ea39884ce2be084741_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-operator-bundle@sha256:f3172be67364c2a3a5acc25976759e91643c30dfa4d034ea39884ce2be084741?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-operator-bundle&tag=2.4.3-12" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-rhel8-operator@sha256:30cea757cbe41f54ecfd59320ea92351e1209f5646c7346d7d7563e383e988bb_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-rhel8-operator@sha256:30cea757cbe41f54ecfd59320ea92351e1209f5646c7346d7d7563e383e988bb_amd64", + "product_id": "migration-toolkit-virtualization/mtv-rhel8-operator@sha256:30cea757cbe41f54ecfd59320ea92351e1209f5646c7346d7d7563e383e988bb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-rhel8-operator@sha256:30cea757cbe41f54ecfd59320ea92351e1209f5646c7346d7d7563e383e988bb?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-rhel8-operator&tag=2.4.3-3" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-populator-controller-rhel9@sha256:4bbec09dfd8021e9cf676f1fb85a0a3f168845b91421afa5ded7983a3561d301_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-populator-controller-rhel9@sha256:4bbec09dfd8021e9cf676f1fb85a0a3f168845b91421afa5ded7983a3561d301_amd64", + "product_id": "migration-toolkit-virtualization/mtv-populator-controller-rhel9@sha256:4bbec09dfd8021e9cf676f1fb85a0a3f168845b91421afa5ded7983a3561d301_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-populator-controller-rhel9@sha256:4bbec09dfd8021e9cf676f1fb85a0a3f168845b91421afa5ded7983a3561d301?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-populator-controller-rhel9&tag=2.4.3-5" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-rhv-populator-rhel8@sha256:f1c946eb52c6464db8a68cd4c6b61b6df145c68aef4a4858651076ba27d5c40b_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-rhv-populator-rhel8@sha256:f1c946eb52c6464db8a68cd4c6b61b6df145c68aef4a4858651076ba27d5c40b_amd64", + "product_id": "migration-toolkit-virtualization/mtv-rhv-populator-rhel8@sha256:f1c946eb52c6464db8a68cd4c6b61b6df145c68aef4a4858651076ba27d5c40b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-rhv-populator-rhel8@sha256:f1c946eb52c6464db8a68cd4c6b61b6df145c68aef4a4858651076ba27d5c40b?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-rhv-populator-rhel8&tag=2.4.3-4" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-ui-rhel8@sha256:f872479bcfbf35cae89eb3c95005067b8e64aca090cc058c4e4a1f0db56df9ff_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-ui-rhel8@sha256:f872479bcfbf35cae89eb3c95005067b8e64aca090cc058c4e4a1f0db56df9ff_amd64", + "product_id": "migration-toolkit-virtualization/mtv-ui-rhel8@sha256:f872479bcfbf35cae89eb3c95005067b8e64aca090cc058c4e4a1f0db56df9ff_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-ui-rhel8@sha256:f872479bcfbf35cae89eb3c95005067b8e64aca090cc058c4e4a1f0db56df9ff?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-ui-rhel8&tag=2.4.3-2" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-validation-rhel9@sha256:8d9947ca76642dacb58290203f5ad003f7ca4f1a5a075ac584ab9e27018a0eed_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-validation-rhel9@sha256:8d9947ca76642dacb58290203f5ad003f7ca4f1a5a075ac584ab9e27018a0eed_amd64", + "product_id": "migration-toolkit-virtualization/mtv-validation-rhel9@sha256:8d9947ca76642dacb58290203f5ad003f7ca4f1a5a075ac584ab9e27018a0eed_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-validation-rhel9@sha256:8d9947ca76642dacb58290203f5ad003f7ca4f1a5a075ac584ab9e27018a0eed?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-validation-rhel9&tag=2.4.3-5" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-virt-v2v-rhel9@sha256:7ecf4ffb01ccf2cd92fa96407bca9e5b6054e3b5033ada74c98e00dca163d1f7_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-virt-v2v-rhel9@sha256:7ecf4ffb01ccf2cd92fa96407bca9e5b6054e3b5033ada74c98e00dca163d1f7_amd64", + "product_id": "migration-toolkit-virtualization/mtv-virt-v2v-rhel9@sha256:7ecf4ffb01ccf2cd92fa96407bca9e5b6054e3b5033ada74c98e00dca163d1f7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-virt-v2v-rhel9@sha256:7ecf4ffb01ccf2cd92fa96407bca9e5b6054e3b5033ada74c98e00dca163d1f7?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-virt-v2v-rhel9&tag=2.4.3-4" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-virt-v2v-warm-rhel8@sha256:c8a7ee4f36ffc0206d614ad47ce95a13aacdf80a47e1ea7209e0f9824914c36c_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-virt-v2v-warm-rhel8@sha256:c8a7ee4f36ffc0206d614ad47ce95a13aacdf80a47e1ea7209e0f9824914c36c_amd64", + "product_id": "migration-toolkit-virtualization/mtv-virt-v2v-warm-rhel8@sha256:c8a7ee4f36ffc0206d614ad47ce95a13aacdf80a47e1ea7209e0f9824914c36c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-virt-v2v-warm-rhel8@sha256:c8a7ee4f36ffc0206d614ad47ce95a13aacdf80a47e1ea7209e0f9824914c36c?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-virt-v2v-warm-rhel8&tag=2.4.3-3" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler@sha256:671501a957e5c80d1f36e7683d25c995f3c4df566dadd5d9d4e8dce969f6a419_arm64", + "product": { + "name": "openshift4/ose-cluster-autoscaler@sha256:671501a957e5c80d1f36e7683d25c995f3c4df566dadd5d9d4e8dce969f6a419_arm64", + "product_id": "openshift4/ose-cluster-autoscaler@sha256:671501a957e5c80d1f36e7683d25c995f3c4df566dadd5d9d4e8dce969f6a419_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler@sha256:671501a957e5c80d1f36e7683d25c995f3c4df566dadd5d9d4e8dce969f6a419?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler&tag=v4.12.0-202310170157.p0.g6ab8e62.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-machine-controllers@sha256:0d72bb0a5c4f3c205c658376246b1a1a8b57233cd0ff3771e59d5995ea97ad3c_arm64", + "product": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:0d72bb0a5c4f3c205c658376246b1a1a8b57233cd0ff3771e59d5995ea97ad3c_arm64", + "product_id": "openshift4/ose-baremetal-machine-controllers@sha256:0d72bb0a5c4f3c205c658376246b1a1a8b57233cd0ff3771e59d5995ea97ad3c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-machine-controllers@sha256:0d72bb0a5c4f3c205c658376246b1a1a8b57233cd0ff3771e59d5995ea97ad3c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers&tag=v4.12.0-202310170157.p0.g63dcaf1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:b5c90fc1f90cbe6395910e55119f15a13b7f306897a45e654badacc2919735ff_arm64", + "product": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:b5c90fc1f90cbe6395910e55119f15a13b7f306897a45e654badacc2919735ff_arm64", + "product_id": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:b5c90fc1f90cbe6395910e55119f15a13b7f306897a45e654badacc2919735ff_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-etcd-rhel8-operator@sha256:b5c90fc1f90cbe6395910e55119f15a13b7f306897a45e654badacc2919735ff?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator&tag=v4.12.0-202310170157.p0.ge49f1a3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-monitoring-operator@sha256:4a386d2801f7349c42d69ec67fff3545882274de80f8e1cdab2139f85b8e47f8_arm64", + "product": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:4a386d2801f7349c42d69ec67fff3545882274de80f8e1cdab2139f85b8e47f8_arm64", + "product_id": "openshift4/ose-cluster-monitoring-operator@sha256:4a386d2801f7349c42d69ec67fff3545882274de80f8e1cdab2139f85b8e47f8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-monitoring-operator@sha256:4a386d2801f7349c42d69ec67fff3545882274de80f8e1cdab2139f85b8e47f8?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-operator&tag=v4.12.0-202310170157.p0.gee959ac.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-network-operator@sha256:8f867f67340e0fa38b7ef0c6b26d581d0781b2df13670918545c926354e0eb30_arm64", + "product": { + "name": "openshift4/ose-cluster-network-operator@sha256:8f867f67340e0fa38b7ef0c6b26d581d0781b2df13670918545c926354e0eb30_arm64", + "product_id": "openshift4/ose-cluster-network-operator@sha256:8f867f67340e0fa38b7ef0c6b26d581d0781b2df13670918545c926354e0eb30_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-network-operator@sha256:8f867f67340e0fa38b7ef0c6b26d581d0781b2df13670918545c926354e0eb30?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-network-operator&tag=v4.12.0-202310170157.p0.gc6d6aff.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:a89cdd1e1a358a4893af9825c55c272278bba193b3bec7b79a24b05e198236c1_arm64", + "product": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:a89cdd1e1a358a4893af9825c55c272278bba193b3bec7b79a24b05e198236c1_arm64", + "product_id": "openshift4/ose-cluster-node-tuning-operator@sha256:a89cdd1e1a358a4893af9825c55c272278bba193b3bec7b79a24b05e198236c1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-node-tuning-operator@sha256:a89cdd1e1a358a4893af9825c55c272278bba193b3bec7b79a24b05e198236c1?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-operator&tag=v4.12.0-202310170157.p0.g3326048.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-version-operator@sha256:97f6c8906d908bc068cb1ba3d0aed9d7b72d7c319d28af505793b4feece2c93c_arm64", + "product": { + "name": "openshift4/ose-cluster-version-operator@sha256:97f6c8906d908bc068cb1ba3d0aed9d7b72d7c319d28af505793b4feece2c93c_arm64", + "product_id": "openshift4/ose-cluster-version-operator@sha256:97f6c8906d908bc068cb1ba3d0aed9d7b72d7c319d28af505793b4feece2c93c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-version-operator@sha256:97f6c8906d908bc068cb1ba3d0aed9d7b72d7c319d28af505793b4feece2c93c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-version-operator&tag=v4.12.0-202310170157.p0.gf9785d6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-configmap-reloader@sha256:4a248f7257c298e0db7606a6d4ada2306250ea5b69a0ac4de3946f84e0905086_arm64", + "product": { + "name": "openshift4/ose-configmap-reloader@sha256:4a248f7257c298e0db7606a6d4ada2306250ea5b69a0ac4de3946f84e0905086_arm64", + "product_id": "openshift4/ose-configmap-reloader@sha256:4a248f7257c298e0db7606a6d4ada2306250ea5b69a0ac4de3946f84e0905086_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-configmap-reloader@sha256:4a248f7257c298e0db7606a6d4ada2306250ea5b69a0ac4de3946f84e0905086?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-configmap-reloader&tag=v4.12.0-202310170157.p0.ge4d9170.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-coredns@sha256:2890b81758f128fd77057ad30a84d1d4732d963d7774d384e4aae23ca47bcf07_arm64", + "product": { + "name": "openshift4/ose-coredns@sha256:2890b81758f128fd77057ad30a84d1d4732d963d7774d384e4aae23ca47bcf07_arm64", + "product_id": "openshift4/ose-coredns@sha256:2890b81758f128fd77057ad30a84d1d4732d963d7774d384e4aae23ca47bcf07_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-coredns@sha256:2890b81758f128fd77057ad30a84d1d4732d963d7774d384e4aae23ca47bcf07?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-coredns&tag=v4.12.0-202310170157.p0.g8d756b0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:bd892f004d727ee5137316e8b88ccb4a3aee945579ee3e5442c69a808557b74c_arm64", + "product": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:bd892f004d727ee5137316e8b88ccb4a3aee945579ee3e5442c69a808557b74c_arm64", + "product_id": "openshift4/ose-csi-external-attacher-rhel8@sha256:bd892f004d727ee5137316e8b88ccb4a3aee945579ee3e5442c69a808557b74c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher-rhel8@sha256:bd892f004d727ee5137316e8b88ccb4a3aee945579ee3e5442c69a808557b74c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8&tag=v4.12.0-202310170157.p0.g6945eef.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher@sha256:bd892f004d727ee5137316e8b88ccb4a3aee945579ee3e5442c69a808557b74c_arm64", + "product": { + "name": "openshift4/ose-csi-external-attacher@sha256:bd892f004d727ee5137316e8b88ccb4a3aee945579ee3e5442c69a808557b74c_arm64", + "product_id": "openshift4/ose-csi-external-attacher@sha256:bd892f004d727ee5137316e8b88ccb4a3aee945579ee3e5442c69a808557b74c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher@sha256:bd892f004d727ee5137316e8b88ccb4a3aee945579ee3e5442c69a808557b74c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher&tag=v4.12.0-202310170157.p0.g6945eef.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe@sha256:d18d0e38e1ab7f62287ba18f6c54e8b2c9380784471bf9ab8fa9bb12a20ed545_arm64", + "product": { + "name": "openshift4/ose-csi-livenessprobe@sha256:d18d0e38e1ab7f62287ba18f6c54e8b2c9380784471bf9ab8fa9bb12a20ed545_arm64", + "product_id": "openshift4/ose-csi-livenessprobe@sha256:d18d0e38e1ab7f62287ba18f6c54e8b2c9380784471bf9ab8fa9bb12a20ed545_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe@sha256:d18d0e38e1ab7f62287ba18f6c54e8b2c9380784471bf9ab8fa9bb12a20ed545?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe&tag=v4.12.0-202310170157.p0.g9cb0564.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:d18d0e38e1ab7f62287ba18f6c54e8b2c9380784471bf9ab8fa9bb12a20ed545_arm64", + "product": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:d18d0e38e1ab7f62287ba18f6c54e8b2c9380784471bf9ab8fa9bb12a20ed545_arm64", + "product_id": "openshift4/ose-csi-livenessprobe-rhel8@sha256:d18d0e38e1ab7f62287ba18f6c54e8b2c9380784471bf9ab8fa9bb12a20ed545_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe-rhel8@sha256:d18d0e38e1ab7f62287ba18f6c54e8b2c9380784471bf9ab8fa9bb12a20ed545?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8&tag=v4.12.0-202310170157.p0.g9cb0564.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar@sha256:62df93e1bf2d32a0e86b021753f33ef79cc20267c8eb2a775d14e46f4292ea73_arm64", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:62df93e1bf2d32a0e86b021753f33ef79cc20267c8eb2a775d14e46f4292ea73_arm64", + "product_id": "openshift4/ose-csi-node-driver-registrar@sha256:62df93e1bf2d32a0e86b021753f33ef79cc20267c8eb2a775d14e46f4292ea73_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar@sha256:62df93e1bf2d32a0e86b021753f33ef79cc20267c8eb2a775d14e46f4292ea73?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar&tag=v4.12.0-202310170157.p0.g805d5ac.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:62df93e1bf2d32a0e86b021753f33ef79cc20267c8eb2a775d14e46f4292ea73_arm64", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:62df93e1bf2d32a0e86b021753f33ef79cc20267c8eb2a775d14e46f4292ea73_arm64", + "product_id": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:62df93e1bf2d32a0e86b021753f33ef79cc20267c8eb2a775d14e46f4292ea73_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar-rhel8@sha256:62df93e1bf2d32a0e86b021753f33ef79cc20267c8eb2a775d14e46f4292ea73?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8&tag=v4.12.0-202310170157.p0.g805d5ac.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:48c44045d753346f59214118d45719348f24d3a777a3345a591fe2f2cc25f1a2_arm64", + "product": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:48c44045d753346f59214118d45719348f24d3a777a3345a591fe2f2cc25f1a2_arm64", + "product_id": "openshift4/ose-csi-external-provisioner-rhel8@sha256:48c44045d753346f59214118d45719348f24d3a777a3345a591fe2f2cc25f1a2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner-rhel8@sha256:48c44045d753346f59214118d45719348f24d3a777a3345a591fe2f2cc25f1a2?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8&tag=v4.12.0-202310170157.p0.g140851f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner@sha256:48c44045d753346f59214118d45719348f24d3a777a3345a591fe2f2cc25f1a2_arm64", + "product": { + "name": "openshift4/ose-csi-external-provisioner@sha256:48c44045d753346f59214118d45719348f24d3a777a3345a591fe2f2cc25f1a2_arm64", + "product_id": "openshift4/ose-csi-external-provisioner@sha256:48c44045d753346f59214118d45719348f24d3a777a3345a591fe2f2cc25f1a2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner@sha256:48c44045d753346f59214118d45719348f24d3a777a3345a591fe2f2cc25f1a2?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner&tag=v4.12.0-202310170157.p0.g140851f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-proxy@sha256:1b57acea5df0b02e573943ad54c463ffff134e2827920395c2ca11827847fe48_arm64", + "product": { + "name": "openshift4/ose-oauth-proxy@sha256:1b57acea5df0b02e573943ad54c463ffff134e2827920395c2ca11827847fe48_arm64", + "product_id": "openshift4/ose-oauth-proxy@sha256:1b57acea5df0b02e573943ad54c463ffff134e2827920395c2ca11827847fe48_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-proxy@sha256:1b57acea5df0b02e573943ad54c463ffff134e2827920395c2ca11827847fe48?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-oauth-proxy&tag=v4.12.0-202310170157.p0.g03e5b13.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-alertmanager@sha256:d650b3f7aea9e194463b16314cbe254d2868f3304e8e19ac4c183fede0f8a7de_arm64", + "product": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:d650b3f7aea9e194463b16314cbe254d2868f3304e8e19ac4c183fede0f8a7de_arm64", + "product_id": "openshift4/ose-prometheus-alertmanager@sha256:d650b3f7aea9e194463b16314cbe254d2868f3304e8e19ac4c183fede0f8a7de_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-alertmanager@sha256:d650b3f7aea9e194463b16314cbe254d2868f3304e8e19ac4c183fede0f8a7de?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager&tag=v4.12.0-202310170157.p0.g86b1835.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-node-exporter@sha256:95fc8451451ac02b8047421c679c0d9cbcf2038cbf416c40ee3d14a4a780274c_arm64", + "product": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:95fc8451451ac02b8047421c679c0d9cbcf2038cbf416c40ee3d14a4a780274c_arm64", + "product_id": "openshift4/ose-prometheus-node-exporter@sha256:95fc8451451ac02b8047421c679c0d9cbcf2038cbf416c40ee3d14a4a780274c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-node-exporter@sha256:95fc8451451ac02b8047421c679c0d9cbcf2038cbf416c40ee3d14a4a780274c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter&tag=v4.12.0-202310170157.p0.gaf2f49c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus@sha256:7328754aa41c200b916f1248afaae56fdfa68de60a88b203ff38a40f8aa2892a_arm64", + "product": { + "name": "openshift4/ose-prometheus@sha256:7328754aa41c200b916f1248afaae56fdfa68de60a88b203ff38a40f8aa2892a_arm64", + "product_id": "openshift4/ose-prometheus@sha256:7328754aa41c200b916f1248afaae56fdfa68de60a88b203ff38a40f8aa2892a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus@sha256:7328754aa41c200b916f1248afaae56fdfa68de60a88b203ff38a40f8aa2892a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prometheus&tag=v4.12.0-202310170157.p0.gc749fdb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-agent-rhel9@sha256:6fa10ac80602556e7f245e8d4dcb127b6f9de90c67f2f36c357cf126b6950e59_arm64", + "product": { + "name": "openshift4/ose-ironic-agent-rhel9@sha256:6fa10ac80602556e7f245e8d4dcb127b6f9de90c67f2f36c357cf126b6950e59_arm64", + "product_id": "openshift4/ose-ironic-agent-rhel9@sha256:6fa10ac80602556e7f245e8d4dcb127b6f9de90c67f2f36c357cf126b6950e59_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-agent-rhel9@sha256:6fa10ac80602556e7f245e8d4dcb127b6f9de90c67f2f36c357cf126b6950e59?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9&tag=v4.12.0-202310170903.p0.ga822924.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-rhel9@sha256:f8915d84762515c2319fa8d4c656c1837e5a46e8ed13ece3e25fa9118a8871cb_arm64", + "product": { + "name": "openshift4/ose-ironic-rhel9@sha256:f8915d84762515c2319fa8d4c656c1837e5a46e8ed13ece3e25fa9118a8871cb_arm64", + "product_id": "openshift4/ose-ironic-rhel9@sha256:f8915d84762515c2319fa8d4c656c1837e5a46e8ed13ece3e25fa9118a8871cb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-rhel9@sha256:f8915d84762515c2319fa8d4c656c1837e5a46e8ed13ece3e25fa9118a8871cb?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9&tag=v4.12.0-202310170903.p0.ge626e7e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c409567e711c207833b7714c7e21a989eaeb74adbd479ea416a884eb4989a6c6_arm64", + "product": { + "name": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c409567e711c207833b7714c7e21a989eaeb74adbd479ea416a884eb4989a6c6_arm64", + "product_id": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c409567e711c207833b7714c7e21a989eaeb74adbd479ea416a884eb4989a6c6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-machine-os-downloader-rhel9@sha256:c409567e711c207833b7714c7e21a989eaeb74adbd479ea416a884eb4989a6c6?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9&tag=v4.12.0-202310170903.p0.gc65c1f1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8f3fb5836db7a8db5c2dee991dad1b983d66124a79bef61d13ca18093fda34ed_arm64", + "product": { + "name": "openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8f3fb5836db7a8db5c2dee991dad1b983d66124a79bef61d13ca18093fda34ed_arm64", + "product_id": "openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8f3fb5836db7a8db5c2dee991dad1b983d66124a79bef61d13ca18093fda34ed_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-static-ip-manager-rhel9@sha256:8f3fb5836db7a8db5c2dee991dad1b983d66124a79bef61d13ca18093fda34ed?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9&tag=v4.12.0-202310170903.p0.ga8ade8f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-proxy@sha256:f29dc1c36654f29d960786f749d7e5182c7681dc70111679fc934d4340df6269_arm64", + "product": { + "name": "openshift4/ose-kube-proxy@sha256:f29dc1c36654f29d960786f749d7e5182c7681dc70111679fc934d4340df6269_arm64", + "product_id": "openshift4/ose-kube-proxy@sha256:f29dc1c36654f29d960786f749d7e5182c7681dc70111679fc934d4340df6269_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-proxy@sha256:f29dc1c36654f29d960786f749d7e5182c7681dc70111679fc934d4340df6269?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-kube-proxy&tag=v4.12.0-202310170157.p0.gdc9f9af.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-rbac-proxy@sha256:bda0bdf5c4318d708df42eb0d34a54e5f0e6a5dff7a54353d89defa6c7f00d83_arm64", + "product": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:bda0bdf5c4318d708df42eb0d34a54e5f0e6a5dff7a54353d89defa6c7f00d83_arm64", + "product_id": "openshift4/ose-kube-rbac-proxy@sha256:bda0bdf5c4318d708df42eb0d34a54e5f0e6a5dff7a54353d89defa6c7f00d83_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-rbac-proxy@sha256:bda0bdf5c4318d708df42eb0d34a54e5f0e6a5dff7a54353d89defa6c7f00d83?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy&tag=v4.12.0-202310170157.p0.g94f3fde.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-state-metrics@sha256:bee92b773f7079adc5ce7e98d7fc8596d57a12421baa5a5dcfcb4a37621bfdea_arm64", + "product": { + "name": "openshift4/ose-kube-state-metrics@sha256:bee92b773f7079adc5ce7e98d7fc8596d57a12421baa5a5dcfcb4a37621bfdea_arm64", + "product_id": "openshift4/ose-kube-state-metrics@sha256:bee92b773f7079adc5ce7e98d7fc8596d57a12421baa5a5dcfcb4a37621bfdea_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-state-metrics@sha256:bee92b773f7079adc5ce7e98d7fc8596d57a12421baa5a5dcfcb4a37621bfdea?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics&tag=v4.12.0-202310170157.p0.g9a1bf9b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-marketplace@sha256:3c79ff9ea3c9c95f38f013ead1844aa7c1dc7fcdb89d3273fb514f6af875e2bc_arm64", + "product": { + "name": "openshift4/ose-operator-marketplace@sha256:3c79ff9ea3c9c95f38f013ead1844aa7c1dc7fcdb89d3273fb514f6af875e2bc_arm64", + "product_id": "openshift4/ose-operator-marketplace@sha256:3c79ff9ea3c9c95f38f013ead1844aa7c1dc7fcdb89d3273fb514f6af875e2bc_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-marketplace@sha256:3c79ff9ea3c9c95f38f013ead1844aa7c1dc7fcdb89d3273fb514f6af875e2bc?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-operator-marketplace&tag=v4.12.0-202310170157.p0.ga5465e2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-cni@sha256:54ba207f99fc4c0d8713eedfa5e13808d7212cf859210f011d3166818fda5aa2_arm64", + "product": { + "name": "openshift4/ose-multus-cni@sha256:54ba207f99fc4c0d8713eedfa5e13808d7212cf859210f011d3166818fda5aa2_arm64", + "product_id": "openshift4/ose-multus-cni@sha256:54ba207f99fc4c0d8713eedfa5e13808d7212cf859210f011d3166818fda5aa2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-cni@sha256:54ba207f99fc4c0d8713eedfa5e13808d7212cf859210f011d3166818fda5aa2?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-multus-cni&tag=v4.12.0-202310170157.p0.g210e540.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-server-rhel8@sha256:9537687c58119643783c34c756a4bce2bdae65123e6c23c10dcad62648173d60_arm64", + "product": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:9537687c58119643783c34c756a4bce2bdae65123e6c23c10dcad62648173d60_arm64", + "product_id": "openshift4/ose-oauth-server-rhel8@sha256:9537687c58119643783c34c756a4bce2bdae65123e6c23c10dcad62648173d60_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-server-rhel8@sha256:9537687c58119643783c34c756a4bce2bdae65123e6c23c10dcad62648173d60?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel8&tag=v4.12.0-202310170157.p0.g0f83669.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-builder@sha256:53c435df3b0e7f7a8c9f7607b559a1629761d67b6b0130ec5e99482eec9dc215_arm64", + "product": { + "name": "openshift4/ose-docker-builder@sha256:53c435df3b0e7f7a8c9f7607b559a1629761d67b6b0130ec5e99482eec9dc215_arm64", + "product_id": "openshift4/ose-docker-builder@sha256:53c435df3b0e7f7a8c9f7607b559a1629761d67b6b0130ec5e99482eec9dc215_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-builder@sha256:53c435df3b0e7f7a8c9f7607b559a1629761d67b6b0130ec5e99482eec9dc215?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-docker-builder&tag=v4.12.0-202310170157.p0.g1f99147.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli@sha256:97367c9aec06d29ac7963a66c19e69f3c38b94cc7f9c4bb62ea6f3e9b76d614d_arm64", + "product": { + "name": "openshift4/ose-cli@sha256:97367c9aec06d29ac7963a66c19e69f3c38b94cc7f9c4bb62ea6f3e9b76d614d_arm64", + "product_id": "openshift4/ose-cli@sha256:97367c9aec06d29ac7963a66c19e69f3c38b94cc7f9c4bb62ea6f3e9b76d614d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli@sha256:97367c9aec06d29ac7963a66c19e69f3c38b94cc7f9c4bb62ea6f3e9b76d614d?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cli&tag=v4.12.0-202310170157.p0.g7aa4009.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console@sha256:c51ae46d8f9540e6ba6f15ca3cf0824089ae3a81d3cc4cf26cc00109632f22d1_arm64", + "product": { + "name": "openshift4/ose-console@sha256:c51ae46d8f9540e6ba6f15ca3cf0824089ae3a81d3cc4cf26cc00109632f22d1_arm64", + "product_id": "openshift4/ose-console@sha256:c51ae46d8f9540e6ba6f15ca3cf0824089ae3a81d3cc4cf26cc00109632f22d1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-console@sha256:c51ae46d8f9540e6ba6f15ca3cf0824089ae3a81d3cc4cf26cc00109632f22d1?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-console&tag=v4.12.0-202310170157.p0.gdea60d8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console-operator@sha256:a28885cb6cda9b80ad64522308e380710f4ea1e63bacbbd7037701db9ea3e650_arm64", + "product": { + "name": "openshift4/ose-console-operator@sha256:a28885cb6cda9b80ad64522308e380710f4ea1e63bacbbd7037701db9ea3e650_arm64", + "product_id": "openshift4/ose-console-operator@sha256:a28885cb6cda9b80ad64522308e380710f4ea1e63bacbbd7037701db9ea3e650_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-console-operator@sha256:a28885cb6cda9b80ad64522308e380710f4ea1e63bacbbd7037701db9ea3e650?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-console-operator&tag=v4.12.0-202310170157.p0.gbeba7a8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-deployer@sha256:7d37579fb09e36aa450866fa8c5f9e9cb331cf5c6ec01bf4ea9c6ec393f84a12_arm64", + "product": { + "name": "openshift4/ose-deployer@sha256:7d37579fb09e36aa450866fa8c5f9e9cb331cf5c6ec01bf4ea9c6ec393f84a12_arm64", + "product_id": "openshift4/ose-deployer@sha256:7d37579fb09e36aa450866fa8c5f9e9cb331cf5c6ec01bf4ea9c6ec393f84a12_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-deployer@sha256:7d37579fb09e36aa450866fa8c5f9e9cb331cf5c6ec01bf4ea9c6ec393f84a12?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-deployer&tag=v4.12.0-202310170157.p0.g7aa4009.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-haproxy-router@sha256:61512f7c5c24b3bedf2f078dc8e4edd317ea03ce1990dbc49f3179703e0f6608_arm64", + "product": { + "name": "openshift4/ose-haproxy-router@sha256:61512f7c5c24b3bedf2f078dc8e4edd317ea03ce1990dbc49f3179703e0f6608_arm64", + "product_id": "openshift4/ose-haproxy-router@sha256:61512f7c5c24b3bedf2f078dc8e4edd317ea03ce1990dbc49f3179703e0f6608_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-haproxy-router@sha256:61512f7c5c24b3bedf2f078dc8e4edd317ea03ce1990dbc49f3179703e0f6608?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-haproxy-router&tag=v4.12.0-202310170157.p0.gcac95bc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hyperkube@sha256:6f57bc5bf8618511a849f4655f4502eb262962e9e8f545e71c3fa5b23075abca_arm64", + "product": { + "name": "openshift4/ose-hyperkube@sha256:6f57bc5bf8618511a849f4655f4502eb262962e9e8f545e71c3fa5b23075abca_arm64", + "product_id": "openshift4/ose-hyperkube@sha256:6f57bc5bf8618511a849f4655f4502eb262962e9e8f545e71c3fa5b23075abca_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-hyperkube@sha256:6f57bc5bf8618511a849f4655f4502eb262962e9e8f545e71c3fa5b23075abca?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-hyperkube&tag=v4.12.0-202310170157.p0.g20cda61.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-pod@sha256:eac3534dc06e38ab6d60ed43bb0fb8b12716bdfa9cefcb2585a1b992e43a946b_arm64", + "product": { + "name": "openshift4/ose-pod@sha256:eac3534dc06e38ab6d60ed43bb0fb8b12716bdfa9cefcb2585a1b992e43a946b_arm64", + "product_id": "openshift4/ose-pod@sha256:eac3534dc06e38ab6d60ed43bb0fb8b12716bdfa9cefcb2585a1b992e43a946b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-pod@sha256:eac3534dc06e38ab6d60ed43bb0fb8b12716bdfa9cefcb2585a1b992e43a946b?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-pod&tag=v4.12.0-202310170157.p0.g20cda61.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-registry@sha256:0640aaf138152fd5237fd79d952bae75525a3c562b6c2095b81483596bcae019_arm64", + "product": { + "name": "openshift4/ose-docker-registry@sha256:0640aaf138152fd5237fd79d952bae75525a3c562b6c2095b81483596bcae019_arm64", + "product_id": "openshift4/ose-docker-registry@sha256:0640aaf138152fd5237fd79d952bae75525a3c562b6c2095b81483596bcae019_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-registry@sha256:0640aaf138152fd5237fd79d952bae75525a3c562b6c2095b81483596bcae019?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-docker-registry&tag=v4.12.0-202310170157.p0.g9e75355.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tests@sha256:edeb8dc1a6e1bd702e52c49b2d8da66552144812e4e1bc1652401e3cacb58245_arm64", + "product": { + "name": "openshift4/ose-tests@sha256:edeb8dc1a6e1bd702e52c49b2d8da66552144812e4e1bc1652401e3cacb58245_arm64", + "product_id": "openshift4/ose-tests@sha256:edeb8dc1a6e1bd702e52c49b2d8da66552144812e4e1bc1652401e3cacb58245_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-tests@sha256:edeb8dc1a6e1bd702e52c49b2d8da66552144812e4e1bc1652401e3cacb58245?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-tests&tag=v4.12.0-202310170157.p0.gdc737e6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:cb030363a17d426dccd5b61302e56fd9a29d725e2b6d2b003ac44e131b57dd57_arm64", + "product": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:cb030363a17d426dccd5b61302e56fd9a29d725e2b6d2b003ac44e131b57dd57_arm64", + "product_id": "openshift4/ose-openshift-state-metrics-rhel8@sha256:cb030363a17d426dccd5b61302e56fd9a29d725e2b6d2b003ac44e131b57dd57_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-state-metrics-rhel8@sha256:cb030363a17d426dccd5b61302e56fd9a29d725e2b6d2b003ac44e131b57dd57?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8&tag=v4.12.0-202310170157.p0.g4c711c7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-lifecycle-manager@sha256:57765470ed8540b907d4db2fb0787194cb42dba702e75f4a287b61942d2c169f_arm64", + "product": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:57765470ed8540b907d4db2fb0787194cb42dba702e75f4a287b61942d2c169f_arm64", + "product_id": "openshift4/ose-operator-lifecycle-manager@sha256:57765470ed8540b907d4db2fb0787194cb42dba702e75f4a287b61942d2c169f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-lifecycle-manager@sha256:57765470ed8540b907d4db2fb0787194cb42dba702e75f4a287b61942d2c169f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager&tag=v4.12.0-202310170157.p0.gdea7071.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-registry@sha256:08f7c5b85534f1f8e8cc1a08f9271bb4dbc4e85118f11a4073c1d05da2a7ae65_arm64", + "product": { + "name": "openshift4/ose-operator-registry@sha256:08f7c5b85534f1f8e8cc1a08f9271bb4dbc4e85118f11a4073c1d05da2a7ae65_arm64", + "product_id": "openshift4/ose-operator-registry@sha256:08f7c5b85534f1f8e8cc1a08f9271bb4dbc4e85118f11a4073c1d05da2a7ae65_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-registry@sha256:08f7c5b85534f1f8e8cc1a08f9271bb4dbc4e85118f11a4073c1d05da2a7ae65?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-operator-registry&tag=v4.12.0-202310170157.p0.gdea7071.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:db3d5b39c0eb45a29b3fbbccd50e43b1b6cb5ea6c6262f6d43c3d7f5d8f2362c_arm64", + "product": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:db3d5b39c0eb45a29b3fbbccd50e43b1b6cb5ea6c6262f6d43c3d7f5d8f2362c_arm64", + "product_id": "openshift4/ose-agent-installer-api-server-rhel8@sha256:db3d5b39c0eb45a29b3fbbccd50e43b1b6cb5ea6c6262f6d43c3d7f5d8f2362c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-api-server-rhel8@sha256:db3d5b39c0eb45a29b3fbbccd50e43b1b6cb5ea6c6262f6d43c3d7f5d8f2362c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8&tag=v4.12.0-202310170157.p0.g8149b9c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:cf816b940b2a618a437fc17a8f126cf10052abae3c4d6d2d14fc191d3cba8bf6_arm64", + "product": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:cf816b940b2a618a437fc17a8f126cf10052abae3c4d6d2d14fc191d3cba8bf6_arm64", + "product_id": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:cf816b940b2a618a437fc17a8f126cf10052abae3c4d6d2d14fc191d3cba8bf6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-csr-approver-rhel8@sha256:cf816b940b2a618a437fc17a8f126cf10052abae3c4d6d2d14fc191d3cba8bf6?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8&tag=v4.12.0-202310170157.p0.g61115db.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:fbdbfe2bdccab0e8d9a616b295ec735ace270aaf409a2833db2a53e10dcca3a7_arm64", + "product": { + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:fbdbfe2bdccab0e8d9a616b295ec735ace270aaf409a2833db2a53e10dcca3a7_arm64", + "product_id": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:fbdbfe2bdccab0e8d9a616b295ec735ace270aaf409a2833db2a53e10dcca3a7_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-node-agent-rhel8@sha256:fbdbfe2bdccab0e8d9a616b295ec735ace270aaf409a2833db2a53e10dcca3a7?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8&tag=v4.12.0-202310170157.p0.ga7aa600.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:39d1e8f6647f37e0db7c633a64ced4ee6ef382a7575efc0b2f1161181b2f5256_arm64", + "product": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:39d1e8f6647f37e0db7c633a64ced4ee6ef382a7575efc0b2f1161181b2f5256_arm64", + "product_id": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:39d1e8f6647f37e0db7c633a64ced4ee6ef382a7575efc0b2f1161181b2f5256_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-orchestrator-rhel8@sha256:39d1e8f6647f37e0db7c633a64ced4ee6ef382a7575efc0b2f1161181b2f5256?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8&tag=v4.12.0-202310170157.p0.g61115db.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:54e58cd0696c85ed8eb475e616fdc25a62a82ada6f7a32713aa11a5d4eea5b97_arm64", + "product": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:54e58cd0696c85ed8eb475e616fdc25a62a82ada6f7a32713aa11a5d4eea5b97_arm64", + "product_id": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:54e58cd0696c85ed8eb475e616fdc25a62a82ada6f7a32713aa11a5d4eea5b97_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-apiserver-network-proxy-rhel8@sha256:54e58cd0696c85ed8eb475e616fdc25a62a82ada6f7a32713aa11a5d4eea5b97?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8&tag=v4.12.0-202310170157.p0.gf1e6d94.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:df486a6f5474816da74a11dd16f085f43b7c53cec92e0e401ada20e5176e7173_arm64", + "product": { + "name": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:df486a6f5474816da74a11dd16f085f43b7c53cec92e0e401ada20e5176e7173_arm64", + "product_id": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:df486a6f5474816da74a11dd16f085f43b7c53cec92e0e401ada20e5176e7173_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-cloud-controller-manager-rhel8@sha256:df486a6f5474816da74a11dd16f085f43b7c53cec92e0e401ada20e5176e7173?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.g7fb891f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:96e42f1d2bb0c9e9c5ef013df354d50a5204431cb09e0481eaad8c20a0f6644d_arm64", + "product": { + "name": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:96e42f1d2bb0c9e9c5ef013df354d50a5204431cb09e0481eaad8c20a0f6644d_arm64", + "product_id": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:96e42f1d2bb0c9e9c5ef013df354d50a5204431cb09e0481eaad8c20a0f6644d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-cluster-api-controllers-rhel8@sha256:96e42f1d2bb0c9e9c5ef013df354d50a5204431cb09e0481eaad8c20a0f6644d?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8&tag=v4.12.0-202310170157.p0.ge3a8e43.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:b67aaaef473bc939d688779fd377eb64b952944a7b224317e333ea5bcfc18fef_arm64", + "product": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:b67aaaef473bc939d688779fd377eb64b952944a7b224317e333ea5bcfc18fef_arm64", + "product_id": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:b67aaaef473bc939d688779fd377eb64b952944a7b224317e333ea5bcfc18fef_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel8@sha256:b67aaaef473bc939d688779fd377eb64b952944a7b224317e333ea5bcfc18fef?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8&tag=v4.12.0-202310170157.p0.g86fc1cd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:162f6586b3431cd0405e52c0bf3854d170188016ba049c8ce941a57f5522797f_arm64", + "product": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:162f6586b3431cd0405e52c0bf3854d170188016ba049c8ce941a57f5522797f_arm64", + "product_id": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:162f6586b3431cd0405e52c0bf3854d170188016ba049c8ce941a57f5522797f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel8-operator@sha256:162f6586b3431cd0405e52c0bf3854d170188016ba049c8ce941a57f5522797f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator&tag=v4.12.0-202310170157.p0.gfa3c8fb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:665523f7dd47276f05deff8b46a3623680fa53e576d2b9660183d9414fa4b4ed_arm64", + "product": { + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:665523f7dd47276f05deff8b46a3623680fa53e576d2b9660183d9414fa4b4ed_arm64", + "product_id": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:665523f7dd47276f05deff8b46a3623680fa53e576d2b9660183d9414fa4b4ed_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-pod-identity-webhook-rhel8@sha256:665523f7dd47276f05deff8b46a3623680fa53e576d2b9660183d9414fa4b4ed?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8&tag=v4.12.0-202310170157.p0.g6197630.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:a737fa208e74f3ace18d469b17579413d8440806564997dfdb3224cda2f6b077_arm64", + "product": { + "name": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:a737fa208e74f3ace18d469b17579413d8440806564997dfdb3224cda2f6b077_arm64", + "product_id": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:a737fa208e74f3ace18d469b17579413d8440806564997dfdb3224cda2f6b077_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-cloud-controller-manager-rhel8@sha256:a737fa208e74f3ace18d469b17579413d8440806564997dfdb3224cda2f6b077?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.g8bc8af2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:a4b03252f4870c68dd23f46e3fe96d33d5131fbe23c6bb096c738110dd7d5684_arm64", + "product": { + "name": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:a4b03252f4870c68dd23f46e3fe96d33d5131fbe23c6bb096c738110dd7d5684_arm64", + "product_id": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:a4b03252f4870c68dd23f46e3fe96d33d5131fbe23c6bb096c738110dd7d5684_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-cloud-node-manager-rhel8@sha256:a4b03252f4870c68dd23f46e3fe96d33d5131fbe23c6bb096c738110dd7d5684?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8&tag=v4.12.0-202310170157.p0.g8bc8af2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:50f3753e60c65e1107831e33931b7ab5f764a40f7c7e53098dd087872ba6c590_arm64", + "product": { + "name": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:50f3753e60c65e1107831e33931b7ab5f764a40f7c7e53098dd087872ba6c590_arm64", + "product_id": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:50f3753e60c65e1107831e33931b7ab5f764a40f7c7e53098dd087872ba6c590_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-cluster-api-controllers-rhel8@sha256:50f3753e60c65e1107831e33931b7ab5f764a40f7c7e53098dd087872ba6c590?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8&tag=v4.12.0-202310170157.p0.gd1d4f77.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:ecf8575605978484db9d4757928be2898fa75c5a128e8f5d847bf07e21e08bff_arm64", + "product": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:ecf8575605978484db9d4757928be2898fa75c5a128e8f5d847bf07e21e08bff_arm64", + "product_id": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:ecf8575605978484db9d4757928be2898fa75c5a128e8f5d847bf07e21e08bff_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-disk-csi-driver-rhel8@sha256:ecf8575605978484db9d4757928be2898fa75c5a128e8f5d847bf07e21e08bff?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8&tag=v4.12.0-202310170157.p0.gba10578.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:15687de76f3d5b2364d51898b882e7b778dbb571ac623a75f0b5a9d027c8cd02_arm64", + "product": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:15687de76f3d5b2364d51898b882e7b778dbb571ac623a75f0b5a9d027c8cd02_arm64", + "product_id": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:15687de76f3d5b2364d51898b882e7b778dbb571ac623a75f0b5a9d027c8cd02_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-disk-csi-driver-rhel8-operator@sha256:15687de76f3d5b2364d51898b882e7b778dbb571ac623a75f0b5a9d027c8cd02?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator&tag=v4.12.0-202310170157.p0.g0dab032.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:7b54bedfbbadaac0c69eb0aa0150441b2d18ca2623be63b109ba5ac989bb4a36_arm64", + "product": { + "name": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:7b54bedfbbadaac0c69eb0aa0150441b2d18ca2623be63b109ba5ac989bb4a36_arm64", + "product_id": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:7b54bedfbbadaac0c69eb0aa0150441b2d18ca2623be63b109ba5ac989bb4a36_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-file-csi-driver-rhel8@sha256:7b54bedfbbadaac0c69eb0aa0150441b2d18ca2623be63b109ba5ac989bb4a36?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8&tag=v4.12.0-202310170157.p0.g746fab2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:d8100a572fa9a27aa843bb7911f61333356b383bac17133613e6d97e712a510f_arm64", + "product": { + "name": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:d8100a572fa9a27aa843bb7911f61333356b383bac17133613e6d97e712a510f_arm64", + "product_id": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:d8100a572fa9a27aa843bb7911f61333356b383bac17133613e6d97e712a510f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-file-csi-driver-operator-rhel8@sha256:d8100a572fa9a27aa843bb7911f61333356b383bac17133613e6d97e712a510f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8&tag=v4.12.0-202310170157.p0.g27de526.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:46efa303c777a8956d31db5515b4b5aa55b019c86e28e49c333edd869a50b3a3_arm64", + "product": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:46efa303c777a8956d31db5515b4b5aa55b019c86e28e49c333edd869a50b3a3_arm64", + "product_id": "openshift4/ose-baremetal-installer-rhel8@sha256:46efa303c777a8956d31db5515b4b5aa55b019c86e28e49c333edd869a50b3a3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-installer-rhel8@sha256:46efa303c777a8956d31db5515b4b5aa55b019c86e28e49c333edd869a50b3a3?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8&tag=v4.12.0-202310170157.p0.g576d815.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:4591c42cb99e183672fce17f78abce878a087a77f7a66ae3ccbe26a1423d9cb0_arm64", + "product": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:4591c42cb99e183672fce17f78abce878a087a77f7a66ae3ccbe26a1423d9cb0_arm64", + "product_id": "openshift4/ose-baremetal-rhel8-operator@sha256:4591c42cb99e183672fce17f78abce878a087a77f7a66ae3ccbe26a1423d9cb0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-rhel8-operator@sha256:4591c42cb99e183672fce17f78abce878a087a77f7a66ae3ccbe26a1423d9cb0?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel8-operator&tag=v4.12.0-202310170157.p0.g968ceb0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:5d5d87517a35e917b70febf53dbb4ee3a0e8ada7c1e5343da763124f05be8fb2_arm64", + "product": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:5d5d87517a35e917b70febf53dbb4ee3a0e8ada7c1e5343da763124f05be8fb2_arm64", + "product_id": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:5d5d87517a35e917b70febf53dbb4ee3a0e8ada7c1e5343da763124f05be8fb2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-runtimecfg-rhel8@sha256:5d5d87517a35e917b70febf53dbb4ee3a0e8ada7c1e5343da763124f05be8fb2?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8&tag=v4.12.0-202310170157.p0.g23c6c0e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli-artifacts@sha256:225114bc1ecfebd3f0f7b8b6d1504dc567ff6c2c30ba641ba51931214722c9bc_arm64", + "product": { + "name": "openshift4/ose-cli-artifacts@sha256:225114bc1ecfebd3f0f7b8b6d1504dc567ff6c2c30ba641ba51931214722c9bc_arm64", + "product_id": "openshift4/ose-cli-artifacts@sha256:225114bc1ecfebd3f0f7b8b6d1504dc567ff6c2c30ba641ba51931214722c9bc_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli-artifacts@sha256:225114bc1ecfebd3f0f7b8b6d1504dc567ff6c2c30ba641ba51931214722c9bc?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cli-artifacts&tag=v4.12.0-202310170157.p0.g7aa4009.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-credential-operator@sha256:6c71c6c4ab31989ec858ee8cc788d7de4502d621b9d947a3ecbfebfe147b79a2_arm64", + "product": { + "name": "openshift4/ose-cloud-credential-operator@sha256:6c71c6c4ab31989ec858ee8cc788d7de4502d621b9d947a3ecbfebfe147b79a2_arm64", + "product_id": "openshift4/ose-cloud-credential-operator@sha256:6c71c6c4ab31989ec858ee8cc788d7de4502d621b9d947a3ecbfebfe147b79a2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-credential-operator@sha256:6c71c6c4ab31989ec858ee8cc788d7de4502d621b9d947a3ecbfebfe147b79a2?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cloud-credential-operator&tag=v4.12.0-202310170157.p0.gd4f6bca.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:e008378300c11c1c8b5fab48d13911aadbed115ad304fff265c737e234cebf63_arm64", + "product": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:e008378300c11c1c8b5fab48d13911aadbed115ad304fff265c737e234cebf63_arm64", + "product_id": "openshift4/cloud-network-config-controller-rhel8@sha256:e008378300c11c1c8b5fab48d13911aadbed115ad304fff265c737e234cebf63_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cloud-network-config-controller-rhel8@sha256:e008378300c11c1c8b5fab48d13911aadbed115ad304fff265c737e234cebf63?arch=arm64&repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel8&tag=v4.12.0-202310170157.p0.gd05b0ab.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-api-rhel8@sha256:51dac3be87753581055f8ec8e74d36322594b7705e9a447d51fe701b17065129_arm64", + "product": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:51dac3be87753581055f8ec8e74d36322594b7705e9a447d51fe701b17065129_arm64", + "product_id": "openshift4/ose-cluster-api-rhel8@sha256:51dac3be87753581055f8ec8e74d36322594b7705e9a447d51fe701b17065129_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-api-rhel8@sha256:51dac3be87753581055f8ec8e74d36322594b7705e9a447d51fe701b17065129?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel8&tag=v4.12.0-202310170157.p0.gf9c215c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-authentication-operator@sha256:7185e6ede555e1c034681eb34ed1d81af53085f39abe9a5c83330c57730ea81f_arm64", + "product": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:7185e6ede555e1c034681eb34ed1d81af53085f39abe9a5c83330c57730ea81f_arm64", + "product_id": "openshift4/ose-cluster-authentication-operator@sha256:7185e6ede555e1c034681eb34ed1d81af53085f39abe9a5c83330c57730ea81f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-authentication-operator@sha256:7185e6ede555e1c034681eb34ed1d81af53085f39abe9a5c83330c57730ea81f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-operator&tag=v4.12.0-202310170157.p0.gfe4212a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:aec25d64232c5c66e28cbb24dacb0d5238cd068890daa7b4bc47b3a51700cb5c_arm64", + "product": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:aec25d64232c5c66e28cbb24dacb0d5238cd068890daa7b4bc47b3a51700cb5c_arm64", + "product_id": "openshift4/ose-cluster-autoscaler-operator@sha256:aec25d64232c5c66e28cbb24dacb0d5238cd068890daa7b4bc47b3a51700cb5c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler-operator@sha256:aec25d64232c5c66e28cbb24dacb0d5238cd068890daa7b4bc47b3a51700cb5c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-operator&tag=v4.12.0-202310170157.p0.g8b23225.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:cf2cab12a02bd093f978627195e53f87a0e49949441be8448761963b3233ef54_arm64", + "product": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:cf2cab12a02bd093f978627195e53f87a0e49949441be8448761963b3233ef54_arm64", + "product_id": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:cf2cab12a02bd093f978627195e53f87a0e49949441be8448761963b3233ef54_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-baremetal-operator-rhel8@sha256:cf2cab12a02bd093f978627195e53f87a0e49949441be8448761963b3233ef54?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8&tag=v4.12.0-202310170157.p0.g5f4795c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-bootstrap@sha256:86d2daee5d1bfc6600b18c609d8ad4f6b6e28162d52f0b5553955243c390597d_arm64", + "product": { + "name": "openshift4/ose-cluster-bootstrap@sha256:86d2daee5d1bfc6600b18c609d8ad4f6b6e28162d52f0b5553955243c390597d_arm64", + "product_id": "openshift4/ose-cluster-bootstrap@sha256:86d2daee5d1bfc6600b18c609d8ad4f6b6e28162d52f0b5553955243c390597d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-bootstrap@sha256:86d2daee5d1bfc6600b18c609d8ad4f6b6e28162d52f0b5553955243c390597d?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap&tag=v4.12.0-202310170157.p0.g138a1cf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:3e00ce36373a3a7f196292c20b29381a90f06f0ffdf4237666e42842282e5121_arm64", + "product": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:3e00ce36373a3a7f196292c20b29381a90f06f0ffdf4237666e42842282e5121_arm64", + "product_id": "openshift4/ose-cluster-capi-rhel8-operator@sha256:3e00ce36373a3a7f196292c20b29381a90f06f0ffdf4237666e42842282e5121_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-rhel8-operator@sha256:3e00ce36373a3a7f196292c20b29381a90f06f0ffdf4237666e42842282e5121?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator&tag=v4.12.0-202310170157.p0.g3bfe36a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:3e00ce36373a3a7f196292c20b29381a90f06f0ffdf4237666e42842282e5121_arm64", + "product": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:3e00ce36373a3a7f196292c20b29381a90f06f0ffdf4237666e42842282e5121_arm64", + "product_id": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:3e00ce36373a3a7f196292c20b29381a90f06f0ffdf4237666e42842282e5121_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-operator-container-rhel8@sha256:3e00ce36373a3a7f196292c20b29381a90f06f0ffdf4237666e42842282e5121?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8&tag=v4.12.0-202310170157.p0.g3bfe36a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:d203c155bfb40e81e5a61127def21901f8e2f4c5e627e7e6cecc543e5fe1eaf2_arm64", + "product": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:d203c155bfb40e81e5a61127def21901f8e2f4c5e627e7e6cecc543e5fe1eaf2_arm64", + "product_id": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:d203c155bfb40e81e5a61127def21901f8e2f4c5e627e7e6cecc543e5fe1eaf2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:d203c155bfb40e81e5a61127def21901f8e2f4c5e627e7e6cecc543e5fe1eaf2?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8&tag=v4.12.0-202310170157.p0.g103cb2e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-config-operator@sha256:e379782ce2a9eb55180bb50ca43701cc359a53be5068ceaf4e27d52736cc8006_arm64", + "product": { + "name": "openshift4/ose-cluster-config-operator@sha256:e379782ce2a9eb55180bb50ca43701cc359a53be5068ceaf4e27d52736cc8006_arm64", + "product_id": "openshift4/ose-cluster-config-operator@sha256:e379782ce2a9eb55180bb50ca43701cc359a53be5068ceaf4e27d52736cc8006_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-config-operator@sha256:e379782ce2a9eb55180bb50ca43701cc359a53be5068ceaf4e27d52736cc8006?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-config-operator&tag=v4.12.0-202310170157.p0.gc589595.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:587b202b0230a3922af9a0eceb4e29b0d311dcd98308ec7dc9825fb4d506209e_arm64", + "product": { + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:587b202b0230a3922af9a0eceb4e29b0d311dcd98308ec7dc9825fb4d506209e_arm64", + "product_id": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:587b202b0230a3922af9a0eceb4e29b0d311dcd98308ec7dc9825fb4d506209e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:587b202b0230a3922af9a0eceb4e29b0d311dcd98308ec7dc9825fb4d506209e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8&tag=v4.12.0-202310170157.p0.g119d7a7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:6fc5d8db05cfddf32043d2d98bba1c1aab5e28dcd62595ffb340159742dca116_arm64", + "product": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:6fc5d8db05cfddf32043d2d98bba1c1aab5e28dcd62595ffb340159742dca116_arm64", + "product_id": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:6fc5d8db05cfddf32043d2d98bba1c1aab5e28dcd62595ffb340159742dca116_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:6fc5d8db05cfddf32043d2d98bba1c1aab5e28dcd62595ffb340159742dca116?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator&tag=v4.12.0-202310170157.p0.g06bd5f6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-dns-operator@sha256:3176495701cf56e0019cb5bbf3ad73f995058851311d46d18defe67cdbe9cab9_arm64", + "product": { + "name": "openshift4/ose-cluster-dns-operator@sha256:3176495701cf56e0019cb5bbf3ad73f995058851311d46d18defe67cdbe9cab9_arm64", + "product_id": "openshift4/ose-cluster-dns-operator@sha256:3176495701cf56e0019cb5bbf3ad73f995058851311d46d18defe67cdbe9cab9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-dns-operator@sha256:3176495701cf56e0019cb5bbf3ad73f995058851311d46d18defe67cdbe9cab9?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-dns-operator&tag=v4.12.0-202310170157.p0.gffebbf4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-image-registry-operator@sha256:f27a5f014318c884ac9aa75f8d850327c059575863b2ece6b85036df2218d231_arm64", + "product": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:f27a5f014318c884ac9aa75f8d850327c059575863b2ece6b85036df2218d231_arm64", + "product_id": "openshift4/ose-cluster-image-registry-operator@sha256:f27a5f014318c884ac9aa75f8d850327c059575863b2ece6b85036df2218d231_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-image-registry-operator@sha256:f27a5f014318c884ac9aa75f8d850327c059575863b2ece6b85036df2218d231?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-operator&tag=v4.12.0-202310170157.p0.ge9a895a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-ingress-operator@sha256:fe9322dff2debc9e36814e22880fb6e7491d012c9029513bf56fc6364ad10cb0_arm64", + "product": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:fe9322dff2debc9e36814e22880fb6e7491d012c9029513bf56fc6364ad10cb0_arm64", + "product_id": "openshift4/ose-cluster-ingress-operator@sha256:fe9322dff2debc9e36814e22880fb6e7491d012c9029513bf56fc6364ad10cb0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-ingress-operator@sha256:fe9322dff2debc9e36814e22880fb6e7491d012c9029513bf56fc6364ad10cb0?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-operator&tag=v4.12.0-202310170157.p0.g0bb8ffc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:949000a13493b8439941eefb34091d5c75cd8f5e1264c194280cbec6ea92b446_arm64", + "product": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:949000a13493b8439941eefb34091d5c75cd8f5e1264c194280cbec6ea92b446_arm64", + "product_id": "openshift4/ose-cluster-kube-apiserver-operator@sha256:949000a13493b8439941eefb34091d5c75cd8f5e1264c194280cbec6ea92b446_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-apiserver-operator@sha256:949000a13493b8439941eefb34091d5c75cd8f5e1264c194280cbec6ea92b446?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator&tag=v4.12.0-202310170157.p0.gfe5e2a1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:08d0db37be90b58b72a90a28bcdd98831e2aa400d6581aaa5eb0976009d0b1fc_arm64", + "product": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:08d0db37be90b58b72a90a28bcdd98831e2aa400d6581aaa5eb0976009d0b1fc_arm64", + "product_id": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:08d0db37be90b58b72a90a28bcdd98831e2aa400d6581aaa5eb0976009d0b1fc_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel8-operator@sha256:08d0db37be90b58b72a90a28bcdd98831e2aa400d6581aaa5eb0976009d0b1fc?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator&tag=v4.12.0-202310170157.p0.g7bb0546.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:7a7552b4b24923e2b0e26346207bf177e7cedfcbb9dccfaa2a9d7b57aa7043c1_arm64", + "product": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:7a7552b4b24923e2b0e26346207bf177e7cedfcbb9dccfaa2a9d7b57aa7043c1_arm64", + "product_id": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:7a7552b4b24923e2b0e26346207bf177e7cedfcbb9dccfaa2a9d7b57aa7043c1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-controller-manager-operator@sha256:7a7552b4b24923e2b0e26346207bf177e7cedfcbb9dccfaa2a9d7b57aa7043c1?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator&tag=v4.12.0-202310170157.p0.g7f494d3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:b24027ca21ab5ba968e19386d817f0eae48e82e0c66e38dda10ef406f7e32ca5_arm64", + "product": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:b24027ca21ab5ba968e19386d817f0eae48e82e0c66e38dda10ef406f7e32ca5_arm64", + "product_id": "openshift4/ose-cluster-kube-scheduler-operator@sha256:b24027ca21ab5ba968e19386d817f0eae48e82e0c66e38dda10ef406f7e32ca5_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-scheduler-operator@sha256:b24027ca21ab5ba968e19386d817f0eae48e82e0c66e38dda10ef406f7e32ca5?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator&tag=v4.12.0-202310170157.p0.g4f0ac8d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:32fc5ee7e20dfa94da33c2a2eb77dca371664e36053307f02f1c8284c9d5ea98_arm64", + "product": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:32fc5ee7e20dfa94da33c2a2eb77dca371664e36053307f02f1c8284c9d5ea98_arm64", + "product_id": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:32fc5ee7e20dfa94da33c2a2eb77dca371664e36053307f02f1c8284c9d5ea98_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:32fc5ee7e20dfa94da33c2a2eb77dca371664e36053307f02f1c8284c9d5ea98?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator&tag=v4.12.0-202310170157.p0.g12d050a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-machine-approver@sha256:c7b5aa3fde316fc138c5ad05ec9025c0f9f69ce75d0d0e375258544b3561d5e9_arm64", + "product": { + "name": "openshift4/ose-cluster-machine-approver@sha256:c7b5aa3fde316fc138c5ad05ec9025c0f9f69ce75d0d0e375258544b3561d5e9_arm64", + "product_id": "openshift4/ose-cluster-machine-approver@sha256:c7b5aa3fde316fc138c5ad05ec9025c0f9f69ce75d0d0e375258544b3561d5e9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-machine-approver@sha256:c7b5aa3fde316fc138c5ad05ec9025c0f9f69ce75d0d0e375258544b3561d5e9?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver&tag=v4.12.0-202310170157.p0.g6008198.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:f6ba4e6ea73901e3c8c17d8beb7f810ac9a09a6da79dec7435e7f684ee44bb3e_arm64", + "product": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:f6ba4e6ea73901e3c8c17d8beb7f810ac9a09a6da79dec7435e7f684ee44bb3e_arm64", + "product_id": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:f6ba4e6ea73901e3c8c17d8beb7f810ac9a09a6da79dec7435e7f684ee44bb3e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-apiserver-operator@sha256:f6ba4e6ea73901e3c8c17d8beb7f810ac9a09a6da79dec7435e7f684ee44bb3e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator&tag=v4.12.0-202310170157.p0.g9919792.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:c2758df51e6020abb5cd68accaf248fc1c448213b7184b037b82fe709a2352fa_arm64", + "product": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:c2758df51e6020abb5cd68accaf248fc1c448213b7184b037b82fe709a2352fa_arm64", + "product_id": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:c2758df51e6020abb5cd68accaf248fc1c448213b7184b037b82fe709a2352fa_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-controller-manager-operator@sha256:c2758df51e6020abb5cd68accaf248fc1c448213b7184b037b82fe709a2352fa?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator&tag=v4.12.0-202310170157.p0.gd1915d1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:beb7777da67bb50962ac498b3bf79479164a0019e9c1ed5110a842fafad4f8ba_arm64", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:beb7777da67bb50962ac498b3bf79479164a0019e9c1ed5110a842fafad4f8ba_arm64", + "product_id": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:beb7777da67bb50962ac498b3bf79479164a0019e9c1ed5110a842fafad4f8ba_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8-operator@sha256:beb7777da67bb50962ac498b3bf79479164a0019e9c1ed5110a842fafad4f8ba?arch=arm64&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator&tag=v4.12.0-202310170157.p0.g35c7cb9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:2cd82f530d622ebca9b1f40f16562f9a73d1bcb19d4a316b6ea41cfc26f805b6_arm64", + "product": { + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:2cd82f530d622ebca9b1f40f16562f9a73d1bcb19d4a316b6ea41cfc26f805b6_arm64", + "product_id": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:2cd82f530d622ebca9b1f40f16562f9a73d1bcb19d4a316b6ea41cfc26f805b6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-platform-operators-manager-rhel8@sha256:2cd82f530d622ebca9b1f40f16562f9a73d1bcb19d4a316b6ea41cfc26f805b6?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8&tag=v4.12.0-202310170157.p0.gd40fae8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:ce5a6c4ba1ab7262ae5a48e10bb7943168469422552e9ffade6829cd8588e5d0_arm64", + "product": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:ce5a6c4ba1ab7262ae5a48e10bb7943168469422552e9ffade6829cd8588e5d0_arm64", + "product_id": "openshift4/ose-cluster-policy-controller-rhel8@sha256:ce5a6c4ba1ab7262ae5a48e10bb7943168469422552e9ffade6829cd8588e5d0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-policy-controller-rhel8@sha256:ce5a6c4ba1ab7262ae5a48e10bb7943168469422552e9ffade6829cd8588e5d0?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8&tag=v4.12.0-202310170157.p0.g67ef456.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-samples-operator@sha256:62b16e9d2486fc0cd6697103a7be9d58ca8927d78162d574ba8cdf3822b935d3_arm64", + "product": { + "name": "openshift4/ose-cluster-samples-operator@sha256:62b16e9d2486fc0cd6697103a7be9d58ca8927d78162d574ba8cdf3822b935d3_arm64", + "product_id": "openshift4/ose-cluster-samples-operator@sha256:62b16e9d2486fc0cd6697103a7be9d58ca8927d78162d574ba8cdf3822b935d3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-samples-operator@sha256:62b16e9d2486fc0cd6697103a7be9d58ca8927d78162d574ba8cdf3822b935d3?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-samples-operator&tag=v4.12.0-202310170157.p0.gf1b49e3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-storage-operator@sha256:5f139751bc998bf4320ee2d3698fecb335f42f6ed79165cad9df9b28644e8748_arm64", + "product": { + "name": "openshift4/ose-cluster-storage-operator@sha256:5f139751bc998bf4320ee2d3698fecb335f42f6ed79165cad9df9b28644e8748_arm64", + "product_id": "openshift4/ose-cluster-storage-operator@sha256:5f139751bc998bf4320ee2d3698fecb335f42f6ed79165cad9df9b28644e8748_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-storage-operator@sha256:5f139751bc998bf4320ee2d3698fecb335f42f6ed79165cad9df9b28644e8748?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-storage-operator&tag=v4.12.0-202310170157.p0.g7ac84a9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:3c89f2516f80925c45fbbc88a8b8e3811c7fb24e363a7be2418c03fd6e5a23a9_arm64", + "product": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:3c89f2516f80925c45fbbc88a8b8e3811c7fb24e363a7be2418c03fd6e5a23a9_arm64", + "product_id": "openshift4/ose-container-networking-plugins-rhel8@sha256:3c89f2516f80925c45fbbc88a8b8e3811c7fb24e363a7be2418c03fd6e5a23a9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-container-networking-plugins-rhel8@sha256:3c89f2516f80925c45fbbc88a8b8e3811c7fb24e363a7be2418c03fd6e5a23a9?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8&tag=v4.12.0-202310170157.p0.g6d23772.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:77a49f891119fe926b33b792a8f04b13a1b139e557cd63d38a9ef597ca7f6564_arm64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:77a49f891119fe926b33b792a8f04b13a1b139e557cd63d38a9ef597ca7f6564_arm64", + "product_id": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:77a49f891119fe926b33b792a8f04b13a1b139e557cd63d38a9ef597ca7f6564_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-rhel8@sha256:77a49f891119fe926b33b792a8f04b13a1b139e557cd63d38a9ef597ca7f6564?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8&tag=v4.12.0-202310170157.p0.g20cffc0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:f7308b096f72a0af75c38c2a43295432a94f079d8ebccb59b46844a95e4df8d5_arm64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:f7308b096f72a0af75c38c2a43295432a94f079d8ebccb59b46844a95e4df8d5_arm64", + "product_id": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:f7308b096f72a0af75c38c2a43295432a94f079d8ebccb59b46844a95e4df8d5_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-operator-rhel8@sha256:f7308b096f72a0af75c38c2a43295432a94f079d8ebccb59b46844a95e4df8d5?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8&tag=v4.12.0-202310170157.p0.g3201431.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:32ccc163238554f55bfa03d3225dc04a646b322969bcf716bdd9b2ed35a1026c_arm64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:32ccc163238554f55bfa03d3225dc04a646b322969bcf716bdd9b2ed35a1026c_arm64", + "product_id": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:32ccc163238554f55bfa03d3225dc04a646b322969bcf716bdd9b2ed35a1026c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-webhook-rhel8@sha256:32ccc163238554f55bfa03d3225dc04a646b322969bcf716bdd9b2ed35a1026c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8&tag=v4.12.0-202310170157.p0.g20cffc0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer@sha256:d6088accc453eef8b327eded0126370118d4acd50eecc471011a7576e955fd77_arm64", + "product": { + "name": "openshift4/ose-csi-external-resizer@sha256:d6088accc453eef8b327eded0126370118d4acd50eecc471011a7576e955fd77_arm64", + "product_id": "openshift4/ose-csi-external-resizer@sha256:d6088accc453eef8b327eded0126370118d4acd50eecc471011a7576e955fd77_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer@sha256:d6088accc453eef8b327eded0126370118d4acd50eecc471011a7576e955fd77?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer&tag=v4.12.0-202310170157.p0.g239d751.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:d6088accc453eef8b327eded0126370118d4acd50eecc471011a7576e955fd77_arm64", + "product": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:d6088accc453eef8b327eded0126370118d4acd50eecc471011a7576e955fd77_arm64", + "product_id": "openshift4/ose-csi-external-resizer-rhel8@sha256:d6088accc453eef8b327eded0126370118d4acd50eecc471011a7576e955fd77_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer-rhel8@sha256:d6088accc453eef8b327eded0126370118d4acd50eecc471011a7576e955fd77?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8&tag=v4.12.0-202310170157.p0.g239d751.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter@sha256:68ccc2241fcf26d7d57b6e36e20ef544b264cd5486c8b913de6cf5dbc094412a_arm64", + "product": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:68ccc2241fcf26d7d57b6e36e20ef544b264cd5486c8b913de6cf5dbc094412a_arm64", + "product_id": "openshift4/ose-csi-external-snapshotter@sha256:68ccc2241fcf26d7d57b6e36e20ef544b264cd5486c8b913de6cf5dbc094412a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter@sha256:68ccc2241fcf26d7d57b6e36e20ef544b264cd5486c8b913de6cf5dbc094412a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter&tag=v4.12.0-202310170157.p0.g7e23256.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:68ccc2241fcf26d7d57b6e36e20ef544b264cd5486c8b913de6cf5dbc094412a_arm64", + "product": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:68ccc2241fcf26d7d57b6e36e20ef544b264cd5486c8b913de6cf5dbc094412a_arm64", + "product_id": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:68ccc2241fcf26d7d57b6e36e20ef544b264cd5486c8b913de6cf5dbc094412a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter-rhel8@sha256:68ccc2241fcf26d7d57b6e36e20ef544b264cd5486c8b913de6cf5dbc094412a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8&tag=v4.12.0-202310170157.p0.g7e23256.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller@sha256:162eab862188bab6b657d80181a28a3e36e93221ca0fc2b5840fc8ad0458ad64_arm64", + "product": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:162eab862188bab6b657d80181a28a3e36e93221ca0fc2b5840fc8ad0458ad64_arm64", + "product_id": "openshift4/ose-csi-snapshot-controller@sha256:162eab862188bab6b657d80181a28a3e36e93221ca0fc2b5840fc8ad0458ad64_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller@sha256:162eab862188bab6b657d80181a28a3e36e93221ca0fc2b5840fc8ad0458ad64?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller&tag=v4.12.0-202310170157.p0.g7e23256.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:162eab862188bab6b657d80181a28a3e36e93221ca0fc2b5840fc8ad0458ad64_arm64", + "product": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:162eab862188bab6b657d80181a28a3e36e93221ca0fc2b5840fc8ad0458ad64_arm64", + "product_id": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:162eab862188bab6b657d80181a28a3e36e93221ca0fc2b5840fc8ad0458ad64_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller-rhel8@sha256:162eab862188bab6b657d80181a28a3e36e93221ca0fc2b5840fc8ad0458ad64?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8&tag=v4.12.0-202310170157.p0.g7e23256.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:059542cfffed229d23dfaca710959f9a8ced4709e94a5176d7641623fda20fc4_arm64", + "product": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:059542cfffed229d23dfaca710959f9a8ced4709e94a5176d7641623fda20fc4_arm64", + "product_id": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:059542cfffed229d23dfaca710959f9a8ced4709e94a5176d7641623fda20fc4_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-validation-webhook-rhel8@sha256:059542cfffed229d23dfaca710959f9a8ced4709e94a5176d7641623fda20fc4?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8&tag=v4.12.0-202310170157.p0.g7e23256.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/egress-router-cni-rhel8@sha256:8971938b624483a0845cbda355b6e55e26bb95f87f1e6c252b3fa36c68df7ea1_arm64", + "product": { + "name": "openshift4/egress-router-cni-rhel8@sha256:8971938b624483a0845cbda355b6e55e26bb95f87f1e6c252b3fa36c68df7ea1_arm64", + "product_id": "openshift4/egress-router-cni-rhel8@sha256:8971938b624483a0845cbda355b6e55e26bb95f87f1e6c252b3fa36c68df7ea1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/egress-router-cni-rhel8@sha256:8971938b624483a0845cbda355b6e55e26bb95f87f1e6c252b3fa36c68df7ea1?arch=arm64&repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel8&tag=v4.12.0-202310170157.p0.ga92e415.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-etcd@sha256:09ad16e769ae8555411a8528548e050f077e51d83907541a3fe11f1c6aa56b35_arm64", + "product": { + "name": "openshift4/ose-etcd@sha256:09ad16e769ae8555411a8528548e050f077e51d83907541a3fe11f1c6aa56b35_arm64", + "product_id": "openshift4/ose-etcd@sha256:09ad16e769ae8555411a8528548e050f077e51d83907541a3fe11f1c6aa56b35_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-etcd@sha256:09ad16e769ae8555411a8528548e050f077e51d83907541a3fe11f1c6aa56b35?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-etcd&tag=v4.12.0-202310170157.p0.g9f987a5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hypershift-rhel8@sha256:fca6dc942d60172dd85e244a46cf342c0532c87f89732ae599be6771efb0bd32_arm64", + "product": { + "name": "openshift4/ose-hypershift-rhel8@sha256:fca6dc942d60172dd85e244a46cf342c0532c87f89732ae599be6771efb0bd32_arm64", + "product_id": "openshift4/ose-hypershift-rhel8@sha256:fca6dc942d60172dd85e244a46cf342c0532c87f89732ae599be6771efb0bd32_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-hypershift-rhel8@sha256:fca6dc942d60172dd85e244a46cf342c0532c87f89732ae599be6771efb0bd32?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel8&tag=v4.12.0-202310170157.p0.g6f1e701.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-image-customization-controller-rhel8@sha256:125debe4fb4d1ea42fb6157c161c11b944b1521f0d762b656e60b8c5c101f6fe_arm64", + "product": { + "name": "openshift4/ose-image-customization-controller-rhel8@sha256:125debe4fb4d1ea42fb6157c161c11b944b1521f0d762b656e60b8c5c101f6fe_arm64", + "product_id": "openshift4/ose-image-customization-controller-rhel8@sha256:125debe4fb4d1ea42fb6157c161c11b944b1521f0d762b656e60b8c5c101f6fe_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-image-customization-controller-rhel8@sha256:125debe4fb4d1ea42fb6157c161c11b944b1521f0d762b656e60b8c5c101f6fe?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel8&tag=v4.12.0-202310170157.p0.g30adb68.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-insights-rhel8-operator@sha256:db02240dc42221cb6c4581de64ee4cec1595601687114e287fcb3cca828c6584_arm64", + "product": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:db02240dc42221cb6c4581de64ee4cec1595601687114e287fcb3cca828c6584_arm64", + "product_id": "openshift4/ose-insights-rhel8-operator@sha256:db02240dc42221cb6c4581de64ee4cec1595601687114e287fcb3cca828c6584_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-insights-rhel8-operator@sha256:db02240dc42221cb6c4581de64ee4cec1595601687114e287fcb3cca828c6584?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-insights-rhel8-operator&tag=v4.12.0-202310170157.p0.g6c16f87.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer-artifacts@sha256:d9c5b90903b52de1497c142035b480fceefd8ac7866d3c0046f5ffcad42fad1a_arm64", + "product": { + "name": "openshift4/ose-installer-artifacts@sha256:d9c5b90903b52de1497c142035b480fceefd8ac7866d3c0046f5ffcad42fad1a_arm64", + "product_id": "openshift4/ose-installer-artifacts@sha256:d9c5b90903b52de1497c142035b480fceefd8ac7866d3c0046f5ffcad42fad1a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer-artifacts@sha256:d9c5b90903b52de1497c142035b480fceefd8ac7866d3c0046f5ffcad42fad1a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-installer-artifacts&tag=v4.12.0-202310170157.p0.g576d815.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer@sha256:c2a7a81089733938f90aee97e35694a31b934d274ea1f3d348e7f820503e165d_arm64", + "product": { + "name": "openshift4/ose-installer@sha256:c2a7a81089733938f90aee97e35694a31b934d274ea1f3d348e7f820503e165d_arm64", + "product_id": "openshift4/ose-installer@sha256:c2a7a81089733938f90aee97e35694a31b934d274ea1f3d348e7f820503e165d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer@sha256:c2a7a81089733938f90aee97e35694a31b934d274ea1f3d348e7f820503e165d?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-installer&tag=v4.12.0-202310170157.p0.g576d815.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:4ae688391bcb77f2cbb91e85f551bcea67425ef990d28a6f7d9bbbf0bcf88880_arm64", + "product": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:4ae688391bcb77f2cbb91e85f551bcea67425ef990d28a6f7d9bbbf0bcf88880_arm64", + "product_id": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:4ae688391bcb77f2cbb91e85f551bcea67425ef990d28a6f7d9bbbf0bcf88880_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-storage-version-migrator-rhel8@sha256:4ae688391bcb77f2cbb91e85f551bcea67425ef990d28a6f7d9bbbf0bcf88880?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8&tag=v4.12.0-202310170157.p0.g596745c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:cb49feebf2be187e5f91e48c57c9854020da00f8bf0877d791f1c0f35628b07e_arm64", + "product": { + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:cb49feebf2be187e5f91e48c57c9854020da00f8bf0877d791f1c0f35628b07e_arm64", + "product_id": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:cb49feebf2be187e5f91e48c57c9854020da00f8bf0877d791f1c0f35628b07e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel8@sha256:cb49feebf2be187e5f91e48c57c9854020da00f8bf0877d791f1c0f35628b07e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.ga19615c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:3d92ea9f6af0f7c6d9e0754e66226351de3cba5fef5c05d93e7349ddf4cfc02d_arm64", + "product": { + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:3d92ea9f6af0f7c6d9e0754e66226351de3cba5fef5c05d93e7349ddf4cfc02d_arm64", + "product_id": "openshift4/kubevirt-csi-driver-rhel8@sha256:3d92ea9f6af0f7c6d9e0754e66226351de3cba5fef5c05d93e7349ddf4cfc02d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-csi-driver-rhel8@sha256:3d92ea9f6af0f7c6d9e0754e66226351de3cba5fef5c05d93e7349ddf4cfc02d?arch=arm64&repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8&tag=v4.12.0-202310170157.p0.gf407c8a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-libvirt-machine-controllers@sha256:cda667f8012a9dec78e291ddc14375d645c23be38159f0b9b7488abef1648d80_arm64", + "product": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:cda667f8012a9dec78e291ddc14375d645c23be38159f0b9b7488abef1648d80_arm64", + "product_id": "openshift4/ose-libvirt-machine-controllers@sha256:cda667f8012a9dec78e291ddc14375d645c23be38159f0b9b7488abef1648d80_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-libvirt-machine-controllers@sha256:cda667f8012a9dec78e291ddc14375d645c23be38159f0b9b7488abef1648d80?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers&tag=v4.12.0-202310170157.p0.ga2882f7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-operator@sha256:5430f425fff28b53918e881f29c8e6e329b5b75d018d6185279b5f7f809dcc84_arm64", + "product": { + "name": "openshift4/ose-machine-api-operator@sha256:5430f425fff28b53918e881f29c8e6e329b5b75d018d6185279b5f7f809dcc84_arm64", + "product_id": "openshift4/ose-machine-api-operator@sha256:5430f425fff28b53918e881f29c8e6e329b5b75d018d6185279b5f7f809dcc84_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-operator@sha256:5430f425fff28b53918e881f29c8e6e329b5b75d018d6185279b5f7f809dcc84?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-api-operator&tag=v4.12.0-202310170157.p0.ga6c42a4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:873875706f3a6d48f30416a08f0a2a6d484f9184ebd8c31975011ff641d69f76_arm64", + "product": { + "name": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:873875706f3a6d48f30416a08f0a2a6d484f9184ebd8c31975011ff641d69f76_arm64", + "product_id": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:873875706f3a6d48f30416a08f0a2a6d484f9184ebd8c31975011ff641d69f76_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-aws-rhel8@sha256:873875706f3a6d48f30416a08f0a2a6d484f9184ebd8c31975011ff641d69f76?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8&tag=v4.12.0-202310170157.p0.gb82e889.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:cfe59c54195440edf7e3e4c2f564200fc3dd21ee6cc71c19efe1acfb8e5300de_arm64", + "product": { + "name": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:cfe59c54195440edf7e3e4c2f564200fc3dd21ee6cc71c19efe1acfb8e5300de_arm64", + "product_id": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:cfe59c54195440edf7e3e4c2f564200fc3dd21ee6cc71c19efe1acfb8e5300de_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-azure-rhel8@sha256:cfe59c54195440edf7e3e4c2f564200fc3dd21ee6cc71c19efe1acfb8e5300de?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8&tag=v4.12.0-202310170157.p0.ge7f42fa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:ec36acaf546616c13efbfde39f447431d5909c93096918cae996e901eec162d3_arm64", + "product": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:ec36acaf546616c13efbfde39f447431d5909c93096918cae996e901eec162d3_arm64", + "product_id": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:ec36acaf546616c13efbfde39f447431d5909c93096918cae996e901eec162d3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-openstack-rhel8@sha256:ec36acaf546616c13efbfde39f447431d5909c93096918cae996e901eec162d3?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8&tag=v4.12.0-202310170157.p0.g0565766.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-config-operator@sha256:958cba50190ec4ea2458d8be997c5ca3e32647431ec6ab5e2ec91a4a542fa6dc_arm64", + "product": { + "name": "openshift4/ose-machine-config-operator@sha256:958cba50190ec4ea2458d8be997c5ca3e32647431ec6ab5e2ec91a4a542fa6dc_arm64", + "product_id": "openshift4/ose-machine-config-operator@sha256:958cba50190ec4ea2458d8be997c5ca3e32647431ec6ab5e2ec91a4a542fa6dc_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-config-operator@sha256:958cba50190ec4ea2458d8be997c5ca3e32647431ec6ab5e2ec91a4a542fa6dc?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-config-operator&tag=v4.12.0-202310170157.p0.gb483cdd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-os-images-rhel8@sha256:d6e1154937e13deacc97f7d9aad996140afa71446cf39193eaaf6d0f4647eb67_arm64", + "product": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:d6e1154937e13deacc97f7d9aad996140afa71446cf39193eaaf6d0f4647eb67_arm64", + "product_id": "openshift4/ose-machine-os-images-rhel8@sha256:d6e1154937e13deacc97f7d9aad996140afa71446cf39193eaaf6d0f4647eb67_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-os-images-rhel8@sha256:d6e1154937e13deacc97f7d9aad996140afa71446cf39193eaaf6d0f4647eb67?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel8&tag=v4.12.0-202310170157.p0.g566bf59.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-admission-controller@sha256:256c52deaac198a61196ded32f655add51b408f0e5e1e89cb67486a9f02bdb8f_arm64", + "product": { + "name": "openshift4/ose-multus-admission-controller@sha256:256c52deaac198a61196ded32f655add51b408f0e5e1e89cb67486a9f02bdb8f_arm64", + "product_id": "openshift4/ose-multus-admission-controller@sha256:256c52deaac198a61196ded32f655add51b408f0e5e1e89cb67486a9f02bdb8f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-admission-controller@sha256:256c52deaac198a61196ded32f655add51b408f0e5e1e89cb67486a9f02bdb8f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller&tag=v4.12.0-202310170157.p0.g5bd752a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:26ab9e7846e081799f4e55049999a35582a4ebf44babcb82656a26a8bed0085a_arm64", + "product": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:26ab9e7846e081799f4e55049999a35582a4ebf44babcb82656a26a8bed0085a_arm64", + "product_id": "openshift4/ose-multus-networkpolicy-rhel8@sha256:26ab9e7846e081799f4e55049999a35582a4ebf44babcb82656a26a8bed0085a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-networkpolicy-rhel8@sha256:26ab9e7846e081799f4e55049999a35582a4ebf44babcb82656a26a8bed0085a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8&tag=v4.12.0-202310170157.p0.g421718a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:7d73a39f218f5a0b70940d55af74c1a3e4855d7e55786d23fb8bf8a44494c8eb_arm64", + "product": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:7d73a39f218f5a0b70940d55af74c1a3e4855d7e55786d23fb8bf8a44494c8eb_arm64", + "product_id": "openshift4/ose-multus-route-override-cni-rhel8@sha256:7d73a39f218f5a0b70940d55af74c1a3e4855d7e55786d23fb8bf8a44494c8eb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-route-override-cni-rhel8@sha256:7d73a39f218f5a0b70940d55af74c1a3e4855d7e55786d23fb8bf8a44494c8eb?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8&tag=v4.12.0-202310170157.p0.gefd6ffb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:e8fbb67fe36081acd706711ffc7ab9144d0f9800c5a96dd8f8416d0271d5ff24_arm64", + "product": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:e8fbb67fe36081acd706711ffc7ab9144d0f9800c5a96dd8f8416d0271d5ff24_arm64", + "product_id": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:e8fbb67fe36081acd706711ffc7ab9144d0f9800c5a96dd8f8416d0271d5ff24_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel8@sha256:e8fbb67fe36081acd706711ffc7ab9144d0f9800c5a96dd8f8416d0271d5ff24?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8&tag=v4.12.0-202310170157.p0.ge56594f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-must-gather@sha256:c5fe8ae3b4e9798601e0e55242b090d0ce20da26ce90a41f7ae481f958a20296_arm64", + "product": { + "name": "openshift4/ose-must-gather@sha256:c5fe8ae3b4e9798601e0e55242b090d0ce20da26ce90a41f7ae481f958a20296_arm64", + "product_id": "openshift4/ose-must-gather@sha256:c5fe8ae3b4e9798601e0e55242b090d0ce20da26ce90a41f7ae481f958a20296_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-must-gather@sha256:c5fe8ae3b4e9798601e0e55242b090d0ce20da26ce90a41f7ae481f958a20296?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-must-gather&tag=v4.12.0-202310170157.p0.g5fd2176.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:edb0194db6fec827a50992ffaf2804a96234c3b5dee7aada757f6f6982052435_arm64", + "product": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:edb0194db6fec827a50992ffaf2804a96234c3b5dee7aada757f6f6982052435_arm64", + "product_id": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:edb0194db6fec827a50992ffaf2804a96234c3b5dee7aada757f6f6982052435_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-interface-bond-cni-rhel8@sha256:edb0194db6fec827a50992ffaf2804a96234c3b5dee7aada757f6f6982052435?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8&tag=v4.12.0-202310170157.p0.g30386d6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:3086f431a5a1407d7e2db928d6ae722831d891d422516105e039bbfa071e2eb8_arm64", + "product": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:3086f431a5a1407d7e2db928d6ae722831d891d422516105e039bbfa071e2eb8_arm64", + "product_id": "openshift4/ose-network-metrics-daemon-rhel8@sha256:3086f431a5a1407d7e2db928d6ae722831d891d422516105e039bbfa071e2eb8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-metrics-daemon-rhel8@sha256:3086f431a5a1407d7e2db928d6ae722831d891d422516105e039bbfa071e2eb8?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8&tag=v4.12.0-202310170157.p0.g74202ec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/network-tools-rhel8@sha256:c97ddb479618fd7ac247b4aa5f2fde5937fcf4bfd2f61736f2334f73ff4e2cf8_arm64", + "product": { + "name": "openshift4/network-tools-rhel8@sha256:c97ddb479618fd7ac247b4aa5f2fde5937fcf4bfd2f61736f2334f73ff4e2cf8_arm64", + "product_id": "openshift4/network-tools-rhel8@sha256:c97ddb479618fd7ac247b4aa5f2fde5937fcf4bfd2f61736f2334f73ff4e2cf8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/network-tools-rhel8@sha256:c97ddb479618fd7ac247b4aa5f2fde5937fcf4bfd2f61736f2334f73ff4e2cf8?arch=arm64&repository_url=registry.redhat.io/openshift4/network-tools-rhel8&tag=v4.12.0-202310170157.p0.gc76613c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sdn-rhel8@sha256:32110324b2db9e58dafba6cca000d37349ac6a371205696a0f1a7e4c4a8fdbfd_arm64", + "product": { + "name": "openshift4/ose-sdn-rhel8@sha256:32110324b2db9e58dafba6cca000d37349ac6a371205696a0f1a7e4c4a8fdbfd_arm64", + "product_id": "openshift4/ose-sdn-rhel8@sha256:32110324b2db9e58dafba6cca000d37349ac6a371205696a0f1a7e4c4a8fdbfd_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sdn-rhel8@sha256:32110324b2db9e58dafba6cca000d37349ac6a371205696a0f1a7e4c4a8fdbfd?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-sdn-rhel8&tag=v4.12.0-202310170157.p0.gdc9f9af.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:4282b28c75925e2bdcbe652804454ffec089f88aec48a055c80df61ea7b8b0d6_arm64", + "product": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:4282b28c75925e2bdcbe652804454ffec089f88aec48a055c80df61ea7b8b0d6_arm64", + "product_id": "openshift4/ose-oauth-apiserver-rhel8@sha256:4282b28c75925e2bdcbe652804454ffec089f88aec48a055c80df61ea7b8b0d6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-apiserver-rhel8@sha256:4282b28c75925e2bdcbe652804454ffec089f88aec48a055c80df61ea7b8b0d6?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8&tag=v4.12.0-202310170157.p0.gcfafdcc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:5790ad0aa01cc634bab95cbf7daf5c925025ec140ed4443d7d2f5aef52953da0_arm64", + "product": { + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:5790ad0aa01cc634bab95cbf7daf5c925025ec140ed4443d7d2f5aef52953da0_arm64", + "product_id": "openshift4/ose-olm-rukpak-rhel8@sha256:5790ad0aa01cc634bab95cbf7daf5c925025ec140ed4443d7d2f5aef52953da0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-olm-rukpak-rhel8@sha256:5790ad0aa01cc634bab95cbf7daf5c925025ec140ed4443d7d2f5aef52953da0?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-olm-rukpak-rhel8&tag=v4.12.0-202310170157.p0.g1b52bfe.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:b5bd7edaf08ad5c508b7af6200579c94627ed83260fdec10ea91ccb20fd23d36_arm64", + "product": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:b5bd7edaf08ad5c508b7af6200579c94627ed83260fdec10ea91ccb20fd23d36_arm64", + "product_id": "openshift4/ose-openshift-apiserver-rhel8@sha256:b5bd7edaf08ad5c508b7af6200579c94627ed83260fdec10ea91ccb20fd23d36_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-apiserver-rhel8@sha256:b5bd7edaf08ad5c508b7af6200579c94627ed83260fdec10ea91ccb20fd23d36?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8&tag=v4.12.0-202310170157.p0.g635ed5c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:ddecba471411ff6899d6a0c353935d54aa904ce291c2e46093f2368b1023850f_arm64", + "product": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:ddecba471411ff6899d6a0c353935d54aa904ce291c2e46093f2368b1023850f_arm64", + "product_id": "openshift4/ose-openshift-controller-manager-rhel8@sha256:ddecba471411ff6899d6a0c353935d54aa904ce291c2e46093f2368b1023850f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-controller-manager-rhel8@sha256:ddecba471411ff6899d6a0c353935d54aa904ce291c2e46093f2368b1023850f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.gb6528f9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:00c4ead2a686cf3365fece66426b19a0f948c186d583d9ad6b0069315fe06a88_arm64", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:00c4ead2a686cf3365fece66426b19a0f948c186d583d9ad6b0069315fe06a88_arm64", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:00c4ead2a686cf3365fece66426b19a0f948c186d583d9ad6b0069315fe06a88_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8@sha256:00c4ead2a686cf3365fece66426b19a0f948c186d583d9ad6b0069315fe06a88?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8&tag=v4.12.0-202310170157.p0.g501138d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:db26900414e5b67d753bc55a3547938a594c160cdf4ba7bf41a0e690cc025279_arm64", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:db26900414e5b67d753bc55a3547938a594c160cdf4ba7bf41a0e690cc025279_arm64", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:db26900414e5b67d753bc55a3547938a594c160cdf4ba7bf41a0e690cc025279_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:db26900414e5b67d753bc55a3547938a594c160cdf4ba7bf41a0e690cc025279?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator&tag=v4.12.0-202310170703.p0.gdb5a7df.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:a51eaf7f64f370a4151586719eda87cceb09aef30480df4349e9f2c822be5d54_arm64", + "product": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:a51eaf7f64f370a4151586719eda87cceb09aef30480df4349e9f2c822be5d54_arm64", + "product_id": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:a51eaf7f64f370a4151586719eda87cceb09aef30480df4349e9f2c822be5d54_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel8@sha256:a51eaf7f64f370a4151586719eda87cceb09aef30480df4349e9f2c822be5d54?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.g501138d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-machine-controllers@sha256:d12a530941d42dcd477b64775734249f3b34ac7df09a5f15be0161e5e54f7259_arm64", + "product": { + "name": "openshift4/ose-openstack-machine-controllers@sha256:d12a530941d42dcd477b64775734249f3b34ac7df09a5f15be0161e5e54f7259_arm64", + "product_id": "openshift4/ose-openstack-machine-controllers@sha256:d12a530941d42dcd477b64775734249f3b34ac7df09a5f15be0161e5e54f7259_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-machine-controllers@sha256:d12a530941d42dcd477b64775734249f3b34ac7df09a5f15be0161e5e54f7259?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openstack-machine-controllers&tag=v4.12.0-202310170157.p0.g8bd9c35.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:38e6a3da706bbeb9cd5c9976fb0c8adb4f7603f7caa9e71a124e9a911a9b724e_arm64", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:38e6a3da706bbeb9cd5c9976fb0c8adb4f7603f7caa9e71a124e9a911a9b724e_arm64", + "product_id": "openshift4/ovirt-csi-driver-rhel8@sha256:38e6a3da706bbeb9cd5c9976fb0c8adb4f7603f7caa9e71a124e9a911a9b724e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8@sha256:38e6a3da706bbeb9cd5c9976fb0c8adb4f7603f7caa9e71a124e9a911a9b724e?arch=arm64&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8&tag=v4.12.0-202310170157.p0.g64d58fb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:38e6a3da706bbeb9cd5c9976fb0c8adb4f7603f7caa9e71a124e9a911a9b724e_arm64", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:38e6a3da706bbeb9cd5c9976fb0c8adb4f7603f7caa9e71a124e9a911a9b724e_arm64", + "product_id": "openshift4/ovirt-csi-driver-rhel7@sha256:38e6a3da706bbeb9cd5c9976fb0c8adb4f7603f7caa9e71a124e9a911a9b724e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel7@sha256:38e6a3da706bbeb9cd5c9976fb0c8adb4f7603f7caa9e71a124e9a911a9b724e?arch=arm64&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel7&tag=v4.12.0-202310170157.p0.g64d58fb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:e0cba078ef9710f176a480e905b0fa60ad8431552c04266a11b18d2234a7518e_arm64", + "product": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:e0cba078ef9710f176a480e905b0fa60ad8431552c04266a11b18d2234a7518e_arm64", + "product_id": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:e0cba078ef9710f176a480e905b0fa60ad8431552c04266a11b18d2234a7518e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovirt-machine-controllers-rhel8@sha256:e0cba078ef9710f176a480e905b0fa60ad8431552c04266a11b18d2234a7518e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8&tag=v4.12.0-202310170157.p0.g03e8cb5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes@sha256:b624451fed998bafdb84c4874f6608d10fb4598c754a9d6547856066442f7c42_arm64", + "product": { + "name": "openshift4/ose-ovn-kubernetes@sha256:b624451fed998bafdb84c4874f6608d10fb4598c754a9d6547856066442f7c42_arm64", + "product_id": "openshift4/ose-ovn-kubernetes@sha256:b624451fed998bafdb84c4874f6608d10fb4598c754a9d6547856066442f7c42_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes@sha256:b624451fed998bafdb84c4874f6608d10fb4598c754a9d6547856066442f7c42?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes&tag=v4.12.0-202310170157.p0.g97c5073.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:7d1a74a29fda9f0d106f30453c15f3d5485d9e6fc3552c736e18484603094629_arm64", + "product": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:7d1a74a29fda9f0d106f30453c15f3d5485d9e6fc3552c736e18484603094629_arm64", + "product_id": "openshift4/ose-k8s-prometheus-adapter@sha256:7d1a74a29fda9f0d106f30453c15f3d5485d9e6fc3552c736e18484603094629_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-k8s-prometheus-adapter@sha256:7d1a74a29fda9f0d106f30453c15f3d5485d9e6fc3552c736e18484603094629?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter&tag=v4.12.0-202310170157.p0.g5fc351d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:7bdd4492ce1d348342bae28c248182ecb3548d3528250dee53903a399c2f9a6a_arm64", + "product": { + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:7bdd4492ce1d348342bae28c248182ecb3548d3528250dee53903a399c2f9a6a_arm64", + "product_id": "openshift4/openshift-route-controller-manager-rhel8@sha256:7bdd4492ce1d348342bae28c248182ecb3548d3528250dee53903a399c2f9a6a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/openshift-route-controller-manager-rhel8@sha256:7bdd4492ce1d348342bae28c248182ecb3548d3528250dee53903a399c2f9a6a?arch=arm64&repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.g0f141ce.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-service-ca-operator@sha256:7fd54b30665bbcd606860df7182b5e021d3e4cf5cee1f9332a1b0c31b5a71f8e_arm64", + "product": { + "name": "openshift4/ose-service-ca-operator@sha256:7fd54b30665bbcd606860df7182b5e021d3e4cf5cee1f9332a1b0c31b5a71f8e_arm64", + "product_id": "openshift4/ose-service-ca-operator@sha256:7fd54b30665bbcd606860df7182b5e021d3e4cf5cee1f9332a1b0c31b5a71f8e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-service-ca-operator@sha256:7fd54b30665bbcd606860df7182b5e021d3e4cf5cee1f9332a1b0c31b5a71f8e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-service-ca-operator&tag=v4.12.0-202310170157.p0.g299b709.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-thanos-rhel8@sha256:b167ab08fd708667280233fc88ece58420628b801c6a74db12fd2734e4f39091_arm64", + "product": { + "name": "openshift4/ose-thanos-rhel8@sha256:b167ab08fd708667280233fc88ece58420628b801c6a74db12fd2734e4f39091_arm64", + "product_id": "openshift4/ose-thanos-rhel8@sha256:b167ab08fd708667280233fc88ece58420628b801c6a74db12fd2734e4f39091_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-thanos-rhel8@sha256:b167ab08fd708667280233fc88ece58420628b801c6a74db12fd2734e4f39091?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-thanos-rhel8&tag=v4.12.0-202310170157.p0.g9f2b5ff.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tools-rhel8@sha256:0019db0992fd34e8718ff979f41dffa08430c5fdbfe2c144444bd06a83547515_arm64", + "product": { + "name": "openshift4/ose-tools-rhel8@sha256:0019db0992fd34e8718ff979f41dffa08430c5fdbfe2c144444bd06a83547515_arm64", + "product_id": "openshift4/ose-tools-rhel8@sha256:0019db0992fd34e8718ff979f41dffa08430c5fdbfe2c144444bd06a83547515_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-tools-rhel8@sha256:0019db0992fd34e8718ff979f41dffa08430c5fdbfe2c144444bd06a83547515?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-tools-rhel8&tag=v4.12.0-202310170157.p0.g7aa4009.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:a971c4f324433cb68f3e03d79c5263e5f68541aec302c7addb4d32c48f62306a_arm64", + "product": { + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:a971c4f324433cb68f3e03d79c5263e5f68541aec302c7addb4d32c48f62306a_arm64", + "product_id": "openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:a971c4f324433cb68f3e03d79c5263e5f68541aec302c7addb4d32c48f62306a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel8@sha256:a971c4f324433cb68f3e03d79c5263e5f68541aec302c7addb4d32c48f62306a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel8&tag=v4.12.0-202310170157.p0.g97c5073.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-config-reloader@sha256:0ec75acfa72e45060e974ecd83f6cf6483bba42e4948f69882e1b8dd803c5765_arm64", + "product": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:0ec75acfa72e45060e974ecd83f6cf6483bba42e4948f69882e1b8dd803c5765_arm64", + "product_id": "openshift4/ose-prometheus-config-reloader@sha256:0ec75acfa72e45060e974ecd83f6cf6483bba42e4948f69882e1b8dd803c5765_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-config-reloader@sha256:0ec75acfa72e45060e974ecd83f6cf6483bba42e4948f69882e1b8dd803c5765?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader&tag=v4.12.0-202310170157.p0.g57e7c57.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:742862a04b084b7a42cf3148d2a28e0fcef5027a3313af72e7894e51f27e7c47_arm64", + "product": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:742862a04b084b7a42cf3148d2a28e0fcef5027a3313af72e7894e51f27e7c47_arm64", + "product_id": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:742862a04b084b7a42cf3148d2a28e0fcef5027a3313af72e7894e51f27e7c47_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel8@sha256:742862a04b084b7a42cf3148d2a28e0fcef5027a3313af72e7894e51f27e7c47?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8&tag=v4.12.0-202310170157.p0.g57e7c57.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator@sha256:5e1abdb3bffdec2fdc9815efaaf75f94a9e27aa0dcad527d0dd9d918d9f49e9c_arm64", + "product": { + "name": "openshift4/ose-prometheus-operator@sha256:5e1abdb3bffdec2fdc9815efaaf75f94a9e27aa0dcad527d0dd9d918d9f49e9c_arm64", + "product_id": "openshift4/ose-prometheus-operator@sha256:5e1abdb3bffdec2fdc9815efaaf75f94a9e27aa0dcad527d0dd9d918d9f49e9c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator@sha256:5e1abdb3bffdec2fdc9815efaaf75f94a9e27aa0dcad527d0dd9d918d9f49e9c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator&tag=v4.12.0-202310170157.p0.g57e7c57.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prom-label-proxy@sha256:99bf96ddd153b44d1dd78d73b4d2341d67d1c4b27f9612a5aadbbc4c0a76c3ec_arm64", + "product": { + "name": "openshift4/ose-prom-label-proxy@sha256:99bf96ddd153b44d1dd78d73b4d2341d67d1c4b27f9612a5aadbbc4c0a76c3ec_arm64", + "product_id": "openshift4/ose-prom-label-proxy@sha256:99bf96ddd153b44d1dd78d73b4d2341d67d1c4b27f9612a5aadbbc4c0a76c3ec_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prom-label-proxy@sha256:99bf96ddd153b44d1dd78d73b4d2341d67d1c4b27f9612a5aadbbc4c0a76c3ec?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy&tag=v4.12.0-202310170157.p0.gb190788.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-telemeter@sha256:cb4962bdad9367199f07dddf4ecf6a6544a4384f5ee33cb4032d81235e867c24_arm64", + "product": { + "name": "openshift4/ose-telemeter@sha256:cb4962bdad9367199f07dddf4ecf6a6544a4384f5ee33cb4032d81235e867c24_arm64", + "product_id": "openshift4/ose-telemeter@sha256:cb4962bdad9367199f07dddf4ecf6a6544a4384f5ee33cb4032d81235e867c24_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-telemeter@sha256:cb4962bdad9367199f07dddf4ecf6a6544a4384f5ee33cb4032d81235e867c24?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-telemeter&tag=v4.12.0-202310170157.p0.gfc631fc.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler@sha256:cd7271e0ac4bb38373a5f38e40517eb1acb88943520f48ef90ca23fd4e2780c7_amd64", + "product": { + "name": "openshift4/ose-cluster-autoscaler@sha256:cd7271e0ac4bb38373a5f38e40517eb1acb88943520f48ef90ca23fd4e2780c7_amd64", + "product_id": "openshift4/ose-cluster-autoscaler@sha256:cd7271e0ac4bb38373a5f38e40517eb1acb88943520f48ef90ca23fd4e2780c7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler@sha256:cd7271e0ac4bb38373a5f38e40517eb1acb88943520f48ef90ca23fd4e2780c7?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler&tag=v4.12.0-202310170157.p0.g6ab8e62.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-machine-controllers@sha256:622bfb8dcf923c0c74f4955a53aa3cf9c93eea62b3fce1bfa3897cfef44201bc_amd64", + "product": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:622bfb8dcf923c0c74f4955a53aa3cf9c93eea62b3fce1bfa3897cfef44201bc_amd64", + "product_id": "openshift4/ose-baremetal-machine-controllers@sha256:622bfb8dcf923c0c74f4955a53aa3cf9c93eea62b3fce1bfa3897cfef44201bc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-machine-controllers@sha256:622bfb8dcf923c0c74f4955a53aa3cf9c93eea62b3fce1bfa3897cfef44201bc?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers&tag=v4.12.0-202310170157.p0.g63dcaf1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:37a874b2f606872fa1394032e3a51be17ee65b373e44aef29a7291f732fff2a3_amd64", + "product": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:37a874b2f606872fa1394032e3a51be17ee65b373e44aef29a7291f732fff2a3_amd64", + "product_id": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:37a874b2f606872fa1394032e3a51be17ee65b373e44aef29a7291f732fff2a3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-etcd-rhel8-operator@sha256:37a874b2f606872fa1394032e3a51be17ee65b373e44aef29a7291f732fff2a3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator&tag=v4.12.0-202310170157.p0.ge49f1a3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-monitoring-operator@sha256:3f578c07616d5c00ceea6ab7138ee3add35ccf4d9b117e13ae538deee195bd27_amd64", + "product": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:3f578c07616d5c00ceea6ab7138ee3add35ccf4d9b117e13ae538deee195bd27_amd64", + "product_id": "openshift4/ose-cluster-monitoring-operator@sha256:3f578c07616d5c00ceea6ab7138ee3add35ccf4d9b117e13ae538deee195bd27_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-monitoring-operator@sha256:3f578c07616d5c00ceea6ab7138ee3add35ccf4d9b117e13ae538deee195bd27?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-operator&tag=v4.12.0-202310170157.p0.gee959ac.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-network-operator@sha256:efb8be0610a0761b9a6d074b704d85b1434cb7c507e42cf5379ef98d00fe0066_amd64", + "product": { + "name": "openshift4/ose-cluster-network-operator@sha256:efb8be0610a0761b9a6d074b704d85b1434cb7c507e42cf5379ef98d00fe0066_amd64", + "product_id": "openshift4/ose-cluster-network-operator@sha256:efb8be0610a0761b9a6d074b704d85b1434cb7c507e42cf5379ef98d00fe0066_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-network-operator@sha256:efb8be0610a0761b9a6d074b704d85b1434cb7c507e42cf5379ef98d00fe0066?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-network-operator&tag=v4.12.0-202310170157.p0.gc6d6aff.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:329d633c3926d5835e879e87b32a4a71714d9c6c3422c47e364837d91e017bf1_amd64", + "product": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:329d633c3926d5835e879e87b32a4a71714d9c6c3422c47e364837d91e017bf1_amd64", + "product_id": "openshift4/ose-cluster-node-tuning-operator@sha256:329d633c3926d5835e879e87b32a4a71714d9c6c3422c47e364837d91e017bf1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-node-tuning-operator@sha256:329d633c3926d5835e879e87b32a4a71714d9c6c3422c47e364837d91e017bf1?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-operator&tag=v4.12.0-202310170157.p0.g3326048.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-version-operator@sha256:4aa3e6094eed56ec359f4e6585e4e2f594070425a134c86770e013d94c7ea288_amd64", + "product": { + "name": "openshift4/ose-cluster-version-operator@sha256:4aa3e6094eed56ec359f4e6585e4e2f594070425a134c86770e013d94c7ea288_amd64", + "product_id": "openshift4/ose-cluster-version-operator@sha256:4aa3e6094eed56ec359f4e6585e4e2f594070425a134c86770e013d94c7ea288_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-version-operator@sha256:4aa3e6094eed56ec359f4e6585e4e2f594070425a134c86770e013d94c7ea288?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-version-operator&tag=v4.12.0-202310170157.p0.gf9785d6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-configmap-reloader@sha256:e714f1a8bcdada6e626a2e3059bca19d8fec58117792a1a1802e924bf64a60da_amd64", + "product": { + "name": "openshift4/ose-configmap-reloader@sha256:e714f1a8bcdada6e626a2e3059bca19d8fec58117792a1a1802e924bf64a60da_amd64", + "product_id": "openshift4/ose-configmap-reloader@sha256:e714f1a8bcdada6e626a2e3059bca19d8fec58117792a1a1802e924bf64a60da_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-configmap-reloader@sha256:e714f1a8bcdada6e626a2e3059bca19d8fec58117792a1a1802e924bf64a60da?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-configmap-reloader&tag=v4.12.0-202310170157.p0.ge4d9170.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-coredns@sha256:035a73154570a2cd74a3674c50f8c8395378a3620bd45e20e6618ef116bd9a18_amd64", + "product": { + "name": "openshift4/ose-coredns@sha256:035a73154570a2cd74a3674c50f8c8395378a3620bd45e20e6618ef116bd9a18_amd64", + "product_id": "openshift4/ose-coredns@sha256:035a73154570a2cd74a3674c50f8c8395378a3620bd45e20e6618ef116bd9a18_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-coredns@sha256:035a73154570a2cd74a3674c50f8c8395378a3620bd45e20e6618ef116bd9a18?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-coredns&tag=v4.12.0-202310170157.p0.g8d756b0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:ce600885810ccb3da00476fe9ae16be8861bfff9f4b521a6e15797b24d0210f3_amd64", + "product": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:ce600885810ccb3da00476fe9ae16be8861bfff9f4b521a6e15797b24d0210f3_amd64", + "product_id": "openshift4/ose-csi-external-attacher-rhel8@sha256:ce600885810ccb3da00476fe9ae16be8861bfff9f4b521a6e15797b24d0210f3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher-rhel8@sha256:ce600885810ccb3da00476fe9ae16be8861bfff9f4b521a6e15797b24d0210f3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8&tag=v4.12.0-202310170157.p0.g6945eef.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher@sha256:ce600885810ccb3da00476fe9ae16be8861bfff9f4b521a6e15797b24d0210f3_amd64", + "product": { + "name": "openshift4/ose-csi-external-attacher@sha256:ce600885810ccb3da00476fe9ae16be8861bfff9f4b521a6e15797b24d0210f3_amd64", + "product_id": "openshift4/ose-csi-external-attacher@sha256:ce600885810ccb3da00476fe9ae16be8861bfff9f4b521a6e15797b24d0210f3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher@sha256:ce600885810ccb3da00476fe9ae16be8861bfff9f4b521a6e15797b24d0210f3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher&tag=v4.12.0-202310170157.p0.g6945eef.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:2771ac02036ba7d180680bd7c9c9d456bde85b4bd1bf8f4d715d36f72991db33_amd64", + "product": { + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:2771ac02036ba7d180680bd7c9c9d456bde85b4bd1bf8f4d715d36f72991db33_amd64", + "product_id": "openshift4/ose-csi-driver-manila-rhel8@sha256:2771ac02036ba7d180680bd7c9c9d456bde85b4bd1bf8f4d715d36f72991db33_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-manila-rhel8@sha256:2771ac02036ba7d180680bd7c9c9d456bde85b4bd1bf8f4d715d36f72991db33?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8&tag=v4.12.0-202310170157.p0.g501138d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:5103feb9bd89693c0532433f825b14e8fd31c38444bd745aa9f5d05938e26280_amd64", + "product": { + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:5103feb9bd89693c0532433f825b14e8fd31c38444bd745aa9f5d05938e26280_amd64", + "product_id": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:5103feb9bd89693c0532433f825b14e8fd31c38444bd745aa9f5d05938e26280_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-manila-rhel8-operator@sha256:5103feb9bd89693c0532433f825b14e8fd31c38444bd745aa9f5d05938e26280?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator&tag=v4.12.0-202310170157.p0.ga0d079a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-nfs-rhel8@sha256:185a3dd62ad8fbd0fc0bd59e53800aa0feb971bb440c9d532381ca31504c6dca_amd64", + "product": { + "name": "openshift4/ose-csi-driver-nfs-rhel8@sha256:185a3dd62ad8fbd0fc0bd59e53800aa0feb971bb440c9d532381ca31504c6dca_amd64", + "product_id": "openshift4/ose-csi-driver-nfs-rhel8@sha256:185a3dd62ad8fbd0fc0bd59e53800aa0feb971bb440c9d532381ca31504c6dca_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-nfs-rhel8@sha256:185a3dd62ad8fbd0fc0bd59e53800aa0feb971bb440c9d532381ca31504c6dca?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8&tag=v4.12.0-202310170157.p0.gd909925.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe@sha256:a7b1692c644cdd144d8e8b4a17997604781441aee4dd0641932cf42c7686bb25_amd64", + "product": { + "name": "openshift4/ose-csi-livenessprobe@sha256:a7b1692c644cdd144d8e8b4a17997604781441aee4dd0641932cf42c7686bb25_amd64", + "product_id": "openshift4/ose-csi-livenessprobe@sha256:a7b1692c644cdd144d8e8b4a17997604781441aee4dd0641932cf42c7686bb25_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe@sha256:a7b1692c644cdd144d8e8b4a17997604781441aee4dd0641932cf42c7686bb25?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe&tag=v4.12.0-202310170157.p0.g9cb0564.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:a7b1692c644cdd144d8e8b4a17997604781441aee4dd0641932cf42c7686bb25_amd64", + "product": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:a7b1692c644cdd144d8e8b4a17997604781441aee4dd0641932cf42c7686bb25_amd64", + "product_id": "openshift4/ose-csi-livenessprobe-rhel8@sha256:a7b1692c644cdd144d8e8b4a17997604781441aee4dd0641932cf42c7686bb25_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe-rhel8@sha256:a7b1692c644cdd144d8e8b4a17997604781441aee4dd0641932cf42c7686bb25?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8&tag=v4.12.0-202310170157.p0.g9cb0564.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar@sha256:2b11dd89e9c30e695710601a853b1c6e1ac7da3ce0ab0c96c589764d03b22c6a_amd64", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:2b11dd89e9c30e695710601a853b1c6e1ac7da3ce0ab0c96c589764d03b22c6a_amd64", + "product_id": "openshift4/ose-csi-node-driver-registrar@sha256:2b11dd89e9c30e695710601a853b1c6e1ac7da3ce0ab0c96c589764d03b22c6a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar@sha256:2b11dd89e9c30e695710601a853b1c6e1ac7da3ce0ab0c96c589764d03b22c6a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar&tag=v4.12.0-202310170157.p0.g805d5ac.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:2b11dd89e9c30e695710601a853b1c6e1ac7da3ce0ab0c96c589764d03b22c6a_amd64", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:2b11dd89e9c30e695710601a853b1c6e1ac7da3ce0ab0c96c589764d03b22c6a_amd64", + "product_id": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:2b11dd89e9c30e695710601a853b1c6e1ac7da3ce0ab0c96c589764d03b22c6a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar-rhel8@sha256:2b11dd89e9c30e695710601a853b1c6e1ac7da3ce0ab0c96c589764d03b22c6a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8&tag=v4.12.0-202310170157.p0.g805d5ac.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:6c368cb4dce9683129608792113e29b6d00f402e7972beea0fd44042a8699b70_amd64", + "product": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:6c368cb4dce9683129608792113e29b6d00f402e7972beea0fd44042a8699b70_amd64", + "product_id": "openshift4/ose-csi-external-provisioner-rhel8@sha256:6c368cb4dce9683129608792113e29b6d00f402e7972beea0fd44042a8699b70_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner-rhel8@sha256:6c368cb4dce9683129608792113e29b6d00f402e7972beea0fd44042a8699b70?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8&tag=v4.12.0-202310170157.p0.g140851f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner@sha256:6c368cb4dce9683129608792113e29b6d00f402e7972beea0fd44042a8699b70_amd64", + "product": { + "name": "openshift4/ose-csi-external-provisioner@sha256:6c368cb4dce9683129608792113e29b6d00f402e7972beea0fd44042a8699b70_amd64", + "product_id": "openshift4/ose-csi-external-provisioner@sha256:6c368cb4dce9683129608792113e29b6d00f402e7972beea0fd44042a8699b70_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner@sha256:6c368cb4dce9683129608792113e29b6d00f402e7972beea0fd44042a8699b70?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner&tag=v4.12.0-202310170157.p0.g140851f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-proxy@sha256:8cee1c6d7316b2108cc2d0272ebf2932ee999c9eb05d5c6e296df362da58e9ce_amd64", + "product": { + "name": "openshift4/ose-oauth-proxy@sha256:8cee1c6d7316b2108cc2d0272ebf2932ee999c9eb05d5c6e296df362da58e9ce_amd64", + "product_id": "openshift4/ose-oauth-proxy@sha256:8cee1c6d7316b2108cc2d0272ebf2932ee999c9eb05d5c6e296df362da58e9ce_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-proxy@sha256:8cee1c6d7316b2108cc2d0272ebf2932ee999c9eb05d5c6e296df362da58e9ce?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-oauth-proxy&tag=v4.12.0-202310170157.p0.g03e5b13.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-alertmanager@sha256:738076ced738ea22a37704ba3e0dab4925ea85c0c16e41d33556818977358f50_amd64", + "product": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:738076ced738ea22a37704ba3e0dab4925ea85c0c16e41d33556818977358f50_amd64", + "product_id": "openshift4/ose-prometheus-alertmanager@sha256:738076ced738ea22a37704ba3e0dab4925ea85c0c16e41d33556818977358f50_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-alertmanager@sha256:738076ced738ea22a37704ba3e0dab4925ea85c0c16e41d33556818977358f50?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager&tag=v4.12.0-202310170157.p0.g86b1835.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-node-exporter@sha256:0ffbe781c9401b58689afb90fc6fd618f97bc465d0feffbda9e0e75a268aec2f_amd64", + "product": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:0ffbe781c9401b58689afb90fc6fd618f97bc465d0feffbda9e0e75a268aec2f_amd64", + "product_id": "openshift4/ose-prometheus-node-exporter@sha256:0ffbe781c9401b58689afb90fc6fd618f97bc465d0feffbda9e0e75a268aec2f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-node-exporter@sha256:0ffbe781c9401b58689afb90fc6fd618f97bc465d0feffbda9e0e75a268aec2f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter&tag=v4.12.0-202310170157.p0.gaf2f49c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus@sha256:fa95237ef8610b026a5a449655c0618c79f666501265dd75d07724c3427a71a1_amd64", + "product": { + "name": "openshift4/ose-prometheus@sha256:fa95237ef8610b026a5a449655c0618c79f666501265dd75d07724c3427a71a1_amd64", + "product_id": "openshift4/ose-prometheus@sha256:fa95237ef8610b026a5a449655c0618c79f666501265dd75d07724c3427a71a1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus@sha256:fa95237ef8610b026a5a449655c0618c79f666501265dd75d07724c3427a71a1?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prometheus&tag=v4.12.0-202310170157.p0.gc749fdb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:c7a9c116cb9ddffdb8a846e9119479be4235d8aed72c56768c9b6c2ace662383_amd64", + "product": { + "name": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:c7a9c116cb9ddffdb8a846e9119479be4235d8aed72c56768c9b6c2ace662383_amd64", + "product_id": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:c7a9c116cb9ddffdb8a846e9119479be4235d8aed72c56768c9b6c2ace662383_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-vpc-node-label-updater-rhel8@sha256:c7a9c116cb9ddffdb8a846e9119479be4235d8aed72c56768c9b6c2ace662383?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8&tag=v4.12.0-202310170157.p0.g737d00c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-agent-rhel9@sha256:5941895467580fd2d919851e70b68161164f32b5c66e5c112491c32eaf40cd66_amd64", + "product": { + "name": "openshift4/ose-ironic-agent-rhel9@sha256:5941895467580fd2d919851e70b68161164f32b5c66e5c112491c32eaf40cd66_amd64", + "product_id": "openshift4/ose-ironic-agent-rhel9@sha256:5941895467580fd2d919851e70b68161164f32b5c66e5c112491c32eaf40cd66_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-agent-rhel9@sha256:5941895467580fd2d919851e70b68161164f32b5c66e5c112491c32eaf40cd66?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9&tag=v4.12.0-202310170903.p0.ga822924.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-rhel9@sha256:c7f801b553bbca8e79a1614eb92e9d89e1c82d5cc7dc671414c66a86d85edac5_amd64", + "product": { + "name": "openshift4/ose-ironic-rhel9@sha256:c7f801b553bbca8e79a1614eb92e9d89e1c82d5cc7dc671414c66a86d85edac5_amd64", + "product_id": "openshift4/ose-ironic-rhel9@sha256:c7f801b553bbca8e79a1614eb92e9d89e1c82d5cc7dc671414c66a86d85edac5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-rhel9@sha256:c7f801b553bbca8e79a1614eb92e9d89e1c82d5cc7dc671414c66a86d85edac5?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9&tag=v4.12.0-202310170903.p0.ge626e7e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f50a32cb7faddfb882c862fe00430bbbb8a68ce9fdc5547f6094792b8ba5ac00_amd64", + "product": { + "name": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f50a32cb7faddfb882c862fe00430bbbb8a68ce9fdc5547f6094792b8ba5ac00_amd64", + "product_id": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f50a32cb7faddfb882c862fe00430bbbb8a68ce9fdc5547f6094792b8ba5ac00_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-machine-os-downloader-rhel9@sha256:f50a32cb7faddfb882c862fe00430bbbb8a68ce9fdc5547f6094792b8ba5ac00?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9&tag=v4.12.0-202310170903.p0.gc65c1f1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f76eec469b64b5f7e6735fb1fa1f183103917d847f7263ade52208aa4d3105c7_amd64", + "product": { + "name": "openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f76eec469b64b5f7e6735fb1fa1f183103917d847f7263ade52208aa4d3105c7_amd64", + "product_id": "openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f76eec469b64b5f7e6735fb1fa1f183103917d847f7263ade52208aa4d3105c7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-static-ip-manager-rhel9@sha256:f76eec469b64b5f7e6735fb1fa1f183103917d847f7263ade52208aa4d3105c7?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9&tag=v4.12.0-202310170903.p0.ga8ade8f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-proxy@sha256:4138f44446e6cff843860ec7a452e8b812c761f2854b5784560b472465fec496_amd64", + "product": { + "name": "openshift4/ose-kube-proxy@sha256:4138f44446e6cff843860ec7a452e8b812c761f2854b5784560b472465fec496_amd64", + "product_id": "openshift4/ose-kube-proxy@sha256:4138f44446e6cff843860ec7a452e8b812c761f2854b5784560b472465fec496_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-proxy@sha256:4138f44446e6cff843860ec7a452e8b812c761f2854b5784560b472465fec496?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kube-proxy&tag=v4.12.0-202310170157.p0.gdc9f9af.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-rbac-proxy@sha256:d63bf13113fa7224bdeb21f4b07d53dce96f9fcc955048b870a97e7c1d054e11_amd64", + "product": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:d63bf13113fa7224bdeb21f4b07d53dce96f9fcc955048b870a97e7c1d054e11_amd64", + "product_id": "openshift4/ose-kube-rbac-proxy@sha256:d63bf13113fa7224bdeb21f4b07d53dce96f9fcc955048b870a97e7c1d054e11_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-rbac-proxy@sha256:d63bf13113fa7224bdeb21f4b07d53dce96f9fcc955048b870a97e7c1d054e11?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy&tag=v4.12.0-202310170157.p0.g94f3fde.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-state-metrics@sha256:bb0303469ff9ac257efe236775f5c746458e3d55126666de80e460e451dfa383_amd64", + "product": { + "name": "openshift4/ose-kube-state-metrics@sha256:bb0303469ff9ac257efe236775f5c746458e3d55126666de80e460e451dfa383_amd64", + "product_id": "openshift4/ose-kube-state-metrics@sha256:bb0303469ff9ac257efe236775f5c746458e3d55126666de80e460e451dfa383_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-state-metrics@sha256:bb0303469ff9ac257efe236775f5c746458e3d55126666de80e460e451dfa383?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics&tag=v4.12.0-202310170157.p0.g9a1bf9b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:020a4e781e2e14fada0293855b788ab25c01a3de4b56a287329642abb7b9adde_amd64", + "product": { + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:020a4e781e2e14fada0293855b788ab25c01a3de4b56a287329642abb7b9adde_amd64", + "product_id": "openshift4/ose-kuryr-cni-rhel8@sha256:020a4e781e2e14fada0293855b788ab25c01a3de4b56a287329642abb7b9adde_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kuryr-cni-rhel8@sha256:020a4e781e2e14fada0293855b788ab25c01a3de4b56a287329642abb7b9adde?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kuryr-cni-rhel8&tag=v4.12.0-202310170157.p0.g8fd2f8b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-marketplace@sha256:6bb7198211d11a8dfeee451da4e183de86d9de052c8fe75ca6dbce9b3c72e2ec_amd64", + "product": { + "name": "openshift4/ose-operator-marketplace@sha256:6bb7198211d11a8dfeee451da4e183de86d9de052c8fe75ca6dbce9b3c72e2ec_amd64", + "product_id": "openshift4/ose-operator-marketplace@sha256:6bb7198211d11a8dfeee451da4e183de86d9de052c8fe75ca6dbce9b3c72e2ec_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-marketplace@sha256:6bb7198211d11a8dfeee451da4e183de86d9de052c8fe75ca6dbce9b3c72e2ec?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-operator-marketplace&tag=v4.12.0-202310170157.p0.ga5465e2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-cni@sha256:45ea113e84062f05be5c762e147d14ffc92f6d1da5c8c936f2fe9e8c9358b0a5_amd64", + "product": { + "name": "openshift4/ose-multus-cni@sha256:45ea113e84062f05be5c762e147d14ffc92f6d1da5c8c936f2fe9e8c9358b0a5_amd64", + "product_id": "openshift4/ose-multus-cni@sha256:45ea113e84062f05be5c762e147d14ffc92f6d1da5c8c936f2fe9e8c9358b0a5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-cni@sha256:45ea113e84062f05be5c762e147d14ffc92f6d1da5c8c936f2fe9e8c9358b0a5?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-multus-cni&tag=v4.12.0-202310170157.p0.g210e540.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-server-rhel8@sha256:ee7d5356d6118514b1c7905233a4bae0bb692c0b3c92afcef6cb8aa26e66f6f9_amd64", + "product": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:ee7d5356d6118514b1c7905233a4bae0bb692c0b3c92afcef6cb8aa26e66f6f9_amd64", + "product_id": "openshift4/ose-oauth-server-rhel8@sha256:ee7d5356d6118514b1c7905233a4bae0bb692c0b3c92afcef6cb8aa26e66f6f9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-server-rhel8@sha256:ee7d5356d6118514b1c7905233a4bae0bb692c0b3c92afcef6cb8aa26e66f6f9?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel8&tag=v4.12.0-202310170157.p0.g0f83669.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/oc-mirror-plugin-rhel8@sha256:d91a6410a01c652620de1bc0162b525379026dd88a3054a546fc4721bd890f7c_amd64", + "product": { + "name": "openshift4/oc-mirror-plugin-rhel8@sha256:d91a6410a01c652620de1bc0162b525379026dd88a3054a546fc4721bd890f7c_amd64", + "product_id": "openshift4/oc-mirror-plugin-rhel8@sha256:d91a6410a01c652620de1bc0162b525379026dd88a3054a546fc4721bd890f7c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oc-mirror-plugin-rhel8@sha256:d91a6410a01c652620de1bc0162b525379026dd88a3054a546fc4721bd890f7c?arch=amd64&repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel8&tag=v4.12.0-202310170157.p0.g3ac49d9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-builder@sha256:e8f08646b267cfda9f372edc336b11ce0b30db93bc1e29179c9e24b4c08740b8_amd64", + "product": { + "name": "openshift4/ose-docker-builder@sha256:e8f08646b267cfda9f372edc336b11ce0b30db93bc1e29179c9e24b4c08740b8_amd64", + "product_id": "openshift4/ose-docker-builder@sha256:e8f08646b267cfda9f372edc336b11ce0b30db93bc1e29179c9e24b4c08740b8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-builder@sha256:e8f08646b267cfda9f372edc336b11ce0b30db93bc1e29179c9e24b4c08740b8?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-docker-builder&tag=v4.12.0-202310170157.p0.g1f99147.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli@sha256:8b0f375da38dac07bc3ee571cb17a67f96524c96abc842de24ace111cfa9ac6c_amd64", + "product": { + "name": "openshift4/ose-cli@sha256:8b0f375da38dac07bc3ee571cb17a67f96524c96abc842de24ace111cfa9ac6c_amd64", + "product_id": "openshift4/ose-cli@sha256:8b0f375da38dac07bc3ee571cb17a67f96524c96abc842de24ace111cfa9ac6c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli@sha256:8b0f375da38dac07bc3ee571cb17a67f96524c96abc842de24ace111cfa9ac6c?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cli&tag=v4.12.0-202310170157.p0.g7aa4009.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console@sha256:42bb1c4937dd72f548255c24f94eca8134bf0147e54d996c2fd1b74018d46680_amd64", + "product": { + "name": "openshift4/ose-console@sha256:42bb1c4937dd72f548255c24f94eca8134bf0147e54d996c2fd1b74018d46680_amd64", + "product_id": "openshift4/ose-console@sha256:42bb1c4937dd72f548255c24f94eca8134bf0147e54d996c2fd1b74018d46680_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-console@sha256:42bb1c4937dd72f548255c24f94eca8134bf0147e54d996c2fd1b74018d46680?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-console&tag=v4.12.0-202310170157.p0.gdea60d8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console-operator@sha256:73d07323be282333041414bb6c8321782e1f2ee38424fc3ba9dc0dd361096ecc_amd64", + "product": { + "name": "openshift4/ose-console-operator@sha256:73d07323be282333041414bb6c8321782e1f2ee38424fc3ba9dc0dd361096ecc_amd64", + "product_id": "openshift4/ose-console-operator@sha256:73d07323be282333041414bb6c8321782e1f2ee38424fc3ba9dc0dd361096ecc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-console-operator@sha256:73d07323be282333041414bb6c8321782e1f2ee38424fc3ba9dc0dd361096ecc?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-console-operator&tag=v4.12.0-202310170157.p0.gbeba7a8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-deployer@sha256:08e752da2a8fb58ba7045a9b0a75c11f42bef8ebf8b9a3b69a523e258ff9209c_amd64", + "product": { + "name": "openshift4/ose-deployer@sha256:08e752da2a8fb58ba7045a9b0a75c11f42bef8ebf8b9a3b69a523e258ff9209c_amd64", + "product_id": "openshift4/ose-deployer@sha256:08e752da2a8fb58ba7045a9b0a75c11f42bef8ebf8b9a3b69a523e258ff9209c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-deployer@sha256:08e752da2a8fb58ba7045a9b0a75c11f42bef8ebf8b9a3b69a523e258ff9209c?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-deployer&tag=v4.12.0-202310170157.p0.g7aa4009.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-haproxy-router@sha256:6c585332eaab98a09f17432265592e47304dcebe45d37541b00eedadf08707a9_amd64", + "product": { + "name": "openshift4/ose-haproxy-router@sha256:6c585332eaab98a09f17432265592e47304dcebe45d37541b00eedadf08707a9_amd64", + "product_id": "openshift4/ose-haproxy-router@sha256:6c585332eaab98a09f17432265592e47304dcebe45d37541b00eedadf08707a9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-haproxy-router@sha256:6c585332eaab98a09f17432265592e47304dcebe45d37541b00eedadf08707a9?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-haproxy-router&tag=v4.12.0-202310170157.p0.gcac95bc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hyperkube@sha256:e48844a02b2685b8bd9f1e5c7c0f0f5521620ee82054e86702434567c881b454_amd64", + "product": { + "name": "openshift4/ose-hyperkube@sha256:e48844a02b2685b8bd9f1e5c7c0f0f5521620ee82054e86702434567c881b454_amd64", + "product_id": "openshift4/ose-hyperkube@sha256:e48844a02b2685b8bd9f1e5c7c0f0f5521620ee82054e86702434567c881b454_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-hyperkube@sha256:e48844a02b2685b8bd9f1e5c7c0f0f5521620ee82054e86702434567c881b454?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-hyperkube&tag=v4.12.0-202310170157.p0.g20cda61.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-pod@sha256:a22242a5bfaa74c4140c6cdb9b319528cb03b2adb0a4ac03a7c4b6159733c963_amd64", + "product": { + "name": "openshift4/ose-pod@sha256:a22242a5bfaa74c4140c6cdb9b319528cb03b2adb0a4ac03a7c4b6159733c963_amd64", + "product_id": "openshift4/ose-pod@sha256:a22242a5bfaa74c4140c6cdb9b319528cb03b2adb0a4ac03a7c4b6159733c963_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-pod@sha256:a22242a5bfaa74c4140c6cdb9b319528cb03b2adb0a4ac03a7c4b6159733c963?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-pod&tag=v4.12.0-202310170157.p0.g20cda61.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-registry@sha256:858cff8f44049b60f3f196efecf59b58354dae2f7c012072ca9ddffb5df3d4ca_amd64", + "product": { + "name": "openshift4/ose-docker-registry@sha256:858cff8f44049b60f3f196efecf59b58354dae2f7c012072ca9ddffb5df3d4ca_amd64", + "product_id": "openshift4/ose-docker-registry@sha256:858cff8f44049b60f3f196efecf59b58354dae2f7c012072ca9ddffb5df3d4ca_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-registry@sha256:858cff8f44049b60f3f196efecf59b58354dae2f7c012072ca9ddffb5df3d4ca?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-docker-registry&tag=v4.12.0-202310170157.p0.g9e75355.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tests@sha256:b421c5b14a5da4e153ff815a8e674d4a4b8c784df4a321484b4e7fd9ad7868a3_amd64", + "product": { + "name": "openshift4/ose-tests@sha256:b421c5b14a5da4e153ff815a8e674d4a4b8c784df4a321484b4e7fd9ad7868a3_amd64", + "product_id": "openshift4/ose-tests@sha256:b421c5b14a5da4e153ff815a8e674d4a4b8c784df4a321484b4e7fd9ad7868a3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-tests@sha256:b421c5b14a5da4e153ff815a8e674d4a4b8c784df4a321484b4e7fd9ad7868a3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-tests&tag=v4.12.0-202310170157.p0.gdc737e6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:5501a4680652bbd1aafd6435771725f6462bd2061f4ebe82a22a66f630bc6f72_amd64", + "product": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:5501a4680652bbd1aafd6435771725f6462bd2061f4ebe82a22a66f630bc6f72_amd64", + "product_id": "openshift4/ose-openshift-state-metrics-rhel8@sha256:5501a4680652bbd1aafd6435771725f6462bd2061f4ebe82a22a66f630bc6f72_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-state-metrics-rhel8@sha256:5501a4680652bbd1aafd6435771725f6462bd2061f4ebe82a22a66f630bc6f72?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8&tag=v4.12.0-202310170157.p0.g4c711c7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-lifecycle-manager@sha256:83d99d0d3f2eb03051836540eed478873914336a04d6bfe3acf74e39ff2d8835_amd64", + "product": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:83d99d0d3f2eb03051836540eed478873914336a04d6bfe3acf74e39ff2d8835_amd64", + "product_id": "openshift4/ose-operator-lifecycle-manager@sha256:83d99d0d3f2eb03051836540eed478873914336a04d6bfe3acf74e39ff2d8835_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-lifecycle-manager@sha256:83d99d0d3f2eb03051836540eed478873914336a04d6bfe3acf74e39ff2d8835?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager&tag=v4.12.0-202310170157.p0.gdea7071.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-registry@sha256:375d8b238fcc0596bfffe007e5abd1918a250aff8ff5ff643de2600beda78c61_amd64", + "product": { + "name": "openshift4/ose-operator-registry@sha256:375d8b238fcc0596bfffe007e5abd1918a250aff8ff5ff643de2600beda78c61_amd64", + "product_id": "openshift4/ose-operator-registry@sha256:375d8b238fcc0596bfffe007e5abd1918a250aff8ff5ff643de2600beda78c61_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-registry@sha256:375d8b238fcc0596bfffe007e5abd1918a250aff8ff5ff643de2600beda78c61?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-operator-registry&tag=v4.12.0-202310170157.p0.gdea7071.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:c6eafdf4d4ec4e558fef4d561de92a8fdd7eb800047580c3edd5f4a497407b95_amd64", + "product": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:c6eafdf4d4ec4e558fef4d561de92a8fdd7eb800047580c3edd5f4a497407b95_amd64", + "product_id": "openshift4/ose-agent-installer-api-server-rhel8@sha256:c6eafdf4d4ec4e558fef4d561de92a8fdd7eb800047580c3edd5f4a497407b95_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-api-server-rhel8@sha256:c6eafdf4d4ec4e558fef4d561de92a8fdd7eb800047580c3edd5f4a497407b95?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8&tag=v4.12.0-202310170157.p0.g8149b9c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:01ef876b469d69385e30adcc512359b24a3da4205b25e7cc59b11430c59a3cbd_amd64", + "product": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:01ef876b469d69385e30adcc512359b24a3da4205b25e7cc59b11430c59a3cbd_amd64", + "product_id": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:01ef876b469d69385e30adcc512359b24a3da4205b25e7cc59b11430c59a3cbd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-csr-approver-rhel8@sha256:01ef876b469d69385e30adcc512359b24a3da4205b25e7cc59b11430c59a3cbd?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8&tag=v4.12.0-202310170157.p0.g61115db.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:1c0b9eff1f835ecdd4e6e59c46527f2723f78267c54a6a0b079f01438dbeb986_amd64", + "product": { + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:1c0b9eff1f835ecdd4e6e59c46527f2723f78267c54a6a0b079f01438dbeb986_amd64", + "product_id": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:1c0b9eff1f835ecdd4e6e59c46527f2723f78267c54a6a0b079f01438dbeb986_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-node-agent-rhel8@sha256:1c0b9eff1f835ecdd4e6e59c46527f2723f78267c54a6a0b079f01438dbeb986?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8&tag=v4.12.0-202310170157.p0.ga7aa600.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:4e3ecb8f00d51bb0a6f23f93c90902b8a8ebc288d0ddd77ec3c13010beb55f16_amd64", + "product": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:4e3ecb8f00d51bb0a6f23f93c90902b8a8ebc288d0ddd77ec3c13010beb55f16_amd64", + "product_id": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:4e3ecb8f00d51bb0a6f23f93c90902b8a8ebc288d0ddd77ec3c13010beb55f16_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-orchestrator-rhel8@sha256:4e3ecb8f00d51bb0a6f23f93c90902b8a8ebc288d0ddd77ec3c13010beb55f16?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8&tag=v4.12.0-202310170157.p0.g61115db.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:6ded2e469992886c4e03db988c8dce6189bcf9779a4a2f6cf0800eb99d5b3882_amd64", + "product": { + "name": "openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:6ded2e469992886c4e03db988c8dce6189bcf9779a4a2f6cf0800eb99d5b3882_amd64", + "product_id": "openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:6ded2e469992886c4e03db988c8dce6189bcf9779a4a2f6cf0800eb99d5b3882_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-alibaba-cloud-controller-manager-rhel8@sha256:6ded2e469992886c4e03db988c8dce6189bcf9779a4a2f6cf0800eb99d5b3882?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.g1959de0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:14e9d1873e0a5804203f3074599288b972f1579b7f6cc7f801db89bf8ba64c13_amd64", + "product": { + "name": "openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:14e9d1873e0a5804203f3074599288b972f1579b7f6cc7f801db89bf8ba64c13_amd64", + "product_id": "openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:14e9d1873e0a5804203f3074599288b972f1579b7f6cc7f801db89bf8ba64c13_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:14e9d1873e0a5804203f3074599288b972f1579b7f6cc7f801db89bf8ba64c13?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8&tag=v4.12.0-202310170157.p0.g664d8cb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:37e29bee03ab75f37128c0758368a720efd1db5002879da56479af9bc743723d_amd64", + "product": { + "name": "openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:37e29bee03ab75f37128c0758368a720efd1db5002879da56479af9bc743723d_amd64", + "product_id": "openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:37e29bee03ab75f37128c0758368a720efd1db5002879da56479af9bc743723d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:37e29bee03ab75f37128c0758368a720efd1db5002879da56479af9bc743723d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8&tag=v4.12.0-202310170157.p0.g27200d7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-alibaba-machine-controllers-rhel8@sha256:8907608ba0b7d81c62120ad980d65e24721f7dc647adee9ede686b9a70d405dd_amd64", + "product": { + "name": "openshift4/ose-alibaba-machine-controllers-rhel8@sha256:8907608ba0b7d81c62120ad980d65e24721f7dc647adee9ede686b9a70d405dd_amd64", + "product_id": "openshift4/ose-alibaba-machine-controllers-rhel8@sha256:8907608ba0b7d81c62120ad980d65e24721f7dc647adee9ede686b9a70d405dd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-alibaba-machine-controllers-rhel8@sha256:8907608ba0b7d81c62120ad980d65e24721f7dc647adee9ede686b9a70d405dd?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8&tag=v4.12.0-202310170157.p0.gb9287c0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:b5dccb56576641cd17f693419af111f3af8509d7ebe1042ae56ef57cf72f5e21_amd64", + "product": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:b5dccb56576641cd17f693419af111f3af8509d7ebe1042ae56ef57cf72f5e21_amd64", + "product_id": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:b5dccb56576641cd17f693419af111f3af8509d7ebe1042ae56ef57cf72f5e21_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-apiserver-network-proxy-rhel8@sha256:b5dccb56576641cd17f693419af111f3af8509d7ebe1042ae56ef57cf72f5e21?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8&tag=v4.12.0-202310170157.p0.gf1e6d94.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:f2cbc92e8dd1225db67b70428cf7b28840866618222dab20b069003e1cf02319_amd64", + "product": { + "name": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:f2cbc92e8dd1225db67b70428cf7b28840866618222dab20b069003e1cf02319_amd64", + "product_id": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:f2cbc92e8dd1225db67b70428cf7b28840866618222dab20b069003e1cf02319_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-cloud-controller-manager-rhel8@sha256:f2cbc92e8dd1225db67b70428cf7b28840866618222dab20b069003e1cf02319?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.g7fb891f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:8a87747aff91bb55cf63d17a39408244aa59fc962245ba73fa27d359a6236412_amd64", + "product": { + "name": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:8a87747aff91bb55cf63d17a39408244aa59fc962245ba73fa27d359a6236412_amd64", + "product_id": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:8a87747aff91bb55cf63d17a39408244aa59fc962245ba73fa27d359a6236412_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-cluster-api-controllers-rhel8@sha256:8a87747aff91bb55cf63d17a39408244aa59fc962245ba73fa27d359a6236412?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8&tag=v4.12.0-202310170157.p0.ge3a8e43.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:ee0ff51b2862a794cfcdf027cd82a9b11928a2aa0fa533290045e7ffe4a6edfc_amd64", + "product": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:ee0ff51b2862a794cfcdf027cd82a9b11928a2aa0fa533290045e7ffe4a6edfc_amd64", + "product_id": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:ee0ff51b2862a794cfcdf027cd82a9b11928a2aa0fa533290045e7ffe4a6edfc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel8@sha256:ee0ff51b2862a794cfcdf027cd82a9b11928a2aa0fa533290045e7ffe4a6edfc?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8&tag=v4.12.0-202310170157.p0.g86fc1cd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:f3f76b2fc49367f6554cb0e2e99e1108c5b86eded0d7830fac6aca37520fbeeb_amd64", + "product": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:f3f76b2fc49367f6554cb0e2e99e1108c5b86eded0d7830fac6aca37520fbeeb_amd64", + "product_id": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:f3f76b2fc49367f6554cb0e2e99e1108c5b86eded0d7830fac6aca37520fbeeb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel8-operator@sha256:f3f76b2fc49367f6554cb0e2e99e1108c5b86eded0d7830fac6aca37520fbeeb?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator&tag=v4.12.0-202310170157.p0.gfa3c8fb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:240c123d6b4355e4f005b9cf1dee470a49f55b6edc716713e0bab5b7c83eab5e_amd64", + "product": { + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:240c123d6b4355e4f005b9cf1dee470a49f55b6edc716713e0bab5b7c83eab5e_amd64", + "product_id": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:240c123d6b4355e4f005b9cf1dee470a49f55b6edc716713e0bab5b7c83eab5e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-pod-identity-webhook-rhel8@sha256:240c123d6b4355e4f005b9cf1dee470a49f55b6edc716713e0bab5b7c83eab5e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8&tag=v4.12.0-202310170157.p0.g6197630.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:48beb1180b3880600fe513d75d7730f39ddf31b47987bd1d1db9dbccd123a96d_amd64", + "product": { + "name": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:48beb1180b3880600fe513d75d7730f39ddf31b47987bd1d1db9dbccd123a96d_amd64", + "product_id": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:48beb1180b3880600fe513d75d7730f39ddf31b47987bd1d1db9dbccd123a96d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-cloud-controller-manager-rhel8@sha256:48beb1180b3880600fe513d75d7730f39ddf31b47987bd1d1db9dbccd123a96d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.g8bc8af2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:0b0fdcdf41d03cdd8e6a8d1f91a28aed6112cdade69f4625f0df5ca8d8db8032_amd64", + "product": { + "name": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:0b0fdcdf41d03cdd8e6a8d1f91a28aed6112cdade69f4625f0df5ca8d8db8032_amd64", + "product_id": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:0b0fdcdf41d03cdd8e6a8d1f91a28aed6112cdade69f4625f0df5ca8d8db8032_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-cloud-node-manager-rhel8@sha256:0b0fdcdf41d03cdd8e6a8d1f91a28aed6112cdade69f4625f0df5ca8d8db8032?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8&tag=v4.12.0-202310170157.p0.g8bc8af2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:e5b0fb95336faf5912bbffbe388159e4b8c296068d9f10a7d2745306648df6a3_amd64", + "product": { + "name": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:e5b0fb95336faf5912bbffbe388159e4b8c296068d9f10a7d2745306648df6a3_amd64", + "product_id": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:e5b0fb95336faf5912bbffbe388159e4b8c296068d9f10a7d2745306648df6a3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-cluster-api-controllers-rhel8@sha256:e5b0fb95336faf5912bbffbe388159e4b8c296068d9f10a7d2745306648df6a3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8&tag=v4.12.0-202310170157.p0.gd1d4f77.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:73c2c087338aead3095cc0fccebdc7432e76cd066924b5a0cac274c2b1479cdc_amd64", + "product": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:73c2c087338aead3095cc0fccebdc7432e76cd066924b5a0cac274c2b1479cdc_amd64", + "product_id": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:73c2c087338aead3095cc0fccebdc7432e76cd066924b5a0cac274c2b1479cdc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-disk-csi-driver-rhel8@sha256:73c2c087338aead3095cc0fccebdc7432e76cd066924b5a0cac274c2b1479cdc?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8&tag=v4.12.0-202310170157.p0.gba10578.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:b050e9eed11c56150db9c50a71892223489561510bda8a9f9b6a72fa9a4b6724_amd64", + "product": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:b050e9eed11c56150db9c50a71892223489561510bda8a9f9b6a72fa9a4b6724_amd64", + "product_id": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:b050e9eed11c56150db9c50a71892223489561510bda8a9f9b6a72fa9a4b6724_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-disk-csi-driver-rhel8-operator@sha256:b050e9eed11c56150db9c50a71892223489561510bda8a9f9b6a72fa9a4b6724?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator&tag=v4.12.0-202310170157.p0.g0dab032.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:feaac95d8ca7df82dfac97fd007724e7c7b789bcaba5a31caf3be8150b08d1c0_amd64", + "product": { + "name": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:feaac95d8ca7df82dfac97fd007724e7c7b789bcaba5a31caf3be8150b08d1c0_amd64", + "product_id": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:feaac95d8ca7df82dfac97fd007724e7c7b789bcaba5a31caf3be8150b08d1c0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-file-csi-driver-rhel8@sha256:feaac95d8ca7df82dfac97fd007724e7c7b789bcaba5a31caf3be8150b08d1c0?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8&tag=v4.12.0-202310170157.p0.g746fab2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:5ccc50dfaa08d4decc4364e2c602a51e9adca59e2159b726aaaa27eef304a26e_amd64", + "product": { + "name": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:5ccc50dfaa08d4decc4364e2c602a51e9adca59e2159b726aaaa27eef304a26e_amd64", + "product_id": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:5ccc50dfaa08d4decc4364e2c602a51e9adca59e2159b726aaaa27eef304a26e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-file-csi-driver-operator-rhel8@sha256:5ccc50dfaa08d4decc4364e2c602a51e9adca59e2159b726aaaa27eef304a26e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8&tag=v4.12.0-202310170157.p0.g27de526.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:a3df169b4fe732b72ab3cce2ad03a60a2aa15d4757bac14a88551c0962ec7d6a_amd64", + "product": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:a3df169b4fe732b72ab3cce2ad03a60a2aa15d4757bac14a88551c0962ec7d6a_amd64", + "product_id": "openshift4/ose-baremetal-installer-rhel8@sha256:a3df169b4fe732b72ab3cce2ad03a60a2aa15d4757bac14a88551c0962ec7d6a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-installer-rhel8@sha256:a3df169b4fe732b72ab3cce2ad03a60a2aa15d4757bac14a88551c0962ec7d6a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8&tag=v4.12.0-202310170157.p0.g576d815.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:d246f57bf33f4735857c4123e0c7da2fbf936ee154dcdf365238c8e0264372fd_amd64", + "product": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:d246f57bf33f4735857c4123e0c7da2fbf936ee154dcdf365238c8e0264372fd_amd64", + "product_id": "openshift4/ose-baremetal-rhel8-operator@sha256:d246f57bf33f4735857c4123e0c7da2fbf936ee154dcdf365238c8e0264372fd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-rhel8-operator@sha256:d246f57bf33f4735857c4123e0c7da2fbf936ee154dcdf365238c8e0264372fd?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel8-operator&tag=v4.12.0-202310170157.p0.g968ceb0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:e0f2585d21971ef1243e9e132d489a1c2b3b966db288aeb814f56146445f49e1_amd64", + "product": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:e0f2585d21971ef1243e9e132d489a1c2b3b966db288aeb814f56146445f49e1_amd64", + "product_id": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:e0f2585d21971ef1243e9e132d489a1c2b3b966db288aeb814f56146445f49e1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-runtimecfg-rhel8@sha256:e0f2585d21971ef1243e9e132d489a1c2b3b966db288aeb814f56146445f49e1?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8&tag=v4.12.0-202310170157.p0.g23c6c0e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli-artifacts@sha256:5ce88becef9c8cb4f93f38f328917aa4c3da84a519b85f3caba0fb068eba811b_amd64", + "product": { + "name": "openshift4/ose-cli-artifacts@sha256:5ce88becef9c8cb4f93f38f328917aa4c3da84a519b85f3caba0fb068eba811b_amd64", + "product_id": "openshift4/ose-cli-artifacts@sha256:5ce88becef9c8cb4f93f38f328917aa4c3da84a519b85f3caba0fb068eba811b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli-artifacts@sha256:5ce88becef9c8cb4f93f38f328917aa4c3da84a519b85f3caba0fb068eba811b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cli-artifacts&tag=v4.12.0-202310170157.p0.g7aa4009.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-credential-operator@sha256:3f8e06d9e7a309c81e8888698db8cb0188b447fd4014fb8a7c88db0501299598_amd64", + "product": { + "name": "openshift4/ose-cloud-credential-operator@sha256:3f8e06d9e7a309c81e8888698db8cb0188b447fd4014fb8a7c88db0501299598_amd64", + "product_id": "openshift4/ose-cloud-credential-operator@sha256:3f8e06d9e7a309c81e8888698db8cb0188b447fd4014fb8a7c88db0501299598_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-credential-operator@sha256:3f8e06d9e7a309c81e8888698db8cb0188b447fd4014fb8a7c88db0501299598?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cloud-credential-operator&tag=v4.12.0-202310170157.p0.gd4f6bca.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:649ca238e1bfd44616251260bda84947d1276ef571028ee9d667c737cedb0abf_amd64", + "product": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:649ca238e1bfd44616251260bda84947d1276ef571028ee9d667c737cedb0abf_amd64", + "product_id": "openshift4/cloud-network-config-controller-rhel8@sha256:649ca238e1bfd44616251260bda84947d1276ef571028ee9d667c737cedb0abf_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cloud-network-config-controller-rhel8@sha256:649ca238e1bfd44616251260bda84947d1276ef571028ee9d667c737cedb0abf?arch=amd64&repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel8&tag=v4.12.0-202310170157.p0.gd05b0ab.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-api-rhel8@sha256:29d4d6bcd23266b0aa8005755e1d80f80bd0583c636be314ac1d34221bf93901_amd64", + "product": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:29d4d6bcd23266b0aa8005755e1d80f80bd0583c636be314ac1d34221bf93901_amd64", + "product_id": "openshift4/ose-cluster-api-rhel8@sha256:29d4d6bcd23266b0aa8005755e1d80f80bd0583c636be314ac1d34221bf93901_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-api-rhel8@sha256:29d4d6bcd23266b0aa8005755e1d80f80bd0583c636be314ac1d34221bf93901?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel8&tag=v4.12.0-202310170157.p0.gf9c215c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-authentication-operator@sha256:5d2965d5f7ecf84c2ab112fbb8daf6c439a80757818c4a5bf86b6abdb2c862ba_amd64", + "product": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:5d2965d5f7ecf84c2ab112fbb8daf6c439a80757818c4a5bf86b6abdb2c862ba_amd64", + "product_id": "openshift4/ose-cluster-authentication-operator@sha256:5d2965d5f7ecf84c2ab112fbb8daf6c439a80757818c4a5bf86b6abdb2c862ba_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-authentication-operator@sha256:5d2965d5f7ecf84c2ab112fbb8daf6c439a80757818c4a5bf86b6abdb2c862ba?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-operator&tag=v4.12.0-202310170157.p0.gfe4212a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:e4e67534d645d58efaafb2d8e2d7700eebbcb5cf59868207a59772c96477e924_amd64", + "product": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:e4e67534d645d58efaafb2d8e2d7700eebbcb5cf59868207a59772c96477e924_amd64", + "product_id": "openshift4/ose-cluster-autoscaler-operator@sha256:e4e67534d645d58efaafb2d8e2d7700eebbcb5cf59868207a59772c96477e924_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler-operator@sha256:e4e67534d645d58efaafb2d8e2d7700eebbcb5cf59868207a59772c96477e924?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-operator&tag=v4.12.0-202310170157.p0.g8b23225.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:44dc6b915f3877babf491500a695d5825595602e482516c2001ce2736dec83a9_amd64", + "product": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:44dc6b915f3877babf491500a695d5825595602e482516c2001ce2736dec83a9_amd64", + "product_id": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:44dc6b915f3877babf491500a695d5825595602e482516c2001ce2736dec83a9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-baremetal-operator-rhel8@sha256:44dc6b915f3877babf491500a695d5825595602e482516c2001ce2736dec83a9?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8&tag=v4.12.0-202310170157.p0.g5f4795c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-bootstrap@sha256:cc2ce011e39fb054bcdbe8b9dbb4e3eda5a0d6b9db038f97fea9c0458b7f5018_amd64", + "product": { + "name": "openshift4/ose-cluster-bootstrap@sha256:cc2ce011e39fb054bcdbe8b9dbb4e3eda5a0d6b9db038f97fea9c0458b7f5018_amd64", + "product_id": "openshift4/ose-cluster-bootstrap@sha256:cc2ce011e39fb054bcdbe8b9dbb4e3eda5a0d6b9db038f97fea9c0458b7f5018_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-bootstrap@sha256:cc2ce011e39fb054bcdbe8b9dbb4e3eda5a0d6b9db038f97fea9c0458b7f5018?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap&tag=v4.12.0-202310170157.p0.g138a1cf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:8127f7872e14051ab13f4c8ed8895bcd798083a15905f37014d8c8feae28c8c9_amd64", + "product": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:8127f7872e14051ab13f4c8ed8895bcd798083a15905f37014d8c8feae28c8c9_amd64", + "product_id": "openshift4/ose-cluster-capi-rhel8-operator@sha256:8127f7872e14051ab13f4c8ed8895bcd798083a15905f37014d8c8feae28c8c9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-rhel8-operator@sha256:8127f7872e14051ab13f4c8ed8895bcd798083a15905f37014d8c8feae28c8c9?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator&tag=v4.12.0-202310170157.p0.g3bfe36a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:8127f7872e14051ab13f4c8ed8895bcd798083a15905f37014d8c8feae28c8c9_amd64", + "product": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:8127f7872e14051ab13f4c8ed8895bcd798083a15905f37014d8c8feae28c8c9_amd64", + "product_id": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:8127f7872e14051ab13f4c8ed8895bcd798083a15905f37014d8c8feae28c8c9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-operator-container-rhel8@sha256:8127f7872e14051ab13f4c8ed8895bcd798083a15905f37014d8c8feae28c8c9?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8&tag=v4.12.0-202310170157.p0.g3bfe36a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:49a62784773a65af9ea0456c3314634c9915389ba0917d4a7295d537a10bc046_amd64", + "product": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:49a62784773a65af9ea0456c3314634c9915389ba0917d4a7295d537a10bc046_amd64", + "product_id": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:49a62784773a65af9ea0456c3314634c9915389ba0917d4a7295d537a10bc046_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:49a62784773a65af9ea0456c3314634c9915389ba0917d4a7295d537a10bc046?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8&tag=v4.12.0-202310170157.p0.g103cb2e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-config-operator@sha256:b6860c083abc57f2cd34fc72a1a664b280d810fbc0dc607735fbe0423952248e_amd64", + "product": { + "name": "openshift4/ose-cluster-config-operator@sha256:b6860c083abc57f2cd34fc72a1a664b280d810fbc0dc607735fbe0423952248e_amd64", + "product_id": "openshift4/ose-cluster-config-operator@sha256:b6860c083abc57f2cd34fc72a1a664b280d810fbc0dc607735fbe0423952248e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-config-operator@sha256:b6860c083abc57f2cd34fc72a1a664b280d810fbc0dc607735fbe0423952248e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-config-operator&tag=v4.12.0-202310170157.p0.gc589595.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:c1ee427ccfee1cd7972be723c3ec48011b1023d7d4c19f14d23adca6598354f9_amd64", + "product": { + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:c1ee427ccfee1cd7972be723c3ec48011b1023d7d4c19f14d23adca6598354f9_amd64", + "product_id": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:c1ee427ccfee1cd7972be723c3ec48011b1023d7d4c19f14d23adca6598354f9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:c1ee427ccfee1cd7972be723c3ec48011b1023d7d4c19f14d23adca6598354f9?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8&tag=v4.12.0-202310170157.p0.g119d7a7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:2ce4df12392de8d977b8a82de120be0829bd3673df1215bc61e173cc127f9c3a_amd64", + "product": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:2ce4df12392de8d977b8a82de120be0829bd3673df1215bc61e173cc127f9c3a_amd64", + "product_id": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:2ce4df12392de8d977b8a82de120be0829bd3673df1215bc61e173cc127f9c3a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:2ce4df12392de8d977b8a82de120be0829bd3673df1215bc61e173cc127f9c3a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator&tag=v4.12.0-202310170157.p0.g06bd5f6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-dns-operator@sha256:5b1bce1ed7f22901621190f77cb1f743fb962a0e696fbf775faf360975c1ba27_amd64", + "product": { + "name": "openshift4/ose-cluster-dns-operator@sha256:5b1bce1ed7f22901621190f77cb1f743fb962a0e696fbf775faf360975c1ba27_amd64", + "product_id": "openshift4/ose-cluster-dns-operator@sha256:5b1bce1ed7f22901621190f77cb1f743fb962a0e696fbf775faf360975c1ba27_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-dns-operator@sha256:5b1bce1ed7f22901621190f77cb1f743fb962a0e696fbf775faf360975c1ba27?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-dns-operator&tag=v4.12.0-202310170157.p0.gffebbf4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-image-registry-operator@sha256:9453c58ec3eb2eb11af896ce6abdfb7e1ca25ce8a89c309804f7f2cc6f6cec56_amd64", + "product": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:9453c58ec3eb2eb11af896ce6abdfb7e1ca25ce8a89c309804f7f2cc6f6cec56_amd64", + "product_id": "openshift4/ose-cluster-image-registry-operator@sha256:9453c58ec3eb2eb11af896ce6abdfb7e1ca25ce8a89c309804f7f2cc6f6cec56_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-image-registry-operator@sha256:9453c58ec3eb2eb11af896ce6abdfb7e1ca25ce8a89c309804f7f2cc6f6cec56?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-operator&tag=v4.12.0-202310170157.p0.ge9a895a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-ingress-operator@sha256:e8f88a3512a4e277bf16fc0b752418271561ecaa4420b81c9d033259e5f93628_amd64", + "product": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:e8f88a3512a4e277bf16fc0b752418271561ecaa4420b81c9d033259e5f93628_amd64", + "product_id": "openshift4/ose-cluster-ingress-operator@sha256:e8f88a3512a4e277bf16fc0b752418271561ecaa4420b81c9d033259e5f93628_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-ingress-operator@sha256:e8f88a3512a4e277bf16fc0b752418271561ecaa4420b81c9d033259e5f93628?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-operator&tag=v4.12.0-202310170157.p0.g0bb8ffc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:81623c1733070756c7f31d60ab33eadfa0bd182ae4efc4badee6eb06de1352cd_amd64", + "product": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:81623c1733070756c7f31d60ab33eadfa0bd182ae4efc4badee6eb06de1352cd_amd64", + "product_id": "openshift4/ose-cluster-kube-apiserver-operator@sha256:81623c1733070756c7f31d60ab33eadfa0bd182ae4efc4badee6eb06de1352cd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-apiserver-operator@sha256:81623c1733070756c7f31d60ab33eadfa0bd182ae4efc4badee6eb06de1352cd?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator&tag=v4.12.0-202310170157.p0.gfe5e2a1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:ec4db6aaba39db7d1a400579ec28f4ea854c9d9097ff0af31c88b272f90ca05d_amd64", + "product": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:ec4db6aaba39db7d1a400579ec28f4ea854c9d9097ff0af31c88b272f90ca05d_amd64", + "product_id": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:ec4db6aaba39db7d1a400579ec28f4ea854c9d9097ff0af31c88b272f90ca05d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel8-operator@sha256:ec4db6aaba39db7d1a400579ec28f4ea854c9d9097ff0af31c88b272f90ca05d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator&tag=v4.12.0-202310170157.p0.g7bb0546.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:36e2eeb6ab9a03e4d6df8382cf1582fa6f9fb440c2e82eb877c354c102659065_amd64", + "product": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:36e2eeb6ab9a03e4d6df8382cf1582fa6f9fb440c2e82eb877c354c102659065_amd64", + "product_id": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:36e2eeb6ab9a03e4d6df8382cf1582fa6f9fb440c2e82eb877c354c102659065_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-controller-manager-operator@sha256:36e2eeb6ab9a03e4d6df8382cf1582fa6f9fb440c2e82eb877c354c102659065?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator&tag=v4.12.0-202310170157.p0.g7f494d3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:1d13151f8ea8c1f117e1c042a7a47fa4e18b12dec456028a75758813c0afeac4_amd64", + "product": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:1d13151f8ea8c1f117e1c042a7a47fa4e18b12dec456028a75758813c0afeac4_amd64", + "product_id": "openshift4/ose-cluster-kube-scheduler-operator@sha256:1d13151f8ea8c1f117e1c042a7a47fa4e18b12dec456028a75758813c0afeac4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-scheduler-operator@sha256:1d13151f8ea8c1f117e1c042a7a47fa4e18b12dec456028a75758813c0afeac4?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator&tag=v4.12.0-202310170157.p0.g4f0ac8d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:cc4631021dd1b52d209bffbc6b27e8a0589e7bdcb048b12bc69e4c28c9447c61_amd64", + "product": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:cc4631021dd1b52d209bffbc6b27e8a0589e7bdcb048b12bc69e4c28c9447c61_amd64", + "product_id": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:cc4631021dd1b52d209bffbc6b27e8a0589e7bdcb048b12bc69e4c28c9447c61_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:cc4631021dd1b52d209bffbc6b27e8a0589e7bdcb048b12bc69e4c28c9447c61?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator&tag=v4.12.0-202310170157.p0.g12d050a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-machine-approver@sha256:41567c8fa1f5c2668ee4dd5d1ace21f0d6c1c0e285aef52fff50407943a7efca_amd64", + "product": { + "name": "openshift4/ose-cluster-machine-approver@sha256:41567c8fa1f5c2668ee4dd5d1ace21f0d6c1c0e285aef52fff50407943a7efca_amd64", + "product_id": "openshift4/ose-cluster-machine-approver@sha256:41567c8fa1f5c2668ee4dd5d1ace21f0d6c1c0e285aef52fff50407943a7efca_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-machine-approver@sha256:41567c8fa1f5c2668ee4dd5d1ace21f0d6c1c0e285aef52fff50407943a7efca?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver&tag=v4.12.0-202310170157.p0.g6008198.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:978c9fa7f39b7e7c710ceb833f185e0417038ce6c1231bc0cdb0efb83b053d4f_amd64", + "product": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:978c9fa7f39b7e7c710ceb833f185e0417038ce6c1231bc0cdb0efb83b053d4f_amd64", + "product_id": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:978c9fa7f39b7e7c710ceb833f185e0417038ce6c1231bc0cdb0efb83b053d4f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-apiserver-operator@sha256:978c9fa7f39b7e7c710ceb833f185e0417038ce6c1231bc0cdb0efb83b053d4f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator&tag=v4.12.0-202310170157.p0.g9919792.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:08f02b754fcf15db68506a6b6e9831a9f3e8ba3489b5e993b230432ad6c3cfef_amd64", + "product": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:08f02b754fcf15db68506a6b6e9831a9f3e8ba3489b5e993b230432ad6c3cfef_amd64", + "product_id": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:08f02b754fcf15db68506a6b6e9831a9f3e8ba3489b5e993b230432ad6c3cfef_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-controller-manager-operator@sha256:08f02b754fcf15db68506a6b6e9831a9f3e8ba3489b5e993b230432ad6c3cfef?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator&tag=v4.12.0-202310170157.p0.gd1915d1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:63db9ccfe905f1286c9888984848bb166ecd4dbf4b12e708fcbcda41af57d7b2_amd64", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:63db9ccfe905f1286c9888984848bb166ecd4dbf4b12e708fcbcda41af57d7b2_amd64", + "product_id": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:63db9ccfe905f1286c9888984848bb166ecd4dbf4b12e708fcbcda41af57d7b2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8-operator@sha256:63db9ccfe905f1286c9888984848bb166ecd4dbf4b12e708fcbcda41af57d7b2?arch=amd64&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator&tag=v4.12.0-202310170157.p0.g35c7cb9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:5e0ce696af72c78af11e06c78337069b9db795af33b8d884616bd4276a5bad83_amd64", + "product": { + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:5e0ce696af72c78af11e06c78337069b9db795af33b8d884616bd4276a5bad83_amd64", + "product_id": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:5e0ce696af72c78af11e06c78337069b9db795af33b8d884616bd4276a5bad83_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-platform-operators-manager-rhel8@sha256:5e0ce696af72c78af11e06c78337069b9db795af33b8d884616bd4276a5bad83?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8&tag=v4.12.0-202310170157.p0.gd40fae8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:9a1928f849245f705651f068a8d5e6ffc908f7aa26c79171c964913f5f3705e1_amd64", + "product": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:9a1928f849245f705651f068a8d5e6ffc908f7aa26c79171c964913f5f3705e1_amd64", + "product_id": "openshift4/ose-cluster-policy-controller-rhel8@sha256:9a1928f849245f705651f068a8d5e6ffc908f7aa26c79171c964913f5f3705e1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-policy-controller-rhel8@sha256:9a1928f849245f705651f068a8d5e6ffc908f7aa26c79171c964913f5f3705e1?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8&tag=v4.12.0-202310170157.p0.g67ef456.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-samples-operator@sha256:4947b7c491146ea72499268c431e1ffe5edb22de99318a9beeb71780f149c468_amd64", + "product": { + "name": "openshift4/ose-cluster-samples-operator@sha256:4947b7c491146ea72499268c431e1ffe5edb22de99318a9beeb71780f149c468_amd64", + "product_id": "openshift4/ose-cluster-samples-operator@sha256:4947b7c491146ea72499268c431e1ffe5edb22de99318a9beeb71780f149c468_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-samples-operator@sha256:4947b7c491146ea72499268c431e1ffe5edb22de99318a9beeb71780f149c468?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-samples-operator&tag=v4.12.0-202310170157.p0.gf1b49e3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-storage-operator@sha256:e6cc7d6b93dfc77ce48540088d93d6ee6ebfe278074ee8c378838fb8c7a625c5_amd64", + "product": { + "name": "openshift4/ose-cluster-storage-operator@sha256:e6cc7d6b93dfc77ce48540088d93d6ee6ebfe278074ee8c378838fb8c7a625c5_amd64", + "product_id": "openshift4/ose-cluster-storage-operator@sha256:e6cc7d6b93dfc77ce48540088d93d6ee6ebfe278074ee8c378838fb8c7a625c5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-storage-operator@sha256:e6cc7d6b93dfc77ce48540088d93d6ee6ebfe278074ee8c378838fb8c7a625c5?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-storage-operator&tag=v4.12.0-202310170157.p0.g7ac84a9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:939cb36adc721074dd40d5fa3b6757513f73c10f846e500f7ddbed9b3c20e686_amd64", + "product": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:939cb36adc721074dd40d5fa3b6757513f73c10f846e500f7ddbed9b3c20e686_amd64", + "product_id": "openshift4/ose-container-networking-plugins-rhel8@sha256:939cb36adc721074dd40d5fa3b6757513f73c10f846e500f7ddbed9b3c20e686_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-container-networking-plugins-rhel8@sha256:939cb36adc721074dd40d5fa3b6757513f73c10f846e500f7ddbed9b3c20e686?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8&tag=v4.12.0-202310170157.p0.g6d23772.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:d06c33f5a3207290f01a0e9ffa0dc0276e37c2c42d39205cd231d23685cf559f_amd64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:d06c33f5a3207290f01a0e9ffa0dc0276e37c2c42d39205cd231d23685cf559f_amd64", + "product_id": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:d06c33f5a3207290f01a0e9ffa0dc0276e37c2c42d39205cd231d23685cf559f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-rhel8@sha256:d06c33f5a3207290f01a0e9ffa0dc0276e37c2c42d39205cd231d23685cf559f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8&tag=v4.12.0-202310170157.p0.g20cffc0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:dee3fd61db4349a4a7ab21d7692aba3105ffa428f6f4479eb4e0a79f8b85be5b_amd64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:dee3fd61db4349a4a7ab21d7692aba3105ffa428f6f4479eb4e0a79f8b85be5b_amd64", + "product_id": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:dee3fd61db4349a4a7ab21d7692aba3105ffa428f6f4479eb4e0a79f8b85be5b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-operator-rhel8@sha256:dee3fd61db4349a4a7ab21d7692aba3105ffa428f6f4479eb4e0a79f8b85be5b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8&tag=v4.12.0-202310170157.p0.g3201431.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:14538fa09fbddeeeba83d5bdef88f078105ddf71b62bf38a7a805ffad271dee3_amd64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:14538fa09fbddeeeba83d5bdef88f078105ddf71b62bf38a7a805ffad271dee3_amd64", + "product_id": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:14538fa09fbddeeeba83d5bdef88f078105ddf71b62bf38a7a805ffad271dee3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-webhook-rhel8@sha256:14538fa09fbddeeeba83d5bdef88f078105ddf71b62bf38a7a805ffad271dee3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8&tag=v4.12.0-202310170157.p0.g20cffc0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer@sha256:306a711cd1578d40342293b178cdd0bdfe29426e1476b0a16c93b8795727e08b_amd64", + "product": { + "name": "openshift4/ose-csi-external-resizer@sha256:306a711cd1578d40342293b178cdd0bdfe29426e1476b0a16c93b8795727e08b_amd64", + "product_id": "openshift4/ose-csi-external-resizer@sha256:306a711cd1578d40342293b178cdd0bdfe29426e1476b0a16c93b8795727e08b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer@sha256:306a711cd1578d40342293b178cdd0bdfe29426e1476b0a16c93b8795727e08b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer&tag=v4.12.0-202310170157.p0.g239d751.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:306a711cd1578d40342293b178cdd0bdfe29426e1476b0a16c93b8795727e08b_amd64", + "product": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:306a711cd1578d40342293b178cdd0bdfe29426e1476b0a16c93b8795727e08b_amd64", + "product_id": "openshift4/ose-csi-external-resizer-rhel8@sha256:306a711cd1578d40342293b178cdd0bdfe29426e1476b0a16c93b8795727e08b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer-rhel8@sha256:306a711cd1578d40342293b178cdd0bdfe29426e1476b0a16c93b8795727e08b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8&tag=v4.12.0-202310170157.p0.g239d751.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter@sha256:d25c98827218b96860e1c8722b17da1d1b2ecf1bb99e00cfcc208ce4780fa949_amd64", + "product": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:d25c98827218b96860e1c8722b17da1d1b2ecf1bb99e00cfcc208ce4780fa949_amd64", + "product_id": "openshift4/ose-csi-external-snapshotter@sha256:d25c98827218b96860e1c8722b17da1d1b2ecf1bb99e00cfcc208ce4780fa949_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter@sha256:d25c98827218b96860e1c8722b17da1d1b2ecf1bb99e00cfcc208ce4780fa949?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter&tag=v4.12.0-202310170157.p0.g7e23256.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:d25c98827218b96860e1c8722b17da1d1b2ecf1bb99e00cfcc208ce4780fa949_amd64", + "product": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:d25c98827218b96860e1c8722b17da1d1b2ecf1bb99e00cfcc208ce4780fa949_amd64", + "product_id": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:d25c98827218b96860e1c8722b17da1d1b2ecf1bb99e00cfcc208ce4780fa949_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter-rhel8@sha256:d25c98827218b96860e1c8722b17da1d1b2ecf1bb99e00cfcc208ce4780fa949?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8&tag=v4.12.0-202310170157.p0.g7e23256.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller@sha256:80540cbd5cc7c2dc4d96173afede65b5f84ed1003949eaa22a8a5d68f568ba4f_amd64", + "product": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:80540cbd5cc7c2dc4d96173afede65b5f84ed1003949eaa22a8a5d68f568ba4f_amd64", + "product_id": "openshift4/ose-csi-snapshot-controller@sha256:80540cbd5cc7c2dc4d96173afede65b5f84ed1003949eaa22a8a5d68f568ba4f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller@sha256:80540cbd5cc7c2dc4d96173afede65b5f84ed1003949eaa22a8a5d68f568ba4f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller&tag=v4.12.0-202310170157.p0.g7e23256.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:80540cbd5cc7c2dc4d96173afede65b5f84ed1003949eaa22a8a5d68f568ba4f_amd64", + "product": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:80540cbd5cc7c2dc4d96173afede65b5f84ed1003949eaa22a8a5d68f568ba4f_amd64", + "product_id": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:80540cbd5cc7c2dc4d96173afede65b5f84ed1003949eaa22a8a5d68f568ba4f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller-rhel8@sha256:80540cbd5cc7c2dc4d96173afede65b5f84ed1003949eaa22a8a5d68f568ba4f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8&tag=v4.12.0-202310170157.p0.g7e23256.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:eb8e3af5c96159797039e3f171a6509a1c80a1196b53b6aef312ccfe5f5a7f07_amd64", + "product": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:eb8e3af5c96159797039e3f171a6509a1c80a1196b53b6aef312ccfe5f5a7f07_amd64", + "product_id": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:eb8e3af5c96159797039e3f171a6509a1c80a1196b53b6aef312ccfe5f5a7f07_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-validation-webhook-rhel8@sha256:eb8e3af5c96159797039e3f171a6509a1c80a1196b53b6aef312ccfe5f5a7f07?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8&tag=v4.12.0-202310170157.p0.g7e23256.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/egress-router-cni-rhel8@sha256:635b15478f717a49ad336ecb4ac7b2974bd31784aadfd6aaea89ee515c64c271_amd64", + "product": { + "name": "openshift4/egress-router-cni-rhel8@sha256:635b15478f717a49ad336ecb4ac7b2974bd31784aadfd6aaea89ee515c64c271_amd64", + "product_id": "openshift4/egress-router-cni-rhel8@sha256:635b15478f717a49ad336ecb4ac7b2974bd31784aadfd6aaea89ee515c64c271_amd64", + "product_identification_helper": { + "purl": "pkg:oci/egress-router-cni-rhel8@sha256:635b15478f717a49ad336ecb4ac7b2974bd31784aadfd6aaea89ee515c64c271?arch=amd64&repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel8&tag=v4.12.0-202310170157.p0.ga92e415.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-etcd@sha256:a37e5fcb058911022fbc3e6589c1b7414d746decffb3ba2788249e011190cca1_amd64", + "product": { + "name": "openshift4/ose-etcd@sha256:a37e5fcb058911022fbc3e6589c1b7414d746decffb3ba2788249e011190cca1_amd64", + "product_id": "openshift4/ose-etcd@sha256:a37e5fcb058911022fbc3e6589c1b7414d746decffb3ba2788249e011190cca1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-etcd@sha256:a37e5fcb058911022fbc3e6589c1b7414d746decffb3ba2788249e011190cca1?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-etcd&tag=v4.12.0-202310170157.p0.g9f987a5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:d69c2ef0c865918756f342d4a875033fe56ba55a2b682a81dbf5de8bbe4d772b_amd64", + "product": { + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:d69c2ef0c865918756f342d4a875033fe56ba55a2b682a81dbf5de8bbe4d772b_amd64", + "product_id": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:d69c2ef0c865918756f342d4a875033fe56ba55a2b682a81dbf5de8bbe4d772b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel8@sha256:d69c2ef0c865918756f342d4a875033fe56ba55a2b682a81dbf5de8bbe4d772b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.g8d208a7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:9483af7706a1e7fb49bc5f00709a5fd56ca5e1887a0735faf67877317fbe0db7_amd64", + "product": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:9483af7706a1e7fb49bc5f00709a5fd56ca5e1887a0735faf67877317fbe0db7_amd64", + "product_id": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:9483af7706a1e7fb49bc5f00709a5fd56ca5e1887a0735faf67877317fbe0db7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel8@sha256:9483af7706a1e7fb49bc5f00709a5fd56ca5e1887a0735faf67877317fbe0db7?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8&tag=v4.12.0-202310170157.p0.geea0586.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:27f3ebabd8dd2e866fbf2403e850d6fd9cbd79fe0f77d6c99aa06453bcdc4812_amd64", + "product": { + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:27f3ebabd8dd2e866fbf2403e850d6fd9cbd79fe0f77d6c99aa06453bcdc4812_amd64", + "product_id": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:27f3ebabd8dd2e866fbf2403e850d6fd9cbd79fe0f77d6c99aa06453bcdc4812_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel8@sha256:27f3ebabd8dd2e866fbf2403e850d6fd9cbd79fe0f77d6c99aa06453bcdc4812?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8&tag=v4.12.0-202310170157.p0.g223d846.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:5d4780aba5f5481eb1b5a46efe46ee34b49d8ecb1ce20ed9391342e2920fec12_amd64", + "product": { + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:5d4780aba5f5481eb1b5a46efe46ee34b49d8ecb1ce20ed9391342e2920fec12_amd64", + "product_id": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:5d4780aba5f5481eb1b5a46efe46ee34b49d8ecb1ce20ed9391342e2920fec12_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel8@sha256:5d4780aba5f5481eb1b5a46efe46ee34b49d8ecb1ce20ed9391342e2920fec12?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8&tag=v4.12.0-202310170157.p0.gbcca07e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hypershift-rhel8@sha256:67557eeb6590a5e7e614726a7e0e1091b367d766981a153f578bae611d2d5cef_amd64", + "product": { + "name": "openshift4/ose-hypershift-rhel8@sha256:67557eeb6590a5e7e614726a7e0e1091b367d766981a153f578bae611d2d5cef_amd64", + "product_id": "openshift4/ose-hypershift-rhel8@sha256:67557eeb6590a5e7e614726a7e0e1091b367d766981a153f578bae611d2d5cef_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-hypershift-rhel8@sha256:67557eeb6590a5e7e614726a7e0e1091b367d766981a153f578bae611d2d5cef?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel8&tag=v4.12.0-202310170157.p0.g6f1e701.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2ff93e2d1880a46075eb77a889897190d401f659d6bbcee0215094a0184cde79_amd64", + "product": { + "name": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2ff93e2d1880a46075eb77a889897190d401f659d6bbcee0215094a0184cde79_amd64", + "product_id": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2ff93e2d1880a46075eb77a889897190d401f659d6bbcee0215094a0184cde79_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2ff93e2d1880a46075eb77a889897190d401f659d6bbcee0215094a0184cde79?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8&tag=v4.12.0-202310170157.p0.gc1304c8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:ed002cebd55aa75f937566befb5cdb8d56e63aab8f31bce99730ecf20cc34b1d_amd64", + "product": { + "name": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:ed002cebd55aa75f937566befb5cdb8d56e63aab8f31bce99730ecf20cc34b1d_amd64", + "product_id": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:ed002cebd55aa75f937566befb5cdb8d56e63aab8f31bce99730ecf20cc34b1d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-cloud-controller-manager-rhel8@sha256:ed002cebd55aa75f937566befb5cdb8d56e63aab8f31bce99730ecf20cc34b1d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.ge5f25fc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:2f682dfb5cceeb556c5fc75fc82b744dea367db07c5922e3987557ec2725d3ea_amd64", + "product": { + "name": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:2f682dfb5cceeb556c5fc75fc82b744dea367db07c5922e3987557ec2725d3ea_amd64", + "product_id": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:2f682dfb5cceeb556c5fc75fc82b744dea367db07c5922e3987557ec2725d3ea_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibmcloud-machine-controllers-rhel8@sha256:2f682dfb5cceeb556c5fc75fc82b744dea367db07c5922e3987557ec2725d3ea?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8&tag=v4.12.0-202310170157.p0.g31a67da.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:0e4342242c4292f44fa8fadec25d2bd4d85a82436e6d690b3b77aca301dd282c_amd64", + "product": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:0e4342242c4292f44fa8fadec25d2bd4d85a82436e6d690b3b77aca301dd282c_amd64", + "product_id": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:0e4342242c4292f44fa8fadec25d2bd4d85a82436e6d690b3b77aca301dd282c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel8@sha256:0e4342242c4292f44fa8fadec25d2bd4d85a82436e6d690b3b77aca301dd282c?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8&tag=v4.12.0-202310170157.p0.ge0f7a3b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:24f96458798b4157a2a98100f264b2ff1eb7a565d6005ed93db9e88cfa20c9d9_amd64", + "product": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:24f96458798b4157a2a98100f264b2ff1eb7a565d6005ed93db9e88cfa20c9d9_amd64", + "product_id": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:24f96458798b4157a2a98100f264b2ff1eb7a565d6005ed93db9e88cfa20c9d9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:24f96458798b4157a2a98100f264b2ff1eb7a565d6005ed93db9e88cfa20c9d9?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8&tag=v4.12.0-202310170157.p0.gf70fcce.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-image-customization-controller-rhel8@sha256:e5921c06dcdd3753397c2d6893ecc7abd615c562db40322e47590ad660eb3e00_amd64", + "product": { + "name": "openshift4/ose-image-customization-controller-rhel8@sha256:e5921c06dcdd3753397c2d6893ecc7abd615c562db40322e47590ad660eb3e00_amd64", + "product_id": "openshift4/ose-image-customization-controller-rhel8@sha256:e5921c06dcdd3753397c2d6893ecc7abd615c562db40322e47590ad660eb3e00_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-image-customization-controller-rhel8@sha256:e5921c06dcdd3753397c2d6893ecc7abd615c562db40322e47590ad660eb3e00?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel8&tag=v4.12.0-202310170157.p0.g30adb68.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-insights-rhel8-operator@sha256:83b1e0bbec77ec6064c1f076d727b17119b4d768b8b7218f3aba18ae64668f57_amd64", + "product": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:83b1e0bbec77ec6064c1f076d727b17119b4d768b8b7218f3aba18ae64668f57_amd64", + "product_id": "openshift4/ose-insights-rhel8-operator@sha256:83b1e0bbec77ec6064c1f076d727b17119b4d768b8b7218f3aba18ae64668f57_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-insights-rhel8-operator@sha256:83b1e0bbec77ec6064c1f076d727b17119b4d768b8b7218f3aba18ae64668f57?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-insights-rhel8-operator&tag=v4.12.0-202310170157.p0.g6c16f87.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer-artifacts@sha256:cf3f4f43177db53794e070caa36e10146da368643be5ecbbfdc0bfc7cad9bc3e_amd64", + "product": { + "name": "openshift4/ose-installer-artifacts@sha256:cf3f4f43177db53794e070caa36e10146da368643be5ecbbfdc0bfc7cad9bc3e_amd64", + "product_id": "openshift4/ose-installer-artifacts@sha256:cf3f4f43177db53794e070caa36e10146da368643be5ecbbfdc0bfc7cad9bc3e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer-artifacts@sha256:cf3f4f43177db53794e070caa36e10146da368643be5ecbbfdc0bfc7cad9bc3e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-installer-artifacts&tag=v4.12.0-202310170157.p0.g576d815.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer@sha256:d2e01df2322e8bdae3613cb17a1a2d9ba675a6ca07f365e472159bfb88cc3e63_amd64", + "product": { + "name": "openshift4/ose-installer@sha256:d2e01df2322e8bdae3613cb17a1a2d9ba675a6ca07f365e472159bfb88cc3e63_amd64", + "product_id": "openshift4/ose-installer@sha256:d2e01df2322e8bdae3613cb17a1a2d9ba675a6ca07f365e472159bfb88cc3e63_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer@sha256:d2e01df2322e8bdae3613cb17a1a2d9ba675a6ca07f365e472159bfb88cc3e63?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-installer&tag=v4.12.0-202310170157.p0.g576d815.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:56976be04e4573759d1d21570479256bc3f16fcd318b777f548bb398b79cb849_amd64", + "product": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:56976be04e4573759d1d21570479256bc3f16fcd318b777f548bb398b79cb849_amd64", + "product_id": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:56976be04e4573759d1d21570479256bc3f16fcd318b777f548bb398b79cb849_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-storage-version-migrator-rhel8@sha256:56976be04e4573759d1d21570479256bc3f16fcd318b777f548bb398b79cb849?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8&tag=v4.12.0-202310170157.p0.g596745c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:d3e0c66fe9509d928816fb77f097455ac3ad32ff9bebf766e1dd78da66241581_amd64", + "product": { + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:d3e0c66fe9509d928816fb77f097455ac3ad32ff9bebf766e1dd78da66241581_amd64", + "product_id": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:d3e0c66fe9509d928816fb77f097455ac3ad32ff9bebf766e1dd78da66241581_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel8@sha256:d3e0c66fe9509d928816fb77f097455ac3ad32ff9bebf766e1dd78da66241581?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.ga19615c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:58c546b1a68f4bf8467a7bec9820ceaaf1ccaf7f1d243639c240ee10d23ea43a_amd64", + "product": { + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:58c546b1a68f4bf8467a7bec9820ceaaf1ccaf7f1d243639c240ee10d23ea43a_amd64", + "product_id": "openshift4/kubevirt-csi-driver-rhel8@sha256:58c546b1a68f4bf8467a7bec9820ceaaf1ccaf7f1d243639c240ee10d23ea43a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-csi-driver-rhel8@sha256:58c546b1a68f4bf8467a7bec9820ceaaf1ccaf7f1d243639c240ee10d23ea43a?arch=amd64&repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8&tag=v4.12.0-202310170157.p0.gf407c8a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-libvirt-machine-controllers@sha256:7d5f6a770bc97e13eb2e1188dbfb8b4e522ad5ef667784ce361055bc4e00d529_amd64", + "product": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:7d5f6a770bc97e13eb2e1188dbfb8b4e522ad5ef667784ce361055bc4e00d529_amd64", + "product_id": "openshift4/ose-libvirt-machine-controllers@sha256:7d5f6a770bc97e13eb2e1188dbfb8b4e522ad5ef667784ce361055bc4e00d529_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-libvirt-machine-controllers@sha256:7d5f6a770bc97e13eb2e1188dbfb8b4e522ad5ef667784ce361055bc4e00d529?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers&tag=v4.12.0-202310170157.p0.ga2882f7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-operator@sha256:e09d9bf09c9b3e0f6692110d8f538105b62d86f555be538ba0643662756c2994_amd64", + "product": { + "name": "openshift4/ose-machine-api-operator@sha256:e09d9bf09c9b3e0f6692110d8f538105b62d86f555be538ba0643662756c2994_amd64", + "product_id": "openshift4/ose-machine-api-operator@sha256:e09d9bf09c9b3e0f6692110d8f538105b62d86f555be538ba0643662756c2994_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-operator@sha256:e09d9bf09c9b3e0f6692110d8f538105b62d86f555be538ba0643662756c2994?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-api-operator&tag=v4.12.0-202310170157.p0.ga6c42a4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:34e330d81f8b7d0effe073de732e6664718d047fbd0df6045f87f4453d7b5d0b_amd64", + "product": { + "name": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:34e330d81f8b7d0effe073de732e6664718d047fbd0df6045f87f4453d7b5d0b_amd64", + "product_id": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:34e330d81f8b7d0effe073de732e6664718d047fbd0df6045f87f4453d7b5d0b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-aws-rhel8@sha256:34e330d81f8b7d0effe073de732e6664718d047fbd0df6045f87f4453d7b5d0b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8&tag=v4.12.0-202310170157.p0.gb82e889.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:9030fe39393f4d786f902d83a7ae943f714aa5c728d5fca7084d9b188ac39a91_amd64", + "product": { + "name": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:9030fe39393f4d786f902d83a7ae943f714aa5c728d5fca7084d9b188ac39a91_amd64", + "product_id": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:9030fe39393f4d786f902d83a7ae943f714aa5c728d5fca7084d9b188ac39a91_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-azure-rhel8@sha256:9030fe39393f4d786f902d83a7ae943f714aa5c728d5fca7084d9b188ac39a91?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8&tag=v4.12.0-202310170157.p0.ge7f42fa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:9258e6325f84f30bc0720cc09b4b26e1167754ad024d0968359d673fed8c473c_amd64", + "product": { + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:9258e6325f84f30bc0720cc09b4b26e1167754ad024d0968359d673fed8c473c_amd64", + "product_id": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:9258e6325f84f30bc0720cc09b4b26e1167754ad024d0968359d673fed8c473c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-gcp-rhel8@sha256:9258e6325f84f30bc0720cc09b4b26e1167754ad024d0968359d673fed8c473c?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8&tag=v4.12.0-202310170157.p0.ge7cecfc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:5ba3cd1ce0e206a27919df15c3fba53c16fb4711ca8ef9209b7e726f509dd57b_amd64", + "product": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:5ba3cd1ce0e206a27919df15c3fba53c16fb4711ca8ef9209b7e726f509dd57b_amd64", + "product_id": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:5ba3cd1ce0e206a27919df15c3fba53c16fb4711ca8ef9209b7e726f509dd57b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-openstack-rhel8@sha256:5ba3cd1ce0e206a27919df15c3fba53c16fb4711ca8ef9209b7e726f509dd57b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8&tag=v4.12.0-202310170157.p0.g0565766.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-config-operator@sha256:023de09782684c9e4085f288e5e50d9009a3364af50f24b3cf4b9281d9c8a305_amd64", + "product": { + "name": "openshift4/ose-machine-config-operator@sha256:023de09782684c9e4085f288e5e50d9009a3364af50f24b3cf4b9281d9c8a305_amd64", + "product_id": "openshift4/ose-machine-config-operator@sha256:023de09782684c9e4085f288e5e50d9009a3364af50f24b3cf4b9281d9c8a305_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-config-operator@sha256:023de09782684c9e4085f288e5e50d9009a3364af50f24b3cf4b9281d9c8a305?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-config-operator&tag=v4.12.0-202310170157.p0.gb483cdd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-os-images-rhel8@sha256:c88533a77815c337a4f75214a702e58713f546ecb1149eea801db3327bfe9d2d_amd64", + "product": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:c88533a77815c337a4f75214a702e58713f546ecb1149eea801db3327bfe9d2d_amd64", + "product_id": "openshift4/ose-machine-os-images-rhel8@sha256:c88533a77815c337a4f75214a702e58713f546ecb1149eea801db3327bfe9d2d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-os-images-rhel8@sha256:c88533a77815c337a4f75214a702e58713f546ecb1149eea801db3327bfe9d2d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel8&tag=v4.12.0-202310170157.p0.g566bf59.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-admission-controller@sha256:cbb8149c53d980a42ceeac230337ad9083aa47b5693d430f0103c217fa1335da_amd64", + "product": { + "name": "openshift4/ose-multus-admission-controller@sha256:cbb8149c53d980a42ceeac230337ad9083aa47b5693d430f0103c217fa1335da_amd64", + "product_id": "openshift4/ose-multus-admission-controller@sha256:cbb8149c53d980a42ceeac230337ad9083aa47b5693d430f0103c217fa1335da_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-admission-controller@sha256:cbb8149c53d980a42ceeac230337ad9083aa47b5693d430f0103c217fa1335da?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller&tag=v4.12.0-202310170157.p0.g5bd752a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:28354eb69e0d4199946d43dcd85f1ee7b47c1b2f1c2edeb38f240443bf871286_amd64", + "product": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:28354eb69e0d4199946d43dcd85f1ee7b47c1b2f1c2edeb38f240443bf871286_amd64", + "product_id": "openshift4/ose-multus-networkpolicy-rhel8@sha256:28354eb69e0d4199946d43dcd85f1ee7b47c1b2f1c2edeb38f240443bf871286_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-networkpolicy-rhel8@sha256:28354eb69e0d4199946d43dcd85f1ee7b47c1b2f1c2edeb38f240443bf871286?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8&tag=v4.12.0-202310170157.p0.g421718a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:727f57b36ddae3e8aaaaba96e5025bb1c3b4eca496d38c73e80f174b5521e232_amd64", + "product": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:727f57b36ddae3e8aaaaba96e5025bb1c3b4eca496d38c73e80f174b5521e232_amd64", + "product_id": "openshift4/ose-multus-route-override-cni-rhel8@sha256:727f57b36ddae3e8aaaaba96e5025bb1c3b4eca496d38c73e80f174b5521e232_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-route-override-cni-rhel8@sha256:727f57b36ddae3e8aaaaba96e5025bb1c3b4eca496d38c73e80f174b5521e232?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8&tag=v4.12.0-202310170157.p0.gefd6ffb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ba07702bf7218465eaea5d516ee0a5ff50bfd6ee95b84024ace47742c0aabd03_amd64", + "product": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ba07702bf7218465eaea5d516ee0a5ff50bfd6ee95b84024ace47742c0aabd03_amd64", + "product_id": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ba07702bf7218465eaea5d516ee0a5ff50bfd6ee95b84024ace47742c0aabd03_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ba07702bf7218465eaea5d516ee0a5ff50bfd6ee95b84024ace47742c0aabd03?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8&tag=v4.12.0-202310170157.p0.ge56594f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-must-gather@sha256:9792bae1ec1404e9f3609c1dfac3a2759347d54f3055be205a0ae66e81b935f2_amd64", + "product": { + "name": "openshift4/ose-must-gather@sha256:9792bae1ec1404e9f3609c1dfac3a2759347d54f3055be205a0ae66e81b935f2_amd64", + "product_id": "openshift4/ose-must-gather@sha256:9792bae1ec1404e9f3609c1dfac3a2759347d54f3055be205a0ae66e81b935f2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-must-gather@sha256:9792bae1ec1404e9f3609c1dfac3a2759347d54f3055be205a0ae66e81b935f2?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-must-gather&tag=v4.12.0-202310170157.p0.g5fd2176.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:0954c2804ff01962d1032eff573cfda8a3692fd596e26bcbc39c026ed40cd579_amd64", + "product": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:0954c2804ff01962d1032eff573cfda8a3692fd596e26bcbc39c026ed40cd579_amd64", + "product_id": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:0954c2804ff01962d1032eff573cfda8a3692fd596e26bcbc39c026ed40cd579_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-interface-bond-cni-rhel8@sha256:0954c2804ff01962d1032eff573cfda8a3692fd596e26bcbc39c026ed40cd579?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8&tag=v4.12.0-202310170157.p0.g30386d6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:e4a27fb36df4af0ad7f798eb3912c46abfdb3221a60484b6e1222181a3c48e88_amd64", + "product": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:e4a27fb36df4af0ad7f798eb3912c46abfdb3221a60484b6e1222181a3c48e88_amd64", + "product_id": "openshift4/ose-network-metrics-daemon-rhel8@sha256:e4a27fb36df4af0ad7f798eb3912c46abfdb3221a60484b6e1222181a3c48e88_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-metrics-daemon-rhel8@sha256:e4a27fb36df4af0ad7f798eb3912c46abfdb3221a60484b6e1222181a3c48e88?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8&tag=v4.12.0-202310170157.p0.g74202ec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/network-tools-rhel8@sha256:1f64e67093165f8c485e15772909898238331c952596b698bc49d39cf01d03c1_amd64", + "product": { + "name": "openshift4/network-tools-rhel8@sha256:1f64e67093165f8c485e15772909898238331c952596b698bc49d39cf01d03c1_amd64", + "product_id": "openshift4/network-tools-rhel8@sha256:1f64e67093165f8c485e15772909898238331c952596b698bc49d39cf01d03c1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/network-tools-rhel8@sha256:1f64e67093165f8c485e15772909898238331c952596b698bc49d39cf01d03c1?arch=amd64&repository_url=registry.redhat.io/openshift4/network-tools-rhel8&tag=v4.12.0-202310170157.p0.gc76613c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sdn-rhel8@sha256:b6fe9c78a0e5c3f19e3b8fdd0990d73c784ce8ca44bab49f97b1b5a5ce99351c_amd64", + "product": { + "name": "openshift4/ose-sdn-rhel8@sha256:b6fe9c78a0e5c3f19e3b8fdd0990d73c784ce8ca44bab49f97b1b5a5ce99351c_amd64", + "product_id": "openshift4/ose-sdn-rhel8@sha256:b6fe9c78a0e5c3f19e3b8fdd0990d73c784ce8ca44bab49f97b1b5a5ce99351c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sdn-rhel8@sha256:b6fe9c78a0e5c3f19e3b8fdd0990d73c784ce8ca44bab49f97b1b5a5ce99351c?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-sdn-rhel8&tag=v4.12.0-202310170157.p0.gdc9f9af.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-nutanix-machine-controllers-rhel8@sha256:686a23af32a538e01c81aca4408ba36839489afc7d2c9438471177a5986fdf80_amd64", + "product": { + "name": "openshift4/ose-nutanix-machine-controllers-rhel8@sha256:686a23af32a538e01c81aca4408ba36839489afc7d2c9438471177a5986fdf80_amd64", + "product_id": "openshift4/ose-nutanix-machine-controllers-rhel8@sha256:686a23af32a538e01c81aca4408ba36839489afc7d2c9438471177a5986fdf80_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-nutanix-machine-controllers-rhel8@sha256:686a23af32a538e01c81aca4408ba36839489afc7d2c9438471177a5986fdf80?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8&tag=v4.12.0-202310170157.p0.g25aea2d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:57a62eb18f4e137d660ea4bd86cce49bfb5fa71f7657e1ed86d3684c9713c9a0_amd64", + "product": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:57a62eb18f4e137d660ea4bd86cce49bfb5fa71f7657e1ed86d3684c9713c9a0_amd64", + "product_id": "openshift4/ose-oauth-apiserver-rhel8@sha256:57a62eb18f4e137d660ea4bd86cce49bfb5fa71f7657e1ed86d3684c9713c9a0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-apiserver-rhel8@sha256:57a62eb18f4e137d660ea4bd86cce49bfb5fa71f7657e1ed86d3684c9713c9a0?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8&tag=v4.12.0-202310170157.p0.gcfafdcc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:47d2ae718f9227962ccd5b7fe0ffa7bff6accb67eb2882be0ebb6016d45e4e30_amd64", + "product": { + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:47d2ae718f9227962ccd5b7fe0ffa7bff6accb67eb2882be0ebb6016d45e4e30_amd64", + "product_id": "openshift4/ose-olm-rukpak-rhel8@sha256:47d2ae718f9227962ccd5b7fe0ffa7bff6accb67eb2882be0ebb6016d45e4e30_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-olm-rukpak-rhel8@sha256:47d2ae718f9227962ccd5b7fe0ffa7bff6accb67eb2882be0ebb6016d45e4e30?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-olm-rukpak-rhel8&tag=v4.12.0-202310170157.p0.g1b52bfe.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:f35676a8b5d5a9853e2635529968310650a9e3f4e7b97853833da831317398c6_amd64", + "product": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:f35676a8b5d5a9853e2635529968310650a9e3f4e7b97853833da831317398c6_amd64", + "product_id": "openshift4/ose-openshift-apiserver-rhel8@sha256:f35676a8b5d5a9853e2635529968310650a9e3f4e7b97853833da831317398c6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-apiserver-rhel8@sha256:f35676a8b5d5a9853e2635529968310650a9e3f4e7b97853833da831317398c6?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8&tag=v4.12.0-202310170157.p0.g635ed5c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:547a5ca42dd1d4d1cba262c8c650cb12102daa4e9bea8a0e29782350360f7449_amd64", + "product": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:547a5ca42dd1d4d1cba262c8c650cb12102daa4e9bea8a0e29782350360f7449_amd64", + "product_id": "openshift4/ose-openshift-controller-manager-rhel8@sha256:547a5ca42dd1d4d1cba262c8c650cb12102daa4e9bea8a0e29782350360f7449_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-controller-manager-rhel8@sha256:547a5ca42dd1d4d1cba262c8c650cb12102daa4e9bea8a0e29782350360f7449?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.gb6528f9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:06116ed8c86faba3798a4cccda27e5bc55f4595b3ea215a788ded647a37b2a59_amd64", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:06116ed8c86faba3798a4cccda27e5bc55f4595b3ea215a788ded647a37b2a59_amd64", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:06116ed8c86faba3798a4cccda27e5bc55f4595b3ea215a788ded647a37b2a59_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8@sha256:06116ed8c86faba3798a4cccda27e5bc55f4595b3ea215a788ded647a37b2a59?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8&tag=v4.12.0-202310170157.p0.g501138d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:cec416406223284ce91d8c71c496df2b7d4faf85c395e52c02e3d29aa5331519_amd64", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:cec416406223284ce91d8c71c496df2b7d4faf85c395e52c02e3d29aa5331519_amd64", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:cec416406223284ce91d8c71c496df2b7d4faf85c395e52c02e3d29aa5331519_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:cec416406223284ce91d8c71c496df2b7d4faf85c395e52c02e3d29aa5331519?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator&tag=v4.12.0-202310170703.p0.gdb5a7df.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:8ea560b854253f4079af13824edf37ca022569ca578e185ea6a9d8ec9fbdfbf8_amd64", + "product": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:8ea560b854253f4079af13824edf37ca022569ca578e185ea6a9d8ec9fbdfbf8_amd64", + "product_id": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:8ea560b854253f4079af13824edf37ca022569ca578e185ea6a9d8ec9fbdfbf8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel8@sha256:8ea560b854253f4079af13824edf37ca022569ca578e185ea6a9d8ec9fbdfbf8?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.g501138d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-machine-controllers@sha256:1ac497a32f3fbb2a7ac3a67d1ed497d6791b1ba2dc1459ae523545d5edd21958_amd64", + "product": { + "name": "openshift4/ose-openstack-machine-controllers@sha256:1ac497a32f3fbb2a7ac3a67d1ed497d6791b1ba2dc1459ae523545d5edd21958_amd64", + "product_id": "openshift4/ose-openstack-machine-controllers@sha256:1ac497a32f3fbb2a7ac3a67d1ed497d6791b1ba2dc1459ae523545d5edd21958_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-machine-controllers@sha256:1ac497a32f3fbb2a7ac3a67d1ed497d6791b1ba2dc1459ae523545d5edd21958?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openstack-machine-controllers&tag=v4.12.0-202310170157.p0.g8bd9c35.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:c7e5a5e8d553b22c260d311ae4585669e92ea9236559c59ca56ac016ff089cc4_amd64", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:c7e5a5e8d553b22c260d311ae4585669e92ea9236559c59ca56ac016ff089cc4_amd64", + "product_id": "openshift4/ovirt-csi-driver-rhel8@sha256:c7e5a5e8d553b22c260d311ae4585669e92ea9236559c59ca56ac016ff089cc4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8@sha256:c7e5a5e8d553b22c260d311ae4585669e92ea9236559c59ca56ac016ff089cc4?arch=amd64&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8&tag=v4.12.0-202310170157.p0.g64d58fb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:c7e5a5e8d553b22c260d311ae4585669e92ea9236559c59ca56ac016ff089cc4_amd64", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:c7e5a5e8d553b22c260d311ae4585669e92ea9236559c59ca56ac016ff089cc4_amd64", + "product_id": "openshift4/ovirt-csi-driver-rhel7@sha256:c7e5a5e8d553b22c260d311ae4585669e92ea9236559c59ca56ac016ff089cc4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel7@sha256:c7e5a5e8d553b22c260d311ae4585669e92ea9236559c59ca56ac016ff089cc4?arch=amd64&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel7&tag=v4.12.0-202310170157.p0.g64d58fb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:971ebc204aad0b8b6c0cb6384f0e2f8977351547c1ffc58964ddc9337fea1ec7_amd64", + "product": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:971ebc204aad0b8b6c0cb6384f0e2f8977351547c1ffc58964ddc9337fea1ec7_amd64", + "product_id": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:971ebc204aad0b8b6c0cb6384f0e2f8977351547c1ffc58964ddc9337fea1ec7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovirt-machine-controllers-rhel8@sha256:971ebc204aad0b8b6c0cb6384f0e2f8977351547c1ffc58964ddc9337fea1ec7?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8&tag=v4.12.0-202310170157.p0.g03e8cb5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes@sha256:b32c1441a0e9aeeea446443b12fab8c17ad0e844f184c37d0e360eb267b997e3_amd64", + "product": { + "name": "openshift4/ose-ovn-kubernetes@sha256:b32c1441a0e9aeeea446443b12fab8c17ad0e844f184c37d0e360eb267b997e3_amd64", + "product_id": "openshift4/ose-ovn-kubernetes@sha256:b32c1441a0e9aeeea446443b12fab8c17ad0e844f184c37d0e360eb267b997e3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes@sha256:b32c1441a0e9aeeea446443b12fab8c17ad0e844f184c37d0e360eb267b997e3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes&tag=v4.12.0-202310170157.p0.g97c5073.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:f775acbd3df9a70214f093b7437b61690eca98e29114caab53c532b026fc2b29_amd64", + "product": { + "name": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:f775acbd3df9a70214f093b7437b61690eca98e29114caab53c532b026fc2b29_amd64", + "product_id": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:f775acbd3df9a70214f093b7437b61690eca98e29114caab53c532b026fc2b29_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-block-csi-driver-rhel8@sha256:f775acbd3df9a70214f093b7437b61690eca98e29114caab53c532b026fc2b29?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8&tag=v4.12.0-202310170703.p0.g30d7b89.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:be9cbf1fc8149788450b5d2bffb1bbd0952b32936c9e4237d3d561da66ec8a22_amd64", + "product": { + "name": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:be9cbf1fc8149788450b5d2bffb1bbd0952b32936c9e4237d3d561da66ec8a22_amd64", + "product_id": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:be9cbf1fc8149788450b5d2bffb1bbd0952b32936c9e4237d3d561da66ec8a22_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-block-csi-driver-operator-rhel8@sha256:be9cbf1fc8149788450b5d2bffb1bbd0952b32936c9e4237d3d561da66ec8a22?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8&tag=v4.12.0-202310170157.p0.gb4da8bc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:262dcdf860ccfee39ec21dd652bef2e9d61378596b43c09296e3b3672c5cfd0f_amd64", + "product": { + "name": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:262dcdf860ccfee39ec21dd652bef2e9d61378596b43c09296e3b3672c5cfd0f_amd64", + "product_id": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:262dcdf860ccfee39ec21dd652bef2e9d61378596b43c09296e3b3672c5cfd0f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-cloud-controller-manager-rhel8@sha256:262dcdf860ccfee39ec21dd652bef2e9d61378596b43c09296e3b3672c5cfd0f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.gd8ddc10.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:937907d4bba40db25d4c7d5b33a70d468385c0c4f5c9a4687d16ebb1ff8e3563_amd64", + "product": { + "name": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:937907d4bba40db25d4c7d5b33a70d468385c0c4f5c9a4687d16ebb1ff8e3563_amd64", + "product_id": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:937907d4bba40db25d4c7d5b33a70d468385c0c4f5c9a4687d16ebb1ff8e3563_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-machine-controllers-rhel8@sha256:937907d4bba40db25d4c7d5b33a70d468385c0c4f5c9a4687d16ebb1ff8e3563?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8&tag=v4.12.0-202310170157.p0.g3f498f7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:3cade03b16237889606ab1e3b1b7fc12d160cacc36ae3df2de05d281bccc7f20_amd64", + "product": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:3cade03b16237889606ab1e3b1b7fc12d160cacc36ae3df2de05d281bccc7f20_amd64", + "product_id": "openshift4/ose-k8s-prometheus-adapter@sha256:3cade03b16237889606ab1e3b1b7fc12d160cacc36ae3df2de05d281bccc7f20_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-k8s-prometheus-adapter@sha256:3cade03b16237889606ab1e3b1b7fc12d160cacc36ae3df2de05d281bccc7f20?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter&tag=v4.12.0-202310170157.p0.g5fc351d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:d4480a2e94452006b35ed51c75b070783571bfefd49cc128cc794d2fa9b49e7e_amd64", + "product": { + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:d4480a2e94452006b35ed51c75b070783571bfefd49cc128cc794d2fa9b49e7e_amd64", + "product_id": "openshift4/openshift-route-controller-manager-rhel8@sha256:d4480a2e94452006b35ed51c75b070783571bfefd49cc128cc794d2fa9b49e7e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/openshift-route-controller-manager-rhel8@sha256:d4480a2e94452006b35ed51c75b070783571bfefd49cc128cc794d2fa9b49e7e?arch=amd64&repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.g0f141ce.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-service-ca-operator@sha256:81ca4f326c4c3a9ab82eacdee46941ca454a617eaa27a7015bb6f77707b83502_amd64", + "product": { + "name": "openshift4/ose-service-ca-operator@sha256:81ca4f326c4c3a9ab82eacdee46941ca454a617eaa27a7015bb6f77707b83502_amd64", + "product_id": "openshift4/ose-service-ca-operator@sha256:81ca4f326c4c3a9ab82eacdee46941ca454a617eaa27a7015bb6f77707b83502_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-service-ca-operator@sha256:81ca4f326c4c3a9ab82eacdee46941ca454a617eaa27a7015bb6f77707b83502?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-service-ca-operator&tag=v4.12.0-202310170157.p0.g299b709.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-thanos-rhel8@sha256:a2a0a1b4f08e2c5b3e5c1fe527400315e6532063af6c6e2dce7a0eac79a1d1bf_amd64", + "product": { + "name": "openshift4/ose-thanos-rhel8@sha256:a2a0a1b4f08e2c5b3e5c1fe527400315e6532063af6c6e2dce7a0eac79a1d1bf_amd64", + "product_id": "openshift4/ose-thanos-rhel8@sha256:a2a0a1b4f08e2c5b3e5c1fe527400315e6532063af6c6e2dce7a0eac79a1d1bf_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-thanos-rhel8@sha256:a2a0a1b4f08e2c5b3e5c1fe527400315e6532063af6c6e2dce7a0eac79a1d1bf?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-thanos-rhel8&tag=v4.12.0-202310170157.p0.g9f2b5ff.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tools-rhel8@sha256:7a2ed3f78e6da4346b729ee7823c25966f92b0767870d48e9a7b194ef08fabb9_amd64", + "product": { + "name": "openshift4/ose-tools-rhel8@sha256:7a2ed3f78e6da4346b729ee7823c25966f92b0767870d48e9a7b194ef08fabb9_amd64", + "product_id": "openshift4/ose-tools-rhel8@sha256:7a2ed3f78e6da4346b729ee7823c25966f92b0767870d48e9a7b194ef08fabb9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-tools-rhel8@sha256:7a2ed3f78e6da4346b729ee7823c25966f92b0767870d48e9a7b194ef08fabb9?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-tools-rhel8&tag=v4.12.0-202310170157.p0.g7aa4009.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vsphere-csi-driver-rhel8@sha256:c6343a07e1d4eadc18a52d8f5f7748109d58ba0a31b05db050ec7625cabe5c99_amd64", + "product": { + "name": "openshift4/ose-vsphere-csi-driver-rhel8@sha256:c6343a07e1d4eadc18a52d8f5f7748109d58ba0a31b05db050ec7625cabe5c99_amd64", + "product_id": "openshift4/ose-vsphere-csi-driver-rhel8@sha256:c6343a07e1d4eadc18a52d8f5f7748109d58ba0a31b05db050ec7625cabe5c99_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vsphere-csi-driver-rhel8@sha256:c6343a07e1d4eadc18a52d8f5f7748109d58ba0a31b05db050ec7625cabe5c99?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8&tag=v4.12.0-202310170157.p0.g942e501.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:c6343a07e1d4eadc18a52d8f5f7748109d58ba0a31b05db050ec7625cabe5c99_amd64", + "product": { + "name": "openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:c6343a07e1d4eadc18a52d8f5f7748109d58ba0a31b05db050ec7625cabe5c99_amd64", + "product_id": "openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:c6343a07e1d4eadc18a52d8f5f7748109d58ba0a31b05db050ec7625cabe5c99_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vmware-vsphere-csi-driver-rhel8@sha256:c6343a07e1d4eadc18a52d8f5f7748109d58ba0a31b05db050ec7625cabe5c99?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8&tag=v4.12.0-202310170157.p0.g942e501.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:b21f7d1930270a5ce696fdd39c19d92b93cd7e6a406b70770bfff67e2c6f8893_amd64", + "product": { + "name": "openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:b21f7d1930270a5ce696fdd39c19d92b93cd7e6a406b70770bfff67e2c6f8893_amd64", + "product_id": "openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:b21f7d1930270a5ce696fdd39c19d92b93cd7e6a406b70770bfff67e2c6f8893_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:b21f7d1930270a5ce696fdd39c19d92b93cd7e6a406b70770bfff67e2c6f8893?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8&tag=v4.12.0-202310170157.p0.g1271ebf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:b21f7d1930270a5ce696fdd39c19d92b93cd7e6a406b70770bfff67e2c6f8893_amd64", + "product": { + "name": "openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:b21f7d1930270a5ce696fdd39c19d92b93cd7e6a406b70770bfff67e2c6f8893_amd64", + "product_id": "openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:b21f7d1930270a5ce696fdd39c19d92b93cd7e6a406b70770bfff67e2c6f8893_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vsphere-csi-driver-operator-rhel8@sha256:b21f7d1930270a5ce696fdd39c19d92b93cd7e6a406b70770bfff67e2c6f8893?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8&tag=v4.12.0-202310170157.p0.g1271ebf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:c77369e7356e414a862ae6ede69169ebab5dc2498c3669af5e622933557f2cbc_amd64", + "product": { + "name": "openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:c77369e7356e414a862ae6ede69169ebab5dc2498c3669af5e622933557f2cbc_amd64", + "product_id": "openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:c77369e7356e414a862ae6ede69169ebab5dc2498c3669af5e622933557f2cbc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vsphere-cloud-controller-manager-rhel8@sha256:c77369e7356e414a862ae6ede69169ebab5dc2498c3669af5e622933557f2cbc?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.ge993e31.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:58517cd3e3956a7099f3ba528b6f7be1ea78ffff6fc9456f92de90d1a964f35d_amd64", + "product": { + "name": "openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:58517cd3e3956a7099f3ba528b6f7be1ea78ffff6fc9456f92de90d1a964f35d_amd64", + "product_id": "openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:58517cd3e3956a7099f3ba528b6f7be1ea78ffff6fc9456f92de90d1a964f35d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vsphere-cluster-api-controllers-rhel8@sha256:58517cd3e3956a7099f3ba528b6f7be1ea78ffff6fc9456f92de90d1a964f35d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8&tag=v4.12.0-202310170157.p0.g5c261b3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vsphere-problem-detector-rhel8@sha256:0123b94a59276a78fc2745cef46b93140810af26fb47aeabb13fa5860d40e239_amd64", + "product": { + "name": "openshift4/ose-vsphere-problem-detector-rhel8@sha256:0123b94a59276a78fc2745cef46b93140810af26fb47aeabb13fa5860d40e239_amd64", + "product_id": "openshift4/ose-vsphere-problem-detector-rhel8@sha256:0123b94a59276a78fc2745cef46b93140810af26fb47aeabb13fa5860d40e239_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vsphere-problem-detector-rhel8@sha256:0123b94a59276a78fc2745cef46b93140810af26fb47aeabb13fa5860d40e239?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8&tag=v4.12.0-202310170157.p0.g2fa9a1e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:1a15e3bab3f54df3800646c76d3262d375f2b201a9cd0150cdfd28014c78cff1_amd64", + "product": { + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:1a15e3bab3f54df3800646c76d3262d375f2b201a9cd0150cdfd28014c78cff1_amd64", + "product_id": "openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:1a15e3bab3f54df3800646c76d3262d375f2b201a9cd0150cdfd28014c78cff1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel8@sha256:1a15e3bab3f54df3800646c76d3262d375f2b201a9cd0150cdfd28014c78cff1?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel8&tag=v4.12.0-202310170157.p0.g97c5073.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-config-reloader@sha256:3cfeba7a98901ea510f476268f0fc520f73329d6bac8939070f20cab36c235dc_amd64", + "product": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:3cfeba7a98901ea510f476268f0fc520f73329d6bac8939070f20cab36c235dc_amd64", + "product_id": "openshift4/ose-prometheus-config-reloader@sha256:3cfeba7a98901ea510f476268f0fc520f73329d6bac8939070f20cab36c235dc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-config-reloader@sha256:3cfeba7a98901ea510f476268f0fc520f73329d6bac8939070f20cab36c235dc?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader&tag=v4.12.0-202310170157.p0.g57e7c57.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:7812668217067f9038cc63d1542d3363ccacc30bf9047e2fcb9446136f48ca01_amd64", + "product": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:7812668217067f9038cc63d1542d3363ccacc30bf9047e2fcb9446136f48ca01_amd64", + "product_id": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:7812668217067f9038cc63d1542d3363ccacc30bf9047e2fcb9446136f48ca01_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel8@sha256:7812668217067f9038cc63d1542d3363ccacc30bf9047e2fcb9446136f48ca01?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8&tag=v4.12.0-202310170157.p0.g57e7c57.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator@sha256:da1701a4c82c370c2d514bb6dc11cfbd77e190573f45e4a9e15f7e1fd548e3ea_amd64", + "product": { + "name": "openshift4/ose-prometheus-operator@sha256:da1701a4c82c370c2d514bb6dc11cfbd77e190573f45e4a9e15f7e1fd548e3ea_amd64", + "product_id": "openshift4/ose-prometheus-operator@sha256:da1701a4c82c370c2d514bb6dc11cfbd77e190573f45e4a9e15f7e1fd548e3ea_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator@sha256:da1701a4c82c370c2d514bb6dc11cfbd77e190573f45e4a9e15f7e1fd548e3ea?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator&tag=v4.12.0-202310170157.p0.g57e7c57.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prom-label-proxy@sha256:4626710ac6a341bf707b2d5be57607ebc39ddd9d300ca9496e40fcfc75f20f3e_amd64", + "product": { + "name": "openshift4/ose-prom-label-proxy@sha256:4626710ac6a341bf707b2d5be57607ebc39ddd9d300ca9496e40fcfc75f20f3e_amd64", + "product_id": "openshift4/ose-prom-label-proxy@sha256:4626710ac6a341bf707b2d5be57607ebc39ddd9d300ca9496e40fcfc75f20f3e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prom-label-proxy@sha256:4626710ac6a341bf707b2d5be57607ebc39ddd9d300ca9496e40fcfc75f20f3e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy&tag=v4.12.0-202310170157.p0.gb190788.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-telemeter@sha256:aff12125a58587f77abc574ea05378525d562683e705eddb891cf0037ed41ba6_amd64", + "product": { + "name": "openshift4/ose-telemeter@sha256:aff12125a58587f77abc574ea05378525d562683e705eddb891cf0037ed41ba6_amd64", + "product_id": "openshift4/ose-telemeter@sha256:aff12125a58587f77abc574ea05378525d562683e705eddb891cf0037ed41ba6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-telemeter@sha256:aff12125a58587f77abc574ea05378525d562683e705eddb891cf0037ed41ba6?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-telemeter&tag=v4.12.0-202310170157.p0.gfc631fc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:3009c165a58ee3178607aaaf7c01b7038629618932306c6db4644411c864dec0_amd64", + "product": { + "name": "openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:3009c165a58ee3178607aaaf7c01b7038629618932306c6db4644411c864dec0_amd64", + "product_id": "openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:3009c165a58ee3178607aaaf7c01b7038629618932306c6db4644411c864dec0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vsphere-csi-driver-syncer-rhel8@sha256:3009c165a58ee3178607aaaf7c01b7038629618932306c6db4644411c864dec0?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8&tag=v4.12.0-202310170157.p0.g942e501.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler@sha256:97ba72dadbb7d3aa990673b4b07ce5ab3360fab362b53c7e08c58c70fdba7b68_s390x", + "product": { + "name": "openshift4/ose-cluster-autoscaler@sha256:97ba72dadbb7d3aa990673b4b07ce5ab3360fab362b53c7e08c58c70fdba7b68_s390x", + "product_id": "openshift4/ose-cluster-autoscaler@sha256:97ba72dadbb7d3aa990673b4b07ce5ab3360fab362b53c7e08c58c70fdba7b68_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler@sha256:97ba72dadbb7d3aa990673b4b07ce5ab3360fab362b53c7e08c58c70fdba7b68?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler&tag=v4.12.0-202310170157.p0.g6ab8e62.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-machine-controllers@sha256:c7f636735291dee99e8ddc293c977f54b96bef8b8f172b828d94da64336b7af1_s390x", + "product": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:c7f636735291dee99e8ddc293c977f54b96bef8b8f172b828d94da64336b7af1_s390x", + "product_id": "openshift4/ose-baremetal-machine-controllers@sha256:c7f636735291dee99e8ddc293c977f54b96bef8b8f172b828d94da64336b7af1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-machine-controllers@sha256:c7f636735291dee99e8ddc293c977f54b96bef8b8f172b828d94da64336b7af1?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers&tag=v4.12.0-202310170157.p0.g63dcaf1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:e7678cfaabe7a4dcc24cd4446f86b47e03b99b6ec492a5f268f3336009ad36a2_s390x", + "product": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:e7678cfaabe7a4dcc24cd4446f86b47e03b99b6ec492a5f268f3336009ad36a2_s390x", + "product_id": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:e7678cfaabe7a4dcc24cd4446f86b47e03b99b6ec492a5f268f3336009ad36a2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-etcd-rhel8-operator@sha256:e7678cfaabe7a4dcc24cd4446f86b47e03b99b6ec492a5f268f3336009ad36a2?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator&tag=v4.12.0-202310170157.p0.ge49f1a3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-monitoring-operator@sha256:fd3858691452d8c78a2829ffd1c6ddca1e935d445d24172204e08fe0b5bc555b_s390x", + "product": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:fd3858691452d8c78a2829ffd1c6ddca1e935d445d24172204e08fe0b5bc555b_s390x", + "product_id": "openshift4/ose-cluster-monitoring-operator@sha256:fd3858691452d8c78a2829ffd1c6ddca1e935d445d24172204e08fe0b5bc555b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-monitoring-operator@sha256:fd3858691452d8c78a2829ffd1c6ddca1e935d445d24172204e08fe0b5bc555b?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-operator&tag=v4.12.0-202310170157.p0.gee959ac.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-network-operator@sha256:fde0430d195dc1ca305735f5518e626e7741fbb3b7931cbf5f073e305b78c3dc_s390x", + "product": { + "name": "openshift4/ose-cluster-network-operator@sha256:fde0430d195dc1ca305735f5518e626e7741fbb3b7931cbf5f073e305b78c3dc_s390x", + "product_id": "openshift4/ose-cluster-network-operator@sha256:fde0430d195dc1ca305735f5518e626e7741fbb3b7931cbf5f073e305b78c3dc_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-network-operator@sha256:fde0430d195dc1ca305735f5518e626e7741fbb3b7931cbf5f073e305b78c3dc?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-network-operator&tag=v4.12.0-202310170157.p0.gc6d6aff.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:5fd18165d193dbdc396748927cfaa669495e9d71424167b50e8d546a0dc96382_s390x", + "product": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:5fd18165d193dbdc396748927cfaa669495e9d71424167b50e8d546a0dc96382_s390x", + "product_id": "openshift4/ose-cluster-node-tuning-operator@sha256:5fd18165d193dbdc396748927cfaa669495e9d71424167b50e8d546a0dc96382_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-node-tuning-operator@sha256:5fd18165d193dbdc396748927cfaa669495e9d71424167b50e8d546a0dc96382?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-operator&tag=v4.12.0-202310170157.p0.g3326048.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-version-operator@sha256:b69575b074f3e7feed8e574de3f2cb349bdace61ab80759579b8da1ca6d79258_s390x", + "product": { + "name": "openshift4/ose-cluster-version-operator@sha256:b69575b074f3e7feed8e574de3f2cb349bdace61ab80759579b8da1ca6d79258_s390x", + "product_id": "openshift4/ose-cluster-version-operator@sha256:b69575b074f3e7feed8e574de3f2cb349bdace61ab80759579b8da1ca6d79258_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-version-operator@sha256:b69575b074f3e7feed8e574de3f2cb349bdace61ab80759579b8da1ca6d79258?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-version-operator&tag=v4.12.0-202310170157.p0.gf9785d6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-configmap-reloader@sha256:e3de66159778780aa3035207da2d2e7262fd8e272327f0211f8200725caf65e3_s390x", + "product": { + "name": "openshift4/ose-configmap-reloader@sha256:e3de66159778780aa3035207da2d2e7262fd8e272327f0211f8200725caf65e3_s390x", + "product_id": "openshift4/ose-configmap-reloader@sha256:e3de66159778780aa3035207da2d2e7262fd8e272327f0211f8200725caf65e3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-configmap-reloader@sha256:e3de66159778780aa3035207da2d2e7262fd8e272327f0211f8200725caf65e3?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-configmap-reloader&tag=v4.12.0-202310170157.p0.ge4d9170.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-coredns@sha256:e097676ad57a54917307d1fa9693ffc81b735556639d9584271d0768e312336d_s390x", + "product": { + "name": "openshift4/ose-coredns@sha256:e097676ad57a54917307d1fa9693ffc81b735556639d9584271d0768e312336d_s390x", + "product_id": "openshift4/ose-coredns@sha256:e097676ad57a54917307d1fa9693ffc81b735556639d9584271d0768e312336d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-coredns@sha256:e097676ad57a54917307d1fa9693ffc81b735556639d9584271d0768e312336d?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-coredns&tag=v4.12.0-202310170157.p0.g8d756b0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:daf7a036bccab186e58e710f6e059d6f2296abfb5c74d6ac5493470b08d33178_s390x", + "product": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:daf7a036bccab186e58e710f6e059d6f2296abfb5c74d6ac5493470b08d33178_s390x", + "product_id": "openshift4/ose-csi-external-attacher-rhel8@sha256:daf7a036bccab186e58e710f6e059d6f2296abfb5c74d6ac5493470b08d33178_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher-rhel8@sha256:daf7a036bccab186e58e710f6e059d6f2296abfb5c74d6ac5493470b08d33178?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8&tag=v4.12.0-202310170157.p0.g6945eef.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher@sha256:daf7a036bccab186e58e710f6e059d6f2296abfb5c74d6ac5493470b08d33178_s390x", + "product": { + "name": "openshift4/ose-csi-external-attacher@sha256:daf7a036bccab186e58e710f6e059d6f2296abfb5c74d6ac5493470b08d33178_s390x", + "product_id": "openshift4/ose-csi-external-attacher@sha256:daf7a036bccab186e58e710f6e059d6f2296abfb5c74d6ac5493470b08d33178_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher@sha256:daf7a036bccab186e58e710f6e059d6f2296abfb5c74d6ac5493470b08d33178?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher&tag=v4.12.0-202310170157.p0.g6945eef.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe@sha256:92deb685e9b5555c68495b9317aaa51973eec12d4cb66040ed7c14fa65712598_s390x", + "product": { + "name": "openshift4/ose-csi-livenessprobe@sha256:92deb685e9b5555c68495b9317aaa51973eec12d4cb66040ed7c14fa65712598_s390x", + "product_id": "openshift4/ose-csi-livenessprobe@sha256:92deb685e9b5555c68495b9317aaa51973eec12d4cb66040ed7c14fa65712598_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe@sha256:92deb685e9b5555c68495b9317aaa51973eec12d4cb66040ed7c14fa65712598?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe&tag=v4.12.0-202310170157.p0.g9cb0564.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:92deb685e9b5555c68495b9317aaa51973eec12d4cb66040ed7c14fa65712598_s390x", + "product": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:92deb685e9b5555c68495b9317aaa51973eec12d4cb66040ed7c14fa65712598_s390x", + "product_id": "openshift4/ose-csi-livenessprobe-rhel8@sha256:92deb685e9b5555c68495b9317aaa51973eec12d4cb66040ed7c14fa65712598_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe-rhel8@sha256:92deb685e9b5555c68495b9317aaa51973eec12d4cb66040ed7c14fa65712598?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8&tag=v4.12.0-202310170157.p0.g9cb0564.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar@sha256:6b9e824b66643afe0c1730b8ee5b456a3ab1d28d51a4daa72d9a9d8bda69a28b_s390x", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:6b9e824b66643afe0c1730b8ee5b456a3ab1d28d51a4daa72d9a9d8bda69a28b_s390x", + "product_id": "openshift4/ose-csi-node-driver-registrar@sha256:6b9e824b66643afe0c1730b8ee5b456a3ab1d28d51a4daa72d9a9d8bda69a28b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar@sha256:6b9e824b66643afe0c1730b8ee5b456a3ab1d28d51a4daa72d9a9d8bda69a28b?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar&tag=v4.12.0-202310170157.p0.g805d5ac.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6b9e824b66643afe0c1730b8ee5b456a3ab1d28d51a4daa72d9a9d8bda69a28b_s390x", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6b9e824b66643afe0c1730b8ee5b456a3ab1d28d51a4daa72d9a9d8bda69a28b_s390x", + "product_id": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6b9e824b66643afe0c1730b8ee5b456a3ab1d28d51a4daa72d9a9d8bda69a28b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar-rhel8@sha256:6b9e824b66643afe0c1730b8ee5b456a3ab1d28d51a4daa72d9a9d8bda69a28b?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8&tag=v4.12.0-202310170157.p0.g805d5ac.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:9a8d0600ec01c7b423200e4a9354c6f0717d691a0378a4324f2a18575e61f472_s390x", + "product": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:9a8d0600ec01c7b423200e4a9354c6f0717d691a0378a4324f2a18575e61f472_s390x", + "product_id": "openshift4/ose-csi-external-provisioner-rhel8@sha256:9a8d0600ec01c7b423200e4a9354c6f0717d691a0378a4324f2a18575e61f472_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner-rhel8@sha256:9a8d0600ec01c7b423200e4a9354c6f0717d691a0378a4324f2a18575e61f472?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8&tag=v4.12.0-202310170157.p0.g140851f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner@sha256:9a8d0600ec01c7b423200e4a9354c6f0717d691a0378a4324f2a18575e61f472_s390x", + "product": { + "name": "openshift4/ose-csi-external-provisioner@sha256:9a8d0600ec01c7b423200e4a9354c6f0717d691a0378a4324f2a18575e61f472_s390x", + "product_id": "openshift4/ose-csi-external-provisioner@sha256:9a8d0600ec01c7b423200e4a9354c6f0717d691a0378a4324f2a18575e61f472_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner@sha256:9a8d0600ec01c7b423200e4a9354c6f0717d691a0378a4324f2a18575e61f472?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner&tag=v4.12.0-202310170157.p0.g140851f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-proxy@sha256:79d463ab3045a0973203cd0fc5384c9e6bc9c640296b4b7da91f348da4345090_s390x", + "product": { + "name": "openshift4/ose-oauth-proxy@sha256:79d463ab3045a0973203cd0fc5384c9e6bc9c640296b4b7da91f348da4345090_s390x", + "product_id": "openshift4/ose-oauth-proxy@sha256:79d463ab3045a0973203cd0fc5384c9e6bc9c640296b4b7da91f348da4345090_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-proxy@sha256:79d463ab3045a0973203cd0fc5384c9e6bc9c640296b4b7da91f348da4345090?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-oauth-proxy&tag=v4.12.0-202310170157.p0.g03e5b13.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-alertmanager@sha256:a686c76b6e4954946802586f549a51049c9d5a80c89cac6bb3e1b0658141f761_s390x", + "product": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:a686c76b6e4954946802586f549a51049c9d5a80c89cac6bb3e1b0658141f761_s390x", + "product_id": "openshift4/ose-prometheus-alertmanager@sha256:a686c76b6e4954946802586f549a51049c9d5a80c89cac6bb3e1b0658141f761_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-alertmanager@sha256:a686c76b6e4954946802586f549a51049c9d5a80c89cac6bb3e1b0658141f761?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager&tag=v4.12.0-202310170157.p0.g86b1835.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-node-exporter@sha256:d015209351f7cb7d9e532974388f2991b6cdf516ea3709d67b1ad6b196ea3635_s390x", + "product": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:d015209351f7cb7d9e532974388f2991b6cdf516ea3709d67b1ad6b196ea3635_s390x", + "product_id": "openshift4/ose-prometheus-node-exporter@sha256:d015209351f7cb7d9e532974388f2991b6cdf516ea3709d67b1ad6b196ea3635_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-node-exporter@sha256:d015209351f7cb7d9e532974388f2991b6cdf516ea3709d67b1ad6b196ea3635?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter&tag=v4.12.0-202310170157.p0.gaf2f49c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus@sha256:d5fd66adfe48e5dc5efd1732c209d732d15e17037162f6cc13502106899bd45f_s390x", + "product": { + "name": "openshift4/ose-prometheus@sha256:d5fd66adfe48e5dc5efd1732c209d732d15e17037162f6cc13502106899bd45f_s390x", + "product_id": "openshift4/ose-prometheus@sha256:d5fd66adfe48e5dc5efd1732c209d732d15e17037162f6cc13502106899bd45f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus@sha256:d5fd66adfe48e5dc5efd1732c209d732d15e17037162f6cc13502106899bd45f?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prometheus&tag=v4.12.0-202310170157.p0.gc749fdb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-proxy@sha256:3ce8887b98c8d55615d830f1335ee102876fb58a0dfc3526e56c44fee409eefc_s390x", + "product": { + "name": "openshift4/ose-kube-proxy@sha256:3ce8887b98c8d55615d830f1335ee102876fb58a0dfc3526e56c44fee409eefc_s390x", + "product_id": "openshift4/ose-kube-proxy@sha256:3ce8887b98c8d55615d830f1335ee102876fb58a0dfc3526e56c44fee409eefc_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-proxy@sha256:3ce8887b98c8d55615d830f1335ee102876fb58a0dfc3526e56c44fee409eefc?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-kube-proxy&tag=v4.12.0-202310170157.p0.gdc9f9af.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-rbac-proxy@sha256:22ffff36477cbc38da7ed0af6d2ee070eb9c2d290239366147efb33fd40e9b69_s390x", + "product": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:22ffff36477cbc38da7ed0af6d2ee070eb9c2d290239366147efb33fd40e9b69_s390x", + "product_id": "openshift4/ose-kube-rbac-proxy@sha256:22ffff36477cbc38da7ed0af6d2ee070eb9c2d290239366147efb33fd40e9b69_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-rbac-proxy@sha256:22ffff36477cbc38da7ed0af6d2ee070eb9c2d290239366147efb33fd40e9b69?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy&tag=v4.12.0-202310170157.p0.g94f3fde.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-state-metrics@sha256:7a7a6fd07ff27961d6fcffd2c0110d414b1410ba02ae147e830325314ce08253_s390x", + "product": { + "name": "openshift4/ose-kube-state-metrics@sha256:7a7a6fd07ff27961d6fcffd2c0110d414b1410ba02ae147e830325314ce08253_s390x", + "product_id": "openshift4/ose-kube-state-metrics@sha256:7a7a6fd07ff27961d6fcffd2c0110d414b1410ba02ae147e830325314ce08253_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-state-metrics@sha256:7a7a6fd07ff27961d6fcffd2c0110d414b1410ba02ae147e830325314ce08253?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics&tag=v4.12.0-202310170157.p0.g9a1bf9b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-marketplace@sha256:a9274c7a888ed16768be8732d312ec61ec6a4937bca99cb1f28c9b07d1b6ff34_s390x", + "product": { + "name": "openshift4/ose-operator-marketplace@sha256:a9274c7a888ed16768be8732d312ec61ec6a4937bca99cb1f28c9b07d1b6ff34_s390x", + "product_id": "openshift4/ose-operator-marketplace@sha256:a9274c7a888ed16768be8732d312ec61ec6a4937bca99cb1f28c9b07d1b6ff34_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-marketplace@sha256:a9274c7a888ed16768be8732d312ec61ec6a4937bca99cb1f28c9b07d1b6ff34?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-operator-marketplace&tag=v4.12.0-202310170157.p0.ga5465e2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-cni@sha256:f061b72454d6296be5f3cd8d970af253dd9fd5c42c2428da6c056f6b286a9a5c_s390x", + "product": { + "name": "openshift4/ose-multus-cni@sha256:f061b72454d6296be5f3cd8d970af253dd9fd5c42c2428da6c056f6b286a9a5c_s390x", + "product_id": "openshift4/ose-multus-cni@sha256:f061b72454d6296be5f3cd8d970af253dd9fd5c42c2428da6c056f6b286a9a5c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-cni@sha256:f061b72454d6296be5f3cd8d970af253dd9fd5c42c2428da6c056f6b286a9a5c?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-multus-cni&tag=v4.12.0-202310170157.p0.g210e540.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-server-rhel8@sha256:0f093ecfcca4307cbdf811b18ce179215f57d3a2187860854558630a5c139e10_s390x", + "product": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:0f093ecfcca4307cbdf811b18ce179215f57d3a2187860854558630a5c139e10_s390x", + "product_id": "openshift4/ose-oauth-server-rhel8@sha256:0f093ecfcca4307cbdf811b18ce179215f57d3a2187860854558630a5c139e10_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-server-rhel8@sha256:0f093ecfcca4307cbdf811b18ce179215f57d3a2187860854558630a5c139e10?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel8&tag=v4.12.0-202310170157.p0.g0f83669.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-builder@sha256:d18b9770a7b93b9592afa5991c65b6ab8d7152476d381a0feefd809a7dc38ef5_s390x", + "product": { + "name": "openshift4/ose-docker-builder@sha256:d18b9770a7b93b9592afa5991c65b6ab8d7152476d381a0feefd809a7dc38ef5_s390x", + "product_id": "openshift4/ose-docker-builder@sha256:d18b9770a7b93b9592afa5991c65b6ab8d7152476d381a0feefd809a7dc38ef5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-builder@sha256:d18b9770a7b93b9592afa5991c65b6ab8d7152476d381a0feefd809a7dc38ef5?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-docker-builder&tag=v4.12.0-202310170157.p0.g1f99147.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli@sha256:6f4a704690fc58d675b68d0496fa21e4374591caddf52d42338bd8bbe0c4b21f_s390x", + "product": { + "name": "openshift4/ose-cli@sha256:6f4a704690fc58d675b68d0496fa21e4374591caddf52d42338bd8bbe0c4b21f_s390x", + "product_id": "openshift4/ose-cli@sha256:6f4a704690fc58d675b68d0496fa21e4374591caddf52d42338bd8bbe0c4b21f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli@sha256:6f4a704690fc58d675b68d0496fa21e4374591caddf52d42338bd8bbe0c4b21f?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cli&tag=v4.12.0-202310170157.p0.g7aa4009.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console@sha256:287af3d2e491af37392fe639ff3e1c5866afc2a00e1ef627c22c00c581c865d5_s390x", + "product": { + "name": "openshift4/ose-console@sha256:287af3d2e491af37392fe639ff3e1c5866afc2a00e1ef627c22c00c581c865d5_s390x", + "product_id": "openshift4/ose-console@sha256:287af3d2e491af37392fe639ff3e1c5866afc2a00e1ef627c22c00c581c865d5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-console@sha256:287af3d2e491af37392fe639ff3e1c5866afc2a00e1ef627c22c00c581c865d5?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-console&tag=v4.12.0-202310170157.p0.gdea60d8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console-operator@sha256:1672e09a543b953b5f504596f55f04b32a8b6cfd047347243fe0c950cd0195a1_s390x", + "product": { + "name": "openshift4/ose-console-operator@sha256:1672e09a543b953b5f504596f55f04b32a8b6cfd047347243fe0c950cd0195a1_s390x", + "product_id": "openshift4/ose-console-operator@sha256:1672e09a543b953b5f504596f55f04b32a8b6cfd047347243fe0c950cd0195a1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-console-operator@sha256:1672e09a543b953b5f504596f55f04b32a8b6cfd047347243fe0c950cd0195a1?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-console-operator&tag=v4.12.0-202310170157.p0.gbeba7a8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-deployer@sha256:e1c7f57c8358b75c3ffc8989be080256ea33a67de8710f04c42e3799d00feb72_s390x", + "product": { + "name": "openshift4/ose-deployer@sha256:e1c7f57c8358b75c3ffc8989be080256ea33a67de8710f04c42e3799d00feb72_s390x", + "product_id": "openshift4/ose-deployer@sha256:e1c7f57c8358b75c3ffc8989be080256ea33a67de8710f04c42e3799d00feb72_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-deployer@sha256:e1c7f57c8358b75c3ffc8989be080256ea33a67de8710f04c42e3799d00feb72?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-deployer&tag=v4.12.0-202310170157.p0.g7aa4009.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-haproxy-router@sha256:acafb1718e39720cd8ff6192904fb604f2e449bc4cb4c4d4cc52947230f351f2_s390x", + "product": { + "name": "openshift4/ose-haproxy-router@sha256:acafb1718e39720cd8ff6192904fb604f2e449bc4cb4c4d4cc52947230f351f2_s390x", + "product_id": "openshift4/ose-haproxy-router@sha256:acafb1718e39720cd8ff6192904fb604f2e449bc4cb4c4d4cc52947230f351f2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-haproxy-router@sha256:acafb1718e39720cd8ff6192904fb604f2e449bc4cb4c4d4cc52947230f351f2?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-haproxy-router&tag=v4.12.0-202310170157.p0.gcac95bc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hyperkube@sha256:fdff05ca1ae2369ef40723af0ba6c8a3f03df8613ab37a818cc80a8f5ad996b7_s390x", + "product": { + "name": "openshift4/ose-hyperkube@sha256:fdff05ca1ae2369ef40723af0ba6c8a3f03df8613ab37a818cc80a8f5ad996b7_s390x", + "product_id": "openshift4/ose-hyperkube@sha256:fdff05ca1ae2369ef40723af0ba6c8a3f03df8613ab37a818cc80a8f5ad996b7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-hyperkube@sha256:fdff05ca1ae2369ef40723af0ba6c8a3f03df8613ab37a818cc80a8f5ad996b7?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-hyperkube&tag=v4.12.0-202310170157.p0.g20cda61.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-pod@sha256:48dcdc1b5b07dfdd165c55b010035b181dcba6e7bd2ce39e5d514f9debce3e65_s390x", + "product": { + "name": "openshift4/ose-pod@sha256:48dcdc1b5b07dfdd165c55b010035b181dcba6e7bd2ce39e5d514f9debce3e65_s390x", + "product_id": "openshift4/ose-pod@sha256:48dcdc1b5b07dfdd165c55b010035b181dcba6e7bd2ce39e5d514f9debce3e65_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-pod@sha256:48dcdc1b5b07dfdd165c55b010035b181dcba6e7bd2ce39e5d514f9debce3e65?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-pod&tag=v4.12.0-202310170157.p0.g20cda61.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-registry@sha256:39d85dc2793c901e13b20bf0224ae54d4b23c272e54c02742cd0b8541e4e7fac_s390x", + "product": { + "name": "openshift4/ose-docker-registry@sha256:39d85dc2793c901e13b20bf0224ae54d4b23c272e54c02742cd0b8541e4e7fac_s390x", + "product_id": "openshift4/ose-docker-registry@sha256:39d85dc2793c901e13b20bf0224ae54d4b23c272e54c02742cd0b8541e4e7fac_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-registry@sha256:39d85dc2793c901e13b20bf0224ae54d4b23c272e54c02742cd0b8541e4e7fac?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-docker-registry&tag=v4.12.0-202310170157.p0.g9e75355.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tests@sha256:0cf78044518b80cb0b6b89b6164a86284bb541e5561e5ab2d32f2b731c0ec279_s390x", + "product": { + "name": "openshift4/ose-tests@sha256:0cf78044518b80cb0b6b89b6164a86284bb541e5561e5ab2d32f2b731c0ec279_s390x", + "product_id": "openshift4/ose-tests@sha256:0cf78044518b80cb0b6b89b6164a86284bb541e5561e5ab2d32f2b731c0ec279_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-tests@sha256:0cf78044518b80cb0b6b89b6164a86284bb541e5561e5ab2d32f2b731c0ec279?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-tests&tag=v4.12.0-202310170157.p0.gdc737e6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:285ee1721726c5c7f97254c94e8911e9ea639d41fadfdf28f1c9960067cfc333_s390x", + "product": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:285ee1721726c5c7f97254c94e8911e9ea639d41fadfdf28f1c9960067cfc333_s390x", + "product_id": "openshift4/ose-openshift-state-metrics-rhel8@sha256:285ee1721726c5c7f97254c94e8911e9ea639d41fadfdf28f1c9960067cfc333_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-state-metrics-rhel8@sha256:285ee1721726c5c7f97254c94e8911e9ea639d41fadfdf28f1c9960067cfc333?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8&tag=v4.12.0-202310170157.p0.g4c711c7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-lifecycle-manager@sha256:234ef18b957d34833ef76e8582625106ada227972e10e034f276df4a0c4be1f1_s390x", + "product": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:234ef18b957d34833ef76e8582625106ada227972e10e034f276df4a0c4be1f1_s390x", + "product_id": "openshift4/ose-operator-lifecycle-manager@sha256:234ef18b957d34833ef76e8582625106ada227972e10e034f276df4a0c4be1f1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-lifecycle-manager@sha256:234ef18b957d34833ef76e8582625106ada227972e10e034f276df4a0c4be1f1?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager&tag=v4.12.0-202310170157.p0.gdea7071.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-registry@sha256:12be41c0b4f2154bb7452feffa32e483bca4bcb1cee0daf3cec5bc346c56e851_s390x", + "product": { + "name": "openshift4/ose-operator-registry@sha256:12be41c0b4f2154bb7452feffa32e483bca4bcb1cee0daf3cec5bc346c56e851_s390x", + "product_id": "openshift4/ose-operator-registry@sha256:12be41c0b4f2154bb7452feffa32e483bca4bcb1cee0daf3cec5bc346c56e851_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-registry@sha256:12be41c0b4f2154bb7452feffa32e483bca4bcb1cee0daf3cec5bc346c56e851?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-operator-registry&tag=v4.12.0-202310170157.p0.gdea7071.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:8fd0a72a8fa225ed311a74fde3bd02d81dacf5d9c4dbba8048c5b0b5e6adc4ad_s390x", + "product": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:8fd0a72a8fa225ed311a74fde3bd02d81dacf5d9c4dbba8048c5b0b5e6adc4ad_s390x", + "product_id": "openshift4/ose-agent-installer-api-server-rhel8@sha256:8fd0a72a8fa225ed311a74fde3bd02d81dacf5d9c4dbba8048c5b0b5e6adc4ad_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-api-server-rhel8@sha256:8fd0a72a8fa225ed311a74fde3bd02d81dacf5d9c4dbba8048c5b0b5e6adc4ad?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8&tag=v4.12.0-202310170157.p0.g8149b9c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:6eba8ff772806f7ec148c6b0c1294c0502e72e9233143a2e713db87cb1bae84e_s390x", + "product": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:6eba8ff772806f7ec148c6b0c1294c0502e72e9233143a2e713db87cb1bae84e_s390x", + "product_id": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:6eba8ff772806f7ec148c6b0c1294c0502e72e9233143a2e713db87cb1bae84e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-csr-approver-rhel8@sha256:6eba8ff772806f7ec148c6b0c1294c0502e72e9233143a2e713db87cb1bae84e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8&tag=v4.12.0-202310170157.p0.g61115db.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:9157b840c6fa43eefeb9dbe7936a9716478536d4a7e29c9d06ed3c10b20a843a_s390x", + "product": { + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:9157b840c6fa43eefeb9dbe7936a9716478536d4a7e29c9d06ed3c10b20a843a_s390x", + "product_id": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:9157b840c6fa43eefeb9dbe7936a9716478536d4a7e29c9d06ed3c10b20a843a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-node-agent-rhel8@sha256:9157b840c6fa43eefeb9dbe7936a9716478536d4a7e29c9d06ed3c10b20a843a?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8&tag=v4.12.0-202310170157.p0.ga7aa600.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:7d4c8c20850cd2df6061a3097aa69afb9244bfd096c75c8c4133bd9921447558_s390x", + "product": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:7d4c8c20850cd2df6061a3097aa69afb9244bfd096c75c8c4133bd9921447558_s390x", + "product_id": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:7d4c8c20850cd2df6061a3097aa69afb9244bfd096c75c8c4133bd9921447558_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-orchestrator-rhel8@sha256:7d4c8c20850cd2df6061a3097aa69afb9244bfd096c75c8c4133bd9921447558?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8&tag=v4.12.0-202310170157.p0.g61115db.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:871ca896efbb11faa656dd8f6f50dd52e31ed8941fc5720eb1821fed774a29bb_s390x", + "product": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:871ca896efbb11faa656dd8f6f50dd52e31ed8941fc5720eb1821fed774a29bb_s390x", + "product_id": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:871ca896efbb11faa656dd8f6f50dd52e31ed8941fc5720eb1821fed774a29bb_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-apiserver-network-proxy-rhel8@sha256:871ca896efbb11faa656dd8f6f50dd52e31ed8941fc5720eb1821fed774a29bb?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8&tag=v4.12.0-202310170157.p0.gf1e6d94.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:b66ad3f6a8d52d7ad1e29d3cc034b66398c5e84bd9b29a4da87e352196cd43c0_s390x", + "product": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:b66ad3f6a8d52d7ad1e29d3cc034b66398c5e84bd9b29a4da87e352196cd43c0_s390x", + "product_id": "openshift4/ose-baremetal-installer-rhel8@sha256:b66ad3f6a8d52d7ad1e29d3cc034b66398c5e84bd9b29a4da87e352196cd43c0_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-installer-rhel8@sha256:b66ad3f6a8d52d7ad1e29d3cc034b66398c5e84bd9b29a4da87e352196cd43c0?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8&tag=v4.12.0-202310170157.p0.g576d815.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:da8e61f66027ef8e4df4eeac7498bda37d5d287bec5cb0aeefca07b93bfeddd4_s390x", + "product": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:da8e61f66027ef8e4df4eeac7498bda37d5d287bec5cb0aeefca07b93bfeddd4_s390x", + "product_id": "openshift4/ose-baremetal-rhel8-operator@sha256:da8e61f66027ef8e4df4eeac7498bda37d5d287bec5cb0aeefca07b93bfeddd4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-rhel8-operator@sha256:da8e61f66027ef8e4df4eeac7498bda37d5d287bec5cb0aeefca07b93bfeddd4?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel8-operator&tag=v4.12.0-202310170157.p0.g968ceb0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:6cc70343312731cf9629ec5dd5828f51c08f2d2349322ee982f838783315b3f0_s390x", + "product": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:6cc70343312731cf9629ec5dd5828f51c08f2d2349322ee982f838783315b3f0_s390x", + "product_id": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:6cc70343312731cf9629ec5dd5828f51c08f2d2349322ee982f838783315b3f0_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-runtimecfg-rhel8@sha256:6cc70343312731cf9629ec5dd5828f51c08f2d2349322ee982f838783315b3f0?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8&tag=v4.12.0-202310170157.p0.g23c6c0e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli-artifacts@sha256:808d087477654c817f3811a4bb8f2fcaee1d325e132d3ca1b68cae5e1b13f9f2_s390x", + "product": { + "name": "openshift4/ose-cli-artifacts@sha256:808d087477654c817f3811a4bb8f2fcaee1d325e132d3ca1b68cae5e1b13f9f2_s390x", + "product_id": "openshift4/ose-cli-artifacts@sha256:808d087477654c817f3811a4bb8f2fcaee1d325e132d3ca1b68cae5e1b13f9f2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli-artifacts@sha256:808d087477654c817f3811a4bb8f2fcaee1d325e132d3ca1b68cae5e1b13f9f2?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cli-artifacts&tag=v4.12.0-202310170157.p0.g7aa4009.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-credential-operator@sha256:cebdd612a4255035d4736359ae721ec2a62979f6016a2231b223be375a0626ea_s390x", + "product": { + "name": "openshift4/ose-cloud-credential-operator@sha256:cebdd612a4255035d4736359ae721ec2a62979f6016a2231b223be375a0626ea_s390x", + "product_id": "openshift4/ose-cloud-credential-operator@sha256:cebdd612a4255035d4736359ae721ec2a62979f6016a2231b223be375a0626ea_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-credential-operator@sha256:cebdd612a4255035d4736359ae721ec2a62979f6016a2231b223be375a0626ea?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cloud-credential-operator&tag=v4.12.0-202310170157.p0.gd4f6bca.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:c260314ce32117ef2b47da987465797573efa7a947bb7c3370e74c619fa708db_s390x", + "product": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:c260314ce32117ef2b47da987465797573efa7a947bb7c3370e74c619fa708db_s390x", + "product_id": "openshift4/cloud-network-config-controller-rhel8@sha256:c260314ce32117ef2b47da987465797573efa7a947bb7c3370e74c619fa708db_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cloud-network-config-controller-rhel8@sha256:c260314ce32117ef2b47da987465797573efa7a947bb7c3370e74c619fa708db?arch=s390x&repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel8&tag=v4.12.0-202310170157.p0.gd05b0ab.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-api-rhel8@sha256:493ea732784a8e8b536d489d18dc2b6c09993e388a8038e674ebc56fab8001a3_s390x", + "product": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:493ea732784a8e8b536d489d18dc2b6c09993e388a8038e674ebc56fab8001a3_s390x", + "product_id": "openshift4/ose-cluster-api-rhel8@sha256:493ea732784a8e8b536d489d18dc2b6c09993e388a8038e674ebc56fab8001a3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-api-rhel8@sha256:493ea732784a8e8b536d489d18dc2b6c09993e388a8038e674ebc56fab8001a3?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel8&tag=v4.12.0-202310170157.p0.gf9c215c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-authentication-operator@sha256:a43488ea65e07cc000148f7f79ad92fbddec6e8f0fa05c9e343543a8dde6e96d_s390x", + "product": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:a43488ea65e07cc000148f7f79ad92fbddec6e8f0fa05c9e343543a8dde6e96d_s390x", + "product_id": "openshift4/ose-cluster-authentication-operator@sha256:a43488ea65e07cc000148f7f79ad92fbddec6e8f0fa05c9e343543a8dde6e96d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-authentication-operator@sha256:a43488ea65e07cc000148f7f79ad92fbddec6e8f0fa05c9e343543a8dde6e96d?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-operator&tag=v4.12.0-202310170157.p0.gfe4212a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:32715d0b266f83654aca787705c1600b479dba2e21565219b176d3b62e5a6f39_s390x", + "product": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:32715d0b266f83654aca787705c1600b479dba2e21565219b176d3b62e5a6f39_s390x", + "product_id": "openshift4/ose-cluster-autoscaler-operator@sha256:32715d0b266f83654aca787705c1600b479dba2e21565219b176d3b62e5a6f39_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler-operator@sha256:32715d0b266f83654aca787705c1600b479dba2e21565219b176d3b62e5a6f39?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-operator&tag=v4.12.0-202310170157.p0.g8b23225.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b6156485ec624c96af9f8b79c844a022bb4b0692bba2f83e560fb76cf3983a30_s390x", + "product": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b6156485ec624c96af9f8b79c844a022bb4b0692bba2f83e560fb76cf3983a30_s390x", + "product_id": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b6156485ec624c96af9f8b79c844a022bb4b0692bba2f83e560fb76cf3983a30_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-baremetal-operator-rhel8@sha256:b6156485ec624c96af9f8b79c844a022bb4b0692bba2f83e560fb76cf3983a30?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8&tag=v4.12.0-202310170157.p0.g5f4795c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-bootstrap@sha256:45418e3b7db480d018718cbb86bab6bd038dc5018b326c67606db7f02689a71d_s390x", + "product": { + "name": "openshift4/ose-cluster-bootstrap@sha256:45418e3b7db480d018718cbb86bab6bd038dc5018b326c67606db7f02689a71d_s390x", + "product_id": "openshift4/ose-cluster-bootstrap@sha256:45418e3b7db480d018718cbb86bab6bd038dc5018b326c67606db7f02689a71d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-bootstrap@sha256:45418e3b7db480d018718cbb86bab6bd038dc5018b326c67606db7f02689a71d?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap&tag=v4.12.0-202310170157.p0.g138a1cf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:f808f22660249946c8ee1f2061cdb8f41374061fa75cffcce700c3548f4c56e8_s390x", + "product": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:f808f22660249946c8ee1f2061cdb8f41374061fa75cffcce700c3548f4c56e8_s390x", + "product_id": "openshift4/ose-cluster-capi-rhel8-operator@sha256:f808f22660249946c8ee1f2061cdb8f41374061fa75cffcce700c3548f4c56e8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-rhel8-operator@sha256:f808f22660249946c8ee1f2061cdb8f41374061fa75cffcce700c3548f4c56e8?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator&tag=v4.12.0-202310170157.p0.g3bfe36a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:f808f22660249946c8ee1f2061cdb8f41374061fa75cffcce700c3548f4c56e8_s390x", + "product": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:f808f22660249946c8ee1f2061cdb8f41374061fa75cffcce700c3548f4c56e8_s390x", + "product_id": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:f808f22660249946c8ee1f2061cdb8f41374061fa75cffcce700c3548f4c56e8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-operator-container-rhel8@sha256:f808f22660249946c8ee1f2061cdb8f41374061fa75cffcce700c3548f4c56e8?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8&tag=v4.12.0-202310170157.p0.g3bfe36a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:175dddb8051b56d3650a65cc6fe48982aecfbc0c4f8c5b6458c219466ce4b2ef_s390x", + "product": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:175dddb8051b56d3650a65cc6fe48982aecfbc0c4f8c5b6458c219466ce4b2ef_s390x", + "product_id": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:175dddb8051b56d3650a65cc6fe48982aecfbc0c4f8c5b6458c219466ce4b2ef_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:175dddb8051b56d3650a65cc6fe48982aecfbc0c4f8c5b6458c219466ce4b2ef?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8&tag=v4.12.0-202310170157.p0.g103cb2e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-config-operator@sha256:5484489869aa0cf06c2e19ba99619618517f12dce16969a580adde8ec269207f_s390x", + "product": { + "name": "openshift4/ose-cluster-config-operator@sha256:5484489869aa0cf06c2e19ba99619618517f12dce16969a580adde8ec269207f_s390x", + "product_id": "openshift4/ose-cluster-config-operator@sha256:5484489869aa0cf06c2e19ba99619618517f12dce16969a580adde8ec269207f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-config-operator@sha256:5484489869aa0cf06c2e19ba99619618517f12dce16969a580adde8ec269207f?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-config-operator&tag=v4.12.0-202310170157.p0.gc589595.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:63495e807c7e9daed59813ef93a8e9ed12581f07c038804687275f266442f7a7_s390x", + "product": { + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:63495e807c7e9daed59813ef93a8e9ed12581f07c038804687275f266442f7a7_s390x", + "product_id": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:63495e807c7e9daed59813ef93a8e9ed12581f07c038804687275f266442f7a7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:63495e807c7e9daed59813ef93a8e9ed12581f07c038804687275f266442f7a7?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8&tag=v4.12.0-202310170157.p0.g119d7a7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:8993aeb8f7ab396bebc1479411fc69e8e1635f743ce421dcfcd59ffc719113c3_s390x", + "product": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:8993aeb8f7ab396bebc1479411fc69e8e1635f743ce421dcfcd59ffc719113c3_s390x", + "product_id": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:8993aeb8f7ab396bebc1479411fc69e8e1635f743ce421dcfcd59ffc719113c3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:8993aeb8f7ab396bebc1479411fc69e8e1635f743ce421dcfcd59ffc719113c3?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator&tag=v4.12.0-202310170157.p0.g06bd5f6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-dns-operator@sha256:738e522a858d1f002eac70bb1cdb18f887f59509d07a6769acd784dcc7b998d6_s390x", + "product": { + "name": "openshift4/ose-cluster-dns-operator@sha256:738e522a858d1f002eac70bb1cdb18f887f59509d07a6769acd784dcc7b998d6_s390x", + "product_id": "openshift4/ose-cluster-dns-operator@sha256:738e522a858d1f002eac70bb1cdb18f887f59509d07a6769acd784dcc7b998d6_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-dns-operator@sha256:738e522a858d1f002eac70bb1cdb18f887f59509d07a6769acd784dcc7b998d6?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-dns-operator&tag=v4.12.0-202310170157.p0.gffebbf4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-image-registry-operator@sha256:98ae59335b38b61564c783ed67fe918fe062e54c02f1a869b947a88815475c29_s390x", + "product": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:98ae59335b38b61564c783ed67fe918fe062e54c02f1a869b947a88815475c29_s390x", + "product_id": "openshift4/ose-cluster-image-registry-operator@sha256:98ae59335b38b61564c783ed67fe918fe062e54c02f1a869b947a88815475c29_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-image-registry-operator@sha256:98ae59335b38b61564c783ed67fe918fe062e54c02f1a869b947a88815475c29?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-operator&tag=v4.12.0-202310170157.p0.ge9a895a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-ingress-operator@sha256:766a26e691376cc10f662bfc96119e802601c235409e292eb47fca106a98f7b6_s390x", + "product": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:766a26e691376cc10f662bfc96119e802601c235409e292eb47fca106a98f7b6_s390x", + "product_id": "openshift4/ose-cluster-ingress-operator@sha256:766a26e691376cc10f662bfc96119e802601c235409e292eb47fca106a98f7b6_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-ingress-operator@sha256:766a26e691376cc10f662bfc96119e802601c235409e292eb47fca106a98f7b6?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-operator&tag=v4.12.0-202310170157.p0.g0bb8ffc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:e0e96ef103e9fd70a4ba6564c065d050cc702bdd55c4b5b4f65c3482aad4f600_s390x", + "product": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:e0e96ef103e9fd70a4ba6564c065d050cc702bdd55c4b5b4f65c3482aad4f600_s390x", + "product_id": "openshift4/ose-cluster-kube-apiserver-operator@sha256:e0e96ef103e9fd70a4ba6564c065d050cc702bdd55c4b5b4f65c3482aad4f600_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-apiserver-operator@sha256:e0e96ef103e9fd70a4ba6564c065d050cc702bdd55c4b5b4f65c3482aad4f600?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator&tag=v4.12.0-202310170157.p0.gfe5e2a1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:3b761c7d65f05343b28730d56431ffa25da000abc003c0b76796513b2f9d4f47_s390x", + "product": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:3b761c7d65f05343b28730d56431ffa25da000abc003c0b76796513b2f9d4f47_s390x", + "product_id": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:3b761c7d65f05343b28730d56431ffa25da000abc003c0b76796513b2f9d4f47_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel8-operator@sha256:3b761c7d65f05343b28730d56431ffa25da000abc003c0b76796513b2f9d4f47?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator&tag=v4.12.0-202310170157.p0.g7bb0546.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:2581a5220945271e1b8af6676d208a53ccdadef405a698fbbedbd39d1513b50d_s390x", + "product": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:2581a5220945271e1b8af6676d208a53ccdadef405a698fbbedbd39d1513b50d_s390x", + "product_id": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:2581a5220945271e1b8af6676d208a53ccdadef405a698fbbedbd39d1513b50d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-controller-manager-operator@sha256:2581a5220945271e1b8af6676d208a53ccdadef405a698fbbedbd39d1513b50d?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator&tag=v4.12.0-202310170157.p0.g7f494d3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:d39278ccffa106b8657d61062d676a23e64477455482c6bd28af0a397d8f007a_s390x", + "product": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:d39278ccffa106b8657d61062d676a23e64477455482c6bd28af0a397d8f007a_s390x", + "product_id": "openshift4/ose-cluster-kube-scheduler-operator@sha256:d39278ccffa106b8657d61062d676a23e64477455482c6bd28af0a397d8f007a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-scheduler-operator@sha256:d39278ccffa106b8657d61062d676a23e64477455482c6bd28af0a397d8f007a?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator&tag=v4.12.0-202310170157.p0.g4f0ac8d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:3220a5cf366b861a836b0c5f5bed03b54ab44986b500e58f44a0131fb7dfc31f_s390x", + "product": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:3220a5cf366b861a836b0c5f5bed03b54ab44986b500e58f44a0131fb7dfc31f_s390x", + "product_id": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:3220a5cf366b861a836b0c5f5bed03b54ab44986b500e58f44a0131fb7dfc31f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:3220a5cf366b861a836b0c5f5bed03b54ab44986b500e58f44a0131fb7dfc31f?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator&tag=v4.12.0-202310170157.p0.g12d050a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-machine-approver@sha256:0c39d5b2659009dc2f019378ea73d0416394793778f139973f00f786bf7e9d91_s390x", + "product": { + "name": "openshift4/ose-cluster-machine-approver@sha256:0c39d5b2659009dc2f019378ea73d0416394793778f139973f00f786bf7e9d91_s390x", + "product_id": "openshift4/ose-cluster-machine-approver@sha256:0c39d5b2659009dc2f019378ea73d0416394793778f139973f00f786bf7e9d91_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-machine-approver@sha256:0c39d5b2659009dc2f019378ea73d0416394793778f139973f00f786bf7e9d91?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver&tag=v4.12.0-202310170157.p0.g6008198.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:307a4b5811ccef0f93195ba34eb7e739a6401ce0a9b07494961afc96051a3bb6_s390x", + "product": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:307a4b5811ccef0f93195ba34eb7e739a6401ce0a9b07494961afc96051a3bb6_s390x", + "product_id": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:307a4b5811ccef0f93195ba34eb7e739a6401ce0a9b07494961afc96051a3bb6_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-apiserver-operator@sha256:307a4b5811ccef0f93195ba34eb7e739a6401ce0a9b07494961afc96051a3bb6?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator&tag=v4.12.0-202310170157.p0.g9919792.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:3761739dab73a0e305386637ce5ca21936c67712a5ab3d61122f030903f97c54_s390x", + "product": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:3761739dab73a0e305386637ce5ca21936c67712a5ab3d61122f030903f97c54_s390x", + "product_id": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:3761739dab73a0e305386637ce5ca21936c67712a5ab3d61122f030903f97c54_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-controller-manager-operator@sha256:3761739dab73a0e305386637ce5ca21936c67712a5ab3d61122f030903f97c54?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator&tag=v4.12.0-202310170157.p0.gd1915d1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:37c6086aeb87d91e26a5bc166cf5fea440e5b5f865097db182a5fbf7fffe2220_s390x", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:37c6086aeb87d91e26a5bc166cf5fea440e5b5f865097db182a5fbf7fffe2220_s390x", + "product_id": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:37c6086aeb87d91e26a5bc166cf5fea440e5b5f865097db182a5fbf7fffe2220_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8-operator@sha256:37c6086aeb87d91e26a5bc166cf5fea440e5b5f865097db182a5fbf7fffe2220?arch=s390x&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator&tag=v4.12.0-202310170157.p0.g35c7cb9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:eaf0c38a7d4c72718aaea31bd37ffb3a8919898dbc42f8b596c89b89d03a6f4b_s390x", + "product": { + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:eaf0c38a7d4c72718aaea31bd37ffb3a8919898dbc42f8b596c89b89d03a6f4b_s390x", + "product_id": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:eaf0c38a7d4c72718aaea31bd37ffb3a8919898dbc42f8b596c89b89d03a6f4b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-platform-operators-manager-rhel8@sha256:eaf0c38a7d4c72718aaea31bd37ffb3a8919898dbc42f8b596c89b89d03a6f4b?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8&tag=v4.12.0-202310170157.p0.gd40fae8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:89bf12b9ed7881dc60f02ee53f6828c7932c266aeb4ea1136efa7ca58a85a48a_s390x", + "product": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:89bf12b9ed7881dc60f02ee53f6828c7932c266aeb4ea1136efa7ca58a85a48a_s390x", + "product_id": "openshift4/ose-cluster-policy-controller-rhel8@sha256:89bf12b9ed7881dc60f02ee53f6828c7932c266aeb4ea1136efa7ca58a85a48a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-policy-controller-rhel8@sha256:89bf12b9ed7881dc60f02ee53f6828c7932c266aeb4ea1136efa7ca58a85a48a?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8&tag=v4.12.0-202310170157.p0.g67ef456.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-samples-operator@sha256:9103c0d7785fa4a664e5f5cd41d56f5db7fb4f85768a3f70538c81b8a4c0bee4_s390x", + "product": { + "name": "openshift4/ose-cluster-samples-operator@sha256:9103c0d7785fa4a664e5f5cd41d56f5db7fb4f85768a3f70538c81b8a4c0bee4_s390x", + "product_id": "openshift4/ose-cluster-samples-operator@sha256:9103c0d7785fa4a664e5f5cd41d56f5db7fb4f85768a3f70538c81b8a4c0bee4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-samples-operator@sha256:9103c0d7785fa4a664e5f5cd41d56f5db7fb4f85768a3f70538c81b8a4c0bee4?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-samples-operator&tag=v4.12.0-202310170157.p0.gf1b49e3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-storage-operator@sha256:046cb7e04810fd07df5787972c4e33a98b29f721e10d79d65229fd2176f2efd3_s390x", + "product": { + "name": "openshift4/ose-cluster-storage-operator@sha256:046cb7e04810fd07df5787972c4e33a98b29f721e10d79d65229fd2176f2efd3_s390x", + "product_id": "openshift4/ose-cluster-storage-operator@sha256:046cb7e04810fd07df5787972c4e33a98b29f721e10d79d65229fd2176f2efd3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-storage-operator@sha256:046cb7e04810fd07df5787972c4e33a98b29f721e10d79d65229fd2176f2efd3?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-storage-operator&tag=v4.12.0-202310170157.p0.g7ac84a9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:e9bfc536d4eb7ce20a0ac6ab5e77fb363ffe75fb2bac3d3d36b4b0c8d4ff4d1b_s390x", + "product": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:e9bfc536d4eb7ce20a0ac6ab5e77fb363ffe75fb2bac3d3d36b4b0c8d4ff4d1b_s390x", + "product_id": "openshift4/ose-container-networking-plugins-rhel8@sha256:e9bfc536d4eb7ce20a0ac6ab5e77fb363ffe75fb2bac3d3d36b4b0c8d4ff4d1b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-container-networking-plugins-rhel8@sha256:e9bfc536d4eb7ce20a0ac6ab5e77fb363ffe75fb2bac3d3d36b4b0c8d4ff4d1b?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8&tag=v4.12.0-202310170157.p0.g6d23772.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:61ca87e9bedccbb12d640f8e0de16c0f407af5ec3dde34ab485b8904941f0aa0_s390x", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:61ca87e9bedccbb12d640f8e0de16c0f407af5ec3dde34ab485b8904941f0aa0_s390x", + "product_id": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:61ca87e9bedccbb12d640f8e0de16c0f407af5ec3dde34ab485b8904941f0aa0_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-rhel8@sha256:61ca87e9bedccbb12d640f8e0de16c0f407af5ec3dde34ab485b8904941f0aa0?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8&tag=v4.12.0-202310170157.p0.g20cffc0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:9870b21b0e109dad78de9f99a43323c90640510cbd6bc24acbc080b49436d759_s390x", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:9870b21b0e109dad78de9f99a43323c90640510cbd6bc24acbc080b49436d759_s390x", + "product_id": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:9870b21b0e109dad78de9f99a43323c90640510cbd6bc24acbc080b49436d759_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-operator-rhel8@sha256:9870b21b0e109dad78de9f99a43323c90640510cbd6bc24acbc080b49436d759?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8&tag=v4.12.0-202310170157.p0.g3201431.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:dbd3500e17a1009bc84e33e422b8b56809a9ae4099c90634620669e456c9f473_s390x", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:dbd3500e17a1009bc84e33e422b8b56809a9ae4099c90634620669e456c9f473_s390x", + "product_id": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:dbd3500e17a1009bc84e33e422b8b56809a9ae4099c90634620669e456c9f473_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-webhook-rhel8@sha256:dbd3500e17a1009bc84e33e422b8b56809a9ae4099c90634620669e456c9f473?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8&tag=v4.12.0-202310170157.p0.g20cffc0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer@sha256:ecb5acb698487c97763cc5f1b586a72a61e7aa831036ed6839122798f87761df_s390x", + "product": { + "name": "openshift4/ose-csi-external-resizer@sha256:ecb5acb698487c97763cc5f1b586a72a61e7aa831036ed6839122798f87761df_s390x", + "product_id": "openshift4/ose-csi-external-resizer@sha256:ecb5acb698487c97763cc5f1b586a72a61e7aa831036ed6839122798f87761df_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer@sha256:ecb5acb698487c97763cc5f1b586a72a61e7aa831036ed6839122798f87761df?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer&tag=v4.12.0-202310170157.p0.g239d751.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:ecb5acb698487c97763cc5f1b586a72a61e7aa831036ed6839122798f87761df_s390x", + "product": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:ecb5acb698487c97763cc5f1b586a72a61e7aa831036ed6839122798f87761df_s390x", + "product_id": "openshift4/ose-csi-external-resizer-rhel8@sha256:ecb5acb698487c97763cc5f1b586a72a61e7aa831036ed6839122798f87761df_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer-rhel8@sha256:ecb5acb698487c97763cc5f1b586a72a61e7aa831036ed6839122798f87761df?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8&tag=v4.12.0-202310170157.p0.g239d751.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter@sha256:909446e6aca76f6477fc7cee55fa00b3bdc201b0cc1550efd7446bed26f2602e_s390x", + "product": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:909446e6aca76f6477fc7cee55fa00b3bdc201b0cc1550efd7446bed26f2602e_s390x", + "product_id": "openshift4/ose-csi-external-snapshotter@sha256:909446e6aca76f6477fc7cee55fa00b3bdc201b0cc1550efd7446bed26f2602e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter@sha256:909446e6aca76f6477fc7cee55fa00b3bdc201b0cc1550efd7446bed26f2602e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter&tag=v4.12.0-202310170157.p0.g7e23256.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:909446e6aca76f6477fc7cee55fa00b3bdc201b0cc1550efd7446bed26f2602e_s390x", + "product": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:909446e6aca76f6477fc7cee55fa00b3bdc201b0cc1550efd7446bed26f2602e_s390x", + "product_id": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:909446e6aca76f6477fc7cee55fa00b3bdc201b0cc1550efd7446bed26f2602e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter-rhel8@sha256:909446e6aca76f6477fc7cee55fa00b3bdc201b0cc1550efd7446bed26f2602e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8&tag=v4.12.0-202310170157.p0.g7e23256.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller@sha256:b3dadce83e92251c76172eade1751f52ae1547ac960ef318b21123aa083ba4c0_s390x", + "product": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:b3dadce83e92251c76172eade1751f52ae1547ac960ef318b21123aa083ba4c0_s390x", + "product_id": "openshift4/ose-csi-snapshot-controller@sha256:b3dadce83e92251c76172eade1751f52ae1547ac960ef318b21123aa083ba4c0_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller@sha256:b3dadce83e92251c76172eade1751f52ae1547ac960ef318b21123aa083ba4c0?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller&tag=v4.12.0-202310170157.p0.g7e23256.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:b3dadce83e92251c76172eade1751f52ae1547ac960ef318b21123aa083ba4c0_s390x", + "product": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:b3dadce83e92251c76172eade1751f52ae1547ac960ef318b21123aa083ba4c0_s390x", + "product_id": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:b3dadce83e92251c76172eade1751f52ae1547ac960ef318b21123aa083ba4c0_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller-rhel8@sha256:b3dadce83e92251c76172eade1751f52ae1547ac960ef318b21123aa083ba4c0?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8&tag=v4.12.0-202310170157.p0.g7e23256.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:4dc4591022cb5c3ed314da52deb9eb29e43e9b08fee5c10f20bbfaa0bad0acb9_s390x", + "product": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:4dc4591022cb5c3ed314da52deb9eb29e43e9b08fee5c10f20bbfaa0bad0acb9_s390x", + "product_id": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:4dc4591022cb5c3ed314da52deb9eb29e43e9b08fee5c10f20bbfaa0bad0acb9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-validation-webhook-rhel8@sha256:4dc4591022cb5c3ed314da52deb9eb29e43e9b08fee5c10f20bbfaa0bad0acb9?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8&tag=v4.12.0-202310170157.p0.g7e23256.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/egress-router-cni-rhel8@sha256:7bba84f766c22241fb45a02f7934a9a2f34766c678e2beff7bcdf30b4353a534_s390x", + "product": { + "name": "openshift4/egress-router-cni-rhel8@sha256:7bba84f766c22241fb45a02f7934a9a2f34766c678e2beff7bcdf30b4353a534_s390x", + "product_id": "openshift4/egress-router-cni-rhel8@sha256:7bba84f766c22241fb45a02f7934a9a2f34766c678e2beff7bcdf30b4353a534_s390x", + "product_identification_helper": { + "purl": "pkg:oci/egress-router-cni-rhel8@sha256:7bba84f766c22241fb45a02f7934a9a2f34766c678e2beff7bcdf30b4353a534?arch=s390x&repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel8&tag=v4.12.0-202310170157.p0.ga92e415.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-etcd@sha256:c54a9325dabbf0d766c713013a013ea714bd01792dfa7335221dbf97ea1ff6a2_s390x", + "product": { + "name": "openshift4/ose-etcd@sha256:c54a9325dabbf0d766c713013a013ea714bd01792dfa7335221dbf97ea1ff6a2_s390x", + "product_id": "openshift4/ose-etcd@sha256:c54a9325dabbf0d766c713013a013ea714bd01792dfa7335221dbf97ea1ff6a2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-etcd@sha256:c54a9325dabbf0d766c713013a013ea714bd01792dfa7335221dbf97ea1ff6a2?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-etcd&tag=v4.12.0-202310170157.p0.g9f987a5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hypershift-rhel8@sha256:1d8fb2a65636be72daa4952bfbfe1a333f5d06c6ad4d8ae90d33de7676a1d827_s390x", + "product": { + "name": "openshift4/ose-hypershift-rhel8@sha256:1d8fb2a65636be72daa4952bfbfe1a333f5d06c6ad4d8ae90d33de7676a1d827_s390x", + "product_id": "openshift4/ose-hypershift-rhel8@sha256:1d8fb2a65636be72daa4952bfbfe1a333f5d06c6ad4d8ae90d33de7676a1d827_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-hypershift-rhel8@sha256:1d8fb2a65636be72daa4952bfbfe1a333f5d06c6ad4d8ae90d33de7676a1d827?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel8&tag=v4.12.0-202310170157.p0.g6f1e701.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-insights-rhel8-operator@sha256:6e84bcbf586464e849fb3b022ed760bc767e78f0f1e6ab8a0dcab3b1af015469_s390x", + "product": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:6e84bcbf586464e849fb3b022ed760bc767e78f0f1e6ab8a0dcab3b1af015469_s390x", + "product_id": "openshift4/ose-insights-rhel8-operator@sha256:6e84bcbf586464e849fb3b022ed760bc767e78f0f1e6ab8a0dcab3b1af015469_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-insights-rhel8-operator@sha256:6e84bcbf586464e849fb3b022ed760bc767e78f0f1e6ab8a0dcab3b1af015469?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-insights-rhel8-operator&tag=v4.12.0-202310170157.p0.g6c16f87.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer-artifacts@sha256:627636e052e6d36c1aeab38d5a198763eaa2a9e8b0eb2263873219a452c5c3dd_s390x", + "product": { + "name": "openshift4/ose-installer-artifacts@sha256:627636e052e6d36c1aeab38d5a198763eaa2a9e8b0eb2263873219a452c5c3dd_s390x", + "product_id": "openshift4/ose-installer-artifacts@sha256:627636e052e6d36c1aeab38d5a198763eaa2a9e8b0eb2263873219a452c5c3dd_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer-artifacts@sha256:627636e052e6d36c1aeab38d5a198763eaa2a9e8b0eb2263873219a452c5c3dd?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-installer-artifacts&tag=v4.12.0-202310170157.p0.g576d815.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer@sha256:2affe95bac92f414157c7436195d471a67653dbd8a15a6ba078ce0400b19e3a7_s390x", + "product": { + "name": "openshift4/ose-installer@sha256:2affe95bac92f414157c7436195d471a67653dbd8a15a6ba078ce0400b19e3a7_s390x", + "product_id": "openshift4/ose-installer@sha256:2affe95bac92f414157c7436195d471a67653dbd8a15a6ba078ce0400b19e3a7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer@sha256:2affe95bac92f414157c7436195d471a67653dbd8a15a6ba078ce0400b19e3a7?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-installer&tag=v4.12.0-202310170157.p0.g576d815.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:3b9c21fce6180f0f0c894e2240d819e1162c1a67d1de3031c1b3ae010052db5a_s390x", + "product": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:3b9c21fce6180f0f0c894e2240d819e1162c1a67d1de3031c1b3ae010052db5a_s390x", + "product_id": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:3b9c21fce6180f0f0c894e2240d819e1162c1a67d1de3031c1b3ae010052db5a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-storage-version-migrator-rhel8@sha256:3b9c21fce6180f0f0c894e2240d819e1162c1a67d1de3031c1b3ae010052db5a?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8&tag=v4.12.0-202310170157.p0.g596745c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:a798d0f1b55d7d4cc74a1cddcea1d3c6f734eef9c478854e1f45e39ce33c4223_s390x", + "product": { + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:a798d0f1b55d7d4cc74a1cddcea1d3c6f734eef9c478854e1f45e39ce33c4223_s390x", + "product_id": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:a798d0f1b55d7d4cc74a1cddcea1d3c6f734eef9c478854e1f45e39ce33c4223_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel8@sha256:a798d0f1b55d7d4cc74a1cddcea1d3c6f734eef9c478854e1f45e39ce33c4223?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.ga19615c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:7c249c78a9308ac9ab8d61d0598e9c834f4d11ae4895ab3143b76fdba5837259_s390x", + "product": { + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:7c249c78a9308ac9ab8d61d0598e9c834f4d11ae4895ab3143b76fdba5837259_s390x", + "product_id": "openshift4/kubevirt-csi-driver-rhel8@sha256:7c249c78a9308ac9ab8d61d0598e9c834f4d11ae4895ab3143b76fdba5837259_s390x", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-csi-driver-rhel8@sha256:7c249c78a9308ac9ab8d61d0598e9c834f4d11ae4895ab3143b76fdba5837259?arch=s390x&repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8&tag=v4.12.0-202310170157.p0.gf407c8a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-libvirt-machine-controllers@sha256:c522c54c2388c7903314c4f0dd174d81afdba8936bd1236b72cefeb5c0b9ef1e_s390x", + "product": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:c522c54c2388c7903314c4f0dd174d81afdba8936bd1236b72cefeb5c0b9ef1e_s390x", + "product_id": "openshift4/ose-libvirt-machine-controllers@sha256:c522c54c2388c7903314c4f0dd174d81afdba8936bd1236b72cefeb5c0b9ef1e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-libvirt-machine-controllers@sha256:c522c54c2388c7903314c4f0dd174d81afdba8936bd1236b72cefeb5c0b9ef1e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers&tag=v4.12.0-202310170157.p0.ga2882f7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-operator@sha256:f92ebea2d687a86b94db442f71c2f9d2854c12e59b7d2a9098bb3f84770e098c_s390x", + "product": { + "name": "openshift4/ose-machine-api-operator@sha256:f92ebea2d687a86b94db442f71c2f9d2854c12e59b7d2a9098bb3f84770e098c_s390x", + "product_id": "openshift4/ose-machine-api-operator@sha256:f92ebea2d687a86b94db442f71c2f9d2854c12e59b7d2a9098bb3f84770e098c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-operator@sha256:f92ebea2d687a86b94db442f71c2f9d2854c12e59b7d2a9098bb3f84770e098c?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-machine-api-operator&tag=v4.12.0-202310170157.p0.ga6c42a4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:83a96e31a692090c01a9218f5b794bbf2cc23cc3ee8d4b7f7c278c9a799cad45_s390x", + "product": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:83a96e31a692090c01a9218f5b794bbf2cc23cc3ee8d4b7f7c278c9a799cad45_s390x", + "product_id": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:83a96e31a692090c01a9218f5b794bbf2cc23cc3ee8d4b7f7c278c9a799cad45_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-openstack-rhel8@sha256:83a96e31a692090c01a9218f5b794bbf2cc23cc3ee8d4b7f7c278c9a799cad45?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8&tag=v4.12.0-202310170157.p0.g0565766.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-config-operator@sha256:4cc939b03ce317e156bce02e187763f5dd9aeddf0f277c7eb11b284d548360d7_s390x", + "product": { + "name": "openshift4/ose-machine-config-operator@sha256:4cc939b03ce317e156bce02e187763f5dd9aeddf0f277c7eb11b284d548360d7_s390x", + "product_id": "openshift4/ose-machine-config-operator@sha256:4cc939b03ce317e156bce02e187763f5dd9aeddf0f277c7eb11b284d548360d7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-config-operator@sha256:4cc939b03ce317e156bce02e187763f5dd9aeddf0f277c7eb11b284d548360d7?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-machine-config-operator&tag=v4.12.0-202310170157.p0.gb483cdd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-admission-controller@sha256:3d60dd36b862af9a3c8d62bb1440f6e81083f0b0bbe6342c91187eff1f1c739c_s390x", + "product": { + "name": "openshift4/ose-multus-admission-controller@sha256:3d60dd36b862af9a3c8d62bb1440f6e81083f0b0bbe6342c91187eff1f1c739c_s390x", + "product_id": "openshift4/ose-multus-admission-controller@sha256:3d60dd36b862af9a3c8d62bb1440f6e81083f0b0bbe6342c91187eff1f1c739c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-admission-controller@sha256:3d60dd36b862af9a3c8d62bb1440f6e81083f0b0bbe6342c91187eff1f1c739c?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller&tag=v4.12.0-202310170157.p0.g5bd752a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:651c1caeb43d293c18f6523a4ca6068753e44937be335bc8f3ac694a4a67a216_s390x", + "product": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:651c1caeb43d293c18f6523a4ca6068753e44937be335bc8f3ac694a4a67a216_s390x", + "product_id": "openshift4/ose-multus-networkpolicy-rhel8@sha256:651c1caeb43d293c18f6523a4ca6068753e44937be335bc8f3ac694a4a67a216_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-networkpolicy-rhel8@sha256:651c1caeb43d293c18f6523a4ca6068753e44937be335bc8f3ac694a4a67a216?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8&tag=v4.12.0-202310170157.p0.g421718a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:26226f692e7739d467531206b37a7b1253eb89d1b28cda11feafbe207759cdf6_s390x", + "product": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:26226f692e7739d467531206b37a7b1253eb89d1b28cda11feafbe207759cdf6_s390x", + "product_id": "openshift4/ose-multus-route-override-cni-rhel8@sha256:26226f692e7739d467531206b37a7b1253eb89d1b28cda11feafbe207759cdf6_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-route-override-cni-rhel8@sha256:26226f692e7739d467531206b37a7b1253eb89d1b28cda11feafbe207759cdf6?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8&tag=v4.12.0-202310170157.p0.gefd6ffb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:b51aebcf7f779fbb270ac77d31ba3e7d318a7ce84d719792bda75a0b761a91a1_s390x", + "product": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:b51aebcf7f779fbb270ac77d31ba3e7d318a7ce84d719792bda75a0b761a91a1_s390x", + "product_id": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:b51aebcf7f779fbb270ac77d31ba3e7d318a7ce84d719792bda75a0b761a91a1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel8@sha256:b51aebcf7f779fbb270ac77d31ba3e7d318a7ce84d719792bda75a0b761a91a1?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8&tag=v4.12.0-202310170157.p0.ge56594f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-must-gather@sha256:711b043c73359e9a30b3dc0446e984684c73f061d5e2cfd936844ce5cb94c203_s390x", + "product": { + "name": "openshift4/ose-must-gather@sha256:711b043c73359e9a30b3dc0446e984684c73f061d5e2cfd936844ce5cb94c203_s390x", + "product_id": "openshift4/ose-must-gather@sha256:711b043c73359e9a30b3dc0446e984684c73f061d5e2cfd936844ce5cb94c203_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-must-gather@sha256:711b043c73359e9a30b3dc0446e984684c73f061d5e2cfd936844ce5cb94c203?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-must-gather&tag=v4.12.0-202310170157.p0.g5fd2176.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:ea267cf3aa096128263037d2a0cb72dd2d6629bd279c5c093efb1d722679b0d3_s390x", + "product": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:ea267cf3aa096128263037d2a0cb72dd2d6629bd279c5c093efb1d722679b0d3_s390x", + "product_id": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:ea267cf3aa096128263037d2a0cb72dd2d6629bd279c5c093efb1d722679b0d3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-interface-bond-cni-rhel8@sha256:ea267cf3aa096128263037d2a0cb72dd2d6629bd279c5c093efb1d722679b0d3?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8&tag=v4.12.0-202310170157.p0.g30386d6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:614cde9798e0ac6993148a2ee4ee6638c3c0e6f81a33230416905dd23f80bee5_s390x", + "product": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:614cde9798e0ac6993148a2ee4ee6638c3c0e6f81a33230416905dd23f80bee5_s390x", + "product_id": "openshift4/ose-network-metrics-daemon-rhel8@sha256:614cde9798e0ac6993148a2ee4ee6638c3c0e6f81a33230416905dd23f80bee5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-metrics-daemon-rhel8@sha256:614cde9798e0ac6993148a2ee4ee6638c3c0e6f81a33230416905dd23f80bee5?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8&tag=v4.12.0-202310170157.p0.g74202ec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/network-tools-rhel8@sha256:f562b928112e0d7b1cfc02be3aa2d8fa75a9b14d5a336f1eedce5cddd9d8119b_s390x", + "product": { + "name": "openshift4/network-tools-rhel8@sha256:f562b928112e0d7b1cfc02be3aa2d8fa75a9b14d5a336f1eedce5cddd9d8119b_s390x", + "product_id": "openshift4/network-tools-rhel8@sha256:f562b928112e0d7b1cfc02be3aa2d8fa75a9b14d5a336f1eedce5cddd9d8119b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/network-tools-rhel8@sha256:f562b928112e0d7b1cfc02be3aa2d8fa75a9b14d5a336f1eedce5cddd9d8119b?arch=s390x&repository_url=registry.redhat.io/openshift4/network-tools-rhel8&tag=v4.12.0-202310170157.p0.gc76613c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sdn-rhel8@sha256:e52144bb930104749c0777d0a7c7e6151e96f122092d0ec2617f26f2091bc1bd_s390x", + "product": { + "name": "openshift4/ose-sdn-rhel8@sha256:e52144bb930104749c0777d0a7c7e6151e96f122092d0ec2617f26f2091bc1bd_s390x", + "product_id": "openshift4/ose-sdn-rhel8@sha256:e52144bb930104749c0777d0a7c7e6151e96f122092d0ec2617f26f2091bc1bd_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-sdn-rhel8@sha256:e52144bb930104749c0777d0a7c7e6151e96f122092d0ec2617f26f2091bc1bd?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-sdn-rhel8&tag=v4.12.0-202310170157.p0.gdc9f9af.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:63220f68d13bbf8400728710e9b7dd0a1412d0b892adb9c4b55ed4dd46f74da3_s390x", + "product": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:63220f68d13bbf8400728710e9b7dd0a1412d0b892adb9c4b55ed4dd46f74da3_s390x", + "product_id": "openshift4/ose-oauth-apiserver-rhel8@sha256:63220f68d13bbf8400728710e9b7dd0a1412d0b892adb9c4b55ed4dd46f74da3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-apiserver-rhel8@sha256:63220f68d13bbf8400728710e9b7dd0a1412d0b892adb9c4b55ed4dd46f74da3?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8&tag=v4.12.0-202310170157.p0.gcfafdcc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:8f5b5f187c2f7dc109dcaf33923ab1a07f46e0b99f5ff17b5dfe9d3261b6b040_s390x", + "product": { + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:8f5b5f187c2f7dc109dcaf33923ab1a07f46e0b99f5ff17b5dfe9d3261b6b040_s390x", + "product_id": "openshift4/ose-olm-rukpak-rhel8@sha256:8f5b5f187c2f7dc109dcaf33923ab1a07f46e0b99f5ff17b5dfe9d3261b6b040_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-olm-rukpak-rhel8@sha256:8f5b5f187c2f7dc109dcaf33923ab1a07f46e0b99f5ff17b5dfe9d3261b6b040?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-olm-rukpak-rhel8&tag=v4.12.0-202310170157.p0.g1b52bfe.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:b9bcd062a2491648f723222a2b394f71fdf99e94ddf417ceed43e357b725f64e_s390x", + "product": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:b9bcd062a2491648f723222a2b394f71fdf99e94ddf417ceed43e357b725f64e_s390x", + "product_id": "openshift4/ose-openshift-apiserver-rhel8@sha256:b9bcd062a2491648f723222a2b394f71fdf99e94ddf417ceed43e357b725f64e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-apiserver-rhel8@sha256:b9bcd062a2491648f723222a2b394f71fdf99e94ddf417ceed43e357b725f64e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8&tag=v4.12.0-202310170157.p0.g635ed5c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:54090024d9a8331850855aebe73c7dbbbed5ea57ed2784b136f60a1f7a7f8572_s390x", + "product": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:54090024d9a8331850855aebe73c7dbbbed5ea57ed2784b136f60a1f7a7f8572_s390x", + "product_id": "openshift4/ose-openshift-controller-manager-rhel8@sha256:54090024d9a8331850855aebe73c7dbbbed5ea57ed2784b136f60a1f7a7f8572_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-controller-manager-rhel8@sha256:54090024d9a8331850855aebe73c7dbbbed5ea57ed2784b136f60a1f7a7f8572?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.gb6528f9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:5562a894e36ba3b0b375cc13eaf4f9bc98c9dacb21e0d79f5bc45884ade49f60_s390x", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:5562a894e36ba3b0b375cc13eaf4f9bc98c9dacb21e0d79f5bc45884ade49f60_s390x", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:5562a894e36ba3b0b375cc13eaf4f9bc98c9dacb21e0d79f5bc45884ade49f60_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8@sha256:5562a894e36ba3b0b375cc13eaf4f9bc98c9dacb21e0d79f5bc45884ade49f60?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8&tag=v4.12.0-202310170157.p0.g501138d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:acbcc491dba91cdb81591aecd65d8fc2b68c682db044ad65bf0dfb8027f48d49_s390x", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:acbcc491dba91cdb81591aecd65d8fc2b68c682db044ad65bf0dfb8027f48d49_s390x", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:acbcc491dba91cdb81591aecd65d8fc2b68c682db044ad65bf0dfb8027f48d49_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:acbcc491dba91cdb81591aecd65d8fc2b68c682db044ad65bf0dfb8027f48d49?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator&tag=v4.12.0-202310170703.p0.gdb5a7df.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:bda631d016d5dfe1e304d6d9f8cf061f3e17df482c6f6d6f819e4a971be9075a_s390x", + "product": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:bda631d016d5dfe1e304d6d9f8cf061f3e17df482c6f6d6f819e4a971be9075a_s390x", + "product_id": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:bda631d016d5dfe1e304d6d9f8cf061f3e17df482c6f6d6f819e4a971be9075a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel8@sha256:bda631d016d5dfe1e304d6d9f8cf061f3e17df482c6f6d6f819e4a971be9075a?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.g501138d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-machine-controllers@sha256:165b3ad9ce0808e8c1f88f15f356ccc48bd1389e084601b819f12bbd87a0f351_s390x", + "product": { + "name": "openshift4/ose-openstack-machine-controllers@sha256:165b3ad9ce0808e8c1f88f15f356ccc48bd1389e084601b819f12bbd87a0f351_s390x", + "product_id": "openshift4/ose-openstack-machine-controllers@sha256:165b3ad9ce0808e8c1f88f15f356ccc48bd1389e084601b819f12bbd87a0f351_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-machine-controllers@sha256:165b3ad9ce0808e8c1f88f15f356ccc48bd1389e084601b819f12bbd87a0f351?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openstack-machine-controllers&tag=v4.12.0-202310170157.p0.g8bd9c35.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:b084fad68cc27c5c1f758e598e75edabd52bf8dac10fab6524e7e03d92c5e9e9_s390x", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:b084fad68cc27c5c1f758e598e75edabd52bf8dac10fab6524e7e03d92c5e9e9_s390x", + "product_id": "openshift4/ovirt-csi-driver-rhel8@sha256:b084fad68cc27c5c1f758e598e75edabd52bf8dac10fab6524e7e03d92c5e9e9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8@sha256:b084fad68cc27c5c1f758e598e75edabd52bf8dac10fab6524e7e03d92c5e9e9?arch=s390x&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8&tag=v4.12.0-202310170157.p0.g64d58fb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:b084fad68cc27c5c1f758e598e75edabd52bf8dac10fab6524e7e03d92c5e9e9_s390x", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:b084fad68cc27c5c1f758e598e75edabd52bf8dac10fab6524e7e03d92c5e9e9_s390x", + "product_id": "openshift4/ovirt-csi-driver-rhel7@sha256:b084fad68cc27c5c1f758e598e75edabd52bf8dac10fab6524e7e03d92c5e9e9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel7@sha256:b084fad68cc27c5c1f758e598e75edabd52bf8dac10fab6524e7e03d92c5e9e9?arch=s390x&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel7&tag=v4.12.0-202310170157.p0.g64d58fb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:b195ba89be79385fd9d0b7cb71f5d366adfb219e88c990f11b0fc13a3110b980_s390x", + "product": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:b195ba89be79385fd9d0b7cb71f5d366adfb219e88c990f11b0fc13a3110b980_s390x", + "product_id": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:b195ba89be79385fd9d0b7cb71f5d366adfb219e88c990f11b0fc13a3110b980_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovirt-machine-controllers-rhel8@sha256:b195ba89be79385fd9d0b7cb71f5d366adfb219e88c990f11b0fc13a3110b980?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8&tag=v4.12.0-202310170157.p0.g03e8cb5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes@sha256:469fc5673e5ba6d0214d34df5cee2b939a0618fef919f884eb96a665b3c1ccb9_s390x", + "product": { + "name": "openshift4/ose-ovn-kubernetes@sha256:469fc5673e5ba6d0214d34df5cee2b939a0618fef919f884eb96a665b3c1ccb9_s390x", + "product_id": "openshift4/ose-ovn-kubernetes@sha256:469fc5673e5ba6d0214d34df5cee2b939a0618fef919f884eb96a665b3c1ccb9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes@sha256:469fc5673e5ba6d0214d34df5cee2b939a0618fef919f884eb96a665b3c1ccb9?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes&tag=v4.12.0-202310170157.p0.g97c5073.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:f13d3b58d8a81afe40d1b759547e345bef7cb1e5b0d7ecefdfb78d12a6a24bd4_s390x", + "product": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:f13d3b58d8a81afe40d1b759547e345bef7cb1e5b0d7ecefdfb78d12a6a24bd4_s390x", + "product_id": "openshift4/ose-k8s-prometheus-adapter@sha256:f13d3b58d8a81afe40d1b759547e345bef7cb1e5b0d7ecefdfb78d12a6a24bd4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-k8s-prometheus-adapter@sha256:f13d3b58d8a81afe40d1b759547e345bef7cb1e5b0d7ecefdfb78d12a6a24bd4?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter&tag=v4.12.0-202310170157.p0.g5fc351d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:ebc90db39a8c83316048ed114d6e50c25464fb5b8db9a9fb2cdc9db03a79aece_s390x", + "product": { + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:ebc90db39a8c83316048ed114d6e50c25464fb5b8db9a9fb2cdc9db03a79aece_s390x", + "product_id": "openshift4/openshift-route-controller-manager-rhel8@sha256:ebc90db39a8c83316048ed114d6e50c25464fb5b8db9a9fb2cdc9db03a79aece_s390x", + "product_identification_helper": { + "purl": "pkg:oci/openshift-route-controller-manager-rhel8@sha256:ebc90db39a8c83316048ed114d6e50c25464fb5b8db9a9fb2cdc9db03a79aece?arch=s390x&repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.g0f141ce.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-service-ca-operator@sha256:48b0b57b95977ce807caf93a314dd586140dc62bd6eee6a232282e8b7ca827a1_s390x", + "product": { + "name": "openshift4/ose-service-ca-operator@sha256:48b0b57b95977ce807caf93a314dd586140dc62bd6eee6a232282e8b7ca827a1_s390x", + "product_id": "openshift4/ose-service-ca-operator@sha256:48b0b57b95977ce807caf93a314dd586140dc62bd6eee6a232282e8b7ca827a1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-service-ca-operator@sha256:48b0b57b95977ce807caf93a314dd586140dc62bd6eee6a232282e8b7ca827a1?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-service-ca-operator&tag=v4.12.0-202310170157.p0.g299b709.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-thanos-rhel8@sha256:0db3558499ceb55d4f27fce750dfdd56f9047f03e7b335f682a854caa912f0b3_s390x", + "product": { + "name": "openshift4/ose-thanos-rhel8@sha256:0db3558499ceb55d4f27fce750dfdd56f9047f03e7b335f682a854caa912f0b3_s390x", + "product_id": "openshift4/ose-thanos-rhel8@sha256:0db3558499ceb55d4f27fce750dfdd56f9047f03e7b335f682a854caa912f0b3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-thanos-rhel8@sha256:0db3558499ceb55d4f27fce750dfdd56f9047f03e7b335f682a854caa912f0b3?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-thanos-rhel8&tag=v4.12.0-202310170157.p0.g9f2b5ff.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tools-rhel8@sha256:56672fe19e4d976326687bab8d371461077b8b8e3e48b4e75b0caa403a374e60_s390x", + "product": { + "name": "openshift4/ose-tools-rhel8@sha256:56672fe19e4d976326687bab8d371461077b8b8e3e48b4e75b0caa403a374e60_s390x", + "product_id": "openshift4/ose-tools-rhel8@sha256:56672fe19e4d976326687bab8d371461077b8b8e3e48b4e75b0caa403a374e60_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-tools-rhel8@sha256:56672fe19e4d976326687bab8d371461077b8b8e3e48b4e75b0caa403a374e60?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-tools-rhel8&tag=v4.12.0-202310170157.p0.g7aa4009.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:a2b88db9146dc87d77a1b142f9eb3021b9787754a7e33ecbb249185ff7105eb1_s390x", + "product": { + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:a2b88db9146dc87d77a1b142f9eb3021b9787754a7e33ecbb249185ff7105eb1_s390x", + "product_id": "openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:a2b88db9146dc87d77a1b142f9eb3021b9787754a7e33ecbb249185ff7105eb1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel8@sha256:a2b88db9146dc87d77a1b142f9eb3021b9787754a7e33ecbb249185ff7105eb1?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel8&tag=v4.12.0-202310170157.p0.g97c5073.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-config-reloader@sha256:0312da93b6349a3866b185bf2d8085f5a98f8d109d5f127833928540e8e47714_s390x", + "product": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:0312da93b6349a3866b185bf2d8085f5a98f8d109d5f127833928540e8e47714_s390x", + "product_id": "openshift4/ose-prometheus-config-reloader@sha256:0312da93b6349a3866b185bf2d8085f5a98f8d109d5f127833928540e8e47714_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-config-reloader@sha256:0312da93b6349a3866b185bf2d8085f5a98f8d109d5f127833928540e8e47714?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader&tag=v4.12.0-202310170157.p0.g57e7c57.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:42c6e229368d5f5ad26f57fd45f5e34258d661b2a11cc1494f4a7985a1b8892f_s390x", + "product": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:42c6e229368d5f5ad26f57fd45f5e34258d661b2a11cc1494f4a7985a1b8892f_s390x", + "product_id": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:42c6e229368d5f5ad26f57fd45f5e34258d661b2a11cc1494f4a7985a1b8892f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel8@sha256:42c6e229368d5f5ad26f57fd45f5e34258d661b2a11cc1494f4a7985a1b8892f?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8&tag=v4.12.0-202310170157.p0.g57e7c57.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator@sha256:794d100ab1ef39ad81a3643a016897e94bec577db28aed901a356ecf0b961712_s390x", + "product": { + "name": "openshift4/ose-prometheus-operator@sha256:794d100ab1ef39ad81a3643a016897e94bec577db28aed901a356ecf0b961712_s390x", + "product_id": "openshift4/ose-prometheus-operator@sha256:794d100ab1ef39ad81a3643a016897e94bec577db28aed901a356ecf0b961712_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator@sha256:794d100ab1ef39ad81a3643a016897e94bec577db28aed901a356ecf0b961712?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator&tag=v4.12.0-202310170157.p0.g57e7c57.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prom-label-proxy@sha256:1b3f8f2ef367bac9537d8973362530b3789b9083a4fd16c0ce8ea167c37206f2_s390x", + "product": { + "name": "openshift4/ose-prom-label-proxy@sha256:1b3f8f2ef367bac9537d8973362530b3789b9083a4fd16c0ce8ea167c37206f2_s390x", + "product_id": "openshift4/ose-prom-label-proxy@sha256:1b3f8f2ef367bac9537d8973362530b3789b9083a4fd16c0ce8ea167c37206f2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prom-label-proxy@sha256:1b3f8f2ef367bac9537d8973362530b3789b9083a4fd16c0ce8ea167c37206f2?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy&tag=v4.12.0-202310170157.p0.gb190788.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-telemeter@sha256:2ceadad432a3e941cab5a20b766e3750ea703110baa0c22c5da474c1cedb3f20_s390x", + "product": { + "name": "openshift4/ose-telemeter@sha256:2ceadad432a3e941cab5a20b766e3750ea703110baa0c22c5da474c1cedb3f20_s390x", + "product_id": "openshift4/ose-telemeter@sha256:2ceadad432a3e941cab5a20b766e3750ea703110baa0c22c5da474c1cedb3f20_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-telemeter@sha256:2ceadad432a3e941cab5a20b766e3750ea703110baa0c22c5da474c1cedb3f20?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-telemeter&tag=v4.12.0-202310170157.p0.gfc631fc.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler@sha256:c1278df4c729ba55dcf5025273c88dd7bf3b102e800628c455179b058397b62d_ppc64le", + "product": { + "name": "openshift4/ose-cluster-autoscaler@sha256:c1278df4c729ba55dcf5025273c88dd7bf3b102e800628c455179b058397b62d_ppc64le", + "product_id": "openshift4/ose-cluster-autoscaler@sha256:c1278df4c729ba55dcf5025273c88dd7bf3b102e800628c455179b058397b62d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler@sha256:c1278df4c729ba55dcf5025273c88dd7bf3b102e800628c455179b058397b62d?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler&tag=v4.12.0-202310170157.p0.g6ab8e62.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-machine-controllers@sha256:d084b839165cc77bdb0a8f527c5955c76f4b8172b8c84967b220055d6dc004c3_ppc64le", + "product": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:d084b839165cc77bdb0a8f527c5955c76f4b8172b8c84967b220055d6dc004c3_ppc64le", + "product_id": "openshift4/ose-baremetal-machine-controllers@sha256:d084b839165cc77bdb0a8f527c5955c76f4b8172b8c84967b220055d6dc004c3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-machine-controllers@sha256:d084b839165cc77bdb0a8f527c5955c76f4b8172b8c84967b220055d6dc004c3?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers&tag=v4.12.0-202310170157.p0.g63dcaf1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:667de1afbe71fac08a64d7ba1ac5769b604ce6ef8044e763bd4bf9e33b9854ad_ppc64le", + "product": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:667de1afbe71fac08a64d7ba1ac5769b604ce6ef8044e763bd4bf9e33b9854ad_ppc64le", + "product_id": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:667de1afbe71fac08a64d7ba1ac5769b604ce6ef8044e763bd4bf9e33b9854ad_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-etcd-rhel8-operator@sha256:667de1afbe71fac08a64d7ba1ac5769b604ce6ef8044e763bd4bf9e33b9854ad?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator&tag=v4.12.0-202310170157.p0.ge49f1a3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-monitoring-operator@sha256:21d849967925c10fe8797113837eb13217657d9ecffe6e618ed5dfa01e0b2bda_ppc64le", + "product": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:21d849967925c10fe8797113837eb13217657d9ecffe6e618ed5dfa01e0b2bda_ppc64le", + "product_id": "openshift4/ose-cluster-monitoring-operator@sha256:21d849967925c10fe8797113837eb13217657d9ecffe6e618ed5dfa01e0b2bda_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-monitoring-operator@sha256:21d849967925c10fe8797113837eb13217657d9ecffe6e618ed5dfa01e0b2bda?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-operator&tag=v4.12.0-202310170157.p0.gee959ac.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-network-operator@sha256:c33f10c72c62176c9fd800ae0431463f8d7bb716c1a74b6befb9b51af511fdb8_ppc64le", + "product": { + "name": "openshift4/ose-cluster-network-operator@sha256:c33f10c72c62176c9fd800ae0431463f8d7bb716c1a74b6befb9b51af511fdb8_ppc64le", + "product_id": "openshift4/ose-cluster-network-operator@sha256:c33f10c72c62176c9fd800ae0431463f8d7bb716c1a74b6befb9b51af511fdb8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-network-operator@sha256:c33f10c72c62176c9fd800ae0431463f8d7bb716c1a74b6befb9b51af511fdb8?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-network-operator&tag=v4.12.0-202310170157.p0.gc6d6aff.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:4425ebabcd5ec1afbcada6d86e3885b3430d3a7841ccd7660874cd4efae8af49_ppc64le", + "product": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:4425ebabcd5ec1afbcada6d86e3885b3430d3a7841ccd7660874cd4efae8af49_ppc64le", + "product_id": "openshift4/ose-cluster-node-tuning-operator@sha256:4425ebabcd5ec1afbcada6d86e3885b3430d3a7841ccd7660874cd4efae8af49_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-node-tuning-operator@sha256:4425ebabcd5ec1afbcada6d86e3885b3430d3a7841ccd7660874cd4efae8af49?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-operator&tag=v4.12.0-202310170157.p0.g3326048.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-version-operator@sha256:51ea1bd97c6d3aed567ea030ddc24753bfafb711f0d6de2994e4117cd6cfaeab_ppc64le", + "product": { + "name": "openshift4/ose-cluster-version-operator@sha256:51ea1bd97c6d3aed567ea030ddc24753bfafb711f0d6de2994e4117cd6cfaeab_ppc64le", + "product_id": "openshift4/ose-cluster-version-operator@sha256:51ea1bd97c6d3aed567ea030ddc24753bfafb711f0d6de2994e4117cd6cfaeab_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-version-operator@sha256:51ea1bd97c6d3aed567ea030ddc24753bfafb711f0d6de2994e4117cd6cfaeab?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-version-operator&tag=v4.12.0-202310170157.p0.gf9785d6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-configmap-reloader@sha256:a726bf98e43c8ecdb1331b61e206dc077eb6e21fd851e7a20f0a781ed3333e44_ppc64le", + "product": { + "name": "openshift4/ose-configmap-reloader@sha256:a726bf98e43c8ecdb1331b61e206dc077eb6e21fd851e7a20f0a781ed3333e44_ppc64le", + "product_id": "openshift4/ose-configmap-reloader@sha256:a726bf98e43c8ecdb1331b61e206dc077eb6e21fd851e7a20f0a781ed3333e44_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-configmap-reloader@sha256:a726bf98e43c8ecdb1331b61e206dc077eb6e21fd851e7a20f0a781ed3333e44?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-configmap-reloader&tag=v4.12.0-202310170157.p0.ge4d9170.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-coredns@sha256:47014e84d6796691bf2901917512efba2865b2b54599533402d38b0344370079_ppc64le", + "product": { + "name": "openshift4/ose-coredns@sha256:47014e84d6796691bf2901917512efba2865b2b54599533402d38b0344370079_ppc64le", + "product_id": "openshift4/ose-coredns@sha256:47014e84d6796691bf2901917512efba2865b2b54599533402d38b0344370079_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-coredns@sha256:47014e84d6796691bf2901917512efba2865b2b54599533402d38b0344370079?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-coredns&tag=v4.12.0-202310170157.p0.g8d756b0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:99d0b058e9d12771815da2ec01641987e5787b0ad03bdeceeedb1527acea6d84_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:99d0b058e9d12771815da2ec01641987e5787b0ad03bdeceeedb1527acea6d84_ppc64le", + "product_id": "openshift4/ose-csi-external-attacher-rhel8@sha256:99d0b058e9d12771815da2ec01641987e5787b0ad03bdeceeedb1527acea6d84_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher-rhel8@sha256:99d0b058e9d12771815da2ec01641987e5787b0ad03bdeceeedb1527acea6d84?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8&tag=v4.12.0-202310170157.p0.g6945eef.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher@sha256:99d0b058e9d12771815da2ec01641987e5787b0ad03bdeceeedb1527acea6d84_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-attacher@sha256:99d0b058e9d12771815da2ec01641987e5787b0ad03bdeceeedb1527acea6d84_ppc64le", + "product_id": "openshift4/ose-csi-external-attacher@sha256:99d0b058e9d12771815da2ec01641987e5787b0ad03bdeceeedb1527acea6d84_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher@sha256:99d0b058e9d12771815da2ec01641987e5787b0ad03bdeceeedb1527acea6d84?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher&tag=v4.12.0-202310170157.p0.g6945eef.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:6b8f7430610adfa57c52f3fc45fc82fb0c5fd595d9870c950363ad7306bb93df_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:6b8f7430610adfa57c52f3fc45fc82fb0c5fd595d9870c950363ad7306bb93df_ppc64le", + "product_id": "openshift4/ose-csi-driver-manila-rhel8@sha256:6b8f7430610adfa57c52f3fc45fc82fb0c5fd595d9870c950363ad7306bb93df_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-manila-rhel8@sha256:6b8f7430610adfa57c52f3fc45fc82fb0c5fd595d9870c950363ad7306bb93df?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8&tag=v4.12.0-202310170157.p0.g501138d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:adaaaf424e192fb55a7888fa682a01a29c7e8d5f92e2eee6ce22a14384650c74_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:adaaaf424e192fb55a7888fa682a01a29c7e8d5f92e2eee6ce22a14384650c74_ppc64le", + "product_id": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:adaaaf424e192fb55a7888fa682a01a29c7e8d5f92e2eee6ce22a14384650c74_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-manila-rhel8-operator@sha256:adaaaf424e192fb55a7888fa682a01a29c7e8d5f92e2eee6ce22a14384650c74?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator&tag=v4.12.0-202310170157.p0.ga0d079a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-nfs-rhel8@sha256:6477d64965d43b0d5fc1bce3b1ec18b0c35ffca6e1f5cebaba139a2919e3041a_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-nfs-rhel8@sha256:6477d64965d43b0d5fc1bce3b1ec18b0c35ffca6e1f5cebaba139a2919e3041a_ppc64le", + "product_id": "openshift4/ose-csi-driver-nfs-rhel8@sha256:6477d64965d43b0d5fc1bce3b1ec18b0c35ffca6e1f5cebaba139a2919e3041a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-nfs-rhel8@sha256:6477d64965d43b0d5fc1bce3b1ec18b0c35ffca6e1f5cebaba139a2919e3041a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8&tag=v4.12.0-202310170157.p0.gd909925.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe@sha256:5d0461ba4b9695e52318f6f6a49e44fbd2a7ac0e3829d148e3e38ccebdcc056c_ppc64le", + "product": { + "name": "openshift4/ose-csi-livenessprobe@sha256:5d0461ba4b9695e52318f6f6a49e44fbd2a7ac0e3829d148e3e38ccebdcc056c_ppc64le", + "product_id": "openshift4/ose-csi-livenessprobe@sha256:5d0461ba4b9695e52318f6f6a49e44fbd2a7ac0e3829d148e3e38ccebdcc056c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe@sha256:5d0461ba4b9695e52318f6f6a49e44fbd2a7ac0e3829d148e3e38ccebdcc056c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe&tag=v4.12.0-202310170157.p0.g9cb0564.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:5d0461ba4b9695e52318f6f6a49e44fbd2a7ac0e3829d148e3e38ccebdcc056c_ppc64le", + "product": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:5d0461ba4b9695e52318f6f6a49e44fbd2a7ac0e3829d148e3e38ccebdcc056c_ppc64le", + "product_id": "openshift4/ose-csi-livenessprobe-rhel8@sha256:5d0461ba4b9695e52318f6f6a49e44fbd2a7ac0e3829d148e3e38ccebdcc056c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe-rhel8@sha256:5d0461ba4b9695e52318f6f6a49e44fbd2a7ac0e3829d148e3e38ccebdcc056c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8&tag=v4.12.0-202310170157.p0.g9cb0564.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar@sha256:ab397e4f8711744b361a200a9bdcca82e3fcd2e43c2f2f80009fd8efa327b5df_ppc64le", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:ab397e4f8711744b361a200a9bdcca82e3fcd2e43c2f2f80009fd8efa327b5df_ppc64le", + "product_id": "openshift4/ose-csi-node-driver-registrar@sha256:ab397e4f8711744b361a200a9bdcca82e3fcd2e43c2f2f80009fd8efa327b5df_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar@sha256:ab397e4f8711744b361a200a9bdcca82e3fcd2e43c2f2f80009fd8efa327b5df?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar&tag=v4.12.0-202310170157.p0.g805d5ac.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:ab397e4f8711744b361a200a9bdcca82e3fcd2e43c2f2f80009fd8efa327b5df_ppc64le", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:ab397e4f8711744b361a200a9bdcca82e3fcd2e43c2f2f80009fd8efa327b5df_ppc64le", + "product_id": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:ab397e4f8711744b361a200a9bdcca82e3fcd2e43c2f2f80009fd8efa327b5df_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar-rhel8@sha256:ab397e4f8711744b361a200a9bdcca82e3fcd2e43c2f2f80009fd8efa327b5df?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8&tag=v4.12.0-202310170157.p0.g805d5ac.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:4b418371b6225c4ee0eca87cb212ea342b8eb58d3b0af936d238e27b63f6a0a2_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:4b418371b6225c4ee0eca87cb212ea342b8eb58d3b0af936d238e27b63f6a0a2_ppc64le", + "product_id": "openshift4/ose-csi-external-provisioner-rhel8@sha256:4b418371b6225c4ee0eca87cb212ea342b8eb58d3b0af936d238e27b63f6a0a2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner-rhel8@sha256:4b418371b6225c4ee0eca87cb212ea342b8eb58d3b0af936d238e27b63f6a0a2?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8&tag=v4.12.0-202310170157.p0.g140851f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner@sha256:4b418371b6225c4ee0eca87cb212ea342b8eb58d3b0af936d238e27b63f6a0a2_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-provisioner@sha256:4b418371b6225c4ee0eca87cb212ea342b8eb58d3b0af936d238e27b63f6a0a2_ppc64le", + "product_id": "openshift4/ose-csi-external-provisioner@sha256:4b418371b6225c4ee0eca87cb212ea342b8eb58d3b0af936d238e27b63f6a0a2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner@sha256:4b418371b6225c4ee0eca87cb212ea342b8eb58d3b0af936d238e27b63f6a0a2?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner&tag=v4.12.0-202310170157.p0.g140851f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-proxy@sha256:65fb864fd15cd1f3e7bd36dfdae4770c4b2b57a927eab53cfd5c002a2d2e801d_ppc64le", + "product": { + "name": "openshift4/ose-oauth-proxy@sha256:65fb864fd15cd1f3e7bd36dfdae4770c4b2b57a927eab53cfd5c002a2d2e801d_ppc64le", + "product_id": "openshift4/ose-oauth-proxy@sha256:65fb864fd15cd1f3e7bd36dfdae4770c4b2b57a927eab53cfd5c002a2d2e801d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-proxy@sha256:65fb864fd15cd1f3e7bd36dfdae4770c4b2b57a927eab53cfd5c002a2d2e801d?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-oauth-proxy&tag=v4.12.0-202310170157.p0.g03e5b13.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-alertmanager@sha256:b6078bb529f8f567cda76abf7e7bc7702702575feaa1a7bc831edeb781e11804_ppc64le", + "product": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:b6078bb529f8f567cda76abf7e7bc7702702575feaa1a7bc831edeb781e11804_ppc64le", + "product_id": "openshift4/ose-prometheus-alertmanager@sha256:b6078bb529f8f567cda76abf7e7bc7702702575feaa1a7bc831edeb781e11804_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-alertmanager@sha256:b6078bb529f8f567cda76abf7e7bc7702702575feaa1a7bc831edeb781e11804?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager&tag=v4.12.0-202310170157.p0.g86b1835.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-node-exporter@sha256:48475f6274b4af88e4a6855a1b345e22b796a637bf0c69ec4525a9666ec3d6f4_ppc64le", + "product": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:48475f6274b4af88e4a6855a1b345e22b796a637bf0c69ec4525a9666ec3d6f4_ppc64le", + "product_id": "openshift4/ose-prometheus-node-exporter@sha256:48475f6274b4af88e4a6855a1b345e22b796a637bf0c69ec4525a9666ec3d6f4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-node-exporter@sha256:48475f6274b4af88e4a6855a1b345e22b796a637bf0c69ec4525a9666ec3d6f4?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter&tag=v4.12.0-202310170157.p0.gaf2f49c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus@sha256:0b46d8da151f36576aadfb0e1855b2f8d4d7b5e897ea406b8943df1afe4f24c7_ppc64le", + "product": { + "name": "openshift4/ose-prometheus@sha256:0b46d8da151f36576aadfb0e1855b2f8d4d7b5e897ea406b8943df1afe4f24c7_ppc64le", + "product_id": "openshift4/ose-prometheus@sha256:0b46d8da151f36576aadfb0e1855b2f8d4d7b5e897ea406b8943df1afe4f24c7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus@sha256:0b46d8da151f36576aadfb0e1855b2f8d4d7b5e897ea406b8943df1afe4f24c7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prometheus&tag=v4.12.0-202310170157.p0.gc749fdb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-proxy@sha256:d62151d53d7c0034849052b8a03c1e2710f8ac7396c110c69f8807e757005b6b_ppc64le", + "product": { + "name": "openshift4/ose-kube-proxy@sha256:d62151d53d7c0034849052b8a03c1e2710f8ac7396c110c69f8807e757005b6b_ppc64le", + "product_id": "openshift4/ose-kube-proxy@sha256:d62151d53d7c0034849052b8a03c1e2710f8ac7396c110c69f8807e757005b6b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-proxy@sha256:d62151d53d7c0034849052b8a03c1e2710f8ac7396c110c69f8807e757005b6b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kube-proxy&tag=v4.12.0-202310170157.p0.gdc9f9af.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-rbac-proxy@sha256:89935c004304e76232cbfd42d85cd1cf68218753ac47bb607885def38522b33e_ppc64le", + "product": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:89935c004304e76232cbfd42d85cd1cf68218753ac47bb607885def38522b33e_ppc64le", + "product_id": "openshift4/ose-kube-rbac-proxy@sha256:89935c004304e76232cbfd42d85cd1cf68218753ac47bb607885def38522b33e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-rbac-proxy@sha256:89935c004304e76232cbfd42d85cd1cf68218753ac47bb607885def38522b33e?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy&tag=v4.12.0-202310170157.p0.g94f3fde.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-state-metrics@sha256:1aa7ce45a2d0808f4ab524b93b70f5f627fdfb1feb98e4fd8f846cf6159cb13b_ppc64le", + "product": { + "name": "openshift4/ose-kube-state-metrics@sha256:1aa7ce45a2d0808f4ab524b93b70f5f627fdfb1feb98e4fd8f846cf6159cb13b_ppc64le", + "product_id": "openshift4/ose-kube-state-metrics@sha256:1aa7ce45a2d0808f4ab524b93b70f5f627fdfb1feb98e4fd8f846cf6159cb13b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-state-metrics@sha256:1aa7ce45a2d0808f4ab524b93b70f5f627fdfb1feb98e4fd8f846cf6159cb13b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics&tag=v4.12.0-202310170157.p0.g9a1bf9b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:f67df32a33dbecd0c8397606415a428afa9ef65d4f25a24e7ff97ff90214d803_ppc64le", + "product": { + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:f67df32a33dbecd0c8397606415a428afa9ef65d4f25a24e7ff97ff90214d803_ppc64le", + "product_id": "openshift4/ose-kuryr-cni-rhel8@sha256:f67df32a33dbecd0c8397606415a428afa9ef65d4f25a24e7ff97ff90214d803_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kuryr-cni-rhel8@sha256:f67df32a33dbecd0c8397606415a428afa9ef65d4f25a24e7ff97ff90214d803?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kuryr-cni-rhel8&tag=v4.12.0-202310170157.p0.g8fd2f8b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-marketplace@sha256:c9e5b33f9a352d4dc6bb089365d7d55a17dd5a8dc4118c03154112db5e97afe9_ppc64le", + "product": { + "name": "openshift4/ose-operator-marketplace@sha256:c9e5b33f9a352d4dc6bb089365d7d55a17dd5a8dc4118c03154112db5e97afe9_ppc64le", + "product_id": "openshift4/ose-operator-marketplace@sha256:c9e5b33f9a352d4dc6bb089365d7d55a17dd5a8dc4118c03154112db5e97afe9_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-marketplace@sha256:c9e5b33f9a352d4dc6bb089365d7d55a17dd5a8dc4118c03154112db5e97afe9?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-operator-marketplace&tag=v4.12.0-202310170157.p0.ga5465e2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-cni@sha256:283cd7ed969078b7cd3d0927f3bfb4d1c170f35741201a3dc78d519d8ed3a76c_ppc64le", + "product": { + "name": "openshift4/ose-multus-cni@sha256:283cd7ed969078b7cd3d0927f3bfb4d1c170f35741201a3dc78d519d8ed3a76c_ppc64le", + "product_id": "openshift4/ose-multus-cni@sha256:283cd7ed969078b7cd3d0927f3bfb4d1c170f35741201a3dc78d519d8ed3a76c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-cni@sha256:283cd7ed969078b7cd3d0927f3bfb4d1c170f35741201a3dc78d519d8ed3a76c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-multus-cni&tag=v4.12.0-202310170157.p0.g210e540.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-server-rhel8@sha256:2c2f61cc9312510bf66beb7dcbfaa91b9ec01cc77d9952b44d342e542b342988_ppc64le", + "product": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:2c2f61cc9312510bf66beb7dcbfaa91b9ec01cc77d9952b44d342e542b342988_ppc64le", + "product_id": "openshift4/ose-oauth-server-rhel8@sha256:2c2f61cc9312510bf66beb7dcbfaa91b9ec01cc77d9952b44d342e542b342988_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-server-rhel8@sha256:2c2f61cc9312510bf66beb7dcbfaa91b9ec01cc77d9952b44d342e542b342988?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel8&tag=v4.12.0-202310170157.p0.g0f83669.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-builder@sha256:1faddea6a8d9f87ea715c2c5c4b0e3f08753e6e39d8dfcd44f13e073e37ceacb_ppc64le", + "product": { + "name": "openshift4/ose-docker-builder@sha256:1faddea6a8d9f87ea715c2c5c4b0e3f08753e6e39d8dfcd44f13e073e37ceacb_ppc64le", + "product_id": "openshift4/ose-docker-builder@sha256:1faddea6a8d9f87ea715c2c5c4b0e3f08753e6e39d8dfcd44f13e073e37ceacb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-builder@sha256:1faddea6a8d9f87ea715c2c5c4b0e3f08753e6e39d8dfcd44f13e073e37ceacb?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-docker-builder&tag=v4.12.0-202310170157.p0.g1f99147.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli@sha256:43113eab474bcc822a7f0c56559d69ebd78e4a1a4333aa80c39fc32cb779d83e_ppc64le", + "product": { + "name": "openshift4/ose-cli@sha256:43113eab474bcc822a7f0c56559d69ebd78e4a1a4333aa80c39fc32cb779d83e_ppc64le", + "product_id": "openshift4/ose-cli@sha256:43113eab474bcc822a7f0c56559d69ebd78e4a1a4333aa80c39fc32cb779d83e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli@sha256:43113eab474bcc822a7f0c56559d69ebd78e4a1a4333aa80c39fc32cb779d83e?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cli&tag=v4.12.0-202310170157.p0.g7aa4009.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console@sha256:aa74373188549d9f348d516c91f81a376e5cc05c63d72dcd8235707da258189a_ppc64le", + "product": { + "name": "openshift4/ose-console@sha256:aa74373188549d9f348d516c91f81a376e5cc05c63d72dcd8235707da258189a_ppc64le", + "product_id": "openshift4/ose-console@sha256:aa74373188549d9f348d516c91f81a376e5cc05c63d72dcd8235707da258189a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-console@sha256:aa74373188549d9f348d516c91f81a376e5cc05c63d72dcd8235707da258189a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-console&tag=v4.12.0-202310170157.p0.gdea60d8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console-operator@sha256:233e90dab4968e5b352ae5e562027df627446fca16961fddcc37a96b2abc765c_ppc64le", + "product": { + "name": "openshift4/ose-console-operator@sha256:233e90dab4968e5b352ae5e562027df627446fca16961fddcc37a96b2abc765c_ppc64le", + "product_id": "openshift4/ose-console-operator@sha256:233e90dab4968e5b352ae5e562027df627446fca16961fddcc37a96b2abc765c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-console-operator@sha256:233e90dab4968e5b352ae5e562027df627446fca16961fddcc37a96b2abc765c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-console-operator&tag=v4.12.0-202310170157.p0.gbeba7a8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-deployer@sha256:3977f6c493991fb580aab043956feec94266e42b6c43475cde3e119a33f990ca_ppc64le", + "product": { + "name": "openshift4/ose-deployer@sha256:3977f6c493991fb580aab043956feec94266e42b6c43475cde3e119a33f990ca_ppc64le", + "product_id": "openshift4/ose-deployer@sha256:3977f6c493991fb580aab043956feec94266e42b6c43475cde3e119a33f990ca_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-deployer@sha256:3977f6c493991fb580aab043956feec94266e42b6c43475cde3e119a33f990ca?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-deployer&tag=v4.12.0-202310170157.p0.g7aa4009.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-haproxy-router@sha256:3557db7c1c263782bebd8fc09e5540b25d466309bedb415b5cae148d4cd5ef1f_ppc64le", + "product": { + "name": "openshift4/ose-haproxy-router@sha256:3557db7c1c263782bebd8fc09e5540b25d466309bedb415b5cae148d4cd5ef1f_ppc64le", + "product_id": "openshift4/ose-haproxy-router@sha256:3557db7c1c263782bebd8fc09e5540b25d466309bedb415b5cae148d4cd5ef1f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-haproxy-router@sha256:3557db7c1c263782bebd8fc09e5540b25d466309bedb415b5cae148d4cd5ef1f?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-haproxy-router&tag=v4.12.0-202310170157.p0.gcac95bc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hyperkube@sha256:c11117311902f2ddeb41829f1cfa43afd89c9fc2c2de1b18f878c1bb8008157f_ppc64le", + "product": { + "name": "openshift4/ose-hyperkube@sha256:c11117311902f2ddeb41829f1cfa43afd89c9fc2c2de1b18f878c1bb8008157f_ppc64le", + "product_id": "openshift4/ose-hyperkube@sha256:c11117311902f2ddeb41829f1cfa43afd89c9fc2c2de1b18f878c1bb8008157f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-hyperkube@sha256:c11117311902f2ddeb41829f1cfa43afd89c9fc2c2de1b18f878c1bb8008157f?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-hyperkube&tag=v4.12.0-202310170157.p0.g20cda61.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-pod@sha256:cb9c45323348966520fc2d23a7e34b3e8667bd9cf1cb6be45cd65add4dffa962_ppc64le", + "product": { + "name": "openshift4/ose-pod@sha256:cb9c45323348966520fc2d23a7e34b3e8667bd9cf1cb6be45cd65add4dffa962_ppc64le", + "product_id": "openshift4/ose-pod@sha256:cb9c45323348966520fc2d23a7e34b3e8667bd9cf1cb6be45cd65add4dffa962_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-pod@sha256:cb9c45323348966520fc2d23a7e34b3e8667bd9cf1cb6be45cd65add4dffa962?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-pod&tag=v4.12.0-202310170157.p0.g20cda61.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-registry@sha256:bcb99efe6b5411d470527e3f0a1e6bae35776e08622500ff8211ed6d7c2b30c8_ppc64le", + "product": { + "name": "openshift4/ose-docker-registry@sha256:bcb99efe6b5411d470527e3f0a1e6bae35776e08622500ff8211ed6d7c2b30c8_ppc64le", + "product_id": "openshift4/ose-docker-registry@sha256:bcb99efe6b5411d470527e3f0a1e6bae35776e08622500ff8211ed6d7c2b30c8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-registry@sha256:bcb99efe6b5411d470527e3f0a1e6bae35776e08622500ff8211ed6d7c2b30c8?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-docker-registry&tag=v4.12.0-202310170157.p0.g9e75355.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tests@sha256:76dc220d82121dad69317ecf8b9c0b42ad133b683bd0cceff3c678b3a8367682_ppc64le", + "product": { + "name": "openshift4/ose-tests@sha256:76dc220d82121dad69317ecf8b9c0b42ad133b683bd0cceff3c678b3a8367682_ppc64le", + "product_id": "openshift4/ose-tests@sha256:76dc220d82121dad69317ecf8b9c0b42ad133b683bd0cceff3c678b3a8367682_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-tests@sha256:76dc220d82121dad69317ecf8b9c0b42ad133b683bd0cceff3c678b3a8367682?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-tests&tag=v4.12.0-202310170157.p0.gdc737e6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:176663735e848f45ecc60003c12c3cba6f0b61bca022bbac1b008023e2ad8c96_ppc64le", + "product": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:176663735e848f45ecc60003c12c3cba6f0b61bca022bbac1b008023e2ad8c96_ppc64le", + "product_id": "openshift4/ose-openshift-state-metrics-rhel8@sha256:176663735e848f45ecc60003c12c3cba6f0b61bca022bbac1b008023e2ad8c96_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-state-metrics-rhel8@sha256:176663735e848f45ecc60003c12c3cba6f0b61bca022bbac1b008023e2ad8c96?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8&tag=v4.12.0-202310170157.p0.g4c711c7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-lifecycle-manager@sha256:cfcb333cba92b4e6ec92edb9ccb1c989e4afdfd841b6db6e44c4498ab84db5f5_ppc64le", + "product": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:cfcb333cba92b4e6ec92edb9ccb1c989e4afdfd841b6db6e44c4498ab84db5f5_ppc64le", + "product_id": "openshift4/ose-operator-lifecycle-manager@sha256:cfcb333cba92b4e6ec92edb9ccb1c989e4afdfd841b6db6e44c4498ab84db5f5_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-lifecycle-manager@sha256:cfcb333cba92b4e6ec92edb9ccb1c989e4afdfd841b6db6e44c4498ab84db5f5?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager&tag=v4.12.0-202310170157.p0.gdea7071.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-registry@sha256:6a916a8dfc27687ea5192612d4472cb4cbc593188524e4e3280bb814afd0c1ed_ppc64le", + "product": { + "name": "openshift4/ose-operator-registry@sha256:6a916a8dfc27687ea5192612d4472cb4cbc593188524e4e3280bb814afd0c1ed_ppc64le", + "product_id": "openshift4/ose-operator-registry@sha256:6a916a8dfc27687ea5192612d4472cb4cbc593188524e4e3280bb814afd0c1ed_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-registry@sha256:6a916a8dfc27687ea5192612d4472cb4cbc593188524e4e3280bb814afd0c1ed?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-operator-registry&tag=v4.12.0-202310170157.p0.gdea7071.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:7a185558386a23e058ee84020eecb813c16b4f414af7c52f5ade555b8e5d2708_ppc64le", + "product": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:7a185558386a23e058ee84020eecb813c16b4f414af7c52f5ade555b8e5d2708_ppc64le", + "product_id": "openshift4/ose-agent-installer-api-server-rhel8@sha256:7a185558386a23e058ee84020eecb813c16b4f414af7c52f5ade555b8e5d2708_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-api-server-rhel8@sha256:7a185558386a23e058ee84020eecb813c16b4f414af7c52f5ade555b8e5d2708?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8&tag=v4.12.0-202310170157.p0.g8149b9c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:bb77a72d815a26c990d1252a722da735681fd33b342efaa6446db4cf3f9c18b7_ppc64le", + "product": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:bb77a72d815a26c990d1252a722da735681fd33b342efaa6446db4cf3f9c18b7_ppc64le", + "product_id": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:bb77a72d815a26c990d1252a722da735681fd33b342efaa6446db4cf3f9c18b7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-csr-approver-rhel8@sha256:bb77a72d815a26c990d1252a722da735681fd33b342efaa6446db4cf3f9c18b7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8&tag=v4.12.0-202310170157.p0.g61115db.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:6970a9e9c14ea8fd45095fa28ec3c9929c310e05710d502785a209318a22a9a6_ppc64le", + "product": { + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:6970a9e9c14ea8fd45095fa28ec3c9929c310e05710d502785a209318a22a9a6_ppc64le", + "product_id": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:6970a9e9c14ea8fd45095fa28ec3c9929c310e05710d502785a209318a22a9a6_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-node-agent-rhel8@sha256:6970a9e9c14ea8fd45095fa28ec3c9929c310e05710d502785a209318a22a9a6?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8&tag=v4.12.0-202310170157.p0.ga7aa600.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:b767d7b76a42c053a7bd9e0e1843a9acd42168c8d7e13684cf271f409c9f98ec_ppc64le", + "product": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:b767d7b76a42c053a7bd9e0e1843a9acd42168c8d7e13684cf271f409c9f98ec_ppc64le", + "product_id": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:b767d7b76a42c053a7bd9e0e1843a9acd42168c8d7e13684cf271f409c9f98ec_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-orchestrator-rhel8@sha256:b767d7b76a42c053a7bd9e0e1843a9acd42168c8d7e13684cf271f409c9f98ec?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8&tag=v4.12.0-202310170157.p0.g61115db.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:1361528309b6b4e35f8b65a823d81d873ff1e06767edf99208d8e9b9d12d59c5_ppc64le", + "product": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:1361528309b6b4e35f8b65a823d81d873ff1e06767edf99208d8e9b9d12d59c5_ppc64le", + "product_id": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:1361528309b6b4e35f8b65a823d81d873ff1e06767edf99208d8e9b9d12d59c5_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-apiserver-network-proxy-rhel8@sha256:1361528309b6b4e35f8b65a823d81d873ff1e06767edf99208d8e9b9d12d59c5?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8&tag=v4.12.0-202310170157.p0.gf1e6d94.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:3addf5dae382b1ac2c7e8c535e9e67a19dbb4a91c8975f65de6ee5fe89b1bc65_ppc64le", + "product": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:3addf5dae382b1ac2c7e8c535e9e67a19dbb4a91c8975f65de6ee5fe89b1bc65_ppc64le", + "product_id": "openshift4/ose-baremetal-installer-rhel8@sha256:3addf5dae382b1ac2c7e8c535e9e67a19dbb4a91c8975f65de6ee5fe89b1bc65_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-installer-rhel8@sha256:3addf5dae382b1ac2c7e8c535e9e67a19dbb4a91c8975f65de6ee5fe89b1bc65?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8&tag=v4.12.0-202310170157.p0.g576d815.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:3b76ef57b2ead6815535a7afee1fb4ee60ce9299bb3bb9e8cd78a093dfd46abe_ppc64le", + "product": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:3b76ef57b2ead6815535a7afee1fb4ee60ce9299bb3bb9e8cd78a093dfd46abe_ppc64le", + "product_id": "openshift4/ose-baremetal-rhel8-operator@sha256:3b76ef57b2ead6815535a7afee1fb4ee60ce9299bb3bb9e8cd78a093dfd46abe_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-rhel8-operator@sha256:3b76ef57b2ead6815535a7afee1fb4ee60ce9299bb3bb9e8cd78a093dfd46abe?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel8-operator&tag=v4.12.0-202310170157.p0.g968ceb0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:f29d64826eda342be56a52b015db525c81508f169788116f6557261ec7f5c3f2_ppc64le", + "product": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:f29d64826eda342be56a52b015db525c81508f169788116f6557261ec7f5c3f2_ppc64le", + "product_id": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:f29d64826eda342be56a52b015db525c81508f169788116f6557261ec7f5c3f2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-runtimecfg-rhel8@sha256:f29d64826eda342be56a52b015db525c81508f169788116f6557261ec7f5c3f2?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8&tag=v4.12.0-202310170157.p0.g23c6c0e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli-artifacts@sha256:fe8bb0ec1ade53949459f38e2e9715b4664d385ae45b881382ad2b948d7e7932_ppc64le", + "product": { + "name": "openshift4/ose-cli-artifacts@sha256:fe8bb0ec1ade53949459f38e2e9715b4664d385ae45b881382ad2b948d7e7932_ppc64le", + "product_id": "openshift4/ose-cli-artifacts@sha256:fe8bb0ec1ade53949459f38e2e9715b4664d385ae45b881382ad2b948d7e7932_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli-artifacts@sha256:fe8bb0ec1ade53949459f38e2e9715b4664d385ae45b881382ad2b948d7e7932?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cli-artifacts&tag=v4.12.0-202310170157.p0.g7aa4009.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-credential-operator@sha256:f9584be302b8f169ff8ecf3c4a3e2262254377a418c5f9420858b8e04032861e_ppc64le", + "product": { + "name": "openshift4/ose-cloud-credential-operator@sha256:f9584be302b8f169ff8ecf3c4a3e2262254377a418c5f9420858b8e04032861e_ppc64le", + "product_id": "openshift4/ose-cloud-credential-operator@sha256:f9584be302b8f169ff8ecf3c4a3e2262254377a418c5f9420858b8e04032861e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-credential-operator@sha256:f9584be302b8f169ff8ecf3c4a3e2262254377a418c5f9420858b8e04032861e?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cloud-credential-operator&tag=v4.12.0-202310170157.p0.gd4f6bca.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:2b1111df93ac6bbd3e41f062b93f5447a5b1211b0520cf0efcd1459bbc07313e_ppc64le", + "product": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:2b1111df93ac6bbd3e41f062b93f5447a5b1211b0520cf0efcd1459bbc07313e_ppc64le", + "product_id": "openshift4/cloud-network-config-controller-rhel8@sha256:2b1111df93ac6bbd3e41f062b93f5447a5b1211b0520cf0efcd1459bbc07313e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cloud-network-config-controller-rhel8@sha256:2b1111df93ac6bbd3e41f062b93f5447a5b1211b0520cf0efcd1459bbc07313e?arch=ppc64le&repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel8&tag=v4.12.0-202310170157.p0.gd05b0ab.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-api-rhel8@sha256:248c2f5a75955704574852201fda7f6ee260426454f92a98452188dfe2482fed_ppc64le", + "product": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:248c2f5a75955704574852201fda7f6ee260426454f92a98452188dfe2482fed_ppc64le", + "product_id": "openshift4/ose-cluster-api-rhel8@sha256:248c2f5a75955704574852201fda7f6ee260426454f92a98452188dfe2482fed_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-api-rhel8@sha256:248c2f5a75955704574852201fda7f6ee260426454f92a98452188dfe2482fed?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel8&tag=v4.12.0-202310170157.p0.gf9c215c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-authentication-operator@sha256:a0be97d1a90948718f6106e6cfd35f06d290617e87bb97cf08701766e4a0c6b9_ppc64le", + "product": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:a0be97d1a90948718f6106e6cfd35f06d290617e87bb97cf08701766e4a0c6b9_ppc64le", + "product_id": "openshift4/ose-cluster-authentication-operator@sha256:a0be97d1a90948718f6106e6cfd35f06d290617e87bb97cf08701766e4a0c6b9_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-authentication-operator@sha256:a0be97d1a90948718f6106e6cfd35f06d290617e87bb97cf08701766e4a0c6b9?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-operator&tag=v4.12.0-202310170157.p0.gfe4212a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:9175273696b0b1b3b1f4400fa37d1de39db9872f4f21e83e2962d9531d50cc43_ppc64le", + "product": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:9175273696b0b1b3b1f4400fa37d1de39db9872f4f21e83e2962d9531d50cc43_ppc64le", + "product_id": "openshift4/ose-cluster-autoscaler-operator@sha256:9175273696b0b1b3b1f4400fa37d1de39db9872f4f21e83e2962d9531d50cc43_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler-operator@sha256:9175273696b0b1b3b1f4400fa37d1de39db9872f4f21e83e2962d9531d50cc43?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-operator&tag=v4.12.0-202310170157.p0.g8b23225.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:8f814ab792211561e5428ee9ed1a6d549dcd11936318a02dfa5de44c3fcde7e5_ppc64le", + "product": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:8f814ab792211561e5428ee9ed1a6d549dcd11936318a02dfa5de44c3fcde7e5_ppc64le", + "product_id": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:8f814ab792211561e5428ee9ed1a6d549dcd11936318a02dfa5de44c3fcde7e5_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-baremetal-operator-rhel8@sha256:8f814ab792211561e5428ee9ed1a6d549dcd11936318a02dfa5de44c3fcde7e5?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8&tag=v4.12.0-202310170157.p0.g5f4795c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-bootstrap@sha256:f82367ed2da650a2fdb588361bb95a46fc1c3fcdec2c8034f04d72e4e509bd71_ppc64le", + "product": { + "name": "openshift4/ose-cluster-bootstrap@sha256:f82367ed2da650a2fdb588361bb95a46fc1c3fcdec2c8034f04d72e4e509bd71_ppc64le", + "product_id": "openshift4/ose-cluster-bootstrap@sha256:f82367ed2da650a2fdb588361bb95a46fc1c3fcdec2c8034f04d72e4e509bd71_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-bootstrap@sha256:f82367ed2da650a2fdb588361bb95a46fc1c3fcdec2c8034f04d72e4e509bd71?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap&tag=v4.12.0-202310170157.p0.g138a1cf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:93c2b63bf4252ee924d85d6b5cea1c80c8eddab51fbacfcfd261458f9082114c_ppc64le", + "product": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:93c2b63bf4252ee924d85d6b5cea1c80c8eddab51fbacfcfd261458f9082114c_ppc64le", + "product_id": "openshift4/ose-cluster-capi-rhel8-operator@sha256:93c2b63bf4252ee924d85d6b5cea1c80c8eddab51fbacfcfd261458f9082114c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-rhel8-operator@sha256:93c2b63bf4252ee924d85d6b5cea1c80c8eddab51fbacfcfd261458f9082114c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator&tag=v4.12.0-202310170157.p0.g3bfe36a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:93c2b63bf4252ee924d85d6b5cea1c80c8eddab51fbacfcfd261458f9082114c_ppc64le", + "product": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:93c2b63bf4252ee924d85d6b5cea1c80c8eddab51fbacfcfd261458f9082114c_ppc64le", + "product_id": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:93c2b63bf4252ee924d85d6b5cea1c80c8eddab51fbacfcfd261458f9082114c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-operator-container-rhel8@sha256:93c2b63bf4252ee924d85d6b5cea1c80c8eddab51fbacfcfd261458f9082114c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8&tag=v4.12.0-202310170157.p0.g3bfe36a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:a2649f5b3d8be53559ada9a81d411651f4da8b170b44edb5c49ece87c987e64e_ppc64le", + "product": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:a2649f5b3d8be53559ada9a81d411651f4da8b170b44edb5c49ece87c987e64e_ppc64le", + "product_id": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:a2649f5b3d8be53559ada9a81d411651f4da8b170b44edb5c49ece87c987e64e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:a2649f5b3d8be53559ada9a81d411651f4da8b170b44edb5c49ece87c987e64e?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8&tag=v4.12.0-202310170157.p0.g103cb2e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-config-operator@sha256:aa8a4fac40be091c0e3c347cfc72e97d55e0b40fc660950115fe90f4e6dccc6c_ppc64le", + "product": { + "name": "openshift4/ose-cluster-config-operator@sha256:aa8a4fac40be091c0e3c347cfc72e97d55e0b40fc660950115fe90f4e6dccc6c_ppc64le", + "product_id": "openshift4/ose-cluster-config-operator@sha256:aa8a4fac40be091c0e3c347cfc72e97d55e0b40fc660950115fe90f4e6dccc6c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-config-operator@sha256:aa8a4fac40be091c0e3c347cfc72e97d55e0b40fc660950115fe90f4e6dccc6c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-config-operator&tag=v4.12.0-202310170157.p0.gc589595.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:4925ff2abbf9b1604820ee74cb3cccbec956b026e50ddb8737471e2dd7e4c0b1_ppc64le", + "product": { + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:4925ff2abbf9b1604820ee74cb3cccbec956b026e50ddb8737471e2dd7e4c0b1_ppc64le", + "product_id": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:4925ff2abbf9b1604820ee74cb3cccbec956b026e50ddb8737471e2dd7e4c0b1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:4925ff2abbf9b1604820ee74cb3cccbec956b026e50ddb8737471e2dd7e4c0b1?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8&tag=v4.12.0-202310170157.p0.g119d7a7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:e9a73c457440ee3d5a096778ba7bbed5a89a64480dfededd69de46d65043c622_ppc64le", + "product": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:e9a73c457440ee3d5a096778ba7bbed5a89a64480dfededd69de46d65043c622_ppc64le", + "product_id": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:e9a73c457440ee3d5a096778ba7bbed5a89a64480dfededd69de46d65043c622_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:e9a73c457440ee3d5a096778ba7bbed5a89a64480dfededd69de46d65043c622?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator&tag=v4.12.0-202310170157.p0.g06bd5f6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-dns-operator@sha256:a93be3227aace29f3cd70edd496032d7c3910802e5af6139a70d0223c4f72f22_ppc64le", + "product": { + "name": "openshift4/ose-cluster-dns-operator@sha256:a93be3227aace29f3cd70edd496032d7c3910802e5af6139a70d0223c4f72f22_ppc64le", + "product_id": "openshift4/ose-cluster-dns-operator@sha256:a93be3227aace29f3cd70edd496032d7c3910802e5af6139a70d0223c4f72f22_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-dns-operator@sha256:a93be3227aace29f3cd70edd496032d7c3910802e5af6139a70d0223c4f72f22?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-dns-operator&tag=v4.12.0-202310170157.p0.gffebbf4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-image-registry-operator@sha256:211a04041570c2fe8a689ebc67199c7a62db65adf09790307de414b66a52ec43_ppc64le", + "product": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:211a04041570c2fe8a689ebc67199c7a62db65adf09790307de414b66a52ec43_ppc64le", + "product_id": "openshift4/ose-cluster-image-registry-operator@sha256:211a04041570c2fe8a689ebc67199c7a62db65adf09790307de414b66a52ec43_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-image-registry-operator@sha256:211a04041570c2fe8a689ebc67199c7a62db65adf09790307de414b66a52ec43?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-operator&tag=v4.12.0-202310170157.p0.ge9a895a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-ingress-operator@sha256:d5f3324ac388f2411825811be33082bc56593b2f59c19eee360ee8d1952bca47_ppc64le", + "product": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:d5f3324ac388f2411825811be33082bc56593b2f59c19eee360ee8d1952bca47_ppc64le", + "product_id": "openshift4/ose-cluster-ingress-operator@sha256:d5f3324ac388f2411825811be33082bc56593b2f59c19eee360ee8d1952bca47_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-ingress-operator@sha256:d5f3324ac388f2411825811be33082bc56593b2f59c19eee360ee8d1952bca47?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-operator&tag=v4.12.0-202310170157.p0.g0bb8ffc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:6b70c5cbcf6db5f14891f9baefd983381d3ef96ea6056672bb5f49efc904b70b_ppc64le", + "product": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:6b70c5cbcf6db5f14891f9baefd983381d3ef96ea6056672bb5f49efc904b70b_ppc64le", + "product_id": "openshift4/ose-cluster-kube-apiserver-operator@sha256:6b70c5cbcf6db5f14891f9baefd983381d3ef96ea6056672bb5f49efc904b70b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-apiserver-operator@sha256:6b70c5cbcf6db5f14891f9baefd983381d3ef96ea6056672bb5f49efc904b70b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator&tag=v4.12.0-202310170157.p0.gfe5e2a1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:0ab248e98b698339995e4d9e3de9f70757be7cb4aad2b23f1fcb41e4d99cc3df_ppc64le", + "product": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:0ab248e98b698339995e4d9e3de9f70757be7cb4aad2b23f1fcb41e4d99cc3df_ppc64le", + "product_id": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:0ab248e98b698339995e4d9e3de9f70757be7cb4aad2b23f1fcb41e4d99cc3df_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel8-operator@sha256:0ab248e98b698339995e4d9e3de9f70757be7cb4aad2b23f1fcb41e4d99cc3df?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator&tag=v4.12.0-202310170157.p0.g7bb0546.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:9af737a9bb19a25fad020acf13d778c93d02ba22170b10925af5ac11f28b3e14_ppc64le", + "product": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:9af737a9bb19a25fad020acf13d778c93d02ba22170b10925af5ac11f28b3e14_ppc64le", + "product_id": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:9af737a9bb19a25fad020acf13d778c93d02ba22170b10925af5ac11f28b3e14_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-controller-manager-operator@sha256:9af737a9bb19a25fad020acf13d778c93d02ba22170b10925af5ac11f28b3e14?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator&tag=v4.12.0-202310170157.p0.g7f494d3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:92dca2936b8daa34464e70c975143c322919fa027b95b09f9d15a8713b51d76c_ppc64le", + "product": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:92dca2936b8daa34464e70c975143c322919fa027b95b09f9d15a8713b51d76c_ppc64le", + "product_id": "openshift4/ose-cluster-kube-scheduler-operator@sha256:92dca2936b8daa34464e70c975143c322919fa027b95b09f9d15a8713b51d76c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-scheduler-operator@sha256:92dca2936b8daa34464e70c975143c322919fa027b95b09f9d15a8713b51d76c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator&tag=v4.12.0-202310170157.p0.g4f0ac8d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:7f646a12e7203c6b26f50d4e8f7b5f7047b181b05113af47c0f8fd20cdb407db_ppc64le", + "product": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:7f646a12e7203c6b26f50d4e8f7b5f7047b181b05113af47c0f8fd20cdb407db_ppc64le", + "product_id": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:7f646a12e7203c6b26f50d4e8f7b5f7047b181b05113af47c0f8fd20cdb407db_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:7f646a12e7203c6b26f50d4e8f7b5f7047b181b05113af47c0f8fd20cdb407db?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator&tag=v4.12.0-202310170157.p0.g12d050a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-machine-approver@sha256:3d39350b2552c9266cecc4fe99628b3df4d85068e5e723a73362700d36f00f19_ppc64le", + "product": { + "name": "openshift4/ose-cluster-machine-approver@sha256:3d39350b2552c9266cecc4fe99628b3df4d85068e5e723a73362700d36f00f19_ppc64le", + "product_id": "openshift4/ose-cluster-machine-approver@sha256:3d39350b2552c9266cecc4fe99628b3df4d85068e5e723a73362700d36f00f19_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-machine-approver@sha256:3d39350b2552c9266cecc4fe99628b3df4d85068e5e723a73362700d36f00f19?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver&tag=v4.12.0-202310170157.p0.g6008198.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:d18356d3cf413bc42f002b777ff5e8339ee78ad46693880cf3c8fb4f1ca1c656_ppc64le", + "product": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:d18356d3cf413bc42f002b777ff5e8339ee78ad46693880cf3c8fb4f1ca1c656_ppc64le", + "product_id": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:d18356d3cf413bc42f002b777ff5e8339ee78ad46693880cf3c8fb4f1ca1c656_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-apiserver-operator@sha256:d18356d3cf413bc42f002b777ff5e8339ee78ad46693880cf3c8fb4f1ca1c656?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator&tag=v4.12.0-202310170157.p0.g9919792.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:9103cc85003d1a3abb81d4e5d0c54d4e975ce161249154dbfc7524d0528d27bf_ppc64le", + "product": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:9103cc85003d1a3abb81d4e5d0c54d4e975ce161249154dbfc7524d0528d27bf_ppc64le", + "product_id": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:9103cc85003d1a3abb81d4e5d0c54d4e975ce161249154dbfc7524d0528d27bf_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-controller-manager-operator@sha256:9103cc85003d1a3abb81d4e5d0c54d4e975ce161249154dbfc7524d0528d27bf?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator&tag=v4.12.0-202310170157.p0.gd1915d1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:9dc87c548bf2d0d06de65b487a9a0c957d4f947dea7413ccca34dc486fff6b44_ppc64le", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:9dc87c548bf2d0d06de65b487a9a0c957d4f947dea7413ccca34dc486fff6b44_ppc64le", + "product_id": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:9dc87c548bf2d0d06de65b487a9a0c957d4f947dea7413ccca34dc486fff6b44_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8-operator@sha256:9dc87c548bf2d0d06de65b487a9a0c957d4f947dea7413ccca34dc486fff6b44?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator&tag=v4.12.0-202310170157.p0.g35c7cb9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:d9660e480f0bba042c7a17c57bc6e832cbb78a48c08b89d7412c8863baae680f_ppc64le", + "product": { + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:d9660e480f0bba042c7a17c57bc6e832cbb78a48c08b89d7412c8863baae680f_ppc64le", + "product_id": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:d9660e480f0bba042c7a17c57bc6e832cbb78a48c08b89d7412c8863baae680f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-platform-operators-manager-rhel8@sha256:d9660e480f0bba042c7a17c57bc6e832cbb78a48c08b89d7412c8863baae680f?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8&tag=v4.12.0-202310170157.p0.gd40fae8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:1b0abf9d621f756e507f55ae65665597d6ae40d4a323fe7b593d8c33aca3fe16_ppc64le", + "product": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:1b0abf9d621f756e507f55ae65665597d6ae40d4a323fe7b593d8c33aca3fe16_ppc64le", + "product_id": "openshift4/ose-cluster-policy-controller-rhel8@sha256:1b0abf9d621f756e507f55ae65665597d6ae40d4a323fe7b593d8c33aca3fe16_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-policy-controller-rhel8@sha256:1b0abf9d621f756e507f55ae65665597d6ae40d4a323fe7b593d8c33aca3fe16?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8&tag=v4.12.0-202310170157.p0.g67ef456.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-samples-operator@sha256:dcc12de8f96538aa3043a6e4dec37139a7bf8bae9b37e1378c79af8d4436a0f5_ppc64le", + "product": { + "name": "openshift4/ose-cluster-samples-operator@sha256:dcc12de8f96538aa3043a6e4dec37139a7bf8bae9b37e1378c79af8d4436a0f5_ppc64le", + "product_id": "openshift4/ose-cluster-samples-operator@sha256:dcc12de8f96538aa3043a6e4dec37139a7bf8bae9b37e1378c79af8d4436a0f5_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-samples-operator@sha256:dcc12de8f96538aa3043a6e4dec37139a7bf8bae9b37e1378c79af8d4436a0f5?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-samples-operator&tag=v4.12.0-202310170157.p0.gf1b49e3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-storage-operator@sha256:5e15c7eb8ba9ffacc4b0075a1430dd495fb118020f91bc90529cd61f6d5aa76a_ppc64le", + "product": { + "name": "openshift4/ose-cluster-storage-operator@sha256:5e15c7eb8ba9ffacc4b0075a1430dd495fb118020f91bc90529cd61f6d5aa76a_ppc64le", + "product_id": "openshift4/ose-cluster-storage-operator@sha256:5e15c7eb8ba9ffacc4b0075a1430dd495fb118020f91bc90529cd61f6d5aa76a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-storage-operator@sha256:5e15c7eb8ba9ffacc4b0075a1430dd495fb118020f91bc90529cd61f6d5aa76a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-storage-operator&tag=v4.12.0-202310170157.p0.g7ac84a9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:403e11296e5f9b4cf98c9434ab5209c114039d1c25638efa02e30c0a6511dcdd_ppc64le", + "product": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:403e11296e5f9b4cf98c9434ab5209c114039d1c25638efa02e30c0a6511dcdd_ppc64le", + "product_id": "openshift4/ose-container-networking-plugins-rhel8@sha256:403e11296e5f9b4cf98c9434ab5209c114039d1c25638efa02e30c0a6511dcdd_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-container-networking-plugins-rhel8@sha256:403e11296e5f9b4cf98c9434ab5209c114039d1c25638efa02e30c0a6511dcdd?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8&tag=v4.12.0-202310170157.p0.g6d23772.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:e71a9244f6c1e93cacf1dd98def6254b4f623526ab71b9ff346ba2242407cd60_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:e71a9244f6c1e93cacf1dd98def6254b4f623526ab71b9ff346ba2242407cd60_ppc64le", + "product_id": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:e71a9244f6c1e93cacf1dd98def6254b4f623526ab71b9ff346ba2242407cd60_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-rhel8@sha256:e71a9244f6c1e93cacf1dd98def6254b4f623526ab71b9ff346ba2242407cd60?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8&tag=v4.12.0-202310170157.p0.g20cffc0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:661c9b3d09ef68a7f2de7cbbd643a350310e17ca78f8b8c55972d62d020e12f7_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:661c9b3d09ef68a7f2de7cbbd643a350310e17ca78f8b8c55972d62d020e12f7_ppc64le", + "product_id": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:661c9b3d09ef68a7f2de7cbbd643a350310e17ca78f8b8c55972d62d020e12f7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-operator-rhel8@sha256:661c9b3d09ef68a7f2de7cbbd643a350310e17ca78f8b8c55972d62d020e12f7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8&tag=v4.12.0-202310170157.p0.g3201431.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:62d8596c07d1e95cbe463f7732b20a75b85b692f93ec1bd10b8942a1b13d7df7_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:62d8596c07d1e95cbe463f7732b20a75b85b692f93ec1bd10b8942a1b13d7df7_ppc64le", + "product_id": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:62d8596c07d1e95cbe463f7732b20a75b85b692f93ec1bd10b8942a1b13d7df7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-webhook-rhel8@sha256:62d8596c07d1e95cbe463f7732b20a75b85b692f93ec1bd10b8942a1b13d7df7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8&tag=v4.12.0-202310170157.p0.g20cffc0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer@sha256:50dc4d1009f8abbf149787bf653bacf20ad2901d99883f7955630fc5cd344f8c_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-resizer@sha256:50dc4d1009f8abbf149787bf653bacf20ad2901d99883f7955630fc5cd344f8c_ppc64le", + "product_id": "openshift4/ose-csi-external-resizer@sha256:50dc4d1009f8abbf149787bf653bacf20ad2901d99883f7955630fc5cd344f8c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer@sha256:50dc4d1009f8abbf149787bf653bacf20ad2901d99883f7955630fc5cd344f8c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer&tag=v4.12.0-202310170157.p0.g239d751.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:50dc4d1009f8abbf149787bf653bacf20ad2901d99883f7955630fc5cd344f8c_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:50dc4d1009f8abbf149787bf653bacf20ad2901d99883f7955630fc5cd344f8c_ppc64le", + "product_id": "openshift4/ose-csi-external-resizer-rhel8@sha256:50dc4d1009f8abbf149787bf653bacf20ad2901d99883f7955630fc5cd344f8c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer-rhel8@sha256:50dc4d1009f8abbf149787bf653bacf20ad2901d99883f7955630fc5cd344f8c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8&tag=v4.12.0-202310170157.p0.g239d751.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter@sha256:c4d49ae6ec1c9bf0aefbb9f615041feef2ca254bbab9d6f3b2a6cc613fa6bcf7_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:c4d49ae6ec1c9bf0aefbb9f615041feef2ca254bbab9d6f3b2a6cc613fa6bcf7_ppc64le", + "product_id": "openshift4/ose-csi-external-snapshotter@sha256:c4d49ae6ec1c9bf0aefbb9f615041feef2ca254bbab9d6f3b2a6cc613fa6bcf7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter@sha256:c4d49ae6ec1c9bf0aefbb9f615041feef2ca254bbab9d6f3b2a6cc613fa6bcf7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter&tag=v4.12.0-202310170157.p0.g7e23256.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:c4d49ae6ec1c9bf0aefbb9f615041feef2ca254bbab9d6f3b2a6cc613fa6bcf7_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:c4d49ae6ec1c9bf0aefbb9f615041feef2ca254bbab9d6f3b2a6cc613fa6bcf7_ppc64le", + "product_id": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:c4d49ae6ec1c9bf0aefbb9f615041feef2ca254bbab9d6f3b2a6cc613fa6bcf7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter-rhel8@sha256:c4d49ae6ec1c9bf0aefbb9f615041feef2ca254bbab9d6f3b2a6cc613fa6bcf7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8&tag=v4.12.0-202310170157.p0.g7e23256.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller@sha256:7c96a3187d805fe374cd4ce3c7e8af1ffd9a08f477192ce7faea41de21049e58_ppc64le", + "product": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:7c96a3187d805fe374cd4ce3c7e8af1ffd9a08f477192ce7faea41de21049e58_ppc64le", + "product_id": "openshift4/ose-csi-snapshot-controller@sha256:7c96a3187d805fe374cd4ce3c7e8af1ffd9a08f477192ce7faea41de21049e58_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller@sha256:7c96a3187d805fe374cd4ce3c7e8af1ffd9a08f477192ce7faea41de21049e58?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller&tag=v4.12.0-202310170157.p0.g7e23256.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:7c96a3187d805fe374cd4ce3c7e8af1ffd9a08f477192ce7faea41de21049e58_ppc64le", + "product": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:7c96a3187d805fe374cd4ce3c7e8af1ffd9a08f477192ce7faea41de21049e58_ppc64le", + "product_id": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:7c96a3187d805fe374cd4ce3c7e8af1ffd9a08f477192ce7faea41de21049e58_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller-rhel8@sha256:7c96a3187d805fe374cd4ce3c7e8af1ffd9a08f477192ce7faea41de21049e58?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8&tag=v4.12.0-202310170157.p0.g7e23256.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:a459101f3ddc74f87724093ba8445ab6e48282298384f30ab9ee37f67c8a726f_ppc64le", + "product": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:a459101f3ddc74f87724093ba8445ab6e48282298384f30ab9ee37f67c8a726f_ppc64le", + "product_id": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:a459101f3ddc74f87724093ba8445ab6e48282298384f30ab9ee37f67c8a726f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-validation-webhook-rhel8@sha256:a459101f3ddc74f87724093ba8445ab6e48282298384f30ab9ee37f67c8a726f?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8&tag=v4.12.0-202310170157.p0.g7e23256.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/egress-router-cni-rhel8@sha256:bc95f121c003db4cdaa0425f4fd3d91ef9e079d8c67217d811dbe33a83748470_ppc64le", + "product": { + "name": "openshift4/egress-router-cni-rhel8@sha256:bc95f121c003db4cdaa0425f4fd3d91ef9e079d8c67217d811dbe33a83748470_ppc64le", + "product_id": "openshift4/egress-router-cni-rhel8@sha256:bc95f121c003db4cdaa0425f4fd3d91ef9e079d8c67217d811dbe33a83748470_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/egress-router-cni-rhel8@sha256:bc95f121c003db4cdaa0425f4fd3d91ef9e079d8c67217d811dbe33a83748470?arch=ppc64le&repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel8&tag=v4.12.0-202310170157.p0.ga92e415.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-etcd@sha256:d707650d52688cc79980ee19c8accc44aa1859c7b23909bfb681184b422ebbe7_ppc64le", + "product": { + "name": "openshift4/ose-etcd@sha256:d707650d52688cc79980ee19c8accc44aa1859c7b23909bfb681184b422ebbe7_ppc64le", + "product_id": "openshift4/ose-etcd@sha256:d707650d52688cc79980ee19c8accc44aa1859c7b23909bfb681184b422ebbe7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-etcd@sha256:d707650d52688cc79980ee19c8accc44aa1859c7b23909bfb681184b422ebbe7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-etcd&tag=v4.12.0-202310170157.p0.g9f987a5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:364432001e37c49ce6ef07cd95d355d4f1472775d25f1f6d282deec09fa9e7f0_ppc64le", + "product": { + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:364432001e37c49ce6ef07cd95d355d4f1472775d25f1f6d282deec09fa9e7f0_ppc64le", + "product_id": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:364432001e37c49ce6ef07cd95d355d4f1472775d25f1f6d282deec09fa9e7f0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel8@sha256:364432001e37c49ce6ef07cd95d355d4f1472775d25f1f6d282deec09fa9e7f0?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.g8d208a7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:f577985a7d1f854978dfda92d7790fd3f68eedcb09dc09c9f4731bd7c27daffb_ppc64le", + "product": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:f577985a7d1f854978dfda92d7790fd3f68eedcb09dc09c9f4731bd7c27daffb_ppc64le", + "product_id": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:f577985a7d1f854978dfda92d7790fd3f68eedcb09dc09c9f4731bd7c27daffb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel8@sha256:f577985a7d1f854978dfda92d7790fd3f68eedcb09dc09c9f4731bd7c27daffb?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8&tag=v4.12.0-202310170157.p0.geea0586.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:5a25e75195a5736de688d33999cf8d1f08905265368f2e87ee40ae7c89961f4c_ppc64le", + "product": { + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:5a25e75195a5736de688d33999cf8d1f08905265368f2e87ee40ae7c89961f4c_ppc64le", + "product_id": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:5a25e75195a5736de688d33999cf8d1f08905265368f2e87ee40ae7c89961f4c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel8@sha256:5a25e75195a5736de688d33999cf8d1f08905265368f2e87ee40ae7c89961f4c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8&tag=v4.12.0-202310170157.p0.g223d846.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:c99b5703ebb11752c880af1b5ceacd654fd0a1e783bb148dd10582283c5ef366_ppc64le", + "product": { + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:c99b5703ebb11752c880af1b5ceacd654fd0a1e783bb148dd10582283c5ef366_ppc64le", + "product_id": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:c99b5703ebb11752c880af1b5ceacd654fd0a1e783bb148dd10582283c5ef366_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel8@sha256:c99b5703ebb11752c880af1b5ceacd654fd0a1e783bb148dd10582283c5ef366?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8&tag=v4.12.0-202310170157.p0.gbcca07e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hypershift-rhel8@sha256:8824b08450531d02f28983cdf38bbf1ca5aaaee0aead79f82aeb0b054c9c932c_ppc64le", + "product": { + "name": "openshift4/ose-hypershift-rhel8@sha256:8824b08450531d02f28983cdf38bbf1ca5aaaee0aead79f82aeb0b054c9c932c_ppc64le", + "product_id": "openshift4/ose-hypershift-rhel8@sha256:8824b08450531d02f28983cdf38bbf1ca5aaaee0aead79f82aeb0b054c9c932c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-hypershift-rhel8@sha256:8824b08450531d02f28983cdf38bbf1ca5aaaee0aead79f82aeb0b054c9c932c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel8&tag=v4.12.0-202310170157.p0.g6f1e701.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:a14467cbc387c9335944c956c93a73ca9c2ed131375058a01988aa7b9ced6832_ppc64le", + "product": { + "name": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:a14467cbc387c9335944c956c93a73ca9c2ed131375058a01988aa7b9ced6832_ppc64le", + "product_id": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:a14467cbc387c9335944c956c93a73ca9c2ed131375058a01988aa7b9ced6832_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:a14467cbc387c9335944c956c93a73ca9c2ed131375058a01988aa7b9ced6832?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8&tag=v4.12.0-202310170157.p0.gc1304c8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-insights-rhel8-operator@sha256:771bfdf95fa439978b16148a91ea92dd1b0aca7a25c8bc262374bafd172f210c_ppc64le", + "product": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:771bfdf95fa439978b16148a91ea92dd1b0aca7a25c8bc262374bafd172f210c_ppc64le", + "product_id": "openshift4/ose-insights-rhel8-operator@sha256:771bfdf95fa439978b16148a91ea92dd1b0aca7a25c8bc262374bafd172f210c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-insights-rhel8-operator@sha256:771bfdf95fa439978b16148a91ea92dd1b0aca7a25c8bc262374bafd172f210c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-insights-rhel8-operator&tag=v4.12.0-202310170157.p0.g6c16f87.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer-artifacts@sha256:3ffd4a1b460ddada69c2fa058af32b0f1179343e834a765557ec14b37bbd2b0b_ppc64le", + "product": { + "name": "openshift4/ose-installer-artifacts@sha256:3ffd4a1b460ddada69c2fa058af32b0f1179343e834a765557ec14b37bbd2b0b_ppc64le", + "product_id": "openshift4/ose-installer-artifacts@sha256:3ffd4a1b460ddada69c2fa058af32b0f1179343e834a765557ec14b37bbd2b0b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer-artifacts@sha256:3ffd4a1b460ddada69c2fa058af32b0f1179343e834a765557ec14b37bbd2b0b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-installer-artifacts&tag=v4.12.0-202310170157.p0.g576d815.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer@sha256:367011acf2376b3aa1f63244728aa2f12220424ad0dfae63b17be0161723b7b1_ppc64le", + "product": { + "name": "openshift4/ose-installer@sha256:367011acf2376b3aa1f63244728aa2f12220424ad0dfae63b17be0161723b7b1_ppc64le", + "product_id": "openshift4/ose-installer@sha256:367011acf2376b3aa1f63244728aa2f12220424ad0dfae63b17be0161723b7b1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer@sha256:367011acf2376b3aa1f63244728aa2f12220424ad0dfae63b17be0161723b7b1?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-installer&tag=v4.12.0-202310170157.p0.g576d815.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:fe7e2db95379f6b6cf19e0f060124130ff4a8a204eb19bc2e1e6222244f10e06_ppc64le", + "product": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:fe7e2db95379f6b6cf19e0f060124130ff4a8a204eb19bc2e1e6222244f10e06_ppc64le", + "product_id": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:fe7e2db95379f6b6cf19e0f060124130ff4a8a204eb19bc2e1e6222244f10e06_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-storage-version-migrator-rhel8@sha256:fe7e2db95379f6b6cf19e0f060124130ff4a8a204eb19bc2e1e6222244f10e06?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8&tag=v4.12.0-202310170157.p0.g596745c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:0f0fbfc1d5d16c5a4e66578d106f76d3d0d8cac6db5dd17ce853446f8c92f247_ppc64le", + "product": { + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:0f0fbfc1d5d16c5a4e66578d106f76d3d0d8cac6db5dd17ce853446f8c92f247_ppc64le", + "product_id": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:0f0fbfc1d5d16c5a4e66578d106f76d3d0d8cac6db5dd17ce853446f8c92f247_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel8@sha256:0f0fbfc1d5d16c5a4e66578d106f76d3d0d8cac6db5dd17ce853446f8c92f247?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.ga19615c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:0157ec50af67bb54ed0581b32550124741015eb654ac302aca8f9ca70307e8a5_ppc64le", + "product": { + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:0157ec50af67bb54ed0581b32550124741015eb654ac302aca8f9ca70307e8a5_ppc64le", + "product_id": "openshift4/kubevirt-csi-driver-rhel8@sha256:0157ec50af67bb54ed0581b32550124741015eb654ac302aca8f9ca70307e8a5_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-csi-driver-rhel8@sha256:0157ec50af67bb54ed0581b32550124741015eb654ac302aca8f9ca70307e8a5?arch=ppc64le&repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8&tag=v4.12.0-202310170157.p0.gf407c8a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-libvirt-machine-controllers@sha256:579827bf1d6efeb2375ef7835b77ec751faa7ae35ef3cd272f5d04e39fd5f653_ppc64le", + "product": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:579827bf1d6efeb2375ef7835b77ec751faa7ae35ef3cd272f5d04e39fd5f653_ppc64le", + "product_id": "openshift4/ose-libvirt-machine-controllers@sha256:579827bf1d6efeb2375ef7835b77ec751faa7ae35ef3cd272f5d04e39fd5f653_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-libvirt-machine-controllers@sha256:579827bf1d6efeb2375ef7835b77ec751faa7ae35ef3cd272f5d04e39fd5f653?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers&tag=v4.12.0-202310170157.p0.ga2882f7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-operator@sha256:4dd43648b788fcf9c81048238b160cc3606c9d3b8cb3b2aa13cddbb859509731_ppc64le", + "product": { + "name": "openshift4/ose-machine-api-operator@sha256:4dd43648b788fcf9c81048238b160cc3606c9d3b8cb3b2aa13cddbb859509731_ppc64le", + "product_id": "openshift4/ose-machine-api-operator@sha256:4dd43648b788fcf9c81048238b160cc3606c9d3b8cb3b2aa13cddbb859509731_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-operator@sha256:4dd43648b788fcf9c81048238b160cc3606c9d3b8cb3b2aa13cddbb859509731?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-machine-api-operator&tag=v4.12.0-202310170157.p0.ga6c42a4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:5dd1e59057a825cf3cc412b5cb007b9ea141c15d2c3e46bd90768051210bfd01_ppc64le", + "product": { + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:5dd1e59057a825cf3cc412b5cb007b9ea141c15d2c3e46bd90768051210bfd01_ppc64le", + "product_id": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:5dd1e59057a825cf3cc412b5cb007b9ea141c15d2c3e46bd90768051210bfd01_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-gcp-rhel8@sha256:5dd1e59057a825cf3cc412b5cb007b9ea141c15d2c3e46bd90768051210bfd01?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8&tag=v4.12.0-202310170157.p0.ge7cecfc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:e963efb9c505968d2f845eabe1c9693a3b2634c2c9c7fd66f56a1db01c049aad_ppc64le", + "product": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:e963efb9c505968d2f845eabe1c9693a3b2634c2c9c7fd66f56a1db01c049aad_ppc64le", + "product_id": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:e963efb9c505968d2f845eabe1c9693a3b2634c2c9c7fd66f56a1db01c049aad_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-openstack-rhel8@sha256:e963efb9c505968d2f845eabe1c9693a3b2634c2c9c7fd66f56a1db01c049aad?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8&tag=v4.12.0-202310170157.p0.g0565766.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-config-operator@sha256:d7b19225d13a05d77feca6fb2d92ca148eb0cd7bd89f8ce7afda2e2eb170e56a_ppc64le", + "product": { + "name": "openshift4/ose-machine-config-operator@sha256:d7b19225d13a05d77feca6fb2d92ca148eb0cd7bd89f8ce7afda2e2eb170e56a_ppc64le", + "product_id": "openshift4/ose-machine-config-operator@sha256:d7b19225d13a05d77feca6fb2d92ca148eb0cd7bd89f8ce7afda2e2eb170e56a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-config-operator@sha256:d7b19225d13a05d77feca6fb2d92ca148eb0cd7bd89f8ce7afda2e2eb170e56a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-machine-config-operator&tag=v4.12.0-202310170157.p0.gb483cdd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-os-images-rhel8@sha256:60d89f58d2624a407dae492777cd348db913ddfdf317a69e7e7c46fae9fed4a1_ppc64le", + "product": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:60d89f58d2624a407dae492777cd348db913ddfdf317a69e7e7c46fae9fed4a1_ppc64le", + "product_id": "openshift4/ose-machine-os-images-rhel8@sha256:60d89f58d2624a407dae492777cd348db913ddfdf317a69e7e7c46fae9fed4a1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-os-images-rhel8@sha256:60d89f58d2624a407dae492777cd348db913ddfdf317a69e7e7c46fae9fed4a1?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel8&tag=v4.12.0-202310170157.p0.g566bf59.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-admission-controller@sha256:48241dcf52ef68fa33b22e0a1e886d2946d79ca84c934200c412b265167d3765_ppc64le", + "product": { + "name": "openshift4/ose-multus-admission-controller@sha256:48241dcf52ef68fa33b22e0a1e886d2946d79ca84c934200c412b265167d3765_ppc64le", + "product_id": "openshift4/ose-multus-admission-controller@sha256:48241dcf52ef68fa33b22e0a1e886d2946d79ca84c934200c412b265167d3765_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-admission-controller@sha256:48241dcf52ef68fa33b22e0a1e886d2946d79ca84c934200c412b265167d3765?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller&tag=v4.12.0-202310170157.p0.g5bd752a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:d857e8bd0a769d084d6a2ecc0367ce1d8316bf4c8400f9ec3cc8ca190d38b204_ppc64le", + "product": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:d857e8bd0a769d084d6a2ecc0367ce1d8316bf4c8400f9ec3cc8ca190d38b204_ppc64le", + "product_id": "openshift4/ose-multus-networkpolicy-rhel8@sha256:d857e8bd0a769d084d6a2ecc0367ce1d8316bf4c8400f9ec3cc8ca190d38b204_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-networkpolicy-rhel8@sha256:d857e8bd0a769d084d6a2ecc0367ce1d8316bf4c8400f9ec3cc8ca190d38b204?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8&tag=v4.12.0-202310170157.p0.g421718a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:bd3ce9ffdc1f6489697b8174442438e9b6464a02b72e9ed8610c088cc08acf00_ppc64le", + "product": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:bd3ce9ffdc1f6489697b8174442438e9b6464a02b72e9ed8610c088cc08acf00_ppc64le", + "product_id": "openshift4/ose-multus-route-override-cni-rhel8@sha256:bd3ce9ffdc1f6489697b8174442438e9b6464a02b72e9ed8610c088cc08acf00_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-route-override-cni-rhel8@sha256:bd3ce9ffdc1f6489697b8174442438e9b6464a02b72e9ed8610c088cc08acf00?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8&tag=v4.12.0-202310170157.p0.gefd6ffb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:3268d73007c705974d5a459eaa8271073f98192a7e119f3d50c647f3a060f98c_ppc64le", + "product": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:3268d73007c705974d5a459eaa8271073f98192a7e119f3d50c647f3a060f98c_ppc64le", + "product_id": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:3268d73007c705974d5a459eaa8271073f98192a7e119f3d50c647f3a060f98c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel8@sha256:3268d73007c705974d5a459eaa8271073f98192a7e119f3d50c647f3a060f98c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8&tag=v4.12.0-202310170157.p0.ge56594f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-must-gather@sha256:fc08971945c26d737bacbc104ba66500b8bbed12306f81a5e414df5defbb73e1_ppc64le", + "product": { + "name": "openshift4/ose-must-gather@sha256:fc08971945c26d737bacbc104ba66500b8bbed12306f81a5e414df5defbb73e1_ppc64le", + "product_id": "openshift4/ose-must-gather@sha256:fc08971945c26d737bacbc104ba66500b8bbed12306f81a5e414df5defbb73e1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-must-gather@sha256:fc08971945c26d737bacbc104ba66500b8bbed12306f81a5e414df5defbb73e1?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-must-gather&tag=v4.12.0-202310170157.p0.g5fd2176.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:452a04253666110ea2104e67d9bf6f49bac2624da0791cc33b9a9c66d836e174_ppc64le", + "product": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:452a04253666110ea2104e67d9bf6f49bac2624da0791cc33b9a9c66d836e174_ppc64le", + "product_id": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:452a04253666110ea2104e67d9bf6f49bac2624da0791cc33b9a9c66d836e174_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-interface-bond-cni-rhel8@sha256:452a04253666110ea2104e67d9bf6f49bac2624da0791cc33b9a9c66d836e174?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8&tag=v4.12.0-202310170157.p0.g30386d6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:5f62a8ce4c7825514b238d75c78eba71a82a7be7b25a353a98a0731f2f4e1d65_ppc64le", + "product": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:5f62a8ce4c7825514b238d75c78eba71a82a7be7b25a353a98a0731f2f4e1d65_ppc64le", + "product_id": "openshift4/ose-network-metrics-daemon-rhel8@sha256:5f62a8ce4c7825514b238d75c78eba71a82a7be7b25a353a98a0731f2f4e1d65_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-metrics-daemon-rhel8@sha256:5f62a8ce4c7825514b238d75c78eba71a82a7be7b25a353a98a0731f2f4e1d65?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8&tag=v4.12.0-202310170157.p0.g74202ec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/network-tools-rhel8@sha256:9084cd8e37eaf09291d2b427645e5cd40618e50b821f371a2803abc7de6ec8f0_ppc64le", + "product": { + "name": "openshift4/network-tools-rhel8@sha256:9084cd8e37eaf09291d2b427645e5cd40618e50b821f371a2803abc7de6ec8f0_ppc64le", + "product_id": "openshift4/network-tools-rhel8@sha256:9084cd8e37eaf09291d2b427645e5cd40618e50b821f371a2803abc7de6ec8f0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/network-tools-rhel8@sha256:9084cd8e37eaf09291d2b427645e5cd40618e50b821f371a2803abc7de6ec8f0?arch=ppc64le&repository_url=registry.redhat.io/openshift4/network-tools-rhel8&tag=v4.12.0-202310170157.p0.gc76613c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sdn-rhel8@sha256:8936aad2d0ada59936894bbf928188d26d0b8f278e1b758b6cbfad5cdffc2493_ppc64le", + "product": { + "name": "openshift4/ose-sdn-rhel8@sha256:8936aad2d0ada59936894bbf928188d26d0b8f278e1b758b6cbfad5cdffc2493_ppc64le", + "product_id": "openshift4/ose-sdn-rhel8@sha256:8936aad2d0ada59936894bbf928188d26d0b8f278e1b758b6cbfad5cdffc2493_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-sdn-rhel8@sha256:8936aad2d0ada59936894bbf928188d26d0b8f278e1b758b6cbfad5cdffc2493?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-sdn-rhel8&tag=v4.12.0-202310170157.p0.gdc9f9af.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:605ec639af9715ecfdbfcb0bac99f13e5fea20834089e6d466bdf49bd93cbf80_ppc64le", + "product": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:605ec639af9715ecfdbfcb0bac99f13e5fea20834089e6d466bdf49bd93cbf80_ppc64le", + "product_id": "openshift4/ose-oauth-apiserver-rhel8@sha256:605ec639af9715ecfdbfcb0bac99f13e5fea20834089e6d466bdf49bd93cbf80_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-apiserver-rhel8@sha256:605ec639af9715ecfdbfcb0bac99f13e5fea20834089e6d466bdf49bd93cbf80?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8&tag=v4.12.0-202310170157.p0.gcfafdcc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:8bbf5047f795d0af8a281df49834cd7fd67b390ab6271b47715fc989a1171b21_ppc64le", + "product": { + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:8bbf5047f795d0af8a281df49834cd7fd67b390ab6271b47715fc989a1171b21_ppc64le", + "product_id": "openshift4/ose-olm-rukpak-rhel8@sha256:8bbf5047f795d0af8a281df49834cd7fd67b390ab6271b47715fc989a1171b21_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-olm-rukpak-rhel8@sha256:8bbf5047f795d0af8a281df49834cd7fd67b390ab6271b47715fc989a1171b21?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-olm-rukpak-rhel8&tag=v4.12.0-202310170157.p0.g1b52bfe.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:1cd9c91d14779dd36bbafab58c1ac8c4b5b0fddd4c6d7e5dc9a642b718c930ac_ppc64le", + "product": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:1cd9c91d14779dd36bbafab58c1ac8c4b5b0fddd4c6d7e5dc9a642b718c930ac_ppc64le", + "product_id": "openshift4/ose-openshift-apiserver-rhel8@sha256:1cd9c91d14779dd36bbafab58c1ac8c4b5b0fddd4c6d7e5dc9a642b718c930ac_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-apiserver-rhel8@sha256:1cd9c91d14779dd36bbafab58c1ac8c4b5b0fddd4c6d7e5dc9a642b718c930ac?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8&tag=v4.12.0-202310170157.p0.g635ed5c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:0596ed8a5f42d1f4f616036310a997c2d4cedd74036506dc00281a0a10a1d3b7_ppc64le", + "product": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:0596ed8a5f42d1f4f616036310a997c2d4cedd74036506dc00281a0a10a1d3b7_ppc64le", + "product_id": "openshift4/ose-openshift-controller-manager-rhel8@sha256:0596ed8a5f42d1f4f616036310a997c2d4cedd74036506dc00281a0a10a1d3b7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-controller-manager-rhel8@sha256:0596ed8a5f42d1f4f616036310a997c2d4cedd74036506dc00281a0a10a1d3b7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.gb6528f9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:d01c48d138fbd57cfacf78538e576a40213f235672b583483102a20907b22ef2_ppc64le", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:d01c48d138fbd57cfacf78538e576a40213f235672b583483102a20907b22ef2_ppc64le", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:d01c48d138fbd57cfacf78538e576a40213f235672b583483102a20907b22ef2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8@sha256:d01c48d138fbd57cfacf78538e576a40213f235672b583483102a20907b22ef2?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8&tag=v4.12.0-202310170157.p0.g501138d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:ef59ec1357a96f5a88df8275486cf616b73b442f8c770f290452bf6e079f28c6_ppc64le", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:ef59ec1357a96f5a88df8275486cf616b73b442f8c770f290452bf6e079f28c6_ppc64le", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:ef59ec1357a96f5a88df8275486cf616b73b442f8c770f290452bf6e079f28c6_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:ef59ec1357a96f5a88df8275486cf616b73b442f8c770f290452bf6e079f28c6?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator&tag=v4.12.0-202310170703.p0.gdb5a7df.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:b3784190afaa937e9185f7ed2c62cac554b2d632b1aeafdda01cbb966b28a078_ppc64le", + "product": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:b3784190afaa937e9185f7ed2c62cac554b2d632b1aeafdda01cbb966b28a078_ppc64le", + "product_id": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:b3784190afaa937e9185f7ed2c62cac554b2d632b1aeafdda01cbb966b28a078_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel8@sha256:b3784190afaa937e9185f7ed2c62cac554b2d632b1aeafdda01cbb966b28a078?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.g501138d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-machine-controllers@sha256:0516ff48c31b625cec42de54f4d0cc8f7bf265aa6161ec4d1409d09d7c5acaca_ppc64le", + "product": { + "name": "openshift4/ose-openstack-machine-controllers@sha256:0516ff48c31b625cec42de54f4d0cc8f7bf265aa6161ec4d1409d09d7c5acaca_ppc64le", + "product_id": "openshift4/ose-openstack-machine-controllers@sha256:0516ff48c31b625cec42de54f4d0cc8f7bf265aa6161ec4d1409d09d7c5acaca_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-machine-controllers@sha256:0516ff48c31b625cec42de54f4d0cc8f7bf265aa6161ec4d1409d09d7c5acaca?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openstack-machine-controllers&tag=v4.12.0-202310170157.p0.g8bd9c35.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:6ce6a28be84e62aa8e0b947a1ea90c5ce8cd2e31e3a4087f23682aa992073fd9_ppc64le", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:6ce6a28be84e62aa8e0b947a1ea90c5ce8cd2e31e3a4087f23682aa992073fd9_ppc64le", + "product_id": "openshift4/ovirt-csi-driver-rhel8@sha256:6ce6a28be84e62aa8e0b947a1ea90c5ce8cd2e31e3a4087f23682aa992073fd9_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8@sha256:6ce6a28be84e62aa8e0b947a1ea90c5ce8cd2e31e3a4087f23682aa992073fd9?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8&tag=v4.12.0-202310170157.p0.g64d58fb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:6ce6a28be84e62aa8e0b947a1ea90c5ce8cd2e31e3a4087f23682aa992073fd9_ppc64le", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:6ce6a28be84e62aa8e0b947a1ea90c5ce8cd2e31e3a4087f23682aa992073fd9_ppc64le", + "product_id": "openshift4/ovirt-csi-driver-rhel7@sha256:6ce6a28be84e62aa8e0b947a1ea90c5ce8cd2e31e3a4087f23682aa992073fd9_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel7@sha256:6ce6a28be84e62aa8e0b947a1ea90c5ce8cd2e31e3a4087f23682aa992073fd9?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel7&tag=v4.12.0-202310170157.p0.g64d58fb.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:eaf9bd8606b6fc13576a6900fd694e70ce89a71bec6bec0209ef5e86f61c4781_ppc64le", + "product": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:eaf9bd8606b6fc13576a6900fd694e70ce89a71bec6bec0209ef5e86f61c4781_ppc64le", + "product_id": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:eaf9bd8606b6fc13576a6900fd694e70ce89a71bec6bec0209ef5e86f61c4781_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovirt-machine-controllers-rhel8@sha256:eaf9bd8606b6fc13576a6900fd694e70ce89a71bec6bec0209ef5e86f61c4781?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8&tag=v4.12.0-202310170157.p0.g03e8cb5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes@sha256:9808a0f0a7a834e421d43b2377c302e1ed993ba1bf551470041460a95cdedb3c_ppc64le", + "product": { + "name": "openshift4/ose-ovn-kubernetes@sha256:9808a0f0a7a834e421d43b2377c302e1ed993ba1bf551470041460a95cdedb3c_ppc64le", + "product_id": "openshift4/ose-ovn-kubernetes@sha256:9808a0f0a7a834e421d43b2377c302e1ed993ba1bf551470041460a95cdedb3c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes@sha256:9808a0f0a7a834e421d43b2377c302e1ed993ba1bf551470041460a95cdedb3c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes&tag=v4.12.0-202310170157.p0.g97c5073.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:d31af5c8da41b0dbfa67ed401a48c8e9f0717287f57569cb400795736a0ee87d_ppc64le", + "product": { + "name": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:d31af5c8da41b0dbfa67ed401a48c8e9f0717287f57569cb400795736a0ee87d_ppc64le", + "product_id": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:d31af5c8da41b0dbfa67ed401a48c8e9f0717287f57569cb400795736a0ee87d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-block-csi-driver-rhel8@sha256:d31af5c8da41b0dbfa67ed401a48c8e9f0717287f57569cb400795736a0ee87d?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8&tag=v4.12.0-202310170703.p0.g30d7b89.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:523a17fcd2f438d37179c5dd622e43e7d7331d832ab9248c91b60ab8163a5bff_ppc64le", + "product": { + "name": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:523a17fcd2f438d37179c5dd622e43e7d7331d832ab9248c91b60ab8163a5bff_ppc64le", + "product_id": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:523a17fcd2f438d37179c5dd622e43e7d7331d832ab9248c91b60ab8163a5bff_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-block-csi-driver-operator-rhel8@sha256:523a17fcd2f438d37179c5dd622e43e7d7331d832ab9248c91b60ab8163a5bff?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8&tag=v4.12.0-202310170157.p0.gb4da8bc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:874b484d4dd058cc92f48d714ff3b38760dfb1b5be55f7f71302ea91776c8ca7_ppc64le", + "product": { + "name": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:874b484d4dd058cc92f48d714ff3b38760dfb1b5be55f7f71302ea91776c8ca7_ppc64le", + "product_id": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:874b484d4dd058cc92f48d714ff3b38760dfb1b5be55f7f71302ea91776c8ca7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-cloud-controller-manager-rhel8@sha256:874b484d4dd058cc92f48d714ff3b38760dfb1b5be55f7f71302ea91776c8ca7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.gd8ddc10.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:8a47d88ac250177db8ab024e7e7fcfb5fb69e8edcf5477bbae7e87ec6af06ccb_ppc64le", + "product": { + "name": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:8a47d88ac250177db8ab024e7e7fcfb5fb69e8edcf5477bbae7e87ec6af06ccb_ppc64le", + "product_id": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:8a47d88ac250177db8ab024e7e7fcfb5fb69e8edcf5477bbae7e87ec6af06ccb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-machine-controllers-rhel8@sha256:8a47d88ac250177db8ab024e7e7fcfb5fb69e8edcf5477bbae7e87ec6af06ccb?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8&tag=v4.12.0-202310170157.p0.g3f498f7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:889de52bdf76278993115cc3d01d998573d9a9472bea3e9b4ca967304234a1c7_ppc64le", + "product": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:889de52bdf76278993115cc3d01d998573d9a9472bea3e9b4ca967304234a1c7_ppc64le", + "product_id": "openshift4/ose-k8s-prometheus-adapter@sha256:889de52bdf76278993115cc3d01d998573d9a9472bea3e9b4ca967304234a1c7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-k8s-prometheus-adapter@sha256:889de52bdf76278993115cc3d01d998573d9a9472bea3e9b4ca967304234a1c7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter&tag=v4.12.0-202310170157.p0.g5fc351d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:b579bc8e5c3452d2c3efee591240d7ae8e783225d6169caf4227923a82896d7c_ppc64le", + "product": { + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:b579bc8e5c3452d2c3efee591240d7ae8e783225d6169caf4227923a82896d7c_ppc64le", + "product_id": "openshift4/openshift-route-controller-manager-rhel8@sha256:b579bc8e5c3452d2c3efee591240d7ae8e783225d6169caf4227923a82896d7c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/openshift-route-controller-manager-rhel8@sha256:b579bc8e5c3452d2c3efee591240d7ae8e783225d6169caf4227923a82896d7c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8&tag=v4.12.0-202310170157.p0.g0f141ce.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-service-ca-operator@sha256:fa071f8535f2f7f457ac340ef9a81933e3f1794d5b7cc26e50b2546a35199967_ppc64le", + "product": { + "name": "openshift4/ose-service-ca-operator@sha256:fa071f8535f2f7f457ac340ef9a81933e3f1794d5b7cc26e50b2546a35199967_ppc64le", + "product_id": "openshift4/ose-service-ca-operator@sha256:fa071f8535f2f7f457ac340ef9a81933e3f1794d5b7cc26e50b2546a35199967_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-service-ca-operator@sha256:fa071f8535f2f7f457ac340ef9a81933e3f1794d5b7cc26e50b2546a35199967?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-service-ca-operator&tag=v4.12.0-202310170157.p0.g299b709.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-thanos-rhel8@sha256:26e4a9884b5b90b3a810071cb568013d1f93acf70d62442f095b0c6ff4b41757_ppc64le", + "product": { + "name": "openshift4/ose-thanos-rhel8@sha256:26e4a9884b5b90b3a810071cb568013d1f93acf70d62442f095b0c6ff4b41757_ppc64le", + "product_id": "openshift4/ose-thanos-rhel8@sha256:26e4a9884b5b90b3a810071cb568013d1f93acf70d62442f095b0c6ff4b41757_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-thanos-rhel8@sha256:26e4a9884b5b90b3a810071cb568013d1f93acf70d62442f095b0c6ff4b41757?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-thanos-rhel8&tag=v4.12.0-202310170157.p0.g9f2b5ff.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tools-rhel8@sha256:1ed490ba52f4aa30a072b2dca994c0626c1a7dc4392cdc4bec90e2b36fdf23ba_ppc64le", + "product": { + "name": "openshift4/ose-tools-rhel8@sha256:1ed490ba52f4aa30a072b2dca994c0626c1a7dc4392cdc4bec90e2b36fdf23ba_ppc64le", + "product_id": "openshift4/ose-tools-rhel8@sha256:1ed490ba52f4aa30a072b2dca994c0626c1a7dc4392cdc4bec90e2b36fdf23ba_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-tools-rhel8@sha256:1ed490ba52f4aa30a072b2dca994c0626c1a7dc4392cdc4bec90e2b36fdf23ba?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-tools-rhel8&tag=v4.12.0-202310170157.p0.g7aa4009.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:b6382cb66c2460fa54b8bc493f62e736de0d7d76a203d317710706c162f6053d_ppc64le", + "product": { + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:b6382cb66c2460fa54b8bc493f62e736de0d7d76a203d317710706c162f6053d_ppc64le", + "product_id": "openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:b6382cb66c2460fa54b8bc493f62e736de0d7d76a203d317710706c162f6053d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel8@sha256:b6382cb66c2460fa54b8bc493f62e736de0d7d76a203d317710706c162f6053d?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel8&tag=v4.12.0-202310170157.p0.g97c5073.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-config-reloader@sha256:338020fbd51d6ff25335b90171ac12542840fee6c9f7b77b1c91ba8af883c8dc_ppc64le", + "product": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:338020fbd51d6ff25335b90171ac12542840fee6c9f7b77b1c91ba8af883c8dc_ppc64le", + "product_id": "openshift4/ose-prometheus-config-reloader@sha256:338020fbd51d6ff25335b90171ac12542840fee6c9f7b77b1c91ba8af883c8dc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-config-reloader@sha256:338020fbd51d6ff25335b90171ac12542840fee6c9f7b77b1c91ba8af883c8dc?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader&tag=v4.12.0-202310170157.p0.g57e7c57.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:0dd241ec102dfa39ca43dfbdca2ceeb7b90dba47d43306044c2c61a15d55d6dc_ppc64le", + "product": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:0dd241ec102dfa39ca43dfbdca2ceeb7b90dba47d43306044c2c61a15d55d6dc_ppc64le", + "product_id": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:0dd241ec102dfa39ca43dfbdca2ceeb7b90dba47d43306044c2c61a15d55d6dc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel8@sha256:0dd241ec102dfa39ca43dfbdca2ceeb7b90dba47d43306044c2c61a15d55d6dc?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8&tag=v4.12.0-202310170157.p0.g57e7c57.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator@sha256:e5cbae5f7c798ca6c7c70df60b4c40fab62a17d082d4d4ad822699e77e3a5b57_ppc64le", + "product": { + "name": "openshift4/ose-prometheus-operator@sha256:e5cbae5f7c798ca6c7c70df60b4c40fab62a17d082d4d4ad822699e77e3a5b57_ppc64le", + "product_id": "openshift4/ose-prometheus-operator@sha256:e5cbae5f7c798ca6c7c70df60b4c40fab62a17d082d4d4ad822699e77e3a5b57_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator@sha256:e5cbae5f7c798ca6c7c70df60b4c40fab62a17d082d4d4ad822699e77e3a5b57?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator&tag=v4.12.0-202310170157.p0.g57e7c57.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prom-label-proxy@sha256:c0863df57c72cad15d3c55f4c8009b8e0bd77d1dec484ba4bc2eb147b06dce7c_ppc64le", + "product": { + "name": "openshift4/ose-prom-label-proxy@sha256:c0863df57c72cad15d3c55f4c8009b8e0bd77d1dec484ba4bc2eb147b06dce7c_ppc64le", + "product_id": "openshift4/ose-prom-label-proxy@sha256:c0863df57c72cad15d3c55f4c8009b8e0bd77d1dec484ba4bc2eb147b06dce7c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prom-label-proxy@sha256:c0863df57c72cad15d3c55f4c8009b8e0bd77d1dec484ba4bc2eb147b06dce7c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy&tag=v4.12.0-202310170157.p0.gb190788.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-telemeter@sha256:fa62c10128a5e8bf64a3568c3e1eade34194e49ce444ab21c1eaba7cbce5584c_ppc64le", + "product": { + "name": "openshift4/ose-telemeter@sha256:fa62c10128a5e8bf64a3568c3e1eade34194e49ce444ab21c1eaba7cbce5584c_ppc64le", + "product_id": "openshift4/ose-telemeter@sha256:fa62c10128a5e8bf64a3568c3e1eade34194e49ce444ab21c1eaba7cbce5584c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-telemeter@sha256:fa62c10128a5e8bf64a3568c3e1eade34194e49ce444ab21c1eaba7cbce5584c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-telemeter&tag=v4.12.0-202310170157.p0.gfc631fc.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rhosdt/jaeger-agent-rhel8@sha256:5667bbe8cdf5ef5b93fe2eb51af1b03ac25db50ee7f13a35e97c67968f70d9bc_amd64", + "product": { + "name": "rhosdt/jaeger-agent-rhel8@sha256:5667bbe8cdf5ef5b93fe2eb51af1b03ac25db50ee7f13a35e97c67968f70d9bc_amd64", + "product_id": "rhosdt/jaeger-agent-rhel8@sha256:5667bbe8cdf5ef5b93fe2eb51af1b03ac25db50ee7f13a35e97c67968f70d9bc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-agent-rhel8@sha256:5667bbe8cdf5ef5b93fe2eb51af1b03ac25db50ee7f13a35e97c67968f70d9bc?arch=amd64&repository_url=registry.redhat.io/rhosdt/jaeger-agent-rhel8&tag=1.47.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/jaeger-all-in-one-rhel8@sha256:dd221ad03daa551a30a5b3631b9a489ab29147f4d0d380f317ee6e8999c5638f_amd64", + "product": { + "name": "rhosdt/jaeger-all-in-one-rhel8@sha256:dd221ad03daa551a30a5b3631b9a489ab29147f4d0d380f317ee6e8999c5638f_amd64", + "product_id": "rhosdt/jaeger-all-in-one-rhel8@sha256:dd221ad03daa551a30a5b3631b9a489ab29147f4d0d380f317ee6e8999c5638f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-all-in-one-rhel8@sha256:dd221ad03daa551a30a5b3631b9a489ab29147f4d0d380f317ee6e8999c5638f?arch=amd64&repository_url=registry.redhat.io/rhosdt/jaeger-all-in-one-rhel8&tag=1.47.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/jaeger-collector-rhel8@sha256:9551931c00cc1052ddb32310153352d56c70a50826c29bcee53fc048c6995399_amd64", + "product": { + "name": "rhosdt/jaeger-collector-rhel8@sha256:9551931c00cc1052ddb32310153352d56c70a50826c29bcee53fc048c6995399_amd64", + "product_id": "rhosdt/jaeger-collector-rhel8@sha256:9551931c00cc1052ddb32310153352d56c70a50826c29bcee53fc048c6995399_amd64", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-collector-rhel8@sha256:9551931c00cc1052ddb32310153352d56c70a50826c29bcee53fc048c6995399?arch=amd64&repository_url=registry.redhat.io/rhosdt/jaeger-collector-rhel8&tag=1.47.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/jaeger-es-index-cleaner-rhel8@sha256:699727f91948e7a870cdae3f8d3cf88cdf1df934ea6c4e5e1a86467b7ea62da3_amd64", + "product": { + "name": "rhosdt/jaeger-es-index-cleaner-rhel8@sha256:699727f91948e7a870cdae3f8d3cf88cdf1df934ea6c4e5e1a86467b7ea62da3_amd64", + "product_id": "rhosdt/jaeger-es-index-cleaner-rhel8@sha256:699727f91948e7a870cdae3f8d3cf88cdf1df934ea6c4e5e1a86467b7ea62da3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-es-index-cleaner-rhel8@sha256:699727f91948e7a870cdae3f8d3cf88cdf1df934ea6c4e5e1a86467b7ea62da3?arch=amd64&repository_url=registry.redhat.io/rhosdt/jaeger-es-index-cleaner-rhel8&tag=1.47.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/jaeger-es-rollover-rhel8@sha256:0b0b4bb1d943449bbfe99653eb918583b38e6e7fc9317653acf487bb33715fcf_amd64", + "product": { + "name": "rhosdt/jaeger-es-rollover-rhel8@sha256:0b0b4bb1d943449bbfe99653eb918583b38e6e7fc9317653acf487bb33715fcf_amd64", + "product_id": "rhosdt/jaeger-es-rollover-rhel8@sha256:0b0b4bb1d943449bbfe99653eb918583b38e6e7fc9317653acf487bb33715fcf_amd64", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-es-rollover-rhel8@sha256:0b0b4bb1d943449bbfe99653eb918583b38e6e7fc9317653acf487bb33715fcf?arch=amd64&repository_url=registry.redhat.io/rhosdt/jaeger-es-rollover-rhel8&tag=1.47.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/jaeger-ingester-rhel8@sha256:27b6554e746eae26692298e78d623b3b7dc6ba53330c5e398beacd8d41512732_amd64", + "product": { + "name": "rhosdt/jaeger-ingester-rhel8@sha256:27b6554e746eae26692298e78d623b3b7dc6ba53330c5e398beacd8d41512732_amd64", + "product_id": "rhosdt/jaeger-ingester-rhel8@sha256:27b6554e746eae26692298e78d623b3b7dc6ba53330c5e398beacd8d41512732_amd64", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-ingester-rhel8@sha256:27b6554e746eae26692298e78d623b3b7dc6ba53330c5e398beacd8d41512732?arch=amd64&repository_url=registry.redhat.io/rhosdt/jaeger-ingester-rhel8&tag=1.47.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/jaeger-operator-bundle@sha256:f2ebe6b3b913ae5d0df0b985d4c2a93fc0f9dd90e97cdc2d39fdbb40a92c494a_amd64", + "product": { + "name": "rhosdt/jaeger-operator-bundle@sha256:f2ebe6b3b913ae5d0df0b985d4c2a93fc0f9dd90e97cdc2d39fdbb40a92c494a_amd64", + "product_id": "rhosdt/jaeger-operator-bundle@sha256:f2ebe6b3b913ae5d0df0b985d4c2a93fc0f9dd90e97cdc2d39fdbb40a92c494a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-operator-bundle@sha256:f2ebe6b3b913ae5d0df0b985d4c2a93fc0f9dd90e97cdc2d39fdbb40a92c494a?arch=amd64&repository_url=registry.redhat.io/rhosdt/jaeger-operator-bundle&tag=1.47.1-10" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/jaeger-rhel8-operator@sha256:c3b11d9f4e98457310bd5a2a782ef02c85dabd0a97e954a5c385f648e168b9ba_amd64", + "product": { + "name": "rhosdt/jaeger-rhel8-operator@sha256:c3b11d9f4e98457310bd5a2a782ef02c85dabd0a97e954a5c385f648e168b9ba_amd64", + "product_id": "rhosdt/jaeger-rhel8-operator@sha256:c3b11d9f4e98457310bd5a2a782ef02c85dabd0a97e954a5c385f648e168b9ba_amd64", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-rhel8-operator@sha256:c3b11d9f4e98457310bd5a2a782ef02c85dabd0a97e954a5c385f648e168b9ba?arch=amd64&repository_url=registry.redhat.io/rhosdt/jaeger-rhel8-operator&tag=1.47.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/jaeger-query-rhel8@sha256:db25d6492ba18bf18fe8f63c86a9d565938da15c7c639b77d6b9285db0174094_amd64", + "product": { + "name": "rhosdt/jaeger-query-rhel8@sha256:db25d6492ba18bf18fe8f63c86a9d565938da15c7c639b77d6b9285db0174094_amd64", + "product_id": "rhosdt/jaeger-query-rhel8@sha256:db25d6492ba18bf18fe8f63c86a9d565938da15c7c639b77d6b9285db0174094_amd64", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-query-rhel8@sha256:db25d6492ba18bf18fe8f63c86a9d565938da15c7c639b77d6b9285db0174094?arch=amd64&repository_url=registry.redhat.io/rhosdt/jaeger-query-rhel8&tag=1.47.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/opentelemetry-collector-rhel8@sha256:b9f94f8023b1e904e874ff67b5829c3c0e0a44aaeda6e88f8f34fa92d5f8a62c_amd64", + "product": { + "name": "rhosdt/opentelemetry-collector-rhel8@sha256:b9f94f8023b1e904e874ff67b5829c3c0e0a44aaeda6e88f8f34fa92d5f8a62c_amd64", + "product_id": "rhosdt/opentelemetry-collector-rhel8@sha256:b9f94f8023b1e904e874ff67b5829c3c0e0a44aaeda6e88f8f34fa92d5f8a62c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/opentelemetry-collector-rhel8@sha256:b9f94f8023b1e904e874ff67b5829c3c0e0a44aaeda6e88f8f34fa92d5f8a62c?arch=amd64&repository_url=registry.redhat.io/rhosdt/opentelemetry-collector-rhel8&tag=0.81.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/opentelemetry-operator-bundle@sha256:dcfa33e5ff47f227e6a27d3babd88b02d269e96fc040eb0bc4301edd62dd404b_amd64", + "product": { + "name": "rhosdt/opentelemetry-operator-bundle@sha256:dcfa33e5ff47f227e6a27d3babd88b02d269e96fc040eb0bc4301edd62dd404b_amd64", + "product_id": "rhosdt/opentelemetry-operator-bundle@sha256:dcfa33e5ff47f227e6a27d3babd88b02d269e96fc040eb0bc4301edd62dd404b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/opentelemetry-operator-bundle@sha256:dcfa33e5ff47f227e6a27d3babd88b02d269e96fc040eb0bc4301edd62dd404b?arch=amd64&repository_url=registry.redhat.io/rhosdt/opentelemetry-operator-bundle&tag=0.81.1-8" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/opentelemetry-rhel8-operator@sha256:b5f01804dc8b8e1b0cc179dc79aff1298fe29c2239d694fedf958adee7e27ec3_amd64", + "product": { + "name": "rhosdt/opentelemetry-rhel8-operator@sha256:b5f01804dc8b8e1b0cc179dc79aff1298fe29c2239d694fedf958adee7e27ec3_amd64", + "product_id": "rhosdt/opentelemetry-rhel8-operator@sha256:b5f01804dc8b8e1b0cc179dc79aff1298fe29c2239d694fedf958adee7e27ec3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/opentelemetry-rhel8-operator@sha256:b5f01804dc8b8e1b0cc179dc79aff1298fe29c2239d694fedf958adee7e27ec3?arch=amd64&repository_url=registry.redhat.io/rhosdt/opentelemetry-rhel8-operator&tag=0.81.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/tempo-rhel8@sha256:e77206dcf8a958c662f816161d9fa942eb7cd1749aa165075805e0add74e4cfb_amd64", + "product": { + "name": "rhosdt/tempo-rhel8@sha256:e77206dcf8a958c662f816161d9fa942eb7cd1749aa165075805e0add74e4cfb_amd64", + "product_id": "rhosdt/tempo-rhel8@sha256:e77206dcf8a958c662f816161d9fa942eb7cd1749aa165075805e0add74e4cfb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/tempo-rhel8@sha256:e77206dcf8a958c662f816161d9fa942eb7cd1749aa165075805e0add74e4cfb?arch=amd64&repository_url=registry.redhat.io/rhosdt/tempo-rhel8&tag=2.1.1-9" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/tempo-gateway-rhel8@sha256:ec8e340dc736f5f1d8f0ac4f0b5d767660bbcdc96e2dbc48d8349f20c11e5c46_amd64", + "product": { + "name": "rhosdt/tempo-gateway-rhel8@sha256:ec8e340dc736f5f1d8f0ac4f0b5d767660bbcdc96e2dbc48d8349f20c11e5c46_amd64", + "product_id": "rhosdt/tempo-gateway-rhel8@sha256:ec8e340dc736f5f1d8f0ac4f0b5d767660bbcdc96e2dbc48d8349f20c11e5c46_amd64", + "product_identification_helper": { + "purl": "pkg:oci/tempo-gateway-rhel8@sha256:ec8e340dc736f5f1d8f0ac4f0b5d767660bbcdc96e2dbc48d8349f20c11e5c46?arch=amd64&repository_url=registry.redhat.io/rhosdt/tempo-gateway-rhel8&tag=742e3d3-2" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/tempo-gateway-opa-rhel8@sha256:ff6ebe99d093908235e41a3fc84a13ae4d4b647063d0a48925b5aaa0d3017724_amd64", + "product": { + "name": "rhosdt/tempo-gateway-opa-rhel8@sha256:ff6ebe99d093908235e41a3fc84a13ae4d4b647063d0a48925b5aaa0d3017724_amd64", + "product_id": "rhosdt/tempo-gateway-opa-rhel8@sha256:ff6ebe99d093908235e41a3fc84a13ae4d4b647063d0a48925b5aaa0d3017724_amd64", + "product_identification_helper": { + "purl": "pkg:oci/tempo-gateway-opa-rhel8@sha256:ff6ebe99d093908235e41a3fc84a13ae4d4b647063d0a48925b5aaa0d3017724?arch=amd64&repository_url=registry.redhat.io/rhosdt/tempo-gateway-opa-rhel8&tag=fe53f40-1" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/tempo-operator-bundle@sha256:c54b08652dfdecd90c604e144e08da7eb6908f89cf4b5fe9bcb7844d28a2a002_amd64", + "product": { + "name": "rhosdt/tempo-operator-bundle@sha256:c54b08652dfdecd90c604e144e08da7eb6908f89cf4b5fe9bcb7844d28a2a002_amd64", + "product_id": "rhosdt/tempo-operator-bundle@sha256:c54b08652dfdecd90c604e144e08da7eb6908f89cf4b5fe9bcb7844d28a2a002_amd64", + "product_identification_helper": { + "purl": "pkg:oci/tempo-operator-bundle@sha256:c54b08652dfdecd90c604e144e08da7eb6908f89cf4b5fe9bcb7844d28a2a002?arch=amd64&repository_url=registry.redhat.io/rhosdt/tempo-operator-bundle&tag=0.3.1-7" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/tempo-rhel8-operator@sha256:4d62e2ee295809b3cfd0f663892226f1c1f5cf4ccb841fb322149b1d4088f135_amd64", + "product": { + "name": "rhosdt/tempo-rhel8-operator@sha256:4d62e2ee295809b3cfd0f663892226f1c1f5cf4ccb841fb322149b1d4088f135_amd64", + "product_id": "rhosdt/tempo-rhel8-operator@sha256:4d62e2ee295809b3cfd0f663892226f1c1f5cf4ccb841fb322149b1d4088f135_amd64", + "product_identification_helper": { + "purl": "pkg:oci/tempo-rhel8-operator@sha256:4d62e2ee295809b3cfd0f663892226f1c1f5cf4ccb841fb322149b1d4088f135?arch=amd64&repository_url=registry.redhat.io/rhosdt/tempo-rhel8-operator&tag=0.3.1-2" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/tempo-query-rhel8@sha256:8c0c9b1534e1c2e4c513b8cef10df8daf9aed0e1798b563667b50c3e8554979b_amd64", + "product": { + "name": "rhosdt/tempo-query-rhel8@sha256:8c0c9b1534e1c2e4c513b8cef10df8daf9aed0e1798b563667b50c3e8554979b_amd64", + "product_id": "rhosdt/tempo-query-rhel8@sha256:8c0c9b1534e1c2e4c513b8cef10df8daf9aed0e1798b563667b50c3e8554979b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/tempo-query-rhel8@sha256:8c0c9b1534e1c2e4c513b8cef10df8daf9aed0e1798b563667b50c3e8554979b?arch=amd64&repository_url=registry.redhat.io/rhosdt/tempo-query-rhel8&tag=0.3.1-2" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rhosdt/jaeger-agent-rhel8@sha256:b57f6bbb0fd714828d0b9bf4759a04cad8ba98db394dbb79d8a5a9d2c48a8383_ppc64le", + "product": { + "name": "rhosdt/jaeger-agent-rhel8@sha256:b57f6bbb0fd714828d0b9bf4759a04cad8ba98db394dbb79d8a5a9d2c48a8383_ppc64le", + "product_id": "rhosdt/jaeger-agent-rhel8@sha256:b57f6bbb0fd714828d0b9bf4759a04cad8ba98db394dbb79d8a5a9d2c48a8383_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-agent-rhel8@sha256:b57f6bbb0fd714828d0b9bf4759a04cad8ba98db394dbb79d8a5a9d2c48a8383?arch=ppc64le&repository_url=registry.redhat.io/rhosdt/jaeger-agent-rhel8&tag=1.47.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/jaeger-all-in-one-rhel8@sha256:21de0110a12e568d4fa9a814b1f3fb79b132be34770f795c6f43922a454bba34_ppc64le", + "product": { + "name": "rhosdt/jaeger-all-in-one-rhel8@sha256:21de0110a12e568d4fa9a814b1f3fb79b132be34770f795c6f43922a454bba34_ppc64le", + "product_id": "rhosdt/jaeger-all-in-one-rhel8@sha256:21de0110a12e568d4fa9a814b1f3fb79b132be34770f795c6f43922a454bba34_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-all-in-one-rhel8@sha256:21de0110a12e568d4fa9a814b1f3fb79b132be34770f795c6f43922a454bba34?arch=ppc64le&repository_url=registry.redhat.io/rhosdt/jaeger-all-in-one-rhel8&tag=1.47.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/jaeger-collector-rhel8@sha256:20dfc6ffe41e4dceb854a2fa99cad5d6a9b48e8bfc51329fed767f47b7cb461f_ppc64le", + "product": { + "name": "rhosdt/jaeger-collector-rhel8@sha256:20dfc6ffe41e4dceb854a2fa99cad5d6a9b48e8bfc51329fed767f47b7cb461f_ppc64le", + "product_id": "rhosdt/jaeger-collector-rhel8@sha256:20dfc6ffe41e4dceb854a2fa99cad5d6a9b48e8bfc51329fed767f47b7cb461f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-collector-rhel8@sha256:20dfc6ffe41e4dceb854a2fa99cad5d6a9b48e8bfc51329fed767f47b7cb461f?arch=ppc64le&repository_url=registry.redhat.io/rhosdt/jaeger-collector-rhel8&tag=1.47.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/jaeger-es-index-cleaner-rhel8@sha256:c53876745a6ae8a8ca6ec74d22f8cae148cf4b99e45c3efdcca323b6fbb4ad0e_ppc64le", + "product": { + "name": "rhosdt/jaeger-es-index-cleaner-rhel8@sha256:c53876745a6ae8a8ca6ec74d22f8cae148cf4b99e45c3efdcca323b6fbb4ad0e_ppc64le", + "product_id": "rhosdt/jaeger-es-index-cleaner-rhel8@sha256:c53876745a6ae8a8ca6ec74d22f8cae148cf4b99e45c3efdcca323b6fbb4ad0e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-es-index-cleaner-rhel8@sha256:c53876745a6ae8a8ca6ec74d22f8cae148cf4b99e45c3efdcca323b6fbb4ad0e?arch=ppc64le&repository_url=registry.redhat.io/rhosdt/jaeger-es-index-cleaner-rhel8&tag=1.47.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/jaeger-es-rollover-rhel8@sha256:8bfdcdb4432975726865d321037b600260c4df1b3a1811d1c85523d61e91bccc_ppc64le", + "product": { + "name": "rhosdt/jaeger-es-rollover-rhel8@sha256:8bfdcdb4432975726865d321037b600260c4df1b3a1811d1c85523d61e91bccc_ppc64le", + "product_id": "rhosdt/jaeger-es-rollover-rhel8@sha256:8bfdcdb4432975726865d321037b600260c4df1b3a1811d1c85523d61e91bccc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-es-rollover-rhel8@sha256:8bfdcdb4432975726865d321037b600260c4df1b3a1811d1c85523d61e91bccc?arch=ppc64le&repository_url=registry.redhat.io/rhosdt/jaeger-es-rollover-rhel8&tag=1.47.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/jaeger-ingester-rhel8@sha256:0d7c0ff5a6c0e645856e1550bfb8acea763d013e4b706b7da972094c26d8a3ba_ppc64le", + "product": { + "name": "rhosdt/jaeger-ingester-rhel8@sha256:0d7c0ff5a6c0e645856e1550bfb8acea763d013e4b706b7da972094c26d8a3ba_ppc64le", + "product_id": "rhosdt/jaeger-ingester-rhel8@sha256:0d7c0ff5a6c0e645856e1550bfb8acea763d013e4b706b7da972094c26d8a3ba_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-ingester-rhel8@sha256:0d7c0ff5a6c0e645856e1550bfb8acea763d013e4b706b7da972094c26d8a3ba?arch=ppc64le&repository_url=registry.redhat.io/rhosdt/jaeger-ingester-rhel8&tag=1.47.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/jaeger-operator-bundle@sha256:1bbbe479ae64cb639bde227e52bb60c55a855fed9109c0ba850e2b1474c8cf5d_ppc64le", + "product": { + "name": "rhosdt/jaeger-operator-bundle@sha256:1bbbe479ae64cb639bde227e52bb60c55a855fed9109c0ba850e2b1474c8cf5d_ppc64le", + "product_id": "rhosdt/jaeger-operator-bundle@sha256:1bbbe479ae64cb639bde227e52bb60c55a855fed9109c0ba850e2b1474c8cf5d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-operator-bundle@sha256:1bbbe479ae64cb639bde227e52bb60c55a855fed9109c0ba850e2b1474c8cf5d?arch=ppc64le&repository_url=registry.redhat.io/rhosdt/jaeger-operator-bundle&tag=1.47.1-10" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/jaeger-rhel8-operator@sha256:e4722e3dbb65c43212e1f86bf5b24779879288a9044d57f2c33aed5baf1b2d33_ppc64le", + "product": { + "name": "rhosdt/jaeger-rhel8-operator@sha256:e4722e3dbb65c43212e1f86bf5b24779879288a9044d57f2c33aed5baf1b2d33_ppc64le", + "product_id": "rhosdt/jaeger-rhel8-operator@sha256:e4722e3dbb65c43212e1f86bf5b24779879288a9044d57f2c33aed5baf1b2d33_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-rhel8-operator@sha256:e4722e3dbb65c43212e1f86bf5b24779879288a9044d57f2c33aed5baf1b2d33?arch=ppc64le&repository_url=registry.redhat.io/rhosdt/jaeger-rhel8-operator&tag=1.47.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/jaeger-query-rhel8@sha256:40183936d78c62c1b34807bf21c6fa3570ab5a4c3fdcf2c708b6e2225addf88d_ppc64le", + "product": { + "name": "rhosdt/jaeger-query-rhel8@sha256:40183936d78c62c1b34807bf21c6fa3570ab5a4c3fdcf2c708b6e2225addf88d_ppc64le", + "product_id": "rhosdt/jaeger-query-rhel8@sha256:40183936d78c62c1b34807bf21c6fa3570ab5a4c3fdcf2c708b6e2225addf88d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-query-rhel8@sha256:40183936d78c62c1b34807bf21c6fa3570ab5a4c3fdcf2c708b6e2225addf88d?arch=ppc64le&repository_url=registry.redhat.io/rhosdt/jaeger-query-rhel8&tag=1.47.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/opentelemetry-collector-rhel8@sha256:97a23c3fdf791b59df6bc6e6f9311599ba2f3900aebe64ce4eaf8f77a7f76336_ppc64le", + "product": { + "name": "rhosdt/opentelemetry-collector-rhel8@sha256:97a23c3fdf791b59df6bc6e6f9311599ba2f3900aebe64ce4eaf8f77a7f76336_ppc64le", + "product_id": "rhosdt/opentelemetry-collector-rhel8@sha256:97a23c3fdf791b59df6bc6e6f9311599ba2f3900aebe64ce4eaf8f77a7f76336_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/opentelemetry-collector-rhel8@sha256:97a23c3fdf791b59df6bc6e6f9311599ba2f3900aebe64ce4eaf8f77a7f76336?arch=ppc64le&repository_url=registry.redhat.io/rhosdt/opentelemetry-collector-rhel8&tag=0.81.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/opentelemetry-operator-bundle@sha256:9de35e845d96684ca3009299dc5034742031f7632f839f877d812a243fd17f75_ppc64le", + "product": { + "name": "rhosdt/opentelemetry-operator-bundle@sha256:9de35e845d96684ca3009299dc5034742031f7632f839f877d812a243fd17f75_ppc64le", + "product_id": "rhosdt/opentelemetry-operator-bundle@sha256:9de35e845d96684ca3009299dc5034742031f7632f839f877d812a243fd17f75_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/opentelemetry-operator-bundle@sha256:9de35e845d96684ca3009299dc5034742031f7632f839f877d812a243fd17f75?arch=ppc64le&repository_url=registry.redhat.io/rhosdt/opentelemetry-operator-bundle&tag=0.81.1-8" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/opentelemetry-rhel8-operator@sha256:5a2e8e06addd84a2c83976a57b84187f8450f45244bd7174b0078d2b2d9e5635_ppc64le", + "product": { + "name": "rhosdt/opentelemetry-rhel8-operator@sha256:5a2e8e06addd84a2c83976a57b84187f8450f45244bd7174b0078d2b2d9e5635_ppc64le", + "product_id": "rhosdt/opentelemetry-rhel8-operator@sha256:5a2e8e06addd84a2c83976a57b84187f8450f45244bd7174b0078d2b2d9e5635_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/opentelemetry-rhel8-operator@sha256:5a2e8e06addd84a2c83976a57b84187f8450f45244bd7174b0078d2b2d9e5635?arch=ppc64le&repository_url=registry.redhat.io/rhosdt/opentelemetry-rhel8-operator&tag=0.81.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/tempo-rhel8@sha256:81b5694019779cea93a418e6edf684f54525dcb7da9a4090c7b886184bebe605_ppc64le", + "product": { + "name": "rhosdt/tempo-rhel8@sha256:81b5694019779cea93a418e6edf684f54525dcb7da9a4090c7b886184bebe605_ppc64le", + "product_id": "rhosdt/tempo-rhel8@sha256:81b5694019779cea93a418e6edf684f54525dcb7da9a4090c7b886184bebe605_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/tempo-rhel8@sha256:81b5694019779cea93a418e6edf684f54525dcb7da9a4090c7b886184bebe605?arch=ppc64le&repository_url=registry.redhat.io/rhosdt/tempo-rhel8&tag=2.1.1-9" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/tempo-gateway-rhel8@sha256:d5e00c9ebe3d8d4b009f1f6d7383d453ce9186e7e6ec1fc4c834b86461e831d9_ppc64le", + "product": { + "name": "rhosdt/tempo-gateway-rhel8@sha256:d5e00c9ebe3d8d4b009f1f6d7383d453ce9186e7e6ec1fc4c834b86461e831d9_ppc64le", + "product_id": "rhosdt/tempo-gateway-rhel8@sha256:d5e00c9ebe3d8d4b009f1f6d7383d453ce9186e7e6ec1fc4c834b86461e831d9_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/tempo-gateway-rhel8@sha256:d5e00c9ebe3d8d4b009f1f6d7383d453ce9186e7e6ec1fc4c834b86461e831d9?arch=ppc64le&repository_url=registry.redhat.io/rhosdt/tempo-gateway-rhel8&tag=742e3d3-2" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/tempo-gateway-opa-rhel8@sha256:f39bf591bff322ca89eddc61dc1b8ed00b018ca0aac39228c3cc33368c9928e6_ppc64le", + "product": { + "name": "rhosdt/tempo-gateway-opa-rhel8@sha256:f39bf591bff322ca89eddc61dc1b8ed00b018ca0aac39228c3cc33368c9928e6_ppc64le", + "product_id": "rhosdt/tempo-gateway-opa-rhel8@sha256:f39bf591bff322ca89eddc61dc1b8ed00b018ca0aac39228c3cc33368c9928e6_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/tempo-gateway-opa-rhel8@sha256:f39bf591bff322ca89eddc61dc1b8ed00b018ca0aac39228c3cc33368c9928e6?arch=ppc64le&repository_url=registry.redhat.io/rhosdt/tempo-gateway-opa-rhel8&tag=fe53f40-1" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/tempo-operator-bundle@sha256:10394c478c148eaf171f328289b1bbec15b357bd1d5eb473abb31c2cd6cb5643_ppc64le", + "product": { + "name": "rhosdt/tempo-operator-bundle@sha256:10394c478c148eaf171f328289b1bbec15b357bd1d5eb473abb31c2cd6cb5643_ppc64le", + "product_id": "rhosdt/tempo-operator-bundle@sha256:10394c478c148eaf171f328289b1bbec15b357bd1d5eb473abb31c2cd6cb5643_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/tempo-operator-bundle@sha256:10394c478c148eaf171f328289b1bbec15b357bd1d5eb473abb31c2cd6cb5643?arch=ppc64le&repository_url=registry.redhat.io/rhosdt/tempo-operator-bundle&tag=0.3.1-7" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/tempo-rhel8-operator@sha256:f870fcbe6367921e167ee564e04db11daeaeafce3fa970aa28d8f8239be6391f_ppc64le", + "product": { + "name": "rhosdt/tempo-rhel8-operator@sha256:f870fcbe6367921e167ee564e04db11daeaeafce3fa970aa28d8f8239be6391f_ppc64le", + "product_id": "rhosdt/tempo-rhel8-operator@sha256:f870fcbe6367921e167ee564e04db11daeaeafce3fa970aa28d8f8239be6391f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/tempo-rhel8-operator@sha256:f870fcbe6367921e167ee564e04db11daeaeafce3fa970aa28d8f8239be6391f?arch=ppc64le&repository_url=registry.redhat.io/rhosdt/tempo-rhel8-operator&tag=0.3.1-2" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/tempo-query-rhel8@sha256:b5b4d89e126c76fa960a5ac2ba4b63f0e74ab5439cac372e1e0ebe81c1315b3e_ppc64le", + "product": { + "name": "rhosdt/tempo-query-rhel8@sha256:b5b4d89e126c76fa960a5ac2ba4b63f0e74ab5439cac372e1e0ebe81c1315b3e_ppc64le", + "product_id": "rhosdt/tempo-query-rhel8@sha256:b5b4d89e126c76fa960a5ac2ba4b63f0e74ab5439cac372e1e0ebe81c1315b3e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/tempo-query-rhel8@sha256:b5b4d89e126c76fa960a5ac2ba4b63f0e74ab5439cac372e1e0ebe81c1315b3e?arch=ppc64le&repository_url=registry.redhat.io/rhosdt/tempo-query-rhel8&tag=0.3.1-2" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rhosdt/jaeger-agent-rhel8@sha256:075e5a497bd37954221774f3b0e97a86f87bf9a8564a87fa8269b2acb01a5fdf_s390x", + "product": { + "name": "rhosdt/jaeger-agent-rhel8@sha256:075e5a497bd37954221774f3b0e97a86f87bf9a8564a87fa8269b2acb01a5fdf_s390x", + "product_id": "rhosdt/jaeger-agent-rhel8@sha256:075e5a497bd37954221774f3b0e97a86f87bf9a8564a87fa8269b2acb01a5fdf_s390x", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-agent-rhel8@sha256:075e5a497bd37954221774f3b0e97a86f87bf9a8564a87fa8269b2acb01a5fdf?arch=s390x&repository_url=registry.redhat.io/rhosdt/jaeger-agent-rhel8&tag=1.47.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/jaeger-all-in-one-rhel8@sha256:3555c97e1edbc18ecc7ad756dae043a55215bcacd31e70a41c3e444a4b5bac98_s390x", + "product": { + "name": "rhosdt/jaeger-all-in-one-rhel8@sha256:3555c97e1edbc18ecc7ad756dae043a55215bcacd31e70a41c3e444a4b5bac98_s390x", + "product_id": "rhosdt/jaeger-all-in-one-rhel8@sha256:3555c97e1edbc18ecc7ad756dae043a55215bcacd31e70a41c3e444a4b5bac98_s390x", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-all-in-one-rhel8@sha256:3555c97e1edbc18ecc7ad756dae043a55215bcacd31e70a41c3e444a4b5bac98?arch=s390x&repository_url=registry.redhat.io/rhosdt/jaeger-all-in-one-rhel8&tag=1.47.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/jaeger-collector-rhel8@sha256:a3224c5e1b39ca4a33f806a5930dd37304578420f382c43158ee290fffd21533_s390x", + "product": { + "name": "rhosdt/jaeger-collector-rhel8@sha256:a3224c5e1b39ca4a33f806a5930dd37304578420f382c43158ee290fffd21533_s390x", + "product_id": "rhosdt/jaeger-collector-rhel8@sha256:a3224c5e1b39ca4a33f806a5930dd37304578420f382c43158ee290fffd21533_s390x", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-collector-rhel8@sha256:a3224c5e1b39ca4a33f806a5930dd37304578420f382c43158ee290fffd21533?arch=s390x&repository_url=registry.redhat.io/rhosdt/jaeger-collector-rhel8&tag=1.47.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/jaeger-es-index-cleaner-rhel8@sha256:6c1435712a36384a562448ec972ac39378b1e976490146cda1c98b510c76d849_s390x", + "product": { + "name": "rhosdt/jaeger-es-index-cleaner-rhel8@sha256:6c1435712a36384a562448ec972ac39378b1e976490146cda1c98b510c76d849_s390x", + "product_id": "rhosdt/jaeger-es-index-cleaner-rhel8@sha256:6c1435712a36384a562448ec972ac39378b1e976490146cda1c98b510c76d849_s390x", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-es-index-cleaner-rhel8@sha256:6c1435712a36384a562448ec972ac39378b1e976490146cda1c98b510c76d849?arch=s390x&repository_url=registry.redhat.io/rhosdt/jaeger-es-index-cleaner-rhel8&tag=1.47.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/jaeger-es-rollover-rhel8@sha256:fbce2ceb4a0c5231823c931b87726b7a6a5e5f0c87ba93abad09acb11661a675_s390x", + "product": { + "name": "rhosdt/jaeger-es-rollover-rhel8@sha256:fbce2ceb4a0c5231823c931b87726b7a6a5e5f0c87ba93abad09acb11661a675_s390x", + "product_id": "rhosdt/jaeger-es-rollover-rhel8@sha256:fbce2ceb4a0c5231823c931b87726b7a6a5e5f0c87ba93abad09acb11661a675_s390x", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-es-rollover-rhel8@sha256:fbce2ceb4a0c5231823c931b87726b7a6a5e5f0c87ba93abad09acb11661a675?arch=s390x&repository_url=registry.redhat.io/rhosdt/jaeger-es-rollover-rhel8&tag=1.47.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/jaeger-ingester-rhel8@sha256:498a6186790b5e8dc2ff8bc49f5a163a51b19ee36c5030b6ae44fd0c1dbe4139_s390x", + "product": { + "name": "rhosdt/jaeger-ingester-rhel8@sha256:498a6186790b5e8dc2ff8bc49f5a163a51b19ee36c5030b6ae44fd0c1dbe4139_s390x", + "product_id": "rhosdt/jaeger-ingester-rhel8@sha256:498a6186790b5e8dc2ff8bc49f5a163a51b19ee36c5030b6ae44fd0c1dbe4139_s390x", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-ingester-rhel8@sha256:498a6186790b5e8dc2ff8bc49f5a163a51b19ee36c5030b6ae44fd0c1dbe4139?arch=s390x&repository_url=registry.redhat.io/rhosdt/jaeger-ingester-rhel8&tag=1.47.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/jaeger-operator-bundle@sha256:1a5c829466a50a4ed1b509fa83b1ffacb5290840e64c1f805e462c533a26c075_s390x", + "product": { + "name": "rhosdt/jaeger-operator-bundle@sha256:1a5c829466a50a4ed1b509fa83b1ffacb5290840e64c1f805e462c533a26c075_s390x", + "product_id": "rhosdt/jaeger-operator-bundle@sha256:1a5c829466a50a4ed1b509fa83b1ffacb5290840e64c1f805e462c533a26c075_s390x", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-operator-bundle@sha256:1a5c829466a50a4ed1b509fa83b1ffacb5290840e64c1f805e462c533a26c075?arch=s390x&repository_url=registry.redhat.io/rhosdt/jaeger-operator-bundle&tag=1.47.1-10" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/jaeger-rhel8-operator@sha256:17b698d2b2bde4985346b6ffe28c4b0a71e0a6fec4937144aef5db4ca20f60e4_s390x", + "product": { + "name": "rhosdt/jaeger-rhel8-operator@sha256:17b698d2b2bde4985346b6ffe28c4b0a71e0a6fec4937144aef5db4ca20f60e4_s390x", + "product_id": "rhosdt/jaeger-rhel8-operator@sha256:17b698d2b2bde4985346b6ffe28c4b0a71e0a6fec4937144aef5db4ca20f60e4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-rhel8-operator@sha256:17b698d2b2bde4985346b6ffe28c4b0a71e0a6fec4937144aef5db4ca20f60e4?arch=s390x&repository_url=registry.redhat.io/rhosdt/jaeger-rhel8-operator&tag=1.47.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/jaeger-query-rhel8@sha256:ebc33a6ada6c578e6b113bdfa3e0a9570f15e75cb3e87fa99a3ec23056d58f02_s390x", + "product": { + "name": "rhosdt/jaeger-query-rhel8@sha256:ebc33a6ada6c578e6b113bdfa3e0a9570f15e75cb3e87fa99a3ec23056d58f02_s390x", + "product_id": "rhosdt/jaeger-query-rhel8@sha256:ebc33a6ada6c578e6b113bdfa3e0a9570f15e75cb3e87fa99a3ec23056d58f02_s390x", + "product_identification_helper": { + "purl": "pkg:oci/jaeger-query-rhel8@sha256:ebc33a6ada6c578e6b113bdfa3e0a9570f15e75cb3e87fa99a3ec23056d58f02?arch=s390x&repository_url=registry.redhat.io/rhosdt/jaeger-query-rhel8&tag=1.47.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/opentelemetry-collector-rhel8@sha256:d68e45ac3dd60f05aab018cba084ff93195bf9175ba642164cb062f7a4b9d71f_s390x", + "product": { + "name": "rhosdt/opentelemetry-collector-rhel8@sha256:d68e45ac3dd60f05aab018cba084ff93195bf9175ba642164cb062f7a4b9d71f_s390x", + "product_id": "rhosdt/opentelemetry-collector-rhel8@sha256:d68e45ac3dd60f05aab018cba084ff93195bf9175ba642164cb062f7a4b9d71f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/opentelemetry-collector-rhel8@sha256:d68e45ac3dd60f05aab018cba084ff93195bf9175ba642164cb062f7a4b9d71f?arch=s390x&repository_url=registry.redhat.io/rhosdt/opentelemetry-collector-rhel8&tag=0.81.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/opentelemetry-operator-bundle@sha256:9b88c187427bf315cc27690e22425000b87de35b40b04e566152eaf5319043c6_s390x", + "product": { + "name": "rhosdt/opentelemetry-operator-bundle@sha256:9b88c187427bf315cc27690e22425000b87de35b40b04e566152eaf5319043c6_s390x", + "product_id": "rhosdt/opentelemetry-operator-bundle@sha256:9b88c187427bf315cc27690e22425000b87de35b40b04e566152eaf5319043c6_s390x", + "product_identification_helper": { + "purl": "pkg:oci/opentelemetry-operator-bundle@sha256:9b88c187427bf315cc27690e22425000b87de35b40b04e566152eaf5319043c6?arch=s390x&repository_url=registry.redhat.io/rhosdt/opentelemetry-operator-bundle&tag=0.81.1-8" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/opentelemetry-rhel8-operator@sha256:c940703247b04c520a51bf76f09a29eaa2e30d4e4d40db14f07e0ceba89eefbd_s390x", + "product": { + "name": "rhosdt/opentelemetry-rhel8-operator@sha256:c940703247b04c520a51bf76f09a29eaa2e30d4e4d40db14f07e0ceba89eefbd_s390x", + "product_id": "rhosdt/opentelemetry-rhel8-operator@sha256:c940703247b04c520a51bf76f09a29eaa2e30d4e4d40db14f07e0ceba89eefbd_s390x", + "product_identification_helper": { + "purl": "pkg:oci/opentelemetry-rhel8-operator@sha256:c940703247b04c520a51bf76f09a29eaa2e30d4e4d40db14f07e0ceba89eefbd?arch=s390x&repository_url=registry.redhat.io/rhosdt/opentelemetry-rhel8-operator&tag=0.81.1-3" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/tempo-rhel8@sha256:efb15ac8f44d2ddcc0ac0913131df69f31ebd4aad76c503364b5efb517eabf40_s390x", + "product": { + "name": "rhosdt/tempo-rhel8@sha256:efb15ac8f44d2ddcc0ac0913131df69f31ebd4aad76c503364b5efb517eabf40_s390x", + "product_id": "rhosdt/tempo-rhel8@sha256:efb15ac8f44d2ddcc0ac0913131df69f31ebd4aad76c503364b5efb517eabf40_s390x", + "product_identification_helper": { + "purl": "pkg:oci/tempo-rhel8@sha256:efb15ac8f44d2ddcc0ac0913131df69f31ebd4aad76c503364b5efb517eabf40?arch=s390x&repository_url=registry.redhat.io/rhosdt/tempo-rhel8&tag=2.1.1-9" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/tempo-gateway-rhel8@sha256:4967482a0ef9ef89de4583d7ec9f6666e2334dacb099d5cb556f93f1118f5809_s390x", + "product": { + "name": "rhosdt/tempo-gateway-rhel8@sha256:4967482a0ef9ef89de4583d7ec9f6666e2334dacb099d5cb556f93f1118f5809_s390x", + "product_id": "rhosdt/tempo-gateway-rhel8@sha256:4967482a0ef9ef89de4583d7ec9f6666e2334dacb099d5cb556f93f1118f5809_s390x", + "product_identification_helper": { + "purl": "pkg:oci/tempo-gateway-rhel8@sha256:4967482a0ef9ef89de4583d7ec9f6666e2334dacb099d5cb556f93f1118f5809?arch=s390x&repository_url=registry.redhat.io/rhosdt/tempo-gateway-rhel8&tag=742e3d3-2" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/tempo-gateway-opa-rhel8@sha256:fc8a5757270970c2bcd42f659bdde3d9edebd0054cbd01541479c9aa51135cc8_s390x", + "product": { + "name": "rhosdt/tempo-gateway-opa-rhel8@sha256:fc8a5757270970c2bcd42f659bdde3d9edebd0054cbd01541479c9aa51135cc8_s390x", + "product_id": "rhosdt/tempo-gateway-opa-rhel8@sha256:fc8a5757270970c2bcd42f659bdde3d9edebd0054cbd01541479c9aa51135cc8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/tempo-gateway-opa-rhel8@sha256:fc8a5757270970c2bcd42f659bdde3d9edebd0054cbd01541479c9aa51135cc8?arch=s390x&repository_url=registry.redhat.io/rhosdt/tempo-gateway-opa-rhel8&tag=fe53f40-1" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/tempo-operator-bundle@sha256:4fb7b99e4156f1c0e67708527ba6336fab647a717e6cad08dac93d191e820c70_s390x", + "product": { + "name": "rhosdt/tempo-operator-bundle@sha256:4fb7b99e4156f1c0e67708527ba6336fab647a717e6cad08dac93d191e820c70_s390x", + "product_id": "rhosdt/tempo-operator-bundle@sha256:4fb7b99e4156f1c0e67708527ba6336fab647a717e6cad08dac93d191e820c70_s390x", + "product_identification_helper": { + "purl": "pkg:oci/tempo-operator-bundle@sha256:4fb7b99e4156f1c0e67708527ba6336fab647a717e6cad08dac93d191e820c70?arch=s390x&repository_url=registry.redhat.io/rhosdt/tempo-operator-bundle&tag=0.3.1-7" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/tempo-rhel8-operator@sha256:946413dd5505c92b1eb0c3343fedf7c99ed104cd51933b8ad0dad92c9d85e1f1_s390x", + "product": { + "name": "rhosdt/tempo-rhel8-operator@sha256:946413dd5505c92b1eb0c3343fedf7c99ed104cd51933b8ad0dad92c9d85e1f1_s390x", + "product_id": "rhosdt/tempo-rhel8-operator@sha256:946413dd5505c92b1eb0c3343fedf7c99ed104cd51933b8ad0dad92c9d85e1f1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/tempo-rhel8-operator@sha256:946413dd5505c92b1eb0c3343fedf7c99ed104cd51933b8ad0dad92c9d85e1f1?arch=s390x&repository_url=registry.redhat.io/rhosdt/tempo-rhel8-operator&tag=0.3.1-2" + } + } + }, + { + "category": "product_version", + "name": "rhosdt/tempo-query-rhel8@sha256:307638d85cab7d8502cd6acd45d626a6e26a3c37ab3fb008946e80eee2e4a372_s390x", + "product": { + "name": "rhosdt/tempo-query-rhel8@sha256:307638d85cab7d8502cd6acd45d626a6e26a3c37ab3fb008946e80eee2e4a372_s390x", + "product_id": "rhosdt/tempo-query-rhel8@sha256:307638d85cab7d8502cd6acd45d626a6e26a3c37ab3fb008946e80eee2e4a372_s390x", + "product_identification_helper": { + "purl": "pkg:oci/tempo-query-rhel8@sha256:307638d85cab7d8502cd6acd45d626a6e26a3c37ab3fb008946e80eee2e4a372?arch=s390x&repository_url=registry.redhat.io/rhosdt/tempo-query-rhel8&tag=0.3.1-2" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:f8fa778d169160543339202f870232b6b00a1d01347f4041565cae9acc910ea9_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:f8fa778d169160543339202f870232b6b00a1d01347f4041565cae9acc910ea9_s390x", + "product_id": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:f8fa778d169160543339202f870232b6b00a1d01347f4041565cae9acc910ea9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-central-db-rhel8@sha256:f8fa778d169160543339202f870232b6b00a1d01347f4041565cae9acc910ea9?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8&tag=3.74.7-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:6246642e8ac76535613ae5758a0cbc1e408440de2ea2f8cc208c96d7266aac22_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:6246642e8ac76535613ae5758a0cbc1e408440de2ea2f8cc208c96d7266aac22_s390x", + "product_id": "advanced-cluster-security/rhacs-collector-rhel8@sha256:6246642e8ac76535613ae5758a0cbc1e408440de2ea2f8cc208c96d7266aac22_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-collector-rhel8@sha256:6246642e8ac76535613ae5758a0cbc1e408440de2ea2f8cc208c96d7266aac22?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8&tag=3.74.7-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:927d84e4c8b52de401106d5aa10605eee94ce911a9d8e81e0c41d3b8beb7c63a_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:927d84e4c8b52de401106d5aa10605eee94ce911a9d8e81e0c41d3b8beb7c63a_s390x", + "product_id": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:927d84e4c8b52de401106d5aa10605eee94ce911a9d8e81e0c41d3b8beb7c63a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-collector-slim-rhel8@sha256:927d84e4c8b52de401106d5aa10605eee94ce911a9d8e81e0c41d3b8beb7c63a?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-collector-slim-rhel8&tag=3.74.7-2" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:95265ddc882b2548ed35ae247b283d0f25dce30a3904717396fe17c701d4eb81_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:95265ddc882b2548ed35ae247b283d0f25dce30a3904717396fe17c701d4eb81_s390x", + "product_id": "advanced-cluster-security/rhacs-main-rhel8@sha256:95265ddc882b2548ed35ae247b283d0f25dce30a3904717396fe17c701d4eb81_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-main-rhel8@sha256:95265ddc882b2548ed35ae247b283d0f25dce30a3904717396fe17c701d4eb81?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8&tag=3.74.7-5" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:b8aa66884d5fdfc0383d7a6fdf34418b2c55a00f441fa41a374ca405d7b3f068_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:b8aa66884d5fdfc0383d7a6fdf34418b2c55a00f441fa41a374ca405d7b3f068_s390x", + "product_id": "advanced-cluster-security/rhacs-operator-bundle@sha256:b8aa66884d5fdfc0383d7a6fdf34418b2c55a00f441fa41a374ca405d7b3f068_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-operator-bundle@sha256:b8aa66884d5fdfc0383d7a6fdf34418b2c55a00f441fa41a374ca405d7b3f068?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle&tag=3.74.7-4" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:2adb884147e473b17086eb7cd5462fdd4ab18e6bdc81cd81940001be4a5b67c7_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:2adb884147e473b17086eb7cd5462fdd4ab18e6bdc81cd81940001be4a5b67c7_s390x", + "product_id": "advanced-cluster-security/rhacs-rhel8-operator@sha256:2adb884147e473b17086eb7cd5462fdd4ab18e6bdc81cd81940001be4a5b67c7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-rhel8-operator@sha256:2adb884147e473b17086eb7cd5462fdd4ab18e6bdc81cd81940001be4a5b67c7?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator&tag=3.74.7-2" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:ce71c4526b7cd5d2bebf771b38e6ac61a12c5dabe3d0f9963e27245944f9e6db_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:ce71c4526b7cd5d2bebf771b38e6ac61a12c5dabe3d0f9963e27245944f9e6db_s390x", + "product_id": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:ce71c4526b7cd5d2bebf771b38e6ac61a12c5dabe3d0f9963e27245944f9e6db_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-roxctl-rhel8@sha256:ce71c4526b7cd5d2bebf771b38e6ac61a12c5dabe3d0f9963e27245944f9e6db?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8&tag=3.74.7-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:8e8acf87581468fd98a97fe28438ea0146b3d8c2b12a322f5c63bf11b4588d81_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:8e8acf87581468fd98a97fe28438ea0146b3d8c2b12a322f5c63bf11b4588d81_s390x", + "product_id": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:8e8acf87581468fd98a97fe28438ea0146b3d8c2b12a322f5c63bf11b4588d81_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-rhel8@sha256:8e8acf87581468fd98a97fe28438ea0146b3d8c2b12a322f5c63bf11b4588d81?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8&tag=3.74.7-2" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ad7c57277851a741e0bc2536f564e86b59be8377366f4b1b7ea79aaa662dc6fa_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ad7c57277851a741e0bc2536f564e86b59be8377366f4b1b7ea79aaa662dc6fa_s390x", + "product_id": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ad7c57277851a741e0bc2536f564e86b59be8377366f4b1b7ea79aaa662dc6fa_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256:ad7c57277851a741e0bc2536f564e86b59be8377366f4b1b7ea79aaa662dc6fa?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8&tag=3.74.7-2" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b0d4ba54ba1e9bf8afe640c9c5b2c5eed807c22423a75e39702c033e41c93229_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b0d4ba54ba1e9bf8afe640c9c5b2c5eed807c22423a75e39702c033e41c93229_s390x", + "product_id": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b0d4ba54ba1e9bf8afe640c9c5b2c5eed807c22423a75e39702c033e41c93229_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256:b0d4ba54ba1e9bf8afe640c9c5b2c5eed807c22423a75e39702c033e41c93229?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8&tag=3.74.7-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:358e601cd9e79a86df7bc735fc593a707ad4fc4e14ed8f39131297a26fb282c3_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:358e601cd9e79a86df7bc735fc593a707ad4fc4e14ed8f39131297a26fb282c3_s390x", + "product_id": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:358e601cd9e79a86df7bc735fc593a707ad4fc4e14ed8f39131297a26fb282c3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256:358e601cd9e79a86df7bc735fc593a707ad4fc4e14ed8f39131297a26fb282c3?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8&tag=3.74.7-2" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:c4915dcdfd96742aa5ba9ca38d0de9938ce9c85f6fffa867c35427829ee7462f_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:c4915dcdfd96742aa5ba9ca38d0de9938ce9c85f6fffa867c35427829ee7462f_amd64", + "product_id": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:c4915dcdfd96742aa5ba9ca38d0de9938ce9c85f6fffa867c35427829ee7462f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-central-db-rhel8@sha256:c4915dcdfd96742aa5ba9ca38d0de9938ce9c85f6fffa867c35427829ee7462f?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8&tag=3.74.7-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:623ece01f5d7af6844848879985ca0a9a50473cf3e3bb6f4923280948d9ff896_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:623ece01f5d7af6844848879985ca0a9a50473cf3e3bb6f4923280948d9ff896_amd64", + "product_id": "advanced-cluster-security/rhacs-collector-rhel8@sha256:623ece01f5d7af6844848879985ca0a9a50473cf3e3bb6f4923280948d9ff896_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-collector-rhel8@sha256:623ece01f5d7af6844848879985ca0a9a50473cf3e3bb6f4923280948d9ff896?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8&tag=3.74.7-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:e5bba2853add1a8dee9cd34a542b4baf82a50091a917c83b74ade4298528bd3e_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:e5bba2853add1a8dee9cd34a542b4baf82a50091a917c83b74ade4298528bd3e_amd64", + "product_id": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:e5bba2853add1a8dee9cd34a542b4baf82a50091a917c83b74ade4298528bd3e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-collector-slim-rhel8@sha256:e5bba2853add1a8dee9cd34a542b4baf82a50091a917c83b74ade4298528bd3e?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-collector-slim-rhel8&tag=3.74.7-2" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:729e49fb7cfe2bd21541b1e82ccbb77197285aa90486b0c1685379484a956dd9_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:729e49fb7cfe2bd21541b1e82ccbb77197285aa90486b0c1685379484a956dd9_amd64", + "product_id": "advanced-cluster-security/rhacs-main-rhel8@sha256:729e49fb7cfe2bd21541b1e82ccbb77197285aa90486b0c1685379484a956dd9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-main-rhel8@sha256:729e49fb7cfe2bd21541b1e82ccbb77197285aa90486b0c1685379484a956dd9?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8&tag=3.74.7-5" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:55bea5ed24d5fda12c5a6ac34a908da2c471937fb2c934df1188b806ab56d96e_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:55bea5ed24d5fda12c5a6ac34a908da2c471937fb2c934df1188b806ab56d96e_amd64", + "product_id": "advanced-cluster-security/rhacs-operator-bundle@sha256:55bea5ed24d5fda12c5a6ac34a908da2c471937fb2c934df1188b806ab56d96e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-operator-bundle@sha256:55bea5ed24d5fda12c5a6ac34a908da2c471937fb2c934df1188b806ab56d96e?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle&tag=3.74.7-4" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:373275fba75136a5735ce6a98b94f6b44fc6122d278fdc347f8a8c4740ebcf33_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:373275fba75136a5735ce6a98b94f6b44fc6122d278fdc347f8a8c4740ebcf33_amd64", + "product_id": "advanced-cluster-security/rhacs-rhel8-operator@sha256:373275fba75136a5735ce6a98b94f6b44fc6122d278fdc347f8a8c4740ebcf33_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-rhel8-operator@sha256:373275fba75136a5735ce6a98b94f6b44fc6122d278fdc347f8a8c4740ebcf33?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator&tag=3.74.7-2" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:ad2b63ce031af12d8c31eb40652e324ea9cc5891624c4e1683c00d2948825c0f_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:ad2b63ce031af12d8c31eb40652e324ea9cc5891624c4e1683c00d2948825c0f_amd64", + "product_id": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:ad2b63ce031af12d8c31eb40652e324ea9cc5891624c4e1683c00d2948825c0f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-roxctl-rhel8@sha256:ad2b63ce031af12d8c31eb40652e324ea9cc5891624c4e1683c00d2948825c0f?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8&tag=3.74.7-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:2468f097410bad3de5799b9d46801a04b4580a53d05498dcae37edf73c157826_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:2468f097410bad3de5799b9d46801a04b4580a53d05498dcae37edf73c157826_amd64", + "product_id": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:2468f097410bad3de5799b9d46801a04b4580a53d05498dcae37edf73c157826_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-rhel8@sha256:2468f097410bad3de5799b9d46801a04b4580a53d05498dcae37edf73c157826?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8&tag=3.74.7-2" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b565441374903dafa3ee00f015cabdf3c16b282d143fb1c9c91dcd126697d71d_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b565441374903dafa3ee00f015cabdf3c16b282d143fb1c9c91dcd126697d71d_amd64", + "product_id": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b565441374903dafa3ee00f015cabdf3c16b282d143fb1c9c91dcd126697d71d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256:b565441374903dafa3ee00f015cabdf3c16b282d143fb1c9c91dcd126697d71d?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8&tag=3.74.7-2" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:172711e18b4289efdda02b662beeaa6941f7b41a533410871c9505b76f6a4481_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:172711e18b4289efdda02b662beeaa6941f7b41a533410871c9505b76f6a4481_amd64", + "product_id": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:172711e18b4289efdda02b662beeaa6941f7b41a533410871c9505b76f6a4481_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256:172711e18b4289efdda02b662beeaa6941f7b41a533410871c9505b76f6a4481?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8&tag=3.74.7-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2a7393086842c64287c32d7cc99ba498c53ec164b3309df59277fb1bef6bbbad_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2a7393086842c64287c32d7cc99ba498c53ec164b3309df59277fb1bef6bbbad_amd64", + "product_id": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2a7393086842c64287c32d7cc99ba498c53ec164b3309df59277fb1bef6bbbad_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256:2a7393086842c64287c32d7cc99ba498c53ec164b3309df59277fb1bef6bbbad?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8&tag=3.74.7-2" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:4953938e00bf4114fa18e0520ccf20611686da2372615187e5c4f2fdfbb01e06_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:4953938e00bf4114fa18e0520ccf20611686da2372615187e5c4f2fdfbb01e06_ppc64le", + "product_id": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:4953938e00bf4114fa18e0520ccf20611686da2372615187e5c4f2fdfbb01e06_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-central-db-rhel8@sha256:4953938e00bf4114fa18e0520ccf20611686da2372615187e5c4f2fdfbb01e06?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8&tag=3.74.7-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:0ae622d315c3f3b23d76b7bc864c8b3d45d53db76a1fcc46d77be0c126bb93ea_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:0ae622d315c3f3b23d76b7bc864c8b3d45d53db76a1fcc46d77be0c126bb93ea_ppc64le", + "product_id": "advanced-cluster-security/rhacs-collector-rhel8@sha256:0ae622d315c3f3b23d76b7bc864c8b3d45d53db76a1fcc46d77be0c126bb93ea_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-collector-rhel8@sha256:0ae622d315c3f3b23d76b7bc864c8b3d45d53db76a1fcc46d77be0c126bb93ea?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8&tag=3.74.7-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:8c32a894305bb7fc0ac7ed37872a8dbb09f50c387bd7eb9c955c6cd11c9cf4fe_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:8c32a894305bb7fc0ac7ed37872a8dbb09f50c387bd7eb9c955c6cd11c9cf4fe_ppc64le", + "product_id": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:8c32a894305bb7fc0ac7ed37872a8dbb09f50c387bd7eb9c955c6cd11c9cf4fe_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-collector-slim-rhel8@sha256:8c32a894305bb7fc0ac7ed37872a8dbb09f50c387bd7eb9c955c6cd11c9cf4fe?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-collector-slim-rhel8&tag=3.74.7-2" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:0a7f042c6158dbc550e5f32ecbf5829ed925d2c9fdf30c1705ff4c3ce4bce077_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:0a7f042c6158dbc550e5f32ecbf5829ed925d2c9fdf30c1705ff4c3ce4bce077_ppc64le", + "product_id": "advanced-cluster-security/rhacs-main-rhel8@sha256:0a7f042c6158dbc550e5f32ecbf5829ed925d2c9fdf30c1705ff4c3ce4bce077_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-main-rhel8@sha256:0a7f042c6158dbc550e5f32ecbf5829ed925d2c9fdf30c1705ff4c3ce4bce077?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8&tag=3.74.7-5" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:42a9acbb0b0a6db326b51044c7e9c99f7a89b5861ac706eab1595b34146b77c4_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:42a9acbb0b0a6db326b51044c7e9c99f7a89b5861ac706eab1595b34146b77c4_ppc64le", + "product_id": "advanced-cluster-security/rhacs-operator-bundle@sha256:42a9acbb0b0a6db326b51044c7e9c99f7a89b5861ac706eab1595b34146b77c4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-operator-bundle@sha256:42a9acbb0b0a6db326b51044c7e9c99f7a89b5861ac706eab1595b34146b77c4?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle&tag=3.74.7-4" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:8dd2654d1e078941de8b8cbd1d9aa3348ff8893c35edb5c513116129eae74207_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:8dd2654d1e078941de8b8cbd1d9aa3348ff8893c35edb5c513116129eae74207_ppc64le", + "product_id": "advanced-cluster-security/rhacs-rhel8-operator@sha256:8dd2654d1e078941de8b8cbd1d9aa3348ff8893c35edb5c513116129eae74207_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-rhel8-operator@sha256:8dd2654d1e078941de8b8cbd1d9aa3348ff8893c35edb5c513116129eae74207?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator&tag=3.74.7-2" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:060f753e5e57904fd0b3cea1f47f5a45a300ba40c3de448dce04fc4857200127_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:060f753e5e57904fd0b3cea1f47f5a45a300ba40c3de448dce04fc4857200127_ppc64le", + "product_id": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:060f753e5e57904fd0b3cea1f47f5a45a300ba40c3de448dce04fc4857200127_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-roxctl-rhel8@sha256:060f753e5e57904fd0b3cea1f47f5a45a300ba40c3de448dce04fc4857200127?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8&tag=3.74.7-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:f2ebd7e0fba97e74519ce5e05c1a5205e5a76d72ae88e8c83d4722f1f8c8950b_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:f2ebd7e0fba97e74519ce5e05c1a5205e5a76d72ae88e8c83d4722f1f8c8950b_ppc64le", + "product_id": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:f2ebd7e0fba97e74519ce5e05c1a5205e5a76d72ae88e8c83d4722f1f8c8950b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-rhel8@sha256:f2ebd7e0fba97e74519ce5e05c1a5205e5a76d72ae88e8c83d4722f1f8c8950b?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8&tag=3.74.7-2" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:83e47a2dc1741bb81aa566f2b310ef0bd47a43792bcca823cdb8ee293c3c3e82_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:83e47a2dc1741bb81aa566f2b310ef0bd47a43792bcca823cdb8ee293c3c3e82_ppc64le", + "product_id": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:83e47a2dc1741bb81aa566f2b310ef0bd47a43792bcca823cdb8ee293c3c3e82_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256:83e47a2dc1741bb81aa566f2b310ef0bd47a43792bcca823cdb8ee293c3c3e82?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8&tag=3.74.7-2" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7c15e7d6064a4f45e6aabb8ff309bd0244ff789ee392815d85f2321a90917929_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7c15e7d6064a4f45e6aabb8ff309bd0244ff789ee392815d85f2321a90917929_ppc64le", + "product_id": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7c15e7d6064a4f45e6aabb8ff309bd0244ff789ee392815d85f2321a90917929_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256:7c15e7d6064a4f45e6aabb8ff309bd0244ff789ee392815d85f2321a90917929?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8&tag=3.74.7-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:668c8f074fd4b5ee1cd55f3f4b139965b570b0344e8e3b248cc0fecc14a7e4a6_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:668c8f074fd4b5ee1cd55f3f4b139965b570b0344e8e3b248cc0fecc14a7e4a6_ppc64le", + "product_id": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:668c8f074fd4b5ee1cd55f3f4b139965b570b0344e8e3b248cc0fecc14a7e4a6_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256:668c8f074fd4b5ee1cd55f3f4b139965b570b0344e8e3b248cc0fecc14a7e4a6?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8&tag=3.74.7-2" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:ed66413a6035be14731ce10bde6f91023bde67e0861edf8f536c13e2101bf50a_arm64", + "product": { + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:ed66413a6035be14731ce10bde6f91023bde67e0861edf8f536c13e2101bf50a_arm64", + "product_id": "openshift-logging/cluster-logging-rhel8-operator@sha256:ed66413a6035be14731ce10bde6f91023bde67e0861edf8f536c13e2101bf50a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-logging-rhel8-operator@sha256:ed66413a6035be14731ce10bde6f91023bde67e0861edf8f536c13e2101bf50a?arch=arm64&repository_url=registry.redhat.io/openshift-logging/cluster-logging-rhel8-operator&tag=v5.5.17-14" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:5ebb73023691a43b9bfc53543d87fc143ec11bbb25d5035bd5cb29e9526203b1_arm64", + "product": { + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:5ebb73023691a43b9bfc53543d87fc143ec11bbb25d5035bd5cb29e9526203b1_arm64", + "product_id": "openshift-logging/elasticsearch-rhel8-operator@sha256:5ebb73023691a43b9bfc53543d87fc143ec11bbb25d5035bd5cb29e9526203b1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-rhel8-operator@sha256:5ebb73023691a43b9bfc53543d87fc143ec11bbb25d5035bd5cb29e9526203b1?arch=arm64&repository_url=registry.redhat.io/openshift-logging/elasticsearch-rhel8-operator&tag=v5.5.17-12" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:97af66b3e1fb61379c42d1e9f456f1e831595dd22f62dc70be2da10c8ea9d780_arm64", + "product": { + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:97af66b3e1fb61379c42d1e9f456f1e831595dd22f62dc70be2da10c8ea9d780_arm64", + "product_id": "openshift-logging/elasticsearch-proxy-rhel8@sha256:97af66b3e1fb61379c42d1e9f456f1e831595dd22f62dc70be2da10c8ea9d780_arm64", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-proxy-rhel8@sha256:97af66b3e1fb61379c42d1e9f456f1e831595dd22f62dc70be2da10c8ea9d780?arch=arm64&repository_url=registry.redhat.io/openshift-logging/elasticsearch-proxy-rhel8&tag=v1.0.0-442" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:cc37a55b298253f983fb7b31d9194eac06343ef694ee5979e9f43147ad0218a8_arm64", + "product": { + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:cc37a55b298253f983fb7b31d9194eac06343ef694ee5979e9f43147ad0218a8_arm64", + "product_id": "openshift-logging/log-file-metric-exporter-rhel8@sha256:cc37a55b298253f983fb7b31d9194eac06343ef694ee5979e9f43147ad0218a8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/log-file-metric-exporter-rhel8@sha256:cc37a55b298253f983fb7b31d9194eac06343ef694ee5979e9f43147ad0218a8?arch=arm64&repository_url=registry.redhat.io/openshift-logging/log-file-metric-exporter-rhel8&tag=v1.1.0-178" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-curator5-rhel8@sha256:635a7982ecaae89e40fd87f01c83f26e0fb32cf402593b49070ee9d033f66000_arm64", + "product": { + "name": "openshift-logging/logging-curator5-rhel8@sha256:635a7982ecaae89e40fd87f01c83f26e0fb32cf402593b49070ee9d033f66000_arm64", + "product_id": "openshift-logging/logging-curator5-rhel8@sha256:635a7982ecaae89e40fd87f01c83f26e0fb32cf402593b49070ee9d033f66000_arm64", + "product_identification_helper": { + "purl": "pkg:oci/logging-curator5-rhel8@sha256:635a7982ecaae89e40fd87f01c83f26e0fb32cf402593b49070ee9d033f66000?arch=arm64&repository_url=registry.redhat.io/openshift-logging/logging-curator5-rhel8&tag=v5.8.1-430" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch6-rhel8@sha256:8d0f3aa1db3f32885b1fa19a098b8aa225068df07e02a284639b732959febd84_arm64", + "product": { + "name": "openshift-logging/elasticsearch6-rhel8@sha256:8d0f3aa1db3f32885b1fa19a098b8aa225068df07e02a284639b732959febd84_arm64", + "product_id": "openshift-logging/elasticsearch6-rhel8@sha256:8d0f3aa1db3f32885b1fa19a098b8aa225068df07e02a284639b732959febd84_arm64", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch6-rhel8@sha256:8d0f3aa1db3f32885b1fa19a098b8aa225068df07e02a284639b732959febd84?arch=arm64&repository_url=registry.redhat.io/openshift-logging/elasticsearch6-rhel8&tag=v6.8.1-373" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/eventrouter-rhel8@sha256:7f785fc49c70917f744c2b36ba80d4cf8171823c5da9071da081955cae410859_arm64", + "product": { + "name": "openshift-logging/eventrouter-rhel8@sha256:7f785fc49c70917f744c2b36ba80d4cf8171823c5da9071da081955cae410859_arm64", + "product_id": "openshift-logging/eventrouter-rhel8@sha256:7f785fc49c70917f744c2b36ba80d4cf8171823c5da9071da081955cae410859_arm64", + "product_identification_helper": { + "purl": "pkg:oci/eventrouter-rhel8@sha256:7f785fc49c70917f744c2b36ba80d4cf8171823c5da9071da081955cae410859?arch=arm64&repository_url=registry.redhat.io/openshift-logging/eventrouter-rhel8&tag=v0.4.0-192" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/fluentd-rhel8@sha256:bb9d2ce71e2a9cdc09f7eacd5010d23412b68acedb5b828bd9b2a7e07c836137_arm64", + "product": { + "name": "openshift-logging/fluentd-rhel8@sha256:bb9d2ce71e2a9cdc09f7eacd5010d23412b68acedb5b828bd9b2a7e07c836137_arm64", + "product_id": "openshift-logging/fluentd-rhel8@sha256:bb9d2ce71e2a9cdc09f7eacd5010d23412b68acedb5b828bd9b2a7e07c836137_arm64", + "product_identification_helper": { + "purl": "pkg:oci/fluentd-rhel8@sha256:bb9d2ce71e2a9cdc09f7eacd5010d23412b68acedb5b828bd9b2a7e07c836137?arch=arm64&repository_url=registry.redhat.io/openshift-logging/fluentd-rhel8&tag=v1.14.6-194" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/kibana6-rhel8@sha256:99f9d95df943139be1b55c242c7ecc68c8b59aa6003cb91a1b94c73d9b7d8a6c_arm64", + "product": { + "name": "openshift-logging/kibana6-rhel8@sha256:99f9d95df943139be1b55c242c7ecc68c8b59aa6003cb91a1b94c73d9b7d8a6c_arm64", + "product_id": "openshift-logging/kibana6-rhel8@sha256:99f9d95df943139be1b55c242c7ecc68c8b59aa6003cb91a1b94c73d9b7d8a6c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kibana6-rhel8@sha256:99f9d95df943139be1b55c242c7ecc68c8b59aa6003cb91a1b94c73d9b7d8a6c?arch=arm64&repository_url=registry.redhat.io/openshift-logging/kibana6-rhel8&tag=v6.8.1-401" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-loki-rhel8@sha256:f7b33ceb2433364c87f6f035a38c467e54814c3973873bd3d6dfdf9b99d2d278_arm64", + "product": { + "name": "openshift-logging/logging-loki-rhel8@sha256:f7b33ceb2433364c87f6f035a38c467e54814c3973873bd3d6dfdf9b99d2d278_arm64", + "product_id": "openshift-logging/logging-loki-rhel8@sha256:f7b33ceb2433364c87f6f035a38c467e54814c3973873bd3d6dfdf9b99d2d278_arm64", + "product_identification_helper": { + "purl": "pkg:oci/logging-loki-rhel8@sha256:f7b33ceb2433364c87f6f035a38c467e54814c3973873bd3d6dfdf9b99d2d278?arch=arm64&repository_url=registry.redhat.io/openshift-logging/logging-loki-rhel8&tag=v2.6.1-50" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/vector-rhel8@sha256:92b2a15e7f6365b4b7d4b5cb404e4829fa9629f8bfdedc7749bdf3d7369fc4be_arm64", + "product": { + "name": "openshift-logging/vector-rhel8@sha256:92b2a15e7f6365b4b7d4b5cb404e4829fa9629f8bfdedc7749bdf3d7369fc4be_arm64", + "product_id": "openshift-logging/vector-rhel8@sha256:92b2a15e7f6365b4b7d4b5cb404e4829fa9629f8bfdedc7749bdf3d7369fc4be_arm64", + "product_identification_helper": { + "purl": "pkg:oci/vector-rhel8@sha256:92b2a15e7f6365b4b7d4b5cb404e4829fa9629f8bfdedc7749bdf3d7369fc4be?arch=arm64&repository_url=registry.redhat.io/openshift-logging/vector-rhel8&tag=v0.21.0-115" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:b244e373e4b53141efddc052e27950a43ee79b200b856998d0c50110d2028afb_arm64", + "product": { + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:b244e373e4b53141efddc052e27950a43ee79b200b856998d0c50110d2028afb_arm64", + "product_id": "openshift-logging/logging-view-plugin-rhel8@sha256:b244e373e4b53141efddc052e27950a43ee79b200b856998d0c50110d2028afb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/logging-view-plugin-rhel8@sha256:b244e373e4b53141efddc052e27950a43ee79b200b856998d0c50110d2028afb?arch=arm64&repository_url=registry.redhat.io/openshift-logging/logging-view-plugin-rhel8&tag=v5.5.17-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/loki-rhel8-operator@sha256:e89ce451ee5d47db366f488578cff0c67a0a7db099eeb08f0f53b0ab2926279e_arm64", + "product": { + "name": "openshift-logging/loki-rhel8-operator@sha256:e89ce451ee5d47db366f488578cff0c67a0a7db099eeb08f0f53b0ab2926279e_arm64", + "product_id": "openshift-logging/loki-rhel8-operator@sha256:e89ce451ee5d47db366f488578cff0c67a0a7db099eeb08f0f53b0ab2926279e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/loki-rhel8-operator@sha256:e89ce451ee5d47db366f488578cff0c67a0a7db099eeb08f0f53b0ab2926279e?arch=arm64&repository_url=registry.redhat.io/openshift-logging/loki-rhel8-operator&tag=v5.5.17-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:c0c815822696f7944662720a07e238d23c86f2d788aef93857bd04952a341d8d_arm64", + "product": { + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:c0c815822696f7944662720a07e238d23c86f2d788aef93857bd04952a341d8d_arm64", + "product_id": "openshift-logging/lokistack-gateway-rhel8@sha256:c0c815822696f7944662720a07e238d23c86f2d788aef93857bd04952a341d8d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/lokistack-gateway-rhel8@sha256:c0c815822696f7944662720a07e238d23c86f2d788aef93857bd04952a341d8d?arch=arm64&repository_url=registry.redhat.io/openshift-logging/lokistack-gateway-rhel8&tag=v0.1.0-361" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/opa-openshift-rhel8@sha256:196af50627ca6537d5511ebc89f0b7b4c57d1b67af921e84269bc71355b53c70_arm64", + "product": { + "name": "openshift-logging/opa-openshift-rhel8@sha256:196af50627ca6537d5511ebc89f0b7b4c57d1b67af921e84269bc71355b53c70_arm64", + "product_id": "openshift-logging/opa-openshift-rhel8@sha256:196af50627ca6537d5511ebc89f0b7b4c57d1b67af921e84269bc71355b53c70_arm64", + "product_identification_helper": { + "purl": "pkg:oci/opa-openshift-rhel8@sha256:196af50627ca6537d5511ebc89f0b7b4c57d1b67af921e84269bc71355b53c70?arch=arm64&repository_url=registry.redhat.io/openshift-logging/opa-openshift-rhel8&tag=v0.1.0-167" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:09686a47d73e381c80003714147137a3d3b1d9672d507d26c35a486e17f95938_ppc64le", + "product": { + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:09686a47d73e381c80003714147137a3d3b1d9672d507d26c35a486e17f95938_ppc64le", + "product_id": "openshift-logging/cluster-logging-rhel8-operator@sha256:09686a47d73e381c80003714147137a3d3b1d9672d507d26c35a486e17f95938_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-logging-rhel8-operator@sha256:09686a47d73e381c80003714147137a3d3b1d9672d507d26c35a486e17f95938?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/cluster-logging-rhel8-operator&tag=v5.5.17-14" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:07f46c6182126014df275c8cf64a2864ae1d887e58228c2c48da5809315e15fc_ppc64le", + "product": { + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:07f46c6182126014df275c8cf64a2864ae1d887e58228c2c48da5809315e15fc_ppc64le", + "product_id": "openshift-logging/elasticsearch-rhel8-operator@sha256:07f46c6182126014df275c8cf64a2864ae1d887e58228c2c48da5809315e15fc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-rhel8-operator@sha256:07f46c6182126014df275c8cf64a2864ae1d887e58228c2c48da5809315e15fc?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/elasticsearch-rhel8-operator&tag=v5.5.17-12" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:122662e15f63bb7da2392343adcdac3834c9b47f510ada210ecaefd5336673b4_ppc64le", + "product": { + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:122662e15f63bb7da2392343adcdac3834c9b47f510ada210ecaefd5336673b4_ppc64le", + "product_id": "openshift-logging/elasticsearch-proxy-rhel8@sha256:122662e15f63bb7da2392343adcdac3834c9b47f510ada210ecaefd5336673b4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-proxy-rhel8@sha256:122662e15f63bb7da2392343adcdac3834c9b47f510ada210ecaefd5336673b4?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/elasticsearch-proxy-rhel8&tag=v1.0.0-442" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:8dfa5d26fa43a3baa36e8eac831868c4a26a177b42af704ccde7a2a3c7cbc7ad_ppc64le", + "product": { + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:8dfa5d26fa43a3baa36e8eac831868c4a26a177b42af704ccde7a2a3c7cbc7ad_ppc64le", + "product_id": "openshift-logging/log-file-metric-exporter-rhel8@sha256:8dfa5d26fa43a3baa36e8eac831868c4a26a177b42af704ccde7a2a3c7cbc7ad_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/log-file-metric-exporter-rhel8@sha256:8dfa5d26fa43a3baa36e8eac831868c4a26a177b42af704ccde7a2a3c7cbc7ad?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/log-file-metric-exporter-rhel8&tag=v1.1.0-178" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-curator5-rhel8@sha256:5b23d637b76de7e4f557a8c3dc46b30021666a0425130586697a4c18cbe0ba10_ppc64le", + "product": { + "name": "openshift-logging/logging-curator5-rhel8@sha256:5b23d637b76de7e4f557a8c3dc46b30021666a0425130586697a4c18cbe0ba10_ppc64le", + "product_id": "openshift-logging/logging-curator5-rhel8@sha256:5b23d637b76de7e4f557a8c3dc46b30021666a0425130586697a4c18cbe0ba10_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/logging-curator5-rhel8@sha256:5b23d637b76de7e4f557a8c3dc46b30021666a0425130586697a4c18cbe0ba10?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/logging-curator5-rhel8&tag=v5.8.1-430" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch6-rhel8@sha256:e945d7c6263362ab92f60e0a328ef7e59bf89e996d3b4fdf7fb394c388c0d762_ppc64le", + "product": { + "name": "openshift-logging/elasticsearch6-rhel8@sha256:e945d7c6263362ab92f60e0a328ef7e59bf89e996d3b4fdf7fb394c388c0d762_ppc64le", + "product_id": "openshift-logging/elasticsearch6-rhel8@sha256:e945d7c6263362ab92f60e0a328ef7e59bf89e996d3b4fdf7fb394c388c0d762_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch6-rhel8@sha256:e945d7c6263362ab92f60e0a328ef7e59bf89e996d3b4fdf7fb394c388c0d762?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/elasticsearch6-rhel8&tag=v6.8.1-373" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/eventrouter-rhel8@sha256:d79bfb1655216dda89266b4f818941cebb0bba6d59edc299e43be0644aacd838_ppc64le", + "product": { + "name": "openshift-logging/eventrouter-rhel8@sha256:d79bfb1655216dda89266b4f818941cebb0bba6d59edc299e43be0644aacd838_ppc64le", + "product_id": "openshift-logging/eventrouter-rhel8@sha256:d79bfb1655216dda89266b4f818941cebb0bba6d59edc299e43be0644aacd838_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/eventrouter-rhel8@sha256:d79bfb1655216dda89266b4f818941cebb0bba6d59edc299e43be0644aacd838?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/eventrouter-rhel8&tag=v0.4.0-192" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/fluentd-rhel8@sha256:603effd18fc472200c23e6e8f49c2f9bc3e33a0ac9d951f28f52f5667a18850d_ppc64le", + "product": { + "name": "openshift-logging/fluentd-rhel8@sha256:603effd18fc472200c23e6e8f49c2f9bc3e33a0ac9d951f28f52f5667a18850d_ppc64le", + "product_id": "openshift-logging/fluentd-rhel8@sha256:603effd18fc472200c23e6e8f49c2f9bc3e33a0ac9d951f28f52f5667a18850d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/fluentd-rhel8@sha256:603effd18fc472200c23e6e8f49c2f9bc3e33a0ac9d951f28f52f5667a18850d?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/fluentd-rhel8&tag=v1.14.6-194" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/kibana6-rhel8@sha256:87a32dd0769e887e2c11766e7564d4d161f180019d28dd78d99fe48e18c53ac5_ppc64le", + "product": { + "name": "openshift-logging/kibana6-rhel8@sha256:87a32dd0769e887e2c11766e7564d4d161f180019d28dd78d99fe48e18c53ac5_ppc64le", + "product_id": "openshift-logging/kibana6-rhel8@sha256:87a32dd0769e887e2c11766e7564d4d161f180019d28dd78d99fe48e18c53ac5_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kibana6-rhel8@sha256:87a32dd0769e887e2c11766e7564d4d161f180019d28dd78d99fe48e18c53ac5?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/kibana6-rhel8&tag=v6.8.1-401" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-loki-rhel8@sha256:3451d2a31a99b7db16f08ec4e0374419185ff54b3a70109bfc9b35e2d7b72e8e_ppc64le", + "product": { + "name": "openshift-logging/logging-loki-rhel8@sha256:3451d2a31a99b7db16f08ec4e0374419185ff54b3a70109bfc9b35e2d7b72e8e_ppc64le", + "product_id": "openshift-logging/logging-loki-rhel8@sha256:3451d2a31a99b7db16f08ec4e0374419185ff54b3a70109bfc9b35e2d7b72e8e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/logging-loki-rhel8@sha256:3451d2a31a99b7db16f08ec4e0374419185ff54b3a70109bfc9b35e2d7b72e8e?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/logging-loki-rhel8&tag=v2.6.1-50" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/vector-rhel8@sha256:655a7b7de697bfb09f393bd676f49ca0fc7abe790efa6fe0db270498b1474e4a_ppc64le", + "product": { + "name": "openshift-logging/vector-rhel8@sha256:655a7b7de697bfb09f393bd676f49ca0fc7abe790efa6fe0db270498b1474e4a_ppc64le", + "product_id": "openshift-logging/vector-rhel8@sha256:655a7b7de697bfb09f393bd676f49ca0fc7abe790efa6fe0db270498b1474e4a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/vector-rhel8@sha256:655a7b7de697bfb09f393bd676f49ca0fc7abe790efa6fe0db270498b1474e4a?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/vector-rhel8&tag=v0.21.0-115" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:257c8f58c651c6b6138fe4f4b3bb26f8f4368802691f5c52c0d110a95689caf2_ppc64le", + "product": { + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:257c8f58c651c6b6138fe4f4b3bb26f8f4368802691f5c52c0d110a95689caf2_ppc64le", + "product_id": "openshift-logging/logging-view-plugin-rhel8@sha256:257c8f58c651c6b6138fe4f4b3bb26f8f4368802691f5c52c0d110a95689caf2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/logging-view-plugin-rhel8@sha256:257c8f58c651c6b6138fe4f4b3bb26f8f4368802691f5c52c0d110a95689caf2?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/logging-view-plugin-rhel8&tag=v5.5.17-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/loki-rhel8-operator@sha256:7094ff337849ac3dec85bd4b0a19c45e8f8e7fb1c15062ca95e26f109496175a_ppc64le", + "product": { + "name": "openshift-logging/loki-rhel8-operator@sha256:7094ff337849ac3dec85bd4b0a19c45e8f8e7fb1c15062ca95e26f109496175a_ppc64le", + "product_id": "openshift-logging/loki-rhel8-operator@sha256:7094ff337849ac3dec85bd4b0a19c45e8f8e7fb1c15062ca95e26f109496175a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/loki-rhel8-operator@sha256:7094ff337849ac3dec85bd4b0a19c45e8f8e7fb1c15062ca95e26f109496175a?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/loki-rhel8-operator&tag=v5.5.17-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:5e04611e624265dff9b18764ce33c37c53e8f1f5939c44d42b53307f8b22a96f_ppc64le", + "product": { + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:5e04611e624265dff9b18764ce33c37c53e8f1f5939c44d42b53307f8b22a96f_ppc64le", + "product_id": "openshift-logging/lokistack-gateway-rhel8@sha256:5e04611e624265dff9b18764ce33c37c53e8f1f5939c44d42b53307f8b22a96f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/lokistack-gateway-rhel8@sha256:5e04611e624265dff9b18764ce33c37c53e8f1f5939c44d42b53307f8b22a96f?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/lokistack-gateway-rhel8&tag=v0.1.0-361" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/opa-openshift-rhel8@sha256:8d105423bee2a9063eed652b478938ac670a1e1389d28d8f98b8e3369ff486b8_ppc64le", + "product": { + "name": "openshift-logging/opa-openshift-rhel8@sha256:8d105423bee2a9063eed652b478938ac670a1e1389d28d8f98b8e3369ff486b8_ppc64le", + "product_id": "openshift-logging/opa-openshift-rhel8@sha256:8d105423bee2a9063eed652b478938ac670a1e1389d28d8f98b8e3369ff486b8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/opa-openshift-rhel8@sha256:8d105423bee2a9063eed652b478938ac670a1e1389d28d8f98b8e3369ff486b8?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/opa-openshift-rhel8&tag=v0.1.0-167" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:54b85cd3a230c34372cc913711bf94b4a60fdbb754006310c5ded66e19bb546c_amd64", + "product": { + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:54b85cd3a230c34372cc913711bf94b4a60fdbb754006310c5ded66e19bb546c_amd64", + "product_id": "openshift-logging/cluster-logging-rhel8-operator@sha256:54b85cd3a230c34372cc913711bf94b4a60fdbb754006310c5ded66e19bb546c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-logging-rhel8-operator@sha256:54b85cd3a230c34372cc913711bf94b4a60fdbb754006310c5ded66e19bb546c?arch=amd64&repository_url=registry.redhat.io/openshift-logging/cluster-logging-rhel8-operator&tag=v5.5.17-14" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/cluster-logging-operator-bundle@sha256:b12bd9714a693251409de3f79cc59c3ea2b744eca288479942541bc091f98522_amd64", + "product": { + "name": "openshift-logging/cluster-logging-operator-bundle@sha256:b12bd9714a693251409de3f79cc59c3ea2b744eca288479942541bc091f98522_amd64", + "product_id": "openshift-logging/cluster-logging-operator-bundle@sha256:b12bd9714a693251409de3f79cc59c3ea2b744eca288479942541bc091f98522_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-logging-operator-bundle@sha256:b12bd9714a693251409de3f79cc59c3ea2b744eca288479942541bc091f98522?arch=amd64&repository_url=registry.redhat.io/openshift-logging/cluster-logging-operator-bundle&tag=v5.5.17-28" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:230a6d4dd1e8c7a0fcd485d450ec7ec7d1a29f3ad963f3e4d11cd92b9e1958a2_amd64", + "product": { + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:230a6d4dd1e8c7a0fcd485d450ec7ec7d1a29f3ad963f3e4d11cd92b9e1958a2_amd64", + "product_id": "openshift-logging/elasticsearch-rhel8-operator@sha256:230a6d4dd1e8c7a0fcd485d450ec7ec7d1a29f3ad963f3e4d11cd92b9e1958a2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-rhel8-operator@sha256:230a6d4dd1e8c7a0fcd485d450ec7ec7d1a29f3ad963f3e4d11cd92b9e1958a2?arch=amd64&repository_url=registry.redhat.io/openshift-logging/elasticsearch-rhel8-operator&tag=v5.5.17-12" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-operator-bundle@sha256:2a3bae732280547fc5434a6d9910fe8f4f3e9060d6454f61726bbe2efe6facaf_amd64", + "product": { + "name": "openshift-logging/elasticsearch-operator-bundle@sha256:2a3bae732280547fc5434a6d9910fe8f4f3e9060d6454f61726bbe2efe6facaf_amd64", + "product_id": "openshift-logging/elasticsearch-operator-bundle@sha256:2a3bae732280547fc5434a6d9910fe8f4f3e9060d6454f61726bbe2efe6facaf_amd64", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-operator-bundle@sha256:2a3bae732280547fc5434a6d9910fe8f4f3e9060d6454f61726bbe2efe6facaf?arch=amd64&repository_url=registry.redhat.io/openshift-logging/elasticsearch-operator-bundle&tag=v5.5.17-32" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:61ad583d20b53b400460bd45368a2b91cccb3213a415d79a9ee879ac4447f594_amd64", + "product": { + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:61ad583d20b53b400460bd45368a2b91cccb3213a415d79a9ee879ac4447f594_amd64", + "product_id": "openshift-logging/elasticsearch-proxy-rhel8@sha256:61ad583d20b53b400460bd45368a2b91cccb3213a415d79a9ee879ac4447f594_amd64", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-proxy-rhel8@sha256:61ad583d20b53b400460bd45368a2b91cccb3213a415d79a9ee879ac4447f594?arch=amd64&repository_url=registry.redhat.io/openshift-logging/elasticsearch-proxy-rhel8&tag=v1.0.0-442" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:1c82a3938cf38efafa4b02199b77ab4f452cb67c8c4d7233a5284a4d5fca2d72_amd64", + "product": { + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:1c82a3938cf38efafa4b02199b77ab4f452cb67c8c4d7233a5284a4d5fca2d72_amd64", + "product_id": "openshift-logging/log-file-metric-exporter-rhel8@sha256:1c82a3938cf38efafa4b02199b77ab4f452cb67c8c4d7233a5284a4d5fca2d72_amd64", + "product_identification_helper": { + "purl": "pkg:oci/log-file-metric-exporter-rhel8@sha256:1c82a3938cf38efafa4b02199b77ab4f452cb67c8c4d7233a5284a4d5fca2d72?arch=amd64&repository_url=registry.redhat.io/openshift-logging/log-file-metric-exporter-rhel8&tag=v1.1.0-178" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-curator5-rhel8@sha256:8dd650aafc9f881edb40dc35c9eb4d36eab365d3230020fa2cbad6bf47d6c833_amd64", + "product": { + "name": "openshift-logging/logging-curator5-rhel8@sha256:8dd650aafc9f881edb40dc35c9eb4d36eab365d3230020fa2cbad6bf47d6c833_amd64", + "product_id": "openshift-logging/logging-curator5-rhel8@sha256:8dd650aafc9f881edb40dc35c9eb4d36eab365d3230020fa2cbad6bf47d6c833_amd64", + "product_identification_helper": { + "purl": "pkg:oci/logging-curator5-rhel8@sha256:8dd650aafc9f881edb40dc35c9eb4d36eab365d3230020fa2cbad6bf47d6c833?arch=amd64&repository_url=registry.redhat.io/openshift-logging/logging-curator5-rhel8&tag=v5.8.1-430" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch6-rhel8@sha256:1a6f54ae9b91e47bfcea27190ef7298f34c9d790964e0ee5e02d9807ce990a93_amd64", + "product": { + "name": "openshift-logging/elasticsearch6-rhel8@sha256:1a6f54ae9b91e47bfcea27190ef7298f34c9d790964e0ee5e02d9807ce990a93_amd64", + "product_id": "openshift-logging/elasticsearch6-rhel8@sha256:1a6f54ae9b91e47bfcea27190ef7298f34c9d790964e0ee5e02d9807ce990a93_amd64", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch6-rhel8@sha256:1a6f54ae9b91e47bfcea27190ef7298f34c9d790964e0ee5e02d9807ce990a93?arch=amd64&repository_url=registry.redhat.io/openshift-logging/elasticsearch6-rhel8&tag=v6.8.1-373" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/eventrouter-rhel8@sha256:3b0cc80d9dcc51d33cbf40edf9ee590495621957472a8b5811a0106896ca088b_amd64", + "product": { + "name": "openshift-logging/eventrouter-rhel8@sha256:3b0cc80d9dcc51d33cbf40edf9ee590495621957472a8b5811a0106896ca088b_amd64", + "product_id": "openshift-logging/eventrouter-rhel8@sha256:3b0cc80d9dcc51d33cbf40edf9ee590495621957472a8b5811a0106896ca088b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/eventrouter-rhel8@sha256:3b0cc80d9dcc51d33cbf40edf9ee590495621957472a8b5811a0106896ca088b?arch=amd64&repository_url=registry.redhat.io/openshift-logging/eventrouter-rhel8&tag=v0.4.0-192" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/fluentd-rhel8@sha256:330405c116c6cc49d9e14ed373bc73f9759017ccc9d5cc984ad9241023778e2f_amd64", + "product": { + "name": "openshift-logging/fluentd-rhel8@sha256:330405c116c6cc49d9e14ed373bc73f9759017ccc9d5cc984ad9241023778e2f_amd64", + "product_id": "openshift-logging/fluentd-rhel8@sha256:330405c116c6cc49d9e14ed373bc73f9759017ccc9d5cc984ad9241023778e2f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/fluentd-rhel8@sha256:330405c116c6cc49d9e14ed373bc73f9759017ccc9d5cc984ad9241023778e2f?arch=amd64&repository_url=registry.redhat.io/openshift-logging/fluentd-rhel8&tag=v1.14.6-194" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/kibana6-rhel8@sha256:7f3a73273dd82f675f1abf2e1a767f7f59392571ad82ff84e6740397800b0feb_amd64", + "product": { + "name": "openshift-logging/kibana6-rhel8@sha256:7f3a73273dd82f675f1abf2e1a767f7f59392571ad82ff84e6740397800b0feb_amd64", + "product_id": "openshift-logging/kibana6-rhel8@sha256:7f3a73273dd82f675f1abf2e1a767f7f59392571ad82ff84e6740397800b0feb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kibana6-rhel8@sha256:7f3a73273dd82f675f1abf2e1a767f7f59392571ad82ff84e6740397800b0feb?arch=amd64&repository_url=registry.redhat.io/openshift-logging/kibana6-rhel8&tag=v6.8.1-401" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-loki-rhel8@sha256:53d89f40f8362c922a5c50cc78b58e9573bd97cb67ec7a8520e161b421c78f3e_amd64", + "product": { + "name": "openshift-logging/logging-loki-rhel8@sha256:53d89f40f8362c922a5c50cc78b58e9573bd97cb67ec7a8520e161b421c78f3e_amd64", + "product_id": "openshift-logging/logging-loki-rhel8@sha256:53d89f40f8362c922a5c50cc78b58e9573bd97cb67ec7a8520e161b421c78f3e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/logging-loki-rhel8@sha256:53d89f40f8362c922a5c50cc78b58e9573bd97cb67ec7a8520e161b421c78f3e?arch=amd64&repository_url=registry.redhat.io/openshift-logging/logging-loki-rhel8&tag=v2.6.1-50" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/vector-rhel8@sha256:ce46f671b48687a3b2b54583595eff8654ee219b6606230c497dc78c4ef6e9a0_amd64", + "product": { + "name": "openshift-logging/vector-rhel8@sha256:ce46f671b48687a3b2b54583595eff8654ee219b6606230c497dc78c4ef6e9a0_amd64", + "product_id": "openshift-logging/vector-rhel8@sha256:ce46f671b48687a3b2b54583595eff8654ee219b6606230c497dc78c4ef6e9a0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/vector-rhel8@sha256:ce46f671b48687a3b2b54583595eff8654ee219b6606230c497dc78c4ef6e9a0?arch=amd64&repository_url=registry.redhat.io/openshift-logging/vector-rhel8&tag=v0.21.0-115" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:0647ae6a93087832d1529a9d56b2157a798efafc4645b8bcf1b49f1d43634978_amd64", + "product": { + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:0647ae6a93087832d1529a9d56b2157a798efafc4645b8bcf1b49f1d43634978_amd64", + "product_id": "openshift-logging/logging-view-plugin-rhel8@sha256:0647ae6a93087832d1529a9d56b2157a798efafc4645b8bcf1b49f1d43634978_amd64", + "product_identification_helper": { + "purl": "pkg:oci/logging-view-plugin-rhel8@sha256:0647ae6a93087832d1529a9d56b2157a798efafc4645b8bcf1b49f1d43634978?arch=amd64&repository_url=registry.redhat.io/openshift-logging/logging-view-plugin-rhel8&tag=v5.5.17-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/loki-operator-bundle@sha256:262aa1c348041e886c7941f77ab26aa42ab8cdeb1bbc8693deef80bfe96ff6ee_amd64", + "product": { + "name": "openshift-logging/loki-operator-bundle@sha256:262aa1c348041e886c7941f77ab26aa42ab8cdeb1bbc8693deef80bfe96ff6ee_amd64", + "product_id": "openshift-logging/loki-operator-bundle@sha256:262aa1c348041e886c7941f77ab26aa42ab8cdeb1bbc8693deef80bfe96ff6ee_amd64", + "product_identification_helper": { + "purl": "pkg:oci/loki-operator-bundle@sha256:262aa1c348041e886c7941f77ab26aa42ab8cdeb1bbc8693deef80bfe96ff6ee?arch=amd64&repository_url=registry.redhat.io/openshift-logging/loki-operator-bundle&tag=v5.5.17-14" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/loki-rhel8-operator@sha256:c739a1321e838d0efd97fd30e8ae031dcbc27f590cdc04c82e9d5eded2f140cd_amd64", + "product": { + "name": "openshift-logging/loki-rhel8-operator@sha256:c739a1321e838d0efd97fd30e8ae031dcbc27f590cdc04c82e9d5eded2f140cd_amd64", + "product_id": "openshift-logging/loki-rhel8-operator@sha256:c739a1321e838d0efd97fd30e8ae031dcbc27f590cdc04c82e9d5eded2f140cd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/loki-rhel8-operator@sha256:c739a1321e838d0efd97fd30e8ae031dcbc27f590cdc04c82e9d5eded2f140cd?arch=amd64&repository_url=registry.redhat.io/openshift-logging/loki-rhel8-operator&tag=v5.5.17-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:ba3273020224e23fb530ed8eb2c6a408733e55d613aa6cf95b1609eb9aa5ff70_amd64", + "product": { + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:ba3273020224e23fb530ed8eb2c6a408733e55d613aa6cf95b1609eb9aa5ff70_amd64", + "product_id": "openshift-logging/lokistack-gateway-rhel8@sha256:ba3273020224e23fb530ed8eb2c6a408733e55d613aa6cf95b1609eb9aa5ff70_amd64", + "product_identification_helper": { + "purl": "pkg:oci/lokistack-gateway-rhel8@sha256:ba3273020224e23fb530ed8eb2c6a408733e55d613aa6cf95b1609eb9aa5ff70?arch=amd64&repository_url=registry.redhat.io/openshift-logging/lokistack-gateway-rhel8&tag=v0.1.0-361" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/opa-openshift-rhel8@sha256:b946086fd5bef8290629418b663b318908ceb9f171fa96f6626320923623c9a8_amd64", + "product": { + "name": "openshift-logging/opa-openshift-rhel8@sha256:b946086fd5bef8290629418b663b318908ceb9f171fa96f6626320923623c9a8_amd64", + "product_id": "openshift-logging/opa-openshift-rhel8@sha256:b946086fd5bef8290629418b663b318908ceb9f171fa96f6626320923623c9a8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/opa-openshift-rhel8@sha256:b946086fd5bef8290629418b663b318908ceb9f171fa96f6626320923623c9a8?arch=amd64&repository_url=registry.redhat.io/openshift-logging/opa-openshift-rhel8&tag=v0.1.0-167" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:51601c319a847410dd67dded9bfc3e177d607f9bbd955e40da14c0a6e18775d9_s390x", + "product": { + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:51601c319a847410dd67dded9bfc3e177d607f9bbd955e40da14c0a6e18775d9_s390x", + "product_id": "openshift-logging/cluster-logging-rhel8-operator@sha256:51601c319a847410dd67dded9bfc3e177d607f9bbd955e40da14c0a6e18775d9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-logging-rhel8-operator@sha256:51601c319a847410dd67dded9bfc3e177d607f9bbd955e40da14c0a6e18775d9?arch=s390x&repository_url=registry.redhat.io/openshift-logging/cluster-logging-rhel8-operator&tag=v5.5.17-14" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:ceb0851250bd48ca908f038ae6a9df08530cc876054f3e8447c3b988b18da2a2_s390x", + "product": { + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:ceb0851250bd48ca908f038ae6a9df08530cc876054f3e8447c3b988b18da2a2_s390x", + "product_id": "openshift-logging/elasticsearch-rhel8-operator@sha256:ceb0851250bd48ca908f038ae6a9df08530cc876054f3e8447c3b988b18da2a2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-rhel8-operator@sha256:ceb0851250bd48ca908f038ae6a9df08530cc876054f3e8447c3b988b18da2a2?arch=s390x&repository_url=registry.redhat.io/openshift-logging/elasticsearch-rhel8-operator&tag=v5.5.17-12" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:0c24a8b9b1d6fd2c0f831fdefbbee14d9991f561ea8196e8435d4c2b1b98c9b5_s390x", + "product": { + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:0c24a8b9b1d6fd2c0f831fdefbbee14d9991f561ea8196e8435d4c2b1b98c9b5_s390x", + "product_id": "openshift-logging/elasticsearch-proxy-rhel8@sha256:0c24a8b9b1d6fd2c0f831fdefbbee14d9991f561ea8196e8435d4c2b1b98c9b5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-proxy-rhel8@sha256:0c24a8b9b1d6fd2c0f831fdefbbee14d9991f561ea8196e8435d4c2b1b98c9b5?arch=s390x&repository_url=registry.redhat.io/openshift-logging/elasticsearch-proxy-rhel8&tag=v1.0.0-442" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:0dbe15a2497d60ed8c108be2afe0f7ad750ee7502c1180273767f0e5449943c6_s390x", + "product": { + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:0dbe15a2497d60ed8c108be2afe0f7ad750ee7502c1180273767f0e5449943c6_s390x", + "product_id": "openshift-logging/log-file-metric-exporter-rhel8@sha256:0dbe15a2497d60ed8c108be2afe0f7ad750ee7502c1180273767f0e5449943c6_s390x", + "product_identification_helper": { + "purl": "pkg:oci/log-file-metric-exporter-rhel8@sha256:0dbe15a2497d60ed8c108be2afe0f7ad750ee7502c1180273767f0e5449943c6?arch=s390x&repository_url=registry.redhat.io/openshift-logging/log-file-metric-exporter-rhel8&tag=v1.1.0-178" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-curator5-rhel8@sha256:dc9a0d0c426d1f25b97f7a2730a9893f904584591022b8b09573bfd7a76f81b5_s390x", + "product": { + "name": "openshift-logging/logging-curator5-rhel8@sha256:dc9a0d0c426d1f25b97f7a2730a9893f904584591022b8b09573bfd7a76f81b5_s390x", + "product_id": "openshift-logging/logging-curator5-rhel8@sha256:dc9a0d0c426d1f25b97f7a2730a9893f904584591022b8b09573bfd7a76f81b5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/logging-curator5-rhel8@sha256:dc9a0d0c426d1f25b97f7a2730a9893f904584591022b8b09573bfd7a76f81b5?arch=s390x&repository_url=registry.redhat.io/openshift-logging/logging-curator5-rhel8&tag=v5.8.1-430" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch6-rhel8@sha256:459cf54a779336cfe71b1b4a790215ff8764b18a77b7d7cc3a89defb20748bf5_s390x", + "product": { + "name": "openshift-logging/elasticsearch6-rhel8@sha256:459cf54a779336cfe71b1b4a790215ff8764b18a77b7d7cc3a89defb20748bf5_s390x", + "product_id": "openshift-logging/elasticsearch6-rhel8@sha256:459cf54a779336cfe71b1b4a790215ff8764b18a77b7d7cc3a89defb20748bf5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch6-rhel8@sha256:459cf54a779336cfe71b1b4a790215ff8764b18a77b7d7cc3a89defb20748bf5?arch=s390x&repository_url=registry.redhat.io/openshift-logging/elasticsearch6-rhel8&tag=v6.8.1-373" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/eventrouter-rhel8@sha256:1820ac83c516361553a0c9f9c0dc93ea2ebc1cdbb89fb980ca0d356892e8d034_s390x", + "product": { + "name": "openshift-logging/eventrouter-rhel8@sha256:1820ac83c516361553a0c9f9c0dc93ea2ebc1cdbb89fb980ca0d356892e8d034_s390x", + "product_id": "openshift-logging/eventrouter-rhel8@sha256:1820ac83c516361553a0c9f9c0dc93ea2ebc1cdbb89fb980ca0d356892e8d034_s390x", + "product_identification_helper": { + "purl": "pkg:oci/eventrouter-rhel8@sha256:1820ac83c516361553a0c9f9c0dc93ea2ebc1cdbb89fb980ca0d356892e8d034?arch=s390x&repository_url=registry.redhat.io/openshift-logging/eventrouter-rhel8&tag=v0.4.0-192" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/fluentd-rhel8@sha256:c0c053caabd85aea33f8b69bda2739a9288ed8b48554932c431bd6f5615a510b_s390x", + "product": { + "name": "openshift-logging/fluentd-rhel8@sha256:c0c053caabd85aea33f8b69bda2739a9288ed8b48554932c431bd6f5615a510b_s390x", + "product_id": "openshift-logging/fluentd-rhel8@sha256:c0c053caabd85aea33f8b69bda2739a9288ed8b48554932c431bd6f5615a510b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/fluentd-rhel8@sha256:c0c053caabd85aea33f8b69bda2739a9288ed8b48554932c431bd6f5615a510b?arch=s390x&repository_url=registry.redhat.io/openshift-logging/fluentd-rhel8&tag=v1.14.6-194" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/kibana6-rhel8@sha256:042d7881b2e5d5544a97ac95f39adfefbca08dab6621f7439b59d640ff1d4b13_s390x", + "product": { + "name": "openshift-logging/kibana6-rhel8@sha256:042d7881b2e5d5544a97ac95f39adfefbca08dab6621f7439b59d640ff1d4b13_s390x", + "product_id": "openshift-logging/kibana6-rhel8@sha256:042d7881b2e5d5544a97ac95f39adfefbca08dab6621f7439b59d640ff1d4b13_s390x", + "product_identification_helper": { + "purl": "pkg:oci/kibana6-rhel8@sha256:042d7881b2e5d5544a97ac95f39adfefbca08dab6621f7439b59d640ff1d4b13?arch=s390x&repository_url=registry.redhat.io/openshift-logging/kibana6-rhel8&tag=v6.8.1-401" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-loki-rhel8@sha256:916880dff7f86c00e7fe2a1a3dbbc7c586551962228300e384304c8822cf1854_s390x", + "product": { + "name": "openshift-logging/logging-loki-rhel8@sha256:916880dff7f86c00e7fe2a1a3dbbc7c586551962228300e384304c8822cf1854_s390x", + "product_id": "openshift-logging/logging-loki-rhel8@sha256:916880dff7f86c00e7fe2a1a3dbbc7c586551962228300e384304c8822cf1854_s390x", + "product_identification_helper": { + "purl": "pkg:oci/logging-loki-rhel8@sha256:916880dff7f86c00e7fe2a1a3dbbc7c586551962228300e384304c8822cf1854?arch=s390x&repository_url=registry.redhat.io/openshift-logging/logging-loki-rhel8&tag=v2.6.1-50" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/vector-rhel8@sha256:3f9a2886a6eb29d26d010cc015e1937fef6366a315e45d7122869bf772fbaa2b_s390x", + "product": { + "name": "openshift-logging/vector-rhel8@sha256:3f9a2886a6eb29d26d010cc015e1937fef6366a315e45d7122869bf772fbaa2b_s390x", + "product_id": "openshift-logging/vector-rhel8@sha256:3f9a2886a6eb29d26d010cc015e1937fef6366a315e45d7122869bf772fbaa2b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/vector-rhel8@sha256:3f9a2886a6eb29d26d010cc015e1937fef6366a315e45d7122869bf772fbaa2b?arch=s390x&repository_url=registry.redhat.io/openshift-logging/vector-rhel8&tag=v0.21.0-115" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:b50949035ee0c210959337c979d39fc20b9ab91cde51795347c56ba39ee5aa38_s390x", + "product": { + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:b50949035ee0c210959337c979d39fc20b9ab91cde51795347c56ba39ee5aa38_s390x", + "product_id": "openshift-logging/logging-view-plugin-rhel8@sha256:b50949035ee0c210959337c979d39fc20b9ab91cde51795347c56ba39ee5aa38_s390x", + "product_identification_helper": { + "purl": "pkg:oci/logging-view-plugin-rhel8@sha256:b50949035ee0c210959337c979d39fc20b9ab91cde51795347c56ba39ee5aa38?arch=s390x&repository_url=registry.redhat.io/openshift-logging/logging-view-plugin-rhel8&tag=v5.5.17-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/loki-rhel8-operator@sha256:cc3200d2493d1ae32e07e273599708dd0d3be7ff4c82889feb33ed9c5da48de2_s390x", + "product": { + "name": "openshift-logging/loki-rhel8-operator@sha256:cc3200d2493d1ae32e07e273599708dd0d3be7ff4c82889feb33ed9c5da48de2_s390x", + "product_id": "openshift-logging/loki-rhel8-operator@sha256:cc3200d2493d1ae32e07e273599708dd0d3be7ff4c82889feb33ed9c5da48de2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/loki-rhel8-operator@sha256:cc3200d2493d1ae32e07e273599708dd0d3be7ff4c82889feb33ed9c5da48de2?arch=s390x&repository_url=registry.redhat.io/openshift-logging/loki-rhel8-operator&tag=v5.5.17-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:828524aeb6ef453ea8b8e8e1d978909a37db746c5def2577b6538bfac324c33d_s390x", + "product": { + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:828524aeb6ef453ea8b8e8e1d978909a37db746c5def2577b6538bfac324c33d_s390x", + "product_id": "openshift-logging/lokistack-gateway-rhel8@sha256:828524aeb6ef453ea8b8e8e1d978909a37db746c5def2577b6538bfac324c33d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/lokistack-gateway-rhel8@sha256:828524aeb6ef453ea8b8e8e1d978909a37db746c5def2577b6538bfac324c33d?arch=s390x&repository_url=registry.redhat.io/openshift-logging/lokistack-gateway-rhel8&tag=v0.1.0-361" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/opa-openshift-rhel8@sha256:38a14d740af20e39609eef1326bfe919c7629b5c3cad91efac927c565986f15e_s390x", + "product": { + "name": "openshift-logging/opa-openshift-rhel8@sha256:38a14d740af20e39609eef1326bfe919c7629b5c3cad91efac927c565986f15e_s390x", + "product_id": "openshift-logging/opa-openshift-rhel8@sha256:38a14d740af20e39609eef1326bfe919c7629b5c3cad91efac927c565986f15e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/opa-openshift-rhel8@sha256:38a14d740af20e39609eef1326bfe919c7629b5c3cad91efac927c565986f15e?arch=s390x&repository_url=registry.redhat.io/openshift-logging/opa-openshift-rhel8&tag=v0.1.0-167" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-api-rhel9@sha256:7a25dd92fb3949f6b231d8019dda8ee2432ce1708cf746fdc805f335d19119e8_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-api-rhel9@sha256:7a25dd92fb3949f6b231d8019dda8ee2432ce1708cf746fdc805f335d19119e8_amd64", + "product_id": "migration-toolkit-virtualization/mtv-api-rhel9@sha256:7a25dd92fb3949f6b231d8019dda8ee2432ce1708cf746fdc805f335d19119e8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-api-rhel9@sha256:7a25dd92fb3949f6b231d8019dda8ee2432ce1708cf746fdc805f335d19119e8?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-api-rhel9&tag=2.5.2-5" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-console-plugin-rhel9@sha256:8d9c4e66535b0b3c6921cbf819c7d86dedaa9076fc05b9f00e9002b6fb1c5b1d_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-console-plugin-rhel9@sha256:8d9c4e66535b0b3c6921cbf819c7d86dedaa9076fc05b9f00e9002b6fb1c5b1d_amd64", + "product_id": "migration-toolkit-virtualization/mtv-console-plugin-rhel9@sha256:8d9c4e66535b0b3c6921cbf819c7d86dedaa9076fc05b9f00e9002b6fb1c5b1d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-console-plugin-rhel9@sha256:8d9c4e66535b0b3c6921cbf819c7d86dedaa9076fc05b9f00e9002b6fb1c5b1d?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-console-plugin-rhel9&tag=2.5.2-5" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-controller-rhel9@sha256:8fbc5262ebc5791a156ecc4afa539bb6d72bfe3ecf28e7ebaab12aab63e472e3_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-controller-rhel9@sha256:8fbc5262ebc5791a156ecc4afa539bb6d72bfe3ecf28e7ebaab12aab63e472e3_amd64", + "product_id": "migration-toolkit-virtualization/mtv-controller-rhel9@sha256:8fbc5262ebc5791a156ecc4afa539bb6d72bfe3ecf28e7ebaab12aab63e472e3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-controller-rhel9@sha256:8fbc5262ebc5791a156ecc4afa539bb6d72bfe3ecf28e7ebaab12aab63e472e3?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-controller-rhel9&tag=2.5.2-5" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-must-gather-api-rhel8@sha256:e1e3b4adafebe14f5c1c17b8b81c921c8c2daf77bf22ffef9f0a2e1ac1a32d5f_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-must-gather-api-rhel8@sha256:e1e3b4adafebe14f5c1c17b8b81c921c8c2daf77bf22ffef9f0a2e1ac1a32d5f_amd64", + "product_id": "migration-toolkit-virtualization/mtv-must-gather-api-rhel8@sha256:e1e3b4adafebe14f5c1c17b8b81c921c8c2daf77bf22ffef9f0a2e1ac1a32d5f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-must-gather-api-rhel8@sha256:e1e3b4adafebe14f5c1c17b8b81c921c8c2daf77bf22ffef9f0a2e1ac1a32d5f?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-must-gather-api-rhel8&tag=2.5.2-6" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-must-gather-rhel8@sha256:cfd662d50e649898951b9dc21bb8bd533ccbe4daa9ae9eb1ea365ae9bfdf39e0_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-must-gather-rhel8@sha256:cfd662d50e649898951b9dc21bb8bd533ccbe4daa9ae9eb1ea365ae9bfdf39e0_amd64", + "product_id": "migration-toolkit-virtualization/mtv-must-gather-rhel8@sha256:cfd662d50e649898951b9dc21bb8bd533ccbe4daa9ae9eb1ea365ae9bfdf39e0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-must-gather-rhel8@sha256:cfd662d50e649898951b9dc21bb8bd533ccbe4daa9ae9eb1ea365ae9bfdf39e0?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-must-gather-rhel8&tag=2.5.2-4" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-openstack-populator-rhel9@sha256:ba513f372d1eccbc1a96c0934384021b5cd228533435bcfb70dd584e65f5abec_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-openstack-populator-rhel9@sha256:ba513f372d1eccbc1a96c0934384021b5cd228533435bcfb70dd584e65f5abec_amd64", + "product_id": "migration-toolkit-virtualization/mtv-openstack-populator-rhel9@sha256:ba513f372d1eccbc1a96c0934384021b5cd228533435bcfb70dd584e65f5abec_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-openstack-populator-rhel9@sha256:ba513f372d1eccbc1a96c0934384021b5cd228533435bcfb70dd584e65f5abec?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-openstack-populator-rhel9&tag=2.5.2-5" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-operator-bundle@sha256:9ec2a9e288b742ea9d71f13e055a4ede1b34e5e251aa662c65a83747a6603462_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-operator-bundle@sha256:9ec2a9e288b742ea9d71f13e055a4ede1b34e5e251aa662c65a83747a6603462_amd64", + "product_id": "migration-toolkit-virtualization/mtv-operator-bundle@sha256:9ec2a9e288b742ea9d71f13e055a4ede1b34e5e251aa662c65a83747a6603462_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-operator-bundle@sha256:9ec2a9e288b742ea9d71f13e055a4ede1b34e5e251aa662c65a83747a6603462?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-operator-bundle&tag=2.5.2-20" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-rhel8-operator@sha256:86e6fc987f49aa419b0c7f15276559c4e0958adc9385d80deef228dfb9bcf0ba_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-rhel8-operator@sha256:86e6fc987f49aa419b0c7f15276559c4e0958adc9385d80deef228dfb9bcf0ba_amd64", + "product_id": "migration-toolkit-virtualization/mtv-rhel8-operator@sha256:86e6fc987f49aa419b0c7f15276559c4e0958adc9385d80deef228dfb9bcf0ba_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-rhel8-operator@sha256:86e6fc987f49aa419b0c7f15276559c4e0958adc9385d80deef228dfb9bcf0ba?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-rhel8-operator&tag=2.5.2-3" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-ova-provider-server-rhel9@sha256:53f0fa129b04bcb7ea8f80e6136fbaf189460b29bdd123398f456a4d2a32de3f_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-ova-provider-server-rhel9@sha256:53f0fa129b04bcb7ea8f80e6136fbaf189460b29bdd123398f456a4d2a32de3f_amd64", + "product_id": "migration-toolkit-virtualization/mtv-ova-provider-server-rhel9@sha256:53f0fa129b04bcb7ea8f80e6136fbaf189460b29bdd123398f456a4d2a32de3f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-ova-provider-server-rhel9@sha256:53f0fa129b04bcb7ea8f80e6136fbaf189460b29bdd123398f456a4d2a32de3f?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-ova-provider-server-rhel9&tag=2.5.2-5" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-populator-controller-rhel9@sha256:110ebc02ca7aca24ff830e8073af8062434ca8dc8ff1239b92c24e84d6cf08c3_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-populator-controller-rhel9@sha256:110ebc02ca7aca24ff830e8073af8062434ca8dc8ff1239b92c24e84d6cf08c3_amd64", + "product_id": "migration-toolkit-virtualization/mtv-populator-controller-rhel9@sha256:110ebc02ca7aca24ff830e8073af8062434ca8dc8ff1239b92c24e84d6cf08c3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-populator-controller-rhel9@sha256:110ebc02ca7aca24ff830e8073af8062434ca8dc8ff1239b92c24e84d6cf08c3?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-populator-controller-rhel9&tag=2.5.2-5" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-rhv-populator-rhel8@sha256:bd5cf5ff33a900a8f7b8b4fc52ada3af737d42793b27e63f5cc7c36b11a21189_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-rhv-populator-rhel8@sha256:bd5cf5ff33a900a8f7b8b4fc52ada3af737d42793b27e63f5cc7c36b11a21189_amd64", + "product_id": "migration-toolkit-virtualization/mtv-rhv-populator-rhel8@sha256:bd5cf5ff33a900a8f7b8b4fc52ada3af737d42793b27e63f5cc7c36b11a21189_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-rhv-populator-rhel8@sha256:bd5cf5ff33a900a8f7b8b4fc52ada3af737d42793b27e63f5cc7c36b11a21189?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-rhv-populator-rhel8&tag=2.5.2-4" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-validation-rhel9@sha256:7481185531e6bba394f769c0e73bfc431e0d763afd23c59bacc8ec32875b0af3_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-validation-rhel9@sha256:7481185531e6bba394f769c0e73bfc431e0d763afd23c59bacc8ec32875b0af3_amd64", + "product_id": "migration-toolkit-virtualization/mtv-validation-rhel9@sha256:7481185531e6bba394f769c0e73bfc431e0d763afd23c59bacc8ec32875b0af3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-validation-rhel9@sha256:7481185531e6bba394f769c0e73bfc431e0d763afd23c59bacc8ec32875b0af3?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-validation-rhel9&tag=2.5.2-5" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-virt-v2v-rhel9@sha256:094c261ca283ee4fcf58e79cc93e61da6e0759c82a157f3169c4390a7e7f1f74_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-virt-v2v-rhel9@sha256:094c261ca283ee4fcf58e79cc93e61da6e0759c82a157f3169c4390a7e7f1f74_amd64", + "product_id": "migration-toolkit-virtualization/mtv-virt-v2v-rhel9@sha256:094c261ca283ee4fcf58e79cc93e61da6e0759c82a157f3169c4390a7e7f1f74_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-virt-v2v-rhel9@sha256:094c261ca283ee4fcf58e79cc93e61da6e0759c82a157f3169c4390a7e7f1f74?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-virt-v2v-rhel9&tag=2.5.2-5" + } + } + }, + { + "category": "product_version", + "name": "migration-toolkit-virtualization/mtv-virt-v2v-warm-rhel8@sha256:fd9758985cb3ab4fe6bddf1b989b0cc7803d9bf79883dfe3a02c6c3644fcc891_amd64", + "product": { + "name": "migration-toolkit-virtualization/mtv-virt-v2v-warm-rhel8@sha256:fd9758985cb3ab4fe6bddf1b989b0cc7803d9bf79883dfe3a02c6c3644fcc891_amd64", + "product_id": "migration-toolkit-virtualization/mtv-virt-v2v-warm-rhel8@sha256:fd9758985cb3ab4fe6bddf1b989b0cc7803d9bf79883dfe3a02c6c3644fcc891_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtv-virt-v2v-warm-rhel8@sha256:fd9758985cb3ab4fe6bddf1b989b0cc7803d9bf79883dfe3a02c6c3644fcc891?arch=amd64&repository_url=registry.redhat.io/migration-toolkit-virtualization/mtv-virt-v2v-warm-rhel8&tag=2.5.2-2" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "toolbox-0:0.0.99.3-10.el9_2.src", + "product": { + "name": "toolbox-0:0.0.99.3-10.el9_2.src", + "product_id": "toolbox-0:0.0.99.3-10.el9_2.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox@0.0.99.3-10.el9_2?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "toolbox-0:0.0.99.3-10.el9_2.aarch64", + "product": { + "name": "toolbox-0:0.0.99.3-10.el9_2.aarch64", + "product_id": "toolbox-0:0.0.99.3-10.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox@0.0.99.3-10.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "toolbox-tests-0:0.0.99.3-10.el9_2.aarch64", + "product": { + "name": "toolbox-tests-0:0.0.99.3-10.el9_2.aarch64", + "product_id": "toolbox-tests-0:0.0.99.3-10.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox-tests@0.0.99.3-10.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "toolbox-debugsource-0:0.0.99.3-10.el9_2.aarch64", + "product": { + "name": "toolbox-debugsource-0:0.0.99.3-10.el9_2.aarch64", + "product_id": "toolbox-debugsource-0:0.0.99.3-10.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox-debugsource@0.0.99.3-10.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "toolbox-debuginfo-0:0.0.99.3-10.el9_2.aarch64", + "product": { + "name": "toolbox-debuginfo-0:0.0.99.3-10.el9_2.aarch64", + "product_id": "toolbox-debuginfo-0:0.0.99.3-10.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox-debuginfo@0.0.99.3-10.el9_2?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "toolbox-0:0.0.99.3-10.el9_2.ppc64le", + "product": { + "name": "toolbox-0:0.0.99.3-10.el9_2.ppc64le", + "product_id": "toolbox-0:0.0.99.3-10.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox@0.0.99.3-10.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "toolbox-tests-0:0.0.99.3-10.el9_2.ppc64le", + "product": { + "name": "toolbox-tests-0:0.0.99.3-10.el9_2.ppc64le", + "product_id": "toolbox-tests-0:0.0.99.3-10.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox-tests@0.0.99.3-10.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "toolbox-debugsource-0:0.0.99.3-10.el9_2.ppc64le", + "product": { + "name": "toolbox-debugsource-0:0.0.99.3-10.el9_2.ppc64le", + "product_id": "toolbox-debugsource-0:0.0.99.3-10.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox-debugsource@0.0.99.3-10.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "toolbox-debuginfo-0:0.0.99.3-10.el9_2.ppc64le", + "product": { + "name": "toolbox-debuginfo-0:0.0.99.3-10.el9_2.ppc64le", + "product_id": "toolbox-debuginfo-0:0.0.99.3-10.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox-debuginfo@0.0.99.3-10.el9_2?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "toolbox-0:0.0.99.3-10.el9_2.x86_64", + "product": { + "name": "toolbox-0:0.0.99.3-10.el9_2.x86_64", + "product_id": "toolbox-0:0.0.99.3-10.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox@0.0.99.3-10.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "toolbox-tests-0:0.0.99.3-10.el9_2.x86_64", + "product": { + "name": "toolbox-tests-0:0.0.99.3-10.el9_2.x86_64", + "product_id": "toolbox-tests-0:0.0.99.3-10.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox-tests@0.0.99.3-10.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "toolbox-debugsource-0:0.0.99.3-10.el9_2.x86_64", + "product": { + "name": "toolbox-debugsource-0:0.0.99.3-10.el9_2.x86_64", + "product_id": "toolbox-debugsource-0:0.0.99.3-10.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox-debugsource@0.0.99.3-10.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "toolbox-debuginfo-0:0.0.99.3-10.el9_2.x86_64", + "product": { + "name": "toolbox-debuginfo-0:0.0.99.3-10.el9_2.x86_64", + "product_id": "toolbox-debuginfo-0:0.0.99.3-10.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox-debuginfo@0.0.99.3-10.el9_2?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "toolbox-0:0.0.99.3-10.el9_2.s390x", + "product": { + "name": "toolbox-0:0.0.99.3-10.el9_2.s390x", + "product_id": "toolbox-0:0.0.99.3-10.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox@0.0.99.3-10.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "toolbox-tests-0:0.0.99.3-10.el9_2.s390x", + "product": { + "name": "toolbox-tests-0:0.0.99.3-10.el9_2.s390x", + "product_id": "toolbox-tests-0:0.0.99.3-10.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox-tests@0.0.99.3-10.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "toolbox-debugsource-0:0.0.99.3-10.el9_2.s390x", + "product": { + "name": "toolbox-debugsource-0:0.0.99.3-10.el9_2.s390x", + "product_id": "toolbox-debugsource-0:0.0.99.3-10.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox-debugsource@0.0.99.3-10.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "toolbox-debuginfo-0:0.0.99.3-10.el9_2.s390x", + "product": { + "name": "toolbox-debuginfo-0:0.0.99.3-10.el9_2.s390x", + "product_id": "toolbox-debuginfo-0:0.0.99.3-10.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox-debuginfo@0.0.99.3-10.el9_2?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler@sha256:d8c08bef1975fb9907a02b124422e2bc40b035c481d97a121c20ada0be2e2014_s390x", + "product": { + "name": "openshift4/ose-cluster-autoscaler@sha256:d8c08bef1975fb9907a02b124422e2bc40b035c481d97a121c20ada0be2e2014_s390x", + "product_id": "openshift4/ose-cluster-autoscaler@sha256:d8c08bef1975fb9907a02b124422e2bc40b035c481d97a121c20ada0be2e2014_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler@sha256:d8c08bef1975fb9907a02b124422e2bc40b035c481d97a121c20ada0be2e2014?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler&tag=v4.13.0-202310162157.p0.gc58c53b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-machine-controllers@sha256:4eb599f8f6d200e1a2ac03092ba1bfe1aea5fb85b1624ce9e2d4ae462728bef5_s390x", + "product": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:4eb599f8f6d200e1a2ac03092ba1bfe1aea5fb85b1624ce9e2d4ae462728bef5_s390x", + "product_id": "openshift4/ose-baremetal-machine-controllers@sha256:4eb599f8f6d200e1a2ac03092ba1bfe1aea5fb85b1624ce9e2d4ae462728bef5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-machine-controllers@sha256:4eb599f8f6d200e1a2ac03092ba1bfe1aea5fb85b1624ce9e2d4ae462728bef5?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers&tag=v4.13.0-202310162157.p0.g7de328a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:2bc2729b0b6ac902d45c9a83cc185701bea293b889b05e561306df8a00b040c2_s390x", + "product": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:2bc2729b0b6ac902d45c9a83cc185701bea293b889b05e561306df8a00b040c2_s390x", + "product_id": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:2bc2729b0b6ac902d45c9a83cc185701bea293b889b05e561306df8a00b040c2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-etcd-rhel8-operator@sha256:2bc2729b0b6ac902d45c9a83cc185701bea293b889b05e561306df8a00b040c2?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator&tag=v4.13.0-202310162157.p0.g8b90ac1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-monitoring-operator@sha256:b1abbdc37969c2f80b9f426fcdeeec3e3dc2558be2efb713c512f4d5a22c0784_s390x", + "product": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:b1abbdc37969c2f80b9f426fcdeeec3e3dc2558be2efb713c512f4d5a22c0784_s390x", + "product_id": "openshift4/ose-cluster-monitoring-operator@sha256:b1abbdc37969c2f80b9f426fcdeeec3e3dc2558be2efb713c512f4d5a22c0784_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-monitoring-operator@sha256:b1abbdc37969c2f80b9f426fcdeeec3e3dc2558be2efb713c512f4d5a22c0784?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-operator&tag=v4.13.0-202310162157.p0.g547c850.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-network-operator@sha256:b64ddd506e8fd2967b23a4eea9e1df457b9d1543ac076fbaae33b998337d8e07_s390x", + "product": { + "name": "openshift4/ose-cluster-network-operator@sha256:b64ddd506e8fd2967b23a4eea9e1df457b9d1543ac076fbaae33b998337d8e07_s390x", + "product_id": "openshift4/ose-cluster-network-operator@sha256:b64ddd506e8fd2967b23a4eea9e1df457b9d1543ac076fbaae33b998337d8e07_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-network-operator@sha256:b64ddd506e8fd2967b23a4eea9e1df457b9d1543ac076fbaae33b998337d8e07?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-network-operator&tag=v4.13.0-202310162157.p0.g961ca3d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:c583300ab56f68dc65544897674505674b940cb82b338304aa9a96bfa2a34245_s390x", + "product": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:c583300ab56f68dc65544897674505674b940cb82b338304aa9a96bfa2a34245_s390x", + "product_id": "openshift4/ose-cluster-node-tuning-operator@sha256:c583300ab56f68dc65544897674505674b940cb82b338304aa9a96bfa2a34245_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-node-tuning-operator@sha256:c583300ab56f68dc65544897674505674b940cb82b338304aa9a96bfa2a34245?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-operator&tag=v4.13.0-202310162157.p0.g9cdb2d7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-version-operator@sha256:888f307aec51a560eeef3f100e718c3ef81728d65a70ed62a8bd13356dbf0965_s390x", + "product": { + "name": "openshift4/ose-cluster-version-operator@sha256:888f307aec51a560eeef3f100e718c3ef81728d65a70ed62a8bd13356dbf0965_s390x", + "product_id": "openshift4/ose-cluster-version-operator@sha256:888f307aec51a560eeef3f100e718c3ef81728d65a70ed62a8bd13356dbf0965_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-version-operator@sha256:888f307aec51a560eeef3f100e718c3ef81728d65a70ed62a8bd13356dbf0965?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-version-operator&tag=v4.13.0-202310162157.p0.gc622124.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-configmap-reloader@sha256:0dbd26f158ebe4b0629777d5495c4eaa3c4b1712c24a1fad5bea67ca0985753f_s390x", + "product": { + "name": "openshift4/ose-configmap-reloader@sha256:0dbd26f158ebe4b0629777d5495c4eaa3c4b1712c24a1fad5bea67ca0985753f_s390x", + "product_id": "openshift4/ose-configmap-reloader@sha256:0dbd26f158ebe4b0629777d5495c4eaa3c4b1712c24a1fad5bea67ca0985753f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-configmap-reloader@sha256:0dbd26f158ebe4b0629777d5495c4eaa3c4b1712c24a1fad5bea67ca0985753f?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-configmap-reloader&tag=v4.13.0-202310162157.p0.g9adad59.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-coredns@sha256:5815330b8dad3dbf99aecd4b9703f714ad25239006a50784569f44276bc8c7b0_s390x", + "product": { + "name": "openshift4/ose-coredns@sha256:5815330b8dad3dbf99aecd4b9703f714ad25239006a50784569f44276bc8c7b0_s390x", + "product_id": "openshift4/ose-coredns@sha256:5815330b8dad3dbf99aecd4b9703f714ad25239006a50784569f44276bc8c7b0_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-coredns@sha256:5815330b8dad3dbf99aecd4b9703f714ad25239006a50784569f44276bc8c7b0?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-coredns&tag=v4.13.0-202310162157.p0.g598440f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:426b3af5d2112ef68163ba7122196756931ed8beb62f4eeece0ebdddf4aafe02_s390x", + "product": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:426b3af5d2112ef68163ba7122196756931ed8beb62f4eeece0ebdddf4aafe02_s390x", + "product_id": "openshift4/ose-csi-external-attacher-rhel8@sha256:426b3af5d2112ef68163ba7122196756931ed8beb62f4eeece0ebdddf4aafe02_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher-rhel8@sha256:426b3af5d2112ef68163ba7122196756931ed8beb62f4eeece0ebdddf4aafe02?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8&tag=v4.13.0-202310162157.p0.ge9d59a2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher@sha256:426b3af5d2112ef68163ba7122196756931ed8beb62f4eeece0ebdddf4aafe02_s390x", + "product": { + "name": "openshift4/ose-csi-external-attacher@sha256:426b3af5d2112ef68163ba7122196756931ed8beb62f4eeece0ebdddf4aafe02_s390x", + "product_id": "openshift4/ose-csi-external-attacher@sha256:426b3af5d2112ef68163ba7122196756931ed8beb62f4eeece0ebdddf4aafe02_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher@sha256:426b3af5d2112ef68163ba7122196756931ed8beb62f4eeece0ebdddf4aafe02?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher&tag=v4.13.0-202310162157.p0.ge9d59a2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:d7f93da502bb316c64d69003582dcaad19ad7a38d9f06df51d065e87d16a6a6a_s390x", + "product": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:d7f93da502bb316c64d69003582dcaad19ad7a38d9f06df51d065e87d16a6a6a_s390x", + "product_id": "openshift4/ose-csi-livenessprobe-rhel8@sha256:d7f93da502bb316c64d69003582dcaad19ad7a38d9f06df51d065e87d16a6a6a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe-rhel8@sha256:d7f93da502bb316c64d69003582dcaad19ad7a38d9f06df51d065e87d16a6a6a?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8&tag=v4.13.0-202310162157.p0.ga888237.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe@sha256:d7f93da502bb316c64d69003582dcaad19ad7a38d9f06df51d065e87d16a6a6a_s390x", + "product": { + "name": "openshift4/ose-csi-livenessprobe@sha256:d7f93da502bb316c64d69003582dcaad19ad7a38d9f06df51d065e87d16a6a6a_s390x", + "product_id": "openshift4/ose-csi-livenessprobe@sha256:d7f93da502bb316c64d69003582dcaad19ad7a38d9f06df51d065e87d16a6a6a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe@sha256:d7f93da502bb316c64d69003582dcaad19ad7a38d9f06df51d065e87d16a6a6a?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe&tag=v4.13.0-202310162157.p0.ga888237.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:d391eb25bec87867022fd4ce92fa92e92f8569df20466e596ecac0cfb55d4253_s390x", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:d391eb25bec87867022fd4ce92fa92e92f8569df20466e596ecac0cfb55d4253_s390x", + "product_id": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:d391eb25bec87867022fd4ce92fa92e92f8569df20466e596ecac0cfb55d4253_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar-rhel8@sha256:d391eb25bec87867022fd4ce92fa92e92f8569df20466e596ecac0cfb55d4253?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8&tag=v4.13.0-202310162157.p0.g5f13d5e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar@sha256:d391eb25bec87867022fd4ce92fa92e92f8569df20466e596ecac0cfb55d4253_s390x", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:d391eb25bec87867022fd4ce92fa92e92f8569df20466e596ecac0cfb55d4253_s390x", + "product_id": "openshift4/ose-csi-node-driver-registrar@sha256:d391eb25bec87867022fd4ce92fa92e92f8569df20466e596ecac0cfb55d4253_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar@sha256:d391eb25bec87867022fd4ce92fa92e92f8569df20466e596ecac0cfb55d4253?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar&tag=v4.13.0-202310162157.p0.g5f13d5e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner@sha256:6d0f7c864a7e03ac0f71f31c5e464fb51e58adfb9fbe6dd4e87c3dc8936b750c_s390x", + "product": { + "name": "openshift4/ose-csi-external-provisioner@sha256:6d0f7c864a7e03ac0f71f31c5e464fb51e58adfb9fbe6dd4e87c3dc8936b750c_s390x", + "product_id": "openshift4/ose-csi-external-provisioner@sha256:6d0f7c864a7e03ac0f71f31c5e464fb51e58adfb9fbe6dd4e87c3dc8936b750c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner@sha256:6d0f7c864a7e03ac0f71f31c5e464fb51e58adfb9fbe6dd4e87c3dc8936b750c?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner&tag=v4.13.0-202310162157.p0.gf1fa809.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:6d0f7c864a7e03ac0f71f31c5e464fb51e58adfb9fbe6dd4e87c3dc8936b750c_s390x", + "product": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:6d0f7c864a7e03ac0f71f31c5e464fb51e58adfb9fbe6dd4e87c3dc8936b750c_s390x", + "product_id": "openshift4/ose-csi-external-provisioner-rhel8@sha256:6d0f7c864a7e03ac0f71f31c5e464fb51e58adfb9fbe6dd4e87c3dc8936b750c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner-rhel8@sha256:6d0f7c864a7e03ac0f71f31c5e464fb51e58adfb9fbe6dd4e87c3dc8936b750c?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8&tag=v4.13.0-202310162157.p0.gf1fa809.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/driver-toolkit-rhel9@sha256:af3fd5e6a0002e6533d92bded7bb33da633d3b1b30d875545685b287b39b0b5a_s390x", + "product": { + "name": "openshift4/driver-toolkit-rhel9@sha256:af3fd5e6a0002e6533d92bded7bb33da633d3b1b30d875545685b287b39b0b5a_s390x", + "product_id": "openshift4/driver-toolkit-rhel9@sha256:af3fd5e6a0002e6533d92bded7bb33da633d3b1b30d875545685b287b39b0b5a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/driver-toolkit-rhel9@sha256:af3fd5e6a0002e6533d92bded7bb33da633d3b1b30d875545685b287b39b0b5a?arch=s390x&repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9&tag=v4.13.0-202310161125.p0.gd719bdc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-proxy@sha256:bfa5ea9e3de0c4496fe0724a8e350713a2ea74f7033c2d2105d6b06ac7c48096_s390x", + "product": { + "name": "openshift4/ose-oauth-proxy@sha256:bfa5ea9e3de0c4496fe0724a8e350713a2ea74f7033c2d2105d6b06ac7c48096_s390x", + "product_id": "openshift4/ose-oauth-proxy@sha256:bfa5ea9e3de0c4496fe0724a8e350713a2ea74f7033c2d2105d6b06ac7c48096_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-proxy@sha256:bfa5ea9e3de0c4496fe0724a8e350713a2ea74f7033c2d2105d6b06ac7c48096?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-oauth-proxy&tag=v4.13.0-202310162157.p0.g44af5a3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-alertmanager@sha256:af5b105d3aaedffa5028273ba8a30bc2ac226e1442c9a5c2fce7c1342446fe05_s390x", + "product": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:af5b105d3aaedffa5028273ba8a30bc2ac226e1442c9a5c2fce7c1342446fe05_s390x", + "product_id": "openshift4/ose-prometheus-alertmanager@sha256:af5b105d3aaedffa5028273ba8a30bc2ac226e1442c9a5c2fce7c1342446fe05_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-alertmanager@sha256:af5b105d3aaedffa5028273ba8a30bc2ac226e1442c9a5c2fce7c1342446fe05?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager&tag=v4.13.0-202310162157.p0.gf44d574.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-node-exporter@sha256:ae08d054d74a47fce9c0285eaa3f795ecdb3a74d63ffd6a62e4258d02d4112dd_s390x", + "product": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:ae08d054d74a47fce9c0285eaa3f795ecdb3a74d63ffd6a62e4258d02d4112dd_s390x", + "product_id": "openshift4/ose-prometheus-node-exporter@sha256:ae08d054d74a47fce9c0285eaa3f795ecdb3a74d63ffd6a62e4258d02d4112dd_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-node-exporter@sha256:ae08d054d74a47fce9c0285eaa3f795ecdb3a74d63ffd6a62e4258d02d4112dd?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter&tag=v4.13.0-202310162157.p0.g5409afd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus@sha256:66f242e9716397c0b9b33174b71ca27bfbfada4a8f843bce83c88692032b5672_s390x", + "product": { + "name": "openshift4/ose-prometheus@sha256:66f242e9716397c0b9b33174b71ca27bfbfada4a8f843bce83c88692032b5672_s390x", + "product_id": "openshift4/ose-prometheus@sha256:66f242e9716397c0b9b33174b71ca27bfbfada4a8f843bce83c88692032b5672_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus@sha256:66f242e9716397c0b9b33174b71ca27bfbfada4a8f843bce83c88692032b5672?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prometheus&tag=v4.13.0-202310162157.p0.g8279148.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:87e816d1a986f07b216271ab18127463ccc719d4f4e0a9b86a5e3a59e58cc59c_s390x", + "product": { + "name": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:87e816d1a986f07b216271ab18127463ccc719d4f4e0a9b86a5e3a59e58cc59c_s390x", + "product_id": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:87e816d1a986f07b216271ab18127463ccc719d4f4e0a9b86a5e3a59e58cc59c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-vpc-node-label-updater-rhel8@sha256:87e816d1a986f07b216271ab18127463ccc719d4f4e0a9b86a5e3a59e58cc59c?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8&tag=v4.13.0-202310162157.p0.g96ff048.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-proxy@sha256:e8a6d318d7beb500a5d1eb3f60707fef948d5c3ce461401bb23765ca891d833f_s390x", + "product": { + "name": "openshift4/ose-kube-proxy@sha256:e8a6d318d7beb500a5d1eb3f60707fef948d5c3ce461401bb23765ca891d833f_s390x", + "product_id": "openshift4/ose-kube-proxy@sha256:e8a6d318d7beb500a5d1eb3f60707fef948d5c3ce461401bb23765ca891d833f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-proxy@sha256:e8a6d318d7beb500a5d1eb3f60707fef948d5c3ce461401bb23765ca891d833f?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-kube-proxy&tag=v4.13.0-202310162157.p0.g12a5bcf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-rbac-proxy@sha256:02a7568ff7f926c3a6895e6ae837ea83f07fcc0eee23ebae53ec037fd3b30744_s390x", + "product": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:02a7568ff7f926c3a6895e6ae837ea83f07fcc0eee23ebae53ec037fd3b30744_s390x", + "product_id": "openshift4/ose-kube-rbac-proxy@sha256:02a7568ff7f926c3a6895e6ae837ea83f07fcc0eee23ebae53ec037fd3b30744_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-rbac-proxy@sha256:02a7568ff7f926c3a6895e6ae837ea83f07fcc0eee23ebae53ec037fd3b30744?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy&tag=v4.13.0-202310162157.p0.gf1205e6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-state-metrics@sha256:4874f8387f0f13127c72011c03d85316e27775cbb91010de5d841350601a5bb7_s390x", + "product": { + "name": "openshift4/ose-kube-state-metrics@sha256:4874f8387f0f13127c72011c03d85316e27775cbb91010de5d841350601a5bb7_s390x", + "product_id": "openshift4/ose-kube-state-metrics@sha256:4874f8387f0f13127c72011c03d85316e27775cbb91010de5d841350601a5bb7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-state-metrics@sha256:4874f8387f0f13127c72011c03d85316e27775cbb91010de5d841350601a5bb7?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics&tag=v4.13.0-202310162157.p0.g4b96984.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-marketplace@sha256:7e3d4f18d60bd1a2b007fe7bfb5bbd05885f0e9815f97cad5c58f7b38bac0e9e_s390x", + "product": { + "name": "openshift4/ose-operator-marketplace@sha256:7e3d4f18d60bd1a2b007fe7bfb5bbd05885f0e9815f97cad5c58f7b38bac0e9e_s390x", + "product_id": "openshift4/ose-operator-marketplace@sha256:7e3d4f18d60bd1a2b007fe7bfb5bbd05885f0e9815f97cad5c58f7b38bac0e9e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-marketplace@sha256:7e3d4f18d60bd1a2b007fe7bfb5bbd05885f0e9815f97cad5c58f7b38bac0e9e?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-operator-marketplace&tag=v4.13.0-202310162157.p0.g3a424b9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-cni@sha256:69a0c8a5df71ddaf139c5e1ffcae9a5ac3a14864bea2a40f405d3ca42a7b97f2_s390x", + "product": { + "name": "openshift4/ose-multus-cni@sha256:69a0c8a5df71ddaf139c5e1ffcae9a5ac3a14864bea2a40f405d3ca42a7b97f2_s390x", + "product_id": "openshift4/ose-multus-cni@sha256:69a0c8a5df71ddaf139c5e1ffcae9a5ac3a14864bea2a40f405d3ca42a7b97f2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-cni@sha256:69a0c8a5df71ddaf139c5e1ffcae9a5ac3a14864bea2a40f405d3ca42a7b97f2?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-multus-cni&tag=v4.13.0-202310162157.p0.gbb616ef.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-server-rhel8@sha256:42ed8862237fe6c511e160eb4e2cc646c71b308f9d2519c3f2c038818eb5013a_s390x", + "product": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:42ed8862237fe6c511e160eb4e2cc646c71b308f9d2519c3f2c038818eb5013a_s390x", + "product_id": "openshift4/ose-oauth-server-rhel8@sha256:42ed8862237fe6c511e160eb4e2cc646c71b308f9d2519c3f2c038818eb5013a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-server-rhel8@sha256:42ed8862237fe6c511e160eb4e2cc646c71b308f9d2519c3f2c038818eb5013a?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel8&tag=v4.13.0-202310162157.p0.gb841149.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-builder@sha256:378556fb4aec475312895ad04ce406d446975b4001b2857b63a3a932f68dbc9f_s390x", + "product": { + "name": "openshift4/ose-docker-builder@sha256:378556fb4aec475312895ad04ce406d446975b4001b2857b63a3a932f68dbc9f_s390x", + "product_id": "openshift4/ose-docker-builder@sha256:378556fb4aec475312895ad04ce406d446975b4001b2857b63a3a932f68dbc9f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-builder@sha256:378556fb4aec475312895ad04ce406d446975b4001b2857b63a3a932f68dbc9f?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-docker-builder&tag=v4.13.0-202310170703.p0.g1fec8a2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli@sha256:a862e13524203cc066637dd02dee1c0f80de6109d0b206e07c03ac67c5e95019_s390x", + "product": { + "name": "openshift4/ose-cli@sha256:a862e13524203cc066637dd02dee1c0f80de6109d0b206e07c03ac67c5e95019_s390x", + "product_id": "openshift4/ose-cli@sha256:a862e13524203cc066637dd02dee1c0f80de6109d0b206e07c03ac67c5e95019_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli@sha256:a862e13524203cc066637dd02dee1c0f80de6109d0b206e07c03ac67c5e95019?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cli&tag=v4.13.0-202310162157.p0.g717d4a5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console@sha256:f37e087e801ac0647492e8972aed5db9ae12bf83c5d0523e64469951be81ef07_s390x", + "product": { + "name": "openshift4/ose-console@sha256:f37e087e801ac0647492e8972aed5db9ae12bf83c5d0523e64469951be81ef07_s390x", + "product_id": "openshift4/ose-console@sha256:f37e087e801ac0647492e8972aed5db9ae12bf83c5d0523e64469951be81ef07_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-console@sha256:f37e087e801ac0647492e8972aed5db9ae12bf83c5d0523e64469951be81ef07?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-console&tag=v4.13.0-202310162157.p0.g303c2bd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console-operator@sha256:1e0f0cd66eefe7c82f670a7d0dcdfcf229d50090c8d5ab64a3c300a326fcf9d4_s390x", + "product": { + "name": "openshift4/ose-console-operator@sha256:1e0f0cd66eefe7c82f670a7d0dcdfcf229d50090c8d5ab64a3c300a326fcf9d4_s390x", + "product_id": "openshift4/ose-console-operator@sha256:1e0f0cd66eefe7c82f670a7d0dcdfcf229d50090c8d5ab64a3c300a326fcf9d4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-console-operator@sha256:1e0f0cd66eefe7c82f670a7d0dcdfcf229d50090c8d5ab64a3c300a326fcf9d4?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-console-operator&tag=v4.13.0-202310162157.p0.gdd6939f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-deployer@sha256:2cd31ab30d42fc1f6cf2cb4e6ec29cee871513e3c04660ca333b8270091ebd52_s390x", + "product": { + "name": "openshift4/ose-deployer@sha256:2cd31ab30d42fc1f6cf2cb4e6ec29cee871513e3c04660ca333b8270091ebd52_s390x", + "product_id": "openshift4/ose-deployer@sha256:2cd31ab30d42fc1f6cf2cb4e6ec29cee871513e3c04660ca333b8270091ebd52_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-deployer@sha256:2cd31ab30d42fc1f6cf2cb4e6ec29cee871513e3c04660ca333b8270091ebd52?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-deployer&tag=v4.13.0-202310162157.p0.g717d4a5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-haproxy-router@sha256:a5f2417a4256f2bcf4b11a610cbc45dc97d632a22de4b4b6fde65bc5c6768ab4_s390x", + "product": { + "name": "openshift4/ose-haproxy-router@sha256:a5f2417a4256f2bcf4b11a610cbc45dc97d632a22de4b4b6fde65bc5c6768ab4_s390x", + "product_id": "openshift4/ose-haproxy-router@sha256:a5f2417a4256f2bcf4b11a610cbc45dc97d632a22de4b4b6fde65bc5c6768ab4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-haproxy-router@sha256:a5f2417a4256f2bcf4b11a610cbc45dc97d632a22de4b4b6fde65bc5c6768ab4?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-haproxy-router&tag=v4.13.0-202310162157.p0.g057eae9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hyperkube@sha256:350c3b7553fc291bd08564cd917affacb13fbbbe1b35d6a171b649675563fa8b_s390x", + "product": { + "name": "openshift4/ose-hyperkube@sha256:350c3b7553fc291bd08564cd917affacb13fbbbe1b35d6a171b649675563fa8b_s390x", + "product_id": "openshift4/ose-hyperkube@sha256:350c3b7553fc291bd08564cd917affacb13fbbbe1b35d6a171b649675563fa8b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-hyperkube@sha256:350c3b7553fc291bd08564cd917affacb13fbbbe1b35d6a171b649675563fa8b?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-hyperkube&tag=v4.13.0-202310162157.p0.gc7606e7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-pod@sha256:3c1fb55eaa133751e695f54e903c9f0565bba5f9eafec023ce865d6a525fcada_s390x", + "product": { + "name": "openshift4/ose-pod@sha256:3c1fb55eaa133751e695f54e903c9f0565bba5f9eafec023ce865d6a525fcada_s390x", + "product_id": "openshift4/ose-pod@sha256:3c1fb55eaa133751e695f54e903c9f0565bba5f9eafec023ce865d6a525fcada_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-pod@sha256:3c1fb55eaa133751e695f54e903c9f0565bba5f9eafec023ce865d6a525fcada?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-pod&tag=v4.13.0-202310162157.p0.gc7606e7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-registry@sha256:533186afada2d72717007f0dc32da1092bb9a16c7d78d0577fd837b3a59ed9d7_s390x", + "product": { + "name": "openshift4/ose-docker-registry@sha256:533186afada2d72717007f0dc32da1092bb9a16c7d78d0577fd837b3a59ed9d7_s390x", + "product_id": "openshift4/ose-docker-registry@sha256:533186afada2d72717007f0dc32da1092bb9a16c7d78d0577fd837b3a59ed9d7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-registry@sha256:533186afada2d72717007f0dc32da1092bb9a16c7d78d0577fd837b3a59ed9d7?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-docker-registry&tag=v4.13.0-202310162157.p0.g47a15ac.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tests@sha256:56f48c5cb7e0fdac232341b2c622c149cf43631285f99566c1a7b6a15d379983_s390x", + "product": { + "name": "openshift4/ose-tests@sha256:56f48c5cb7e0fdac232341b2c622c149cf43631285f99566c1a7b6a15d379983_s390x", + "product_id": "openshift4/ose-tests@sha256:56f48c5cb7e0fdac232341b2c622c149cf43631285f99566c1a7b6a15d379983_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-tests@sha256:56f48c5cb7e0fdac232341b2c622c149cf43631285f99566c1a7b6a15d379983?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-tests&tag=v4.13.0-202310162157.p0.g40d3885.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:d927591fbea0921b7e8b4e2e30253f3087da83e51b8ba98d0ae15875348de3f0_s390x", + "product": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:d927591fbea0921b7e8b4e2e30253f3087da83e51b8ba98d0ae15875348de3f0_s390x", + "product_id": "openshift4/ose-openshift-state-metrics-rhel8@sha256:d927591fbea0921b7e8b4e2e30253f3087da83e51b8ba98d0ae15875348de3f0_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-state-metrics-rhel8@sha256:d927591fbea0921b7e8b4e2e30253f3087da83e51b8ba98d0ae15875348de3f0?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8&tag=v4.13.0-202310162157.p0.g7beb880.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-lifecycle-manager@sha256:8c0cf405326c3c991e314faa727415c2e429c1b6e068dcad41a75c4afd6b2e73_s390x", + "product": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:8c0cf405326c3c991e314faa727415c2e429c1b6e068dcad41a75c4afd6b2e73_s390x", + "product_id": "openshift4/ose-operator-lifecycle-manager@sha256:8c0cf405326c3c991e314faa727415c2e429c1b6e068dcad41a75c4afd6b2e73_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-lifecycle-manager@sha256:8c0cf405326c3c991e314faa727415c2e429c1b6e068dcad41a75c4afd6b2e73?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager&tag=v4.13.0-202310162157.p0.g9957ffd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-registry@sha256:94a5962c249dcff658b5ef724197b459fc2f85260078b2a5e1349fd76f42fb5d_s390x", + "product": { + "name": "openshift4/ose-operator-registry@sha256:94a5962c249dcff658b5ef724197b459fc2f85260078b2a5e1349fd76f42fb5d_s390x", + "product_id": "openshift4/ose-operator-registry@sha256:94a5962c249dcff658b5ef724197b459fc2f85260078b2a5e1349fd76f42fb5d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-registry@sha256:94a5962c249dcff658b5ef724197b459fc2f85260078b2a5e1349fd76f42fb5d?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-operator-registry&tag=v4.13.0-202310162157.p0.g9957ffd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:a7cbdfe16fdc4d7b2d5a22ffcb34704d95b63bbe0433f2744bf967e39c19741d_s390x", + "product": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:a7cbdfe16fdc4d7b2d5a22ffcb34704d95b63bbe0433f2744bf967e39c19741d_s390x", + "product_id": "openshift4/ose-agent-installer-api-server-rhel8@sha256:a7cbdfe16fdc4d7b2d5a22ffcb34704d95b63bbe0433f2744bf967e39c19741d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-api-server-rhel8@sha256:a7cbdfe16fdc4d7b2d5a22ffcb34704d95b63bbe0433f2744bf967e39c19741d?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8&tag=v4.13.0-202310162157.p0.g06189bc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:4e14b6797bdb5652ead47397210968ac65e7883d7d5c780f462fa48bb139c7fd_s390x", + "product": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:4e14b6797bdb5652ead47397210968ac65e7883d7d5c780f462fa48bb139c7fd_s390x", + "product_id": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:4e14b6797bdb5652ead47397210968ac65e7883d7d5c780f462fa48bb139c7fd_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-csr-approver-rhel8@sha256:4e14b6797bdb5652ead47397210968ac65e7883d7d5c780f462fa48bb139c7fd?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8&tag=v4.13.0-202310162157.p0.gedf2542.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:8be9a563421a37812a6fd6df53c0aafb0d85f332a0391e28ba55f53f46caad06_s390x", + "product": { + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:8be9a563421a37812a6fd6df53c0aafb0d85f332a0391e28ba55f53f46caad06_s390x", + "product_id": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:8be9a563421a37812a6fd6df53c0aafb0d85f332a0391e28ba55f53f46caad06_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-node-agent-rhel8@sha256:8be9a563421a37812a6fd6df53c0aafb0d85f332a0391e28ba55f53f46caad06?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8&tag=v4.13.0-202310162157.p0.g35357f5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:88a759d43c08fd7c6a2d4f80261d4a57bb0b7f08300333adb16aea1851fed615_s390x", + "product": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:88a759d43c08fd7c6a2d4f80261d4a57bb0b7f08300333adb16aea1851fed615_s390x", + "product_id": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:88a759d43c08fd7c6a2d4f80261d4a57bb0b7f08300333adb16aea1851fed615_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-orchestrator-rhel8@sha256:88a759d43c08fd7c6a2d4f80261d4a57bb0b7f08300333adb16aea1851fed615?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8&tag=v4.13.0-202310162157.p0.gedf2542.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:68b532dbf340b48d882dbea3aeb63d4db7b19d6909da114f2db96cb31bf220f4_s390x", + "product": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:68b532dbf340b48d882dbea3aeb63d4db7b19d6909da114f2db96cb31bf220f4_s390x", + "product_id": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:68b532dbf340b48d882dbea3aeb63d4db7b19d6909da114f2db96cb31bf220f4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-apiserver-network-proxy-rhel8@sha256:68b532dbf340b48d882dbea3aeb63d4db7b19d6909da114f2db96cb31bf220f4?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8&tag=v4.13.0-202310162157.p0.gf1e6d94.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:6ebf740ea6f5e050bc6dc85729e9e1a1ceb1083c67028a669185cd15cfda4294_s390x", + "product": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:6ebf740ea6f5e050bc6dc85729e9e1a1ceb1083c67028a669185cd15cfda4294_s390x", + "product_id": "openshift4/ose-baremetal-installer-rhel8@sha256:6ebf740ea6f5e050bc6dc85729e9e1a1ceb1083c67028a669185cd15cfda4294_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-installer-rhel8@sha256:6ebf740ea6f5e050bc6dc85729e9e1a1ceb1083c67028a669185cd15cfda4294?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8&tag=v4.13.0-202310162157.p0.g71282c9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:d8d3b3ed25dfab506bf5919af1aa80c62de17cb99c4fa8942ac58b9604981c93_s390x", + "product": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:d8d3b3ed25dfab506bf5919af1aa80c62de17cb99c4fa8942ac58b9604981c93_s390x", + "product_id": "openshift4/ose-baremetal-rhel8-operator@sha256:d8d3b3ed25dfab506bf5919af1aa80c62de17cb99c4fa8942ac58b9604981c93_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-rhel8-operator@sha256:d8d3b3ed25dfab506bf5919af1aa80c62de17cb99c4fa8942ac58b9604981c93?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel8-operator&tag=v4.13.0-202310162157.p0.g12e53b8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:143ec07a0f518d041353ae6e9f4f30063b90421c472f8581219477120e738322_s390x", + "product": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:143ec07a0f518d041353ae6e9f4f30063b90421c472f8581219477120e738322_s390x", + "product_id": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:143ec07a0f518d041353ae6e9f4f30063b90421c472f8581219477120e738322_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-runtimecfg-rhel8@sha256:143ec07a0f518d041353ae6e9f4f30063b90421c472f8581219477120e738322?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8&tag=v4.13.0-202310162157.p0.g1bfd3bc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli-artifacts@sha256:027b96f66d36787b7759e73e4fd92737cbc1bf68be7d49dabdfb4d7488de2081_s390x", + "product": { + "name": "openshift4/ose-cli-artifacts@sha256:027b96f66d36787b7759e73e4fd92737cbc1bf68be7d49dabdfb4d7488de2081_s390x", + "product_id": "openshift4/ose-cli-artifacts@sha256:027b96f66d36787b7759e73e4fd92737cbc1bf68be7d49dabdfb4d7488de2081_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli-artifacts@sha256:027b96f66d36787b7759e73e4fd92737cbc1bf68be7d49dabdfb4d7488de2081?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cli-artifacts&tag=v4.13.0-202310162157.p0.g717d4a5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-credential-operator@sha256:b014c2a64e305b192b7d1a8c04832e1a2b6b7cd4450a2763497470a5646305c2_s390x", + "product": { + "name": "openshift4/ose-cloud-credential-operator@sha256:b014c2a64e305b192b7d1a8c04832e1a2b6b7cd4450a2763497470a5646305c2_s390x", + "product_id": "openshift4/ose-cloud-credential-operator@sha256:b014c2a64e305b192b7d1a8c04832e1a2b6b7cd4450a2763497470a5646305c2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-credential-operator@sha256:b014c2a64e305b192b7d1a8c04832e1a2b6b7cd4450a2763497470a5646305c2?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cloud-credential-operator&tag=v4.13.0-202310170703.p0.g0621fca.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:6c02366c9fb06aa24fcafa97f66f35099bd8a7c80a6e1ec59035a88be1b9fd5c_s390x", + "product": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:6c02366c9fb06aa24fcafa97f66f35099bd8a7c80a6e1ec59035a88be1b9fd5c_s390x", + "product_id": "openshift4/cloud-network-config-controller-rhel8@sha256:6c02366c9fb06aa24fcafa97f66f35099bd8a7c80a6e1ec59035a88be1b9fd5c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cloud-network-config-controller-rhel8@sha256:6c02366c9fb06aa24fcafa97f66f35099bd8a7c80a6e1ec59035a88be1b9fd5c?arch=s390x&repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel8&tag=v4.13.0-202310162157.p0.g4f190d6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-api-rhel8@sha256:0f30e02a6839cd789867eca773370f8b5b52eecceb0ade49e869728ce8e5d62b_s390x", + "product": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:0f30e02a6839cd789867eca773370f8b5b52eecceb0ade49e869728ce8e5d62b_s390x", + "product_id": "openshift4/ose-cluster-api-rhel8@sha256:0f30e02a6839cd789867eca773370f8b5b52eecceb0ade49e869728ce8e5d62b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-api-rhel8@sha256:0f30e02a6839cd789867eca773370f8b5b52eecceb0ade49e869728ce8e5d62b?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel8&tag=v4.13.0-202310162157.p0.g507f873.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-authentication-operator@sha256:486917bf93e61a63cd5645c43f5f45d6d523dff5034ddd5987cc022f97ddd5ad_s390x", + "product": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:486917bf93e61a63cd5645c43f5f45d6d523dff5034ddd5987cc022f97ddd5ad_s390x", + "product_id": "openshift4/ose-cluster-authentication-operator@sha256:486917bf93e61a63cd5645c43f5f45d6d523dff5034ddd5987cc022f97ddd5ad_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-authentication-operator@sha256:486917bf93e61a63cd5645c43f5f45d6d523dff5034ddd5987cc022f97ddd5ad?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-operator&tag=v4.13.0-202310162157.p0.ga044dd9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:440a5fcfb3e22f4becac5cbbff62f9f0d1c15d5e3fe3099a108e90668cf34662_s390x", + "product": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:440a5fcfb3e22f4becac5cbbff62f9f0d1c15d5e3fe3099a108e90668cf34662_s390x", + "product_id": "openshift4/ose-cluster-autoscaler-operator@sha256:440a5fcfb3e22f4becac5cbbff62f9f0d1c15d5e3fe3099a108e90668cf34662_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler-operator@sha256:440a5fcfb3e22f4becac5cbbff62f9f0d1c15d5e3fe3099a108e90668cf34662?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-operator&tag=v4.13.0-202310162157.p0.g8531634.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:83879b0ad3c87dae3b5fc75113f426b641ed158ee395367db104e3fabbb6ca10_s390x", + "product": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:83879b0ad3c87dae3b5fc75113f426b641ed158ee395367db104e3fabbb6ca10_s390x", + "product_id": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:83879b0ad3c87dae3b5fc75113f426b641ed158ee395367db104e3fabbb6ca10_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-baremetal-operator-rhel8@sha256:83879b0ad3c87dae3b5fc75113f426b641ed158ee395367db104e3fabbb6ca10?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8&tag=v4.13.0-202310162157.p0.g3d1da56.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-bootstrap@sha256:07c27970cbb870fb1caf134bf4f70b87968d4ac6211457f98d7d49ffbff771cc_s390x", + "product": { + "name": "openshift4/ose-cluster-bootstrap@sha256:07c27970cbb870fb1caf134bf4f70b87968d4ac6211457f98d7d49ffbff771cc_s390x", + "product_id": "openshift4/ose-cluster-bootstrap@sha256:07c27970cbb870fb1caf134bf4f70b87968d4ac6211457f98d7d49ffbff771cc_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-bootstrap@sha256:07c27970cbb870fb1caf134bf4f70b87968d4ac6211457f98d7d49ffbff771cc?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap&tag=v4.13.0-202310162157.p0.gee908b6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:f0ba72150cca5e3f4e12e558942dae23724c91fa2a2bdf7dbfb5e37797e69745_s390x", + "product": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:f0ba72150cca5e3f4e12e558942dae23724c91fa2a2bdf7dbfb5e37797e69745_s390x", + "product_id": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:f0ba72150cca5e3f4e12e558942dae23724c91fa2a2bdf7dbfb5e37797e69745_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-operator-container-rhel8@sha256:f0ba72150cca5e3f4e12e558942dae23724c91fa2a2bdf7dbfb5e37797e69745?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8&tag=v4.13.0-202310162157.p0.gce1c9a3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:f0ba72150cca5e3f4e12e558942dae23724c91fa2a2bdf7dbfb5e37797e69745_s390x", + "product": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:f0ba72150cca5e3f4e12e558942dae23724c91fa2a2bdf7dbfb5e37797e69745_s390x", + "product_id": "openshift4/ose-cluster-capi-rhel8-operator@sha256:f0ba72150cca5e3f4e12e558942dae23724c91fa2a2bdf7dbfb5e37797e69745_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-rhel8-operator@sha256:f0ba72150cca5e3f4e12e558942dae23724c91fa2a2bdf7dbfb5e37797e69745?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator&tag=v4.13.0-202310162157.p0.gce1c9a3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:c202fb62ebf840595d4133a935745315dedede79d6341646f7a77b4596b2b949_s390x", + "product": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:c202fb62ebf840595d4133a935745315dedede79d6341646f7a77b4596b2b949_s390x", + "product_id": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:c202fb62ebf840595d4133a935745315dedede79d6341646f7a77b4596b2b949_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:c202fb62ebf840595d4133a935745315dedede79d6341646f7a77b4596b2b949?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8&tag=v4.13.0-202310162157.p0.gef4594e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-config-operator@sha256:61522e9f12375d3641e7adc96dcb5d351a7543eefa144c47123a493d9e96202c_s390x", + "product": { + "name": "openshift4/ose-cluster-config-operator@sha256:61522e9f12375d3641e7adc96dcb5d351a7543eefa144c47123a493d9e96202c_s390x", + "product_id": "openshift4/ose-cluster-config-operator@sha256:61522e9f12375d3641e7adc96dcb5d351a7543eefa144c47123a493d9e96202c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-config-operator@sha256:61522e9f12375d3641e7adc96dcb5d351a7543eefa144c47123a493d9e96202c?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-config-operator&tag=v4.13.0-202310162157.p0.ga9e658a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:0c8234ae5dded79eaeaf996f634cab62343bf67c36455bd713f13fa8fc2bcc12_s390x", + "product": { + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:0c8234ae5dded79eaeaf996f634cab62343bf67c36455bd713f13fa8fc2bcc12_s390x", + "product_id": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:0c8234ae5dded79eaeaf996f634cab62343bf67c36455bd713f13fa8fc2bcc12_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:0c8234ae5dded79eaeaf996f634cab62343bf67c36455bd713f13fa8fc2bcc12?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8&tag=v4.13.0-202310162157.p0.g383a69c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:67273aa5705c9948c7477f0c15e484d1799a160f77fa330703c6653f66a4b00f_s390x", + "product": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:67273aa5705c9948c7477f0c15e484d1799a160f77fa330703c6653f66a4b00f_s390x", + "product_id": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:67273aa5705c9948c7477f0c15e484d1799a160f77fa330703c6653f66a4b00f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:67273aa5705c9948c7477f0c15e484d1799a160f77fa330703c6653f66a4b00f?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator&tag=v4.13.0-202310162157.p0.g97b486c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-dns-operator@sha256:c5ee2da7449347359dc56de8eb82e6fdcd2dfe768ce4c9390902107ecfb514cf_s390x", + "product": { + "name": "openshift4/ose-cluster-dns-operator@sha256:c5ee2da7449347359dc56de8eb82e6fdcd2dfe768ce4c9390902107ecfb514cf_s390x", + "product_id": "openshift4/ose-cluster-dns-operator@sha256:c5ee2da7449347359dc56de8eb82e6fdcd2dfe768ce4c9390902107ecfb514cf_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-dns-operator@sha256:c5ee2da7449347359dc56de8eb82e6fdcd2dfe768ce4c9390902107ecfb514cf?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-dns-operator&tag=v4.13.0-202310162157.p0.gc6768d4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-image-registry-operator@sha256:35c5cccafe6b7a0f927ee40b48b9637f1334ddfed84a5d6151d0b330481caf06_s390x", + "product": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:35c5cccafe6b7a0f927ee40b48b9637f1334ddfed84a5d6151d0b330481caf06_s390x", + "product_id": "openshift4/ose-cluster-image-registry-operator@sha256:35c5cccafe6b7a0f927ee40b48b9637f1334ddfed84a5d6151d0b330481caf06_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-image-registry-operator@sha256:35c5cccafe6b7a0f927ee40b48b9637f1334ddfed84a5d6151d0b330481caf06?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-operator&tag=v4.13.0-202310162157.p0.g3ed61e2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-ingress-operator@sha256:d262d5eede9e5bca16a1bbfacba164c886fc53904858ea7b349513ca70816ae1_s390x", + "product": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:d262d5eede9e5bca16a1bbfacba164c886fc53904858ea7b349513ca70816ae1_s390x", + "product_id": "openshift4/ose-cluster-ingress-operator@sha256:d262d5eede9e5bca16a1bbfacba164c886fc53904858ea7b349513ca70816ae1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-ingress-operator@sha256:d262d5eede9e5bca16a1bbfacba164c886fc53904858ea7b349513ca70816ae1?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-operator&tag=v4.13.0-202310162157.p0.g2ecad04.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:a62ea9e7dea3fb40f0ce6193b647e8c4bb98baa171c3d3bf0a12517dd98d1397_s390x", + "product": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:a62ea9e7dea3fb40f0ce6193b647e8c4bb98baa171c3d3bf0a12517dd98d1397_s390x", + "product_id": "openshift4/ose-cluster-kube-apiserver-operator@sha256:a62ea9e7dea3fb40f0ce6193b647e8c4bb98baa171c3d3bf0a12517dd98d1397_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-apiserver-operator@sha256:a62ea9e7dea3fb40f0ce6193b647e8c4bb98baa171c3d3bf0a12517dd98d1397?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator&tag=v4.13.0-202310162157.p0.gd525f5d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:299ec13270705011997b72afe65bb182b35dc4a51782d7dc91af5da0e8b4f2eb_s390x", + "product": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:299ec13270705011997b72afe65bb182b35dc4a51782d7dc91af5da0e8b4f2eb_s390x", + "product_id": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:299ec13270705011997b72afe65bb182b35dc4a51782d7dc91af5da0e8b4f2eb_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel8-operator@sha256:299ec13270705011997b72afe65bb182b35dc4a51782d7dc91af5da0e8b4f2eb?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator&tag=v4.13.0-202310162157.p0.g8d627a5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:564975a069879766b69f108f23999427e200d556d0bd2113a0fd3d26f77600d9_s390x", + "product": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:564975a069879766b69f108f23999427e200d556d0bd2113a0fd3d26f77600d9_s390x", + "product_id": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:564975a069879766b69f108f23999427e200d556d0bd2113a0fd3d26f77600d9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-controller-manager-operator@sha256:564975a069879766b69f108f23999427e200d556d0bd2113a0fd3d26f77600d9?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator&tag=v4.13.0-202310162157.p0.gcc6a314.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:6bd4a93307ab0883f78ed6bd6ff99710aad27b5d3671c873174c8746cded31c0_s390x", + "product": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:6bd4a93307ab0883f78ed6bd6ff99710aad27b5d3671c873174c8746cded31c0_s390x", + "product_id": "openshift4/ose-cluster-kube-scheduler-operator@sha256:6bd4a93307ab0883f78ed6bd6ff99710aad27b5d3671c873174c8746cded31c0_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-scheduler-operator@sha256:6bd4a93307ab0883f78ed6bd6ff99710aad27b5d3671c873174c8746cded31c0?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator&tag=v4.13.0-202310162157.p0.gb4c50a4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2b69a2deef0934596aa8f411ef125e7ab318d48564d16737a93c98794edf7725_s390x", + "product": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2b69a2deef0934596aa8f411ef125e7ab318d48564d16737a93c98794edf7725_s390x", + "product_id": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2b69a2deef0934596aa8f411ef125e7ab318d48564d16737a93c98794edf7725_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2b69a2deef0934596aa8f411ef125e7ab318d48564d16737a93c98794edf7725?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator&tag=v4.13.0-202310162157.p0.g9f47598.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-machine-approver@sha256:19d38da20f35fdedfcd77996fc9fabece705f5a0383999944a417ea298f8562a_s390x", + "product": { + "name": "openshift4/ose-cluster-machine-approver@sha256:19d38da20f35fdedfcd77996fc9fabece705f5a0383999944a417ea298f8562a_s390x", + "product_id": "openshift4/ose-cluster-machine-approver@sha256:19d38da20f35fdedfcd77996fc9fabece705f5a0383999944a417ea298f8562a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-machine-approver@sha256:19d38da20f35fdedfcd77996fc9fabece705f5a0383999944a417ea298f8562a?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver&tag=v4.13.0-202310162157.p0.gce66cd5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:451793dbbeb5c344182f9ef593ce7dfb2c10a2a3699f17ec84a8822a203c75d2_s390x", + "product": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:451793dbbeb5c344182f9ef593ce7dfb2c10a2a3699f17ec84a8822a203c75d2_s390x", + "product_id": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:451793dbbeb5c344182f9ef593ce7dfb2c10a2a3699f17ec84a8822a203c75d2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-apiserver-operator@sha256:451793dbbeb5c344182f9ef593ce7dfb2c10a2a3699f17ec84a8822a203c75d2?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator&tag=v4.13.0-202310162157.p0.gea4f097.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:a9c2799e64edae252fdeaa5105a23405f76634db4a845a235b0f4139c49cfcd1_s390x", + "product": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:a9c2799e64edae252fdeaa5105a23405f76634db4a845a235b0f4139c49cfcd1_s390x", + "product_id": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:a9c2799e64edae252fdeaa5105a23405f76634db4a845a235b0f4139c49cfcd1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-controller-manager-operator@sha256:a9c2799e64edae252fdeaa5105a23405f76634db4a845a235b0f4139c49cfcd1?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator&tag=v4.13.0-202310162157.p0.g9a8aba8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:df65525c96d32f50bc11cba1c92a6bb7f4a9c430522f9636bd49e1c2c31344b9_s390x", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:df65525c96d32f50bc11cba1c92a6bb7f4a9c430522f9636bd49e1c2c31344b9_s390x", + "product_id": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:df65525c96d32f50bc11cba1c92a6bb7f4a9c430522f9636bd49e1c2c31344b9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8-operator@sha256:df65525c96d32f50bc11cba1c92a6bb7f4a9c430522f9636bd49e1c2c31344b9?arch=s390x&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator&tag=v4.13.0-202310162157.p0.gaca579d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:5cc3e3c047777ad8cd5240b11f5fddb8eaad1b26fe2d2bad4c14a09ee6867a76_s390x", + "product": { + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:5cc3e3c047777ad8cd5240b11f5fddb8eaad1b26fe2d2bad4c14a09ee6867a76_s390x", + "product_id": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:5cc3e3c047777ad8cd5240b11f5fddb8eaad1b26fe2d2bad4c14a09ee6867a76_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-platform-operators-manager-rhel8@sha256:5cc3e3c047777ad8cd5240b11f5fddb8eaad1b26fe2d2bad4c14a09ee6867a76?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8&tag=v4.13.0-202310170326.p0.g471a806.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:5a2ed72a6eb9158257b0c1a6c29e59f9ab65b814bb154bc0ae4acb4bfdb9085a_s390x", + "product": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:5a2ed72a6eb9158257b0c1a6c29e59f9ab65b814bb154bc0ae4acb4bfdb9085a_s390x", + "product_id": "openshift4/ose-cluster-policy-controller-rhel8@sha256:5a2ed72a6eb9158257b0c1a6c29e59f9ab65b814bb154bc0ae4acb4bfdb9085a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-policy-controller-rhel8@sha256:5a2ed72a6eb9158257b0c1a6c29e59f9ab65b814bb154bc0ae4acb4bfdb9085a?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8&tag=v4.13.0-202310162157.p0.g8d2af85.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-samples-operator@sha256:b92368cb5ce01b36f7e09ecaa936385c9ec5b15a9ac0e2e77985be74fe4b2b16_s390x", + "product": { + "name": "openshift4/ose-cluster-samples-operator@sha256:b92368cb5ce01b36f7e09ecaa936385c9ec5b15a9ac0e2e77985be74fe4b2b16_s390x", + "product_id": "openshift4/ose-cluster-samples-operator@sha256:b92368cb5ce01b36f7e09ecaa936385c9ec5b15a9ac0e2e77985be74fe4b2b16_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-samples-operator@sha256:b92368cb5ce01b36f7e09ecaa936385c9ec5b15a9ac0e2e77985be74fe4b2b16?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-samples-operator&tag=v4.13.0-202310162157.p0.gf785bad.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-storage-operator@sha256:8db34a90344599058b8872d2ac0c88e21595312a9b214cab3437c102b1e05ab8_s390x", + "product": { + "name": "openshift4/ose-cluster-storage-operator@sha256:8db34a90344599058b8872d2ac0c88e21595312a9b214cab3437c102b1e05ab8_s390x", + "product_id": "openshift4/ose-cluster-storage-operator@sha256:8db34a90344599058b8872d2ac0c88e21595312a9b214cab3437c102b1e05ab8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-storage-operator@sha256:8db34a90344599058b8872d2ac0c88e21595312a9b214cab3437c102b1e05ab8?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-cluster-storage-operator&tag=v4.13.0-202310162157.p0.g6769015.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:3c23c49605e129f64225dbbabd0283e0726c43e64855333ca7a1655613bf1adc_s390x", + "product": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:3c23c49605e129f64225dbbabd0283e0726c43e64855333ca7a1655613bf1adc_s390x", + "product_id": "openshift4/ose-container-networking-plugins-rhel8@sha256:3c23c49605e129f64225dbbabd0283e0726c43e64855333ca7a1655613bf1adc_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-container-networking-plugins-rhel8@sha256:3c23c49605e129f64225dbbabd0283e0726c43e64855333ca7a1655613bf1adc?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8&tag=v4.13.0-202310162157.p0.gdbf24de.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:1300f74056d65f6ab5a38eefd1ea209f180cbea9719ba2be0ffd3cc0e5d46127_s390x", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:1300f74056d65f6ab5a38eefd1ea209f180cbea9719ba2be0ffd3cc0e5d46127_s390x", + "product_id": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:1300f74056d65f6ab5a38eefd1ea209f180cbea9719ba2be0ffd3cc0e5d46127_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-rhel8@sha256:1300f74056d65f6ab5a38eefd1ea209f180cbea9719ba2be0ffd3cc0e5d46127?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8&tag=v4.13.0-202310162157.p0.gf797d45.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:81efea3b7f8c728e313dedc8576d236fe9c6bcccfd9b27be1ff8b0bbe86da5b0_s390x", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:81efea3b7f8c728e313dedc8576d236fe9c6bcccfd9b27be1ff8b0bbe86da5b0_s390x", + "product_id": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:81efea3b7f8c728e313dedc8576d236fe9c6bcccfd9b27be1ff8b0bbe86da5b0_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-operator-rhel8@sha256:81efea3b7f8c728e313dedc8576d236fe9c6bcccfd9b27be1ff8b0bbe86da5b0?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8&tag=v4.13.0-202310162157.p0.g318c84a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:eb9e1e483983f73659b8bfc7600324e386665f4da3217eb19ec0b6d82cc42e7f_s390x", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:eb9e1e483983f73659b8bfc7600324e386665f4da3217eb19ec0b6d82cc42e7f_s390x", + "product_id": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:eb9e1e483983f73659b8bfc7600324e386665f4da3217eb19ec0b6d82cc42e7f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-webhook-rhel8@sha256:eb9e1e483983f73659b8bfc7600324e386665f4da3217eb19ec0b6d82cc42e7f?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8&tag=v4.13.0-202310162157.p0.gf797d45.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:b1e65e2a060ea92bb897623d57b49031d15a29880c0bcf48ce3fb6b89ad96bb5_s390x", + "product": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:b1e65e2a060ea92bb897623d57b49031d15a29880c0bcf48ce3fb6b89ad96bb5_s390x", + "product_id": "openshift4/ose-csi-external-resizer-rhel8@sha256:b1e65e2a060ea92bb897623d57b49031d15a29880c0bcf48ce3fb6b89ad96bb5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer-rhel8@sha256:b1e65e2a060ea92bb897623d57b49031d15a29880c0bcf48ce3fb6b89ad96bb5?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8&tag=v4.13.0-202310162157.p0.g974ac36.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer@sha256:b1e65e2a060ea92bb897623d57b49031d15a29880c0bcf48ce3fb6b89ad96bb5_s390x", + "product": { + "name": "openshift4/ose-csi-external-resizer@sha256:b1e65e2a060ea92bb897623d57b49031d15a29880c0bcf48ce3fb6b89ad96bb5_s390x", + "product_id": "openshift4/ose-csi-external-resizer@sha256:b1e65e2a060ea92bb897623d57b49031d15a29880c0bcf48ce3fb6b89ad96bb5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer@sha256:b1e65e2a060ea92bb897623d57b49031d15a29880c0bcf48ce3fb6b89ad96bb5?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer&tag=v4.13.0-202310162157.p0.g974ac36.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:f01f610914f105661403199cdc5a620cf9135ce5d0346bedd65279eaa983a749_s390x", + "product": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:f01f610914f105661403199cdc5a620cf9135ce5d0346bedd65279eaa983a749_s390x", + "product_id": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:f01f610914f105661403199cdc5a620cf9135ce5d0346bedd65279eaa983a749_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter-rhel8@sha256:f01f610914f105661403199cdc5a620cf9135ce5d0346bedd65279eaa983a749?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8&tag=v4.13.0-202310162157.p0.g3f52ee7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter@sha256:f01f610914f105661403199cdc5a620cf9135ce5d0346bedd65279eaa983a749_s390x", + "product": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:f01f610914f105661403199cdc5a620cf9135ce5d0346bedd65279eaa983a749_s390x", + "product_id": "openshift4/ose-csi-external-snapshotter@sha256:f01f610914f105661403199cdc5a620cf9135ce5d0346bedd65279eaa983a749_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter@sha256:f01f610914f105661403199cdc5a620cf9135ce5d0346bedd65279eaa983a749?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter&tag=v4.13.0-202310162157.p0.g3f52ee7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:8cefe183679352b2044ea6fc0428c42394694d00df9ba5915892bb17ace5df23_s390x", + "product": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:8cefe183679352b2044ea6fc0428c42394694d00df9ba5915892bb17ace5df23_s390x", + "product_id": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:8cefe183679352b2044ea6fc0428c42394694d00df9ba5915892bb17ace5df23_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller-rhel8@sha256:8cefe183679352b2044ea6fc0428c42394694d00df9ba5915892bb17ace5df23?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8&tag=v4.13.0-202310162157.p0.g3f52ee7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller@sha256:8cefe183679352b2044ea6fc0428c42394694d00df9ba5915892bb17ace5df23_s390x", + "product": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:8cefe183679352b2044ea6fc0428c42394694d00df9ba5915892bb17ace5df23_s390x", + "product_id": "openshift4/ose-csi-snapshot-controller@sha256:8cefe183679352b2044ea6fc0428c42394694d00df9ba5915892bb17ace5df23_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller@sha256:8cefe183679352b2044ea6fc0428c42394694d00df9ba5915892bb17ace5df23?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller&tag=v4.13.0-202310162157.p0.g3f52ee7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:95d8ab2ab9ff10bd26ef809ec0c0d82bfb649c54a7916f2b6e80a8cb2e7d55e3_s390x", + "product": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:95d8ab2ab9ff10bd26ef809ec0c0d82bfb649c54a7916f2b6e80a8cb2e7d55e3_s390x", + "product_id": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:95d8ab2ab9ff10bd26ef809ec0c0d82bfb649c54a7916f2b6e80a8cb2e7d55e3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-validation-webhook-rhel8@sha256:95d8ab2ab9ff10bd26ef809ec0c0d82bfb649c54a7916f2b6e80a8cb2e7d55e3?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8&tag=v4.13.0-202310162157.p0.g3f52ee7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/egress-router-cni-rhel8@sha256:2e4351145ce1d199647ee9ac36c5dbc72d87e66b7d9c3b7a38265edaf2f8dfb8_s390x", + "product": { + "name": "openshift4/egress-router-cni-rhel8@sha256:2e4351145ce1d199647ee9ac36c5dbc72d87e66b7d9c3b7a38265edaf2f8dfb8_s390x", + "product_id": "openshift4/egress-router-cni-rhel8@sha256:2e4351145ce1d199647ee9ac36c5dbc72d87e66b7d9c3b7a38265edaf2f8dfb8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/egress-router-cni-rhel8@sha256:2e4351145ce1d199647ee9ac36c5dbc72d87e66b7d9c3b7a38265edaf2f8dfb8?arch=s390x&repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel8&tag=v4.13.0-202310162157.p0.g756e384.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-etcd-rhel9@sha256:21d0250de7b5754980e5457d59757c98d78eb95f6bca0cd0da890efdfc983e2a_s390x", + "product": { + "name": "openshift4/ose-etcd-rhel9@sha256:21d0250de7b5754980e5457d59757c98d78eb95f6bca0cd0da890efdfc983e2a_s390x", + "product_id": "openshift4/ose-etcd-rhel9@sha256:21d0250de7b5754980e5457d59757c98d78eb95f6bca0cd0da890efdfc983e2a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-etcd-rhel9@sha256:21d0250de7b5754980e5457d59757c98d78eb95f6bca0cd0da890efdfc983e2a?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9&tag=v4.13.0-202310162157.p0.g7efbc01.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hypershift-rhel8@sha256:3310b16dc513d9fe72af416abff6ed34eb5f7d6916fd172204f31aaa4de15984_s390x", + "product": { + "name": "openshift4/ose-hypershift-rhel8@sha256:3310b16dc513d9fe72af416abff6ed34eb5f7d6916fd172204f31aaa4de15984_s390x", + "product_id": "openshift4/ose-hypershift-rhel8@sha256:3310b16dc513d9fe72af416abff6ed34eb5f7d6916fd172204f31aaa4de15984_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-hypershift-rhel8@sha256:3310b16dc513d9fe72af416abff6ed34eb5f7d6916fd172204f31aaa4de15984?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel8&tag=v4.13.0-202310162157.p0.g2c52769.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:fbc637b28185318bdb47597e469385007f450c0da8b9d25a83d61070cd92b2da_s390x", + "product": { + "name": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:fbc637b28185318bdb47597e469385007f450c0da8b9d25a83d61070cd92b2da_s390x", + "product_id": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:fbc637b28185318bdb47597e469385007f450c0da8b9d25a83d61070cd92b2da_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:fbc637b28185318bdb47597e469385007f450c0da8b9d25a83d61070cd92b2da?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8&tag=v4.13.0-202310162157.p0.gd221afa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:c9324b86a24545244af4fe815ee59ca4a7abc4a2acb4b31f9315f31d5b7c2dde_s390x", + "product": { + "name": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:c9324b86a24545244af4fe815ee59ca4a7abc4a2acb4b31f9315f31d5b7c2dde_s390x", + "product_id": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:c9324b86a24545244af4fe815ee59ca4a7abc4a2acb4b31f9315f31d5b7c2dde_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-cloud-controller-manager-rhel8@sha256:c9324b86a24545244af4fe815ee59ca4a7abc4a2acb4b31f9315f31d5b7c2dde?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.g59edd92.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:46e06cf31e510d50e39ca3b4d6745293951ec3d8bb2cae68b0967199d4998be2_s390x", + "product": { + "name": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:46e06cf31e510d50e39ca3b4d6745293951ec3d8bb2cae68b0967199d4998be2_s390x", + "product_id": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:46e06cf31e510d50e39ca3b4d6745293951ec3d8bb2cae68b0967199d4998be2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibmcloud-machine-controllers-rhel8@sha256:46e06cf31e510d50e39ca3b4d6745293951ec3d8bb2cae68b0967199d4998be2?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8&tag=v4.13.0-202310162157.p0.gbb253a0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:d9f8f6942468cbf4e038a65b2a738b080596e9aad9fab1e8c1de5a28e2d92f92_s390x", + "product": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:d9f8f6942468cbf4e038a65b2a738b080596e9aad9fab1e8c1de5a28e2d92f92_s390x", + "product_id": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:d9f8f6942468cbf4e038a65b2a738b080596e9aad9fab1e8c1de5a28e2d92f92_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel8@sha256:d9f8f6942468cbf4e038a65b2a738b080596e9aad9fab1e8c1de5a28e2d92f92?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.g42b5c25.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59d821d7aa2aa6934236018ba10e428151941688d6d399857aeaff1e8e65d8d9_s390x", + "product": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59d821d7aa2aa6934236018ba10e428151941688d6d399857aeaff1e8e65d8d9_s390x", + "product_id": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59d821d7aa2aa6934236018ba10e428151941688d6d399857aeaff1e8e65d8d9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59d821d7aa2aa6934236018ba10e428151941688d6d399857aeaff1e8e65d8d9?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8&tag=v4.13.0-202310162157.p0.g4083eb7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-insights-rhel8-operator@sha256:a2c54c24b0ce54245032c6ad4f452dac9be3ce2afce471227fa936f121db94cc_s390x", + "product": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:a2c54c24b0ce54245032c6ad4f452dac9be3ce2afce471227fa936f121db94cc_s390x", + "product_id": "openshift4/ose-insights-rhel8-operator@sha256:a2c54c24b0ce54245032c6ad4f452dac9be3ce2afce471227fa936f121db94cc_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-insights-rhel8-operator@sha256:a2c54c24b0ce54245032c6ad4f452dac9be3ce2afce471227fa936f121db94cc?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-insights-rhel8-operator&tag=v4.13.0-202310162157.p0.gba18a08.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer-artifacts@sha256:d90dabedfcca2efbd8bc64c99a216e51f2fae51d356d28203247ef913b7c1375_s390x", + "product": { + "name": "openshift4/ose-installer-artifacts@sha256:d90dabedfcca2efbd8bc64c99a216e51f2fae51d356d28203247ef913b7c1375_s390x", + "product_id": "openshift4/ose-installer-artifacts@sha256:d90dabedfcca2efbd8bc64c99a216e51f2fae51d356d28203247ef913b7c1375_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer-artifacts@sha256:d90dabedfcca2efbd8bc64c99a216e51f2fae51d356d28203247ef913b7c1375?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-installer-artifacts&tag=v4.13.0-202310170703.p0.g71282c9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer@sha256:bbd01a126f1a5d81d18e8bafc8d52b2c2f3ce6e39a41ba985087cdf010355d67_s390x", + "product": { + "name": "openshift4/ose-installer@sha256:bbd01a126f1a5d81d18e8bafc8d52b2c2f3ce6e39a41ba985087cdf010355d67_s390x", + "product_id": "openshift4/ose-installer@sha256:bbd01a126f1a5d81d18e8bafc8d52b2c2f3ce6e39a41ba985087cdf010355d67_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer@sha256:bbd01a126f1a5d81d18e8bafc8d52b2c2f3ce6e39a41ba985087cdf010355d67?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-installer&tag=v4.13.0-202310162157.p0.g71282c9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:df5478192dad7caa5dfa5ab41bb93364815266665e65ae128f60f21ed530986c_s390x", + "product": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:df5478192dad7caa5dfa5ab41bb93364815266665e65ae128f60f21ed530986c_s390x", + "product_id": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:df5478192dad7caa5dfa5ab41bb93364815266665e65ae128f60f21ed530986c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-storage-version-migrator-rhel8@sha256:df5478192dad7caa5dfa5ab41bb93364815266665e65ae128f60f21ed530986c?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8&tag=v4.13.0-202310162157.p0.gbad104d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:b9e66480c004b2c5406de3b6d9e7332f88758fbeedd783a176c93a968c61c201_s390x", + "product": { + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:b9e66480c004b2c5406de3b6d9e7332f88758fbeedd783a176c93a968c61c201_s390x", + "product_id": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:b9e66480c004b2c5406de3b6d9e7332f88758fbeedd783a176c93a968c61c201_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel8@sha256:b9e66480c004b2c5406de3b6d9e7332f88758fbeedd783a176c93a968c61c201?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.gee2033e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:bd9e43d47e77fde8c2a5cd3a0fd5fe0aea34a7ee75ccd63499914ffe7e49ce14_s390x", + "product": { + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:bd9e43d47e77fde8c2a5cd3a0fd5fe0aea34a7ee75ccd63499914ffe7e49ce14_s390x", + "product_id": "openshift4/kubevirt-csi-driver-rhel8@sha256:bd9e43d47e77fde8c2a5cd3a0fd5fe0aea34a7ee75ccd63499914ffe7e49ce14_s390x", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-csi-driver-rhel8@sha256:bd9e43d47e77fde8c2a5cd3a0fd5fe0aea34a7ee75ccd63499914ffe7e49ce14?arch=s390x&repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.gefa0b94.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-libvirt-machine-controllers@sha256:2b2ab64533358bceb510e5b52d49fb96b90f8656270537ecc39f02863475ce87_s390x", + "product": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:2b2ab64533358bceb510e5b52d49fb96b90f8656270537ecc39f02863475ce87_s390x", + "product_id": "openshift4/ose-libvirt-machine-controllers@sha256:2b2ab64533358bceb510e5b52d49fb96b90f8656270537ecc39f02863475ce87_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-libvirt-machine-controllers@sha256:2b2ab64533358bceb510e5b52d49fb96b90f8656270537ecc39f02863475ce87?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers&tag=v4.13.0-202310162157.p0.gd4b7a8a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-operator@sha256:b5d621bcfe98246092e9649d76eaa7e880178bde7a52168a75de7c6895c7e422_s390x", + "product": { + "name": "openshift4/ose-machine-api-operator@sha256:b5d621bcfe98246092e9649d76eaa7e880178bde7a52168a75de7c6895c7e422_s390x", + "product_id": "openshift4/ose-machine-api-operator@sha256:b5d621bcfe98246092e9649d76eaa7e880178bde7a52168a75de7c6895c7e422_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-operator@sha256:b5d621bcfe98246092e9649d76eaa7e880178bde7a52168a75de7c6895c7e422?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-machine-api-operator&tag=v4.13.0-202310162157.p0.g370fdaa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:068efa8d1fad3c64c3b4647cfd12d6a0599468883bc574450bc2a0555da20751_s390x", + "product": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:068efa8d1fad3c64c3b4647cfd12d6a0599468883bc574450bc2a0555da20751_s390x", + "product_id": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:068efa8d1fad3c64c3b4647cfd12d6a0599468883bc574450bc2a0555da20751_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-openstack-rhel8@sha256:068efa8d1fad3c64c3b4647cfd12d6a0599468883bc574450bc2a0555da20751?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8&tag=v4.13.0-202310162157.p0.g7bce9d6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-config-operator@sha256:d1882e735eb54357f0dad9a0cf3e64bc7e64fd000cd9d668e24dff5089b694b2_s390x", + "product": { + "name": "openshift4/ose-machine-config-operator@sha256:d1882e735eb54357f0dad9a0cf3e64bc7e64fd000cd9d668e24dff5089b694b2_s390x", + "product_id": "openshift4/ose-machine-config-operator@sha256:d1882e735eb54357f0dad9a0cf3e64bc7e64fd000cd9d668e24dff5089b694b2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-config-operator@sha256:d1882e735eb54357f0dad9a0cf3e64bc7e64fd000cd9d668e24dff5089b694b2?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-machine-config-operator&tag=v4.13.0-202310162157.p0.g1c52dd1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-admission-controller@sha256:bd96c7861e7e085e5806b000b98ad032ce4ab0536fcaf8782a3aaa1a0dbc3236_s390x", + "product": { + "name": "openshift4/ose-multus-admission-controller@sha256:bd96c7861e7e085e5806b000b98ad032ce4ab0536fcaf8782a3aaa1a0dbc3236_s390x", + "product_id": "openshift4/ose-multus-admission-controller@sha256:bd96c7861e7e085e5806b000b98ad032ce4ab0536fcaf8782a3aaa1a0dbc3236_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-admission-controller@sha256:bd96c7861e7e085e5806b000b98ad032ce4ab0536fcaf8782a3aaa1a0dbc3236?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller&tag=v4.13.0-202310162157.p0.gf76d674.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:6e69c3e00d81f8000cf1f2ecd7521523dd79234179fe34d091ecc6e84f9c774b_s390x", + "product": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:6e69c3e00d81f8000cf1f2ecd7521523dd79234179fe34d091ecc6e84f9c774b_s390x", + "product_id": "openshift4/ose-multus-networkpolicy-rhel8@sha256:6e69c3e00d81f8000cf1f2ecd7521523dd79234179fe34d091ecc6e84f9c774b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-networkpolicy-rhel8@sha256:6e69c3e00d81f8000cf1f2ecd7521523dd79234179fe34d091ecc6e84f9c774b?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8&tag=v4.13.0-202310162157.p0.g7b99c19.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:18e20e7bb238852b5dd3b7a688f9d76e076ec793de3cc352870f81410460d462_s390x", + "product": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:18e20e7bb238852b5dd3b7a688f9d76e076ec793de3cc352870f81410460d462_s390x", + "product_id": "openshift4/ose-multus-route-override-cni-rhel8@sha256:18e20e7bb238852b5dd3b7a688f9d76e076ec793de3cc352870f81410460d462_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-route-override-cni-rhel8@sha256:18e20e7bb238852b5dd3b7a688f9d76e076ec793de3cc352870f81410460d462?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8&tag=v4.13.0-202310162157.p0.gca3bbec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:69d88a79e75140d1dfa3719058a3ad2c6a5304c633c5fd85e252e4b131a52802_s390x", + "product": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:69d88a79e75140d1dfa3719058a3ad2c6a5304c633c5fd85e252e4b131a52802_s390x", + "product_id": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:69d88a79e75140d1dfa3719058a3ad2c6a5304c633c5fd85e252e4b131a52802_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel8@sha256:69d88a79e75140d1dfa3719058a3ad2c6a5304c633c5fd85e252e4b131a52802?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8&tag=v4.13.0-202310162157.p0.g7ea4020.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-must-gather@sha256:3f8e07c1c87061d13ebf3678ebf5d592ebd06588218821d3fec77b4216891956_s390x", + "product": { + "name": "openshift4/ose-must-gather@sha256:3f8e07c1c87061d13ebf3678ebf5d592ebd06588218821d3fec77b4216891956_s390x", + "product_id": "openshift4/ose-must-gather@sha256:3f8e07c1c87061d13ebf3678ebf5d592ebd06588218821d3fec77b4216891956_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-must-gather@sha256:3f8e07c1c87061d13ebf3678ebf5d592ebd06588218821d3fec77b4216891956?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-must-gather&tag=v4.13.0-202310162157.p0.g288ef2f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:f365123798eb2ea5f145fe94eb3394eb02aacf5a9ce84c8d2558bd06003223bf_s390x", + "product": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:f365123798eb2ea5f145fe94eb3394eb02aacf5a9ce84c8d2558bd06003223bf_s390x", + "product_id": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:f365123798eb2ea5f145fe94eb3394eb02aacf5a9ce84c8d2558bd06003223bf_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-interface-bond-cni-rhel8@sha256:f365123798eb2ea5f145fe94eb3394eb02aacf5a9ce84c8d2558bd06003223bf?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8&tag=v4.13.0-202310162157.p0.g84bda2a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:7413946b2e9ed5d7d0b0bd1cd171ea428b2c08fa5917d6050d3dc0b9a0522f1d_s390x", + "product": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:7413946b2e9ed5d7d0b0bd1cd171ea428b2c08fa5917d6050d3dc0b9a0522f1d_s390x", + "product_id": "openshift4/ose-network-metrics-daemon-rhel8@sha256:7413946b2e9ed5d7d0b0bd1cd171ea428b2c08fa5917d6050d3dc0b9a0522f1d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-metrics-daemon-rhel8@sha256:7413946b2e9ed5d7d0b0bd1cd171ea428b2c08fa5917d6050d3dc0b9a0522f1d?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8&tag=v4.13.0-202310162157.p0.ge72c8ad.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/network-tools-rhel8@sha256:cf9d5a65a3ff55ae35fcfc0476e85574c369e73de0dbdc037092925299888758_s390x", + "product": { + "name": "openshift4/network-tools-rhel8@sha256:cf9d5a65a3ff55ae35fcfc0476e85574c369e73de0dbdc037092925299888758_s390x", + "product_id": "openshift4/network-tools-rhel8@sha256:cf9d5a65a3ff55ae35fcfc0476e85574c369e73de0dbdc037092925299888758_s390x", + "product_identification_helper": { + "purl": "pkg:oci/network-tools-rhel8@sha256:cf9d5a65a3ff55ae35fcfc0476e85574c369e73de0dbdc037092925299888758?arch=s390x&repository_url=registry.redhat.io/openshift4/network-tools-rhel8&tag=v4.13.0-202310162157.p0.g073feda.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sdn-rhel8@sha256:a4fb8c402efc847d9af7d86fa7b21fa0df6a394add8cc1cd8b096c6f5176aad3_s390x", + "product": { + "name": "openshift4/ose-sdn-rhel8@sha256:a4fb8c402efc847d9af7d86fa7b21fa0df6a394add8cc1cd8b096c6f5176aad3_s390x", + "product_id": "openshift4/ose-sdn-rhel8@sha256:a4fb8c402efc847d9af7d86fa7b21fa0df6a394add8cc1cd8b096c6f5176aad3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-sdn-rhel8@sha256:a4fb8c402efc847d9af7d86fa7b21fa0df6a394add8cc1cd8b096c6f5176aad3?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-sdn-rhel8&tag=v4.13.0-202310162157.p0.g12a5bcf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:b5498cfc68a848617754a063e6c7df20be39476a555cf5a96c4e3ab87da8187d_s390x", + "product": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:b5498cfc68a848617754a063e6c7df20be39476a555cf5a96c4e3ab87da8187d_s390x", + "product_id": "openshift4/ose-oauth-apiserver-rhel8@sha256:b5498cfc68a848617754a063e6c7df20be39476a555cf5a96c4e3ab87da8187d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-apiserver-rhel8@sha256:b5498cfc68a848617754a063e6c7df20be39476a555cf5a96c4e3ab87da8187d?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8&tag=v4.13.0-202310162157.p0.g41c2dfe.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:edc41036cae04aeff271e115299329b8189f77e3629e0572b3f1d516d8676990_s390x", + "product": { + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:edc41036cae04aeff271e115299329b8189f77e3629e0572b3f1d516d8676990_s390x", + "product_id": "openshift4/ose-olm-rukpak-rhel8@sha256:edc41036cae04aeff271e115299329b8189f77e3629e0572b3f1d516d8676990_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-olm-rukpak-rhel8@sha256:edc41036cae04aeff271e115299329b8189f77e3629e0572b3f1d516d8676990?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-olm-rukpak-rhel8&tag=v4.13.0-202310162157.p0.g66b3e55.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:99557f89b55429cfd9c337d1b8a4d73bbbeea1e13596c2024accc2bb0851fb1a_s390x", + "product": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:99557f89b55429cfd9c337d1b8a4d73bbbeea1e13596c2024accc2bb0851fb1a_s390x", + "product_id": "openshift4/ose-openshift-apiserver-rhel8@sha256:99557f89b55429cfd9c337d1b8a4d73bbbeea1e13596c2024accc2bb0851fb1a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-apiserver-rhel8@sha256:99557f89b55429cfd9c337d1b8a4d73bbbeea1e13596c2024accc2bb0851fb1a?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8&tag=v4.13.0-202310162157.p0.g0b82768.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:8cfcca1bcb414cae5c24e0c75d676513b69745c3ef107e11d3e94f8475e6742f_s390x", + "product": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:8cfcca1bcb414cae5c24e0c75d676513b69745c3ef107e11d3e94f8475e6742f_s390x", + "product_id": "openshift4/ose-openshift-controller-manager-rhel8@sha256:8cfcca1bcb414cae5c24e0c75d676513b69745c3ef107e11d3e94f8475e6742f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-controller-manager-rhel8@sha256:8cfcca1bcb414cae5c24e0c75d676513b69745c3ef107e11d3e94f8475e6742f?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.g385057e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:e6e70fb43dc2cf322deb926487042cb4fadb21dae12d91f80862e9dfc6b64718_s390x", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:e6e70fb43dc2cf322deb926487042cb4fadb21dae12d91f80862e9dfc6b64718_s390x", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:e6e70fb43dc2cf322deb926487042cb4fadb21dae12d91f80862e9dfc6b64718_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8@sha256:e6e70fb43dc2cf322deb926487042cb4fadb21dae12d91f80862e9dfc6b64718?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.g171da3f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:4ed779b9e0173f5fe76aa2cd70ae7cc029ef2a537f443a8fe754c773e199fb86_s390x", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:4ed779b9e0173f5fe76aa2cd70ae7cc029ef2a537f443a8fe754c773e199fb86_s390x", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:4ed779b9e0173f5fe76aa2cd70ae7cc029ef2a537f443a8fe754c773e199fb86_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:4ed779b9e0173f5fe76aa2cd70ae7cc029ef2a537f443a8fe754c773e199fb86?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator&tag=v4.13.0-202310162157.p0.g90ee04b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:6573c675392317da43e87fd3bf58de2b0b494f58a013226304f969dec01c35ce_s390x", + "product": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:6573c675392317da43e87fd3bf58de2b0b494f58a013226304f969dec01c35ce_s390x", + "product_id": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:6573c675392317da43e87fd3bf58de2b0b494f58a013226304f969dec01c35ce_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel8@sha256:6573c675392317da43e87fd3bf58de2b0b494f58a013226304f969dec01c35ce?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.g171da3f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:d145ae1e8dc0a7a6117d577361ccbd64ed9fd4b3fbc24d66b88143c180cf2151_s390x", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:d145ae1e8dc0a7a6117d577361ccbd64ed9fd4b3fbc24d66b88143c180cf2151_s390x", + "product_id": "openshift4/ovirt-csi-driver-rhel8@sha256:d145ae1e8dc0a7a6117d577361ccbd64ed9fd4b3fbc24d66b88143c180cf2151_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8@sha256:d145ae1e8dc0a7a6117d577361ccbd64ed9fd4b3fbc24d66b88143c180cf2151?arch=s390x&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.gf21b470.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:d145ae1e8dc0a7a6117d577361ccbd64ed9fd4b3fbc24d66b88143c180cf2151_s390x", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:d145ae1e8dc0a7a6117d577361ccbd64ed9fd4b3fbc24d66b88143c180cf2151_s390x", + "product_id": "openshift4/ovirt-csi-driver-rhel7@sha256:d145ae1e8dc0a7a6117d577361ccbd64ed9fd4b3fbc24d66b88143c180cf2151_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel7@sha256:d145ae1e8dc0a7a6117d577361ccbd64ed9fd4b3fbc24d66b88143c180cf2151?arch=s390x&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel7&tag=v4.13.0-202310162157.p0.gf21b470.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d81ade2dd910aca00613a0c08bb5533aed4de6c94c711872c6bce587db44498d_s390x", + "product": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d81ade2dd910aca00613a0c08bb5533aed4de6c94c711872c6bce587db44498d_s390x", + "product_id": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d81ade2dd910aca00613a0c08bb5533aed4de6c94c711872c6bce587db44498d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovirt-machine-controllers-rhel8@sha256:d81ade2dd910aca00613a0c08bb5533aed4de6c94c711872c6bce587db44498d?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8&tag=v4.13.0-202310162157.p0.g22d89b3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes@sha256:75ca5ec0615e9ae449b83d64a1b793c8f90c9c20ae7629865d7a5bdeb0d15535_s390x", + "product": { + "name": "openshift4/ose-ovn-kubernetes@sha256:75ca5ec0615e9ae449b83d64a1b793c8f90c9c20ae7629865d7a5bdeb0d15535_s390x", + "product_id": "openshift4/ose-ovn-kubernetes@sha256:75ca5ec0615e9ae449b83d64a1b793c8f90c9c20ae7629865d7a5bdeb0d15535_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes@sha256:75ca5ec0615e9ae449b83d64a1b793c8f90c9c20ae7629865d7a5bdeb0d15535?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes&tag=v4.13.0-202310162157.p0.g881909d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:f608f41a72528a83e21f677e4be0dc1f63e9f599d7a309ab72615eddc949cdce_s390x", + "product": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:f608f41a72528a83e21f677e4be0dc1f63e9f599d7a309ab72615eddc949cdce_s390x", + "product_id": "openshift4/ose-k8s-prometheus-adapter@sha256:f608f41a72528a83e21f677e4be0dc1f63e9f599d7a309ab72615eddc949cdce_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-k8s-prometheus-adapter@sha256:f608f41a72528a83e21f677e4be0dc1f63e9f599d7a309ab72615eddc949cdce?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter&tag=v4.13.0-202310162157.p0.g8ebc578.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:aea0a528d84325e25f35adebb3a24ce9fc6640468e271cf256cd88ab3aa3e057_s390x", + "product": { + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:aea0a528d84325e25f35adebb3a24ce9fc6640468e271cf256cd88ab3aa3e057_s390x", + "product_id": "openshift4/openshift-route-controller-manager-rhel8@sha256:aea0a528d84325e25f35adebb3a24ce9fc6640468e271cf256cd88ab3aa3e057_s390x", + "product_identification_helper": { + "purl": "pkg:oci/openshift-route-controller-manager-rhel8@sha256:aea0a528d84325e25f35adebb3a24ce9fc6640468e271cf256cd88ab3aa3e057?arch=s390x&repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.g6667a6c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-service-ca-operator@sha256:27f60fc9111585700940248a498a33186a063097cd90ea37199daabaf917c927_s390x", + "product": { + "name": "openshift4/ose-service-ca-operator@sha256:27f60fc9111585700940248a498a33186a063097cd90ea37199daabaf917c927_s390x", + "product_id": "openshift4/ose-service-ca-operator@sha256:27f60fc9111585700940248a498a33186a063097cd90ea37199daabaf917c927_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-service-ca-operator@sha256:27f60fc9111585700940248a498a33186a063097cd90ea37199daabaf917c927?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-service-ca-operator&tag=v4.13.0-202310162157.p0.g5984aac.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-thanos-rhel8@sha256:09dfd7864503e3b617250536e1ce6166c4a2fa97572b8a947e9f1c6c3c81b0b9_s390x", + "product": { + "name": "openshift4/ose-thanos-rhel8@sha256:09dfd7864503e3b617250536e1ce6166c4a2fa97572b8a947e9f1c6c3c81b0b9_s390x", + "product_id": "openshift4/ose-thanos-rhel8@sha256:09dfd7864503e3b617250536e1ce6166c4a2fa97572b8a947e9f1c6c3c81b0b9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-thanos-rhel8@sha256:09dfd7864503e3b617250536e1ce6166c4a2fa97572b8a947e9f1c6c3c81b0b9?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-thanos-rhel8&tag=v4.13.0-202310162157.p0.g43238be.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tools-rhel8@sha256:f183fc32bc4d488c55d053c5a6c576cec35a3a7b42c7ff6549bda00b5767d324_s390x", + "product": { + "name": "openshift4/ose-tools-rhel8@sha256:f183fc32bc4d488c55d053c5a6c576cec35a3a7b42c7ff6549bda00b5767d324_s390x", + "product_id": "openshift4/ose-tools-rhel8@sha256:f183fc32bc4d488c55d053c5a6c576cec35a3a7b42c7ff6549bda00b5767d324_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-tools-rhel8@sha256:f183fc32bc4d488c55d053c5a6c576cec35a3a7b42c7ff6549bda00b5767d324?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-tools-rhel8&tag=v4.13.0-202310162157.p0.g717d4a5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1cb1b66abe51e5d2c34b1a803a5a2ac02de66ee7347f5730c2ebb02c1f9a91d1_s390x", + "product": { + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1cb1b66abe51e5d2c34b1a803a5a2ac02de66ee7347f5730c2ebb02c1f9a91d1_s390x", + "product_id": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1cb1b66abe51e5d2c34b1a803a5a2ac02de66ee7347f5730c2ebb02c1f9a91d1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256:1cb1b66abe51e5d2c34b1a803a5a2ac02de66ee7347f5730c2ebb02c1f9a91d1?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9&tag=v4.13.0-202310162157.p0.g881909d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-config-reloader@sha256:268b1e23967b11489e0484cf13273606d463359e033987ca91b4d25928508ee5_s390x", + "product": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:268b1e23967b11489e0484cf13273606d463359e033987ca91b4d25928508ee5_s390x", + "product_id": "openshift4/ose-prometheus-config-reloader@sha256:268b1e23967b11489e0484cf13273606d463359e033987ca91b4d25928508ee5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-config-reloader@sha256:268b1e23967b11489e0484cf13273606d463359e033987ca91b4d25928508ee5?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader&tag=v4.13.0-202310162157.p0.g95a1178.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:c0605a705e8769aaf3c2325282b12f4f86586a02158419f92f8455c76ed01cd6_s390x", + "product": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:c0605a705e8769aaf3c2325282b12f4f86586a02158419f92f8455c76ed01cd6_s390x", + "product_id": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:c0605a705e8769aaf3c2325282b12f4f86586a02158419f92f8455c76ed01cd6_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel8@sha256:c0605a705e8769aaf3c2325282b12f4f86586a02158419f92f8455c76ed01cd6?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8&tag=v4.13.0-202310162157.p0.g95a1178.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator@sha256:011d742fee9d1fd4cda91c1be9755be0b750ef804c970287bdc3e435e8d089c1_s390x", + "product": { + "name": "openshift4/ose-prometheus-operator@sha256:011d742fee9d1fd4cda91c1be9755be0b750ef804c970287bdc3e435e8d089c1_s390x", + "product_id": "openshift4/ose-prometheus-operator@sha256:011d742fee9d1fd4cda91c1be9755be0b750ef804c970287bdc3e435e8d089c1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator@sha256:011d742fee9d1fd4cda91c1be9755be0b750ef804c970287bdc3e435e8d089c1?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator&tag=v4.13.0-202310162157.p0.g95a1178.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prom-label-proxy@sha256:17991fec9b0b1b762ece36f084923ae44d76d54a1912134cc0b89d98143799d9_s390x", + "product": { + "name": "openshift4/ose-prom-label-proxy@sha256:17991fec9b0b1b762ece36f084923ae44d76d54a1912134cc0b89d98143799d9_s390x", + "product_id": "openshift4/ose-prom-label-proxy@sha256:17991fec9b0b1b762ece36f084923ae44d76d54a1912134cc0b89d98143799d9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-prom-label-proxy@sha256:17991fec9b0b1b762ece36f084923ae44d76d54a1912134cc0b89d98143799d9?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy&tag=v4.13.0-202310162157.p0.gb501d5e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-telemeter@sha256:bdc788771466a031d22dc00b062e60b3560b310c1895cc83feed0b5572c216e3_s390x", + "product": { + "name": "openshift4/ose-telemeter@sha256:bdc788771466a031d22dc00b062e60b3560b310c1895cc83feed0b5572c216e3_s390x", + "product_id": "openshift4/ose-telemeter@sha256:bdc788771466a031d22dc00b062e60b3560b310c1895cc83feed0b5572c216e3_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ose-telemeter@sha256:bdc788771466a031d22dc00b062e60b3560b310c1895cc83feed0b5572c216e3?arch=s390x&repository_url=registry.redhat.io/openshift4/ose-telemeter&tag=v4.13.0-202310162157.p0.gbe81b43.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler@sha256:6c0194408a4a4d2d3f693514b0c45ae3348560cee8eeb5e3c503773aad3e188d_ppc64le", + "product": { + "name": "openshift4/ose-cluster-autoscaler@sha256:6c0194408a4a4d2d3f693514b0c45ae3348560cee8eeb5e3c503773aad3e188d_ppc64le", + "product_id": "openshift4/ose-cluster-autoscaler@sha256:6c0194408a4a4d2d3f693514b0c45ae3348560cee8eeb5e3c503773aad3e188d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler@sha256:6c0194408a4a4d2d3f693514b0c45ae3348560cee8eeb5e3c503773aad3e188d?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler&tag=v4.13.0-202310162157.p0.gc58c53b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-machine-controllers@sha256:30d2c027f13e64590b41d39058f2e8e7afc05c6fd42cfaa1dacbbbef3704e937_ppc64le", + "product": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:30d2c027f13e64590b41d39058f2e8e7afc05c6fd42cfaa1dacbbbef3704e937_ppc64le", + "product_id": "openshift4/ose-baremetal-machine-controllers@sha256:30d2c027f13e64590b41d39058f2e8e7afc05c6fd42cfaa1dacbbbef3704e937_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-machine-controllers@sha256:30d2c027f13e64590b41d39058f2e8e7afc05c6fd42cfaa1dacbbbef3704e937?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers&tag=v4.13.0-202310162157.p0.g7de328a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:dd0502e537f2fbb71edd59ededcb03dd30dc78fc82e46b7ad1bffd990db8ffd2_ppc64le", + "product": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:dd0502e537f2fbb71edd59ededcb03dd30dc78fc82e46b7ad1bffd990db8ffd2_ppc64le", + "product_id": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:dd0502e537f2fbb71edd59ededcb03dd30dc78fc82e46b7ad1bffd990db8ffd2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-etcd-rhel8-operator@sha256:dd0502e537f2fbb71edd59ededcb03dd30dc78fc82e46b7ad1bffd990db8ffd2?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator&tag=v4.13.0-202310162157.p0.g8b90ac1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-monitoring-operator@sha256:32b7de4a97caa977da482e63eb9107fe3ab00f4774e09de90e4ab66a4e1fd2a7_ppc64le", + "product": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:32b7de4a97caa977da482e63eb9107fe3ab00f4774e09de90e4ab66a4e1fd2a7_ppc64le", + "product_id": "openshift4/ose-cluster-monitoring-operator@sha256:32b7de4a97caa977da482e63eb9107fe3ab00f4774e09de90e4ab66a4e1fd2a7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-monitoring-operator@sha256:32b7de4a97caa977da482e63eb9107fe3ab00f4774e09de90e4ab66a4e1fd2a7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-operator&tag=v4.13.0-202310162157.p0.g547c850.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-network-operator@sha256:98bb814f4ab66020c01dd8d4d01d61681bb4d54831b8e2c003dc12cbed79e8ea_ppc64le", + "product": { + "name": "openshift4/ose-cluster-network-operator@sha256:98bb814f4ab66020c01dd8d4d01d61681bb4d54831b8e2c003dc12cbed79e8ea_ppc64le", + "product_id": "openshift4/ose-cluster-network-operator@sha256:98bb814f4ab66020c01dd8d4d01d61681bb4d54831b8e2c003dc12cbed79e8ea_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-network-operator@sha256:98bb814f4ab66020c01dd8d4d01d61681bb4d54831b8e2c003dc12cbed79e8ea?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-network-operator&tag=v4.13.0-202310162157.p0.g961ca3d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:c54a1955cad304382bb7ed8214616a7189c24e9f64a665c7beb65e03385da475_ppc64le", + "product": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:c54a1955cad304382bb7ed8214616a7189c24e9f64a665c7beb65e03385da475_ppc64le", + "product_id": "openshift4/ose-cluster-node-tuning-operator@sha256:c54a1955cad304382bb7ed8214616a7189c24e9f64a665c7beb65e03385da475_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-node-tuning-operator@sha256:c54a1955cad304382bb7ed8214616a7189c24e9f64a665c7beb65e03385da475?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-operator&tag=v4.13.0-202310162157.p0.g9cdb2d7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-version-operator@sha256:51ff5c5072574d8dcc23fa9fa61c2d4e7a498477c0684268bed951676b0f0f41_ppc64le", + "product": { + "name": "openshift4/ose-cluster-version-operator@sha256:51ff5c5072574d8dcc23fa9fa61c2d4e7a498477c0684268bed951676b0f0f41_ppc64le", + "product_id": "openshift4/ose-cluster-version-operator@sha256:51ff5c5072574d8dcc23fa9fa61c2d4e7a498477c0684268bed951676b0f0f41_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-version-operator@sha256:51ff5c5072574d8dcc23fa9fa61c2d4e7a498477c0684268bed951676b0f0f41?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-version-operator&tag=v4.13.0-202310162157.p0.gc622124.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-configmap-reloader@sha256:e7e1b8f0e8c3fa36da1f0131f907f8432732e6f008416286e0826dd01a8fe255_ppc64le", + "product": { + "name": "openshift4/ose-configmap-reloader@sha256:e7e1b8f0e8c3fa36da1f0131f907f8432732e6f008416286e0826dd01a8fe255_ppc64le", + "product_id": "openshift4/ose-configmap-reloader@sha256:e7e1b8f0e8c3fa36da1f0131f907f8432732e6f008416286e0826dd01a8fe255_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-configmap-reloader@sha256:e7e1b8f0e8c3fa36da1f0131f907f8432732e6f008416286e0826dd01a8fe255?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-configmap-reloader&tag=v4.13.0-202310162157.p0.g9adad59.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-coredns@sha256:6094b07f2fc4bd91f6a7a0eb20d6ee8968a2718ea119df162dfe9d91d60df500_ppc64le", + "product": { + "name": "openshift4/ose-coredns@sha256:6094b07f2fc4bd91f6a7a0eb20d6ee8968a2718ea119df162dfe9d91d60df500_ppc64le", + "product_id": "openshift4/ose-coredns@sha256:6094b07f2fc4bd91f6a7a0eb20d6ee8968a2718ea119df162dfe9d91d60df500_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-coredns@sha256:6094b07f2fc4bd91f6a7a0eb20d6ee8968a2718ea119df162dfe9d91d60df500?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-coredns&tag=v4.13.0-202310162157.p0.g598440f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:d399e902524c2cf10f87d0578a828e301c44e581d9d732bca045ef4f51047fcd_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:d399e902524c2cf10f87d0578a828e301c44e581d9d732bca045ef4f51047fcd_ppc64le", + "product_id": "openshift4/ose-csi-external-attacher-rhel8@sha256:d399e902524c2cf10f87d0578a828e301c44e581d9d732bca045ef4f51047fcd_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher-rhel8@sha256:d399e902524c2cf10f87d0578a828e301c44e581d9d732bca045ef4f51047fcd?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8&tag=v4.13.0-202310162157.p0.ge9d59a2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher@sha256:d399e902524c2cf10f87d0578a828e301c44e581d9d732bca045ef4f51047fcd_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-attacher@sha256:d399e902524c2cf10f87d0578a828e301c44e581d9d732bca045ef4f51047fcd_ppc64le", + "product_id": "openshift4/ose-csi-external-attacher@sha256:d399e902524c2cf10f87d0578a828e301c44e581d9d732bca045ef4f51047fcd_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher@sha256:d399e902524c2cf10f87d0578a828e301c44e581d9d732bca045ef4f51047fcd?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher&tag=v4.13.0-202310162157.p0.ge9d59a2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:144ab2ee435dca16f9922e7f77da49205b882f59a350268e574c6462214ae242_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:144ab2ee435dca16f9922e7f77da49205b882f59a350268e574c6462214ae242_ppc64le", + "product_id": "openshift4/ose-csi-driver-manila-rhel8@sha256:144ab2ee435dca16f9922e7f77da49205b882f59a350268e574c6462214ae242_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-manila-rhel8@sha256:144ab2ee435dca16f9922e7f77da49205b882f59a350268e574c6462214ae242?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8&tag=v4.13.0-202310162157.p0.g171da3f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:09ae0dd1228badd5ddaf9a6d1f88695c9d22bc917d33e19e04cc4c5dc109c69c_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:09ae0dd1228badd5ddaf9a6d1f88695c9d22bc917d33e19e04cc4c5dc109c69c_ppc64le", + "product_id": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:09ae0dd1228badd5ddaf9a6d1f88695c9d22bc917d33e19e04cc4c5dc109c69c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-manila-rhel8-operator@sha256:09ae0dd1228badd5ddaf9a6d1f88695c9d22bc917d33e19e04cc4c5dc109c69c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator&tag=v4.13.0-202310162157.p0.gb1295cd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-nfs-rhel8@sha256:bb89688954a61cfe63a6d4ca65902ebe6a42a8cb676cc240c6da423df0fdc29d_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-nfs-rhel8@sha256:bb89688954a61cfe63a6d4ca65902ebe6a42a8cb676cc240c6da423df0fdc29d_ppc64le", + "product_id": "openshift4/ose-csi-driver-nfs-rhel8@sha256:bb89688954a61cfe63a6d4ca65902ebe6a42a8cb676cc240c6da423df0fdc29d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-nfs-rhel8@sha256:bb89688954a61cfe63a6d4ca65902ebe6a42a8cb676cc240c6da423df0fdc29d?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8&tag=v4.13.0-202310162157.p0.g2b914c2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:633056d9aafec226ca9543b6ec8155fc82b0abbafd1122743e94268bd2d9830a_ppc64le", + "product": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:633056d9aafec226ca9543b6ec8155fc82b0abbafd1122743e94268bd2d9830a_ppc64le", + "product_id": "openshift4/ose-csi-livenessprobe-rhel8@sha256:633056d9aafec226ca9543b6ec8155fc82b0abbafd1122743e94268bd2d9830a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe-rhel8@sha256:633056d9aafec226ca9543b6ec8155fc82b0abbafd1122743e94268bd2d9830a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8&tag=v4.13.0-202310162157.p0.ga888237.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe@sha256:633056d9aafec226ca9543b6ec8155fc82b0abbafd1122743e94268bd2d9830a_ppc64le", + "product": { + "name": "openshift4/ose-csi-livenessprobe@sha256:633056d9aafec226ca9543b6ec8155fc82b0abbafd1122743e94268bd2d9830a_ppc64le", + "product_id": "openshift4/ose-csi-livenessprobe@sha256:633056d9aafec226ca9543b6ec8155fc82b0abbafd1122743e94268bd2d9830a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe@sha256:633056d9aafec226ca9543b6ec8155fc82b0abbafd1122743e94268bd2d9830a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe&tag=v4.13.0-202310162157.p0.ga888237.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:380f0b41ba4c1070d06fa1cb14084b72bafca1b8b627a818fa51304c816321e4_ppc64le", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:380f0b41ba4c1070d06fa1cb14084b72bafca1b8b627a818fa51304c816321e4_ppc64le", + "product_id": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:380f0b41ba4c1070d06fa1cb14084b72bafca1b8b627a818fa51304c816321e4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar-rhel8@sha256:380f0b41ba4c1070d06fa1cb14084b72bafca1b8b627a818fa51304c816321e4?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8&tag=v4.13.0-202310162157.p0.g5f13d5e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar@sha256:380f0b41ba4c1070d06fa1cb14084b72bafca1b8b627a818fa51304c816321e4_ppc64le", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:380f0b41ba4c1070d06fa1cb14084b72bafca1b8b627a818fa51304c816321e4_ppc64le", + "product_id": "openshift4/ose-csi-node-driver-registrar@sha256:380f0b41ba4c1070d06fa1cb14084b72bafca1b8b627a818fa51304c816321e4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar@sha256:380f0b41ba4c1070d06fa1cb14084b72bafca1b8b627a818fa51304c816321e4?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar&tag=v4.13.0-202310162157.p0.g5f13d5e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner@sha256:e5bafcd6ece5c8540487a7202b0da48be5deac30ceef2c4a08707b66b59e5396_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-provisioner@sha256:e5bafcd6ece5c8540487a7202b0da48be5deac30ceef2c4a08707b66b59e5396_ppc64le", + "product_id": "openshift4/ose-csi-external-provisioner@sha256:e5bafcd6ece5c8540487a7202b0da48be5deac30ceef2c4a08707b66b59e5396_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner@sha256:e5bafcd6ece5c8540487a7202b0da48be5deac30ceef2c4a08707b66b59e5396?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner&tag=v4.13.0-202310162157.p0.gf1fa809.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:e5bafcd6ece5c8540487a7202b0da48be5deac30ceef2c4a08707b66b59e5396_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:e5bafcd6ece5c8540487a7202b0da48be5deac30ceef2c4a08707b66b59e5396_ppc64le", + "product_id": "openshift4/ose-csi-external-provisioner-rhel8@sha256:e5bafcd6ece5c8540487a7202b0da48be5deac30ceef2c4a08707b66b59e5396_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner-rhel8@sha256:e5bafcd6ece5c8540487a7202b0da48be5deac30ceef2c4a08707b66b59e5396?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8&tag=v4.13.0-202310162157.p0.gf1fa809.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/driver-toolkit-rhel9@sha256:da458c490218f5e1482ceeb40b0bfa524cf347128e3e66613353bba03b890c7a_ppc64le", + "product": { + "name": "openshift4/driver-toolkit-rhel9@sha256:da458c490218f5e1482ceeb40b0bfa524cf347128e3e66613353bba03b890c7a_ppc64le", + "product_id": "openshift4/driver-toolkit-rhel9@sha256:da458c490218f5e1482ceeb40b0bfa524cf347128e3e66613353bba03b890c7a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/driver-toolkit-rhel9@sha256:da458c490218f5e1482ceeb40b0bfa524cf347128e3e66613353bba03b890c7a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9&tag=v4.13.0-202310161125.p0.gd719bdc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-proxy@sha256:c46a9c8259b346063cb0637e26a43cf415ddbbbd50a89319a7f572c46a01b51b_ppc64le", + "product": { + "name": "openshift4/ose-oauth-proxy@sha256:c46a9c8259b346063cb0637e26a43cf415ddbbbd50a89319a7f572c46a01b51b_ppc64le", + "product_id": "openshift4/ose-oauth-proxy@sha256:c46a9c8259b346063cb0637e26a43cf415ddbbbd50a89319a7f572c46a01b51b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-proxy@sha256:c46a9c8259b346063cb0637e26a43cf415ddbbbd50a89319a7f572c46a01b51b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-oauth-proxy&tag=v4.13.0-202310162157.p0.g44af5a3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-alertmanager@sha256:003ac56ca597f66c86659f252a38ecfe76dfa8a477730e1296cc6daf12cede37_ppc64le", + "product": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:003ac56ca597f66c86659f252a38ecfe76dfa8a477730e1296cc6daf12cede37_ppc64le", + "product_id": "openshift4/ose-prometheus-alertmanager@sha256:003ac56ca597f66c86659f252a38ecfe76dfa8a477730e1296cc6daf12cede37_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-alertmanager@sha256:003ac56ca597f66c86659f252a38ecfe76dfa8a477730e1296cc6daf12cede37?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager&tag=v4.13.0-202310162157.p0.gf44d574.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-node-exporter@sha256:8aa5468447aa8499cb8ba535aa29e4c789c24724d7982bce259474f0cb17f54a_ppc64le", + "product": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:8aa5468447aa8499cb8ba535aa29e4c789c24724d7982bce259474f0cb17f54a_ppc64le", + "product_id": "openshift4/ose-prometheus-node-exporter@sha256:8aa5468447aa8499cb8ba535aa29e4c789c24724d7982bce259474f0cb17f54a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-node-exporter@sha256:8aa5468447aa8499cb8ba535aa29e4c789c24724d7982bce259474f0cb17f54a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter&tag=v4.13.0-202310162157.p0.g5409afd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus@sha256:24b1d1d005125f6bf49f3897e4e2b149346fb579857ddda222490c8599f359a2_ppc64le", + "product": { + "name": "openshift4/ose-prometheus@sha256:24b1d1d005125f6bf49f3897e4e2b149346fb579857ddda222490c8599f359a2_ppc64le", + "product_id": "openshift4/ose-prometheus@sha256:24b1d1d005125f6bf49f3897e4e2b149346fb579857ddda222490c8599f359a2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus@sha256:24b1d1d005125f6bf49f3897e4e2b149346fb579857ddda222490c8599f359a2?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prometheus&tag=v4.13.0-202310162157.p0.g8279148.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-proxy@sha256:6a9e84e85140adc494a8e75206357b0cf3c17bf1f1421a1e547949b74709a4bd_ppc64le", + "product": { + "name": "openshift4/ose-kube-proxy@sha256:6a9e84e85140adc494a8e75206357b0cf3c17bf1f1421a1e547949b74709a4bd_ppc64le", + "product_id": "openshift4/ose-kube-proxy@sha256:6a9e84e85140adc494a8e75206357b0cf3c17bf1f1421a1e547949b74709a4bd_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-proxy@sha256:6a9e84e85140adc494a8e75206357b0cf3c17bf1f1421a1e547949b74709a4bd?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kube-proxy&tag=v4.13.0-202310162157.p0.g12a5bcf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-rbac-proxy@sha256:d6d5ed9c09ffd80a4b120b22d940ba7d29561c906b9c497d2f00351ad41cd7ca_ppc64le", + "product": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:d6d5ed9c09ffd80a4b120b22d940ba7d29561c906b9c497d2f00351ad41cd7ca_ppc64le", + "product_id": "openshift4/ose-kube-rbac-proxy@sha256:d6d5ed9c09ffd80a4b120b22d940ba7d29561c906b9c497d2f00351ad41cd7ca_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-rbac-proxy@sha256:d6d5ed9c09ffd80a4b120b22d940ba7d29561c906b9c497d2f00351ad41cd7ca?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy&tag=v4.13.0-202310162157.p0.gf1205e6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-state-metrics@sha256:460dc136d67324476584186b90274a567afe2e57c42ae810fa19f185cba076ec_ppc64le", + "product": { + "name": "openshift4/ose-kube-state-metrics@sha256:460dc136d67324476584186b90274a567afe2e57c42ae810fa19f185cba076ec_ppc64le", + "product_id": "openshift4/ose-kube-state-metrics@sha256:460dc136d67324476584186b90274a567afe2e57c42ae810fa19f185cba076ec_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-state-metrics@sha256:460dc136d67324476584186b90274a567afe2e57c42ae810fa19f185cba076ec?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics&tag=v4.13.0-202310162157.p0.g4b96984.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:d52151ff0e30cfac3d140ded2bd993667f6fdc404f528ff735007a13866dc38c_ppc64le", + "product": { + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:d52151ff0e30cfac3d140ded2bd993667f6fdc404f528ff735007a13866dc38c_ppc64le", + "product_id": "openshift4/ose-kuryr-cni-rhel8@sha256:d52151ff0e30cfac3d140ded2bd993667f6fdc404f528ff735007a13866dc38c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kuryr-cni-rhel8@sha256:d52151ff0e30cfac3d140ded2bd993667f6fdc404f528ff735007a13866dc38c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kuryr-cni-rhel8&tag=v4.13.0-202310162157.p0.g36754b7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-marketplace@sha256:f3ee39163b292ca2fe1a533b50183aa69534616871f483b2bec2cc1488500bd8_ppc64le", + "product": { + "name": "openshift4/ose-operator-marketplace@sha256:f3ee39163b292ca2fe1a533b50183aa69534616871f483b2bec2cc1488500bd8_ppc64le", + "product_id": "openshift4/ose-operator-marketplace@sha256:f3ee39163b292ca2fe1a533b50183aa69534616871f483b2bec2cc1488500bd8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-marketplace@sha256:f3ee39163b292ca2fe1a533b50183aa69534616871f483b2bec2cc1488500bd8?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-operator-marketplace&tag=v4.13.0-202310162157.p0.g3a424b9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-cni@sha256:18381cebd457426ebb77b83a0badb2a60e46324b652024f608abbde76c872218_ppc64le", + "product": { + "name": "openshift4/ose-multus-cni@sha256:18381cebd457426ebb77b83a0badb2a60e46324b652024f608abbde76c872218_ppc64le", + "product_id": "openshift4/ose-multus-cni@sha256:18381cebd457426ebb77b83a0badb2a60e46324b652024f608abbde76c872218_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-cni@sha256:18381cebd457426ebb77b83a0badb2a60e46324b652024f608abbde76c872218?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-multus-cni&tag=v4.13.0-202310162157.p0.gbb616ef.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-server-rhel8@sha256:b9915a1f02d013a8aa2a285f1e94e8bc78451ae66b74c342c1c58008faf42294_ppc64le", + "product": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:b9915a1f02d013a8aa2a285f1e94e8bc78451ae66b74c342c1c58008faf42294_ppc64le", + "product_id": "openshift4/ose-oauth-server-rhel8@sha256:b9915a1f02d013a8aa2a285f1e94e8bc78451ae66b74c342c1c58008faf42294_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-server-rhel8@sha256:b9915a1f02d013a8aa2a285f1e94e8bc78451ae66b74c342c1c58008faf42294?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel8&tag=v4.13.0-202310162157.p0.gb841149.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-builder@sha256:8eeba0e02eaa8f32095a3c52a252ad2008f586e0f776f9421eeca3a376b2d63d_ppc64le", + "product": { + "name": "openshift4/ose-docker-builder@sha256:8eeba0e02eaa8f32095a3c52a252ad2008f586e0f776f9421eeca3a376b2d63d_ppc64le", + "product_id": "openshift4/ose-docker-builder@sha256:8eeba0e02eaa8f32095a3c52a252ad2008f586e0f776f9421eeca3a376b2d63d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-builder@sha256:8eeba0e02eaa8f32095a3c52a252ad2008f586e0f776f9421eeca3a376b2d63d?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-docker-builder&tag=v4.13.0-202310170703.p0.g1fec8a2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli@sha256:65838e98f993363e2ca0ebbf2e10756e9e4f947ed7c1dde00c9de32585979a7d_ppc64le", + "product": { + "name": "openshift4/ose-cli@sha256:65838e98f993363e2ca0ebbf2e10756e9e4f947ed7c1dde00c9de32585979a7d_ppc64le", + "product_id": "openshift4/ose-cli@sha256:65838e98f993363e2ca0ebbf2e10756e9e4f947ed7c1dde00c9de32585979a7d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli@sha256:65838e98f993363e2ca0ebbf2e10756e9e4f947ed7c1dde00c9de32585979a7d?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cli&tag=v4.13.0-202310162157.p0.g717d4a5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console@sha256:048d32789d06cbe687049c3d9478370c483ce33979d9d4a81a2ee8713b2f84d3_ppc64le", + "product": { + "name": "openshift4/ose-console@sha256:048d32789d06cbe687049c3d9478370c483ce33979d9d4a81a2ee8713b2f84d3_ppc64le", + "product_id": "openshift4/ose-console@sha256:048d32789d06cbe687049c3d9478370c483ce33979d9d4a81a2ee8713b2f84d3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-console@sha256:048d32789d06cbe687049c3d9478370c483ce33979d9d4a81a2ee8713b2f84d3?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-console&tag=v4.13.0-202310162157.p0.g303c2bd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console-operator@sha256:2df3080c7cfa0ca26091f8522c5bb82e62e758e14ee5db9c85e28ba71e27fdf8_ppc64le", + "product": { + "name": "openshift4/ose-console-operator@sha256:2df3080c7cfa0ca26091f8522c5bb82e62e758e14ee5db9c85e28ba71e27fdf8_ppc64le", + "product_id": "openshift4/ose-console-operator@sha256:2df3080c7cfa0ca26091f8522c5bb82e62e758e14ee5db9c85e28ba71e27fdf8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-console-operator@sha256:2df3080c7cfa0ca26091f8522c5bb82e62e758e14ee5db9c85e28ba71e27fdf8?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-console-operator&tag=v4.13.0-202310162157.p0.gdd6939f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-deployer@sha256:7f329713672558726c6a85d3528a9f53c659de22a616976842a415a06aba2468_ppc64le", + "product": { + "name": "openshift4/ose-deployer@sha256:7f329713672558726c6a85d3528a9f53c659de22a616976842a415a06aba2468_ppc64le", + "product_id": "openshift4/ose-deployer@sha256:7f329713672558726c6a85d3528a9f53c659de22a616976842a415a06aba2468_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-deployer@sha256:7f329713672558726c6a85d3528a9f53c659de22a616976842a415a06aba2468?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-deployer&tag=v4.13.0-202310162157.p0.g717d4a5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-haproxy-router@sha256:a8086128ed7c71e887e0edd7b18d99490b2cefd27a5edd963d810e75b40abaa0_ppc64le", + "product": { + "name": "openshift4/ose-haproxy-router@sha256:a8086128ed7c71e887e0edd7b18d99490b2cefd27a5edd963d810e75b40abaa0_ppc64le", + "product_id": "openshift4/ose-haproxy-router@sha256:a8086128ed7c71e887e0edd7b18d99490b2cefd27a5edd963d810e75b40abaa0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-haproxy-router@sha256:a8086128ed7c71e887e0edd7b18d99490b2cefd27a5edd963d810e75b40abaa0?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-haproxy-router&tag=v4.13.0-202310162157.p0.g057eae9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hyperkube@sha256:e1feb9a41929a73433999265b6d50eb58db009892b6783a37cbdaddab56f8af3_ppc64le", + "product": { + "name": "openshift4/ose-hyperkube@sha256:e1feb9a41929a73433999265b6d50eb58db009892b6783a37cbdaddab56f8af3_ppc64le", + "product_id": "openshift4/ose-hyperkube@sha256:e1feb9a41929a73433999265b6d50eb58db009892b6783a37cbdaddab56f8af3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-hyperkube@sha256:e1feb9a41929a73433999265b6d50eb58db009892b6783a37cbdaddab56f8af3?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-hyperkube&tag=v4.13.0-202310162157.p0.gc7606e7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-pod@sha256:ed8a5ad238ce429736c0ae3b9103fef46cd0cef2cfa4ddef12bc797ba32d4e7a_ppc64le", + "product": { + "name": "openshift4/ose-pod@sha256:ed8a5ad238ce429736c0ae3b9103fef46cd0cef2cfa4ddef12bc797ba32d4e7a_ppc64le", + "product_id": "openshift4/ose-pod@sha256:ed8a5ad238ce429736c0ae3b9103fef46cd0cef2cfa4ddef12bc797ba32d4e7a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-pod@sha256:ed8a5ad238ce429736c0ae3b9103fef46cd0cef2cfa4ddef12bc797ba32d4e7a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-pod&tag=v4.13.0-202310162157.p0.gc7606e7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-registry@sha256:61fd41e9e99b775681d95dbff819034874a8e7fe669dd10fc0cd4cb0a123ca3f_ppc64le", + "product": { + "name": "openshift4/ose-docker-registry@sha256:61fd41e9e99b775681d95dbff819034874a8e7fe669dd10fc0cd4cb0a123ca3f_ppc64le", + "product_id": "openshift4/ose-docker-registry@sha256:61fd41e9e99b775681d95dbff819034874a8e7fe669dd10fc0cd4cb0a123ca3f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-registry@sha256:61fd41e9e99b775681d95dbff819034874a8e7fe669dd10fc0cd4cb0a123ca3f?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-docker-registry&tag=v4.13.0-202310162157.p0.g47a15ac.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tests@sha256:dd263de439877b5e37c34feb7cef153a6b0b6eca85d737bd6df39da1fc6428eb_ppc64le", + "product": { + "name": "openshift4/ose-tests@sha256:dd263de439877b5e37c34feb7cef153a6b0b6eca85d737bd6df39da1fc6428eb_ppc64le", + "product_id": "openshift4/ose-tests@sha256:dd263de439877b5e37c34feb7cef153a6b0b6eca85d737bd6df39da1fc6428eb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-tests@sha256:dd263de439877b5e37c34feb7cef153a6b0b6eca85d737bd6df39da1fc6428eb?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-tests&tag=v4.13.0-202310162157.p0.g40d3885.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:3114d84ed30b6e6c0400d561f4ee4a78c7f627ce5031b663804516d2b1146b1e_ppc64le", + "product": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:3114d84ed30b6e6c0400d561f4ee4a78c7f627ce5031b663804516d2b1146b1e_ppc64le", + "product_id": "openshift4/ose-openshift-state-metrics-rhel8@sha256:3114d84ed30b6e6c0400d561f4ee4a78c7f627ce5031b663804516d2b1146b1e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-state-metrics-rhel8@sha256:3114d84ed30b6e6c0400d561f4ee4a78c7f627ce5031b663804516d2b1146b1e?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8&tag=v4.13.0-202310162157.p0.g7beb880.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-lifecycle-manager@sha256:1bc37c010c1a028373997fe95f2b96c7f4a85c4edc3ed30129d5756a7fdb991c_ppc64le", + "product": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:1bc37c010c1a028373997fe95f2b96c7f4a85c4edc3ed30129d5756a7fdb991c_ppc64le", + "product_id": "openshift4/ose-operator-lifecycle-manager@sha256:1bc37c010c1a028373997fe95f2b96c7f4a85c4edc3ed30129d5756a7fdb991c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-lifecycle-manager@sha256:1bc37c010c1a028373997fe95f2b96c7f4a85c4edc3ed30129d5756a7fdb991c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager&tag=v4.13.0-202310162157.p0.g9957ffd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-registry@sha256:ceb70e9059b4e8295243c7304cac2c6064fea218ab494a523a35b4297472d3fe_ppc64le", + "product": { + "name": "openshift4/ose-operator-registry@sha256:ceb70e9059b4e8295243c7304cac2c6064fea218ab494a523a35b4297472d3fe_ppc64le", + "product_id": "openshift4/ose-operator-registry@sha256:ceb70e9059b4e8295243c7304cac2c6064fea218ab494a523a35b4297472d3fe_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-registry@sha256:ceb70e9059b4e8295243c7304cac2c6064fea218ab494a523a35b4297472d3fe?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-operator-registry&tag=v4.13.0-202310162157.p0.g9957ffd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:d96d106dc2bb9f085033d06700b646161f1c76164d2966fceef9f4c3895412b4_ppc64le", + "product": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:d96d106dc2bb9f085033d06700b646161f1c76164d2966fceef9f4c3895412b4_ppc64le", + "product_id": "openshift4/ose-agent-installer-api-server-rhel8@sha256:d96d106dc2bb9f085033d06700b646161f1c76164d2966fceef9f4c3895412b4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-api-server-rhel8@sha256:d96d106dc2bb9f085033d06700b646161f1c76164d2966fceef9f4c3895412b4?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8&tag=v4.13.0-202310162157.p0.g06189bc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:222f83402a30bf95a85b31d2a548fdb4b1e188f0ee355a8251f19bfe481b2f86_ppc64le", + "product": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:222f83402a30bf95a85b31d2a548fdb4b1e188f0ee355a8251f19bfe481b2f86_ppc64le", + "product_id": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:222f83402a30bf95a85b31d2a548fdb4b1e188f0ee355a8251f19bfe481b2f86_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-csr-approver-rhel8@sha256:222f83402a30bf95a85b31d2a548fdb4b1e188f0ee355a8251f19bfe481b2f86?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8&tag=v4.13.0-202310162157.p0.gedf2542.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:3b660e759586fc1455d3205ad6bd77aae313cc54d0cc27c2cb94fa5606d2016a_ppc64le", + "product": { + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:3b660e759586fc1455d3205ad6bd77aae313cc54d0cc27c2cb94fa5606d2016a_ppc64le", + "product_id": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:3b660e759586fc1455d3205ad6bd77aae313cc54d0cc27c2cb94fa5606d2016a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-node-agent-rhel8@sha256:3b660e759586fc1455d3205ad6bd77aae313cc54d0cc27c2cb94fa5606d2016a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8&tag=v4.13.0-202310162157.p0.g35357f5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:155422d2fa453adf2e26aaad2483b80e29f8b5802c62e19c5d787f2f43db2301_ppc64le", + "product": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:155422d2fa453adf2e26aaad2483b80e29f8b5802c62e19c5d787f2f43db2301_ppc64le", + "product_id": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:155422d2fa453adf2e26aaad2483b80e29f8b5802c62e19c5d787f2f43db2301_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-orchestrator-rhel8@sha256:155422d2fa453adf2e26aaad2483b80e29f8b5802c62e19c5d787f2f43db2301?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8&tag=v4.13.0-202310162157.p0.gedf2542.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:d96539b2ec9d0b20848daf690bf99aefc04faf67a42cdbde5602015c65ad807d_ppc64le", + "product": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:d96539b2ec9d0b20848daf690bf99aefc04faf67a42cdbde5602015c65ad807d_ppc64le", + "product_id": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:d96539b2ec9d0b20848daf690bf99aefc04faf67a42cdbde5602015c65ad807d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-apiserver-network-proxy-rhel8@sha256:d96539b2ec9d0b20848daf690bf99aefc04faf67a42cdbde5602015c65ad807d?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8&tag=v4.13.0-202310162157.p0.gf1e6d94.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:cf5b57032a32676b8b85f2dfc494dad7b3057d4a56b3cd6a7a472431976c90f4_ppc64le", + "product": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:cf5b57032a32676b8b85f2dfc494dad7b3057d4a56b3cd6a7a472431976c90f4_ppc64le", + "product_id": "openshift4/ose-baremetal-installer-rhel8@sha256:cf5b57032a32676b8b85f2dfc494dad7b3057d4a56b3cd6a7a472431976c90f4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-installer-rhel8@sha256:cf5b57032a32676b8b85f2dfc494dad7b3057d4a56b3cd6a7a472431976c90f4?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8&tag=v4.13.0-202310162157.p0.g71282c9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:58dfeb945422145c665981f13cb020e5fc4db1f91a43792b74a6fe21ae850062_ppc64le", + "product": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:58dfeb945422145c665981f13cb020e5fc4db1f91a43792b74a6fe21ae850062_ppc64le", + "product_id": "openshift4/ose-baremetal-rhel8-operator@sha256:58dfeb945422145c665981f13cb020e5fc4db1f91a43792b74a6fe21ae850062_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-rhel8-operator@sha256:58dfeb945422145c665981f13cb020e5fc4db1f91a43792b74a6fe21ae850062?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel8-operator&tag=v4.13.0-202310162157.p0.g12e53b8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:6f6e43d71339a93ecdcd821ce929de35bfac6180ce599af76d0183765293a9f5_ppc64le", + "product": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:6f6e43d71339a93ecdcd821ce929de35bfac6180ce599af76d0183765293a9f5_ppc64le", + "product_id": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:6f6e43d71339a93ecdcd821ce929de35bfac6180ce599af76d0183765293a9f5_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-runtimecfg-rhel8@sha256:6f6e43d71339a93ecdcd821ce929de35bfac6180ce599af76d0183765293a9f5?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8&tag=v4.13.0-202310162157.p0.g1bfd3bc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli-artifacts@sha256:7530aa8d291e6144a48222ae6449f3df1990698fd86845bab71a22987889c062_ppc64le", + "product": { + "name": "openshift4/ose-cli-artifacts@sha256:7530aa8d291e6144a48222ae6449f3df1990698fd86845bab71a22987889c062_ppc64le", + "product_id": "openshift4/ose-cli-artifacts@sha256:7530aa8d291e6144a48222ae6449f3df1990698fd86845bab71a22987889c062_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli-artifacts@sha256:7530aa8d291e6144a48222ae6449f3df1990698fd86845bab71a22987889c062?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cli-artifacts&tag=v4.13.0-202310162157.p0.g717d4a5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-credential-operator@sha256:f1b4cbd037ab4f5ef039d7d7460974e32aeb8e663fd5805e494b09a71dec1bfb_ppc64le", + "product": { + "name": "openshift4/ose-cloud-credential-operator@sha256:f1b4cbd037ab4f5ef039d7d7460974e32aeb8e663fd5805e494b09a71dec1bfb_ppc64le", + "product_id": "openshift4/ose-cloud-credential-operator@sha256:f1b4cbd037ab4f5ef039d7d7460974e32aeb8e663fd5805e494b09a71dec1bfb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-credential-operator@sha256:f1b4cbd037ab4f5ef039d7d7460974e32aeb8e663fd5805e494b09a71dec1bfb?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cloud-credential-operator&tag=v4.13.0-202310170703.p0.g0621fca.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:26dcbe829d899b9a44447c327f48987f45f8eec1fea43a71c0a11a66b30a1a37_ppc64le", + "product": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:26dcbe829d899b9a44447c327f48987f45f8eec1fea43a71c0a11a66b30a1a37_ppc64le", + "product_id": "openshift4/cloud-network-config-controller-rhel8@sha256:26dcbe829d899b9a44447c327f48987f45f8eec1fea43a71c0a11a66b30a1a37_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cloud-network-config-controller-rhel8@sha256:26dcbe829d899b9a44447c327f48987f45f8eec1fea43a71c0a11a66b30a1a37?arch=ppc64le&repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel8&tag=v4.13.0-202310162157.p0.g4f190d6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-api-rhel8@sha256:1a80a2790192dad8798365e8e0835352324b580278a54fa8eb1eac3a3e119fbb_ppc64le", + "product": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:1a80a2790192dad8798365e8e0835352324b580278a54fa8eb1eac3a3e119fbb_ppc64le", + "product_id": "openshift4/ose-cluster-api-rhel8@sha256:1a80a2790192dad8798365e8e0835352324b580278a54fa8eb1eac3a3e119fbb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-api-rhel8@sha256:1a80a2790192dad8798365e8e0835352324b580278a54fa8eb1eac3a3e119fbb?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel8&tag=v4.13.0-202310162157.p0.g507f873.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-authentication-operator@sha256:294c1949c6c52157c75a408de3ee6c3f299f7d5362af9ff7eb747c8bd39f41a2_ppc64le", + "product": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:294c1949c6c52157c75a408de3ee6c3f299f7d5362af9ff7eb747c8bd39f41a2_ppc64le", + "product_id": "openshift4/ose-cluster-authentication-operator@sha256:294c1949c6c52157c75a408de3ee6c3f299f7d5362af9ff7eb747c8bd39f41a2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-authentication-operator@sha256:294c1949c6c52157c75a408de3ee6c3f299f7d5362af9ff7eb747c8bd39f41a2?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-operator&tag=v4.13.0-202310162157.p0.ga044dd9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:def4bd464f93f925a31495c503e7cecf45b206031ec13129f6fb948f080b7d5c_ppc64le", + "product": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:def4bd464f93f925a31495c503e7cecf45b206031ec13129f6fb948f080b7d5c_ppc64le", + "product_id": "openshift4/ose-cluster-autoscaler-operator@sha256:def4bd464f93f925a31495c503e7cecf45b206031ec13129f6fb948f080b7d5c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler-operator@sha256:def4bd464f93f925a31495c503e7cecf45b206031ec13129f6fb948f080b7d5c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-operator&tag=v4.13.0-202310162157.p0.g8531634.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:3cc0fcc7fdd00b1db62f98a02bb12bd9c17821695a28d429a04e46a8d4151fca_ppc64le", + "product": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:3cc0fcc7fdd00b1db62f98a02bb12bd9c17821695a28d429a04e46a8d4151fca_ppc64le", + "product_id": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:3cc0fcc7fdd00b1db62f98a02bb12bd9c17821695a28d429a04e46a8d4151fca_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-baremetal-operator-rhel8@sha256:3cc0fcc7fdd00b1db62f98a02bb12bd9c17821695a28d429a04e46a8d4151fca?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8&tag=v4.13.0-202310162157.p0.g3d1da56.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-bootstrap@sha256:9b7a71132627013ab5b1f07fa8f489a46e7acf41cb67811d26b8a59164d32a9d_ppc64le", + "product": { + "name": "openshift4/ose-cluster-bootstrap@sha256:9b7a71132627013ab5b1f07fa8f489a46e7acf41cb67811d26b8a59164d32a9d_ppc64le", + "product_id": "openshift4/ose-cluster-bootstrap@sha256:9b7a71132627013ab5b1f07fa8f489a46e7acf41cb67811d26b8a59164d32a9d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-bootstrap@sha256:9b7a71132627013ab5b1f07fa8f489a46e7acf41cb67811d26b8a59164d32a9d?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap&tag=v4.13.0-202310162157.p0.gee908b6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:8844fda4a11a6faf9decb32cacdfac8e3bec27f598da2d3ff4f0d7e9a70a74c3_ppc64le", + "product": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:8844fda4a11a6faf9decb32cacdfac8e3bec27f598da2d3ff4f0d7e9a70a74c3_ppc64le", + "product_id": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:8844fda4a11a6faf9decb32cacdfac8e3bec27f598da2d3ff4f0d7e9a70a74c3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-operator-container-rhel8@sha256:8844fda4a11a6faf9decb32cacdfac8e3bec27f598da2d3ff4f0d7e9a70a74c3?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8&tag=v4.13.0-202310162157.p0.gce1c9a3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:8844fda4a11a6faf9decb32cacdfac8e3bec27f598da2d3ff4f0d7e9a70a74c3_ppc64le", + "product": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:8844fda4a11a6faf9decb32cacdfac8e3bec27f598da2d3ff4f0d7e9a70a74c3_ppc64le", + "product_id": "openshift4/ose-cluster-capi-rhel8-operator@sha256:8844fda4a11a6faf9decb32cacdfac8e3bec27f598da2d3ff4f0d7e9a70a74c3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-rhel8-operator@sha256:8844fda4a11a6faf9decb32cacdfac8e3bec27f598da2d3ff4f0d7e9a70a74c3?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator&tag=v4.13.0-202310162157.p0.gce1c9a3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:b41d8c46231cea80254599c55e4a1f2bbadab0ac9f140699cd1852c4097b9ce8_ppc64le", + "product": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:b41d8c46231cea80254599c55e4a1f2bbadab0ac9f140699cd1852c4097b9ce8_ppc64le", + "product_id": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:b41d8c46231cea80254599c55e4a1f2bbadab0ac9f140699cd1852c4097b9ce8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:b41d8c46231cea80254599c55e4a1f2bbadab0ac9f140699cd1852c4097b9ce8?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8&tag=v4.13.0-202310162157.p0.gef4594e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-config-operator@sha256:8063f82eda65c2e21dba00ccd0562d121674744d61b00af18a705086c369b379_ppc64le", + "product": { + "name": "openshift4/ose-cluster-config-operator@sha256:8063f82eda65c2e21dba00ccd0562d121674744d61b00af18a705086c369b379_ppc64le", + "product_id": "openshift4/ose-cluster-config-operator@sha256:8063f82eda65c2e21dba00ccd0562d121674744d61b00af18a705086c369b379_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-config-operator@sha256:8063f82eda65c2e21dba00ccd0562d121674744d61b00af18a705086c369b379?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-config-operator&tag=v4.13.0-202310162157.p0.ga9e658a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:5c95bafb1fbf1ecd14778ed8030f6953a587fe6a392995e740dd1522c6ce6f31_ppc64le", + "product": { + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:5c95bafb1fbf1ecd14778ed8030f6953a587fe6a392995e740dd1522c6ce6f31_ppc64le", + "product_id": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:5c95bafb1fbf1ecd14778ed8030f6953a587fe6a392995e740dd1522c6ce6f31_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:5c95bafb1fbf1ecd14778ed8030f6953a587fe6a392995e740dd1522c6ce6f31?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8&tag=v4.13.0-202310162157.p0.g383a69c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:69311229a85fe8b1540e53f465072218d079cac10e6db3d762a8ded0a739318d_ppc64le", + "product": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:69311229a85fe8b1540e53f465072218d079cac10e6db3d762a8ded0a739318d_ppc64le", + "product_id": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:69311229a85fe8b1540e53f465072218d079cac10e6db3d762a8ded0a739318d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:69311229a85fe8b1540e53f465072218d079cac10e6db3d762a8ded0a739318d?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator&tag=v4.13.0-202310162157.p0.g97b486c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-dns-operator@sha256:067ca55e88f9b0d0d62f20ea993dacaf3da602dc7b2ce4f6878fe8de1d6003e2_ppc64le", + "product": { + "name": "openshift4/ose-cluster-dns-operator@sha256:067ca55e88f9b0d0d62f20ea993dacaf3da602dc7b2ce4f6878fe8de1d6003e2_ppc64le", + "product_id": "openshift4/ose-cluster-dns-operator@sha256:067ca55e88f9b0d0d62f20ea993dacaf3da602dc7b2ce4f6878fe8de1d6003e2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-dns-operator@sha256:067ca55e88f9b0d0d62f20ea993dacaf3da602dc7b2ce4f6878fe8de1d6003e2?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-dns-operator&tag=v4.13.0-202310162157.p0.gc6768d4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-image-registry-operator@sha256:96f7ff276f8467613d88883531cde22f40dbe21e8c61baf62e54be7b8b51ae06_ppc64le", + "product": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:96f7ff276f8467613d88883531cde22f40dbe21e8c61baf62e54be7b8b51ae06_ppc64le", + "product_id": "openshift4/ose-cluster-image-registry-operator@sha256:96f7ff276f8467613d88883531cde22f40dbe21e8c61baf62e54be7b8b51ae06_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-image-registry-operator@sha256:96f7ff276f8467613d88883531cde22f40dbe21e8c61baf62e54be7b8b51ae06?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-operator&tag=v4.13.0-202310162157.p0.g3ed61e2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-ingress-operator@sha256:4d00c1d765e743d3667e39fa4b378eff7710ecd48e9ac70a50c76a6accf60a38_ppc64le", + "product": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:4d00c1d765e743d3667e39fa4b378eff7710ecd48e9ac70a50c76a6accf60a38_ppc64le", + "product_id": "openshift4/ose-cluster-ingress-operator@sha256:4d00c1d765e743d3667e39fa4b378eff7710ecd48e9ac70a50c76a6accf60a38_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-ingress-operator@sha256:4d00c1d765e743d3667e39fa4b378eff7710ecd48e9ac70a50c76a6accf60a38?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-operator&tag=v4.13.0-202310162157.p0.g2ecad04.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:bb95275993577726866f1196c4a7dffeefeb48084cfa17e107ab670d2e9704bc_ppc64le", + "product": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:bb95275993577726866f1196c4a7dffeefeb48084cfa17e107ab670d2e9704bc_ppc64le", + "product_id": "openshift4/ose-cluster-kube-apiserver-operator@sha256:bb95275993577726866f1196c4a7dffeefeb48084cfa17e107ab670d2e9704bc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-apiserver-operator@sha256:bb95275993577726866f1196c4a7dffeefeb48084cfa17e107ab670d2e9704bc?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator&tag=v4.13.0-202310162157.p0.gd525f5d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:350ae2268aae4e1ce35ba8672ece57613f1ceb417727d57c5d485cf55070e7f0_ppc64le", + "product": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:350ae2268aae4e1ce35ba8672ece57613f1ceb417727d57c5d485cf55070e7f0_ppc64le", + "product_id": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:350ae2268aae4e1ce35ba8672ece57613f1ceb417727d57c5d485cf55070e7f0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel8-operator@sha256:350ae2268aae4e1ce35ba8672ece57613f1ceb417727d57c5d485cf55070e7f0?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator&tag=v4.13.0-202310162157.p0.g8d627a5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:850b2f1da0f9bdc162eab87c91ce8f0a6e77cedb279b886650b13143634d85cc_ppc64le", + "product": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:850b2f1da0f9bdc162eab87c91ce8f0a6e77cedb279b886650b13143634d85cc_ppc64le", + "product_id": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:850b2f1da0f9bdc162eab87c91ce8f0a6e77cedb279b886650b13143634d85cc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-controller-manager-operator@sha256:850b2f1da0f9bdc162eab87c91ce8f0a6e77cedb279b886650b13143634d85cc?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator&tag=v4.13.0-202310162157.p0.gcc6a314.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:0919d5e7ed996b9d9f7b4ef272c9ba00015fa21c855924b55b924740c30ec342_ppc64le", + "product": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:0919d5e7ed996b9d9f7b4ef272c9ba00015fa21c855924b55b924740c30ec342_ppc64le", + "product_id": "openshift4/ose-cluster-kube-scheduler-operator@sha256:0919d5e7ed996b9d9f7b4ef272c9ba00015fa21c855924b55b924740c30ec342_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-scheduler-operator@sha256:0919d5e7ed996b9d9f7b4ef272c9ba00015fa21c855924b55b924740c30ec342?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator&tag=v4.13.0-202310162157.p0.gb4c50a4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:404e672a0aa7b486d0e5e2a9fd171908c6d3cc42b3fb96342af63d60ad94f4a5_ppc64le", + "product": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:404e672a0aa7b486d0e5e2a9fd171908c6d3cc42b3fb96342af63d60ad94f4a5_ppc64le", + "product_id": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:404e672a0aa7b486d0e5e2a9fd171908c6d3cc42b3fb96342af63d60ad94f4a5_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:404e672a0aa7b486d0e5e2a9fd171908c6d3cc42b3fb96342af63d60ad94f4a5?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator&tag=v4.13.0-202310162157.p0.g9f47598.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-machine-approver@sha256:d403066e9593492cb061d9a0260d633d66e5d470a27769394713f729f180da4f_ppc64le", + "product": { + "name": "openshift4/ose-cluster-machine-approver@sha256:d403066e9593492cb061d9a0260d633d66e5d470a27769394713f729f180da4f_ppc64le", + "product_id": "openshift4/ose-cluster-machine-approver@sha256:d403066e9593492cb061d9a0260d633d66e5d470a27769394713f729f180da4f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-machine-approver@sha256:d403066e9593492cb061d9a0260d633d66e5d470a27769394713f729f180da4f?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver&tag=v4.13.0-202310162157.p0.gce66cd5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:f52a3a2234e47ee7ca8e7392ccdb026890b4364abfb066b90cb4c64839b7e13e_ppc64le", + "product": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:f52a3a2234e47ee7ca8e7392ccdb026890b4364abfb066b90cb4c64839b7e13e_ppc64le", + "product_id": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:f52a3a2234e47ee7ca8e7392ccdb026890b4364abfb066b90cb4c64839b7e13e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-apiserver-operator@sha256:f52a3a2234e47ee7ca8e7392ccdb026890b4364abfb066b90cb4c64839b7e13e?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator&tag=v4.13.0-202310162157.p0.gea4f097.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ef2fa28a9419e57f5497f3e85636f72e85e3868322dbcee4f52d659c7867f647_ppc64le", + "product": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ef2fa28a9419e57f5497f3e85636f72e85e3868322dbcee4f52d659c7867f647_ppc64le", + "product_id": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ef2fa28a9419e57f5497f3e85636f72e85e3868322dbcee4f52d659c7867f647_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-controller-manager-operator@sha256:ef2fa28a9419e57f5497f3e85636f72e85e3868322dbcee4f52d659c7867f647?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator&tag=v4.13.0-202310162157.p0.g9a8aba8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:e2b3d056566dadb0a14ebe0f0e29b2baa3a89b9636e7da701bfd6cd0fc892126_ppc64le", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:e2b3d056566dadb0a14ebe0f0e29b2baa3a89b9636e7da701bfd6cd0fc892126_ppc64le", + "product_id": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:e2b3d056566dadb0a14ebe0f0e29b2baa3a89b9636e7da701bfd6cd0fc892126_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8-operator@sha256:e2b3d056566dadb0a14ebe0f0e29b2baa3a89b9636e7da701bfd6cd0fc892126?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator&tag=v4.13.0-202310162157.p0.gaca579d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:f59eb3ae10ca3ead4fc6a6bab82f86deb411dbd478946af2eb7d872b2760bc34_ppc64le", + "product": { + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:f59eb3ae10ca3ead4fc6a6bab82f86deb411dbd478946af2eb7d872b2760bc34_ppc64le", + "product_id": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:f59eb3ae10ca3ead4fc6a6bab82f86deb411dbd478946af2eb7d872b2760bc34_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-platform-operators-manager-rhel8@sha256:f59eb3ae10ca3ead4fc6a6bab82f86deb411dbd478946af2eb7d872b2760bc34?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8&tag=v4.13.0-202310170326.p0.g471a806.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:b745d554f22062fe21d36dea67346adea95ac71b2d31e230d828500e854a235c_ppc64le", + "product": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:b745d554f22062fe21d36dea67346adea95ac71b2d31e230d828500e854a235c_ppc64le", + "product_id": "openshift4/ose-cluster-policy-controller-rhel8@sha256:b745d554f22062fe21d36dea67346adea95ac71b2d31e230d828500e854a235c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-policy-controller-rhel8@sha256:b745d554f22062fe21d36dea67346adea95ac71b2d31e230d828500e854a235c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8&tag=v4.13.0-202310162157.p0.g8d2af85.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-samples-operator@sha256:9cb3e0e61b33ee945e81495147c381fa296e8f06f6dd918f54a0cf5a9f2c3b5c_ppc64le", + "product": { + "name": "openshift4/ose-cluster-samples-operator@sha256:9cb3e0e61b33ee945e81495147c381fa296e8f06f6dd918f54a0cf5a9f2c3b5c_ppc64le", + "product_id": "openshift4/ose-cluster-samples-operator@sha256:9cb3e0e61b33ee945e81495147c381fa296e8f06f6dd918f54a0cf5a9f2c3b5c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-samples-operator@sha256:9cb3e0e61b33ee945e81495147c381fa296e8f06f6dd918f54a0cf5a9f2c3b5c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-samples-operator&tag=v4.13.0-202310162157.p0.gf785bad.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-storage-operator@sha256:a58897504ce4316f7f1671088e93e5fb2441685b8fafee298643ff0e3764e5a2_ppc64le", + "product": { + "name": "openshift4/ose-cluster-storage-operator@sha256:a58897504ce4316f7f1671088e93e5fb2441685b8fafee298643ff0e3764e5a2_ppc64le", + "product_id": "openshift4/ose-cluster-storage-operator@sha256:a58897504ce4316f7f1671088e93e5fb2441685b8fafee298643ff0e3764e5a2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-storage-operator@sha256:a58897504ce4316f7f1671088e93e5fb2441685b8fafee298643ff0e3764e5a2?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-cluster-storage-operator&tag=v4.13.0-202310162157.p0.g6769015.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:ed59513687763264e47f67172a93f83d3df14ea4df6cf575086ce9044a375770_ppc64le", + "product": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:ed59513687763264e47f67172a93f83d3df14ea4df6cf575086ce9044a375770_ppc64le", + "product_id": "openshift4/ose-container-networking-plugins-rhel8@sha256:ed59513687763264e47f67172a93f83d3df14ea4df6cf575086ce9044a375770_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-container-networking-plugins-rhel8@sha256:ed59513687763264e47f67172a93f83d3df14ea4df6cf575086ce9044a375770?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8&tag=v4.13.0-202310162157.p0.gdbf24de.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:8bdfb639060db65a26ee18df1af7062a3f3d649a0253919d48ace45788d22005_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:8bdfb639060db65a26ee18df1af7062a3f3d649a0253919d48ace45788d22005_ppc64le", + "product_id": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:8bdfb639060db65a26ee18df1af7062a3f3d649a0253919d48ace45788d22005_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-rhel8@sha256:8bdfb639060db65a26ee18df1af7062a3f3d649a0253919d48ace45788d22005?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8&tag=v4.13.0-202310162157.p0.gf797d45.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ce892df69586f02fca48d7d4d8dbb018e06b54f69e62114c7466850c4a809c21_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ce892df69586f02fca48d7d4d8dbb018e06b54f69e62114c7466850c4a809c21_ppc64le", + "product_id": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ce892df69586f02fca48d7d4d8dbb018e06b54f69e62114c7466850c4a809c21_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-operator-rhel8@sha256:ce892df69586f02fca48d7d4d8dbb018e06b54f69e62114c7466850c4a809c21?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8&tag=v4.13.0-202310162157.p0.g318c84a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:8938d99833efaf889412877e38fadb753aba8ab91b1d27a19319e3eb11fa1ad3_ppc64le", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:8938d99833efaf889412877e38fadb753aba8ab91b1d27a19319e3eb11fa1ad3_ppc64le", + "product_id": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:8938d99833efaf889412877e38fadb753aba8ab91b1d27a19319e3eb11fa1ad3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-webhook-rhel8@sha256:8938d99833efaf889412877e38fadb753aba8ab91b1d27a19319e3eb11fa1ad3?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8&tag=v4.13.0-202310162157.p0.gf797d45.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:030fe6ccc6c63626f92991019636910bbb6c9a49614aa08b72edd928522ffc78_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:030fe6ccc6c63626f92991019636910bbb6c9a49614aa08b72edd928522ffc78_ppc64le", + "product_id": "openshift4/ose-csi-external-resizer-rhel8@sha256:030fe6ccc6c63626f92991019636910bbb6c9a49614aa08b72edd928522ffc78_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer-rhel8@sha256:030fe6ccc6c63626f92991019636910bbb6c9a49614aa08b72edd928522ffc78?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8&tag=v4.13.0-202310162157.p0.g974ac36.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer@sha256:030fe6ccc6c63626f92991019636910bbb6c9a49614aa08b72edd928522ffc78_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-resizer@sha256:030fe6ccc6c63626f92991019636910bbb6c9a49614aa08b72edd928522ffc78_ppc64le", + "product_id": "openshift4/ose-csi-external-resizer@sha256:030fe6ccc6c63626f92991019636910bbb6c9a49614aa08b72edd928522ffc78_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer@sha256:030fe6ccc6c63626f92991019636910bbb6c9a49614aa08b72edd928522ffc78?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer&tag=v4.13.0-202310162157.p0.g974ac36.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:7adc1a312b517979a699c5610d07fe5fd874be7c004f495914aa01ed655a62c3_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:7adc1a312b517979a699c5610d07fe5fd874be7c004f495914aa01ed655a62c3_ppc64le", + "product_id": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:7adc1a312b517979a699c5610d07fe5fd874be7c004f495914aa01ed655a62c3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter-rhel8@sha256:7adc1a312b517979a699c5610d07fe5fd874be7c004f495914aa01ed655a62c3?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8&tag=v4.13.0-202310162157.p0.g3f52ee7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter@sha256:7adc1a312b517979a699c5610d07fe5fd874be7c004f495914aa01ed655a62c3_ppc64le", + "product": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:7adc1a312b517979a699c5610d07fe5fd874be7c004f495914aa01ed655a62c3_ppc64le", + "product_id": "openshift4/ose-csi-external-snapshotter@sha256:7adc1a312b517979a699c5610d07fe5fd874be7c004f495914aa01ed655a62c3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter@sha256:7adc1a312b517979a699c5610d07fe5fd874be7c004f495914aa01ed655a62c3?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter&tag=v4.13.0-202310162157.p0.g3f52ee7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:53cca5100a2e7907213304643fc6125ab1e9f6d9f125f9fd9d1cd27ab57a6895_ppc64le", + "product": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:53cca5100a2e7907213304643fc6125ab1e9f6d9f125f9fd9d1cd27ab57a6895_ppc64le", + "product_id": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:53cca5100a2e7907213304643fc6125ab1e9f6d9f125f9fd9d1cd27ab57a6895_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller-rhel8@sha256:53cca5100a2e7907213304643fc6125ab1e9f6d9f125f9fd9d1cd27ab57a6895?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8&tag=v4.13.0-202310162157.p0.g3f52ee7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller@sha256:53cca5100a2e7907213304643fc6125ab1e9f6d9f125f9fd9d1cd27ab57a6895_ppc64le", + "product": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:53cca5100a2e7907213304643fc6125ab1e9f6d9f125f9fd9d1cd27ab57a6895_ppc64le", + "product_id": "openshift4/ose-csi-snapshot-controller@sha256:53cca5100a2e7907213304643fc6125ab1e9f6d9f125f9fd9d1cd27ab57a6895_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller@sha256:53cca5100a2e7907213304643fc6125ab1e9f6d9f125f9fd9d1cd27ab57a6895?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller&tag=v4.13.0-202310162157.p0.g3f52ee7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:31e4bfc95427bbb22e7991c5e5a35db45222a1bab7f264a0d9e076e1676f450f_ppc64le", + "product": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:31e4bfc95427bbb22e7991c5e5a35db45222a1bab7f264a0d9e076e1676f450f_ppc64le", + "product_id": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:31e4bfc95427bbb22e7991c5e5a35db45222a1bab7f264a0d9e076e1676f450f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-validation-webhook-rhel8@sha256:31e4bfc95427bbb22e7991c5e5a35db45222a1bab7f264a0d9e076e1676f450f?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8&tag=v4.13.0-202310162157.p0.g3f52ee7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/egress-router-cni-rhel8@sha256:b38a3e591a1f3a321f408610a97868d1dbba0ce3494da79897485cc67d70d269_ppc64le", + "product": { + "name": "openshift4/egress-router-cni-rhel8@sha256:b38a3e591a1f3a321f408610a97868d1dbba0ce3494da79897485cc67d70d269_ppc64le", + "product_id": "openshift4/egress-router-cni-rhel8@sha256:b38a3e591a1f3a321f408610a97868d1dbba0ce3494da79897485cc67d70d269_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/egress-router-cni-rhel8@sha256:b38a3e591a1f3a321f408610a97868d1dbba0ce3494da79897485cc67d70d269?arch=ppc64le&repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel8&tag=v4.13.0-202310162157.p0.g756e384.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-etcd-rhel9@sha256:c2b8725062ff33acf0450fa2a9cba0b2f8c1696d31ed7a7b22d256b64bb28120_ppc64le", + "product": { + "name": "openshift4/ose-etcd-rhel9@sha256:c2b8725062ff33acf0450fa2a9cba0b2f8c1696d31ed7a7b22d256b64bb28120_ppc64le", + "product_id": "openshift4/ose-etcd-rhel9@sha256:c2b8725062ff33acf0450fa2a9cba0b2f8c1696d31ed7a7b22d256b64bb28120_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-etcd-rhel9@sha256:c2b8725062ff33acf0450fa2a9cba0b2f8c1696d31ed7a7b22d256b64bb28120?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9&tag=v4.13.0-202310162157.p0.g7efbc01.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:1be6ddbbb1fc9659a9c9b6ffb290c488d949986577d205335601277116211111_ppc64le", + "product": { + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:1be6ddbbb1fc9659a9c9b6ffb290c488d949986577d205335601277116211111_ppc64le", + "product_id": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:1be6ddbbb1fc9659a9c9b6ffb290c488d949986577d205335601277116211111_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel8@sha256:1be6ddbbb1fc9659a9c9b6ffb290c488d949986577d205335601277116211111?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.gefaf4dc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:fcff6dc9ce0a22d020a6992ab54bf578a345925e2385f5b5fd4c94ef1ac6cfb7_ppc64le", + "product": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:fcff6dc9ce0a22d020a6992ab54bf578a345925e2385f5b5fd4c94ef1ac6cfb7_ppc64le", + "product_id": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:fcff6dc9ce0a22d020a6992ab54bf578a345925e2385f5b5fd4c94ef1ac6cfb7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel8@sha256:fcff6dc9ce0a22d020a6992ab54bf578a345925e2385f5b5fd4c94ef1ac6cfb7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8&tag=v4.13.0-202310162157.p0.geaeccca.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:157b66d060c178934df8394baaabc4c91c40621a225ffc4b0234c38de1bf4fc6_ppc64le", + "product": { + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:157b66d060c178934df8394baaabc4c91c40621a225ffc4b0234c38de1bf4fc6_ppc64le", + "product_id": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:157b66d060c178934df8394baaabc4c91c40621a225ffc4b0234c38de1bf4fc6_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel8@sha256:157b66d060c178934df8394baaabc4c91c40621a225ffc4b0234c38de1bf4fc6?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.gc30195c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:d8f0ea6e8c0de45ce5d0a3d81d990602a131ee9c2cbeab70c1c3a9b6483b53ba_ppc64le", + "product": { + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:d8f0ea6e8c0de45ce5d0a3d81d990602a131ee9c2cbeab70c1c3a9b6483b53ba_ppc64le", + "product_id": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:d8f0ea6e8c0de45ce5d0a3d81d990602a131ee9c2cbeab70c1c3a9b6483b53ba_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel8@sha256:d8f0ea6e8c0de45ce5d0a3d81d990602a131ee9c2cbeab70c1c3a9b6483b53ba?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8&tag=v4.13.0-202310162157.p0.g6534fed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hypershift-rhel8@sha256:86278e5e80752471a512bcff8f4572d1b9f930c1a603fe07fd460d497755a39e_ppc64le", + "product": { + "name": "openshift4/ose-hypershift-rhel8@sha256:86278e5e80752471a512bcff8f4572d1b9f930c1a603fe07fd460d497755a39e_ppc64le", + "product_id": "openshift4/ose-hypershift-rhel8@sha256:86278e5e80752471a512bcff8f4572d1b9f930c1a603fe07fd460d497755a39e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-hypershift-rhel8@sha256:86278e5e80752471a512bcff8f4572d1b9f930c1a603fe07fd460d497755a39e?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel8&tag=v4.13.0-202310162157.p0.g2c52769.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:f720aaa947dbae3b9cdf8d66728898469764415ef9899bd0ae0ae240ae82e34a_ppc64le", + "product": { + "name": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:f720aaa947dbae3b9cdf8d66728898469764415ef9899bd0ae0ae240ae82e34a_ppc64le", + "product_id": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:f720aaa947dbae3b9cdf8d66728898469764415ef9899bd0ae0ae240ae82e34a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:f720aaa947dbae3b9cdf8d66728898469764415ef9899bd0ae0ae240ae82e34a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8&tag=v4.13.0-202310162157.p0.gd221afa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-insights-rhel8-operator@sha256:0ecdc32995df2101e04d0c03645318ee4a244c9d08d2693c20d18c79b885a492_ppc64le", + "product": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:0ecdc32995df2101e04d0c03645318ee4a244c9d08d2693c20d18c79b885a492_ppc64le", + "product_id": "openshift4/ose-insights-rhel8-operator@sha256:0ecdc32995df2101e04d0c03645318ee4a244c9d08d2693c20d18c79b885a492_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-insights-rhel8-operator@sha256:0ecdc32995df2101e04d0c03645318ee4a244c9d08d2693c20d18c79b885a492?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-insights-rhel8-operator&tag=v4.13.0-202310162157.p0.gba18a08.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer-artifacts@sha256:8911d7dd6779ac680a13873c6a430370b1794c4cd0247d1a5f715ba615ddc384_ppc64le", + "product": { + "name": "openshift4/ose-installer-artifacts@sha256:8911d7dd6779ac680a13873c6a430370b1794c4cd0247d1a5f715ba615ddc384_ppc64le", + "product_id": "openshift4/ose-installer-artifacts@sha256:8911d7dd6779ac680a13873c6a430370b1794c4cd0247d1a5f715ba615ddc384_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer-artifacts@sha256:8911d7dd6779ac680a13873c6a430370b1794c4cd0247d1a5f715ba615ddc384?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-installer-artifacts&tag=v4.13.0-202310170703.p0.g71282c9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer@sha256:1e533460d8e4ccd145594bd21f0d8bf15d5252357460372b6ee3711765a5bda1_ppc64le", + "product": { + "name": "openshift4/ose-installer@sha256:1e533460d8e4ccd145594bd21f0d8bf15d5252357460372b6ee3711765a5bda1_ppc64le", + "product_id": "openshift4/ose-installer@sha256:1e533460d8e4ccd145594bd21f0d8bf15d5252357460372b6ee3711765a5bda1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer@sha256:1e533460d8e4ccd145594bd21f0d8bf15d5252357460372b6ee3711765a5bda1?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-installer&tag=v4.13.0-202310162157.p0.g71282c9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:5166f3d5072802208f2dded23be7c51586f5823359747df272b8ba6de51c3017_ppc64le", + "product": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:5166f3d5072802208f2dded23be7c51586f5823359747df272b8ba6de51c3017_ppc64le", + "product_id": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:5166f3d5072802208f2dded23be7c51586f5823359747df272b8ba6de51c3017_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-storage-version-migrator-rhel8@sha256:5166f3d5072802208f2dded23be7c51586f5823359747df272b8ba6de51c3017?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8&tag=v4.13.0-202310162157.p0.gbad104d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:5e23dadcc20dc2f4477130eeb8a9a768b2695614892bbefd99eb64603187ba6a_ppc64le", + "product": { + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:5e23dadcc20dc2f4477130eeb8a9a768b2695614892bbefd99eb64603187ba6a_ppc64le", + "product_id": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:5e23dadcc20dc2f4477130eeb8a9a768b2695614892bbefd99eb64603187ba6a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel8@sha256:5e23dadcc20dc2f4477130eeb8a9a768b2695614892bbefd99eb64603187ba6a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.gee2033e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:4b9cd657512d54a0b7ae7b8d2d304a55307aede8b5edbfbdc947f108e6723f36_ppc64le", + "product": { + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:4b9cd657512d54a0b7ae7b8d2d304a55307aede8b5edbfbdc947f108e6723f36_ppc64le", + "product_id": "openshift4/kubevirt-csi-driver-rhel8@sha256:4b9cd657512d54a0b7ae7b8d2d304a55307aede8b5edbfbdc947f108e6723f36_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-csi-driver-rhel8@sha256:4b9cd657512d54a0b7ae7b8d2d304a55307aede8b5edbfbdc947f108e6723f36?arch=ppc64le&repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.gefa0b94.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-libvirt-machine-controllers@sha256:0b44961bb9803fb3923c5f196cfe0a5272086c6913eec97df1117e18dbdc22e8_ppc64le", + "product": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:0b44961bb9803fb3923c5f196cfe0a5272086c6913eec97df1117e18dbdc22e8_ppc64le", + "product_id": "openshift4/ose-libvirt-machine-controllers@sha256:0b44961bb9803fb3923c5f196cfe0a5272086c6913eec97df1117e18dbdc22e8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-libvirt-machine-controllers@sha256:0b44961bb9803fb3923c5f196cfe0a5272086c6913eec97df1117e18dbdc22e8?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers&tag=v4.13.0-202310162157.p0.gd4b7a8a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-operator@sha256:ba9032e90874993a981d6d831c963d5697356bb8875669322530b66471a4fd44_ppc64le", + "product": { + "name": "openshift4/ose-machine-api-operator@sha256:ba9032e90874993a981d6d831c963d5697356bb8875669322530b66471a4fd44_ppc64le", + "product_id": "openshift4/ose-machine-api-operator@sha256:ba9032e90874993a981d6d831c963d5697356bb8875669322530b66471a4fd44_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-operator@sha256:ba9032e90874993a981d6d831c963d5697356bb8875669322530b66471a4fd44?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-machine-api-operator&tag=v4.13.0-202310162157.p0.g370fdaa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:2d1af774642cf3fd8a78fae25ad5bce5590b1969efd64ddb7048417ae885142a_ppc64le", + "product": { + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:2d1af774642cf3fd8a78fae25ad5bce5590b1969efd64ddb7048417ae885142a_ppc64le", + "product_id": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:2d1af774642cf3fd8a78fae25ad5bce5590b1969efd64ddb7048417ae885142a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-gcp-rhel8@sha256:2d1af774642cf3fd8a78fae25ad5bce5590b1969efd64ddb7048417ae885142a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8&tag=v4.13.0-202310162157.p0.g38ddff0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:8cc9ac97492a19e269491f60b1c35a5c8b8bfd0e3bb35b7e70b584547f9ef1d7_ppc64le", + "product": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:8cc9ac97492a19e269491f60b1c35a5c8b8bfd0e3bb35b7e70b584547f9ef1d7_ppc64le", + "product_id": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:8cc9ac97492a19e269491f60b1c35a5c8b8bfd0e3bb35b7e70b584547f9ef1d7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-openstack-rhel8@sha256:8cc9ac97492a19e269491f60b1c35a5c8b8bfd0e3bb35b7e70b584547f9ef1d7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8&tag=v4.13.0-202310162157.p0.g7bce9d6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-config-operator@sha256:87bad609876c80831f223ac40bd1aa4b8e70a559070f9821280286c121a0aadd_ppc64le", + "product": { + "name": "openshift4/ose-machine-config-operator@sha256:87bad609876c80831f223ac40bd1aa4b8e70a559070f9821280286c121a0aadd_ppc64le", + "product_id": "openshift4/ose-machine-config-operator@sha256:87bad609876c80831f223ac40bd1aa4b8e70a559070f9821280286c121a0aadd_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-config-operator@sha256:87bad609876c80831f223ac40bd1aa4b8e70a559070f9821280286c121a0aadd?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-machine-config-operator&tag=v4.13.0-202310162157.p0.g1c52dd1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-os-images-rhel8@sha256:117a199f5ab35c67f10539938b05af432a365a63b4117b47d1eaf4b003e445f9_ppc64le", + "product": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:117a199f5ab35c67f10539938b05af432a365a63b4117b47d1eaf4b003e445f9_ppc64le", + "product_id": "openshift4/ose-machine-os-images-rhel8@sha256:117a199f5ab35c67f10539938b05af432a365a63b4117b47d1eaf4b003e445f9_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-os-images-rhel8@sha256:117a199f5ab35c67f10539938b05af432a365a63b4117b47d1eaf4b003e445f9?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel8&tag=v4.13.0-202310162157.p0.gb14856f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-admission-controller@sha256:c2f171b699fdcd27def853913855888662325150d67d851d94cc4e4445c880d5_ppc64le", + "product": { + "name": "openshift4/ose-multus-admission-controller@sha256:c2f171b699fdcd27def853913855888662325150d67d851d94cc4e4445c880d5_ppc64le", + "product_id": "openshift4/ose-multus-admission-controller@sha256:c2f171b699fdcd27def853913855888662325150d67d851d94cc4e4445c880d5_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-admission-controller@sha256:c2f171b699fdcd27def853913855888662325150d67d851d94cc4e4445c880d5?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller&tag=v4.13.0-202310162157.p0.gf76d674.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:e14c8bcd48a1cf94aa8e3e9c71633107b66ba3326df72274e1fbc7b46e5b51a4_ppc64le", + "product": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:e14c8bcd48a1cf94aa8e3e9c71633107b66ba3326df72274e1fbc7b46e5b51a4_ppc64le", + "product_id": "openshift4/ose-multus-networkpolicy-rhel8@sha256:e14c8bcd48a1cf94aa8e3e9c71633107b66ba3326df72274e1fbc7b46e5b51a4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-networkpolicy-rhel8@sha256:e14c8bcd48a1cf94aa8e3e9c71633107b66ba3326df72274e1fbc7b46e5b51a4?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8&tag=v4.13.0-202310162157.p0.g7b99c19.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:75ac430e16c79bb256bcabb2ce1ff167ab6b497f7b799598caf44b678e686020_ppc64le", + "product": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:75ac430e16c79bb256bcabb2ce1ff167ab6b497f7b799598caf44b678e686020_ppc64le", + "product_id": "openshift4/ose-multus-route-override-cni-rhel8@sha256:75ac430e16c79bb256bcabb2ce1ff167ab6b497f7b799598caf44b678e686020_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-route-override-cni-rhel8@sha256:75ac430e16c79bb256bcabb2ce1ff167ab6b497f7b799598caf44b678e686020?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8&tag=v4.13.0-202310162157.p0.gca3bbec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:6117505f5ae0eade409c09da7e0424f532913551e58363b8068676f3a6f89a9a_ppc64le", + "product": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:6117505f5ae0eade409c09da7e0424f532913551e58363b8068676f3a6f89a9a_ppc64le", + "product_id": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:6117505f5ae0eade409c09da7e0424f532913551e58363b8068676f3a6f89a9a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel8@sha256:6117505f5ae0eade409c09da7e0424f532913551e58363b8068676f3a6f89a9a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8&tag=v4.13.0-202310162157.p0.g7ea4020.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-must-gather@sha256:4189a2ca25ba5d2c45e7a8560cc1f0df3a526addd7aebef60202e587951e74f7_ppc64le", + "product": { + "name": "openshift4/ose-must-gather@sha256:4189a2ca25ba5d2c45e7a8560cc1f0df3a526addd7aebef60202e587951e74f7_ppc64le", + "product_id": "openshift4/ose-must-gather@sha256:4189a2ca25ba5d2c45e7a8560cc1f0df3a526addd7aebef60202e587951e74f7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-must-gather@sha256:4189a2ca25ba5d2c45e7a8560cc1f0df3a526addd7aebef60202e587951e74f7?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-must-gather&tag=v4.13.0-202310162157.p0.g288ef2f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:13e3d0ab5a7460795a098b16e6b1dfb73a81888ed9f74f0a26cd7d8bd1040b0d_ppc64le", + "product": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:13e3d0ab5a7460795a098b16e6b1dfb73a81888ed9f74f0a26cd7d8bd1040b0d_ppc64le", + "product_id": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:13e3d0ab5a7460795a098b16e6b1dfb73a81888ed9f74f0a26cd7d8bd1040b0d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-interface-bond-cni-rhel8@sha256:13e3d0ab5a7460795a098b16e6b1dfb73a81888ed9f74f0a26cd7d8bd1040b0d?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8&tag=v4.13.0-202310162157.p0.g84bda2a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:68b2bf249273ad87af7102f6b8220ded465482a596230cb9fa039bab74eb3475_ppc64le", + "product": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:68b2bf249273ad87af7102f6b8220ded465482a596230cb9fa039bab74eb3475_ppc64le", + "product_id": "openshift4/ose-network-metrics-daemon-rhel8@sha256:68b2bf249273ad87af7102f6b8220ded465482a596230cb9fa039bab74eb3475_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-metrics-daemon-rhel8@sha256:68b2bf249273ad87af7102f6b8220ded465482a596230cb9fa039bab74eb3475?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8&tag=v4.13.0-202310162157.p0.ge72c8ad.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/network-tools-rhel8@sha256:643f10b40b9102997f1e6871f16fe073b4b91b41ff95475028db677e78d76b32_ppc64le", + "product": { + "name": "openshift4/network-tools-rhel8@sha256:643f10b40b9102997f1e6871f16fe073b4b91b41ff95475028db677e78d76b32_ppc64le", + "product_id": "openshift4/network-tools-rhel8@sha256:643f10b40b9102997f1e6871f16fe073b4b91b41ff95475028db677e78d76b32_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/network-tools-rhel8@sha256:643f10b40b9102997f1e6871f16fe073b4b91b41ff95475028db677e78d76b32?arch=ppc64le&repository_url=registry.redhat.io/openshift4/network-tools-rhel8&tag=v4.13.0-202310162157.p0.g073feda.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sdn-rhel8@sha256:632ef152f1851b4716572273291e64d24447a67b081b6ce9f23ed427422307cd_ppc64le", + "product": { + "name": "openshift4/ose-sdn-rhel8@sha256:632ef152f1851b4716572273291e64d24447a67b081b6ce9f23ed427422307cd_ppc64le", + "product_id": "openshift4/ose-sdn-rhel8@sha256:632ef152f1851b4716572273291e64d24447a67b081b6ce9f23ed427422307cd_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-sdn-rhel8@sha256:632ef152f1851b4716572273291e64d24447a67b081b6ce9f23ed427422307cd?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-sdn-rhel8&tag=v4.13.0-202310162157.p0.g12a5bcf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:6114bbdda79096a66945a0d8fe7f736c612f9f9e23cd3a8987997ac726e196d3_ppc64le", + "product": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:6114bbdda79096a66945a0d8fe7f736c612f9f9e23cd3a8987997ac726e196d3_ppc64le", + "product_id": "openshift4/ose-oauth-apiserver-rhel8@sha256:6114bbdda79096a66945a0d8fe7f736c612f9f9e23cd3a8987997ac726e196d3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-apiserver-rhel8@sha256:6114bbdda79096a66945a0d8fe7f736c612f9f9e23cd3a8987997ac726e196d3?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8&tag=v4.13.0-202310162157.p0.g41c2dfe.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:e12aebe890c2946bd9041cc75799038613f8a0e2e7bd56c4595837adef6a6b45_ppc64le", + "product": { + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:e12aebe890c2946bd9041cc75799038613f8a0e2e7bd56c4595837adef6a6b45_ppc64le", + "product_id": "openshift4/ose-olm-rukpak-rhel8@sha256:e12aebe890c2946bd9041cc75799038613f8a0e2e7bd56c4595837adef6a6b45_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-olm-rukpak-rhel8@sha256:e12aebe890c2946bd9041cc75799038613f8a0e2e7bd56c4595837adef6a6b45?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-olm-rukpak-rhel8&tag=v4.13.0-202310162157.p0.g66b3e55.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:b23f04d68e643fc7659566aebda8eec46aee97aa51a86a3333d475ea01600cd8_ppc64le", + "product": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:b23f04d68e643fc7659566aebda8eec46aee97aa51a86a3333d475ea01600cd8_ppc64le", + "product_id": "openshift4/ose-openshift-apiserver-rhel8@sha256:b23f04d68e643fc7659566aebda8eec46aee97aa51a86a3333d475ea01600cd8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-apiserver-rhel8@sha256:b23f04d68e643fc7659566aebda8eec46aee97aa51a86a3333d475ea01600cd8?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8&tag=v4.13.0-202310162157.p0.g0b82768.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:094b4da21d89fadb2a2bbed715b29a06633b11289e9fee76b2ecf5051947c2d2_ppc64le", + "product": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:094b4da21d89fadb2a2bbed715b29a06633b11289e9fee76b2ecf5051947c2d2_ppc64le", + "product_id": "openshift4/ose-openshift-controller-manager-rhel8@sha256:094b4da21d89fadb2a2bbed715b29a06633b11289e9fee76b2ecf5051947c2d2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-controller-manager-rhel8@sha256:094b4da21d89fadb2a2bbed715b29a06633b11289e9fee76b2ecf5051947c2d2?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.g385057e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:55a440c8b19e107aaa3d00bbb81ce5bf4ddf6d1f136c8ac1fe232f887bb8aa38_ppc64le", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:55a440c8b19e107aaa3d00bbb81ce5bf4ddf6d1f136c8ac1fe232f887bb8aa38_ppc64le", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:55a440c8b19e107aaa3d00bbb81ce5bf4ddf6d1f136c8ac1fe232f887bb8aa38_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8@sha256:55a440c8b19e107aaa3d00bbb81ce5bf4ddf6d1f136c8ac1fe232f887bb8aa38?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.g171da3f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:18d747b0fc53b24f29343bb4429f6cec796e1a0b20e342b423b7fc9b8cdf26c8_ppc64le", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:18d747b0fc53b24f29343bb4429f6cec796e1a0b20e342b423b7fc9b8cdf26c8_ppc64le", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:18d747b0fc53b24f29343bb4429f6cec796e1a0b20e342b423b7fc9b8cdf26c8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:18d747b0fc53b24f29343bb4429f6cec796e1a0b20e342b423b7fc9b8cdf26c8?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator&tag=v4.13.0-202310162157.p0.g90ee04b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:ccb2b086869c4af6a3c618ad6478a018c2a03a5553969e763cc3925b5cea4994_ppc64le", + "product": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:ccb2b086869c4af6a3c618ad6478a018c2a03a5553969e763cc3925b5cea4994_ppc64le", + "product_id": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:ccb2b086869c4af6a3c618ad6478a018c2a03a5553969e763cc3925b5cea4994_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel8@sha256:ccb2b086869c4af6a3c618ad6478a018c2a03a5553969e763cc3925b5cea4994?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.g171da3f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:e3b36ad0253114373ac2528202557500d9e76a4e45af397b3e19ceda5761d4cb_ppc64le", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:e3b36ad0253114373ac2528202557500d9e76a4e45af397b3e19ceda5761d4cb_ppc64le", + "product_id": "openshift4/ovirt-csi-driver-rhel8@sha256:e3b36ad0253114373ac2528202557500d9e76a4e45af397b3e19ceda5761d4cb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8@sha256:e3b36ad0253114373ac2528202557500d9e76a4e45af397b3e19ceda5761d4cb?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.gf21b470.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:e3b36ad0253114373ac2528202557500d9e76a4e45af397b3e19ceda5761d4cb_ppc64le", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:e3b36ad0253114373ac2528202557500d9e76a4e45af397b3e19ceda5761d4cb_ppc64le", + "product_id": "openshift4/ovirt-csi-driver-rhel7@sha256:e3b36ad0253114373ac2528202557500d9e76a4e45af397b3e19ceda5761d4cb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel7@sha256:e3b36ad0253114373ac2528202557500d9e76a4e45af397b3e19ceda5761d4cb?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel7&tag=v4.13.0-202310162157.p0.gf21b470.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:bb3aa7b4e0c7eddc3433b14f63964e15e489408d42c5288ed9593dc1efa6da0a_ppc64le", + "product": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:bb3aa7b4e0c7eddc3433b14f63964e15e489408d42c5288ed9593dc1efa6da0a_ppc64le", + "product_id": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:bb3aa7b4e0c7eddc3433b14f63964e15e489408d42c5288ed9593dc1efa6da0a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovirt-machine-controllers-rhel8@sha256:bb3aa7b4e0c7eddc3433b14f63964e15e489408d42c5288ed9593dc1efa6da0a?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8&tag=v4.13.0-202310162157.p0.g22d89b3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes@sha256:606ac7d3ca14d683111a933ab4593c87bae8874218dba7b0869f8b5b1be94b0c_ppc64le", + "product": { + "name": "openshift4/ose-ovn-kubernetes@sha256:606ac7d3ca14d683111a933ab4593c87bae8874218dba7b0869f8b5b1be94b0c_ppc64le", + "product_id": "openshift4/ose-ovn-kubernetes@sha256:606ac7d3ca14d683111a933ab4593c87bae8874218dba7b0869f8b5b1be94b0c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes@sha256:606ac7d3ca14d683111a933ab4593c87bae8874218dba7b0869f8b5b1be94b0c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes&tag=v4.13.0-202310162157.p0.g881909d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:427dde9a0b2c4dcc3d514f3916d8deb37b99c501393cae2714bc5ef41c3f905c_ppc64le", + "product": { + "name": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:427dde9a0b2c4dcc3d514f3916d8deb37b99c501393cae2714bc5ef41c3f905c_ppc64le", + "product_id": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:427dde9a0b2c4dcc3d514f3916d8deb37b99c501393cae2714bc5ef41c3f905c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-block-csi-driver-rhel8@sha256:427dde9a0b2c4dcc3d514f3916d8deb37b99c501393cae2714bc5ef41c3f905c?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8&tag=v4.13.0-202310170703.p0.gddec584.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:5adcbda53336c7dd32610b83aca742cc1b42dc64792db4997d3b16def03f243b_ppc64le", + "product": { + "name": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:5adcbda53336c7dd32610b83aca742cc1b42dc64792db4997d3b16def03f243b_ppc64le", + "product_id": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:5adcbda53336c7dd32610b83aca742cc1b42dc64792db4997d3b16def03f243b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-block-csi-driver-operator-rhel8@sha256:5adcbda53336c7dd32610b83aca742cc1b42dc64792db4997d3b16def03f243b?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8&tag=v4.13.0-202310162157.p0.g2d8e82b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:979e46631d2863c8e5c0359c132ccf7a859cff33e12d977085f0b8a4e25f6be0_ppc64le", + "product": { + "name": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:979e46631d2863c8e5c0359c132ccf7a859cff33e12d977085f0b8a4e25f6be0_ppc64le", + "product_id": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:979e46631d2863c8e5c0359c132ccf7a859cff33e12d977085f0b8a4e25f6be0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-cloud-controller-manager-rhel8@sha256:979e46631d2863c8e5c0359c132ccf7a859cff33e12d977085f0b8a4e25f6be0?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.g1303656.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:cd19eefb7b96920e9c0ed867169a4eb82c2d0b611077c18b6cb6fb5159b4d1c8_ppc64le", + "product": { + "name": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:cd19eefb7b96920e9c0ed867169a4eb82c2d0b611077c18b6cb6fb5159b4d1c8_ppc64le", + "product_id": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:cd19eefb7b96920e9c0ed867169a4eb82c2d0b611077c18b6cb6fb5159b4d1c8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-machine-controllers-rhel8@sha256:cd19eefb7b96920e9c0ed867169a4eb82c2d0b611077c18b6cb6fb5159b4d1c8?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8&tag=v4.13.0-202310162157.p0.gbf49c5c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:bf0dea8039df1fcbcf4a7cd0c8ad91b96d2244e4c398729abd3d2969791f0911_ppc64le", + "product": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:bf0dea8039df1fcbcf4a7cd0c8ad91b96d2244e4c398729abd3d2969791f0911_ppc64le", + "product_id": "openshift4/ose-k8s-prometheus-adapter@sha256:bf0dea8039df1fcbcf4a7cd0c8ad91b96d2244e4c398729abd3d2969791f0911_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-k8s-prometheus-adapter@sha256:bf0dea8039df1fcbcf4a7cd0c8ad91b96d2244e4c398729abd3d2969791f0911?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter&tag=v4.13.0-202310162157.p0.g8ebc578.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:be0d525a9ae4e0ecb6857857f7472817bffc9e6d2502c50cd4bcb494a38e77ee_ppc64le", + "product": { + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:be0d525a9ae4e0ecb6857857f7472817bffc9e6d2502c50cd4bcb494a38e77ee_ppc64le", + "product_id": "openshift4/openshift-route-controller-manager-rhel8@sha256:be0d525a9ae4e0ecb6857857f7472817bffc9e6d2502c50cd4bcb494a38e77ee_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/openshift-route-controller-manager-rhel8@sha256:be0d525a9ae4e0ecb6857857f7472817bffc9e6d2502c50cd4bcb494a38e77ee?arch=ppc64le&repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.g6667a6c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-service-ca-operator@sha256:c3c55ee5f55186116fa05f7e9c115ee42a05a311b9ddd783d275aaa6bc9f4dbb_ppc64le", + "product": { + "name": "openshift4/ose-service-ca-operator@sha256:c3c55ee5f55186116fa05f7e9c115ee42a05a311b9ddd783d275aaa6bc9f4dbb_ppc64le", + "product_id": "openshift4/ose-service-ca-operator@sha256:c3c55ee5f55186116fa05f7e9c115ee42a05a311b9ddd783d275aaa6bc9f4dbb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-service-ca-operator@sha256:c3c55ee5f55186116fa05f7e9c115ee42a05a311b9ddd783d275aaa6bc9f4dbb?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-service-ca-operator&tag=v4.13.0-202310162157.p0.g5984aac.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-thanos-rhel8@sha256:06ced9a033658c8144795686d9cf1c4503ddd2421832f3bd8b9b6abc6defbf00_ppc64le", + "product": { + "name": "openshift4/ose-thanos-rhel8@sha256:06ced9a033658c8144795686d9cf1c4503ddd2421832f3bd8b9b6abc6defbf00_ppc64le", + "product_id": "openshift4/ose-thanos-rhel8@sha256:06ced9a033658c8144795686d9cf1c4503ddd2421832f3bd8b9b6abc6defbf00_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-thanos-rhel8@sha256:06ced9a033658c8144795686d9cf1c4503ddd2421832f3bd8b9b6abc6defbf00?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-thanos-rhel8&tag=v4.13.0-202310162157.p0.g43238be.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tools-rhel8@sha256:4ef65138abee38ab71c0d23eed8ff88dee8ee3780562189b3d9d2cc323b6d394_ppc64le", + "product": { + "name": "openshift4/ose-tools-rhel8@sha256:4ef65138abee38ab71c0d23eed8ff88dee8ee3780562189b3d9d2cc323b6d394_ppc64le", + "product_id": "openshift4/ose-tools-rhel8@sha256:4ef65138abee38ab71c0d23eed8ff88dee8ee3780562189b3d9d2cc323b6d394_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-tools-rhel8@sha256:4ef65138abee38ab71c0d23eed8ff88dee8ee3780562189b3d9d2cc323b6d394?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-tools-rhel8&tag=v4.13.0-202310162157.p0.g717d4a5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84ae5a1ec18c3186b101b084b3632d8097368ce80aebd6bc4243ceaf8be90ffc_ppc64le", + "product": { + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84ae5a1ec18c3186b101b084b3632d8097368ce80aebd6bc4243ceaf8be90ffc_ppc64le", + "product_id": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84ae5a1ec18c3186b101b084b3632d8097368ce80aebd6bc4243ceaf8be90ffc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256:84ae5a1ec18c3186b101b084b3632d8097368ce80aebd6bc4243ceaf8be90ffc?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9&tag=v4.13.0-202310162157.p0.g881909d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-config-reloader@sha256:d50e3843e8fa12b41a6e8a6aea34ebc04592a3f20b12a06f40d2aacd8a646a19_ppc64le", + "product": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:d50e3843e8fa12b41a6e8a6aea34ebc04592a3f20b12a06f40d2aacd8a646a19_ppc64le", + "product_id": "openshift4/ose-prometheus-config-reloader@sha256:d50e3843e8fa12b41a6e8a6aea34ebc04592a3f20b12a06f40d2aacd8a646a19_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-config-reloader@sha256:d50e3843e8fa12b41a6e8a6aea34ebc04592a3f20b12a06f40d2aacd8a646a19?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader&tag=v4.13.0-202310162157.p0.g95a1178.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:697682edc92d58930f499a3b3e7a103fe1dc70d980b0ad30b015b0c811d4ee82_ppc64le", + "product": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:697682edc92d58930f499a3b3e7a103fe1dc70d980b0ad30b015b0c811d4ee82_ppc64le", + "product_id": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:697682edc92d58930f499a3b3e7a103fe1dc70d980b0ad30b015b0c811d4ee82_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel8@sha256:697682edc92d58930f499a3b3e7a103fe1dc70d980b0ad30b015b0c811d4ee82?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8&tag=v4.13.0-202310162157.p0.g95a1178.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator@sha256:4a60381d862a76004e0fe6a90d4f07eef6efecd200ad1fe9a8d44ac2dbf58fa1_ppc64le", + "product": { + "name": "openshift4/ose-prometheus-operator@sha256:4a60381d862a76004e0fe6a90d4f07eef6efecd200ad1fe9a8d44ac2dbf58fa1_ppc64le", + "product_id": "openshift4/ose-prometheus-operator@sha256:4a60381d862a76004e0fe6a90d4f07eef6efecd200ad1fe9a8d44ac2dbf58fa1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator@sha256:4a60381d862a76004e0fe6a90d4f07eef6efecd200ad1fe9a8d44ac2dbf58fa1?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator&tag=v4.13.0-202310162157.p0.g95a1178.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prom-label-proxy@sha256:7dc5990d4010f4f53756256c058d5130148ea4c5a3f3c2a2a9740056970809db_ppc64le", + "product": { + "name": "openshift4/ose-prom-label-proxy@sha256:7dc5990d4010f4f53756256c058d5130148ea4c5a3f3c2a2a9740056970809db_ppc64le", + "product_id": "openshift4/ose-prom-label-proxy@sha256:7dc5990d4010f4f53756256c058d5130148ea4c5a3f3c2a2a9740056970809db_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-prom-label-proxy@sha256:7dc5990d4010f4f53756256c058d5130148ea4c5a3f3c2a2a9740056970809db?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy&tag=v4.13.0-202310162157.p0.gb501d5e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-telemeter@sha256:054e1ce9db5b7457d368a80d7d83cb03afa3aa26e2b1375d1820c1b6892665ac_ppc64le", + "product": { + "name": "openshift4/ose-telemeter@sha256:054e1ce9db5b7457d368a80d7d83cb03afa3aa26e2b1375d1820c1b6892665ac_ppc64le", + "product_id": "openshift4/ose-telemeter@sha256:054e1ce9db5b7457d368a80d7d83cb03afa3aa26e2b1375d1820c1b6892665ac_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ose-telemeter@sha256:054e1ce9db5b7457d368a80d7d83cb03afa3aa26e2b1375d1820c1b6892665ac?arch=ppc64le&repository_url=registry.redhat.io/openshift4/ose-telemeter&tag=v4.13.0-202310162157.p0.gbe81b43.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler@sha256:95738d8ce821197376ab0941d6954da11d6fb9384c0a27a7ab41e557264a7765_amd64", + "product": { + "name": "openshift4/ose-cluster-autoscaler@sha256:95738d8ce821197376ab0941d6954da11d6fb9384c0a27a7ab41e557264a7765_amd64", + "product_id": "openshift4/ose-cluster-autoscaler@sha256:95738d8ce821197376ab0941d6954da11d6fb9384c0a27a7ab41e557264a7765_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler@sha256:95738d8ce821197376ab0941d6954da11d6fb9384c0a27a7ab41e557264a7765?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler&tag=v4.13.0-202310162157.p0.gc58c53b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-machine-controllers@sha256:aa4a46585e7d33ce98409c91306a426e083e524b1fd35fea1eb8c96a2383e8b4_amd64", + "product": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:aa4a46585e7d33ce98409c91306a426e083e524b1fd35fea1eb8c96a2383e8b4_amd64", + "product_id": "openshift4/ose-baremetal-machine-controllers@sha256:aa4a46585e7d33ce98409c91306a426e083e524b1fd35fea1eb8c96a2383e8b4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-machine-controllers@sha256:aa4a46585e7d33ce98409c91306a426e083e524b1fd35fea1eb8c96a2383e8b4?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers&tag=v4.13.0-202310162157.p0.g7de328a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:09f45bf3d3d9add9900881288524d65b1c32a59cd4213ac217f8a8265072d84e_amd64", + "product": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:09f45bf3d3d9add9900881288524d65b1c32a59cd4213ac217f8a8265072d84e_amd64", + "product_id": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:09f45bf3d3d9add9900881288524d65b1c32a59cd4213ac217f8a8265072d84e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-etcd-rhel8-operator@sha256:09f45bf3d3d9add9900881288524d65b1c32a59cd4213ac217f8a8265072d84e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator&tag=v4.13.0-202310162157.p0.g8b90ac1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-monitoring-operator@sha256:e459968519db479f28c0775b131d7ffa9eeafcb6bc483c5f65af47814d97a5ac_amd64", + "product": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:e459968519db479f28c0775b131d7ffa9eeafcb6bc483c5f65af47814d97a5ac_amd64", + "product_id": "openshift4/ose-cluster-monitoring-operator@sha256:e459968519db479f28c0775b131d7ffa9eeafcb6bc483c5f65af47814d97a5ac_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-monitoring-operator@sha256:e459968519db479f28c0775b131d7ffa9eeafcb6bc483c5f65af47814d97a5ac?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-operator&tag=v4.13.0-202310162157.p0.g547c850.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-network-operator@sha256:787112a0d569e89d167d330f33acd5ce8b4687289dca93fc0b0bb19f4ef578c2_amd64", + "product": { + "name": "openshift4/ose-cluster-network-operator@sha256:787112a0d569e89d167d330f33acd5ce8b4687289dca93fc0b0bb19f4ef578c2_amd64", + "product_id": "openshift4/ose-cluster-network-operator@sha256:787112a0d569e89d167d330f33acd5ce8b4687289dca93fc0b0bb19f4ef578c2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-network-operator@sha256:787112a0d569e89d167d330f33acd5ce8b4687289dca93fc0b0bb19f4ef578c2?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-network-operator&tag=v4.13.0-202310162157.p0.g961ca3d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:15022db823c57765aaf9c1adeda36fb4611e52970dbaa9e9c68c42a9056035a5_amd64", + "product": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:15022db823c57765aaf9c1adeda36fb4611e52970dbaa9e9c68c42a9056035a5_amd64", + "product_id": "openshift4/ose-cluster-node-tuning-operator@sha256:15022db823c57765aaf9c1adeda36fb4611e52970dbaa9e9c68c42a9056035a5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-node-tuning-operator@sha256:15022db823c57765aaf9c1adeda36fb4611e52970dbaa9e9c68c42a9056035a5?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-operator&tag=v4.13.0-202310162157.p0.g9cdb2d7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-version-operator@sha256:be789154e9b207645873c0e3c650d419679743f2145bca93d774f27c64e44d6f_amd64", + "product": { + "name": "openshift4/ose-cluster-version-operator@sha256:be789154e9b207645873c0e3c650d419679743f2145bca93d774f27c64e44d6f_amd64", + "product_id": "openshift4/ose-cluster-version-operator@sha256:be789154e9b207645873c0e3c650d419679743f2145bca93d774f27c64e44d6f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-version-operator@sha256:be789154e9b207645873c0e3c650d419679743f2145bca93d774f27c64e44d6f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-version-operator&tag=v4.13.0-202310162157.p0.gc622124.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-configmap-reloader@sha256:6a9c14dd9b72739f642e5e7b27e0534cdb2435b908ed3c15e09b081d1b30803f_amd64", + "product": { + "name": "openshift4/ose-configmap-reloader@sha256:6a9c14dd9b72739f642e5e7b27e0534cdb2435b908ed3c15e09b081d1b30803f_amd64", + "product_id": "openshift4/ose-configmap-reloader@sha256:6a9c14dd9b72739f642e5e7b27e0534cdb2435b908ed3c15e09b081d1b30803f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-configmap-reloader@sha256:6a9c14dd9b72739f642e5e7b27e0534cdb2435b908ed3c15e09b081d1b30803f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-configmap-reloader&tag=v4.13.0-202310162157.p0.g9adad59.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-coredns@sha256:0b19ac90453c9df9263c17b665602e3cfd519676922cd42ebee26ad16391d87f_amd64", + "product": { + "name": "openshift4/ose-coredns@sha256:0b19ac90453c9df9263c17b665602e3cfd519676922cd42ebee26ad16391d87f_amd64", + "product_id": "openshift4/ose-coredns@sha256:0b19ac90453c9df9263c17b665602e3cfd519676922cd42ebee26ad16391d87f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-coredns@sha256:0b19ac90453c9df9263c17b665602e3cfd519676922cd42ebee26ad16391d87f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-coredns&tag=v4.13.0-202310162157.p0.g598440f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:5fe4d3f0d6c72404945abbf054ce31f2164a273b5895d801bf5e466b489ef89a_amd64", + "product": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:5fe4d3f0d6c72404945abbf054ce31f2164a273b5895d801bf5e466b489ef89a_amd64", + "product_id": "openshift4/ose-csi-external-attacher-rhel8@sha256:5fe4d3f0d6c72404945abbf054ce31f2164a273b5895d801bf5e466b489ef89a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher-rhel8@sha256:5fe4d3f0d6c72404945abbf054ce31f2164a273b5895d801bf5e466b489ef89a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8&tag=v4.13.0-202310162157.p0.ge9d59a2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher@sha256:5fe4d3f0d6c72404945abbf054ce31f2164a273b5895d801bf5e466b489ef89a_amd64", + "product": { + "name": "openshift4/ose-csi-external-attacher@sha256:5fe4d3f0d6c72404945abbf054ce31f2164a273b5895d801bf5e466b489ef89a_amd64", + "product_id": "openshift4/ose-csi-external-attacher@sha256:5fe4d3f0d6c72404945abbf054ce31f2164a273b5895d801bf5e466b489ef89a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher@sha256:5fe4d3f0d6c72404945abbf054ce31f2164a273b5895d801bf5e466b489ef89a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher&tag=v4.13.0-202310162157.p0.ge9d59a2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:bd257f865da81194913f3857328c14af43e81439af593bfcfcf8f9924fc71aa4_amd64", + "product": { + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:bd257f865da81194913f3857328c14af43e81439af593bfcfcf8f9924fc71aa4_amd64", + "product_id": "openshift4/ose-csi-driver-manila-rhel8@sha256:bd257f865da81194913f3857328c14af43e81439af593bfcfcf8f9924fc71aa4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-manila-rhel8@sha256:bd257f865da81194913f3857328c14af43e81439af593bfcfcf8f9924fc71aa4?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8&tag=v4.13.0-202310162157.p0.g171da3f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:d4120bc7d66a301843d107b00f02805f3a6b1f77900f91e2a530eca811072b22_amd64", + "product": { + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:d4120bc7d66a301843d107b00f02805f3a6b1f77900f91e2a530eca811072b22_amd64", + "product_id": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:d4120bc7d66a301843d107b00f02805f3a6b1f77900f91e2a530eca811072b22_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-manila-rhel8-operator@sha256:d4120bc7d66a301843d107b00f02805f3a6b1f77900f91e2a530eca811072b22?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-manila-rhel8-operator&tag=v4.13.0-202310162157.p0.gb1295cd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-nfs-rhel8@sha256:01e82ae76616ed87afbea5e9eed5961454819e0f5f1921fce2362c9081705acc_amd64", + "product": { + "name": "openshift4/ose-csi-driver-nfs-rhel8@sha256:01e82ae76616ed87afbea5e9eed5961454819e0f5f1921fce2362c9081705acc_amd64", + "product_id": "openshift4/ose-csi-driver-nfs-rhel8@sha256:01e82ae76616ed87afbea5e9eed5961454819e0f5f1921fce2362c9081705acc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-nfs-rhel8@sha256:01e82ae76616ed87afbea5e9eed5961454819e0f5f1921fce2362c9081705acc?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-nfs-rhel8&tag=v4.13.0-202310162157.p0.g2b914c2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:67a8cb4abf11705474b35a3b8c148b799086280bca3b20067af9ac2ed1ca1207_amd64", + "product": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:67a8cb4abf11705474b35a3b8c148b799086280bca3b20067af9ac2ed1ca1207_amd64", + "product_id": "openshift4/ose-csi-livenessprobe-rhel8@sha256:67a8cb4abf11705474b35a3b8c148b799086280bca3b20067af9ac2ed1ca1207_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe-rhel8@sha256:67a8cb4abf11705474b35a3b8c148b799086280bca3b20067af9ac2ed1ca1207?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8&tag=v4.13.0-202310162157.p0.ga888237.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe@sha256:67a8cb4abf11705474b35a3b8c148b799086280bca3b20067af9ac2ed1ca1207_amd64", + "product": { + "name": "openshift4/ose-csi-livenessprobe@sha256:67a8cb4abf11705474b35a3b8c148b799086280bca3b20067af9ac2ed1ca1207_amd64", + "product_id": "openshift4/ose-csi-livenessprobe@sha256:67a8cb4abf11705474b35a3b8c148b799086280bca3b20067af9ac2ed1ca1207_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe@sha256:67a8cb4abf11705474b35a3b8c148b799086280bca3b20067af9ac2ed1ca1207?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe&tag=v4.13.0-202310162157.p0.ga888237.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:cf5f3f6f9871c9b3046518a06409ea151e6842ec17468a85d2e34ad083686ef9_amd64", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:cf5f3f6f9871c9b3046518a06409ea151e6842ec17468a85d2e34ad083686ef9_amd64", + "product_id": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:cf5f3f6f9871c9b3046518a06409ea151e6842ec17468a85d2e34ad083686ef9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar-rhel8@sha256:cf5f3f6f9871c9b3046518a06409ea151e6842ec17468a85d2e34ad083686ef9?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8&tag=v4.13.0-202310162157.p0.g5f13d5e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar@sha256:cf5f3f6f9871c9b3046518a06409ea151e6842ec17468a85d2e34ad083686ef9_amd64", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:cf5f3f6f9871c9b3046518a06409ea151e6842ec17468a85d2e34ad083686ef9_amd64", + "product_id": "openshift4/ose-csi-node-driver-registrar@sha256:cf5f3f6f9871c9b3046518a06409ea151e6842ec17468a85d2e34ad083686ef9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar@sha256:cf5f3f6f9871c9b3046518a06409ea151e6842ec17468a85d2e34ad083686ef9?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar&tag=v4.13.0-202310162157.p0.g5f13d5e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner@sha256:9b87df1e857d952e79859d03d215cdd5894ebe792e160eadef791609b343621d_amd64", + "product": { + "name": "openshift4/ose-csi-external-provisioner@sha256:9b87df1e857d952e79859d03d215cdd5894ebe792e160eadef791609b343621d_amd64", + "product_id": "openshift4/ose-csi-external-provisioner@sha256:9b87df1e857d952e79859d03d215cdd5894ebe792e160eadef791609b343621d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner@sha256:9b87df1e857d952e79859d03d215cdd5894ebe792e160eadef791609b343621d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner&tag=v4.13.0-202310162157.p0.gf1fa809.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:9b87df1e857d952e79859d03d215cdd5894ebe792e160eadef791609b343621d_amd64", + "product": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:9b87df1e857d952e79859d03d215cdd5894ebe792e160eadef791609b343621d_amd64", + "product_id": "openshift4/ose-csi-external-provisioner-rhel8@sha256:9b87df1e857d952e79859d03d215cdd5894ebe792e160eadef791609b343621d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner-rhel8@sha256:9b87df1e857d952e79859d03d215cdd5894ebe792e160eadef791609b343621d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8&tag=v4.13.0-202310162157.p0.gf1fa809.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/driver-toolkit-rhel9@sha256:ddd5ae8159e9da453907ddc8cea4b984afde2028a4a52553aabd66104cd2e328_amd64", + "product": { + "name": "openshift4/driver-toolkit-rhel9@sha256:ddd5ae8159e9da453907ddc8cea4b984afde2028a4a52553aabd66104cd2e328_amd64", + "product_id": "openshift4/driver-toolkit-rhel9@sha256:ddd5ae8159e9da453907ddc8cea4b984afde2028a4a52553aabd66104cd2e328_amd64", + "product_identification_helper": { + "purl": "pkg:oci/driver-toolkit-rhel9@sha256:ddd5ae8159e9da453907ddc8cea4b984afde2028a4a52553aabd66104cd2e328?arch=amd64&repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9&tag=v4.13.0-202310161125.p0.gd719bdc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-proxy@sha256:772a136bdce458b8cfae62d7d6cdbd4a5f3bcf247354d6c321980e1aa936a533_amd64", + "product": { + "name": "openshift4/ose-oauth-proxy@sha256:772a136bdce458b8cfae62d7d6cdbd4a5f3bcf247354d6c321980e1aa936a533_amd64", + "product_id": "openshift4/ose-oauth-proxy@sha256:772a136bdce458b8cfae62d7d6cdbd4a5f3bcf247354d6c321980e1aa936a533_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-proxy@sha256:772a136bdce458b8cfae62d7d6cdbd4a5f3bcf247354d6c321980e1aa936a533?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-oauth-proxy&tag=v4.13.0-202310162157.p0.g44af5a3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-alertmanager@sha256:f573af6d2a6f3d5d23712675424f1f4dd3cbf5d7172b706e69152ce3941bc6b3_amd64", + "product": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:f573af6d2a6f3d5d23712675424f1f4dd3cbf5d7172b706e69152ce3941bc6b3_amd64", + "product_id": "openshift4/ose-prometheus-alertmanager@sha256:f573af6d2a6f3d5d23712675424f1f4dd3cbf5d7172b706e69152ce3941bc6b3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-alertmanager@sha256:f573af6d2a6f3d5d23712675424f1f4dd3cbf5d7172b706e69152ce3941bc6b3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager&tag=v4.13.0-202310162157.p0.gf44d574.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-node-exporter@sha256:1dd319152215858cab857d4774e16845231cb6cd488077f1745dc654063cb545_amd64", + "product": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:1dd319152215858cab857d4774e16845231cb6cd488077f1745dc654063cb545_amd64", + "product_id": "openshift4/ose-prometheus-node-exporter@sha256:1dd319152215858cab857d4774e16845231cb6cd488077f1745dc654063cb545_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-node-exporter@sha256:1dd319152215858cab857d4774e16845231cb6cd488077f1745dc654063cb545?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter&tag=v4.13.0-202310162157.p0.g5409afd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus@sha256:8001c2fd6f19e95762d5db95761e8ba3c860737a2d181c9f1f062054d77827fa_amd64", + "product": { + "name": "openshift4/ose-prometheus@sha256:8001c2fd6f19e95762d5db95761e8ba3c860737a2d181c9f1f062054d77827fa_amd64", + "product_id": "openshift4/ose-prometheus@sha256:8001c2fd6f19e95762d5db95761e8ba3c860737a2d181c9f1f062054d77827fa_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus@sha256:8001c2fd6f19e95762d5db95761e8ba3c860737a2d181c9f1f062054d77827fa?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prometheus&tag=v4.13.0-202310162157.p0.g8279148.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5782c742606c236ca29cd363fc8a115ab3f884d290ea14e3ed635a5f89db3db0_amd64", + "product": { + "name": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5782c742606c236ca29cd363fc8a115ab3f884d290ea14e3ed635a5f89db3db0_amd64", + "product_id": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5782c742606c236ca29cd363fc8a115ab3f884d290ea14e3ed635a5f89db3db0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-vpc-node-label-updater-rhel8@sha256:5782c742606c236ca29cd363fc8a115ab3f884d290ea14e3ed635a5f89db3db0?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-node-label-updater-rhel8&tag=v4.13.0-202310162157.p0.g96ff048.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-agent-rhel9@sha256:9ea2f3cbec65e5fd931b511ba075513865032ba678a4aaec170092bb89bce411_amd64", + "product": { + "name": "openshift4/ose-ironic-agent-rhel9@sha256:9ea2f3cbec65e5fd931b511ba075513865032ba678a4aaec170092bb89bce411_amd64", + "product_id": "openshift4/ose-ironic-agent-rhel9@sha256:9ea2f3cbec65e5fd931b511ba075513865032ba678a4aaec170092bb89bce411_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-agent-rhel9@sha256:9ea2f3cbec65e5fd931b511ba075513865032ba678a4aaec170092bb89bce411?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9&tag=v4.13.0-202310161125.p0.g508e612.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-rhel9@sha256:463075ba7a1d4e33ebb7d9cb22bb115c413bc1557cd5b66bbefbaaa5c87dbd9a_amd64", + "product": { + "name": "openshift4/ose-ironic-rhel9@sha256:463075ba7a1d4e33ebb7d9cb22bb115c413bc1557cd5b66bbefbaaa5c87dbd9a_amd64", + "product_id": "openshift4/ose-ironic-rhel9@sha256:463075ba7a1d4e33ebb7d9cb22bb115c413bc1557cd5b66bbefbaaa5c87dbd9a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-rhel9@sha256:463075ba7a1d4e33ebb7d9cb22bb115c413bc1557cd5b66bbefbaaa5c87dbd9a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9&tag=v4.13.0-202310161125.p0.gfc1cca9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:66cfa049ac47732d9a3424accff90c935d85411dc20865812ffee8dd9af37993_amd64", + "product": { + "name": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:66cfa049ac47732d9a3424accff90c935d85411dc20865812ffee8dd9af37993_amd64", + "product_id": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:66cfa049ac47732d9a3424accff90c935d85411dc20865812ffee8dd9af37993_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-machine-os-downloader-rhel9@sha256:66cfa049ac47732d9a3424accff90c935d85411dc20865812ffee8dd9af37993?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9&tag=v4.13.0-202310162157.p0.gce29177.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-static-ip-manager-rhel9@sha256:57d174088d6f248fe2f51837354f712929ceb4ec6885e77327ed62be7e497e9e_amd64", + "product": { + "name": "openshift4/ose-ironic-static-ip-manager-rhel9@sha256:57d174088d6f248fe2f51837354f712929ceb4ec6885e77327ed62be7e497e9e_amd64", + "product_id": "openshift4/ose-ironic-static-ip-manager-rhel9@sha256:57d174088d6f248fe2f51837354f712929ceb4ec6885e77327ed62be7e497e9e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-static-ip-manager-rhel9@sha256:57d174088d6f248fe2f51837354f712929ceb4ec6885e77327ed62be7e497e9e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9&tag=v4.13.0-202310161125.p0.g4536724.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-proxy@sha256:f939e8148abe338faba1e938f98c7923a62f7196dc24fc1355b9ce57d5083ad3_amd64", + "product": { + "name": "openshift4/ose-kube-proxy@sha256:f939e8148abe338faba1e938f98c7923a62f7196dc24fc1355b9ce57d5083ad3_amd64", + "product_id": "openshift4/ose-kube-proxy@sha256:f939e8148abe338faba1e938f98c7923a62f7196dc24fc1355b9ce57d5083ad3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-proxy@sha256:f939e8148abe338faba1e938f98c7923a62f7196dc24fc1355b9ce57d5083ad3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kube-proxy&tag=v4.13.0-202310162157.p0.g12a5bcf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-rbac-proxy@sha256:019f9feeecae727639759f27a7c62ba4adbfdea95436aeb35a4c3ac080d609ba_amd64", + "product": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:019f9feeecae727639759f27a7c62ba4adbfdea95436aeb35a4c3ac080d609ba_amd64", + "product_id": "openshift4/ose-kube-rbac-proxy@sha256:019f9feeecae727639759f27a7c62ba4adbfdea95436aeb35a4c3ac080d609ba_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-rbac-proxy@sha256:019f9feeecae727639759f27a7c62ba4adbfdea95436aeb35a4c3ac080d609ba?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy&tag=v4.13.0-202310162157.p0.gf1205e6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-state-metrics@sha256:13093dc7590b12c5a301cf09cdaf4f98399a1427a428780795c8a3ae03bb044f_amd64", + "product": { + "name": "openshift4/ose-kube-state-metrics@sha256:13093dc7590b12c5a301cf09cdaf4f98399a1427a428780795c8a3ae03bb044f_amd64", + "product_id": "openshift4/ose-kube-state-metrics@sha256:13093dc7590b12c5a301cf09cdaf4f98399a1427a428780795c8a3ae03bb044f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-state-metrics@sha256:13093dc7590b12c5a301cf09cdaf4f98399a1427a428780795c8a3ae03bb044f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics&tag=v4.13.0-202310162157.p0.g4b96984.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:c9074d2f4302ee98c46433bf09c7ee122ecbe4c0af50170673a980db04ad9ba3_amd64", + "product": { + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:c9074d2f4302ee98c46433bf09c7ee122ecbe4c0af50170673a980db04ad9ba3_amd64", + "product_id": "openshift4/ose-kuryr-cni-rhel8@sha256:c9074d2f4302ee98c46433bf09c7ee122ecbe4c0af50170673a980db04ad9ba3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kuryr-cni-rhel8@sha256:c9074d2f4302ee98c46433bf09c7ee122ecbe4c0af50170673a980db04ad9ba3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kuryr-cni-rhel8&tag=v4.13.0-202310162157.p0.g36754b7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-marketplace@sha256:a579f41fcf272cc60465ffce9dc95a6bba60cbeb16bab693dbf6996e39d1009a_amd64", + "product": { + "name": "openshift4/ose-operator-marketplace@sha256:a579f41fcf272cc60465ffce9dc95a6bba60cbeb16bab693dbf6996e39d1009a_amd64", + "product_id": "openshift4/ose-operator-marketplace@sha256:a579f41fcf272cc60465ffce9dc95a6bba60cbeb16bab693dbf6996e39d1009a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-marketplace@sha256:a579f41fcf272cc60465ffce9dc95a6bba60cbeb16bab693dbf6996e39d1009a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-operator-marketplace&tag=v4.13.0-202310162157.p0.g3a424b9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-cni@sha256:ce444a53ac886a494e18865e6f0cc89a016aae49c2d15add670c5070deac3109_amd64", + "product": { + "name": "openshift4/ose-multus-cni@sha256:ce444a53ac886a494e18865e6f0cc89a016aae49c2d15add670c5070deac3109_amd64", + "product_id": "openshift4/ose-multus-cni@sha256:ce444a53ac886a494e18865e6f0cc89a016aae49c2d15add670c5070deac3109_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-cni@sha256:ce444a53ac886a494e18865e6f0cc89a016aae49c2d15add670c5070deac3109?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-multus-cni&tag=v4.13.0-202310162157.p0.gbb616ef.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-server-rhel8@sha256:b306224d1c3d13564bc2f68cb1025245cad4223d24b08bb937d34072cbd8522f_amd64", + "product": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:b306224d1c3d13564bc2f68cb1025245cad4223d24b08bb937d34072cbd8522f_amd64", + "product_id": "openshift4/ose-oauth-server-rhel8@sha256:b306224d1c3d13564bc2f68cb1025245cad4223d24b08bb937d34072cbd8522f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-server-rhel8@sha256:b306224d1c3d13564bc2f68cb1025245cad4223d24b08bb937d34072cbd8522f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel8&tag=v4.13.0-202310162157.p0.gb841149.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/oc-mirror-plugin-rhel8@sha256:ca34cb26c9a6f95196e87e5df0e1d585d709bf325462777166fc2646c7ce152e_amd64", + "product": { + "name": "openshift4/oc-mirror-plugin-rhel8@sha256:ca34cb26c9a6f95196e87e5df0e1d585d709bf325462777166fc2646c7ce152e_amd64", + "product_id": "openshift4/oc-mirror-plugin-rhel8@sha256:ca34cb26c9a6f95196e87e5df0e1d585d709bf325462777166fc2646c7ce152e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/oc-mirror-plugin-rhel8@sha256:ca34cb26c9a6f95196e87e5df0e1d585d709bf325462777166fc2646c7ce152e?arch=amd64&repository_url=registry.redhat.io/openshift4/oc-mirror-plugin-rhel8&tag=v4.13.0-202310162157.p0.g3742681.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-builder@sha256:5722df6e139d0ee70e108e548fdcb7ca4ff5f31779e4a742f04b78cb86d9d453_amd64", + "product": { + "name": "openshift4/ose-docker-builder@sha256:5722df6e139d0ee70e108e548fdcb7ca4ff5f31779e4a742f04b78cb86d9d453_amd64", + "product_id": "openshift4/ose-docker-builder@sha256:5722df6e139d0ee70e108e548fdcb7ca4ff5f31779e4a742f04b78cb86d9d453_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-builder@sha256:5722df6e139d0ee70e108e548fdcb7ca4ff5f31779e4a742f04b78cb86d9d453?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-docker-builder&tag=v4.13.0-202310170703.p0.g1fec8a2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli@sha256:446551f05447182b41d0fd1eca6bcf0e08c81d0d5749c4e002791b6d40f50d66_amd64", + "product": { + "name": "openshift4/ose-cli@sha256:446551f05447182b41d0fd1eca6bcf0e08c81d0d5749c4e002791b6d40f50d66_amd64", + "product_id": "openshift4/ose-cli@sha256:446551f05447182b41d0fd1eca6bcf0e08c81d0d5749c4e002791b6d40f50d66_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli@sha256:446551f05447182b41d0fd1eca6bcf0e08c81d0d5749c4e002791b6d40f50d66?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cli&tag=v4.13.0-202310162157.p0.g717d4a5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console@sha256:1bb1fa963906ac2841351e2e0da9aa7365314d85121fbd7bbb9582a0e3ca9522_amd64", + "product": { + "name": "openshift4/ose-console@sha256:1bb1fa963906ac2841351e2e0da9aa7365314d85121fbd7bbb9582a0e3ca9522_amd64", + "product_id": "openshift4/ose-console@sha256:1bb1fa963906ac2841351e2e0da9aa7365314d85121fbd7bbb9582a0e3ca9522_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-console@sha256:1bb1fa963906ac2841351e2e0da9aa7365314d85121fbd7bbb9582a0e3ca9522?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-console&tag=v4.13.0-202310162157.p0.g303c2bd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console-operator@sha256:04331a97456ac54ddb7cb8eaf3daef682a0d63377e84d5ff21b930f9b846bec6_amd64", + "product": { + "name": "openshift4/ose-console-operator@sha256:04331a97456ac54ddb7cb8eaf3daef682a0d63377e84d5ff21b930f9b846bec6_amd64", + "product_id": "openshift4/ose-console-operator@sha256:04331a97456ac54ddb7cb8eaf3daef682a0d63377e84d5ff21b930f9b846bec6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-console-operator@sha256:04331a97456ac54ddb7cb8eaf3daef682a0d63377e84d5ff21b930f9b846bec6?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-console-operator&tag=v4.13.0-202310162157.p0.gdd6939f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-deployer@sha256:352b1c393c6d84d19eb1a8b01f449294ce7f0e519393f0eb869094a7ae9792d4_amd64", + "product": { + "name": "openshift4/ose-deployer@sha256:352b1c393c6d84d19eb1a8b01f449294ce7f0e519393f0eb869094a7ae9792d4_amd64", + "product_id": "openshift4/ose-deployer@sha256:352b1c393c6d84d19eb1a8b01f449294ce7f0e519393f0eb869094a7ae9792d4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-deployer@sha256:352b1c393c6d84d19eb1a8b01f449294ce7f0e519393f0eb869094a7ae9792d4?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-deployer&tag=v4.13.0-202310162157.p0.g717d4a5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-haproxy-router@sha256:86975a8f6381a2972def33ce51a193fc20ab6fe95701dfb475c53137d4a9b747_amd64", + "product": { + "name": "openshift4/ose-haproxy-router@sha256:86975a8f6381a2972def33ce51a193fc20ab6fe95701dfb475c53137d4a9b747_amd64", + "product_id": "openshift4/ose-haproxy-router@sha256:86975a8f6381a2972def33ce51a193fc20ab6fe95701dfb475c53137d4a9b747_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-haproxy-router@sha256:86975a8f6381a2972def33ce51a193fc20ab6fe95701dfb475c53137d4a9b747?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-haproxy-router&tag=v4.13.0-202310162157.p0.g057eae9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hyperkube@sha256:6d3c10dcc202d5743372ff7d4d5b40b6cf5c020a1c84160d4b8699b77c5b2ab5_amd64", + "product": { + "name": "openshift4/ose-hyperkube@sha256:6d3c10dcc202d5743372ff7d4d5b40b6cf5c020a1c84160d4b8699b77c5b2ab5_amd64", + "product_id": "openshift4/ose-hyperkube@sha256:6d3c10dcc202d5743372ff7d4d5b40b6cf5c020a1c84160d4b8699b77c5b2ab5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-hyperkube@sha256:6d3c10dcc202d5743372ff7d4d5b40b6cf5c020a1c84160d4b8699b77c5b2ab5?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-hyperkube&tag=v4.13.0-202310162157.p0.gc7606e7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-pod@sha256:052586d30e457e1dda762799645137c0593c4a0c2de388acf1d5d7c83e2ab068_amd64", + "product": { + "name": "openshift4/ose-pod@sha256:052586d30e457e1dda762799645137c0593c4a0c2de388acf1d5d7c83e2ab068_amd64", + "product_id": "openshift4/ose-pod@sha256:052586d30e457e1dda762799645137c0593c4a0c2de388acf1d5d7c83e2ab068_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-pod@sha256:052586d30e457e1dda762799645137c0593c4a0c2de388acf1d5d7c83e2ab068?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-pod&tag=v4.13.0-202310162157.p0.gc7606e7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-registry@sha256:58bcbecdba33b73aa769af45599eb9096e402387e820a5e41297c98334f3cdfd_amd64", + "product": { + "name": "openshift4/ose-docker-registry@sha256:58bcbecdba33b73aa769af45599eb9096e402387e820a5e41297c98334f3cdfd_amd64", + "product_id": "openshift4/ose-docker-registry@sha256:58bcbecdba33b73aa769af45599eb9096e402387e820a5e41297c98334f3cdfd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-registry@sha256:58bcbecdba33b73aa769af45599eb9096e402387e820a5e41297c98334f3cdfd?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-docker-registry&tag=v4.13.0-202310162157.p0.g47a15ac.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tests@sha256:e2e0de70c32b9ab8785afeaade76bc4e1532ae9c2a1287aff5ec9cd8f32eb0f3_amd64", + "product": { + "name": "openshift4/ose-tests@sha256:e2e0de70c32b9ab8785afeaade76bc4e1532ae9c2a1287aff5ec9cd8f32eb0f3_amd64", + "product_id": "openshift4/ose-tests@sha256:e2e0de70c32b9ab8785afeaade76bc4e1532ae9c2a1287aff5ec9cd8f32eb0f3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-tests@sha256:e2e0de70c32b9ab8785afeaade76bc4e1532ae9c2a1287aff5ec9cd8f32eb0f3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-tests&tag=v4.13.0-202310162157.p0.g40d3885.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:222696e88002a623021d9609a001ad8a2b8f595a81cf16a0b9f1c5c1e5b5d8e9_amd64", + "product": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:222696e88002a623021d9609a001ad8a2b8f595a81cf16a0b9f1c5c1e5b5d8e9_amd64", + "product_id": "openshift4/ose-openshift-state-metrics-rhel8@sha256:222696e88002a623021d9609a001ad8a2b8f595a81cf16a0b9f1c5c1e5b5d8e9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-state-metrics-rhel8@sha256:222696e88002a623021d9609a001ad8a2b8f595a81cf16a0b9f1c5c1e5b5d8e9?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8&tag=v4.13.0-202310162157.p0.g7beb880.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-lifecycle-manager@sha256:9534648cb84d81d9ffc640ea1a8076515358ac7ec81fe56a6eb3e9c5f7a73c4f_amd64", + "product": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:9534648cb84d81d9ffc640ea1a8076515358ac7ec81fe56a6eb3e9c5f7a73c4f_amd64", + "product_id": "openshift4/ose-operator-lifecycle-manager@sha256:9534648cb84d81d9ffc640ea1a8076515358ac7ec81fe56a6eb3e9c5f7a73c4f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-lifecycle-manager@sha256:9534648cb84d81d9ffc640ea1a8076515358ac7ec81fe56a6eb3e9c5f7a73c4f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager&tag=v4.13.0-202310162157.p0.g9957ffd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-registry@sha256:561194147a7eb5d00677d55c04d25c583dd71469a91f1deea9a2d1488c0d9f6d_amd64", + "product": { + "name": "openshift4/ose-operator-registry@sha256:561194147a7eb5d00677d55c04d25c583dd71469a91f1deea9a2d1488c0d9f6d_amd64", + "product_id": "openshift4/ose-operator-registry@sha256:561194147a7eb5d00677d55c04d25c583dd71469a91f1deea9a2d1488c0d9f6d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-registry@sha256:561194147a7eb5d00677d55c04d25c583dd71469a91f1deea9a2d1488c0d9f6d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-operator-registry&tag=v4.13.0-202310162157.p0.g9957ffd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:4f5f696c13e636289e6dd98c716a49efccfb8abf5029b5aacac868c387931d49_amd64", + "product": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:4f5f696c13e636289e6dd98c716a49efccfb8abf5029b5aacac868c387931d49_amd64", + "product_id": "openshift4/ose-agent-installer-api-server-rhel8@sha256:4f5f696c13e636289e6dd98c716a49efccfb8abf5029b5aacac868c387931d49_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-api-server-rhel8@sha256:4f5f696c13e636289e6dd98c716a49efccfb8abf5029b5aacac868c387931d49?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8&tag=v4.13.0-202310162157.p0.g06189bc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:0f3cd269bf48ac59c5181eb128e51622201021899c989de10006acbbc614dfba_amd64", + "product": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:0f3cd269bf48ac59c5181eb128e51622201021899c989de10006acbbc614dfba_amd64", + "product_id": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:0f3cd269bf48ac59c5181eb128e51622201021899c989de10006acbbc614dfba_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-csr-approver-rhel8@sha256:0f3cd269bf48ac59c5181eb128e51622201021899c989de10006acbbc614dfba?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8&tag=v4.13.0-202310162157.p0.gedf2542.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:20a4085d55f9be18a35d863b8db780726ed2f4fae9866502f22f63ac0f0b00b2_amd64", + "product": { + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:20a4085d55f9be18a35d863b8db780726ed2f4fae9866502f22f63ac0f0b00b2_amd64", + "product_id": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:20a4085d55f9be18a35d863b8db780726ed2f4fae9866502f22f63ac0f0b00b2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-node-agent-rhel8@sha256:20a4085d55f9be18a35d863b8db780726ed2f4fae9866502f22f63ac0f0b00b2?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8&tag=v4.13.0-202310162157.p0.g35357f5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:e4752226cbe17a78f076f1820b780473134cf62c4b0ffa4a16152afb757c969f_amd64", + "product": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:e4752226cbe17a78f076f1820b780473134cf62c4b0ffa4a16152afb757c969f_amd64", + "product_id": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:e4752226cbe17a78f076f1820b780473134cf62c4b0ffa4a16152afb757c969f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-orchestrator-rhel8@sha256:e4752226cbe17a78f076f1820b780473134cf62c4b0ffa4a16152afb757c969f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8&tag=v4.13.0-202310162157.p0.gedf2542.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:426e8b3d621360d5a85681fee7f82e2b987f5f35cf8a41676662fa5ad9aabe09_amd64", + "product": { + "name": "openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:426e8b3d621360d5a85681fee7f82e2b987f5f35cf8a41676662fa5ad9aabe09_amd64", + "product_id": "openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:426e8b3d621360d5a85681fee7f82e2b987f5f35cf8a41676662fa5ad9aabe09_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-alibaba-cloud-controller-manager-rhel8@sha256:426e8b3d621360d5a85681fee7f82e2b987f5f35cf8a41676662fa5ad9aabe09?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-alibaba-cloud-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.gb5200ba.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:570cc25a8df905dc780d40ce460a86b0bc1f2f14765d64abee6d81496390cb19_amd64", + "product": { + "name": "openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:570cc25a8df905dc780d40ce460a86b0bc1f2f14765d64abee6d81496390cb19_amd64", + "product_id": "openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:570cc25a8df905dc780d40ce460a86b0bc1f2f14765d64abee6d81496390cb19_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:570cc25a8df905dc780d40ce460a86b0bc1f2f14765d64abee6d81496390cb19?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-alibaba-cloud-csi-driver-container-rhel8&tag=v4.13.0-202310162157.p0.g94667c6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:ab98e5b94031fe86daf9588d4d4f786342b40e4e7db8da0ec3644dc5b3863247_amd64", + "product": { + "name": "openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:ab98e5b94031fe86daf9588d4d4f786342b40e4e7db8da0ec3644dc5b3863247_amd64", + "product_id": "openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:ab98e5b94031fe86daf9588d4d4f786342b40e4e7db8da0ec3644dc5b3863247_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:ab98e5b94031fe86daf9588d4d4f786342b40e4e7db8da0ec3644dc5b3863247?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8&tag=v4.13.0-202310162157.p0.gc08d87a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-alibaba-machine-controllers-rhel8@sha256:4fb53890e71308fb5a6e58735ab695af2d465f425257b005f13ce8fe51c4b155_amd64", + "product": { + "name": "openshift4/ose-alibaba-machine-controllers-rhel8@sha256:4fb53890e71308fb5a6e58735ab695af2d465f425257b005f13ce8fe51c4b155_amd64", + "product_id": "openshift4/ose-alibaba-machine-controllers-rhel8@sha256:4fb53890e71308fb5a6e58735ab695af2d465f425257b005f13ce8fe51c4b155_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-alibaba-machine-controllers-rhel8@sha256:4fb53890e71308fb5a6e58735ab695af2d465f425257b005f13ce8fe51c4b155?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-alibaba-machine-controllers-rhel8&tag=v4.13.0-202310162157.p0.g4c0f96a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:eb92459027316745074608c08405463bbfe872d51735012af7bbae11122c52da_amd64", + "product": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:eb92459027316745074608c08405463bbfe872d51735012af7bbae11122c52da_amd64", + "product_id": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:eb92459027316745074608c08405463bbfe872d51735012af7bbae11122c52da_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-apiserver-network-proxy-rhel8@sha256:eb92459027316745074608c08405463bbfe872d51735012af7bbae11122c52da?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8&tag=v4.13.0-202310162157.p0.gf1e6d94.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:cab68619b21252fe6781e0553622176094371b5d92f97be5c67b7cc3877935fa_amd64", + "product": { + "name": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:cab68619b21252fe6781e0553622176094371b5d92f97be5c67b7cc3877935fa_amd64", + "product_id": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:cab68619b21252fe6781e0553622176094371b5d92f97be5c67b7cc3877935fa_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-cloud-controller-manager-rhel8@sha256:cab68619b21252fe6781e0553622176094371b5d92f97be5c67b7cc3877935fa?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.g946daa0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:317df115901c80f9251dc188b98ec93e759f616454ac55c3989dd9696434df8a_amd64", + "product": { + "name": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:317df115901c80f9251dc188b98ec93e759f616454ac55c3989dd9696434df8a_amd64", + "product_id": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:317df115901c80f9251dc188b98ec93e759f616454ac55c3989dd9696434df8a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-cluster-api-controllers-rhel8@sha256:317df115901c80f9251dc188b98ec93e759f616454ac55c3989dd9696434df8a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8&tag=v4.13.0-202310162157.p0.gacb52a0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:c995a608af9f4e023790f4ecddafa346ca4ebc9a6feb7231ae4e9587af56a159_amd64", + "product": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:c995a608af9f4e023790f4ecddafa346ca4ebc9a6feb7231ae4e9587af56a159_amd64", + "product_id": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:c995a608af9f4e023790f4ecddafa346ca4ebc9a6feb7231ae4e9587af56a159_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel8@sha256:c995a608af9f4e023790f4ecddafa346ca4ebc9a6feb7231ae4e9587af56a159?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.g923631d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:9e6c9b916f4b925974f074786247ec750a026189cc8ed15c3c38a4af1f3d941e_amd64", + "product": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:9e6c9b916f4b925974f074786247ec750a026189cc8ed15c3c38a4af1f3d941e_amd64", + "product_id": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:9e6c9b916f4b925974f074786247ec750a026189cc8ed15c3c38a4af1f3d941e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel8-operator@sha256:9e6c9b916f4b925974f074786247ec750a026189cc8ed15c3c38a4af1f3d941e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator&tag=v4.13.0-202310162157.p0.gbaf14a4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:e3fc40b5c7f7e15afa6b15ca38fd6f44c128dbd61d2204911a74cc7fe3773f78_amd64", + "product": { + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:e3fc40b5c7f7e15afa6b15ca38fd6f44c128dbd61d2204911a74cc7fe3773f78_amd64", + "product_id": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:e3fc40b5c7f7e15afa6b15ca38fd6f44c128dbd61d2204911a74cc7fe3773f78_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-pod-identity-webhook-rhel8@sha256:e3fc40b5c7f7e15afa6b15ca38fd6f44c128dbd61d2204911a74cc7fe3773f78?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8&tag=v4.13.0-202310162157.p0.g125a4b4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:988624fb51299e0bfd6966a49be75c340d9dbe25ce8082b5a624fd2f4176978d_amd64", + "product": { + "name": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:988624fb51299e0bfd6966a49be75c340d9dbe25ce8082b5a624fd2f4176978d_amd64", + "product_id": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:988624fb51299e0bfd6966a49be75c340d9dbe25ce8082b5a624fd2f4176978d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-cloud-controller-manager-rhel8@sha256:988624fb51299e0bfd6966a49be75c340d9dbe25ce8082b5a624fd2f4176978d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.gb8d2433.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:d2f7346b0b3ed6182cb025a7c3a84911065832cfd77c9d9eaa60715dae384371_amd64", + "product": { + "name": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:d2f7346b0b3ed6182cb025a7c3a84911065832cfd77c9d9eaa60715dae384371_amd64", + "product_id": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:d2f7346b0b3ed6182cb025a7c3a84911065832cfd77c9d9eaa60715dae384371_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-cloud-node-manager-rhel8@sha256:d2f7346b0b3ed6182cb025a7c3a84911065832cfd77c9d9eaa60715dae384371?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8&tag=v4.13.0-202310162157.p0.gb8d2433.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:4ebdb694aa60efaccf96a1571849b3b21fc977acfcb8ec563a07e9524c2ca5f3_amd64", + "product": { + "name": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:4ebdb694aa60efaccf96a1571849b3b21fc977acfcb8ec563a07e9524c2ca5f3_amd64", + "product_id": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:4ebdb694aa60efaccf96a1571849b3b21fc977acfcb8ec563a07e9524c2ca5f3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-cluster-api-controllers-rhel8@sha256:4ebdb694aa60efaccf96a1571849b3b21fc977acfcb8ec563a07e9524c2ca5f3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8&tag=v4.13.0-202310162157.p0.g8846366.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:050e1b210999df3414626bdb707732f773dd94b54e856bc5027b262abd616a52_amd64", + "product": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:050e1b210999df3414626bdb707732f773dd94b54e856bc5027b262abd616a52_amd64", + "product_id": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:050e1b210999df3414626bdb707732f773dd94b54e856bc5027b262abd616a52_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-disk-csi-driver-rhel8@sha256:050e1b210999df3414626bdb707732f773dd94b54e856bc5027b262abd616a52?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.g89e21d6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:3842f3c942d2119b19a25fa3bbcec8e868783755aedd3bc90bb7a851b205b034_amd64", + "product": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:3842f3c942d2119b19a25fa3bbcec8e868783755aedd3bc90bb7a851b205b034_amd64", + "product_id": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:3842f3c942d2119b19a25fa3bbcec8e868783755aedd3bc90bb7a851b205b034_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-disk-csi-driver-rhel8-operator@sha256:3842f3c942d2119b19a25fa3bbcec8e868783755aedd3bc90bb7a851b205b034?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator&tag=v4.13.0-202310162157.p0.g842415a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:3d51266d91c90a6befa056a8a06b8fbe8562cb62875751214d4e3922666d6298_amd64", + "product": { + "name": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:3d51266d91c90a6befa056a8a06b8fbe8562cb62875751214d4e3922666d6298_amd64", + "product_id": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:3d51266d91c90a6befa056a8a06b8fbe8562cb62875751214d4e3922666d6298_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-file-csi-driver-rhel8@sha256:3d51266d91c90a6befa056a8a06b8fbe8562cb62875751214d4e3922666d6298?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.g60e0cb8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:41ca92157b948bb9a2e4a03c13161d753648102a4ca29e33933638c45b6cdb81_amd64", + "product": { + "name": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:41ca92157b948bb9a2e4a03c13161d753648102a4ca29e33933638c45b6cdb81_amd64", + "product_id": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:41ca92157b948bb9a2e4a03c13161d753648102a4ca29e33933638c45b6cdb81_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-file-csi-driver-operator-rhel8@sha256:41ca92157b948bb9a2e4a03c13161d753648102a4ca29e33933638c45b6cdb81?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8&tag=v4.13.0-202310162157.p0.ga79311d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:77bac2dbb7811be6ee8ae0d21d1d4df1608b50b003ea4833d8262a04dc7f2117_amd64", + "product": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:77bac2dbb7811be6ee8ae0d21d1d4df1608b50b003ea4833d8262a04dc7f2117_amd64", + "product_id": "openshift4/ose-baremetal-installer-rhel8@sha256:77bac2dbb7811be6ee8ae0d21d1d4df1608b50b003ea4833d8262a04dc7f2117_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-installer-rhel8@sha256:77bac2dbb7811be6ee8ae0d21d1d4df1608b50b003ea4833d8262a04dc7f2117?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8&tag=v4.13.0-202310162157.p0.g71282c9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:916a0b98711b2dea7e4127e0abebfcb9021a0cee239a0a64aa6128171cb65d5d_amd64", + "product": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:916a0b98711b2dea7e4127e0abebfcb9021a0cee239a0a64aa6128171cb65d5d_amd64", + "product_id": "openshift4/ose-baremetal-rhel8-operator@sha256:916a0b98711b2dea7e4127e0abebfcb9021a0cee239a0a64aa6128171cb65d5d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-rhel8-operator@sha256:916a0b98711b2dea7e4127e0abebfcb9021a0cee239a0a64aa6128171cb65d5d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel8-operator&tag=v4.13.0-202310162157.p0.g12e53b8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:4194402aeb31a1bf5f275b6e3c04b9115b06d9c952330232cbe960058159a530_amd64", + "product": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:4194402aeb31a1bf5f275b6e3c04b9115b06d9c952330232cbe960058159a530_amd64", + "product_id": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:4194402aeb31a1bf5f275b6e3c04b9115b06d9c952330232cbe960058159a530_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-runtimecfg-rhel8@sha256:4194402aeb31a1bf5f275b6e3c04b9115b06d9c952330232cbe960058159a530?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8&tag=v4.13.0-202310162157.p0.g1bfd3bc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli-artifacts@sha256:6fc8eb541635820be86a532975025a5c7c5b382aec563fc9588c2625e2ed2af7_amd64", + "product": { + "name": "openshift4/ose-cli-artifacts@sha256:6fc8eb541635820be86a532975025a5c7c5b382aec563fc9588c2625e2ed2af7_amd64", + "product_id": "openshift4/ose-cli-artifacts@sha256:6fc8eb541635820be86a532975025a5c7c5b382aec563fc9588c2625e2ed2af7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli-artifacts@sha256:6fc8eb541635820be86a532975025a5c7c5b382aec563fc9588c2625e2ed2af7?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cli-artifacts&tag=v4.13.0-202310162157.p0.g717d4a5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-credential-operator@sha256:55eade1d682f5151d98d1f3feaa8b3b0b90fbd102356aad7f7c9f92bb0fe66f6_amd64", + "product": { + "name": "openshift4/ose-cloud-credential-operator@sha256:55eade1d682f5151d98d1f3feaa8b3b0b90fbd102356aad7f7c9f92bb0fe66f6_amd64", + "product_id": "openshift4/ose-cloud-credential-operator@sha256:55eade1d682f5151d98d1f3feaa8b3b0b90fbd102356aad7f7c9f92bb0fe66f6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-credential-operator@sha256:55eade1d682f5151d98d1f3feaa8b3b0b90fbd102356aad7f7c9f92bb0fe66f6?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cloud-credential-operator&tag=v4.13.0-202310170703.p0.g0621fca.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:8875ec444265a8c7338c7829377c7eed7676b450cb2825a523cac32bc2a171b8_amd64", + "product": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:8875ec444265a8c7338c7829377c7eed7676b450cb2825a523cac32bc2a171b8_amd64", + "product_id": "openshift4/cloud-network-config-controller-rhel8@sha256:8875ec444265a8c7338c7829377c7eed7676b450cb2825a523cac32bc2a171b8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cloud-network-config-controller-rhel8@sha256:8875ec444265a8c7338c7829377c7eed7676b450cb2825a523cac32bc2a171b8?arch=amd64&repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel8&tag=v4.13.0-202310162157.p0.g4f190d6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-api-rhel8@sha256:17f727de972f15c0fb59566766951d3238041916a52d599cd1b1d2692d546a79_amd64", + "product": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:17f727de972f15c0fb59566766951d3238041916a52d599cd1b1d2692d546a79_amd64", + "product_id": "openshift4/ose-cluster-api-rhel8@sha256:17f727de972f15c0fb59566766951d3238041916a52d599cd1b1d2692d546a79_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-api-rhel8@sha256:17f727de972f15c0fb59566766951d3238041916a52d599cd1b1d2692d546a79?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel8&tag=v4.13.0-202310162157.p0.g507f873.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-authentication-operator@sha256:ead675012e3f1611068de15c88757df12bb02bcdbaabc70aa4c290e204edb9bc_amd64", + "product": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:ead675012e3f1611068de15c88757df12bb02bcdbaabc70aa4c290e204edb9bc_amd64", + "product_id": "openshift4/ose-cluster-authentication-operator@sha256:ead675012e3f1611068de15c88757df12bb02bcdbaabc70aa4c290e204edb9bc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-authentication-operator@sha256:ead675012e3f1611068de15c88757df12bb02bcdbaabc70aa4c290e204edb9bc?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-operator&tag=v4.13.0-202310162157.p0.ga044dd9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:3e629c3741ee818ea2b711b7d05bff818364ce75e8a01ae2b6e99d764de277e8_amd64", + "product": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:3e629c3741ee818ea2b711b7d05bff818364ce75e8a01ae2b6e99d764de277e8_amd64", + "product_id": "openshift4/ose-cluster-autoscaler-operator@sha256:3e629c3741ee818ea2b711b7d05bff818364ce75e8a01ae2b6e99d764de277e8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler-operator@sha256:3e629c3741ee818ea2b711b7d05bff818364ce75e8a01ae2b6e99d764de277e8?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-operator&tag=v4.13.0-202310162157.p0.g8531634.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:6b5cff688492c22d5bfb71093a8c7dbf9a1446731466bca65f3bcb993d25a10a_amd64", + "product": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:6b5cff688492c22d5bfb71093a8c7dbf9a1446731466bca65f3bcb993d25a10a_amd64", + "product_id": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:6b5cff688492c22d5bfb71093a8c7dbf9a1446731466bca65f3bcb993d25a10a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-baremetal-operator-rhel8@sha256:6b5cff688492c22d5bfb71093a8c7dbf9a1446731466bca65f3bcb993d25a10a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8&tag=v4.13.0-202310162157.p0.g3d1da56.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-bootstrap@sha256:10ed24b3907ffd3b18dfdbccce8b0c466d865fb1aa9983bb4b71844981d870fc_amd64", + "product": { + "name": "openshift4/ose-cluster-bootstrap@sha256:10ed24b3907ffd3b18dfdbccce8b0c466d865fb1aa9983bb4b71844981d870fc_amd64", + "product_id": "openshift4/ose-cluster-bootstrap@sha256:10ed24b3907ffd3b18dfdbccce8b0c466d865fb1aa9983bb4b71844981d870fc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-bootstrap@sha256:10ed24b3907ffd3b18dfdbccce8b0c466d865fb1aa9983bb4b71844981d870fc?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap&tag=v4.13.0-202310162157.p0.gee908b6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:56a33c16884413966be882256377493fbc39ed6f4c64b2163379fa1ab12cd8f2_amd64", + "product": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:56a33c16884413966be882256377493fbc39ed6f4c64b2163379fa1ab12cd8f2_amd64", + "product_id": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:56a33c16884413966be882256377493fbc39ed6f4c64b2163379fa1ab12cd8f2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-operator-container-rhel8@sha256:56a33c16884413966be882256377493fbc39ed6f4c64b2163379fa1ab12cd8f2?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8&tag=v4.13.0-202310162157.p0.gce1c9a3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:56a33c16884413966be882256377493fbc39ed6f4c64b2163379fa1ab12cd8f2_amd64", + "product": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:56a33c16884413966be882256377493fbc39ed6f4c64b2163379fa1ab12cd8f2_amd64", + "product_id": "openshift4/ose-cluster-capi-rhel8-operator@sha256:56a33c16884413966be882256377493fbc39ed6f4c64b2163379fa1ab12cd8f2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-rhel8-operator@sha256:56a33c16884413966be882256377493fbc39ed6f4c64b2163379fa1ab12cd8f2?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator&tag=v4.13.0-202310162157.p0.gce1c9a3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:c49e95f65456f8711d490630aa320135e58ff8da07ae09bafec3f184834e229f_amd64", + "product": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:c49e95f65456f8711d490630aa320135e58ff8da07ae09bafec3f184834e229f_amd64", + "product_id": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:c49e95f65456f8711d490630aa320135e58ff8da07ae09bafec3f184834e229f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:c49e95f65456f8711d490630aa320135e58ff8da07ae09bafec3f184834e229f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8&tag=v4.13.0-202310162157.p0.gef4594e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-config-operator@sha256:5fe8f38d034bae59535eb45ecdf5c0cc394facd3b77a1690a54f59adfc2ecd33_amd64", + "product": { + "name": "openshift4/ose-cluster-config-operator@sha256:5fe8f38d034bae59535eb45ecdf5c0cc394facd3b77a1690a54f59adfc2ecd33_amd64", + "product_id": "openshift4/ose-cluster-config-operator@sha256:5fe8f38d034bae59535eb45ecdf5c0cc394facd3b77a1690a54f59adfc2ecd33_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-config-operator@sha256:5fe8f38d034bae59535eb45ecdf5c0cc394facd3b77a1690a54f59adfc2ecd33?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-config-operator&tag=v4.13.0-202310162157.p0.ga9e658a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:bc54e9a24bda612cab2cafd4318c7e4cdf185814072d825978b48f0f73a11bae_amd64", + "product": { + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:bc54e9a24bda612cab2cafd4318c7e4cdf185814072d825978b48f0f73a11bae_amd64", + "product_id": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:bc54e9a24bda612cab2cafd4318c7e4cdf185814072d825978b48f0f73a11bae_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:bc54e9a24bda612cab2cafd4318c7e4cdf185814072d825978b48f0f73a11bae?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8&tag=v4.13.0-202310162157.p0.g383a69c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:d99e28970a8a7a6c33a071823876f9de53dbe15948c17d30944be99860ceca88_amd64", + "product": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:d99e28970a8a7a6c33a071823876f9de53dbe15948c17d30944be99860ceca88_amd64", + "product_id": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:d99e28970a8a7a6c33a071823876f9de53dbe15948c17d30944be99860ceca88_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:d99e28970a8a7a6c33a071823876f9de53dbe15948c17d30944be99860ceca88?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator&tag=v4.13.0-202310162157.p0.g97b486c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-dns-operator@sha256:d77e8939ce84dba0971977842b22771cbd7cffbb4dbc537a14d8a38d5a1817fe_amd64", + "product": { + "name": "openshift4/ose-cluster-dns-operator@sha256:d77e8939ce84dba0971977842b22771cbd7cffbb4dbc537a14d8a38d5a1817fe_amd64", + "product_id": "openshift4/ose-cluster-dns-operator@sha256:d77e8939ce84dba0971977842b22771cbd7cffbb4dbc537a14d8a38d5a1817fe_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-dns-operator@sha256:d77e8939ce84dba0971977842b22771cbd7cffbb4dbc537a14d8a38d5a1817fe?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-dns-operator&tag=v4.13.0-202310162157.p0.gc6768d4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-image-registry-operator@sha256:7bf8d9404c2c6c29a5079138b33c415bca91b54cf3b7a90c54a0624997b64a4c_amd64", + "product": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:7bf8d9404c2c6c29a5079138b33c415bca91b54cf3b7a90c54a0624997b64a4c_amd64", + "product_id": "openshift4/ose-cluster-image-registry-operator@sha256:7bf8d9404c2c6c29a5079138b33c415bca91b54cf3b7a90c54a0624997b64a4c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-image-registry-operator@sha256:7bf8d9404c2c6c29a5079138b33c415bca91b54cf3b7a90c54a0624997b64a4c?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-operator&tag=v4.13.0-202310162157.p0.g3ed61e2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-ingress-operator@sha256:475bb44133a5b12838b029d80049b4493764e73adfec70308023a2147f5ee2f1_amd64", + "product": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:475bb44133a5b12838b029d80049b4493764e73adfec70308023a2147f5ee2f1_amd64", + "product_id": "openshift4/ose-cluster-ingress-operator@sha256:475bb44133a5b12838b029d80049b4493764e73adfec70308023a2147f5ee2f1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-ingress-operator@sha256:475bb44133a5b12838b029d80049b4493764e73adfec70308023a2147f5ee2f1?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-operator&tag=v4.13.0-202310162157.p0.g2ecad04.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:54502e8f49cf1c0f6a0de0714081c8dda6e7b3d4bbd80a96bebfe1d1f3932a03_amd64", + "product": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:54502e8f49cf1c0f6a0de0714081c8dda6e7b3d4bbd80a96bebfe1d1f3932a03_amd64", + "product_id": "openshift4/ose-cluster-kube-apiserver-operator@sha256:54502e8f49cf1c0f6a0de0714081c8dda6e7b3d4bbd80a96bebfe1d1f3932a03_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-apiserver-operator@sha256:54502e8f49cf1c0f6a0de0714081c8dda6e7b3d4bbd80a96bebfe1d1f3932a03?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator&tag=v4.13.0-202310162157.p0.gd525f5d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:067091f643d0a3d6f37f1d12ab2a62991ef6f1694b452ba647d5be35ffa99e02_amd64", + "product": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:067091f643d0a3d6f37f1d12ab2a62991ef6f1694b452ba647d5be35ffa99e02_amd64", + "product_id": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:067091f643d0a3d6f37f1d12ab2a62991ef6f1694b452ba647d5be35ffa99e02_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel8-operator@sha256:067091f643d0a3d6f37f1d12ab2a62991ef6f1694b452ba647d5be35ffa99e02?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator&tag=v4.13.0-202310162157.p0.g8d627a5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:e4b066d11f7c7918c94fe9f10154bce5af628fa3f0b4e2404f02dcb9f754f0dc_amd64", + "product": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:e4b066d11f7c7918c94fe9f10154bce5af628fa3f0b4e2404f02dcb9f754f0dc_amd64", + "product_id": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:e4b066d11f7c7918c94fe9f10154bce5af628fa3f0b4e2404f02dcb9f754f0dc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-controller-manager-operator@sha256:e4b066d11f7c7918c94fe9f10154bce5af628fa3f0b4e2404f02dcb9f754f0dc?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator&tag=v4.13.0-202310162157.p0.gcc6a314.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:74197645436e316602179d21048254571d5f0d603f7c8019da69293081219b63_amd64", + "product": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:74197645436e316602179d21048254571d5f0d603f7c8019da69293081219b63_amd64", + "product_id": "openshift4/ose-cluster-kube-scheduler-operator@sha256:74197645436e316602179d21048254571d5f0d603f7c8019da69293081219b63_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-scheduler-operator@sha256:74197645436e316602179d21048254571d5f0d603f7c8019da69293081219b63?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator&tag=v4.13.0-202310162157.p0.gb4c50a4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:47c05bea0abfcf1ec7ee324b14300ef2c3a2c5639051f1e85e1e542f691aac1c_amd64", + "product": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:47c05bea0abfcf1ec7ee324b14300ef2c3a2c5639051f1e85e1e542f691aac1c_amd64", + "product_id": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:47c05bea0abfcf1ec7ee324b14300ef2c3a2c5639051f1e85e1e542f691aac1c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:47c05bea0abfcf1ec7ee324b14300ef2c3a2c5639051f1e85e1e542f691aac1c?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator&tag=v4.13.0-202310162157.p0.g9f47598.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-machine-approver@sha256:635fb68d1c9d6bb11ca3442b6efc131eb316c3a5be42cbc9bfe3ef5debbf00f6_amd64", + "product": { + "name": "openshift4/ose-cluster-machine-approver@sha256:635fb68d1c9d6bb11ca3442b6efc131eb316c3a5be42cbc9bfe3ef5debbf00f6_amd64", + "product_id": "openshift4/ose-cluster-machine-approver@sha256:635fb68d1c9d6bb11ca3442b6efc131eb316c3a5be42cbc9bfe3ef5debbf00f6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-machine-approver@sha256:635fb68d1c9d6bb11ca3442b6efc131eb316c3a5be42cbc9bfe3ef5debbf00f6?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver&tag=v4.13.0-202310162157.p0.gce66cd5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:df170c2c78674a8f5eb1974b21878e9ce45dd0d507447bd39efcc12f1900e93a_amd64", + "product": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:df170c2c78674a8f5eb1974b21878e9ce45dd0d507447bd39efcc12f1900e93a_amd64", + "product_id": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:df170c2c78674a8f5eb1974b21878e9ce45dd0d507447bd39efcc12f1900e93a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-apiserver-operator@sha256:df170c2c78674a8f5eb1974b21878e9ce45dd0d507447bd39efcc12f1900e93a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator&tag=v4.13.0-202310162157.p0.gea4f097.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:95b515b84abff5b0bfe666f1e4cf0509452832f8b52727d634e53feb8e5df9ae_amd64", + "product": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:95b515b84abff5b0bfe666f1e4cf0509452832f8b52727d634e53feb8e5df9ae_amd64", + "product_id": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:95b515b84abff5b0bfe666f1e4cf0509452832f8b52727d634e53feb8e5df9ae_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-controller-manager-operator@sha256:95b515b84abff5b0bfe666f1e4cf0509452832f8b52727d634e53feb8e5df9ae?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator&tag=v4.13.0-202310162157.p0.g9a8aba8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:79e2bd45f3e5e18719fd3d4704f428129ad8adac5d4ecb31162cefd1cedfce8d_amd64", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:79e2bd45f3e5e18719fd3d4704f428129ad8adac5d4ecb31162cefd1cedfce8d_amd64", + "product_id": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:79e2bd45f3e5e18719fd3d4704f428129ad8adac5d4ecb31162cefd1cedfce8d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8-operator@sha256:79e2bd45f3e5e18719fd3d4704f428129ad8adac5d4ecb31162cefd1cedfce8d?arch=amd64&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator&tag=v4.13.0-202310162157.p0.gaca579d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:48d226c3e54e211e9e45ef5c4cda3bf122e5495032f6037f8fbf338536ddd10b_amd64", + "product": { + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:48d226c3e54e211e9e45ef5c4cda3bf122e5495032f6037f8fbf338536ddd10b_amd64", + "product_id": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:48d226c3e54e211e9e45ef5c4cda3bf122e5495032f6037f8fbf338536ddd10b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-platform-operators-manager-rhel8@sha256:48d226c3e54e211e9e45ef5c4cda3bf122e5495032f6037f8fbf338536ddd10b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8&tag=v4.13.0-202310170326.p0.g471a806.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:05e1af0fe93e4adae09c6db0e8b426df778a50c506436662902d8a5faef286e8_amd64", + "product": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:05e1af0fe93e4adae09c6db0e8b426df778a50c506436662902d8a5faef286e8_amd64", + "product_id": "openshift4/ose-cluster-policy-controller-rhel8@sha256:05e1af0fe93e4adae09c6db0e8b426df778a50c506436662902d8a5faef286e8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-policy-controller-rhel8@sha256:05e1af0fe93e4adae09c6db0e8b426df778a50c506436662902d8a5faef286e8?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8&tag=v4.13.0-202310162157.p0.g8d2af85.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-samples-operator@sha256:fa34ea8c1b3a0f57659bc98fafa5ee46734b265c27fdd8b793250a4dd3271d5c_amd64", + "product": { + "name": "openshift4/ose-cluster-samples-operator@sha256:fa34ea8c1b3a0f57659bc98fafa5ee46734b265c27fdd8b793250a4dd3271d5c_amd64", + "product_id": "openshift4/ose-cluster-samples-operator@sha256:fa34ea8c1b3a0f57659bc98fafa5ee46734b265c27fdd8b793250a4dd3271d5c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-samples-operator@sha256:fa34ea8c1b3a0f57659bc98fafa5ee46734b265c27fdd8b793250a4dd3271d5c?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-samples-operator&tag=v4.13.0-202310162157.p0.gf785bad.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-storage-operator@sha256:8f553ce7c4d4ff0b36e14fdaf8f117cf161d3d7b0f1919467caaed53d46e2f25_amd64", + "product": { + "name": "openshift4/ose-cluster-storage-operator@sha256:8f553ce7c4d4ff0b36e14fdaf8f117cf161d3d7b0f1919467caaed53d46e2f25_amd64", + "product_id": "openshift4/ose-cluster-storage-operator@sha256:8f553ce7c4d4ff0b36e14fdaf8f117cf161d3d7b0f1919467caaed53d46e2f25_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-storage-operator@sha256:8f553ce7c4d4ff0b36e14fdaf8f117cf161d3d7b0f1919467caaed53d46e2f25?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-cluster-storage-operator&tag=v4.13.0-202310162157.p0.g6769015.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:9ac3be786051f2b4aebbd788ba23eecfeba9bda1b5a3942f03b9da44d1dc4573_amd64", + "product": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:9ac3be786051f2b4aebbd788ba23eecfeba9bda1b5a3942f03b9da44d1dc4573_amd64", + "product_id": "openshift4/ose-container-networking-plugins-rhel8@sha256:9ac3be786051f2b4aebbd788ba23eecfeba9bda1b5a3942f03b9da44d1dc4573_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-container-networking-plugins-rhel8@sha256:9ac3be786051f2b4aebbd788ba23eecfeba9bda1b5a3942f03b9da44d1dc4573?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8&tag=v4.13.0-202310162157.p0.gdbf24de.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ab496696109de6ce2b3e97e36a0ec8f2ae88a79ce93cb8aaa03c2ac9a28172c9_amd64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ab496696109de6ce2b3e97e36a0ec8f2ae88a79ce93cb8aaa03c2ac9a28172c9_amd64", + "product_id": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ab496696109de6ce2b3e97e36a0ec8f2ae88a79ce93cb8aaa03c2ac9a28172c9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-rhel8@sha256:ab496696109de6ce2b3e97e36a0ec8f2ae88a79ce93cb8aaa03c2ac9a28172c9?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8&tag=v4.13.0-202310162157.p0.gf797d45.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:09ccedec19457d859856db1d0c3b9a619561e16421fd73b7f7e022f27242d368_amd64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:09ccedec19457d859856db1d0c3b9a619561e16421fd73b7f7e022f27242d368_amd64", + "product_id": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:09ccedec19457d859856db1d0c3b9a619561e16421fd73b7f7e022f27242d368_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-operator-rhel8@sha256:09ccedec19457d859856db1d0c3b9a619561e16421fd73b7f7e022f27242d368?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8&tag=v4.13.0-202310162157.p0.g318c84a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:fcf02486f1289b21bfdbee730d38bf7feb0b63e975c6464ea83648086bd522d1_amd64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:fcf02486f1289b21bfdbee730d38bf7feb0b63e975c6464ea83648086bd522d1_amd64", + "product_id": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:fcf02486f1289b21bfdbee730d38bf7feb0b63e975c6464ea83648086bd522d1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-webhook-rhel8@sha256:fcf02486f1289b21bfdbee730d38bf7feb0b63e975c6464ea83648086bd522d1?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8&tag=v4.13.0-202310162157.p0.gf797d45.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:56f2e647023600d1477fcb61ae4e463ac005271bfdde91e0ae5cb6b16818d597_amd64", + "product": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:56f2e647023600d1477fcb61ae4e463ac005271bfdde91e0ae5cb6b16818d597_amd64", + "product_id": "openshift4/ose-csi-external-resizer-rhel8@sha256:56f2e647023600d1477fcb61ae4e463ac005271bfdde91e0ae5cb6b16818d597_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer-rhel8@sha256:56f2e647023600d1477fcb61ae4e463ac005271bfdde91e0ae5cb6b16818d597?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8&tag=v4.13.0-202310162157.p0.g974ac36.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer@sha256:56f2e647023600d1477fcb61ae4e463ac005271bfdde91e0ae5cb6b16818d597_amd64", + "product": { + "name": "openshift4/ose-csi-external-resizer@sha256:56f2e647023600d1477fcb61ae4e463ac005271bfdde91e0ae5cb6b16818d597_amd64", + "product_id": "openshift4/ose-csi-external-resizer@sha256:56f2e647023600d1477fcb61ae4e463ac005271bfdde91e0ae5cb6b16818d597_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer@sha256:56f2e647023600d1477fcb61ae4e463ac005271bfdde91e0ae5cb6b16818d597?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer&tag=v4.13.0-202310162157.p0.g974ac36.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:7214718a98c75c482bfb51fb51519f27de1a8b7205be51fe0f9395e873c469fc_amd64", + "product": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:7214718a98c75c482bfb51fb51519f27de1a8b7205be51fe0f9395e873c469fc_amd64", + "product_id": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:7214718a98c75c482bfb51fb51519f27de1a8b7205be51fe0f9395e873c469fc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter-rhel8@sha256:7214718a98c75c482bfb51fb51519f27de1a8b7205be51fe0f9395e873c469fc?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8&tag=v4.13.0-202310162157.p0.g3f52ee7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter@sha256:7214718a98c75c482bfb51fb51519f27de1a8b7205be51fe0f9395e873c469fc_amd64", + "product": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:7214718a98c75c482bfb51fb51519f27de1a8b7205be51fe0f9395e873c469fc_amd64", + "product_id": "openshift4/ose-csi-external-snapshotter@sha256:7214718a98c75c482bfb51fb51519f27de1a8b7205be51fe0f9395e873c469fc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter@sha256:7214718a98c75c482bfb51fb51519f27de1a8b7205be51fe0f9395e873c469fc?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter&tag=v4.13.0-202310162157.p0.g3f52ee7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:892f32652bced869c32405627348d9ed1cdf5bccc8977cb62ced7df6ce85d40d_amd64", + "product": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:892f32652bced869c32405627348d9ed1cdf5bccc8977cb62ced7df6ce85d40d_amd64", + "product_id": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:892f32652bced869c32405627348d9ed1cdf5bccc8977cb62ced7df6ce85d40d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller-rhel8@sha256:892f32652bced869c32405627348d9ed1cdf5bccc8977cb62ced7df6ce85d40d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8&tag=v4.13.0-202310162157.p0.g3f52ee7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller@sha256:892f32652bced869c32405627348d9ed1cdf5bccc8977cb62ced7df6ce85d40d_amd64", + "product": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:892f32652bced869c32405627348d9ed1cdf5bccc8977cb62ced7df6ce85d40d_amd64", + "product_id": "openshift4/ose-csi-snapshot-controller@sha256:892f32652bced869c32405627348d9ed1cdf5bccc8977cb62ced7df6ce85d40d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller@sha256:892f32652bced869c32405627348d9ed1cdf5bccc8977cb62ced7df6ce85d40d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller&tag=v4.13.0-202310162157.p0.g3f52ee7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:247edb9b906e812ba18c2ffd94730cb438b30b970396edb32c5c6ee4f81675c3_amd64", + "product": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:247edb9b906e812ba18c2ffd94730cb438b30b970396edb32c5c6ee4f81675c3_amd64", + "product_id": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:247edb9b906e812ba18c2ffd94730cb438b30b970396edb32c5c6ee4f81675c3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-validation-webhook-rhel8@sha256:247edb9b906e812ba18c2ffd94730cb438b30b970396edb32c5c6ee4f81675c3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8&tag=v4.13.0-202310162157.p0.g3f52ee7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/egress-router-cni-rhel8@sha256:27a6118e14c5a83e39d916859945b5a84bb83522404904696946f44ad6977a66_amd64", + "product": { + "name": "openshift4/egress-router-cni-rhel8@sha256:27a6118e14c5a83e39d916859945b5a84bb83522404904696946f44ad6977a66_amd64", + "product_id": "openshift4/egress-router-cni-rhel8@sha256:27a6118e14c5a83e39d916859945b5a84bb83522404904696946f44ad6977a66_amd64", + "product_identification_helper": { + "purl": "pkg:oci/egress-router-cni-rhel8@sha256:27a6118e14c5a83e39d916859945b5a84bb83522404904696946f44ad6977a66?arch=amd64&repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel8&tag=v4.13.0-202310162157.p0.g756e384.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-etcd-rhel9@sha256:acde3d71d0ee97160d0a5ee9aca13d53685261d3d3a2e84dc640c8ee7a68cea2_amd64", + "product": { + "name": "openshift4/ose-etcd-rhel9@sha256:acde3d71d0ee97160d0a5ee9aca13d53685261d3d3a2e84dc640c8ee7a68cea2_amd64", + "product_id": "openshift4/ose-etcd-rhel9@sha256:acde3d71d0ee97160d0a5ee9aca13d53685261d3d3a2e84dc640c8ee7a68cea2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-etcd-rhel9@sha256:acde3d71d0ee97160d0a5ee9aca13d53685261d3d3a2e84dc640c8ee7a68cea2?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9&tag=v4.13.0-202310162157.p0.g7efbc01.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:5900e0b313b36564c2524e27f6af144903c1d855492866314a26f0e27cfb4cfe_amd64", + "product": { + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:5900e0b313b36564c2524e27f6af144903c1d855492866314a26f0e27cfb4cfe_amd64", + "product_id": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:5900e0b313b36564c2524e27f6af144903c1d855492866314a26f0e27cfb4cfe_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel8@sha256:5900e0b313b36564c2524e27f6af144903c1d855492866314a26f0e27cfb4cfe?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.gefaf4dc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:b61d501cf7b52bbb83bb045e30ff0a2357cc8ff98d3eb1b29b54ff6f13edd713_amd64", + "product": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:b61d501cf7b52bbb83bb045e30ff0a2357cc8ff98d3eb1b29b54ff6f13edd713_amd64", + "product_id": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:b61d501cf7b52bbb83bb045e30ff0a2357cc8ff98d3eb1b29b54ff6f13edd713_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel8@sha256:b61d501cf7b52bbb83bb045e30ff0a2357cc8ff98d3eb1b29b54ff6f13edd713?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8&tag=v4.13.0-202310162157.p0.geaeccca.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:c8ebd20d3f252d907a51c2acfe3cf57b23c960e0c78219f2ea612d6c72078649_amd64", + "product": { + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:c8ebd20d3f252d907a51c2acfe3cf57b23c960e0c78219f2ea612d6c72078649_amd64", + "product_id": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:c8ebd20d3f252d907a51c2acfe3cf57b23c960e0c78219f2ea612d6c72078649_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel8@sha256:c8ebd20d3f252d907a51c2acfe3cf57b23c960e0c78219f2ea612d6c72078649?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.gc30195c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:b7cd31a3f78b8ee67c6d312e0958381e03d23b7c2d622f6754c0beff2a2a9dd8_amd64", + "product": { + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:b7cd31a3f78b8ee67c6d312e0958381e03d23b7c2d622f6754c0beff2a2a9dd8_amd64", + "product_id": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:b7cd31a3f78b8ee67c6d312e0958381e03d23b7c2d622f6754c0beff2a2a9dd8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel8@sha256:b7cd31a3f78b8ee67c6d312e0958381e03d23b7c2d622f6754c0beff2a2a9dd8?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8&tag=v4.13.0-202310162157.p0.g6534fed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hypershift-rhel8@sha256:4b7edfbadedef79262fd3efe744314d460a4a6e47f4539d3e48ed6805e6764a9_amd64", + "product": { + "name": "openshift4/ose-hypershift-rhel8@sha256:4b7edfbadedef79262fd3efe744314d460a4a6e47f4539d3e48ed6805e6764a9_amd64", + "product_id": "openshift4/ose-hypershift-rhel8@sha256:4b7edfbadedef79262fd3efe744314d460a4a6e47f4539d3e48ed6805e6764a9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-hypershift-rhel8@sha256:4b7edfbadedef79262fd3efe744314d460a4a6e47f4539d3e48ed6805e6764a9?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel8&tag=v4.13.0-202310162157.p0.g2c52769.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:14769db016adcfdeda227b2dfdd5c52e020e95892dbb4a01e1a557194ee0db13_amd64", + "product": { + "name": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:14769db016adcfdeda227b2dfdd5c52e020e95892dbb4a01e1a557194ee0db13_amd64", + "product_id": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:14769db016adcfdeda227b2dfdd5c52e020e95892dbb4a01e1a557194ee0db13_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:14769db016adcfdeda227b2dfdd5c52e020e95892dbb4a01e1a557194ee0db13?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ibmcloud-cluster-api-controllers-rhel8&tag=v4.13.0-202310162157.p0.gd221afa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f41901c4f9fcff3ccd4bc9dd9ac21e69abc41837da0dc65db8e62053173237d1_amd64", + "product": { + "name": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f41901c4f9fcff3ccd4bc9dd9ac21e69abc41837da0dc65db8e62053173237d1_amd64", + "product_id": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f41901c4f9fcff3ccd4bc9dd9ac21e69abc41837da0dc65db8e62053173237d1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-cloud-controller-manager-rhel8@sha256:f41901c4f9fcff3ccd4bc9dd9ac21e69abc41837da0dc65db8e62053173237d1?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ibm-cloud-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.g59edd92.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:e78a620f99894a262eaeb062e9d2b0568408322be0172718bfb4178f451d4551_amd64", + "product": { + "name": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:e78a620f99894a262eaeb062e9d2b0568408322be0172718bfb4178f451d4551_amd64", + "product_id": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:e78a620f99894a262eaeb062e9d2b0568408322be0172718bfb4178f451d4551_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibmcloud-machine-controllers-rhel8@sha256:e78a620f99894a262eaeb062e9d2b0568408322be0172718bfb4178f451d4551?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ibmcloud-machine-controllers-rhel8&tag=v4.13.0-202310162157.p0.gbb253a0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:73954ff5524d316f14ad6b4bd9da79f039aca68edd3e83f92bb2cb2f796020df_amd64", + "product": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:73954ff5524d316f14ad6b4bd9da79f039aca68edd3e83f92bb2cb2f796020df_amd64", + "product_id": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:73954ff5524d316f14ad6b4bd9da79f039aca68edd3e83f92bb2cb2f796020df_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-rhel8@sha256:73954ff5524d316f14ad6b4bd9da79f039aca68edd3e83f92bb2cb2f796020df?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.g42b5c25.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:494f06b8f8e9ee4d0ca4fbbb04ffd68c55d806ff2ca75f847cded65142b09cd4_amd64", + "product": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:494f06b8f8e9ee4d0ca4fbbb04ffd68c55d806ff2ca75f847cded65142b09cd4_amd64", + "product_id": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:494f06b8f8e9ee4d0ca4fbbb04ffd68c55d806ff2ca75f847cded65142b09cd4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:494f06b8f8e9ee4d0ca4fbbb04ffd68c55d806ff2ca75f847cded65142b09cd4?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8&tag=v4.13.0-202310162157.p0.g4083eb7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-image-customization-controller-rhel8@sha256:53f141cc1913e2b29a6221c2f813547ff7ed2be65174eb1ad35fbdf737a07945_amd64", + "product": { + "name": "openshift4/ose-image-customization-controller-rhel8@sha256:53f141cc1913e2b29a6221c2f813547ff7ed2be65174eb1ad35fbdf737a07945_amd64", + "product_id": "openshift4/ose-image-customization-controller-rhel8@sha256:53f141cc1913e2b29a6221c2f813547ff7ed2be65174eb1ad35fbdf737a07945_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-image-customization-controller-rhel8@sha256:53f141cc1913e2b29a6221c2f813547ff7ed2be65174eb1ad35fbdf737a07945?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel8&tag=v4.13.0-202310162157.p0.g0f4119d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-insights-rhel8-operator@sha256:ff1be97363a6a55e5812023f240eca3ef2c78179de13f91df83d57d11db62985_amd64", + "product": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:ff1be97363a6a55e5812023f240eca3ef2c78179de13f91df83d57d11db62985_amd64", + "product_id": "openshift4/ose-insights-rhel8-operator@sha256:ff1be97363a6a55e5812023f240eca3ef2c78179de13f91df83d57d11db62985_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-insights-rhel8-operator@sha256:ff1be97363a6a55e5812023f240eca3ef2c78179de13f91df83d57d11db62985?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-insights-rhel8-operator&tag=v4.13.0-202310162157.p0.gba18a08.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer-artifacts@sha256:47a5f1b10b02efbb8ce1846376065e2896ab250e97f5f5ddbae8296567100625_amd64", + "product": { + "name": "openshift4/ose-installer-artifacts@sha256:47a5f1b10b02efbb8ce1846376065e2896ab250e97f5f5ddbae8296567100625_amd64", + "product_id": "openshift4/ose-installer-artifacts@sha256:47a5f1b10b02efbb8ce1846376065e2896ab250e97f5f5ddbae8296567100625_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer-artifacts@sha256:47a5f1b10b02efbb8ce1846376065e2896ab250e97f5f5ddbae8296567100625?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-installer-artifacts&tag=v4.13.0-202310170703.p0.g71282c9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer@sha256:f30113a4f73b57dee88c7474454300b67d65dac4d1f26a806a77ed3f21fbe7b8_amd64", + "product": { + "name": "openshift4/ose-installer@sha256:f30113a4f73b57dee88c7474454300b67d65dac4d1f26a806a77ed3f21fbe7b8_amd64", + "product_id": "openshift4/ose-installer@sha256:f30113a4f73b57dee88c7474454300b67d65dac4d1f26a806a77ed3f21fbe7b8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer@sha256:f30113a4f73b57dee88c7474454300b67d65dac4d1f26a806a77ed3f21fbe7b8?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-installer&tag=v4.13.0-202310162157.p0.g71282c9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:a8d829b56f04161a18d527c9d4d00f61240cd7cf83d4dc476b45879bc4f4d8e4_amd64", + "product": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:a8d829b56f04161a18d527c9d4d00f61240cd7cf83d4dc476b45879bc4f4d8e4_amd64", + "product_id": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:a8d829b56f04161a18d527c9d4d00f61240cd7cf83d4dc476b45879bc4f4d8e4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-storage-version-migrator-rhel8@sha256:a8d829b56f04161a18d527c9d4d00f61240cd7cf83d4dc476b45879bc4f4d8e4?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8&tag=v4.13.0-202310162157.p0.gbad104d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:807fc056e123047b25b96e8c284723255c4a1cd70a46569ae175be3b7b43d7ce_amd64", + "product": { + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:807fc056e123047b25b96e8c284723255c4a1cd70a46569ae175be3b7b43d7ce_amd64", + "product_id": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:807fc056e123047b25b96e8c284723255c4a1cd70a46569ae175be3b7b43d7ce_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel8@sha256:807fc056e123047b25b96e8c284723255c4a1cd70a46569ae175be3b7b43d7ce?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.gee2033e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:eca55e61186531ba0bfa837257961cba9e328a490864db612aa97b788023121e_amd64", + "product": { + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:eca55e61186531ba0bfa837257961cba9e328a490864db612aa97b788023121e_amd64", + "product_id": "openshift4/kubevirt-csi-driver-rhel8@sha256:eca55e61186531ba0bfa837257961cba9e328a490864db612aa97b788023121e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-csi-driver-rhel8@sha256:eca55e61186531ba0bfa837257961cba9e328a490864db612aa97b788023121e?arch=amd64&repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.gefa0b94.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-libvirt-machine-controllers@sha256:b8d552193f5e76e93e564d94a305facba17a37fcb85b83bba1c4fdb8fd4117ad_amd64", + "product": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:b8d552193f5e76e93e564d94a305facba17a37fcb85b83bba1c4fdb8fd4117ad_amd64", + "product_id": "openshift4/ose-libvirt-machine-controllers@sha256:b8d552193f5e76e93e564d94a305facba17a37fcb85b83bba1c4fdb8fd4117ad_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-libvirt-machine-controllers@sha256:b8d552193f5e76e93e564d94a305facba17a37fcb85b83bba1c4fdb8fd4117ad?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers&tag=v4.13.0-202310162157.p0.gd4b7a8a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-operator@sha256:3171c76d235d38397dcdf5788822134138d7ccb87b98d69b88f8c8aec6b9e70e_amd64", + "product": { + "name": "openshift4/ose-machine-api-operator@sha256:3171c76d235d38397dcdf5788822134138d7ccb87b98d69b88f8c8aec6b9e70e_amd64", + "product_id": "openshift4/ose-machine-api-operator@sha256:3171c76d235d38397dcdf5788822134138d7ccb87b98d69b88f8c8aec6b9e70e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-operator@sha256:3171c76d235d38397dcdf5788822134138d7ccb87b98d69b88f8c8aec6b9e70e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-api-operator&tag=v4.13.0-202310162157.p0.g370fdaa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:644d37d744d28e40e4b2002085a41a0cbaea7cf197861d73fb904945400831d7_amd64", + "product": { + "name": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:644d37d744d28e40e4b2002085a41a0cbaea7cf197861d73fb904945400831d7_amd64", + "product_id": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:644d37d744d28e40e4b2002085a41a0cbaea7cf197861d73fb904945400831d7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-aws-rhel8@sha256:644d37d744d28e40e4b2002085a41a0cbaea7cf197861d73fb904945400831d7?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8&tag=v4.13.0-202310162157.p0.gba3b3a3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:cc5ab2ae7e0dfd048ad48360f8eb5f2c7da05b1a7f2c625c127b37ef62d2a2f5_amd64", + "product": { + "name": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:cc5ab2ae7e0dfd048ad48360f8eb5f2c7da05b1a7f2c625c127b37ef62d2a2f5_amd64", + "product_id": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:cc5ab2ae7e0dfd048ad48360f8eb5f2c7da05b1a7f2c625c127b37ef62d2a2f5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-azure-rhel8@sha256:cc5ab2ae7e0dfd048ad48360f8eb5f2c7da05b1a7f2c625c127b37ef62d2a2f5?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8&tag=v4.13.0-202310162157.p0.g2c0c0ec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:ea302039dde95174f6837d29048cb922c8ee0d28137e0a7583b8133dc4315027_amd64", + "product": { + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:ea302039dde95174f6837d29048cb922c8ee0d28137e0a7583b8133dc4315027_amd64", + "product_id": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:ea302039dde95174f6837d29048cb922c8ee0d28137e0a7583b8133dc4315027_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-gcp-rhel8@sha256:ea302039dde95174f6837d29048cb922c8ee0d28137e0a7583b8133dc4315027?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8&tag=v4.13.0-202310162157.p0.g38ddff0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:aa8f9c3d428013f08f6a89d4df2b24788aa4949b02d00fa9b7783cdd185b353b_amd64", + "product": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:aa8f9c3d428013f08f6a89d4df2b24788aa4949b02d00fa9b7783cdd185b353b_amd64", + "product_id": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:aa8f9c3d428013f08f6a89d4df2b24788aa4949b02d00fa9b7783cdd185b353b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-openstack-rhel8@sha256:aa8f9c3d428013f08f6a89d4df2b24788aa4949b02d00fa9b7783cdd185b353b?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8&tag=v4.13.0-202310162157.p0.g7bce9d6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-config-operator@sha256:0c452c53747d7ac6051cd29cf1d09372d57d8091d73be2784fd7e8597a9cb441_amd64", + "product": { + "name": "openshift4/ose-machine-config-operator@sha256:0c452c53747d7ac6051cd29cf1d09372d57d8091d73be2784fd7e8597a9cb441_amd64", + "product_id": "openshift4/ose-machine-config-operator@sha256:0c452c53747d7ac6051cd29cf1d09372d57d8091d73be2784fd7e8597a9cb441_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-config-operator@sha256:0c452c53747d7ac6051cd29cf1d09372d57d8091d73be2784fd7e8597a9cb441?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-config-operator&tag=v4.13.0-202310162157.p0.g1c52dd1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-os-images-rhel8@sha256:d40d92287a561e10641cdb03dff45f365f67f3265e304512057ca129e215baa8_amd64", + "product": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:d40d92287a561e10641cdb03dff45f365f67f3265e304512057ca129e215baa8_amd64", + "product_id": "openshift4/ose-machine-os-images-rhel8@sha256:d40d92287a561e10641cdb03dff45f365f67f3265e304512057ca129e215baa8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-os-images-rhel8@sha256:d40d92287a561e10641cdb03dff45f365f67f3265e304512057ca129e215baa8?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel8&tag=v4.13.0-202310162157.p0.gb14856f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-admission-controller@sha256:57c34966eef6996bc3bce0c802bce98b0cfb8190cf62ededb76fae22755794ec_amd64", + "product": { + "name": "openshift4/ose-multus-admission-controller@sha256:57c34966eef6996bc3bce0c802bce98b0cfb8190cf62ededb76fae22755794ec_amd64", + "product_id": "openshift4/ose-multus-admission-controller@sha256:57c34966eef6996bc3bce0c802bce98b0cfb8190cf62ededb76fae22755794ec_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-admission-controller@sha256:57c34966eef6996bc3bce0c802bce98b0cfb8190cf62ededb76fae22755794ec?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller&tag=v4.13.0-202310162157.p0.gf76d674.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:9a01336379bc0d1e11d27dde55e8456a34c478b7a5c027c48e55433852117589_amd64", + "product": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:9a01336379bc0d1e11d27dde55e8456a34c478b7a5c027c48e55433852117589_amd64", + "product_id": "openshift4/ose-multus-networkpolicy-rhel8@sha256:9a01336379bc0d1e11d27dde55e8456a34c478b7a5c027c48e55433852117589_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-networkpolicy-rhel8@sha256:9a01336379bc0d1e11d27dde55e8456a34c478b7a5c027c48e55433852117589?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8&tag=v4.13.0-202310162157.p0.g7b99c19.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:50d1ce5bcd21a346070f161dda18c3e2fff2253c8492b1dc2daf542a2b6dbf47_amd64", + "product": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:50d1ce5bcd21a346070f161dda18c3e2fff2253c8492b1dc2daf542a2b6dbf47_amd64", + "product_id": "openshift4/ose-multus-route-override-cni-rhel8@sha256:50d1ce5bcd21a346070f161dda18c3e2fff2253c8492b1dc2daf542a2b6dbf47_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-route-override-cni-rhel8@sha256:50d1ce5bcd21a346070f161dda18c3e2fff2253c8492b1dc2daf542a2b6dbf47?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8&tag=v4.13.0-202310162157.p0.gca3bbec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:6f1009fbe5c923a38e4390f63c04b37503e0d15042005a2144bb7b210d50c6cc_amd64", + "product": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:6f1009fbe5c923a38e4390f63c04b37503e0d15042005a2144bb7b210d50c6cc_amd64", + "product_id": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:6f1009fbe5c923a38e4390f63c04b37503e0d15042005a2144bb7b210d50c6cc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel8@sha256:6f1009fbe5c923a38e4390f63c04b37503e0d15042005a2144bb7b210d50c6cc?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8&tag=v4.13.0-202310162157.p0.g7ea4020.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-must-gather@sha256:a856e306bfd05f956e4947151a76eb5ca73801117e015fbe5b73dd1a734ceb33_amd64", + "product": { + "name": "openshift4/ose-must-gather@sha256:a856e306bfd05f956e4947151a76eb5ca73801117e015fbe5b73dd1a734ceb33_amd64", + "product_id": "openshift4/ose-must-gather@sha256:a856e306bfd05f956e4947151a76eb5ca73801117e015fbe5b73dd1a734ceb33_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-must-gather@sha256:a856e306bfd05f956e4947151a76eb5ca73801117e015fbe5b73dd1a734ceb33?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-must-gather&tag=v4.13.0-202310162157.p0.g288ef2f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:3456bd0afb32f2d96d94b92592797425c1a780853fa4b0ec8dd474cd941cdd7a_amd64", + "product": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:3456bd0afb32f2d96d94b92592797425c1a780853fa4b0ec8dd474cd941cdd7a_amd64", + "product_id": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:3456bd0afb32f2d96d94b92592797425c1a780853fa4b0ec8dd474cd941cdd7a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-interface-bond-cni-rhel8@sha256:3456bd0afb32f2d96d94b92592797425c1a780853fa4b0ec8dd474cd941cdd7a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8&tag=v4.13.0-202310162157.p0.g84bda2a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:469ec69a5e1a554640e4e5306bd417cbadfc22a3f7c32f91bc5fccdaa4bf3303_amd64", + "product": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:469ec69a5e1a554640e4e5306bd417cbadfc22a3f7c32f91bc5fccdaa4bf3303_amd64", + "product_id": "openshift4/ose-network-metrics-daemon-rhel8@sha256:469ec69a5e1a554640e4e5306bd417cbadfc22a3f7c32f91bc5fccdaa4bf3303_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-metrics-daemon-rhel8@sha256:469ec69a5e1a554640e4e5306bd417cbadfc22a3f7c32f91bc5fccdaa4bf3303?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8&tag=v4.13.0-202310162157.p0.ge72c8ad.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/network-tools-rhel8@sha256:cfe00fa37cb2eb4604b436b58ba85c5c32e30cb2486d743d959411a21f841e99_amd64", + "product": { + "name": "openshift4/network-tools-rhel8@sha256:cfe00fa37cb2eb4604b436b58ba85c5c32e30cb2486d743d959411a21f841e99_amd64", + "product_id": "openshift4/network-tools-rhel8@sha256:cfe00fa37cb2eb4604b436b58ba85c5c32e30cb2486d743d959411a21f841e99_amd64", + "product_identification_helper": { + "purl": "pkg:oci/network-tools-rhel8@sha256:cfe00fa37cb2eb4604b436b58ba85c5c32e30cb2486d743d959411a21f841e99?arch=amd64&repository_url=registry.redhat.io/openshift4/network-tools-rhel8&tag=v4.13.0-202310162157.p0.g073feda.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sdn-rhel8@sha256:1c83a867da3bae6ec076a3aa81981b290738dd92b5be163a60db4191b5da423d_amd64", + "product": { + "name": "openshift4/ose-sdn-rhel8@sha256:1c83a867da3bae6ec076a3aa81981b290738dd92b5be163a60db4191b5da423d_amd64", + "product_id": "openshift4/ose-sdn-rhel8@sha256:1c83a867da3bae6ec076a3aa81981b290738dd92b5be163a60db4191b5da423d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sdn-rhel8@sha256:1c83a867da3bae6ec076a3aa81981b290738dd92b5be163a60db4191b5da423d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-sdn-rhel8&tag=v4.13.0-202310162157.p0.g12a5bcf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:03a6fee3cb68bed260c4ccc6f9f6c8c863d7d6c3d9a6d569b0ce07a26f8a6e16_amd64", + "product": { + "name": "openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:03a6fee3cb68bed260c4ccc6f9f6c8c863d7d6c3d9a6d569b0ce07a26f8a6e16_amd64", + "product_id": "openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:03a6fee3cb68bed260c4ccc6f9f6c8c863d7d6c3d9a6d569b0ce07a26f8a6e16_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-nutanix-cloud-controller-manager-rhel8@sha256:03a6fee3cb68bed260c4ccc6f9f6c8c863d7d6c3d9a6d569b0ce07a26f8a6e16?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-nutanix-cloud-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.g4d1c58e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-nutanix-machine-controllers-rhel8@sha256:a6613ac90381edc961862ac123b621caddab7352f7658724a5d37ad57316b85e_amd64", + "product": { + "name": "openshift4/ose-nutanix-machine-controllers-rhel8@sha256:a6613ac90381edc961862ac123b621caddab7352f7658724a5d37ad57316b85e_amd64", + "product_id": "openshift4/ose-nutanix-machine-controllers-rhel8@sha256:a6613ac90381edc961862ac123b621caddab7352f7658724a5d37ad57316b85e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-nutanix-machine-controllers-rhel8@sha256:a6613ac90381edc961862ac123b621caddab7352f7658724a5d37ad57316b85e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-nutanix-machine-controllers-rhel8&tag=v4.13.0-202310162157.p0.gbe43191.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:5431e62ef7d91b8e0013161d0950a3b84fa9562a876fb63821825a47a292e71e_amd64", + "product": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:5431e62ef7d91b8e0013161d0950a3b84fa9562a876fb63821825a47a292e71e_amd64", + "product_id": "openshift4/ose-oauth-apiserver-rhel8@sha256:5431e62ef7d91b8e0013161d0950a3b84fa9562a876fb63821825a47a292e71e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-apiserver-rhel8@sha256:5431e62ef7d91b8e0013161d0950a3b84fa9562a876fb63821825a47a292e71e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8&tag=v4.13.0-202310162157.p0.g41c2dfe.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:bbe08b75dd1918e1662123f6bce057dab2e7873dd7369d68895b437928d186f5_amd64", + "product": { + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:bbe08b75dd1918e1662123f6bce057dab2e7873dd7369d68895b437928d186f5_amd64", + "product_id": "openshift4/ose-olm-rukpak-rhel8@sha256:bbe08b75dd1918e1662123f6bce057dab2e7873dd7369d68895b437928d186f5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-olm-rukpak-rhel8@sha256:bbe08b75dd1918e1662123f6bce057dab2e7873dd7369d68895b437928d186f5?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-olm-rukpak-rhel8&tag=v4.13.0-202310162157.p0.g66b3e55.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:37a9d0020d04bddd01d11fb0ffdcadd3e940054c3f99576e85b9c3ae8606779f_amd64", + "product": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:37a9d0020d04bddd01d11fb0ffdcadd3e940054c3f99576e85b9c3ae8606779f_amd64", + "product_id": "openshift4/ose-openshift-apiserver-rhel8@sha256:37a9d0020d04bddd01d11fb0ffdcadd3e940054c3f99576e85b9c3ae8606779f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-apiserver-rhel8@sha256:37a9d0020d04bddd01d11fb0ffdcadd3e940054c3f99576e85b9c3ae8606779f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8&tag=v4.13.0-202310162157.p0.g0b82768.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:2fffb0c87b2ebe3e426792646e16da574eb11bcfb1cf473cad77f140e109583d_amd64", + "product": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:2fffb0c87b2ebe3e426792646e16da574eb11bcfb1cf473cad77f140e109583d_amd64", + "product_id": "openshift4/ose-openshift-controller-manager-rhel8@sha256:2fffb0c87b2ebe3e426792646e16da574eb11bcfb1cf473cad77f140e109583d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-controller-manager-rhel8@sha256:2fffb0c87b2ebe3e426792646e16da574eb11bcfb1cf473cad77f140e109583d?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.g385057e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:f2868a8dbca9568f6a43263c28c03344dfbfc0e0f3998f3ad70d49fb662fd956_amd64", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:f2868a8dbca9568f6a43263c28c03344dfbfc0e0f3998f3ad70d49fb662fd956_amd64", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:f2868a8dbca9568f6a43263c28c03344dfbfc0e0f3998f3ad70d49fb662fd956_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8@sha256:f2868a8dbca9568f6a43263c28c03344dfbfc0e0f3998f3ad70d49fb662fd956?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.g171da3f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:fcdd1f2701b1dae0b0e98a1acb70bbfa71f0b4243b97e65d9fa1f5af4eef1d06_amd64", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:fcdd1f2701b1dae0b0e98a1acb70bbfa71f0b4243b97e65d9fa1f5af4eef1d06_amd64", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:fcdd1f2701b1dae0b0e98a1acb70bbfa71f0b4243b97e65d9fa1f5af4eef1d06_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:fcdd1f2701b1dae0b0e98a1acb70bbfa71f0b4243b97e65d9fa1f5af4eef1d06?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator&tag=v4.13.0-202310162157.p0.g90ee04b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:2da96d45168a35ad9bfa31e8a72d0ac117e3cfbe46ca870ea38e0669fce63153_amd64", + "product": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:2da96d45168a35ad9bfa31e8a72d0ac117e3cfbe46ca870ea38e0669fce63153_amd64", + "product_id": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:2da96d45168a35ad9bfa31e8a72d0ac117e3cfbe46ca870ea38e0669fce63153_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel8@sha256:2da96d45168a35ad9bfa31e8a72d0ac117e3cfbe46ca870ea38e0669fce63153?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.g171da3f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:34392271202d0fc04a4d2f992ca372e0fad8434adf544170af655e90f97af916_amd64", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:34392271202d0fc04a4d2f992ca372e0fad8434adf544170af655e90f97af916_amd64", + "product_id": "openshift4/ovirt-csi-driver-rhel8@sha256:34392271202d0fc04a4d2f992ca372e0fad8434adf544170af655e90f97af916_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8@sha256:34392271202d0fc04a4d2f992ca372e0fad8434adf544170af655e90f97af916?arch=amd64&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.gf21b470.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:34392271202d0fc04a4d2f992ca372e0fad8434adf544170af655e90f97af916_amd64", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:34392271202d0fc04a4d2f992ca372e0fad8434adf544170af655e90f97af916_amd64", + "product_id": "openshift4/ovirt-csi-driver-rhel7@sha256:34392271202d0fc04a4d2f992ca372e0fad8434adf544170af655e90f97af916_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel7@sha256:34392271202d0fc04a4d2f992ca372e0fad8434adf544170af655e90f97af916?arch=amd64&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel7&tag=v4.13.0-202310162157.p0.gf21b470.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:82d567c792ff4b2dbc05aed5392de6f57f502028c415cb6f9dce7be20316b46a_amd64", + "product": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:82d567c792ff4b2dbc05aed5392de6f57f502028c415cb6f9dce7be20316b46a_amd64", + "product_id": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:82d567c792ff4b2dbc05aed5392de6f57f502028c415cb6f9dce7be20316b46a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovirt-machine-controllers-rhel8@sha256:82d567c792ff4b2dbc05aed5392de6f57f502028c415cb6f9dce7be20316b46a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8&tag=v4.13.0-202310162157.p0.g22d89b3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes@sha256:81e8b77e0221863e046b553250f2738560d6831f0708ac258dbd20a5e33d1688_amd64", + "product": { + "name": "openshift4/ose-ovn-kubernetes@sha256:81e8b77e0221863e046b553250f2738560d6831f0708ac258dbd20a5e33d1688_amd64", + "product_id": "openshift4/ose-ovn-kubernetes@sha256:81e8b77e0221863e046b553250f2738560d6831f0708ac258dbd20a5e33d1688_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes@sha256:81e8b77e0221863e046b553250f2738560d6831f0708ac258dbd20a5e33d1688?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes&tag=v4.13.0-202310162157.p0.g881909d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:703e09fbb78181d2c0d56e85220ce7272fc769752a7d90ba3a9a1fbda3b17098_amd64", + "product": { + "name": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:703e09fbb78181d2c0d56e85220ce7272fc769752a7d90ba3a9a1fbda3b17098_amd64", + "product_id": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:703e09fbb78181d2c0d56e85220ce7272fc769752a7d90ba3a9a1fbda3b17098_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-block-csi-driver-rhel8@sha256:703e09fbb78181d2c0d56e85220ce7272fc769752a7d90ba3a9a1fbda3b17098?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-rhel8&tag=v4.13.0-202310170703.p0.gddec584.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:43eef2c6075275e841b30d89b79140c392b2fb5eaa717392118cfff1ccb30bc1_amd64", + "product": { + "name": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:43eef2c6075275e841b30d89b79140c392b2fb5eaa717392118cfff1ccb30bc1_amd64", + "product_id": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:43eef2c6075275e841b30d89b79140c392b2fb5eaa717392118cfff1ccb30bc1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-block-csi-driver-operator-rhel8@sha256:43eef2c6075275e841b30d89b79140c392b2fb5eaa717392118cfff1ccb30bc1?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-powervs-block-csi-driver-operator-rhel8&tag=v4.13.0-202310162157.p0.g2d8e82b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:215ace04a721e1046a711fe0353fbd271c8d0061e158eb715b2654005adbe431_amd64", + "product": { + "name": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:215ace04a721e1046a711fe0353fbd271c8d0061e158eb715b2654005adbe431_amd64", + "product_id": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:215ace04a721e1046a711fe0353fbd271c8d0061e158eb715b2654005adbe431_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-cloud-controller-manager-rhel8@sha256:215ace04a721e1046a711fe0353fbd271c8d0061e158eb715b2654005adbe431?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-powervs-cloud-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.g1303656.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:b1a054bc5044f37d42057b418f9392bab69db82a428a64922cd9dda9e9ded0ea_amd64", + "product": { + "name": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:b1a054bc5044f37d42057b418f9392bab69db82a428a64922cd9dda9e9ded0ea_amd64", + "product_id": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:b1a054bc5044f37d42057b418f9392bab69db82a428a64922cd9dda9e9ded0ea_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-powervs-machine-controllers-rhel8@sha256:b1a054bc5044f37d42057b418f9392bab69db82a428a64922cd9dda9e9ded0ea?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-powervs-machine-controllers-rhel8&tag=v4.13.0-202310162157.p0.gbf49c5c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:db36e947344c6818265bc108b51ac1fe9712a65608479ab4d6abd7ff4a042504_amd64", + "product": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:db36e947344c6818265bc108b51ac1fe9712a65608479ab4d6abd7ff4a042504_amd64", + "product_id": "openshift4/ose-k8s-prometheus-adapter@sha256:db36e947344c6818265bc108b51ac1fe9712a65608479ab4d6abd7ff4a042504_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-k8s-prometheus-adapter@sha256:db36e947344c6818265bc108b51ac1fe9712a65608479ab4d6abd7ff4a042504?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter&tag=v4.13.0-202310162157.p0.g8ebc578.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:9b05a3e28d3a7d4d343e298fd902d10bda4861a11244b499d545d426b44b15d9_amd64", + "product": { + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:9b05a3e28d3a7d4d343e298fd902d10bda4861a11244b499d545d426b44b15d9_amd64", + "product_id": "openshift4/openshift-route-controller-manager-rhel8@sha256:9b05a3e28d3a7d4d343e298fd902d10bda4861a11244b499d545d426b44b15d9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/openshift-route-controller-manager-rhel8@sha256:9b05a3e28d3a7d4d343e298fd902d10bda4861a11244b499d545d426b44b15d9?arch=amd64&repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.g6667a6c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-service-ca-operator@sha256:84daeb8a1ee9ca43c43bc531a224023f0cd9c5217d036706cb7b0187f6c60231_amd64", + "product": { + "name": "openshift4/ose-service-ca-operator@sha256:84daeb8a1ee9ca43c43bc531a224023f0cd9c5217d036706cb7b0187f6c60231_amd64", + "product_id": "openshift4/ose-service-ca-operator@sha256:84daeb8a1ee9ca43c43bc531a224023f0cd9c5217d036706cb7b0187f6c60231_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-service-ca-operator@sha256:84daeb8a1ee9ca43c43bc531a224023f0cd9c5217d036706cb7b0187f6c60231?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-service-ca-operator&tag=v4.13.0-202310162157.p0.g5984aac.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-thanos-rhel8@sha256:f9b5953801e1b0dc8255078668101232f326acc7ffd79a86e985c8bb06aa3807_amd64", + "product": { + "name": "openshift4/ose-thanos-rhel8@sha256:f9b5953801e1b0dc8255078668101232f326acc7ffd79a86e985c8bb06aa3807_amd64", + "product_id": "openshift4/ose-thanos-rhel8@sha256:f9b5953801e1b0dc8255078668101232f326acc7ffd79a86e985c8bb06aa3807_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-thanos-rhel8@sha256:f9b5953801e1b0dc8255078668101232f326acc7ffd79a86e985c8bb06aa3807?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-thanos-rhel8&tag=v4.13.0-202310162157.p0.g43238be.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tools-rhel8@sha256:420df61706385bf463a7096f95752687af5f4c1295821b08bbcec8be3cbf244a_amd64", + "product": { + "name": "openshift4/ose-tools-rhel8@sha256:420df61706385bf463a7096f95752687af5f4c1295821b08bbcec8be3cbf244a_amd64", + "product_id": "openshift4/ose-tools-rhel8@sha256:420df61706385bf463a7096f95752687af5f4c1295821b08bbcec8be3cbf244a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-tools-rhel8@sha256:420df61706385bf463a7096f95752687af5f4c1295821b08bbcec8be3cbf244a?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-tools-rhel8&tag=v4.13.0-202310162157.p0.g717d4a5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:106e2156ef2d93b5d01966d0d523ef7100ced62dfa3356d6e82b064b43b5b1fa_amd64", + "product": { + "name": "openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:106e2156ef2d93b5d01966d0d523ef7100ced62dfa3356d6e82b064b43b5b1fa_amd64", + "product_id": "openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:106e2156ef2d93b5d01966d0d523ef7100ced62dfa3356d6e82b064b43b5b1fa_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vmware-vsphere-csi-driver-rhel8@sha256:106e2156ef2d93b5d01966d0d523ef7100ced62dfa3356d6e82b064b43b5b1fa?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.g9079a51.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vsphere-csi-driver-rhel8@sha256:106e2156ef2d93b5d01966d0d523ef7100ced62dfa3356d6e82b064b43b5b1fa_amd64", + "product": { + "name": "openshift4/ose-vsphere-csi-driver-rhel8@sha256:106e2156ef2d93b5d01966d0d523ef7100ced62dfa3356d6e82b064b43b5b1fa_amd64", + "product_id": "openshift4/ose-vsphere-csi-driver-rhel8@sha256:106e2156ef2d93b5d01966d0d523ef7100ced62dfa3356d6e82b064b43b5b1fa_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vsphere-csi-driver-rhel8@sha256:106e2156ef2d93b5d01966d0d523ef7100ced62dfa3356d6e82b064b43b5b1fa?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.g9079a51.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:8425fb95200ae8abd5b581a9ddc2349ed3487955bbe3fcc97116c9c8bf0c0deb_amd64", + "product": { + "name": "openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:8425fb95200ae8abd5b581a9ddc2349ed3487955bbe3fcc97116c9c8bf0c0deb_amd64", + "product_id": "openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:8425fb95200ae8abd5b581a9ddc2349ed3487955bbe3fcc97116c9c8bf0c0deb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:8425fb95200ae8abd5b581a9ddc2349ed3487955bbe3fcc97116c9c8bf0c0deb?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8&tag=v4.13.0-202310162157.p0.g1d88292.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:8425fb95200ae8abd5b581a9ddc2349ed3487955bbe3fcc97116c9c8bf0c0deb_amd64", + "product": { + "name": "openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:8425fb95200ae8abd5b581a9ddc2349ed3487955bbe3fcc97116c9c8bf0c0deb_amd64", + "product_id": "openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:8425fb95200ae8abd5b581a9ddc2349ed3487955bbe3fcc97116c9c8bf0c0deb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vsphere-csi-driver-operator-rhel8@sha256:8425fb95200ae8abd5b581a9ddc2349ed3487955bbe3fcc97116c9c8bf0c0deb?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-operator-rhel8&tag=v4.13.0-202310162157.p0.g1d88292.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:5c4767badafb5412e89a5d9939cad1f0817e0f8d7b69e2fa1f201e42549b82a7_amd64", + "product": { + "name": "openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:5c4767badafb5412e89a5d9939cad1f0817e0f8d7b69e2fa1f201e42549b82a7_amd64", + "product_id": "openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:5c4767badafb5412e89a5d9939cad1f0817e0f8d7b69e2fa1f201e42549b82a7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vsphere-cloud-controller-manager-rhel8@sha256:5c4767badafb5412e89a5d9939cad1f0817e0f8d7b69e2fa1f201e42549b82a7?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vsphere-cloud-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.g0fe0c5c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:49ee440e5b95faaa6252c65b55da7698821c7f734d287cbf27ca7c4ab32113c3_amd64", + "product": { + "name": "openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:49ee440e5b95faaa6252c65b55da7698821c7f734d287cbf27ca7c4ab32113c3_amd64", + "product_id": "openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:49ee440e5b95faaa6252c65b55da7698821c7f734d287cbf27ca7c4ab32113c3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vsphere-cluster-api-controllers-rhel8@sha256:49ee440e5b95faaa6252c65b55da7698821c7f734d287cbf27ca7c4ab32113c3?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vsphere-cluster-api-controllers-rhel8&tag=v4.13.0-202310162157.p0.g24e08dd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vsphere-problem-detector-rhel8@sha256:fa41aff671e90d9cef6eab3dad3b0c778d0e0b167b2cabaf1f1643477275a004_amd64", + "product": { + "name": "openshift4/ose-vsphere-problem-detector-rhel8@sha256:fa41aff671e90d9cef6eab3dad3b0c778d0e0b167b2cabaf1f1643477275a004_amd64", + "product_id": "openshift4/ose-vsphere-problem-detector-rhel8@sha256:fa41aff671e90d9cef6eab3dad3b0c778d0e0b167b2cabaf1f1643477275a004_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vsphere-problem-detector-rhel8@sha256:fa41aff671e90d9cef6eab3dad3b0c778d0e0b167b2cabaf1f1643477275a004?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vsphere-problem-detector-rhel8&tag=v4.13.0-202310162157.p0.g64f62bf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f99fae80999fb44c00a07973458067e38be29975a8f864884ef81788c50712b0_amd64", + "product": { + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f99fae80999fb44c00a07973458067e38be29975a8f864884ef81788c50712b0_amd64", + "product_id": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f99fae80999fb44c00a07973458067e38be29975a8f864884ef81788c50712b0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256:f99fae80999fb44c00a07973458067e38be29975a8f864884ef81788c50712b0?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9&tag=v4.13.0-202310162157.p0.g881909d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-config-reloader@sha256:df526d9f9dfc6c307bcf91cbbd6086bdcf08fe11ded4b4f379cd05b2614e43be_amd64", + "product": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:df526d9f9dfc6c307bcf91cbbd6086bdcf08fe11ded4b4f379cd05b2614e43be_amd64", + "product_id": "openshift4/ose-prometheus-config-reloader@sha256:df526d9f9dfc6c307bcf91cbbd6086bdcf08fe11ded4b4f379cd05b2614e43be_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-config-reloader@sha256:df526d9f9dfc6c307bcf91cbbd6086bdcf08fe11ded4b4f379cd05b2614e43be?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader&tag=v4.13.0-202310162157.p0.g95a1178.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:98d9cf23b398cd50ca8683b64d598713b2510825c8fb491f987e298f8945650f_amd64", + "product": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:98d9cf23b398cd50ca8683b64d598713b2510825c8fb491f987e298f8945650f_amd64", + "product_id": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:98d9cf23b398cd50ca8683b64d598713b2510825c8fb491f987e298f8945650f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel8@sha256:98d9cf23b398cd50ca8683b64d598713b2510825c8fb491f987e298f8945650f?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8&tag=v4.13.0-202310162157.p0.g95a1178.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator@sha256:1f6142104aea1227b378db8883a9f262f7e8e68f36f12321377d56a58c52c436_amd64", + "product": { + "name": "openshift4/ose-prometheus-operator@sha256:1f6142104aea1227b378db8883a9f262f7e8e68f36f12321377d56a58c52c436_amd64", + "product_id": "openshift4/ose-prometheus-operator@sha256:1f6142104aea1227b378db8883a9f262f7e8e68f36f12321377d56a58c52c436_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator@sha256:1f6142104aea1227b378db8883a9f262f7e8e68f36f12321377d56a58c52c436?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator&tag=v4.13.0-202310162157.p0.g95a1178.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prom-label-proxy@sha256:09214fe2dbcb65aabf82cdd5002d5bd77718070dc78d37184cd58dee27655a28_amd64", + "product": { + "name": "openshift4/ose-prom-label-proxy@sha256:09214fe2dbcb65aabf82cdd5002d5bd77718070dc78d37184cd58dee27655a28_amd64", + "product_id": "openshift4/ose-prom-label-proxy@sha256:09214fe2dbcb65aabf82cdd5002d5bd77718070dc78d37184cd58dee27655a28_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prom-label-proxy@sha256:09214fe2dbcb65aabf82cdd5002d5bd77718070dc78d37184cd58dee27655a28?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy&tag=v4.13.0-202310162157.p0.gb501d5e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-telemeter@sha256:4ed56bad7d4f65799c04e3845c0f5a276da75d5a46b7aa820c1c387711282a2e_amd64", + "product": { + "name": "openshift4/ose-telemeter@sha256:4ed56bad7d4f65799c04e3845c0f5a276da75d5a46b7aa820c1c387711282a2e_amd64", + "product_id": "openshift4/ose-telemeter@sha256:4ed56bad7d4f65799c04e3845c0f5a276da75d5a46b7aa820c1c387711282a2e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-telemeter@sha256:4ed56bad7d4f65799c04e3845c0f5a276da75d5a46b7aa820c1c387711282a2e?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-telemeter&tag=v4.13.0-202310162157.p0.gbe81b43.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:5ca47e74b550fcb99b5615a282c49135995c573a946cb119bf43e2efc79a1864_amd64", + "product": { + "name": "openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:5ca47e74b550fcb99b5615a282c49135995c573a946cb119bf43e2efc79a1864_amd64", + "product_id": "openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:5ca47e74b550fcb99b5615a282c49135995c573a946cb119bf43e2efc79a1864_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ose-vsphere-csi-driver-syncer-rhel8@sha256:5ca47e74b550fcb99b5615a282c49135995c573a946cb119bf43e2efc79a1864?arch=amd64&repository_url=registry.redhat.io/openshift4/ose-vsphere-csi-driver-syncer-rhel8&tag=v4.13.0-202310162157.p0.g9079a51.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler@sha256:2dc14a680564a0d36bd6e98debbe4a48c19bbce7ce46e03eccee31d690a9e4df_arm64", + "product": { + "name": "openshift4/ose-cluster-autoscaler@sha256:2dc14a680564a0d36bd6e98debbe4a48c19bbce7ce46e03eccee31d690a9e4df_arm64", + "product_id": "openshift4/ose-cluster-autoscaler@sha256:2dc14a680564a0d36bd6e98debbe4a48c19bbce7ce46e03eccee31d690a9e4df_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler@sha256:2dc14a680564a0d36bd6e98debbe4a48c19bbce7ce46e03eccee31d690a9e4df?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler&tag=v4.13.0-202310162157.p0.gc58c53b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-machine-controllers@sha256:47a854d36f2d563e009efaf67eef629405af99b4c17820e59783292de16a0844_arm64", + "product": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:47a854d36f2d563e009efaf67eef629405af99b4c17820e59783292de16a0844_arm64", + "product_id": "openshift4/ose-baremetal-machine-controllers@sha256:47a854d36f2d563e009efaf67eef629405af99b4c17820e59783292de16a0844_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-machine-controllers@sha256:47a854d36f2d563e009efaf67eef629405af99b4c17820e59783292de16a0844?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-baremetal-machine-controllers&tag=v4.13.0-202310162157.p0.g7de328a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:d697eb5053337c5a4aa683e2352d0852f12270196441fc442cd954c8b2e67a3c_arm64", + "product": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:d697eb5053337c5a4aa683e2352d0852f12270196441fc442cd954c8b2e67a3c_arm64", + "product_id": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:d697eb5053337c5a4aa683e2352d0852f12270196441fc442cd954c8b2e67a3c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-etcd-rhel8-operator@sha256:d697eb5053337c5a4aa683e2352d0852f12270196441fc442cd954c8b2e67a3c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-etcd-rhel8-operator&tag=v4.13.0-202310162157.p0.g8b90ac1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-monitoring-operator@sha256:a5a923f5dd108f06f72f6896d9461b38108aff1df9031db50aec9795922c108c_arm64", + "product": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:a5a923f5dd108f06f72f6896d9461b38108aff1df9031db50aec9795922c108c_arm64", + "product_id": "openshift4/ose-cluster-monitoring-operator@sha256:a5a923f5dd108f06f72f6896d9461b38108aff1df9031db50aec9795922c108c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-monitoring-operator@sha256:a5a923f5dd108f06f72f6896d9461b38108aff1df9031db50aec9795922c108c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-monitoring-operator&tag=v4.13.0-202310162157.p0.g547c850.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-network-operator@sha256:0f04018e4db49a191749245c7c1cdffe70bcfe3436120703d55211acc216a707_arm64", + "product": { + "name": "openshift4/ose-cluster-network-operator@sha256:0f04018e4db49a191749245c7c1cdffe70bcfe3436120703d55211acc216a707_arm64", + "product_id": "openshift4/ose-cluster-network-operator@sha256:0f04018e4db49a191749245c7c1cdffe70bcfe3436120703d55211acc216a707_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-network-operator@sha256:0f04018e4db49a191749245c7c1cdffe70bcfe3436120703d55211acc216a707?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-network-operator&tag=v4.13.0-202310162157.p0.g961ca3d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:3300a6c39e2947a6cf6f8e66609065466476058e45ff5bd59b93a27b8ef2d4c3_arm64", + "product": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:3300a6c39e2947a6cf6f8e66609065466476058e45ff5bd59b93a27b8ef2d4c3_arm64", + "product_id": "openshift4/ose-cluster-node-tuning-operator@sha256:3300a6c39e2947a6cf6f8e66609065466476058e45ff5bd59b93a27b8ef2d4c3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-node-tuning-operator@sha256:3300a6c39e2947a6cf6f8e66609065466476058e45ff5bd59b93a27b8ef2d4c3?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-node-tuning-operator&tag=v4.13.0-202310162157.p0.g9cdb2d7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-version-operator@sha256:10e9f018f1f5f6d375648abe77667dff4b7b4b4a1dfa3c2f1c31a62fcc9d6e80_arm64", + "product": { + "name": "openshift4/ose-cluster-version-operator@sha256:10e9f018f1f5f6d375648abe77667dff4b7b4b4a1dfa3c2f1c31a62fcc9d6e80_arm64", + "product_id": "openshift4/ose-cluster-version-operator@sha256:10e9f018f1f5f6d375648abe77667dff4b7b4b4a1dfa3c2f1c31a62fcc9d6e80_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-version-operator@sha256:10e9f018f1f5f6d375648abe77667dff4b7b4b4a1dfa3c2f1c31a62fcc9d6e80?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-version-operator&tag=v4.13.0-202310162157.p0.gc622124.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-configmap-reloader@sha256:41d71be7aaf5403c8098e5a23e0d657b29ea8a12f37225c89499fd965b623f0c_arm64", + "product": { + "name": "openshift4/ose-configmap-reloader@sha256:41d71be7aaf5403c8098e5a23e0d657b29ea8a12f37225c89499fd965b623f0c_arm64", + "product_id": "openshift4/ose-configmap-reloader@sha256:41d71be7aaf5403c8098e5a23e0d657b29ea8a12f37225c89499fd965b623f0c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-configmap-reloader@sha256:41d71be7aaf5403c8098e5a23e0d657b29ea8a12f37225c89499fd965b623f0c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-configmap-reloader&tag=v4.13.0-202310162157.p0.g9adad59.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-coredns@sha256:d12af59b428a1890a8ed2dd80ef01ce98ceb925183f065cc57f6e75b3d4b3dae_arm64", + "product": { + "name": "openshift4/ose-coredns@sha256:d12af59b428a1890a8ed2dd80ef01ce98ceb925183f065cc57f6e75b3d4b3dae_arm64", + "product_id": "openshift4/ose-coredns@sha256:d12af59b428a1890a8ed2dd80ef01ce98ceb925183f065cc57f6e75b3d4b3dae_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-coredns@sha256:d12af59b428a1890a8ed2dd80ef01ce98ceb925183f065cc57f6e75b3d4b3dae?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-coredns&tag=v4.13.0-202310162157.p0.g598440f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:1eee173bc3467f8bb98d646c86e7477f686e7b49c04d3d897978a808969ca737_arm64", + "product": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:1eee173bc3467f8bb98d646c86e7477f686e7b49c04d3d897978a808969ca737_arm64", + "product_id": "openshift4/ose-csi-external-attacher-rhel8@sha256:1eee173bc3467f8bb98d646c86e7477f686e7b49c04d3d897978a808969ca737_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher-rhel8@sha256:1eee173bc3467f8bb98d646c86e7477f686e7b49c04d3d897978a808969ca737?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher-rhel8&tag=v4.13.0-202310162157.p0.ge9d59a2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-attacher@sha256:1eee173bc3467f8bb98d646c86e7477f686e7b49c04d3d897978a808969ca737_arm64", + "product": { + "name": "openshift4/ose-csi-external-attacher@sha256:1eee173bc3467f8bb98d646c86e7477f686e7b49c04d3d897978a808969ca737_arm64", + "product_id": "openshift4/ose-csi-external-attacher@sha256:1eee173bc3467f8bb98d646c86e7477f686e7b49c04d3d897978a808969ca737_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-attacher@sha256:1eee173bc3467f8bb98d646c86e7477f686e7b49c04d3d897978a808969ca737?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-attacher&tag=v4.13.0-202310162157.p0.ge9d59a2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:e453ee3d03d6e69d5526aabb1bb5cb359ab037934b2f51a962a06a57543400fa_arm64", + "product": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:e453ee3d03d6e69d5526aabb1bb5cb359ab037934b2f51a962a06a57543400fa_arm64", + "product_id": "openshift4/ose-csi-livenessprobe-rhel8@sha256:e453ee3d03d6e69d5526aabb1bb5cb359ab037934b2f51a962a06a57543400fa_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe-rhel8@sha256:e453ee3d03d6e69d5526aabb1bb5cb359ab037934b2f51a962a06a57543400fa?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe-rhel8&tag=v4.13.0-202310162157.p0.ga888237.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-livenessprobe@sha256:e453ee3d03d6e69d5526aabb1bb5cb359ab037934b2f51a962a06a57543400fa_arm64", + "product": { + "name": "openshift4/ose-csi-livenessprobe@sha256:e453ee3d03d6e69d5526aabb1bb5cb359ab037934b2f51a962a06a57543400fa_arm64", + "product_id": "openshift4/ose-csi-livenessprobe@sha256:e453ee3d03d6e69d5526aabb1bb5cb359ab037934b2f51a962a06a57543400fa_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-livenessprobe@sha256:e453ee3d03d6e69d5526aabb1bb5cb359ab037934b2f51a962a06a57543400fa?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-livenessprobe&tag=v4.13.0-202310162157.p0.ga888237.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:4ad32e081790e4c572128001c77c5cee595f01346fa292e61a0fd8e6d4b594d7_arm64", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:4ad32e081790e4c572128001c77c5cee595f01346fa292e61a0fd8e6d4b594d7_arm64", + "product_id": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:4ad32e081790e4c572128001c77c5cee595f01346fa292e61a0fd8e6d4b594d7_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar-rhel8@sha256:4ad32e081790e4c572128001c77c5cee595f01346fa292e61a0fd8e6d4b594d7?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar-rhel8&tag=v4.13.0-202310162157.p0.g5f13d5e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-node-driver-registrar@sha256:4ad32e081790e4c572128001c77c5cee595f01346fa292e61a0fd8e6d4b594d7_arm64", + "product": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:4ad32e081790e4c572128001c77c5cee595f01346fa292e61a0fd8e6d4b594d7_arm64", + "product_id": "openshift4/ose-csi-node-driver-registrar@sha256:4ad32e081790e4c572128001c77c5cee595f01346fa292e61a0fd8e6d4b594d7_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-node-driver-registrar@sha256:4ad32e081790e4c572128001c77c5cee595f01346fa292e61a0fd8e6d4b594d7?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-node-driver-registrar&tag=v4.13.0-202310162157.p0.g5f13d5e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner@sha256:b6285e5952fd10b6a5044a7215ba1d7ee39bdba0688fa91f1efffe97e77ae452_arm64", + "product": { + "name": "openshift4/ose-csi-external-provisioner@sha256:b6285e5952fd10b6a5044a7215ba1d7ee39bdba0688fa91f1efffe97e77ae452_arm64", + "product_id": "openshift4/ose-csi-external-provisioner@sha256:b6285e5952fd10b6a5044a7215ba1d7ee39bdba0688fa91f1efffe97e77ae452_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner@sha256:b6285e5952fd10b6a5044a7215ba1d7ee39bdba0688fa91f1efffe97e77ae452?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner&tag=v4.13.0-202310162157.p0.gf1fa809.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:b6285e5952fd10b6a5044a7215ba1d7ee39bdba0688fa91f1efffe97e77ae452_arm64", + "product": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:b6285e5952fd10b6a5044a7215ba1d7ee39bdba0688fa91f1efffe97e77ae452_arm64", + "product_id": "openshift4/ose-csi-external-provisioner-rhel8@sha256:b6285e5952fd10b6a5044a7215ba1d7ee39bdba0688fa91f1efffe97e77ae452_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-provisioner-rhel8@sha256:b6285e5952fd10b6a5044a7215ba1d7ee39bdba0688fa91f1efffe97e77ae452?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-provisioner-rhel8&tag=v4.13.0-202310162157.p0.gf1fa809.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/driver-toolkit-rhel9@sha256:11f156e415077fceb100b659a1beee2bb819a7e80e26022d6df0e2ddb727021f_arm64", + "product": { + "name": "openshift4/driver-toolkit-rhel9@sha256:11f156e415077fceb100b659a1beee2bb819a7e80e26022d6df0e2ddb727021f_arm64", + "product_id": "openshift4/driver-toolkit-rhel9@sha256:11f156e415077fceb100b659a1beee2bb819a7e80e26022d6df0e2ddb727021f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/driver-toolkit-rhel9@sha256:11f156e415077fceb100b659a1beee2bb819a7e80e26022d6df0e2ddb727021f?arch=arm64&repository_url=registry.redhat.io/openshift4/driver-toolkit-rhel9&tag=v4.13.0-202310161125.p0.gd719bdc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-proxy@sha256:77c2b01cc9e7331b065800a856fa206b0aa281be9c74dfed6f406514be63164a_arm64", + "product": { + "name": "openshift4/ose-oauth-proxy@sha256:77c2b01cc9e7331b065800a856fa206b0aa281be9c74dfed6f406514be63164a_arm64", + "product_id": "openshift4/ose-oauth-proxy@sha256:77c2b01cc9e7331b065800a856fa206b0aa281be9c74dfed6f406514be63164a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-proxy@sha256:77c2b01cc9e7331b065800a856fa206b0aa281be9c74dfed6f406514be63164a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-oauth-proxy&tag=v4.13.0-202310162157.p0.g44af5a3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-alertmanager@sha256:b5f94b44220d8a693942d0c323823e03728a7c3939bbb5978cd0694a3674ea56_arm64", + "product": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:b5f94b44220d8a693942d0c323823e03728a7c3939bbb5978cd0694a3674ea56_arm64", + "product_id": "openshift4/ose-prometheus-alertmanager@sha256:b5f94b44220d8a693942d0c323823e03728a7c3939bbb5978cd0694a3674ea56_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-alertmanager@sha256:b5f94b44220d8a693942d0c323823e03728a7c3939bbb5978cd0694a3674ea56?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prometheus-alertmanager&tag=v4.13.0-202310162157.p0.gf44d574.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-node-exporter@sha256:880e4345660a7f4d393f72e9f382c4436789216c94d1c52df5beb82c5bc0bb3e_arm64", + "product": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:880e4345660a7f4d393f72e9f382c4436789216c94d1c52df5beb82c5bc0bb3e_arm64", + "product_id": "openshift4/ose-prometheus-node-exporter@sha256:880e4345660a7f4d393f72e9f382c4436789216c94d1c52df5beb82c5bc0bb3e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-node-exporter@sha256:880e4345660a7f4d393f72e9f382c4436789216c94d1c52df5beb82c5bc0bb3e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prometheus-node-exporter&tag=v4.13.0-202310162157.p0.g5409afd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus@sha256:11a97afa055b4a80f1c2ef076b4cd92610317cb3a2e42faa7f3b7812abfd727a_arm64", + "product": { + "name": "openshift4/ose-prometheus@sha256:11a97afa055b4a80f1c2ef076b4cd92610317cb3a2e42faa7f3b7812abfd727a_arm64", + "product_id": "openshift4/ose-prometheus@sha256:11a97afa055b4a80f1c2ef076b4cd92610317cb3a2e42faa7f3b7812abfd727a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus@sha256:11a97afa055b4a80f1c2ef076b4cd92610317cb3a2e42faa7f3b7812abfd727a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prometheus&tag=v4.13.0-202310162157.p0.g8279148.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-agent-rhel9@sha256:5b4d2b40243efcdf1f7e35f03692d56cc69858ca4f3086f5bdf87de3e162f472_arm64", + "product": { + "name": "openshift4/ose-ironic-agent-rhel9@sha256:5b4d2b40243efcdf1f7e35f03692d56cc69858ca4f3086f5bdf87de3e162f472_arm64", + "product_id": "openshift4/ose-ironic-agent-rhel9@sha256:5b4d2b40243efcdf1f7e35f03692d56cc69858ca4f3086f5bdf87de3e162f472_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-agent-rhel9@sha256:5b4d2b40243efcdf1f7e35f03692d56cc69858ca4f3086f5bdf87de3e162f472?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ironic-agent-rhel9&tag=v4.13.0-202310161125.p0.g508e612.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-rhel9@sha256:ac9a7772a3c399a809f21a99aba373310b4b384185fcdebb20065b81bef936cc_arm64", + "product": { + "name": "openshift4/ose-ironic-rhel9@sha256:ac9a7772a3c399a809f21a99aba373310b4b384185fcdebb20065b81bef936cc_arm64", + "product_id": "openshift4/ose-ironic-rhel9@sha256:ac9a7772a3c399a809f21a99aba373310b4b384185fcdebb20065b81bef936cc_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-rhel9@sha256:ac9a7772a3c399a809f21a99aba373310b4b384185fcdebb20065b81bef936cc?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ironic-rhel9&tag=v4.13.0-202310161125.p0.gfc1cca9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e7891ba225656a51862815c6e05934924e78c85abb9d38aedf5f6bfe1bf23637_arm64", + "product": { + "name": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e7891ba225656a51862815c6e05934924e78c85abb9d38aedf5f6bfe1bf23637_arm64", + "product_id": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e7891ba225656a51862815c6e05934924e78c85abb9d38aedf5f6bfe1bf23637_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-machine-os-downloader-rhel9@sha256:e7891ba225656a51862815c6e05934924e78c85abb9d38aedf5f6bfe1bf23637?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ironic-machine-os-downloader-rhel9&tag=v4.13.0-202310162157.p0.gce29177.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ironic-static-ip-manager-rhel9@sha256:4a76daf5aaf6836997ed233c031547f3b3c939ca1dc5b4d25cf1de0d5947edb6_arm64", + "product": { + "name": "openshift4/ose-ironic-static-ip-manager-rhel9@sha256:4a76daf5aaf6836997ed233c031547f3b3c939ca1dc5b4d25cf1de0d5947edb6_arm64", + "product_id": "openshift4/ose-ironic-static-ip-manager-rhel9@sha256:4a76daf5aaf6836997ed233c031547f3b3c939ca1dc5b4d25cf1de0d5947edb6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ironic-static-ip-manager-rhel9@sha256:4a76daf5aaf6836997ed233c031547f3b3c939ca1dc5b4d25cf1de0d5947edb6?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ironic-static-ip-manager-rhel9&tag=v4.13.0-202310161125.p0.g4536724.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-proxy@sha256:222b069c4c4018f6811f6533675c810564d0e7a0823b89ff7c7e538ce214cac8_arm64", + "product": { + "name": "openshift4/ose-kube-proxy@sha256:222b069c4c4018f6811f6533675c810564d0e7a0823b89ff7c7e538ce214cac8_arm64", + "product_id": "openshift4/ose-kube-proxy@sha256:222b069c4c4018f6811f6533675c810564d0e7a0823b89ff7c7e538ce214cac8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-proxy@sha256:222b069c4c4018f6811f6533675c810564d0e7a0823b89ff7c7e538ce214cac8?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-kube-proxy&tag=v4.13.0-202310162157.p0.g12a5bcf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-rbac-proxy@sha256:054951845849727ca5f2a58aaaf4e30c4777e1acd96214f67a6766e88b98f143_arm64", + "product": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:054951845849727ca5f2a58aaaf4e30c4777e1acd96214f67a6766e88b98f143_arm64", + "product_id": "openshift4/ose-kube-rbac-proxy@sha256:054951845849727ca5f2a58aaaf4e30c4777e1acd96214f67a6766e88b98f143_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-rbac-proxy@sha256:054951845849727ca5f2a58aaaf4e30c4777e1acd96214f67a6766e88b98f143?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-kube-rbac-proxy&tag=v4.13.0-202310162157.p0.gf1205e6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-state-metrics@sha256:138e5bad7fa2dc3bd386231d54816b003f438950c55e0812e08f4d13a2433440_arm64", + "product": { + "name": "openshift4/ose-kube-state-metrics@sha256:138e5bad7fa2dc3bd386231d54816b003f438950c55e0812e08f4d13a2433440_arm64", + "product_id": "openshift4/ose-kube-state-metrics@sha256:138e5bad7fa2dc3bd386231d54816b003f438950c55e0812e08f4d13a2433440_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-state-metrics@sha256:138e5bad7fa2dc3bd386231d54816b003f438950c55e0812e08f4d13a2433440?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-kube-state-metrics&tag=v4.13.0-202310162157.p0.g4b96984.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-marketplace@sha256:ec064ccf2d15b8075a606bd0f1d184a386217ad18d1b45e7edea1989477bab4c_arm64", + "product": { + "name": "openshift4/ose-operator-marketplace@sha256:ec064ccf2d15b8075a606bd0f1d184a386217ad18d1b45e7edea1989477bab4c_arm64", + "product_id": "openshift4/ose-operator-marketplace@sha256:ec064ccf2d15b8075a606bd0f1d184a386217ad18d1b45e7edea1989477bab4c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-marketplace@sha256:ec064ccf2d15b8075a606bd0f1d184a386217ad18d1b45e7edea1989477bab4c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-operator-marketplace&tag=v4.13.0-202310162157.p0.g3a424b9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-cni@sha256:50f163024ff709109236d042867f123b44b9e60c705ea57e3ecd091f6b07a0d8_arm64", + "product": { + "name": "openshift4/ose-multus-cni@sha256:50f163024ff709109236d042867f123b44b9e60c705ea57e3ecd091f6b07a0d8_arm64", + "product_id": "openshift4/ose-multus-cni@sha256:50f163024ff709109236d042867f123b44b9e60c705ea57e3ecd091f6b07a0d8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-cni@sha256:50f163024ff709109236d042867f123b44b9e60c705ea57e3ecd091f6b07a0d8?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-multus-cni&tag=v4.13.0-202310162157.p0.gbb616ef.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-server-rhel8@sha256:d9aecacd0fc49283bff4677b843b7ab80917eb414ba32dcb9e28456290327f5a_arm64", + "product": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:d9aecacd0fc49283bff4677b843b7ab80917eb414ba32dcb9e28456290327f5a_arm64", + "product_id": "openshift4/ose-oauth-server-rhel8@sha256:d9aecacd0fc49283bff4677b843b7ab80917eb414ba32dcb9e28456290327f5a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-server-rhel8@sha256:d9aecacd0fc49283bff4677b843b7ab80917eb414ba32dcb9e28456290327f5a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-oauth-server-rhel8&tag=v4.13.0-202310162157.p0.gb841149.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-builder@sha256:90a182d7e5b3f9a477b3d6dd4ed0717dc68c2632a3b4c44d614d99888c568d76_arm64", + "product": { + "name": "openshift4/ose-docker-builder@sha256:90a182d7e5b3f9a477b3d6dd4ed0717dc68c2632a3b4c44d614d99888c568d76_arm64", + "product_id": "openshift4/ose-docker-builder@sha256:90a182d7e5b3f9a477b3d6dd4ed0717dc68c2632a3b4c44d614d99888c568d76_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-builder@sha256:90a182d7e5b3f9a477b3d6dd4ed0717dc68c2632a3b4c44d614d99888c568d76?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-docker-builder&tag=v4.13.0-202310170703.p0.g1fec8a2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli@sha256:b00cec03b9c1f75d5e5af2b159c930dac5059873e599f467d27e556317b0d73b_arm64", + "product": { + "name": "openshift4/ose-cli@sha256:b00cec03b9c1f75d5e5af2b159c930dac5059873e599f467d27e556317b0d73b_arm64", + "product_id": "openshift4/ose-cli@sha256:b00cec03b9c1f75d5e5af2b159c930dac5059873e599f467d27e556317b0d73b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli@sha256:b00cec03b9c1f75d5e5af2b159c930dac5059873e599f467d27e556317b0d73b?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cli&tag=v4.13.0-202310162157.p0.g717d4a5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console@sha256:48eb48de671cdfb012368e58261aa1d9be73569f36ca93e0a5d5b98363380c96_arm64", + "product": { + "name": "openshift4/ose-console@sha256:48eb48de671cdfb012368e58261aa1d9be73569f36ca93e0a5d5b98363380c96_arm64", + "product_id": "openshift4/ose-console@sha256:48eb48de671cdfb012368e58261aa1d9be73569f36ca93e0a5d5b98363380c96_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-console@sha256:48eb48de671cdfb012368e58261aa1d9be73569f36ca93e0a5d5b98363380c96?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-console&tag=v4.13.0-202310162157.p0.g303c2bd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-console-operator@sha256:130823130867699b85b4d2b60cb5a3e707dac1ebf8a21599693467665ae1f777_arm64", + "product": { + "name": "openshift4/ose-console-operator@sha256:130823130867699b85b4d2b60cb5a3e707dac1ebf8a21599693467665ae1f777_arm64", + "product_id": "openshift4/ose-console-operator@sha256:130823130867699b85b4d2b60cb5a3e707dac1ebf8a21599693467665ae1f777_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-console-operator@sha256:130823130867699b85b4d2b60cb5a3e707dac1ebf8a21599693467665ae1f777?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-console-operator&tag=v4.13.0-202310162157.p0.gdd6939f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-deployer@sha256:84a711fda48a0b60e9b244cdbcdeb9ef3e30017b735f749d67276c05993d19f0_arm64", + "product": { + "name": "openshift4/ose-deployer@sha256:84a711fda48a0b60e9b244cdbcdeb9ef3e30017b735f749d67276c05993d19f0_arm64", + "product_id": "openshift4/ose-deployer@sha256:84a711fda48a0b60e9b244cdbcdeb9ef3e30017b735f749d67276c05993d19f0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-deployer@sha256:84a711fda48a0b60e9b244cdbcdeb9ef3e30017b735f749d67276c05993d19f0?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-deployer&tag=v4.13.0-202310162157.p0.g717d4a5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-haproxy-router@sha256:7e2b961bbb2a6369aebf066166fca967876a10aa716c46050b268a3c3da9a0c1_arm64", + "product": { + "name": "openshift4/ose-haproxy-router@sha256:7e2b961bbb2a6369aebf066166fca967876a10aa716c46050b268a3c3da9a0c1_arm64", + "product_id": "openshift4/ose-haproxy-router@sha256:7e2b961bbb2a6369aebf066166fca967876a10aa716c46050b268a3c3da9a0c1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-haproxy-router@sha256:7e2b961bbb2a6369aebf066166fca967876a10aa716c46050b268a3c3da9a0c1?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-haproxy-router&tag=v4.13.0-202310162157.p0.g057eae9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hyperkube@sha256:f52915447833ac31c63e7606a638097238499d616f7ae8bec013abf0bfbd0b0c_arm64", + "product": { + "name": "openshift4/ose-hyperkube@sha256:f52915447833ac31c63e7606a638097238499d616f7ae8bec013abf0bfbd0b0c_arm64", + "product_id": "openshift4/ose-hyperkube@sha256:f52915447833ac31c63e7606a638097238499d616f7ae8bec013abf0bfbd0b0c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-hyperkube@sha256:f52915447833ac31c63e7606a638097238499d616f7ae8bec013abf0bfbd0b0c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-hyperkube&tag=v4.13.0-202310162157.p0.gc7606e7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-pod@sha256:4606ba1d3a5b90d2e57aaad740967f7321ba7dad553093faba628b227b8764e2_arm64", + "product": { + "name": "openshift4/ose-pod@sha256:4606ba1d3a5b90d2e57aaad740967f7321ba7dad553093faba628b227b8764e2_arm64", + "product_id": "openshift4/ose-pod@sha256:4606ba1d3a5b90d2e57aaad740967f7321ba7dad553093faba628b227b8764e2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-pod@sha256:4606ba1d3a5b90d2e57aaad740967f7321ba7dad553093faba628b227b8764e2?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-pod&tag=v4.13.0-202310162157.p0.gc7606e7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-docker-registry@sha256:a0d9932a75b79cf79c1f06f884c686f5031b13a68fcd5bf0fc2ab506bc9ebbcd_arm64", + "product": { + "name": "openshift4/ose-docker-registry@sha256:a0d9932a75b79cf79c1f06f884c686f5031b13a68fcd5bf0fc2ab506bc9ebbcd_arm64", + "product_id": "openshift4/ose-docker-registry@sha256:a0d9932a75b79cf79c1f06f884c686f5031b13a68fcd5bf0fc2ab506bc9ebbcd_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-docker-registry@sha256:a0d9932a75b79cf79c1f06f884c686f5031b13a68fcd5bf0fc2ab506bc9ebbcd?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-docker-registry&tag=v4.13.0-202310162157.p0.g47a15ac.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tests@sha256:dd21da02bf2e5fbfc86b8f27fd9e807d720ac22f7c20a17e8cb958f9caac3987_arm64", + "product": { + "name": "openshift4/ose-tests@sha256:dd21da02bf2e5fbfc86b8f27fd9e807d720ac22f7c20a17e8cb958f9caac3987_arm64", + "product_id": "openshift4/ose-tests@sha256:dd21da02bf2e5fbfc86b8f27fd9e807d720ac22f7c20a17e8cb958f9caac3987_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-tests@sha256:dd21da02bf2e5fbfc86b8f27fd9e807d720ac22f7c20a17e8cb958f9caac3987?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-tests&tag=v4.13.0-202310162157.p0.g40d3885.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:58cdc58c255acbfd5ba37cb3cb083da36f428538685552c72567a7ba79ce179b_arm64", + "product": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:58cdc58c255acbfd5ba37cb3cb083da36f428538685552c72567a7ba79ce179b_arm64", + "product_id": "openshift4/ose-openshift-state-metrics-rhel8@sha256:58cdc58c255acbfd5ba37cb3cb083da36f428538685552c72567a7ba79ce179b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-state-metrics-rhel8@sha256:58cdc58c255acbfd5ba37cb3cb083da36f428538685552c72567a7ba79ce179b?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openshift-state-metrics-rhel8&tag=v4.13.0-202310162157.p0.g7beb880.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-lifecycle-manager@sha256:504b0f2d12de6898356bf36b994e42c7ae75e9844ed647e95e618f3bc7ca1c9e_arm64", + "product": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:504b0f2d12de6898356bf36b994e42c7ae75e9844ed647e95e618f3bc7ca1c9e_arm64", + "product_id": "openshift4/ose-operator-lifecycle-manager@sha256:504b0f2d12de6898356bf36b994e42c7ae75e9844ed647e95e618f3bc7ca1c9e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-lifecycle-manager@sha256:504b0f2d12de6898356bf36b994e42c7ae75e9844ed647e95e618f3bc7ca1c9e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-operator-lifecycle-manager&tag=v4.13.0-202310162157.p0.g9957ffd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-operator-registry@sha256:d15bb23ba551ffef2d52b04ddea2b2075dd1f2d8c94f29a6a51f452db4b631ed_arm64", + "product": { + "name": "openshift4/ose-operator-registry@sha256:d15bb23ba551ffef2d52b04ddea2b2075dd1f2d8c94f29a6a51f452db4b631ed_arm64", + "product_id": "openshift4/ose-operator-registry@sha256:d15bb23ba551ffef2d52b04ddea2b2075dd1f2d8c94f29a6a51f452db4b631ed_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-operator-registry@sha256:d15bb23ba551ffef2d52b04ddea2b2075dd1f2d8c94f29a6a51f452db4b631ed?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-operator-registry&tag=v4.13.0-202310162157.p0.g9957ffd.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:37fe0b45509528dd14fa7c2e5c95a984ad34b3cc1d95191f732971a916a03437_arm64", + "product": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:37fe0b45509528dd14fa7c2e5c95a984ad34b3cc1d95191f732971a916a03437_arm64", + "product_id": "openshift4/ose-agent-installer-api-server-rhel8@sha256:37fe0b45509528dd14fa7c2e5c95a984ad34b3cc1d95191f732971a916a03437_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-api-server-rhel8@sha256:37fe0b45509528dd14fa7c2e5c95a984ad34b3cc1d95191f732971a916a03437?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-api-server-rhel8&tag=v4.13.0-202310162157.p0.g06189bc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:21cbdc97072203e781dbd3f6ab31afc8631419919e4df27cb64bdf62f3ec5e19_arm64", + "product": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:21cbdc97072203e781dbd3f6ab31afc8631419919e4df27cb64bdf62f3ec5e19_arm64", + "product_id": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:21cbdc97072203e781dbd3f6ab31afc8631419919e4df27cb64bdf62f3ec5e19_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-csr-approver-rhel8@sha256:21cbdc97072203e781dbd3f6ab31afc8631419919e4df27cb64bdf62f3ec5e19?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-csr-approver-rhel8&tag=v4.13.0-202310162157.p0.gedf2542.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:e4e89d791ceb38e82e2799091edb4a4729f37701a528b9e45ebf0d5183e6af23_arm64", + "product": { + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:e4e89d791ceb38e82e2799091edb4a4729f37701a528b9e45ebf0d5183e6af23_arm64", + "product_id": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:e4e89d791ceb38e82e2799091edb4a4729f37701a528b9e45ebf0d5183e6af23_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-node-agent-rhel8@sha256:e4e89d791ceb38e82e2799091edb4a4729f37701a528b9e45ebf0d5183e6af23?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-node-agent-rhel8&tag=v4.13.0-202310162157.p0.g35357f5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:8b973cc301c2ab95c669fc3b7db8d9e54447833de41a90d6a2524a8a014998de_arm64", + "product": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:8b973cc301c2ab95c669fc3b7db8d9e54447833de41a90d6a2524a8a014998de_arm64", + "product_id": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:8b973cc301c2ab95c669fc3b7db8d9e54447833de41a90d6a2524a8a014998de_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-agent-installer-orchestrator-rhel8@sha256:8b973cc301c2ab95c669fc3b7db8d9e54447833de41a90d6a2524a8a014998de?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-agent-installer-orchestrator-rhel8&tag=v4.13.0-202310162157.p0.gedf2542.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:bd4d5c196d024afb565a6b3fe21b117900de99def884d56b5ac9a9241a4b6b79_arm64", + "product": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:bd4d5c196d024afb565a6b3fe21b117900de99def884d56b5ac9a9241a4b6b79_arm64", + "product_id": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:bd4d5c196d024afb565a6b3fe21b117900de99def884d56b5ac9a9241a4b6b79_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-apiserver-network-proxy-rhel8@sha256:bd4d5c196d024afb565a6b3fe21b117900de99def884d56b5ac9a9241a4b6b79?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-apiserver-network-proxy-rhel8&tag=v4.13.0-202310162157.p0.gf1e6d94.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:54ec2c3470b6694ef34583caabc3454eb33ec63af2ab3ed249812bdde9587ee8_arm64", + "product": { + "name": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:54ec2c3470b6694ef34583caabc3454eb33ec63af2ab3ed249812bdde9587ee8_arm64", + "product_id": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:54ec2c3470b6694ef34583caabc3454eb33ec63af2ab3ed249812bdde9587ee8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-cloud-controller-manager-rhel8@sha256:54ec2c3470b6694ef34583caabc3454eb33ec63af2ab3ed249812bdde9587ee8?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-cloud-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.g946daa0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:aefb6ad87542a9ba21818d1ea612f64b87e78fb38aecaaefb45b9bedb7100d52_arm64", + "product": { + "name": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:aefb6ad87542a9ba21818d1ea612f64b87e78fb38aecaaefb45b9bedb7100d52_arm64", + "product_id": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:aefb6ad87542a9ba21818d1ea612f64b87e78fb38aecaaefb45b9bedb7100d52_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-cluster-api-controllers-rhel8@sha256:aefb6ad87542a9ba21818d1ea612f64b87e78fb38aecaaefb45b9bedb7100d52?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-cluster-api-controllers-rhel8&tag=v4.13.0-202310162157.p0.gacb52a0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:b61b70b15770bb118e4b6c0a5bd40e7dd4bd687ca46aee04fbc9ab214cd76234_arm64", + "product": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:b61b70b15770bb118e4b6c0a5bd40e7dd4bd687ca46aee04fbc9ab214cd76234_arm64", + "product_id": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:b61b70b15770bb118e4b6c0a5bd40e7dd4bd687ca46aee04fbc9ab214cd76234_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel8@sha256:b61b70b15770bb118e4b6c0a5bd40e7dd4bd687ca46aee04fbc9ab214cd76234?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.g923631d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:3bff4a20235245f5874233c60a608b34e3cd5107f53a035160f81db55a059531_arm64", + "product": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:3bff4a20235245f5874233c60a608b34e3cd5107f53a035160f81db55a059531_arm64", + "product_id": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:3bff4a20235245f5874233c60a608b34e3cd5107f53a035160f81db55a059531_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-ebs-csi-driver-rhel8-operator@sha256:3bff4a20235245f5874233c60a608b34e3cd5107f53a035160f81db55a059531?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-ebs-csi-driver-rhel8-operator&tag=v4.13.0-202310162157.p0.gbaf14a4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:2cbe53cb0efda37046ae029ae92ebc217880d3e828af68c0bc4b0f625f4de754_arm64", + "product": { + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:2cbe53cb0efda37046ae029ae92ebc217880d3e828af68c0bc4b0f625f4de754_arm64", + "product_id": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:2cbe53cb0efda37046ae029ae92ebc217880d3e828af68c0bc4b0f625f4de754_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-aws-pod-identity-webhook-rhel8@sha256:2cbe53cb0efda37046ae029ae92ebc217880d3e828af68c0bc4b0f625f4de754?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-aws-pod-identity-webhook-rhel8&tag=v4.13.0-202310162157.p0.g125a4b4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:8f4c0c942512325c013f04e00a1f7fc2c4ea15077427a1c9dc19212f6d53fd70_arm64", + "product": { + "name": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:8f4c0c942512325c013f04e00a1f7fc2c4ea15077427a1c9dc19212f6d53fd70_arm64", + "product_id": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:8f4c0c942512325c013f04e00a1f7fc2c4ea15077427a1c9dc19212f6d53fd70_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-cloud-controller-manager-rhel8@sha256:8f4c0c942512325c013f04e00a1f7fc2c4ea15077427a1c9dc19212f6d53fd70?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-cloud-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.gb8d2433.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:0594cd79a24dc448e1e5c2500590e04714828190e418f7b527a27f706b30038f_arm64", + "product": { + "name": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:0594cd79a24dc448e1e5c2500590e04714828190e418f7b527a27f706b30038f_arm64", + "product_id": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:0594cd79a24dc448e1e5c2500590e04714828190e418f7b527a27f706b30038f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-cloud-node-manager-rhel8@sha256:0594cd79a24dc448e1e5c2500590e04714828190e418f7b527a27f706b30038f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-cloud-node-manager-rhel8&tag=v4.13.0-202310162157.p0.gb8d2433.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:c2852a8d400227b7817d16ceacf43386915aafed056deaf5b9d252702994dd7c_arm64", + "product": { + "name": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:c2852a8d400227b7817d16ceacf43386915aafed056deaf5b9d252702994dd7c_arm64", + "product_id": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:c2852a8d400227b7817d16ceacf43386915aafed056deaf5b9d252702994dd7c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-cluster-api-controllers-rhel8@sha256:c2852a8d400227b7817d16ceacf43386915aafed056deaf5b9d252702994dd7c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-cluster-api-controllers-rhel8&tag=v4.13.0-202310162157.p0.g8846366.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:b429b013b81eace6fc156e26f69a5fc42d3c0361b4fdbd7acc1d9675f8cb8d99_arm64", + "product": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:b429b013b81eace6fc156e26f69a5fc42d3c0361b4fdbd7acc1d9675f8cb8d99_arm64", + "product_id": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:b429b013b81eace6fc156e26f69a5fc42d3c0361b4fdbd7acc1d9675f8cb8d99_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-disk-csi-driver-rhel8@sha256:b429b013b81eace6fc156e26f69a5fc42d3c0361b4fdbd7acc1d9675f8cb8d99?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.g89e21d6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:c84268d96d7a2bc99b043a3f64234c30e82e545e09c12f527365a5c342e6d4c4_arm64", + "product": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:c84268d96d7a2bc99b043a3f64234c30e82e545e09c12f527365a5c342e6d4c4_arm64", + "product_id": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:c84268d96d7a2bc99b043a3f64234c30e82e545e09c12f527365a5c342e6d4c4_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-disk-csi-driver-rhel8-operator@sha256:c84268d96d7a2bc99b043a3f64234c30e82e545e09c12f527365a5c342e6d4c4?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-disk-csi-driver-rhel8-operator&tag=v4.13.0-202310162157.p0.g842415a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:ca85ff8e568d0bfc264645fa3b00621643bc28a7a86a227d410e9b12233d0502_arm64", + "product": { + "name": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:ca85ff8e568d0bfc264645fa3b00621643bc28a7a86a227d410e9b12233d0502_arm64", + "product_id": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:ca85ff8e568d0bfc264645fa3b00621643bc28a7a86a227d410e9b12233d0502_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-file-csi-driver-rhel8@sha256:ca85ff8e568d0bfc264645fa3b00621643bc28a7a86a227d410e9b12233d0502?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.g60e0cb8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:bdce4bb5456665292fea6fe19723ea87bcd25eb9cc1b3de370b1df146868696f_arm64", + "product": { + "name": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:bdce4bb5456665292fea6fe19723ea87bcd25eb9cc1b3de370b1df146868696f_arm64", + "product_id": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:bdce4bb5456665292fea6fe19723ea87bcd25eb9cc1b3de370b1df146868696f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-azure-file-csi-driver-operator-rhel8@sha256:bdce4bb5456665292fea6fe19723ea87bcd25eb9cc1b3de370b1df146868696f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-azure-file-csi-driver-operator-rhel8&tag=v4.13.0-202310162157.p0.ga79311d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:f8cd4b3e935ff74a6f48e7938c0ba9ca272bd69a3b0f655c03c5a9263951196b_arm64", + "product": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:f8cd4b3e935ff74a6f48e7938c0ba9ca272bd69a3b0f655c03c5a9263951196b_arm64", + "product_id": "openshift4/ose-baremetal-installer-rhel8@sha256:f8cd4b3e935ff74a6f48e7938c0ba9ca272bd69a3b0f655c03c5a9263951196b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-installer-rhel8@sha256:f8cd4b3e935ff74a6f48e7938c0ba9ca272bd69a3b0f655c03c5a9263951196b?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-baremetal-installer-rhel8&tag=v4.13.0-202310162157.p0.g71282c9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:beef7193039b8f2e3e908241502c4b863260399039d19559c1a2c4381c291884_arm64", + "product": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:beef7193039b8f2e3e908241502c4b863260399039d19559c1a2c4381c291884_arm64", + "product_id": "openshift4/ose-baremetal-rhel8-operator@sha256:beef7193039b8f2e3e908241502c4b863260399039d19559c1a2c4381c291884_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-rhel8-operator@sha256:beef7193039b8f2e3e908241502c4b863260399039d19559c1a2c4381c291884?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-baremetal-rhel8-operator&tag=v4.13.0-202310162157.p0.g12e53b8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:c35325e766863da87ec778ad6c6f131ea47ff33e78a11ed49a19425057e6828a_arm64", + "product": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:c35325e766863da87ec778ad6c6f131ea47ff33e78a11ed49a19425057e6828a_arm64", + "product_id": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:c35325e766863da87ec778ad6c6f131ea47ff33e78a11ed49a19425057e6828a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-baremetal-runtimecfg-rhel8@sha256:c35325e766863da87ec778ad6c6f131ea47ff33e78a11ed49a19425057e6828a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-baremetal-runtimecfg-rhel8&tag=v4.13.0-202310162157.p0.g1bfd3bc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cli-artifacts@sha256:ded9013e6dc157068f91f9c40a266b1a579ce05a9263ca254afd2e69fa3c362f_arm64", + "product": { + "name": "openshift4/ose-cli-artifacts@sha256:ded9013e6dc157068f91f9c40a266b1a579ce05a9263ca254afd2e69fa3c362f_arm64", + "product_id": "openshift4/ose-cli-artifacts@sha256:ded9013e6dc157068f91f9c40a266b1a579ce05a9263ca254afd2e69fa3c362f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cli-artifacts@sha256:ded9013e6dc157068f91f9c40a266b1a579ce05a9263ca254afd2e69fa3c362f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cli-artifacts&tag=v4.13.0-202310162157.p0.g717d4a5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cloud-credential-operator@sha256:8a6d4ddad57c6a1d7eb7cd372a51a80de6b7769f2b1737aee2da8f65d79d619b_arm64", + "product": { + "name": "openshift4/ose-cloud-credential-operator@sha256:8a6d4ddad57c6a1d7eb7cd372a51a80de6b7769f2b1737aee2da8f65d79d619b_arm64", + "product_id": "openshift4/ose-cloud-credential-operator@sha256:8a6d4ddad57c6a1d7eb7cd372a51a80de6b7769f2b1737aee2da8f65d79d619b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cloud-credential-operator@sha256:8a6d4ddad57c6a1d7eb7cd372a51a80de6b7769f2b1737aee2da8f65d79d619b?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cloud-credential-operator&tag=v4.13.0-202310170703.p0.g0621fca.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:a020614c27920ad9880e10c0bc558389182f84e0b55cf144a42f947961b8f2af_arm64", + "product": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:a020614c27920ad9880e10c0bc558389182f84e0b55cf144a42f947961b8f2af_arm64", + "product_id": "openshift4/cloud-network-config-controller-rhel8@sha256:a020614c27920ad9880e10c0bc558389182f84e0b55cf144a42f947961b8f2af_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cloud-network-config-controller-rhel8@sha256:a020614c27920ad9880e10c0bc558389182f84e0b55cf144a42f947961b8f2af?arch=arm64&repository_url=registry.redhat.io/openshift4/cloud-network-config-controller-rhel8&tag=v4.13.0-202310162157.p0.g4f190d6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-api-rhel8@sha256:638afaea970f7445facc9ef9e916a2517d0df4d3bc4651519cd3fcc24b0f8d46_arm64", + "product": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:638afaea970f7445facc9ef9e916a2517d0df4d3bc4651519cd3fcc24b0f8d46_arm64", + "product_id": "openshift4/ose-cluster-api-rhel8@sha256:638afaea970f7445facc9ef9e916a2517d0df4d3bc4651519cd3fcc24b0f8d46_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-api-rhel8@sha256:638afaea970f7445facc9ef9e916a2517d0df4d3bc4651519cd3fcc24b0f8d46?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-api-rhel8&tag=v4.13.0-202310162157.p0.g507f873.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-authentication-operator@sha256:49790e22908f17302971a895160221505300b70274c0bfe31c3e6a316cd758bf_arm64", + "product": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:49790e22908f17302971a895160221505300b70274c0bfe31c3e6a316cd758bf_arm64", + "product_id": "openshift4/ose-cluster-authentication-operator@sha256:49790e22908f17302971a895160221505300b70274c0bfe31c3e6a316cd758bf_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-authentication-operator@sha256:49790e22908f17302971a895160221505300b70274c0bfe31c3e6a316cd758bf?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-authentication-operator&tag=v4.13.0-202310162157.p0.ga044dd9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:e6f286a7385d754b17182a093107b96745bb6a54119cdb1a82d0b372494cd2f6_arm64", + "product": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:e6f286a7385d754b17182a093107b96745bb6a54119cdb1a82d0b372494cd2f6_arm64", + "product_id": "openshift4/ose-cluster-autoscaler-operator@sha256:e6f286a7385d754b17182a093107b96745bb6a54119cdb1a82d0b372494cd2f6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-autoscaler-operator@sha256:e6f286a7385d754b17182a093107b96745bb6a54119cdb1a82d0b372494cd2f6?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-autoscaler-operator&tag=v4.13.0-202310162157.p0.g8531634.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:112040105eeccf56698dc9726e2e5236d1150e47b8a9d8c598b0efd1d59cffbb_arm64", + "product": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:112040105eeccf56698dc9726e2e5236d1150e47b8a9d8c598b0efd1d59cffbb_arm64", + "product_id": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:112040105eeccf56698dc9726e2e5236d1150e47b8a9d8c598b0efd1d59cffbb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-baremetal-operator-rhel8@sha256:112040105eeccf56698dc9726e2e5236d1150e47b8a9d8c598b0efd1d59cffbb?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-baremetal-operator-rhel8&tag=v4.13.0-202310162157.p0.g3d1da56.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-bootstrap@sha256:4c6c33c3c92c797dd6ca86dadb70fec4269aed7547a38036c7d73bf62326648c_arm64", + "product": { + "name": "openshift4/ose-cluster-bootstrap@sha256:4c6c33c3c92c797dd6ca86dadb70fec4269aed7547a38036c7d73bf62326648c_arm64", + "product_id": "openshift4/ose-cluster-bootstrap@sha256:4c6c33c3c92c797dd6ca86dadb70fec4269aed7547a38036c7d73bf62326648c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-bootstrap@sha256:4c6c33c3c92c797dd6ca86dadb70fec4269aed7547a38036c7d73bf62326648c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-bootstrap&tag=v4.13.0-202310162157.p0.gee908b6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:21c2dff143d8acf2a3689f1f213ff4b937cd6756952b94d1adb89ad254fcb6c9_arm64", + "product": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:21c2dff143d8acf2a3689f1f213ff4b937cd6756952b94d1adb89ad254fcb6c9_arm64", + "product_id": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:21c2dff143d8acf2a3689f1f213ff4b937cd6756952b94d1adb89ad254fcb6c9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-operator-container-rhel8@sha256:21c2dff143d8acf2a3689f1f213ff4b937cd6756952b94d1adb89ad254fcb6c9?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-operator-container-rhel8&tag=v4.13.0-202310162157.p0.gce1c9a3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:21c2dff143d8acf2a3689f1f213ff4b937cd6756952b94d1adb89ad254fcb6c9_arm64", + "product": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:21c2dff143d8acf2a3689f1f213ff4b937cd6756952b94d1adb89ad254fcb6c9_arm64", + "product_id": "openshift4/ose-cluster-capi-rhel8-operator@sha256:21c2dff143d8acf2a3689f1f213ff4b937cd6756952b94d1adb89ad254fcb6c9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-capi-rhel8-operator@sha256:21c2dff143d8acf2a3689f1f213ff4b937cd6756952b94d1adb89ad254fcb6c9?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-capi-rhel8-operator&tag=v4.13.0-202310162157.p0.gce1c9a3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:6bbf2134594bcd72018cb73c82bf10eb25f84b46b549b74403e736e092b2f462_arm64", + "product": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:6bbf2134594bcd72018cb73c82bf10eb25f84b46b549b74403e736e092b2f462_arm64", + "product_id": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:6bbf2134594bcd72018cb73c82bf10eb25f84b46b549b74403e736e092b2f462_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:6bbf2134594bcd72018cb73c82bf10eb25f84b46b549b74403e736e092b2f462?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-cloud-controller-manager-operator-rhel8&tag=v4.13.0-202310162157.p0.gef4594e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-config-operator@sha256:98e0dfdfa80dd5acc1231b68e07c64bd51c9f5275b5dc9bb1095c34d89bb2aee_arm64", + "product": { + "name": "openshift4/ose-cluster-config-operator@sha256:98e0dfdfa80dd5acc1231b68e07c64bd51c9f5275b5dc9bb1095c34d89bb2aee_arm64", + "product_id": "openshift4/ose-cluster-config-operator@sha256:98e0dfdfa80dd5acc1231b68e07c64bd51c9f5275b5dc9bb1095c34d89bb2aee_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-config-operator@sha256:98e0dfdfa80dd5acc1231b68e07c64bd51c9f5275b5dc9bb1095c34d89bb2aee?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-config-operator&tag=v4.13.0-202310162157.p0.ga9e658a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:435fe4cd5bea13097af172fbdca16d043205831fe8d75278b7133e0f0bd47ef3_arm64", + "product": { + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:435fe4cd5bea13097af172fbdca16d043205831fe8d75278b7133e0f0bd47ef3_arm64", + "product_id": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:435fe4cd5bea13097af172fbdca16d043205831fe8d75278b7133e0f0bd47ef3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:435fe4cd5bea13097af172fbdca16d043205831fe8d75278b7133e0f0bd47ef3?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-control-plane-machine-set-operator-rhel8&tag=v4.13.0-202310162157.p0.g383a69c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:e75cbaa1be6bd19d2f28216046fbbf52046977276657a1624d3d203ae3bd60a3_arm64", + "product": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:e75cbaa1be6bd19d2f28216046fbbf52046977276657a1624d3d203ae3bd60a3_arm64", + "product_id": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:e75cbaa1be6bd19d2f28216046fbbf52046977276657a1624d3d203ae3bd60a3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:e75cbaa1be6bd19d2f28216046fbbf52046977276657a1624d3d203ae3bd60a3?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator&tag=v4.13.0-202310162157.p0.g97b486c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-dns-operator@sha256:fa4354560a7001b84fbfe12eb310c0fcd934750c39177a9012e975cc5ff14f1d_arm64", + "product": { + "name": "openshift4/ose-cluster-dns-operator@sha256:fa4354560a7001b84fbfe12eb310c0fcd934750c39177a9012e975cc5ff14f1d_arm64", + "product_id": "openshift4/ose-cluster-dns-operator@sha256:fa4354560a7001b84fbfe12eb310c0fcd934750c39177a9012e975cc5ff14f1d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-dns-operator@sha256:fa4354560a7001b84fbfe12eb310c0fcd934750c39177a9012e975cc5ff14f1d?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-dns-operator&tag=v4.13.0-202310162157.p0.gc6768d4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-image-registry-operator@sha256:54cf29edb9fc36d5ee62034bb68a33a0e9852058a6d258743a491a4c17e87b65_arm64", + "product": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:54cf29edb9fc36d5ee62034bb68a33a0e9852058a6d258743a491a4c17e87b65_arm64", + "product_id": "openshift4/ose-cluster-image-registry-operator@sha256:54cf29edb9fc36d5ee62034bb68a33a0e9852058a6d258743a491a4c17e87b65_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-image-registry-operator@sha256:54cf29edb9fc36d5ee62034bb68a33a0e9852058a6d258743a491a4c17e87b65?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-image-registry-operator&tag=v4.13.0-202310162157.p0.g3ed61e2.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-ingress-operator@sha256:bd755c7e3ffeebb7c37f5b122ef645141100a1b0fd0203eb8480504893293de2_arm64", + "product": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:bd755c7e3ffeebb7c37f5b122ef645141100a1b0fd0203eb8480504893293de2_arm64", + "product_id": "openshift4/ose-cluster-ingress-operator@sha256:bd755c7e3ffeebb7c37f5b122ef645141100a1b0fd0203eb8480504893293de2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-ingress-operator@sha256:bd755c7e3ffeebb7c37f5b122ef645141100a1b0fd0203eb8480504893293de2?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-ingress-operator&tag=v4.13.0-202310162157.p0.g2ecad04.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:f28becbd042cddc1e6b7720b4d3a6b31999435b18309e0c10fb3593015b7f3ff_arm64", + "product": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:f28becbd042cddc1e6b7720b4d3a6b31999435b18309e0c10fb3593015b7f3ff_arm64", + "product_id": "openshift4/ose-cluster-kube-apiserver-operator@sha256:f28becbd042cddc1e6b7720b4d3a6b31999435b18309e0c10fb3593015b7f3ff_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-apiserver-operator@sha256:f28becbd042cddc1e6b7720b4d3a6b31999435b18309e0c10fb3593015b7f3ff?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-apiserver-operator&tag=v4.13.0-202310162157.p0.gd525f5d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b60b2d4912dd843ab77009b4a34bb23ffd531bbde7b2e25aa94fe9e7ff616a4d_arm64", + "product": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b60b2d4912dd843ab77009b4a34bb23ffd531bbde7b2e25aa94fe9e7ff616a4d_arm64", + "product_id": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b60b2d4912dd843ab77009b4a34bb23ffd531bbde7b2e25aa94fe9e7ff616a4d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b60b2d4912dd843ab77009b4a34bb23ffd531bbde7b2e25aa94fe9e7ff616a4d?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-cluster-api-rhel8-operator&tag=v4.13.0-202310162157.p0.g8d627a5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:b2107515c36330ef4010632eb7769fb362939d3e13a2e13ae58afbb0f8dbb89e_arm64", + "product": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:b2107515c36330ef4010632eb7769fb362939d3e13a2e13ae58afbb0f8dbb89e_arm64", + "product_id": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:b2107515c36330ef4010632eb7769fb362939d3e13a2e13ae58afbb0f8dbb89e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-controller-manager-operator@sha256:b2107515c36330ef4010632eb7769fb362939d3e13a2e13ae58afbb0f8dbb89e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-controller-manager-operator&tag=v4.13.0-202310162157.p0.gcc6a314.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:aa72cbdf3d3f2551663b9d2cb5e1244a92e2fc03e4285849f9fd84cbc7f20386_arm64", + "product": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:aa72cbdf3d3f2551663b9d2cb5e1244a92e2fc03e4285849f9fd84cbc7f20386_arm64", + "product_id": "openshift4/ose-cluster-kube-scheduler-operator@sha256:aa72cbdf3d3f2551663b9d2cb5e1244a92e2fc03e4285849f9fd84cbc7f20386_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-scheduler-operator@sha256:aa72cbdf3d3f2551663b9d2cb5e1244a92e2fc03e4285849f9fd84cbc7f20386?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-scheduler-operator&tag=v4.13.0-202310162157.p0.gb4c50a4.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:f96d028eaafc20f8d99d6665758eb7b2fe061f35e94281f9259c50e5026b4a7b_arm64", + "product": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:f96d028eaafc20f8d99d6665758eb7b2fe061f35e94281f9259c50e5026b4a7b_arm64", + "product_id": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:f96d028eaafc20f8d99d6665758eb7b2fe061f35e94281f9259c50e5026b4a7b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:f96d028eaafc20f8d99d6665758eb7b2fe061f35e94281f9259c50e5026b4a7b?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator&tag=v4.13.0-202310162157.p0.g9f47598.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-machine-approver@sha256:c3f706e9a355640d2ce739c1d806c7e583cd9ab0af24ffb833101f69f5edbcfa_arm64", + "product": { + "name": "openshift4/ose-cluster-machine-approver@sha256:c3f706e9a355640d2ce739c1d806c7e583cd9ab0af24ffb833101f69f5edbcfa_arm64", + "product_id": "openshift4/ose-cluster-machine-approver@sha256:c3f706e9a355640d2ce739c1d806c7e583cd9ab0af24ffb833101f69f5edbcfa_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-machine-approver@sha256:c3f706e9a355640d2ce739c1d806c7e583cd9ab0af24ffb833101f69f5edbcfa?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-machine-approver&tag=v4.13.0-202310162157.p0.gce66cd5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:22f6ad573a79f6f5753035c4d051b49610114294debc0dbde6cd19137965906a_arm64", + "product": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:22f6ad573a79f6f5753035c4d051b49610114294debc0dbde6cd19137965906a_arm64", + "product_id": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:22f6ad573a79f6f5753035c4d051b49610114294debc0dbde6cd19137965906a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-apiserver-operator@sha256:22f6ad573a79f6f5753035c4d051b49610114294debc0dbde6cd19137965906a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-apiserver-operator&tag=v4.13.0-202310162157.p0.gea4f097.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ddc07cce7824fdc307217a3c9dc089d06f31f2fb3200ddd9ba32f98680861380_arm64", + "product": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ddc07cce7824fdc307217a3c9dc089d06f31f2fb3200ddd9ba32f98680861380_arm64", + "product_id": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ddc07cce7824fdc307217a3c9dc089d06f31f2fb3200ddd9ba32f98680861380_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-openshift-controller-manager-operator@sha256:ddc07cce7824fdc307217a3c9dc089d06f31f2fb3200ddd9ba32f98680861380?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-openshift-controller-manager-operator&tag=v4.13.0-202310162157.p0.g9a8aba8.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:3185baa719237b4e0b10c839d4b6834b069d6279012e5264c81b2689fd8b48de_arm64", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:3185baa719237b4e0b10c839d4b6834b069d6279012e5264c81b2689fd8b48de_arm64", + "product_id": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:3185baa719237b4e0b10c839d4b6834b069d6279012e5264c81b2689fd8b48de_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8-operator@sha256:3185baa719237b4e0b10c839d4b6834b069d6279012e5264c81b2689fd8b48de?arch=arm64&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8-operator&tag=v4.13.0-202310162157.p0.gaca579d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:686fa7af33c3f044398207f90d881c5bd2e388f20751cdb1a986345f53b92b57_arm64", + "product": { + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:686fa7af33c3f044398207f90d881c5bd2e388f20751cdb1a986345f53b92b57_arm64", + "product_id": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:686fa7af33c3f044398207f90d881c5bd2e388f20751cdb1a986345f53b92b57_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-platform-operators-manager-rhel8@sha256:686fa7af33c3f044398207f90d881c5bd2e388f20751cdb1a986345f53b92b57?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-platform-operators-manager-rhel8&tag=v4.13.0-202310170326.p0.g471a806.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:afd4242578c2148463a99daca7b22ff540adb3eaec754279da791d681be72e42_arm64", + "product": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:afd4242578c2148463a99daca7b22ff540adb3eaec754279da791d681be72e42_arm64", + "product_id": "openshift4/ose-cluster-policy-controller-rhel8@sha256:afd4242578c2148463a99daca7b22ff540adb3eaec754279da791d681be72e42_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-policy-controller-rhel8@sha256:afd4242578c2148463a99daca7b22ff540adb3eaec754279da791d681be72e42?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-policy-controller-rhel8&tag=v4.13.0-202310162157.p0.g8d2af85.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-samples-operator@sha256:53a2f0582f5c83a0209e34de59ae93cd181cfade32d69ce38e2a329bbea8d566_arm64", + "product": { + "name": "openshift4/ose-cluster-samples-operator@sha256:53a2f0582f5c83a0209e34de59ae93cd181cfade32d69ce38e2a329bbea8d566_arm64", + "product_id": "openshift4/ose-cluster-samples-operator@sha256:53a2f0582f5c83a0209e34de59ae93cd181cfade32d69ce38e2a329bbea8d566_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-samples-operator@sha256:53a2f0582f5c83a0209e34de59ae93cd181cfade32d69ce38e2a329bbea8d566?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-samples-operator&tag=v4.13.0-202310162157.p0.gf785bad.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-cluster-storage-operator@sha256:a90180731c4378bee6aa37b516384b6dc0eb49fc79b53573335b8398db924276_arm64", + "product": { + "name": "openshift4/ose-cluster-storage-operator@sha256:a90180731c4378bee6aa37b516384b6dc0eb49fc79b53573335b8398db924276_arm64", + "product_id": "openshift4/ose-cluster-storage-operator@sha256:a90180731c4378bee6aa37b516384b6dc0eb49fc79b53573335b8398db924276_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-cluster-storage-operator@sha256:a90180731c4378bee6aa37b516384b6dc0eb49fc79b53573335b8398db924276?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-cluster-storage-operator&tag=v4.13.0-202310162157.p0.g6769015.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:707add7d50beb4acfc4a20f7e50b4bb0293fc0933080ab7a377f7117722826fb_arm64", + "product": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:707add7d50beb4acfc4a20f7e50b4bb0293fc0933080ab7a377f7117722826fb_arm64", + "product_id": "openshift4/ose-container-networking-plugins-rhel8@sha256:707add7d50beb4acfc4a20f7e50b4bb0293fc0933080ab7a377f7117722826fb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-container-networking-plugins-rhel8@sha256:707add7d50beb4acfc4a20f7e50b4bb0293fc0933080ab7a377f7117722826fb?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-container-networking-plugins-rhel8&tag=v4.13.0-202310162157.p0.gdbf24de.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:fe9069025728092dec4f905f2ec524015ae7442a32a18f37109cebfd305f08b9_arm64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:fe9069025728092dec4f905f2ec524015ae7442a32a18f37109cebfd305f08b9_arm64", + "product_id": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:fe9069025728092dec4f905f2ec524015ae7442a32a18f37109cebfd305f08b9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-rhel8@sha256:fe9069025728092dec4f905f2ec524015ae7442a32a18f37109cebfd305f08b9?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-rhel8&tag=v4.13.0-202310162157.p0.gf797d45.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:57c6120b1def06be6d64030bbc7c63afc9db12a975885329d0f5967aea03554a_arm64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:57c6120b1def06be6d64030bbc7c63afc9db12a975885329d0f5967aea03554a_arm64", + "product_id": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:57c6120b1def06be6d64030bbc7c63afc9db12a975885329d0f5967aea03554a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-operator-rhel8@sha256:57c6120b1def06be6d64030bbc7c63afc9db12a975885329d0f5967aea03554a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-operator-rhel8&tag=v4.13.0-202310162157.p0.g318c84a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:96d19a21ad73a19a0b965ef6543c534e146dda286fe8c1618e0fb4b1e383b13e_arm64", + "product": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:96d19a21ad73a19a0b965ef6543c534e146dda286fe8c1618e0fb4b1e383b13e_arm64", + "product_id": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:96d19a21ad73a19a0b965ef6543c534e146dda286fe8c1618e0fb4b1e383b13e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-driver-shared-resource-webhook-rhel8@sha256:96d19a21ad73a19a0b965ef6543c534e146dda286fe8c1618e0fb4b1e383b13e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-driver-shared-resource-webhook-rhel8&tag=v4.13.0-202310162157.p0.gf797d45.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:39197437c329800697824d7d88ca3d659c9034e50d4fc00eb60363b4bae36fec_arm64", + "product": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:39197437c329800697824d7d88ca3d659c9034e50d4fc00eb60363b4bae36fec_arm64", + "product_id": "openshift4/ose-csi-external-resizer-rhel8@sha256:39197437c329800697824d7d88ca3d659c9034e50d4fc00eb60363b4bae36fec_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer-rhel8@sha256:39197437c329800697824d7d88ca3d659c9034e50d4fc00eb60363b4bae36fec?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer-rhel8&tag=v4.13.0-202310162157.p0.g974ac36.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-resizer@sha256:39197437c329800697824d7d88ca3d659c9034e50d4fc00eb60363b4bae36fec_arm64", + "product": { + "name": "openshift4/ose-csi-external-resizer@sha256:39197437c329800697824d7d88ca3d659c9034e50d4fc00eb60363b4bae36fec_arm64", + "product_id": "openshift4/ose-csi-external-resizer@sha256:39197437c329800697824d7d88ca3d659c9034e50d4fc00eb60363b4bae36fec_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-resizer@sha256:39197437c329800697824d7d88ca3d659c9034e50d4fc00eb60363b4bae36fec?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-resizer&tag=v4.13.0-202310162157.p0.g974ac36.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:dac8dfea9879fd973477c2ec2698bd5a6e9b5ac2410a87727b3dd0f9cf264b8e_arm64", + "product": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:dac8dfea9879fd973477c2ec2698bd5a6e9b5ac2410a87727b3dd0f9cf264b8e_arm64", + "product_id": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:dac8dfea9879fd973477c2ec2698bd5a6e9b5ac2410a87727b3dd0f9cf264b8e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter-rhel8@sha256:dac8dfea9879fd973477c2ec2698bd5a6e9b5ac2410a87727b3dd0f9cf264b8e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter-rhel8&tag=v4.13.0-202310162157.p0.g3f52ee7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-external-snapshotter@sha256:dac8dfea9879fd973477c2ec2698bd5a6e9b5ac2410a87727b3dd0f9cf264b8e_arm64", + "product": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:dac8dfea9879fd973477c2ec2698bd5a6e9b5ac2410a87727b3dd0f9cf264b8e_arm64", + "product_id": "openshift4/ose-csi-external-snapshotter@sha256:dac8dfea9879fd973477c2ec2698bd5a6e9b5ac2410a87727b3dd0f9cf264b8e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-external-snapshotter@sha256:dac8dfea9879fd973477c2ec2698bd5a6e9b5ac2410a87727b3dd0f9cf264b8e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-external-snapshotter&tag=v4.13.0-202310162157.p0.g3f52ee7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:b9777398ee7f6f56697d6e492209f9dd80e4321f1a3b625fda334e309dbe47d7_arm64", + "product": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:b9777398ee7f6f56697d6e492209f9dd80e4321f1a3b625fda334e309dbe47d7_arm64", + "product_id": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:b9777398ee7f6f56697d6e492209f9dd80e4321f1a3b625fda334e309dbe47d7_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller-rhel8@sha256:b9777398ee7f6f56697d6e492209f9dd80e4321f1a3b625fda334e309dbe47d7?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller-rhel8&tag=v4.13.0-202310162157.p0.g3f52ee7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-controller@sha256:b9777398ee7f6f56697d6e492209f9dd80e4321f1a3b625fda334e309dbe47d7_arm64", + "product": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:b9777398ee7f6f56697d6e492209f9dd80e4321f1a3b625fda334e309dbe47d7_arm64", + "product_id": "openshift4/ose-csi-snapshot-controller@sha256:b9777398ee7f6f56697d6e492209f9dd80e4321f1a3b625fda334e309dbe47d7_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-controller@sha256:b9777398ee7f6f56697d6e492209f9dd80e4321f1a3b625fda334e309dbe47d7?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-controller&tag=v4.13.0-202310162157.p0.g3f52ee7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:a6d34452cac272e45e8d3fd6d78a9e40e5df467cf647c477bc637ea81e30462b_arm64", + "product": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:a6d34452cac272e45e8d3fd6d78a9e40e5df467cf647c477bc637ea81e30462b_arm64", + "product_id": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:a6d34452cac272e45e8d3fd6d78a9e40e5df467cf647c477bc637ea81e30462b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-csi-snapshot-validation-webhook-rhel8@sha256:a6d34452cac272e45e8d3fd6d78a9e40e5df467cf647c477bc637ea81e30462b?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-csi-snapshot-validation-webhook-rhel8&tag=v4.13.0-202310162157.p0.g3f52ee7.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/egress-router-cni-rhel8@sha256:420b337875b50415a090ccfc4c040e9cc85f20ef517edd6f6ebbd26db52287eb_arm64", + "product": { + "name": "openshift4/egress-router-cni-rhel8@sha256:420b337875b50415a090ccfc4c040e9cc85f20ef517edd6f6ebbd26db52287eb_arm64", + "product_id": "openshift4/egress-router-cni-rhel8@sha256:420b337875b50415a090ccfc4c040e9cc85f20ef517edd6f6ebbd26db52287eb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/egress-router-cni-rhel8@sha256:420b337875b50415a090ccfc4c040e9cc85f20ef517edd6f6ebbd26db52287eb?arch=arm64&repository_url=registry.redhat.io/openshift4/egress-router-cni-rhel8&tag=v4.13.0-202310162157.p0.g756e384.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-etcd-rhel9@sha256:117a28fc3dff84e4183d898c1d1b5e59b15036f25d6ecfee824b1f0fa5f8b07e_arm64", + "product": { + "name": "openshift4/ose-etcd-rhel9@sha256:117a28fc3dff84e4183d898c1d1b5e59b15036f25d6ecfee824b1f0fa5f8b07e_arm64", + "product_id": "openshift4/ose-etcd-rhel9@sha256:117a28fc3dff84e4183d898c1d1b5e59b15036f25d6ecfee824b1f0fa5f8b07e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-etcd-rhel9@sha256:117a28fc3dff84e4183d898c1d1b5e59b15036f25d6ecfee824b1f0fa5f8b07e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-etcd-rhel9&tag=v4.13.0-202310162157.p0.g7efbc01.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:b9d740ac001db9e7b6d209c3d3494c1dcf1d77595283d54a7291fe4c9fc43da2_arm64", + "product": { + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:b9d740ac001db9e7b6d209c3d3494c1dcf1d77595283d54a7291fe4c9fc43da2_arm64", + "product_id": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:b9d740ac001db9e7b6d209c3d3494c1dcf1d77595283d54a7291fe4c9fc43da2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-cloud-controller-manager-rhel8@sha256:b9d740ac001db9e7b6d209c3d3494c1dcf1d77595283d54a7291fe4c9fc43da2?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-gcp-cloud-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.gefaf4dc.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:b1a75b2f4b8b96a20a8c39dbbd254cfc8617300aebf16ca25fc66f2036c5bfff_arm64", + "product": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:b1a75b2f4b8b96a20a8c39dbbd254cfc8617300aebf16ca25fc66f2036c5bfff_arm64", + "product_id": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:b1a75b2f4b8b96a20a8c39dbbd254cfc8617300aebf16ca25fc66f2036c5bfff_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-cluster-api-controllers-rhel8@sha256:b1a75b2f4b8b96a20a8c39dbbd254cfc8617300aebf16ca25fc66f2036c5bfff?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-gcp-cluster-api-controllers-rhel8&tag=v4.13.0-202310162157.p0.geaeccca.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:8d9ab23b111f23ab81c64a9dddac027939f321ae24a9fd9b11aac7eebb72572c_arm64", + "product": { + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:8d9ab23b111f23ab81c64a9dddac027939f321ae24a9fd9b11aac7eebb72572c_arm64", + "product_id": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:8d9ab23b111f23ab81c64a9dddac027939f321ae24a9fd9b11aac7eebb72572c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-pd-csi-driver-rhel8@sha256:8d9ab23b111f23ab81c64a9dddac027939f321ae24a9fd9b11aac7eebb72572c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.gc30195c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:9b82f49d4bfd3469701dff127112f17cc322781654ea2d9cf9a7d9b3bdb86fda_arm64", + "product": { + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:9b82f49d4bfd3469701dff127112f17cc322781654ea2d9cf9a7d9b3bdb86fda_arm64", + "product_id": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:9b82f49d4bfd3469701dff127112f17cc322781654ea2d9cf9a7d9b3bdb86fda_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-gcp-pd-csi-driver-operator-rhel8@sha256:9b82f49d4bfd3469701dff127112f17cc322781654ea2d9cf9a7d9b3bdb86fda?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-gcp-pd-csi-driver-operator-rhel8&tag=v4.13.0-202310162157.p0.g6534fed.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-hypershift-rhel8@sha256:f611575364152a61764176c1e1cb903d84bf1b8b9f53fc4dcaedc772292992c4_arm64", + "product": { + "name": "openshift4/ose-hypershift-rhel8@sha256:f611575364152a61764176c1e1cb903d84bf1b8b9f53fc4dcaedc772292992c4_arm64", + "product_id": "openshift4/ose-hypershift-rhel8@sha256:f611575364152a61764176c1e1cb903d84bf1b8b9f53fc4dcaedc772292992c4_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-hypershift-rhel8@sha256:f611575364152a61764176c1e1cb903d84bf1b8b9f53fc4dcaedc772292992c4?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-hypershift-rhel8&tag=v4.13.0-202310162157.p0.g2c52769.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-image-customization-controller-rhel8@sha256:85d570722128db222dba2154273f840f0da2d4ab9591a73fb3cca6b88b5334ca_arm64", + "product": { + "name": "openshift4/ose-image-customization-controller-rhel8@sha256:85d570722128db222dba2154273f840f0da2d4ab9591a73fb3cca6b88b5334ca_arm64", + "product_id": "openshift4/ose-image-customization-controller-rhel8@sha256:85d570722128db222dba2154273f840f0da2d4ab9591a73fb3cca6b88b5334ca_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-image-customization-controller-rhel8@sha256:85d570722128db222dba2154273f840f0da2d4ab9591a73fb3cca6b88b5334ca?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-image-customization-controller-rhel8&tag=v4.13.0-202310162157.p0.g0f4119d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-insights-rhel8-operator@sha256:17c9277696b9b2f3ae7d0d2be78e11132228a90650ff59563d31316c18df368f_arm64", + "product": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:17c9277696b9b2f3ae7d0d2be78e11132228a90650ff59563d31316c18df368f_arm64", + "product_id": "openshift4/ose-insights-rhel8-operator@sha256:17c9277696b9b2f3ae7d0d2be78e11132228a90650ff59563d31316c18df368f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-insights-rhel8-operator@sha256:17c9277696b9b2f3ae7d0d2be78e11132228a90650ff59563d31316c18df368f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-insights-rhel8-operator&tag=v4.13.0-202310162157.p0.gba18a08.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer-artifacts@sha256:f7a11196682d52aa4b27399f10937a5151aafc5a4e1f5a060cc77e8d21f87e8f_arm64", + "product": { + "name": "openshift4/ose-installer-artifacts@sha256:f7a11196682d52aa4b27399f10937a5151aafc5a4e1f5a060cc77e8d21f87e8f_arm64", + "product_id": "openshift4/ose-installer-artifacts@sha256:f7a11196682d52aa4b27399f10937a5151aafc5a4e1f5a060cc77e8d21f87e8f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer-artifacts@sha256:f7a11196682d52aa4b27399f10937a5151aafc5a4e1f5a060cc77e8d21f87e8f?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-installer-artifacts&tag=v4.13.0-202310170703.p0.g71282c9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-installer@sha256:3f9a5ceddbcac909679ae2f80ea7d0dfcda4038049a6b167cde48d817572d3cd_arm64", + "product": { + "name": "openshift4/ose-installer@sha256:3f9a5ceddbcac909679ae2f80ea7d0dfcda4038049a6b167cde48d817572d3cd_arm64", + "product_id": "openshift4/ose-installer@sha256:3f9a5ceddbcac909679ae2f80ea7d0dfcda4038049a6b167cde48d817572d3cd_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-installer@sha256:3f9a5ceddbcac909679ae2f80ea7d0dfcda4038049a6b167cde48d817572d3cd?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-installer&tag=v4.13.0-202310162157.p0.g71282c9.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:a26a6277132d7a0cd6536f724be37aed52032657e7f30b9f1b8d65690d997fc9_arm64", + "product": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:a26a6277132d7a0cd6536f724be37aed52032657e7f30b9f1b8d65690d997fc9_arm64", + "product_id": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:a26a6277132d7a0cd6536f724be37aed52032657e7f30b9f1b8d65690d997fc9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kube-storage-version-migrator-rhel8@sha256:a26a6277132d7a0cd6536f724be37aed52032657e7f30b9f1b8d65690d997fc9?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-kube-storage-version-migrator-rhel8&tag=v4.13.0-202310162157.p0.gbad104d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:d1aa4fa2ee846a453ddcae553e0488470cc845b3c53fc2cf659db7b404a72670_arm64", + "product": { + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:d1aa4fa2ee846a453ddcae553e0488470cc845b3c53fc2cf659db7b404a72670_arm64", + "product_id": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:d1aa4fa2ee846a453ddcae553e0488470cc845b3c53fc2cf659db7b404a72670_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-kubevirt-cloud-controller-manager-rhel8@sha256:d1aa4fa2ee846a453ddcae553e0488470cc845b3c53fc2cf659db7b404a72670?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-kubevirt-cloud-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.gee2033e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:9164a7c997831df4292d6d31be1b69f08f78d7c9133caec5adf10265386329a2_arm64", + "product": { + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:9164a7c997831df4292d6d31be1b69f08f78d7c9133caec5adf10265386329a2_arm64", + "product_id": "openshift4/kubevirt-csi-driver-rhel8@sha256:9164a7c997831df4292d6d31be1b69f08f78d7c9133caec5adf10265386329a2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kubevirt-csi-driver-rhel8@sha256:9164a7c997831df4292d6d31be1b69f08f78d7c9133caec5adf10265386329a2?arch=arm64&repository_url=registry.redhat.io/openshift4/kubevirt-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.gefa0b94.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-libvirt-machine-controllers@sha256:07dbc62bba5868c989320290fae2cd107d3bff87eae10e6e38741e9e834335e9_arm64", + "product": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:07dbc62bba5868c989320290fae2cd107d3bff87eae10e6e38741e9e834335e9_arm64", + "product_id": "openshift4/ose-libvirt-machine-controllers@sha256:07dbc62bba5868c989320290fae2cd107d3bff87eae10e6e38741e9e834335e9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-libvirt-machine-controllers@sha256:07dbc62bba5868c989320290fae2cd107d3bff87eae10e6e38741e9e834335e9?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-libvirt-machine-controllers&tag=v4.13.0-202310162157.p0.gd4b7a8a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-operator@sha256:30b0d4e46d49461e1e29f0e514dbc2b644650de79941a1bf274da59a33ff5ef4_arm64", + "product": { + "name": "openshift4/ose-machine-api-operator@sha256:30b0d4e46d49461e1e29f0e514dbc2b644650de79941a1bf274da59a33ff5ef4_arm64", + "product_id": "openshift4/ose-machine-api-operator@sha256:30b0d4e46d49461e1e29f0e514dbc2b644650de79941a1bf274da59a33ff5ef4_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-operator@sha256:30b0d4e46d49461e1e29f0e514dbc2b644650de79941a1bf274da59a33ff5ef4?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-api-operator&tag=v4.13.0-202310162157.p0.g370fdaa.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:2c25f133c08d668210d9fa2cbad5f2f002efdde25c65894f0ee70cfe9a698cd0_arm64", + "product": { + "name": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:2c25f133c08d668210d9fa2cbad5f2f002efdde25c65894f0ee70cfe9a698cd0_arm64", + "product_id": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:2c25f133c08d668210d9fa2cbad5f2f002efdde25c65894f0ee70cfe9a698cd0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-aws-rhel8@sha256:2c25f133c08d668210d9fa2cbad5f2f002efdde25c65894f0ee70cfe9a698cd0?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-aws-rhel8&tag=v4.13.0-202310162157.p0.gba3b3a3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:1cd22fbd130eb41a462452b7ce102eab91d8ec8d929599082ae099a2915767d7_arm64", + "product": { + "name": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:1cd22fbd130eb41a462452b7ce102eab91d8ec8d929599082ae099a2915767d7_arm64", + "product_id": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:1cd22fbd130eb41a462452b7ce102eab91d8ec8d929599082ae099a2915767d7_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-azure-rhel8@sha256:1cd22fbd130eb41a462452b7ce102eab91d8ec8d929599082ae099a2915767d7?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-azure-rhel8&tag=v4.13.0-202310162157.p0.g2c0c0ec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:2fe0564efb1344b8eb067d1d75a19a4a5de0df7735baba100e689c2ec38b175a_arm64", + "product": { + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:2fe0564efb1344b8eb067d1d75a19a4a5de0df7735baba100e689c2ec38b175a_arm64", + "product_id": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:2fe0564efb1344b8eb067d1d75a19a4a5de0df7735baba100e689c2ec38b175a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-gcp-rhel8@sha256:2fe0564efb1344b8eb067d1d75a19a4a5de0df7735baba100e689c2ec38b175a?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-gcp-rhel8&tag=v4.13.0-202310162157.p0.g38ddff0.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:c303d144fd8059b2a1da3c4b1e98674b7e315a099c572f3d5f4ded7893c693e5_arm64", + "product": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:c303d144fd8059b2a1da3c4b1e98674b7e315a099c572f3d5f4ded7893c693e5_arm64", + "product_id": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:c303d144fd8059b2a1da3c4b1e98674b7e315a099c572f3d5f4ded7893c693e5_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-api-provider-openstack-rhel8@sha256:c303d144fd8059b2a1da3c4b1e98674b7e315a099c572f3d5f4ded7893c693e5?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-api-provider-openstack-rhel8&tag=v4.13.0-202310162157.p0.g7bce9d6.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-config-operator@sha256:3dd0b8b606d3e72151b2b378b89a0c30bc345c53cd8169fd77b3060ea29762fa_arm64", + "product": { + "name": "openshift4/ose-machine-config-operator@sha256:3dd0b8b606d3e72151b2b378b89a0c30bc345c53cd8169fd77b3060ea29762fa_arm64", + "product_id": "openshift4/ose-machine-config-operator@sha256:3dd0b8b606d3e72151b2b378b89a0c30bc345c53cd8169fd77b3060ea29762fa_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-config-operator@sha256:3dd0b8b606d3e72151b2b378b89a0c30bc345c53cd8169fd77b3060ea29762fa?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-config-operator&tag=v4.13.0-202310162157.p0.g1c52dd1.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-machine-os-images-rhel8@sha256:e0e39d6672994d66c187c7e3352a21ac04f3b4e1c7e91d4b364999896aa4a81e_arm64", + "product": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:e0e39d6672994d66c187c7e3352a21ac04f3b4e1c7e91d4b364999896aa4a81e_arm64", + "product_id": "openshift4/ose-machine-os-images-rhel8@sha256:e0e39d6672994d66c187c7e3352a21ac04f3b4e1c7e91d4b364999896aa4a81e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-machine-os-images-rhel8@sha256:e0e39d6672994d66c187c7e3352a21ac04f3b4e1c7e91d4b364999896aa4a81e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-machine-os-images-rhel8&tag=v4.13.0-202310162157.p0.gb14856f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-admission-controller@sha256:6af823c2a6a84bdaa54ae00e161ff174ebb0dabf46e5aa202b5fbced7911fc0e_arm64", + "product": { + "name": "openshift4/ose-multus-admission-controller@sha256:6af823c2a6a84bdaa54ae00e161ff174ebb0dabf46e5aa202b5fbced7911fc0e_arm64", + "product_id": "openshift4/ose-multus-admission-controller@sha256:6af823c2a6a84bdaa54ae00e161ff174ebb0dabf46e5aa202b5fbced7911fc0e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-admission-controller@sha256:6af823c2a6a84bdaa54ae00e161ff174ebb0dabf46e5aa202b5fbced7911fc0e?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-multus-admission-controller&tag=v4.13.0-202310162157.p0.gf76d674.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:9e151f1ce48f2e5b1ef7caeff556d487707417f86fa820e0c0c99bfff80cfb62_arm64", + "product": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:9e151f1ce48f2e5b1ef7caeff556d487707417f86fa820e0c0c99bfff80cfb62_arm64", + "product_id": "openshift4/ose-multus-networkpolicy-rhel8@sha256:9e151f1ce48f2e5b1ef7caeff556d487707417f86fa820e0c0c99bfff80cfb62_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-networkpolicy-rhel8@sha256:9e151f1ce48f2e5b1ef7caeff556d487707417f86fa820e0c0c99bfff80cfb62?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-multus-networkpolicy-rhel8&tag=v4.13.0-202310162157.p0.g7b99c19.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:8bec662ad3c6bd298ae1c9d0223dcbd0b41146956a866d1b13ef9187f5efdd05_arm64", + "product": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:8bec662ad3c6bd298ae1c9d0223dcbd0b41146956a866d1b13ef9187f5efdd05_arm64", + "product_id": "openshift4/ose-multus-route-override-cni-rhel8@sha256:8bec662ad3c6bd298ae1c9d0223dcbd0b41146956a866d1b13ef9187f5efdd05_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-route-override-cni-rhel8@sha256:8bec662ad3c6bd298ae1c9d0223dcbd0b41146956a866d1b13ef9187f5efdd05?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-multus-route-override-cni-rhel8&tag=v4.13.0-202310162157.p0.gca3bbec.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:3eb79ca0574a2141229f2f54ede83f3a3aab825104faf0384830a48566276383_arm64", + "product": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:3eb79ca0574a2141229f2f54ede83f3a3aab825104faf0384830a48566276383_arm64", + "product_id": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:3eb79ca0574a2141229f2f54ede83f3a3aab825104faf0384830a48566276383_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-multus-whereabouts-ipam-cni-rhel8@sha256:3eb79ca0574a2141229f2f54ede83f3a3aab825104faf0384830a48566276383?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-multus-whereabouts-ipam-cni-rhel8&tag=v4.13.0-202310162157.p0.g7ea4020.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-must-gather@sha256:e0c9129aad44a89d337340ff1c0a509444e570eb0355630fca43823017d2ed23_arm64", + "product": { + "name": "openshift4/ose-must-gather@sha256:e0c9129aad44a89d337340ff1c0a509444e570eb0355630fca43823017d2ed23_arm64", + "product_id": "openshift4/ose-must-gather@sha256:e0c9129aad44a89d337340ff1c0a509444e570eb0355630fca43823017d2ed23_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-must-gather@sha256:e0c9129aad44a89d337340ff1c0a509444e570eb0355630fca43823017d2ed23?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-must-gather&tag=v4.13.0-202310162157.p0.g288ef2f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:ee47b3b0d6eb98bd7cd3a513c1ce93f52e8abed97225e030ccce9e9920f7eb0b_arm64", + "product": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:ee47b3b0d6eb98bd7cd3a513c1ce93f52e8abed97225e030ccce9e9920f7eb0b_arm64", + "product_id": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:ee47b3b0d6eb98bd7cd3a513c1ce93f52e8abed97225e030ccce9e9920f7eb0b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-interface-bond-cni-rhel8@sha256:ee47b3b0d6eb98bd7cd3a513c1ce93f52e8abed97225e030ccce9e9920f7eb0b?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-network-interface-bond-cni-rhel8&tag=v4.13.0-202310162157.p0.g84bda2a.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:767f626b8c94ad6eb5dfd7f55c18cb4d1a7e53e6768e86f63de80c69cf3bf7db_arm64", + "product": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:767f626b8c94ad6eb5dfd7f55c18cb4d1a7e53e6768e86f63de80c69cf3bf7db_arm64", + "product_id": "openshift4/ose-network-metrics-daemon-rhel8@sha256:767f626b8c94ad6eb5dfd7f55c18cb4d1a7e53e6768e86f63de80c69cf3bf7db_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-network-metrics-daemon-rhel8@sha256:767f626b8c94ad6eb5dfd7f55c18cb4d1a7e53e6768e86f63de80c69cf3bf7db?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-network-metrics-daemon-rhel8&tag=v4.13.0-202310162157.p0.ge72c8ad.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/network-tools-rhel8@sha256:d04a94d55c3c2394f8425d0dcdb92aa70b4dccaadca82cec27b926545b3f6f19_arm64", + "product": { + "name": "openshift4/network-tools-rhel8@sha256:d04a94d55c3c2394f8425d0dcdb92aa70b4dccaadca82cec27b926545b3f6f19_arm64", + "product_id": "openshift4/network-tools-rhel8@sha256:d04a94d55c3c2394f8425d0dcdb92aa70b4dccaadca82cec27b926545b3f6f19_arm64", + "product_identification_helper": { + "purl": "pkg:oci/network-tools-rhel8@sha256:d04a94d55c3c2394f8425d0dcdb92aa70b4dccaadca82cec27b926545b3f6f19?arch=arm64&repository_url=registry.redhat.io/openshift4/network-tools-rhel8&tag=v4.13.0-202310162157.p0.g073feda.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-sdn-rhel8@sha256:2c3e11fa1b0598a7abc14cd66ffa75498615d04def63e70727f1af08e67621b1_arm64", + "product": { + "name": "openshift4/ose-sdn-rhel8@sha256:2c3e11fa1b0598a7abc14cd66ffa75498615d04def63e70727f1af08e67621b1_arm64", + "product_id": "openshift4/ose-sdn-rhel8@sha256:2c3e11fa1b0598a7abc14cd66ffa75498615d04def63e70727f1af08e67621b1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-sdn-rhel8@sha256:2c3e11fa1b0598a7abc14cd66ffa75498615d04def63e70727f1af08e67621b1?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-sdn-rhel8&tag=v4.13.0-202310162157.p0.g12a5bcf.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:59849ca328260174c6d30b142ab09a2559ed1423e40f7dbf17aedb40c46accdf_arm64", + "product": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:59849ca328260174c6d30b142ab09a2559ed1423e40f7dbf17aedb40c46accdf_arm64", + "product_id": "openshift4/ose-oauth-apiserver-rhel8@sha256:59849ca328260174c6d30b142ab09a2559ed1423e40f7dbf17aedb40c46accdf_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-oauth-apiserver-rhel8@sha256:59849ca328260174c6d30b142ab09a2559ed1423e40f7dbf17aedb40c46accdf?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-oauth-apiserver-rhel8&tag=v4.13.0-202310162157.p0.g41c2dfe.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:1a2a07b20cd995edf673d8c729840f5e42ae9a206564586d78762679b05f4520_arm64", + "product": { + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:1a2a07b20cd995edf673d8c729840f5e42ae9a206564586d78762679b05f4520_arm64", + "product_id": "openshift4/ose-olm-rukpak-rhel8@sha256:1a2a07b20cd995edf673d8c729840f5e42ae9a206564586d78762679b05f4520_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-olm-rukpak-rhel8@sha256:1a2a07b20cd995edf673d8c729840f5e42ae9a206564586d78762679b05f4520?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-olm-rukpak-rhel8&tag=v4.13.0-202310162157.p0.g66b3e55.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:8c568f5dd900a437bbecc831164fca8361c483d309a91cc91dba1a30e2e43c83_arm64", + "product": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:8c568f5dd900a437bbecc831164fca8361c483d309a91cc91dba1a30e2e43c83_arm64", + "product_id": "openshift4/ose-openshift-apiserver-rhel8@sha256:8c568f5dd900a437bbecc831164fca8361c483d309a91cc91dba1a30e2e43c83_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-apiserver-rhel8@sha256:8c568f5dd900a437bbecc831164fca8361c483d309a91cc91dba1a30e2e43c83?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openshift-apiserver-rhel8&tag=v4.13.0-202310162157.p0.g0b82768.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:8ec042092a150ce3ef6793f8e3da9813a74c08c75535f372fbd5b5e7fc4268b9_arm64", + "product": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:8ec042092a150ce3ef6793f8e3da9813a74c08c75535f372fbd5b5e7fc4268b9_arm64", + "product_id": "openshift4/ose-openshift-controller-manager-rhel8@sha256:8ec042092a150ce3ef6793f8e3da9813a74c08c75535f372fbd5b5e7fc4268b9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openshift-controller-manager-rhel8@sha256:8ec042092a150ce3ef6793f8e3da9813a74c08c75535f372fbd5b5e7fc4268b9?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openshift-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.g385057e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:b7b229f28ce2646bc63cf02fa435aae4681c380f0b67cc0958707b1433b01260_arm64", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:b7b229f28ce2646bc63cf02fa435aae4681c380f0b67cc0958707b1433b01260_arm64", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:b7b229f28ce2646bc63cf02fa435aae4681c380f0b67cc0958707b1433b01260_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8@sha256:b7b229f28ce2646bc63cf02fa435aae4681c380f0b67cc0958707b1433b01260?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.g171da3f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b70784f31fb36900986e7c428c52dd414aa13fb76f652812bf40607de7eeee7c_arm64", + "product": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b70784f31fb36900986e7c428c52dd414aa13fb76f652812bf40607de7eeee7c_arm64", + "product_id": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b70784f31fb36900986e7c428c52dd414aa13fb76f652812bf40607de7eeee7c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b70784f31fb36900986e7c428c52dd414aa13fb76f652812bf40607de7eeee7c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openstack-cinder-csi-driver-rhel8-operator&tag=v4.13.0-202310162157.p0.g90ee04b.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:04efdcd8012cb2870d6fa6ef805a1997205a6d6d585bd639bad5f0d9570e4422_arm64", + "product": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:04efdcd8012cb2870d6fa6ef805a1997205a6d6d585bd639bad5f0d9570e4422_arm64", + "product_id": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:04efdcd8012cb2870d6fa6ef805a1997205a6d6d585bd639bad5f0d9570e4422_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-openstack-cloud-controller-manager-rhel8@sha256:04efdcd8012cb2870d6fa6ef805a1997205a6d6d585bd639bad5f0d9570e4422?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-openstack-cloud-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.g171da3f.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:529d98b67b8da7f4688f5168a9669b711c1edca21be230aa09c30aff6f2437de_arm64", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:529d98b67b8da7f4688f5168a9669b711c1edca21be230aa09c30aff6f2437de_arm64", + "product_id": "openshift4/ovirt-csi-driver-rhel8@sha256:529d98b67b8da7f4688f5168a9669b711c1edca21be230aa09c30aff6f2437de_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel8@sha256:529d98b67b8da7f4688f5168a9669b711c1edca21be230aa09c30aff6f2437de?arch=arm64&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel8&tag=v4.13.0-202310162157.p0.gf21b470.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:529d98b67b8da7f4688f5168a9669b711c1edca21be230aa09c30aff6f2437de_arm64", + "product": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:529d98b67b8da7f4688f5168a9669b711c1edca21be230aa09c30aff6f2437de_arm64", + "product_id": "openshift4/ovirt-csi-driver-rhel7@sha256:529d98b67b8da7f4688f5168a9669b711c1edca21be230aa09c30aff6f2437de_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ovirt-csi-driver-rhel7@sha256:529d98b67b8da7f4688f5168a9669b711c1edca21be230aa09c30aff6f2437de?arch=arm64&repository_url=registry.redhat.io/openshift4/ovirt-csi-driver-rhel7&tag=v4.13.0-202310162157.p0.gf21b470.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:c0e2a218e94237defe69eeb99afe432604c658354679c4813654b51f84290183_arm64", + "product": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:c0e2a218e94237defe69eeb99afe432604c658354679c4813654b51f84290183_arm64", + "product_id": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:c0e2a218e94237defe69eeb99afe432604c658354679c4813654b51f84290183_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovirt-machine-controllers-rhel8@sha256:c0e2a218e94237defe69eeb99afe432604c658354679c4813654b51f84290183?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ovirt-machine-controllers-rhel8&tag=v4.13.0-202310162157.p0.g22d89b3.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes@sha256:7efd422c46c66eb1e364694efd310140d31011f88d5f3f98e7606a6412059f98_arm64", + "product": { + "name": "openshift4/ose-ovn-kubernetes@sha256:7efd422c46c66eb1e364694efd310140d31011f88d5f3f98e7606a6412059f98_arm64", + "product_id": "openshift4/ose-ovn-kubernetes@sha256:7efd422c46c66eb1e364694efd310140d31011f88d5f3f98e7606a6412059f98_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes@sha256:7efd422c46c66eb1e364694efd310140d31011f88d5f3f98e7606a6412059f98?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes&tag=v4.13.0-202310162157.p0.g881909d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:34040ba54b9179ca2fd9d7e9048a9d1b32f0229f80a2097449f73d8a4d99357c_arm64", + "product": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:34040ba54b9179ca2fd9d7e9048a9d1b32f0229f80a2097449f73d8a4d99357c_arm64", + "product_id": "openshift4/ose-k8s-prometheus-adapter@sha256:34040ba54b9179ca2fd9d7e9048a9d1b32f0229f80a2097449f73d8a4d99357c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-k8s-prometheus-adapter@sha256:34040ba54b9179ca2fd9d7e9048a9d1b32f0229f80a2097449f73d8a4d99357c?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-k8s-prometheus-adapter&tag=v4.13.0-202310162157.p0.g8ebc578.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:a71541cf58dfc5b7de21a04b576e435fd811b1aa869313d1687eaba82a5af01f_arm64", + "product": { + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:a71541cf58dfc5b7de21a04b576e435fd811b1aa869313d1687eaba82a5af01f_arm64", + "product_id": "openshift4/openshift-route-controller-manager-rhel8@sha256:a71541cf58dfc5b7de21a04b576e435fd811b1aa869313d1687eaba82a5af01f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/openshift-route-controller-manager-rhel8@sha256:a71541cf58dfc5b7de21a04b576e435fd811b1aa869313d1687eaba82a5af01f?arch=arm64&repository_url=registry.redhat.io/openshift4/openshift-route-controller-manager-rhel8&tag=v4.13.0-202310162157.p0.g6667a6c.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-service-ca-operator@sha256:cb2e368933eea20c369233b9d2237372f0628d269bd2ab74354b0ae3f8f95aae_arm64", + "product": { + "name": "openshift4/ose-service-ca-operator@sha256:cb2e368933eea20c369233b9d2237372f0628d269bd2ab74354b0ae3f8f95aae_arm64", + "product_id": "openshift4/ose-service-ca-operator@sha256:cb2e368933eea20c369233b9d2237372f0628d269bd2ab74354b0ae3f8f95aae_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-service-ca-operator@sha256:cb2e368933eea20c369233b9d2237372f0628d269bd2ab74354b0ae3f8f95aae?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-service-ca-operator&tag=v4.13.0-202310162157.p0.g5984aac.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-thanos-rhel8@sha256:165c5ca0fba1c6eabad77130514ac7ddddf60b9dd92cdd079e9c79596d1a1dc8_arm64", + "product": { + "name": "openshift4/ose-thanos-rhel8@sha256:165c5ca0fba1c6eabad77130514ac7ddddf60b9dd92cdd079e9c79596d1a1dc8_arm64", + "product_id": "openshift4/ose-thanos-rhel8@sha256:165c5ca0fba1c6eabad77130514ac7ddddf60b9dd92cdd079e9c79596d1a1dc8_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-thanos-rhel8@sha256:165c5ca0fba1c6eabad77130514ac7ddddf60b9dd92cdd079e9c79596d1a1dc8?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-thanos-rhel8&tag=v4.13.0-202310162157.p0.g43238be.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-tools-rhel8@sha256:5ee9d6e4f9e67f2009f2b7a4c395c910fb7798c82939b67502e2c58a2203986b_arm64", + "product": { + "name": "openshift4/ose-tools-rhel8@sha256:5ee9d6e4f9e67f2009f2b7a4c395c910fb7798c82939b67502e2c58a2203986b_arm64", + "product_id": "openshift4/ose-tools-rhel8@sha256:5ee9d6e4f9e67f2009f2b7a4c395c910fb7798c82939b67502e2c58a2203986b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-tools-rhel8@sha256:5ee9d6e4f9e67f2009f2b7a4c395c910fb7798c82939b67502e2c58a2203986b?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-tools-rhel8&tag=v4.13.0-202310162157.p0.g717d4a5.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e52786a4ba56c66824334a44692909624fc4d459f362427da7e1e7c36962d7b9_arm64", + "product": { + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e52786a4ba56c66824334a44692909624fc4d459f362427da7e1e7c36962d7b9_arm64", + "product_id": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e52786a4ba56c66824334a44692909624fc4d459f362427da7e1e7c36962d7b9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-ovn-kubernetes-microshift-rhel9@sha256:e52786a4ba56c66824334a44692909624fc4d459f362427da7e1e7c36962d7b9?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-ovn-kubernetes-microshift-rhel9&tag=v4.13.0-202310162157.p0.g881909d.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-config-reloader@sha256:1da4fc0ed2387280b075d64e8c9044ab705cb624dbfdbde39f7a8d3082404797_arm64", + "product": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:1da4fc0ed2387280b075d64e8c9044ab705cb624dbfdbde39f7a8d3082404797_arm64", + "product_id": "openshift4/ose-prometheus-config-reloader@sha256:1da4fc0ed2387280b075d64e8c9044ab705cb624dbfdbde39f7a8d3082404797_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-config-reloader@sha256:1da4fc0ed2387280b075d64e8c9044ab705cb624dbfdbde39f7a8d3082404797?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prometheus-config-reloader&tag=v4.13.0-202310162157.p0.g95a1178.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:9326d706f188fba493d05b907aceeefc129f8c8ffc067be4bc9498f7fcd9b247_arm64", + "product": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:9326d706f188fba493d05b907aceeefc129f8c8ffc067be4bc9498f7fcd9b247_arm64", + "product_id": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:9326d706f188fba493d05b907aceeefc129f8c8ffc067be4bc9498f7fcd9b247_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator-admission-webhook-rhel8@sha256:9326d706f188fba493d05b907aceeefc129f8c8ffc067be4bc9498f7fcd9b247?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator-admission-webhook-rhel8&tag=v4.13.0-202310162157.p0.g95a1178.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prometheus-operator@sha256:b0aac8d86cae3b3a968c982a726d92d244c10350f033a5e53b0a3e07f4eb6dae_arm64", + "product": { + "name": "openshift4/ose-prometheus-operator@sha256:b0aac8d86cae3b3a968c982a726d92d244c10350f033a5e53b0a3e07f4eb6dae_arm64", + "product_id": "openshift4/ose-prometheus-operator@sha256:b0aac8d86cae3b3a968c982a726d92d244c10350f033a5e53b0a3e07f4eb6dae_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prometheus-operator@sha256:b0aac8d86cae3b3a968c982a726d92d244c10350f033a5e53b0a3e07f4eb6dae?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prometheus-operator&tag=v4.13.0-202310162157.p0.g95a1178.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-prom-label-proxy@sha256:6a111969f32229263e0e1d4a23eb42c747e3310226d63c63a85702a5f66c4e8d_arm64", + "product": { + "name": "openshift4/ose-prom-label-proxy@sha256:6a111969f32229263e0e1d4a23eb42c747e3310226d63c63a85702a5f66c4e8d_arm64", + "product_id": "openshift4/ose-prom-label-proxy@sha256:6a111969f32229263e0e1d4a23eb42c747e3310226d63c63a85702a5f66c4e8d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-prom-label-proxy@sha256:6a111969f32229263e0e1d4a23eb42c747e3310226d63c63a85702a5f66c4e8d?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-prom-label-proxy&tag=v4.13.0-202310162157.p0.gb501d5e.assembly.stream" + } + } + }, + { + "category": "product_version", + "name": "openshift4/ose-telemeter@sha256:92f9cd3c89014104e1669d4eab0df5c91cf2963a57ff388712458ade94b585ee_arm64", + "product": { + "name": "openshift4/ose-telemeter@sha256:92f9cd3c89014104e1669d4eab0df5c91cf2963a57ff388712458ade94b585ee_arm64", + "product_id": "openshift4/ose-telemeter@sha256:92f9cd3c89014104e1669d4eab0df5c91cf2963a57ff388712458ade94b585ee_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ose-telemeter@sha256:92f9cd3c89014104e1669d4eab0df5c91cf2963a57ff388712458ade94b585ee?arch=arm64&repository_url=registry.redhat.io/openshift4/ose-telemeter&tag=v4.13.0-202310162157.p0.gbe81b43.assembly.stream" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:4318a47d134f0fbcac0fe68cde31efc05e7aeb8a197cfdd13a58b848aa7d227f_arm64", + "product": { + "name": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:4318a47d134f0fbcac0fe68cde31efc05e7aeb8a197cfdd13a58b848aa7d227f_arm64", + "product_id": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:4318a47d134f0fbcac0fe68cde31efc05e7aeb8a197cfdd13a58b848aa7d227f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-chains-controller-rhel8@sha256:4318a47d134f0fbcac0fe68cde31efc05e7aeb8a197cfdd13a58b848aa7d227f?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:3d3f6bb7ffa163cffb3cbaebb83f40838a53b3f12a4a0f150ce7e675707c5952_arm64", + "product": { + "name": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:3d3f6bb7ffa163cffb3cbaebb83f40838a53b3f12a4a0f150ce7e675707c5952_arm64", + "product_id": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:3d3f6bb7ffa163cffb3cbaebb83f40838a53b3f12a4a0f150ce7e675707c5952_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-cli-tkn-rhel8@sha256:3d3f6bb7ffa163cffb3cbaebb83f40838a53b3f12a4a0f150ce7e675707c5952?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel8&tag=v1.12.1-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-controller-rhel8@sha256:1575c6566d0eef999fa2fb98d32213b5f7c330a2b994af4fbd50d5f7351e2c03_arm64", + "product": { + "name": "openshift-pipelines/pipelines-controller-rhel8@sha256:1575c6566d0eef999fa2fb98d32213b5f7c330a2b994af4fbd50d5f7351e2c03_arm64", + "product_id": "openshift-pipelines/pipelines-controller-rhel8@sha256:1575c6566d0eef999fa2fb98d32213b5f7c330a2b994af4fbd50d5f7351e2c03_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-controller-rhel8@sha256:1575c6566d0eef999fa2fb98d32213b5f7c330a2b994af4fbd50d5f7351e2c03?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-controller-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:0f40a29b561a9993cbfec7cd708b074e589954af0a428e52c20c44ff210f986b_arm64", + "product": { + "name": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:0f40a29b561a9993cbfec7cd708b074e589954af0a428e52c20c44ff210f986b_arm64", + "product_id": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:0f40a29b561a9993cbfec7cd708b074e589954af0a428e52c20c44ff210f986b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-entrypoint-rhel8@sha256:0f40a29b561a9993cbfec7cd708b074e589954af0a428e52c20c44ff210f986b?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-events-rhel8@sha256:3e0d44dc4552aa6612d32646a902d5752dc057415ff27c6929b2aa49bffbef4e_arm64", + "product": { + "name": "openshift-pipelines/pipelines-events-rhel8@sha256:3e0d44dc4552aa6612d32646a902d5752dc057415ff27c6929b2aa49bffbef4e_arm64", + "product_id": "openshift-pipelines/pipelines-events-rhel8@sha256:3e0d44dc4552aa6612d32646a902d5752dc057415ff27c6929b2aa49bffbef4e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-events-rhel8@sha256:3e0d44dc4552aa6612d32646a902d5752dc057415ff27c6929b2aa49bffbef4e?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-events-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-git-init-rhel8@sha256:9a78ad10c41dc3a256b8fcef61effd6789ca7725c33fb49f92f8dd39bc82173b_arm64", + "product": { + "name": "openshift-pipelines/pipelines-git-init-rhel8@sha256:9a78ad10c41dc3a256b8fcef61effd6789ca7725c33fb49f92f8dd39bc82173b_arm64", + "product_id": "openshift-pipelines/pipelines-git-init-rhel8@sha256:9a78ad10c41dc3a256b8fcef61effd6789ca7725c33fb49f92f8dd39bc82173b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-git-init-rhel8@sha256:9a78ad10c41dc3a256b8fcef61effd6789ca7725c33fb49f92f8dd39bc82173b?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel8&tag=v1.12.1-2" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:38ddec97f08a0bc1ff1e463a571ab62489dc938ed16ad1c3dd2c4b41139a8a90_arm64", + "product": { + "name": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:38ddec97f08a0bc1ff1e463a571ab62489dc938ed16ad1c3dd2c4b41139a8a90_arm64", + "product_id": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:38ddec97f08a0bc1ff1e463a571ab62489dc938ed16ad1c3dd2c4b41139a8a90_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-hub-api-rhel8@sha256:38ddec97f08a0bc1ff1e463a571ab62489dc938ed16ad1c3dd2c4b41139a8a90?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel8&tag=v1.12.1-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:e6035115e3a393125d5ca8ac648a88a662824e24a97fc051f72a80849756a9d2_arm64", + "product": { + "name": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:e6035115e3a393125d5ca8ac648a88a662824e24a97fc051f72a80849756a9d2_arm64", + "product_id": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:e6035115e3a393125d5ca8ac648a88a662824e24a97fc051f72a80849756a9d2_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-hub-db-migration-rhel8@sha256:e6035115e3a393125d5ca8ac648a88a662824e24a97fc051f72a80849756a9d2?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel8&tag=v1.12.1-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:0850cb1af40ab81ba7b9e5bbd569621694aabd6b28e3ba6160d270308e5fe6be_arm64", + "product": { + "name": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:0850cb1af40ab81ba7b9e5bbd569621694aabd6b28e3ba6160d270308e5fe6be_arm64", + "product_id": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:0850cb1af40ab81ba7b9e5bbd569621694aabd6b28e3ba6160d270308e5fe6be_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-hub-ui-rhel8@sha256:0850cb1af40ab81ba7b9e5bbd569621694aabd6b28e3ba6160d270308e5fe6be?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel8&tag=v1.12.1-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-nop-rhel8@sha256:291d7da532c7d33b345bb801f3c38f80be5cf35b99c9be47e0666be69a3244da_arm64", + "product": { + "name": "openshift-pipelines/pipelines-nop-rhel8@sha256:291d7da532c7d33b345bb801f3c38f80be5cf35b99c9be47e0666be69a3244da_arm64", + "product_id": "openshift-pipelines/pipelines-nop-rhel8@sha256:291d7da532c7d33b345bb801f3c38f80be5cf35b99c9be47e0666be69a3244da_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-nop-rhel8@sha256:291d7da532c7d33b345bb801f3c38f80be5cf35b99c9be47e0666be69a3244da?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-nop-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-operator-bundle@sha256:91517f7e8fe93b57650d307a7e78b82a6f70107460bb667dd7b850a6cdd6deb1_arm64", + "product": { + "name": "openshift-pipelines/pipelines-operator-bundle@sha256:91517f7e8fe93b57650d307a7e78b82a6f70107460bb667dd7b850a6cdd6deb1_arm64", + "product_id": "openshift-pipelines/pipelines-operator-bundle@sha256:91517f7e8fe93b57650d307a7e78b82a6f70107460bb667dd7b850a6cdd6deb1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-operator-bundle@sha256:91517f7e8fe93b57650d307a7e78b82a6f70107460bb667dd7b850a6cdd6deb1?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-bundle&tag=v1.12.1-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:f4dfe1212cb6acdd76e883ef917c00e058f553ab04e2ed66912c9723bbcdfc59_arm64", + "product": { + "name": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:f4dfe1212cb6acdd76e883ef917c00e058f553ab04e2ed66912c9723bbcdfc59_arm64", + "product_id": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:f4dfe1212cb6acdd76e883ef917c00e058f553ab04e2ed66912c9723bbcdfc59_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-operator-proxy-rhel8@sha256:f4dfe1212cb6acdd76e883ef917c00e058f553ab04e2ed66912c9723bbcdfc59?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel8&tag=v1.12.1-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:0ce510deaecb5fda9bea248cde60c5743d1e4094087e58f9a72de1b2597ab26a_arm64", + "product": { + "name": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:0ce510deaecb5fda9bea248cde60c5743d1e4094087e58f9a72de1b2597ab26a_arm64", + "product_id": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:0ce510deaecb5fda9bea248cde60c5743d1e4094087e58f9a72de1b2597ab26a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-operator-webhook-rhel8@sha256:0ce510deaecb5fda9bea248cde60c5743d1e4094087e58f9a72de1b2597ab26a?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel8&tag=v1.12.1-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:6049abe50510fb913fecb8828d6dd054a0ad2e9382920c78bc70c4e1030d5b50_arm64", + "product": { + "name": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:6049abe50510fb913fecb8828d6dd054a0ad2e9382920c78bc70c4e1030d5b50_arm64", + "product_id": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:6049abe50510fb913fecb8828d6dd054a0ad2e9382920c78bc70c4e1030d5b50_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-pipelines-as-code-rhel8@sha256:6049abe50510fb913fecb8828d6dd054a0ad2e9382920c78bc70c4e1030d5b50?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-rhel8&tag=v1.12.1-7" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:c5d326316813a458955aa99fe2db671797bfc9901089b053db657ec4c1b0a50e_arm64", + "product": { + "name": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:c5d326316813a458955aa99fe2db671797bfc9901089b053db657ec4c1b0a50e_arm64", + "product_id": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:c5d326316813a458955aa99fe2db671797bfc9901089b053db657ec4c1b0a50e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-resolvers-rhel8@sha256:c5d326316813a458955aa99fe2db671797bfc9901089b053db657ec4c1b0a50e?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-results-api-rhel8@sha256:8cf80131852b0286a1c37951aceeed4672c2b2ec79404e9d24ba6226aaf6e3d3_arm64", + "product": { + "name": "openshift-pipelines/pipelines-results-api-rhel8@sha256:8cf80131852b0286a1c37951aceeed4672c2b2ec79404e9d24ba6226aaf6e3d3_arm64", + "product_id": "openshift-pipelines/pipelines-results-api-rhel8@sha256:8cf80131852b0286a1c37951aceeed4672c2b2ec79404e9d24ba6226aaf6e3d3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-results-api-rhel8@sha256:8cf80131852b0286a1c37951aceeed4672c2b2ec79404e9d24ba6226aaf6e3d3?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel8&tag=v1.12.1-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:13dc44a684a981c8443054577ba974e16cbf5c2250cf299b084363ff62cca4bf_arm64", + "product": { + "name": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:13dc44a684a981c8443054577ba974e16cbf5c2250cf299b084363ff62cca4bf_arm64", + "product_id": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:13dc44a684a981c8443054577ba974e16cbf5c2250cf299b084363ff62cca4bf_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-results-watcher-rhel8@sha256:13dc44a684a981c8443054577ba974e16cbf5c2250cf299b084363ff62cca4bf?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel8&tag=v1.12.1-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-rhel8-operator@sha256:48403dc5bebb446bf2678fe5015282e30d1f9962d540395b0c4b9485367274ed_arm64", + "product": { + "name": "openshift-pipelines/pipelines-rhel8-operator@sha256:48403dc5bebb446bf2678fe5015282e30d1f9962d540395b0c4b9485367274ed_arm64", + "product_id": "openshift-pipelines/pipelines-rhel8-operator@sha256:48403dc5bebb446bf2678fe5015282e30d1f9962d540395b0c4b9485367274ed_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-rhel8-operator@sha256:48403dc5bebb446bf2678fe5015282e30d1f9962d540395b0c4b9485367274ed?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-rhel8-operator&tag=v1.12.1-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:6ae9e91827c9c27aa908c07c956f233d6faaccd492d0966eee36ba086190c7d7_arm64", + "product": { + "name": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:6ae9e91827c9c27aa908c07c956f233d6faaccd492d0966eee36ba086190c7d7_arm64", + "product_id": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:6ae9e91827c9c27aa908c07c956f233d6faaccd492d0966eee36ba086190c7d7_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-serve-tkn-cli-rhel8@sha256:6ae9e91827c9c27aa908c07c956f233d6faaccd492d0966eee36ba086190c7d7?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel8&tag=v1.12.1-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:9c5aed4e686d4a61a8dbc268117a54386c937e6d559c95cf9ac775e73a5da470_arm64", + "product": { + "name": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:9c5aed4e686d4a61a8dbc268117a54386c937e6d559c95cf9ac775e73a5da470_arm64", + "product_id": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:9c5aed4e686d4a61a8dbc268117a54386c937e6d559c95cf9ac775e73a5da470_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-controller-rhel8@sha256:9c5aed4e686d4a61a8dbc268117a54386c937e6d559c95cf9ac775e73a5da470?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:2dfdff7382bd8f605eae8be7a50d8c26bdb7288ad1872714cb6e699d6825a571_arm64", + "product": { + "name": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:2dfdff7382bd8f605eae8be7a50d8c26bdb7288ad1872714cb6e699d6825a571_arm64", + "product_id": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:2dfdff7382bd8f605eae8be7a50d8c26bdb7288ad1872714cb6e699d6825a571_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-core-interceptors-rhel8@sha256:2dfdff7382bd8f605eae8be7a50d8c26bdb7288ad1872714cb6e699d6825a571?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:845db9b34b2ceb0a6a126796aba0f0368e6b028b0e472a278dec4626a2d07365_arm64", + "product": { + "name": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:845db9b34b2ceb0a6a126796aba0f0368e6b028b0e472a278dec4626a2d07365_arm64", + "product_id": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:845db9b34b2ceb0a6a126796aba0f0368e6b028b0e472a278dec4626a2d07365_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-eventlistenersink-rhel8@sha256:845db9b34b2ceb0a6a126796aba0f0368e6b028b0e472a278dec4626a2d07365?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:d99348b1b2ad44ee54043300389e534c54e85c7d3515148cccfc03abdef9ce00_arm64", + "product": { + "name": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:d99348b1b2ad44ee54043300389e534c54e85c7d3515148cccfc03abdef9ce00_arm64", + "product_id": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:d99348b1b2ad44ee54043300389e534c54e85c7d3515148cccfc03abdef9ce00_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-webhook-rhel8@sha256:d99348b1b2ad44ee54043300389e534c54e85c7d3515148cccfc03abdef9ce00?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-webhook-rhel8@sha256:b08ad288721af271ade9a982fa00ac91de30784b5cf087fcc1a75857159a2c3c_arm64", + "product": { + "name": "openshift-pipelines/pipelines-webhook-rhel8@sha256:b08ad288721af271ade9a982fa00ac91de30784b5cf087fcc1a75857159a2c3c_arm64", + "product_id": "openshift-pipelines/pipelines-webhook-rhel8@sha256:b08ad288721af271ade9a982fa00ac91de30784b5cf087fcc1a75857159a2c3c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-webhook-rhel8@sha256:b08ad288721af271ade9a982fa00ac91de30784b5cf087fcc1a75857159a2c3c?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:a8d7d8f7df1e2ea94bc4d221571bccd70c9f7d80955ba08b9281e2488e3c8752_arm64", + "product": { + "name": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:a8d7d8f7df1e2ea94bc4d221571bccd70c9f7d80955ba08b9281e2488e3c8752_arm64", + "product_id": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:a8d7d8f7df1e2ea94bc4d221571bccd70c9f7d80955ba08b9281e2488e3c8752_arm64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-workingdirinit-rhel8@sha256:a8d7d8f7df1e2ea94bc4d221571bccd70c9f7d80955ba08b9281e2488e3c8752?arch=arm64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel8&tag=v1.12.1-5" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:797342f67fd5fa305ccb10b07085e10c65ad58bf6c95c94af139ca44c537cb17_s390x", + "product": { + "name": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:797342f67fd5fa305ccb10b07085e10c65ad58bf6c95c94af139ca44c537cb17_s390x", + "product_id": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:797342f67fd5fa305ccb10b07085e10c65ad58bf6c95c94af139ca44c537cb17_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-chains-controller-rhel8@sha256:797342f67fd5fa305ccb10b07085e10c65ad58bf6c95c94af139ca44c537cb17?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:28262e80e10cb265b53d79e85244febb7f3b484be32d4ce7b745bbd461e2d826_s390x", + "product": { + "name": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:28262e80e10cb265b53d79e85244febb7f3b484be32d4ce7b745bbd461e2d826_s390x", + "product_id": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:28262e80e10cb265b53d79e85244febb7f3b484be32d4ce7b745bbd461e2d826_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-cli-tkn-rhel8@sha256:28262e80e10cb265b53d79e85244febb7f3b484be32d4ce7b745bbd461e2d826?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel8&tag=v1.12.1-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-controller-rhel8@sha256:61e2e3822dc0709407ee493c5cb7feeb65d0ae797faead9513bde74eb4f39be1_s390x", + "product": { + "name": "openshift-pipelines/pipelines-controller-rhel8@sha256:61e2e3822dc0709407ee493c5cb7feeb65d0ae797faead9513bde74eb4f39be1_s390x", + "product_id": "openshift-pipelines/pipelines-controller-rhel8@sha256:61e2e3822dc0709407ee493c5cb7feeb65d0ae797faead9513bde74eb4f39be1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-controller-rhel8@sha256:61e2e3822dc0709407ee493c5cb7feeb65d0ae797faead9513bde74eb4f39be1?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-controller-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:b2d8abd9ad6bfafa84ece67b548aa2942ba1779ce1fda438279ac63b60896776_s390x", + "product": { + "name": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:b2d8abd9ad6bfafa84ece67b548aa2942ba1779ce1fda438279ac63b60896776_s390x", + "product_id": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:b2d8abd9ad6bfafa84ece67b548aa2942ba1779ce1fda438279ac63b60896776_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-entrypoint-rhel8@sha256:b2d8abd9ad6bfafa84ece67b548aa2942ba1779ce1fda438279ac63b60896776?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-events-rhel8@sha256:7e82a4f854a86bc651071c87627d21af96e626ed33337b2578fe57fee89468c2_s390x", + "product": { + "name": "openshift-pipelines/pipelines-events-rhel8@sha256:7e82a4f854a86bc651071c87627d21af96e626ed33337b2578fe57fee89468c2_s390x", + "product_id": "openshift-pipelines/pipelines-events-rhel8@sha256:7e82a4f854a86bc651071c87627d21af96e626ed33337b2578fe57fee89468c2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-events-rhel8@sha256:7e82a4f854a86bc651071c87627d21af96e626ed33337b2578fe57fee89468c2?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-events-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-git-init-rhel8@sha256:38af85bccd58ac63b36c8e9a2ef3b06f26d6a4759827f4e5cbeb1b659a820bde_s390x", + "product": { + "name": "openshift-pipelines/pipelines-git-init-rhel8@sha256:38af85bccd58ac63b36c8e9a2ef3b06f26d6a4759827f4e5cbeb1b659a820bde_s390x", + "product_id": "openshift-pipelines/pipelines-git-init-rhel8@sha256:38af85bccd58ac63b36c8e9a2ef3b06f26d6a4759827f4e5cbeb1b659a820bde_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-git-init-rhel8@sha256:38af85bccd58ac63b36c8e9a2ef3b06f26d6a4759827f4e5cbeb1b659a820bde?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel8&tag=v1.12.1-2" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:d023f432d3bce3f5706b1b909ea8a8d36a4c370f0fcf50ee9e648b7f4fb095bc_s390x", + "product": { + "name": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:d023f432d3bce3f5706b1b909ea8a8d36a4c370f0fcf50ee9e648b7f4fb095bc_s390x", + "product_id": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:d023f432d3bce3f5706b1b909ea8a8d36a4c370f0fcf50ee9e648b7f4fb095bc_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-hub-api-rhel8@sha256:d023f432d3bce3f5706b1b909ea8a8d36a4c370f0fcf50ee9e648b7f4fb095bc?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel8&tag=v1.12.1-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:4a33269cee36726cf553107faaff19fa1115cd35e4965a5a698f721a0631729f_s390x", + "product": { + "name": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:4a33269cee36726cf553107faaff19fa1115cd35e4965a5a698f721a0631729f_s390x", + "product_id": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:4a33269cee36726cf553107faaff19fa1115cd35e4965a5a698f721a0631729f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-hub-db-migration-rhel8@sha256:4a33269cee36726cf553107faaff19fa1115cd35e4965a5a698f721a0631729f?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel8&tag=v1.12.1-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:cf39fd2b6d5e209781c2bb329f907c76b2263b45d24af84f538a2721d4610d56_s390x", + "product": { + "name": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:cf39fd2b6d5e209781c2bb329f907c76b2263b45d24af84f538a2721d4610d56_s390x", + "product_id": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:cf39fd2b6d5e209781c2bb329f907c76b2263b45d24af84f538a2721d4610d56_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-hub-ui-rhel8@sha256:cf39fd2b6d5e209781c2bb329f907c76b2263b45d24af84f538a2721d4610d56?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel8&tag=v1.12.1-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-nop-rhel8@sha256:d38def1b0a62fdd49f40d785e6efc6f1ee73b6e0bdb0b98f98dd73696498488d_s390x", + "product": { + "name": "openshift-pipelines/pipelines-nop-rhel8@sha256:d38def1b0a62fdd49f40d785e6efc6f1ee73b6e0bdb0b98f98dd73696498488d_s390x", + "product_id": "openshift-pipelines/pipelines-nop-rhel8@sha256:d38def1b0a62fdd49f40d785e6efc6f1ee73b6e0bdb0b98f98dd73696498488d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-nop-rhel8@sha256:d38def1b0a62fdd49f40d785e6efc6f1ee73b6e0bdb0b98f98dd73696498488d?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-nop-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-operator-bundle@sha256:474120a685ba41e91084a1631621418cd57c65f987981436e4e3bff31d5f402f_s390x", + "product": { + "name": "openshift-pipelines/pipelines-operator-bundle@sha256:474120a685ba41e91084a1631621418cd57c65f987981436e4e3bff31d5f402f_s390x", + "product_id": "openshift-pipelines/pipelines-operator-bundle@sha256:474120a685ba41e91084a1631621418cd57c65f987981436e4e3bff31d5f402f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-operator-bundle@sha256:474120a685ba41e91084a1631621418cd57c65f987981436e4e3bff31d5f402f?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-bundle&tag=v1.12.1-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:410eb6fa5b37835acaf5cea259e0a70163a4be87f54ba045ad24b5e2b7bd010e_s390x", + "product": { + "name": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:410eb6fa5b37835acaf5cea259e0a70163a4be87f54ba045ad24b5e2b7bd010e_s390x", + "product_id": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:410eb6fa5b37835acaf5cea259e0a70163a4be87f54ba045ad24b5e2b7bd010e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-operator-proxy-rhel8@sha256:410eb6fa5b37835acaf5cea259e0a70163a4be87f54ba045ad24b5e2b7bd010e?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel8&tag=v1.12.1-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:6e926a41e998366d20ea5562f8b5a3662815907e0a066e875859947defc5b119_s390x", + "product": { + "name": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:6e926a41e998366d20ea5562f8b5a3662815907e0a066e875859947defc5b119_s390x", + "product_id": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:6e926a41e998366d20ea5562f8b5a3662815907e0a066e875859947defc5b119_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-operator-webhook-rhel8@sha256:6e926a41e998366d20ea5562f8b5a3662815907e0a066e875859947defc5b119?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel8&tag=v1.12.1-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:5384a4a6adc017b2c522732e87b795349d0879d7d5ea2b7d11191b416701778b_s390x", + "product": { + "name": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:5384a4a6adc017b2c522732e87b795349d0879d7d5ea2b7d11191b416701778b_s390x", + "product_id": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:5384a4a6adc017b2c522732e87b795349d0879d7d5ea2b7d11191b416701778b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-pipelines-as-code-rhel8@sha256:5384a4a6adc017b2c522732e87b795349d0879d7d5ea2b7d11191b416701778b?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-rhel8&tag=v1.12.1-7" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:e8509f0ed5a4230067a956c148ffd2cf1ea1d4a534bb76669f3b4488502ee0e1_s390x", + "product": { + "name": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:e8509f0ed5a4230067a956c148ffd2cf1ea1d4a534bb76669f3b4488502ee0e1_s390x", + "product_id": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:e8509f0ed5a4230067a956c148ffd2cf1ea1d4a534bb76669f3b4488502ee0e1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-resolvers-rhel8@sha256:e8509f0ed5a4230067a956c148ffd2cf1ea1d4a534bb76669f3b4488502ee0e1?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-results-api-rhel8@sha256:601d3c134545e442d69ef465c86c56147873f7e5ee55f75690a21814e1c9d24b_s390x", + "product": { + "name": "openshift-pipelines/pipelines-results-api-rhel8@sha256:601d3c134545e442d69ef465c86c56147873f7e5ee55f75690a21814e1c9d24b_s390x", + "product_id": "openshift-pipelines/pipelines-results-api-rhel8@sha256:601d3c134545e442d69ef465c86c56147873f7e5ee55f75690a21814e1c9d24b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-results-api-rhel8@sha256:601d3c134545e442d69ef465c86c56147873f7e5ee55f75690a21814e1c9d24b?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel8&tag=v1.12.1-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:919ce4d550a7c801c6770424fbc20af457284853b897e4d93026a2fa451ad985_s390x", + "product": { + "name": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:919ce4d550a7c801c6770424fbc20af457284853b897e4d93026a2fa451ad985_s390x", + "product_id": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:919ce4d550a7c801c6770424fbc20af457284853b897e4d93026a2fa451ad985_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-results-watcher-rhel8@sha256:919ce4d550a7c801c6770424fbc20af457284853b897e4d93026a2fa451ad985?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel8&tag=v1.12.1-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-rhel8-operator@sha256:f4838dc71f1c62782a67f4ae35e3a4cc72d11b10644491e461752140164f2570_s390x", + "product": { + "name": "openshift-pipelines/pipelines-rhel8-operator@sha256:f4838dc71f1c62782a67f4ae35e3a4cc72d11b10644491e461752140164f2570_s390x", + "product_id": "openshift-pipelines/pipelines-rhel8-operator@sha256:f4838dc71f1c62782a67f4ae35e3a4cc72d11b10644491e461752140164f2570_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-rhel8-operator@sha256:f4838dc71f1c62782a67f4ae35e3a4cc72d11b10644491e461752140164f2570?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-rhel8-operator&tag=v1.12.1-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:0771070fdd2004d189c58feb9a0c62debed68985553570f1cc14d621f974e5cf_s390x", + "product": { + "name": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:0771070fdd2004d189c58feb9a0c62debed68985553570f1cc14d621f974e5cf_s390x", + "product_id": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:0771070fdd2004d189c58feb9a0c62debed68985553570f1cc14d621f974e5cf_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-serve-tkn-cli-rhel8@sha256:0771070fdd2004d189c58feb9a0c62debed68985553570f1cc14d621f974e5cf?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel8&tag=v1.12.1-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:ccba683724b61543d5d553aac65198f2d522f202d26a7950f54033099946ad2d_s390x", + "product": { + "name": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:ccba683724b61543d5d553aac65198f2d522f202d26a7950f54033099946ad2d_s390x", + "product_id": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:ccba683724b61543d5d553aac65198f2d522f202d26a7950f54033099946ad2d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-controller-rhel8@sha256:ccba683724b61543d5d553aac65198f2d522f202d26a7950f54033099946ad2d?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:5627436ea299325eb23bfdf59eaad9b5278432a421746bfc2b790223723712c7_s390x", + "product": { + "name": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:5627436ea299325eb23bfdf59eaad9b5278432a421746bfc2b790223723712c7_s390x", + "product_id": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:5627436ea299325eb23bfdf59eaad9b5278432a421746bfc2b790223723712c7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-core-interceptors-rhel8@sha256:5627436ea299325eb23bfdf59eaad9b5278432a421746bfc2b790223723712c7?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:a8d7b2773ba0936d6ee1ddc8725771d113893195c1a3601464a72232b15207e2_s390x", + "product": { + "name": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:a8d7b2773ba0936d6ee1ddc8725771d113893195c1a3601464a72232b15207e2_s390x", + "product_id": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:a8d7b2773ba0936d6ee1ddc8725771d113893195c1a3601464a72232b15207e2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-eventlistenersink-rhel8@sha256:a8d7b2773ba0936d6ee1ddc8725771d113893195c1a3601464a72232b15207e2?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:ba3a8d4f2571f0c55391100c6616ab3d3c86a82a82bf82119a1714b61194517c_s390x", + "product": { + "name": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:ba3a8d4f2571f0c55391100c6616ab3d3c86a82a82bf82119a1714b61194517c_s390x", + "product_id": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:ba3a8d4f2571f0c55391100c6616ab3d3c86a82a82bf82119a1714b61194517c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-webhook-rhel8@sha256:ba3a8d4f2571f0c55391100c6616ab3d3c86a82a82bf82119a1714b61194517c?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-webhook-rhel8@sha256:9a3e514b0e95ebef02939fa92529647d82dcd6a4061c5d9483e376ddf454cc55_s390x", + "product": { + "name": "openshift-pipelines/pipelines-webhook-rhel8@sha256:9a3e514b0e95ebef02939fa92529647d82dcd6a4061c5d9483e376ddf454cc55_s390x", + "product_id": "openshift-pipelines/pipelines-webhook-rhel8@sha256:9a3e514b0e95ebef02939fa92529647d82dcd6a4061c5d9483e376ddf454cc55_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-webhook-rhel8@sha256:9a3e514b0e95ebef02939fa92529647d82dcd6a4061c5d9483e376ddf454cc55?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:0ab99cc4f6f684aac86b57d6fb7c18eefac5f8dae1c9663f4903ca6f88baf6ed_s390x", + "product": { + "name": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:0ab99cc4f6f684aac86b57d6fb7c18eefac5f8dae1c9663f4903ca6f88baf6ed_s390x", + "product_id": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:0ab99cc4f6f684aac86b57d6fb7c18eefac5f8dae1c9663f4903ca6f88baf6ed_s390x", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-workingdirinit-rhel8@sha256:0ab99cc4f6f684aac86b57d6fb7c18eefac5f8dae1c9663f4903ca6f88baf6ed?arch=s390x&repository_url=registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel8&tag=v1.12.1-5" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:116359e30bc6aa61773d6963383760a54d65fbd8d4e519eec4509b69852e95ea_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:116359e30bc6aa61773d6963383760a54d65fbd8d4e519eec4509b69852e95ea_ppc64le", + "product_id": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:116359e30bc6aa61773d6963383760a54d65fbd8d4e519eec4509b69852e95ea_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-chains-controller-rhel8@sha256:116359e30bc6aa61773d6963383760a54d65fbd8d4e519eec4509b69852e95ea?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:0a1cc1b6df16a7b94075369909bba6aa136028ead28cc147ca2cba04875a7868_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:0a1cc1b6df16a7b94075369909bba6aa136028ead28cc147ca2cba04875a7868_ppc64le", + "product_id": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:0a1cc1b6df16a7b94075369909bba6aa136028ead28cc147ca2cba04875a7868_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-cli-tkn-rhel8@sha256:0a1cc1b6df16a7b94075369909bba6aa136028ead28cc147ca2cba04875a7868?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel8&tag=v1.12.1-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-controller-rhel8@sha256:287e63d390d671f26744ce8777bcc32462263b01b498dd227b83532462714c29_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-controller-rhel8@sha256:287e63d390d671f26744ce8777bcc32462263b01b498dd227b83532462714c29_ppc64le", + "product_id": "openshift-pipelines/pipelines-controller-rhel8@sha256:287e63d390d671f26744ce8777bcc32462263b01b498dd227b83532462714c29_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-controller-rhel8@sha256:287e63d390d671f26744ce8777bcc32462263b01b498dd227b83532462714c29?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-controller-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:e886d5ebad7ac27623069fe464c908a26b1beeaadc8ec57f6612e2b508846ead_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:e886d5ebad7ac27623069fe464c908a26b1beeaadc8ec57f6612e2b508846ead_ppc64le", + "product_id": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:e886d5ebad7ac27623069fe464c908a26b1beeaadc8ec57f6612e2b508846ead_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-entrypoint-rhel8@sha256:e886d5ebad7ac27623069fe464c908a26b1beeaadc8ec57f6612e2b508846ead?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-events-rhel8@sha256:8de8684a69b587d1f065d6078e81a3e5341ff21c485ceaac6383aa8c517fe0b3_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-events-rhel8@sha256:8de8684a69b587d1f065d6078e81a3e5341ff21c485ceaac6383aa8c517fe0b3_ppc64le", + "product_id": "openshift-pipelines/pipelines-events-rhel8@sha256:8de8684a69b587d1f065d6078e81a3e5341ff21c485ceaac6383aa8c517fe0b3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-events-rhel8@sha256:8de8684a69b587d1f065d6078e81a3e5341ff21c485ceaac6383aa8c517fe0b3?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-events-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-git-init-rhel8@sha256:f9f11063dce92b9dde7616b7fe994d91e19d3b4cc50aa36d003fb658c2efaffd_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-git-init-rhel8@sha256:f9f11063dce92b9dde7616b7fe994d91e19d3b4cc50aa36d003fb658c2efaffd_ppc64le", + "product_id": "openshift-pipelines/pipelines-git-init-rhel8@sha256:f9f11063dce92b9dde7616b7fe994d91e19d3b4cc50aa36d003fb658c2efaffd_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-git-init-rhel8@sha256:f9f11063dce92b9dde7616b7fe994d91e19d3b4cc50aa36d003fb658c2efaffd?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel8&tag=v1.12.1-2" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:5790386713432c09382d7acbbaf603a95c7098fb2f6af9f88822ce50c5af0760_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:5790386713432c09382d7acbbaf603a95c7098fb2f6af9f88822ce50c5af0760_ppc64le", + "product_id": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:5790386713432c09382d7acbbaf603a95c7098fb2f6af9f88822ce50c5af0760_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-hub-api-rhel8@sha256:5790386713432c09382d7acbbaf603a95c7098fb2f6af9f88822ce50c5af0760?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel8&tag=v1.12.1-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:2beb349996a33481911d905a899be11b59d5cd4c3a16f7c37f0fc67eb1ae090b_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:2beb349996a33481911d905a899be11b59d5cd4c3a16f7c37f0fc67eb1ae090b_ppc64le", + "product_id": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:2beb349996a33481911d905a899be11b59d5cd4c3a16f7c37f0fc67eb1ae090b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-hub-db-migration-rhel8@sha256:2beb349996a33481911d905a899be11b59d5cd4c3a16f7c37f0fc67eb1ae090b?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel8&tag=v1.12.1-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:dd0fb9390ecb2e23f61b57bfe3fb896596b57a5cda963250cdbf0d145a536a86_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:dd0fb9390ecb2e23f61b57bfe3fb896596b57a5cda963250cdbf0d145a536a86_ppc64le", + "product_id": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:dd0fb9390ecb2e23f61b57bfe3fb896596b57a5cda963250cdbf0d145a536a86_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-hub-ui-rhel8@sha256:dd0fb9390ecb2e23f61b57bfe3fb896596b57a5cda963250cdbf0d145a536a86?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel8&tag=v1.12.1-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-nop-rhel8@sha256:487cc30c2c670aba327b729db1299f483e047b607db676b5a3ee706849831bda_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-nop-rhel8@sha256:487cc30c2c670aba327b729db1299f483e047b607db676b5a3ee706849831bda_ppc64le", + "product_id": "openshift-pipelines/pipelines-nop-rhel8@sha256:487cc30c2c670aba327b729db1299f483e047b607db676b5a3ee706849831bda_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-nop-rhel8@sha256:487cc30c2c670aba327b729db1299f483e047b607db676b5a3ee706849831bda?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-nop-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-operator-bundle@sha256:d2909feede4924df75047a0c0c0a836b8b6efe4e0da083d1878fb2e7e0c23507_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-operator-bundle@sha256:d2909feede4924df75047a0c0c0a836b8b6efe4e0da083d1878fb2e7e0c23507_ppc64le", + "product_id": "openshift-pipelines/pipelines-operator-bundle@sha256:d2909feede4924df75047a0c0c0a836b8b6efe4e0da083d1878fb2e7e0c23507_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-operator-bundle@sha256:d2909feede4924df75047a0c0c0a836b8b6efe4e0da083d1878fb2e7e0c23507?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-bundle&tag=v1.12.1-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:2f158c95e2018b79a8dbe9b5164bce3319182b84cef8859697e95b9aa1012c1a_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:2f158c95e2018b79a8dbe9b5164bce3319182b84cef8859697e95b9aa1012c1a_ppc64le", + "product_id": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:2f158c95e2018b79a8dbe9b5164bce3319182b84cef8859697e95b9aa1012c1a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-operator-proxy-rhel8@sha256:2f158c95e2018b79a8dbe9b5164bce3319182b84cef8859697e95b9aa1012c1a?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel8&tag=v1.12.1-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:c4e2b44ae685e9cde43dcb8964337c81acf0e519f205d0366c8a0fb12cce075b_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:c4e2b44ae685e9cde43dcb8964337c81acf0e519f205d0366c8a0fb12cce075b_ppc64le", + "product_id": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:c4e2b44ae685e9cde43dcb8964337c81acf0e519f205d0366c8a0fb12cce075b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-operator-webhook-rhel8@sha256:c4e2b44ae685e9cde43dcb8964337c81acf0e519f205d0366c8a0fb12cce075b?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel8&tag=v1.12.1-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:0aa1ea10b71db84fb46127d81891cebb98fef546c45c276fefda79133992eaa3_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:0aa1ea10b71db84fb46127d81891cebb98fef546c45c276fefda79133992eaa3_ppc64le", + "product_id": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:0aa1ea10b71db84fb46127d81891cebb98fef546c45c276fefda79133992eaa3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-pipelines-as-code-rhel8@sha256:0aa1ea10b71db84fb46127d81891cebb98fef546c45c276fefda79133992eaa3?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-rhel8&tag=v1.12.1-7" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:6777f3a06a187632435fe720a144dec4f7ed44f326f69d409ba41302fe145eb7_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:6777f3a06a187632435fe720a144dec4f7ed44f326f69d409ba41302fe145eb7_ppc64le", + "product_id": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:6777f3a06a187632435fe720a144dec4f7ed44f326f69d409ba41302fe145eb7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-resolvers-rhel8@sha256:6777f3a06a187632435fe720a144dec4f7ed44f326f69d409ba41302fe145eb7?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-results-api-rhel8@sha256:7a4c0a4be506ea572c4e92dcf982e512b457ac407e50f6e1918222e74e547998_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-results-api-rhel8@sha256:7a4c0a4be506ea572c4e92dcf982e512b457ac407e50f6e1918222e74e547998_ppc64le", + "product_id": "openshift-pipelines/pipelines-results-api-rhel8@sha256:7a4c0a4be506ea572c4e92dcf982e512b457ac407e50f6e1918222e74e547998_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-results-api-rhel8@sha256:7a4c0a4be506ea572c4e92dcf982e512b457ac407e50f6e1918222e74e547998?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel8&tag=v1.12.1-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:364bd3b69dcd4e362daca5b28a2f663537db35491566600683b42baf65ae0a3b_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:364bd3b69dcd4e362daca5b28a2f663537db35491566600683b42baf65ae0a3b_ppc64le", + "product_id": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:364bd3b69dcd4e362daca5b28a2f663537db35491566600683b42baf65ae0a3b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-results-watcher-rhel8@sha256:364bd3b69dcd4e362daca5b28a2f663537db35491566600683b42baf65ae0a3b?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel8&tag=v1.12.1-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-rhel8-operator@sha256:6431d010afbeecaa84dd29a5df6271ee886aed8df8f702d55b066858f4fa5510_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-rhel8-operator@sha256:6431d010afbeecaa84dd29a5df6271ee886aed8df8f702d55b066858f4fa5510_ppc64le", + "product_id": "openshift-pipelines/pipelines-rhel8-operator@sha256:6431d010afbeecaa84dd29a5df6271ee886aed8df8f702d55b066858f4fa5510_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-rhel8-operator@sha256:6431d010afbeecaa84dd29a5df6271ee886aed8df8f702d55b066858f4fa5510?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-rhel8-operator&tag=v1.12.1-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:a9259b212e388a3648a5236a8597262e732a47c26b2040581dbb8f101dc226b4_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:a9259b212e388a3648a5236a8597262e732a47c26b2040581dbb8f101dc226b4_ppc64le", + "product_id": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:a9259b212e388a3648a5236a8597262e732a47c26b2040581dbb8f101dc226b4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-serve-tkn-cli-rhel8@sha256:a9259b212e388a3648a5236a8597262e732a47c26b2040581dbb8f101dc226b4?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel8&tag=v1.12.1-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:3f199873cd481ff2a4e57f42c4e2e5831a6d586ac2f784e7376fae437ea7dfa8_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:3f199873cd481ff2a4e57f42c4e2e5831a6d586ac2f784e7376fae437ea7dfa8_ppc64le", + "product_id": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:3f199873cd481ff2a4e57f42c4e2e5831a6d586ac2f784e7376fae437ea7dfa8_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-controller-rhel8@sha256:3f199873cd481ff2a4e57f42c4e2e5831a6d586ac2f784e7376fae437ea7dfa8?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:e61d5775a496c35e97b5245bd4ad11ee67ecb0d1e65e2d155b51723d66ff2588_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:e61d5775a496c35e97b5245bd4ad11ee67ecb0d1e65e2d155b51723d66ff2588_ppc64le", + "product_id": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:e61d5775a496c35e97b5245bd4ad11ee67ecb0d1e65e2d155b51723d66ff2588_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-core-interceptors-rhel8@sha256:e61d5775a496c35e97b5245bd4ad11ee67ecb0d1e65e2d155b51723d66ff2588?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:e75a24593e79a36d593ec3818573875898561b327f74ee96fc1dd5124f9f7a19_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:e75a24593e79a36d593ec3818573875898561b327f74ee96fc1dd5124f9f7a19_ppc64le", + "product_id": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:e75a24593e79a36d593ec3818573875898561b327f74ee96fc1dd5124f9f7a19_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-eventlistenersink-rhel8@sha256:e75a24593e79a36d593ec3818573875898561b327f74ee96fc1dd5124f9f7a19?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:8affee75c32087f61e1ecbe77ebd08269aa36d7ceaf5fb0ae1e9982f2488c39a_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:8affee75c32087f61e1ecbe77ebd08269aa36d7ceaf5fb0ae1e9982f2488c39a_ppc64le", + "product_id": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:8affee75c32087f61e1ecbe77ebd08269aa36d7ceaf5fb0ae1e9982f2488c39a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-webhook-rhel8@sha256:8affee75c32087f61e1ecbe77ebd08269aa36d7ceaf5fb0ae1e9982f2488c39a?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-webhook-rhel8@sha256:bde79fe3e2cd0bf3142f41f7c804e97cdd88cb24ee34d60509fa83efc4877ecc_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-webhook-rhel8@sha256:bde79fe3e2cd0bf3142f41f7c804e97cdd88cb24ee34d60509fa83efc4877ecc_ppc64le", + "product_id": "openshift-pipelines/pipelines-webhook-rhel8@sha256:bde79fe3e2cd0bf3142f41f7c804e97cdd88cb24ee34d60509fa83efc4877ecc_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-webhook-rhel8@sha256:bde79fe3e2cd0bf3142f41f7c804e97cdd88cb24ee34d60509fa83efc4877ecc?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:e2790658d28dd41417c69476daf1d3e6f6228ed73ed07bc20aed1c5d9ff382eb_ppc64le", + "product": { + "name": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:e2790658d28dd41417c69476daf1d3e6f6228ed73ed07bc20aed1c5d9ff382eb_ppc64le", + "product_id": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:e2790658d28dd41417c69476daf1d3e6f6228ed73ed07bc20aed1c5d9ff382eb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-workingdirinit-rhel8@sha256:e2790658d28dd41417c69476daf1d3e6f6228ed73ed07bc20aed1c5d9ff382eb?arch=ppc64le&repository_url=registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel8&tag=v1.12.1-5" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:2ea77b758529e064dae4d1bcd5b326138f86735e216d1306a4e2c7cac00f3134_amd64", + "product": { + "name": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:2ea77b758529e064dae4d1bcd5b326138f86735e216d1306a4e2c7cac00f3134_amd64", + "product_id": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:2ea77b758529e064dae4d1bcd5b326138f86735e216d1306a4e2c7cac00f3134_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-chains-controller-rhel8@sha256:2ea77b758529e064dae4d1bcd5b326138f86735e216d1306a4e2c7cac00f3134?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-chains-controller-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:1aa2ec69df67db06e4240b27f9509a367ab030df653629a6537508e22a6576e5_amd64", + "product": { + "name": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:1aa2ec69df67db06e4240b27f9509a367ab030df653629a6537508e22a6576e5_amd64", + "product_id": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:1aa2ec69df67db06e4240b27f9509a367ab030df653629a6537508e22a6576e5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-cli-tkn-rhel8@sha256:1aa2ec69df67db06e4240b27f9509a367ab030df653629a6537508e22a6576e5?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel8&tag=v1.12.1-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-controller-rhel8@sha256:dff11111aa116706c4805c8480f5a12058ed59b2776858b19c0e01168d01cc14_amd64", + "product": { + "name": "openshift-pipelines/pipelines-controller-rhel8@sha256:dff11111aa116706c4805c8480f5a12058ed59b2776858b19c0e01168d01cc14_amd64", + "product_id": "openshift-pipelines/pipelines-controller-rhel8@sha256:dff11111aa116706c4805c8480f5a12058ed59b2776858b19c0e01168d01cc14_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-controller-rhel8@sha256:dff11111aa116706c4805c8480f5a12058ed59b2776858b19c0e01168d01cc14?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-controller-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:669b7e4241129e9336c23da8fd8ebeed5464d65945ee284e7131d48da99890b4_amd64", + "product": { + "name": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:669b7e4241129e9336c23da8fd8ebeed5464d65945ee284e7131d48da99890b4_amd64", + "product_id": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:669b7e4241129e9336c23da8fd8ebeed5464d65945ee284e7131d48da99890b4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-entrypoint-rhel8@sha256:669b7e4241129e9336c23da8fd8ebeed5464d65945ee284e7131d48da99890b4?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-entrypoint-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-events-rhel8@sha256:8b4611e27d99bde9fb579a1bc8721ab6d52f17bfb81f2454434c5ed19a98a2ea_amd64", + "product": { + "name": "openshift-pipelines/pipelines-events-rhel8@sha256:8b4611e27d99bde9fb579a1bc8721ab6d52f17bfb81f2454434c5ed19a98a2ea_amd64", + "product_id": "openshift-pipelines/pipelines-events-rhel8@sha256:8b4611e27d99bde9fb579a1bc8721ab6d52f17bfb81f2454434c5ed19a98a2ea_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-events-rhel8@sha256:8b4611e27d99bde9fb579a1bc8721ab6d52f17bfb81f2454434c5ed19a98a2ea?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-events-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-git-init-rhel8@sha256:07586965cffa016dafc2847be858c8587abff1fedbf2b2df748cd58514e3ef4b_amd64", + "product": { + "name": "openshift-pipelines/pipelines-git-init-rhel8@sha256:07586965cffa016dafc2847be858c8587abff1fedbf2b2df748cd58514e3ef4b_amd64", + "product_id": "openshift-pipelines/pipelines-git-init-rhel8@sha256:07586965cffa016dafc2847be858c8587abff1fedbf2b2df748cd58514e3ef4b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-git-init-rhel8@sha256:07586965cffa016dafc2847be858c8587abff1fedbf2b2df748cd58514e3ef4b?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel8&tag=v1.12.1-2" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:346f87d202160ba458f93207b0c66bfef3b8203d9aa48c47677c64a9ff9467d8_amd64", + "product": { + "name": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:346f87d202160ba458f93207b0c66bfef3b8203d9aa48c47677c64a9ff9467d8_amd64", + "product_id": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:346f87d202160ba458f93207b0c66bfef3b8203d9aa48c47677c64a9ff9467d8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-hub-api-rhel8@sha256:346f87d202160ba458f93207b0c66bfef3b8203d9aa48c47677c64a9ff9467d8?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-api-rhel8&tag=v1.12.1-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:4ede517f844b45e55a4a8487c754bbb9a2946a34573e844a12a9dd2f053f684e_amd64", + "product": { + "name": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:4ede517f844b45e55a4a8487c754bbb9a2946a34573e844a12a9dd2f053f684e_amd64", + "product_id": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:4ede517f844b45e55a4a8487c754bbb9a2946a34573e844a12a9dd2f053f684e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-hub-db-migration-rhel8@sha256:4ede517f844b45e55a4a8487c754bbb9a2946a34573e844a12a9dd2f053f684e?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-db-migration-rhel8&tag=v1.12.1-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:e8922f4d8c9d92d3a9aaf7e62ad135c07d5e908be6ee30ca04fc29da897dfea0_amd64", + "product": { + "name": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:e8922f4d8c9d92d3a9aaf7e62ad135c07d5e908be6ee30ca04fc29da897dfea0_amd64", + "product_id": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:e8922f4d8c9d92d3a9aaf7e62ad135c07d5e908be6ee30ca04fc29da897dfea0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-hub-ui-rhel8@sha256:e8922f4d8c9d92d3a9aaf7e62ad135c07d5e908be6ee30ca04fc29da897dfea0?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-hub-ui-rhel8&tag=v1.12.1-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-nop-rhel8@sha256:62eaf79892ebf6f8873d89f511b87d398f8f742b4f139f959a2e3f7ba99cc280_amd64", + "product": { + "name": "openshift-pipelines/pipelines-nop-rhel8@sha256:62eaf79892ebf6f8873d89f511b87d398f8f742b4f139f959a2e3f7ba99cc280_amd64", + "product_id": "openshift-pipelines/pipelines-nop-rhel8@sha256:62eaf79892ebf6f8873d89f511b87d398f8f742b4f139f959a2e3f7ba99cc280_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-nop-rhel8@sha256:62eaf79892ebf6f8873d89f511b87d398f8f742b4f139f959a2e3f7ba99cc280?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-nop-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-operator-bundle@sha256:115e99b0799fc6e0d3a14e6f1656e922111444fc23f08be11bedbec83dc86cc3_amd64", + "product": { + "name": "openshift-pipelines/pipelines-operator-bundle@sha256:115e99b0799fc6e0d3a14e6f1656e922111444fc23f08be11bedbec83dc86cc3_amd64", + "product_id": "openshift-pipelines/pipelines-operator-bundle@sha256:115e99b0799fc6e0d3a14e6f1656e922111444fc23f08be11bedbec83dc86cc3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-operator-bundle@sha256:115e99b0799fc6e0d3a14e6f1656e922111444fc23f08be11bedbec83dc86cc3?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-bundle&tag=v1.12.1-6" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:f5b391696522945fa00a55977f2f7727452549309d923bc2a7e2608bcefdb7c9_amd64", + "product": { + "name": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:f5b391696522945fa00a55977f2f7727452549309d923bc2a7e2608bcefdb7c9_amd64", + "product_id": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:f5b391696522945fa00a55977f2f7727452549309d923bc2a7e2608bcefdb7c9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-operator-proxy-rhel8@sha256:f5b391696522945fa00a55977f2f7727452549309d923bc2a7e2608bcefdb7c9?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-proxy-rhel8&tag=v1.12.1-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:031e149e550685a213fef705dc71f0f830a0fd4be42afc70f6a89d8163acbcad_amd64", + "product": { + "name": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:031e149e550685a213fef705dc71f0f830a0fd4be42afc70f6a89d8163acbcad_amd64", + "product_id": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:031e149e550685a213fef705dc71f0f830a0fd4be42afc70f6a89d8163acbcad_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-operator-webhook-rhel8@sha256:031e149e550685a213fef705dc71f0f830a0fd4be42afc70f6a89d8163acbcad?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-operator-webhook-rhel8&tag=v1.12.1-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:4fc979e5d559ca2c88999f9e0289abbfd7abff4b17f6001349aacbb8db4765a4_amd64", + "product": { + "name": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:4fc979e5d559ca2c88999f9e0289abbfd7abff4b17f6001349aacbb8db4765a4_amd64", + "product_id": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:4fc979e5d559ca2c88999f9e0289abbfd7abff4b17f6001349aacbb8db4765a4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-pipelines-as-code-rhel8@sha256:4fc979e5d559ca2c88999f9e0289abbfd7abff4b17f6001349aacbb8db4765a4?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-pipelines-as-code-rhel8&tag=v1.12.1-7" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:f127289c8505ac6d184e5c4dd16d7ed4d450a7fd7a90e19aebe3ad4845d432b9_amd64", + "product": { + "name": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:f127289c8505ac6d184e5c4dd16d7ed4d450a7fd7a90e19aebe3ad4845d432b9_amd64", + "product_id": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:f127289c8505ac6d184e5c4dd16d7ed4d450a7fd7a90e19aebe3ad4845d432b9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-resolvers-rhel8@sha256:f127289c8505ac6d184e5c4dd16d7ed4d450a7fd7a90e19aebe3ad4845d432b9?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-resolvers-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-results-api-rhel8@sha256:da7c94fef6c13de426492f80bd0e6ffaeefbc7243a52c25a0b50b13409f27ca3_amd64", + "product": { + "name": "openshift-pipelines/pipelines-results-api-rhel8@sha256:da7c94fef6c13de426492f80bd0e6ffaeefbc7243a52c25a0b50b13409f27ca3_amd64", + "product_id": "openshift-pipelines/pipelines-results-api-rhel8@sha256:da7c94fef6c13de426492f80bd0e6ffaeefbc7243a52c25a0b50b13409f27ca3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-results-api-rhel8@sha256:da7c94fef6c13de426492f80bd0e6ffaeefbc7243a52c25a0b50b13409f27ca3?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-api-rhel8&tag=v1.12.1-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:b79cad87c2c29dfaa06921389a7f844a129f7ca565fc04d58db3a17ee6aed575_amd64", + "product": { + "name": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:b79cad87c2c29dfaa06921389a7f844a129f7ca565fc04d58db3a17ee6aed575_amd64", + "product_id": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:b79cad87c2c29dfaa06921389a7f844a129f7ca565fc04d58db3a17ee6aed575_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-results-watcher-rhel8@sha256:b79cad87c2c29dfaa06921389a7f844a129f7ca565fc04d58db3a17ee6aed575?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-results-watcher-rhel8&tag=v1.12.1-3" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-rhel8-operator@sha256:9cb6891d5ed9bbe719b927b8c5bb1156fa37cf73cb539d2aedee7685dd95b8fa_amd64", + "product": { + "name": "openshift-pipelines/pipelines-rhel8-operator@sha256:9cb6891d5ed9bbe719b927b8c5bb1156fa37cf73cb539d2aedee7685dd95b8fa_amd64", + "product_id": "openshift-pipelines/pipelines-rhel8-operator@sha256:9cb6891d5ed9bbe719b927b8c5bb1156fa37cf73cb539d2aedee7685dd95b8fa_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-rhel8-operator@sha256:9cb6891d5ed9bbe719b927b8c5bb1156fa37cf73cb539d2aedee7685dd95b8fa?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-rhel8-operator&tag=v1.12.1-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:c986e1df834c8862a80390f8a605647d3a6f50e5fc1a13c6d92d2a89477f057e_amd64", + "product": { + "name": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:c986e1df834c8862a80390f8a605647d3a6f50e5fc1a13c6d92d2a89477f057e_amd64", + "product_id": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:c986e1df834c8862a80390f8a605647d3a6f50e5fc1a13c6d92d2a89477f057e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-serve-tkn-cli-rhel8@sha256:c986e1df834c8862a80390f8a605647d3a6f50e5fc1a13c6d92d2a89477f057e?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-serve-tkn-cli-rhel8&tag=v1.12.1-4" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:70eabeabda582b788dc35b38c56e346f1eb1e03e802122f3dbebc03a3fe10b48_amd64", + "product": { + "name": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:70eabeabda582b788dc35b38c56e346f1eb1e03e802122f3dbebc03a3fe10b48_amd64", + "product_id": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:70eabeabda582b788dc35b38c56e346f1eb1e03e802122f3dbebc03a3fe10b48_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-controller-rhel8@sha256:70eabeabda582b788dc35b38c56e346f1eb1e03e802122f3dbebc03a3fe10b48?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-controller-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:939d34be2719f922c797937f83c94a3f42c013766eb2e4cf4df9d7afc1d33993_amd64", + "product": { + "name": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:939d34be2719f922c797937f83c94a3f42c013766eb2e4cf4df9d7afc1d33993_amd64", + "product_id": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:939d34be2719f922c797937f83c94a3f42c013766eb2e4cf4df9d7afc1d33993_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-core-interceptors-rhel8@sha256:939d34be2719f922c797937f83c94a3f42c013766eb2e4cf4df9d7afc1d33993?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-core-interceptors-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:a7f5864d2be8ed24e4e1edd517b9ba60a7f385aa556841dc4f1f19a9e37e8f69_amd64", + "product": { + "name": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:a7f5864d2be8ed24e4e1edd517b9ba60a7f385aa556841dc4f1f19a9e37e8f69_amd64", + "product_id": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:a7f5864d2be8ed24e4e1edd517b9ba60a7f385aa556841dc4f1f19a9e37e8f69_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-eventlistenersink-rhel8@sha256:a7f5864d2be8ed24e4e1edd517b9ba60a7f385aa556841dc4f1f19a9e37e8f69?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:993b6cbb4990ee9355ce505aac2882a72481fa6a8c1bdb2114bd435167ae5fb3_amd64", + "product": { + "name": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:993b6cbb4990ee9355ce505aac2882a72481fa6a8c1bdb2114bd435167ae5fb3_amd64", + "product_id": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:993b6cbb4990ee9355ce505aac2882a72481fa6a8c1bdb2114bd435167ae5fb3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-triggers-webhook-rhel8@sha256:993b6cbb4990ee9355ce505aac2882a72481fa6a8c1bdb2114bd435167ae5fb3?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-triggers-webhook-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-webhook-rhel8@sha256:fcacefc31f869dcb0287a54eeafcb4a44db8c13697ed486f2fcb5b3aa6b47041_amd64", + "product": { + "name": "openshift-pipelines/pipelines-webhook-rhel8@sha256:fcacefc31f869dcb0287a54eeafcb4a44db8c13697ed486f2fcb5b3aa6b47041_amd64", + "product_id": "openshift-pipelines/pipelines-webhook-rhel8@sha256:fcacefc31f869dcb0287a54eeafcb4a44db8c13697ed486f2fcb5b3aa6b47041_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-webhook-rhel8@sha256:fcacefc31f869dcb0287a54eeafcb4a44db8c13697ed486f2fcb5b3aa6b47041?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-webhook-rhel8&tag=v1.12.1-5" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:26fb9b49f33fda7c7fa68a94db45210fa27119ac41376de9deef9af104bed059_amd64", + "product": { + "name": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:26fb9b49f33fda7c7fa68a94db45210fa27119ac41376de9deef9af104bed059_amd64", + "product_id": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:26fb9b49f33fda7c7fa68a94db45210fa27119ac41376de9deef9af104bed059_amd64", + "product_identification_helper": { + "purl": "pkg:oci/pipelines-workingdirinit-rhel8@sha256:26fb9b49f33fda7c7fa68a94db45210fa27119ac41376de9deef9af104bed059?arch=amd64&repository_url=registry.redhat.io/openshift-pipelines/pipelines-workingdirinit-rhel8&tag=v1.12.1-5" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:f2fad967d9f9d6f8e8b9dbec3e2a581a43b64f02fdc584750e206674d655dd5f_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:f2fad967d9f9d6f8e8b9dbec3e2a581a43b64f02fdc584750e206674d655dd5f_s390x", + "product_id": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:f2fad967d9f9d6f8e8b9dbec3e2a581a43b64f02fdc584750e206674d655dd5f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-central-db-rhel8@sha256:f2fad967d9f9d6f8e8b9dbec3e2a581a43b64f02fdc584750e206674d655dd5f?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8&tag=4.2.2-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:7f5898e7d868865d56b91f81d314bdc41a265e177f741dd05d4a9dc3b74d54bb_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:7f5898e7d868865d56b91f81d314bdc41a265e177f741dd05d4a9dc3b74d54bb_s390x", + "product_id": "advanced-cluster-security/rhacs-collector-rhel8@sha256:7f5898e7d868865d56b91f81d314bdc41a265e177f741dd05d4a9dc3b74d54bb_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-collector-rhel8@sha256:7f5898e7d868865d56b91f81d314bdc41a265e177f741dd05d4a9dc3b74d54bb?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8&tag=4.2.2-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:0572022184db58987b3abb065f0abac5368d7163d671e287151986a4b18898cf_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:0572022184db58987b3abb065f0abac5368d7163d671e287151986a4b18898cf_s390x", + "product_id": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:0572022184db58987b3abb065f0abac5368d7163d671e287151986a4b18898cf_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-collector-slim-rhel8@sha256:0572022184db58987b3abb065f0abac5368d7163d671e287151986a4b18898cf?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-collector-slim-rhel8&tag=4.2.2-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:f92ebfda68d49b1d0460cda21d8ccb4b5c9c88224b85e0aca9c2f6c29e195445_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:f92ebfda68d49b1d0460cda21d8ccb4b5c9c88224b85e0aca9c2f6c29e195445_s390x", + "product_id": "advanced-cluster-security/rhacs-main-rhel8@sha256:f92ebfda68d49b1d0460cda21d8ccb4b5c9c88224b85e0aca9c2f6c29e195445_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-main-rhel8@sha256:f92ebfda68d49b1d0460cda21d8ccb4b5c9c88224b85e0aca9c2f6c29e195445?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8&tag=4.2.2-4" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:9a029334191c6b5b15df35e1959b2860da68ac3673ef8009bd54189e685a3b03_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:9a029334191c6b5b15df35e1959b2860da68ac3673ef8009bd54189e685a3b03_s390x", + "product_id": "advanced-cluster-security/rhacs-operator-bundle@sha256:9a029334191c6b5b15df35e1959b2860da68ac3673ef8009bd54189e685a3b03_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-operator-bundle@sha256:9a029334191c6b5b15df35e1959b2860da68ac3673ef8009bd54189e685a3b03?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle&tag=4.2.2-5" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:772b19a562fe52c709532b487233cfbfa8cee16f12da309fd4432df04792f32c_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:772b19a562fe52c709532b487233cfbfa8cee16f12da309fd4432df04792f32c_s390x", + "product_id": "advanced-cluster-security/rhacs-rhel8-operator@sha256:772b19a562fe52c709532b487233cfbfa8cee16f12da309fd4432df04792f32c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-rhel8-operator@sha256:772b19a562fe52c709532b487233cfbfa8cee16f12da309fd4432df04792f32c?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator&tag=4.2.2-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:fab7366274d9d9d903ecc42bbb0219954481eb2a9a43cbb046df9f31f522c4b4_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:fab7366274d9d9d903ecc42bbb0219954481eb2a9a43cbb046df9f31f522c4b4_s390x", + "product_id": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:fab7366274d9d9d903ecc42bbb0219954481eb2a9a43cbb046df9f31f522c4b4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-roxctl-rhel8@sha256:fab7366274d9d9d903ecc42bbb0219954481eb2a9a43cbb046df9f31f522c4b4?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8&tag=4.2.2-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:1d6df1627b7cbbe659afdc40c395fd8fe85f237bdc58fc86bb589ca8a5995141_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:1d6df1627b7cbbe659afdc40c395fd8fe85f237bdc58fc86bb589ca8a5995141_s390x", + "product_id": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:1d6df1627b7cbbe659afdc40c395fd8fe85f237bdc58fc86bb589ca8a5995141_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-rhel8@sha256:1d6df1627b7cbbe659afdc40c395fd8fe85f237bdc58fc86bb589ca8a5995141?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8&tag=4.2.2-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:1dc2e9076e32731506a39472bd045f90474f22a7a2fb0c0dbeca2942c4e8b06a_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:1dc2e9076e32731506a39472bd045f90474f22a7a2fb0c0dbeca2942c4e8b06a_s390x", + "product_id": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:1dc2e9076e32731506a39472bd045f90474f22a7a2fb0c0dbeca2942c4e8b06a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256:1dc2e9076e32731506a39472bd045f90474f22a7a2fb0c0dbeca2942c4e8b06a?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8&tag=4.2.2-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:62f346b0b81423603f6804de7938106653dc6fed6c22d9660426869cdbbda0ed_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:62f346b0b81423603f6804de7938106653dc6fed6c22d9660426869cdbbda0ed_s390x", + "product_id": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:62f346b0b81423603f6804de7938106653dc6fed6c22d9660426869cdbbda0ed_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256:62f346b0b81423603f6804de7938106653dc6fed6c22d9660426869cdbbda0ed?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8&tag=4.2.2-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4bc615a0954e2514c7266a639bcf0dedc290cf8d464738143ce73a5711e9dd66_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4bc615a0954e2514c7266a639bcf0dedc290cf8d464738143ce73a5711e9dd66_s390x", + "product_id": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4bc615a0954e2514c7266a639bcf0dedc290cf8d464738143ce73a5711e9dd66_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256:4bc615a0954e2514c7266a639bcf0dedc290cf8d464738143ce73a5711e9dd66?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8&tag=4.2.2-3" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:8f37c6215c27e7231546a97987b471bae5f3f5cd7458989cc9f032d7429ce9a5_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:8f37c6215c27e7231546a97987b471bae5f3f5cd7458989cc9f032d7429ce9a5_amd64", + "product_id": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:8f37c6215c27e7231546a97987b471bae5f3f5cd7458989cc9f032d7429ce9a5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-central-db-rhel8@sha256:8f37c6215c27e7231546a97987b471bae5f3f5cd7458989cc9f032d7429ce9a5?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8&tag=4.2.2-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:0fc1a13e6960e5077ae351cd6f12c65cc06fb9526dc9261eed98345e7b9a98c0_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:0fc1a13e6960e5077ae351cd6f12c65cc06fb9526dc9261eed98345e7b9a98c0_amd64", + "product_id": "advanced-cluster-security/rhacs-collector-rhel8@sha256:0fc1a13e6960e5077ae351cd6f12c65cc06fb9526dc9261eed98345e7b9a98c0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-collector-rhel8@sha256:0fc1a13e6960e5077ae351cd6f12c65cc06fb9526dc9261eed98345e7b9a98c0?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8&tag=4.2.2-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:13315f5c0db23887865ac2d310bd33b6258ac409d185209656531bc0b1fa0b2a_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:13315f5c0db23887865ac2d310bd33b6258ac409d185209656531bc0b1fa0b2a_amd64", + "product_id": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:13315f5c0db23887865ac2d310bd33b6258ac409d185209656531bc0b1fa0b2a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-collector-slim-rhel8@sha256:13315f5c0db23887865ac2d310bd33b6258ac409d185209656531bc0b1fa0b2a?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-collector-slim-rhel8&tag=4.2.2-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:fd758a96e8b07884a9ecd9e3b948889bb9004af3fbe6a370b6f54baed179797c_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:fd758a96e8b07884a9ecd9e3b948889bb9004af3fbe6a370b6f54baed179797c_amd64", + "product_id": "advanced-cluster-security/rhacs-main-rhel8@sha256:fd758a96e8b07884a9ecd9e3b948889bb9004af3fbe6a370b6f54baed179797c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-main-rhel8@sha256:fd758a96e8b07884a9ecd9e3b948889bb9004af3fbe6a370b6f54baed179797c?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8&tag=4.2.2-4" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:75148e16a364e4f67ecb8e914fc16b7ca4112c4e844b0d361a3feb88468f1215_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:75148e16a364e4f67ecb8e914fc16b7ca4112c4e844b0d361a3feb88468f1215_amd64", + "product_id": "advanced-cluster-security/rhacs-operator-bundle@sha256:75148e16a364e4f67ecb8e914fc16b7ca4112c4e844b0d361a3feb88468f1215_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-operator-bundle@sha256:75148e16a364e4f67ecb8e914fc16b7ca4112c4e844b0d361a3feb88468f1215?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle&tag=4.2.2-5" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:31d38c18be2020f49c28dee55ca92fd14237c6b9e3f54d7b0d6f1ded0ed4c372_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:31d38c18be2020f49c28dee55ca92fd14237c6b9e3f54d7b0d6f1ded0ed4c372_amd64", + "product_id": "advanced-cluster-security/rhacs-rhel8-operator@sha256:31d38c18be2020f49c28dee55ca92fd14237c6b9e3f54d7b0d6f1ded0ed4c372_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-rhel8-operator@sha256:31d38c18be2020f49c28dee55ca92fd14237c6b9e3f54d7b0d6f1ded0ed4c372?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator&tag=4.2.2-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:fec8341ce138808c01cb45838a6e494bf99d079a5009b622a8e4b0f3c1beee48_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:fec8341ce138808c01cb45838a6e494bf99d079a5009b622a8e4b0f3c1beee48_amd64", + "product_id": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:fec8341ce138808c01cb45838a6e494bf99d079a5009b622a8e4b0f3c1beee48_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-roxctl-rhel8@sha256:fec8341ce138808c01cb45838a6e494bf99d079a5009b622a8e4b0f3c1beee48?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8&tag=4.2.2-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:fb3a7a2124196239fefe325f45132797d2bb4795de89a26e78a53ff8e0d9094e_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:fb3a7a2124196239fefe325f45132797d2bb4795de89a26e78a53ff8e0d9094e_amd64", + "product_id": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:fb3a7a2124196239fefe325f45132797d2bb4795de89a26e78a53ff8e0d9094e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-rhel8@sha256:fb3a7a2124196239fefe325f45132797d2bb4795de89a26e78a53ff8e0d9094e?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8&tag=4.2.2-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:3b6df0593ce67833341a1ba58571753dbd20edc28490cf5647ea4f3d3a36c33e_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:3b6df0593ce67833341a1ba58571753dbd20edc28490cf5647ea4f3d3a36c33e_amd64", + "product_id": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:3b6df0593ce67833341a1ba58571753dbd20edc28490cf5647ea4f3d3a36c33e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256:3b6df0593ce67833341a1ba58571753dbd20edc28490cf5647ea4f3d3a36c33e?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8&tag=4.2.2-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:790f6345dc5a23855b2c3a2f0f1b07d6590659b8ff377833ce4d82f681056275_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:790f6345dc5a23855b2c3a2f0f1b07d6590659b8ff377833ce4d82f681056275_amd64", + "product_id": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:790f6345dc5a23855b2c3a2f0f1b07d6590659b8ff377833ce4d82f681056275_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256:790f6345dc5a23855b2c3a2f0f1b07d6590659b8ff377833ce4d82f681056275?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8&tag=4.2.2-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:3e0076d3574ecf23354a340f808926c4dc9e338920daa83085764c0f2a092025_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:3e0076d3574ecf23354a340f808926c4dc9e338920daa83085764c0f2a092025_amd64", + "product_id": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:3e0076d3574ecf23354a340f808926c4dc9e338920daa83085764c0f2a092025_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256:3e0076d3574ecf23354a340f808926c4dc9e338920daa83085764c0f2a092025?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8&tag=4.2.2-3" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:925bdf348da6851a2f0efd903ce3061b7d0ed7b17dee8aa76e4e3d75f0b28150_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:925bdf348da6851a2f0efd903ce3061b7d0ed7b17dee8aa76e4e3d75f0b28150_ppc64le", + "product_id": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:925bdf348da6851a2f0efd903ce3061b7d0ed7b17dee8aa76e4e3d75f0b28150_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-central-db-rhel8@sha256:925bdf348da6851a2f0efd903ce3061b7d0ed7b17dee8aa76e4e3d75f0b28150?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8&tag=4.2.2-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:f591a221d2dbe643b6d975d1a2e9b9289173e2e845a838ab850debe20c957f11_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:f591a221d2dbe643b6d975d1a2e9b9289173e2e845a838ab850debe20c957f11_ppc64le", + "product_id": "advanced-cluster-security/rhacs-collector-rhel8@sha256:f591a221d2dbe643b6d975d1a2e9b9289173e2e845a838ab850debe20c957f11_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-collector-rhel8@sha256:f591a221d2dbe643b6d975d1a2e9b9289173e2e845a838ab850debe20c957f11?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8&tag=4.2.2-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:2844fcd4aa1aa285fffd24d0d07bd0e23b0927236d8d52ca51dafe3f06724850_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:2844fcd4aa1aa285fffd24d0d07bd0e23b0927236d8d52ca51dafe3f06724850_ppc64le", + "product_id": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:2844fcd4aa1aa285fffd24d0d07bd0e23b0927236d8d52ca51dafe3f06724850_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-collector-slim-rhel8@sha256:2844fcd4aa1aa285fffd24d0d07bd0e23b0927236d8d52ca51dafe3f06724850?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-collector-slim-rhel8&tag=4.2.2-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:638b97de5d0f42e63a75764430801f8c6cca99994b82a1741efb9e8a5fca34d2_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:638b97de5d0f42e63a75764430801f8c6cca99994b82a1741efb9e8a5fca34d2_ppc64le", + "product_id": "advanced-cluster-security/rhacs-main-rhel8@sha256:638b97de5d0f42e63a75764430801f8c6cca99994b82a1741efb9e8a5fca34d2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-main-rhel8@sha256:638b97de5d0f42e63a75764430801f8c6cca99994b82a1741efb9e8a5fca34d2?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8&tag=4.2.2-4" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:48fa08e690f9b2fbbde8fada15c9b124eb1fca868040369a73c98b95a9eff301_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:48fa08e690f9b2fbbde8fada15c9b124eb1fca868040369a73c98b95a9eff301_ppc64le", + "product_id": "advanced-cluster-security/rhacs-operator-bundle@sha256:48fa08e690f9b2fbbde8fada15c9b124eb1fca868040369a73c98b95a9eff301_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-operator-bundle@sha256:48fa08e690f9b2fbbde8fada15c9b124eb1fca868040369a73c98b95a9eff301?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle&tag=4.2.2-5" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:103b5cd32930836320eea0b28532ff9160cea7b02ddbb6af47df7433f7bb47c4_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:103b5cd32930836320eea0b28532ff9160cea7b02ddbb6af47df7433f7bb47c4_ppc64le", + "product_id": "advanced-cluster-security/rhacs-rhel8-operator@sha256:103b5cd32930836320eea0b28532ff9160cea7b02ddbb6af47df7433f7bb47c4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-rhel8-operator@sha256:103b5cd32930836320eea0b28532ff9160cea7b02ddbb6af47df7433f7bb47c4?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator&tag=4.2.2-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:9e05ce576af3755eb9db6b38c01bd851b2335f4cbd116338ebcac4e3ed6a1ab0_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:9e05ce576af3755eb9db6b38c01bd851b2335f4cbd116338ebcac4e3ed6a1ab0_ppc64le", + "product_id": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:9e05ce576af3755eb9db6b38c01bd851b2335f4cbd116338ebcac4e3ed6a1ab0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-roxctl-rhel8@sha256:9e05ce576af3755eb9db6b38c01bd851b2335f4cbd116338ebcac4e3ed6a1ab0?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8&tag=4.2.2-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:2ed5dd9abad665d668416feda3ad4bf8631a083fe4616e502245bdd679388687_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:2ed5dd9abad665d668416feda3ad4bf8631a083fe4616e502245bdd679388687_ppc64le", + "product_id": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:2ed5dd9abad665d668416feda3ad4bf8631a083fe4616e502245bdd679388687_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-rhel8@sha256:2ed5dd9abad665d668416feda3ad4bf8631a083fe4616e502245bdd679388687?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8&tag=4.2.2-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4b386c2c2343fa09a4f71d4f7481b0e8daf7fcb3a3a710ff9f7c0e492070f156_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4b386c2c2343fa09a4f71d4f7481b0e8daf7fcb3a3a710ff9f7c0e492070f156_ppc64le", + "product_id": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4b386c2c2343fa09a4f71d4f7481b0e8daf7fcb3a3a710ff9f7c0e492070f156_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256:4b386c2c2343fa09a4f71d4f7481b0e8daf7fcb3a3a710ff9f7c0e492070f156?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8&tag=4.2.2-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:89ca3042eb40d7bf4ea2658e1a9f39cd507d71d469d927f48e5a36f64eff98cb_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:89ca3042eb40d7bf4ea2658e1a9f39cd507d71d469d927f48e5a36f64eff98cb_ppc64le", + "product_id": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:89ca3042eb40d7bf4ea2658e1a9f39cd507d71d469d927f48e5a36f64eff98cb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256:89ca3042eb40d7bf4ea2658e1a9f39cd507d71d469d927f48e5a36f64eff98cb?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8&tag=4.2.2-3" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2d39a1d54058d0bb181afc9218ee65698f572f3aa6c67c9cc058b23ea68cf32e_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2d39a1d54058d0bb181afc9218ee65698f572f3aa6c67c9cc058b23ea68cf32e_ppc64le", + "product_id": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2d39a1d54058d0bb181afc9218ee65698f572f3aa6c67c9cc058b23ea68cf32e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256:2d39a1d54058d0bb181afc9218ee65698f572f3aa6c67c9cc058b23ea68cf32e?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8&tag=4.2.2-3" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "toolbox-0:0.0.99.3-4.el9_0.src", + "product": { + "name": "toolbox-0:0.0.99.3-4.el9_0.src", + "product_id": "toolbox-0:0.0.99.3-4.el9_0.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox@0.0.99.3-4.el9_0?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "toolbox-0:0.0.99.3-4.el9_0.aarch64", + "product": { + "name": "toolbox-0:0.0.99.3-4.el9_0.aarch64", + "product_id": "toolbox-0:0.0.99.3-4.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox@0.0.99.3-4.el9_0?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "toolbox-tests-0:0.0.99.3-4.el9_0.aarch64", + "product": { + "name": "toolbox-tests-0:0.0.99.3-4.el9_0.aarch64", + "product_id": "toolbox-tests-0:0.0.99.3-4.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox-tests@0.0.99.3-4.el9_0?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "toolbox-debugsource-0:0.0.99.3-4.el9_0.aarch64", + "product": { + "name": "toolbox-debugsource-0:0.0.99.3-4.el9_0.aarch64", + "product_id": "toolbox-debugsource-0:0.0.99.3-4.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox-debugsource@0.0.99.3-4.el9_0?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "toolbox-debuginfo-0:0.0.99.3-4.el9_0.aarch64", + "product": { + "name": "toolbox-debuginfo-0:0.0.99.3-4.el9_0.aarch64", + "product_id": "toolbox-debuginfo-0:0.0.99.3-4.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox-debuginfo@0.0.99.3-4.el9_0?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "toolbox-0:0.0.99.3-4.el9_0.ppc64le", + "product": { + "name": "toolbox-0:0.0.99.3-4.el9_0.ppc64le", + "product_id": "toolbox-0:0.0.99.3-4.el9_0.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox@0.0.99.3-4.el9_0?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "toolbox-tests-0:0.0.99.3-4.el9_0.ppc64le", + "product": { + "name": "toolbox-tests-0:0.0.99.3-4.el9_0.ppc64le", + "product_id": "toolbox-tests-0:0.0.99.3-4.el9_0.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox-tests@0.0.99.3-4.el9_0?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "toolbox-debugsource-0:0.0.99.3-4.el9_0.ppc64le", + "product": { + "name": "toolbox-debugsource-0:0.0.99.3-4.el9_0.ppc64le", + "product_id": "toolbox-debugsource-0:0.0.99.3-4.el9_0.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox-debugsource@0.0.99.3-4.el9_0?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "toolbox-debuginfo-0:0.0.99.3-4.el9_0.ppc64le", + "product": { + "name": "toolbox-debuginfo-0:0.0.99.3-4.el9_0.ppc64le", + "product_id": "toolbox-debuginfo-0:0.0.99.3-4.el9_0.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox-debuginfo@0.0.99.3-4.el9_0?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "toolbox-0:0.0.99.3-4.el9_0.x86_64", + "product": { + "name": "toolbox-0:0.0.99.3-4.el9_0.x86_64", + "product_id": "toolbox-0:0.0.99.3-4.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox@0.0.99.3-4.el9_0?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "toolbox-tests-0:0.0.99.3-4.el9_0.x86_64", + "product": { + "name": "toolbox-tests-0:0.0.99.3-4.el9_0.x86_64", + "product_id": "toolbox-tests-0:0.0.99.3-4.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox-tests@0.0.99.3-4.el9_0?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "toolbox-debugsource-0:0.0.99.3-4.el9_0.x86_64", + "product": { + "name": "toolbox-debugsource-0:0.0.99.3-4.el9_0.x86_64", + "product_id": "toolbox-debugsource-0:0.0.99.3-4.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox-debugsource@0.0.99.3-4.el9_0?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "toolbox-debuginfo-0:0.0.99.3-4.el9_0.x86_64", + "product": { + "name": "toolbox-debuginfo-0:0.0.99.3-4.el9_0.x86_64", + "product_id": "toolbox-debuginfo-0:0.0.99.3-4.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox-debuginfo@0.0.99.3-4.el9_0?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "toolbox-0:0.0.99.3-4.el9_0.s390x", + "product": { + "name": "toolbox-0:0.0.99.3-4.el9_0.s390x", + "product_id": "toolbox-0:0.0.99.3-4.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox@0.0.99.3-4.el9_0?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "toolbox-tests-0:0.0.99.3-4.el9_0.s390x", + "product": { + "name": "toolbox-tests-0:0.0.99.3-4.el9_0.s390x", + "product_id": "toolbox-tests-0:0.0.99.3-4.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox-tests@0.0.99.3-4.el9_0?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "toolbox-debugsource-0:0.0.99.3-4.el9_0.s390x", + "product": { + "name": "toolbox-debugsource-0:0.0.99.3-4.el9_0.s390x", + "product_id": "toolbox-debugsource-0:0.0.99.3-4.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox-debugsource@0.0.99.3-4.el9_0?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "toolbox-debuginfo-0:0.0.99.3-4.el9_0.s390x", + "product": { + "name": "toolbox-debuginfo-0:0.0.99.3-4.el9_0.s390x", + "product_id": "toolbox-debuginfo-0:0.0.99.3-4.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/toolbox-debuginfo@0.0.99.3-4.el9_0?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-pipelines-client-0:1.12.1-11260.el8.src", + "product": { + "name": "openshift-pipelines-client-0:1.12.1-11260.el8.src", + "product_id": "openshift-pipelines-client-0:1.12.1-11260.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-pipelines-client@1.12.1-11260.el8?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-pipelines-client-0:1.12.1-11260.el8.x86_64", + "product": { + "name": "openshift-pipelines-client-0:1.12.1-11260.el8.x86_64", + "product_id": "openshift-pipelines-client-0:1.12.1-11260.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-pipelines-client@1.12.1-11260.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines-client-redistributable-0:1.12.1-11260.el8.x86_64", + "product": { + "name": "openshift-pipelines-client-redistributable-0:1.12.1-11260.el8.x86_64", + "product_id": "openshift-pipelines-client-redistributable-0:1.12.1-11260.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-pipelines-client-redistributable@1.12.1-11260.el8?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-pipelines-client-0:1.12.1-11260.el8.s390x", + "product": { + "name": "openshift-pipelines-client-0:1.12.1-11260.el8.s390x", + "product_id": "openshift-pipelines-client-0:1.12.1-11260.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-pipelines-client@1.12.1-11260.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines-client-redistributable-0:1.12.1-11260.el8.s390x", + "product": { + "name": "openshift-pipelines-client-redistributable-0:1.12.1-11260.el8.s390x", + "product_id": "openshift-pipelines-client-redistributable-0:1.12.1-11260.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-pipelines-client-redistributable@1.12.1-11260.el8?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-pipelines-client-0:1.12.1-11260.el8.ppc64le", + "product": { + "name": "openshift-pipelines-client-0:1.12.1-11260.el8.ppc64le", + "product_id": "openshift-pipelines-client-0:1.12.1-11260.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-pipelines-client@1.12.1-11260.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines-client-redistributable-0:1.12.1-11260.el8.ppc64le", + "product": { + "name": "openshift-pipelines-client-redistributable-0:1.12.1-11260.el8.ppc64le", + "product_id": "openshift-pipelines-client-redistributable-0:1.12.1-11260.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-pipelines-client-redistributable@1.12.1-11260.el8?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-pipelines-client-0:1.12.1-11260.el8.aarch64", + "product": { + "name": "openshift-pipelines-client-0:1.12.1-11260.el8.aarch64", + "product_id": "openshift-pipelines-client-0:1.12.1-11260.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-pipelines-client@1.12.1-11260.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "openshift-pipelines-client-redistributable-0:1.12.1-11260.el8.aarch64", + "product": { + "name": "openshift-pipelines-client-redistributable-0:1.12.1-11260.el8.aarch64", + "product_id": "openshift-pipelines-client-redistributable-0:1.12.1-11260.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-pipelines-client-redistributable@1.12.1-11260.el8?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "cryostat-tech-preview/cryostat-grafana-dashboard-rhel8@sha256:25214921951dbb2ce9eeda23ce3cce3291a789436927beff1317541a68554fa9_amd64", + "product": { + "name": "cryostat-tech-preview/cryostat-grafana-dashboard-rhel8@sha256:25214921951dbb2ce9eeda23ce3cce3291a789436927beff1317541a68554fa9_amd64", + "product_id": "cryostat-tech-preview/cryostat-grafana-dashboard-rhel8@sha256:25214921951dbb2ce9eeda23ce3cce3291a789436927beff1317541a68554fa9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cryostat-grafana-dashboard-rhel8@sha256:25214921951dbb2ce9eeda23ce3cce3291a789436927beff1317541a68554fa9?arch=amd64&repository_url=registry.redhat.io/cryostat-tech-preview/cryostat-grafana-dashboard-rhel8&tag=2.3.1-8" + } + } + }, + { + "category": "product_version", + "name": "cryostat-tech-preview/cryostat-reports-rhel8@sha256:5408e8448ab25072a2fc0a018105e52668d239b7449b9abe6c44c57c439c34a1_amd64", + "product": { + "name": "cryostat-tech-preview/cryostat-reports-rhel8@sha256:5408e8448ab25072a2fc0a018105e52668d239b7449b9abe6c44c57c439c34a1_amd64", + "product_id": "cryostat-tech-preview/cryostat-reports-rhel8@sha256:5408e8448ab25072a2fc0a018105e52668d239b7449b9abe6c44c57c439c34a1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cryostat-reports-rhel8@sha256:5408e8448ab25072a2fc0a018105e52668d239b7449b9abe6c44c57c439c34a1?arch=amd64&repository_url=registry.redhat.io/cryostat-tech-preview/cryostat-reports-rhel8&tag=2.3.1-8" + } + } + }, + { + "category": "product_version", + "name": "cryostat-tech-preview/cryostat-rhel8@sha256:90305e17793e3a1275a5611745d1c6c8b056198c3e82283b50df85e747f09193_amd64", + "product": { + "name": "cryostat-tech-preview/cryostat-rhel8@sha256:90305e17793e3a1275a5611745d1c6c8b056198c3e82283b50df85e747f09193_amd64", + "product_id": "cryostat-tech-preview/cryostat-rhel8@sha256:90305e17793e3a1275a5611745d1c6c8b056198c3e82283b50df85e747f09193_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cryostat-rhel8@sha256:90305e17793e3a1275a5611745d1c6c8b056198c3e82283b50df85e747f09193?arch=amd64&repository_url=registry.redhat.io/cryostat-tech-preview/cryostat-rhel8&tag=2.3.1-8" + } + } + }, + { + "category": "product_version", + "name": "cryostat-tech-preview/cryostat-operator-bundle@sha256:8d4dd000a817aec11eef4303c9d17bc92b809f313796ae360d00101a3a04bf86_amd64", + "product": { + "name": "cryostat-tech-preview/cryostat-operator-bundle@sha256:8d4dd000a817aec11eef4303c9d17bc92b809f313796ae360d00101a3a04bf86_amd64", + "product_id": "cryostat-tech-preview/cryostat-operator-bundle@sha256:8d4dd000a817aec11eef4303c9d17bc92b809f313796ae360d00101a3a04bf86_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cryostat-operator-bundle@sha256:8d4dd000a817aec11eef4303c9d17bc92b809f313796ae360d00101a3a04bf86?arch=amd64&repository_url=registry.redhat.io/cryostat-tech-preview/cryostat-operator-bundle&tag=2.3.1-8" + } + } + }, + { + "category": "product_version", + "name": "cryostat-tech-preview/cryostat-rhel8-operator@sha256:15459ee1c5ec24cdfaf2427d6aa3c4fe1fa89d58608217a0dbdae709c99ba877_amd64", + "product": { + "name": "cryostat-tech-preview/cryostat-rhel8-operator@sha256:15459ee1c5ec24cdfaf2427d6aa3c4fe1fa89d58608217a0dbdae709c99ba877_amd64", + "product_id": "cryostat-tech-preview/cryostat-rhel8-operator@sha256:15459ee1c5ec24cdfaf2427d6aa3c4fe1fa89d58608217a0dbdae709c99ba877_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cryostat-rhel8-operator@sha256:15459ee1c5ec24cdfaf2427d6aa3c4fe1fa89d58608217a0dbdae709c99ba877?arch=amd64&repository_url=registry.redhat.io/cryostat-tech-preview/cryostat-rhel8-operator&tag=2.3.1-11" + } + } + }, + { + "category": "product_version", + "name": "cryostat-tech-preview/jfr-datasource-rhel8@sha256:a0445fffa148a3cf471adbb288a07d175d7e2950d12c0f99cc56f709f4b60f29_amd64", + "product": { + "name": "cryostat-tech-preview/jfr-datasource-rhel8@sha256:a0445fffa148a3cf471adbb288a07d175d7e2950d12c0f99cc56f709f4b60f29_amd64", + "product_id": "cryostat-tech-preview/jfr-datasource-rhel8@sha256:a0445fffa148a3cf471adbb288a07d175d7e2950d12c0f99cc56f709f4b60f29_amd64", + "product_identification_helper": { + "purl": "pkg:oci/jfr-datasource-rhel8@sha256:a0445fffa148a3cf471adbb288a07d175d7e2950d12c0f99cc56f709f4b60f29?arch=amd64&repository_url=registry.redhat.io/cryostat-tech-preview/jfr-datasource-rhel8&tag=2.3.1-8" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "workload-availability/self-node-remediation-operator-bundle@sha256:9e8bcbff46b97f3bc1071146b8db233abd1630016e6fc0efb679df8243c6fd03_amd64", + "product": { + "name": "workload-availability/self-node-remediation-operator-bundle@sha256:9e8bcbff46b97f3bc1071146b8db233abd1630016e6fc0efb679df8243c6fd03_amd64", + "product_id": "workload-availability/self-node-remediation-operator-bundle@sha256:9e8bcbff46b97f3bc1071146b8db233abd1630016e6fc0efb679df8243c6fd03_amd64", + "product_identification_helper": { + "purl": "pkg:oci/self-node-remediation-operator-bundle@sha256:9e8bcbff46b97f3bc1071146b8db233abd1630016e6fc0efb679df8243c6fd03?arch=amd64&repository_url=registry.redhat.io/workload-availability/self-node-remediation-operator-bundle&tag=v0.7.1-6" + } + } + }, + { + "category": "product_version", + "name": "workload-availability/self-node-remediation-rhel8-operator@sha256:9b305b10d6b92ddcdddd7ec63e347bdbfb4a87f629b6490de27380f5ed9e6640_amd64", + "product": { + "name": "workload-availability/self-node-remediation-rhel8-operator@sha256:9b305b10d6b92ddcdddd7ec63e347bdbfb4a87f629b6490de27380f5ed9e6640_amd64", + "product_id": "workload-availability/self-node-remediation-rhel8-operator@sha256:9b305b10d6b92ddcdddd7ec63e347bdbfb4a87f629b6490de27380f5ed9e6640_amd64", + "product_identification_helper": { + "purl": "pkg:oci/self-node-remediation-rhel8-operator@sha256:9b305b10d6b92ddcdddd7ec63e347bdbfb4a87f629b6490de27380f5ed9e6640?arch=amd64&repository_url=registry.redhat.io/workload-availability/self-node-remediation-rhel8-operator&tag=v0.7.1-6" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "workload-availability/node-maintenance-must-gather-rhel8@sha256:21c3c638dc206d3f4a4b0295455e8f26e679a6c30a74746bc1be8d080dcf6883_amd64", + "product": { + "name": "workload-availability/node-maintenance-must-gather-rhel8@sha256:21c3c638dc206d3f4a4b0295455e8f26e679a6c30a74746bc1be8d080dcf6883_amd64", + "product_id": "workload-availability/node-maintenance-must-gather-rhel8@sha256:21c3c638dc206d3f4a4b0295455e8f26e679a6c30a74746bc1be8d080dcf6883_amd64", + "product_identification_helper": { + "purl": "pkg:oci/node-maintenance-must-gather-rhel8@sha256:21c3c638dc206d3f4a4b0295455e8f26e679a6c30a74746bc1be8d080dcf6883?arch=amd64&repository_url=registry.redhat.io/workload-availability/node-maintenance-must-gather-rhel8&tag=v5.0.1-55" + } + } + }, + { + "category": "product_version", + "name": "workload-availability/node-maintenance-operator-bundle@sha256:9fe87e1b0c49dd00a6ab0c35b68ebf641f347ac5b405d31f3c5ace02a7a30540_amd64", + "product": { + "name": "workload-availability/node-maintenance-operator-bundle@sha256:9fe87e1b0c49dd00a6ab0c35b68ebf641f347ac5b405d31f3c5ace02a7a30540_amd64", + "product_id": "workload-availability/node-maintenance-operator-bundle@sha256:9fe87e1b0c49dd00a6ab0c35b68ebf641f347ac5b405d31f3c5ace02a7a30540_amd64", + "product_identification_helper": { + "purl": "pkg:oci/node-maintenance-operator-bundle@sha256:9fe87e1b0c49dd00a6ab0c35b68ebf641f347ac5b405d31f3c5ace02a7a30540?arch=amd64&repository_url=registry.redhat.io/workload-availability/node-maintenance-operator-bundle&tag=v5.0.1-55" + } + } + }, + { + "category": "product_version", + "name": "workload-availability/node-maintenance-rhel8-operator@sha256:6aa1ce70d3d9cc464ae84efce5d0c88a81cdda713a51611be873b550842bde82_amd64", + "product": { + "name": "workload-availability/node-maintenance-rhel8-operator@sha256:6aa1ce70d3d9cc464ae84efce5d0c88a81cdda713a51611be873b550842bde82_amd64", + "product_id": "workload-availability/node-maintenance-rhel8-operator@sha256:6aa1ce70d3d9cc464ae84efce5d0c88a81cdda713a51611be873b550842bde82_amd64", + "product_identification_helper": { + "purl": "pkg:oci/node-maintenance-rhel8-operator@sha256:6aa1ce70d3d9cc464ae84efce5d0c88a81cdda713a51611be873b550842bde82?arch=amd64&repository_url=registry.redhat.io/workload-availability/node-maintenance-rhel8-operator&tag=v5.0.1-55" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "workload-availability/self-node-remediation-must-gather-rhel8@sha256:0abf7c74783c4c310937b63cf6f2965e8eb076007691176ee4d7e76b956257c2_amd64", + "product": { + "name": "workload-availability/self-node-remediation-must-gather-rhel8@sha256:0abf7c74783c4c310937b63cf6f2965e8eb076007691176ee4d7e76b956257c2_amd64", + "product_id": "workload-availability/self-node-remediation-must-gather-rhel8@sha256:0abf7c74783c4c310937b63cf6f2965e8eb076007691176ee4d7e76b956257c2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/self-node-remediation-must-gather-rhel8@sha256:0abf7c74783c4c310937b63cf6f2965e8eb076007691176ee4d7e76b956257c2?arch=amd64&repository_url=registry.redhat.io/workload-availability/self-node-remediation-must-gather-rhel8&tag=v0.5.1-45" + } + } + }, + { + "category": "product_version", + "name": "workload-availability/self-node-remediation-operator-bundle@sha256:36561e5888cd34f8fb83ceff2910141fceaa6ea290bd246125930fe183e2ebc3_amd64", + "product": { + "name": "workload-availability/self-node-remediation-operator-bundle@sha256:36561e5888cd34f8fb83ceff2910141fceaa6ea290bd246125930fe183e2ebc3_amd64", + "product_id": "workload-availability/self-node-remediation-operator-bundle@sha256:36561e5888cd34f8fb83ceff2910141fceaa6ea290bd246125930fe183e2ebc3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/self-node-remediation-operator-bundle@sha256:36561e5888cd34f8fb83ceff2910141fceaa6ea290bd246125930fe183e2ebc3?arch=amd64&repository_url=registry.redhat.io/workload-availability/self-node-remediation-operator-bundle&tag=v0.5.1-45" + } + } + }, + { + "category": "product_version", + "name": "workload-availability/self-node-remediation-rhel8-operator@sha256:8f1d095530f102c6edbcb53a9c2685a043a9c9869b7ca6c1d254dd74ee17b0a3_amd64", + "product": { + "name": "workload-availability/self-node-remediation-rhel8-operator@sha256:8f1d095530f102c6edbcb53a9c2685a043a9c9869b7ca6c1d254dd74ee17b0a3_amd64", + "product_id": "workload-availability/self-node-remediation-rhel8-operator@sha256:8f1d095530f102c6edbcb53a9c2685a043a9c9869b7ca6c1d254dd74ee17b0a3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/self-node-remediation-rhel8-operator@sha256:8f1d095530f102c6edbcb53a9c2685a043a9c9869b7ca6c1d254dd74ee17b0a3?arch=amd64&repository_url=registry.redhat.io/workload-availability/self-node-remediation-rhel8-operator&tag=v0.5.1-45" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "workload-availability/node-maintenance-operator-bundle@sha256:35d2c7c2849f89474fd5648a0d2781dde28131303cc8a597ce243a3e314fe0af_amd64", + "product": { + "name": "workload-availability/node-maintenance-operator-bundle@sha256:35d2c7c2849f89474fd5648a0d2781dde28131303cc8a597ce243a3e314fe0af_amd64", + "product_id": "workload-availability/node-maintenance-operator-bundle@sha256:35d2c7c2849f89474fd5648a0d2781dde28131303cc8a597ce243a3e314fe0af_amd64", + "product_identification_helper": { + "purl": "pkg:oci/node-maintenance-operator-bundle@sha256:35d2c7c2849f89474fd5648a0d2781dde28131303cc8a597ce243a3e314fe0af?arch=amd64&repository_url=registry.redhat.io/workload-availability/node-maintenance-operator-bundle&tag=v5.2.1-9" + } + } + }, + { + "category": "product_version", + "name": "workload-availability/node-maintenance-rhel8-operator@sha256:5075d5702c0c8ffa792b40f09787ac3e6c3be9283c179c11cc40216a194b05a5_amd64", + "product": { + "name": "workload-availability/node-maintenance-rhel8-operator@sha256:5075d5702c0c8ffa792b40f09787ac3e6c3be9283c179c11cc40216a194b05a5_amd64", + "product_id": "workload-availability/node-maintenance-rhel8-operator@sha256:5075d5702c0c8ffa792b40f09787ac3e6c3be9283c179c11cc40216a194b05a5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/node-maintenance-rhel8-operator@sha256:5075d5702c0c8ffa792b40f09787ac3e6c3be9283c179c11cc40216a194b05a5?arch=amd64&repository_url=registry.redhat.io/workload-availability/node-maintenance-rhel8-operator&tag=v5.2.1-9" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "costmanagement/costmanagement-metrics-operator-bundle@sha256:afcee273a058fa1ac7643271ee775bdc1ca5d765f0ea36af3b3a6633d9fcbd73_amd64", + "product": { + "name": "costmanagement/costmanagement-metrics-operator-bundle@sha256:afcee273a058fa1ac7643271ee775bdc1ca5d765f0ea36af3b3a6633d9fcbd73_amd64", + "product_id": "costmanagement/costmanagement-metrics-operator-bundle@sha256:afcee273a058fa1ac7643271ee775bdc1ca5d765f0ea36af3b3a6633d9fcbd73_amd64", + "product_identification_helper": { + "purl": "pkg:oci/costmanagement-metrics-operator-bundle@sha256:afcee273a058fa1ac7643271ee775bdc1ca5d765f0ea36af3b3a6633d9fcbd73?arch=amd64&repository_url=registry.redhat.io/costmanagement/costmanagement-metrics-operator-bundle&tag=3.0.1-1" + } + } + }, + { + "category": "product_version", + "name": "costmanagement/costmanagement-metrics-rhel8-operator@sha256:d5f91b20b8f00e42bfe1f2a24910d3ea56a820bc5814307c0c7fc85dfb103e09_amd64", + "product": { + "name": "costmanagement/costmanagement-metrics-rhel8-operator@sha256:d5f91b20b8f00e42bfe1f2a24910d3ea56a820bc5814307c0c7fc85dfb103e09_amd64", + "product_id": "costmanagement/costmanagement-metrics-rhel8-operator@sha256:d5f91b20b8f00e42bfe1f2a24910d3ea56a820bc5814307c0c7fc85dfb103e09_amd64", + "product_identification_helper": { + "purl": "pkg:oci/costmanagement-metrics-rhel8-operator@sha256:d5f91b20b8f00e42bfe1f2a24910d3ea56a820bc5814307c0c7fc85dfb103e09?arch=amd64&repository_url=registry.redhat.io/costmanagement/costmanagement-metrics-rhel8-operator&tag=3.0.1-1" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.src", + "product": { + "name": "varnish-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.src", + "product_id": "varnish-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.0.2-2.module%2Bel8.1.0%2B20476%2B646a44ec.3?arch=src" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.src", + "product": { + "name": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.src", + "product_id": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules@0.15.0-4.module%2Bel8%2B2481%2B4078e9d2?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.ppc64le", + "product": { + "name": "varnish-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.ppc64le", + "product_id": "varnish-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.0.2-2.module%2Bel8.1.0%2B20476%2B646a44ec.3?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-devel-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.ppc64le", + "product": { + "name": "varnish-devel-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.ppc64le", + "product_id": "varnish-devel-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.0.2-2.module%2Bel8.1.0%2B20476%2B646a44ec.3?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-docs-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.ppc64le", + "product": { + "name": "varnish-docs-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.ppc64le", + "product_id": "varnish-docs-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-docs@6.0.2-2.module%2Bel8.1.0%2B20476%2B646a44ec.3?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le", + "product": { + "name": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le", + "product_id": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules@0.15.0-4.module%2Bel8%2B2481%2B4078e9d2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le", + "product": { + "name": "varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le", + "product_id": "varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debuginfo@0.15.0-4.module%2Bel8%2B2481%2B4078e9d2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le", + "product": { + "name": "varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le", + "product_id": "varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debugsource@0.15.0-4.module%2Bel8%2B2481%2B4078e9d2?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.x86_64", + "product": { + "name": "varnish-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.x86_64", + "product_id": "varnish-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.0.2-2.module%2Bel8.1.0%2B20476%2B646a44ec.3?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-devel-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.x86_64", + "product": { + "name": "varnish-devel-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.x86_64", + "product_id": "varnish-devel-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.0.2-2.module%2Bel8.1.0%2B20476%2B646a44ec.3?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-docs-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.x86_64", + "product": { + "name": "varnish-docs-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.x86_64", + "product_id": "varnish-docs-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-docs@6.0.2-2.module%2Bel8.1.0%2B20476%2B646a44ec.3?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "product": { + "name": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "product_id": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules@0.15.0-4.module%2Bel8%2B2481%2B4078e9d2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "product": { + "name": "varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "product_id": "varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debuginfo@0.15.0-4.module%2Bel8%2B2481%2B4078e9d2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "product": { + "name": "varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "product_id": "varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debugsource@0.15.0-4.module%2Bel8%2B2481%2B4078e9d2?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.aarch64", + "product": { + "name": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.aarch64", + "product_id": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.0.8-3.module%2Bel8.8.0%2B20455%2Bbdc2c048.1?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "varnish-devel-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.aarch64", + "product": { + "name": "varnish-devel-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.aarch64", + "product_id": "varnish-devel-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.0.8-3.module%2Bel8.8.0%2B20455%2Bbdc2c048.1?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "varnish-docs-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.aarch64", + "product": { + "name": "varnish-docs-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.aarch64", + "product_id": "varnish-docs-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-docs@6.0.8-3.module%2Bel8.8.0%2B20455%2Bbdc2c048.1?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64", + "product": { + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64", + "product_id": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64", + "product": { + "name": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64", + "product_id": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debuginfo@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64", + "product": { + "name": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64", + "product_id": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debugsource@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.src", + "product": { + "name": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.src", + "product_id": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.0.8-3.module%2Bel8.8.0%2B20455%2Bbdc2c048.1?arch=src" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.src", + "product": { + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.src", + "product_id": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.ppc64le", + "product": { + "name": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.ppc64le", + "product_id": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.0.8-3.module%2Bel8.8.0%2B20455%2Bbdc2c048.1?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-devel-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.ppc64le", + "product": { + "name": "varnish-devel-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.ppc64le", + "product_id": "varnish-devel-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.0.8-3.module%2Bel8.8.0%2B20455%2Bbdc2c048.1?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-docs-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.ppc64le", + "product": { + "name": "varnish-docs-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.ppc64le", + "product_id": "varnish-docs-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-docs@6.0.8-3.module%2Bel8.8.0%2B20455%2Bbdc2c048.1?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le", + "product": { + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le", + "product_id": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le", + "product": { + "name": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le", + "product_id": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debuginfo@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le", + "product": { + "name": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le", + "product_id": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debugsource@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.s390x", + "product": { + "name": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.s390x", + "product_id": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.0.8-3.module%2Bel8.8.0%2B20455%2Bbdc2c048.1?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "varnish-devel-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.s390x", + "product": { + "name": "varnish-devel-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.s390x", + "product_id": "varnish-devel-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.0.8-3.module%2Bel8.8.0%2B20455%2Bbdc2c048.1?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "varnish-docs-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.s390x", + "product": { + "name": "varnish-docs-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.s390x", + "product_id": "varnish-docs-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-docs@6.0.8-3.module%2Bel8.8.0%2B20455%2Bbdc2c048.1?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x", + "product": { + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x", + "product_id": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x", + "product": { + "name": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x", + "product_id": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debuginfo@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x", + "product": { + "name": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x", + "product_id": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debugsource@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.x86_64", + "product": { + "name": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.x86_64", + "product_id": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.0.8-3.module%2Bel8.8.0%2B20455%2Bbdc2c048.1?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-devel-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.x86_64", + "product": { + "name": "varnish-devel-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.x86_64", + "product_id": "varnish-devel-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.0.8-3.module%2Bel8.8.0%2B20455%2Bbdc2c048.1?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-docs-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.x86_64", + "product": { + "name": "varnish-docs-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.x86_64", + "product_id": "varnish-docs-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-docs@6.0.8-3.module%2Bel8.8.0%2B20455%2Bbdc2c048.1?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64", + "product": { + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64", + "product_id": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64", + "product": { + "name": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64", + "product_id": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debuginfo@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64", + "product": { + "name": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64", + "product_id": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debugsource@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.aarch64", + "product": { + "name": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.aarch64", + "product_id": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.0.8-2.module%2Bel8.6.0%2B20465%2Bcbb0694f.2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "varnish-devel-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.aarch64", + "product": { + "name": "varnish-devel-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.aarch64", + "product_id": "varnish-devel-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.0.8-2.module%2Bel8.6.0%2B20465%2Bcbb0694f.2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "varnish-docs-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.aarch64", + "product": { + "name": "varnish-docs-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.aarch64", + "product_id": "varnish-docs-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-docs@6.0.8-2.module%2Bel8.6.0%2B20465%2Bcbb0694f.2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64", + "product": { + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64", + "product_id": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64", + "product": { + "name": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64", + "product_id": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debuginfo@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64", + "product": { + "name": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64", + "product_id": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debugsource@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.src", + "product": { + "name": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.src", + "product_id": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.0.8-2.module%2Bel8.6.0%2B20465%2Bcbb0694f.2?arch=src" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.src", + "product": { + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.src", + "product_id": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.ppc64le", + "product": { + "name": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.ppc64le", + "product_id": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.0.8-2.module%2Bel8.6.0%2B20465%2Bcbb0694f.2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-devel-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.ppc64le", + "product": { + "name": "varnish-devel-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.ppc64le", + "product_id": "varnish-devel-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.0.8-2.module%2Bel8.6.0%2B20465%2Bcbb0694f.2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-docs-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.ppc64le", + "product": { + "name": "varnish-docs-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.ppc64le", + "product_id": "varnish-docs-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-docs@6.0.8-2.module%2Bel8.6.0%2B20465%2Bcbb0694f.2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le", + "product": { + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le", + "product_id": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le", + "product": { + "name": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le", + "product_id": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debuginfo@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le", + "product": { + "name": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le", + "product_id": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debugsource@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.s390x", + "product": { + "name": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.s390x", + "product_id": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.0.8-2.module%2Bel8.6.0%2B20465%2Bcbb0694f.2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "varnish-devel-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.s390x", + "product": { + "name": "varnish-devel-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.s390x", + "product_id": "varnish-devel-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.0.8-2.module%2Bel8.6.0%2B20465%2Bcbb0694f.2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "varnish-docs-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.s390x", + "product": { + "name": "varnish-docs-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.s390x", + "product_id": "varnish-docs-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-docs@6.0.8-2.module%2Bel8.6.0%2B20465%2Bcbb0694f.2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x", + "product": { + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x", + "product_id": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x", + "product": { + "name": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x", + "product_id": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debuginfo@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x", + "product": { + "name": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x", + "product_id": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debugsource@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.x86_64", + "product": { + "name": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.x86_64", + "product_id": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.0.8-2.module%2Bel8.6.0%2B20465%2Bcbb0694f.2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-devel-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.x86_64", + "product": { + "name": "varnish-devel-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.x86_64", + "product_id": "varnish-devel-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.0.8-2.module%2Bel8.6.0%2B20465%2Bcbb0694f.2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-docs-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.x86_64", + "product": { + "name": "varnish-docs-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.x86_64", + "product_id": "varnish-docs-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-docs@6.0.8-2.module%2Bel8.6.0%2B20465%2Bcbb0694f.2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64", + "product": { + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64", + "product_id": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64", + "product": { + "name": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64", + "product_id": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debuginfo@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64", + "product": { + "name": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64", + "product_id": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-modules-debugsource@0.15.0-6.module%2Bel8.5.0%2B11976%2B0b4af72d?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el6sat.src", + "product": { + "name": "puppet-agent-0:7.26.0-3.el6sat.src", + "product_id": "puppet-agent-0:7.26.0-3.el6sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el6sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "foreman_ygg_worker-0:0.2.2-1.el7sat.src", + "product": { + "name": "foreman_ygg_worker-0:0.2.2-1.el7sat.src", + "product_id": "foreman_ygg_worker-0:0.2.2-1.el7sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman_ygg_worker@0.2.2-1.el7sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-0:0.2.3-1.el7sat.src", + "product": { + "name": "yggdrasil-0:0.2.3-1.el7sat.src", + "product_id": "yggdrasil-0:0.2.3-1.el7sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil@0.2.3-1.el7sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el7sat.src", + "product": { + "name": "puppet-agent-0:7.26.0-3.el7sat.src", + "product_id": "puppet-agent-0:7.26.0-3.el7sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el7sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "foreman_ygg_worker-0:0.2.2-1.el8sat.src", + "product": { + "name": "foreman_ygg_worker-0:0.2.2-1.el8sat.src", + "product_id": "foreman_ygg_worker-0:0.2.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman_ygg_worker@0.2.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-0:0.2.3-1.el8sat.src", + "product": { + "name": "yggdrasil-0:0.2.3-1.el8sat.src", + "product_id": "yggdrasil-0:0.2.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil@0.2.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el8sat.src", + "product": { + "name": "puppet-agent-0:7.26.0-3.el8sat.src", + "product_id": "puppet-agent-0:7.26.0-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-0:0.37.0-2.el8.src", + "product": { + "name": "qpid-proton-0:0.37.0-2.el8.src", + "product_id": "qpid-proton-0:0.37.0-2.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton@0.37.0-2.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "foreman_ygg_worker-0:0.2.2-1.el9sat.src", + "product": { + "name": "foreman_ygg_worker-0:0.2.2-1.el9sat.src", + "product_id": "foreman_ygg_worker-0:0.2.2-1.el9sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman_ygg_worker@0.2.2-1.el9sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-0:0.2.3-1.el9sat.src", + "product": { + "name": "yggdrasil-0:0.2.3-1.el9sat.src", + "product_id": "yggdrasil-0:0.2.3-1.el9sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil@0.2.3-1.el9sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el9sat.src", + "product": { + "name": "puppet-agent-0:7.26.0-3.el9sat.src", + "product_id": "puppet-agent-0:7.26.0-3.el9sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el9sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-0:0.37.0-2.el9.src", + "product": { + "name": "qpid-proton-0:0.37.0-2.el9.src", + "product_id": "qpid-proton-0:0.37.0-2.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton@0.37.0-2.el9?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el6sat.x86_64", + "product": { + "name": "puppet-agent-0:7.26.0-3.el6sat.x86_64", + "product_id": "puppet-agent-0:7.26.0-3.el6sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el6sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "foreman_ygg_worker-0:0.2.2-1.el7sat.x86_64", + "product": { + "name": "foreman_ygg_worker-0:0.2.2-1.el7sat.x86_64", + "product_id": "foreman_ygg_worker-0:0.2.2-1.el7sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman_ygg_worker@0.2.2-1.el7sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-0:0.2.3-1.el7sat.x86_64", + "product": { + "name": "yggdrasil-0:0.2.3-1.el7sat.x86_64", + "product_id": "yggdrasil-0:0.2.3-1.el7sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil@0.2.3-1.el7sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el7sat.x86_64", + "product": { + "name": "puppet-agent-0:7.26.0-3.el7sat.x86_64", + "product_id": "puppet-agent-0:7.26.0-3.el7sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el7sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "foreman_ygg_worker-0:0.2.2-1.el8sat.x86_64", + "product": { + "name": "foreman_ygg_worker-0:0.2.2-1.el8sat.x86_64", + "product_id": "foreman_ygg_worker-0:0.2.2-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman_ygg_worker@0.2.2-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-0:0.2.3-1.el8sat.x86_64", + "product": { + "name": "yggdrasil-0:0.2.3-1.el8sat.x86_64", + "product_id": "yggdrasil-0:0.2.3-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil@0.2.3-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "product": { + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "product_id": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-qpid-proton-0:0.37.0-2.el8.x86_64", + "product": { + "name": "python3-qpid-proton-0:0.37.0-2.el8.x86_64", + "product_id": "python3-qpid-proton-0:0.37.0-2.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-qpid-proton@0.37.0-2.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-c-0:0.37.0-2.el8.x86_64", + "product": { + "name": "qpid-proton-c-0:0.37.0-2.el8.x86_64", + "product_id": "qpid-proton-c-0:0.37.0-2.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-c@0.37.0-2.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-debugsource-0:0.37.0-2.el8.x86_64", + "product": { + "name": "qpid-proton-debugsource-0:0.37.0-2.el8.x86_64", + "product_id": "qpid-proton-debugsource-0:0.37.0-2.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-debugsource@0.37.0-2.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-qpid-proton-debuginfo-0:0.37.0-2.el8.x86_64", + "product": { + "name": "python3-qpid-proton-debuginfo-0:0.37.0-2.el8.x86_64", + "product_id": "python3-qpid-proton-debuginfo-0:0.37.0-2.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-qpid-proton-debuginfo@0.37.0-2.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-c-debuginfo-0:0.37.0-2.el8.x86_64", + "product": { + "name": "qpid-proton-c-debuginfo-0:0.37.0-2.el8.x86_64", + "product_id": "qpid-proton-c-debuginfo-0:0.37.0-2.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-c-debuginfo@0.37.0-2.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el8.x86_64", + "product": { + "name": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el8.x86_64", + "product_id": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-cpp-debuginfo@0.37.0-2.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-debuginfo-0:0.37.0-2.el8.x86_64", + "product": { + "name": "qpid-proton-debuginfo-0:0.37.0-2.el8.x86_64", + "product_id": "qpid-proton-debuginfo-0:0.37.0-2.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-debuginfo@0.37.0-2.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el8.x86_64", + "product": { + "name": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el8.x86_64", + "product_id": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-qpid_proton-debuginfo@0.37.0-2.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "foreman_ygg_worker-0:0.2.2-1.el9sat.x86_64", + "product": { + "name": "foreman_ygg_worker-0:0.2.2-1.el9sat.x86_64", + "product_id": "foreman_ygg_worker-0:0.2.2-1.el9sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman_ygg_worker@0.2.2-1.el9sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-0:0.2.3-1.el9sat.x86_64", + "product": { + "name": "yggdrasil-0:0.2.3-1.el9sat.x86_64", + "product_id": "yggdrasil-0:0.2.3-1.el9sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil@0.2.3-1.el9sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el9sat.x86_64", + "product": { + "name": "puppet-agent-0:7.26.0-3.el9sat.x86_64", + "product_id": "puppet-agent-0:7.26.0-3.el9sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el9sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-qpid-proton-0:0.37.0-2.el9.x86_64", + "product": { + "name": "python3-qpid-proton-0:0.37.0-2.el9.x86_64", + "product_id": "python3-qpid-proton-0:0.37.0-2.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-qpid-proton@0.37.0-2.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-c-0:0.37.0-2.el9.x86_64", + "product": { + "name": "qpid-proton-c-0:0.37.0-2.el9.x86_64", + "product_id": "qpid-proton-c-0:0.37.0-2.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-c@0.37.0-2.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-debugsource-0:0.37.0-2.el9.x86_64", + "product": { + "name": "qpid-proton-debugsource-0:0.37.0-2.el9.x86_64", + "product_id": "qpid-proton-debugsource-0:0.37.0-2.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-debugsource@0.37.0-2.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-qpid-proton-debuginfo-0:0.37.0-2.el9.x86_64", + "product": { + "name": "python3-qpid-proton-debuginfo-0:0.37.0-2.el9.x86_64", + "product_id": "python3-qpid-proton-debuginfo-0:0.37.0-2.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-qpid-proton-debuginfo@0.37.0-2.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-c-debuginfo-0:0.37.0-2.el9.x86_64", + "product": { + "name": "qpid-proton-c-debuginfo-0:0.37.0-2.el9.x86_64", + "product_id": "qpid-proton-c-debuginfo-0:0.37.0-2.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-c-debuginfo@0.37.0-2.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el9.x86_64", + "product": { + "name": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el9.x86_64", + "product_id": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-cpp-debuginfo@0.37.0-2.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-debuginfo-0:0.37.0-2.el9.x86_64", + "product": { + "name": "qpid-proton-debuginfo-0:0.37.0-2.el9.x86_64", + "product_id": "qpid-proton-debuginfo-0:0.37.0-2.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-debuginfo@0.37.0-2.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el9.x86_64", + "product": { + "name": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el9.x86_64", + "product_id": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-qpid_proton-debuginfo@0.37.0-2.el9?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el6sat.i686", + "product": { + "name": "puppet-agent-0:7.26.0-3.el6sat.i686", + "product_id": "puppet-agent-0:7.26.0-3.el6sat.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el6sat?arch=i686" + } + } + } + ], + "category": "architecture", + "name": "i686" + }, + { + "branches": [ + { + "category": "product_version", + "name": "foreman_ygg_worker-0:0.2.2-1.el7sat.ppc64le", + "product": { + "name": "foreman_ygg_worker-0:0.2.2-1.el7sat.ppc64le", + "product_id": "foreman_ygg_worker-0:0.2.2-1.el7sat.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman_ygg_worker@0.2.2-1.el7sat?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-0:0.2.3-1.el7sat.ppc64le", + "product": { + "name": "yggdrasil-0:0.2.3-1.el7sat.ppc64le", + "product_id": "yggdrasil-0:0.2.3-1.el7sat.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil@0.2.3-1.el7sat?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "foreman_ygg_worker-0:0.2.2-1.el8sat.ppc64le", + "product": { + "name": "foreman_ygg_worker-0:0.2.2-1.el8sat.ppc64le", + "product_id": "foreman_ygg_worker-0:0.2.2-1.el8sat.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman_ygg_worker@0.2.2-1.el8sat?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-0:0.2.3-1.el8sat.ppc64le", + "product": { + "name": "yggdrasil-0:0.2.3-1.el8sat.ppc64le", + "product_id": "yggdrasil-0:0.2.3-1.el8sat.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil@0.2.3-1.el8sat?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "python3-qpid-proton-0:0.37.0-2.el8.ppc64le", + "product": { + "name": "python3-qpid-proton-0:0.37.0-2.el8.ppc64le", + "product_id": "python3-qpid-proton-0:0.37.0-2.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-qpid-proton@0.37.0-2.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-c-0:0.37.0-2.el8.ppc64le", + "product": { + "name": "qpid-proton-c-0:0.37.0-2.el8.ppc64le", + "product_id": "qpid-proton-c-0:0.37.0-2.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-c@0.37.0-2.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-debugsource-0:0.37.0-2.el8.ppc64le", + "product": { + "name": "qpid-proton-debugsource-0:0.37.0-2.el8.ppc64le", + "product_id": "qpid-proton-debugsource-0:0.37.0-2.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-debugsource@0.37.0-2.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "python3-qpid-proton-debuginfo-0:0.37.0-2.el8.ppc64le", + "product": { + "name": "python3-qpid-proton-debuginfo-0:0.37.0-2.el8.ppc64le", + "product_id": "python3-qpid-proton-debuginfo-0:0.37.0-2.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-qpid-proton-debuginfo@0.37.0-2.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-c-debuginfo-0:0.37.0-2.el8.ppc64le", + "product": { + "name": "qpid-proton-c-debuginfo-0:0.37.0-2.el8.ppc64le", + "product_id": "qpid-proton-c-debuginfo-0:0.37.0-2.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-c-debuginfo@0.37.0-2.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el8.ppc64le", + "product": { + "name": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el8.ppc64le", + "product_id": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-cpp-debuginfo@0.37.0-2.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-debuginfo-0:0.37.0-2.el8.ppc64le", + "product": { + "name": "qpid-proton-debuginfo-0:0.37.0-2.el8.ppc64le", + "product_id": "qpid-proton-debuginfo-0:0.37.0-2.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-debuginfo@0.37.0-2.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el8.ppc64le", + "product": { + "name": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el8.ppc64le", + "product_id": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-qpid_proton-debuginfo@0.37.0-2.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "foreman_ygg_worker-0:0.2.2-1.el9sat.ppc64le", + "product": { + "name": "foreman_ygg_worker-0:0.2.2-1.el9sat.ppc64le", + "product_id": "foreman_ygg_worker-0:0.2.2-1.el9sat.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman_ygg_worker@0.2.2-1.el9sat?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-0:0.2.3-1.el9sat.ppc64le", + "product": { + "name": "yggdrasil-0:0.2.3-1.el9sat.ppc64le", + "product_id": "yggdrasil-0:0.2.3-1.el9sat.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil@0.2.3-1.el9sat?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "python3-qpid-proton-0:0.37.0-2.el9.ppc64le", + "product": { + "name": "python3-qpid-proton-0:0.37.0-2.el9.ppc64le", + "product_id": "python3-qpid-proton-0:0.37.0-2.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-qpid-proton@0.37.0-2.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-c-0:0.37.0-2.el9.ppc64le", + "product": { + "name": "qpid-proton-c-0:0.37.0-2.el9.ppc64le", + "product_id": "qpid-proton-c-0:0.37.0-2.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-c@0.37.0-2.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-debugsource-0:0.37.0-2.el9.ppc64le", + "product": { + "name": "qpid-proton-debugsource-0:0.37.0-2.el9.ppc64le", + "product_id": "qpid-proton-debugsource-0:0.37.0-2.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-debugsource@0.37.0-2.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "python3-qpid-proton-debuginfo-0:0.37.0-2.el9.ppc64le", + "product": { + "name": "python3-qpid-proton-debuginfo-0:0.37.0-2.el9.ppc64le", + "product_id": "python3-qpid-proton-debuginfo-0:0.37.0-2.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-qpid-proton-debuginfo@0.37.0-2.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-c-debuginfo-0:0.37.0-2.el9.ppc64le", + "product": { + "name": "qpid-proton-c-debuginfo-0:0.37.0-2.el9.ppc64le", + "product_id": "qpid-proton-c-debuginfo-0:0.37.0-2.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-c-debuginfo@0.37.0-2.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el9.ppc64le", + "product": { + "name": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el9.ppc64le", + "product_id": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-cpp-debuginfo@0.37.0-2.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-debuginfo-0:0.37.0-2.el9.ppc64le", + "product": { + "name": "qpid-proton-debuginfo-0:0.37.0-2.el9.ppc64le", + "product_id": "qpid-proton-debuginfo-0:0.37.0-2.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-debuginfo@0.37.0-2.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el9.ppc64le", + "product": { + "name": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el9.ppc64le", + "product_id": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-qpid_proton-debuginfo@0.37.0-2.el9?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "foreman_ygg_worker-0:0.2.2-1.el8sat.s390x", + "product": { + "name": "foreman_ygg_worker-0:0.2.2-1.el8sat.s390x", + "product_id": "foreman_ygg_worker-0:0.2.2-1.el8sat.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman_ygg_worker@0.2.2-1.el8sat?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-0:0.2.3-1.el8sat.s390x", + "product": { + "name": "yggdrasil-0:0.2.3-1.el8sat.s390x", + "product_id": "yggdrasil-0:0.2.3-1.el8sat.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil@0.2.3-1.el8sat?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "python3-qpid-proton-0:0.37.0-2.el8.s390x", + "product": { + "name": "python3-qpid-proton-0:0.37.0-2.el8.s390x", + "product_id": "python3-qpid-proton-0:0.37.0-2.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-qpid-proton@0.37.0-2.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-c-0:0.37.0-2.el8.s390x", + "product": { + "name": "qpid-proton-c-0:0.37.0-2.el8.s390x", + "product_id": "qpid-proton-c-0:0.37.0-2.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-c@0.37.0-2.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-debugsource-0:0.37.0-2.el8.s390x", + "product": { + "name": "qpid-proton-debugsource-0:0.37.0-2.el8.s390x", + "product_id": "qpid-proton-debugsource-0:0.37.0-2.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-debugsource@0.37.0-2.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "python3-qpid-proton-debuginfo-0:0.37.0-2.el8.s390x", + "product": { + "name": "python3-qpid-proton-debuginfo-0:0.37.0-2.el8.s390x", + "product_id": "python3-qpid-proton-debuginfo-0:0.37.0-2.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-qpid-proton-debuginfo@0.37.0-2.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-c-debuginfo-0:0.37.0-2.el8.s390x", + "product": { + "name": "qpid-proton-c-debuginfo-0:0.37.0-2.el8.s390x", + "product_id": "qpid-proton-c-debuginfo-0:0.37.0-2.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-c-debuginfo@0.37.0-2.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el8.s390x", + "product": { + "name": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el8.s390x", + "product_id": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-cpp-debuginfo@0.37.0-2.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-debuginfo-0:0.37.0-2.el8.s390x", + "product": { + "name": "qpid-proton-debuginfo-0:0.37.0-2.el8.s390x", + "product_id": "qpid-proton-debuginfo-0:0.37.0-2.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-debuginfo@0.37.0-2.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el8.s390x", + "product": { + "name": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el8.s390x", + "product_id": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-qpid_proton-debuginfo@0.37.0-2.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "foreman_ygg_worker-0:0.2.2-1.el9sat.s390x", + "product": { + "name": "foreman_ygg_worker-0:0.2.2-1.el9sat.s390x", + "product_id": "foreman_ygg_worker-0:0.2.2-1.el9sat.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman_ygg_worker@0.2.2-1.el9sat?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-0:0.2.3-1.el9sat.s390x", + "product": { + "name": "yggdrasil-0:0.2.3-1.el9sat.s390x", + "product_id": "yggdrasil-0:0.2.3-1.el9sat.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil@0.2.3-1.el9sat?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "python3-qpid-proton-0:0.37.0-2.el9.s390x", + "product": { + "name": "python3-qpid-proton-0:0.37.0-2.el9.s390x", + "product_id": "python3-qpid-proton-0:0.37.0-2.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-qpid-proton@0.37.0-2.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-c-0:0.37.0-2.el9.s390x", + "product": { + "name": "qpid-proton-c-0:0.37.0-2.el9.s390x", + "product_id": "qpid-proton-c-0:0.37.0-2.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-c@0.37.0-2.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-debugsource-0:0.37.0-2.el9.s390x", + "product": { + "name": "qpid-proton-debugsource-0:0.37.0-2.el9.s390x", + "product_id": "qpid-proton-debugsource-0:0.37.0-2.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-debugsource@0.37.0-2.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "python3-qpid-proton-debuginfo-0:0.37.0-2.el9.s390x", + "product": { + "name": "python3-qpid-proton-debuginfo-0:0.37.0-2.el9.s390x", + "product_id": "python3-qpid-proton-debuginfo-0:0.37.0-2.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-qpid-proton-debuginfo@0.37.0-2.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-c-debuginfo-0:0.37.0-2.el9.s390x", + "product": { + "name": "qpid-proton-c-debuginfo-0:0.37.0-2.el9.s390x", + "product_id": "qpid-proton-c-debuginfo-0:0.37.0-2.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-c-debuginfo@0.37.0-2.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el9.s390x", + "product": { + "name": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el9.s390x", + "product_id": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-cpp-debuginfo@0.37.0-2.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-debuginfo-0:0.37.0-2.el9.s390x", + "product": { + "name": "qpid-proton-debuginfo-0:0.37.0-2.el9.s390x", + "product_id": "qpid-proton-debuginfo-0:0.37.0-2.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-debuginfo@0.37.0-2.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el9.s390x", + "product": { + "name": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el9.s390x", + "product_id": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-qpid_proton-debuginfo@0.37.0-2.el9?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "foreman_ygg_worker-0:0.2.2-1.el8sat.aarch64", + "product": { + "name": "foreman_ygg_worker-0:0.2.2-1.el8sat.aarch64", + "product_id": "foreman_ygg_worker-0:0.2.2-1.el8sat.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman_ygg_worker@0.2.2-1.el8sat?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-0:0.2.3-1.el8sat.aarch64", + "product": { + "name": "yggdrasil-0:0.2.3-1.el8sat.aarch64", + "product_id": "yggdrasil-0:0.2.3-1.el8sat.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil@0.2.3-1.el8sat?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "python3-qpid-proton-0:0.37.0-2.el8.aarch64", + "product": { + "name": "python3-qpid-proton-0:0.37.0-2.el8.aarch64", + "product_id": "python3-qpid-proton-0:0.37.0-2.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-qpid-proton@0.37.0-2.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-c-0:0.37.0-2.el8.aarch64", + "product": { + "name": "qpid-proton-c-0:0.37.0-2.el8.aarch64", + "product_id": "qpid-proton-c-0:0.37.0-2.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-c@0.37.0-2.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-debugsource-0:0.37.0-2.el8.aarch64", + "product": { + "name": "qpid-proton-debugsource-0:0.37.0-2.el8.aarch64", + "product_id": "qpid-proton-debugsource-0:0.37.0-2.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-debugsource@0.37.0-2.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "python3-qpid-proton-debuginfo-0:0.37.0-2.el8.aarch64", + "product": { + "name": "python3-qpid-proton-debuginfo-0:0.37.0-2.el8.aarch64", + "product_id": "python3-qpid-proton-debuginfo-0:0.37.0-2.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-qpid-proton-debuginfo@0.37.0-2.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-c-debuginfo-0:0.37.0-2.el8.aarch64", + "product": { + "name": "qpid-proton-c-debuginfo-0:0.37.0-2.el8.aarch64", + "product_id": "qpid-proton-c-debuginfo-0:0.37.0-2.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-c-debuginfo@0.37.0-2.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el8.aarch64", + "product": { + "name": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el8.aarch64", + "product_id": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-cpp-debuginfo@0.37.0-2.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-debuginfo-0:0.37.0-2.el8.aarch64", + "product": { + "name": "qpid-proton-debuginfo-0:0.37.0-2.el8.aarch64", + "product_id": "qpid-proton-debuginfo-0:0.37.0-2.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-debuginfo@0.37.0-2.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el8.aarch64", + "product": { + "name": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el8.aarch64", + "product_id": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-qpid_proton-debuginfo@0.37.0-2.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "foreman_ygg_worker-0:0.2.2-1.el9sat.aarch64", + "product": { + "name": "foreman_ygg_worker-0:0.2.2-1.el9sat.aarch64", + "product_id": "foreman_ygg_worker-0:0.2.2-1.el9sat.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman_ygg_worker@0.2.2-1.el9sat?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-0:0.2.3-1.el9sat.aarch64", + "product": { + "name": "yggdrasil-0:0.2.3-1.el9sat.aarch64", + "product_id": "yggdrasil-0:0.2.3-1.el9sat.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil@0.2.3-1.el9sat?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "python3-qpid-proton-0:0.37.0-2.el9.aarch64", + "product": { + "name": "python3-qpid-proton-0:0.37.0-2.el9.aarch64", + "product_id": "python3-qpid-proton-0:0.37.0-2.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-qpid-proton@0.37.0-2.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-c-0:0.37.0-2.el9.aarch64", + "product": { + "name": "qpid-proton-c-0:0.37.0-2.el9.aarch64", + "product_id": "qpid-proton-c-0:0.37.0-2.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-c@0.37.0-2.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-debugsource-0:0.37.0-2.el9.aarch64", + "product": { + "name": "qpid-proton-debugsource-0:0.37.0-2.el9.aarch64", + "product_id": "qpid-proton-debugsource-0:0.37.0-2.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-debugsource@0.37.0-2.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "python3-qpid-proton-debuginfo-0:0.37.0-2.el9.aarch64", + "product": { + "name": "python3-qpid-proton-debuginfo-0:0.37.0-2.el9.aarch64", + "product_id": "python3-qpid-proton-debuginfo-0:0.37.0-2.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-qpid-proton-debuginfo@0.37.0-2.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-c-debuginfo-0:0.37.0-2.el9.aarch64", + "product": { + "name": "qpid-proton-c-debuginfo-0:0.37.0-2.el9.aarch64", + "product_id": "qpid-proton-c-debuginfo-0:0.37.0-2.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-c-debuginfo@0.37.0-2.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el9.aarch64", + "product": { + "name": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el9.aarch64", + "product_id": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-cpp-debuginfo@0.37.0-2.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-debuginfo-0:0.37.0-2.el9.aarch64", + "product": { + "name": "qpid-proton-debuginfo-0:0.37.0-2.el9.aarch64", + "product_id": "qpid-proton-debuginfo-0:0.37.0-2.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-debuginfo@0.37.0-2.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el9.aarch64", + "product": { + "name": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el9.aarch64", + "product_id": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-qpid_proton-debuginfo@0.37.0-2.el9?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "network-observability/network-observability-console-plugin-rhel9@sha256:ae91d40862457c43c130aa081a66bcedca17dce7dce0f381143b244dd126bc12_arm64", + "product": { + "name": "network-observability/network-observability-console-plugin-rhel9@sha256:ae91d40862457c43c130aa081a66bcedca17dce7dce0f381143b244dd126bc12_arm64", + "product_id": "network-observability/network-observability-console-plugin-rhel9@sha256:ae91d40862457c43c130aa081a66bcedca17dce7dce0f381143b244dd126bc12_arm64", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-console-plugin-rhel9@sha256:ae91d40862457c43c130aa081a66bcedca17dce7dce0f381143b244dd126bc12?arch=arm64&repository_url=registry.redhat.io/network-observability/network-observability-console-plugin-rhel9&tag=v1.4.0-51" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-ebpf-agent-rhel9@sha256:488df8c38e377719771c758b71f1e966d76bb03da6217e09c29c21fec12c437d_arm64", + "product": { + "name": "network-observability/network-observability-ebpf-agent-rhel9@sha256:488df8c38e377719771c758b71f1e966d76bb03da6217e09c29c21fec12c437d_arm64", + "product_id": "network-observability/network-observability-ebpf-agent-rhel9@sha256:488df8c38e377719771c758b71f1e966d76bb03da6217e09c29c21fec12c437d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-ebpf-agent-rhel9@sha256:488df8c38e377719771c758b71f1e966d76bb03da6217e09c29c21fec12c437d?arch=arm64&repository_url=registry.redhat.io/network-observability/network-observability-ebpf-agent-rhel9&tag=v1.4.0-51" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:a297d29025aa9d1e963daf0c4b076533da59ddd84825e79d6e6b0e921e8c2588_arm64", + "product": { + "name": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:a297d29025aa9d1e963daf0c4b076533da59ddd84825e79d6e6b0e921e8c2588_arm64", + "product_id": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:a297d29025aa9d1e963daf0c4b076533da59ddd84825e79d6e6b0e921e8c2588_arm64", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-flowlogs-pipeline-rhel9@sha256:a297d29025aa9d1e963daf0c4b076533da59ddd84825e79d6e6b0e921e8c2588?arch=arm64&repository_url=registry.redhat.io/network-observability/network-observability-flowlogs-pipeline-rhel9&tag=v1.4.0-51" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-operator-bundle@sha256:e6e8f0a739c61bbd94a61bb75d81ef1af551a4e57ed4a64e583adce62c82af9c_arm64", + "product": { + "name": "network-observability/network-observability-operator-bundle@sha256:e6e8f0a739c61bbd94a61bb75d81ef1af551a4e57ed4a64e583adce62c82af9c_arm64", + "product_id": "network-observability/network-observability-operator-bundle@sha256:e6e8f0a739c61bbd94a61bb75d81ef1af551a4e57ed4a64e583adce62c82af9c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-operator-bundle@sha256:e6e8f0a739c61bbd94a61bb75d81ef1af551a4e57ed4a64e583adce62c82af9c?arch=arm64&repository_url=registry.redhat.io/network-observability/network-observability-operator-bundle&tag=1.4.0-70" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-rhel9-operator@sha256:8596630dd1c175bf6dd29470c009e850d8b8fd465f3d9dcee8338a4aeca8dc64_arm64", + "product": { + "name": "network-observability/network-observability-rhel9-operator@sha256:8596630dd1c175bf6dd29470c009e850d8b8fd465f3d9dcee8338a4aeca8dc64_arm64", + "product_id": "network-observability/network-observability-rhel9-operator@sha256:8596630dd1c175bf6dd29470c009e850d8b8fd465f3d9dcee8338a4aeca8dc64_arm64", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-rhel9-operator@sha256:8596630dd1c175bf6dd29470c009e850d8b8fd465f3d9dcee8338a4aeca8dc64?arch=arm64&repository_url=registry.redhat.io/network-observability/network-observability-rhel9-operator&tag=v1.4.0-51" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "network-observability/network-observability-console-plugin-rhel9@sha256:e0239a8ff86253729b9af04e6407283c51744497fea90d099afaceaa4fc823ec_ppc64le", + "product": { + "name": "network-observability/network-observability-console-plugin-rhel9@sha256:e0239a8ff86253729b9af04e6407283c51744497fea90d099afaceaa4fc823ec_ppc64le", + "product_id": "network-observability/network-observability-console-plugin-rhel9@sha256:e0239a8ff86253729b9af04e6407283c51744497fea90d099afaceaa4fc823ec_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-console-plugin-rhel9@sha256:e0239a8ff86253729b9af04e6407283c51744497fea90d099afaceaa4fc823ec?arch=ppc64le&repository_url=registry.redhat.io/network-observability/network-observability-console-plugin-rhel9&tag=v1.4.0-51" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-ebpf-agent-rhel9@sha256:84ffa04b7ae504efc0037c3ae14c0e4d4f99057593a2db2bbbfcf92e526d2c7c_ppc64le", + "product": { + "name": "network-observability/network-observability-ebpf-agent-rhel9@sha256:84ffa04b7ae504efc0037c3ae14c0e4d4f99057593a2db2bbbfcf92e526d2c7c_ppc64le", + "product_id": "network-observability/network-observability-ebpf-agent-rhel9@sha256:84ffa04b7ae504efc0037c3ae14c0e4d4f99057593a2db2bbbfcf92e526d2c7c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-ebpf-agent-rhel9@sha256:84ffa04b7ae504efc0037c3ae14c0e4d4f99057593a2db2bbbfcf92e526d2c7c?arch=ppc64le&repository_url=registry.redhat.io/network-observability/network-observability-ebpf-agent-rhel9&tag=v1.4.0-51" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:2dc033562cb43480543ff398284933993006741e83f453228a9902a2c9b3ff1d_ppc64le", + "product": { + "name": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:2dc033562cb43480543ff398284933993006741e83f453228a9902a2c9b3ff1d_ppc64le", + "product_id": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:2dc033562cb43480543ff398284933993006741e83f453228a9902a2c9b3ff1d_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-flowlogs-pipeline-rhel9@sha256:2dc033562cb43480543ff398284933993006741e83f453228a9902a2c9b3ff1d?arch=ppc64le&repository_url=registry.redhat.io/network-observability/network-observability-flowlogs-pipeline-rhel9&tag=v1.4.0-51" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-operator-bundle@sha256:1607eb2595aa0679f571d81c19840cfaf923908553b05d479bd35b2290b1d7e6_ppc64le", + "product": { + "name": "network-observability/network-observability-operator-bundle@sha256:1607eb2595aa0679f571d81c19840cfaf923908553b05d479bd35b2290b1d7e6_ppc64le", + "product_id": "network-observability/network-observability-operator-bundle@sha256:1607eb2595aa0679f571d81c19840cfaf923908553b05d479bd35b2290b1d7e6_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-operator-bundle@sha256:1607eb2595aa0679f571d81c19840cfaf923908553b05d479bd35b2290b1d7e6?arch=ppc64le&repository_url=registry.redhat.io/network-observability/network-observability-operator-bundle&tag=1.4.0-70" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-rhel9-operator@sha256:be6bfe44af552d934c881db0177bee7e345d76442523b0ea0144610d5470ea45_ppc64le", + "product": { + "name": "network-observability/network-observability-rhel9-operator@sha256:be6bfe44af552d934c881db0177bee7e345d76442523b0ea0144610d5470ea45_ppc64le", + "product_id": "network-observability/network-observability-rhel9-operator@sha256:be6bfe44af552d934c881db0177bee7e345d76442523b0ea0144610d5470ea45_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-rhel9-operator@sha256:be6bfe44af552d934c881db0177bee7e345d76442523b0ea0144610d5470ea45?arch=ppc64le&repository_url=registry.redhat.io/network-observability/network-observability-rhel9-operator&tag=v1.4.0-51" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "network-observability/network-observability-console-plugin-rhel9@sha256:ce5c9ef5800ed30888dcb23aa2ed9cf56bd83767d572a51e3e3e1509a2539063_s390x", + "product": { + "name": "network-observability/network-observability-console-plugin-rhel9@sha256:ce5c9ef5800ed30888dcb23aa2ed9cf56bd83767d572a51e3e3e1509a2539063_s390x", + "product_id": "network-observability/network-observability-console-plugin-rhel9@sha256:ce5c9ef5800ed30888dcb23aa2ed9cf56bd83767d572a51e3e3e1509a2539063_s390x", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-console-plugin-rhel9@sha256:ce5c9ef5800ed30888dcb23aa2ed9cf56bd83767d572a51e3e3e1509a2539063?arch=s390x&repository_url=registry.redhat.io/network-observability/network-observability-console-plugin-rhel9&tag=v1.4.0-51" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-ebpf-agent-rhel9@sha256:350a8565fb297353c81571bad33f0fca5ab129560ad7f15de242db98c4709b3c_s390x", + "product": { + "name": "network-observability/network-observability-ebpf-agent-rhel9@sha256:350a8565fb297353c81571bad33f0fca5ab129560ad7f15de242db98c4709b3c_s390x", + "product_id": "network-observability/network-observability-ebpf-agent-rhel9@sha256:350a8565fb297353c81571bad33f0fca5ab129560ad7f15de242db98c4709b3c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-ebpf-agent-rhel9@sha256:350a8565fb297353c81571bad33f0fca5ab129560ad7f15de242db98c4709b3c?arch=s390x&repository_url=registry.redhat.io/network-observability/network-observability-ebpf-agent-rhel9&tag=v1.4.0-51" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:03484bd14253a7340f754a6f1aef5659cfd5a6844ffbdfb2f215321b6fc63644_s390x", + "product": { + "name": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:03484bd14253a7340f754a6f1aef5659cfd5a6844ffbdfb2f215321b6fc63644_s390x", + "product_id": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:03484bd14253a7340f754a6f1aef5659cfd5a6844ffbdfb2f215321b6fc63644_s390x", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-flowlogs-pipeline-rhel9@sha256:03484bd14253a7340f754a6f1aef5659cfd5a6844ffbdfb2f215321b6fc63644?arch=s390x&repository_url=registry.redhat.io/network-observability/network-observability-flowlogs-pipeline-rhel9&tag=v1.4.0-51" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-operator-bundle@sha256:8214855b40028fdd2def40116f4585bd50f42ef0948713d63e163840079e8be7_s390x", + "product": { + "name": "network-observability/network-observability-operator-bundle@sha256:8214855b40028fdd2def40116f4585bd50f42ef0948713d63e163840079e8be7_s390x", + "product_id": "network-observability/network-observability-operator-bundle@sha256:8214855b40028fdd2def40116f4585bd50f42ef0948713d63e163840079e8be7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-operator-bundle@sha256:8214855b40028fdd2def40116f4585bd50f42ef0948713d63e163840079e8be7?arch=s390x&repository_url=registry.redhat.io/network-observability/network-observability-operator-bundle&tag=1.4.0-70" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-rhel9-operator@sha256:67167e08f0883c273e98810ad44288c4355ce2af13859021e2973c075c56cf9f_s390x", + "product": { + "name": "network-observability/network-observability-rhel9-operator@sha256:67167e08f0883c273e98810ad44288c4355ce2af13859021e2973c075c56cf9f_s390x", + "product_id": "network-observability/network-observability-rhel9-operator@sha256:67167e08f0883c273e98810ad44288c4355ce2af13859021e2973c075c56cf9f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-rhel9-operator@sha256:67167e08f0883c273e98810ad44288c4355ce2af13859021e2973c075c56cf9f?arch=s390x&repository_url=registry.redhat.io/network-observability/network-observability-rhel9-operator&tag=v1.4.0-51" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "network-observability/network-observability-console-plugin-rhel9@sha256:5da2ecf1149394e0c64af7c8e8a2684012590838031e4c733d6eff7f30cd6265_amd64", + "product": { + "name": "network-observability/network-observability-console-plugin-rhel9@sha256:5da2ecf1149394e0c64af7c8e8a2684012590838031e4c733d6eff7f30cd6265_amd64", + "product_id": "network-observability/network-observability-console-plugin-rhel9@sha256:5da2ecf1149394e0c64af7c8e8a2684012590838031e4c733d6eff7f30cd6265_amd64", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-console-plugin-rhel9@sha256:5da2ecf1149394e0c64af7c8e8a2684012590838031e4c733d6eff7f30cd6265?arch=amd64&repository_url=registry.redhat.io/network-observability/network-observability-console-plugin-rhel9&tag=v1.4.0-51" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-ebpf-agent-rhel9@sha256:27ecc916ce170d505d828742fa29d20143c4443343b101a2a9d75fe086b515f1_amd64", + "product": { + "name": "network-observability/network-observability-ebpf-agent-rhel9@sha256:27ecc916ce170d505d828742fa29d20143c4443343b101a2a9d75fe086b515f1_amd64", + "product_id": "network-observability/network-observability-ebpf-agent-rhel9@sha256:27ecc916ce170d505d828742fa29d20143c4443343b101a2a9d75fe086b515f1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-ebpf-agent-rhel9@sha256:27ecc916ce170d505d828742fa29d20143c4443343b101a2a9d75fe086b515f1?arch=amd64&repository_url=registry.redhat.io/network-observability/network-observability-ebpf-agent-rhel9&tag=v1.4.0-51" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:61c172961af1a895e9cb355573f1f8a780e7acecc505c58c18faeb9fc49efa66_amd64", + "product": { + "name": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:61c172961af1a895e9cb355573f1f8a780e7acecc505c58c18faeb9fc49efa66_amd64", + "product_id": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:61c172961af1a895e9cb355573f1f8a780e7acecc505c58c18faeb9fc49efa66_amd64", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-flowlogs-pipeline-rhel9@sha256:61c172961af1a895e9cb355573f1f8a780e7acecc505c58c18faeb9fc49efa66?arch=amd64&repository_url=registry.redhat.io/network-observability/network-observability-flowlogs-pipeline-rhel9&tag=v1.4.0-51" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-operator-bundle@sha256:6f998bb3b7d5311d8e74b25f8fcfe4ae65897270da3c0763ca2cb1d763135bc4_amd64", + "product": { + "name": "network-observability/network-observability-operator-bundle@sha256:6f998bb3b7d5311d8e74b25f8fcfe4ae65897270da3c0763ca2cb1d763135bc4_amd64", + "product_id": "network-observability/network-observability-operator-bundle@sha256:6f998bb3b7d5311d8e74b25f8fcfe4ae65897270da3c0763ca2cb1d763135bc4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-operator-bundle@sha256:6f998bb3b7d5311d8e74b25f8fcfe4ae65897270da3c0763ca2cb1d763135bc4?arch=amd64&repository_url=registry.redhat.io/network-observability/network-observability-operator-bundle&tag=1.4.0-70" + } + } + }, + { + "category": "product_version", + "name": "network-observability/network-observability-rhel9-operator@sha256:66d6fed71915dce2d8b8386cf661590bd374e27baa26a7c2cddd1916386922ce_amd64", + "product": { + "name": "network-observability/network-observability-rhel9-operator@sha256:66d6fed71915dce2d8b8386cf661590bd374e27baa26a7c2cddd1916386922ce_amd64", + "product_id": "network-observability/network-observability-rhel9-operator@sha256:66d6fed71915dce2d8b8386cf661590bd374e27baa26a7c2cddd1916386922ce_amd64", + "product_identification_helper": { + "purl": "pkg:oci/network-observability-rhel9-operator@sha256:66d6fed71915dce2d8b8386cf661590bd374e27baa26a7c2cddd1916386922ce?arch=amd64&repository_url=registry.redhat.io/network-observability/network-observability-rhel9-operator&tag=v1.4.0-51" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "stf/prometheus-webhook-snmp-rhel8@sha256:e261f596dc4f13cf45981d4415cb17d0314c66ad105b5aa31898f7364185233b_amd64", + "product": { + "name": "stf/prometheus-webhook-snmp-rhel8@sha256:e261f596dc4f13cf45981d4415cb17d0314c66ad105b5aa31898f7364185233b_amd64", + "product_id": "stf/prometheus-webhook-snmp-rhel8@sha256:e261f596dc4f13cf45981d4415cb17d0314c66ad105b5aa31898f7364185233b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/prometheus-webhook-snmp-rhel8@sha256:e261f596dc4f13cf45981d4415cb17d0314c66ad105b5aa31898f7364185233b?arch=amd64&repository_url=registry.redhat.io/stf/prometheus-webhook-snmp-rhel8&tag=stf-1.5" + } + } + }, + { + "category": "product_version", + "name": "stf/service-telemetry-operator-bundle@sha256:583b8fc7bd18b79b146274c0b6ca0e8ebc14e7dfb389bd2a01fcf18744ab7d40_amd64", + "product": { + "name": "stf/service-telemetry-operator-bundle@sha256:583b8fc7bd18b79b146274c0b6ca0e8ebc14e7dfb389bd2a01fcf18744ab7d40_amd64", + "product_id": "stf/service-telemetry-operator-bundle@sha256:583b8fc7bd18b79b146274c0b6ca0e8ebc14e7dfb389bd2a01fcf18744ab7d40_amd64", + "product_identification_helper": { + "purl": "pkg:oci/service-telemetry-operator-bundle@sha256:583b8fc7bd18b79b146274c0b6ca0e8ebc14e7dfb389bd2a01fcf18744ab7d40?arch=amd64&repository_url=registry.redhat.io/stf/service-telemetry-operator-bundle&tag=1.5.1697612918-1" + } + } + }, + { + "category": "product_version", + "name": "stf/service-telemetry-rhel8-operator@sha256:627b664de828007e469d329253e50ff91cea19ead36353d11d313b6692913d07_amd64", + "product": { + "name": "stf/service-telemetry-rhel8-operator@sha256:627b664de828007e469d329253e50ff91cea19ead36353d11d313b6692913d07_amd64", + "product_id": "stf/service-telemetry-rhel8-operator@sha256:627b664de828007e469d329253e50ff91cea19ead36353d11d313b6692913d07_amd64", + "product_identification_helper": { + "purl": "pkg:oci/service-telemetry-rhel8-operator@sha256:627b664de828007e469d329253e50ff91cea19ead36353d11d313b6692913d07?arch=amd64&repository_url=registry.redhat.io/stf/service-telemetry-rhel8-operator&tag=stf-1.5" + } + } + }, + { + "category": "product_version", + "name": "stf/sg-bridge-rhel8@sha256:1725eae2e4232e99412c73e6e4b6eabab8f8ce7f13e2106701974c5cfeeb5830_amd64", + "product": { + "name": "stf/sg-bridge-rhel8@sha256:1725eae2e4232e99412c73e6e4b6eabab8f8ce7f13e2106701974c5cfeeb5830_amd64", + "product_id": "stf/sg-bridge-rhel8@sha256:1725eae2e4232e99412c73e6e4b6eabab8f8ce7f13e2106701974c5cfeeb5830_amd64", + "product_identification_helper": { + "purl": "pkg:oci/sg-bridge-rhel8@sha256:1725eae2e4232e99412c73e6e4b6eabab8f8ce7f13e2106701974c5cfeeb5830?arch=amd64&repository_url=registry.redhat.io/stf/sg-bridge-rhel8&tag=1.5.0-18" + } + } + }, + { + "category": "product_version", + "name": "stf/sg-core-rhel8@sha256:d870784a543045e6b14519df1658864fa0ea22885465bd6630232aeaa1f9ee7e_amd64", + "product": { + "name": "stf/sg-core-rhel8@sha256:d870784a543045e6b14519df1658864fa0ea22885465bd6630232aeaa1f9ee7e_amd64", + "product_id": "stf/sg-core-rhel8@sha256:d870784a543045e6b14519df1658864fa0ea22885465bd6630232aeaa1f9ee7e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/sg-core-rhel8@sha256:d870784a543045e6b14519df1658864fa0ea22885465bd6630232aeaa1f9ee7e?arch=amd64&repository_url=registry.redhat.io/stf/sg-core-rhel8&tag=stf-1.5" + } + } + }, + { + "category": "product_version", + "name": "stf/smart-gateway-operator-bundle@sha256:f8bb700696897363678fcd0ce466fd9e9ffcddad263476a42673d516724b9767_amd64", + "product": { + "name": "stf/smart-gateway-operator-bundle@sha256:f8bb700696897363678fcd0ce466fd9e9ffcddad263476a42673d516724b9767_amd64", + "product_id": "stf/smart-gateway-operator-bundle@sha256:f8bb700696897363678fcd0ce466fd9e9ffcddad263476a42673d516724b9767_amd64", + "product_identification_helper": { + "purl": "pkg:oci/smart-gateway-operator-bundle@sha256:f8bb700696897363678fcd0ce466fd9e9ffcddad263476a42673d516724b9767?arch=amd64&repository_url=registry.redhat.io/stf/smart-gateway-operator-bundle&tag=5.0.1697612918-1" + } + } + }, + { + "category": "product_version", + "name": "stf/smart-gateway-rhel8-operator@sha256:9c3256a9e48b535413e4a4633d1404adbea0239c644569032cd63f991c5051ec_amd64", + "product": { + "name": "stf/smart-gateway-rhel8-operator@sha256:9c3256a9e48b535413e4a4633d1404adbea0239c644569032cd63f991c5051ec_amd64", + "product_id": "stf/smart-gateway-rhel8-operator@sha256:9c3256a9e48b535413e4a4633d1404adbea0239c644569032cd63f991c5051ec_amd64", + "product_identification_helper": { + "purl": "pkg:oci/smart-gateway-rhel8-operator@sha256:9c3256a9e48b535413e4a4633d1404adbea0239c644569032cd63f991c5051ec?arch=amd64&repository_url=registry.redhat.io/stf/smart-gateway-rhel8-operator&tag=stf-1.5" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "foreman-0:3.1.1.27-1.el7sat.src", + "product": { + "name": "foreman-0:3.1.1.27-1.el7sat.src", + "product_id": "foreman-0:3.1.1.27-1.el7sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman@3.1.1.27-1.el7sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el7sat.src", + "product": { + "name": "puppet-agent-0:7.26.0-3.el7sat.src", + "product_id": "puppet-agent-0:7.26.0-3.el7sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el7sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "satellite-0:6.11.5.6-1.el7sat.src", + "product": { + "name": "satellite-0:6.11.5.6-1.el7sat.src", + "product_id": "satellite-0:6.11.5.6-1.el7sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite@6.11.5.6-1.el7sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "tfm-rubygem-git-0:1.18.0-0.1.el7sat.src", + "product": { + "name": "tfm-rubygem-git-0:1.18.0-0.1.el7sat.src", + "product_id": "tfm-rubygem-git-0:1.18.0-0.1.el7sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tfm-rubygem-git@1.18.0-0.1.el7sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.src", + "product": { + "name": "tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.src", + "product_id": "tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tfm-rubygem-rchardet@1.8.0-0.1.el7sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.src", + "product": { + "name": "tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.src", + "product_id": "tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tfm-rubygem-safemode@1.3.8-0.1.el7sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.src", + "product": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.src", + "product_id": "yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil-worker-forwarder@0.0.3-1.el7sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "foreman-0:3.1.1.27-1.el8sat.src", + "product": { + "name": "foreman-0:3.1.1.27-1.el8sat.src", + "product_id": "foreman-0:3.1.1.27-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman@3.1.1.27-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el8sat.src", + "product": { + "name": "puppet-agent-0:7.26.0-3.el8sat.src", + "product_id": "puppet-agent-0:7.26.0-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-git-0:1.18.0-0.1.el8sat.src", + "product": { + "name": "rubygem-git-0:1.18.0-0.1.el8sat.src", + "product_id": "rubygem-git-0:1.18.0-0.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-git@1.18.0-0.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rchardet-0:1.8.0-0.1.el8sat.src", + "product": { + "name": "rubygem-rchardet-0:1.8.0-0.1.el8sat.src", + "product_id": "rubygem-rchardet-0:1.8.0-0.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rchardet@1.8.0-0.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-safemode-0:1.3.8-0.1.el8sat.src", + "product": { + "name": "rubygem-safemode-0:1.3.8-0.1.el8sat.src", + "product_id": "rubygem-safemode-0:1.3.8-0.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-safemode@1.3.8-0.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "satellite-0:6.11.5.6-1.el8sat.src", + "product": { + "name": "satellite-0:6.11.5.6-1.el8sat.src", + "product_id": "satellite-0:6.11.5.6-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite@6.11.5.6-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "product": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "product_id": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil-worker-forwarder@0.0.3-1.el8sat?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "foreman-cli-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-cli-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-cli-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-cli@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-debug-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-debug-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-debug-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-debug@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-dynflow-sidekiq@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-ec2-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-ec2-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-ec2-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-ec2@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-gce-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-gce-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-gce-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-gce@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-journald-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-journald-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-journald-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-journald@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-libvirt-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-libvirt-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-libvirt-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-libvirt@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-openstack-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-openstack-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-openstack-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-openstack@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-ovirt-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-ovirt-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-ovirt-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-ovirt@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-postgresql-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-postgresql-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-postgresql-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-postgresql@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-service-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-service-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-service-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-service@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-telemetry-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-telemetry-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-telemetry-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-telemetry@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-vmware-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-vmware-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-vmware-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-vmware@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-cli-0:6.11.5.6-1.el7sat.noarch", + "product": { + "name": "satellite-cli-0:6.11.5.6-1.el7sat.noarch", + "product_id": "satellite-cli-0:6.11.5.6-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-cli@6.11.5.6-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-capsule-0:6.11.5.6-1.el7sat.noarch", + "product": { + "name": "satellite-capsule-0:6.11.5.6-1.el7sat.noarch", + "product_id": "satellite-capsule-0:6.11.5.6-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-capsule@6.11.5.6-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-common-0:6.11.5.6-1.el7sat.noarch", + "product": { + "name": "satellite-common-0:6.11.5.6-1.el7sat.noarch", + "product_id": "satellite-common-0:6.11.5.6-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-common@6.11.5.6-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-0:6.11.5.6-1.el7sat.noarch", + "product": { + "name": "satellite-0:6.11.5.6-1.el7sat.noarch", + "product_id": "satellite-0:6.11.5.6-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite@6.11.5.6-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "tfm-rubygem-git-0:1.18.0-0.1.el7sat.noarch", + "product": { + "name": "tfm-rubygem-git-0:1.18.0-0.1.el7sat.noarch", + "product_id": "tfm-rubygem-git-0:1.18.0-0.1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tfm-rubygem-git@1.18.0-0.1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.noarch", + "product": { + "name": "tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.noarch", + "product_id": "tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tfm-rubygem-rchardet@1.8.0-0.1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.noarch", + "product": { + "name": "tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.noarch", + "product_id": "tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tfm-rubygem-safemode@1.3.8-0.1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-cli-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-cli-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-cli-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-cli@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-debug-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-debug-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-debug-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-debug@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-dynflow-sidekiq@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-ec2-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-ec2-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-ec2-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-ec2@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-gce-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-gce-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-gce-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-gce@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-journald-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-journald-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-journald-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-journald@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-libvirt-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-libvirt-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-libvirt-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-libvirt@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-openstack-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-openstack-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-openstack-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-openstack@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-ovirt-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-ovirt-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-ovirt-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-ovirt@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-postgresql-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-postgresql-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-postgresql-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-postgresql@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-service-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-service-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-service-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-service@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-telemetry-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-telemetry-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-telemetry-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-telemetry@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-vmware-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-vmware-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-vmware-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-vmware@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-git-0:1.18.0-0.1.el8sat.noarch", + "product": { + "name": "rubygem-git-0:1.18.0-0.1.el8sat.noarch", + "product_id": "rubygem-git-0:1.18.0-0.1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-git@1.18.0-0.1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rchardet-0:1.8.0-0.1.el8sat.noarch", + "product": { + "name": "rubygem-rchardet-0:1.8.0-0.1.el8sat.noarch", + "product_id": "rubygem-rchardet-0:1.8.0-0.1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rchardet@1.8.0-0.1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-safemode-0:1.3.8-0.1.el8sat.noarch", + "product": { + "name": "rubygem-safemode-0:1.3.8-0.1.el8sat.noarch", + "product_id": "rubygem-safemode-0:1.3.8-0.1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-safemode@1.3.8-0.1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-cli-0:6.11.5.6-1.el8sat.noarch", + "product": { + "name": "satellite-cli-0:6.11.5.6-1.el8sat.noarch", + "product_id": "satellite-cli-0:6.11.5.6-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-cli@6.11.5.6-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-0:6.11.5.6-1.el8sat.noarch", + "product": { + "name": "satellite-0:6.11.5.6-1.el8sat.noarch", + "product_id": "satellite-0:6.11.5.6-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite@6.11.5.6-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-common-0:6.11.5.6-1.el8sat.noarch", + "product": { + "name": "satellite-common-0:6.11.5.6-1.el8sat.noarch", + "product_id": "satellite-common-0:6.11.5.6-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-common@6.11.5.6-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-capsule-0:6.11.5.6-1.el8sat.noarch", + "product": { + "name": "satellite-capsule-0:6.11.5.6-1.el8sat.noarch", + "product_id": "satellite-capsule-0:6.11.5.6-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-capsule@6.11.5.6-1.el8sat?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el7sat.x86_64", + "product": { + "name": "puppet-agent-0:7.26.0-3.el7sat.x86_64", + "product_id": "puppet-agent-0:7.26.0-3.el7sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el7sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.x86_64", + "product": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.x86_64", + "product_id": "yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil-worker-forwarder@0.0.3-1.el7sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "product": { + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "product_id": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "product": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "product_id": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil-worker-forwarder@0.0.3-1.el8sat?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rhosp-rhel9/osp-director-agent@sha256:10b51664c656a13faaeb88dbdf8a212006ebcf144b473c3df4366b26716595ca_amd64", + "product": { + "name": "rhosp-rhel9/osp-director-agent@sha256:10b51664c656a13faaeb88dbdf8a212006ebcf144b473c3df4366b26716595ca_amd64", + "product_id": "rhosp-rhel9/osp-director-agent@sha256:10b51664c656a13faaeb88dbdf8a212006ebcf144b473c3df4366b26716595ca_amd64", + "product_identification_helper": { + "purl": "pkg:oci/osp-director-agent@sha256:10b51664c656a13faaeb88dbdf8a212006ebcf144b473c3df4366b26716595ca?arch=amd64&repository_url=registry.redhat.io/rhosp-rhel9/osp-director-agent&tag=1.3.1-11" + } + } + }, + { + "category": "product_version", + "name": "rhosp-rhel9/osp-director-downloader@sha256:8f2ce2bf02b1b9c4459abdf4074245715aa38445dccdb103c9d7666bb2986046_amd64", + "product": { + "name": "rhosp-rhel9/osp-director-downloader@sha256:8f2ce2bf02b1b9c4459abdf4074245715aa38445dccdb103c9d7666bb2986046_amd64", + "product_id": "rhosp-rhel9/osp-director-downloader@sha256:8f2ce2bf02b1b9c4459abdf4074245715aa38445dccdb103c9d7666bb2986046_amd64", + "product_identification_helper": { + "purl": "pkg:oci/osp-director-downloader@sha256:8f2ce2bf02b1b9c4459abdf4074245715aa38445dccdb103c9d7666bb2986046?arch=amd64&repository_url=registry.redhat.io/rhosp-rhel9/osp-director-downloader&tag=1.3.1-9" + } + } + }, + { + "category": "product_version", + "name": "rhosp-rhel9/osp-director-operator-bundle@sha256:ab0228b2f438f9d6684b6ab270988b46c7e66588abf2c323605f0759e52fd27b_amd64", + "product": { + "name": "rhosp-rhel9/osp-director-operator-bundle@sha256:ab0228b2f438f9d6684b6ab270988b46c7e66588abf2c323605f0759e52fd27b_amd64", + "product_id": "rhosp-rhel9/osp-director-operator-bundle@sha256:ab0228b2f438f9d6684b6ab270988b46c7e66588abf2c323605f0759e52fd27b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/osp-director-operator-bundle@sha256:ab0228b2f438f9d6684b6ab270988b46c7e66588abf2c323605f0759e52fd27b?arch=amd64&repository_url=registry.redhat.io/rhosp-rhel9/osp-director-operator-bundle&tag=1.3.1-18" + } + } + }, + { + "category": "product_version", + "name": "rhosp-rhel9/osp-director-operator@sha256:234d616518185e0cedbc3ba80bcb92f81cfdfa20854387aefa472a87c978bde3_amd64", + "product": { + "name": "rhosp-rhel9/osp-director-operator@sha256:234d616518185e0cedbc3ba80bcb92f81cfdfa20854387aefa472a87c978bde3_amd64", + "product_id": "rhosp-rhel9/osp-director-operator@sha256:234d616518185e0cedbc3ba80bcb92f81cfdfa20854387aefa472a87c978bde3_amd64", + "product_identification_helper": { + "purl": "pkg:oci/osp-director-operator@sha256:234d616518185e0cedbc3ba80bcb92f81cfdfa20854387aefa472a87c978bde3?arch=amd64&repository_url=registry.redhat.io/rhosp-rhel9/osp-director-operator&tag=1.3.1-11" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "foreman-0:3.3.0.23-1.el8sat.src", + "product": { + "name": "foreman-0:3.3.0.23-1.el8sat.src", + "product_id": "foreman-0:3.3.0.23-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman@3.3.0.23-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el8sat.src", + "product": { + "name": "puppet-agent-0:7.26.0-3.el8sat.src", + "product_id": "puppet-agent-0:7.26.0-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-git-0:1.18.0-1.el8sat.src", + "product": { + "name": "rubygem-git-0:1.18.0-1.el8sat.src", + "product_id": "rubygem-git-0:1.18.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-git@1.18.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-safemode-0:1.3.8-1.el8sat.src", + "product": { + "name": "rubygem-safemode-0:1.3.8-1.el8sat.src", + "product_id": "rubygem-safemode-0:1.3.8-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-safemode@1.3.8-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "satellite-0:6.12.5.2-1.el8sat.src", + "product": { + "name": "satellite-0:6.12.5.2-1.el8sat.src", + "product_id": "satellite-0:6.12.5.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite@6.12.5.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "product": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "product_id": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil-worker-forwarder@0.0.3-1.el8sat?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "foreman-debug-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-debug-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-debug-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-debug@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-cli-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-cli-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-cli-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-cli@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-dynflow-sidekiq@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-ec2-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-ec2-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-ec2-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-ec2@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-gce-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-gce-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-gce-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-gce@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-journald-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-journald-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-journald-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-journald@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-libvirt-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-libvirt-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-libvirt-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-libvirt@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-openstack-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-openstack-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-openstack-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-openstack@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-ovirt-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-ovirt-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-ovirt-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-ovirt@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-postgresql-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-postgresql-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-postgresql-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-postgresql@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-service-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-service-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-service-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-service@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-telemetry-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-telemetry-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-telemetry-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-telemetry@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-vmware-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-vmware-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-vmware-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-vmware@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-git-0:1.18.0-1.el8sat.noarch", + "product": { + "name": "rubygem-git-0:1.18.0-1.el8sat.noarch", + "product_id": "rubygem-git-0:1.18.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-git@1.18.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "product": { + "name": "rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "product_id": "rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-safemode@1.3.8-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-capsule-0:6.12.5.2-1.el8sat.noarch", + "product": { + "name": "satellite-capsule-0:6.12.5.2-1.el8sat.noarch", + "product_id": "satellite-capsule-0:6.12.5.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-capsule@6.12.5.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-common-0:6.12.5.2-1.el8sat.noarch", + "product": { + "name": "satellite-common-0:6.12.5.2-1.el8sat.noarch", + "product_id": "satellite-common-0:6.12.5.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-common@6.12.5.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-0:6.12.5.2-1.el8sat.noarch", + "product": { + "name": "satellite-0:6.12.5.2-1.el8sat.noarch", + "product_id": "satellite-0:6.12.5.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite@6.12.5.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-cli-0:6.12.5.2-1.el8sat.noarch", + "product": { + "name": "satellite-cli-0:6.12.5.2-1.el8sat.noarch", + "product_id": "satellite-cli-0:6.12.5.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-cli@6.12.5.2-1.el8sat?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "product": { + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "product_id": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "product": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "product_id": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil-worker-forwarder@0.0.3-1.el8sat?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "collectd-libpod-stats-0:1.0.4-5.el8ost.src", + "product": { + "name": "collectd-libpod-stats-0:1.0.4-5.el8ost.src", + "product_id": "collectd-libpod-stats-0:1.0.4-5.el8ost.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/collectd-libpod-stats@1.0.4-5.el8ost?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "collectd-libpod-stats-0:1.0.4-5.el8ost.x86_64", + "product": { + "name": "collectd-libpod-stats-0:1.0.4-5.el8ost.x86_64", + "product_id": "collectd-libpod-stats-0:1.0.4-5.el8ost.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/collectd-libpod-stats@1.0.4-5.el8ost?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "collectd-libpod-stats-0:1.0.4-5.el8ost.ppc64le", + "product": { + "name": "collectd-libpod-stats-0:1.0.4-5.el8ost.ppc64le", + "product_id": "collectd-libpod-stats-0:1.0.4-5.el8ost.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/collectd-libpod-stats@1.0.4-5.el8ost?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "etcd-0:3.3.23-15.el8ost.src", + "product": { + "name": "etcd-0:3.3.23-15.el8ost.src", + "product_id": "etcd-0:3.3.23-15.el8ost.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/etcd@3.3.23-15.el8ost?arch=src" + } + } + }, + { + "category": "product_version", + "name": "collectd-libpod-stats-0:1.0.4-5.el8ost.src", + "product": { + "name": "collectd-libpod-stats-0:1.0.4-5.el8ost.src", + "product_id": "collectd-libpod-stats-0:1.0.4-5.el8ost.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/collectd-libpod-stats@1.0.4-5.el8ost?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-octavia-tests-tempest-0:1.3.0-1.20210528004838.0ae7f10.el8ost.src", + "product": { + "name": "python-octavia-tests-tempest-0:1.3.0-1.20210528004838.0ae7f10.el8ost.src", + "product_id": "python-octavia-tests-tempest-0:1.3.0-1.20210528004838.0ae7f10.el8ost.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-octavia-tests-tempest@1.3.0-1.20210528004838.0ae7f10.el8ost?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "etcd-0:3.3.23-15.el8ost.x86_64", + "product": { + "name": "etcd-0:3.3.23-15.el8ost.x86_64", + "product_id": "etcd-0:3.3.23-15.el8ost.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/etcd@3.3.23-15.el8ost?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "etcd-debugsource-0:3.3.23-15.el8ost.x86_64", + "product": { + "name": "etcd-debugsource-0:3.3.23-15.el8ost.x86_64", + "product_id": "etcd-debugsource-0:3.3.23-15.el8ost.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/etcd-debugsource@3.3.23-15.el8ost?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "etcd-debuginfo-0:3.3.23-15.el8ost.x86_64", + "product": { + "name": "etcd-debuginfo-0:3.3.23-15.el8ost.x86_64", + "product_id": "etcd-debuginfo-0:3.3.23-15.el8ost.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/etcd-debuginfo@3.3.23-15.el8ost?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "collectd-libpod-stats-0:1.0.4-5.el8ost.x86_64", + "product": { + "name": "collectd-libpod-stats-0:1.0.4-5.el8ost.x86_64", + "product_id": "collectd-libpod-stats-0:1.0.4-5.el8ost.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/collectd-libpod-stats@1.0.4-5.el8ost?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-octavia-tests-tempest-golang-0:1.3.0-1.20210528004838.0ae7f10.el8ost.x86_64", + "product": { + "name": "python3-octavia-tests-tempest-golang-0:1.3.0-1.20210528004838.0ae7f10.el8ost.x86_64", + "product_id": "python3-octavia-tests-tempest-golang-0:1.3.0-1.20210528004838.0ae7f10.el8ost.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-octavia-tests-tempest-golang@1.3.0-1.20210528004838.0ae7f10.el8ost?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-octavia-tests-tempest-debugsource-0:1.3.0-1.20210528004838.0ae7f10.el8ost.x86_64", + "product": { + "name": "python-octavia-tests-tempest-debugsource-0:1.3.0-1.20210528004838.0ae7f10.el8ost.x86_64", + "product_id": "python-octavia-tests-tempest-debugsource-0:1.3.0-1.20210528004838.0ae7f10.el8ost.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-octavia-tests-tempest-debugsource@1.3.0-1.20210528004838.0ae7f10.el8ost?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-octavia-tests-tempest-golang-debuginfo-0:1.3.0-1.20210528004838.0ae7f10.el8ost.x86_64", + "product": { + "name": "python3-octavia-tests-tempest-golang-debuginfo-0:1.3.0-1.20210528004838.0ae7f10.el8ost.x86_64", + "product_id": "python3-octavia-tests-tempest-golang-debuginfo-0:1.3.0-1.20210528004838.0ae7f10.el8ost.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-octavia-tests-tempest-golang-debuginfo@1.3.0-1.20210528004838.0ae7f10.el8ost?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "etcd-0:3.3.23-15.el8ost.ppc64le", + "product": { + "name": "etcd-0:3.3.23-15.el8ost.ppc64le", + "product_id": "etcd-0:3.3.23-15.el8ost.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/etcd@3.3.23-15.el8ost?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "etcd-debugsource-0:3.3.23-15.el8ost.ppc64le", + "product": { + "name": "etcd-debugsource-0:3.3.23-15.el8ost.ppc64le", + "product_id": "etcd-debugsource-0:3.3.23-15.el8ost.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/etcd-debugsource@3.3.23-15.el8ost?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "etcd-debuginfo-0:3.3.23-15.el8ost.ppc64le", + "product": { + "name": "etcd-debuginfo-0:3.3.23-15.el8ost.ppc64le", + "product_id": "etcd-debuginfo-0:3.3.23-15.el8ost.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/etcd-debuginfo@3.3.23-15.el8ost?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "collectd-libpod-stats-0:1.0.4-5.el8ost.ppc64le", + "product": { + "name": "collectd-libpod-stats-0:1.0.4-5.el8ost.ppc64le", + "product_id": "collectd-libpod-stats-0:1.0.4-5.el8ost.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/collectd-libpod-stats@1.0.4-5.el8ost?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "python3-octavia-tests-tempest-golang-0:1.3.0-1.20210528004838.0ae7f10.el8ost.ppc64le", + "product": { + "name": "python3-octavia-tests-tempest-golang-0:1.3.0-1.20210528004838.0ae7f10.el8ost.ppc64le", + "product_id": "python3-octavia-tests-tempest-golang-0:1.3.0-1.20210528004838.0ae7f10.el8ost.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-octavia-tests-tempest-golang@1.3.0-1.20210528004838.0ae7f10.el8ost?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "python-octavia-tests-tempest-debugsource-0:1.3.0-1.20210528004838.0ae7f10.el8ost.ppc64le", + "product": { + "name": "python-octavia-tests-tempest-debugsource-0:1.3.0-1.20210528004838.0ae7f10.el8ost.ppc64le", + "product_id": "python-octavia-tests-tempest-debugsource-0:1.3.0-1.20210528004838.0ae7f10.el8ost.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-octavia-tests-tempest-debugsource@1.3.0-1.20210528004838.0ae7f10.el8ost?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "python3-octavia-tests-tempest-golang-debuginfo-0:1.3.0-1.20210528004838.0ae7f10.el8ost.ppc64le", + "product": { + "name": "python3-octavia-tests-tempest-golang-debuginfo-0:1.3.0-1.20210528004838.0ae7f10.el8ost.ppc64le", + "product_id": "python3-octavia-tests-tempest-golang-debuginfo-0:1.3.0-1.20210528004838.0ae7f10.el8ost.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-octavia-tests-tempest-golang-debuginfo@1.3.0-1.20210528004838.0ae7f10.el8ost?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "python3-octavia-tests-tempest-0:1.3.0-1.20210528004838.0ae7f10.el8ost.noarch", + "product": { + "name": "python3-octavia-tests-tempest-0:1.3.0-1.20210528004838.0ae7f10.el8ost.noarch", + "product_id": "python3-octavia-tests-tempest-0:1.3.0-1.20210528004838.0ae7f10.el8ost.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-octavia-tests-tempest@1.3.0-1.20210528004838.0ae7f10.el8ost?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "collectd-libpod-stats-0:1.0.5-6.el8ost.src", + "product": { + "name": "collectd-libpod-stats-0:1.0.5-6.el8ost.src", + "product_id": "collectd-libpod-stats-0:1.0.5-6.el8ost.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/collectd-libpod-stats@1.0.5-6.el8ost?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "collectd-libpod-stats-0:1.0.5-6.el8ost.x86_64", + "product": { + "name": "collectd-libpod-stats-0:1.0.5-6.el8ost.x86_64", + "product_id": "collectd-libpod-stats-0:1.0.5-6.el8ost.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/collectd-libpod-stats@1.0.5-6.el8ost?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "etcd-0:3.3.23-15.el8ost.src", + "product": { + "name": "etcd-0:3.3.23-15.el8ost.src", + "product_id": "etcd-0:3.3.23-15.el8ost.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/etcd@3.3.23-15.el8ost?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-octavia-tests-tempest-0:1.4.1-2.20230111145026.f7718ef.el8ost.src", + "product": { + "name": "python-octavia-tests-tempest-0:1.4.1-2.20230111145026.f7718ef.el8ost.src", + "product_id": "python-octavia-tests-tempest-0:1.4.1-2.20230111145026.f7718ef.el8ost.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-octavia-tests-tempest@1.4.1-2.20230111145026.f7718ef.el8ost?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "etcd-0:3.3.23-15.el8ost.x86_64", + "product": { + "name": "etcd-0:3.3.23-15.el8ost.x86_64", + "product_id": "etcd-0:3.3.23-15.el8ost.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/etcd@3.3.23-15.el8ost?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "etcd-debugsource-0:3.3.23-15.el8ost.x86_64", + "product": { + "name": "etcd-debugsource-0:3.3.23-15.el8ost.x86_64", + "product_id": "etcd-debugsource-0:3.3.23-15.el8ost.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/etcd-debugsource@3.3.23-15.el8ost?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "etcd-debuginfo-0:3.3.23-15.el8ost.x86_64", + "product": { + "name": "etcd-debuginfo-0:3.3.23-15.el8ost.x86_64", + "product_id": "etcd-debuginfo-0:3.3.23-15.el8ost.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/etcd-debuginfo@3.3.23-15.el8ost?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-octavia-tests-tempest-golang-0:1.4.1-2.20230111145026.f7718ef.el8ost.x86_64", + "product": { + "name": "python3-octavia-tests-tempest-golang-0:1.4.1-2.20230111145026.f7718ef.el8ost.x86_64", + "product_id": "python3-octavia-tests-tempest-golang-0:1.4.1-2.20230111145026.f7718ef.el8ost.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-octavia-tests-tempest-golang@1.4.1-2.20230111145026.f7718ef.el8ost?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-octavia-tests-tempest-debugsource-0:1.4.1-2.20230111145026.f7718ef.el8ost.x86_64", + "product": { + "name": "python-octavia-tests-tempest-debugsource-0:1.4.1-2.20230111145026.f7718ef.el8ost.x86_64", + "product_id": "python-octavia-tests-tempest-debugsource-0:1.4.1-2.20230111145026.f7718ef.el8ost.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-octavia-tests-tempest-debugsource@1.4.1-2.20230111145026.f7718ef.el8ost?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-octavia-tests-tempest-golang-debuginfo-0:1.4.1-2.20230111145026.f7718ef.el8ost.x86_64", + "product": { + "name": "python3-octavia-tests-tempest-golang-debuginfo-0:1.4.1-2.20230111145026.f7718ef.el8ost.x86_64", + "product_id": "python3-octavia-tests-tempest-golang-debuginfo-0:1.4.1-2.20230111145026.f7718ef.el8ost.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-octavia-tests-tempest-golang-debuginfo@1.4.1-2.20230111145026.f7718ef.el8ost?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "etcd-0:3.3.23-15.el8ost.ppc64le", + "product": { + "name": "etcd-0:3.3.23-15.el8ost.ppc64le", + "product_id": "etcd-0:3.3.23-15.el8ost.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/etcd@3.3.23-15.el8ost?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "etcd-debugsource-0:3.3.23-15.el8ost.ppc64le", + "product": { + "name": "etcd-debugsource-0:3.3.23-15.el8ost.ppc64le", + "product_id": "etcd-debugsource-0:3.3.23-15.el8ost.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/etcd-debugsource@3.3.23-15.el8ost?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "etcd-debuginfo-0:3.3.23-15.el8ost.ppc64le", + "product": { + "name": "etcd-debuginfo-0:3.3.23-15.el8ost.ppc64le", + "product_id": "etcd-debuginfo-0:3.3.23-15.el8ost.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/etcd-debuginfo@3.3.23-15.el8ost?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "python3-octavia-tests-tempest-golang-0:1.4.1-2.20230111145026.f7718ef.el8ost.ppc64le", + "product": { + "name": "python3-octavia-tests-tempest-golang-0:1.4.1-2.20230111145026.f7718ef.el8ost.ppc64le", + "product_id": "python3-octavia-tests-tempest-golang-0:1.4.1-2.20230111145026.f7718ef.el8ost.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-octavia-tests-tempest-golang@1.4.1-2.20230111145026.f7718ef.el8ost?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "python-octavia-tests-tempest-debugsource-0:1.4.1-2.20230111145026.f7718ef.el8ost.ppc64le", + "product": { + "name": "python-octavia-tests-tempest-debugsource-0:1.4.1-2.20230111145026.f7718ef.el8ost.ppc64le", + "product_id": "python-octavia-tests-tempest-debugsource-0:1.4.1-2.20230111145026.f7718ef.el8ost.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-octavia-tests-tempest-debugsource@1.4.1-2.20230111145026.f7718ef.el8ost?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "python3-octavia-tests-tempest-golang-debuginfo-0:1.4.1-2.20230111145026.f7718ef.el8ost.ppc64le", + "product": { + "name": "python3-octavia-tests-tempest-golang-debuginfo-0:1.4.1-2.20230111145026.f7718ef.el8ost.ppc64le", + "product_id": "python3-octavia-tests-tempest-golang-debuginfo-0:1.4.1-2.20230111145026.f7718ef.el8ost.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-octavia-tests-tempest-golang-debuginfo@1.4.1-2.20230111145026.f7718ef.el8ost?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "python3-octavia-tests-tempest-0:1.4.1-2.20230111145026.f7718ef.el8ost.noarch", + "product": { + "name": "python3-octavia-tests-tempest-0:1.4.1-2.20230111145026.f7718ef.el8ost.noarch", + "product_id": "python3-octavia-tests-tempest-0:1.4.1-2.20230111145026.f7718ef.el8ost.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-octavia-tests-tempest@1.4.1-2.20230111145026.f7718ef.el8ost?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "etcd-0:3.4.26-3.el9ost.src", + "product": { + "name": "etcd-0:3.4.26-3.el9ost.src", + "product_id": "etcd-0:3.4.26-3.el9ost.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/etcd@3.4.26-3.el9ost?arch=src" + } + } + }, + { + "category": "product_version", + "name": "collectd-libpod-stats-0:1.0.5-6.el9ost.src", + "product": { + "name": "collectd-libpod-stats-0:1.0.5-6.el9ost.src", + "product_id": "collectd-libpod-stats-0:1.0.5-6.el9ost.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/collectd-libpod-stats@1.0.5-6.el9ost?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-octavia-tests-tempest-0:1.9.0-1.20230509101018.el9ost.src", + "product": { + "name": "python-octavia-tests-tempest-0:1.9.0-1.20230509101018.el9ost.src", + "product_id": "python-octavia-tests-tempest-0:1.9.0-1.20230509101018.el9ost.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-octavia-tests-tempest@1.9.0-1.20230509101018.el9ost?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "etcd-0:3.4.26-3.el9ost.x86_64", + "product": { + "name": "etcd-0:3.4.26-3.el9ost.x86_64", + "product_id": "etcd-0:3.4.26-3.el9ost.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/etcd@3.4.26-3.el9ost?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "etcd-debugsource-0:3.4.26-3.el9ost.x86_64", + "product": { + "name": "etcd-debugsource-0:3.4.26-3.el9ost.x86_64", + "product_id": "etcd-debugsource-0:3.4.26-3.el9ost.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/etcd-debugsource@3.4.26-3.el9ost?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "etcd-debuginfo-0:3.4.26-3.el9ost.x86_64", + "product": { + "name": "etcd-debuginfo-0:3.4.26-3.el9ost.x86_64", + "product_id": "etcd-debuginfo-0:3.4.26-3.el9ost.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/etcd-debuginfo@3.4.26-3.el9ost?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "collectd-libpod-stats-0:1.0.5-6.el9ost.x86_64", + "product": { + "name": "collectd-libpod-stats-0:1.0.5-6.el9ost.x86_64", + "product_id": "collectd-libpod-stats-0:1.0.5-6.el9ost.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/collectd-libpod-stats@1.0.5-6.el9ost?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-octavia-tests-tempest-golang-0:1.9.0-1.20230509101018.el9ost.x86_64", + "product": { + "name": "python3-octavia-tests-tempest-golang-0:1.9.0-1.20230509101018.el9ost.x86_64", + "product_id": "python3-octavia-tests-tempest-golang-0:1.9.0-1.20230509101018.el9ost.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-octavia-tests-tempest-golang@1.9.0-1.20230509101018.el9ost?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-octavia-tests-tempest-debugsource-0:1.9.0-1.20230509101018.el9ost.x86_64", + "product": { + "name": "python-octavia-tests-tempest-debugsource-0:1.9.0-1.20230509101018.el9ost.x86_64", + "product_id": "python-octavia-tests-tempest-debugsource-0:1.9.0-1.20230509101018.el9ost.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-octavia-tests-tempest-debugsource@1.9.0-1.20230509101018.el9ost?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-octavia-tests-tempest-golang-debuginfo-0:1.9.0-1.20230509101018.el9ost.x86_64", + "product": { + "name": "python3-octavia-tests-tempest-golang-debuginfo-0:1.9.0-1.20230509101018.el9ost.x86_64", + "product_id": "python3-octavia-tests-tempest-golang-debuginfo-0:1.9.0-1.20230509101018.el9ost.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-octavia-tests-tempest-golang-debuginfo@1.9.0-1.20230509101018.el9ost?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "python3-octavia-tests-tempest-0:1.9.0-1.20230509101018.el9ost.noarch", + "product": { + "name": "python3-octavia-tests-tempest-0:1.9.0-1.20230509101018.el9ost.noarch", + "product_id": "python3-octavia-tests-tempest-0:1.9.0-1.20230509101018.el9ost.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-octavia-tests-tempest@1.9.0-1.20230509101018.el9ost?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:556e2c39c0eebd2e8a4d361d40221fa8cf0e9bf7db66dcf2bd2f32576240d94b_amd64", + "product": { + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:556e2c39c0eebd2e8a4d361d40221fa8cf0e9bf7db66dcf2bd2f32576240d94b_amd64", + "product_id": "openshift-logging/cluster-logging-rhel8-operator@sha256:556e2c39c0eebd2e8a4d361d40221fa8cf0e9bf7db66dcf2bd2f32576240d94b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-logging-rhel8-operator@sha256:556e2c39c0eebd2e8a4d361d40221fa8cf0e9bf7db66dcf2bd2f32576240d94b?arch=amd64&repository_url=registry.redhat.io/openshift-logging/cluster-logging-rhel8-operator&tag=v5.6.12-10" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/cluster-logging-operator-bundle@sha256:02c4a20e1f2b0678afe4ea0757933ce581ef66e6b189622aea7dc0fa91e6c18c_amd64", + "product": { + "name": "openshift-logging/cluster-logging-operator-bundle@sha256:02c4a20e1f2b0678afe4ea0757933ce581ef66e6b189622aea7dc0fa91e6c18c_amd64", + "product_id": "openshift-logging/cluster-logging-operator-bundle@sha256:02c4a20e1f2b0678afe4ea0757933ce581ef66e6b189622aea7dc0fa91e6c18c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-logging-operator-bundle@sha256:02c4a20e1f2b0678afe4ea0757933ce581ef66e6b189622aea7dc0fa91e6c18c?arch=amd64&repository_url=registry.redhat.io/openshift-logging/cluster-logging-operator-bundle&tag=v5.6.12-19" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:2a87c3b6888c57d813169da3ae06aa5bcac1ac916cdc62da3c492928d8eab187_amd64", + "product": { + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:2a87c3b6888c57d813169da3ae06aa5bcac1ac916cdc62da3c492928d8eab187_amd64", + "product_id": "openshift-logging/elasticsearch-rhel8-operator@sha256:2a87c3b6888c57d813169da3ae06aa5bcac1ac916cdc62da3c492928d8eab187_amd64", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-rhel8-operator@sha256:2a87c3b6888c57d813169da3ae06aa5bcac1ac916cdc62da3c492928d8eab187?arch=amd64&repository_url=registry.redhat.io/openshift-logging/elasticsearch-rhel8-operator&tag=v5.6.12-8" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-operator-bundle@sha256:369d45c783651c6e07dfd721fa43025800b263da8e1fdbbc75b296686426e840_amd64", + "product": { + "name": "openshift-logging/elasticsearch-operator-bundle@sha256:369d45c783651c6e07dfd721fa43025800b263da8e1fdbbc75b296686426e840_amd64", + "product_id": "openshift-logging/elasticsearch-operator-bundle@sha256:369d45c783651c6e07dfd721fa43025800b263da8e1fdbbc75b296686426e840_amd64", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-operator-bundle@sha256:369d45c783651c6e07dfd721fa43025800b263da8e1fdbbc75b296686426e840?arch=amd64&repository_url=registry.redhat.io/openshift-logging/elasticsearch-operator-bundle&tag=v5.6.12-21" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:c67b4fadb575fc60d60cc3307da75f2fa3e5c4760e572072308a506e4e271ab1_amd64", + "product": { + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:c67b4fadb575fc60d60cc3307da75f2fa3e5c4760e572072308a506e4e271ab1_amd64", + "product_id": "openshift-logging/elasticsearch-proxy-rhel8@sha256:c67b4fadb575fc60d60cc3307da75f2fa3e5c4760e572072308a506e4e271ab1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-proxy-rhel8@sha256:c67b4fadb575fc60d60cc3307da75f2fa3e5c4760e572072308a506e4e271ab1?arch=amd64&repository_url=registry.redhat.io/openshift-logging/elasticsearch-proxy-rhel8&tag=v1.0.0-438" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:94471501cf396d9d298e9dfee95ed7496e0ec8767eb80bab0ea809cb4e16b878_amd64", + "product": { + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:94471501cf396d9d298e9dfee95ed7496e0ec8767eb80bab0ea809cb4e16b878_amd64", + "product_id": "openshift-logging/log-file-metric-exporter-rhel8@sha256:94471501cf396d9d298e9dfee95ed7496e0ec8767eb80bab0ea809cb4e16b878_amd64", + "product_identification_helper": { + "purl": "pkg:oci/log-file-metric-exporter-rhel8@sha256:94471501cf396d9d298e9dfee95ed7496e0ec8767eb80bab0ea809cb4e16b878?arch=amd64&repository_url=registry.redhat.io/openshift-logging/log-file-metric-exporter-rhel8&tag=v1.1.0-176" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-curator5-rhel8@sha256:1cac7ceee19cd185658324643c9a81d055d22aa238a28986c76594153c79b422_amd64", + "product": { + "name": "openshift-logging/logging-curator5-rhel8@sha256:1cac7ceee19cd185658324643c9a81d055d22aa238a28986c76594153c79b422_amd64", + "product_id": "openshift-logging/logging-curator5-rhel8@sha256:1cac7ceee19cd185658324643c9a81d055d22aa238a28986c76594153c79b422_amd64", + "product_identification_helper": { + "purl": "pkg:oci/logging-curator5-rhel8@sha256:1cac7ceee19cd185658324643c9a81d055d22aa238a28986c76594153c79b422?arch=amd64&repository_url=registry.redhat.io/openshift-logging/logging-curator5-rhel8&tag=v5.8.1-420" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch6-rhel8@sha256:92ab2dde35f2f59c3a8ce7b8b12f5703a7a214e83ca5cc13673d0c8ad373f02e_amd64", + "product": { + "name": "openshift-logging/elasticsearch6-rhel8@sha256:92ab2dde35f2f59c3a8ce7b8b12f5703a7a214e83ca5cc13673d0c8ad373f02e_amd64", + "product_id": "openshift-logging/elasticsearch6-rhel8@sha256:92ab2dde35f2f59c3a8ce7b8b12f5703a7a214e83ca5cc13673d0c8ad373f02e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch6-rhel8@sha256:92ab2dde35f2f59c3a8ce7b8b12f5703a7a214e83ca5cc13673d0c8ad373f02e?arch=amd64&repository_url=registry.redhat.io/openshift-logging/elasticsearch6-rhel8&tag=v6.8.1-370" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/eventrouter-rhel8@sha256:ff509532db6b7e2d3a44fac2cf9b63687aa8bfbaab46d7a5f9d58be192475818_amd64", + "product": { + "name": "openshift-logging/eventrouter-rhel8@sha256:ff509532db6b7e2d3a44fac2cf9b63687aa8bfbaab46d7a5f9d58be192475818_amd64", + "product_id": "openshift-logging/eventrouter-rhel8@sha256:ff509532db6b7e2d3a44fac2cf9b63687aa8bfbaab46d7a5f9d58be192475818_amd64", + "product_identification_helper": { + "purl": "pkg:oci/eventrouter-rhel8@sha256:ff509532db6b7e2d3a44fac2cf9b63687aa8bfbaab46d7a5f9d58be192475818?arch=amd64&repository_url=registry.redhat.io/openshift-logging/eventrouter-rhel8&tag=v0.4.0-190" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/fluentd-rhel8@sha256:149d75b8f4f523c86122176935c63b96305f6eb308e74eea9fa6651c8e75d239_amd64", + "product": { + "name": "openshift-logging/fluentd-rhel8@sha256:149d75b8f4f523c86122176935c63b96305f6eb308e74eea9fa6651c8e75d239_amd64", + "product_id": "openshift-logging/fluentd-rhel8@sha256:149d75b8f4f523c86122176935c63b96305f6eb308e74eea9fa6651c8e75d239_amd64", + "product_identification_helper": { + "purl": "pkg:oci/fluentd-rhel8@sha256:149d75b8f4f523c86122176935c63b96305f6eb308e74eea9fa6651c8e75d239?arch=amd64&repository_url=registry.redhat.io/openshift-logging/fluentd-rhel8&tag=v1.14.6-192" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/kibana6-rhel8@sha256:57b608727de6a22f2c39c138d184b4d2e9a1e62b2206fbcab290aeef2802e520_amd64", + "product": { + "name": "openshift-logging/kibana6-rhel8@sha256:57b608727de6a22f2c39c138d184b4d2e9a1e62b2206fbcab290aeef2802e520_amd64", + "product_id": "openshift-logging/kibana6-rhel8@sha256:57b608727de6a22f2c39c138d184b4d2e9a1e62b2206fbcab290aeef2802e520_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kibana6-rhel8@sha256:57b608727de6a22f2c39c138d184b4d2e9a1e62b2206fbcab290aeef2802e520?arch=amd64&repository_url=registry.redhat.io/openshift-logging/kibana6-rhel8&tag=v6.8.1-400" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-loki-rhel8@sha256:47df30d450dbc2b26cf828f2208832ddcba75719cef9486d047e4b2bfb2c61a8_amd64", + "product": { + "name": "openshift-logging/logging-loki-rhel8@sha256:47df30d450dbc2b26cf828f2208832ddcba75719cef9486d047e4b2bfb2c61a8_amd64", + "product_id": "openshift-logging/logging-loki-rhel8@sha256:47df30d450dbc2b26cf828f2208832ddcba75719cef9486d047e4b2bfb2c61a8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/logging-loki-rhel8@sha256:47df30d450dbc2b26cf828f2208832ddcba75719cef9486d047e4b2bfb2c61a8?arch=amd64&repository_url=registry.redhat.io/openshift-logging/logging-loki-rhel8&tag=v2.9.2-2" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/vector-rhel8@sha256:a9f8b40acd19609ee9c9bc85a4f2cdec9aa4c8c786b62ad94e33c8ea451de961_amd64", + "product": { + "name": "openshift-logging/vector-rhel8@sha256:a9f8b40acd19609ee9c9bc85a4f2cdec9aa4c8c786b62ad94e33c8ea451de961_amd64", + "product_id": "openshift-logging/vector-rhel8@sha256:a9f8b40acd19609ee9c9bc85a4f2cdec9aa4c8c786b62ad94e33c8ea451de961_amd64", + "product_identification_helper": { + "purl": "pkg:oci/vector-rhel8@sha256:a9f8b40acd19609ee9c9bc85a4f2cdec9aa4c8c786b62ad94e33c8ea451de961?arch=amd64&repository_url=registry.redhat.io/openshift-logging/vector-rhel8&tag=v0.21.0-113" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:fd9b30d940cdc8b281fa4a46e8a22f946571e7e72695fef9cfa02c4337e74dc0_amd64", + "product": { + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:fd9b30d940cdc8b281fa4a46e8a22f946571e7e72695fef9cfa02c4337e74dc0_amd64", + "product_id": "openshift-logging/logging-view-plugin-rhel8@sha256:fd9b30d940cdc8b281fa4a46e8a22f946571e7e72695fef9cfa02c4337e74dc0_amd64", + "product_identification_helper": { + "purl": "pkg:oci/logging-view-plugin-rhel8@sha256:fd9b30d940cdc8b281fa4a46e8a22f946571e7e72695fef9cfa02c4337e74dc0?arch=amd64&repository_url=registry.redhat.io/openshift-logging/logging-view-plugin-rhel8&tag=v5.6.12-8" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/loki-operator-bundle@sha256:62f04228cf7e9abc40efbd69b6dcd0b6d421834b520753194105010cc35e810c_amd64", + "product": { + "name": "openshift-logging/loki-operator-bundle@sha256:62f04228cf7e9abc40efbd69b6dcd0b6d421834b520753194105010cc35e810c_amd64", + "product_id": "openshift-logging/loki-operator-bundle@sha256:62f04228cf7e9abc40efbd69b6dcd0b6d421834b520753194105010cc35e810c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/loki-operator-bundle@sha256:62f04228cf7e9abc40efbd69b6dcd0b6d421834b520753194105010cc35e810c?arch=amd64&repository_url=registry.redhat.io/openshift-logging/loki-operator-bundle&tag=v5.6.12-22" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/loki-rhel8-operator@sha256:347cb504d7b382c241a238d1fffc91b5905121c4fe6c976356c46909161b9ced_amd64", + "product": { + "name": "openshift-logging/loki-rhel8-operator@sha256:347cb504d7b382c241a238d1fffc91b5905121c4fe6c976356c46909161b9ced_amd64", + "product_id": "openshift-logging/loki-rhel8-operator@sha256:347cb504d7b382c241a238d1fffc91b5905121c4fe6c976356c46909161b9ced_amd64", + "product_identification_helper": { + "purl": "pkg:oci/loki-rhel8-operator@sha256:347cb504d7b382c241a238d1fffc91b5905121c4fe6c976356c46909161b9ced?arch=amd64&repository_url=registry.redhat.io/openshift-logging/loki-rhel8-operator&tag=v5.6.12-10" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:ea81838d5b7a63e28ad7e20113253a701063d8d723137681bf11afd801c69f6f_amd64", + "product": { + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:ea81838d5b7a63e28ad7e20113253a701063d8d723137681bf11afd801c69f6f_amd64", + "product_id": "openshift-logging/lokistack-gateway-rhel8@sha256:ea81838d5b7a63e28ad7e20113253a701063d8d723137681bf11afd801c69f6f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/lokistack-gateway-rhel8@sha256:ea81838d5b7a63e28ad7e20113253a701063d8d723137681bf11afd801c69f6f?arch=amd64&repository_url=registry.redhat.io/openshift-logging/lokistack-gateway-rhel8&tag=v0.1.0-357" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/opa-openshift-rhel8@sha256:01d2e3c8016742d49a9fe1cf7d62c6826dfc8f805babdc4c32e1407c3c8ae6c2_amd64", + "product": { + "name": "openshift-logging/opa-openshift-rhel8@sha256:01d2e3c8016742d49a9fe1cf7d62c6826dfc8f805babdc4c32e1407c3c8ae6c2_amd64", + "product_id": "openshift-logging/opa-openshift-rhel8@sha256:01d2e3c8016742d49a9fe1cf7d62c6826dfc8f805babdc4c32e1407c3c8ae6c2_amd64", + "product_identification_helper": { + "purl": "pkg:oci/opa-openshift-rhel8@sha256:01d2e3c8016742d49a9fe1cf7d62c6826dfc8f805babdc4c32e1407c3c8ae6c2?arch=amd64&repository_url=registry.redhat.io/openshift-logging/opa-openshift-rhel8&tag=v0.1.0-163" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:f8553bf9f5a75c089cdf5a26f8853e6f4488c19ef2a8dc1e0ebc96e4aab0384f_ppc64le", + "product": { + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:f8553bf9f5a75c089cdf5a26f8853e6f4488c19ef2a8dc1e0ebc96e4aab0384f_ppc64le", + "product_id": "openshift-logging/cluster-logging-rhel8-operator@sha256:f8553bf9f5a75c089cdf5a26f8853e6f4488c19ef2a8dc1e0ebc96e4aab0384f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-logging-rhel8-operator@sha256:f8553bf9f5a75c089cdf5a26f8853e6f4488c19ef2a8dc1e0ebc96e4aab0384f?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/cluster-logging-rhel8-operator&tag=v5.6.12-10" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:358c663dbc3c6b0ee31a4b2665c79ff7b826ba6b72c21db62d186a6da09b04c4_ppc64le", + "product": { + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:358c663dbc3c6b0ee31a4b2665c79ff7b826ba6b72c21db62d186a6da09b04c4_ppc64le", + "product_id": "openshift-logging/elasticsearch-rhel8-operator@sha256:358c663dbc3c6b0ee31a4b2665c79ff7b826ba6b72c21db62d186a6da09b04c4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-rhel8-operator@sha256:358c663dbc3c6b0ee31a4b2665c79ff7b826ba6b72c21db62d186a6da09b04c4?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/elasticsearch-rhel8-operator&tag=v5.6.12-8" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:26f58db9cb18dfe0eb7a3478a7bb86c87efabe32d98dcf74bc34226a09ea6f0e_ppc64le", + "product": { + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:26f58db9cb18dfe0eb7a3478a7bb86c87efabe32d98dcf74bc34226a09ea6f0e_ppc64le", + "product_id": "openshift-logging/elasticsearch-proxy-rhel8@sha256:26f58db9cb18dfe0eb7a3478a7bb86c87efabe32d98dcf74bc34226a09ea6f0e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-proxy-rhel8@sha256:26f58db9cb18dfe0eb7a3478a7bb86c87efabe32d98dcf74bc34226a09ea6f0e?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/elasticsearch-proxy-rhel8&tag=v1.0.0-438" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:a2bd4a83b30b2b9e88e8581784e3e901d564d576ba3a58824cd203779ccc9e80_ppc64le", + "product": { + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:a2bd4a83b30b2b9e88e8581784e3e901d564d576ba3a58824cd203779ccc9e80_ppc64le", + "product_id": "openshift-logging/log-file-metric-exporter-rhel8@sha256:a2bd4a83b30b2b9e88e8581784e3e901d564d576ba3a58824cd203779ccc9e80_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/log-file-metric-exporter-rhel8@sha256:a2bd4a83b30b2b9e88e8581784e3e901d564d576ba3a58824cd203779ccc9e80?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/log-file-metric-exporter-rhel8&tag=v1.1.0-176" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-curator5-rhel8@sha256:cb78249fdad4f2cff00011a9863f40f0749c2f3b4093a322f9590008e62c06c6_ppc64le", + "product": { + "name": "openshift-logging/logging-curator5-rhel8@sha256:cb78249fdad4f2cff00011a9863f40f0749c2f3b4093a322f9590008e62c06c6_ppc64le", + "product_id": "openshift-logging/logging-curator5-rhel8@sha256:cb78249fdad4f2cff00011a9863f40f0749c2f3b4093a322f9590008e62c06c6_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/logging-curator5-rhel8@sha256:cb78249fdad4f2cff00011a9863f40f0749c2f3b4093a322f9590008e62c06c6?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/logging-curator5-rhel8&tag=v5.8.1-420" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch6-rhel8@sha256:caeeb679701abcbb9612b77ef0975575cf31c96b74bfc06553d61140a3f52bb7_ppc64le", + "product": { + "name": "openshift-logging/elasticsearch6-rhel8@sha256:caeeb679701abcbb9612b77ef0975575cf31c96b74bfc06553d61140a3f52bb7_ppc64le", + "product_id": "openshift-logging/elasticsearch6-rhel8@sha256:caeeb679701abcbb9612b77ef0975575cf31c96b74bfc06553d61140a3f52bb7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch6-rhel8@sha256:caeeb679701abcbb9612b77ef0975575cf31c96b74bfc06553d61140a3f52bb7?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/elasticsearch6-rhel8&tag=v6.8.1-370" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/eventrouter-rhel8@sha256:ec56cae824197805c3287f57854343d2d26caa0b192a009c966d28c32f0d0d92_ppc64le", + "product": { + "name": "openshift-logging/eventrouter-rhel8@sha256:ec56cae824197805c3287f57854343d2d26caa0b192a009c966d28c32f0d0d92_ppc64le", + "product_id": "openshift-logging/eventrouter-rhel8@sha256:ec56cae824197805c3287f57854343d2d26caa0b192a009c966d28c32f0d0d92_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/eventrouter-rhel8@sha256:ec56cae824197805c3287f57854343d2d26caa0b192a009c966d28c32f0d0d92?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/eventrouter-rhel8&tag=v0.4.0-190" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/fluentd-rhel8@sha256:e489da61d05557fba2718fd3e75b7ba50c51c173f43088334db7f3c993748711_ppc64le", + "product": { + "name": "openshift-logging/fluentd-rhel8@sha256:e489da61d05557fba2718fd3e75b7ba50c51c173f43088334db7f3c993748711_ppc64le", + "product_id": "openshift-logging/fluentd-rhel8@sha256:e489da61d05557fba2718fd3e75b7ba50c51c173f43088334db7f3c993748711_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/fluentd-rhel8@sha256:e489da61d05557fba2718fd3e75b7ba50c51c173f43088334db7f3c993748711?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/fluentd-rhel8&tag=v1.14.6-192" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/kibana6-rhel8@sha256:0958ffa84bed51e99177837ac672324e5a8c1b20535d8110a3bbabe3f952073e_ppc64le", + "product": { + "name": "openshift-logging/kibana6-rhel8@sha256:0958ffa84bed51e99177837ac672324e5a8c1b20535d8110a3bbabe3f952073e_ppc64le", + "product_id": "openshift-logging/kibana6-rhel8@sha256:0958ffa84bed51e99177837ac672324e5a8c1b20535d8110a3bbabe3f952073e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kibana6-rhel8@sha256:0958ffa84bed51e99177837ac672324e5a8c1b20535d8110a3bbabe3f952073e?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/kibana6-rhel8&tag=v6.8.1-400" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-loki-rhel8@sha256:aea6196bddef8110c0d9282d6e84a7e8cdee066fab8ba3607dacb8425b458819_ppc64le", + "product": { + "name": "openshift-logging/logging-loki-rhel8@sha256:aea6196bddef8110c0d9282d6e84a7e8cdee066fab8ba3607dacb8425b458819_ppc64le", + "product_id": "openshift-logging/logging-loki-rhel8@sha256:aea6196bddef8110c0d9282d6e84a7e8cdee066fab8ba3607dacb8425b458819_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/logging-loki-rhel8@sha256:aea6196bddef8110c0d9282d6e84a7e8cdee066fab8ba3607dacb8425b458819?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/logging-loki-rhel8&tag=v2.9.2-2" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/vector-rhel8@sha256:10f88bb7c978c24555def7bf4d7fd35dba3d1b5ffdc32fde359b175fc8d8b34e_ppc64le", + "product": { + "name": "openshift-logging/vector-rhel8@sha256:10f88bb7c978c24555def7bf4d7fd35dba3d1b5ffdc32fde359b175fc8d8b34e_ppc64le", + "product_id": "openshift-logging/vector-rhel8@sha256:10f88bb7c978c24555def7bf4d7fd35dba3d1b5ffdc32fde359b175fc8d8b34e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/vector-rhel8@sha256:10f88bb7c978c24555def7bf4d7fd35dba3d1b5ffdc32fde359b175fc8d8b34e?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/vector-rhel8&tag=v0.21.0-113" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:42223f3fb6d55d6d9155f110b90323965eaf68263d51c485114784a651be8e5e_ppc64le", + "product": { + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:42223f3fb6d55d6d9155f110b90323965eaf68263d51c485114784a651be8e5e_ppc64le", + "product_id": "openshift-logging/logging-view-plugin-rhel8@sha256:42223f3fb6d55d6d9155f110b90323965eaf68263d51c485114784a651be8e5e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/logging-view-plugin-rhel8@sha256:42223f3fb6d55d6d9155f110b90323965eaf68263d51c485114784a651be8e5e?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/logging-view-plugin-rhel8&tag=v5.6.12-8" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/loki-rhel8-operator@sha256:c5c0c41173e8c288341859dda8e9c982fba297e2e6c616b953a04ea4280f8caa_ppc64le", + "product": { + "name": "openshift-logging/loki-rhel8-operator@sha256:c5c0c41173e8c288341859dda8e9c982fba297e2e6c616b953a04ea4280f8caa_ppc64le", + "product_id": "openshift-logging/loki-rhel8-operator@sha256:c5c0c41173e8c288341859dda8e9c982fba297e2e6c616b953a04ea4280f8caa_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/loki-rhel8-operator@sha256:c5c0c41173e8c288341859dda8e9c982fba297e2e6c616b953a04ea4280f8caa?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/loki-rhel8-operator&tag=v5.6.12-10" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:f7c8b8251566fadb3396dfee110b6995e9d2ca27614a3b51f148f78fe5b51b50_ppc64le", + "product": { + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:f7c8b8251566fadb3396dfee110b6995e9d2ca27614a3b51f148f78fe5b51b50_ppc64le", + "product_id": "openshift-logging/lokistack-gateway-rhel8@sha256:f7c8b8251566fadb3396dfee110b6995e9d2ca27614a3b51f148f78fe5b51b50_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/lokistack-gateway-rhel8@sha256:f7c8b8251566fadb3396dfee110b6995e9d2ca27614a3b51f148f78fe5b51b50?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/lokistack-gateway-rhel8&tag=v0.1.0-357" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/opa-openshift-rhel8@sha256:5b8bc65ad9760c2bcabac5ebf72f2a256271a4c1173871742bf8f817c6ce0478_ppc64le", + "product": { + "name": "openshift-logging/opa-openshift-rhel8@sha256:5b8bc65ad9760c2bcabac5ebf72f2a256271a4c1173871742bf8f817c6ce0478_ppc64le", + "product_id": "openshift-logging/opa-openshift-rhel8@sha256:5b8bc65ad9760c2bcabac5ebf72f2a256271a4c1173871742bf8f817c6ce0478_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/opa-openshift-rhel8@sha256:5b8bc65ad9760c2bcabac5ebf72f2a256271a4c1173871742bf8f817c6ce0478?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/opa-openshift-rhel8&tag=v0.1.0-163" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:a697fe3d581606f0da267205636c94e0dd7076fdf562fe9d4f0332ec0267f880_s390x", + "product": { + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:a697fe3d581606f0da267205636c94e0dd7076fdf562fe9d4f0332ec0267f880_s390x", + "product_id": "openshift-logging/cluster-logging-rhel8-operator@sha256:a697fe3d581606f0da267205636c94e0dd7076fdf562fe9d4f0332ec0267f880_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-logging-rhel8-operator@sha256:a697fe3d581606f0da267205636c94e0dd7076fdf562fe9d4f0332ec0267f880?arch=s390x&repository_url=registry.redhat.io/openshift-logging/cluster-logging-rhel8-operator&tag=v5.6.12-10" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:7a9678d49d25ec0afbcab3c98a3d26d2eeda04a0ece3a833d91dde818f0dde22_s390x", + "product": { + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:7a9678d49d25ec0afbcab3c98a3d26d2eeda04a0ece3a833d91dde818f0dde22_s390x", + "product_id": "openshift-logging/elasticsearch-rhel8-operator@sha256:7a9678d49d25ec0afbcab3c98a3d26d2eeda04a0ece3a833d91dde818f0dde22_s390x", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-rhel8-operator@sha256:7a9678d49d25ec0afbcab3c98a3d26d2eeda04a0ece3a833d91dde818f0dde22?arch=s390x&repository_url=registry.redhat.io/openshift-logging/elasticsearch-rhel8-operator&tag=v5.6.12-8" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:938ac92e58ab4fd377219899c6f3c25f41a58260f078e44b371d91964083d96a_s390x", + "product": { + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:938ac92e58ab4fd377219899c6f3c25f41a58260f078e44b371d91964083d96a_s390x", + "product_id": "openshift-logging/elasticsearch-proxy-rhel8@sha256:938ac92e58ab4fd377219899c6f3c25f41a58260f078e44b371d91964083d96a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-proxy-rhel8@sha256:938ac92e58ab4fd377219899c6f3c25f41a58260f078e44b371d91964083d96a?arch=s390x&repository_url=registry.redhat.io/openshift-logging/elasticsearch-proxy-rhel8&tag=v1.0.0-438" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:1646d63e4b9fa7d45f8fc9d1e8cec3cccbed9ba850f3ac07dc75b18f416c580f_s390x", + "product": { + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:1646d63e4b9fa7d45f8fc9d1e8cec3cccbed9ba850f3ac07dc75b18f416c580f_s390x", + "product_id": "openshift-logging/log-file-metric-exporter-rhel8@sha256:1646d63e4b9fa7d45f8fc9d1e8cec3cccbed9ba850f3ac07dc75b18f416c580f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/log-file-metric-exporter-rhel8@sha256:1646d63e4b9fa7d45f8fc9d1e8cec3cccbed9ba850f3ac07dc75b18f416c580f?arch=s390x&repository_url=registry.redhat.io/openshift-logging/log-file-metric-exporter-rhel8&tag=v1.1.0-176" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-curator5-rhel8@sha256:f09e73392f894fd4f9c38595e617dd4eebabb698d8e1ad0f3ac4e080c37b1f12_s390x", + "product": { + "name": "openshift-logging/logging-curator5-rhel8@sha256:f09e73392f894fd4f9c38595e617dd4eebabb698d8e1ad0f3ac4e080c37b1f12_s390x", + "product_id": "openshift-logging/logging-curator5-rhel8@sha256:f09e73392f894fd4f9c38595e617dd4eebabb698d8e1ad0f3ac4e080c37b1f12_s390x", + "product_identification_helper": { + "purl": "pkg:oci/logging-curator5-rhel8@sha256:f09e73392f894fd4f9c38595e617dd4eebabb698d8e1ad0f3ac4e080c37b1f12?arch=s390x&repository_url=registry.redhat.io/openshift-logging/logging-curator5-rhel8&tag=v5.8.1-420" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch6-rhel8@sha256:8e62859531fcb8dd6b054a76c4bc95b62ff62bcbe69fe18f132689a203168bc8_s390x", + "product": { + "name": "openshift-logging/elasticsearch6-rhel8@sha256:8e62859531fcb8dd6b054a76c4bc95b62ff62bcbe69fe18f132689a203168bc8_s390x", + "product_id": "openshift-logging/elasticsearch6-rhel8@sha256:8e62859531fcb8dd6b054a76c4bc95b62ff62bcbe69fe18f132689a203168bc8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch6-rhel8@sha256:8e62859531fcb8dd6b054a76c4bc95b62ff62bcbe69fe18f132689a203168bc8?arch=s390x&repository_url=registry.redhat.io/openshift-logging/elasticsearch6-rhel8&tag=v6.8.1-370" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/eventrouter-rhel8@sha256:b822207e2e70c989cf98d9e5a810e85034a8a1fd2130451e525ce4a804dd1727_s390x", + "product": { + "name": "openshift-logging/eventrouter-rhel8@sha256:b822207e2e70c989cf98d9e5a810e85034a8a1fd2130451e525ce4a804dd1727_s390x", + "product_id": "openshift-logging/eventrouter-rhel8@sha256:b822207e2e70c989cf98d9e5a810e85034a8a1fd2130451e525ce4a804dd1727_s390x", + "product_identification_helper": { + "purl": "pkg:oci/eventrouter-rhel8@sha256:b822207e2e70c989cf98d9e5a810e85034a8a1fd2130451e525ce4a804dd1727?arch=s390x&repository_url=registry.redhat.io/openshift-logging/eventrouter-rhel8&tag=v0.4.0-190" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/fluentd-rhel8@sha256:3038086e3dbfab1e3070cdeeb7968e863ab4b1012d161ed263e93b153ae2223b_s390x", + "product": { + "name": "openshift-logging/fluentd-rhel8@sha256:3038086e3dbfab1e3070cdeeb7968e863ab4b1012d161ed263e93b153ae2223b_s390x", + "product_id": "openshift-logging/fluentd-rhel8@sha256:3038086e3dbfab1e3070cdeeb7968e863ab4b1012d161ed263e93b153ae2223b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/fluentd-rhel8@sha256:3038086e3dbfab1e3070cdeeb7968e863ab4b1012d161ed263e93b153ae2223b?arch=s390x&repository_url=registry.redhat.io/openshift-logging/fluentd-rhel8&tag=v1.14.6-192" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/kibana6-rhel8@sha256:20b6b6aef51ef6cabe133e53dcc1d6665ff8fae0fab4d56ecd6998ca88554773_s390x", + "product": { + "name": "openshift-logging/kibana6-rhel8@sha256:20b6b6aef51ef6cabe133e53dcc1d6665ff8fae0fab4d56ecd6998ca88554773_s390x", + "product_id": "openshift-logging/kibana6-rhel8@sha256:20b6b6aef51ef6cabe133e53dcc1d6665ff8fae0fab4d56ecd6998ca88554773_s390x", + "product_identification_helper": { + "purl": "pkg:oci/kibana6-rhel8@sha256:20b6b6aef51ef6cabe133e53dcc1d6665ff8fae0fab4d56ecd6998ca88554773?arch=s390x&repository_url=registry.redhat.io/openshift-logging/kibana6-rhel8&tag=v6.8.1-400" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-loki-rhel8@sha256:af7c029f15eacd2b65a99271538c68d9b2dcd5c25dbfabadd0e9f8bb2911d827_s390x", + "product": { + "name": "openshift-logging/logging-loki-rhel8@sha256:af7c029f15eacd2b65a99271538c68d9b2dcd5c25dbfabadd0e9f8bb2911d827_s390x", + "product_id": "openshift-logging/logging-loki-rhel8@sha256:af7c029f15eacd2b65a99271538c68d9b2dcd5c25dbfabadd0e9f8bb2911d827_s390x", + "product_identification_helper": { + "purl": "pkg:oci/logging-loki-rhel8@sha256:af7c029f15eacd2b65a99271538c68d9b2dcd5c25dbfabadd0e9f8bb2911d827?arch=s390x&repository_url=registry.redhat.io/openshift-logging/logging-loki-rhel8&tag=v2.9.2-2" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/vector-rhel8@sha256:7e46ef2e749e3896a86af16744c1c3542ff8a6d0467793af27aedb0fdbc9ee4a_s390x", + "product": { + "name": "openshift-logging/vector-rhel8@sha256:7e46ef2e749e3896a86af16744c1c3542ff8a6d0467793af27aedb0fdbc9ee4a_s390x", + "product_id": "openshift-logging/vector-rhel8@sha256:7e46ef2e749e3896a86af16744c1c3542ff8a6d0467793af27aedb0fdbc9ee4a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/vector-rhel8@sha256:7e46ef2e749e3896a86af16744c1c3542ff8a6d0467793af27aedb0fdbc9ee4a?arch=s390x&repository_url=registry.redhat.io/openshift-logging/vector-rhel8&tag=v0.21.0-113" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:50230e9829718254fc51d844e0305978b694354bda4b798fb5066ca3c182d323_s390x", + "product": { + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:50230e9829718254fc51d844e0305978b694354bda4b798fb5066ca3c182d323_s390x", + "product_id": "openshift-logging/logging-view-plugin-rhel8@sha256:50230e9829718254fc51d844e0305978b694354bda4b798fb5066ca3c182d323_s390x", + "product_identification_helper": { + "purl": "pkg:oci/logging-view-plugin-rhel8@sha256:50230e9829718254fc51d844e0305978b694354bda4b798fb5066ca3c182d323?arch=s390x&repository_url=registry.redhat.io/openshift-logging/logging-view-plugin-rhel8&tag=v5.6.12-8" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/loki-rhel8-operator@sha256:c5e123a5c5d637ff9fb0327c03351e46f14b0d774b484fd045d51df058550d3d_s390x", + "product": { + "name": "openshift-logging/loki-rhel8-operator@sha256:c5e123a5c5d637ff9fb0327c03351e46f14b0d774b484fd045d51df058550d3d_s390x", + "product_id": "openshift-logging/loki-rhel8-operator@sha256:c5e123a5c5d637ff9fb0327c03351e46f14b0d774b484fd045d51df058550d3d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/loki-rhel8-operator@sha256:c5e123a5c5d637ff9fb0327c03351e46f14b0d774b484fd045d51df058550d3d?arch=s390x&repository_url=registry.redhat.io/openshift-logging/loki-rhel8-operator&tag=v5.6.12-10" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:1da817a84816082f56d2f3bea2f4a680b8e8cc4fe7ff95e311b44e1b5f1f5f0a_s390x", + "product": { + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:1da817a84816082f56d2f3bea2f4a680b8e8cc4fe7ff95e311b44e1b5f1f5f0a_s390x", + "product_id": "openshift-logging/lokistack-gateway-rhel8@sha256:1da817a84816082f56d2f3bea2f4a680b8e8cc4fe7ff95e311b44e1b5f1f5f0a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/lokistack-gateway-rhel8@sha256:1da817a84816082f56d2f3bea2f4a680b8e8cc4fe7ff95e311b44e1b5f1f5f0a?arch=s390x&repository_url=registry.redhat.io/openshift-logging/lokistack-gateway-rhel8&tag=v0.1.0-357" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/opa-openshift-rhel8@sha256:b76cb34507d54f963da41744b614b83bb7cc031942e7252452c3b299dcc0f530_s390x", + "product": { + "name": "openshift-logging/opa-openshift-rhel8@sha256:b76cb34507d54f963da41744b614b83bb7cc031942e7252452c3b299dcc0f530_s390x", + "product_id": "openshift-logging/opa-openshift-rhel8@sha256:b76cb34507d54f963da41744b614b83bb7cc031942e7252452c3b299dcc0f530_s390x", + "product_identification_helper": { + "purl": "pkg:oci/opa-openshift-rhel8@sha256:b76cb34507d54f963da41744b614b83bb7cc031942e7252452c3b299dcc0f530?arch=s390x&repository_url=registry.redhat.io/openshift-logging/opa-openshift-rhel8&tag=v0.1.0-163" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:64d3a93c2adbca869845ea59edfbef2675658bd15fd22dfc1681b57809d3269c_arm64", + "product": { + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:64d3a93c2adbca869845ea59edfbef2675658bd15fd22dfc1681b57809d3269c_arm64", + "product_id": "openshift-logging/cluster-logging-rhel8-operator@sha256:64d3a93c2adbca869845ea59edfbef2675658bd15fd22dfc1681b57809d3269c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-logging-rhel8-operator@sha256:64d3a93c2adbca869845ea59edfbef2675658bd15fd22dfc1681b57809d3269c?arch=arm64&repository_url=registry.redhat.io/openshift-logging/cluster-logging-rhel8-operator&tag=v5.6.12-10" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:34a393916466f1d4544cbe4d75936147c4bfc4e0246bee0faebc5c285f26d30d_arm64", + "product": { + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:34a393916466f1d4544cbe4d75936147c4bfc4e0246bee0faebc5c285f26d30d_arm64", + "product_id": "openshift-logging/elasticsearch-rhel8-operator@sha256:34a393916466f1d4544cbe4d75936147c4bfc4e0246bee0faebc5c285f26d30d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-rhel8-operator@sha256:34a393916466f1d4544cbe4d75936147c4bfc4e0246bee0faebc5c285f26d30d?arch=arm64&repository_url=registry.redhat.io/openshift-logging/elasticsearch-rhel8-operator&tag=v5.6.12-8" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:ce5fc5a37453626de4bcb9a05d3849ef7da0722bfc8f0fecfc1f693cf6b5deff_arm64", + "product": { + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:ce5fc5a37453626de4bcb9a05d3849ef7da0722bfc8f0fecfc1f693cf6b5deff_arm64", + "product_id": "openshift-logging/elasticsearch-proxy-rhel8@sha256:ce5fc5a37453626de4bcb9a05d3849ef7da0722bfc8f0fecfc1f693cf6b5deff_arm64", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-proxy-rhel8@sha256:ce5fc5a37453626de4bcb9a05d3849ef7da0722bfc8f0fecfc1f693cf6b5deff?arch=arm64&repository_url=registry.redhat.io/openshift-logging/elasticsearch-proxy-rhel8&tag=v1.0.0-438" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:b442de2cb36a3a26b3d8b32d953d83d01c4cd5b659f974e1f781fbb5aaef5977_arm64", + "product": { + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:b442de2cb36a3a26b3d8b32d953d83d01c4cd5b659f974e1f781fbb5aaef5977_arm64", + "product_id": "openshift-logging/log-file-metric-exporter-rhel8@sha256:b442de2cb36a3a26b3d8b32d953d83d01c4cd5b659f974e1f781fbb5aaef5977_arm64", + "product_identification_helper": { + "purl": "pkg:oci/log-file-metric-exporter-rhel8@sha256:b442de2cb36a3a26b3d8b32d953d83d01c4cd5b659f974e1f781fbb5aaef5977?arch=arm64&repository_url=registry.redhat.io/openshift-logging/log-file-metric-exporter-rhel8&tag=v1.1.0-176" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-curator5-rhel8@sha256:4f8f194cc5827f05a969960937e9993528ad030c32d64c7a8d95bcb8ad1bb27a_arm64", + "product": { + "name": "openshift-logging/logging-curator5-rhel8@sha256:4f8f194cc5827f05a969960937e9993528ad030c32d64c7a8d95bcb8ad1bb27a_arm64", + "product_id": "openshift-logging/logging-curator5-rhel8@sha256:4f8f194cc5827f05a969960937e9993528ad030c32d64c7a8d95bcb8ad1bb27a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/logging-curator5-rhel8@sha256:4f8f194cc5827f05a969960937e9993528ad030c32d64c7a8d95bcb8ad1bb27a?arch=arm64&repository_url=registry.redhat.io/openshift-logging/logging-curator5-rhel8&tag=v5.8.1-420" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch6-rhel8@sha256:cd9a57aad90fdec4fef3b0f9b31df96c12bd7fe97cad90f9a1de79e6b0af4bbb_arm64", + "product": { + "name": "openshift-logging/elasticsearch6-rhel8@sha256:cd9a57aad90fdec4fef3b0f9b31df96c12bd7fe97cad90f9a1de79e6b0af4bbb_arm64", + "product_id": "openshift-logging/elasticsearch6-rhel8@sha256:cd9a57aad90fdec4fef3b0f9b31df96c12bd7fe97cad90f9a1de79e6b0af4bbb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch6-rhel8@sha256:cd9a57aad90fdec4fef3b0f9b31df96c12bd7fe97cad90f9a1de79e6b0af4bbb?arch=arm64&repository_url=registry.redhat.io/openshift-logging/elasticsearch6-rhel8&tag=v6.8.1-370" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/eventrouter-rhel8@sha256:fc638d1f8ff0f079ea1f5cfa3a9938dc06374ca4e6cd24f92ba62b7d03fd6963_arm64", + "product": { + "name": "openshift-logging/eventrouter-rhel8@sha256:fc638d1f8ff0f079ea1f5cfa3a9938dc06374ca4e6cd24f92ba62b7d03fd6963_arm64", + "product_id": "openshift-logging/eventrouter-rhel8@sha256:fc638d1f8ff0f079ea1f5cfa3a9938dc06374ca4e6cd24f92ba62b7d03fd6963_arm64", + "product_identification_helper": { + "purl": "pkg:oci/eventrouter-rhel8@sha256:fc638d1f8ff0f079ea1f5cfa3a9938dc06374ca4e6cd24f92ba62b7d03fd6963?arch=arm64&repository_url=registry.redhat.io/openshift-logging/eventrouter-rhel8&tag=v0.4.0-190" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/fluentd-rhel8@sha256:816908f1ac923336e8e3b87129af40271bde545e12b3385186425038f1b14991_arm64", + "product": { + "name": "openshift-logging/fluentd-rhel8@sha256:816908f1ac923336e8e3b87129af40271bde545e12b3385186425038f1b14991_arm64", + "product_id": "openshift-logging/fluentd-rhel8@sha256:816908f1ac923336e8e3b87129af40271bde545e12b3385186425038f1b14991_arm64", + "product_identification_helper": { + "purl": "pkg:oci/fluentd-rhel8@sha256:816908f1ac923336e8e3b87129af40271bde545e12b3385186425038f1b14991?arch=arm64&repository_url=registry.redhat.io/openshift-logging/fluentd-rhel8&tag=v1.14.6-192" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/kibana6-rhel8@sha256:0c4ea44d09b21a915c3ecc17c9a50ba22d71ed06b0cc4ba1d8bfbe1ced426e47_arm64", + "product": { + "name": "openshift-logging/kibana6-rhel8@sha256:0c4ea44d09b21a915c3ecc17c9a50ba22d71ed06b0cc4ba1d8bfbe1ced426e47_arm64", + "product_id": "openshift-logging/kibana6-rhel8@sha256:0c4ea44d09b21a915c3ecc17c9a50ba22d71ed06b0cc4ba1d8bfbe1ced426e47_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kibana6-rhel8@sha256:0c4ea44d09b21a915c3ecc17c9a50ba22d71ed06b0cc4ba1d8bfbe1ced426e47?arch=arm64&repository_url=registry.redhat.io/openshift-logging/kibana6-rhel8&tag=v6.8.1-400" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-loki-rhel8@sha256:f4558c73e630c043e8ffebd92bfbc805d13a644b19e5e43d35979b7942225b98_arm64", + "product": { + "name": "openshift-logging/logging-loki-rhel8@sha256:f4558c73e630c043e8ffebd92bfbc805d13a644b19e5e43d35979b7942225b98_arm64", + "product_id": "openshift-logging/logging-loki-rhel8@sha256:f4558c73e630c043e8ffebd92bfbc805d13a644b19e5e43d35979b7942225b98_arm64", + "product_identification_helper": { + "purl": "pkg:oci/logging-loki-rhel8@sha256:f4558c73e630c043e8ffebd92bfbc805d13a644b19e5e43d35979b7942225b98?arch=arm64&repository_url=registry.redhat.io/openshift-logging/logging-loki-rhel8&tag=v2.9.2-2" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/vector-rhel8@sha256:ebff04a36feae157572fdd32ce2cc045c504b850c0b9f471d381676da314dd97_arm64", + "product": { + "name": "openshift-logging/vector-rhel8@sha256:ebff04a36feae157572fdd32ce2cc045c504b850c0b9f471d381676da314dd97_arm64", + "product_id": "openshift-logging/vector-rhel8@sha256:ebff04a36feae157572fdd32ce2cc045c504b850c0b9f471d381676da314dd97_arm64", + "product_identification_helper": { + "purl": "pkg:oci/vector-rhel8@sha256:ebff04a36feae157572fdd32ce2cc045c504b850c0b9f471d381676da314dd97?arch=arm64&repository_url=registry.redhat.io/openshift-logging/vector-rhel8&tag=v0.21.0-113" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:79590fd5063ffa0245d96cec02dc4ce257244a431e213ecbe38462e86536b859_arm64", + "product": { + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:79590fd5063ffa0245d96cec02dc4ce257244a431e213ecbe38462e86536b859_arm64", + "product_id": "openshift-logging/logging-view-plugin-rhel8@sha256:79590fd5063ffa0245d96cec02dc4ce257244a431e213ecbe38462e86536b859_arm64", + "product_identification_helper": { + "purl": "pkg:oci/logging-view-plugin-rhel8@sha256:79590fd5063ffa0245d96cec02dc4ce257244a431e213ecbe38462e86536b859?arch=arm64&repository_url=registry.redhat.io/openshift-logging/logging-view-plugin-rhel8&tag=v5.6.12-8" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/loki-rhel8-operator@sha256:260731d610f37fa0072760f09d460d04fd3a1359d24a2218918412bc1a93947b_arm64", + "product": { + "name": "openshift-logging/loki-rhel8-operator@sha256:260731d610f37fa0072760f09d460d04fd3a1359d24a2218918412bc1a93947b_arm64", + "product_id": "openshift-logging/loki-rhel8-operator@sha256:260731d610f37fa0072760f09d460d04fd3a1359d24a2218918412bc1a93947b_arm64", + "product_identification_helper": { + "purl": "pkg:oci/loki-rhel8-operator@sha256:260731d610f37fa0072760f09d460d04fd3a1359d24a2218918412bc1a93947b?arch=arm64&repository_url=registry.redhat.io/openshift-logging/loki-rhel8-operator&tag=v5.6.12-10" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:a40f0f1402d912aa12329e0ee3f4d8084337a376f72f1e0b5e45a4dac44ac848_arm64", + "product": { + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:a40f0f1402d912aa12329e0ee3f4d8084337a376f72f1e0b5e45a4dac44ac848_arm64", + "product_id": "openshift-logging/lokistack-gateway-rhel8@sha256:a40f0f1402d912aa12329e0ee3f4d8084337a376f72f1e0b5e45a4dac44ac848_arm64", + "product_identification_helper": { + "purl": "pkg:oci/lokistack-gateway-rhel8@sha256:a40f0f1402d912aa12329e0ee3f4d8084337a376f72f1e0b5e45a4dac44ac848?arch=arm64&repository_url=registry.redhat.io/openshift-logging/lokistack-gateway-rhel8&tag=v0.1.0-357" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/opa-openshift-rhel8@sha256:e9fc83b6a9a40c2af4dd8a8454d8ca9e3a3bb96fdb290427d3a0c9cb753e91f4_arm64", + "product": { + "name": "openshift-logging/opa-openshift-rhel8@sha256:e9fc83b6a9a40c2af4dd8a8454d8ca9e3a3bb96fdb290427d3a0c9cb753e91f4_arm64", + "product_id": "openshift-logging/opa-openshift-rhel8@sha256:e9fc83b6a9a40c2af4dd8a8454d8ca9e3a3bb96fdb290427d3a0c9cb753e91f4_arm64", + "product_identification_helper": { + "purl": "pkg:oci/opa-openshift-rhel8@sha256:e9fc83b6a9a40c2af4dd8a8454d8ca9e3a3bb96fdb290427d3a0c9cb753e91f4?arch=arm64&repository_url=registry.redhat.io/openshift-logging/opa-openshift-rhel8&tag=v0.1.0-163" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:1d6a2bd236f72f3dbb4c2e284cb2ac2554d7d79b416d57ee94b8d158ea3ea807_arm64", + "product": { + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:1d6a2bd236f72f3dbb4c2e284cb2ac2554d7d79b416d57ee94b8d158ea3ea807_arm64", + "product_id": "openshift-logging/cluster-logging-rhel8-operator@sha256:1d6a2bd236f72f3dbb4c2e284cb2ac2554d7d79b416d57ee94b8d158ea3ea807_arm64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-logging-rhel8-operator@sha256:1d6a2bd236f72f3dbb4c2e284cb2ac2554d7d79b416d57ee94b8d158ea3ea807?arch=arm64&repository_url=registry.redhat.io/openshift-logging/cluster-logging-rhel8-operator&tag=v5.7.7-22" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:9a492f0164ba9ea96a8cef43577a6d62ce5806dc1e821d3aee2abfcf35a02ac0_arm64", + "product": { + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:9a492f0164ba9ea96a8cef43577a6d62ce5806dc1e821d3aee2abfcf35a02ac0_arm64", + "product_id": "openshift-logging/elasticsearch-rhel8-operator@sha256:9a492f0164ba9ea96a8cef43577a6d62ce5806dc1e821d3aee2abfcf35a02ac0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-rhel8-operator@sha256:9a492f0164ba9ea96a8cef43577a6d62ce5806dc1e821d3aee2abfcf35a02ac0?arch=arm64&repository_url=registry.redhat.io/openshift-logging/elasticsearch-rhel8-operator&tag=v5.7.7-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:2995302941f4c0d5016e49c3a01ca3bc4d80935ce1de70c84a2124e28e290947_arm64", + "product": { + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:2995302941f4c0d5016e49c3a01ca3bc4d80935ce1de70c84a2124e28e290947_arm64", + "product_id": "openshift-logging/elasticsearch-proxy-rhel8@sha256:2995302941f4c0d5016e49c3a01ca3bc4d80935ce1de70c84a2124e28e290947_arm64", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-proxy-rhel8@sha256:2995302941f4c0d5016e49c3a01ca3bc4d80935ce1de70c84a2124e28e290947?arch=arm64&repository_url=registry.redhat.io/openshift-logging/elasticsearch-proxy-rhel8&tag=v1.0.0-440" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:7f5f8f7d40938e5a0b2b2724c551f4e1dcf57de78daacd736b28b964d0fa6eec_arm64", + "product": { + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:7f5f8f7d40938e5a0b2b2724c551f4e1dcf57de78daacd736b28b964d0fa6eec_arm64", + "product_id": "openshift-logging/log-file-metric-exporter-rhel8@sha256:7f5f8f7d40938e5a0b2b2724c551f4e1dcf57de78daacd736b28b964d0fa6eec_arm64", + "product_identification_helper": { + "purl": "pkg:oci/log-file-metric-exporter-rhel8@sha256:7f5f8f7d40938e5a0b2b2724c551f4e1dcf57de78daacd736b28b964d0fa6eec?arch=arm64&repository_url=registry.redhat.io/openshift-logging/log-file-metric-exporter-rhel8&tag=v1.1.0-175" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-curator5-rhel8@sha256:0a7df021980720321c27e8021626e0c4f428150faa75fd92803b3e172f07eedf_arm64", + "product": { + "name": "openshift-logging/logging-curator5-rhel8@sha256:0a7df021980720321c27e8021626e0c4f428150faa75fd92803b3e172f07eedf_arm64", + "product_id": "openshift-logging/logging-curator5-rhel8@sha256:0a7df021980720321c27e8021626e0c4f428150faa75fd92803b3e172f07eedf_arm64", + "product_identification_helper": { + "purl": "pkg:oci/logging-curator5-rhel8@sha256:0a7df021980720321c27e8021626e0c4f428150faa75fd92803b3e172f07eedf?arch=arm64&repository_url=registry.redhat.io/openshift-logging/logging-curator5-rhel8&tag=v5.8.1-419" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch6-rhel8@sha256:a00a7c1c152b6d2897bdc06b0137b556e6931b7d309e4e9a585825dbd558d3ba_arm64", + "product": { + "name": "openshift-logging/elasticsearch6-rhel8@sha256:a00a7c1c152b6d2897bdc06b0137b556e6931b7d309e4e9a585825dbd558d3ba_arm64", + "product_id": "openshift-logging/elasticsearch6-rhel8@sha256:a00a7c1c152b6d2897bdc06b0137b556e6931b7d309e4e9a585825dbd558d3ba_arm64", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch6-rhel8@sha256:a00a7c1c152b6d2897bdc06b0137b556e6931b7d309e4e9a585825dbd558d3ba?arch=arm64&repository_url=registry.redhat.io/openshift-logging/elasticsearch6-rhel8&tag=v6.8.1-369" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/eventrouter-rhel8@sha256:bc31b395c3a2353048cad9d0d44f28e60f7e0a01e5fc6f6b2803d813ec279687_arm64", + "product": { + "name": "openshift-logging/eventrouter-rhel8@sha256:bc31b395c3a2353048cad9d0d44f28e60f7e0a01e5fc6f6b2803d813ec279687_arm64", + "product_id": "openshift-logging/eventrouter-rhel8@sha256:bc31b395c3a2353048cad9d0d44f28e60f7e0a01e5fc6f6b2803d813ec279687_arm64", + "product_identification_helper": { + "purl": "pkg:oci/eventrouter-rhel8@sha256:bc31b395c3a2353048cad9d0d44f28e60f7e0a01e5fc6f6b2803d813ec279687?arch=arm64&repository_url=registry.redhat.io/openshift-logging/eventrouter-rhel8&tag=v0.4.0-189" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/fluentd-rhel8@sha256:d920792d5ea71265702f0a408888e051b47d23cb8b624c02e6ed29b142d152bf_arm64", + "product": { + "name": "openshift-logging/fluentd-rhel8@sha256:d920792d5ea71265702f0a408888e051b47d23cb8b624c02e6ed29b142d152bf_arm64", + "product_id": "openshift-logging/fluentd-rhel8@sha256:d920792d5ea71265702f0a408888e051b47d23cb8b624c02e6ed29b142d152bf_arm64", + "product_identification_helper": { + "purl": "pkg:oci/fluentd-rhel8@sha256:d920792d5ea71265702f0a408888e051b47d23cb8b624c02e6ed29b142d152bf?arch=arm64&repository_url=registry.redhat.io/openshift-logging/fluentd-rhel8&tag=v1.14.6-191" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/kibana6-rhel8@sha256:6bdd69f14340d82695bd645b14f4faaa99c830630087d43aa843418cfb34b89e_arm64", + "product": { + "name": "openshift-logging/kibana6-rhel8@sha256:6bdd69f14340d82695bd645b14f4faaa99c830630087d43aa843418cfb34b89e_arm64", + "product_id": "openshift-logging/kibana6-rhel8@sha256:6bdd69f14340d82695bd645b14f4faaa99c830630087d43aa843418cfb34b89e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/kibana6-rhel8@sha256:6bdd69f14340d82695bd645b14f4faaa99c830630087d43aa843418cfb34b89e?arch=arm64&repository_url=registry.redhat.io/openshift-logging/kibana6-rhel8&tag=v6.8.1-398" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-loki-rhel8@sha256:8cb4328b46bc3f8627f11fe69b37d8147f1d76b909c9880066277615c36cabc1_arm64", + "product": { + "name": "openshift-logging/logging-loki-rhel8@sha256:8cb4328b46bc3f8627f11fe69b37d8147f1d76b909c9880066277615c36cabc1_arm64", + "product_id": "openshift-logging/logging-loki-rhel8@sha256:8cb4328b46bc3f8627f11fe69b37d8147f1d76b909c9880066277615c36cabc1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/logging-loki-rhel8@sha256:8cb4328b46bc3f8627f11fe69b37d8147f1d76b909c9880066277615c36cabc1?arch=arm64&repository_url=registry.redhat.io/openshift-logging/logging-loki-rhel8&tag=v2.9.2-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/vector-rhel8@sha256:eb444e7e77e14ff1f36c048bdd53d482b6cf3ed98d3ff6f2574620187fde49ab_arm64", + "product": { + "name": "openshift-logging/vector-rhel8@sha256:eb444e7e77e14ff1f36c048bdd53d482b6cf3ed98d3ff6f2574620187fde49ab_arm64", + "product_id": "openshift-logging/vector-rhel8@sha256:eb444e7e77e14ff1f36c048bdd53d482b6cf3ed98d3ff6f2574620187fde49ab_arm64", + "product_identification_helper": { + "purl": "pkg:oci/vector-rhel8@sha256:eb444e7e77e14ff1f36c048bdd53d482b6cf3ed98d3ff6f2574620187fde49ab?arch=arm64&repository_url=registry.redhat.io/openshift-logging/vector-rhel8&tag=v0.28.1-32" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:0f251245e9f1030e64a6c9b76fe22b571e4a3f9cc2fd38979b52e5c91c6bd2e6_arm64", + "product": { + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:0f251245e9f1030e64a6c9b76fe22b571e4a3f9cc2fd38979b52e5c91c6bd2e6_arm64", + "product_id": "openshift-logging/logging-view-plugin-rhel8@sha256:0f251245e9f1030e64a6c9b76fe22b571e4a3f9cc2fd38979b52e5c91c6bd2e6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/logging-view-plugin-rhel8@sha256:0f251245e9f1030e64a6c9b76fe22b571e4a3f9cc2fd38979b52e5c91c6bd2e6?arch=arm64&repository_url=registry.redhat.io/openshift-logging/logging-view-plugin-rhel8&tag=v5.7.7-8" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/loki-rhel8-operator@sha256:31cdc95fe91aeb315afa5a1daf98e91587eac31b895de5b698bfd4637889ce22_arm64", + "product": { + "name": "openshift-logging/loki-rhel8-operator@sha256:31cdc95fe91aeb315afa5a1daf98e91587eac31b895de5b698bfd4637889ce22_arm64", + "product_id": "openshift-logging/loki-rhel8-operator@sha256:31cdc95fe91aeb315afa5a1daf98e91587eac31b895de5b698bfd4637889ce22_arm64", + "product_identification_helper": { + "purl": "pkg:oci/loki-rhel8-operator@sha256:31cdc95fe91aeb315afa5a1daf98e91587eac31b895de5b698bfd4637889ce22?arch=arm64&repository_url=registry.redhat.io/openshift-logging/loki-rhel8-operator&tag=v5.7.7-16" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:3ef274ae69a419f4458c290b6bd33c2787798dc5a905f46dc20aff7b1c0b6e25_arm64", + "product": { + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:3ef274ae69a419f4458c290b6bd33c2787798dc5a905f46dc20aff7b1c0b6e25_arm64", + "product_id": "openshift-logging/lokistack-gateway-rhel8@sha256:3ef274ae69a419f4458c290b6bd33c2787798dc5a905f46dc20aff7b1c0b6e25_arm64", + "product_identification_helper": { + "purl": "pkg:oci/lokistack-gateway-rhel8@sha256:3ef274ae69a419f4458c290b6bd33c2787798dc5a905f46dc20aff7b1c0b6e25?arch=arm64&repository_url=registry.redhat.io/openshift-logging/lokistack-gateway-rhel8&tag=v0.1.0-355" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/opa-openshift-rhel8@sha256:cc216b7b979a7b216fa7d4965ad6b1a147405fe95b95eafc0aa47c758f1b16d9_arm64", + "product": { + "name": "openshift-logging/opa-openshift-rhel8@sha256:cc216b7b979a7b216fa7d4965ad6b1a147405fe95b95eafc0aa47c758f1b16d9_arm64", + "product_id": "openshift-logging/opa-openshift-rhel8@sha256:cc216b7b979a7b216fa7d4965ad6b1a147405fe95b95eafc0aa47c758f1b16d9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/opa-openshift-rhel8@sha256:cc216b7b979a7b216fa7d4965ad6b1a147405fe95b95eafc0aa47c758f1b16d9?arch=arm64&repository_url=registry.redhat.io/openshift-logging/opa-openshift-rhel8&tag=v0.1.0-161" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:efb5cb250782473d1f4eb42d06747c9fad6df65c888cca88ed421bba399c5d96_amd64", + "product": { + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:efb5cb250782473d1f4eb42d06747c9fad6df65c888cca88ed421bba399c5d96_amd64", + "product_id": "openshift-logging/cluster-logging-rhel8-operator@sha256:efb5cb250782473d1f4eb42d06747c9fad6df65c888cca88ed421bba399c5d96_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-logging-rhel8-operator@sha256:efb5cb250782473d1f4eb42d06747c9fad6df65c888cca88ed421bba399c5d96?arch=amd64&repository_url=registry.redhat.io/openshift-logging/cluster-logging-rhel8-operator&tag=v5.7.7-22" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/cluster-logging-operator-bundle@sha256:0761943b57451fa8cd0d42942a831376ab48f723e8ea461d0a5ea49c9a391d7b_amd64", + "product": { + "name": "openshift-logging/cluster-logging-operator-bundle@sha256:0761943b57451fa8cd0d42942a831376ab48f723e8ea461d0a5ea49c9a391d7b_amd64", + "product_id": "openshift-logging/cluster-logging-operator-bundle@sha256:0761943b57451fa8cd0d42942a831376ab48f723e8ea461d0a5ea49c9a391d7b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cluster-logging-operator-bundle@sha256:0761943b57451fa8cd0d42942a831376ab48f723e8ea461d0a5ea49c9a391d7b?arch=amd64&repository_url=registry.redhat.io/openshift-logging/cluster-logging-operator-bundle&tag=v5.7.7-53" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:368447ae5216ada4c092c8781d3b847a5d37606d7c4ce430376ed5d3a4384863_amd64", + "product": { + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:368447ae5216ada4c092c8781d3b847a5d37606d7c4ce430376ed5d3a4384863_amd64", + "product_id": "openshift-logging/elasticsearch-rhel8-operator@sha256:368447ae5216ada4c092c8781d3b847a5d37606d7c4ce430376ed5d3a4384863_amd64", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-rhel8-operator@sha256:368447ae5216ada4c092c8781d3b847a5d37606d7c4ce430376ed5d3a4384863?arch=amd64&repository_url=registry.redhat.io/openshift-logging/elasticsearch-rhel8-operator&tag=v5.7.7-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-operator-bundle@sha256:060f8fd11a32cbb6247d7d41e4be1fc71026e9bab9238995b7b2e563fb94e6d7_amd64", + "product": { + "name": "openshift-logging/elasticsearch-operator-bundle@sha256:060f8fd11a32cbb6247d7d41e4be1fc71026e9bab9238995b7b2e563fb94e6d7_amd64", + "product_id": "openshift-logging/elasticsearch-operator-bundle@sha256:060f8fd11a32cbb6247d7d41e4be1fc71026e9bab9238995b7b2e563fb94e6d7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-operator-bundle@sha256:060f8fd11a32cbb6247d7d41e4be1fc71026e9bab9238995b7b2e563fb94e6d7?arch=amd64&repository_url=registry.redhat.io/openshift-logging/elasticsearch-operator-bundle&tag=v5.7.7-24" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:7ca7ec92b15a7556d6a8daabd24a70f42e4260b6caf9168e852890c063e91186_amd64", + "product": { + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:7ca7ec92b15a7556d6a8daabd24a70f42e4260b6caf9168e852890c063e91186_amd64", + "product_id": "openshift-logging/elasticsearch-proxy-rhel8@sha256:7ca7ec92b15a7556d6a8daabd24a70f42e4260b6caf9168e852890c063e91186_amd64", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-proxy-rhel8@sha256:7ca7ec92b15a7556d6a8daabd24a70f42e4260b6caf9168e852890c063e91186?arch=amd64&repository_url=registry.redhat.io/openshift-logging/elasticsearch-proxy-rhel8&tag=v1.0.0-440" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:407891f77d384f8708f9e33469c410e84ba25fa9e4cb16e4a6a9c212f0b48a9c_amd64", + "product": { + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:407891f77d384f8708f9e33469c410e84ba25fa9e4cb16e4a6a9c212f0b48a9c_amd64", + "product_id": "openshift-logging/log-file-metric-exporter-rhel8@sha256:407891f77d384f8708f9e33469c410e84ba25fa9e4cb16e4a6a9c212f0b48a9c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/log-file-metric-exporter-rhel8@sha256:407891f77d384f8708f9e33469c410e84ba25fa9e4cb16e4a6a9c212f0b48a9c?arch=amd64&repository_url=registry.redhat.io/openshift-logging/log-file-metric-exporter-rhel8&tag=v1.1.0-175" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-curator5-rhel8@sha256:00fe8c23f7944a5d639c17b2e81dd80a424aabbddd4d7f0aff6b54f8cf370a58_amd64", + "product": { + "name": "openshift-logging/logging-curator5-rhel8@sha256:00fe8c23f7944a5d639c17b2e81dd80a424aabbddd4d7f0aff6b54f8cf370a58_amd64", + "product_id": "openshift-logging/logging-curator5-rhel8@sha256:00fe8c23f7944a5d639c17b2e81dd80a424aabbddd4d7f0aff6b54f8cf370a58_amd64", + "product_identification_helper": { + "purl": "pkg:oci/logging-curator5-rhel8@sha256:00fe8c23f7944a5d639c17b2e81dd80a424aabbddd4d7f0aff6b54f8cf370a58?arch=amd64&repository_url=registry.redhat.io/openshift-logging/logging-curator5-rhel8&tag=v5.8.1-419" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch6-rhel8@sha256:560831bdc34128719564aaaca4b80bba32062b97c87118b4ac00413609bcf067_amd64", + "product": { + "name": "openshift-logging/elasticsearch6-rhel8@sha256:560831bdc34128719564aaaca4b80bba32062b97c87118b4ac00413609bcf067_amd64", + "product_id": "openshift-logging/elasticsearch6-rhel8@sha256:560831bdc34128719564aaaca4b80bba32062b97c87118b4ac00413609bcf067_amd64", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch6-rhel8@sha256:560831bdc34128719564aaaca4b80bba32062b97c87118b4ac00413609bcf067?arch=amd64&repository_url=registry.redhat.io/openshift-logging/elasticsearch6-rhel8&tag=v6.8.1-369" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/eventrouter-rhel8@sha256:3054aade5994df42ab7c2981865a7851049ea46ed20b7805d1553d6b28ab5af8_amd64", + "product": { + "name": "openshift-logging/eventrouter-rhel8@sha256:3054aade5994df42ab7c2981865a7851049ea46ed20b7805d1553d6b28ab5af8_amd64", + "product_id": "openshift-logging/eventrouter-rhel8@sha256:3054aade5994df42ab7c2981865a7851049ea46ed20b7805d1553d6b28ab5af8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/eventrouter-rhel8@sha256:3054aade5994df42ab7c2981865a7851049ea46ed20b7805d1553d6b28ab5af8?arch=amd64&repository_url=registry.redhat.io/openshift-logging/eventrouter-rhel8&tag=v0.4.0-189" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/fluentd-rhel8@sha256:f93ddeb2a52c0aead46bb0bb2af71a68c9a11093617615faadb3b07f45590fa1_amd64", + "product": { + "name": "openshift-logging/fluentd-rhel8@sha256:f93ddeb2a52c0aead46bb0bb2af71a68c9a11093617615faadb3b07f45590fa1_amd64", + "product_id": "openshift-logging/fluentd-rhel8@sha256:f93ddeb2a52c0aead46bb0bb2af71a68c9a11093617615faadb3b07f45590fa1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/fluentd-rhel8@sha256:f93ddeb2a52c0aead46bb0bb2af71a68c9a11093617615faadb3b07f45590fa1?arch=amd64&repository_url=registry.redhat.io/openshift-logging/fluentd-rhel8&tag=v1.14.6-191" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/kibana6-rhel8@sha256:b104e6731b8ddfb98dd8a0891dfb1051fb59e82d70f91c297a62402922412c32_amd64", + "product": { + "name": "openshift-logging/kibana6-rhel8@sha256:b104e6731b8ddfb98dd8a0891dfb1051fb59e82d70f91c297a62402922412c32_amd64", + "product_id": "openshift-logging/kibana6-rhel8@sha256:b104e6731b8ddfb98dd8a0891dfb1051fb59e82d70f91c297a62402922412c32_amd64", + "product_identification_helper": { + "purl": "pkg:oci/kibana6-rhel8@sha256:b104e6731b8ddfb98dd8a0891dfb1051fb59e82d70f91c297a62402922412c32?arch=amd64&repository_url=registry.redhat.io/openshift-logging/kibana6-rhel8&tag=v6.8.1-398" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-loki-rhel8@sha256:9fe7eba96b742b1a3d55cef2934ce6259be01faf589f0b2ec1bc3b557a833980_amd64", + "product": { + "name": "openshift-logging/logging-loki-rhel8@sha256:9fe7eba96b742b1a3d55cef2934ce6259be01faf589f0b2ec1bc3b557a833980_amd64", + "product_id": "openshift-logging/logging-loki-rhel8@sha256:9fe7eba96b742b1a3d55cef2934ce6259be01faf589f0b2ec1bc3b557a833980_amd64", + "product_identification_helper": { + "purl": "pkg:oci/logging-loki-rhel8@sha256:9fe7eba96b742b1a3d55cef2934ce6259be01faf589f0b2ec1bc3b557a833980?arch=amd64&repository_url=registry.redhat.io/openshift-logging/logging-loki-rhel8&tag=v2.9.2-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/vector-rhel8@sha256:5d785f0ff007386c3d6c69eb06e1bac518c7a1b781504ef5ddbb7e6a682382e8_amd64", + "product": { + "name": "openshift-logging/vector-rhel8@sha256:5d785f0ff007386c3d6c69eb06e1bac518c7a1b781504ef5ddbb7e6a682382e8_amd64", + "product_id": "openshift-logging/vector-rhel8@sha256:5d785f0ff007386c3d6c69eb06e1bac518c7a1b781504ef5ddbb7e6a682382e8_amd64", + "product_identification_helper": { + "purl": "pkg:oci/vector-rhel8@sha256:5d785f0ff007386c3d6c69eb06e1bac518c7a1b781504ef5ddbb7e6a682382e8?arch=amd64&repository_url=registry.redhat.io/openshift-logging/vector-rhel8&tag=v0.28.1-32" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:2f09d0a0faad8944b5d4689699ae15d3d4e44cefaa5aaa11f2c584e71b23e667_amd64", + "product": { + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:2f09d0a0faad8944b5d4689699ae15d3d4e44cefaa5aaa11f2c584e71b23e667_amd64", + "product_id": "openshift-logging/logging-view-plugin-rhel8@sha256:2f09d0a0faad8944b5d4689699ae15d3d4e44cefaa5aaa11f2c584e71b23e667_amd64", + "product_identification_helper": { + "purl": "pkg:oci/logging-view-plugin-rhel8@sha256:2f09d0a0faad8944b5d4689699ae15d3d4e44cefaa5aaa11f2c584e71b23e667?arch=amd64&repository_url=registry.redhat.io/openshift-logging/logging-view-plugin-rhel8&tag=v5.7.7-8" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/loki-operator-bundle@sha256:c569eba6b695d9f26dc47f413e925d02666683a4af0401f23cfd05b96dcb61e9_amd64", + "product": { + "name": "openshift-logging/loki-operator-bundle@sha256:c569eba6b695d9f26dc47f413e925d02666683a4af0401f23cfd05b96dcb61e9_amd64", + "product_id": "openshift-logging/loki-operator-bundle@sha256:c569eba6b695d9f26dc47f413e925d02666683a4af0401f23cfd05b96dcb61e9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/loki-operator-bundle@sha256:c569eba6b695d9f26dc47f413e925d02666683a4af0401f23cfd05b96dcb61e9?arch=amd64&repository_url=registry.redhat.io/openshift-logging/loki-operator-bundle&tag=v5.7.7-32" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/loki-rhel8-operator@sha256:c7d2ef7cf71269238bb23db61f08f9d237baa955a18cb394e8d34dc80178cdc5_amd64", + "product": { + "name": "openshift-logging/loki-rhel8-operator@sha256:c7d2ef7cf71269238bb23db61f08f9d237baa955a18cb394e8d34dc80178cdc5_amd64", + "product_id": "openshift-logging/loki-rhel8-operator@sha256:c7d2ef7cf71269238bb23db61f08f9d237baa955a18cb394e8d34dc80178cdc5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/loki-rhel8-operator@sha256:c7d2ef7cf71269238bb23db61f08f9d237baa955a18cb394e8d34dc80178cdc5?arch=amd64&repository_url=registry.redhat.io/openshift-logging/loki-rhel8-operator&tag=v5.7.7-16" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:37e919ddb8673ef99e5e0e1b9e5c9c388c9417dd45971f2dab05bf92b462ab67_amd64", + "product": { + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:37e919ddb8673ef99e5e0e1b9e5c9c388c9417dd45971f2dab05bf92b462ab67_amd64", + "product_id": "openshift-logging/lokistack-gateway-rhel8@sha256:37e919ddb8673ef99e5e0e1b9e5c9c388c9417dd45971f2dab05bf92b462ab67_amd64", + "product_identification_helper": { + "purl": "pkg:oci/lokistack-gateway-rhel8@sha256:37e919ddb8673ef99e5e0e1b9e5c9c388c9417dd45971f2dab05bf92b462ab67?arch=amd64&repository_url=registry.redhat.io/openshift-logging/lokistack-gateway-rhel8&tag=v0.1.0-355" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/opa-openshift-rhel8@sha256:cf9edc3befb08c9e0327197884faeb387b44efc169063020d154aa2ce77bd711_amd64", + "product": { + "name": "openshift-logging/opa-openshift-rhel8@sha256:cf9edc3befb08c9e0327197884faeb387b44efc169063020d154aa2ce77bd711_amd64", + "product_id": "openshift-logging/opa-openshift-rhel8@sha256:cf9edc3befb08c9e0327197884faeb387b44efc169063020d154aa2ce77bd711_amd64", + "product_identification_helper": { + "purl": "pkg:oci/opa-openshift-rhel8@sha256:cf9edc3befb08c9e0327197884faeb387b44efc169063020d154aa2ce77bd711?arch=amd64&repository_url=registry.redhat.io/openshift-logging/opa-openshift-rhel8&tag=v0.1.0-161" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:c9a5546e0f427376f36d6d350cebe7ed3e7d2468d3c8290528fbe054462e22d6_s390x", + "product": { + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:c9a5546e0f427376f36d6d350cebe7ed3e7d2468d3c8290528fbe054462e22d6_s390x", + "product_id": "openshift-logging/cluster-logging-rhel8-operator@sha256:c9a5546e0f427376f36d6d350cebe7ed3e7d2468d3c8290528fbe054462e22d6_s390x", + "product_identification_helper": { + "purl": "pkg:oci/cluster-logging-rhel8-operator@sha256:c9a5546e0f427376f36d6d350cebe7ed3e7d2468d3c8290528fbe054462e22d6?arch=s390x&repository_url=registry.redhat.io/openshift-logging/cluster-logging-rhel8-operator&tag=v5.7.7-22" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:720587fcb7a89a571c04c8e222e5ebf54c899086ce07461e5f5dac7dfe8e6af9_s390x", + "product": { + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:720587fcb7a89a571c04c8e222e5ebf54c899086ce07461e5f5dac7dfe8e6af9_s390x", + "product_id": "openshift-logging/elasticsearch-rhel8-operator@sha256:720587fcb7a89a571c04c8e222e5ebf54c899086ce07461e5f5dac7dfe8e6af9_s390x", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-rhel8-operator@sha256:720587fcb7a89a571c04c8e222e5ebf54c899086ce07461e5f5dac7dfe8e6af9?arch=s390x&repository_url=registry.redhat.io/openshift-logging/elasticsearch-rhel8-operator&tag=v5.7.7-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:6f64ee3aeedb891cb4b88e90c7569235d8e136cb2a66c7da1bc3ec73a518aa5d_s390x", + "product": { + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:6f64ee3aeedb891cb4b88e90c7569235d8e136cb2a66c7da1bc3ec73a518aa5d_s390x", + "product_id": "openshift-logging/elasticsearch-proxy-rhel8@sha256:6f64ee3aeedb891cb4b88e90c7569235d8e136cb2a66c7da1bc3ec73a518aa5d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-proxy-rhel8@sha256:6f64ee3aeedb891cb4b88e90c7569235d8e136cb2a66c7da1bc3ec73a518aa5d?arch=s390x&repository_url=registry.redhat.io/openshift-logging/elasticsearch-proxy-rhel8&tag=v1.0.0-440" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:a91af106ffacd6a620c6b194697516ee3e9f8aa36605873061766d9f0ec35f84_s390x", + "product": { + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:a91af106ffacd6a620c6b194697516ee3e9f8aa36605873061766d9f0ec35f84_s390x", + "product_id": "openshift-logging/log-file-metric-exporter-rhel8@sha256:a91af106ffacd6a620c6b194697516ee3e9f8aa36605873061766d9f0ec35f84_s390x", + "product_identification_helper": { + "purl": "pkg:oci/log-file-metric-exporter-rhel8@sha256:a91af106ffacd6a620c6b194697516ee3e9f8aa36605873061766d9f0ec35f84?arch=s390x&repository_url=registry.redhat.io/openshift-logging/log-file-metric-exporter-rhel8&tag=v1.1.0-175" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-curator5-rhel8@sha256:94a2902ffbfcec5c29a23529d81f4605ebab9bde8156ad1be6dba42ccedeb1fe_s390x", + "product": { + "name": "openshift-logging/logging-curator5-rhel8@sha256:94a2902ffbfcec5c29a23529d81f4605ebab9bde8156ad1be6dba42ccedeb1fe_s390x", + "product_id": "openshift-logging/logging-curator5-rhel8@sha256:94a2902ffbfcec5c29a23529d81f4605ebab9bde8156ad1be6dba42ccedeb1fe_s390x", + "product_identification_helper": { + "purl": "pkg:oci/logging-curator5-rhel8@sha256:94a2902ffbfcec5c29a23529d81f4605ebab9bde8156ad1be6dba42ccedeb1fe?arch=s390x&repository_url=registry.redhat.io/openshift-logging/logging-curator5-rhel8&tag=v5.8.1-419" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch6-rhel8@sha256:90c408f644a8a853de8338f2d4c1b7ff10877973a98c15868e1e0662da8eca46_s390x", + "product": { + "name": "openshift-logging/elasticsearch6-rhel8@sha256:90c408f644a8a853de8338f2d4c1b7ff10877973a98c15868e1e0662da8eca46_s390x", + "product_id": "openshift-logging/elasticsearch6-rhel8@sha256:90c408f644a8a853de8338f2d4c1b7ff10877973a98c15868e1e0662da8eca46_s390x", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch6-rhel8@sha256:90c408f644a8a853de8338f2d4c1b7ff10877973a98c15868e1e0662da8eca46?arch=s390x&repository_url=registry.redhat.io/openshift-logging/elasticsearch6-rhel8&tag=v6.8.1-369" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/eventrouter-rhel8@sha256:7a45458250a73682ab11a3c743d563ab1c9072281b15d3a18088c5902130a4cd_s390x", + "product": { + "name": "openshift-logging/eventrouter-rhel8@sha256:7a45458250a73682ab11a3c743d563ab1c9072281b15d3a18088c5902130a4cd_s390x", + "product_id": "openshift-logging/eventrouter-rhel8@sha256:7a45458250a73682ab11a3c743d563ab1c9072281b15d3a18088c5902130a4cd_s390x", + "product_identification_helper": { + "purl": "pkg:oci/eventrouter-rhel8@sha256:7a45458250a73682ab11a3c743d563ab1c9072281b15d3a18088c5902130a4cd?arch=s390x&repository_url=registry.redhat.io/openshift-logging/eventrouter-rhel8&tag=v0.4.0-189" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/fluentd-rhel8@sha256:08ba4f66916d6331ce739c856c863e2de59c7b870ef2247ed2ee4b5895932193_s390x", + "product": { + "name": "openshift-logging/fluentd-rhel8@sha256:08ba4f66916d6331ce739c856c863e2de59c7b870ef2247ed2ee4b5895932193_s390x", + "product_id": "openshift-logging/fluentd-rhel8@sha256:08ba4f66916d6331ce739c856c863e2de59c7b870ef2247ed2ee4b5895932193_s390x", + "product_identification_helper": { + "purl": "pkg:oci/fluentd-rhel8@sha256:08ba4f66916d6331ce739c856c863e2de59c7b870ef2247ed2ee4b5895932193?arch=s390x&repository_url=registry.redhat.io/openshift-logging/fluentd-rhel8&tag=v1.14.6-191" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/kibana6-rhel8@sha256:e8af2bde433bebee9236365ce6bc52db26981c8e484df2048cb4ed2b7cb5bed1_s390x", + "product": { + "name": "openshift-logging/kibana6-rhel8@sha256:e8af2bde433bebee9236365ce6bc52db26981c8e484df2048cb4ed2b7cb5bed1_s390x", + "product_id": "openshift-logging/kibana6-rhel8@sha256:e8af2bde433bebee9236365ce6bc52db26981c8e484df2048cb4ed2b7cb5bed1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/kibana6-rhel8@sha256:e8af2bde433bebee9236365ce6bc52db26981c8e484df2048cb4ed2b7cb5bed1?arch=s390x&repository_url=registry.redhat.io/openshift-logging/kibana6-rhel8&tag=v6.8.1-398" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-loki-rhel8@sha256:9a1e97c4dac0165d92615b30b9140149b038ab788464dcd41f8a14b647220a98_s390x", + "product": { + "name": "openshift-logging/logging-loki-rhel8@sha256:9a1e97c4dac0165d92615b30b9140149b038ab788464dcd41f8a14b647220a98_s390x", + "product_id": "openshift-logging/logging-loki-rhel8@sha256:9a1e97c4dac0165d92615b30b9140149b038ab788464dcd41f8a14b647220a98_s390x", + "product_identification_helper": { + "purl": "pkg:oci/logging-loki-rhel8@sha256:9a1e97c4dac0165d92615b30b9140149b038ab788464dcd41f8a14b647220a98?arch=s390x&repository_url=registry.redhat.io/openshift-logging/logging-loki-rhel8&tag=v2.9.2-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/vector-rhel8@sha256:7c85f6f777f9c74096c33f76fbc9c122f203cb549fc91142d51e6aebdc400ec5_s390x", + "product": { + "name": "openshift-logging/vector-rhel8@sha256:7c85f6f777f9c74096c33f76fbc9c122f203cb549fc91142d51e6aebdc400ec5_s390x", + "product_id": "openshift-logging/vector-rhel8@sha256:7c85f6f777f9c74096c33f76fbc9c122f203cb549fc91142d51e6aebdc400ec5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/vector-rhel8@sha256:7c85f6f777f9c74096c33f76fbc9c122f203cb549fc91142d51e6aebdc400ec5?arch=s390x&repository_url=registry.redhat.io/openshift-logging/vector-rhel8&tag=v0.28.1-32" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:c1247743656700aa4be1b1f6d43732e9ad65e0a99a928065aa94ef2a3729bac8_s390x", + "product": { + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:c1247743656700aa4be1b1f6d43732e9ad65e0a99a928065aa94ef2a3729bac8_s390x", + "product_id": "openshift-logging/logging-view-plugin-rhel8@sha256:c1247743656700aa4be1b1f6d43732e9ad65e0a99a928065aa94ef2a3729bac8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/logging-view-plugin-rhel8@sha256:c1247743656700aa4be1b1f6d43732e9ad65e0a99a928065aa94ef2a3729bac8?arch=s390x&repository_url=registry.redhat.io/openshift-logging/logging-view-plugin-rhel8&tag=v5.7.7-8" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/loki-rhel8-operator@sha256:75d73f70f941e73b41e38d666dc1dbdfb465cb2d182b6f3663d632da5a15feb7_s390x", + "product": { + "name": "openshift-logging/loki-rhel8-operator@sha256:75d73f70f941e73b41e38d666dc1dbdfb465cb2d182b6f3663d632da5a15feb7_s390x", + "product_id": "openshift-logging/loki-rhel8-operator@sha256:75d73f70f941e73b41e38d666dc1dbdfb465cb2d182b6f3663d632da5a15feb7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/loki-rhel8-operator@sha256:75d73f70f941e73b41e38d666dc1dbdfb465cb2d182b6f3663d632da5a15feb7?arch=s390x&repository_url=registry.redhat.io/openshift-logging/loki-rhel8-operator&tag=v5.7.7-16" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:1b1dd755ceb338795820eb5c4abd1914071b4579502eb40379e0126dbc5bd58c_s390x", + "product": { + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:1b1dd755ceb338795820eb5c4abd1914071b4579502eb40379e0126dbc5bd58c_s390x", + "product_id": "openshift-logging/lokistack-gateway-rhel8@sha256:1b1dd755ceb338795820eb5c4abd1914071b4579502eb40379e0126dbc5bd58c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/lokistack-gateway-rhel8@sha256:1b1dd755ceb338795820eb5c4abd1914071b4579502eb40379e0126dbc5bd58c?arch=s390x&repository_url=registry.redhat.io/openshift-logging/lokistack-gateway-rhel8&tag=v0.1.0-355" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/opa-openshift-rhel8@sha256:a99366c13fbb55e96bebe92054c09ac75133023b940df8b80a43d89c8d6db580_s390x", + "product": { + "name": "openshift-logging/opa-openshift-rhel8@sha256:a99366c13fbb55e96bebe92054c09ac75133023b940df8b80a43d89c8d6db580_s390x", + "product_id": "openshift-logging/opa-openshift-rhel8@sha256:a99366c13fbb55e96bebe92054c09ac75133023b940df8b80a43d89c8d6db580_s390x", + "product_identification_helper": { + "purl": "pkg:oci/opa-openshift-rhel8@sha256:a99366c13fbb55e96bebe92054c09ac75133023b940df8b80a43d89c8d6db580?arch=s390x&repository_url=registry.redhat.io/openshift-logging/opa-openshift-rhel8&tag=v0.1.0-161" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:2023d126c1be90ab6e6b27e778cc3944a2e5af2b44358537d65e60d385e78959_ppc64le", + "product": { + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:2023d126c1be90ab6e6b27e778cc3944a2e5af2b44358537d65e60d385e78959_ppc64le", + "product_id": "openshift-logging/cluster-logging-rhel8-operator@sha256:2023d126c1be90ab6e6b27e778cc3944a2e5af2b44358537d65e60d385e78959_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/cluster-logging-rhel8-operator@sha256:2023d126c1be90ab6e6b27e778cc3944a2e5af2b44358537d65e60d385e78959?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/cluster-logging-rhel8-operator&tag=v5.7.7-22" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:640dfbd649bde0c5fed45d5ecaf595e1cf09ffa6d76be3b75751108c0d85bbcb_ppc64le", + "product": { + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:640dfbd649bde0c5fed45d5ecaf595e1cf09ffa6d76be3b75751108c0d85bbcb_ppc64le", + "product_id": "openshift-logging/elasticsearch-rhel8-operator@sha256:640dfbd649bde0c5fed45d5ecaf595e1cf09ffa6d76be3b75751108c0d85bbcb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-rhel8-operator@sha256:640dfbd649bde0c5fed45d5ecaf595e1cf09ffa6d76be3b75751108c0d85bbcb?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/elasticsearch-rhel8-operator&tag=v5.7.7-9" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:f223378bb8b335e6ed531a451a48fc17c039004414836cc1f2bf8d408eb6eb18_ppc64le", + "product": { + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:f223378bb8b335e6ed531a451a48fc17c039004414836cc1f2bf8d408eb6eb18_ppc64le", + "product_id": "openshift-logging/elasticsearch-proxy-rhel8@sha256:f223378bb8b335e6ed531a451a48fc17c039004414836cc1f2bf8d408eb6eb18_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch-proxy-rhel8@sha256:f223378bb8b335e6ed531a451a48fc17c039004414836cc1f2bf8d408eb6eb18?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/elasticsearch-proxy-rhel8&tag=v1.0.0-440" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:fef8afe2da100f267ed9e3848b4a9a1183e04bf0a9702404d03b2f57e5ec1bde_ppc64le", + "product": { + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:fef8afe2da100f267ed9e3848b4a9a1183e04bf0a9702404d03b2f57e5ec1bde_ppc64le", + "product_id": "openshift-logging/log-file-metric-exporter-rhel8@sha256:fef8afe2da100f267ed9e3848b4a9a1183e04bf0a9702404d03b2f57e5ec1bde_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/log-file-metric-exporter-rhel8@sha256:fef8afe2da100f267ed9e3848b4a9a1183e04bf0a9702404d03b2f57e5ec1bde?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/log-file-metric-exporter-rhel8&tag=v1.1.0-175" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-curator5-rhel8@sha256:927ba226f05237f6ad1faf686149a89f692f8904445f5a35f15a685518d3fe6a_ppc64le", + "product": { + "name": "openshift-logging/logging-curator5-rhel8@sha256:927ba226f05237f6ad1faf686149a89f692f8904445f5a35f15a685518d3fe6a_ppc64le", + "product_id": "openshift-logging/logging-curator5-rhel8@sha256:927ba226f05237f6ad1faf686149a89f692f8904445f5a35f15a685518d3fe6a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/logging-curator5-rhel8@sha256:927ba226f05237f6ad1faf686149a89f692f8904445f5a35f15a685518d3fe6a?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/logging-curator5-rhel8&tag=v5.8.1-419" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/elasticsearch6-rhel8@sha256:0fab0830499ef530add912e8022f9d5a09addbf229e62bea989a1d8734e70a33_ppc64le", + "product": { + "name": "openshift-logging/elasticsearch6-rhel8@sha256:0fab0830499ef530add912e8022f9d5a09addbf229e62bea989a1d8734e70a33_ppc64le", + "product_id": "openshift-logging/elasticsearch6-rhel8@sha256:0fab0830499ef530add912e8022f9d5a09addbf229e62bea989a1d8734e70a33_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/elasticsearch6-rhel8@sha256:0fab0830499ef530add912e8022f9d5a09addbf229e62bea989a1d8734e70a33?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/elasticsearch6-rhel8&tag=v6.8.1-369" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/eventrouter-rhel8@sha256:ac827708b7d49a217770e510124427e9430ec13b23d8fc3e0f7bdcb682214b34_ppc64le", + "product": { + "name": "openshift-logging/eventrouter-rhel8@sha256:ac827708b7d49a217770e510124427e9430ec13b23d8fc3e0f7bdcb682214b34_ppc64le", + "product_id": "openshift-logging/eventrouter-rhel8@sha256:ac827708b7d49a217770e510124427e9430ec13b23d8fc3e0f7bdcb682214b34_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/eventrouter-rhel8@sha256:ac827708b7d49a217770e510124427e9430ec13b23d8fc3e0f7bdcb682214b34?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/eventrouter-rhel8&tag=v0.4.0-189" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/fluentd-rhel8@sha256:65b491f9794f306cfe74b6ff622e9fe8b1155df5ed89e8db1f34ee2d299b2245_ppc64le", + "product": { + "name": "openshift-logging/fluentd-rhel8@sha256:65b491f9794f306cfe74b6ff622e9fe8b1155df5ed89e8db1f34ee2d299b2245_ppc64le", + "product_id": "openshift-logging/fluentd-rhel8@sha256:65b491f9794f306cfe74b6ff622e9fe8b1155df5ed89e8db1f34ee2d299b2245_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/fluentd-rhel8@sha256:65b491f9794f306cfe74b6ff622e9fe8b1155df5ed89e8db1f34ee2d299b2245?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/fluentd-rhel8&tag=v1.14.6-191" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/kibana6-rhel8@sha256:eddddb656ad870ad417cb92756ce537d32b55b17a9af3c87b5e2f4834017e48a_ppc64le", + "product": { + "name": "openshift-logging/kibana6-rhel8@sha256:eddddb656ad870ad417cb92756ce537d32b55b17a9af3c87b5e2f4834017e48a_ppc64le", + "product_id": "openshift-logging/kibana6-rhel8@sha256:eddddb656ad870ad417cb92756ce537d32b55b17a9af3c87b5e2f4834017e48a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/kibana6-rhel8@sha256:eddddb656ad870ad417cb92756ce537d32b55b17a9af3c87b5e2f4834017e48a?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/kibana6-rhel8&tag=v6.8.1-398" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-loki-rhel8@sha256:476a5e47090c24d1f8f5bafaca9b80e5373a2da0f14a7ec6e7254a32440adfdb_ppc64le", + "product": { + "name": "openshift-logging/logging-loki-rhel8@sha256:476a5e47090c24d1f8f5bafaca9b80e5373a2da0f14a7ec6e7254a32440adfdb_ppc64le", + "product_id": "openshift-logging/logging-loki-rhel8@sha256:476a5e47090c24d1f8f5bafaca9b80e5373a2da0f14a7ec6e7254a32440adfdb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/logging-loki-rhel8@sha256:476a5e47090c24d1f8f5bafaca9b80e5373a2da0f14a7ec6e7254a32440adfdb?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/logging-loki-rhel8&tag=v2.9.2-1" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/vector-rhel8@sha256:b5633612eab927c2d65848d0fd4629e692fbd4ea5b7aa9254ddfe6982824c06a_ppc64le", + "product": { + "name": "openshift-logging/vector-rhel8@sha256:b5633612eab927c2d65848d0fd4629e692fbd4ea5b7aa9254ddfe6982824c06a_ppc64le", + "product_id": "openshift-logging/vector-rhel8@sha256:b5633612eab927c2d65848d0fd4629e692fbd4ea5b7aa9254ddfe6982824c06a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/vector-rhel8@sha256:b5633612eab927c2d65848d0fd4629e692fbd4ea5b7aa9254ddfe6982824c06a?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/vector-rhel8&tag=v0.28.1-32" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:8181f92baa5a86da7767f605f4537b59fad583ee80fcde309fea504e9c3147c0_ppc64le", + "product": { + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:8181f92baa5a86da7767f605f4537b59fad583ee80fcde309fea504e9c3147c0_ppc64le", + "product_id": "openshift-logging/logging-view-plugin-rhel8@sha256:8181f92baa5a86da7767f605f4537b59fad583ee80fcde309fea504e9c3147c0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/logging-view-plugin-rhel8@sha256:8181f92baa5a86da7767f605f4537b59fad583ee80fcde309fea504e9c3147c0?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/logging-view-plugin-rhel8&tag=v5.7.7-8" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/loki-rhel8-operator@sha256:4e59120fc8a10978b234716a5757891c197e9394aae2446b3b8d8621f3983792_ppc64le", + "product": { + "name": "openshift-logging/loki-rhel8-operator@sha256:4e59120fc8a10978b234716a5757891c197e9394aae2446b3b8d8621f3983792_ppc64le", + "product_id": "openshift-logging/loki-rhel8-operator@sha256:4e59120fc8a10978b234716a5757891c197e9394aae2446b3b8d8621f3983792_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/loki-rhel8-operator@sha256:4e59120fc8a10978b234716a5757891c197e9394aae2446b3b8d8621f3983792?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/loki-rhel8-operator&tag=v5.7.7-16" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:4cc1ddf22cba8a5ed94549115b5210d961e1978618c8cb48e820e545369ecb65_ppc64le", + "product": { + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:4cc1ddf22cba8a5ed94549115b5210d961e1978618c8cb48e820e545369ecb65_ppc64le", + "product_id": "openshift-logging/lokistack-gateway-rhel8@sha256:4cc1ddf22cba8a5ed94549115b5210d961e1978618c8cb48e820e545369ecb65_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/lokistack-gateway-rhel8@sha256:4cc1ddf22cba8a5ed94549115b5210d961e1978618c8cb48e820e545369ecb65?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/lokistack-gateway-rhel8&tag=v0.1.0-355" + } + } + }, + { + "category": "product_version", + "name": "openshift-logging/opa-openshift-rhel8@sha256:bdb8fb48f8b164fb3d55de977aaa19414654ec7284f148db11b77b94a3feefd1_ppc64le", + "product": { + "name": "openshift-logging/opa-openshift-rhel8@sha256:bdb8fb48f8b164fb3d55de977aaa19414654ec7284f148db11b77b94a3feefd1_ppc64le", + "product_id": "openshift-logging/opa-openshift-rhel8@sha256:bdb8fb48f8b164fb3d55de977aaa19414654ec7284f148db11b77b94a3feefd1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/opa-openshift-rhel8@sha256:bdb8fb48f8b164fb3d55de977aaa19414654ec7284f148db11b77b94a3feefd1?arch=ppc64le&repository_url=registry.redhat.io/openshift-logging/opa-openshift-rhel8&tag=v0.1.0-161" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rhosp-rhel8/osp-director-agent@sha256:669c11288ec857369274ef710c6f6ce4ca1355f9e18f43cb9bc49ab089d8f4a6_amd64", + "product": { + "name": "rhosp-rhel8/osp-director-agent@sha256:669c11288ec857369274ef710c6f6ce4ca1355f9e18f43cb9bc49ab089d8f4a6_amd64", + "product_id": "rhosp-rhel8/osp-director-agent@sha256:669c11288ec857369274ef710c6f6ce4ca1355f9e18f43cb9bc49ab089d8f4a6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/osp-director-agent@sha256:669c11288ec857369274ef710c6f6ce4ca1355f9e18f43cb9bc49ab089d8f4a6?arch=amd64&repository_url=registry.redhat.io/rhosp-rhel8/osp-director-agent&tag=1.3.0-10" + } + } + }, + { + "category": "product_version", + "name": "rhosp-rhel8/osp-director-downloader@sha256:79f994acd1e9e2b58143915f73590b1cbb3381b37285088973fef549545b3a8a_amd64", + "product": { + "name": "rhosp-rhel8/osp-director-downloader@sha256:79f994acd1e9e2b58143915f73590b1cbb3381b37285088973fef549545b3a8a_amd64", + "product_id": "rhosp-rhel8/osp-director-downloader@sha256:79f994acd1e9e2b58143915f73590b1cbb3381b37285088973fef549545b3a8a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/osp-director-downloader@sha256:79f994acd1e9e2b58143915f73590b1cbb3381b37285088973fef549545b3a8a?arch=amd64&repository_url=registry.redhat.io/rhosp-rhel8/osp-director-downloader&tag=1.3.0-11" + } + } + }, + { + "category": "product_version", + "name": "rhosp-rhel8/osp-director-operator-bundle@sha256:fe042ad7fa6c0b0cc3645205b817c70ed2498ac8f3d992dfaef5ca921b46da7f_amd64", + "product": { + "name": "rhosp-rhel8/osp-director-operator-bundle@sha256:fe042ad7fa6c0b0cc3645205b817c70ed2498ac8f3d992dfaef5ca921b46da7f_amd64", + "product_id": "rhosp-rhel8/osp-director-operator-bundle@sha256:fe042ad7fa6c0b0cc3645205b817c70ed2498ac8f3d992dfaef5ca921b46da7f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/osp-director-operator-bundle@sha256:fe042ad7fa6c0b0cc3645205b817c70ed2498ac8f3d992dfaef5ca921b46da7f?arch=amd64&repository_url=registry.redhat.io/rhosp-rhel8/osp-director-operator-bundle&tag=1.3.0-19" + } + } + }, + { + "category": "product_version", + "name": "rhosp-rhel8/osp-director-operator@sha256:451c7a787a5d8560f71928921eee70875c9c3fa58a606f602d6677a9872fea47_amd64", + "product": { + "name": "rhosp-rhel8/osp-director-operator@sha256:451c7a787a5d8560f71928921eee70875c9c3fa58a606f602d6677a9872fea47_amd64", + "product_id": "rhosp-rhel8/osp-director-operator@sha256:451c7a787a5d8560f71928921eee70875c9c3fa58a606f602d6677a9872fea47_amd64", + "product_identification_helper": { + "purl": "pkg:oci/osp-director-operator@sha256:451c7a787a5d8560f71928921eee70875c9c3fa58a606f602d6677a9872fea47?arch=amd64&repository_url=registry.redhat.io/rhosp-rhel8/osp-director-operator&tag=1.3.0-9" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "tomcat-1:9.0.62-5.el8_8.2.src", + "product": { + "name": "tomcat-1:9.0.62-5.el8_8.2.src", + "product_id": "tomcat-1:9.0.62-5.el8_8.2.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tomcat@9.0.62-5.el8_8.2?arch=src&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "tomcat-1:9.0.62-5.el8_8.2.noarch", + "product": { + "name": "tomcat-1:9.0.62-5.el8_8.2.noarch", + "product_id": "tomcat-1:9.0.62-5.el8_8.2.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tomcat@9.0.62-5.el8_8.2?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "tomcat-admin-webapps-1:9.0.62-5.el8_8.2.noarch", + "product": { + "name": "tomcat-admin-webapps-1:9.0.62-5.el8_8.2.noarch", + "product_id": "tomcat-admin-webapps-1:9.0.62-5.el8_8.2.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tomcat-admin-webapps@9.0.62-5.el8_8.2?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "tomcat-docs-webapp-1:9.0.62-5.el8_8.2.noarch", + "product": { + "name": "tomcat-docs-webapp-1:9.0.62-5.el8_8.2.noarch", + "product_id": "tomcat-docs-webapp-1:9.0.62-5.el8_8.2.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tomcat-docs-webapp@9.0.62-5.el8_8.2?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "tomcat-el-3.0-api-1:9.0.62-5.el8_8.2.noarch", + "product": { + "name": "tomcat-el-3.0-api-1:9.0.62-5.el8_8.2.noarch", + "product_id": "tomcat-el-3.0-api-1:9.0.62-5.el8_8.2.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tomcat-el-3.0-api@9.0.62-5.el8_8.2?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "tomcat-jsp-2.3-api-1:9.0.62-5.el8_8.2.noarch", + "product": { + "name": "tomcat-jsp-2.3-api-1:9.0.62-5.el8_8.2.noarch", + "product_id": "tomcat-jsp-2.3-api-1:9.0.62-5.el8_8.2.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tomcat-jsp-2.3-api@9.0.62-5.el8_8.2?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "tomcat-lib-1:9.0.62-5.el8_8.2.noarch", + "product": { + "name": "tomcat-lib-1:9.0.62-5.el8_8.2.noarch", + "product_id": "tomcat-lib-1:9.0.62-5.el8_8.2.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tomcat-lib@9.0.62-5.el8_8.2?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "tomcat-servlet-4.0-api-1:9.0.62-5.el8_8.2.noarch", + "product": { + "name": "tomcat-servlet-4.0-api-1:9.0.62-5.el8_8.2.noarch", + "product_id": "tomcat-servlet-4.0-api-1:9.0.62-5.el8_8.2.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tomcat-servlet-4.0-api@9.0.62-5.el8_8.2?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "tomcat-webapps-1:9.0.62-5.el8_8.2.noarch", + "product": { + "name": "tomcat-webapps-1:9.0.62-5.el8_8.2.noarch", + "product_id": "tomcat-webapps-1:9.0.62-5.el8_8.2.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tomcat-webapps@9.0.62-5.el8_8.2?arch=noarch&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "foreman-0:3.5.1.23-1.el8sat.src", + "product": { + "name": "foreman-0:3.5.1.23-1.el8sat.src", + "product_id": "foreman-0:3.5.1.23-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman@3.5.1.23-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "foreman-installer-1:3.5.2.4-1.el8sat.src", + "product": { + "name": "foreman-installer-1:3.5.2.4-1.el8sat.src", + "product_id": "foreman-installer-1:3.5.2.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-installer@3.5.2.4-1.el8sat?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "pulpcore-selinux-0:1.3.3-1.el8pc.src", + "product": { + "name": "pulpcore-selinux-0:1.3.3-1.el8pc.src", + "product_id": "pulpcore-selinux-0:1.3.3-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/pulpcore-selinux@1.3.3-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-django-0:3.2.21-1.el8pc.src", + "product": { + "name": "python-django-0:3.2.21-1.el8pc.src", + "product_id": "python-django-0:3.2.21-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-django@3.2.21-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-gitpython-0:3.1.32-1.el8pc.src", + "product": { + "name": "python-gitpython-0:3.1.32-1.el8pc.src", + "product_id": "python-gitpython-0:3.1.32-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-gitpython@3.1.32-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pulpcore-0:3.21.18-1.el8pc.src", + "product": { + "name": "python-pulpcore-0:3.21.18-1.el8pc.src", + "product_id": "python-pulpcore-0:3.21.18-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pulpcore@3.21.18-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_maintain-1:1.2.12-1.el8sat.src", + "product": { + "name": "rubygem-foreman_maintain-1:1.2.12-1.el8sat.src", + "product_id": "rubygem-foreman_maintain-1:1.2.12-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_maintain@1.2.12-1.el8sat?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_theme_satellite-0:11.0.0.6-1.el8sat.src", + "product": { + "name": "rubygem-foreman_theme_satellite-0:11.0.0.6-1.el8sat.src", + "product_id": "rubygem-foreman_theme_satellite-0:11.0.0.6-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_theme_satellite@11.0.0.6-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-katello-0:4.7.0.33-1.el8sat.src", + "product": { + "name": "rubygem-katello-0:4.7.0.33-1.el8sat.src", + "product_id": "rubygem-katello-0:4.7.0.33-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-katello@4.7.0.33-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "satellite-0:6.13.5-1.el8sat.src", + "product": { + "name": "satellite-0:6.13.5-1.el8sat.src", + "product_id": "satellite-0:6.13.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite@6.13.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_rh_cloud-0:7.0.48-1.el8sat.src", + "product": { + "name": "rubygem-foreman_rh_cloud-0:7.0.48-1.el8sat.src", + "product_id": "rubygem-foreman_rh_cloud-0:7.0.48-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_rh_cloud@7.0.48-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-git-0:1.18.0-1.el8sat.src", + "product": { + "name": "rubygem-git-0:1.18.0-1.el8sat.src", + "product_id": "rubygem-git-0:1.18.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-git@1.18.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el8sat.src", + "product": { + "name": "puppet-agent-0:7.26.0-3.el8sat.src", + "product_id": "puppet-agent-0:7.26.0-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "product": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "product_id": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil-worker-forwarder@0.0.3-1.el8sat?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "foreman-debug-0:3.5.1.23-1.el8sat.noarch", + "product": { + "name": "foreman-debug-0:3.5.1.23-1.el8sat.noarch", + "product_id": "foreman-debug-0:3.5.1.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-debug@3.5.1.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-0:3.5.1.23-1.el8sat.noarch", + "product": { + "name": "foreman-0:3.5.1.23-1.el8sat.noarch", + "product_id": "foreman-0:3.5.1.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman@3.5.1.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-cli-0:3.5.1.23-1.el8sat.noarch", + "product": { + "name": "foreman-cli-0:3.5.1.23-1.el8sat.noarch", + "product_id": "foreman-cli-0:3.5.1.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-cli@3.5.1.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-dynflow-sidekiq-0:3.5.1.23-1.el8sat.noarch", + "product": { + "name": "foreman-dynflow-sidekiq-0:3.5.1.23-1.el8sat.noarch", + "product_id": "foreman-dynflow-sidekiq-0:3.5.1.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-dynflow-sidekiq@3.5.1.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-ec2-0:3.5.1.23-1.el8sat.noarch", + "product": { + "name": "foreman-ec2-0:3.5.1.23-1.el8sat.noarch", + "product_id": "foreman-ec2-0:3.5.1.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-ec2@3.5.1.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-journald-0:3.5.1.23-1.el8sat.noarch", + "product": { + "name": "foreman-journald-0:3.5.1.23-1.el8sat.noarch", + "product_id": "foreman-journald-0:3.5.1.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-journald@3.5.1.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-libvirt-0:3.5.1.23-1.el8sat.noarch", + "product": { + "name": "foreman-libvirt-0:3.5.1.23-1.el8sat.noarch", + "product_id": "foreman-libvirt-0:3.5.1.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-libvirt@3.5.1.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-openstack-0:3.5.1.23-1.el8sat.noarch", + "product": { + "name": "foreman-openstack-0:3.5.1.23-1.el8sat.noarch", + "product_id": "foreman-openstack-0:3.5.1.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-openstack@3.5.1.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-ovirt-0:3.5.1.23-1.el8sat.noarch", + "product": { + "name": "foreman-ovirt-0:3.5.1.23-1.el8sat.noarch", + "product_id": "foreman-ovirt-0:3.5.1.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-ovirt@3.5.1.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-postgresql-0:3.5.1.23-1.el8sat.noarch", + "product": { + "name": "foreman-postgresql-0:3.5.1.23-1.el8sat.noarch", + "product_id": "foreman-postgresql-0:3.5.1.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-postgresql@3.5.1.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-service-0:3.5.1.23-1.el8sat.noarch", + "product": { + "name": "foreman-service-0:3.5.1.23-1.el8sat.noarch", + "product_id": "foreman-service-0:3.5.1.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-service@3.5.1.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-telemetry-0:3.5.1.23-1.el8sat.noarch", + "product": { + "name": "foreman-telemetry-0:3.5.1.23-1.el8sat.noarch", + "product_id": "foreman-telemetry-0:3.5.1.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-telemetry@3.5.1.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-vmware-0:3.5.1.23-1.el8sat.noarch", + "product": { + "name": "foreman-vmware-0:3.5.1.23-1.el8sat.noarch", + "product_id": "foreman-vmware-0:3.5.1.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-vmware@3.5.1.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-installer-1:3.5.2.4-1.el8sat.noarch", + "product": { + "name": "foreman-installer-1:3.5.2.4-1.el8sat.noarch", + "product_id": "foreman-installer-1:3.5.2.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-installer@3.5.2.4-1.el8sat?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "foreman-installer-katello-1:3.5.2.4-1.el8sat.noarch", + "product": { + "name": "foreman-installer-katello-1:3.5.2.4-1.el8sat.noarch", + "product_id": "foreman-installer-katello-1:3.5.2.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-installer-katello@3.5.2.4-1.el8sat?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "python39-django-0:3.2.21-1.el8pc.noarch", + "product": { + "name": "python39-django-0:3.2.21-1.el8pc.noarch", + "product_id": "python39-django-0:3.2.21-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-django@3.2.21-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-gitpython-0:3.1.32-1.el8pc.noarch", + "product": { + "name": "python39-gitpython-0:3.1.32-1.el8pc.noarch", + "product_id": "python39-gitpython-0:3.1.32-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-gitpython@3.1.32-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pulpcore-0:3.21.18-1.el8pc.noarch", + "product": { + "name": "python39-pulpcore-0:3.21.18-1.el8pc.noarch", + "product_id": "python39-pulpcore-0:3.21.18-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pulpcore@3.21.18-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_maintain-1:1.2.12-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_maintain-1:1.2.12-1.el8sat.noarch", + "product_id": "rubygem-foreman_maintain-1:1.2.12-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_maintain@1.2.12-1.el8sat?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_theme_satellite-0:11.0.0.6-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_theme_satellite-0:11.0.0.6-1.el8sat.noarch", + "product_id": "rubygem-foreman_theme_satellite-0:11.0.0.6-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_theme_satellite@11.0.0.6-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-katello-0:4.7.0.33-1.el8sat.noarch", + "product": { + "name": "rubygem-katello-0:4.7.0.33-1.el8sat.noarch", + "product_id": "rubygem-katello-0:4.7.0.33-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-katello@4.7.0.33-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-capsule-0:6.13.5-1.el8sat.noarch", + "product": { + "name": "satellite-capsule-0:6.13.5-1.el8sat.noarch", + "product_id": "satellite-capsule-0:6.13.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-capsule@6.13.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-common-0:6.13.5-1.el8sat.noarch", + "product": { + "name": "satellite-common-0:6.13.5-1.el8sat.noarch", + "product_id": "satellite-common-0:6.13.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-common@6.13.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-0:6.13.5-1.el8sat.noarch", + "product": { + "name": "satellite-0:6.13.5-1.el8sat.noarch", + "product_id": "satellite-0:6.13.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite@6.13.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-cli-0:6.13.5-1.el8sat.noarch", + "product": { + "name": "satellite-cli-0:6.13.5-1.el8sat.noarch", + "product_id": "satellite-cli-0:6.13.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-cli@6.13.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_rh_cloud-0:7.0.48-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_rh_cloud-0:7.0.48-1.el8sat.noarch", + "product_id": "rubygem-foreman_rh_cloud-0:7.0.48-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_rh_cloud@7.0.48-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-git-0:1.18.0-1.el8sat.noarch", + "product": { + "name": "rubygem-git-0:1.18.0-1.el8sat.noarch", + "product_id": "rubygem-git-0:1.18.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-git@1.18.0-1.el8sat?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "pulpcore-selinux-0:1.3.3-1.el8pc.x86_64", + "product": { + "name": "pulpcore-selinux-0:1.3.3-1.el8pc.x86_64", + "product_id": "pulpcore-selinux-0:1.3.3-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/pulpcore-selinux@1.3.3-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "product": { + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "product_id": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "product": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "product_id": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil-worker-forwarder@0.0.3-1.el8sat?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el7eap.src", + "product": { + "name": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el7eap.src", + "product_id": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el7eap.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-native-epoll@4.1.94-2.Final_redhat_00003.1.el7eap?arch=src" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el7eap.src", + "product": { + "name": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el7eap.src", + "product_id": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el7eap.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty@4.1.94-2.Final_redhat_00003.1.el7eap?arch=src" + } + } + }, + { + "category": "product_version", + "name": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el7eap.src", + "product": { + "name": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el7eap.src", + "product_id": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el7eap.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-undertow@2.2.26-2.SP2_redhat_00001.1.el7eap?arch=src" + } + } + }, + { + "category": "product_version", + "name": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el7eap.src", + "product": { + "name": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el7eap.src", + "product_id": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el7eap.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-wildfly@7.4.13-10.GA_redhat_00002.1.el7eap?arch=src" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el8eap.src", + "product": { + "name": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el8eap.src", + "product_id": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el8eap.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-native-epoll@4.1.94-2.Final_redhat_00003.1.el8eap?arch=src" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el8eap.src", + "product": { + "name": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el8eap.src", + "product_id": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el8eap.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty@4.1.94-2.Final_redhat_00003.1.el8eap?arch=src" + } + } + }, + { + "category": "product_version", + "name": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el8eap.src", + "product": { + "name": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el8eap.src", + "product_id": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el8eap.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-undertow@2.2.26-2.SP2_redhat_00001.1.el8eap?arch=src" + } + } + }, + { + "category": "product_version", + "name": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el8eap.src", + "product": { + "name": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el8eap.src", + "product_id": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el8eap.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-wildfly@7.4.13-10.GA_redhat_00002.1.el8eap?arch=src" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el9eap.src", + "product": { + "name": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el9eap.src", + "product_id": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el9eap.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-native-epoll@4.1.94-2.Final_redhat_00003.1.el9eap?arch=src" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el9eap.src", + "product": { + "name": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el9eap.src", + "product_id": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el9eap.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty@4.1.94-2.Final_redhat_00003.1.el9eap?arch=src" + } + } + }, + { + "category": "product_version", + "name": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el9eap.src", + "product": { + "name": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el9eap.src", + "product_id": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el9eap.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-undertow@2.2.26-2.SP2_redhat_00001.1.el9eap?arch=src" + } + } + }, + { + "category": "product_version", + "name": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el9eap.src", + "product": { + "name": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el9eap.src", + "product_id": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el9eap.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-wildfly@7.4.13-10.GA_redhat_00002.1.el9eap?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el7eap.x86_64", + "product": { + "name": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el7eap.x86_64", + "product_id": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el7eap.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-native-epoll@4.1.94-2.Final_redhat_00003.1.el7eap?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-native-epoll-debuginfo-0:4.1.94-2.Final_redhat_00003.1.el7eap.x86_64", + "product": { + "name": "eap7-netty-transport-native-epoll-debuginfo-0:4.1.94-2.Final_redhat_00003.1.el7eap.x86_64", + "product_id": "eap7-netty-transport-native-epoll-debuginfo-0:4.1.94-2.Final_redhat_00003.1.el7eap.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-native-epoll-debuginfo@4.1.94-2.Final_redhat_00003.1.el7eap?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el8eap.x86_64", + "product": { + "name": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el8eap.x86_64", + "product_id": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el8eap.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-native-epoll@4.1.94-2.Final_redhat_00003.1.el8eap?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-native-epoll-debuginfo-0:4.1.94-2.Final_redhat_00003.1.el8eap.x86_64", + "product": { + "name": "eap7-netty-transport-native-epoll-debuginfo-0:4.1.94-2.Final_redhat_00003.1.el8eap.x86_64", + "product_id": "eap7-netty-transport-native-epoll-debuginfo-0:4.1.94-2.Final_redhat_00003.1.el8eap.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-native-epoll-debuginfo@4.1.94-2.Final_redhat_00003.1.el8eap?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el9eap.x86_64", + "product": { + "name": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el9eap.x86_64", + "product_id": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el9eap.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-native-epoll@4.1.94-2.Final_redhat_00003.1.el9eap?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-native-epoll-debuginfo-0:4.1.94-2.Final_redhat_00003.1.el9eap.x86_64", + "product": { + "name": "eap7-netty-transport-native-epoll-debuginfo-0:4.1.94-2.Final_redhat_00003.1.el9eap.x86_64", + "product_id": "eap7-netty-transport-native-epoll-debuginfo-0:4.1.94-2.Final_redhat_00003.1.el9eap.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-native-epoll-debuginfo@4.1.94-2.Final_redhat_00003.1.el9eap?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-all-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-all-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-all-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-all@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-buffer-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-buffer-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-buffer-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-buffer@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-codec-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-codec-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-dns-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-codec-dns-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-codec-dns-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-dns@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-haproxy-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-codec-haproxy-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-codec-haproxy-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-haproxy@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-http-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-codec-http-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-codec-http-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-http@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-http2-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-codec-http2-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-codec-http2-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-http2@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-memcache-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-codec-memcache-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-codec-memcache-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-memcache@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-mqtt-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-codec-mqtt-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-codec-mqtt-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-mqtt@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-redis-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-codec-redis-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-codec-redis-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-redis@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-smtp-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-codec-smtp-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-codec-smtp-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-smtp@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-socks-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-codec-socks-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-codec-socks-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-socks@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-stomp-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-codec-stomp-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-codec-stomp-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-stomp@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-xml-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-codec-xml-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-codec-xml-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-xml@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-common-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-common-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-common-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-common@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-handler-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-handler-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-handler-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-handler@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-handler-proxy-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-handler-proxy-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-handler-proxy-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-handler-proxy@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-resolver-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-resolver-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-resolver-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-resolver@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-resolver-dns-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-resolver-dns-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-resolver-dns-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-resolver-dns@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-resolver-dns-classes-macos-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-resolver-dns-classes-macos-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-resolver-dns-classes-macos-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-resolver-dns-classes-macos@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-transport-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-transport-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-classes-epoll-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-transport-classes-epoll-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-transport-classes-epoll-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-classes-epoll@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-classes-kqueue-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-transport-classes-kqueue-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-transport-classes-kqueue-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-classes-kqueue@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-native-unix-common-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-transport-native-unix-common-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-transport-native-unix-common-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-native-unix-common@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-rxtx-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-transport-rxtx-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-transport-rxtx-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-rxtx@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-sctp-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-transport-sctp-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-transport-sctp-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-sctp@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-udt-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product": { + "name": "eap7-netty-transport-udt-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_id": "eap7-netty-transport-udt-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-udt@4.1.94-2.Final_redhat_00003.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el7eap.noarch", + "product": { + "name": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el7eap.noarch", + "product_id": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-undertow@2.2.26-2.SP2_redhat_00001.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el7eap.noarch", + "product": { + "name": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el7eap.noarch", + "product_id": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-wildfly@7.4.13-10.GA_redhat_00002.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-wildfly-java-jdk11-0:7.4.13-10.GA_redhat_00002.1.el7eap.noarch", + "product": { + "name": "eap7-wildfly-java-jdk11-0:7.4.13-10.GA_redhat_00002.1.el7eap.noarch", + "product_id": "eap7-wildfly-java-jdk11-0:7.4.13-10.GA_redhat_00002.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-wildfly-java-jdk11@7.4.13-10.GA_redhat_00002.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-wildfly-java-jdk8-0:7.4.13-10.GA_redhat_00002.1.el7eap.noarch", + "product": { + "name": "eap7-wildfly-java-jdk8-0:7.4.13-10.GA_redhat_00002.1.el7eap.noarch", + "product_id": "eap7-wildfly-java-jdk8-0:7.4.13-10.GA_redhat_00002.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-wildfly-java-jdk8@7.4.13-10.GA_redhat_00002.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-wildfly-modules-0:7.4.13-10.GA_redhat_00002.1.el7eap.noarch", + "product": { + "name": "eap7-wildfly-modules-0:7.4.13-10.GA_redhat_00002.1.el7eap.noarch", + "product_id": "eap7-wildfly-modules-0:7.4.13-10.GA_redhat_00002.1.el7eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-wildfly-modules@7.4.13-10.GA_redhat_00002.1.el7eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-all-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-all-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-all-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-all@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-buffer-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-buffer-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-buffer-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-buffer@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-codec-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-codec-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-dns-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-codec-dns-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-codec-dns-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-dns@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-haproxy-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-codec-haproxy-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-codec-haproxy-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-haproxy@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-http-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-codec-http-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-codec-http-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-http@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-http2-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-codec-http2-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-codec-http2-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-http2@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-memcache-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-codec-memcache-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-codec-memcache-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-memcache@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-mqtt-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-codec-mqtt-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-codec-mqtt-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-mqtt@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-redis-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-codec-redis-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-codec-redis-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-redis@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-smtp-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-codec-smtp-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-codec-smtp-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-smtp@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-socks-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-codec-socks-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-codec-socks-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-socks@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-stomp-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-codec-stomp-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-codec-stomp-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-stomp@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-xml-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-codec-xml-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-codec-xml-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-xml@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-common-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-common-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-common-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-common@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-handler-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-handler-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-handler-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-handler@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-handler-proxy-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-handler-proxy-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-handler-proxy-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-handler-proxy@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-resolver-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-resolver-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-resolver-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-resolver@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-resolver-dns-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-resolver-dns-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-resolver-dns-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-resolver-dns@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-resolver-dns-classes-macos-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-resolver-dns-classes-macos-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-resolver-dns-classes-macos-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-resolver-dns-classes-macos@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-transport-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-transport-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-classes-epoll-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-transport-classes-epoll-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-transport-classes-epoll-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-classes-epoll@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-classes-kqueue-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-transport-classes-kqueue-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-transport-classes-kqueue-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-classes-kqueue@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-native-unix-common-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-transport-native-unix-common-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-transport-native-unix-common-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-native-unix-common@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-rxtx-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-transport-rxtx-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-transport-rxtx-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-rxtx@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-sctp-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-transport-sctp-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-transport-sctp-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-sctp@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-udt-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product": { + "name": "eap7-netty-transport-udt-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_id": "eap7-netty-transport-udt-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-udt@4.1.94-2.Final_redhat_00003.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el8eap.noarch", + "product": { + "name": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el8eap.noarch", + "product_id": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-undertow@2.2.26-2.SP2_redhat_00001.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch", + "product": { + "name": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch", + "product_id": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-wildfly@7.4.13-10.GA_redhat_00002.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-wildfly-java-jdk11-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch", + "product": { + "name": "eap7-wildfly-java-jdk11-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch", + "product_id": "eap7-wildfly-java-jdk11-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-wildfly-java-jdk11@7.4.13-10.GA_redhat_00002.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-wildfly-java-jdk17-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch", + "product": { + "name": "eap7-wildfly-java-jdk17-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch", + "product_id": "eap7-wildfly-java-jdk17-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-wildfly-java-jdk17@7.4.13-10.GA_redhat_00002.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-wildfly-java-jdk8-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch", + "product": { + "name": "eap7-wildfly-java-jdk8-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch", + "product_id": "eap7-wildfly-java-jdk8-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-wildfly-java-jdk8@7.4.13-10.GA_redhat_00002.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-wildfly-modules-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch", + "product": { + "name": "eap7-wildfly-modules-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch", + "product_id": "eap7-wildfly-modules-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-wildfly-modules@7.4.13-10.GA_redhat_00002.1.el8eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-buffer-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-buffer-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-buffer-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-buffer@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-codec-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-codec-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-dns-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-codec-dns-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-codec-dns-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-dns@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-haproxy-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-codec-haproxy-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-codec-haproxy-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-haproxy@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-http-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-codec-http-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-codec-http-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-http@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-http2-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-codec-http2-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-codec-http2-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-http2@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-memcache-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-codec-memcache-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-codec-memcache-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-memcache@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-mqtt-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-codec-mqtt-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-codec-mqtt-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-mqtt@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-redis-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-codec-redis-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-codec-redis-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-redis@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-smtp-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-codec-smtp-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-codec-smtp-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-smtp@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-socks-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-codec-socks-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-codec-socks-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-socks@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-stomp-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-codec-stomp-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-codec-stomp-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-stomp@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-codec-xml-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-codec-xml-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-codec-xml-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-codec-xml@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-common-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-common-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-common-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-common@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-handler-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-handler-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-handler-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-handler@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-handler-proxy-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-handler-proxy-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-handler-proxy-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-handler-proxy@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-resolver-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-resolver-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-resolver-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-resolver@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-resolver-dns-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-resolver-dns-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-resolver-dns-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-resolver-dns@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-resolver-dns-classes-macos-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-resolver-dns-classes-macos-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-resolver-dns-classes-macos-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-resolver-dns-classes-macos@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-transport-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-transport-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-classes-epoll-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-transport-classes-epoll-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-transport-classes-epoll-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-classes-epoll@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-classes-kqueue-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-transport-classes-kqueue-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-transport-classes-kqueue-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-classes-kqueue@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-native-unix-common-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-transport-native-unix-common-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-transport-native-unix-common-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-native-unix-common@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-rxtx-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-transport-rxtx-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-transport-rxtx-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-rxtx@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-sctp-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-transport-sctp-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-transport-sctp-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-sctp@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-netty-transport-udt-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product": { + "name": "eap7-netty-transport-udt-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_id": "eap7-netty-transport-udt-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-netty-transport-udt@4.1.94-2.Final_redhat_00003.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el9eap.noarch", + "product": { + "name": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el9eap.noarch", + "product_id": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-undertow@2.2.26-2.SP2_redhat_00001.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch", + "product": { + "name": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch", + "product_id": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-wildfly@7.4.13-10.GA_redhat_00002.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-wildfly-java-jdk11-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch", + "product": { + "name": "eap7-wildfly-java-jdk11-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch", + "product_id": "eap7-wildfly-java-jdk11-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-wildfly-java-jdk11@7.4.13-10.GA_redhat_00002.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-wildfly-java-jdk17-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch", + "product": { + "name": "eap7-wildfly-java-jdk17-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch", + "product_id": "eap7-wildfly-java-jdk17-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-wildfly-java-jdk17@7.4.13-10.GA_redhat_00002.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-wildfly-java-jdk8-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch", + "product": { + "name": "eap7-wildfly-java-jdk8-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch", + "product_id": "eap7-wildfly-java-jdk8-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-wildfly-java-jdk8@7.4.13-10.GA_redhat_00002.1.el9eap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "eap7-wildfly-modules-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch", + "product": { + "name": "eap7-wildfly-modules-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch", + "product_id": "eap7-wildfly-modules-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/eap7-wildfly-modules@7.4.13-10.GA_redhat_00002.1.el9eap?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "tomcat-1:9.0.62-11.el9_2.3.src", + "product": { + "name": "tomcat-1:9.0.62-11.el9_2.3.src", + "product_id": "tomcat-1:9.0.62-11.el9_2.3.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tomcat@9.0.62-11.el9_2.3?arch=src&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "tomcat-1:9.0.62-11.el9_2.3.noarch", + "product": { + "name": "tomcat-1:9.0.62-11.el9_2.3.noarch", + "product_id": "tomcat-1:9.0.62-11.el9_2.3.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tomcat@9.0.62-11.el9_2.3?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "tomcat-admin-webapps-1:9.0.62-11.el9_2.3.noarch", + "product": { + "name": "tomcat-admin-webapps-1:9.0.62-11.el9_2.3.noarch", + "product_id": "tomcat-admin-webapps-1:9.0.62-11.el9_2.3.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tomcat-admin-webapps@9.0.62-11.el9_2.3?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "tomcat-docs-webapp-1:9.0.62-11.el9_2.3.noarch", + "product": { + "name": "tomcat-docs-webapp-1:9.0.62-11.el9_2.3.noarch", + "product_id": "tomcat-docs-webapp-1:9.0.62-11.el9_2.3.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tomcat-docs-webapp@9.0.62-11.el9_2.3?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "tomcat-el-3.0-api-1:9.0.62-11.el9_2.3.noarch", + "product": { + "name": "tomcat-el-3.0-api-1:9.0.62-11.el9_2.3.noarch", + "product_id": "tomcat-el-3.0-api-1:9.0.62-11.el9_2.3.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tomcat-el-3.0-api@9.0.62-11.el9_2.3?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "tomcat-jsp-2.3-api-1:9.0.62-11.el9_2.3.noarch", + "product": { + "name": "tomcat-jsp-2.3-api-1:9.0.62-11.el9_2.3.noarch", + "product_id": "tomcat-jsp-2.3-api-1:9.0.62-11.el9_2.3.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tomcat-jsp-2.3-api@9.0.62-11.el9_2.3?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "tomcat-lib-1:9.0.62-11.el9_2.3.noarch", + "product": { + "name": "tomcat-lib-1:9.0.62-11.el9_2.3.noarch", + "product_id": "tomcat-lib-1:9.0.62-11.el9_2.3.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tomcat-lib@9.0.62-11.el9_2.3?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "tomcat-servlet-4.0-api-1:9.0.62-11.el9_2.3.noarch", + "product": { + "name": "tomcat-servlet-4.0-api-1:9.0.62-11.el9_2.3.noarch", + "product_id": "tomcat-servlet-4.0-api-1:9.0.62-11.el9_2.3.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tomcat-servlet-4.0-api@9.0.62-11.el9_2.3?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "tomcat-webapps-1:9.0.62-11.el9_2.3.noarch", + "product": { + "name": "tomcat-webapps-1:9.0.62-11.el9_2.3.noarch", + "product_id": "tomcat-webapps-1:9.0.62-11.el9_2.3.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tomcat-webapps@9.0.62-11.el9_2.3?arch=noarch&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-devel-0:6.6.2-3.el9_2.1.aarch64", + "product": { + "name": "varnish-devel-0:6.6.2-3.el9_2.1.aarch64", + "product_id": "varnish-devel-0:6.6.2-3.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.6.2-3.el9_2.1?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "varnish-0:6.6.2-3.el9_2.1.aarch64", + "product": { + "name": "varnish-0:6.6.2-3.el9_2.1.aarch64", + "product_id": "varnish-0:6.6.2-3.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.6.2-3.el9_2.1?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "varnish-docs-0:6.6.2-3.el9_2.1.aarch64", + "product": { + "name": "varnish-docs-0:6.6.2-3.el9_2.1.aarch64", + "product_id": "varnish-docs-0:6.6.2-3.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-docs@6.6.2-3.el9_2.1?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-devel-0:6.6.2-3.el9_2.1.ppc64le", + "product": { + "name": "varnish-devel-0:6.6.2-3.el9_2.1.ppc64le", + "product_id": "varnish-devel-0:6.6.2-3.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.6.2-3.el9_2.1?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-0:6.6.2-3.el9_2.1.ppc64le", + "product": { + "name": "varnish-0:6.6.2-3.el9_2.1.ppc64le", + "product_id": "varnish-0:6.6.2-3.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.6.2-3.el9_2.1?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-docs-0:6.6.2-3.el9_2.1.ppc64le", + "product": { + "name": "varnish-docs-0:6.6.2-3.el9_2.1.ppc64le", + "product_id": "varnish-docs-0:6.6.2-3.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-docs@6.6.2-3.el9_2.1?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-devel-0:6.6.2-3.el9_2.1.i686", + "product": { + "name": "varnish-devel-0:6.6.2-3.el9_2.1.i686", + "product_id": "varnish-devel-0:6.6.2-3.el9_2.1.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.6.2-3.el9_2.1?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "varnish-0:6.6.2-3.el9_2.1.i686", + "product": { + "name": "varnish-0:6.6.2-3.el9_2.1.i686", + "product_id": "varnish-0:6.6.2-3.el9_2.1.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.6.2-3.el9_2.1?arch=i686" + } + } + } + ], + "category": "architecture", + "name": "i686" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-devel-0:6.6.2-3.el9_2.1.x86_64", + "product": { + "name": "varnish-devel-0:6.6.2-3.el9_2.1.x86_64", + "product_id": "varnish-devel-0:6.6.2-3.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.6.2-3.el9_2.1?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-0:6.6.2-3.el9_2.1.x86_64", + "product": { + "name": "varnish-0:6.6.2-3.el9_2.1.x86_64", + "product_id": "varnish-0:6.6.2-3.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.6.2-3.el9_2.1?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-docs-0:6.6.2-3.el9_2.1.x86_64", + "product": { + "name": "varnish-docs-0:6.6.2-3.el9_2.1.x86_64", + "product_id": "varnish-docs-0:6.6.2-3.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-docs@6.6.2-3.el9_2.1?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-devel-0:6.6.2-3.el9_2.1.s390x", + "product": { + "name": "varnish-devel-0:6.6.2-3.el9_2.1.s390x", + "product_id": "varnish-devel-0:6.6.2-3.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.6.2-3.el9_2.1?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "varnish-0:6.6.2-3.el9_2.1.s390x", + "product": { + "name": "varnish-0:6.6.2-3.el9_2.1.s390x", + "product_id": "varnish-0:6.6.2-3.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.6.2-3.el9_2.1?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "varnish-docs-0:6.6.2-3.el9_2.1.s390x", + "product": { + "name": "varnish-docs-0:6.6.2-3.el9_2.1.s390x", + "product_id": "varnish-docs-0:6.6.2-3.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-docs@6.6.2-3.el9_2.1?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.6.2-3.el9_2.1.src", + "product": { + "name": "varnish-0:6.6.2-3.el9_2.1.src", + "product_id": "varnish-0:6.6.2-3.el9_2.1.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.6.2-3.el9_2.1?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.6.2-2.el9_0.2.src", + "product": { + "name": "varnish-0:6.6.2-2.el9_0.2.src", + "product_id": "varnish-0:6.6.2-2.el9_0.2.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.6.2-2.el9_0.2?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.6.2-2.el9_0.2.aarch64", + "product": { + "name": "varnish-0:6.6.2-2.el9_0.2.aarch64", + "product_id": "varnish-0:6.6.2-2.el9_0.2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.6.2-2.el9_0.2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "varnish-docs-0:6.6.2-2.el9_0.2.aarch64", + "product": { + "name": "varnish-docs-0:6.6.2-2.el9_0.2.aarch64", + "product_id": "varnish-docs-0:6.6.2-2.el9_0.2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-docs@6.6.2-2.el9_0.2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "varnish-devel-0:6.6.2-2.el9_0.2.aarch64", + "product": { + "name": "varnish-devel-0:6.6.2-2.el9_0.2.aarch64", + "product_id": "varnish-devel-0:6.6.2-2.el9_0.2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.6.2-2.el9_0.2?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.6.2-2.el9_0.2.ppc64le", + "product": { + "name": "varnish-0:6.6.2-2.el9_0.2.ppc64le", + "product_id": "varnish-0:6.6.2-2.el9_0.2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.6.2-2.el9_0.2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-docs-0:6.6.2-2.el9_0.2.ppc64le", + "product": { + "name": "varnish-docs-0:6.6.2-2.el9_0.2.ppc64le", + "product_id": "varnish-docs-0:6.6.2-2.el9_0.2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-docs@6.6.2-2.el9_0.2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "varnish-devel-0:6.6.2-2.el9_0.2.ppc64le", + "product": { + "name": "varnish-devel-0:6.6.2-2.el9_0.2.ppc64le", + "product_id": "varnish-devel-0:6.6.2-2.el9_0.2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.6.2-2.el9_0.2?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.6.2-2.el9_0.2.i686", + "product": { + "name": "varnish-0:6.6.2-2.el9_0.2.i686", + "product_id": "varnish-0:6.6.2-2.el9_0.2.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.6.2-2.el9_0.2?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "varnish-devel-0:6.6.2-2.el9_0.2.i686", + "product": { + "name": "varnish-devel-0:6.6.2-2.el9_0.2.i686", + "product_id": "varnish-devel-0:6.6.2-2.el9_0.2.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.6.2-2.el9_0.2?arch=i686" + } + } + } + ], + "category": "architecture", + "name": "i686" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.6.2-2.el9_0.2.x86_64", + "product": { + "name": "varnish-0:6.6.2-2.el9_0.2.x86_64", + "product_id": "varnish-0:6.6.2-2.el9_0.2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.6.2-2.el9_0.2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-docs-0:6.6.2-2.el9_0.2.x86_64", + "product": { + "name": "varnish-docs-0:6.6.2-2.el9_0.2.x86_64", + "product_id": "varnish-docs-0:6.6.2-2.el9_0.2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-docs@6.6.2-2.el9_0.2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "varnish-devel-0:6.6.2-2.el9_0.2.x86_64", + "product": { + "name": "varnish-devel-0:6.6.2-2.el9_0.2.x86_64", + "product_id": "varnish-devel-0:6.6.2-2.el9_0.2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.6.2-2.el9_0.2?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "varnish-0:6.6.2-2.el9_0.2.s390x", + "product": { + "name": "varnish-0:6.6.2-2.el9_0.2.s390x", + "product_id": "varnish-0:6.6.2-2.el9_0.2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish@6.6.2-2.el9_0.2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "varnish-docs-0:6.6.2-2.el9_0.2.s390x", + "product": { + "name": "varnish-docs-0:6.6.2-2.el9_0.2.s390x", + "product_id": "varnish-docs-0:6.6.2-2.el9_0.2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-docs@6.6.2-2.el9_0.2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "varnish-devel-0:6.6.2-2.el9_0.2.s390x", + "product": { + "name": "varnish-devel-0:6.6.2-2.el9_0.2.s390x", + "product_id": "varnish-devel-0:6.6.2-2.el9_0.2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/varnish-devel@6.6.2-2.el9_0.2?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:7.5.15-5.el8_8.src", + "product": { + "name": "grafana-0:7.5.15-5.el8_8.src", + "product_id": "grafana-0:7.5.15-5.el8_8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@7.5.15-5.el8_8?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:7.5.15-5.el8_8.aarch64", + "product": { + "name": "grafana-0:7.5.15-5.el8_8.aarch64", + "product_id": "grafana-0:7.5.15-5.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@7.5.15-5.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "grafana-debuginfo-0:7.5.15-5.el8_8.aarch64", + "product": { + "name": "grafana-debuginfo-0:7.5.15-5.el8_8.aarch64", + "product_id": "grafana-debuginfo-0:7.5.15-5.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana-debuginfo@7.5.15-5.el8_8?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:7.5.15-5.el8_8.ppc64le", + "product": { + "name": "grafana-0:7.5.15-5.el8_8.ppc64le", + "product_id": "grafana-0:7.5.15-5.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@7.5.15-5.el8_8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "grafana-debuginfo-0:7.5.15-5.el8_8.ppc64le", + "product": { + "name": "grafana-debuginfo-0:7.5.15-5.el8_8.ppc64le", + "product_id": "grafana-debuginfo-0:7.5.15-5.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana-debuginfo@7.5.15-5.el8_8?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:7.5.15-5.el8_8.x86_64", + "product": { + "name": "grafana-0:7.5.15-5.el8_8.x86_64", + "product_id": "grafana-0:7.5.15-5.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@7.5.15-5.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "grafana-debuginfo-0:7.5.15-5.el8_8.x86_64", + "product": { + "name": "grafana-debuginfo-0:7.5.15-5.el8_8.x86_64", + "product_id": "grafana-debuginfo-0:7.5.15-5.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana-debuginfo@7.5.15-5.el8_8?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:7.5.15-5.el8_8.s390x", + "product": { + "name": "grafana-0:7.5.15-5.el8_8.s390x", + "product_id": "grafana-0:7.5.15-5.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@7.5.15-5.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "grafana-debuginfo-0:7.5.15-5.el8_8.s390x", + "product": { + "name": "grafana-debuginfo-0:7.5.15-5.el8_8.s390x", + "product_id": "grafana-debuginfo-0:7.5.15-5.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana-debuginfo@7.5.15-5.el8_8?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:9.0.9-4.el9_2.src", + "product": { + "name": "grafana-0:9.0.9-4.el9_2.src", + "product_id": "grafana-0:9.0.9-4.el9_2.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@9.0.9-4.el9_2?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:9.0.9-4.el9_2.aarch64", + "product": { + "name": "grafana-0:9.0.9-4.el9_2.aarch64", + "product_id": "grafana-0:9.0.9-4.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@9.0.9-4.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "grafana-debugsource-0:9.0.9-4.el9_2.aarch64", + "product": { + "name": "grafana-debugsource-0:9.0.9-4.el9_2.aarch64", + "product_id": "grafana-debugsource-0:9.0.9-4.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana-debugsource@9.0.9-4.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "grafana-debuginfo-0:9.0.9-4.el9_2.aarch64", + "product": { + "name": "grafana-debuginfo-0:9.0.9-4.el9_2.aarch64", + "product_id": "grafana-debuginfo-0:9.0.9-4.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana-debuginfo@9.0.9-4.el9_2?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:9.0.9-4.el9_2.ppc64le", + "product": { + "name": "grafana-0:9.0.9-4.el9_2.ppc64le", + "product_id": "grafana-0:9.0.9-4.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@9.0.9-4.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "grafana-debugsource-0:9.0.9-4.el9_2.ppc64le", + "product": { + "name": "grafana-debugsource-0:9.0.9-4.el9_2.ppc64le", + "product_id": "grafana-debugsource-0:9.0.9-4.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana-debugsource@9.0.9-4.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "grafana-debuginfo-0:9.0.9-4.el9_2.ppc64le", + "product": { + "name": "grafana-debuginfo-0:9.0.9-4.el9_2.ppc64le", + "product_id": "grafana-debuginfo-0:9.0.9-4.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana-debuginfo@9.0.9-4.el9_2?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:9.0.9-4.el9_2.x86_64", + "product": { + "name": "grafana-0:9.0.9-4.el9_2.x86_64", + "product_id": "grafana-0:9.0.9-4.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@9.0.9-4.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "grafana-debugsource-0:9.0.9-4.el9_2.x86_64", + "product": { + "name": "grafana-debugsource-0:9.0.9-4.el9_2.x86_64", + "product_id": "grafana-debugsource-0:9.0.9-4.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana-debugsource@9.0.9-4.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "grafana-debuginfo-0:9.0.9-4.el9_2.x86_64", + "product": { + "name": "grafana-debuginfo-0:9.0.9-4.el9_2.x86_64", + "product_id": "grafana-debuginfo-0:9.0.9-4.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana-debuginfo@9.0.9-4.el9_2?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:9.0.9-4.el9_2.s390x", + "product": { + "name": "grafana-0:9.0.9-4.el9_2.s390x", + "product_id": "grafana-0:9.0.9-4.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@9.0.9-4.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "grafana-debugsource-0:9.0.9-4.el9_2.s390x", + "product": { + "name": "grafana-debugsource-0:9.0.9-4.el9_2.s390x", + "product_id": "grafana-debugsource-0:9.0.9-4.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana-debugsource@9.0.9-4.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "grafana-debuginfo-0:9.0.9-4.el9_2.s390x", + "product": { + "name": "grafana-debuginfo-0:9.0.9-4.el9_2.s390x", + "product_id": "grafana-debuginfo-0:9.0.9-4.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana-debuginfo@9.0.9-4.el9_2?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64", + "product": { + "name": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64", + "product_id": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@18.18.2-1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64", + "product": { + "name": "nodejs-debuginfo-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64", + "product_id": "nodejs-debuginfo-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@18.18.2-1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64", + "product": { + "name": "nodejs-debugsource-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64", + "product_id": "nodejs-debugsource-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@18.18.2-1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-devel-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64", + "product": { + "name": "nodejs-devel-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64", + "product_id": "nodejs-devel-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-devel@18.18.2-1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64", + "product": { + "name": "nodejs-full-i18n-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64", + "product_id": "nodejs-full-i18n-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@18.18.2-1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:9.8.1-1.18.18.2.1.module+el8.8.0+20407+c11d40bd.aarch64", + "product": { + "name": "npm-1:9.8.1-1.18.18.2.1.module+el8.8.0+20407+c11d40bd.aarch64", + "product_id": "npm-1:9.8.1-1.18.18.2.1.module+el8.8.0+20407+c11d40bd.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@9.8.1-1.18.18.2.1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=aarch64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.src", + "product": { + "name": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.src", + "product_id": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@18.18.2-1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-nodemon-0:3.0.1-1.module+el8.8.0+19757+8ca87034.src", + "product": { + "name": "nodejs-nodemon-0:3.0.1-1.module+el8.8.0+19757+8ca87034.src", + "product_id": "nodejs-nodemon-0:3.0.1-1.module+el8.8.0+19757+8ca87034.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-nodemon@3.0.1-1.module%2Bel8.8.0%2B19757%2B8ca87034?arch=src" + } + } + }, + { + "category": "product_version", + "name": "nodejs-packaging-0:2021.06-4.module+el8.7.0+15582+19c314fa.src", + "product": { + "name": "nodejs-packaging-0:2021.06-4.module+el8.7.0+15582+19c314fa.src", + "product_id": "nodejs-packaging-0:2021.06-4.module+el8.7.0+15582+19c314fa.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-packaging@2021.06-4.module%2Bel8.7.0%2B15582%2B19c314fa?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-docs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.noarch", + "product": { + "name": "nodejs-docs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.noarch", + "product_id": "nodejs-docs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-docs@18.18.2-1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-nodemon-0:3.0.1-1.module+el8.8.0+19757+8ca87034.noarch", + "product": { + "name": "nodejs-nodemon-0:3.0.1-1.module+el8.8.0+19757+8ca87034.noarch", + "product_id": "nodejs-nodemon-0:3.0.1-1.module+el8.8.0+19757+8ca87034.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-nodemon@3.0.1-1.module%2Bel8.8.0%2B19757%2B8ca87034?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "nodejs-packaging-0:2021.06-4.module+el8.7.0+15582+19c314fa.noarch", + "product": { + "name": "nodejs-packaging-0:2021.06-4.module+el8.7.0+15582+19c314fa.noarch", + "product_id": "nodejs-packaging-0:2021.06-4.module+el8.7.0+15582+19c314fa.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-packaging@2021.06-4.module%2Bel8.7.0%2B15582%2B19c314fa?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "nodejs-packaging-bundler-0:2021.06-4.module+el8.7.0+15582+19c314fa.noarch", + "product": { + "name": "nodejs-packaging-bundler-0:2021.06-4.module+el8.7.0+15582+19c314fa.noarch", + "product_id": "nodejs-packaging-bundler-0:2021.06-4.module+el8.7.0+15582+19c314fa.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-packaging-bundler@2021.06-4.module%2Bel8.7.0%2B15582%2B19c314fa?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le", + "product": { + "name": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le", + "product_id": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@18.18.2-1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le", + "product": { + "name": "nodejs-debuginfo-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le", + "product_id": "nodejs-debuginfo-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@18.18.2-1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le", + "product": { + "name": "nodejs-debugsource-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le", + "product_id": "nodejs-debugsource-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@18.18.2-1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-devel-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le", + "product": { + "name": "nodejs-devel-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le", + "product_id": "nodejs-devel-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-devel@18.18.2-1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le", + "product": { + "name": "nodejs-full-i18n-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le", + "product_id": "nodejs-full-i18n-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@18.18.2-1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:9.8.1-1.18.18.2.1.module+el8.8.0+20407+c11d40bd.ppc64le", + "product": { + "name": "npm-1:9.8.1-1.18.18.2.1.module+el8.8.0+20407+c11d40bd.ppc64le", + "product_id": "npm-1:9.8.1-1.18.18.2.1.module+el8.8.0+20407+c11d40bd.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@9.8.1-1.18.18.2.1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=ppc64le&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x", + "product": { + "name": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x", + "product_id": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@18.18.2-1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x", + "product": { + "name": "nodejs-debuginfo-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x", + "product_id": "nodejs-debuginfo-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@18.18.2-1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x", + "product": { + "name": "nodejs-debugsource-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x", + "product_id": "nodejs-debugsource-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@18.18.2-1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-devel-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x", + "product": { + "name": "nodejs-devel-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x", + "product_id": "nodejs-devel-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-devel@18.18.2-1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x", + "product": { + "name": "nodejs-full-i18n-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x", + "product_id": "nodejs-full-i18n-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@18.18.2-1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:9.8.1-1.18.18.2.1.module+el8.8.0+20407+c11d40bd.s390x", + "product": { + "name": "npm-1:9.8.1-1.18.18.2.1.module+el8.8.0+20407+c11d40bd.s390x", + "product_id": "npm-1:9.8.1-1.18.18.2.1.module+el8.8.0+20407+c11d40bd.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@9.8.1-1.18.18.2.1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=s390x&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64", + "product": { + "name": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64", + "product_id": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@18.18.2-1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64", + "product": { + "name": "nodejs-debuginfo-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64", + "product_id": "nodejs-debuginfo-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@18.18.2-1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64", + "product": { + "name": "nodejs-debugsource-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64", + "product_id": "nodejs-debugsource-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@18.18.2-1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-devel-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64", + "product": { + "name": "nodejs-devel-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64", + "product_id": "nodejs-devel-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-devel@18.18.2-1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64", + "product": { + "name": "nodejs-full-i18n-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64", + "product_id": "nodejs-full-i18n-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@18.18.2-1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:9.8.1-1.18.18.2.1.module+el8.8.0+20407+c11d40bd.x86_64", + "product": { + "name": "npm-1:9.8.1-1.18.18.2.1.module+el8.8.0+20407+c11d40bd.x86_64", + "product_id": "npm-1:9.8.1-1.18.18.2.1.module+el8.8.0+20407+c11d40bd.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@9.8.1-1.18.18.2.1.module%2Bel8.8.0%2B20407%2Bc11d40bd?arch=x86_64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:7.3.6-6.el8_4.src", + "product": { + "name": "grafana-0:7.3.6-6.el8_4.src", + "product_id": "grafana-0:7.3.6-6.el8_4.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@7.3.6-6.el8_4?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:7.3.6-6.el8_4.x86_64", + "product": { + "name": "grafana-0:7.3.6-6.el8_4.x86_64", + "product_id": "grafana-0:7.3.6-6.el8_4.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@7.3.6-6.el8_4?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "grafana-debuginfo-0:7.3.6-6.el8_4.x86_64", + "product": { + "name": "grafana-debuginfo-0:7.3.6-6.el8_4.x86_64", + "product_id": "grafana-debuginfo-0:7.3.6-6.el8_4.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana-debuginfo@7.3.6-6.el8_4?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:7.3.6-6.el8_4.aarch64", + "product": { + "name": "grafana-0:7.3.6-6.el8_4.aarch64", + "product_id": "grafana-0:7.3.6-6.el8_4.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@7.3.6-6.el8_4?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "grafana-debuginfo-0:7.3.6-6.el8_4.aarch64", + "product": { + "name": "grafana-debuginfo-0:7.3.6-6.el8_4.aarch64", + "product_id": "grafana-debuginfo-0:7.3.6-6.el8_4.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana-debuginfo@7.3.6-6.el8_4?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:7.3.6-6.el8_4.ppc64le", + "product": { + "name": "grafana-0:7.3.6-6.el8_4.ppc64le", + "product_id": "grafana-0:7.3.6-6.el8_4.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@7.3.6-6.el8_4?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "grafana-debuginfo-0:7.3.6-6.el8_4.ppc64le", + "product": { + "name": "grafana-debuginfo-0:7.3.6-6.el8_4.ppc64le", + "product_id": "grafana-debuginfo-0:7.3.6-6.el8_4.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana-debuginfo@7.3.6-6.el8_4?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:7.3.6-6.el8_4.s390x", + "product": { + "name": "grafana-0:7.3.6-6.el8_4.s390x", + "product_id": "grafana-0:7.3.6-6.el8_4.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@7.3.6-6.el8_4?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "grafana-debuginfo-0:7.3.6-6.el8_4.s390x", + "product": { + "name": "grafana-debuginfo-0:7.3.6-6.el8_4.s390x", + "product_id": "grafana-debuginfo-0:7.3.6-6.el8_4.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana-debuginfo@7.3.6-6.el8_4?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:7.5.11-4.el8_6.src", + "product": { + "name": "grafana-0:7.5.11-4.el8_6.src", + "product_id": "grafana-0:7.5.11-4.el8_6.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@7.5.11-4.el8_6?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:7.5.11-4.el8_6.aarch64", + "product": { + "name": "grafana-0:7.5.11-4.el8_6.aarch64", + "product_id": "grafana-0:7.5.11-4.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@7.5.11-4.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "grafana-debuginfo-0:7.5.11-4.el8_6.aarch64", + "product": { + "name": "grafana-debuginfo-0:7.5.11-4.el8_6.aarch64", + "product_id": "grafana-debuginfo-0:7.5.11-4.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana-debuginfo@7.5.11-4.el8_6?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:7.5.11-4.el8_6.ppc64le", + "product": { + "name": "grafana-0:7.5.11-4.el8_6.ppc64le", + "product_id": "grafana-0:7.5.11-4.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@7.5.11-4.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "grafana-debuginfo-0:7.5.11-4.el8_6.ppc64le", + "product": { + "name": "grafana-debuginfo-0:7.5.11-4.el8_6.ppc64le", + "product_id": "grafana-debuginfo-0:7.5.11-4.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana-debuginfo@7.5.11-4.el8_6?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:7.5.11-4.el8_6.x86_64", + "product": { + "name": "grafana-0:7.5.11-4.el8_6.x86_64", + "product_id": "grafana-0:7.5.11-4.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@7.5.11-4.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "grafana-debuginfo-0:7.5.11-4.el8_6.x86_64", + "product": { + "name": "grafana-debuginfo-0:7.5.11-4.el8_6.x86_64", + "product_id": "grafana-debuginfo-0:7.5.11-4.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana-debuginfo@7.5.11-4.el8_6?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:7.5.11-4.el8_6.s390x", + "product": { + "name": "grafana-0:7.5.11-4.el8_6.s390x", + "product_id": "grafana-0:7.5.11-4.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@7.5.11-4.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "grafana-debuginfo-0:7.5.11-4.el8_6.s390x", + "product": { + "name": "grafana-debuginfo-0:7.5.11-4.el8_6.s390x", + "product_id": "grafana-debuginfo-0:7.5.11-4.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana-debuginfo@7.5.11-4.el8_6?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:7.5.11-6.el9_0.src", + "product": { + "name": "grafana-0:7.5.11-6.el9_0.src", + "product_id": "grafana-0:7.5.11-6.el9_0.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@7.5.11-6.el9_0?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:7.5.11-6.el9_0.aarch64", + "product": { + "name": "grafana-0:7.5.11-6.el9_0.aarch64", + "product_id": "grafana-0:7.5.11-6.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@7.5.11-6.el9_0?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "grafana-debuginfo-0:7.5.11-6.el9_0.aarch64", + "product": { + "name": "grafana-debuginfo-0:7.5.11-6.el9_0.aarch64", + "product_id": "grafana-debuginfo-0:7.5.11-6.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana-debuginfo@7.5.11-6.el9_0?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:7.5.11-6.el9_0.ppc64le", + "product": { + "name": "grafana-0:7.5.11-6.el9_0.ppc64le", + "product_id": "grafana-0:7.5.11-6.el9_0.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@7.5.11-6.el9_0?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "grafana-debuginfo-0:7.5.11-6.el9_0.ppc64le", + "product": { + "name": "grafana-debuginfo-0:7.5.11-6.el9_0.ppc64le", + "product_id": "grafana-debuginfo-0:7.5.11-6.el9_0.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana-debuginfo@7.5.11-6.el9_0?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:7.5.11-6.el9_0.x86_64", + "product": { + "name": "grafana-0:7.5.11-6.el9_0.x86_64", + "product_id": "grafana-0:7.5.11-6.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@7.5.11-6.el9_0?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "grafana-debuginfo-0:7.5.11-6.el9_0.x86_64", + "product": { + "name": "grafana-debuginfo-0:7.5.11-6.el9_0.x86_64", + "product_id": "grafana-debuginfo-0:7.5.11-6.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana-debuginfo@7.5.11-6.el9_0?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "grafana-0:7.5.11-6.el9_0.s390x", + "product": { + "name": "grafana-0:7.5.11-6.el9_0.s390x", + "product_id": "grafana-0:7.5.11-6.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana@7.5.11-6.el9_0?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "grafana-debuginfo-0:7.5.11-6.el9_0.s390x", + "product": { + "name": "grafana-debuginfo-0:7.5.11-6.el9_0.s390x", + "product_id": "grafana-debuginfo-0:7.5.11-6.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/grafana-debuginfo@7.5.11-6.el9_0?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:bed6dd0b095914635cc4c7492e7c7f312bc84138df4dbb63ce632835697da1eb_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:bed6dd0b095914635cc4c7492e7c7f312bc84138df4dbb63ce632835697da1eb_amd64", + "product_id": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:bed6dd0b095914635cc4c7492e7c7f312bc84138df4dbb63ce632835697da1eb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-central-db-rhel8@sha256:bed6dd0b095914635cc4c7492e7c7f312bc84138df4dbb63ce632835697da1eb?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8&tag=4.1.4-4" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:9974f6a4a1e0a9409fc5fee5addbc58ecafda1fd34231f2ac4b2972fbdbb422b_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:9974f6a4a1e0a9409fc5fee5addbc58ecafda1fd34231f2ac4b2972fbdbb422b_amd64", + "product_id": "advanced-cluster-security/rhacs-collector-rhel8@sha256:9974f6a4a1e0a9409fc5fee5addbc58ecafda1fd34231f2ac4b2972fbdbb422b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-collector-rhel8@sha256:9974f6a4a1e0a9409fc5fee5addbc58ecafda1fd34231f2ac4b2972fbdbb422b?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8&tag=4.1.4-5" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:ec6d6c5af603b2ca083e7a7600680e3e121daedc43c53b4c0c760463fc5e569c_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:ec6d6c5af603b2ca083e7a7600680e3e121daedc43c53b4c0c760463fc5e569c_amd64", + "product_id": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:ec6d6c5af603b2ca083e7a7600680e3e121daedc43c53b4c0c760463fc5e569c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-collector-slim-rhel8@sha256:ec6d6c5af603b2ca083e7a7600680e3e121daedc43c53b4c0c760463fc5e569c?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-collector-slim-rhel8&tag=4.1.4-4" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:2d91c9e119a9c6f69f5f6b44fd54cdb89a255a1f831c14c0346291a085cf1255_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:2d91c9e119a9c6f69f5f6b44fd54cdb89a255a1f831c14c0346291a085cf1255_amd64", + "product_id": "advanced-cluster-security/rhacs-main-rhel8@sha256:2d91c9e119a9c6f69f5f6b44fd54cdb89a255a1f831c14c0346291a085cf1255_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-main-rhel8@sha256:2d91c9e119a9c6f69f5f6b44fd54cdb89a255a1f831c14c0346291a085cf1255?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8&tag=4.1.4-8" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:54e95a79b10a119472b6ef0351ff878e6a384b8e3100d25e943678bb120ed322_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:54e95a79b10a119472b6ef0351ff878e6a384b8e3100d25e943678bb120ed322_amd64", + "product_id": "advanced-cluster-security/rhacs-operator-bundle@sha256:54e95a79b10a119472b6ef0351ff878e6a384b8e3100d25e943678bb120ed322_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-operator-bundle@sha256:54e95a79b10a119472b6ef0351ff878e6a384b8e3100d25e943678bb120ed322?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle&tag=4.1.4-7" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:38933d28d8f623e8e421708f34a56e42cddd66b09c77b90ba7d0bab1ee10e6a6_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:38933d28d8f623e8e421708f34a56e42cddd66b09c77b90ba7d0bab1ee10e6a6_amd64", + "product_id": "advanced-cluster-security/rhacs-rhel8-operator@sha256:38933d28d8f623e8e421708f34a56e42cddd66b09c77b90ba7d0bab1ee10e6a6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-rhel8-operator@sha256:38933d28d8f623e8e421708f34a56e42cddd66b09c77b90ba7d0bab1ee10e6a6?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator&tag=4.1.4-5" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:ad51e30709c6b9f4350473b72eed6f0cb037f41f08c675ad7868cc70462513ae_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:ad51e30709c6b9f4350473b72eed6f0cb037f41f08c675ad7868cc70462513ae_amd64", + "product_id": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:ad51e30709c6b9f4350473b72eed6f0cb037f41f08c675ad7868cc70462513ae_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-roxctl-rhel8@sha256:ad51e30709c6b9f4350473b72eed6f0cb037f41f08c675ad7868cc70462513ae?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8&tag=4.1.4-5" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:86a79d36cdbdeccd47fd477ea503b859b068a168ec95c4a44c2784300c1dc036_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:86a79d36cdbdeccd47fd477ea503b859b068a168ec95c4a44c2784300c1dc036_amd64", + "product_id": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:86a79d36cdbdeccd47fd477ea503b859b068a168ec95c4a44c2784300c1dc036_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-rhel8@sha256:86a79d36cdbdeccd47fd477ea503b859b068a168ec95c4a44c2784300c1dc036?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8&tag=4.1.4-5" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:6455831309117beb15181b443ca8f43c42b296798f9deaae25f5e180ef67f68e_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:6455831309117beb15181b443ca8f43c42b296798f9deaae25f5e180ef67f68e_amd64", + "product_id": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:6455831309117beb15181b443ca8f43c42b296798f9deaae25f5e180ef67f68e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256:6455831309117beb15181b443ca8f43c42b296798f9deaae25f5e180ef67f68e?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8&tag=4.1.4-5" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:784f6bd4459fe4ba58dba416fcd4ad259ad71d15afef167d3331e43063813e0c_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:784f6bd4459fe4ba58dba416fcd4ad259ad71d15afef167d3331e43063813e0c_amd64", + "product_id": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:784f6bd4459fe4ba58dba416fcd4ad259ad71d15afef167d3331e43063813e0c_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256:784f6bd4459fe4ba58dba416fcd4ad259ad71d15afef167d3331e43063813e0c?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8&tag=4.1.4-4" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:70ea0eb9f752ea313bbfcc6248c12e9e3569df023c2a88ec07305579d8ffd1bc_amd64", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:70ea0eb9f752ea313bbfcc6248c12e9e3569df023c2a88ec07305579d8ffd1bc_amd64", + "product_id": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:70ea0eb9f752ea313bbfcc6248c12e9e3569df023c2a88ec07305579d8ffd1bc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256:70ea0eb9f752ea313bbfcc6248c12e9e3569df023c2a88ec07305579d8ffd1bc?arch=amd64&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8&tag=4.1.4-5" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:f92672857754ee0baad0e17802ec23aa3f14e11dce65b59f60a8002a21987c75_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:f92672857754ee0baad0e17802ec23aa3f14e11dce65b59f60a8002a21987c75_s390x", + "product_id": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:f92672857754ee0baad0e17802ec23aa3f14e11dce65b59f60a8002a21987c75_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-central-db-rhel8@sha256:f92672857754ee0baad0e17802ec23aa3f14e11dce65b59f60a8002a21987c75?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8&tag=4.1.4-4" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:192562d3cc181ff2cc14b9bf7202dd1b09c3d25c3308154d3878834c42139b8a_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:192562d3cc181ff2cc14b9bf7202dd1b09c3d25c3308154d3878834c42139b8a_s390x", + "product_id": "advanced-cluster-security/rhacs-collector-rhel8@sha256:192562d3cc181ff2cc14b9bf7202dd1b09c3d25c3308154d3878834c42139b8a_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-collector-rhel8@sha256:192562d3cc181ff2cc14b9bf7202dd1b09c3d25c3308154d3878834c42139b8a?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8&tag=4.1.4-5" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:6de4dae7bd8e1cae0bcf98e76380f10ce23e2d7868eac7189c5be44fb370c65b_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:6de4dae7bd8e1cae0bcf98e76380f10ce23e2d7868eac7189c5be44fb370c65b_s390x", + "product_id": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:6de4dae7bd8e1cae0bcf98e76380f10ce23e2d7868eac7189c5be44fb370c65b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-collector-slim-rhel8@sha256:6de4dae7bd8e1cae0bcf98e76380f10ce23e2d7868eac7189c5be44fb370c65b?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-collector-slim-rhel8&tag=4.1.4-4" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:0165f336652e61518f87398d395766f408e372f1487026e6e06c5dd37e6cca24_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:0165f336652e61518f87398d395766f408e372f1487026e6e06c5dd37e6cca24_s390x", + "product_id": "advanced-cluster-security/rhacs-main-rhel8@sha256:0165f336652e61518f87398d395766f408e372f1487026e6e06c5dd37e6cca24_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-main-rhel8@sha256:0165f336652e61518f87398d395766f408e372f1487026e6e06c5dd37e6cca24?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8&tag=4.1.4-8" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:594533fdc64148e9222d6a1bfaa2ac9c912478161035b2aadb3161e6a6c7de71_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:594533fdc64148e9222d6a1bfaa2ac9c912478161035b2aadb3161e6a6c7de71_s390x", + "product_id": "advanced-cluster-security/rhacs-operator-bundle@sha256:594533fdc64148e9222d6a1bfaa2ac9c912478161035b2aadb3161e6a6c7de71_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-operator-bundle@sha256:594533fdc64148e9222d6a1bfaa2ac9c912478161035b2aadb3161e6a6c7de71?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle&tag=4.1.4-7" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:62be9d1228353bb890192444a8f79aa10afa9acf57b6fbae49e6751d4355eced_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:62be9d1228353bb890192444a8f79aa10afa9acf57b6fbae49e6751d4355eced_s390x", + "product_id": "advanced-cluster-security/rhacs-rhel8-operator@sha256:62be9d1228353bb890192444a8f79aa10afa9acf57b6fbae49e6751d4355eced_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-rhel8-operator@sha256:62be9d1228353bb890192444a8f79aa10afa9acf57b6fbae49e6751d4355eced?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator&tag=4.1.4-5" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e3088b93eaf3e6114ec3706f4a86cf9a1135a19b2b9274ccd5a47d4d530d5ead_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e3088b93eaf3e6114ec3706f4a86cf9a1135a19b2b9274ccd5a47d4d530d5ead_s390x", + "product_id": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e3088b93eaf3e6114ec3706f4a86cf9a1135a19b2b9274ccd5a47d4d530d5ead_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-roxctl-rhel8@sha256:e3088b93eaf3e6114ec3706f4a86cf9a1135a19b2b9274ccd5a47d4d530d5ead?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8&tag=4.1.4-5" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:949cea90dd61fa675970dc2b6e2cbf7059a3095a8e679e6de8d30cac34ee2d51_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:949cea90dd61fa675970dc2b6e2cbf7059a3095a8e679e6de8d30cac34ee2d51_s390x", + "product_id": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:949cea90dd61fa675970dc2b6e2cbf7059a3095a8e679e6de8d30cac34ee2d51_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-rhel8@sha256:949cea90dd61fa675970dc2b6e2cbf7059a3095a8e679e6de8d30cac34ee2d51?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8&tag=4.1.4-5" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:16c06f7d13b140eace33c92e4de25080a369fb8cb07e8cd37dab1c77e20b98dc_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:16c06f7d13b140eace33c92e4de25080a369fb8cb07e8cd37dab1c77e20b98dc_s390x", + "product_id": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:16c06f7d13b140eace33c92e4de25080a369fb8cb07e8cd37dab1c77e20b98dc_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256:16c06f7d13b140eace33c92e4de25080a369fb8cb07e8cd37dab1c77e20b98dc?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8&tag=4.1.4-5" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:505df709de90a7c86795312064564df6365d2150ee4536332c5896f767c7dd26_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:505df709de90a7c86795312064564df6365d2150ee4536332c5896f767c7dd26_s390x", + "product_id": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:505df709de90a7c86795312064564df6365d2150ee4536332c5896f767c7dd26_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256:505df709de90a7c86795312064564df6365d2150ee4536332c5896f767c7dd26?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8&tag=4.1.4-4" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:ce07a0fffd33647940720096d75329a6c857e49ae9ce7fc8358ad0c33adf1a4c_s390x", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:ce07a0fffd33647940720096d75329a6c857e49ae9ce7fc8358ad0c33adf1a4c_s390x", + "product_id": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:ce07a0fffd33647940720096d75329a6c857e49ae9ce7fc8358ad0c33adf1a4c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256:ce07a0fffd33647940720096d75329a6c857e49ae9ce7fc8358ad0c33adf1a4c?arch=s390x&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8&tag=4.1.4-5" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:01bd7d0eb01bbccaedb4bd874f9d25ec1de15b6ffa7d9afa772c633c901b4d19_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:01bd7d0eb01bbccaedb4bd874f9d25ec1de15b6ffa7d9afa772c633c901b4d19_ppc64le", + "product_id": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:01bd7d0eb01bbccaedb4bd874f9d25ec1de15b6ffa7d9afa772c633c901b4d19_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-central-db-rhel8@sha256:01bd7d0eb01bbccaedb4bd874f9d25ec1de15b6ffa7d9afa772c633c901b4d19?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-central-db-rhel8&tag=4.1.4-4" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:2168e357d9d8b663595aefd49434fa7b87e3dcb5dfb1aa9cceeddf656d89436f_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:2168e357d9d8b663595aefd49434fa7b87e3dcb5dfb1aa9cceeddf656d89436f_ppc64le", + "product_id": "advanced-cluster-security/rhacs-collector-rhel8@sha256:2168e357d9d8b663595aefd49434fa7b87e3dcb5dfb1aa9cceeddf656d89436f_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-collector-rhel8@sha256:2168e357d9d8b663595aefd49434fa7b87e3dcb5dfb1aa9cceeddf656d89436f?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-collector-rhel8&tag=4.1.4-5" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:39b9d467f3b5fc5813fc2b2a27e187b62673817d98ce496a5f35551046110ed1_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:39b9d467f3b5fc5813fc2b2a27e187b62673817d98ce496a5f35551046110ed1_ppc64le", + "product_id": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:39b9d467f3b5fc5813fc2b2a27e187b62673817d98ce496a5f35551046110ed1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-collector-slim-rhel8@sha256:39b9d467f3b5fc5813fc2b2a27e187b62673817d98ce496a5f35551046110ed1?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-collector-slim-rhel8&tag=4.1.4-4" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:70119ac2a99ae2b42a84f18d5dfc5a719ffd183a2c6587fd2654e17b207cbaa7_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:70119ac2a99ae2b42a84f18d5dfc5a719ffd183a2c6587fd2654e17b207cbaa7_ppc64le", + "product_id": "advanced-cluster-security/rhacs-main-rhel8@sha256:70119ac2a99ae2b42a84f18d5dfc5a719ffd183a2c6587fd2654e17b207cbaa7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-main-rhel8@sha256:70119ac2a99ae2b42a84f18d5dfc5a719ffd183a2c6587fd2654e17b207cbaa7?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8&tag=4.1.4-8" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:f996eaff3c93ae2a0589c038358da2932d85f7642289e6b5cc63e87af130e0f2_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:f996eaff3c93ae2a0589c038358da2932d85f7642289e6b5cc63e87af130e0f2_ppc64le", + "product_id": "advanced-cluster-security/rhacs-operator-bundle@sha256:f996eaff3c93ae2a0589c038358da2932d85f7642289e6b5cc63e87af130e0f2_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-operator-bundle@sha256:f996eaff3c93ae2a0589c038358da2932d85f7642289e6b5cc63e87af130e0f2?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-operator-bundle&tag=4.1.4-7" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:564a8cbb9da8f2daab1d4163a4dfffdb2fadf87808cee3d4cc0ca210cf37801c_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:564a8cbb9da8f2daab1d4163a4dfffdb2fadf87808cee3d4cc0ca210cf37801c_ppc64le", + "product_id": "advanced-cluster-security/rhacs-rhel8-operator@sha256:564a8cbb9da8f2daab1d4163a4dfffdb2fadf87808cee3d4cc0ca210cf37801c_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-rhel8-operator@sha256:564a8cbb9da8f2daab1d4163a4dfffdb2fadf87808cee3d4cc0ca210cf37801c?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-rhel8-operator&tag=4.1.4-5" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:356142a0cef442132a39383a807ff74c6cad931071c45f44e1f7a794accf7ed1_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:356142a0cef442132a39383a807ff74c6cad931071c45f44e1f7a794accf7ed1_ppc64le", + "product_id": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:356142a0cef442132a39383a807ff74c6cad931071c45f44e1f7a794accf7ed1_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-roxctl-rhel8@sha256:356142a0cef442132a39383a807ff74c6cad931071c45f44e1f7a794accf7ed1?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-roxctl-rhel8&tag=4.1.4-5" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:8ec71419eb15e2fc5300fdc7bcab0422bd0c467d718a0a37568b80df4272a0ff_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:8ec71419eb15e2fc5300fdc7bcab0422bd0c467d718a0a37568b80df4272a0ff_ppc64le", + "product_id": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:8ec71419eb15e2fc5300fdc7bcab0422bd0c467d718a0a37568b80df4272a0ff_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-rhel8@sha256:8ec71419eb15e2fc5300fdc7bcab0422bd0c467d718a0a37568b80df4272a0ff?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-rhel8&tag=4.1.4-5" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:024076d8e8f8759397d35ccf6d7e23c72e301d9ac76f9f3783802306412b6e82_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:024076d8e8f8759397d35ccf6d7e23c72e301d9ac76f9f3783802306412b6e82_ppc64le", + "product_id": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:024076d8e8f8759397d35ccf6d7e23c72e301d9ac76f9f3783802306412b6e82_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-db-rhel8@sha256:024076d8e8f8759397d35ccf6d7e23c72e301d9ac76f9f3783802306412b6e82?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-rhel8&tag=4.1.4-5" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f3c15fec3acb45f2b026820460c4be9b6d13fd2d5f10b0b7ddd8692971b2201b_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f3c15fec3acb45f2b026820460c4be9b6d13fd2d5f10b0b7ddd8692971b2201b_ppc64le", + "product_id": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f3c15fec3acb45f2b026820460c4be9b6d13fd2d5f10b0b7ddd8692971b2201b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-db-slim-rhel8@sha256:f3c15fec3acb45f2b026820460c4be9b6d13fd2d5f10b0b7ddd8692971b2201b?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-db-slim-rhel8&tag=4.1.4-4" + } + } + }, + { + "category": "product_version", + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:70114bb8763ef837426eb11929134ba804f70ccfe4f54eda180eb754c465ad63_ppc64le", + "product": { + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:70114bb8763ef837426eb11929134ba804f70ccfe4f54eda180eb754c465ad63_ppc64le", + "product_id": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:70114bb8763ef837426eb11929134ba804f70ccfe4f54eda180eb754c465ad63_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/rhacs-scanner-slim-rhel8@sha256:70114bb8763ef837426eb11929134ba804f70ccfe4f54eda180eb754c465ad63?arch=ppc64le&repository_url=registry.redhat.io/advanced-cluster-security/rhacs-scanner-slim-rhel8&tag=4.1.4-5" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "bpftool-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "bpftool-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "bpftool-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-core-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-core-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-core-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-core@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-cross-headers@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-debug-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-debug-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-core@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-internal@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-devel-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-devel-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-headers-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-headers-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-headers-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-headers@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-modules-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-modules-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-extra@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-internal@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-selftests-internal@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-tools-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-tools-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "perf-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "perf-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "perf-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "python3-perf-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "python3-perf-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool-debuginfo@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-common-aarch64-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-debuginfo-common-aarch64-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-debuginfo-common-aarch64-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo-common-aarch64@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf-debuginfo@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf-debuginfo@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "openshift-hyperkube-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.aarch64", + "product": { + "name": "openshift-hyperkube-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.aarch64", + "product_id": "openshift-hyperkube-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-hyperkube@4.11.0-202310140343.p0.gec2a592.assembly.stream.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.aarch64", + "product": { + "name": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.aarch64", + "product_id": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.11.0-202310131344.p0.g3470d04.assembly.stream.el8?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "bpftool-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "bpftool-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "bpftool-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-core-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-core-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-core-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-core@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-cross-headers@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-debug-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-debug-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-core@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-internal@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-devel-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-devel-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-headers-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-headers-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-headers-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-headers@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-ipaclones-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-ipaclones-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-ipaclones-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-ipaclones-internal@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-modules-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-modules-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-extra@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-internal@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-selftests-internal@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-tools-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-tools-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "perf-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "perf-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "perf-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "python3-perf-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "python3-perf-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool-debuginfo@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-common-ppc64le-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-debuginfo-common-ppc64le-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-debuginfo-common-ppc64le-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo-common-ppc64le@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf-debuginfo@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf-debuginfo@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "openshift-hyperkube-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.ppc64le", + "product": { + "name": "openshift-hyperkube-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.ppc64le", + "product_id": "openshift-hyperkube-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-hyperkube@4.11.0-202310140343.p0.gec2a592.assembly.stream.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.ppc64le", + "product": { + "name": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.ppc64le", + "product_id": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.11.0-202310131344.p0.g3470d04.assembly.stream.el8?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "bpftool-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "bpftool-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "bpftool-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-core-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-core-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-core-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-core@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-cross-headers@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-debug-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-debug-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-core@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-internal@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-devel-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-devel-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-headers-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-headers-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-headers-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-headers@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-ipaclones-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-ipaclones-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-ipaclones-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-ipaclones-internal@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-modules-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-modules-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-extra@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-internal@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-selftests-internal@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-tools-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-tools-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "perf-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "perf-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "perf-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "python3-perf-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "python3-perf-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool-debuginfo@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-common-x86_64-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-debuginfo-common-x86_64-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-debuginfo-common-x86_64-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf-debuginfo@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf-debuginfo@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-core-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-core-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-core-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-core@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-debug-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-debug-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-core-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-debug-core-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-debug-core-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-core@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-devel-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-debug-devel-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-debug-devel-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-devel@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-kvm-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-debug-kvm-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-debug-kvm-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-kvm@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-modules-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-debug-modules-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-debug-modules-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-modules@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-modules-extra-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-debug-modules-extra-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-debug-modules-extra-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-modules-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-debug-modules-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-debug-modules-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-modules-internal@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-devel-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-devel-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-devel-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-devel@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-kvm-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-kvm-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-kvm-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-kvm@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-modules-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-modules-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-modules-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-modules@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-modules-extra-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-modules-extra-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-modules-extra-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-modules-extra@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-modules-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-modules-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-modules-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-modules-internal@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-selftests-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-selftests-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-selftests-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-selftests-internal@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-debuginfo-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-debug-debuginfo-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-debug-debuginfo-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debuginfo-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-debuginfo-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-debuginfo-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debuginfo@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debuginfo-common-x86_64-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-debuginfo-common-x86_64-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-debuginfo-common-x86_64-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debuginfo-common-x86_64@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-hyperkube-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.x86_64", + "product": { + "name": "openshift-hyperkube-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.x86_64", + "product_id": "openshift-hyperkube-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-hyperkube@4.11.0-202310140343.p0.gec2a592.assembly.stream.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.x86_64", + "product": { + "name": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.x86_64", + "product_id": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.11.0-202310131344.p0.g3470d04.assembly.stream.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-redistributable-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.x86_64", + "product": { + "name": "openshift-clients-redistributable-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.x86_64", + "product_id": "openshift-clients-redistributable-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients-redistributable@4.11.0-202310131344.p0.g3470d04.assembly.stream.el8?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "bpftool-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "bpftool-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "bpftool-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-core-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-core-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-core-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-core@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-cross-headers@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-debug-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-debug-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-core@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-internal@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-devel-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-devel-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-headers-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-headers-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-headers-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-headers@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-modules-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-modules-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-extra@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-internal@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-selftests-internal@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-tools-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-tools-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-zfcpdump-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-zfcpdump-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-core-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-zfcpdump-core-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-zfcpdump-core-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-core@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-devel-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-zfcpdump-devel-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-zfcpdump-devel-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-devel@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-modules-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-zfcpdump-modules-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-zfcpdump-modules-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-modules-extra-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-zfcpdump-modules-extra-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-zfcpdump-modules-extra-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-extra@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-modules-internal-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-zfcpdump-modules-internal-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-zfcpdump-modules-internal-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-internal@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "perf-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "perf-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "perf-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "python3-perf-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "python3-perf-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool-debuginfo@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-common-s390x-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-debuginfo-common-s390x-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-debuginfo-common-s390x-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo-common-s390x@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-zfcpdump-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-zfcpdump-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-debuginfo@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf-debuginfo@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf-debuginfo@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "openshift-hyperkube-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.s390x", + "product": { + "name": "openshift-hyperkube-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.s390x", + "product_id": "openshift-hyperkube-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-hyperkube@4.11.0-202310140343.p0.gec2a592.assembly.stream.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.s390x", + "product": { + "name": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.s390x", + "product_id": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.11.0-202310131344.p0.g3470d04.assembly.stream.el8?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "kernel-0:4.18.0-372.76.1.el8_6.src", + "product": { + "name": "kernel-0:4.18.0-372.76.1.el8_6.src", + "product_id": "kernel-0:4.18.0-372.76.1.el8_6.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@4.18.0-372.76.1.el8_6?arch=src" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-0:4.18.0-372.76.1.rt7.235.el8_6.src", + "product": { + "name": "kernel-rt-0:4.18.0-372.76.1.rt7.235.el8_6.src", + "product_id": "kernel-rt-0:4.18.0-372.76.1.rt7.235.el8_6.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt@4.18.0-372.76.1.rt7.235.el8_6?arch=src" + } + } + }, + { + "category": "product_version", + "name": "openshift-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.src", + "product": { + "name": "openshift-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.src", + "product_id": "openshift-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift@4.11.0-202310140343.p0.gec2a592.assembly.stream.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.src", + "product": { + "name": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.src", + "product_id": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.11.0-202310131344.p0.g3470d04.assembly.stream.el8?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "kernel-doc-0:4.18.0-372.76.1.el8_6.noarch", + "product": { + "name": "kernel-doc-0:4.18.0-372.76.1.el8_6.noarch", + "product_id": "kernel-doc-0:4.18.0-372.76.1.el8_6.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-doc@4.18.0-372.76.1.el8_6?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64", + "product": { + "name": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64", + "product_id": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@18.18.2-2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64", + "product": { + "name": "nodejs-debuginfo-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64", + "product_id": "nodejs-debuginfo-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@18.18.2-2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64", + "product": { + "name": "nodejs-debugsource-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64", + "product_id": "nodejs-debugsource-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@18.18.2-2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-devel-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64", + "product": { + "name": "nodejs-devel-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64", + "product_id": "nodejs-devel-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-devel@18.18.2-2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64", + "product": { + "name": "nodejs-full-i18n-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64", + "product_id": "nodejs-full-i18n-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@18.18.2-2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:9.8.1-1.18.18.2.2.module+el9.2.0.z+20408+7cb5fda5.aarch64", + "product": { + "name": "npm-1:9.8.1-1.18.18.2.2.module+el9.2.0.z+20408+7cb5fda5.aarch64", + "product_id": "npm-1:9.8.1-1.18.18.2.2.module+el9.2.0.z+20408+7cb5fda5.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@9.8.1-1.18.18.2.2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=aarch64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.src", + "product": { + "name": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.src", + "product_id": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@18.18.2-2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-nodemon-0:3.0.1-1.module+el9.2.0.z+19753+58118bc0.src", + "product": { + "name": "nodejs-nodemon-0:3.0.1-1.module+el9.2.0.z+19753+58118bc0.src", + "product_id": "nodejs-nodemon-0:3.0.1-1.module+el9.2.0.z+19753+58118bc0.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-nodemon@3.0.1-1.module%2Bel9.2.0.z%2B19753%2B58118bc0?arch=src" + } + } + }, + { + "category": "product_version", + "name": "nodejs-packaging-0:2021.06-4.module+el9.1.0+15718+e52ec601.src", + "product": { + "name": "nodejs-packaging-0:2021.06-4.module+el9.1.0+15718+e52ec601.src", + "product_id": "nodejs-packaging-0:2021.06-4.module+el9.1.0+15718+e52ec601.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-packaging@2021.06-4.module%2Bel9.1.0%2B15718%2Be52ec601?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-docs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.noarch", + "product": { + "name": "nodejs-docs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.noarch", + "product_id": "nodejs-docs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-docs@18.18.2-2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-nodemon-0:3.0.1-1.module+el9.2.0.z+19753+58118bc0.noarch", + "product": { + "name": "nodejs-nodemon-0:3.0.1-1.module+el9.2.0.z+19753+58118bc0.noarch", + "product_id": "nodejs-nodemon-0:3.0.1-1.module+el9.2.0.z+19753+58118bc0.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-nodemon@3.0.1-1.module%2Bel9.2.0.z%2B19753%2B58118bc0?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "nodejs-packaging-0:2021.06-4.module+el9.1.0+15718+e52ec601.noarch", + "product": { + "name": "nodejs-packaging-0:2021.06-4.module+el9.1.0+15718+e52ec601.noarch", + "product_id": "nodejs-packaging-0:2021.06-4.module+el9.1.0+15718+e52ec601.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-packaging@2021.06-4.module%2Bel9.1.0%2B15718%2Be52ec601?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "nodejs-packaging-bundler-0:2021.06-4.module+el9.1.0+15718+e52ec601.noarch", + "product": { + "name": "nodejs-packaging-bundler-0:2021.06-4.module+el9.1.0+15718+e52ec601.noarch", + "product_id": "nodejs-packaging-bundler-0:2021.06-4.module+el9.1.0+15718+e52ec601.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-packaging-bundler@2021.06-4.module%2Bel9.1.0%2B15718%2Be52ec601?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le", + "product": { + "name": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le", + "product_id": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@18.18.2-2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le", + "product": { + "name": "nodejs-debuginfo-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le", + "product_id": "nodejs-debuginfo-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@18.18.2-2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le", + "product": { + "name": "nodejs-debugsource-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le", + "product_id": "nodejs-debugsource-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@18.18.2-2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-devel-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le", + "product": { + "name": "nodejs-devel-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le", + "product_id": "nodejs-devel-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-devel@18.18.2-2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le", + "product": { + "name": "nodejs-full-i18n-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le", + "product_id": "nodejs-full-i18n-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@18.18.2-2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:9.8.1-1.18.18.2.2.module+el9.2.0.z+20408+7cb5fda5.ppc64le", + "product": { + "name": "npm-1:9.8.1-1.18.18.2.2.module+el9.2.0.z+20408+7cb5fda5.ppc64le", + "product_id": "npm-1:9.8.1-1.18.18.2.2.module+el9.2.0.z+20408+7cb5fda5.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@9.8.1-1.18.18.2.2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=ppc64le&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x", + "product": { + "name": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x", + "product_id": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@18.18.2-2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x", + "product": { + "name": "nodejs-debuginfo-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x", + "product_id": "nodejs-debuginfo-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@18.18.2-2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x", + "product": { + "name": "nodejs-debugsource-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x", + "product_id": "nodejs-debugsource-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@18.18.2-2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-devel-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x", + "product": { + "name": "nodejs-devel-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x", + "product_id": "nodejs-devel-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-devel@18.18.2-2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x", + "product": { + "name": "nodejs-full-i18n-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x", + "product_id": "nodejs-full-i18n-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@18.18.2-2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:9.8.1-1.18.18.2.2.module+el9.2.0.z+20408+7cb5fda5.s390x", + "product": { + "name": "npm-1:9.8.1-1.18.18.2.2.module+el9.2.0.z+20408+7cb5fda5.s390x", + "product_id": "npm-1:9.8.1-1.18.18.2.2.module+el9.2.0.z+20408+7cb5fda5.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@9.8.1-1.18.18.2.2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=s390x&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64", + "product": { + "name": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64", + "product_id": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@18.18.2-2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64", + "product": { + "name": "nodejs-debuginfo-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64", + "product_id": "nodejs-debuginfo-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@18.18.2-2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64", + "product": { + "name": "nodejs-debugsource-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64", + "product_id": "nodejs-debugsource-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@18.18.2-2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-devel-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64", + "product": { + "name": "nodejs-devel-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64", + "product_id": "nodejs-devel-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-devel@18.18.2-2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64", + "product": { + "name": "nodejs-full-i18n-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64", + "product_id": "nodejs-full-i18n-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@18.18.2-2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:9.8.1-1.18.18.2.2.module+el9.2.0.z+20408+7cb5fda5.x86_64", + "product": { + "name": "npm-1:9.8.1-1.18.18.2.2.module+el9.2.0.z+20408+7cb5fda5.x86_64", + "product_id": "npm-1:9.8.1-1.18.18.2.2.module+el9.2.0.z+20408+7cb5fda5.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@9.8.1-1.18.18.2.2.module%2Bel9.2.0.z%2B20408%2B7cb5fda5?arch=x86_64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64", + "product": { + "name": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64", + "product_id": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@16.20.2-3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64", + "product": { + "name": "nodejs-debuginfo-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64", + "product_id": "nodejs-debuginfo-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@16.20.2-3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64", + "product": { + "name": "nodejs-debugsource-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64", + "product_id": "nodejs-debugsource-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@16.20.2-3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-devel-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64", + "product": { + "name": "nodejs-devel-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64", + "product_id": "nodejs-devel-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-devel@16.20.2-3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64", + "product": { + "name": "nodejs-full-i18n-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64", + "product_id": "nodejs-full-i18n-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@16.20.2-3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:8.19.4-1.16.20.2.3.module+el8.8.0+20386+0b1f3093.aarch64", + "product": { + "name": "npm-1:8.19.4-1.16.20.2.3.module+el8.8.0+20386+0b1f3093.aarch64", + "product_id": "npm-1:8.19.4-1.16.20.2.3.module+el8.8.0+20386+0b1f3093.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@8.19.4-1.16.20.2.3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=aarch64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.src", + "product": { + "name": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.src", + "product_id": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@16.20.2-3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-nodemon-0:3.0.1-1.module+el8.8.0+19764+7eed1ca3.src", + "product": { + "name": "nodejs-nodemon-0:3.0.1-1.module+el8.8.0+19764+7eed1ca3.src", + "product_id": "nodejs-nodemon-0:3.0.1-1.module+el8.8.0+19764+7eed1ca3.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-nodemon@3.0.1-1.module%2Bel8.8.0%2B19764%2B7eed1ca3?arch=src" + } + } + }, + { + "category": "product_version", + "name": "nodejs-packaging-0:26-1.module+el8.8.0+19857+6d2a104d.src", + "product": { + "name": "nodejs-packaging-0:26-1.module+el8.8.0+19857+6d2a104d.src", + "product_id": "nodejs-packaging-0:26-1.module+el8.8.0+19857+6d2a104d.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-packaging@26-1.module%2Bel8.8.0%2B19857%2B6d2a104d?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-docs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.noarch", + "product": { + "name": "nodejs-docs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.noarch", + "product_id": "nodejs-docs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-docs@16.20.2-3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-nodemon-0:3.0.1-1.module+el8.8.0+19764+7eed1ca3.noarch", + "product": { + "name": "nodejs-nodemon-0:3.0.1-1.module+el8.8.0+19764+7eed1ca3.noarch", + "product_id": "nodejs-nodemon-0:3.0.1-1.module+el8.8.0+19764+7eed1ca3.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-nodemon@3.0.1-1.module%2Bel8.8.0%2B19764%2B7eed1ca3?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "nodejs-packaging-0:26-1.module+el8.8.0+19857+6d2a104d.noarch", + "product": { + "name": "nodejs-packaging-0:26-1.module+el8.8.0+19857+6d2a104d.noarch", + "product_id": "nodejs-packaging-0:26-1.module+el8.8.0+19857+6d2a104d.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-packaging@26-1.module%2Bel8.8.0%2B19857%2B6d2a104d?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le", + "product": { + "name": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le", + "product_id": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@16.20.2-3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le", + "product": { + "name": "nodejs-debuginfo-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le", + "product_id": "nodejs-debuginfo-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@16.20.2-3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le", + "product": { + "name": "nodejs-debugsource-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le", + "product_id": "nodejs-debugsource-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@16.20.2-3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-devel-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le", + "product": { + "name": "nodejs-devel-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le", + "product_id": "nodejs-devel-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-devel@16.20.2-3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le", + "product": { + "name": "nodejs-full-i18n-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le", + "product_id": "nodejs-full-i18n-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@16.20.2-3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:8.19.4-1.16.20.2.3.module+el8.8.0+20386+0b1f3093.ppc64le", + "product": { + "name": "npm-1:8.19.4-1.16.20.2.3.module+el8.8.0+20386+0b1f3093.ppc64le", + "product_id": "npm-1:8.19.4-1.16.20.2.3.module+el8.8.0+20386+0b1f3093.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@8.19.4-1.16.20.2.3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=ppc64le&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x", + "product": { + "name": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x", + "product_id": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@16.20.2-3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x", + "product": { + "name": "nodejs-debuginfo-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x", + "product_id": "nodejs-debuginfo-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@16.20.2-3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x", + "product": { + "name": "nodejs-debugsource-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x", + "product_id": "nodejs-debugsource-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@16.20.2-3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-devel-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x", + "product": { + "name": "nodejs-devel-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x", + "product_id": "nodejs-devel-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-devel@16.20.2-3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x", + "product": { + "name": "nodejs-full-i18n-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x", + "product_id": "nodejs-full-i18n-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@16.20.2-3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:8.19.4-1.16.20.2.3.module+el8.8.0+20386+0b1f3093.s390x", + "product": { + "name": "npm-1:8.19.4-1.16.20.2.3.module+el8.8.0+20386+0b1f3093.s390x", + "product_id": "npm-1:8.19.4-1.16.20.2.3.module+el8.8.0+20386+0b1f3093.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@8.19.4-1.16.20.2.3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=s390x&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64", + "product": { + "name": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64", + "product_id": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@16.20.2-3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64", + "product": { + "name": "nodejs-debuginfo-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64", + "product_id": "nodejs-debuginfo-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@16.20.2-3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64", + "product": { + "name": "nodejs-debugsource-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64", + "product_id": "nodejs-debugsource-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@16.20.2-3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-devel-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64", + "product": { + "name": "nodejs-devel-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64", + "product_id": "nodejs-devel-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-devel@16.20.2-3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64", + "product": { + "name": "nodejs-full-i18n-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64", + "product_id": "nodejs-full-i18n-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@16.20.2-3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:8.19.4-1.16.20.2.3.module+el8.8.0+20386+0b1f3093.x86_64", + "product": { + "name": "npm-1:8.19.4-1.16.20.2.3.module+el8.8.0+20386+0b1f3093.x86_64", + "product_id": "npm-1:8.19.4-1.16.20.2.3.module+el8.8.0+20386+0b1f3093.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@8.19.4-1.16.20.2.3.module%2Bel8.8.0%2B20386%2B0b1f3093?arch=x86_64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.33.0-5.el8_8.aarch64", + "product": { + "name": "libnghttp2-devel-0:1.33.0-5.el8_8.aarch64", + "product_id": "libnghttp2-devel-0:1.33.0-5.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.33.0-5.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-0:1.33.0-5.el8_8.aarch64", + "product": { + "name": "nghttp2-0:1.33.0-5.el8_8.aarch64", + "product_id": "nghttp2-0:1.33.0-5.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.33.0-5.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.33.0-5.el8_8.aarch64", + "product": { + "name": "nghttp2-debugsource-0:1.33.0-5.el8_8.aarch64", + "product_id": "nghttp2-debugsource-0:1.33.0-5.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.33.0-5.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.aarch64", + "product": { + "name": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.aarch64", + "product_id": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.33.0-5.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.33.0-5.el8_8.aarch64", + "product": { + "name": "nghttp2-debuginfo-0:1.33.0-5.el8_8.aarch64", + "product_id": "nghttp2-debuginfo-0:1.33.0-5.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.33.0-5.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-0:1.33.0-5.el8_8.aarch64", + "product": { + "name": "libnghttp2-0:1.33.0-5.el8_8.aarch64", + "product_id": "libnghttp2-0:1.33.0-5.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.33.0-5.el8_8?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.33.0-5.el8_8.ppc64le", + "product": { + "name": "libnghttp2-devel-0:1.33.0-5.el8_8.ppc64le", + "product_id": "libnghttp2-devel-0:1.33.0-5.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.33.0-5.el8_8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-0:1.33.0-5.el8_8.ppc64le", + "product": { + "name": "nghttp2-0:1.33.0-5.el8_8.ppc64le", + "product_id": "nghttp2-0:1.33.0-5.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.33.0-5.el8_8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.33.0-5.el8_8.ppc64le", + "product": { + "name": "nghttp2-debugsource-0:1.33.0-5.el8_8.ppc64le", + "product_id": "nghttp2-debugsource-0:1.33.0-5.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.33.0-5.el8_8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.ppc64le", + "product": { + "name": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.ppc64le", + "product_id": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.33.0-5.el8_8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.33.0-5.el8_8.ppc64le", + "product": { + "name": "nghttp2-debuginfo-0:1.33.0-5.el8_8.ppc64le", + "product_id": "nghttp2-debuginfo-0:1.33.0-5.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.33.0-5.el8_8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-0:1.33.0-5.el8_8.ppc64le", + "product": { + "name": "libnghttp2-0:1.33.0-5.el8_8.ppc64le", + "product_id": "libnghttp2-0:1.33.0-5.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.33.0-5.el8_8?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.33.0-5.el8_8.i686", + "product": { + "name": "libnghttp2-devel-0:1.33.0-5.el8_8.i686", + "product_id": "libnghttp2-devel-0:1.33.0-5.el8_8.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.33.0-5.el8_8?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.33.0-5.el8_8.i686", + "product": { + "name": "nghttp2-debugsource-0:1.33.0-5.el8_8.i686", + "product_id": "nghttp2-debugsource-0:1.33.0-5.el8_8.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.33.0-5.el8_8?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.i686", + "product": { + "name": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.i686", + "product_id": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.33.0-5.el8_8?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.33.0-5.el8_8.i686", + "product": { + "name": "nghttp2-debuginfo-0:1.33.0-5.el8_8.i686", + "product_id": "nghttp2-debuginfo-0:1.33.0-5.el8_8.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.33.0-5.el8_8?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-0:1.33.0-5.el8_8.i686", + "product": { + "name": "libnghttp2-0:1.33.0-5.el8_8.i686", + "product_id": "libnghttp2-0:1.33.0-5.el8_8.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.33.0-5.el8_8?arch=i686" + } + } + } + ], + "category": "architecture", + "name": "i686" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.33.0-5.el8_8.x86_64", + "product": { + "name": "libnghttp2-devel-0:1.33.0-5.el8_8.x86_64", + "product_id": "libnghttp2-devel-0:1.33.0-5.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.33.0-5.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-0:1.33.0-5.el8_8.x86_64", + "product": { + "name": "nghttp2-0:1.33.0-5.el8_8.x86_64", + "product_id": "nghttp2-0:1.33.0-5.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.33.0-5.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.33.0-5.el8_8.x86_64", + "product": { + "name": "nghttp2-debugsource-0:1.33.0-5.el8_8.x86_64", + "product_id": "nghttp2-debugsource-0:1.33.0-5.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.33.0-5.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.x86_64", + "product": { + "name": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.x86_64", + "product_id": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.33.0-5.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.33.0-5.el8_8.x86_64", + "product": { + "name": "nghttp2-debuginfo-0:1.33.0-5.el8_8.x86_64", + "product_id": "nghttp2-debuginfo-0:1.33.0-5.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.33.0-5.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-0:1.33.0-5.el8_8.x86_64", + "product": { + "name": "libnghttp2-0:1.33.0-5.el8_8.x86_64", + "product_id": "libnghttp2-0:1.33.0-5.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.33.0-5.el8_8?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.33.0-5.el8_8.s390x", + "product": { + "name": "libnghttp2-devel-0:1.33.0-5.el8_8.s390x", + "product_id": "libnghttp2-devel-0:1.33.0-5.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.33.0-5.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-0:1.33.0-5.el8_8.s390x", + "product": { + "name": "nghttp2-0:1.33.0-5.el8_8.s390x", + "product_id": "nghttp2-0:1.33.0-5.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.33.0-5.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.33.0-5.el8_8.s390x", + "product": { + "name": "nghttp2-debugsource-0:1.33.0-5.el8_8.s390x", + "product_id": "nghttp2-debugsource-0:1.33.0-5.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.33.0-5.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.s390x", + "product": { + "name": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.s390x", + "product_id": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.33.0-5.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.33.0-5.el8_8.s390x", + "product": { + "name": "nghttp2-debuginfo-0:1.33.0-5.el8_8.s390x", + "product_id": "nghttp2-debuginfo-0:1.33.0-5.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.33.0-5.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-0:1.33.0-5.el8_8.s390x", + "product": { + "name": "libnghttp2-0:1.33.0-5.el8_8.s390x", + "product_id": "libnghttp2-0:1.33.0-5.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.33.0-5.el8_8?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nghttp2-0:1.33.0-5.el8_8.src", + "product": { + "name": "nghttp2-0:1.33.0-5.el8_8.src", + "product_id": "nghttp2-0:1.33.0-5.el8_8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.33.0-5.el8_8?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rhc-worker-script-0:0.5-1.el7_9.src", + "product": { + "name": "rhc-worker-script-0:0.5-1.el7_9.src", + "product_id": "rhc-worker-script-0:0.5-1.el7_9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rhc-worker-script@0.5-1.el7_9?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rhc-worker-script-0:0.5-1.el7_9.x86_64", + "product": { + "name": "rhc-worker-script-0:0.5-1.el7_9.x86_64", + "product_id": "rhc-worker-script-0:0.5-1.el7_9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rhc-worker-script@0.5-1.el7_9?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "httpd24-libnghttp2-0:1.7.1-11.el7.x86_64", + "product": { + "name": "httpd24-libnghttp2-0:1.7.1-11.el7.x86_64", + "product_id": "httpd24-libnghttp2-0:1.7.1-11.el7.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/httpd24-libnghttp2@1.7.1-11.el7?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "httpd24-libnghttp2-devel-0:1.7.1-11.el7.x86_64", + "product": { + "name": "httpd24-libnghttp2-devel-0:1.7.1-11.el7.x86_64", + "product_id": "httpd24-libnghttp2-devel-0:1.7.1-11.el7.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/httpd24-libnghttp2-devel@1.7.1-11.el7?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "httpd24-nghttp2-0:1.7.1-11.el7.x86_64", + "product": { + "name": "httpd24-nghttp2-0:1.7.1-11.el7.x86_64", + "product_id": "httpd24-nghttp2-0:1.7.1-11.el7.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/httpd24-nghttp2@1.7.1-11.el7?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.x86_64", + "product": { + "name": "httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.x86_64", + "product_id": "httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/httpd24-nghttp2-debuginfo@1.7.1-11.el7?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "httpd24-nghttp2-0:1.7.1-11.el7.src", + "product": { + "name": "httpd24-nghttp2-0:1.7.1-11.el7.src", + "product_id": "httpd24-nghttp2-0:1.7.1-11.el7.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/httpd24-nghttp2@1.7.1-11.el7?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "httpd24-libnghttp2-0:1.7.1-11.el7.s390x", + "product": { + "name": "httpd24-libnghttp2-0:1.7.1-11.el7.s390x", + "product_id": "httpd24-libnghttp2-0:1.7.1-11.el7.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/httpd24-libnghttp2@1.7.1-11.el7?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "httpd24-libnghttp2-devel-0:1.7.1-11.el7.s390x", + "product": { + "name": "httpd24-libnghttp2-devel-0:1.7.1-11.el7.s390x", + "product_id": "httpd24-libnghttp2-devel-0:1.7.1-11.el7.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/httpd24-libnghttp2-devel@1.7.1-11.el7?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "httpd24-nghttp2-0:1.7.1-11.el7.s390x", + "product": { + "name": "httpd24-nghttp2-0:1.7.1-11.el7.s390x", + "product_id": "httpd24-nghttp2-0:1.7.1-11.el7.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/httpd24-nghttp2@1.7.1-11.el7?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.s390x", + "product": { + "name": "httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.s390x", + "product_id": "httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/httpd24-nghttp2-debuginfo@1.7.1-11.el7?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "httpd24-libnghttp2-0:1.7.1-11.el7.ppc64le", + "product": { + "name": "httpd24-libnghttp2-0:1.7.1-11.el7.ppc64le", + "product_id": "httpd24-libnghttp2-0:1.7.1-11.el7.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/httpd24-libnghttp2@1.7.1-11.el7?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "httpd24-libnghttp2-devel-0:1.7.1-11.el7.ppc64le", + "product": { + "name": "httpd24-libnghttp2-devel-0:1.7.1-11.el7.ppc64le", + "product_id": "httpd24-libnghttp2-devel-0:1.7.1-11.el7.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/httpd24-libnghttp2-devel@1.7.1-11.el7?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "httpd24-nghttp2-0:1.7.1-11.el7.ppc64le", + "product": { + "name": "httpd24-nghttp2-0:1.7.1-11.el7.ppc64le", + "product_id": "httpd24-nghttp2-0:1.7.1-11.el7.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/httpd24-nghttp2@1.7.1-11.el7?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.ppc64le", + "product": { + "name": "httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.ppc64le", + "product_id": "httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/httpd24-nghttp2-debuginfo@1.7.1-11.el7?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rh-nodejs14-nodejs-0:14.21.3-5.el7.src", + "product": { + "name": "rh-nodejs14-nodejs-0:14.21.3-5.el7.src", + "product_id": "rh-nodejs14-nodejs-0:14.21.3-5.el7.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nodejs14-nodejs@14.21.3-5.el7?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rh-nodejs14-nodejs-0:14.21.3-5.el7.x86_64", + "product": { + "name": "rh-nodejs14-nodejs-0:14.21.3-5.el7.x86_64", + "product_id": "rh-nodejs14-nodejs-0:14.21.3-5.el7.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nodejs14-nodejs@14.21.3-5.el7?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.x86_64", + "product": { + "name": "rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.x86_64", + "product_id": "rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nodejs14-nodejs-devel@14.21.3-5.el7?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.x86_64", + "product": { + "name": "rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.x86_64", + "product_id": "rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nodejs14-nodejs-full-i18n@14.21.3-5.el7?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.x86_64", + "product": { + "name": "rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.x86_64", + "product_id": "rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nodejs14-npm@6.14.18-14.21.3.5.el7?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.x86_64", + "product": { + "name": "rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.x86_64", + "product_id": "rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nodejs14-nodejs-debuginfo@14.21.3-5.el7?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rh-nodejs14-nodejs-docs-0:14.21.3-5.el7.noarch", + "product": { + "name": "rh-nodejs14-nodejs-docs-0:14.21.3-5.el7.noarch", + "product_id": "rh-nodejs14-nodejs-docs-0:14.21.3-5.el7.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nodejs14-nodejs-docs@14.21.3-5.el7?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rh-nodejs14-nodejs-0:14.21.3-5.el7.s390x", + "product": { + "name": "rh-nodejs14-nodejs-0:14.21.3-5.el7.s390x", + "product_id": "rh-nodejs14-nodejs-0:14.21.3-5.el7.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nodejs14-nodejs@14.21.3-5.el7?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.s390x", + "product": { + "name": "rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.s390x", + "product_id": "rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nodejs14-nodejs-devel@14.21.3-5.el7?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.s390x", + "product": { + "name": "rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.s390x", + "product_id": "rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nodejs14-nodejs-full-i18n@14.21.3-5.el7?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.s390x", + "product": { + "name": "rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.s390x", + "product_id": "rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nodejs14-npm@6.14.18-14.21.3.5.el7?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.s390x", + "product": { + "name": "rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.s390x", + "product_id": "rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nodejs14-nodejs-debuginfo@14.21.3-5.el7?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rh-nodejs14-nodejs-0:14.21.3-5.el7.ppc64le", + "product": { + "name": "rh-nodejs14-nodejs-0:14.21.3-5.el7.ppc64le", + "product_id": "rh-nodejs14-nodejs-0:14.21.3-5.el7.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nodejs14-nodejs@14.21.3-5.el7?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.ppc64le", + "product": { + "name": "rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.ppc64le", + "product_id": "rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nodejs14-nodejs-devel@14.21.3-5.el7?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.ppc64le", + "product": { + "name": "rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.ppc64le", + "product_id": "rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nodejs14-nodejs-full-i18n@14.21.3-5.el7?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.ppc64le", + "product": { + "name": "rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.ppc64le", + "product_id": "rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nodejs14-npm@6.14.18-14.21.3.5.el7?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.ppc64le", + "product": { + "name": "rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.ppc64le", + "product_id": "rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nodejs14-nodejs-debuginfo@14.21.3-5.el7?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.43.0-5.el9_2.1.aarch64", + "product": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_2.1.aarch64", + "product_id": "libnghttp2-devel-0:1.43.0-5.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.43.0-5.el9_2.1?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-0:1.43.0-5.el9_2.1.aarch64", + "product": { + "name": "nghttp2-0:1.43.0-5.el9_2.1.aarch64", + "product_id": "nghttp2-0:1.43.0-5.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.43.0-5.el9_2.1?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.aarch64", + "product": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.aarch64", + "product_id": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.43.0-5.el9_2.1?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.aarch64", + "product": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.aarch64", + "product_id": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.43.0-5.el9_2.1?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.aarch64", + "product": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.aarch64", + "product_id": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.43.0-5.el9_2.1?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-0:1.43.0-5.el9_2.1.aarch64", + "product": { + "name": "libnghttp2-0:1.43.0-5.el9_2.1.aarch64", + "product_id": "libnghttp2-0:1.43.0-5.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.43.0-5.el9_2.1?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.43.0-5.el9_2.1.ppc64le", + "product": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_2.1.ppc64le", + "product_id": "libnghttp2-devel-0:1.43.0-5.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.43.0-5.el9_2.1?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-0:1.43.0-5.el9_2.1.ppc64le", + "product": { + "name": "nghttp2-0:1.43.0-5.el9_2.1.ppc64le", + "product_id": "nghttp2-0:1.43.0-5.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.43.0-5.el9_2.1?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.ppc64le", + "product": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.ppc64le", + "product_id": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.43.0-5.el9_2.1?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.ppc64le", + "product": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.ppc64le", + "product_id": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.43.0-5.el9_2.1?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.ppc64le", + "product": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.ppc64le", + "product_id": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.43.0-5.el9_2.1?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-0:1.43.0-5.el9_2.1.ppc64le", + "product": { + "name": "libnghttp2-0:1.43.0-5.el9_2.1.ppc64le", + "product_id": "libnghttp2-0:1.43.0-5.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.43.0-5.el9_2.1?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.43.0-5.el9_2.1.i686", + "product": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_2.1.i686", + "product_id": "libnghttp2-devel-0:1.43.0-5.el9_2.1.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.43.0-5.el9_2.1?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.i686", + "product": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.i686", + "product_id": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.43.0-5.el9_2.1?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.i686", + "product": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.i686", + "product_id": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.43.0-5.el9_2.1?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.i686", + "product": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.i686", + "product_id": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.43.0-5.el9_2.1?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-0:1.43.0-5.el9_2.1.i686", + "product": { + "name": "libnghttp2-0:1.43.0-5.el9_2.1.i686", + "product_id": "libnghttp2-0:1.43.0-5.el9_2.1.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.43.0-5.el9_2.1?arch=i686" + } + } + } + ], + "category": "architecture", + "name": "i686" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.43.0-5.el9_2.1.x86_64", + "product": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_2.1.x86_64", + "product_id": "libnghttp2-devel-0:1.43.0-5.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.43.0-5.el9_2.1?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-0:1.43.0-5.el9_2.1.x86_64", + "product": { + "name": "nghttp2-0:1.43.0-5.el9_2.1.x86_64", + "product_id": "nghttp2-0:1.43.0-5.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.43.0-5.el9_2.1?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.x86_64", + "product": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.x86_64", + "product_id": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.43.0-5.el9_2.1?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.x86_64", + "product": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.x86_64", + "product_id": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.43.0-5.el9_2.1?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.x86_64", + "product": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.x86_64", + "product_id": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.43.0-5.el9_2.1?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-0:1.43.0-5.el9_2.1.x86_64", + "product": { + "name": "libnghttp2-0:1.43.0-5.el9_2.1.x86_64", + "product_id": "libnghttp2-0:1.43.0-5.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.43.0-5.el9_2.1?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.43.0-5.el9_2.1.s390x", + "product": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_2.1.s390x", + "product_id": "libnghttp2-devel-0:1.43.0-5.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.43.0-5.el9_2.1?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-0:1.43.0-5.el9_2.1.s390x", + "product": { + "name": "nghttp2-0:1.43.0-5.el9_2.1.s390x", + "product_id": "nghttp2-0:1.43.0-5.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.43.0-5.el9_2.1?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.s390x", + "product": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.s390x", + "product_id": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.43.0-5.el9_2.1?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.s390x", + "product": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.s390x", + "product_id": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.43.0-5.el9_2.1?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.s390x", + "product": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.s390x", + "product_id": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.43.0-5.el9_2.1?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-0:1.43.0-5.el9_2.1.s390x", + "product": { + "name": "libnghttp2-0:1.43.0-5.el9_2.1.s390x", + "product_id": "libnghttp2-0:1.43.0-5.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.43.0-5.el9_2.1?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nghttp2-0:1.43.0-5.el9_2.1.src", + "product": { + "name": "nghttp2-0:1.43.0-5.el9_2.1.src", + "product_id": "nghttp2-0:1.43.0-5.el9_2.1.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.43.0-5.el9_2.1?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "containers-common-2:1-36.rhaos4.12.el8.src", + "product": { + "name": "containers-common-2:1-36.rhaos4.12.el8.src", + "product_id": "containers-common-2:1-36.rhaos4.12.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/containers-common@1-36.rhaos4.12.el8?arch=src&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "kata-containers-0:3.0.2-9.rhaos4.12.el8.src", + "product": { + "name": "kata-containers-0:3.0.2-9.rhaos4.12.el8.src", + "product_id": "kata-containers-0:3.0.2-9.rhaos4.12.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kata-containers@3.0.2-9.rhaos4.12.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "kernel-0:4.18.0-372.76.1.el8_6.src", + "product": { + "name": "kernel-0:4.18.0-372.76.1.el8_6.src", + "product_id": "kernel-0:4.18.0-372.76.1.el8_6.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@4.18.0-372.76.1.el8_6?arch=src" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-0:4.18.0-372.76.1.rt7.235.el8_6.src", + "product": { + "name": "kernel-rt-0:4.18.0-372.76.1.rt7.235.el8_6.src", + "product_id": "kernel-rt-0:4.18.0-372.76.1.rt7.235.el8_6.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt@4.18.0-372.76.1.rt7.235.el8_6?arch=src" + } + } + }, + { + "category": "product_version", + "name": "openshift-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.src", + "product": { + "name": "openshift-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.src", + "product_id": "openshift-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift@4.12.0-202310132326.p0.g20cda61.assembly.stream.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.src", + "product": { + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.src", + "product_id": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "openshift-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.src", + "product": { + "name": "openshift-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.src", + "product_id": "openshift-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift@4.12.0-202310132326.p0.g20cda61.assembly.stream.el9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.src", + "product": { + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.src", + "product_id": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "containers-common-2:1-36.rhaos4.12.el8.x86_64", + "product": { + "name": "containers-common-2:1-36.rhaos4.12.el8.x86_64", + "product_id": "containers-common-2:1-36.rhaos4.12.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/containers-common@1-36.rhaos4.12.el8?arch=x86_64&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "kata-containers-0:3.0.2-9.rhaos4.12.el8.x86_64", + "product": { + "name": "kata-containers-0:3.0.2-9.rhaos4.12.el8.x86_64", + "product_id": "kata-containers-0:3.0.2-9.rhaos4.12.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kata-containers@3.0.2-9.rhaos4.12.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "bpftool-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "bpftool-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "bpftool-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-core-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-core-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-core-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-core@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-cross-headers@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-debug-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-debug-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-core@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-internal@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-devel-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-devel-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-headers-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-headers-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-headers-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-headers@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-ipaclones-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-ipaclones-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-ipaclones-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-ipaclones-internal@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-modules-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-modules-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-extra@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-internal@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-selftests-internal@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-tools-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-tools-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "perf-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "perf-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "perf-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "python3-perf-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "python3-perf-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool-debuginfo@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-common-x86_64-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-debuginfo-common-x86_64-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-debuginfo-common-x86_64-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf-debuginfo@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product": { + "name": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product_id": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf-debuginfo@4.18.0-372.76.1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-core-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-core-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-core-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-core@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-debug-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-debug-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-core-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-debug-core-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-debug-core-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-core@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-devel-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-debug-devel-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-debug-devel-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-devel@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-kvm-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-debug-kvm-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-debug-kvm-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-kvm@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-modules-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-debug-modules-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-debug-modules-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-modules@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-modules-extra-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-debug-modules-extra-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-debug-modules-extra-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-modules-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-debug-modules-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-debug-modules-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-modules-internal@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-devel-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-devel-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-devel-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-devel@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-kvm-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-kvm-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-kvm-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-kvm@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-modules-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-modules-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-modules-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-modules@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-modules-extra-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-modules-extra-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-modules-extra-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-modules-extra@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-modules-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-modules-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-modules-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-modules-internal@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-selftests-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-selftests-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-selftests-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-selftests-internal@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debug-debuginfo-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-debug-debuginfo-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-debug-debuginfo-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debuginfo-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-debuginfo-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-debuginfo-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debuginfo@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "kernel-rt-debuginfo-common-x86_64-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product": { + "name": "kernel-rt-debuginfo-common-x86_64-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_id": "kernel-rt-debuginfo-common-x86_64-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-rt-debuginfo-common-x86_64@4.18.0-372.76.1.rt7.235.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.x86_64", + "product": { + "name": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.x86_64", + "product_id": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-hyperkube@4.12.0-202310132326.p0.g20cda61.assembly.stream.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.x86_64", + "product": { + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.x86_64", + "product_id": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-redistributable-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.x86_64", + "product": { + "name": "openshift-clients-redistributable-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.x86_64", + "product_id": "openshift-clients-redistributable-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients-redistributable@4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.x86_64", + "product": { + "name": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.x86_64", + "product_id": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-hyperkube@4.12.0-202310132326.p0.g20cda61.assembly.stream.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.x86_64", + "product": { + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.x86_64", + "product_id": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-redistributable-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.x86_64", + "product": { + "name": "openshift-clients-redistributable-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.x86_64", + "product_id": "openshift-clients-redistributable-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients-redistributable@4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "containers-common-2:1-36.rhaos4.12.el8.aarch64", + "product": { + "name": "containers-common-2:1-36.rhaos4.12.el8.aarch64", + "product_id": "containers-common-2:1-36.rhaos4.12.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/containers-common@1-36.rhaos4.12.el8?arch=aarch64&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "kata-containers-0:3.0.2-9.rhaos4.12.el8.aarch64", + "product": { + "name": "kata-containers-0:3.0.2-9.rhaos4.12.el8.aarch64", + "product_id": "kata-containers-0:3.0.2-9.rhaos4.12.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kata-containers@3.0.2-9.rhaos4.12.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "bpftool-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "bpftool-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "bpftool-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-core-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-core-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-core-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-core@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-cross-headers@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-debug-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-debug-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-core@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-internal@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-devel-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-devel-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-headers-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-headers-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-headers-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-headers@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-modules-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-modules-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-extra@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-internal@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-selftests-internal@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-tools-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-tools-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "perf-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "perf-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "perf-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "python3-perf-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "python3-perf-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool-debuginfo@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-common-aarch64-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-debuginfo-common-aarch64-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-debuginfo-common-aarch64-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo-common-aarch64@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf-debuginfo@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product": { + "name": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product_id": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf-debuginfo@4.18.0-372.76.1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.aarch64", + "product": { + "name": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.aarch64", + "product_id": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-hyperkube@4.12.0-202310132326.p0.g20cda61.assembly.stream.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.aarch64", + "product": { + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.aarch64", + "product_id": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.aarch64", + "product": { + "name": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.aarch64", + "product_id": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-hyperkube@4.12.0-202310132326.p0.g20cda61.assembly.stream.el9?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.aarch64", + "product": { + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.aarch64", + "product_id": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "containers-common-2:1-36.rhaos4.12.el8.ppc64le", + "product": { + "name": "containers-common-2:1-36.rhaos4.12.el8.ppc64le", + "product_id": "containers-common-2:1-36.rhaos4.12.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/containers-common@1-36.rhaos4.12.el8?arch=ppc64le&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "kata-containers-0:3.0.2-9.rhaos4.12.el8.ppc64le", + "product": { + "name": "kata-containers-0:3.0.2-9.rhaos4.12.el8.ppc64le", + "product_id": "kata-containers-0:3.0.2-9.rhaos4.12.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kata-containers@3.0.2-9.rhaos4.12.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "bpftool-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "bpftool-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "bpftool-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-core-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-core-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-core-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-core@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-cross-headers@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-debug-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-debug-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-core@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-internal@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-devel-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-devel-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-headers-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-headers-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-headers-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-headers@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-ipaclones-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-ipaclones-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-ipaclones-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-ipaclones-internal@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-modules-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-modules-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-extra@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-internal@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-selftests-internal@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-tools-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-tools-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "perf-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "perf-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "perf-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "python3-perf-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "python3-perf-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool-debuginfo@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-common-ppc64le-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-debuginfo-common-ppc64le-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-debuginfo-common-ppc64le-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo-common-ppc64le@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf-debuginfo@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product": { + "name": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_id": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf-debuginfo@4.18.0-372.76.1.el8_6?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.ppc64le", + "product": { + "name": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.ppc64le", + "product_id": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-hyperkube@4.12.0-202310132326.p0.g20cda61.assembly.stream.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.ppc64le", + "product": { + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.ppc64le", + "product_id": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.ppc64le", + "product": { + "name": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.ppc64le", + "product_id": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-hyperkube@4.12.0-202310132326.p0.g20cda61.assembly.stream.el9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.ppc64le", + "product": { + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.ppc64le", + "product_id": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "containers-common-2:1-36.rhaos4.12.el8.s390x", + "product": { + "name": "containers-common-2:1-36.rhaos4.12.el8.s390x", + "product_id": "containers-common-2:1-36.rhaos4.12.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/containers-common@1-36.rhaos4.12.el8?arch=s390x&epoch=2" + } + } + }, + { + "category": "product_version", + "name": "kata-containers-0:3.0.2-9.rhaos4.12.el8.s390x", + "product": { + "name": "kata-containers-0:3.0.2-9.rhaos4.12.el8.s390x", + "product_id": "kata-containers-0:3.0.2-9.rhaos4.12.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kata-containers@3.0.2-9.rhaos4.12.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "bpftool-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "bpftool-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "bpftool-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-core-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-core-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-core-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-core@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-cross-headers@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-debug-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-debug-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-core@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-devel@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-modules-internal@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-devel-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-devel-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-devel-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-devel@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-headers-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-headers-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-headers-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-headers@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-modules-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-modules-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-extra@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-modules-internal@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-selftests-internal@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-tools-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-tools-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-zfcpdump-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-zfcpdump-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-core-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-zfcpdump-core-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-zfcpdump-core-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-core@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-devel-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-zfcpdump-devel-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-zfcpdump-devel-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-devel@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-modules-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-zfcpdump-modules-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-zfcpdump-modules-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-modules-extra-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-zfcpdump-modules-extra-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-zfcpdump-modules-extra-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-extra@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-modules-internal-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-zfcpdump-modules-internal-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-zfcpdump-modules-internal-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-internal@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "perf-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "perf-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "perf-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "python3-perf-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "python3-perf-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/bpftool-debuginfo@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-debuginfo-common-s390x-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-debuginfo-common-s390x-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-debuginfo-common-s390x-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-debuginfo-common-s390x@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "kernel-zfcpdump-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "kernel-zfcpdump-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "kernel-zfcpdump-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-zfcpdump-debuginfo@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/perf-debuginfo@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product": { + "name": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_id": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-perf-debuginfo@4.18.0-372.76.1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.s390x", + "product": { + "name": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.s390x", + "product_id": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-hyperkube@4.12.0-202310132326.p0.g20cda61.assembly.stream.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.s390x", + "product": { + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.s390x", + "product_id": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.s390x", + "product": { + "name": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.s390x", + "product_id": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-hyperkube@4.12.0-202310132326.p0.g20cda61.assembly.stream.el9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.s390x", + "product": { + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.s390x", + "product_id": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/openshift-clients@4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "kernel-doc-0:4.18.0-372.76.1.el8_6.noarch", + "product": { + "name": "kernel-doc-0:4.18.0-372.76.1.el8_6.noarch", + "product_id": "kernel-doc-0:4.18.0-372.76.1.el8_6.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/kernel-doc@4.18.0-372.76.1.el8_6?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "ansible-automation-platform-24/aap-cloud-billing-rhel8@sha256:f650486925c3bb5ff56570543839ef8ab668c91bba11a30aeceba22b0cf25b3e_amd64", + "product": { + "name": "ansible-automation-platform-24/aap-cloud-billing-rhel8@sha256:f650486925c3bb5ff56570543839ef8ab668c91bba11a30aeceba22b0cf25b3e_amd64", + "product_id": "ansible-automation-platform-24/aap-cloud-billing-rhel8@sha256:f650486925c3bb5ff56570543839ef8ab668c91bba11a30aeceba22b0cf25b3e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/aap-cloud-billing-rhel8@sha256:f650486925c3bb5ff56570543839ef8ab668c91bba11a30aeceba22b0cf25b3e?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/aap-cloud-billing-rhel8&tag=0.0.2-112" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/aap-cloud-billing-rhel8-operator@sha256:3151364d2c3359a253e6f95fe296ad9842bcf859a4d05e65abc1283f7646f986_amd64", + "product": { + "name": "ansible-automation-platform-24/aap-cloud-billing-rhel8-operator@sha256:3151364d2c3359a253e6f95fe296ad9842bcf859a4d05e65abc1283f7646f986_amd64", + "product_id": "ansible-automation-platform-24/aap-cloud-billing-rhel8-operator@sha256:3151364d2c3359a253e6f95fe296ad9842bcf859a4d05e65abc1283f7646f986_amd64", + "product_identification_helper": { + "purl": "pkg:oci/aap-cloud-billing-rhel8-operator@sha256:3151364d2c3359a253e6f95fe296ad9842bcf859a4d05e65abc1283f7646f986?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/aap-cloud-billing-rhel8-operator&tag=1.0.2-24" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/aap-cloud-metrics-collector-rhel8@sha256:738e8ad888db5fa2205b9eb809b25ee98b77b47e7cb009d7aef94e0ab09c9492_amd64", + "product": { + "name": "ansible-automation-platform-24/aap-cloud-metrics-collector-rhel8@sha256:738e8ad888db5fa2205b9eb809b25ee98b77b47e7cb009d7aef94e0ab09c9492_amd64", + "product_id": "ansible-automation-platform-24/aap-cloud-metrics-collector-rhel8@sha256:738e8ad888db5fa2205b9eb809b25ee98b77b47e7cb009d7aef94e0ab09c9492_amd64", + "product_identification_helper": { + "purl": "pkg:oci/aap-cloud-metrics-collector-rhel8@sha256:738e8ad888db5fa2205b9eb809b25ee98b77b47e7cb009d7aef94e0ab09c9492?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/aap-cloud-metrics-collector-rhel8&tag=1.0.2-15" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/aap-cloud-ui-rhel8@sha256:0d0b96befa8957940d289d905517a6e2ef687cc28c9e68c29acb7813a90a13a6_amd64", + "product": { + "name": "ansible-automation-platform-24/aap-cloud-ui-rhel8@sha256:0d0b96befa8957940d289d905517a6e2ef687cc28c9e68c29acb7813a90a13a6_amd64", + "product_id": "ansible-automation-platform-24/aap-cloud-ui-rhel8@sha256:0d0b96befa8957940d289d905517a6e2ef687cc28c9e68c29acb7813a90a13a6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/aap-cloud-ui-rhel8@sha256:0d0b96befa8957940d289d905517a6e2ef687cc28c9e68c29acb7813a90a13a6?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/aap-cloud-ui-rhel8&tag=1.0.2-14" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/aap-cloud-ui-rhel8-operator@sha256:2826678e9aca4fc567567c36f0d7af6cc22ee85fcfb23d3552534712685d512d_amd64", + "product": { + "name": "ansible-automation-platform-24/aap-cloud-ui-rhel8-operator@sha256:2826678e9aca4fc567567c36f0d7af6cc22ee85fcfb23d3552534712685d512d_amd64", + "product_id": "ansible-automation-platform-24/aap-cloud-ui-rhel8-operator@sha256:2826678e9aca4fc567567c36f0d7af6cc22ee85fcfb23d3552534712685d512d_amd64", + "product_identification_helper": { + "purl": "pkg:oci/aap-cloud-ui-rhel8-operator@sha256:2826678e9aca4fc567567c36f0d7af6cc22ee85fcfb23d3552534712685d512d?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/aap-cloud-ui-rhel8-operator&tag=1.0.3-10" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/aap-must-gather-rhel8@sha256:1ff8637546e4244650e7ad05e9e287c041198d4848a0834c4b505c73ec2adc40_amd64", + "product": { + "name": "ansible-automation-platform-24/aap-must-gather-rhel8@sha256:1ff8637546e4244650e7ad05e9e287c041198d4848a0834c4b505c73ec2adc40_amd64", + "product_id": "ansible-automation-platform-24/aap-must-gather-rhel8@sha256:1ff8637546e4244650e7ad05e9e287c041198d4848a0834c4b505c73ec2adc40_amd64", + "product_identification_helper": { + "purl": "pkg:oci/aap-must-gather-rhel8@sha256:1ff8637546e4244650e7ad05e9e287c041198d4848a0834c4b505c73ec2adc40?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/aap-must-gather-rhel8&tag=0.0.1-356" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform/platform-operator-bundle@sha256:5825e694ae618fd41f495a7d5b9f911da004a9649aa09ca66ad64d3812a884d9_amd64", + "product": { + "name": "ansible-automation-platform/platform-operator-bundle@sha256:5825e694ae618fd41f495a7d5b9f911da004a9649aa09ca66ad64d3812a884d9_amd64", + "product_id": "ansible-automation-platform/platform-operator-bundle@sha256:5825e694ae618fd41f495a7d5b9f911da004a9649aa09ca66ad64d3812a884d9_amd64", + "product_identification_helper": { + "purl": "pkg:oci/platform-operator-bundle@sha256:5825e694ae618fd41f495a7d5b9f911da004a9649aa09ca66ad64d3812a884d9?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform/platform-operator-bundle&tag=2.4-672" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ansible-builder-rhel8@sha256:0a5ae31195b5b32e8f0800a301ce0e1e282812af59c667c4b40af82a8ca09d62_amd64", + "product": { + "name": "ansible-automation-platform-24/ansible-builder-rhel8@sha256:0a5ae31195b5b32e8f0800a301ce0e1e282812af59c667c4b40af82a8ca09d62_amd64", + "product_id": "ansible-automation-platform-24/ansible-builder-rhel8@sha256:0a5ae31195b5b32e8f0800a301ce0e1e282812af59c667c4b40af82a8ca09d62_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ansible-builder-rhel8@sha256:0a5ae31195b5b32e8f0800a301ce0e1e282812af59c667c4b40af82a8ca09d62?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/ansible-builder-rhel8&tag=3.0.0-112" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ansible-builder-rhel9@sha256:45ff186bff94f30a34c2fe59bc342d10bf47071567b9d09d1fa61bf08e72f1c4_amd64", + "product": { + "name": "ansible-automation-platform-24/ansible-builder-rhel9@sha256:45ff186bff94f30a34c2fe59bc342d10bf47071567b9d09d1fa61bf08e72f1c4_amd64", + "product_id": "ansible-automation-platform-24/ansible-builder-rhel9@sha256:45ff186bff94f30a34c2fe59bc342d10bf47071567b9d09d1fa61bf08e72f1c4_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ansible-builder-rhel9@sha256:45ff186bff94f30a34c2fe59bc342d10bf47071567b9d09d1fa61bf08e72f1c4?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/ansible-builder-rhel9&tag=3.0.0-111" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform/cloud-addons-operator-bundle@sha256:bdc45dd15fcdf3d3956c6ddc2316a8e68490cc1d4249f95b01b231a0fb17debf_amd64", + "product": { + "name": "ansible-automation-platform/cloud-addons-operator-bundle@sha256:bdc45dd15fcdf3d3956c6ddc2316a8e68490cc1d4249f95b01b231a0fb17debf_amd64", + "product_id": "ansible-automation-platform/cloud-addons-operator-bundle@sha256:bdc45dd15fcdf3d3956c6ddc2316a8e68490cc1d4249f95b01b231a0fb17debf_amd64", + "product_identification_helper": { + "purl": "pkg:oci/cloud-addons-operator-bundle@sha256:bdc45dd15fcdf3d3956c6ddc2316a8e68490cc1d4249f95b01b231a0fb17debf?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform/cloud-addons-operator-bundle&tag=2.4-402" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ansible-python-base-rhel8@sha256:5cf9e0d8a0ad5b1492187b177751cede769b53dc830e5b1bc5dcdd110a71a397_amd64", + "product": { + "name": "ansible-automation-platform-24/ansible-python-base-rhel8@sha256:5cf9e0d8a0ad5b1492187b177751cede769b53dc830e5b1bc5dcdd110a71a397_amd64", + "product_id": "ansible-automation-platform-24/ansible-python-base-rhel8@sha256:5cf9e0d8a0ad5b1492187b177751cede769b53dc830e5b1bc5dcdd110a71a397_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ansible-python-base-rhel8@sha256:5cf9e0d8a0ad5b1492187b177751cede769b53dc830e5b1bc5dcdd110a71a397?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/ansible-python-base-rhel8&tag=1.0.0-386" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ansible-python-base-rhel9@sha256:7ecc021d626a20acc20f73b28005c16a8d20c7640ec51dffdaff236440702172_amd64", + "product": { + "name": "ansible-automation-platform-24/ansible-python-base-rhel9@sha256:7ecc021d626a20acc20f73b28005c16a8d20c7640ec51dffdaff236440702172_amd64", + "product_id": "ansible-automation-platform-24/ansible-python-base-rhel9@sha256:7ecc021d626a20acc20f73b28005c16a8d20c7640ec51dffdaff236440702172_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ansible-python-base-rhel9@sha256:7ecc021d626a20acc20f73b28005c16a8d20c7640ec51dffdaff236440702172?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/ansible-python-base-rhel9&tag=1.0.0-387" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ansible-python-toolkit-rhel8@sha256:99e842a1ca0ea2234c09a8a9466d936968ef36032c102e26fa761089528461e7_amd64", + "product": { + "name": "ansible-automation-platform-24/ansible-python-toolkit-rhel8@sha256:99e842a1ca0ea2234c09a8a9466d936968ef36032c102e26fa761089528461e7_amd64", + "product_id": "ansible-automation-platform-24/ansible-python-toolkit-rhel8@sha256:99e842a1ca0ea2234c09a8a9466d936968ef36032c102e26fa761089528461e7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ansible-python-toolkit-rhel8@sha256:99e842a1ca0ea2234c09a8a9466d936968ef36032c102e26fa761089528461e7?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/ansible-python-toolkit-rhel8&tag=1.0.0-369" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ansible-python-toolkit-rhel9@sha256:bc376892f777fade4e725e140ae195ee94bd2f3c8e97b86a2705cbe23fa1875e_amd64", + "product": { + "name": "ansible-automation-platform-24/ansible-python-toolkit-rhel9@sha256:bc376892f777fade4e725e140ae195ee94bd2f3c8e97b86a2705cbe23fa1875e_amd64", + "product_id": "ansible-automation-platform-24/ansible-python-toolkit-rhel9@sha256:bc376892f777fade4e725e140ae195ee94bd2f3c8e97b86a2705cbe23fa1875e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ansible-python-toolkit-rhel9@sha256:bc376892f777fade4e725e140ae195ee94bd2f3c8e97b86a2705cbe23fa1875e?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/ansible-python-toolkit-rhel9&tag=1.0.0-368" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/controller-rhel8@sha256:11f4ad08d0d96223b17e08a5d07f0594d0d450fe94bd86ce6f57165d20eedfee_amd64", + "product": { + "name": "ansible-automation-platform-24/controller-rhel8@sha256:11f4ad08d0d96223b17e08a5d07f0594d0d450fe94bd86ce6f57165d20eedfee_amd64", + "product_id": "ansible-automation-platform-24/controller-rhel8@sha256:11f4ad08d0d96223b17e08a5d07f0594d0d450fe94bd86ce6f57165d20eedfee_amd64", + "product_identification_helper": { + "purl": "pkg:oci/controller-rhel8@sha256:11f4ad08d0d96223b17e08a5d07f0594d0d450fe94bd86ce6f57165d20eedfee?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/controller-rhel8&tag=4.4.6-4" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/controller-rhel8-operator@sha256:07a798fdc9b88ce7332a1300475e3a56d439b55a7ad5e10fd8d4e036661841cd_amd64", + "product": { + "name": "ansible-automation-platform-24/controller-rhel8-operator@sha256:07a798fdc9b88ce7332a1300475e3a56d439b55a7ad5e10fd8d4e036661841cd_amd64", + "product_id": "ansible-automation-platform-24/controller-rhel8-operator@sha256:07a798fdc9b88ce7332a1300475e3a56d439b55a7ad5e10fd8d4e036661841cd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/controller-rhel8-operator@sha256:07a798fdc9b88ce7332a1300475e3a56d439b55a7ad5e10fd8d4e036661841cd?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/controller-rhel8-operator&tag=2.4-79" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/eda-controller-rhel8@sha256:fd7e96d6b70e0a1b13f0f34e7f14d4de14d07f0db6c449c20e1211bc3982205e_amd64", + "product": { + "name": "ansible-automation-platform-24/eda-controller-rhel8@sha256:fd7e96d6b70e0a1b13f0f34e7f14d4de14d07f0db6c449c20e1211bc3982205e_amd64", + "product_id": "ansible-automation-platform-24/eda-controller-rhel8@sha256:fd7e96d6b70e0a1b13f0f34e7f14d4de14d07f0db6c449c20e1211bc3982205e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/eda-controller-rhel8@sha256:fd7e96d6b70e0a1b13f0f34e7f14d4de14d07f0db6c449c20e1211bc3982205e?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/eda-controller-rhel8&tag=1.0.1-16" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/eda-controller-rhel8-operator@sha256:f9f8d32c2ab60ab6c30bfcdec7778f6eb67ba30015d9453afd67ab334c8c2fe5_amd64", + "product": { + "name": "ansible-automation-platform-24/eda-controller-rhel8-operator@sha256:f9f8d32c2ab60ab6c30bfcdec7778f6eb67ba30015d9453afd67ab334c8c2fe5_amd64", + "product_id": "ansible-automation-platform-24/eda-controller-rhel8-operator@sha256:f9f8d32c2ab60ab6c30bfcdec7778f6eb67ba30015d9453afd67ab334c8c2fe5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/eda-controller-rhel8-operator@sha256:f9f8d32c2ab60ab6c30bfcdec7778f6eb67ba30015d9453afd67ab334c8c2fe5?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/eda-controller-rhel8-operator&tag=2.4-86" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/eda-controller-ui-rhel8@sha256:56b46c50edef8f427dbc11d32c493ccc3b12df9dc9f553c2e8d3740313ae3cd1_amd64", + "product": { + "name": "ansible-automation-platform-24/eda-controller-ui-rhel8@sha256:56b46c50edef8f427dbc11d32c493ccc3b12df9dc9f553c2e8d3740313ae3cd1_amd64", + "product_id": "ansible-automation-platform-24/eda-controller-ui-rhel8@sha256:56b46c50edef8f427dbc11d32c493ccc3b12df9dc9f553c2e8d3740313ae3cd1_amd64", + "product_identification_helper": { + "purl": "pkg:oci/eda-controller-ui-rhel8@sha256:56b46c50edef8f427dbc11d32c493ccc3b12df9dc9f553c2e8d3740313ae3cd1?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/eda-controller-ui-rhel8&tag=1.0.1-16" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/hub-rhel8@sha256:ac2b684d7ac8e0b6f36fe2da22b2ed41bfb24f8e2f77e64117c186a3cdf2f21b_amd64", + "product": { + "name": "ansible-automation-platform-24/hub-rhel8@sha256:ac2b684d7ac8e0b6f36fe2da22b2ed41bfb24f8e2f77e64117c186a3cdf2f21b_amd64", + "product_id": "ansible-automation-platform-24/hub-rhel8@sha256:ac2b684d7ac8e0b6f36fe2da22b2ed41bfb24f8e2f77e64117c186a3cdf2f21b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hub-rhel8@sha256:ac2b684d7ac8e0b6f36fe2da22b2ed41bfb24f8e2f77e64117c186a3cdf2f21b?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/hub-rhel8&tag=4.7.3-15" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/hub-rhel8-operator@sha256:f38fcf5efc4501f3111484cd9c5216f4014fcfd0088d4dd3ad6c14ad76dbe83a_amd64", + "product": { + "name": "ansible-automation-platform-24/hub-rhel8-operator@sha256:f38fcf5efc4501f3111484cd9c5216f4014fcfd0088d4dd3ad6c14ad76dbe83a_amd64", + "product_id": "ansible-automation-platform-24/hub-rhel8-operator@sha256:f38fcf5efc4501f3111484cd9c5216f4014fcfd0088d4dd3ad6c14ad76dbe83a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hub-rhel8-operator@sha256:f38fcf5efc4501f3111484cd9c5216f4014fcfd0088d4dd3ad6c14ad76dbe83a?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/hub-rhel8-operator&tag=2.4-70" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/hub-web-rhel8@sha256:a44ffd3666281ab867c177915ddf48fdb59052a2d48f49284a598e8c80125d7b_amd64", + "product": { + "name": "ansible-automation-platform-24/hub-web-rhel8@sha256:a44ffd3666281ab867c177915ddf48fdb59052a2d48f49284a598e8c80125d7b_amd64", + "product_id": "ansible-automation-platform-24/hub-web-rhel8@sha256:a44ffd3666281ab867c177915ddf48fdb59052a2d48f49284a598e8c80125d7b_amd64", + "product_identification_helper": { + "purl": "pkg:oci/hub-web-rhel8@sha256:a44ffd3666281ab867c177915ddf48fdb59052a2d48f49284a598e8c80125d7b?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/hub-web-rhel8&tag=4.7.3-15" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/de-minimal-rhel8@sha256:8c7d062a28b7e54510c1aa45598a6e7c0777962b0c5d1dd1eff77e2203aabc93_amd64", + "product": { + "name": "ansible-automation-platform-24/de-minimal-rhel8@sha256:8c7d062a28b7e54510c1aa45598a6e7c0777962b0c5d1dd1eff77e2203aabc93_amd64", + "product_id": "ansible-automation-platform-24/de-minimal-rhel8@sha256:8c7d062a28b7e54510c1aa45598a6e7c0777962b0c5d1dd1eff77e2203aabc93_amd64", + "product_identification_helper": { + "purl": "pkg:oci/de-minimal-rhel8@sha256:8c7d062a28b7e54510c1aa45598a6e7c0777962b0c5d1dd1eff77e2203aabc93?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/de-minimal-rhel8&tag=1.0.0-129" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/de-minimal-rhel9@sha256:a562c54aa4ba7538aa2b1beab666cab689240f664f8c17bfd769560efbe3b626_amd64", + "product": { + "name": "ansible-automation-platform-24/de-minimal-rhel9@sha256:a562c54aa4ba7538aa2b1beab666cab689240f664f8c17bfd769560efbe3b626_amd64", + "product_id": "ansible-automation-platform-24/de-minimal-rhel9@sha256:a562c54aa4ba7538aa2b1beab666cab689240f664f8c17bfd769560efbe3b626_amd64", + "product_identification_helper": { + "purl": "pkg:oci/de-minimal-rhel9@sha256:a562c54aa4ba7538aa2b1beab666cab689240f664f8c17bfd769560efbe3b626?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/de-minimal-rhel9&tag=1.0.0-128" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/de-supported-rhel8@sha256:3abdaa6c02011ee543838612626d895980298d6e505e510f4a2b75e6ee0d6315_amd64", + "product": { + "name": "ansible-automation-platform-24/de-supported-rhel8@sha256:3abdaa6c02011ee543838612626d895980298d6e505e510f4a2b75e6ee0d6315_amd64", + "product_id": "ansible-automation-platform-24/de-supported-rhel8@sha256:3abdaa6c02011ee543838612626d895980298d6e505e510f4a2b75e6ee0d6315_amd64", + "product_identification_helper": { + "purl": "pkg:oci/de-supported-rhel8@sha256:3abdaa6c02011ee543838612626d895980298d6e505e510f4a2b75e6ee0d6315?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/de-supported-rhel8&tag=1.0.0-135" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/de-supported-rhel9@sha256:f4fe61723e459bf8e8b8721cb463a89d77827f87ec835826b0866c617cb19ea7_amd64", + "product": { + "name": "ansible-automation-platform-24/de-supported-rhel9@sha256:f4fe61723e459bf8e8b8721cb463a89d77827f87ec835826b0866c617cb19ea7_amd64", + "product_id": "ansible-automation-platform-24/de-supported-rhel9@sha256:f4fe61723e459bf8e8b8721cb463a89d77827f87ec835826b0866c617cb19ea7_amd64", + "product_identification_helper": { + "purl": "pkg:oci/de-supported-rhel9@sha256:f4fe61723e459bf8e8b8721cb463a89d77827f87ec835826b0866c617cb19ea7?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/de-supported-rhel9&tag=1.0.0-134" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ee-29-rhel8@sha256:5685c052ba6b6d3eec7b7c740ba6b967e92f1fa22631dcf2fe048c57d16cf12a_amd64", + "product": { + "name": "ansible-automation-platform-24/ee-29-rhel8@sha256:5685c052ba6b6d3eec7b7c740ba6b967e92f1fa22631dcf2fe048c57d16cf12a_amd64", + "product_id": "ansible-automation-platform-24/ee-29-rhel8@sha256:5685c052ba6b6d3eec7b7c740ba6b967e92f1fa22631dcf2fe048c57d16cf12a_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ee-29-rhel8@sha256:5685c052ba6b6d3eec7b7c740ba6b967e92f1fa22631dcf2fe048c57d16cf12a?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/ee-29-rhel8&tag=1.0.0-356" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ee-cloud-services-rhel8@sha256:d0797635652c5d9044da6c9f3ecbcc174bf7a9823f1c72cde44830cfe4f5ff56_amd64", + "product": { + "name": "ansible-automation-platform-24/ee-cloud-services-rhel8@sha256:d0797635652c5d9044da6c9f3ecbcc174bf7a9823f1c72cde44830cfe4f5ff56_amd64", + "product_id": "ansible-automation-platform-24/ee-cloud-services-rhel8@sha256:d0797635652c5d9044da6c9f3ecbcc174bf7a9823f1c72cde44830cfe4f5ff56_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ee-cloud-services-rhel8@sha256:d0797635652c5d9044da6c9f3ecbcc174bf7a9823f1c72cde44830cfe4f5ff56?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/ee-cloud-services-rhel8&tag=1.0.0-147" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform/ee-containerized-installer-rhel8@sha256:a4cdb956a90531672851a53c6691591c871513630c8d441b0061d0c187f62a99_amd64", + "product": { + "name": "ansible-automation-platform/ee-containerized-installer-rhel8@sha256:a4cdb956a90531672851a53c6691591c871513630c8d441b0061d0c187f62a99_amd64", + "product_id": "ansible-automation-platform/ee-containerized-installer-rhel8@sha256:a4cdb956a90531672851a53c6691591c871513630c8d441b0061d0c187f62a99_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ee-containerized-installer-rhel8@sha256:a4cdb956a90531672851a53c6691591c871513630c8d441b0061d0c187f62a99?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform/ee-containerized-installer-rhel8&tag=1.2.3-13" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ee-dellemc-openmanage-rhel8@sha256:894f470c00c9bffad51ba8e8aecac867345c6e3f90227d773699cf8ef25120eb_amd64", + "product": { + "name": "ansible-automation-platform-24/ee-dellemc-openmanage-rhel8@sha256:894f470c00c9bffad51ba8e8aecac867345c6e3f90227d773699cf8ef25120eb_amd64", + "product_id": "ansible-automation-platform-24/ee-dellemc-openmanage-rhel8@sha256:894f470c00c9bffad51ba8e8aecac867345c6e3f90227d773699cf8ef25120eb_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ee-dellemc-openmanage-rhel8@sha256:894f470c00c9bffad51ba8e8aecac867345c6e3f90227d773699cf8ef25120eb?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/ee-dellemc-openmanage-rhel8&tag=8.3.0-7" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ee-minimal-rhel8@sha256:c4c7158dfc2c317c62aed28f6db21bc347aca92b8301a6cb932c1a5fbf3eac87_amd64", + "product": { + "name": "ansible-automation-platform-24/ee-minimal-rhel8@sha256:c4c7158dfc2c317c62aed28f6db21bc347aca92b8301a6cb932c1a5fbf3eac87_amd64", + "product_id": "ansible-automation-platform-24/ee-minimal-rhel8@sha256:c4c7158dfc2c317c62aed28f6db21bc347aca92b8301a6cb932c1a5fbf3eac87_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ee-minimal-rhel8@sha256:c4c7158dfc2c317c62aed28f6db21bc347aca92b8301a6cb932c1a5fbf3eac87?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/ee-minimal-rhel8&tag=1.0.0-450" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ee-minimal-rhel9@sha256:49d5862f8abc4f05c837b26610604d32c07001af0a93993458b21e8f9adf534f_amd64", + "product": { + "name": "ansible-automation-platform-24/ee-minimal-rhel9@sha256:49d5862f8abc4f05c837b26610604d32c07001af0a93993458b21e8f9adf534f_amd64", + "product_id": "ansible-automation-platform-24/ee-minimal-rhel9@sha256:49d5862f8abc4f05c837b26610604d32c07001af0a93993458b21e8f9adf534f_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ee-minimal-rhel9@sha256:49d5862f8abc4f05c837b26610604d32c07001af0a93993458b21e8f9adf534f?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/ee-minimal-rhel9&tag=1.0.0-451" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ee-supported-rhel8@sha256:72098dcaf2cf2174557428f1121c5926b905dfaa0aad160d3064d171946f298e_amd64", + "product": { + "name": "ansible-automation-platform-24/ee-supported-rhel8@sha256:72098dcaf2cf2174557428f1121c5926b905dfaa0aad160d3064d171946f298e_amd64", + "product_id": "ansible-automation-platform-24/ee-supported-rhel8@sha256:72098dcaf2cf2174557428f1121c5926b905dfaa0aad160d3064d171946f298e_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ee-supported-rhel8@sha256:72098dcaf2cf2174557428f1121c5926b905dfaa0aad160d3064d171946f298e?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/ee-supported-rhel8&tag=1.0.0-436" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ee-supported-rhel9@sha256:23ed9a9439c4651417dd96d62776ca40582b54fc5da2955a72b047608c0d6c42_amd64", + "product": { + "name": "ansible-automation-platform-24/ee-supported-rhel9@sha256:23ed9a9439c4651417dd96d62776ca40582b54fc5da2955a72b047608c0d6c42_amd64", + "product_id": "ansible-automation-platform-24/ee-supported-rhel9@sha256:23ed9a9439c4651417dd96d62776ca40582b54fc5da2955a72b047608c0d6c42_amd64", + "product_identification_helper": { + "purl": "pkg:oci/ee-supported-rhel9@sha256:23ed9a9439c4651417dd96d62776ca40582b54fc5da2955a72b047608c0d6c42?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/ee-supported-rhel9&tag=1.0.0-435" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/platform-resource-rhel8-operator@sha256:13425b0194354a15d71f6bccd7b2e526ef4b2cd8c56b6aff91ebf4435bda20bc_amd64", + "product": { + "name": "ansible-automation-platform-24/platform-resource-rhel8-operator@sha256:13425b0194354a15d71f6bccd7b2e526ef4b2cd8c56b6aff91ebf4435bda20bc_amd64", + "product_id": "ansible-automation-platform-24/platform-resource-rhel8-operator@sha256:13425b0194354a15d71f6bccd7b2e526ef4b2cd8c56b6aff91ebf4435bda20bc_amd64", + "product_identification_helper": { + "purl": "pkg:oci/platform-resource-rhel8-operator@sha256:13425b0194354a15d71f6bccd7b2e526ef4b2cd8c56b6aff91ebf4435bda20bc?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/platform-resource-rhel8-operator&tag=2.4-68" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/platform-resource-runner-rhel8@sha256:cfbf2ddd1dce998575bf8e38cd38bbcc98b006ba918d5de8ea1621b5de4d3f67_amd64", + "product": { + "name": "ansible-automation-platform-24/platform-resource-runner-rhel8@sha256:cfbf2ddd1dce998575bf8e38cd38bbcc98b006ba918d5de8ea1621b5de4d3f67_amd64", + "product_id": "ansible-automation-platform-24/platform-resource-runner-rhel8@sha256:cfbf2ddd1dce998575bf8e38cd38bbcc98b006ba918d5de8ea1621b5de4d3f67_amd64", + "product_identification_helper": { + "purl": "pkg:oci/platform-resource-runner-rhel8@sha256:cfbf2ddd1dce998575bf8e38cd38bbcc98b006ba918d5de8ea1621b5de4d3f67?arch=amd64&repository_url=registry.redhat.io/ansible-automation-platform-24/platform-resource-runner-rhel8&tag=2.4-88" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "ansible-automation-platform-24/aap-must-gather-rhel8@sha256:d1730361a768cc0dc847958b872eac8befb5bcbe87d4fc18098b9ff4ed072cf3_ppc64le", + "product": { + "name": "ansible-automation-platform-24/aap-must-gather-rhel8@sha256:d1730361a768cc0dc847958b872eac8befb5bcbe87d4fc18098b9ff4ed072cf3_ppc64le", + "product_id": "ansible-automation-platform-24/aap-must-gather-rhel8@sha256:d1730361a768cc0dc847958b872eac8befb5bcbe87d4fc18098b9ff4ed072cf3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/aap-must-gather-rhel8@sha256:d1730361a768cc0dc847958b872eac8befb5bcbe87d4fc18098b9ff4ed072cf3?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/aap-must-gather-rhel8&tag=0.0.1-356" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform/platform-operator-bundle@sha256:ecc912e9ab3146df86e7be7afbc077db49e74f913815c73521ae67893f452853_ppc64le", + "product": { + "name": "ansible-automation-platform/platform-operator-bundle@sha256:ecc912e9ab3146df86e7be7afbc077db49e74f913815c73521ae67893f452853_ppc64le", + "product_id": "ansible-automation-platform/platform-operator-bundle@sha256:ecc912e9ab3146df86e7be7afbc077db49e74f913815c73521ae67893f452853_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/platform-operator-bundle@sha256:ecc912e9ab3146df86e7be7afbc077db49e74f913815c73521ae67893f452853?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform/platform-operator-bundle&tag=2.4-672" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ansible-builder-rhel8@sha256:9aa60f9acfd33709262f38091589521ef49674607e69a3baa6f3d9c9508a10fe_ppc64le", + "product": { + "name": "ansible-automation-platform-24/ansible-builder-rhel8@sha256:9aa60f9acfd33709262f38091589521ef49674607e69a3baa6f3d9c9508a10fe_ppc64le", + "product_id": "ansible-automation-platform-24/ansible-builder-rhel8@sha256:9aa60f9acfd33709262f38091589521ef49674607e69a3baa6f3d9c9508a10fe_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ansible-builder-rhel8@sha256:9aa60f9acfd33709262f38091589521ef49674607e69a3baa6f3d9c9508a10fe?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/ansible-builder-rhel8&tag=3.0.0-112" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ansible-builder-rhel9@sha256:eb2f2e5796823643b8b52b98976a04089cdc82ce32f3e4a348fc25dd12eff275_ppc64le", + "product": { + "name": "ansible-automation-platform-24/ansible-builder-rhel9@sha256:eb2f2e5796823643b8b52b98976a04089cdc82ce32f3e4a348fc25dd12eff275_ppc64le", + "product_id": "ansible-automation-platform-24/ansible-builder-rhel9@sha256:eb2f2e5796823643b8b52b98976a04089cdc82ce32f3e4a348fc25dd12eff275_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ansible-builder-rhel9@sha256:eb2f2e5796823643b8b52b98976a04089cdc82ce32f3e4a348fc25dd12eff275?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/ansible-builder-rhel9&tag=3.0.0-111" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ansible-python-base-rhel8@sha256:dd8c5dc68cf8d71a563743040922540101be6c1b29c2f565e1352ece5b68377b_ppc64le", + "product": { + "name": "ansible-automation-platform-24/ansible-python-base-rhel8@sha256:dd8c5dc68cf8d71a563743040922540101be6c1b29c2f565e1352ece5b68377b_ppc64le", + "product_id": "ansible-automation-platform-24/ansible-python-base-rhel8@sha256:dd8c5dc68cf8d71a563743040922540101be6c1b29c2f565e1352ece5b68377b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ansible-python-base-rhel8@sha256:dd8c5dc68cf8d71a563743040922540101be6c1b29c2f565e1352ece5b68377b?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/ansible-python-base-rhel8&tag=1.0.0-386" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ansible-python-base-rhel9@sha256:91f0cc9dd9261b7bff0484d3db8e499912fa1781aa71ad24c77d0809cccb03f4_ppc64le", + "product": { + "name": "ansible-automation-platform-24/ansible-python-base-rhel9@sha256:91f0cc9dd9261b7bff0484d3db8e499912fa1781aa71ad24c77d0809cccb03f4_ppc64le", + "product_id": "ansible-automation-platform-24/ansible-python-base-rhel9@sha256:91f0cc9dd9261b7bff0484d3db8e499912fa1781aa71ad24c77d0809cccb03f4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ansible-python-base-rhel9@sha256:91f0cc9dd9261b7bff0484d3db8e499912fa1781aa71ad24c77d0809cccb03f4?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/ansible-python-base-rhel9&tag=1.0.0-387" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ansible-python-toolkit-rhel8@sha256:d2d4b79f72dfe3f646f27b2c35e5108ed3a3c867fd0b9c04d0193e6ec717ad75_ppc64le", + "product": { + "name": "ansible-automation-platform-24/ansible-python-toolkit-rhel8@sha256:d2d4b79f72dfe3f646f27b2c35e5108ed3a3c867fd0b9c04d0193e6ec717ad75_ppc64le", + "product_id": "ansible-automation-platform-24/ansible-python-toolkit-rhel8@sha256:d2d4b79f72dfe3f646f27b2c35e5108ed3a3c867fd0b9c04d0193e6ec717ad75_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ansible-python-toolkit-rhel8@sha256:d2d4b79f72dfe3f646f27b2c35e5108ed3a3c867fd0b9c04d0193e6ec717ad75?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/ansible-python-toolkit-rhel8&tag=1.0.0-369" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ansible-python-toolkit-rhel9@sha256:11934bcc8a713da353d254164b6914b5769326534a2298f0ccb8642813da5f9a_ppc64le", + "product": { + "name": "ansible-automation-platform-24/ansible-python-toolkit-rhel9@sha256:11934bcc8a713da353d254164b6914b5769326534a2298f0ccb8642813da5f9a_ppc64le", + "product_id": "ansible-automation-platform-24/ansible-python-toolkit-rhel9@sha256:11934bcc8a713da353d254164b6914b5769326534a2298f0ccb8642813da5f9a_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ansible-python-toolkit-rhel9@sha256:11934bcc8a713da353d254164b6914b5769326534a2298f0ccb8642813da5f9a?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/ansible-python-toolkit-rhel9&tag=1.0.0-368" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/controller-rhel8@sha256:6855d1b68735adde33f4ad83496e7ada4548e3fb1ad07cb7925dfb726d800da0_ppc64le", + "product": { + "name": "ansible-automation-platform-24/controller-rhel8@sha256:6855d1b68735adde33f4ad83496e7ada4548e3fb1ad07cb7925dfb726d800da0_ppc64le", + "product_id": "ansible-automation-platform-24/controller-rhel8@sha256:6855d1b68735adde33f4ad83496e7ada4548e3fb1ad07cb7925dfb726d800da0_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/controller-rhel8@sha256:6855d1b68735adde33f4ad83496e7ada4548e3fb1ad07cb7925dfb726d800da0?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/controller-rhel8&tag=4.4.6-4" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/controller-rhel8-operator@sha256:2e252f02c2695856d19d90299e2f1cc2bf93d7304e48da306628b12f4d56b037_ppc64le", + "product": { + "name": "ansible-automation-platform-24/controller-rhel8-operator@sha256:2e252f02c2695856d19d90299e2f1cc2bf93d7304e48da306628b12f4d56b037_ppc64le", + "product_id": "ansible-automation-platform-24/controller-rhel8-operator@sha256:2e252f02c2695856d19d90299e2f1cc2bf93d7304e48da306628b12f4d56b037_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/controller-rhel8-operator@sha256:2e252f02c2695856d19d90299e2f1cc2bf93d7304e48da306628b12f4d56b037?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/controller-rhel8-operator&tag=2.4-79" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/eda-controller-rhel8@sha256:3059b9a6c38deb5aac3fb60875214fe2dafe50cda028638816ec67741169ec73_ppc64le", + "product": { + "name": "ansible-automation-platform-24/eda-controller-rhel8@sha256:3059b9a6c38deb5aac3fb60875214fe2dafe50cda028638816ec67741169ec73_ppc64le", + "product_id": "ansible-automation-platform-24/eda-controller-rhel8@sha256:3059b9a6c38deb5aac3fb60875214fe2dafe50cda028638816ec67741169ec73_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/eda-controller-rhel8@sha256:3059b9a6c38deb5aac3fb60875214fe2dafe50cda028638816ec67741169ec73?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/eda-controller-rhel8&tag=1.0.1-16" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/eda-controller-rhel8-operator@sha256:4220b98f9d8e805a77a4a4ef95855b8f2c61467a02f686c7b547496831493746_ppc64le", + "product": { + "name": "ansible-automation-platform-24/eda-controller-rhel8-operator@sha256:4220b98f9d8e805a77a4a4ef95855b8f2c61467a02f686c7b547496831493746_ppc64le", + "product_id": "ansible-automation-platform-24/eda-controller-rhel8-operator@sha256:4220b98f9d8e805a77a4a4ef95855b8f2c61467a02f686c7b547496831493746_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/eda-controller-rhel8-operator@sha256:4220b98f9d8e805a77a4a4ef95855b8f2c61467a02f686c7b547496831493746?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/eda-controller-rhel8-operator&tag=2.4-86" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/eda-controller-ui-rhel8@sha256:88f5e52c33ca6ff00cb1fd37753a2b1f9e4b6b2a07977e68b71262a8d7a4c58b_ppc64le", + "product": { + "name": "ansible-automation-platform-24/eda-controller-ui-rhel8@sha256:88f5e52c33ca6ff00cb1fd37753a2b1f9e4b6b2a07977e68b71262a8d7a4c58b_ppc64le", + "product_id": "ansible-automation-platform-24/eda-controller-ui-rhel8@sha256:88f5e52c33ca6ff00cb1fd37753a2b1f9e4b6b2a07977e68b71262a8d7a4c58b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/eda-controller-ui-rhel8@sha256:88f5e52c33ca6ff00cb1fd37753a2b1f9e4b6b2a07977e68b71262a8d7a4c58b?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/eda-controller-ui-rhel8&tag=1.0.1-16" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/hub-rhel8@sha256:df80c45631e780f58aaf85edddaf77ed82c0b41f0ad766db048615290eeb96a3_ppc64le", + "product": { + "name": "ansible-automation-platform-24/hub-rhel8@sha256:df80c45631e780f58aaf85edddaf77ed82c0b41f0ad766db048615290eeb96a3_ppc64le", + "product_id": "ansible-automation-platform-24/hub-rhel8@sha256:df80c45631e780f58aaf85edddaf77ed82c0b41f0ad766db048615290eeb96a3_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/hub-rhel8@sha256:df80c45631e780f58aaf85edddaf77ed82c0b41f0ad766db048615290eeb96a3?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/hub-rhel8&tag=4.7.3-15" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/hub-rhel8-operator@sha256:b3064c6ba7b2cf491ced94cd9b6545306cb7d59e2054a0d7042daaa3c062246e_ppc64le", + "product": { + "name": "ansible-automation-platform-24/hub-rhel8-operator@sha256:b3064c6ba7b2cf491ced94cd9b6545306cb7d59e2054a0d7042daaa3c062246e_ppc64le", + "product_id": "ansible-automation-platform-24/hub-rhel8-operator@sha256:b3064c6ba7b2cf491ced94cd9b6545306cb7d59e2054a0d7042daaa3c062246e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/hub-rhel8-operator@sha256:b3064c6ba7b2cf491ced94cd9b6545306cb7d59e2054a0d7042daaa3c062246e?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/hub-rhel8-operator&tag=2.4-70" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/hub-web-rhel8@sha256:01b5493444bc24c954ce86554d0ba8ca99b9db8c516901d0539e1b001ba78590_ppc64le", + "product": { + "name": "ansible-automation-platform-24/hub-web-rhel8@sha256:01b5493444bc24c954ce86554d0ba8ca99b9db8c516901d0539e1b001ba78590_ppc64le", + "product_id": "ansible-automation-platform-24/hub-web-rhel8@sha256:01b5493444bc24c954ce86554d0ba8ca99b9db8c516901d0539e1b001ba78590_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/hub-web-rhel8@sha256:01b5493444bc24c954ce86554d0ba8ca99b9db8c516901d0539e1b001ba78590?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/hub-web-rhel8&tag=4.7.3-15" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/de-minimal-rhel8@sha256:3407db77ac87aecdc3bd3d32294672192caadd5779858d9c1ca559eef0dcf431_ppc64le", + "product": { + "name": "ansible-automation-platform-24/de-minimal-rhel8@sha256:3407db77ac87aecdc3bd3d32294672192caadd5779858d9c1ca559eef0dcf431_ppc64le", + "product_id": "ansible-automation-platform-24/de-minimal-rhel8@sha256:3407db77ac87aecdc3bd3d32294672192caadd5779858d9c1ca559eef0dcf431_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/de-minimal-rhel8@sha256:3407db77ac87aecdc3bd3d32294672192caadd5779858d9c1ca559eef0dcf431?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/de-minimal-rhel8&tag=1.0.0-129" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/de-minimal-rhel9@sha256:9b13ab56c30c5c77a21e00d2dfbad44f63c6ff7ac5acb6b8ba416f7fb2a0fc51_ppc64le", + "product": { + "name": "ansible-automation-platform-24/de-minimal-rhel9@sha256:9b13ab56c30c5c77a21e00d2dfbad44f63c6ff7ac5acb6b8ba416f7fb2a0fc51_ppc64le", + "product_id": "ansible-automation-platform-24/de-minimal-rhel9@sha256:9b13ab56c30c5c77a21e00d2dfbad44f63c6ff7ac5acb6b8ba416f7fb2a0fc51_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/de-minimal-rhel9@sha256:9b13ab56c30c5c77a21e00d2dfbad44f63c6ff7ac5acb6b8ba416f7fb2a0fc51?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/de-minimal-rhel9&tag=1.0.0-128" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/de-supported-rhel8@sha256:037b08f1cdf2bd0ba488ec02d6c4136171cadad65017f4331fb8e6d8b9ec8ffb_ppc64le", + "product": { + "name": "ansible-automation-platform-24/de-supported-rhel8@sha256:037b08f1cdf2bd0ba488ec02d6c4136171cadad65017f4331fb8e6d8b9ec8ffb_ppc64le", + "product_id": "ansible-automation-platform-24/de-supported-rhel8@sha256:037b08f1cdf2bd0ba488ec02d6c4136171cadad65017f4331fb8e6d8b9ec8ffb_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/de-supported-rhel8@sha256:037b08f1cdf2bd0ba488ec02d6c4136171cadad65017f4331fb8e6d8b9ec8ffb?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/de-supported-rhel8&tag=1.0.0-135" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/de-supported-rhel9@sha256:da3031d8ff12b8df290c6da7c5451d0a797c24c0b2b0ce5cce943633d2352ee7_ppc64le", + "product": { + "name": "ansible-automation-platform-24/de-supported-rhel9@sha256:da3031d8ff12b8df290c6da7c5451d0a797c24c0b2b0ce5cce943633d2352ee7_ppc64le", + "product_id": "ansible-automation-platform-24/de-supported-rhel9@sha256:da3031d8ff12b8df290c6da7c5451d0a797c24c0b2b0ce5cce943633d2352ee7_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/de-supported-rhel9@sha256:da3031d8ff12b8df290c6da7c5451d0a797c24c0b2b0ce5cce943633d2352ee7?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/de-supported-rhel9&tag=1.0.0-134" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ee-minimal-rhel8@sha256:63ea2ecffbf408183f3f37e4c1df4e3a77b9f4c0806d2ef3141d102470661e38_ppc64le", + "product": { + "name": "ansible-automation-platform-24/ee-minimal-rhel8@sha256:63ea2ecffbf408183f3f37e4c1df4e3a77b9f4c0806d2ef3141d102470661e38_ppc64le", + "product_id": "ansible-automation-platform-24/ee-minimal-rhel8@sha256:63ea2ecffbf408183f3f37e4c1df4e3a77b9f4c0806d2ef3141d102470661e38_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ee-minimal-rhel8@sha256:63ea2ecffbf408183f3f37e4c1df4e3a77b9f4c0806d2ef3141d102470661e38?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/ee-minimal-rhel8&tag=1.0.0-450" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ee-minimal-rhel9@sha256:c35b05b413bc2090089219d476f0a1e2c56250fc09e190583e167bfcdce5bf35_ppc64le", + "product": { + "name": "ansible-automation-platform-24/ee-minimal-rhel9@sha256:c35b05b413bc2090089219d476f0a1e2c56250fc09e190583e167bfcdce5bf35_ppc64le", + "product_id": "ansible-automation-platform-24/ee-minimal-rhel9@sha256:c35b05b413bc2090089219d476f0a1e2c56250fc09e190583e167bfcdce5bf35_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ee-minimal-rhel9@sha256:c35b05b413bc2090089219d476f0a1e2c56250fc09e190583e167bfcdce5bf35?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/ee-minimal-rhel9&tag=1.0.0-451" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ee-supported-rhel8@sha256:97e133b817c1aac347642b414ca6cb108fec25434b945c398bae6763f1596c5e_ppc64le", + "product": { + "name": "ansible-automation-platform-24/ee-supported-rhel8@sha256:97e133b817c1aac347642b414ca6cb108fec25434b945c398bae6763f1596c5e_ppc64le", + "product_id": "ansible-automation-platform-24/ee-supported-rhel8@sha256:97e133b817c1aac347642b414ca6cb108fec25434b945c398bae6763f1596c5e_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ee-supported-rhel8@sha256:97e133b817c1aac347642b414ca6cb108fec25434b945c398bae6763f1596c5e?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/ee-supported-rhel8&tag=1.0.0-436" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ee-supported-rhel9@sha256:162dd2718a9d9fdf4e3558129a0a77094a7fd9731ab826c664b69ed955853ddd_ppc64le", + "product": { + "name": "ansible-automation-platform-24/ee-supported-rhel9@sha256:162dd2718a9d9fdf4e3558129a0a77094a7fd9731ab826c664b69ed955853ddd_ppc64le", + "product_id": "ansible-automation-platform-24/ee-supported-rhel9@sha256:162dd2718a9d9fdf4e3558129a0a77094a7fd9731ab826c664b69ed955853ddd_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/ee-supported-rhel9@sha256:162dd2718a9d9fdf4e3558129a0a77094a7fd9731ab826c664b69ed955853ddd?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/ee-supported-rhel9&tag=1.0.0-435" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/platform-resource-rhel8-operator@sha256:9d429c6e5d72bf883362b1ae11f8b4ed3a9d468e77e2e29c8ff234df9e255db4_ppc64le", + "product": { + "name": "ansible-automation-platform-24/platform-resource-rhel8-operator@sha256:9d429c6e5d72bf883362b1ae11f8b4ed3a9d468e77e2e29c8ff234df9e255db4_ppc64le", + "product_id": "ansible-automation-platform-24/platform-resource-rhel8-operator@sha256:9d429c6e5d72bf883362b1ae11f8b4ed3a9d468e77e2e29c8ff234df9e255db4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/platform-resource-rhel8-operator@sha256:9d429c6e5d72bf883362b1ae11f8b4ed3a9d468e77e2e29c8ff234df9e255db4?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/platform-resource-rhel8-operator&tag=2.4-68" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/platform-resource-runner-rhel8@sha256:38bc442a6181a739b4c232d25abd7018dbce05083f3bf09ab7a071a3d2a4c7b4_ppc64le", + "product": { + "name": "ansible-automation-platform-24/platform-resource-runner-rhel8@sha256:38bc442a6181a739b4c232d25abd7018dbce05083f3bf09ab7a071a3d2a4c7b4_ppc64le", + "product_id": "ansible-automation-platform-24/platform-resource-runner-rhel8@sha256:38bc442a6181a739b4c232d25abd7018dbce05083f3bf09ab7a071a3d2a4c7b4_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/platform-resource-runner-rhel8@sha256:38bc442a6181a739b4c232d25abd7018dbce05083f3bf09ab7a071a3d2a4c7b4?arch=ppc64le&repository_url=registry.redhat.io/ansible-automation-platform-24/platform-resource-runner-rhel8&tag=2.4-88" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "ansible-automation-platform-24/aap-must-gather-rhel8@sha256:ba77e7f17865da4d59f91b69ab58cbeafaa86debe50d2d6fb89e9812f4aed1c7_s390x", + "product": { + "name": "ansible-automation-platform-24/aap-must-gather-rhel8@sha256:ba77e7f17865da4d59f91b69ab58cbeafaa86debe50d2d6fb89e9812f4aed1c7_s390x", + "product_id": "ansible-automation-platform-24/aap-must-gather-rhel8@sha256:ba77e7f17865da4d59f91b69ab58cbeafaa86debe50d2d6fb89e9812f4aed1c7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/aap-must-gather-rhel8@sha256:ba77e7f17865da4d59f91b69ab58cbeafaa86debe50d2d6fb89e9812f4aed1c7?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/aap-must-gather-rhel8&tag=0.0.1-356" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform/platform-operator-bundle@sha256:8b8051faac5197c85088cdb2032576d7789ef251ffd8ea8fc2e525a199202ab0_s390x", + "product": { + "name": "ansible-automation-platform/platform-operator-bundle@sha256:8b8051faac5197c85088cdb2032576d7789ef251ffd8ea8fc2e525a199202ab0_s390x", + "product_id": "ansible-automation-platform/platform-operator-bundle@sha256:8b8051faac5197c85088cdb2032576d7789ef251ffd8ea8fc2e525a199202ab0_s390x", + "product_identification_helper": { + "purl": "pkg:oci/platform-operator-bundle@sha256:8b8051faac5197c85088cdb2032576d7789ef251ffd8ea8fc2e525a199202ab0?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform/platform-operator-bundle&tag=2.4-672" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ansible-builder-rhel8@sha256:73220bd2c0da0524f6eb6c7a88378ee9970a804a998f039fa14683cf5d7adf2f_s390x", + "product": { + "name": "ansible-automation-platform-24/ansible-builder-rhel8@sha256:73220bd2c0da0524f6eb6c7a88378ee9970a804a998f039fa14683cf5d7adf2f_s390x", + "product_id": "ansible-automation-platform-24/ansible-builder-rhel8@sha256:73220bd2c0da0524f6eb6c7a88378ee9970a804a998f039fa14683cf5d7adf2f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ansible-builder-rhel8@sha256:73220bd2c0da0524f6eb6c7a88378ee9970a804a998f039fa14683cf5d7adf2f?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/ansible-builder-rhel8&tag=3.0.0-112" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ansible-builder-rhel9@sha256:a4a88494691f2fc7689d16a4da97a857e8b795e41ecf5fe09b09ebfc729511ce_s390x", + "product": { + "name": "ansible-automation-platform-24/ansible-builder-rhel9@sha256:a4a88494691f2fc7689d16a4da97a857e8b795e41ecf5fe09b09ebfc729511ce_s390x", + "product_id": "ansible-automation-platform-24/ansible-builder-rhel9@sha256:a4a88494691f2fc7689d16a4da97a857e8b795e41ecf5fe09b09ebfc729511ce_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ansible-builder-rhel9@sha256:a4a88494691f2fc7689d16a4da97a857e8b795e41ecf5fe09b09ebfc729511ce?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/ansible-builder-rhel9&tag=3.0.0-111" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ansible-python-base-rhel8@sha256:697fa0ba756009f66eb78f1feb4f9597da4b2382644c76f7755d29dd70aecea2_s390x", + "product": { + "name": "ansible-automation-platform-24/ansible-python-base-rhel8@sha256:697fa0ba756009f66eb78f1feb4f9597da4b2382644c76f7755d29dd70aecea2_s390x", + "product_id": "ansible-automation-platform-24/ansible-python-base-rhel8@sha256:697fa0ba756009f66eb78f1feb4f9597da4b2382644c76f7755d29dd70aecea2_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ansible-python-base-rhel8@sha256:697fa0ba756009f66eb78f1feb4f9597da4b2382644c76f7755d29dd70aecea2?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/ansible-python-base-rhel8&tag=1.0.0-386" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ansible-python-base-rhel9@sha256:8c34db5cc4c68c80db22a835c095d60e3988a3e6d1c82fb91cc8558b43a47b33_s390x", + "product": { + "name": "ansible-automation-platform-24/ansible-python-base-rhel9@sha256:8c34db5cc4c68c80db22a835c095d60e3988a3e6d1c82fb91cc8558b43a47b33_s390x", + "product_id": "ansible-automation-platform-24/ansible-python-base-rhel9@sha256:8c34db5cc4c68c80db22a835c095d60e3988a3e6d1c82fb91cc8558b43a47b33_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ansible-python-base-rhel9@sha256:8c34db5cc4c68c80db22a835c095d60e3988a3e6d1c82fb91cc8558b43a47b33?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/ansible-python-base-rhel9&tag=1.0.0-387" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ansible-python-toolkit-rhel8@sha256:9273cfd468a23859d784dc3fbf2ad1abb04892e6a3f2ad55d8d2e7c623d0419f_s390x", + "product": { + "name": "ansible-automation-platform-24/ansible-python-toolkit-rhel8@sha256:9273cfd468a23859d784dc3fbf2ad1abb04892e6a3f2ad55d8d2e7c623d0419f_s390x", + "product_id": "ansible-automation-platform-24/ansible-python-toolkit-rhel8@sha256:9273cfd468a23859d784dc3fbf2ad1abb04892e6a3f2ad55d8d2e7c623d0419f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ansible-python-toolkit-rhel8@sha256:9273cfd468a23859d784dc3fbf2ad1abb04892e6a3f2ad55d8d2e7c623d0419f?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/ansible-python-toolkit-rhel8&tag=1.0.0-369" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ansible-python-toolkit-rhel9@sha256:b46fed769c86134a110f442dc56b0c8bfd0d469eb39649916db099f611ab3347_s390x", + "product": { + "name": "ansible-automation-platform-24/ansible-python-toolkit-rhel9@sha256:b46fed769c86134a110f442dc56b0c8bfd0d469eb39649916db099f611ab3347_s390x", + "product_id": "ansible-automation-platform-24/ansible-python-toolkit-rhel9@sha256:b46fed769c86134a110f442dc56b0c8bfd0d469eb39649916db099f611ab3347_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ansible-python-toolkit-rhel9@sha256:b46fed769c86134a110f442dc56b0c8bfd0d469eb39649916db099f611ab3347?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/ansible-python-toolkit-rhel9&tag=1.0.0-368" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/controller-rhel8@sha256:f346fa5d9a45ba329dc668e6a63672020fb579948b6c417ce76400e07ef928a5_s390x", + "product": { + "name": "ansible-automation-platform-24/controller-rhel8@sha256:f346fa5d9a45ba329dc668e6a63672020fb579948b6c417ce76400e07ef928a5_s390x", + "product_id": "ansible-automation-platform-24/controller-rhel8@sha256:f346fa5d9a45ba329dc668e6a63672020fb579948b6c417ce76400e07ef928a5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/controller-rhel8@sha256:f346fa5d9a45ba329dc668e6a63672020fb579948b6c417ce76400e07ef928a5?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/controller-rhel8&tag=4.4.6-4" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/controller-rhel8-operator@sha256:71dac652dd2a9588f1722c5147c8cc9cdb5c38d3cb3dc5a5e955c4cba6a3e57c_s390x", + "product": { + "name": "ansible-automation-platform-24/controller-rhel8-operator@sha256:71dac652dd2a9588f1722c5147c8cc9cdb5c38d3cb3dc5a5e955c4cba6a3e57c_s390x", + "product_id": "ansible-automation-platform-24/controller-rhel8-operator@sha256:71dac652dd2a9588f1722c5147c8cc9cdb5c38d3cb3dc5a5e955c4cba6a3e57c_s390x", + "product_identification_helper": { + "purl": "pkg:oci/controller-rhel8-operator@sha256:71dac652dd2a9588f1722c5147c8cc9cdb5c38d3cb3dc5a5e955c4cba6a3e57c?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/controller-rhel8-operator&tag=2.4-79" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/eda-controller-rhel8@sha256:7d75552ba2d42b0f85695e9a71ff71dd781bce0452590d89c12a8fc9f1a501ff_s390x", + "product": { + "name": "ansible-automation-platform-24/eda-controller-rhel8@sha256:7d75552ba2d42b0f85695e9a71ff71dd781bce0452590d89c12a8fc9f1a501ff_s390x", + "product_id": "ansible-automation-platform-24/eda-controller-rhel8@sha256:7d75552ba2d42b0f85695e9a71ff71dd781bce0452590d89c12a8fc9f1a501ff_s390x", + "product_identification_helper": { + "purl": "pkg:oci/eda-controller-rhel8@sha256:7d75552ba2d42b0f85695e9a71ff71dd781bce0452590d89c12a8fc9f1a501ff?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/eda-controller-rhel8&tag=1.0.1-16" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/eda-controller-rhel8-operator@sha256:b533066a88203acca58a7355f379018eb270f0c932c35f8170e76bfe658ef84b_s390x", + "product": { + "name": "ansible-automation-platform-24/eda-controller-rhel8-operator@sha256:b533066a88203acca58a7355f379018eb270f0c932c35f8170e76bfe658ef84b_s390x", + "product_id": "ansible-automation-platform-24/eda-controller-rhel8-operator@sha256:b533066a88203acca58a7355f379018eb270f0c932c35f8170e76bfe658ef84b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/eda-controller-rhel8-operator@sha256:b533066a88203acca58a7355f379018eb270f0c932c35f8170e76bfe658ef84b?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/eda-controller-rhel8-operator&tag=2.4-86" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/eda-controller-ui-rhel8@sha256:7eeca90468dde408d820ffb7b530d0cef615fe6f4a7e852b47ff18028cc09ecc_s390x", + "product": { + "name": "ansible-automation-platform-24/eda-controller-ui-rhel8@sha256:7eeca90468dde408d820ffb7b530d0cef615fe6f4a7e852b47ff18028cc09ecc_s390x", + "product_id": "ansible-automation-platform-24/eda-controller-ui-rhel8@sha256:7eeca90468dde408d820ffb7b530d0cef615fe6f4a7e852b47ff18028cc09ecc_s390x", + "product_identification_helper": { + "purl": "pkg:oci/eda-controller-ui-rhel8@sha256:7eeca90468dde408d820ffb7b530d0cef615fe6f4a7e852b47ff18028cc09ecc?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/eda-controller-ui-rhel8&tag=1.0.1-16" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/hub-rhel8@sha256:fe2675bd2c51d62dfa3473653c00ddf55a1b64791f5029fe0b87087461b700a1_s390x", + "product": { + "name": "ansible-automation-platform-24/hub-rhel8@sha256:fe2675bd2c51d62dfa3473653c00ddf55a1b64791f5029fe0b87087461b700a1_s390x", + "product_id": "ansible-automation-platform-24/hub-rhel8@sha256:fe2675bd2c51d62dfa3473653c00ddf55a1b64791f5029fe0b87087461b700a1_s390x", + "product_identification_helper": { + "purl": "pkg:oci/hub-rhel8@sha256:fe2675bd2c51d62dfa3473653c00ddf55a1b64791f5029fe0b87087461b700a1?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/hub-rhel8&tag=4.7.3-15" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/hub-rhel8-operator@sha256:32fa50754404a12b4d4a58d4ef9def3f5e8225cb2cf1e56983df1677f621462e_s390x", + "product": { + "name": "ansible-automation-platform-24/hub-rhel8-operator@sha256:32fa50754404a12b4d4a58d4ef9def3f5e8225cb2cf1e56983df1677f621462e_s390x", + "product_id": "ansible-automation-platform-24/hub-rhel8-operator@sha256:32fa50754404a12b4d4a58d4ef9def3f5e8225cb2cf1e56983df1677f621462e_s390x", + "product_identification_helper": { + "purl": "pkg:oci/hub-rhel8-operator@sha256:32fa50754404a12b4d4a58d4ef9def3f5e8225cb2cf1e56983df1677f621462e?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/hub-rhel8-operator&tag=2.4-70" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/hub-web-rhel8@sha256:ff2db93490c489562bb8c37a247daf01e10c871e628b24cc4006dd2bd14473bb_s390x", + "product": { + "name": "ansible-automation-platform-24/hub-web-rhel8@sha256:ff2db93490c489562bb8c37a247daf01e10c871e628b24cc4006dd2bd14473bb_s390x", + "product_id": "ansible-automation-platform-24/hub-web-rhel8@sha256:ff2db93490c489562bb8c37a247daf01e10c871e628b24cc4006dd2bd14473bb_s390x", + "product_identification_helper": { + "purl": "pkg:oci/hub-web-rhel8@sha256:ff2db93490c489562bb8c37a247daf01e10c871e628b24cc4006dd2bd14473bb?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/hub-web-rhel8&tag=4.7.3-15" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/de-minimal-rhel8@sha256:6bf6294838abf4584f07500c9d61e7358d706f5754e1171e6a4184957e272d18_s390x", + "product": { + "name": "ansible-automation-platform-24/de-minimal-rhel8@sha256:6bf6294838abf4584f07500c9d61e7358d706f5754e1171e6a4184957e272d18_s390x", + "product_id": "ansible-automation-platform-24/de-minimal-rhel8@sha256:6bf6294838abf4584f07500c9d61e7358d706f5754e1171e6a4184957e272d18_s390x", + "product_identification_helper": { + "purl": "pkg:oci/de-minimal-rhel8@sha256:6bf6294838abf4584f07500c9d61e7358d706f5754e1171e6a4184957e272d18?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/de-minimal-rhel8&tag=1.0.0-129" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/de-minimal-rhel9@sha256:7660d7f051c9ac00bf49f609bf1e24b8020d2cb8856b40cbecc13de54d55fed8_s390x", + "product": { + "name": "ansible-automation-platform-24/de-minimal-rhel9@sha256:7660d7f051c9ac00bf49f609bf1e24b8020d2cb8856b40cbecc13de54d55fed8_s390x", + "product_id": "ansible-automation-platform-24/de-minimal-rhel9@sha256:7660d7f051c9ac00bf49f609bf1e24b8020d2cb8856b40cbecc13de54d55fed8_s390x", + "product_identification_helper": { + "purl": "pkg:oci/de-minimal-rhel9@sha256:7660d7f051c9ac00bf49f609bf1e24b8020d2cb8856b40cbecc13de54d55fed8?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/de-minimal-rhel9&tag=1.0.0-128" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/de-supported-rhel8@sha256:dcdf4678c085dcb1014930901def587b01e780ce45a471f17a9c39de221b0757_s390x", + "product": { + "name": "ansible-automation-platform-24/de-supported-rhel8@sha256:dcdf4678c085dcb1014930901def587b01e780ce45a471f17a9c39de221b0757_s390x", + "product_id": "ansible-automation-platform-24/de-supported-rhel8@sha256:dcdf4678c085dcb1014930901def587b01e780ce45a471f17a9c39de221b0757_s390x", + "product_identification_helper": { + "purl": "pkg:oci/de-supported-rhel8@sha256:dcdf4678c085dcb1014930901def587b01e780ce45a471f17a9c39de221b0757?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/de-supported-rhel8&tag=1.0.0-135" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/de-supported-rhel9@sha256:5bd5d0da12cc63b3221f508c203b0cde5b4628439d42c1a0303a31c217506936_s390x", + "product": { + "name": "ansible-automation-platform-24/de-supported-rhel9@sha256:5bd5d0da12cc63b3221f508c203b0cde5b4628439d42c1a0303a31c217506936_s390x", + "product_id": "ansible-automation-platform-24/de-supported-rhel9@sha256:5bd5d0da12cc63b3221f508c203b0cde5b4628439d42c1a0303a31c217506936_s390x", + "product_identification_helper": { + "purl": "pkg:oci/de-supported-rhel9@sha256:5bd5d0da12cc63b3221f508c203b0cde5b4628439d42c1a0303a31c217506936?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/de-supported-rhel9&tag=1.0.0-134" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ee-minimal-rhel8@sha256:382c4b91e8c8b30b51d3168b4a16f7c75c96198f4699c301bd03d686c8e85ae7_s390x", + "product": { + "name": "ansible-automation-platform-24/ee-minimal-rhel8@sha256:382c4b91e8c8b30b51d3168b4a16f7c75c96198f4699c301bd03d686c8e85ae7_s390x", + "product_id": "ansible-automation-platform-24/ee-minimal-rhel8@sha256:382c4b91e8c8b30b51d3168b4a16f7c75c96198f4699c301bd03d686c8e85ae7_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ee-minimal-rhel8@sha256:382c4b91e8c8b30b51d3168b4a16f7c75c96198f4699c301bd03d686c8e85ae7?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/ee-minimal-rhel8&tag=1.0.0-450" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ee-minimal-rhel9@sha256:d21ac96577006183a5cc592fb094cb2cf0f25aa687597d68984965ebcb1cb9a5_s390x", + "product": { + "name": "ansible-automation-platform-24/ee-minimal-rhel9@sha256:d21ac96577006183a5cc592fb094cb2cf0f25aa687597d68984965ebcb1cb9a5_s390x", + "product_id": "ansible-automation-platform-24/ee-minimal-rhel9@sha256:d21ac96577006183a5cc592fb094cb2cf0f25aa687597d68984965ebcb1cb9a5_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ee-minimal-rhel9@sha256:d21ac96577006183a5cc592fb094cb2cf0f25aa687597d68984965ebcb1cb9a5?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/ee-minimal-rhel9&tag=1.0.0-451" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ee-supported-rhel8@sha256:a5641fd059a00dff89f846472bf2c139c15ac2908328b03f86ab67087a1dbcf4_s390x", + "product": { + "name": "ansible-automation-platform-24/ee-supported-rhel8@sha256:a5641fd059a00dff89f846472bf2c139c15ac2908328b03f86ab67087a1dbcf4_s390x", + "product_id": "ansible-automation-platform-24/ee-supported-rhel8@sha256:a5641fd059a00dff89f846472bf2c139c15ac2908328b03f86ab67087a1dbcf4_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ee-supported-rhel8@sha256:a5641fd059a00dff89f846472bf2c139c15ac2908328b03f86ab67087a1dbcf4?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/ee-supported-rhel8&tag=1.0.0-436" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ee-supported-rhel9@sha256:e49a3d2b7456a55b603e78b8ddec27665b6a957f5ac479aad50123f3f9bb1d42_s390x", + "product": { + "name": "ansible-automation-platform-24/ee-supported-rhel9@sha256:e49a3d2b7456a55b603e78b8ddec27665b6a957f5ac479aad50123f3f9bb1d42_s390x", + "product_id": "ansible-automation-platform-24/ee-supported-rhel9@sha256:e49a3d2b7456a55b603e78b8ddec27665b6a957f5ac479aad50123f3f9bb1d42_s390x", + "product_identification_helper": { + "purl": "pkg:oci/ee-supported-rhel9@sha256:e49a3d2b7456a55b603e78b8ddec27665b6a957f5ac479aad50123f3f9bb1d42?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/ee-supported-rhel9&tag=1.0.0-435" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/platform-resource-rhel8-operator@sha256:893d04a458674590c81c2ef09fb222c36f47bee71ab3615d6bb73432c58d965b_s390x", + "product": { + "name": "ansible-automation-platform-24/platform-resource-rhel8-operator@sha256:893d04a458674590c81c2ef09fb222c36f47bee71ab3615d6bb73432c58d965b_s390x", + "product_id": "ansible-automation-platform-24/platform-resource-rhel8-operator@sha256:893d04a458674590c81c2ef09fb222c36f47bee71ab3615d6bb73432c58d965b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/platform-resource-rhel8-operator@sha256:893d04a458674590c81c2ef09fb222c36f47bee71ab3615d6bb73432c58d965b?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/platform-resource-rhel8-operator&tag=2.4-68" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/platform-resource-runner-rhel8@sha256:de8830287e00c4062524ebc9e9a93896503101e6382f553c89cc0c1e7d15618f_s390x", + "product": { + "name": "ansible-automation-platform-24/platform-resource-runner-rhel8@sha256:de8830287e00c4062524ebc9e9a93896503101e6382f553c89cc0c1e7d15618f_s390x", + "product_id": "ansible-automation-platform-24/platform-resource-runner-rhel8@sha256:de8830287e00c4062524ebc9e9a93896503101e6382f553c89cc0c1e7d15618f_s390x", + "product_identification_helper": { + "purl": "pkg:oci/platform-resource-runner-rhel8@sha256:de8830287e00c4062524ebc9e9a93896503101e6382f553c89cc0c1e7d15618f?arch=s390x&repository_url=registry.redhat.io/ansible-automation-platform-24/platform-resource-runner-rhel8&tag=2.4-88" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "ansible-automation-platform-24/aap-must-gather-rhel8@sha256:53a9a6779f8569b03faec060888f39d2d3f071d3a4af8269f66490abd8bfad7e_arm64", + "product": { + "name": "ansible-automation-platform-24/aap-must-gather-rhel8@sha256:53a9a6779f8569b03faec060888f39d2d3f071d3a4af8269f66490abd8bfad7e_arm64", + "product_id": "ansible-automation-platform-24/aap-must-gather-rhel8@sha256:53a9a6779f8569b03faec060888f39d2d3f071d3a4af8269f66490abd8bfad7e_arm64", + "product_identification_helper": { + "purl": "pkg:oci/aap-must-gather-rhel8@sha256:53a9a6779f8569b03faec060888f39d2d3f071d3a4af8269f66490abd8bfad7e?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/aap-must-gather-rhel8&tag=0.0.1-356" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform/platform-operator-bundle@sha256:d5d128596af42dddb7f3efa725050a35c07eae5e63a4bd8be7789857cf5d36f3_arm64", + "product": { + "name": "ansible-automation-platform/platform-operator-bundle@sha256:d5d128596af42dddb7f3efa725050a35c07eae5e63a4bd8be7789857cf5d36f3_arm64", + "product_id": "ansible-automation-platform/platform-operator-bundle@sha256:d5d128596af42dddb7f3efa725050a35c07eae5e63a4bd8be7789857cf5d36f3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/platform-operator-bundle@sha256:d5d128596af42dddb7f3efa725050a35c07eae5e63a4bd8be7789857cf5d36f3?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform/platform-operator-bundle&tag=2.4-672" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ansible-builder-rhel8@sha256:0089971676a347149081311def7417185edfeac0fa0fb09bac556d1e4ac17971_arm64", + "product": { + "name": "ansible-automation-platform-24/ansible-builder-rhel8@sha256:0089971676a347149081311def7417185edfeac0fa0fb09bac556d1e4ac17971_arm64", + "product_id": "ansible-automation-platform-24/ansible-builder-rhel8@sha256:0089971676a347149081311def7417185edfeac0fa0fb09bac556d1e4ac17971_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ansible-builder-rhel8@sha256:0089971676a347149081311def7417185edfeac0fa0fb09bac556d1e4ac17971?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/ansible-builder-rhel8&tag=3.0.0-112" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ansible-builder-rhel9@sha256:20092308c17687aa6059400af8d1772b8fe85207db9f9a5b6d259908e0b63aab_arm64", + "product": { + "name": "ansible-automation-platform-24/ansible-builder-rhel9@sha256:20092308c17687aa6059400af8d1772b8fe85207db9f9a5b6d259908e0b63aab_arm64", + "product_id": "ansible-automation-platform-24/ansible-builder-rhel9@sha256:20092308c17687aa6059400af8d1772b8fe85207db9f9a5b6d259908e0b63aab_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ansible-builder-rhel9@sha256:20092308c17687aa6059400af8d1772b8fe85207db9f9a5b6d259908e0b63aab?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/ansible-builder-rhel9&tag=3.0.0-111" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ansible-python-base-rhel8@sha256:6599eee6f2b0b8c08ea3dc49598f97aea3b53b456afcc410dd740c39bbfdcd63_arm64", + "product": { + "name": "ansible-automation-platform-24/ansible-python-base-rhel8@sha256:6599eee6f2b0b8c08ea3dc49598f97aea3b53b456afcc410dd740c39bbfdcd63_arm64", + "product_id": "ansible-automation-platform-24/ansible-python-base-rhel8@sha256:6599eee6f2b0b8c08ea3dc49598f97aea3b53b456afcc410dd740c39bbfdcd63_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ansible-python-base-rhel8@sha256:6599eee6f2b0b8c08ea3dc49598f97aea3b53b456afcc410dd740c39bbfdcd63?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/ansible-python-base-rhel8&tag=1.0.0-386" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ansible-python-base-rhel9@sha256:cd96a0ece925ed1443c0797bc3baf992ed7ae087f5977df8728a4aab8940516f_arm64", + "product": { + "name": "ansible-automation-platform-24/ansible-python-base-rhel9@sha256:cd96a0ece925ed1443c0797bc3baf992ed7ae087f5977df8728a4aab8940516f_arm64", + "product_id": "ansible-automation-platform-24/ansible-python-base-rhel9@sha256:cd96a0ece925ed1443c0797bc3baf992ed7ae087f5977df8728a4aab8940516f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ansible-python-base-rhel9@sha256:cd96a0ece925ed1443c0797bc3baf992ed7ae087f5977df8728a4aab8940516f?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/ansible-python-base-rhel9&tag=1.0.0-387" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ansible-python-toolkit-rhel8@sha256:d6ae7f3136a14984e33f46598f6e321ad72f3875e4c3f0a8c773e5046fb99f1a_arm64", + "product": { + "name": "ansible-automation-platform-24/ansible-python-toolkit-rhel8@sha256:d6ae7f3136a14984e33f46598f6e321ad72f3875e4c3f0a8c773e5046fb99f1a_arm64", + "product_id": "ansible-automation-platform-24/ansible-python-toolkit-rhel8@sha256:d6ae7f3136a14984e33f46598f6e321ad72f3875e4c3f0a8c773e5046fb99f1a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ansible-python-toolkit-rhel8@sha256:d6ae7f3136a14984e33f46598f6e321ad72f3875e4c3f0a8c773e5046fb99f1a?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/ansible-python-toolkit-rhel8&tag=1.0.0-369" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ansible-python-toolkit-rhel9@sha256:035f8ce6c6f6ab88366d7d42ba587d75b60236433e01ce0349a40554ff0e1b05_arm64", + "product": { + "name": "ansible-automation-platform-24/ansible-python-toolkit-rhel9@sha256:035f8ce6c6f6ab88366d7d42ba587d75b60236433e01ce0349a40554ff0e1b05_arm64", + "product_id": "ansible-automation-platform-24/ansible-python-toolkit-rhel9@sha256:035f8ce6c6f6ab88366d7d42ba587d75b60236433e01ce0349a40554ff0e1b05_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ansible-python-toolkit-rhel9@sha256:035f8ce6c6f6ab88366d7d42ba587d75b60236433e01ce0349a40554ff0e1b05?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/ansible-python-toolkit-rhel9&tag=1.0.0-368" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/controller-rhel8@sha256:c8fdd92c3c2c497ab1d4ba8c96759e8f2dfe7f023df6c5021dfed672c98d0621_arm64", + "product": { + "name": "ansible-automation-platform-24/controller-rhel8@sha256:c8fdd92c3c2c497ab1d4ba8c96759e8f2dfe7f023df6c5021dfed672c98d0621_arm64", + "product_id": "ansible-automation-platform-24/controller-rhel8@sha256:c8fdd92c3c2c497ab1d4ba8c96759e8f2dfe7f023df6c5021dfed672c98d0621_arm64", + "product_identification_helper": { + "purl": "pkg:oci/controller-rhel8@sha256:c8fdd92c3c2c497ab1d4ba8c96759e8f2dfe7f023df6c5021dfed672c98d0621?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/controller-rhel8&tag=4.4.6-4" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/controller-rhel8-operator@sha256:013993b69238a181ef9be9c6cbd173f4af8280f6dc763e52a493e54e71069a01_arm64", + "product": { + "name": "ansible-automation-platform-24/controller-rhel8-operator@sha256:013993b69238a181ef9be9c6cbd173f4af8280f6dc763e52a493e54e71069a01_arm64", + "product_id": "ansible-automation-platform-24/controller-rhel8-operator@sha256:013993b69238a181ef9be9c6cbd173f4af8280f6dc763e52a493e54e71069a01_arm64", + "product_identification_helper": { + "purl": "pkg:oci/controller-rhel8-operator@sha256:013993b69238a181ef9be9c6cbd173f4af8280f6dc763e52a493e54e71069a01?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/controller-rhel8-operator&tag=2.4-79" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/eda-controller-rhel8@sha256:2bc05e35b21a826737e8bc523924d8137a531003d2ba2466243f4172708f2cbc_arm64", + "product": { + "name": "ansible-automation-platform-24/eda-controller-rhel8@sha256:2bc05e35b21a826737e8bc523924d8137a531003d2ba2466243f4172708f2cbc_arm64", + "product_id": "ansible-automation-platform-24/eda-controller-rhel8@sha256:2bc05e35b21a826737e8bc523924d8137a531003d2ba2466243f4172708f2cbc_arm64", + "product_identification_helper": { + "purl": "pkg:oci/eda-controller-rhel8@sha256:2bc05e35b21a826737e8bc523924d8137a531003d2ba2466243f4172708f2cbc?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/eda-controller-rhel8&tag=1.0.1-16" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/eda-controller-rhel8-operator@sha256:683b9705958bb94e2f3fa8901c19ffd4d2a3967104fec3a969a46fa7e5702507_arm64", + "product": { + "name": "ansible-automation-platform-24/eda-controller-rhel8-operator@sha256:683b9705958bb94e2f3fa8901c19ffd4d2a3967104fec3a969a46fa7e5702507_arm64", + "product_id": "ansible-automation-platform-24/eda-controller-rhel8-operator@sha256:683b9705958bb94e2f3fa8901c19ffd4d2a3967104fec3a969a46fa7e5702507_arm64", + "product_identification_helper": { + "purl": "pkg:oci/eda-controller-rhel8-operator@sha256:683b9705958bb94e2f3fa8901c19ffd4d2a3967104fec3a969a46fa7e5702507?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/eda-controller-rhel8-operator&tag=2.4-86" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/eda-controller-ui-rhel8@sha256:ee508e6aaaf56c6ec9025d7650000a39a7b05319b570e6961eb72d20623793d9_arm64", + "product": { + "name": "ansible-automation-platform-24/eda-controller-ui-rhel8@sha256:ee508e6aaaf56c6ec9025d7650000a39a7b05319b570e6961eb72d20623793d9_arm64", + "product_id": "ansible-automation-platform-24/eda-controller-ui-rhel8@sha256:ee508e6aaaf56c6ec9025d7650000a39a7b05319b570e6961eb72d20623793d9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/eda-controller-ui-rhel8@sha256:ee508e6aaaf56c6ec9025d7650000a39a7b05319b570e6961eb72d20623793d9?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/eda-controller-ui-rhel8&tag=1.0.1-16" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/hub-rhel8@sha256:a27c12f79db64522884b304c30f40635c774f51596689670fd628f409a68663f_arm64", + "product": { + "name": "ansible-automation-platform-24/hub-rhel8@sha256:a27c12f79db64522884b304c30f40635c774f51596689670fd628f409a68663f_arm64", + "product_id": "ansible-automation-platform-24/hub-rhel8@sha256:a27c12f79db64522884b304c30f40635c774f51596689670fd628f409a68663f_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hub-rhel8@sha256:a27c12f79db64522884b304c30f40635c774f51596689670fd628f409a68663f?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/hub-rhel8&tag=4.7.3-15" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/hub-rhel8-operator@sha256:ad9213450b9284c6e4323f9f8a5dfc42734ac95b67e5cd6a3afc3bd2945e993d_arm64", + "product": { + "name": "ansible-automation-platform-24/hub-rhel8-operator@sha256:ad9213450b9284c6e4323f9f8a5dfc42734ac95b67e5cd6a3afc3bd2945e993d_arm64", + "product_id": "ansible-automation-platform-24/hub-rhel8-operator@sha256:ad9213450b9284c6e4323f9f8a5dfc42734ac95b67e5cd6a3afc3bd2945e993d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hub-rhel8-operator@sha256:ad9213450b9284c6e4323f9f8a5dfc42734ac95b67e5cd6a3afc3bd2945e993d?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/hub-rhel8-operator&tag=2.4-70" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/hub-web-rhel8@sha256:0b7d67480c6a15e5a655573f2ac885d34df441978f8f595f8c4d9f5e93c052d1_arm64", + "product": { + "name": "ansible-automation-platform-24/hub-web-rhel8@sha256:0b7d67480c6a15e5a655573f2ac885d34df441978f8f595f8c4d9f5e93c052d1_arm64", + "product_id": "ansible-automation-platform-24/hub-web-rhel8@sha256:0b7d67480c6a15e5a655573f2ac885d34df441978f8f595f8c4d9f5e93c052d1_arm64", + "product_identification_helper": { + "purl": "pkg:oci/hub-web-rhel8@sha256:0b7d67480c6a15e5a655573f2ac885d34df441978f8f595f8c4d9f5e93c052d1?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/hub-web-rhel8&tag=4.7.3-15" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/de-minimal-rhel8@sha256:1e2c70baa0950d9667715e4deda717db264ea07aaa097ed4c3e11025eb4c59a0_arm64", + "product": { + "name": "ansible-automation-platform-24/de-minimal-rhel8@sha256:1e2c70baa0950d9667715e4deda717db264ea07aaa097ed4c3e11025eb4c59a0_arm64", + "product_id": "ansible-automation-platform-24/de-minimal-rhel8@sha256:1e2c70baa0950d9667715e4deda717db264ea07aaa097ed4c3e11025eb4c59a0_arm64", + "product_identification_helper": { + "purl": "pkg:oci/de-minimal-rhel8@sha256:1e2c70baa0950d9667715e4deda717db264ea07aaa097ed4c3e11025eb4c59a0?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/de-minimal-rhel8&tag=1.0.0-129" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/de-minimal-rhel9@sha256:f28e22e5da55ea626890aceb7ae4c391e192055a60a1beba9a98ac70ee1353ce_arm64", + "product": { + "name": "ansible-automation-platform-24/de-minimal-rhel9@sha256:f28e22e5da55ea626890aceb7ae4c391e192055a60a1beba9a98ac70ee1353ce_arm64", + "product_id": "ansible-automation-platform-24/de-minimal-rhel9@sha256:f28e22e5da55ea626890aceb7ae4c391e192055a60a1beba9a98ac70ee1353ce_arm64", + "product_identification_helper": { + "purl": "pkg:oci/de-minimal-rhel9@sha256:f28e22e5da55ea626890aceb7ae4c391e192055a60a1beba9a98ac70ee1353ce?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/de-minimal-rhel9&tag=1.0.0-128" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/de-supported-rhel8@sha256:d4d8984a1e1191d58e402dfd9f7d80a1f3bf714b774cc0837809ccabbbbfdb03_arm64", + "product": { + "name": "ansible-automation-platform-24/de-supported-rhel8@sha256:d4d8984a1e1191d58e402dfd9f7d80a1f3bf714b774cc0837809ccabbbbfdb03_arm64", + "product_id": "ansible-automation-platform-24/de-supported-rhel8@sha256:d4d8984a1e1191d58e402dfd9f7d80a1f3bf714b774cc0837809ccabbbbfdb03_arm64", + "product_identification_helper": { + "purl": "pkg:oci/de-supported-rhel8@sha256:d4d8984a1e1191d58e402dfd9f7d80a1f3bf714b774cc0837809ccabbbbfdb03?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/de-supported-rhel8&tag=1.0.0-135" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/de-supported-rhel9@sha256:de1067b9be05a3acb9bb61458fb89e71acf01cad7a9439a638972bc0615a4d5a_arm64", + "product": { + "name": "ansible-automation-platform-24/de-supported-rhel9@sha256:de1067b9be05a3acb9bb61458fb89e71acf01cad7a9439a638972bc0615a4d5a_arm64", + "product_id": "ansible-automation-platform-24/de-supported-rhel9@sha256:de1067b9be05a3acb9bb61458fb89e71acf01cad7a9439a638972bc0615a4d5a_arm64", + "product_identification_helper": { + "purl": "pkg:oci/de-supported-rhel9@sha256:de1067b9be05a3acb9bb61458fb89e71acf01cad7a9439a638972bc0615a4d5a?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/de-supported-rhel9&tag=1.0.0-134" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform/ee-containerized-installer-rhel8@sha256:797d37d3015ebbf5125f6e1d12d47774a276a42a3c18ccabab2bf1c466b001fd_arm64", + "product": { + "name": "ansible-automation-platform/ee-containerized-installer-rhel8@sha256:797d37d3015ebbf5125f6e1d12d47774a276a42a3c18ccabab2bf1c466b001fd_arm64", + "product_id": "ansible-automation-platform/ee-containerized-installer-rhel8@sha256:797d37d3015ebbf5125f6e1d12d47774a276a42a3c18ccabab2bf1c466b001fd_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ee-containerized-installer-rhel8@sha256:797d37d3015ebbf5125f6e1d12d47774a276a42a3c18ccabab2bf1c466b001fd?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform/ee-containerized-installer-rhel8&tag=1.2.3-13" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ee-dellemc-openmanage-rhel8@sha256:628f7596505a9ab111cfcd1d3a1eb11e537dbf663d9b802e3cc94af8dbfa05d6_arm64", + "product": { + "name": "ansible-automation-platform-24/ee-dellemc-openmanage-rhel8@sha256:628f7596505a9ab111cfcd1d3a1eb11e537dbf663d9b802e3cc94af8dbfa05d6_arm64", + "product_id": "ansible-automation-platform-24/ee-dellemc-openmanage-rhel8@sha256:628f7596505a9ab111cfcd1d3a1eb11e537dbf663d9b802e3cc94af8dbfa05d6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ee-dellemc-openmanage-rhel8@sha256:628f7596505a9ab111cfcd1d3a1eb11e537dbf663d9b802e3cc94af8dbfa05d6?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/ee-dellemc-openmanage-rhel8&tag=8.3.0-7" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ee-minimal-rhel8@sha256:5a2b269ebe2bbb5f27af823cc13c3ce06ade36f43480aa56d41d654d5ef139e3_arm64", + "product": { + "name": "ansible-automation-platform-24/ee-minimal-rhel8@sha256:5a2b269ebe2bbb5f27af823cc13c3ce06ade36f43480aa56d41d654d5ef139e3_arm64", + "product_id": "ansible-automation-platform-24/ee-minimal-rhel8@sha256:5a2b269ebe2bbb5f27af823cc13c3ce06ade36f43480aa56d41d654d5ef139e3_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ee-minimal-rhel8@sha256:5a2b269ebe2bbb5f27af823cc13c3ce06ade36f43480aa56d41d654d5ef139e3?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/ee-minimal-rhel8&tag=1.0.0-450" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ee-minimal-rhel9@sha256:9bf9ff9e04832f353a8904f7f7826417abfe3891a927939a1cdfcfde30d1d10c_arm64", + "product": { + "name": "ansible-automation-platform-24/ee-minimal-rhel9@sha256:9bf9ff9e04832f353a8904f7f7826417abfe3891a927939a1cdfcfde30d1d10c_arm64", + "product_id": "ansible-automation-platform-24/ee-minimal-rhel9@sha256:9bf9ff9e04832f353a8904f7f7826417abfe3891a927939a1cdfcfde30d1d10c_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ee-minimal-rhel9@sha256:9bf9ff9e04832f353a8904f7f7826417abfe3891a927939a1cdfcfde30d1d10c?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/ee-minimal-rhel9&tag=1.0.0-451" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ee-supported-rhel8@sha256:adad7b24fba97c5649f320ebc72a6b6cbf280e552121a2081b0fe804b06ef78d_arm64", + "product": { + "name": "ansible-automation-platform-24/ee-supported-rhel8@sha256:adad7b24fba97c5649f320ebc72a6b6cbf280e552121a2081b0fe804b06ef78d_arm64", + "product_id": "ansible-automation-platform-24/ee-supported-rhel8@sha256:adad7b24fba97c5649f320ebc72a6b6cbf280e552121a2081b0fe804b06ef78d_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ee-supported-rhel8@sha256:adad7b24fba97c5649f320ebc72a6b6cbf280e552121a2081b0fe804b06ef78d?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/ee-supported-rhel8&tag=1.0.0-436" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/ee-supported-rhel9@sha256:32d97ab01d3f3df3212c3e949d2630709ae05e4d0c56aafd6a720827234cf3e9_arm64", + "product": { + "name": "ansible-automation-platform-24/ee-supported-rhel9@sha256:32d97ab01d3f3df3212c3e949d2630709ae05e4d0c56aafd6a720827234cf3e9_arm64", + "product_id": "ansible-automation-platform-24/ee-supported-rhel9@sha256:32d97ab01d3f3df3212c3e949d2630709ae05e4d0c56aafd6a720827234cf3e9_arm64", + "product_identification_helper": { + "purl": "pkg:oci/ee-supported-rhel9@sha256:32d97ab01d3f3df3212c3e949d2630709ae05e4d0c56aafd6a720827234cf3e9?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/ee-supported-rhel9&tag=1.0.0-435" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/platform-resource-rhel8-operator@sha256:964337aac284059c1abde17a9bd2c0d13fd5a149a91af19eb56944728f7f5584_arm64", + "product": { + "name": "ansible-automation-platform-24/platform-resource-rhel8-operator@sha256:964337aac284059c1abde17a9bd2c0d13fd5a149a91af19eb56944728f7f5584_arm64", + "product_id": "ansible-automation-platform-24/platform-resource-rhel8-operator@sha256:964337aac284059c1abde17a9bd2c0d13fd5a149a91af19eb56944728f7f5584_arm64", + "product_identification_helper": { + "purl": "pkg:oci/platform-resource-rhel8-operator@sha256:964337aac284059c1abde17a9bd2c0d13fd5a149a91af19eb56944728f7f5584?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/platform-resource-rhel8-operator&tag=2.4-68" + } + } + }, + { + "category": "product_version", + "name": "ansible-automation-platform-24/platform-resource-runner-rhel8@sha256:8c80648871aee9d1c5450226d18b122a40fe188b1140fcb22800ecda41bb6343_arm64", + "product": { + "name": "ansible-automation-platform-24/platform-resource-runner-rhel8@sha256:8c80648871aee9d1c5450226d18b122a40fe188b1140fcb22800ecda41bb6343_arm64", + "product_id": "ansible-automation-platform-24/platform-resource-runner-rhel8@sha256:8c80648871aee9d1c5450226d18b122a40fe188b1140fcb22800ecda41bb6343_arm64", + "product_identification_helper": { + "purl": "pkg:oci/platform-resource-runner-rhel8@sha256:8c80648871aee9d1c5450226d18b122a40fe188b1140fcb22800ecda41bb6343?arch=arm64&repository_url=registry.redhat.io/ansible-automation-platform-24/platform-resource-runner-rhel8&tag=2.4-88" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "mtr/mtr-operator-bundle@sha256:60acebf53444e65bab7e216838cd9da49928fed27db24d75f5d1a244993f42dd_amd64", + "product": { + "name": "mtr/mtr-operator-bundle@sha256:60acebf53444e65bab7e216838cd9da49928fed27db24d75f5d1a244993f42dd_amd64", + "product_id": "mtr/mtr-operator-bundle@sha256:60acebf53444e65bab7e216838cd9da49928fed27db24d75f5d1a244993f42dd_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtr-operator-bundle@sha256:60acebf53444e65bab7e216838cd9da49928fed27db24d75f5d1a244993f42dd?arch=amd64&repository_url=registry.redhat.io/mtr/mtr-operator-bundle&tag=1.2-9" + } + } + }, + { + "category": "product_version", + "name": "mtr/mtr-rhel8-operator@sha256:e01ce6a876935bf298a0820199aa7b462a99b7c48680da6aa3e7c113446d5d88_amd64", + "product": { + "name": "mtr/mtr-rhel8-operator@sha256:e01ce6a876935bf298a0820199aa7b462a99b7c48680da6aa3e7c113446d5d88_amd64", + "product_id": "mtr/mtr-rhel8-operator@sha256:e01ce6a876935bf298a0820199aa7b462a99b7c48680da6aa3e7c113446d5d88_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtr-rhel8-operator@sha256:e01ce6a876935bf298a0820199aa7b462a99b7c48680da6aa3e7c113446d5d88?arch=amd64&repository_url=registry.redhat.io/mtr/mtr-rhel8-operator&tag=1.2-5" + } + } + }, + { + "category": "product_version", + "name": "mtr/mtr-web-container-rhel8@sha256:d3ef4e55145f7c1d8ba413b5a57292eec0a98b0279a430ec6e09bcd7ae9b6fc6_amd64", + "product": { + "name": "mtr/mtr-web-container-rhel8@sha256:d3ef4e55145f7c1d8ba413b5a57292eec0a98b0279a430ec6e09bcd7ae9b6fc6_amd64", + "product_id": "mtr/mtr-web-container-rhel8@sha256:d3ef4e55145f7c1d8ba413b5a57292eec0a98b0279a430ec6e09bcd7ae9b6fc6_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtr-web-container-rhel8@sha256:d3ef4e55145f7c1d8ba413b5a57292eec0a98b0279a430ec6e09bcd7ae9b6fc6?arch=amd64&repository_url=registry.redhat.io/mtr/mtr-web-container-rhel8&tag=1.2-6" + } + } + }, + { + "category": "product_version", + "name": "mtr/mtr-web-executor-container-rhel8@sha256:9a8218e8ad59ef78011343e70d61b4c0b3e3eaa2ddb9470cce87102698b986a5_amd64", + "product": { + "name": "mtr/mtr-web-executor-container-rhel8@sha256:9a8218e8ad59ef78011343e70d61b4c0b3e3eaa2ddb9470cce87102698b986a5_amd64", + "product_id": "mtr/mtr-web-executor-container-rhel8@sha256:9a8218e8ad59ef78011343e70d61b4c0b3e3eaa2ddb9470cce87102698b986a5_amd64", + "product_identification_helper": { + "purl": "pkg:oci/mtr-web-executor-container-rhel8@sha256:9a8218e8ad59ef78011343e70d61b4c0b3e3eaa2ddb9470cce87102698b986a5?arch=amd64&repository_url=registry.redhat.io/mtr/mtr-web-executor-container-rhel8&tag=1.2-4" + } + } + } + ], + "category": "architecture", + "name": "amd64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "mtr/mtr-operator-bundle@sha256:879263f1412ce4ebd224728713b5f353a3aff3130b052718d6cb6d763513ab85_s390x", + "product": { + "name": "mtr/mtr-operator-bundle@sha256:879263f1412ce4ebd224728713b5f353a3aff3130b052718d6cb6d763513ab85_s390x", + "product_id": "mtr/mtr-operator-bundle@sha256:879263f1412ce4ebd224728713b5f353a3aff3130b052718d6cb6d763513ab85_s390x", + "product_identification_helper": { + "purl": "pkg:oci/mtr-operator-bundle@sha256:879263f1412ce4ebd224728713b5f353a3aff3130b052718d6cb6d763513ab85?arch=s390x&repository_url=registry.redhat.io/mtr/mtr-operator-bundle&tag=1.2-9" + } + } + }, + { + "category": "product_version", + "name": "mtr/mtr-rhel8-operator@sha256:93c10589ddcd6d5ac5a910474806ce55d7ed798c10ce8e7c430d22291f11b72b_s390x", + "product": { + "name": "mtr/mtr-rhel8-operator@sha256:93c10589ddcd6d5ac5a910474806ce55d7ed798c10ce8e7c430d22291f11b72b_s390x", + "product_id": "mtr/mtr-rhel8-operator@sha256:93c10589ddcd6d5ac5a910474806ce55d7ed798c10ce8e7c430d22291f11b72b_s390x", + "product_identification_helper": { + "purl": "pkg:oci/mtr-rhel8-operator@sha256:93c10589ddcd6d5ac5a910474806ce55d7ed798c10ce8e7c430d22291f11b72b?arch=s390x&repository_url=registry.redhat.io/mtr/mtr-rhel8-operator&tag=1.2-5" + } + } + }, + { + "category": "product_version", + "name": "mtr/mtr-web-container-rhel8@sha256:c7348032abd6194e7fb47e63e1f00db706c20ebee4edba53746da6d3c40f166d_s390x", + "product": { + "name": "mtr/mtr-web-container-rhel8@sha256:c7348032abd6194e7fb47e63e1f00db706c20ebee4edba53746da6d3c40f166d_s390x", + "product_id": "mtr/mtr-web-container-rhel8@sha256:c7348032abd6194e7fb47e63e1f00db706c20ebee4edba53746da6d3c40f166d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/mtr-web-container-rhel8@sha256:c7348032abd6194e7fb47e63e1f00db706c20ebee4edba53746da6d3c40f166d?arch=s390x&repository_url=registry.redhat.io/mtr/mtr-web-container-rhel8&tag=1.2-6" + } + } + }, + { + "category": "product_version", + "name": "mtr/mtr-web-executor-container-rhel8@sha256:f138323dcffc5d4386decaf6fdcd4c059348a5c8ce3d6392c94dc7a40440ee3d_s390x", + "product": { + "name": "mtr/mtr-web-executor-container-rhel8@sha256:f138323dcffc5d4386decaf6fdcd4c059348a5c8ce3d6392c94dc7a40440ee3d_s390x", + "product_id": "mtr/mtr-web-executor-container-rhel8@sha256:f138323dcffc5d4386decaf6fdcd4c059348a5c8ce3d6392c94dc7a40440ee3d_s390x", + "product_identification_helper": { + "purl": "pkg:oci/mtr-web-executor-container-rhel8@sha256:f138323dcffc5d4386decaf6fdcd4c059348a5c8ce3d6392c94dc7a40440ee3d?arch=s390x&repository_url=registry.redhat.io/mtr/mtr-web-executor-container-rhel8&tag=1.2-4" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "mtr/mtr-operator-bundle@sha256:a168c9110fd01e0615e62e16408688599d65dece68d5965547b50be3072bde7b_ppc64le", + "product": { + "name": "mtr/mtr-operator-bundle@sha256:a168c9110fd01e0615e62e16408688599d65dece68d5965547b50be3072bde7b_ppc64le", + "product_id": "mtr/mtr-operator-bundle@sha256:a168c9110fd01e0615e62e16408688599d65dece68d5965547b50be3072bde7b_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/mtr-operator-bundle@sha256:a168c9110fd01e0615e62e16408688599d65dece68d5965547b50be3072bde7b?arch=ppc64le&repository_url=registry.redhat.io/mtr/mtr-operator-bundle&tag=1.2-9" + } + } + }, + { + "category": "product_version", + "name": "mtr/mtr-rhel8-operator@sha256:71ce5cfaf6f39e242599df08643c9512c5af0a316a3b19b45c6042154c68d236_ppc64le", + "product": { + "name": "mtr/mtr-rhel8-operator@sha256:71ce5cfaf6f39e242599df08643c9512c5af0a316a3b19b45c6042154c68d236_ppc64le", + "product_id": "mtr/mtr-rhel8-operator@sha256:71ce5cfaf6f39e242599df08643c9512c5af0a316a3b19b45c6042154c68d236_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/mtr-rhel8-operator@sha256:71ce5cfaf6f39e242599df08643c9512c5af0a316a3b19b45c6042154c68d236?arch=ppc64le&repository_url=registry.redhat.io/mtr/mtr-rhel8-operator&tag=1.2-5" + } + } + }, + { + "category": "product_version", + "name": "mtr/mtr-web-container-rhel8@sha256:801e00ff1c5aa1f2dd140b448e0d39210b2ed608306777d98959afe0b77ac0cf_ppc64le", + "product": { + "name": "mtr/mtr-web-container-rhel8@sha256:801e00ff1c5aa1f2dd140b448e0d39210b2ed608306777d98959afe0b77ac0cf_ppc64le", + "product_id": "mtr/mtr-web-container-rhel8@sha256:801e00ff1c5aa1f2dd140b448e0d39210b2ed608306777d98959afe0b77ac0cf_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/mtr-web-container-rhel8@sha256:801e00ff1c5aa1f2dd140b448e0d39210b2ed608306777d98959afe0b77ac0cf?arch=ppc64le&repository_url=registry.redhat.io/mtr/mtr-web-container-rhel8&tag=1.2-6" + } + } + }, + { + "category": "product_version", + "name": "mtr/mtr-web-executor-container-rhel8@sha256:f5f48da94ab95be7c2b7642610af860d5bbcda300445f691d0139c2b1e23de84_ppc64le", + "product": { + "name": "mtr/mtr-web-executor-container-rhel8@sha256:f5f48da94ab95be7c2b7642610af860d5bbcda300445f691d0139c2b1e23de84_ppc64le", + "product_id": "mtr/mtr-web-executor-container-rhel8@sha256:f5f48da94ab95be7c2b7642610af860d5bbcda300445f691d0139c2b1e23de84_ppc64le", + "product_identification_helper": { + "purl": "pkg:oci/mtr-web-executor-container-rhel8@sha256:f5f48da94ab95be7c2b7642610af860d5bbcda300445f691d0139c2b1e23de84?arch=ppc64le&repository_url=registry.redhat.io/mtr/mtr-web-executor-container-rhel8&tag=1.2-4" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "mtr/mtr-operator-bundle@sha256:ed8fe2d3313cea2435357cce660cc933260d3a254e66575aa8d9e6edd44531eb_arm64", + "product": { + "name": "mtr/mtr-operator-bundle@sha256:ed8fe2d3313cea2435357cce660cc933260d3a254e66575aa8d9e6edd44531eb_arm64", + "product_id": "mtr/mtr-operator-bundle@sha256:ed8fe2d3313cea2435357cce660cc933260d3a254e66575aa8d9e6edd44531eb_arm64", + "product_identification_helper": { + "purl": "pkg:oci/mtr-operator-bundle@sha256:ed8fe2d3313cea2435357cce660cc933260d3a254e66575aa8d9e6edd44531eb?arch=arm64&repository_url=registry.redhat.io/mtr/mtr-operator-bundle&tag=1.2-9" + } + } + }, + { + "category": "product_version", + "name": "mtr/mtr-rhel8-operator@sha256:74dbf338ddb1772ad6dba53c0fa185cfe4d8d8973210d67b7662d3406b26c3a6_arm64", + "product": { + "name": "mtr/mtr-rhel8-operator@sha256:74dbf338ddb1772ad6dba53c0fa185cfe4d8d8973210d67b7662d3406b26c3a6_arm64", + "product_id": "mtr/mtr-rhel8-operator@sha256:74dbf338ddb1772ad6dba53c0fa185cfe4d8d8973210d67b7662d3406b26c3a6_arm64", + "product_identification_helper": { + "purl": "pkg:oci/mtr-rhel8-operator@sha256:74dbf338ddb1772ad6dba53c0fa185cfe4d8d8973210d67b7662d3406b26c3a6?arch=arm64&repository_url=registry.redhat.io/mtr/mtr-rhel8-operator&tag=1.2-5" + } + } + }, + { + "category": "product_version", + "name": "mtr/mtr-web-executor-container-rhel8@sha256:5b39504feb5073935afc16220e297e85a1a7287f482c89b4227ef0b9b7f7f355_arm64", + "product": { + "name": "mtr/mtr-web-executor-container-rhel8@sha256:5b39504feb5073935afc16220e297e85a1a7287f482c89b4227ef0b9b7f7f355_arm64", + "product_id": "mtr/mtr-web-executor-container-rhel8@sha256:5b39504feb5073935afc16220e297e85a1a7287f482c89b4227ef0b9b7f7f355_arm64", + "product_identification_helper": { + "purl": "pkg:oci/mtr-web-executor-container-rhel8@sha256:5b39504feb5073935afc16220e297e85a1a7287f482c89b4227ef0b9b7f7f355?arch=arm64&repository_url=registry.redhat.io/mtr/mtr-web-executor-container-rhel8&tag=1.2-4" + } + } + } + ], + "category": "architecture", + "name": "arm64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "receptor-0:1.4.2-1.el8ap.src", + "product": { + "name": "receptor-0:1.4.2-1.el8ap.src", + "product_id": "receptor-0:1.4.2-1.el8ap.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/receptor@1.4.2-1.el8ap?arch=src" + } + } + }, + { + "category": "product_version", + "name": "receptor-0:1.4.2-1.el9ap.src", + "product": { + "name": "receptor-0:1.4.2-1.el9ap.src", + "product_id": "receptor-0:1.4.2-1.el9ap.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/receptor@1.4.2-1.el9ap?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "receptorctl-0:1.4.2-1.el8ap.noarch", + "product": { + "name": "receptorctl-0:1.4.2-1.el8ap.noarch", + "product_id": "receptorctl-0:1.4.2-1.el8ap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/receptorctl@1.4.2-1.el8ap?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "receptorctl-0:1.4.2-1.el9ap.noarch", + "product": { + "name": "receptorctl-0:1.4.2-1.el9ap.noarch", + "product_id": "receptorctl-0:1.4.2-1.el9ap.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/receptorctl@1.4.2-1.el9ap?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "receptor-0:1.4.2-1.el8ap.x86_64", + "product": { + "name": "receptor-0:1.4.2-1.el8ap.x86_64", + "product_id": "receptor-0:1.4.2-1.el8ap.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/receptor@1.4.2-1.el8ap?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "receptor-0:1.4.2-1.el9ap.x86_64", + "product": { + "name": "receptor-0:1.4.2-1.el9ap.x86_64", + "product_id": "receptor-0:1.4.2-1.el9ap.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/receptor@1.4.2-1.el9ap?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "receptor-0:1.4.2-1.el8ap.ppc64le", + "product": { + "name": "receptor-0:1.4.2-1.el8ap.ppc64le", + "product_id": "receptor-0:1.4.2-1.el8ap.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/receptor@1.4.2-1.el8ap?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "receptor-0:1.4.2-1.el9ap.ppc64le", + "product": { + "name": "receptor-0:1.4.2-1.el9ap.ppc64le", + "product_id": "receptor-0:1.4.2-1.el9ap.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/receptor@1.4.2-1.el9ap?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "receptor-0:1.4.2-1.el8ap.s390x", + "product": { + "name": "receptor-0:1.4.2-1.el8ap.s390x", + "product_id": "receptor-0:1.4.2-1.el8ap.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/receptor@1.4.2-1.el8ap?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "receptor-0:1.4.2-1.el9ap.s390x", + "product": { + "name": "receptor-0:1.4.2-1.el9ap.s390x", + "product_id": "receptor-0:1.4.2-1.el9ap.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/receptor@1.4.2-1.el9ap?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "receptor-0:1.4.2-1.el8ap.aarch64", + "product": { + "name": "receptor-0:1.4.2-1.el8ap.aarch64", + "product_id": "receptor-0:1.4.2-1.el8ap.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/receptor@1.4.2-1.el8ap?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "receptor-0:1.4.2-1.el9ap.aarch64", + "product": { + "name": "receptor-0:1.4.2-1.el9ap.aarch64", + "product_id": "receptor-0:1.4.2-1.el9ap.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/receptor@1.4.2-1.el9ap?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64", + "product": { + "name": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64", + "product_id": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@16.20.2-3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64", + "product": { + "name": "nodejs-debuginfo-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64", + "product_id": "nodejs-debuginfo-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@16.20.2-3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64", + "product": { + "name": "nodejs-debugsource-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64", + "product_id": "nodejs-debugsource-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@16.20.2-3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-devel-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64", + "product": { + "name": "nodejs-devel-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64", + "product_id": "nodejs-devel-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-devel@16.20.2-3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64", + "product": { + "name": "nodejs-full-i18n-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64", + "product_id": "nodejs-full-i18n-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@16.20.2-3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:8.19.4-1.16.20.2.3.module+el8.6.0+20387+28a0198c.aarch64", + "product": { + "name": "npm-1:8.19.4-1.16.20.2.3.module+el8.6.0+20387+28a0198c.aarch64", + "product_id": "npm-1:8.19.4-1.16.20.2.3.module+el8.6.0+20387+28a0198c.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@8.19.4-1.16.20.2.3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=aarch64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.src", + "product": { + "name": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.src", + "product_id": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@16.20.2-3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-nodemon-0:3.0.1-1.module+el8.6.0+19765+366b9144.src", + "product": { + "name": "nodejs-nodemon-0:3.0.1-1.module+el8.6.0+19765+366b9144.src", + "product_id": "nodejs-nodemon-0:3.0.1-1.module+el8.6.0+19765+366b9144.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-nodemon@3.0.1-1.module%2Bel8.6.0%2B19765%2B366b9144?arch=src" + } + } + }, + { + "category": "product_version", + "name": "nodejs-packaging-0:26-1.module+el8.6.0+19856+c0c87259.src", + "product": { + "name": "nodejs-packaging-0:26-1.module+el8.6.0+19856+c0c87259.src", + "product_id": "nodejs-packaging-0:26-1.module+el8.6.0+19856+c0c87259.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-packaging@26-1.module%2Bel8.6.0%2B19856%2Bc0c87259?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-docs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.noarch", + "product": { + "name": "nodejs-docs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.noarch", + "product_id": "nodejs-docs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-docs@16.20.2-3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-nodemon-0:3.0.1-1.module+el8.6.0+19765+366b9144.noarch", + "product": { + "name": "nodejs-nodemon-0:3.0.1-1.module+el8.6.0+19765+366b9144.noarch", + "product_id": "nodejs-nodemon-0:3.0.1-1.module+el8.6.0+19765+366b9144.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-nodemon@3.0.1-1.module%2Bel8.6.0%2B19765%2B366b9144?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "nodejs-packaging-0:26-1.module+el8.6.0+19856+c0c87259.noarch", + "product": { + "name": "nodejs-packaging-0:26-1.module+el8.6.0+19856+c0c87259.noarch", + "product_id": "nodejs-packaging-0:26-1.module+el8.6.0+19856+c0c87259.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-packaging@26-1.module%2Bel8.6.0%2B19856%2Bc0c87259?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le", + "product": { + "name": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le", + "product_id": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@16.20.2-3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le", + "product": { + "name": "nodejs-debuginfo-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le", + "product_id": "nodejs-debuginfo-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@16.20.2-3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le", + "product": { + "name": "nodejs-debugsource-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le", + "product_id": "nodejs-debugsource-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@16.20.2-3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-devel-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le", + "product": { + "name": "nodejs-devel-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le", + "product_id": "nodejs-devel-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-devel@16.20.2-3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le", + "product": { + "name": "nodejs-full-i18n-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le", + "product_id": "nodejs-full-i18n-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@16.20.2-3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:8.19.4-1.16.20.2.3.module+el8.6.0+20387+28a0198c.ppc64le", + "product": { + "name": "npm-1:8.19.4-1.16.20.2.3.module+el8.6.0+20387+28a0198c.ppc64le", + "product_id": "npm-1:8.19.4-1.16.20.2.3.module+el8.6.0+20387+28a0198c.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@8.19.4-1.16.20.2.3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=ppc64le&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x", + "product": { + "name": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x", + "product_id": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@16.20.2-3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x", + "product": { + "name": "nodejs-debuginfo-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x", + "product_id": "nodejs-debuginfo-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@16.20.2-3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x", + "product": { + "name": "nodejs-debugsource-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x", + "product_id": "nodejs-debugsource-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@16.20.2-3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-devel-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x", + "product": { + "name": "nodejs-devel-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x", + "product_id": "nodejs-devel-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-devel@16.20.2-3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x", + "product": { + "name": "nodejs-full-i18n-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x", + "product_id": "nodejs-full-i18n-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@16.20.2-3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:8.19.4-1.16.20.2.3.module+el8.6.0+20387+28a0198c.s390x", + "product": { + "name": "npm-1:8.19.4-1.16.20.2.3.module+el8.6.0+20387+28a0198c.s390x", + "product_id": "npm-1:8.19.4-1.16.20.2.3.module+el8.6.0+20387+28a0198c.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@8.19.4-1.16.20.2.3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=s390x&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64", + "product": { + "name": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64", + "product_id": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@16.20.2-3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64", + "product": { + "name": "nodejs-debuginfo-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64", + "product_id": "nodejs-debuginfo-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@16.20.2-3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64", + "product": { + "name": "nodejs-debugsource-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64", + "product_id": "nodejs-debugsource-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@16.20.2-3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-devel-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64", + "product": { + "name": "nodejs-devel-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64", + "product_id": "nodejs-devel-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-devel@16.20.2-3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64", + "product": { + "name": "nodejs-full-i18n-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64", + "product_id": "nodejs-full-i18n-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@16.20.2-3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:8.19.4-1.16.20.2.3.module+el8.6.0+20387+28a0198c.x86_64", + "product": { + "name": "npm-1:8.19.4-1.16.20.2.3.module+el8.6.0+20387+28a0198c.x86_64", + "product_id": "npm-1:8.19.4-1.16.20.2.3.module+el8.6.0+20387+28a0198c.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@8.19.4-1.16.20.2.3.module%2Bel8.6.0%2B20387%2B28a0198c?arch=x86_64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el7jws.src", + "product": { + "name": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el7jws.src", + "product_id": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el7jws.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat@9.0.62-16.redhat_00014.1.el7jws?arch=src" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el8jws.src", + "product": { + "name": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el8jws.src", + "product_id": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el8jws.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat@9.0.62-16.redhat_00014.1.el8jws?arch=src" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el9jws.src", + "product": { + "name": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el9jws.src", + "product_id": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el9jws.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat@9.0.62-16.redhat_00014.1.el9jws?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product": { + "name": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product_id": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat@9.0.62-16.redhat_00014.1.el7jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-admin-webapps-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product": { + "name": "jws5-tomcat-admin-webapps-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product_id": "jws5-tomcat-admin-webapps-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-admin-webapps@9.0.62-16.redhat_00014.1.el7jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-docs-webapp-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product": { + "name": "jws5-tomcat-docs-webapp-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product_id": "jws5-tomcat-docs-webapp-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-docs-webapp@9.0.62-16.redhat_00014.1.el7jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-el-3.0-api-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product": { + "name": "jws5-tomcat-el-3.0-api-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product_id": "jws5-tomcat-el-3.0-api-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-el-3.0-api@9.0.62-16.redhat_00014.1.el7jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-java-jdk11-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product": { + "name": "jws5-tomcat-java-jdk11-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product_id": "jws5-tomcat-java-jdk11-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-java-jdk11@9.0.62-16.redhat_00014.1.el7jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-java-jdk8-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product": { + "name": "jws5-tomcat-java-jdk8-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product_id": "jws5-tomcat-java-jdk8-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-java-jdk8@9.0.62-16.redhat_00014.1.el7jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-javadoc-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product": { + "name": "jws5-tomcat-javadoc-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product_id": "jws5-tomcat-javadoc-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-javadoc@9.0.62-16.redhat_00014.1.el7jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-jsp-2.3-api-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product": { + "name": "jws5-tomcat-jsp-2.3-api-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product_id": "jws5-tomcat-jsp-2.3-api-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-jsp-2.3-api@9.0.62-16.redhat_00014.1.el7jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-lib-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product": { + "name": "jws5-tomcat-lib-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product_id": "jws5-tomcat-lib-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-lib@9.0.62-16.redhat_00014.1.el7jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-selinux-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product": { + "name": "jws5-tomcat-selinux-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product_id": "jws5-tomcat-selinux-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-selinux@9.0.62-16.redhat_00014.1.el7jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-servlet-4.0-api-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product": { + "name": "jws5-tomcat-servlet-4.0-api-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product_id": "jws5-tomcat-servlet-4.0-api-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-servlet-4.0-api@9.0.62-16.redhat_00014.1.el7jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-webapps-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product": { + "name": "jws5-tomcat-webapps-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product_id": "jws5-tomcat-webapps-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-webapps@9.0.62-16.redhat_00014.1.el7jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product": { + "name": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product_id": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat@9.0.62-16.redhat_00014.1.el8jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-admin-webapps-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product": { + "name": "jws5-tomcat-admin-webapps-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product_id": "jws5-tomcat-admin-webapps-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-admin-webapps@9.0.62-16.redhat_00014.1.el8jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-docs-webapp-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product": { + "name": "jws5-tomcat-docs-webapp-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product_id": "jws5-tomcat-docs-webapp-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-docs-webapp@9.0.62-16.redhat_00014.1.el8jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-el-3.0-api-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product": { + "name": "jws5-tomcat-el-3.0-api-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product_id": "jws5-tomcat-el-3.0-api-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-el-3.0-api@9.0.62-16.redhat_00014.1.el8jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-javadoc-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product": { + "name": "jws5-tomcat-javadoc-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product_id": "jws5-tomcat-javadoc-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-javadoc@9.0.62-16.redhat_00014.1.el8jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-jsp-2.3-api-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product": { + "name": "jws5-tomcat-jsp-2.3-api-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product_id": "jws5-tomcat-jsp-2.3-api-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-jsp-2.3-api@9.0.62-16.redhat_00014.1.el8jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-lib-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product": { + "name": "jws5-tomcat-lib-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product_id": "jws5-tomcat-lib-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-lib@9.0.62-16.redhat_00014.1.el8jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-selinux-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product": { + "name": "jws5-tomcat-selinux-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product_id": "jws5-tomcat-selinux-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-selinux@9.0.62-16.redhat_00014.1.el8jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-servlet-4.0-api-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product": { + "name": "jws5-tomcat-servlet-4.0-api-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product_id": "jws5-tomcat-servlet-4.0-api-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-servlet-4.0-api@9.0.62-16.redhat_00014.1.el8jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-webapps-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product": { + "name": "jws5-tomcat-webapps-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product_id": "jws5-tomcat-webapps-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-webapps@9.0.62-16.redhat_00014.1.el8jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product": { + "name": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product_id": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat@9.0.62-16.redhat_00014.1.el9jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-admin-webapps-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product": { + "name": "jws5-tomcat-admin-webapps-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product_id": "jws5-tomcat-admin-webapps-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-admin-webapps@9.0.62-16.redhat_00014.1.el9jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-docs-webapp-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product": { + "name": "jws5-tomcat-docs-webapp-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product_id": "jws5-tomcat-docs-webapp-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-docs-webapp@9.0.62-16.redhat_00014.1.el9jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-el-3.0-api-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product": { + "name": "jws5-tomcat-el-3.0-api-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product_id": "jws5-tomcat-el-3.0-api-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-el-3.0-api@9.0.62-16.redhat_00014.1.el9jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-javadoc-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product": { + "name": "jws5-tomcat-javadoc-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product_id": "jws5-tomcat-javadoc-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-javadoc@9.0.62-16.redhat_00014.1.el9jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-jsp-2.3-api-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product": { + "name": "jws5-tomcat-jsp-2.3-api-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product_id": "jws5-tomcat-jsp-2.3-api-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-jsp-2.3-api@9.0.62-16.redhat_00014.1.el9jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-lib-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product": { + "name": "jws5-tomcat-lib-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product_id": "jws5-tomcat-lib-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-lib@9.0.62-16.redhat_00014.1.el9jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-selinux-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product": { + "name": "jws5-tomcat-selinux-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product_id": "jws5-tomcat-selinux-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-selinux@9.0.62-16.redhat_00014.1.el9jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-servlet-4.0-api-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product": { + "name": "jws5-tomcat-servlet-4.0-api-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product_id": "jws5-tomcat-servlet-4.0-api-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-servlet-4.0-api@9.0.62-16.redhat_00014.1.el9jws?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "jws5-tomcat-webapps-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product": { + "name": "jws5-tomcat-webapps-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product_id": "jws5-tomcat-webapps-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/jws5-tomcat-webapps@9.0.62-16.redhat_00014.1.el9jws?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-0:1.33.0-3.el8_2.2.i686", + "product": { + "name": "libnghttp2-0:1.33.0-3.el8_2.2.i686", + "product_id": "libnghttp2-0:1.33.0-3.el8_2.2.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.33.0-3.el8_2.2?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.33.0-3.el8_2.2.i686", + "product": { + "name": "nghttp2-debugsource-0:1.33.0-3.el8_2.2.i686", + "product_id": "nghttp2-debugsource-0:1.33.0-3.el8_2.2.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.33.0-3.el8_2.2?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.i686", + "product": { + "name": "libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.i686", + "product_id": "libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.33.0-3.el8_2.2?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.33.0-3.el8_2.2.i686", + "product": { + "name": "nghttp2-debuginfo-0:1.33.0-3.el8_2.2.i686", + "product_id": "nghttp2-debuginfo-0:1.33.0-3.el8_2.2.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.33.0-3.el8_2.2?arch=i686" + } + } + } + ], + "category": "architecture", + "name": "i686" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-0:1.33.0-3.el8_2.2.x86_64", + "product": { + "name": "libnghttp2-0:1.33.0-3.el8_2.2.x86_64", + "product_id": "libnghttp2-0:1.33.0-3.el8_2.2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.33.0-3.el8_2.2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.33.0-3.el8_2.2.x86_64", + "product": { + "name": "nghttp2-debugsource-0:1.33.0-3.el8_2.2.x86_64", + "product_id": "nghttp2-debugsource-0:1.33.0-3.el8_2.2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.33.0-3.el8_2.2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.x86_64", + "product": { + "name": "libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.x86_64", + "product_id": "libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.33.0-3.el8_2.2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.33.0-3.el8_2.2.x86_64", + "product": { + "name": "nghttp2-debuginfo-0:1.33.0-3.el8_2.2.x86_64", + "product_id": "nghttp2-debuginfo-0:1.33.0-3.el8_2.2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.33.0-3.el8_2.2?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nghttp2-0:1.33.0-3.el8_2.2.src", + "product": { + "name": "nghttp2-0:1.33.0-3.el8_2.2.src", + "product_id": "nghttp2-0:1.33.0-3.el8_2.2.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.33.0-3.el8_2.2?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-0:1.33.0-3.el8_2.2.ppc64le", + "product": { + "name": "libnghttp2-0:1.33.0-3.el8_2.2.ppc64le", + "product_id": "libnghttp2-0:1.33.0-3.el8_2.2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.33.0-3.el8_2.2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.33.0-3.el8_2.2.ppc64le", + "product": { + "name": "nghttp2-debugsource-0:1.33.0-3.el8_2.2.ppc64le", + "product_id": "nghttp2-debugsource-0:1.33.0-3.el8_2.2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.33.0-3.el8_2.2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.ppc64le", + "product": { + "name": "libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.ppc64le", + "product_id": "libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.33.0-3.el8_2.2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.33.0-3.el8_2.2.ppc64le", + "product": { + "name": "nghttp2-debuginfo-0:1.33.0-3.el8_2.2.ppc64le", + "product_id": "nghttp2-debuginfo-0:1.33.0-3.el8_2.2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.33.0-3.el8_2.2?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-0:1.33.0-4.el8_4.1.i686", + "product": { + "name": "libnghttp2-0:1.33.0-4.el8_4.1.i686", + "product_id": "libnghttp2-0:1.33.0-4.el8_4.1.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.33.0-4.el8_4.1?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.i686", + "product": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.i686", + "product_id": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.33.0-4.el8_4.1?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.i686", + "product": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.i686", + "product_id": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.33.0-4.el8_4.1?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.i686", + "product": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.i686", + "product_id": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.33.0-4.el8_4.1?arch=i686" + } + } + } + ], + "category": "architecture", + "name": "i686" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-0:1.33.0-4.el8_4.1.x86_64", + "product": { + "name": "libnghttp2-0:1.33.0-4.el8_4.1.x86_64", + "product_id": "libnghttp2-0:1.33.0-4.el8_4.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.33.0-4.el8_4.1?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.x86_64", + "product": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.x86_64", + "product_id": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.33.0-4.el8_4.1?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.x86_64", + "product": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.x86_64", + "product_id": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.33.0-4.el8_4.1?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.x86_64", + "product": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.x86_64", + "product_id": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.33.0-4.el8_4.1?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nghttp2-0:1.33.0-4.el8_4.1.src", + "product": { + "name": "nghttp2-0:1.33.0-4.el8_4.1.src", + "product_id": "nghttp2-0:1.33.0-4.el8_4.1.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.33.0-4.el8_4.1?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-0:1.33.0-4.el8_4.1.aarch64", + "product": { + "name": "libnghttp2-0:1.33.0-4.el8_4.1.aarch64", + "product_id": "libnghttp2-0:1.33.0-4.el8_4.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.33.0-4.el8_4.1?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.aarch64", + "product": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.aarch64", + "product_id": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.33.0-4.el8_4.1?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.aarch64", + "product": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.aarch64", + "product_id": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.33.0-4.el8_4.1?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.aarch64", + "product": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.aarch64", + "product_id": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.33.0-4.el8_4.1?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-0:1.33.0-4.el8_4.1.ppc64le", + "product": { + "name": "libnghttp2-0:1.33.0-4.el8_4.1.ppc64le", + "product_id": "libnghttp2-0:1.33.0-4.el8_4.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.33.0-4.el8_4.1?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.ppc64le", + "product": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.ppc64le", + "product_id": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.33.0-4.el8_4.1?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.ppc64le", + "product": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.ppc64le", + "product_id": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.33.0-4.el8_4.1?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.ppc64le", + "product": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.ppc64le", + "product_id": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.33.0-4.el8_4.1?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-0:1.33.0-4.el8_4.1.s390x", + "product": { + "name": "libnghttp2-0:1.33.0-4.el8_4.1.s390x", + "product_id": "libnghttp2-0:1.33.0-4.el8_4.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.33.0-4.el8_4.1?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.s390x", + "product": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.s390x", + "product_id": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.33.0-4.el8_4.1?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.s390x", + "product": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.s390x", + "product_id": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.33.0-4.el8_4.1?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.s390x", + "product": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.s390x", + "product_id": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.33.0-4.el8_4.1?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:16.20.2-3.el9_0.src", + "product": { + "name": "nodejs-1:16.20.2-3.el9_0.src", + "product_id": "nodejs-1:16.20.2-3.el9_0.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@16.20.2-3.el9_0?arch=src&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:16.20.2-3.el9_0.aarch64", + "product": { + "name": "nodejs-1:16.20.2-3.el9_0.aarch64", + "product_id": "nodejs-1:16.20.2-3.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@16.20.2-3.el9_0?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:16.20.2-3.el9_0.aarch64", + "product": { + "name": "nodejs-full-i18n-1:16.20.2-3.el9_0.aarch64", + "product_id": "nodejs-full-i18n-1:16.20.2-3.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@16.20.2-3.el9_0?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-libs-1:16.20.2-3.el9_0.aarch64", + "product": { + "name": "nodejs-libs-1:16.20.2-3.el9_0.aarch64", + "product_id": "nodejs-libs-1:16.20.2-3.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-libs@16.20.2-3.el9_0?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:8.19.4-1.16.20.2.3.el9_0.aarch64", + "product": { + "name": "npm-1:8.19.4-1.16.20.2.3.el9_0.aarch64", + "product_id": "npm-1:8.19.4-1.16.20.2.3.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@8.19.4-1.16.20.2.3.el9_0?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:16.20.2-3.el9_0.aarch64", + "product": { + "name": "nodejs-debugsource-1:16.20.2-3.el9_0.aarch64", + "product_id": "nodejs-debugsource-1:16.20.2-3.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@16.20.2-3.el9_0?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:16.20.2-3.el9_0.aarch64", + "product": { + "name": "nodejs-debuginfo-1:16.20.2-3.el9_0.aarch64", + "product_id": "nodejs-debuginfo-1:16.20.2-3.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@16.20.2-3.el9_0?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.aarch64", + "product": { + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.aarch64", + "product_id": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-libs-debuginfo@16.20.2-3.el9_0?arch=aarch64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:16.20.2-3.el9_0.ppc64le", + "product": { + "name": "nodejs-1:16.20.2-3.el9_0.ppc64le", + "product_id": "nodejs-1:16.20.2-3.el9_0.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@16.20.2-3.el9_0?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:16.20.2-3.el9_0.ppc64le", + "product": { + "name": "nodejs-full-i18n-1:16.20.2-3.el9_0.ppc64le", + "product_id": "nodejs-full-i18n-1:16.20.2-3.el9_0.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@16.20.2-3.el9_0?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-libs-1:16.20.2-3.el9_0.ppc64le", + "product": { + "name": "nodejs-libs-1:16.20.2-3.el9_0.ppc64le", + "product_id": "nodejs-libs-1:16.20.2-3.el9_0.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-libs@16.20.2-3.el9_0?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:8.19.4-1.16.20.2.3.el9_0.ppc64le", + "product": { + "name": "npm-1:8.19.4-1.16.20.2.3.el9_0.ppc64le", + "product_id": "npm-1:8.19.4-1.16.20.2.3.el9_0.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@8.19.4-1.16.20.2.3.el9_0?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:16.20.2-3.el9_0.ppc64le", + "product": { + "name": "nodejs-debugsource-1:16.20.2-3.el9_0.ppc64le", + "product_id": "nodejs-debugsource-1:16.20.2-3.el9_0.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@16.20.2-3.el9_0?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:16.20.2-3.el9_0.ppc64le", + "product": { + "name": "nodejs-debuginfo-1:16.20.2-3.el9_0.ppc64le", + "product_id": "nodejs-debuginfo-1:16.20.2-3.el9_0.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@16.20.2-3.el9_0?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.ppc64le", + "product": { + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.ppc64le", + "product_id": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-libs-debuginfo@16.20.2-3.el9_0?arch=ppc64le&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:16.20.2-3.el9_0.x86_64", + "product": { + "name": "nodejs-1:16.20.2-3.el9_0.x86_64", + "product_id": "nodejs-1:16.20.2-3.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@16.20.2-3.el9_0?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:16.20.2-3.el9_0.x86_64", + "product": { + "name": "nodejs-full-i18n-1:16.20.2-3.el9_0.x86_64", + "product_id": "nodejs-full-i18n-1:16.20.2-3.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@16.20.2-3.el9_0?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-libs-1:16.20.2-3.el9_0.x86_64", + "product": { + "name": "nodejs-libs-1:16.20.2-3.el9_0.x86_64", + "product_id": "nodejs-libs-1:16.20.2-3.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-libs@16.20.2-3.el9_0?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:8.19.4-1.16.20.2.3.el9_0.x86_64", + "product": { + "name": "npm-1:8.19.4-1.16.20.2.3.el9_0.x86_64", + "product_id": "npm-1:8.19.4-1.16.20.2.3.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@8.19.4-1.16.20.2.3.el9_0?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:16.20.2-3.el9_0.x86_64", + "product": { + "name": "nodejs-debugsource-1:16.20.2-3.el9_0.x86_64", + "product_id": "nodejs-debugsource-1:16.20.2-3.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@16.20.2-3.el9_0?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:16.20.2-3.el9_0.x86_64", + "product": { + "name": "nodejs-debuginfo-1:16.20.2-3.el9_0.x86_64", + "product_id": "nodejs-debuginfo-1:16.20.2-3.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@16.20.2-3.el9_0?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.x86_64", + "product": { + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.x86_64", + "product_id": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-libs-debuginfo@16.20.2-3.el9_0?arch=x86_64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-libs-1:16.20.2-3.el9_0.i686", + "product": { + "name": "nodejs-libs-1:16.20.2-3.el9_0.i686", + "product_id": "nodejs-libs-1:16.20.2-3.el9_0.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-libs@16.20.2-3.el9_0?arch=i686&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:16.20.2-3.el9_0.i686", + "product": { + "name": "nodejs-debugsource-1:16.20.2-3.el9_0.i686", + "product_id": "nodejs-debugsource-1:16.20.2-3.el9_0.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@16.20.2-3.el9_0?arch=i686&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:16.20.2-3.el9_0.i686", + "product": { + "name": "nodejs-debuginfo-1:16.20.2-3.el9_0.i686", + "product_id": "nodejs-debuginfo-1:16.20.2-3.el9_0.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@16.20.2-3.el9_0?arch=i686&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.i686", + "product": { + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.i686", + "product_id": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-libs-debuginfo@16.20.2-3.el9_0?arch=i686&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "i686" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:16.20.2-3.el9_0.s390x", + "product": { + "name": "nodejs-1:16.20.2-3.el9_0.s390x", + "product_id": "nodejs-1:16.20.2-3.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@16.20.2-3.el9_0?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:16.20.2-3.el9_0.s390x", + "product": { + "name": "nodejs-full-i18n-1:16.20.2-3.el9_0.s390x", + "product_id": "nodejs-full-i18n-1:16.20.2-3.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@16.20.2-3.el9_0?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-libs-1:16.20.2-3.el9_0.s390x", + "product": { + "name": "nodejs-libs-1:16.20.2-3.el9_0.s390x", + "product_id": "nodejs-libs-1:16.20.2-3.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-libs@16.20.2-3.el9_0?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:8.19.4-1.16.20.2.3.el9_0.s390x", + "product": { + "name": "npm-1:8.19.4-1.16.20.2.3.el9_0.s390x", + "product_id": "npm-1:8.19.4-1.16.20.2.3.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@8.19.4-1.16.20.2.3.el9_0?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:16.20.2-3.el9_0.s390x", + "product": { + "name": "nodejs-debugsource-1:16.20.2-3.el9_0.s390x", + "product_id": "nodejs-debugsource-1:16.20.2-3.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@16.20.2-3.el9_0?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:16.20.2-3.el9_0.s390x", + "product": { + "name": "nodejs-debuginfo-1:16.20.2-3.el9_0.s390x", + "product_id": "nodejs-debuginfo-1:16.20.2-3.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@16.20.2-3.el9_0?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.s390x", + "product": { + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.s390x", + "product_id": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-libs-debuginfo@16.20.2-3.el9_0?arch=s390x&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-docs-1:16.20.2-3.el9_0.noarch", + "product": { + "name": "nodejs-docs-1:16.20.2-3.el9_0.noarch", + "product_id": "nodejs-docs-1:16.20.2-3.el9_0.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-docs@16.20.2-3.el9_0?arch=noarch&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-0:1.33.0-3.el8_1.2.ppc64le", + "product": { + "name": "libnghttp2-0:1.33.0-3.el8_1.2.ppc64le", + "product_id": "libnghttp2-0:1.33.0-3.el8_1.2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.33.0-3.el8_1.2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.33.0-3.el8_1.2.ppc64le", + "product": { + "name": "nghttp2-debugsource-0:1.33.0-3.el8_1.2.ppc64le", + "product_id": "nghttp2-debugsource-0:1.33.0-3.el8_1.2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.33.0-3.el8_1.2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.33.0-3.el8_1.2.ppc64le", + "product": { + "name": "libnghttp2-debuginfo-0:1.33.0-3.el8_1.2.ppc64le", + "product_id": "libnghttp2-debuginfo-0:1.33.0-3.el8_1.2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.33.0-3.el8_1.2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.33.0-3.el8_1.2.ppc64le", + "product": { + "name": "nghttp2-debuginfo-0:1.33.0-3.el8_1.2.ppc64le", + "product_id": "nghttp2-debuginfo-0:1.33.0-3.el8_1.2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.33.0-3.el8_1.2?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-0:1.33.0-3.el8_1.2.i686", + "product": { + "name": "libnghttp2-0:1.33.0-3.el8_1.2.i686", + "product_id": "libnghttp2-0:1.33.0-3.el8_1.2.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.33.0-3.el8_1.2?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.33.0-3.el8_1.2.i686", + "product": { + "name": "nghttp2-debugsource-0:1.33.0-3.el8_1.2.i686", + "product_id": "nghttp2-debugsource-0:1.33.0-3.el8_1.2.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.33.0-3.el8_1.2?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.33.0-3.el8_1.2.i686", + "product": { + "name": "libnghttp2-debuginfo-0:1.33.0-3.el8_1.2.i686", + "product_id": "libnghttp2-debuginfo-0:1.33.0-3.el8_1.2.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.33.0-3.el8_1.2?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.33.0-3.el8_1.2.i686", + "product": { + "name": "nghttp2-debuginfo-0:1.33.0-3.el8_1.2.i686", + "product_id": "nghttp2-debuginfo-0:1.33.0-3.el8_1.2.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.33.0-3.el8_1.2?arch=i686" + } + } + } + ], + "category": "architecture", + "name": "i686" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-0:1.33.0-3.el8_1.2.x86_64", + "product": { + "name": "libnghttp2-0:1.33.0-3.el8_1.2.x86_64", + "product_id": "libnghttp2-0:1.33.0-3.el8_1.2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.33.0-3.el8_1.2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.33.0-3.el8_1.2.x86_64", + "product": { + "name": "nghttp2-debugsource-0:1.33.0-3.el8_1.2.x86_64", + "product_id": "nghttp2-debugsource-0:1.33.0-3.el8_1.2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.33.0-3.el8_1.2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.33.0-3.el8_1.2.x86_64", + "product": { + "name": "libnghttp2-debuginfo-0:1.33.0-3.el8_1.2.x86_64", + "product_id": "libnghttp2-debuginfo-0:1.33.0-3.el8_1.2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.33.0-3.el8_1.2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.33.0-3.el8_1.2.x86_64", + "product": { + "name": "nghttp2-debuginfo-0:1.33.0-3.el8_1.2.x86_64", + "product_id": "nghttp2-debuginfo-0:1.33.0-3.el8_1.2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.33.0-3.el8_1.2?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nghttp2-0:1.33.0-3.el8_1.2.src", + "product": { + "name": "nghttp2-0:1.33.0-3.el8_1.2.src", + "product_id": "nghttp2-0:1.33.0-3.el8_1.2.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.33.0-3.el8_1.2?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-0:1.33.0-4.el8_6.1.aarch64", + "product": { + "name": "libnghttp2-0:1.33.0-4.el8_6.1.aarch64", + "product_id": "libnghttp2-0:1.33.0-4.el8_6.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.33.0-4.el8_6.1?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.aarch64", + "product": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.aarch64", + "product_id": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.33.0-4.el8_6.1?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.aarch64", + "product": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.aarch64", + "product_id": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.33.0-4.el8_6.1?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.aarch64", + "product": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.aarch64", + "product_id": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.33.0-4.el8_6.1?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.33.0-4.el8_6.1.aarch64", + "product": { + "name": "libnghttp2-devel-0:1.33.0-4.el8_6.1.aarch64", + "product_id": "libnghttp2-devel-0:1.33.0-4.el8_6.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.33.0-4.el8_6.1?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-0:1.33.0-4.el8_6.1.aarch64", + "product": { + "name": "nghttp2-0:1.33.0-4.el8_6.1.aarch64", + "product_id": "nghttp2-0:1.33.0-4.el8_6.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.33.0-4.el8_6.1?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-0:1.33.0-4.el8_6.1.ppc64le", + "product": { + "name": "libnghttp2-0:1.33.0-4.el8_6.1.ppc64le", + "product_id": "libnghttp2-0:1.33.0-4.el8_6.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.33.0-4.el8_6.1?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.ppc64le", + "product": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.ppc64le", + "product_id": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.33.0-4.el8_6.1?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.ppc64le", + "product": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.ppc64le", + "product_id": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.33.0-4.el8_6.1?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.ppc64le", + "product": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.ppc64le", + "product_id": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.33.0-4.el8_6.1?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.33.0-4.el8_6.1.ppc64le", + "product": { + "name": "libnghttp2-devel-0:1.33.0-4.el8_6.1.ppc64le", + "product_id": "libnghttp2-devel-0:1.33.0-4.el8_6.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.33.0-4.el8_6.1?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-0:1.33.0-4.el8_6.1.ppc64le", + "product": { + "name": "nghttp2-0:1.33.0-4.el8_6.1.ppc64le", + "product_id": "nghttp2-0:1.33.0-4.el8_6.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.33.0-4.el8_6.1?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-0:1.33.0-4.el8_6.1.i686", + "product": { + "name": "libnghttp2-0:1.33.0-4.el8_6.1.i686", + "product_id": "libnghttp2-0:1.33.0-4.el8_6.1.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.33.0-4.el8_6.1?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.i686", + "product": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.i686", + "product_id": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.33.0-4.el8_6.1?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.i686", + "product": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.i686", + "product_id": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.33.0-4.el8_6.1?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.i686", + "product": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.i686", + "product_id": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.33.0-4.el8_6.1?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.33.0-4.el8_6.1.i686", + "product": { + "name": "libnghttp2-devel-0:1.33.0-4.el8_6.1.i686", + "product_id": "libnghttp2-devel-0:1.33.0-4.el8_6.1.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.33.0-4.el8_6.1?arch=i686" + } + } + } + ], + "category": "architecture", + "name": "i686" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-0:1.33.0-4.el8_6.1.x86_64", + "product": { + "name": "libnghttp2-0:1.33.0-4.el8_6.1.x86_64", + "product_id": "libnghttp2-0:1.33.0-4.el8_6.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.33.0-4.el8_6.1?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.x86_64", + "product": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.x86_64", + "product_id": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.33.0-4.el8_6.1?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.x86_64", + "product": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.x86_64", + "product_id": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.33.0-4.el8_6.1?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.x86_64", + "product": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.x86_64", + "product_id": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.33.0-4.el8_6.1?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.33.0-4.el8_6.1.x86_64", + "product": { + "name": "libnghttp2-devel-0:1.33.0-4.el8_6.1.x86_64", + "product_id": "libnghttp2-devel-0:1.33.0-4.el8_6.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.33.0-4.el8_6.1?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-0:1.33.0-4.el8_6.1.x86_64", + "product": { + "name": "nghttp2-0:1.33.0-4.el8_6.1.x86_64", + "product_id": "nghttp2-0:1.33.0-4.el8_6.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.33.0-4.el8_6.1?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-0:1.33.0-4.el8_6.1.s390x", + "product": { + "name": "libnghttp2-0:1.33.0-4.el8_6.1.s390x", + "product_id": "libnghttp2-0:1.33.0-4.el8_6.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.33.0-4.el8_6.1?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.s390x", + "product": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.s390x", + "product_id": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.33.0-4.el8_6.1?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.s390x", + "product": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.s390x", + "product_id": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.33.0-4.el8_6.1?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.s390x", + "product": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.s390x", + "product_id": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.33.0-4.el8_6.1?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.33.0-4.el8_6.1.s390x", + "product": { + "name": "libnghttp2-devel-0:1.33.0-4.el8_6.1.s390x", + "product_id": "libnghttp2-devel-0:1.33.0-4.el8_6.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.33.0-4.el8_6.1?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-0:1.33.0-4.el8_6.1.s390x", + "product": { + "name": "nghttp2-0:1.33.0-4.el8_6.1.s390x", + "product_id": "nghttp2-0:1.33.0-4.el8_6.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.33.0-4.el8_6.1?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nghttp2-0:1.33.0-4.el8_6.1.src", + "product": { + "name": "nghttp2-0:1.33.0-4.el8_6.1.src", + "product_id": "nghttp2-0:1.33.0-4.el8_6.1.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.33.0-4.el8_6.1?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-0:1.43.0-5.el9_0.2.aarch64", + "product": { + "name": "libnghttp2-0:1.43.0-5.el9_0.2.aarch64", + "product_id": "libnghttp2-0:1.43.0-5.el9_0.2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.43.0-5.el9_0.2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.aarch64", + "product": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.aarch64", + "product_id": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.43.0-5.el9_0.2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.aarch64", + "product": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.aarch64", + "product_id": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.43.0-5.el9_0.2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.aarch64", + "product": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.aarch64", + "product_id": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.43.0-5.el9_0.2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.43.0-5.el9_0.2.aarch64", + "product": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_0.2.aarch64", + "product_id": "libnghttp2-devel-0:1.43.0-5.el9_0.2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.43.0-5.el9_0.2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-0:1.43.0-5.el9_0.2.aarch64", + "product": { + "name": "nghttp2-0:1.43.0-5.el9_0.2.aarch64", + "product_id": "nghttp2-0:1.43.0-5.el9_0.2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.43.0-5.el9_0.2?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-0:1.43.0-5.el9_0.2.ppc64le", + "product": { + "name": "libnghttp2-0:1.43.0-5.el9_0.2.ppc64le", + "product_id": "libnghttp2-0:1.43.0-5.el9_0.2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.43.0-5.el9_0.2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.ppc64le", + "product": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.ppc64le", + "product_id": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.43.0-5.el9_0.2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.ppc64le", + "product": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.ppc64le", + "product_id": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.43.0-5.el9_0.2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.ppc64le", + "product": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.ppc64le", + "product_id": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.43.0-5.el9_0.2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.43.0-5.el9_0.2.ppc64le", + "product": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_0.2.ppc64le", + "product_id": "libnghttp2-devel-0:1.43.0-5.el9_0.2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.43.0-5.el9_0.2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-0:1.43.0-5.el9_0.2.ppc64le", + "product": { + "name": "nghttp2-0:1.43.0-5.el9_0.2.ppc64le", + "product_id": "nghttp2-0:1.43.0-5.el9_0.2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.43.0-5.el9_0.2?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-0:1.43.0-5.el9_0.2.i686", + "product": { + "name": "libnghttp2-0:1.43.0-5.el9_0.2.i686", + "product_id": "libnghttp2-0:1.43.0-5.el9_0.2.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.43.0-5.el9_0.2?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.i686", + "product": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.i686", + "product_id": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.43.0-5.el9_0.2?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.i686", + "product": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.i686", + "product_id": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.43.0-5.el9_0.2?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.i686", + "product": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.i686", + "product_id": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.43.0-5.el9_0.2?arch=i686" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.43.0-5.el9_0.2.i686", + "product": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_0.2.i686", + "product_id": "libnghttp2-devel-0:1.43.0-5.el9_0.2.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.43.0-5.el9_0.2?arch=i686" + } + } + } + ], + "category": "architecture", + "name": "i686" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-0:1.43.0-5.el9_0.2.x86_64", + "product": { + "name": "libnghttp2-0:1.43.0-5.el9_0.2.x86_64", + "product_id": "libnghttp2-0:1.43.0-5.el9_0.2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.43.0-5.el9_0.2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.x86_64", + "product": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.x86_64", + "product_id": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.43.0-5.el9_0.2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.x86_64", + "product": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.x86_64", + "product_id": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.43.0-5.el9_0.2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.x86_64", + "product": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.x86_64", + "product_id": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.43.0-5.el9_0.2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.43.0-5.el9_0.2.x86_64", + "product": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_0.2.x86_64", + "product_id": "libnghttp2-devel-0:1.43.0-5.el9_0.2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.43.0-5.el9_0.2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-0:1.43.0-5.el9_0.2.x86_64", + "product": { + "name": "nghttp2-0:1.43.0-5.el9_0.2.x86_64", + "product_id": "nghttp2-0:1.43.0-5.el9_0.2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.43.0-5.el9_0.2?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "libnghttp2-0:1.43.0-5.el9_0.2.s390x", + "product": { + "name": "libnghttp2-0:1.43.0-5.el9_0.2.s390x", + "product_id": "libnghttp2-0:1.43.0-5.el9_0.2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2@1.43.0-5.el9_0.2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.s390x", + "product": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.s390x", + "product_id": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debugsource@1.43.0-5.el9_0.2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.s390x", + "product": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.s390x", + "product_id": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-debuginfo@1.43.0-5.el9_0.2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.s390x", + "product": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.s390x", + "product_id": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2-debuginfo@1.43.0-5.el9_0.2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "libnghttp2-devel-0:1.43.0-5.el9_0.2.s390x", + "product": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_0.2.s390x", + "product_id": "libnghttp2-devel-0:1.43.0-5.el9_0.2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libnghttp2-devel@1.43.0-5.el9_0.2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "nghttp2-0:1.43.0-5.el9_0.2.s390x", + "product": { + "name": "nghttp2-0:1.43.0-5.el9_0.2.s390x", + "product_id": "nghttp2-0:1.43.0-5.el9_0.2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.43.0-5.el9_0.2?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nghttp2-0:1.43.0-5.el9_0.2.src", + "product": { + "name": "nghttp2-0:1.43.0-5.el9_0.2.src", + "product_id": "nghttp2-0:1.43.0-5.el9_0.2.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nghttp2@1.43.0-5.el9_0.2?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:16.20.2-3.el9_2.src", + "product": { + "name": "nodejs-1:16.20.2-3.el9_2.src", + "product_id": "nodejs-1:16.20.2-3.el9_2.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@16.20.2-3.el9_2?arch=src&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:16.20.2-3.el9_2.aarch64", + "product": { + "name": "nodejs-1:16.20.2-3.el9_2.aarch64", + "product_id": "nodejs-1:16.20.2-3.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@16.20.2-3.el9_2?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:16.20.2-3.el9_2.aarch64", + "product": { + "name": "nodejs-full-i18n-1:16.20.2-3.el9_2.aarch64", + "product_id": "nodejs-full-i18n-1:16.20.2-3.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@16.20.2-3.el9_2?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-libs-1:16.20.2-3.el9_2.aarch64", + "product": { + "name": "nodejs-libs-1:16.20.2-3.el9_2.aarch64", + "product_id": "nodejs-libs-1:16.20.2-3.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-libs@16.20.2-3.el9_2?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:8.19.4-1.16.20.2.3.el9_2.aarch64", + "product": { + "name": "npm-1:8.19.4-1.16.20.2.3.el9_2.aarch64", + "product_id": "npm-1:8.19.4-1.16.20.2.3.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@8.19.4-1.16.20.2.3.el9_2?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:16.20.2-3.el9_2.aarch64", + "product": { + "name": "nodejs-debugsource-1:16.20.2-3.el9_2.aarch64", + "product_id": "nodejs-debugsource-1:16.20.2-3.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@16.20.2-3.el9_2?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:16.20.2-3.el9_2.aarch64", + "product": { + "name": "nodejs-debuginfo-1:16.20.2-3.el9_2.aarch64", + "product_id": "nodejs-debuginfo-1:16.20.2-3.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@16.20.2-3.el9_2?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.aarch64", + "product": { + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.aarch64", + "product_id": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-libs-debuginfo@16.20.2-3.el9_2?arch=aarch64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:16.20.2-3.el9_2.ppc64le", + "product": { + "name": "nodejs-1:16.20.2-3.el9_2.ppc64le", + "product_id": "nodejs-1:16.20.2-3.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@16.20.2-3.el9_2?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:16.20.2-3.el9_2.ppc64le", + "product": { + "name": "nodejs-full-i18n-1:16.20.2-3.el9_2.ppc64le", + "product_id": "nodejs-full-i18n-1:16.20.2-3.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@16.20.2-3.el9_2?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-libs-1:16.20.2-3.el9_2.ppc64le", + "product": { + "name": "nodejs-libs-1:16.20.2-3.el9_2.ppc64le", + "product_id": "nodejs-libs-1:16.20.2-3.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-libs@16.20.2-3.el9_2?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:8.19.4-1.16.20.2.3.el9_2.ppc64le", + "product": { + "name": "npm-1:8.19.4-1.16.20.2.3.el9_2.ppc64le", + "product_id": "npm-1:8.19.4-1.16.20.2.3.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@8.19.4-1.16.20.2.3.el9_2?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:16.20.2-3.el9_2.ppc64le", + "product": { + "name": "nodejs-debugsource-1:16.20.2-3.el9_2.ppc64le", + "product_id": "nodejs-debugsource-1:16.20.2-3.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@16.20.2-3.el9_2?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:16.20.2-3.el9_2.ppc64le", + "product": { + "name": "nodejs-debuginfo-1:16.20.2-3.el9_2.ppc64le", + "product_id": "nodejs-debuginfo-1:16.20.2-3.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@16.20.2-3.el9_2?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.ppc64le", + "product": { + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.ppc64le", + "product_id": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-libs-debuginfo@16.20.2-3.el9_2?arch=ppc64le&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:16.20.2-3.el9_2.x86_64", + "product": { + "name": "nodejs-1:16.20.2-3.el9_2.x86_64", + "product_id": "nodejs-1:16.20.2-3.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@16.20.2-3.el9_2?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:16.20.2-3.el9_2.x86_64", + "product": { + "name": "nodejs-full-i18n-1:16.20.2-3.el9_2.x86_64", + "product_id": "nodejs-full-i18n-1:16.20.2-3.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@16.20.2-3.el9_2?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-libs-1:16.20.2-3.el9_2.x86_64", + "product": { + "name": "nodejs-libs-1:16.20.2-3.el9_2.x86_64", + "product_id": "nodejs-libs-1:16.20.2-3.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-libs@16.20.2-3.el9_2?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:8.19.4-1.16.20.2.3.el9_2.x86_64", + "product": { + "name": "npm-1:8.19.4-1.16.20.2.3.el9_2.x86_64", + "product_id": "npm-1:8.19.4-1.16.20.2.3.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@8.19.4-1.16.20.2.3.el9_2?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:16.20.2-3.el9_2.x86_64", + "product": { + "name": "nodejs-debugsource-1:16.20.2-3.el9_2.x86_64", + "product_id": "nodejs-debugsource-1:16.20.2-3.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@16.20.2-3.el9_2?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:16.20.2-3.el9_2.x86_64", + "product": { + "name": "nodejs-debuginfo-1:16.20.2-3.el9_2.x86_64", + "product_id": "nodejs-debuginfo-1:16.20.2-3.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@16.20.2-3.el9_2?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.x86_64", + "product": { + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.x86_64", + "product_id": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-libs-debuginfo@16.20.2-3.el9_2?arch=x86_64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-libs-1:16.20.2-3.el9_2.i686", + "product": { + "name": "nodejs-libs-1:16.20.2-3.el9_2.i686", + "product_id": "nodejs-libs-1:16.20.2-3.el9_2.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-libs@16.20.2-3.el9_2?arch=i686&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:16.20.2-3.el9_2.i686", + "product": { + "name": "nodejs-debugsource-1:16.20.2-3.el9_2.i686", + "product_id": "nodejs-debugsource-1:16.20.2-3.el9_2.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@16.20.2-3.el9_2?arch=i686&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:16.20.2-3.el9_2.i686", + "product": { + "name": "nodejs-debuginfo-1:16.20.2-3.el9_2.i686", + "product_id": "nodejs-debuginfo-1:16.20.2-3.el9_2.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@16.20.2-3.el9_2?arch=i686&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.i686", + "product": { + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.i686", + "product_id": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.i686", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-libs-debuginfo@16.20.2-3.el9_2?arch=i686&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "i686" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-1:16.20.2-3.el9_2.s390x", + "product": { + "name": "nodejs-1:16.20.2-3.el9_2.s390x", + "product_id": "nodejs-1:16.20.2-3.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs@16.20.2-3.el9_2?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-full-i18n-1:16.20.2-3.el9_2.s390x", + "product": { + "name": "nodejs-full-i18n-1:16.20.2-3.el9_2.s390x", + "product_id": "nodejs-full-i18n-1:16.20.2-3.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-full-i18n@16.20.2-3.el9_2?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-libs-1:16.20.2-3.el9_2.s390x", + "product": { + "name": "nodejs-libs-1:16.20.2-3.el9_2.s390x", + "product_id": "nodejs-libs-1:16.20.2-3.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-libs@16.20.2-3.el9_2?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "npm-1:8.19.4-1.16.20.2.3.el9_2.s390x", + "product": { + "name": "npm-1:8.19.4-1.16.20.2.3.el9_2.s390x", + "product_id": "npm-1:8.19.4-1.16.20.2.3.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/npm@8.19.4-1.16.20.2.3.el9_2?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debugsource-1:16.20.2-3.el9_2.s390x", + "product": { + "name": "nodejs-debugsource-1:16.20.2-3.el9_2.s390x", + "product_id": "nodejs-debugsource-1:16.20.2-3.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debugsource@16.20.2-3.el9_2?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-debuginfo-1:16.20.2-3.el9_2.s390x", + "product": { + "name": "nodejs-debuginfo-1:16.20.2-3.el9_2.s390x", + "product_id": "nodejs-debuginfo-1:16.20.2-3.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-debuginfo@16.20.2-3.el9_2?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.s390x", + "product": { + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.s390x", + "product_id": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-libs-debuginfo@16.20.2-3.el9_2?arch=s390x&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nodejs-docs-1:16.20.2-3.el9_2.noarch", + "product": { + "name": "nodejs-docs-1:16.20.2-3.el9_2.noarch", + "product_id": "nodejs-docs-1:16.20.2-3.el9_2.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nodejs-docs@16.20.2-3.el9_2?arch=noarch&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "go-toolset-1.19-0:1.19.13-1.el7_9.src", + "product": { + "name": "go-toolset-1.19-0:1.19.13-1.el7_9.src", + "product_id": "go-toolset-1.19-0:1.19.13-1.el7_9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19@1.19.13-1.el7_9?arch=src" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.src", + "product": { + "name": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.src", + "product_id": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-golang@1.19.13-2.el7_9?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "go-toolset-1.19-0:1.19.13-1.el7_9.x86_64", + "product": { + "name": "go-toolset-1.19-0:1.19.13-1.el7_9.x86_64", + "product_id": "go-toolset-1.19-0:1.19.13-1.el7_9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19@1.19.13-1.el7_9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-build-0:1.19.13-1.el7_9.x86_64", + "product": { + "name": "go-toolset-1.19-build-0:1.19.13-1.el7_9.x86_64", + "product_id": "go-toolset-1.19-build-0:1.19.13-1.el7_9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-build@1.19.13-1.el7_9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-runtime-0:1.19.13-1.el7_9.x86_64", + "product": { + "name": "go-toolset-1.19-runtime-0:1.19.13-1.el7_9.x86_64", + "product_id": "go-toolset-1.19-runtime-0:1.19.13-1.el7_9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-runtime@1.19.13-1.el7_9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.x86_64", + "product": { + "name": "go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.x86_64", + "product_id": "go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-scldevel@1.19.13-1.el7_9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.x86_64", + "product": { + "name": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.x86_64", + "product_id": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-golang@1.19.13-2.el7_9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.x86_64", + "product": { + "name": "go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.x86_64", + "product_id": "go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-golang-bin@1.19.13-2.el7_9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.x86_64", + "product": { + "name": "go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.x86_64", + "product_id": "go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-golang-misc@1.19.13-2.el7_9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-golang-race-0:1.19.13-2.el7_9.x86_64", + "product": { + "name": "go-toolset-1.19-golang-race-0:1.19.13-2.el7_9.x86_64", + "product_id": "go-toolset-1.19-golang-race-0:1.19.13-2.el7_9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-golang-race@1.19.13-2.el7_9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.x86_64", + "product": { + "name": "go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.x86_64", + "product_id": "go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-golang-src@1.19.13-2.el7_9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.x86_64", + "product": { + "name": "go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.x86_64", + "product_id": "go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-golang-tests@1.19.13-2.el7_9?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "go-toolset-1.19-0:1.19.13-1.el7_9.s390x", + "product": { + "name": "go-toolset-1.19-0:1.19.13-1.el7_9.s390x", + "product_id": "go-toolset-1.19-0:1.19.13-1.el7_9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19@1.19.13-1.el7_9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-build-0:1.19.13-1.el7_9.s390x", + "product": { + "name": "go-toolset-1.19-build-0:1.19.13-1.el7_9.s390x", + "product_id": "go-toolset-1.19-build-0:1.19.13-1.el7_9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-build@1.19.13-1.el7_9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-runtime-0:1.19.13-1.el7_9.s390x", + "product": { + "name": "go-toolset-1.19-runtime-0:1.19.13-1.el7_9.s390x", + "product_id": "go-toolset-1.19-runtime-0:1.19.13-1.el7_9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-runtime@1.19.13-1.el7_9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.s390x", + "product": { + "name": "go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.s390x", + "product_id": "go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-scldevel@1.19.13-1.el7_9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.s390x", + "product": { + "name": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.s390x", + "product_id": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-golang@1.19.13-2.el7_9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.s390x", + "product": { + "name": "go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.s390x", + "product_id": "go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-golang-bin@1.19.13-2.el7_9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.s390x", + "product": { + "name": "go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.s390x", + "product_id": "go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-golang-misc@1.19.13-2.el7_9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.s390x", + "product": { + "name": "go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.s390x", + "product_id": "go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-golang-src@1.19.13-2.el7_9?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.s390x", + "product": { + "name": "go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.s390x", + "product_id": "go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-golang-tests@1.19.13-2.el7_9?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "go-toolset-1.19-0:1.19.13-1.el7_9.ppc64le", + "product": { + "name": "go-toolset-1.19-0:1.19.13-1.el7_9.ppc64le", + "product_id": "go-toolset-1.19-0:1.19.13-1.el7_9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19@1.19.13-1.el7_9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-build-0:1.19.13-1.el7_9.ppc64le", + "product": { + "name": "go-toolset-1.19-build-0:1.19.13-1.el7_9.ppc64le", + "product_id": "go-toolset-1.19-build-0:1.19.13-1.el7_9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-build@1.19.13-1.el7_9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-runtime-0:1.19.13-1.el7_9.ppc64le", + "product": { + "name": "go-toolset-1.19-runtime-0:1.19.13-1.el7_9.ppc64le", + "product_id": "go-toolset-1.19-runtime-0:1.19.13-1.el7_9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-runtime@1.19.13-1.el7_9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.ppc64le", + "product": { + "name": "go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.ppc64le", + "product_id": "go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-scldevel@1.19.13-1.el7_9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.ppc64le", + "product": { + "name": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.ppc64le", + "product_id": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-golang@1.19.13-2.el7_9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.ppc64le", + "product": { + "name": "go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.ppc64le", + "product_id": "go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-golang-bin@1.19.13-2.el7_9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.ppc64le", + "product": { + "name": "go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.ppc64le", + "product_id": "go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-golang-misc@1.19.13-2.el7_9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.ppc64le", + "product": { + "name": "go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.ppc64le", + "product_id": "go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-golang-src@1.19.13-2.el7_9?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.ppc64le", + "product": { + "name": "go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.ppc64le", + "product_id": "go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-golang-tests@1.19.13-2.el7_9?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "go-toolset-1.19-golang-docs-0:1.19.13-2.el7_9.noarch", + "product": { + "name": "go-toolset-1.19-golang-docs-0:1.19.13-2.el7_9.noarch", + "product_id": "go-toolset-1.19-golang-docs-0:1.19.13-2.el7_9.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset-1.19-golang-docs@1.19.13-2.el7_9?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.aarch64", + "product": { + "name": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.aarch64", + "product_id": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset@1.19.13-1.module%2Bel8.8.0%2B20380%2B7171fefb?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.aarch64", + "product": { + "name": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.aarch64", + "product_id": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang@1.19.13-1.module%2Bel8.8.0%2B20373%2Bd9cd605c?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "golang-bin-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.aarch64", + "product": { + "name": "golang-bin-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.aarch64", + "product_id": "golang-bin-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang-bin@1.19.13-1.module%2Bel8.8.0%2B20373%2Bd9cd605c?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.src", + "product": { + "name": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.src", + "product_id": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset@1.19.13-1.module%2Bel8.8.0%2B20380%2B7171fefb?arch=src" + } + } + }, + { + "category": "product_version", + "name": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.src", + "product": { + "name": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.src", + "product_id": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang@1.19.13-1.module%2Bel8.8.0%2B20373%2Bd9cd605c?arch=src" + } + } + }, + { + "category": "product_version", + "name": "delve-0:1.9.1-1.module+el8.8.0+16778+5fbb74f5.src", + "product": { + "name": "delve-0:1.9.1-1.module+el8.8.0+16778+5fbb74f5.src", + "product_id": "delve-0:1.9.1-1.module+el8.8.0+16778+5fbb74f5.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/delve@1.9.1-1.module%2Bel8.8.0%2B16778%2B5fbb74f5?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "golang-docs-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.noarch", + "product": { + "name": "golang-docs-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.noarch", + "product_id": "golang-docs-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang-docs@1.19.13-1.module%2Bel8.8.0%2B20373%2Bd9cd605c?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "golang-misc-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.noarch", + "product": { + "name": "golang-misc-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.noarch", + "product_id": "golang-misc-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang-misc@1.19.13-1.module%2Bel8.8.0%2B20373%2Bd9cd605c?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "golang-src-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.noarch", + "product": { + "name": "golang-src-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.noarch", + "product_id": "golang-src-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang-src@1.19.13-1.module%2Bel8.8.0%2B20373%2Bd9cd605c?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "golang-tests-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.noarch", + "product": { + "name": "golang-tests-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.noarch", + "product_id": "golang-tests-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang-tests@1.19.13-1.module%2Bel8.8.0%2B20373%2Bd9cd605c?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.ppc64le", + "product": { + "name": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.ppc64le", + "product_id": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset@1.19.13-1.module%2Bel8.8.0%2B20380%2B7171fefb?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.ppc64le", + "product": { + "name": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.ppc64le", + "product_id": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang@1.19.13-1.module%2Bel8.8.0%2B20373%2Bd9cd605c?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "golang-bin-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.ppc64le", + "product": { + "name": "golang-bin-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.ppc64le", + "product_id": "golang-bin-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang-bin@1.19.13-1.module%2Bel8.8.0%2B20373%2Bd9cd605c?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.s390x", + "product": { + "name": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.s390x", + "product_id": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset@1.19.13-1.module%2Bel8.8.0%2B20380%2B7171fefb?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.s390x", + "product": { + "name": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.s390x", + "product_id": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang@1.19.13-1.module%2Bel8.8.0%2B20373%2Bd9cd605c?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "golang-bin-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.s390x", + "product": { + "name": "golang-bin-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.s390x", + "product_id": "golang-bin-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang-bin@1.19.13-1.module%2Bel8.8.0%2B20373%2Bd9cd605c?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "delve-0:1.9.1-1.module+el8.8.0+16778+5fbb74f5.x86_64", + "product": { + "name": "delve-0:1.9.1-1.module+el8.8.0+16778+5fbb74f5.x86_64", + "product_id": "delve-0:1.9.1-1.module+el8.8.0+16778+5fbb74f5.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/delve@1.9.1-1.module%2Bel8.8.0%2B16778%2B5fbb74f5?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "delve-debuginfo-0:1.9.1-1.module+el8.8.0+16778+5fbb74f5.x86_64", + "product": { + "name": "delve-debuginfo-0:1.9.1-1.module+el8.8.0+16778+5fbb74f5.x86_64", + "product_id": "delve-debuginfo-0:1.9.1-1.module+el8.8.0+16778+5fbb74f5.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/delve-debuginfo@1.9.1-1.module%2Bel8.8.0%2B16778%2B5fbb74f5?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "delve-debugsource-0:1.9.1-1.module+el8.8.0+16778+5fbb74f5.x86_64", + "product": { + "name": "delve-debugsource-0:1.9.1-1.module+el8.8.0+16778+5fbb74f5.x86_64", + "product_id": "delve-debugsource-0:1.9.1-1.module+el8.8.0+16778+5fbb74f5.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/delve-debugsource@1.9.1-1.module%2Bel8.8.0%2B16778%2B5fbb74f5?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.x86_64", + "product": { + "name": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.x86_64", + "product_id": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset@1.19.13-1.module%2Bel8.8.0%2B20380%2B7171fefb?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.x86_64", + "product": { + "name": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.x86_64", + "product_id": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang@1.19.13-1.module%2Bel8.8.0%2B20373%2Bd9cd605c?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "golang-bin-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.x86_64", + "product": { + "name": "golang-bin-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.x86_64", + "product_id": "golang-bin-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang-bin@1.19.13-1.module%2Bel8.8.0%2B20373%2Bd9cd605c?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "golang-race-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.x86_64", + "product": { + "name": "golang-race-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.x86_64", + "product_id": "golang-race-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang-race@1.19.13-1.module%2Bel8.8.0%2B20373%2Bd9cd605c?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.aarch64", + "product": { + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.aarch64", + "product_id": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-7.0-source-built-artifacts@7.0.112-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.aarch64", + "product": { + "name": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.aarch64", + "product_id": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet7.0-debugsource@7.0.112-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64", + "product": { + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64", + "product_id": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-7.0-debuginfo@7.0.12-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.aarch64", + "product": { + "name": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.aarch64", + "product_id": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host-debuginfo@7.0.12-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64", + "product": { + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64", + "product_id": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-7.0-debuginfo@7.0.12-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64", + "product": { + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64", + "product_id": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-7.0-debuginfo@7.0.12-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.aarch64", + "product": { + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.aarch64", + "product_id": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-7.0-debuginfo@7.0.112-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.aarch64", + "product": { + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.aarch64", + "product_id": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet7.0-debuginfo@7.0.112-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.aarch64", + "product": { + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.aarch64", + "product_id": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-runtime-7.0@7.0.12-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.aarch64", + "product": { + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.aarch64", + "product_id": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-targeting-pack-7.0@7.0.12-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.aarch64", + "product": { + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.aarch64", + "product_id": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-7.0@7.0.12-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-0:7.0.12-1.el9_2.aarch64", + "product": { + "name": "dotnet-host-0:7.0.12-1.el9_2.aarch64", + "product_id": "dotnet-host-0:7.0.12-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host@7.0.12-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.aarch64", + "product": { + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.aarch64", + "product_id": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-7.0@7.0.12-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.aarch64", + "product": { + "name": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.aarch64", + "product_id": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-7.0@7.0.12-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.aarch64", + "product": { + "name": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.aarch64", + "product_id": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-7.0@7.0.112-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.aarch64", + "product": { + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.aarch64", + "product_id": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-targeting-pack-7.0@7.0.12-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-templates-7.0-0:7.0.112-1.el9_2.aarch64", + "product": { + "name": "dotnet-templates-7.0-0:7.0.112-1.el9_2.aarch64", + "product_id": "dotnet-templates-7.0-0:7.0.112-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-templates-7.0@7.0.112-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.aarch64", + "product": { + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.aarch64", + "product_id": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/netstandard-targeting-pack-2.1@7.0.112-1.el9_2?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.ppc64le", + "product": { + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.ppc64le", + "product_id": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-7.0-source-built-artifacts@7.0.112-1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.ppc64le", + "product": { + "name": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.ppc64le", + "product_id": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet7.0-debugsource@7.0.112-1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le", + "product": { + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le", + "product_id": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-7.0-debuginfo@7.0.12-1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.ppc64le", + "product": { + "name": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.ppc64le", + "product_id": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host-debuginfo@7.0.12-1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le", + "product": { + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le", + "product_id": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-7.0-debuginfo@7.0.12-1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le", + "product": { + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le", + "product_id": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-7.0-debuginfo@7.0.12-1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.ppc64le", + "product": { + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.ppc64le", + "product_id": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-7.0-debuginfo@7.0.112-1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.ppc64le", + "product": { + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.ppc64le", + "product_id": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet7.0-debuginfo@7.0.112-1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.ppc64le", + "product": { + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.ppc64le", + "product_id": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-runtime-7.0@7.0.12-1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.ppc64le", + "product": { + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.ppc64le", + "product_id": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-targeting-pack-7.0@7.0.12-1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.ppc64le", + "product": { + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.ppc64le", + "product_id": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-7.0@7.0.12-1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-0:7.0.12-1.el9_2.ppc64le", + "product": { + "name": "dotnet-host-0:7.0.12-1.el9_2.ppc64le", + "product_id": "dotnet-host-0:7.0.12-1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host@7.0.12-1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.ppc64le", + "product": { + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.ppc64le", + "product_id": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-7.0@7.0.12-1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.ppc64le", + "product": { + "name": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.ppc64le", + "product_id": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-7.0@7.0.12-1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.ppc64le", + "product": { + "name": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.ppc64le", + "product_id": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-7.0@7.0.112-1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.ppc64le", + "product": { + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.ppc64le", + "product_id": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-targeting-pack-7.0@7.0.12-1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-templates-7.0-0:7.0.112-1.el9_2.ppc64le", + "product": { + "name": "dotnet-templates-7.0-0:7.0.112-1.el9_2.ppc64le", + "product_id": "dotnet-templates-7.0-0:7.0.112-1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-templates-7.0@7.0.112-1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.ppc64le", + "product": { + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.ppc64le", + "product_id": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/netstandard-targeting-pack-2.1@7.0.112-1.el9_2?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.x86_64", + "product": { + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.x86_64", + "product_id": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-7.0-source-built-artifacts@7.0.112-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.x86_64", + "product": { + "name": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.x86_64", + "product_id": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet7.0-debugsource@7.0.112-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64", + "product": { + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64", + "product_id": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-7.0-debuginfo@7.0.12-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.x86_64", + "product": { + "name": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.x86_64", + "product_id": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host-debuginfo@7.0.12-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64", + "product": { + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64", + "product_id": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-7.0-debuginfo@7.0.12-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64", + "product": { + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64", + "product_id": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-7.0-debuginfo@7.0.12-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.x86_64", + "product": { + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.x86_64", + "product_id": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-7.0-debuginfo@7.0.112-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.x86_64", + "product": { + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.x86_64", + "product_id": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet7.0-debuginfo@7.0.112-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.x86_64", + "product": { + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.x86_64", + "product_id": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-runtime-7.0@7.0.12-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.x86_64", + "product": { + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.x86_64", + "product_id": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-targeting-pack-7.0@7.0.12-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.x86_64", + "product": { + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.x86_64", + "product_id": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-7.0@7.0.12-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-0:7.0.12-1.el9_2.x86_64", + "product": { + "name": "dotnet-host-0:7.0.12-1.el9_2.x86_64", + "product_id": "dotnet-host-0:7.0.12-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host@7.0.12-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.x86_64", + "product": { + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.x86_64", + "product_id": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-7.0@7.0.12-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.x86_64", + "product": { + "name": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.x86_64", + "product_id": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-7.0@7.0.12-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.x86_64", + "product": { + "name": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.x86_64", + "product_id": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-7.0@7.0.112-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.x86_64", + "product": { + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.x86_64", + "product_id": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-targeting-pack-7.0@7.0.12-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-templates-7.0-0:7.0.112-1.el9_2.x86_64", + "product": { + "name": "dotnet-templates-7.0-0:7.0.112-1.el9_2.x86_64", + "product_id": "dotnet-templates-7.0-0:7.0.112-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-templates-7.0@7.0.112-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.x86_64", + "product": { + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.x86_64", + "product_id": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/netstandard-targeting-pack-2.1@7.0.112-1.el9_2?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.s390x", + "product": { + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.s390x", + "product_id": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-7.0-source-built-artifacts@7.0.112-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.s390x", + "product": { + "name": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.s390x", + "product_id": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet7.0-debugsource@7.0.112-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.s390x", + "product": { + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.s390x", + "product_id": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-7.0-debuginfo@7.0.12-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.s390x", + "product": { + "name": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.s390x", + "product_id": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host-debuginfo@7.0.12-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.s390x", + "product": { + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.s390x", + "product_id": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-7.0-debuginfo@7.0.12-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.s390x", + "product": { + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.s390x", + "product_id": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-7.0-debuginfo@7.0.12-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.s390x", + "product": { + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.s390x", + "product_id": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-7.0-debuginfo@7.0.112-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.s390x", + "product": { + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.s390x", + "product_id": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet7.0-debuginfo@7.0.112-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.s390x", + "product": { + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.s390x", + "product_id": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-runtime-7.0@7.0.12-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.s390x", + "product": { + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.s390x", + "product_id": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-targeting-pack-7.0@7.0.12-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.s390x", + "product": { + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.s390x", + "product_id": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-7.0@7.0.12-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-0:7.0.12-1.el9_2.s390x", + "product": { + "name": "dotnet-host-0:7.0.12-1.el9_2.s390x", + "product_id": "dotnet-host-0:7.0.12-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host@7.0.12-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.s390x", + "product": { + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.s390x", + "product_id": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-7.0@7.0.12-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.s390x", + "product": { + "name": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.s390x", + "product_id": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-7.0@7.0.12-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.s390x", + "product": { + "name": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.s390x", + "product_id": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-7.0@7.0.112-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.s390x", + "product": { + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.s390x", + "product_id": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-targeting-pack-7.0@7.0.12-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-templates-7.0-0:7.0.112-1.el9_2.s390x", + "product": { + "name": "dotnet-templates-7.0-0:7.0.112-1.el9_2.s390x", + "product_id": "dotnet-templates-7.0-0:7.0.112-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-templates-7.0@7.0.112-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.s390x", + "product": { + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.s390x", + "product_id": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/netstandard-targeting-pack-2.1@7.0.112-1.el9_2?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "dotnet7.0-0:7.0.112-1.el9_2.src", + "product": { + "name": "dotnet7.0-0:7.0.112-1.el9_2.src", + "product_id": "dotnet7.0-0:7.0.112-1.el9_2.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet7.0@7.0.112-1.el9_2?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "golang-0:1.19.13-1.el9_2.src", + "product": { + "name": "golang-0:1.19.13-1.el9_2.src", + "product_id": "golang-0:1.19.13-1.el9_2.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang@1.19.13-1.el9_2?arch=src" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-0:1.19.13-1.el9_2.src", + "product": { + "name": "go-toolset-0:1.19.13-1.el9_2.src", + "product_id": "go-toolset-0:1.19.13-1.el9_2.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset@1.19.13-1.el9_2?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "golang-0:1.19.13-1.el9_2.aarch64", + "product": { + "name": "golang-0:1.19.13-1.el9_2.aarch64", + "product_id": "golang-0:1.19.13-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang@1.19.13-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "golang-bin-0:1.19.13-1.el9_2.aarch64", + "product": { + "name": "golang-bin-0:1.19.13-1.el9_2.aarch64", + "product_id": "golang-bin-0:1.19.13-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang-bin@1.19.13-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-0:1.19.13-1.el9_2.aarch64", + "product": { + "name": "go-toolset-0:1.19.13-1.el9_2.aarch64", + "product_id": "go-toolset-0:1.19.13-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset@1.19.13-1.el9_2?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "golang-0:1.19.13-1.el9_2.ppc64le", + "product": { + "name": "golang-0:1.19.13-1.el9_2.ppc64le", + "product_id": "golang-0:1.19.13-1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang@1.19.13-1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "golang-bin-0:1.19.13-1.el9_2.ppc64le", + "product": { + "name": "golang-bin-0:1.19.13-1.el9_2.ppc64le", + "product_id": "golang-bin-0:1.19.13-1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang-bin@1.19.13-1.el9_2?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-0:1.19.13-1.el9_2.ppc64le", + "product": { + "name": "go-toolset-0:1.19.13-1.el9_2.ppc64le", + "product_id": "go-toolset-0:1.19.13-1.el9_2.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset@1.19.13-1.el9_2?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "golang-0:1.19.13-1.el9_2.x86_64", + "product": { + "name": "golang-0:1.19.13-1.el9_2.x86_64", + "product_id": "golang-0:1.19.13-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang@1.19.13-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "golang-bin-0:1.19.13-1.el9_2.x86_64", + "product": { + "name": "golang-bin-0:1.19.13-1.el9_2.x86_64", + "product_id": "golang-bin-0:1.19.13-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang-bin@1.19.13-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "golang-race-0:1.19.13-1.el9_2.x86_64", + "product": { + "name": "golang-race-0:1.19.13-1.el9_2.x86_64", + "product_id": "golang-race-0:1.19.13-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang-race@1.19.13-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-0:1.19.13-1.el9_2.x86_64", + "product": { + "name": "go-toolset-0:1.19.13-1.el9_2.x86_64", + "product_id": "go-toolset-0:1.19.13-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset@1.19.13-1.el9_2?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "golang-0:1.19.13-1.el9_2.s390x", + "product": { + "name": "golang-0:1.19.13-1.el9_2.s390x", + "product_id": "golang-0:1.19.13-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang@1.19.13-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "golang-bin-0:1.19.13-1.el9_2.s390x", + "product": { + "name": "golang-bin-0:1.19.13-1.el9_2.s390x", + "product_id": "golang-bin-0:1.19.13-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang-bin@1.19.13-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "go-toolset-0:1.19.13-1.el9_2.s390x", + "product": { + "name": "go-toolset-0:1.19.13-1.el9_2.s390x", + "product_id": "go-toolset-0:1.19.13-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/go-toolset@1.19.13-1.el9_2?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "golang-docs-0:1.19.13-1.el9_2.noarch", + "product": { + "name": "golang-docs-0:1.19.13-1.el9_2.noarch", + "product_id": "golang-docs-0:1.19.13-1.el9_2.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang-docs@1.19.13-1.el9_2?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "golang-misc-0:1.19.13-1.el9_2.noarch", + "product": { + "name": "golang-misc-0:1.19.13-1.el9_2.noarch", + "product_id": "golang-misc-0:1.19.13-1.el9_2.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang-misc@1.19.13-1.el9_2?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "golang-src-0:1.19.13-1.el9_2.noarch", + "product": { + "name": "golang-src-0:1.19.13-1.el9_2.noarch", + "product_id": "golang-src-0:1.19.13-1.el9_2.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang-src@1.19.13-1.el9_2?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "golang-tests-0:1.19.13-1.el9_2.noarch", + "product": { + "name": "golang-tests-0:1.19.13-1.el9_2.noarch", + "product_id": "golang-tests-0:1.19.13-1.el9_2.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/golang-tests@1.19.13-1.el9_2?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rh-nginx120-nginx-1:1.20.1-1.el7.1.src", + "product": { + "name": "rh-nginx120-nginx-1:1.20.1-1.el7.1.src", + "product_id": "rh-nginx120-nginx-1:1.20.1-1.el7.1.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nginx120-nginx@1.20.1-1.el7.1?arch=src&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rh-nginx120-nginx-1:1.20.1-1.el7.1.x86_64", + "product": { + "name": "rh-nginx120-nginx-1:1.20.1-1.el7.1.x86_64", + "product_id": "rh-nginx120-nginx-1:1.20.1-1.el7.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nginx120-nginx@1.20.1-1.el7.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.x86_64", + "product": { + "name": "rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.x86_64", + "product_id": "rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nginx120-nginx-mod-http-image-filter@1.20.1-1.el7.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.x86_64", + "product": { + "name": "rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.x86_64", + "product_id": "rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nginx120-nginx-mod-http-perl@1.20.1-1.el7.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.x86_64", + "product": { + "name": "rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.x86_64", + "product_id": "rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nginx120-nginx-mod-http-xslt-filter@1.20.1-1.el7.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.x86_64", + "product": { + "name": "rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.x86_64", + "product_id": "rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nginx120-nginx-mod-mail@1.20.1-1.el7.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.x86_64", + "product": { + "name": "rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.x86_64", + "product_id": "rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nginx120-nginx-mod-stream@1.20.1-1.el7.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.x86_64", + "product": { + "name": "rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.x86_64", + "product_id": "rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nginx120-nginx-debuginfo@1.20.1-1.el7.1?arch=x86_64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rh-nginx120-nginx-1:1.20.1-1.el7.1.s390x", + "product": { + "name": "rh-nginx120-nginx-1:1.20.1-1.el7.1.s390x", + "product_id": "rh-nginx120-nginx-1:1.20.1-1.el7.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nginx120-nginx@1.20.1-1.el7.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.s390x", + "product": { + "name": "rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.s390x", + "product_id": "rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nginx120-nginx-mod-http-image-filter@1.20.1-1.el7.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.s390x", + "product": { + "name": "rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.s390x", + "product_id": "rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nginx120-nginx-mod-http-perl@1.20.1-1.el7.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.s390x", + "product": { + "name": "rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.s390x", + "product_id": "rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nginx120-nginx-mod-http-xslt-filter@1.20.1-1.el7.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.s390x", + "product": { + "name": "rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.s390x", + "product_id": "rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nginx120-nginx-mod-mail@1.20.1-1.el7.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.s390x", + "product": { + "name": "rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.s390x", + "product_id": "rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nginx120-nginx-mod-stream@1.20.1-1.el7.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.s390x", + "product": { + "name": "rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.s390x", + "product_id": "rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nginx120-nginx-debuginfo@1.20.1-1.el7.1?arch=s390x&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rh-nginx120-nginx-1:1.20.1-1.el7.1.ppc64le", + "product": { + "name": "rh-nginx120-nginx-1:1.20.1-1.el7.1.ppc64le", + "product_id": "rh-nginx120-nginx-1:1.20.1-1.el7.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nginx120-nginx@1.20.1-1.el7.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.ppc64le", + "product": { + "name": "rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.ppc64le", + "product_id": "rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nginx120-nginx-mod-http-image-filter@1.20.1-1.el7.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.ppc64le", + "product": { + "name": "rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.ppc64le", + "product_id": "rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nginx120-nginx-mod-http-perl@1.20.1-1.el7.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.ppc64le", + "product": { + "name": "rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.ppc64le", + "product_id": "rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nginx120-nginx-mod-http-xslt-filter@1.20.1-1.el7.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.ppc64le", + "product": { + "name": "rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.ppc64le", + "product_id": "rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nginx120-nginx-mod-mail@1.20.1-1.el7.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.ppc64le", + "product": { + "name": "rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.ppc64le", + "product_id": "rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nginx120-nginx-mod-stream@1.20.1-1.el7.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.ppc64le", + "product": { + "name": "rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.ppc64le", + "product_id": "rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-nginx120-nginx-debuginfo@1.20.1-1.el7.1?arch=ppc64le&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "category": "product_version", + "name": "org.aesh.aesh-2.6.0.redhat-00001", + "product": { + "name": "org.aesh.aesh-2.6.0.redhat-00001", + "product_id": "org.aesh.aesh-2.6.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.aesh/aesh@2.6.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.agroal.agroal-api-1.17.0.redhat-00001", + "product": { + "name": "io.agroal.agroal-api-1.17.0.redhat-00001", + "product_id": "io.agroal.agroal-api-1.17.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.agroal/agroal-api@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.agroal.agroal-narayana-1.17.0.redhat-00001", + "product": { + "name": "io.agroal.agroal-narayana-1.17.0.redhat-00001", + "product_id": "io.agroal.agroal-narayana-1.17.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.agroal/agroal-narayana@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.agroal.agroal-pool-1.17.0.redhat-00001", + "product": { + "name": "io.agroal.agroal-pool-1.17.0.redhat-00001", + "product_id": "io.agroal.agroal-pool-1.17.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.agroal/agroal-pool@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jetbrains.annotations-17.0.0", + "product": { + "name": "org.jetbrains.annotations-17.0.0", + "product_id": "org.jetbrains.annotations-17.0.0", + "product_identification_helper": { + "purl": "pkg:maven/org.jetbrains/annotations@17.0.0?type=jar" + } + } + }, + { + "category": "product_version", + "name": "antlr.antlr-2.7.7", + "product": { + "name": "antlr.antlr-2.7.7", + "product_id": "antlr.antlr-2.7.7", + "product_identification_helper": { + "purl": "pkg:maven/antlr/antlr@2.7.7?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.antlr.antlr4-runtime-4.9.2.redhat-00003", + "product": { + "name": "org.antlr.antlr4-runtime-4.9.2.redhat-00003", + "product_id": "org.antlr.antlr4-runtime-4.9.2.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/org.antlr/antlr4-runtime@4.9.2.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "aopalliance.aopalliance-1.0", + "product": { + "name": "aopalliance.aopalliance-1.0", + "product_id": "aopalliance.aopalliance-1.0", + "product_identification_helper": { + "purl": "pkg:maven/aopalliance/aopalliance@1.0?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.james.apache-mime4j-core-0.8.9.redhat-00001", + "product": { + "name": "org.apache.james.apache-mime4j-core-0.8.9.redhat-00001", + "product_id": "org.apache.james.apache-mime4j-core-0.8.9.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.james/apache-mime4j-core@0.8.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.james.apache-mime4j-dom-0.8.9.redhat-00001", + "product": { + "name": "org.apache.james.apache-mime4j-dom-0.8.9.redhat-00001", + "product_id": "org.apache.james.apache-mime4j-dom-0.8.9.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.james/apache-mime4j-dom@0.8.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.james.apache-mime4j-storage-0.8.9.redhat-00001", + "product": { + "name": "org.apache.james.apache-mime4j-storage-0.8.9.redhat-00001", + "product_id": "org.apache.james.apache-mime4j-storage-0.8.9.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.james/apache-mime4j-storage@0.8.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apiguardian.apiguardian-api-1.1.2", + "product": { + "name": "org.apiguardian.apiguardian-api-1.1.2", + "product_id": "org.apiguardian.apiguardian-api-1.1.2", + "product_identification_helper": { + "purl": "pkg:maven/org.apiguardian/apiguardian-api@1.1.2?type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.arc.arc-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.arc.arc-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.arc.arc-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus.arc/arc@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.arc.arc-processor-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.arc.arc-processor-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.arc.arc-processor-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus.arc/arc-processor@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.ow2.asm.asm-9.3.0.redhat-00001", + "product": { + "name": "org.ow2.asm.asm-9.3.0.redhat-00001", + "product_id": "org.ow2.asm.asm-9.3.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.ow2.asm/asm@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.ow2.asm.asm-analysis-9.3.0.redhat-00001", + "product": { + "name": "org.ow2.asm.asm-analysis-9.3.0.redhat-00001", + "product_id": "org.ow2.asm.asm-analysis-9.3.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.ow2.asm/asm-analysis@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.ow2.asm.asm-commons-9.3.0.redhat-00001", + "product": { + "name": "org.ow2.asm.asm-commons-9.3.0.redhat-00001", + "product_id": "org.ow2.asm.asm-commons-9.3.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.ow2.asm/asm-commons@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.ow2.asm.asm-tree-9.3.0.redhat-00001", + "product": { + "name": "org.ow2.asm.asm-tree-9.3.0.redhat-00001", + "product_id": "org.ow2.asm.asm-tree-9.3.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.ow2.asm/asm-tree@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.ow2.asm.asm-util-9.3.0.redhat-00001", + "product": { + "name": "org.ow2.asm.asm-util-9.3.0.redhat-00001", + "product_id": "org.ow2.asm.asm-util-9.3.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.ow2.asm/asm-util@9.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.ibm.async.asyncutil-0.1.0.redhat-00010", + "product": { + "name": "com.ibm.async.asyncutil-0.1.0.redhat-00010", + "product_id": "com.ibm.async.asyncutil-0.1.0.redhat-00010", + "product_identification_helper": { + "purl": "pkg:maven/com.ibm.async/asyncutil@0.1.0.redhat-00010?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "dk.brics.automaton.automaton-1.11.8.redhat-1", + "product": { + "name": "dk.brics.automaton.automaton-1.11.8.redhat-1", + "product_id": "dk.brics.automaton.automaton-1.11.8.redhat-1", + "product_identification_helper": { + "purl": "pkg:maven/dk.brics.automaton/automaton@1.11.8.redhat-1?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.avro.avro-1.11.1.redhat-00002", + "product": { + "name": "org.apache.avro.avro-1.11.1.redhat-00002", + "product_id": "org.apache.avro.avro-1.11.1.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.avro/avro@1.11.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.avro.avro-compiler-1.11.1.redhat-00002", + "product": { + "name": "org.apache.avro.avro-compiler-1.11.1.redhat-00002", + "product_id": "org.apache.avro.avro-compiler-1.11.1.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.avro/avro-compiler@1.11.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.bouncycastle.bcpkix-jdk15on-1.70", + "product": { + "name": "org.bouncycastle.bcpkix-jdk15on-1.70", + "product_id": "org.bouncycastle.bcpkix-jdk15on-1.70", + "product_identification_helper": { + "purl": "pkg:maven/org.bouncycastle/bcpkix-jdk15on@1.70?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.bouncycastle.bcprov-jdk15on-1.70", + "product": { + "name": "org.bouncycastle.bcprov-jdk15on-1.70", + "product_id": "org.bouncycastle.bcprov-jdk15on-1.70", + "product_identification_helper": { + "purl": "pkg:maven/org.bouncycastle/bcprov-jdk15on@1.70?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.bouncycastle.bcutil-jdk15on-1.70", + "product": { + "name": "org.bouncycastle.bcutil-jdk15on-1.70", + "product_id": "org.bouncycastle.bcutil-jdk15on-1.70", + "product_identification_helper": { + "purl": "pkg:maven/org.bouncycastle/bcutil-jdk15on@1.70?type=jar" + } + } + }, + { + "category": "product_version", + "name": "biz.aQute.bnd.biz.aQute.bnd.transform-6.3.1", + "product": { + "name": "biz.aQute.bnd.biz.aQute.bnd.transform-6.3.1", + "product_id": "biz.aQute.bnd.biz.aQute.bnd.transform-6.3.1", + "product_identification_helper": { + "purl": "pkg:maven/biz.aQute.bnd/biz.aQute.bnd.transform@6.3.1?type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.aayushatharva.brotli4j.brotli4j-1.8.0.redhat-00003", + "product": { + "name": "com.aayushatharva.brotli4j.brotli4j-1.8.0.redhat-00003", + "product_id": "com.aayushatharva.brotli4j.brotli4j-1.8.0.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/com.aayushatharva.brotli4j/brotli4j@1.8.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.mongodb.bson-4.7.2", + "product": { + "name": "org.mongodb.bson-4.7.2", + "product_id": "org.mongodb.bson-4.7.2", + "product_identification_helper": { + "purl": "pkg:maven/org.mongodb/bson@4.7.2?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.mongodb.bson-record-codec-4.7.2", + "product": { + "name": "org.mongodb.bson-record-codec-4.7.2", + "product_id": "org.mongodb.bson-record-codec-4.7.2", + "product_identification_helper": { + "purl": "pkg:maven/org.mongodb/bson-record-codec@4.7.2?type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.github.java-json-tools.btf-1.3.0.redhat-00003", + "product": { + "name": "com.github.java-json-tools.btf-1.3.0.redhat-00003", + "product_id": "com.github.java-json-tools.btf-1.3.0.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/com.github.java-json-tools/btf@1.3.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "net.bytebuddy.byte-buddy-1.12.18.redhat-00003", + "product": { + "name": "net.bytebuddy.byte-buddy-1.12.18.redhat-00003", + "product_id": "net.bytebuddy.byte-buddy-1.12.18.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/net.bytebuddy/byte-buddy@1.12.18.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.github.ben-manes.caffeine.caffeine-2.9.3.redhat-00003", + "product": { + "name": "com.github.ben-manes.caffeine.caffeine-2.9.3.redhat-00003", + "product_id": "com.github.ben-manes.caffeine.caffeine-2.9.3.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/com.github.ben-manes.caffeine/caffeine@2.9.3.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.fasterxml.classmate-1.5.1.redhat-00001", + "product": { + "name": "com.fasterxml.classmate-1.5.1.redhat-00001", + "product_id": "com.fasterxml.classmate-1.5.1.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/com.fasterxml/classmate@1.5.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.ongres.scram.client-2.1.0.redhat-00002", + "product": { + "name": "com.ongres.scram.client-2.1.0.redhat-00002", + "product_id": "com.ongres.scram.client-2.1.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/com.ongres.scram/client@2.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.ongres.scram.common-2.1.0.redhat-00002", + "product": { + "name": "com.ongres.scram.common-2.1.0.redhat-00002", + "product_id": "com.ongres.scram.common-2.1.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/com.ongres.scram/common@2.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.commonmark.commonmark-0.19.0.redhat-00002", + "product": { + "name": "org.commonmark.commonmark-0.19.0.redhat-00002", + "product_id": "org.commonmark.commonmark-0.19.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.commonmark/commonmark@0.19.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "commons-cli.commons-cli-1.4", + "product": { + "name": "commons-cli.commons-cli-1.4", + "product_id": "commons-cli.commons-cli-1.4", + "product_identification_helper": { + "purl": "pkg:maven/commons-cli/commons-cli@1.4?type=jar" + } + } + }, + { + "category": "product_version", + "name": "commons-codec.commons-codec-1.15.0.redhat-00008", + "product": { + "name": "commons-codec.commons-codec-1.15.0.redhat-00008", + "product_id": "commons-codec.commons-codec-1.15.0.redhat-00008", + "product_identification_helper": { + "purl": "pkg:maven/commons-codec/commons-codec@1.15.0.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.commons.commons-compress-1.21.0.redhat-00001", + "product": { + "name": "org.apache.commons.commons-compress-1.21.0.redhat-00001", + "product_id": "org.apache.commons.commons-compress-1.21.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.commons/commons-compress@1.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "commons-io.commons-io-2.11.0.redhat-00001", + "product": { + "name": "commons-io.commons-io-2.11.0.redhat-00001", + "product_id": "commons-io.commons-io-2.11.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/commons-io/commons-io@2.11.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.commons.commons-lang3-3.12.0.redhat-00001", + "product": { + "name": "org.apache.commons.commons-lang3-3.12.0.redhat-00001", + "product_id": "org.apache.commons.commons-lang3-3.12.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.commons/commons-lang3@3.12.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.logging.commons-logging-jboss-logging-1.0.0.Final-redhat-1", + "product": { + "name": "org.jboss.logging.commons-logging-jboss-logging-1.0.0.Final-redhat-1", + "product_id": "org.jboss.logging.commons-logging-jboss-logging-1.0.0.Final-redhat-1", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.logging/commons-logging-jboss-logging@1.0.0.Final-redhat-1?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.commons.commons-text-1.10.0.redhat-00001", + "product": { + "name": "org.apache.commons.commons-text-1.10.0.redhat-00001", + "product_id": "org.apache.commons.commons-text-1.10.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.commons/commons-text@1.10.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.cronutils.cron-utils-9.2.0.redhat-00001", + "product": { + "name": "com.cronutils.cron-utils-9.2.0.redhat-00001", + "product_id": "com.cronutils.cron-utils-9.2.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/com.cronutils/cron-utils@9.2.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.testcontainers.database-commons-1.17.3", + "product": { + "name": "org.testcontainers.database-commons-1.17.3", + "product_id": "org.testcontainers.database-commons-1.17.3", + "product_identification_helper": { + "purl": "pkg:maven/org.testcontainers/database-commons@1.17.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.testcontainers.db2-1.17.3", + "product": { + "name": "org.testcontainers.db2-1.17.3", + "product_id": "org.testcontainers.db2-1.17.3", + "product_identification_helper": { + "purl": "pkg:maven/org.testcontainers/db2@1.17.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.dekorate.dekorate-core-2.11.3.redhat-00001", + "product": { + "name": "io.dekorate.dekorate-core-2.11.3.redhat-00001", + "product_id": "io.dekorate.dekorate-core-2.11.3.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.dekorate/dekorate-core@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.derby.derby-10.14.2.0", + "product": { + "name": "org.apache.derby.derby-10.14.2.0", + "product_id": "org.apache.derby.derby-10.14.2.0", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.derby/derby@10.14.2.0?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.derby.derbyclient-10.14.2.0", + "product": { + "name": "org.apache.derby.derbyclient-10.14.2.0", + "product_id": "org.apache.derby.derbyclient-10.14.2.0", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.derby/derbyclient@10.14.2.0?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.derby.derbynet-10.14.2.0", + "product": { + "name": "org.apache.derby.derbynet-10.14.2.0", + "product_id": "org.apache.derby.derbynet-10.14.2.0", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.derby/derbynet@10.14.2.0?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.derby.derbytools-10.14.2.0", + "product": { + "name": "org.apache.derby.derbytools-10.14.2.0", + "product_id": "org.apache.derby.derbytools-10.14.2.0", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.derby/derbytools@10.14.2.0?type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.dekorate.docker-annotations-2.11.3.redhat-00001", + "product": { + "name": "io.dekorate.docker-annotations-2.11.3.redhat-00001", + "product_id": "io.dekorate.docker-annotations-2.11.3.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.dekorate/docker-annotations@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.github.docker-java.docker-java-api-3.2.13", + "product": { + "name": "com.github.docker-java.docker-java-api-3.2.13", + "product_id": "com.github.docker-java.docker-java-api-3.2.13", + "product_identification_helper": { + "purl": "pkg:maven/com.github.docker-java/docker-java-api@3.2.13?type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.github.docker-java.docker-java-transport-3.2.13", + "product": { + "name": "com.github.docker-java.docker-java-transport-3.2.13", + "product_id": "com.github.docker-java.docker-java-transport-3.2.13", + "product_identification_helper": { + "purl": "pkg:maven/com.github.docker-java/docker-java-transport@3.2.13?type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.github.docker-java.docker-java-transport-zerodep-3.2.13", + "product": { + "name": "com.github.docker-java.docker-java-transport-zerodep-3.2.13", + "product_id": "com.github.docker-java.docker-java-transport-zerodep-3.2.13", + "product_identification_helper": { + "purl": "pkg:maven/com.github.docker-java/docker-java-transport-zerodep@3.2.13?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.rnorth.duct-tape.duct-tape-1.0.8", + "product": { + "name": "org.rnorth.duct-tape.duct-tape-1.0.8", + "product_id": "org.rnorth.duct-tape.duct-tape-1.0.8", + "product_identification_helper": { + "purl": "pkg:maven/org.rnorth.duct-tape/duct-tape@1.0.8?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.testcontainers.elasticsearch-1.17.3", + "product": { + "name": "org.testcontainers.elasticsearch-1.17.3", + "product_id": "org.testcontainers.elasticsearch-1.17.3", + "product_identification_helper": { + "purl": "pkg:maven/org.testcontainers/elasticsearch@1.17.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.elasticsearch.client.elasticsearch-rest-client-8.4.3.redhat-00002", + "product": { + "name": "org.elasticsearch.client.elasticsearch-rest-client-8.4.3.redhat-00002", + "product_id": "org.elasticsearch.client.elasticsearch-rest-client-8.4.3.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client@8.4.3.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.elasticsearch.client.elasticsearch-rest-client-sniffer-8.4.3.redhat-00002", + "product": { + "name": "org.elasticsearch.client.elasticsearch-rest-client-sniffer-8.4.3.redhat-00002", + "product_id": "org.elasticsearch.client.elasticsearch-rest-client-sniffer-8.4.3.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.elasticsearch.client/elasticsearch-rest-client-sniffer@8.4.3.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.google.errorprone.error_prone_annotations-2.15.0.redhat-00004", + "product": { + "name": "com.google.errorprone.error_prone_annotations-2.15.0.redhat-00004", + "product_id": "com.google.errorprone.error_prone_annotations-2.15.0.redhat-00004", + "product_identification_helper": { + "purl": "pkg:maven/com.google.errorprone/error_prone_annotations@2.15.0.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.google.guava.failureaccess-1.0.1.redhat-00004", + "product": { + "name": "com.google.guava.failureaccess-1.0.1.redhat-00004", + "product_id": "com.google.guava.failureaccess-1.0.1.redhat-00004", + "product_identification_helper": { + "purl": "pkg:maven/com.google.guava/failureaccess@1.0.1.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.freemarker.freemarker-2.3.31.redhat-00001", + "product": { + "name": "org.freemarker.freemarker-2.3.31.redhat-00001", + "product_id": "org.freemarker.freemarker-2.3.31.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.freemarker/freemarker@2.3.31.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.github.mifmif.generex-1.0.2.redhat-00003", + "product": { + "name": "com.github.mifmif.generex-1.0.2.redhat-00003", + "product_id": "com.github.mifmif.generex-1.0.2.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/com.github.mifmif/generex@1.0.2.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.gizmo.gizmo-1.1.1.Final-redhat-00001", + "product": { + "name": "io.quarkus.gizmo.gizmo-1.1.1.Final-redhat-00001", + "product_id": "io.quarkus.gizmo.gizmo-1.1.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus.gizmo/gizmo@1.1.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.graalvm.sdk.graal-sdk-22.3.2.0-2-redhat-00002", + "product": { + "name": "org.graalvm.sdk.graal-sdk-22.3.2.0-2-redhat-00002", + "product_id": "org.graalvm.sdk.graal-sdk-22.3.2.0-2-redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.graalvm.sdk/graal-sdk@22.3.2.0-2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.graphql-java.graphql-java-19.4.0.redhat-00001", + "product": { + "name": "com.graphql-java.graphql-java-19.4.0.redhat-00001", + "product_id": "com.graphql-java.graphql-java-19.4.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/com.graphql-java/graphql-java@19.4.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.grpc.grpc-api-1.49.0.redhat-00002", + "product": { + "name": "io.grpc.grpc-api-1.49.0.redhat-00002", + "product_id": "io.grpc.grpc-api-1.49.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.grpc/grpc-api@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.grpc.grpc-context-1.49.0.redhat-00002", + "product": { + "name": "io.grpc.grpc-context-1.49.0.redhat-00002", + "product_id": "io.grpc.grpc-context-1.49.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.grpc/grpc-context@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.grpc.grpc-core-1.49.0.redhat-00002", + "product": { + "name": "io.grpc.grpc-core-1.49.0.redhat-00002", + "product_id": "io.grpc.grpc-core-1.49.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.grpc/grpc-core@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.grpc.grpc-netty-1.49.0.redhat-00002", + "product": { + "name": "io.grpc.grpc-netty-1.49.0.redhat-00002", + "product_id": "io.grpc.grpc-netty-1.49.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.grpc/grpc-netty@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.grpc.grpc-protobuf-1.49.0.redhat-00002", + "product": { + "name": "io.grpc.grpc-protobuf-1.49.0.redhat-00002", + "product_id": "io.grpc.grpc-protobuf-1.49.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.grpc/grpc-protobuf@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.grpc.grpc-protobuf-lite-1.49.0.redhat-00002", + "product": { + "name": "io.grpc.grpc-protobuf-lite-1.49.0.redhat-00002", + "product_id": "io.grpc.grpc-protobuf-lite-1.49.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.grpc/grpc-protobuf-lite@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.grpc.grpc-stub-1.49.0.redhat-00002", + "product": { + "name": "io.grpc.grpc-stub-1.49.0.redhat-00002", + "product_id": "io.grpc.grpc-stub-1.49.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.grpc/grpc-stub@1.49.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.google.code.gson.gson-2.9.1.redhat-00003", + "product": { + "name": "com.google.code.gson.gson-2.9.1.redhat-00003", + "product_id": "com.google.code.gson.gson-2.9.1.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/com.google.code.gson/gson@2.9.1.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.google.guava.guava-31.1.0.jre-redhat-00004", + "product": { + "name": "com.google.guava.guava-31.1.0.jre-redhat-00004", + "product_id": "com.google.guava.guava-31.1.0.jre-redhat-00004", + "product_identification_helper": { + "purl": "pkg:maven/com.google.guava/guava@31.1.0.jre-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.google.inject.guice-4.2.2", + "product": { + "name": "com.google.inject.guice-4.2.2", + "product_id": "com.google.inject.guice-4.2.2", + "product_identification_helper": { + "purl": "pkg:maven/com.google.inject/guice@4.2.2?classifier=no_aop&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.h2database.h2-2.1.214", + "product": { + "name": "com.h2database.h2-2.1.214", + "product_id": "com.h2database.h2-2.1.214", + "product_identification_helper": { + "purl": "pkg:maven/com.h2database/h2@2.1.214?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.hdrhistogram.HdrHistogram-2.1.12.redhat-00002", + "product": { + "name": "org.hdrhistogram.HdrHistogram-2.1.12.redhat-00002", + "product_id": "org.hdrhistogram.HdrHistogram-2.1.12.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.hdrhistogram/HdrHistogram@2.1.12.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.hibernate.common.hibernate-commons-annotations-5.1.2.Final", + "product": { + "name": "org.hibernate.common.hibernate-commons-annotations-5.1.2.Final", + "product_id": "org.hibernate.common.hibernate-commons-annotations-5.1.2.Final", + "product_identification_helper": { + "purl": "pkg:maven/org.hibernate.common/hibernate-commons-annotations@5.1.2.Final?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.hibernate.hibernate-core-5.6.15.Final", + "product": { + "name": "org.hibernate.hibernate-core-5.6.15.Final", + "product_id": "org.hibernate.hibernate-core-5.6.15.Final", + "product_identification_helper": { + "purl": "pkg:maven/org.hibernate/hibernate-core@5.6.15.Final?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.hibernate.hibernate-graalvm-5.6.15.Final", + "product": { + "name": "org.hibernate.hibernate-graalvm-5.6.15.Final", + "product_id": "org.hibernate.hibernate-graalvm-5.6.15.Final", + "product_identification_helper": { + "purl": "pkg:maven/org.hibernate/hibernate-graalvm@5.6.15.Final?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.hibernate.reactive.hibernate-reactive-core-1.1.8.Final-redhat-00001", + "product": { + "name": "org.hibernate.reactive.hibernate-reactive-core-1.1.8.Final-redhat-00001", + "product_id": "org.hibernate.reactive.hibernate-reactive-core-1.1.8.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.hibernate.reactive/hibernate-reactive-core@1.1.8.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.hibernate.search.hibernate-search-backend-elasticsearch-6.1.7.Final-redhat-00002", + "product": { + "name": "org.hibernate.search.hibernate-search-backend-elasticsearch-6.1.7.Final-redhat-00002", + "product_id": "org.hibernate.search.hibernate-search-backend-elasticsearch-6.1.7.Final-redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.hibernate.search/hibernate-search-backend-elasticsearch@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.hibernate.search.hibernate-search-engine-6.1.7.Final-redhat-00002", + "product": { + "name": "org.hibernate.search.hibernate-search-engine-6.1.7.Final-redhat-00002", + "product_id": "org.hibernate.search.hibernate-search-engine-6.1.7.Final-redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.hibernate.search/hibernate-search-engine@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.hibernate.search.hibernate-search-mapper-orm-6.1.7.Final-redhat-00002", + "product": { + "name": "org.hibernate.search.hibernate-search-mapper-orm-6.1.7.Final-redhat-00002", + "product_id": "org.hibernate.search.hibernate-search-mapper-orm-6.1.7.Final-redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-orm@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.hibernate.search.hibernate-search-mapper-pojo-base-6.1.7.Final-redhat-00002", + "product": { + "name": "org.hibernate.search.hibernate-search-mapper-pojo-base-6.1.7.Final-redhat-00002", + "product_id": "org.hibernate.search.hibernate-search-mapper-pojo-base-6.1.7.Final-redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.hibernate.search/hibernate-search-mapper-pojo-base@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.hibernate.search.hibernate-search-util-common-6.1.7.Final-redhat-00002", + "product": { + "name": "org.hibernate.search.hibernate-search-util-common-6.1.7.Final-redhat-00002", + "product_id": "org.hibernate.search.hibernate-search-util-common-6.1.7.Final-redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.hibernate.search/hibernate-search-util-common@6.1.7.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.hibernate.validator.hibernate-validator-6.2.5.Final-redhat-00001", + "product": { + "name": "org.hibernate.validator.hibernate-validator-6.2.5.Final-redhat-00001", + "product_id": "org.hibernate.validator.hibernate-validator-6.2.5.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.hibernate.validator/hibernate-validator@6.2.5.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.httpcomponents.httpasyncclient-4.1.5.redhat-00001", + "product": { + "name": "org.apache.httpcomponents.httpasyncclient-4.1.5.redhat-00001", + "product_id": "org.apache.httpcomponents.httpasyncclient-4.1.5.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.httpcomponents/httpasyncclient@4.1.5.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.httpcomponents.httpclient-4.5.13.redhat-00002", + "product": { + "name": "org.apache.httpcomponents.httpclient-4.5.13.redhat-00002", + "product_id": "org.apache.httpcomponents.httpclient-4.5.13.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.httpcomponents/httpclient@4.5.13.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.httpcomponents.httpcore-4.4.15.redhat-00003", + "product": { + "name": "org.apache.httpcomponents.httpcore-4.4.15.redhat-00003", + "product_id": "org.apache.httpcomponents.httpcore-4.4.15.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.httpcomponents/httpcore@4.4.15.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.httpcomponents.httpcore-nio-4.4.15.redhat-00003", + "product": { + "name": "org.apache.httpcomponents.httpcore-nio-4.4.15.redhat-00003", + "product_id": "org.apache.httpcomponents.httpcore-nio-4.4.15.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.httpcomponents/httpcore-nio@4.4.15.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.infinispan.infinispan-api-14.0.9.Final-redhat-00001", + "product": { + "name": "org.infinispan.infinispan-api-14.0.9.Final-redhat-00001", + "product_id": "org.infinispan.infinispan-api-14.0.9.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.infinispan/infinispan-api@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.infinispan.infinispan-client-hotrod-14.0.9.Final-redhat-00001", + "product": { + "name": "org.infinispan.infinispan-client-hotrod-14.0.9.Final-redhat-00001", + "product_id": "org.infinispan.infinispan-client-hotrod-14.0.9.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.infinispan/infinispan-client-hotrod@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.infinispan.infinispan-commons-14.0.9.Final-redhat-00001", + "product": { + "name": "org.infinispan.infinispan-commons-14.0.9.Final-redhat-00001", + "product_id": "org.infinispan.infinispan-commons-14.0.9.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.infinispan/infinispan-commons@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.infinispan.infinispan-commons-test-14.0.9.Final", + "product": { + "name": "org.infinispan.infinispan-commons-test-14.0.9.Final", + "product_id": "org.infinispan.infinispan-commons-test-14.0.9.Final", + "product_identification_helper": { + "purl": "pkg:maven/org.infinispan/infinispan-commons-test@14.0.9.Final?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.infinispan.infinispan-query-dsl-14.0.9.Final-redhat-00001", + "product": { + "name": "org.infinispan.infinispan-query-dsl-14.0.9.Final-redhat-00001", + "product_id": "org.infinispan.infinispan-query-dsl-14.0.9.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.infinispan/infinispan-query-dsl@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.infinispan.infinispan-remote-query-client-14.0.9.Final-redhat-00001", + "product": { + "name": "org.infinispan.infinispan-remote-query-client-14.0.9.Final-redhat-00001", + "product_id": "org.infinispan.infinispan-remote-query-client-14.0.9.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.infinispan/infinispan-remote-query-client@14.0.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.infinispan.infinispan-server-testdriver-core-14.0.9.Final", + "product": { + "name": "org.infinispan.infinispan-server-testdriver-core-14.0.9.Final", + "product_id": "org.infinispan.infinispan-server-testdriver-core-14.0.9.Final", + "product_identification_helper": { + "purl": "pkg:maven/org.infinispan/infinispan-server-testdriver-core@14.0.9.Final?type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.sun.istack.istack-commons-runtime-3.0.10.redhat-00003", + "product": { + "name": "com.sun.istack.istack-commons-runtime-3.0.10.redhat-00003", + "product_id": "com.sun.istack.istack-commons-runtime-3.0.10.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/com.sun.istack/istack-commons-runtime@3.0.10.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.google.j2objc.j2objc-annotations-1.3", + "product": { + "name": "com.google.j2objc.j2objc-annotations-1.3", + "product_id": "com.google.j2objc.j2objc-annotations-1.3", + "product_identification_helper": { + "purl": "pkg:maven/com.google.j2objc/j2objc-annotations@1.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.fasterxml.jackson.core.jackson-annotations-2.13.4.redhat-00004", + "product": { + "name": "com.fasterxml.jackson.core.jackson-annotations-2.13.4.redhat-00004", + "product_id": "com.fasterxml.jackson.core.jackson-annotations-2.13.4.redhat-00004", + "product_identification_helper": { + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-annotations@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.fasterxml.jackson.core.jackson-core-2.13.4.redhat-00004", + "product": { + "name": "com.fasterxml.jackson.core.jackson-core-2.13.4.redhat-00004", + "product_id": "com.fasterxml.jackson.core.jackson-core-2.13.4.redhat-00004", + "product_identification_helper": { + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-core@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.github.java-json-tools.jackson-coreutils-2.0.0.redhat-00005", + "product": { + "name": "com.github.java-json-tools.jackson-coreutils-2.0.0.redhat-00005", + "product_id": "com.github.java-json-tools.jackson-coreutils-2.0.0.redhat-00005", + "product_identification_helper": { + "purl": "pkg:maven/com.github.java-json-tools/jackson-coreutils@2.0.0.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.fasterxml.jackson.core.jackson-databind-2.13.4.2-redhat-00001", + "product": { + "name": "com.fasterxml.jackson.core.jackson-databind-2.13.4.2-redhat-00001", + "product_id": "com.fasterxml.jackson.core.jackson-databind-2.13.4.2-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.4.2-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.fasterxml.jackson.dataformat.jackson-dataformat-properties-2.13.4.redhat-00004", + "product": { + "name": "com.fasterxml.jackson.dataformat.jackson-dataformat-properties-2.13.4.redhat-00004", + "product_id": "com.fasterxml.jackson.dataformat.jackson-dataformat-properties-2.13.4.redhat-00004", + "product_identification_helper": { + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-properties@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.fasterxml.jackson.dataformat.jackson-dataformat-yaml-2.13.4.redhat-00004", + "product": { + "name": "com.fasterxml.jackson.dataformat.jackson-dataformat-yaml-2.13.4.redhat-00004", + "product_id": "com.fasterxml.jackson.dataformat.jackson-dataformat-yaml-2.13.4.redhat-00004", + "product_identification_helper": { + "purl": "pkg:maven/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.fasterxml.jackson.datatype.jackson-datatype-jdk8-2.13.4.redhat-00004", + "product": { + "name": "com.fasterxml.jackson.datatype.jackson-datatype-jdk8-2.13.4.redhat-00004", + "product_id": "com.fasterxml.jackson.datatype.jackson-datatype-jdk8-2.13.4.redhat-00004", + "product_identification_helper": { + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jdk8@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.fasterxml.jackson.datatype.jackson-datatype-jsr310-2.13.4.redhat-00004", + "product": { + "name": "com.fasterxml.jackson.datatype.jackson-datatype-jsr310-2.13.4.redhat-00004", + "product_id": "com.fasterxml.jackson.datatype.jackson-datatype-jsr310-2.13.4.redhat-00004", + "product_identification_helper": { + "purl": "pkg:maven/com.fasterxml.jackson.datatype/jackson-datatype-jsr310@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.fasterxml.jackson.jaxrs.jackson-jaxrs-base-2.13.4.redhat-00004", + "product": { + "name": "com.fasterxml.jackson.jaxrs.jackson-jaxrs-base-2.13.4.redhat-00004", + "product_id": "com.fasterxml.jackson.jaxrs.jackson-jaxrs-base-2.13.4.redhat-00004", + "product_identification_helper": { + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-base@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.fasterxml.jackson.jaxrs.jackson-jaxrs-json-provider-2.13.4.redhat-00004", + "product": { + "name": "com.fasterxml.jackson.jaxrs.jackson-jaxrs-json-provider-2.13.4.redhat-00004", + "product_id": "com.fasterxml.jackson.jaxrs.jackson-jaxrs-json-provider-2.13.4.redhat-00004", + "product_identification_helper": { + "purl": "pkg:maven/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.fasterxml.jackson.module.jackson-module-jaxb-annotations-2.13.4.redhat-00004", + "product": { + "name": "com.fasterxml.jackson.module.jackson-module-jaxb-annotations-2.13.4.redhat-00004", + "product_id": "com.fasterxml.jackson.module.jackson-module-jaxb-annotations-2.13.4.redhat-00004", + "product_identification_helper": { + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-jaxb-annotations@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.fasterxml.jackson.module.jackson-module-parameter-names-2.13.4.redhat-00004", + "product": { + "name": "com.fasterxml.jackson.module.jackson-module-parameter-names-2.13.4.redhat-00004", + "product_id": "com.fasterxml.jackson.module.jackson-module-parameter-names-2.13.4.redhat-00004", + "product_identification_helper": { + "purl": "pkg:maven/com.fasterxml.jackson.module/jackson-module-parameter-names@2.13.4.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.jaegertracing.jaeger-core-1.8.1.redhat-00002", + "product": { + "name": "io.jaegertracing.jaeger-core-1.8.1.redhat-00002", + "product_id": "io.jaegertracing.jaeger-core-1.8.1.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.jaegertracing/jaeger-core@1.8.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.jaegertracing.jaeger-thrift-1.8.1.redhat-00002", + "product": { + "name": "io.jaegertracing.jaeger-thrift-1.8.1.redhat-00002", + "product_id": "io.jaegertracing.jaeger-thrift-1.8.1.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.jaegertracing/jaeger-thrift@1.8.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.sun.activation.jakarta.activation-1.2.1.redhat-00005", + "product": { + "name": "com.sun.activation.jakarta.activation-1.2.1.redhat-00005", + "product_id": "com.sun.activation.jakarta.activation-1.2.1.redhat-00005", + "product_identification_helper": { + "purl": "pkg:maven/com.sun.activation/jakarta.activation@1.2.1.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "jakarta.annotation.jakarta.annotation-api-1.3.5.redhat-00006", + "product": { + "name": "jakarta.annotation.jakarta.annotation-api-1.3.5.redhat-00006", + "product_id": "jakarta.annotation.jakarta.annotation-api-1.3.5.redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/jakarta.annotation/jakarta.annotation-api@1.3.5.redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.glassfish.jakarta.el-3.0.4.redhat-00002", + "product": { + "name": "org.glassfish.jakarta.el-3.0.4.redhat-00002", + "product_id": "org.glassfish.jakarta.el-3.0.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.glassfish/jakarta.el@3.0.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "jakarta.el.jakarta.el-api-3.0.3.redhat-00002", + "product": { + "name": "jakarta.el.jakarta.el-api-3.0.3.redhat-00002", + "product_id": "jakarta.el.jakarta.el-api-3.0.3.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/jakarta.el/jakarta.el-api@3.0.3.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "jakarta.enterprise.jakarta.enterprise.cdi-api-2.0.2.redhat-00004", + "product": { + "name": "jakarta.enterprise.jakarta.enterprise.cdi-api-2.0.2.redhat-00004", + "product_id": "jakarta.enterprise.jakarta.enterprise.cdi-api-2.0.2.redhat-00004", + "product_identification_helper": { + "purl": "pkg:maven/jakarta.enterprise/jakarta.enterprise.cdi-api@2.0.2.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "jakarta.inject.jakarta.inject-api-1.0.0.redhat-00002", + "product": { + "name": "jakarta.inject.jakarta.inject-api-1.0.0.redhat-00002", + "product_id": "jakarta.inject.jakarta.inject-api-1.0.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/jakarta.inject/jakarta.inject-api@1.0.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "jakarta.interceptor.jakarta.interceptor-api-1.2.5.redhat-00003", + "product": { + "name": "jakarta.interceptor.jakarta.interceptor-api-1.2.5.redhat-00003", + "product_id": "jakarta.interceptor.jakarta.interceptor-api-1.2.5.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/jakarta.interceptor/jakarta.interceptor-api@1.2.5.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.glassfish.jakarta.json-1.1.6.redhat-00003", + "product": { + "name": "org.glassfish.jakarta.json-1.1.6.redhat-00003", + "product_id": "org.glassfish.jakarta.json-1.1.6.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/org.glassfish/jakarta.json@1.1.6.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "jakarta.json.bind.jakarta.json.bind-api-1.0.2.redhat-00004", + "product": { + "name": "jakarta.json.bind.jakarta.json.bind-api-1.0.2.redhat-00004", + "product_id": "jakarta.json.bind.jakarta.json.bind-api-1.0.2.redhat-00004", + "product_identification_helper": { + "purl": "pkg:maven/jakarta.json.bind/jakarta.json.bind-api@1.0.2.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.sun.mail.jakarta.mail-1.6.7.redhat-00005", + "product": { + "name": "com.sun.mail.jakarta.mail-1.6.7.redhat-00005", + "product_id": "com.sun.mail.jakarta.mail-1.6.7.redhat-00005", + "product_identification_helper": { + "purl": "pkg:maven/com.sun.mail/jakarta.mail@1.6.7.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "jakarta.persistence.jakarta.persistence-api-2.2.3.redhat-00001", + "product": { + "name": "jakarta.persistence.jakarta.persistence-api-2.2.3.redhat-00001", + "product_id": "jakarta.persistence.jakarta.persistence-api-2.2.3.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/jakarta.persistence/jakarta.persistence-api@2.2.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "jakarta.servlet.jakarta.servlet-api-4.0.3.redhat-00006", + "product": { + "name": "jakarta.servlet.jakarta.servlet-api-4.0.3.redhat-00006", + "product_id": "jakarta.servlet.jakarta.servlet-api-4.0.3.redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/jakarta.servlet/jakarta.servlet-api@4.0.3.redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "jakarta.transaction.jakarta.transaction-api-1.3.3.redhat-00004", + "product": { + "name": "jakarta.transaction.jakarta.transaction-api-1.3.3.redhat-00004", + "product_id": "jakarta.transaction.jakarta.transaction-api-1.3.3.redhat-00004", + "product_identification_helper": { + "purl": "pkg:maven/jakarta.transaction/jakarta.transaction-api@1.3.3.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "jakarta.validation.jakarta.validation-api-2.0.2.redhat-00005", + "product": { + "name": "jakarta.validation.jakarta.validation-api-2.0.2.redhat-00005", + "product_id": "jakarta.validation.jakarta.validation-api-2.0.2.redhat-00005", + "product_identification_helper": { + "purl": "pkg:maven/jakarta.validation/jakarta.validation-api@2.0.2.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "jakarta.websocket.jakarta.websocket-api-1.1.2.redhat-00002", + "product": { + "name": "jakarta.websocket.jakarta.websocket-api-1.1.2.redhat-00002", + "product_id": "jakarta.websocket.jakarta.websocket-api-1.1.2.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/jakarta.websocket/jakarta.websocket-api@1.1.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.jandex-2.4.3.Final-redhat-00001", + "product": { + "name": "org.jboss.jandex-2.4.3.Final-redhat-00001", + "product_id": "org.jboss.jandex-2.4.3.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss/jandex@2.4.3.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.fusesource.jansi.jansi-1.18", + "product": { + "name": "org.fusesource.jansi.jansi-1.18", + "product_id": "org.fusesource.jansi.jansi-1.18", + "product_identification_helper": { + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.fusesource.jansi.jansi-1.18.0.redhat-00001", + "product": { + "name": "org.fusesource.jansi.jansi-1.18.0.redhat-00001", + "product_id": "org.fusesource.jansi.jansi-1.18.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.fusesource.jansi/jansi@1.18.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.graphql-java.java-dataloader-3.2.0.redhat-00001", + "product": { + "name": "com.graphql-java.java-dataloader-3.2.0.redhat-00001", + "product_id": "com.graphql-java.java-dataloader-3.2.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/com.graphql-java/java-dataloader@3.2.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.github.javaparser.javaparser-core-3.24.2.redhat-00003", + "product": { + "name": "com.github.javaparser.javaparser-core-3.24.2.redhat-00003", + "product_id": "com.github.javaparser.javaparser-core-3.24.2.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/com.github.javaparser/javaparser-core@3.24.2.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.javassist.javassist-3.29.1.GA-redhat-00001", + "product": { + "name": "org.javassist.javassist-3.29.1.GA-redhat-00001", + "product_id": "org.javassist.javassist-3.29.1.GA-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.javassist/javassist@3.29.1.GA-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.glassfish.jaxb.jaxb-runtime-2.3.3.b02-redhat-00004", + "product": { + "name": "org.glassfish.jaxb.jaxb-runtime-2.3.3.b02-redhat-00004", + "product_id": "org.glassfish.jaxb.jaxb-runtime-2.3.3.b02-redhat-00004", + "product_identification_helper": { + "purl": "pkg:maven/org.glassfish.jaxb/jaxb-runtime@2.3.3.b02-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.spec.javax.resource.jboss-connector-api_1.7_spec-1.0.0.Final", + "product": { + "name": "org.jboss.spec.javax.resource.jboss-connector-api_1.7_spec-1.0.0.Final", + "product_id": "org.jboss.spec.javax.resource.jboss-connector-api_1.7_spec-1.0.0.Final", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.spec.javax.resource/jboss-connector-api_1.7_spec@1.0.0.Final?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.spec.javax.xml.bind.jboss-jaxb-api_2.3_spec-2.0.0.Final-redhat-00004", + "product": { + "name": "org.jboss.spec.javax.xml.bind.jboss-jaxb-api_2.3_spec-2.0.0.Final-redhat-00004", + "product_id": "org.jboss.spec.javax.xml.bind.jboss-jaxb-api_2.3_spec-2.0.0.Final-redhat-00004", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.spec.javax.xml.bind/jboss-jaxb-api_2.3_spec@2.0.0.Final-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.spec.javax.ws.rs.jboss-jaxrs-api_2.1_spec-2.0.1.Final-redhat-00001", + "product": { + "name": "org.jboss.spec.javax.ws.rs.jboss-jaxrs-api_2.1_spec-2.0.1.Final-redhat-00001", + "product_id": "org.jboss.spec.javax.ws.rs.jboss-jaxrs-api_2.1_spec-2.0.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.spec.javax.ws.rs/jboss-jaxrs-api_2.1_spec@2.0.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.logging.jboss-logging-3.5.0.Final-redhat-00003", + "product": { + "name": "org.jboss.logging.jboss-logging-3.5.0.Final-redhat-00003", + "product_id": "org.jboss.logging.jboss-logging-3.5.0.Final-redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.logging/jboss-logging@3.5.0.Final-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.logging.jboss-logging-annotations-2.2.1.Final-redhat-00001", + "product": { + "name": "org.jboss.logging.jboss-logging-annotations-2.2.1.Final-redhat-00001", + "product_id": "org.jboss.logging.jboss-logging-annotations-2.2.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.logging/jboss-logging-annotations@2.2.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.logmanager.jboss-logmanager-embedded-1.0.10.redhat-00001", + "product": { + "name": "org.jboss.logmanager.jboss-logmanager-embedded-1.0.10.redhat-00001", + "product_id": "org.jboss.logmanager.jboss-logmanager-embedded-1.0.10.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.logmanager/jboss-logmanager-embedded@1.0.10.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.metadata.jboss-metadata-common-15.1.0.Final-redhat-00001", + "product": { + "name": "org.jboss.metadata.jboss-metadata-common-15.1.0.Final-redhat-00001", + "product_id": "org.jboss.metadata.jboss-metadata-common-15.1.0.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-common@15.1.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.metadata.jboss-metadata-web-15.1.0.Final-redhat-00001", + "product": { + "name": "org.jboss.metadata.jboss-metadata-web-15.1.0.Final-redhat-00001", + "product_id": "org.jboss.metadata.jboss-metadata-web-15.1.0.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.metadata/jboss-metadata-web@15.1.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.threads.jboss-threads-3.4.3.Final-redhat-00001", + "product": { + "name": "org.jboss.threads.jboss-threads-3.4.3.Final-redhat-00001", + "product_id": "org.jboss.threads.jboss-threads-3.4.3.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.threads/jboss-threads@3.4.3.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.jboss-transaction-spi-7.6.0.Final-redhat-1", + "product": { + "name": "org.jboss.jboss-transaction-spi-7.6.0.Final-redhat-1", + "product_id": "org.jboss.jboss-transaction-spi-7.6.0.Final-redhat-1", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss/jboss-transaction-spi@7.6.0.Final-redhat-1?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.ibm.db2.jcc-11.5.7.0", + "product": { + "name": "com.ibm.db2.jcc-11.5.7.0", + "product_id": "com.ibm.db2.jcc-11.5.7.0", + "product_identification_helper": { + "purl": "pkg:maven/com.ibm.db2/jcc@11.5.7.0?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.testcontainers.jdbc-1.17.3", + "product": { + "name": "org.testcontainers.jdbc-1.17.3", + "product_id": "org.testcontainers.jdbc-1.17.3", + "product_identification_helper": { + "purl": "pkg:maven/org.testcontainers/jdbc@1.17.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.jdeparser.jdeparser-2.0.3.Final", + "product": { + "name": "org.jboss.jdeparser.jdeparser-2.0.3.Final", + "product_id": "org.jboss.jdeparser.jdeparser-2.0.3.Final", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.jdeparser/jdeparser@2.0.3.Final?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jdom.jdom-1.1.3", + "product": { + "name": "org.jdom.jdom-1.1.3", + "product_id": "org.jdom.jdom-1.1.3", + "product_identification_helper": { + "purl": "pkg:maven/org.jdom/jdom@1.1.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "net.java.dev.jna.jna-5.8.0", + "product": { + "name": "net.java.dev.jna.jna-5.8.0", + "product_id": "net.java.dev.jna.jna-5.8.0", + "product_identification_helper": { + "purl": "pkg:maven/net.java.dev.jna/jna@5.8.0?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.bitbucket.b_c.jose4j-0.8.0.redhat-00001", + "product": { + "name": "org.bitbucket.b_c.jose4j-0.8.0.redhat-00001", + "product_id": "org.bitbucket.b_c.jose4j-0.8.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.bitbucket.b_c/jose4j@0.8.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.github.java-json-tools.json-patch-1.13.0.redhat-00007", + "product": { + "name": "com.github.java-json-tools.json-patch-1.13.0.redhat-00007", + "product_id": "com.github.java-json-tools.json-patch-1.13.0.redhat-00007", + "product_identification_helper": { + "purl": "pkg:maven/com.github.java-json-tools/json-patch@1.13.0.redhat-00007?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jsoup.jsoup-1.15.3.redhat-00003", + "product": { + "name": "org.jsoup.jsoup-1.15.3.redhat-00003", + "product_id": "org.jsoup.jsoup-1.15.3.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/org.jsoup/jsoup@1.15.3.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.google.code.findbugs.jsr305-3.0.2.redhat-00009", + "product": { + "name": "com.google.code.findbugs.jsr305-3.0.2.redhat-00009", + "product_id": "com.google.code.findbugs.jsr305-3.0.2.redhat-00009", + "product_identification_helper": { + "purl": "pkg:maven/com.google.code.findbugs/jsr305@3.0.2.redhat-00009?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.locationtech.jts.jts-core-1.17.0", + "product": { + "name": "org.locationtech.jts.jts-core-1.17.0", + "product_id": "org.locationtech.jts.jts-core-1.17.0", + "product_identification_helper": { + "purl": "pkg:maven/org.locationtech.jts/jts-core@1.17.0?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.junit.jupiter.junit-jupiter-5.9.1", + "product": { + "name": "org.junit.jupiter.junit-jupiter-5.9.1", + "product_id": "org.junit.jupiter.junit-jupiter-5.9.1", + "product_identification_helper": { + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter@5.9.1?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.junit.jupiter.junit-jupiter-api-5.9.1", + "product": { + "name": "org.junit.jupiter.junit-jupiter-api-5.9.1", + "product_id": "org.junit.jupiter.junit-jupiter-api-5.9.1", + "product_identification_helper": { + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-api@5.9.1?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.junit.jupiter.junit-jupiter-engine-5.9.1", + "product": { + "name": "org.junit.jupiter.junit-jupiter-engine-5.9.1", + "product_id": "org.junit.jupiter.junit-jupiter-engine-5.9.1", + "product_identification_helper": { + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-engine@5.9.1?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.junit.jupiter.junit-jupiter-params-5.9.1", + "product": { + "name": "org.junit.jupiter.junit-jupiter-params-5.9.1", + "product_id": "org.junit.jupiter.junit-jupiter-params-5.9.1", + "product_identification_helper": { + "purl": "pkg:maven/org.junit.jupiter/junit-jupiter-params@5.9.1?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.junit.platform.junit-platform-commons-1.9.1", + "product": { + "name": "org.junit.platform.junit-platform-commons-1.9.1", + "product_id": "org.junit.platform.junit-platform-commons-1.9.1", + "product_identification_helper": { + "purl": "pkg:maven/org.junit.platform/junit-platform-commons@1.9.1?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.junit.platform.junit-platform-engine-1.9.1", + "product": { + "name": "org.junit.platform.junit-platform-engine-1.9.1", + "product_id": "org.junit.platform.junit-platform-engine-1.9.1", + "product_identification_helper": { + "purl": "pkg:maven/org.junit.platform/junit-platform-engine@1.9.1?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.junit.platform.junit-platform-launcher-1.9.1", + "product": { + "name": "org.junit.platform.junit-platform-launcher-1.9.1", + "product_id": "org.junit.platform.junit-platform-launcher-1.9.1", + "product_identification_helper": { + "purl": "pkg:maven/org.junit.platform/junit-platform-launcher@1.9.1?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.kafka.kafka-clients-3.2.3.redhat-00011", + "product": { + "name": "org.apache.kafka.kafka-clients-3.2.3.redhat-00011", + "product_id": "org.apache.kafka.kafka-clients-3.2.3.redhat-00011", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.kafka/kafka-clients@3.2.3.redhat-00011?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.kafka.kafka-streams-3.2.3.redhat-00011", + "product": { + "name": "org.apache.kafka.kafka-streams-3.2.3.redhat-00011", + "product_id": "org.apache.kafka.kafka-streams-3.2.3.redhat-00011", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.kafka/kafka-streams@3.2.3.redhat-00011?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.keycloak.keycloak-adapter-core-18.0.6.redhat-00001", + "product": { + "name": "org.keycloak.keycloak-adapter-core-18.0.6.redhat-00001", + "product_id": "org.keycloak.keycloak-adapter-core-18.0.6.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.keycloak/keycloak-adapter-core@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.keycloak.keycloak-adapter-spi-18.0.6.redhat-00001", + "product": { + "name": "org.keycloak.keycloak-adapter-spi-18.0.6.redhat-00001", + "product_id": "org.keycloak.keycloak-adapter-spi-18.0.6.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.keycloak/keycloak-adapter-spi@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.keycloak.keycloak-authz-client-18.0.6.redhat-00001", + "product": { + "name": "org.keycloak.keycloak-authz-client-18.0.6.redhat-00001", + "product_id": "org.keycloak.keycloak-authz-client-18.0.6.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.keycloak/keycloak-authz-client@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.keycloak.keycloak-common-18.0.6.redhat-00001", + "product": { + "name": "org.keycloak.keycloak-common-18.0.6.redhat-00001", + "product_id": "org.keycloak.keycloak-common-18.0.6.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.keycloak/keycloak-common@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.keycloak.keycloak-core-18.0.6.redhat-00001", + "product": { + "name": "org.keycloak.keycloak-core-18.0.6.redhat-00001", + "product_id": "org.keycloak.keycloak-core-18.0.6.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.keycloak/keycloak-core@18.0.6.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.dekorate.knative-annotations-2.11.3.redhat-00001", + "product": { + "name": "io.dekorate.knative-annotations-2.11.3.redhat-00001", + "product_id": "io.dekorate.knative-annotations-2.11.3.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.dekorate/knative-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.knative-client-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.knative-client-5.12.4.redhat-00002", + "product_id": "io.fabric8.knative-client-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/knative-client@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.knative-model-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.knative-model-5.12.4.redhat-00002", + "product_id": "io.fabric8.knative-model-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/knative-model@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.dekorate.kubernetes-annotations-2.11.3.redhat-00001", + "product": { + "name": "io.dekorate.kubernetes-annotations-2.11.3.redhat-00001", + "product_id": "io.dekorate.kubernetes-annotations-2.11.3.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.dekorate/kubernetes-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.kubernetes-client-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.kubernetes-client-5.12.4.redhat-00002", + "product_id": "io.fabric8.kubernetes-client-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/kubernetes-client@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.kubernetes-model-admissionregistration-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.kubernetes-model-admissionregistration-5.12.4.redhat-00002", + "product_id": "io.fabric8.kubernetes-model-admissionregistration-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/kubernetes-model-admissionregistration@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.kubernetes-model-apiextensions-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.kubernetes-model-apiextensions-5.12.4.redhat-00002", + "product_id": "io.fabric8.kubernetes-model-apiextensions-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/kubernetes-model-apiextensions@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.kubernetes-model-apps-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.kubernetes-model-apps-5.12.4.redhat-00002", + "product_id": "io.fabric8.kubernetes-model-apps-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/kubernetes-model-apps@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.kubernetes-model-autoscaling-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.kubernetes-model-autoscaling-5.12.4.redhat-00002", + "product_id": "io.fabric8.kubernetes-model-autoscaling-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/kubernetes-model-autoscaling@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.kubernetes-model-batch-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.kubernetes-model-batch-5.12.4.redhat-00002", + "product_id": "io.fabric8.kubernetes-model-batch-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/kubernetes-model-batch@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.kubernetes-model-certificates-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.kubernetes-model-certificates-5.12.4.redhat-00002", + "product_id": "io.fabric8.kubernetes-model-certificates-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/kubernetes-model-certificates@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.kubernetes-model-common-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.kubernetes-model-common-5.12.4.redhat-00002", + "product_id": "io.fabric8.kubernetes-model-common-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/kubernetes-model-common@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.kubernetes-model-coordination-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.kubernetes-model-coordination-5.12.4.redhat-00002", + "product_id": "io.fabric8.kubernetes-model-coordination-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/kubernetes-model-coordination@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.kubernetes-model-core-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.kubernetes-model-core-5.12.4.redhat-00002", + "product_id": "io.fabric8.kubernetes-model-core-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/kubernetes-model-core@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.kubernetes-model-discovery-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.kubernetes-model-discovery-5.12.4.redhat-00002", + "product_id": "io.fabric8.kubernetes-model-discovery-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/kubernetes-model-discovery@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.kubernetes-model-events-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.kubernetes-model-events-5.12.4.redhat-00002", + "product_id": "io.fabric8.kubernetes-model-events-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/kubernetes-model-events@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.kubernetes-model-extensions-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.kubernetes-model-extensions-5.12.4.redhat-00002", + "product_id": "io.fabric8.kubernetes-model-extensions-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/kubernetes-model-extensions@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.kubernetes-model-flowcontrol-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.kubernetes-model-flowcontrol-5.12.4.redhat-00002", + "product_id": "io.fabric8.kubernetes-model-flowcontrol-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/kubernetes-model-flowcontrol@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.kubernetes-model-metrics-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.kubernetes-model-metrics-5.12.4.redhat-00002", + "product_id": "io.fabric8.kubernetes-model-metrics-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/kubernetes-model-metrics@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.kubernetes-model-networking-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.kubernetes-model-networking-5.12.4.redhat-00002", + "product_id": "io.fabric8.kubernetes-model-networking-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/kubernetes-model-networking@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.kubernetes-model-node-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.kubernetes-model-node-5.12.4.redhat-00002", + "product_id": "io.fabric8.kubernetes-model-node-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/kubernetes-model-node@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.kubernetes-model-policy-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.kubernetes-model-policy-5.12.4.redhat-00002", + "product_id": "io.fabric8.kubernetes-model-policy-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/kubernetes-model-policy@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.kubernetes-model-rbac-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.kubernetes-model-rbac-5.12.4.redhat-00002", + "product_id": "io.fabric8.kubernetes-model-rbac-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/kubernetes-model-rbac@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.kubernetes-model-scheduling-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.kubernetes-model-scheduling-5.12.4.redhat-00002", + "product_id": "io.fabric8.kubernetes-model-scheduling-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/kubernetes-model-scheduling@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.kubernetes-model-storageclass-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.kubernetes-model-storageclass-5.12.4.redhat-00002", + "product_id": "io.fabric8.kubernetes-model-storageclass-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/kubernetes-model-storageclass@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.latencyutils.LatencyUtils-2.0.3.redhat-00001", + "product": { + "name": "org.latencyutils.LatencyUtils-2.0.3.redhat-00001", + "product_id": "org.latencyutils.LatencyUtils-2.0.3.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.latencyutils/LatencyUtils@2.0.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.thrift.libthrift-0.15.0.redhat-00001", + "product": { + "name": "org.apache.thrift.libthrift-0.15.0.redhat-00001", + "product_id": "org.apache.thrift.libthrift-0.15.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.thrift/libthrift@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.squareup.okhttp3.logging-interceptor-3.14.9.redhat-00003", + "product": { + "name": "com.squareup.okhttp3.logging-interceptor-3.14.9.redhat-00003", + "product_id": "com.squareup.okhttp3.logging-interceptor-3.14.9.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/com.squareup.okhttp3/logging-interceptor@3.14.9.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.lz4.lz4-java-1.8.0.redhat-00003", + "product": { + "name": "org.lz4.lz4-java-1.8.0.redhat-00003", + "product_id": "org.lz4.lz4-java-1.8.0.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/org.lz4/lz4-java@1.8.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.testcontainers.mariadb-1.17.3", + "product": { + "name": "org.testcontainers.mariadb-1.17.3", + "product_id": "org.testcontainers.mariadb-1.17.3", + "product_identification_helper": { + "purl": "pkg:maven/org.testcontainers/mariadb@1.17.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.mariadb.jdbc.mariadb-java-client-3.0.8.redhat-00001", + "product": { + "name": "org.mariadb.jdbc.mariadb-java-client-3.0.8.redhat-00001", + "product_id": "org.mariadb.jdbc.mariadb-java-client-3.0.8.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.mariadb.jdbc/mariadb-java-client@3.0.8.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.maven.maven-artifact-3.8.6", + "product": { + "name": "org.apache.maven.maven-artifact-3.8.6", + "product_id": "org.apache.maven.maven-artifact-3.8.6", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.maven/maven-artifact@3.8.6?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.maven.maven-builder-support-3.8.6", + "product": { + "name": "org.apache.maven.maven-builder-support-3.8.6", + "product_id": "org.apache.maven.maven-builder-support-3.8.6", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.maven/maven-builder-support@3.8.6?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.maven.maven-core-3.8.6", + "product": { + "name": "org.apache.maven.maven-core-3.8.6", + "product_id": "org.apache.maven.maven-core-3.8.6", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.maven/maven-core@3.8.6?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.maven.maven-embedder-3.8.6", + "product": { + "name": "org.apache.maven.maven-embedder-3.8.6", + "product_id": "org.apache.maven.maven-embedder-3.8.6", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.maven/maven-embedder@3.8.6?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.maven.maven-model-3.8.6", + "product": { + "name": "org.apache.maven.maven-model-3.8.6", + "product_id": "org.apache.maven.maven-model-3.8.6", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.maven/maven-model@3.8.6?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.maven.maven-model-builder-3.8.6", + "product": { + "name": "org.apache.maven.maven-model-builder-3.8.6", + "product_id": "org.apache.maven.maven-model-builder-3.8.6", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.maven/maven-model-builder@3.8.6?type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.maven-model-helper-20", + "product": { + "name": "io.fabric8.maven-model-helper-20", + "product_id": "io.fabric8.maven-model-helper-20", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/maven-model-helper@20?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.maven.plugin-tools.maven-plugin-annotations-3.6.0.redhat-00002", + "product": { + "name": "org.apache.maven.plugin-tools.maven-plugin-annotations-3.6.0.redhat-00002", + "product_id": "org.apache.maven.plugin-tools.maven-plugin-annotations-3.6.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.maven.plugin-tools/maven-plugin-annotations@3.6.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.maven.maven-plugin-api-3.8.6", + "product": { + "name": "org.apache.maven.maven-plugin-api-3.8.6", + "product_id": "org.apache.maven.maven-plugin-api-3.8.6", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.maven/maven-plugin-api@3.8.6?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.maven.maven-repository-metadata-3.8.6", + "product": { + "name": "org.apache.maven.maven-repository-metadata-3.8.6", + "product_id": "org.apache.maven.maven-repository-metadata-3.8.6", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.maven/maven-repository-metadata@3.8.6?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.maven.resolver.maven-resolver-api-1.6.3", + "product": { + "name": "org.apache.maven.resolver.maven-resolver-api-1.6.3", + "product_id": "org.apache.maven.resolver.maven-resolver-api-1.6.3", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-api@1.6.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.maven.resolver.maven-resolver-connector-basic-1.6.3", + "product": { + "name": "org.apache.maven.resolver.maven-resolver-connector-basic-1.6.3", + "product_id": "org.apache.maven.resolver.maven-resolver-connector-basic-1.6.3", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-connector-basic@1.6.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.maven.resolver.maven-resolver-impl-1.6.3", + "product": { + "name": "org.apache.maven.resolver.maven-resolver-impl-1.6.3", + "product_id": "org.apache.maven.resolver.maven-resolver-impl-1.6.3", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-impl@1.6.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.maven.maven-resolver-provider-3.8.6", + "product": { + "name": "org.apache.maven.maven-resolver-provider-3.8.6", + "product_id": "org.apache.maven.maven-resolver-provider-3.8.6", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.maven/maven-resolver-provider@3.8.6?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.maven.resolver.maven-resolver-spi-1.6.3", + "product": { + "name": "org.apache.maven.resolver.maven-resolver-spi-1.6.3", + "product_id": "org.apache.maven.resolver.maven-resolver-spi-1.6.3", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-spi@1.6.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.maven.resolver.maven-resolver-transport-wagon-1.6.3", + "product": { + "name": "org.apache.maven.resolver.maven-resolver-transport-wagon-1.6.3", + "product_id": "org.apache.maven.resolver.maven-resolver-transport-wagon-1.6.3", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-transport-wagon@1.6.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.maven.resolver.maven-resolver-util-1.6.3", + "product": { + "name": "org.apache.maven.resolver.maven-resolver-util-1.6.3", + "product_id": "org.apache.maven.resolver.maven-resolver-util-1.6.3", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.maven.resolver/maven-resolver-util@1.6.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.maven.maven-settings-3.8.6", + "product": { + "name": "org.apache.maven.maven-settings-3.8.6", + "product_id": "org.apache.maven.maven-settings-3.8.6", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.maven/maven-settings@3.8.6?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.maven.maven-settings-builder-3.8.6", + "product": { + "name": "org.apache.maven.maven-settings-builder-3.8.6", + "product_id": "org.apache.maven.maven-settings-builder-3.8.6", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.maven/maven-settings-builder@3.8.6?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.maven.shared.maven-shared-utils-3.3.4", + "product": { + "name": "org.apache.maven.shared.maven-shared-utils-3.3.4", + "product_id": "org.apache.maven.shared.maven-shared-utils-3.3.4", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.maven.shared/maven-shared-utils@3.3.4?type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.mchange.mchange-commons-java-0.2.15.redhat-00003", + "product": { + "name": "com.mchange.mchange-commons-java-0.2.15.redhat-00003", + "product_id": "com.mchange.mchange-commons-java-0.2.15.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/com.mchange/mchange-commons-java@0.2.15.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.micrometer.micrometer-core-1.9.4.redhat-00001", + "product": { + "name": "io.micrometer.micrometer-core-1.9.4.redhat-00001", + "product_id": "io.micrometer.micrometer-core-1.9.4.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.micrometer/micrometer-core@1.9.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.micrometer.micrometer-registry-prometheus-1.9.4.redhat-00001", + "product": { + "name": "io.micrometer.micrometer-registry-prometheus-1.9.4.redhat-00001", + "product_id": "io.micrometer.micrometer-registry-prometheus-1.9.4.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.micrometer/micrometer-registry-prometheus@1.9.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.eclipse.microprofile.config.microprofile-config-api-2.0.1.redhat-00001", + "product": { + "name": "org.eclipse.microprofile.config.microprofile-config-api-2.0.1.redhat-00001", + "product_id": "org.eclipse.microprofile.config.microprofile-config-api-2.0.1.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.eclipse.microprofile.config/microprofile-config-api@2.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.eclipse.microprofile.context-propagation.microprofile-context-propagation-api-1.2.0.redhat-00012", + "product": { + "name": "org.eclipse.microprofile.context-propagation.microprofile-context-propagation-api-1.2.0.redhat-00012", + "product_id": "org.eclipse.microprofile.context-propagation.microprofile-context-propagation-api-1.2.0.redhat-00012", + "product_identification_helper": { + "purl": "pkg:maven/org.eclipse.microprofile.context-propagation/microprofile-context-propagation-api@1.2.0.redhat-00012?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.eclipse.microprofile.fault-tolerance.microprofile-fault-tolerance-api-3.0.0.redhat-00002", + "product": { + "name": "org.eclipse.microprofile.fault-tolerance.microprofile-fault-tolerance-api-3.0.0.redhat-00002", + "product_id": "org.eclipse.microprofile.fault-tolerance.microprofile-fault-tolerance-api-3.0.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.eclipse.microprofile.fault-tolerance/microprofile-fault-tolerance-api@3.0.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.eclipse.microprofile.graphql.microprofile-graphql-api-1.1.0.redhat-00009", + "product": { + "name": "org.eclipse.microprofile.graphql.microprofile-graphql-api-1.1.0.redhat-00009", + "product_id": "org.eclipse.microprofile.graphql.microprofile-graphql-api-1.1.0.redhat-00009", + "product_identification_helper": { + "purl": "pkg:maven/org.eclipse.microprofile.graphql/microprofile-graphql-api@1.1.0.redhat-00009?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.eclipse.microprofile.health.microprofile-health-api-3.1.0.redhat-00002", + "product": { + "name": "org.eclipse.microprofile.health.microprofile-health-api-3.1.0.redhat-00002", + "product_id": "org.eclipse.microprofile.health.microprofile-health-api-3.1.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.eclipse.microprofile.health/microprofile-health-api@3.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.eclipse.microprofile.jwt.microprofile-jwt-auth-api-1.2.0.redhat-00002", + "product": { + "name": "org.eclipse.microprofile.jwt.microprofile-jwt-auth-api-1.2.0.redhat-00002", + "product_id": "org.eclipse.microprofile.jwt.microprofile-jwt-auth-api-1.2.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.eclipse.microprofile.jwt/microprofile-jwt-auth-api@1.2.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.eclipse.microprofile.metrics.microprofile-metrics-api-3.0.1.redhat-00001", + "product": { + "name": "org.eclipse.microprofile.metrics.microprofile-metrics-api-3.0.1.redhat-00001", + "product_id": "org.eclipse.microprofile.metrics.microprofile-metrics-api-3.0.1.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.eclipse.microprofile.metrics/microprofile-metrics-api@3.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.eclipse.microprofile.openapi.microprofile-openapi-api-2.0.1.redhat-00001", + "product": { + "name": "org.eclipse.microprofile.openapi.microprofile-openapi-api-2.0.1.redhat-00001", + "product_id": "org.eclipse.microprofile.openapi.microprofile-openapi-api-2.0.1.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.eclipse.microprofile.openapi/microprofile-openapi-api@2.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.eclipse.microprofile.opentracing.microprofile-opentracing-api-2.0.0.redhat-00002", + "product": { + "name": "org.eclipse.microprofile.opentracing.microprofile-opentracing-api-2.0.0.redhat-00002", + "product_id": "org.eclipse.microprofile.opentracing.microprofile-opentracing-api-2.0.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.eclipse.microprofile.opentracing/microprofile-opentracing-api@2.0.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.eclipse.microprofile.reactive-streams-operators.microprofile-reactive-streams-operators-api-1.0.1.redhat-00001", + "product": { + "name": "org.eclipse.microprofile.reactive-streams-operators.microprofile-reactive-streams-operators-api-1.0.1.redhat-00001", + "product_id": "org.eclipse.microprofile.reactive-streams-operators.microprofile-reactive-streams-operators-api-1.0.1.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-api@1.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.eclipse.microprofile.reactive-streams-operators.microprofile-reactive-streams-operators-core-1.0.1.redhat-00001", + "product": { + "name": "org.eclipse.microprofile.reactive-streams-operators.microprofile-reactive-streams-operators-core-1.0.1.redhat-00001", + "product_id": "org.eclipse.microprofile.reactive-streams-operators.microprofile-reactive-streams-operators-core-1.0.1.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.eclipse.microprofile.reactive-streams-operators/microprofile-reactive-streams-operators-core@1.0.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.eclipse.microprofile.rest.client.microprofile-rest-client-api-2.0.0.redhat-00003", + "product": { + "name": "org.eclipse.microprofile.rest.client.microprofile-rest-client-api-2.0.0.redhat-00003", + "product_id": "org.eclipse.microprofile.rest.client.microprofile-rest-client-api-2.0.0.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/org.eclipse.microprofile.rest.client/microprofile-rest-client-api@2.0.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.twdata.maven.mojo-executor-2.3.1", + "product": { + "name": "org.twdata.maven.mojo-executor-2.3.1", + "product_id": "org.twdata.maven.mojo-executor-2.3.1", + "product_identification_helper": { + "purl": "pkg:maven/org.twdata.maven/mojo-executor@2.3.1?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.testcontainers.mongodb-1.17.3", + "product": { + "name": "org.testcontainers.mongodb-1.17.3", + "product_id": "org.testcontainers.mongodb-1.17.3", + "product_identification_helper": { + "purl": "pkg:maven/org.testcontainers/mongodb@1.17.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.mongodb.mongodb-crypt-1.5.2", + "product": { + "name": "org.mongodb.mongodb-crypt-1.5.2", + "product_id": "org.mongodb.mongodb-crypt-1.5.2", + "product_identification_helper": { + "purl": "pkg:maven/org.mongodb/mongodb-crypt@1.5.2?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.mongodb.mongodb-driver-core-4.7.2", + "product": { + "name": "org.mongodb.mongodb-driver-core-4.7.2", + "product_id": "org.mongodb.mongodb-driver-core-4.7.2", + "product_identification_helper": { + "purl": "pkg:maven/org.mongodb/mongodb-driver-core@4.7.2?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.mongodb.mongodb-driver-reactivestreams-4.7.2", + "product": { + "name": "org.mongodb.mongodb-driver-reactivestreams-4.7.2", + "product_id": "org.mongodb.mongodb-driver-reactivestreams-4.7.2", + "product_identification_helper": { + "purl": "pkg:maven/org.mongodb/mongodb-driver-reactivestreams@4.7.2?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.mongodb.mongodb-driver-sync-4.7.2", + "product": { + "name": "org.mongodb.mongodb-driver-sync-4.7.2", + "product_id": "org.mongodb.mongodb-driver-sync-4.7.2", + "product_identification_helper": { + "purl": "pkg:maven/org.mongodb/mongodb-driver-sync@4.7.2?type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.github.java-json-tools.msg-simple-1.2.0.redhat-00002", + "product": { + "name": "com.github.java-json-tools.msg-simple-1.2.0.redhat-00002", + "product_id": "com.github.java-json-tools.msg-simple-1.2.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/com.github.java-json-tools/msg-simple@1.2.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.microsoft.sqlserver.mssql-jdbc-11.2.0.jre11", + "product": { + "name": "com.microsoft.sqlserver.mssql-jdbc-11.2.0.jre11", + "product_id": "com.microsoft.sqlserver.mssql-jdbc-11.2.0.jre11", + "product_identification_helper": { + "purl": "pkg:maven/com.microsoft.sqlserver/mssql-jdbc@11.2.0.jre11?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.testcontainers.mssqlserver-1.17.3", + "product": { + "name": "org.testcontainers.mssqlserver-1.17.3", + "product_id": "org.testcontainers.mssqlserver-1.17.3", + "product_identification_helper": { + "purl": "pkg:maven/org.testcontainers/mssqlserver@1.17.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.mutiny-1.7.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.mutiny-1.7.0.redhat-00001", + "product_id": "io.smallrye.reactive.mutiny-1.7.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/mutiny@1.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.mutiny-reactive-streams-operators-1.7.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.mutiny-reactive-streams-operators-1.7.0.redhat-00001", + "product_id": "io.smallrye.reactive.mutiny-reactive-streams-operators-1.7.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/mutiny-reactive-streams-operators@1.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.mutiny-smallrye-context-propagation-1.7.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.mutiny-smallrye-context-propagation-1.7.0.redhat-00001", + "product_id": "io.smallrye.reactive.mutiny-smallrye-context-propagation-1.7.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/mutiny-smallrye-context-propagation@1.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.testcontainers.mysql-1.17.3", + "product": { + "name": "org.testcontainers.mysql-1.17.3", + "product_id": "org.testcontainers.mysql-1.17.3", + "product_identification_helper": { + "purl": "pkg:maven/org.testcontainers/mysql@1.17.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "mysql.mysql-connector-java-8.0.30.redhat-00002", + "product": { + "name": "mysql.mysql-connector-java-8.0.30.redhat-00002", + "product_id": "mysql.mysql-connector-java-8.0.30.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/mysql/mysql-connector-java@8.0.30.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.narayana.jta.narayana-jta-5.13.1.Final-redhat-00001", + "product": { + "name": "org.jboss.narayana.jta.narayana-jta-5.13.1.Final-redhat-00001", + "product_id": "org.jboss.narayana.jta.narayana-jta-5.13.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.narayana.jta/narayana-jta@5.13.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.narayana.jts.narayana-jts-integration-5.13.1.Final-redhat-00001", + "product": { + "name": "org.jboss.narayana.jts.narayana-jts-integration-5.13.1.Final-redhat-00001", + "product_id": "org.jboss.narayana.jts.narayana-jts-integration-5.13.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.narayana.jts/narayana-jts-integration@5.13.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.aayushatharva.brotli4j.native-linux-x86_64-1.8.0.redhat-00003", + "product": { + "name": "com.aayushatharva.brotli4j.native-linux-x86_64-1.8.0.redhat-00003", + "product_id": "com.aayushatharva.brotli4j.native-linux-x86_64-1.8.0.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/com.aayushatharva.brotli4j/native-linux-x86_64@1.8.0.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.netty.netty-buffer-4.1.86.Final-redhat-00010", + "product": { + "name": "io.netty.netty-buffer-4.1.86.Final-redhat-00010", + "product_id": "io.netty.netty-buffer-4.1.86.Final-redhat-00010", + "product_identification_helper": { + "purl": "pkg:maven/io.netty/netty-buffer@4.1.86.Final-redhat-00010?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.netty.netty-codec-4.1.86.Final-redhat-00010", + "product": { + "name": "io.netty.netty-codec-4.1.86.Final-redhat-00010", + "product_id": "io.netty.netty-codec-4.1.86.Final-redhat-00010", + "product_identification_helper": { + "purl": "pkg:maven/io.netty/netty-codec@4.1.86.Final-redhat-00010?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.netty.netty-codec-dns-4.1.86.Final-redhat-00010", + "product": { + "name": "io.netty.netty-codec-dns-4.1.86.Final-redhat-00010", + "product_id": "io.netty.netty-codec-dns-4.1.86.Final-redhat-00010", + "product_identification_helper": { + "purl": "pkg:maven/io.netty/netty-codec-dns@4.1.86.Final-redhat-00010?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.netty.netty-codec-haproxy-4.1.86.Final-redhat-00010", + "product": { + "name": "io.netty.netty-codec-haproxy-4.1.86.Final-redhat-00010", + "product_id": "io.netty.netty-codec-haproxy-4.1.86.Final-redhat-00010", + "product_identification_helper": { + "purl": "pkg:maven/io.netty/netty-codec-haproxy@4.1.86.Final-redhat-00010?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.netty.netty-codec-http-4.1.86.Final-redhat-00010", + "product": { + "name": "io.netty.netty-codec-http-4.1.86.Final-redhat-00010", + "product_id": "io.netty.netty-codec-http-4.1.86.Final-redhat-00010", + "product_identification_helper": { + "purl": "pkg:maven/io.netty/netty-codec-http@4.1.86.Final-redhat-00010?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.netty.netty-codec-http2-4.1.86.Final-redhat-00010", + "product": { + "name": "io.netty.netty-codec-http2-4.1.86.Final-redhat-00010", + "product_id": "io.netty.netty-codec-http2-4.1.86.Final-redhat-00010", + "product_identification_helper": { + "purl": "pkg:maven/io.netty/netty-codec-http2@4.1.86.Final-redhat-00010?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.netty.netty-codec-socks-4.1.86.Final-redhat-00010", + "product": { + "name": "io.netty.netty-codec-socks-4.1.86.Final-redhat-00010", + "product_id": "io.netty.netty-codec-socks-4.1.86.Final-redhat-00010", + "product_identification_helper": { + "purl": "pkg:maven/io.netty/netty-codec-socks@4.1.86.Final-redhat-00010?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.netty.netty-common-4.1.86.Final-redhat-00010", + "product": { + "name": "io.netty.netty-common-4.1.86.Final-redhat-00010", + "product_id": "io.netty.netty-common-4.1.86.Final-redhat-00010", + "product_identification_helper": { + "purl": "pkg:maven/io.netty/netty-common@4.1.86.Final-redhat-00010?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.netty.netty-handler-4.1.86.Final-redhat-00010", + "product": { + "name": "io.netty.netty-handler-4.1.86.Final-redhat-00010", + "product_id": "io.netty.netty-handler-4.1.86.Final-redhat-00010", + "product_identification_helper": { + "purl": "pkg:maven/io.netty/netty-handler@4.1.86.Final-redhat-00010?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.netty.netty-handler-proxy-4.1.86.Final-redhat-00010", + "product": { + "name": "io.netty.netty-handler-proxy-4.1.86.Final-redhat-00010", + "product_id": "io.netty.netty-handler-proxy-4.1.86.Final-redhat-00010", + "product_identification_helper": { + "purl": "pkg:maven/io.netty/netty-handler-proxy@4.1.86.Final-redhat-00010?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.netty.netty-resolver-4.1.86.Final-redhat-00010", + "product": { + "name": "io.netty.netty-resolver-4.1.86.Final-redhat-00010", + "product_id": "io.netty.netty-resolver-4.1.86.Final-redhat-00010", + "product_identification_helper": { + "purl": "pkg:maven/io.netty/netty-resolver@4.1.86.Final-redhat-00010?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.netty.netty-resolver-dns-4.1.86.Final-redhat-00010", + "product": { + "name": "io.netty.netty-resolver-dns-4.1.86.Final-redhat-00010", + "product_id": "io.netty.netty-resolver-dns-4.1.86.Final-redhat-00010", + "product_identification_helper": { + "purl": "pkg:maven/io.netty/netty-resolver-dns@4.1.86.Final-redhat-00010?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.netty.netty-transport-4.1.86.Final-redhat-00010", + "product": { + "name": "io.netty.netty-transport-4.1.86.Final-redhat-00010", + "product_id": "io.netty.netty-transport-4.1.86.Final-redhat-00010", + "product_identification_helper": { + "purl": "pkg:maven/io.netty/netty-transport@4.1.86.Final-redhat-00010?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.netty.netty-transport-classes-epoll-4.1.86.Final-redhat-00010", + "product": { + "name": "io.netty.netty-transport-classes-epoll-4.1.86.Final-redhat-00010", + "product_id": "io.netty.netty-transport-classes-epoll-4.1.86.Final-redhat-00010", + "product_identification_helper": { + "purl": "pkg:maven/io.netty/netty-transport-classes-epoll@4.1.86.Final-redhat-00010?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.netty.netty-transport-native-epoll-4.1.86.Final-redhat-00010", + "product": { + "name": "io.netty.netty-transport-native-epoll-4.1.86.Final-redhat-00010", + "product_id": "io.netty.netty-transport-native-epoll-4.1.86.Final-redhat-00010", + "product_identification_helper": { + "purl": "pkg:maven/io.netty/netty-transport-native-epoll@4.1.86.Final-redhat-00010?classifier=linux-x86_64&repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.netty.netty-transport-native-unix-common-4.1.86.Final-redhat-00010", + "product": { + "name": "io.netty.netty-transport-native-unix-common-4.1.86.Final-redhat-00010", + "product_id": "io.netty.netty-transport-native-unix-common-4.1.86.Final-redhat-00010", + "product_identification_helper": { + "purl": "pkg:maven/io.netty/netty-transport-native-unix-common@4.1.86.Final-redhat-00010?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.oracle.database.jdbc.ojdbc11-21.5.0.0", + "product": { + "name": "com.oracle.database.jdbc.ojdbc11-21.5.0.0", + "product_id": "com.oracle.database.jdbc.ojdbc11-21.5.0.0", + "product_identification_helper": { + "purl": "pkg:maven/com.oracle.database.jdbc/ojdbc11@21.5.0.0?type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.squareup.okhttp3.okhttp-3.14.9.redhat-00003", + "product": { + "name": "com.squareup.okhttp3.okhttp-3.14.9.redhat-00003", + "product_id": "com.squareup.okhttp3.okhttp-3.14.9.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/com.squareup.okhttp3/okhttp@3.14.9.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.squareup.okio.okio-1.17.2.redhat-00002", + "product": { + "name": "com.squareup.okio.okio-1.17.2.redhat-00002", + "product_id": "com.squareup.okio.okio-1.17.2.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/com.squareup.okio/okio@1.17.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.dekorate.openshift-annotations-2.11.3.redhat-00001", + "product": { + "name": "io.dekorate.openshift-annotations-2.11.3.redhat-00001", + "product_id": "io.dekorate.openshift-annotations-2.11.3.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.dekorate/openshift-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.openshift-client-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.openshift-client-5.12.4.redhat-00002", + "product_id": "io.fabric8.openshift-client-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/openshift-client@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.openshift-model-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.openshift-model-5.12.4.redhat-00002", + "product_id": "io.fabric8.openshift-model-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/openshift-model@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.openshift-model-clusterautoscaling-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.openshift-model-clusterautoscaling-5.12.4.redhat-00002", + "product_id": "io.fabric8.openshift-model-clusterautoscaling-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/openshift-model-clusterautoscaling@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.openshift-model-console-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.openshift-model-console-5.12.4.redhat-00002", + "product_id": "io.fabric8.openshift-model-console-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/openshift-model-console@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.openshift-model-hive-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.openshift-model-hive-5.12.4.redhat-00002", + "product_id": "io.fabric8.openshift-model-hive-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/openshift-model-hive@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.openshift-model-installer-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.openshift-model-installer-5.12.4.redhat-00002", + "product_id": "io.fabric8.openshift-model-installer-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/openshift-model-installer@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.openshift-model-machine-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.openshift-model-machine-5.12.4.redhat-00002", + "product_id": "io.fabric8.openshift-model-machine-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/openshift-model-machine@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.openshift-model-machineconfig-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.openshift-model-machineconfig-5.12.4.redhat-00002", + "product_id": "io.fabric8.openshift-model-machineconfig-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/openshift-model-machineconfig@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.openshift-model-miscellaneous-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.openshift-model-miscellaneous-5.12.4.redhat-00002", + "product_id": "io.fabric8.openshift-model-miscellaneous-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/openshift-model-miscellaneous@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.openshift-model-monitoring-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.openshift-model-monitoring-5.12.4.redhat-00002", + "product_id": "io.fabric8.openshift-model-monitoring-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/openshift-model-monitoring@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.openshift-model-operator-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.openshift-model-operator-5.12.4.redhat-00002", + "product_id": "io.fabric8.openshift-model-operator-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/openshift-model-operator@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.openshift-model-operatorhub-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.openshift-model-operatorhub-5.12.4.redhat-00002", + "product_id": "io.fabric8.openshift-model-operatorhub-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/openshift-model-operatorhub@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.openshift-model-storageversionmigrator-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.openshift-model-storageversionmigrator-5.12.4.redhat-00002", + "product_id": "io.fabric8.openshift-model-storageversionmigrator-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/openshift-model-storageversionmigrator@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.openshift-model-tuned-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.openshift-model-tuned-5.12.4.redhat-00002", + "product_id": "io.fabric8.openshift-model-tuned-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/openshift-model-tuned@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.openshift-model-whereabouts-5.12.4.redhat-00002", + "product": { + "name": "io.fabric8.openshift-model-whereabouts-5.12.4.redhat-00002", + "product_id": "io.fabric8.openshift-model-whereabouts-5.12.4.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/openshift-model-whereabouts@5.12.4.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.opentelemetry.opentelemetry-api-1.17.0.redhat-00001", + "product": { + "name": "io.opentelemetry.opentelemetry-api-1.17.0.redhat-00001", + "product_id": "io.opentelemetry.opentelemetry-api-1.17.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.opentelemetry/opentelemetry-api@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.opentelemetry.opentelemetry-context-1.17.0.redhat-00001", + "product": { + "name": "io.opentelemetry.opentelemetry-context-1.17.0.redhat-00001", + "product_id": "io.opentelemetry.opentelemetry-context-1.17.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.opentelemetry/opentelemetry-context@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.opentelemetry.opentelemetry-extension-annotations-1.17.0.redhat-00001", + "product": { + "name": "io.opentelemetry.opentelemetry-extension-annotations-1.17.0.redhat-00001", + "product_id": "io.opentelemetry.opentelemetry-extension-annotations-1.17.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.opentelemetry/opentelemetry-extension-annotations@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.opentelemetry.instrumentation.opentelemetry-instrumentation-annotations-1.17.0.redhat-00001", + "product": { + "name": "io.opentelemetry.instrumentation.opentelemetry-instrumentation-annotations-1.17.0.redhat-00001", + "product_id": "io.opentelemetry.instrumentation.opentelemetry-instrumentation-annotations-1.17.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.opentelemetry.instrumentation.opentelemetry-instrumentation-annotations-support-1.17.0.redhat-00001", + "product": { + "name": "io.opentelemetry.instrumentation.opentelemetry-instrumentation-annotations-support-1.17.0.redhat-00001", + "product_id": "io.opentelemetry.instrumentation.opentelemetry-instrumentation-annotations-support-1.17.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-annotations-support@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.opentelemetry.instrumentation.opentelemetry-instrumentation-api-1.17.0.redhat-00001", + "product": { + "name": "io.opentelemetry.instrumentation.opentelemetry-instrumentation-api-1.17.0.redhat-00001", + "product_id": "io.opentelemetry.instrumentation.opentelemetry-instrumentation-api-1.17.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.opentelemetry.instrumentation.opentelemetry-instrumentation-api-semconv-1.17.0.redhat-00001", + "product": { + "name": "io.opentelemetry.instrumentation.opentelemetry-instrumentation-api-semconv-1.17.0.redhat-00001", + "product_id": "io.opentelemetry.instrumentation.opentelemetry-instrumentation-api-semconv-1.17.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.opentelemetry.instrumentation/opentelemetry-instrumentation-api-semconv@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.opentelemetry.opentelemetry-sdk-1.17.0.redhat-00001", + "product": { + "name": "io.opentelemetry.opentelemetry-sdk-1.17.0.redhat-00001", + "product_id": "io.opentelemetry.opentelemetry-sdk-1.17.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.opentelemetry.opentelemetry-sdk-common-1.17.0.redhat-00001", + "product": { + "name": "io.opentelemetry.opentelemetry-sdk-common-1.17.0.redhat-00001", + "product_id": "io.opentelemetry.opentelemetry-sdk-common-1.17.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-common@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.opentelemetry.opentelemetry-sdk-extension-autoconfigure-spi-1.17.0.redhat-00001", + "product": { + "name": "io.opentelemetry.opentelemetry-sdk-extension-autoconfigure-spi-1.17.0.redhat-00001", + "product_id": "io.opentelemetry.opentelemetry-sdk-extension-autoconfigure-spi-1.17.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.opentelemetry.opentelemetry-sdk-logs-1.17.0.redhat-00001", + "product": { + "name": "io.opentelemetry.opentelemetry-sdk-logs-1.17.0.redhat-00001", + "product_id": "io.opentelemetry.opentelemetry-sdk-logs-1.17.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-logs@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.opentelemetry.opentelemetry-sdk-metrics-1.17.0.redhat-00001", + "product": { + "name": "io.opentelemetry.opentelemetry-sdk-metrics-1.17.0.redhat-00001", + "product_id": "io.opentelemetry.opentelemetry-sdk-metrics-1.17.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-metrics@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.opentelemetry.opentelemetry-sdk-trace-1.17.0.redhat-00001", + "product": { + "name": "io.opentelemetry.opentelemetry-sdk-trace-1.17.0.redhat-00001", + "product_id": "io.opentelemetry.opentelemetry-sdk-trace-1.17.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.opentelemetry/opentelemetry-sdk-trace@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.opentelemetry.opentelemetry-semconv-1.17.0.redhat-00001", + "product": { + "name": "io.opentelemetry.opentelemetry-semconv-1.17.0.redhat-00001", + "product_id": "io.opentelemetry.opentelemetry-semconv-1.17.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.opentelemetry/opentelemetry-semconv@1.17.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.opentest4j.opentest4j-1.2.0", + "product": { + "name": "org.opentest4j.opentest4j-1.2.0", + "product_id": "org.opentest4j.opentest4j-1.2.0", + "product_identification_helper": { + "purl": "pkg:maven/org.opentest4j/opentest4j@1.2.0?type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.opentracing.opentracing-api-0.33.0.redhat-00001", + "product": { + "name": "io.opentracing.opentracing-api-0.33.0.redhat-00001", + "product_id": "io.opentracing.opentracing-api-0.33.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.opentracing/opentracing-api@0.33.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.opentracing.contrib.opentracing-concurrent-0.4.0.redhat-00002", + "product": { + "name": "io.opentracing.contrib.opentracing-concurrent-0.4.0.redhat-00002", + "product_id": "io.opentracing.contrib.opentracing-concurrent-0.4.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.opentracing.contrib/opentracing-concurrent@0.4.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.opentracing.opentracing-noop-0.33.0.redhat-00001", + "product": { + "name": "io.opentracing.opentracing-noop-0.33.0.redhat-00001", + "product_id": "io.opentracing.opentracing-noop-0.33.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.opentracing/opentracing-noop@0.33.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.opentracing.opentracing-util-0.33.0.redhat-00001", + "product": { + "name": "io.opentracing.opentracing-util-0.33.0.redhat-00001", + "product_id": "io.opentracing.opentracing-util-0.33.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.opentracing/opentracing-util@0.33.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.dekorate.option-annotations-2.11.3.redhat-00001", + "product": { + "name": "io.dekorate.option-annotations-2.11.3.redhat-00001", + "product_id": "io.dekorate.option-annotations-2.11.3.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.dekorate/option-annotations@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.testcontainers.oracle-xe-1.17.3", + "product": { + "name": "org.testcontainers.oracle-xe-1.17.3", + "product_id": "org.testcontainers.oracle-xe-1.17.3", + "product_identification_helper": { + "purl": "pkg:maven/org.testcontainers/oracle-xe@1.17.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.github.crac.org-crac-0.1.1.redhat-00002", + "product": { + "name": "io.github.crac.org-crac-0.1.1.redhat-00002", + "product_id": "io.github.crac.org-crac-0.1.1.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.github.crac/org-crac@0.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.eclipse.sisu.org.eclipse.sisu.inject-0.3.5", + "product": { + "name": "org.eclipse.sisu.org.eclipse.sisu.inject-0.3.5", + "product_id": "org.eclipse.sisu.org.eclipse.sisu.inject-0.3.5", + "product_identification_helper": { + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.inject@0.3.5?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.eclipse.sisu.org.eclipse.sisu.plexus-0.3.5", + "product": { + "name": "org.eclipse.sisu.org.eclipse.sisu.plexus-0.3.5", + "product_id": "org.eclipse.sisu.org.eclipse.sisu.plexus-0.3.5", + "product_identification_helper": { + "purl": "pkg:maven/org.eclipse.sisu/org.eclipse.sisu.plexus@0.3.5?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.eclipse.transformer.org.eclipse.transformer-0.5.0", + "product": { + "name": "org.eclipse.transformer.org.eclipse.transformer-0.5.0", + "product_id": "org.eclipse.transformer.org.eclipse.transformer-0.5.0", + "product_identification_helper": { + "purl": "pkg:maven/org.eclipse.transformer/org.eclipse.transformer@0.5.0?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jacoco.org.jacoco.agent-0.8.8", + "product": { + "name": "org.jacoco.org.jacoco.agent-0.8.8", + "product_id": "org.jacoco.org.jacoco.agent-0.8.8", + "product_identification_helper": { + "purl": "pkg:maven/org.jacoco/org.jacoco.agent@0.8.8?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jacoco.org.jacoco.core-0.8.8", + "product": { + "name": "org.jacoco.org.jacoco.core-0.8.8", + "product_id": "org.jacoco.org.jacoco.core-0.8.8", + "product_identification_helper": { + "purl": "pkg:maven/org.jacoco/org.jacoco.core@0.8.8?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jacoco.org.jacoco.report-0.8.8", + "product": { + "name": "org.jacoco.org.jacoco.report-0.8.8", + "product_id": "org.jacoco.org.jacoco.report-0.8.8", + "product_identification_helper": { + "purl": "pkg:maven/org.jacoco/org.jacoco.report@0.8.8?type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.perfmark.perfmark-api-0.25.0", + "product": { + "name": "io.perfmark.perfmark-api-0.25.0", + "product_id": "io.perfmark.perfmark-api-0.25.0", + "product_identification_helper": { + "purl": "pkg:maven/io.perfmark/perfmark-api@0.25.0?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.codehaus.plexus.plexus-cipher-2.0", + "product": { + "name": "org.codehaus.plexus.plexus-cipher-2.0", + "product_id": "org.codehaus.plexus.plexus-cipher-2.0", + "product_identification_helper": { + "purl": "pkg:maven/org.codehaus.plexus/plexus-cipher@2.0?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.codehaus.plexus.plexus-classworlds-2.6.0", + "product": { + "name": "org.codehaus.plexus.plexus-classworlds-2.6.0", + "product_id": "org.codehaus.plexus.plexus-classworlds-2.6.0", + "product_identification_helper": { + "purl": "pkg:maven/org.codehaus.plexus/plexus-classworlds@2.6.0?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.codehaus.plexus.plexus-compiler-api-2.7", + "product": { + "name": "org.codehaus.plexus.plexus-compiler-api-2.7", + "product_id": "org.codehaus.plexus.plexus-compiler-api-2.7", + "product_identification_helper": { + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-api@2.7?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.codehaus.plexus.plexus-compiler-javac-2.7", + "product": { + "name": "org.codehaus.plexus.plexus-compiler-javac-2.7", + "product_id": "org.codehaus.plexus.plexus-compiler-javac-2.7", + "product_identification_helper": { + "purl": "pkg:maven/org.codehaus.plexus/plexus-compiler-javac@2.7?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.codehaus.plexus.plexus-component-annotations-2.1.0", + "product": { + "name": "org.codehaus.plexus.plexus-component-annotations-2.1.0", + "product_id": "org.codehaus.plexus.plexus-component-annotations-2.1.0", + "product_identification_helper": { + "purl": "pkg:maven/org.codehaus.plexus/plexus-component-annotations@2.1.0?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.codehaus.plexus.plexus-interpolation-1.26", + "product": { + "name": "org.codehaus.plexus.plexus-interpolation-1.26", + "product_id": "org.codehaus.plexus.plexus-interpolation-1.26", + "product_identification_helper": { + "purl": "pkg:maven/org.codehaus.plexus/plexus-interpolation@1.26?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.codehaus.plexus.plexus-sec-dispatcher-2.0", + "product": { + "name": "org.codehaus.plexus.plexus-sec-dispatcher-2.0", + "product_id": "org.codehaus.plexus.plexus-sec-dispatcher-2.0", + "product_identification_helper": { + "purl": "pkg:maven/org.codehaus.plexus/plexus-sec-dispatcher@2.0?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.codehaus.plexus.plexus-utils-3.3.0.redhat-00002", + "product": { + "name": "org.codehaus.plexus.plexus-utils-3.3.0.redhat-00002", + "product_id": "org.codehaus.plexus.plexus-utils-3.3.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.codehaus.plexus/plexus-utils@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.testcontainers.postgresql-1.17.3", + "product": { + "name": "org.testcontainers.postgresql-1.17.3", + "product_id": "org.testcontainers.postgresql-1.17.3", + "product_identification_helper": { + "purl": "pkg:maven/org.testcontainers/postgresql@1.17.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.postgresql.postgresql-42.5.1.redhat-00001", + "product": { + "name": "org.postgresql.postgresql-42.5.1.redhat-00001", + "product_id": "org.postgresql.postgresql-42.5.1.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.postgresql/postgresql@42.5.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.google.protobuf.protobuf-java-3.19.6.redhat-00003", + "product": { + "name": "com.google.protobuf.protobuf-java-3.19.6.redhat-00003", + "product_id": "com.google.protobuf.protobuf-java-3.19.6.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/com.google.protobuf/protobuf-java@3.19.6.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.google.protobuf.protobuf-java-util-3.19.6.redhat-00003", + "product": { + "name": "com.google.protobuf.protobuf-java-util-3.19.6.redhat-00003", + "product_id": "com.google.protobuf.protobuf-java-util-3.19.6.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/com.google.protobuf/protobuf-java-util@3.19.6.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.google.protobuf.protoc-3.19.6", + "product": { + "name": "com.google.protobuf.protoc-3.19.6", + "product_id": "com.google.protobuf.protoc-3.19.6", + "product_identification_helper": { + "purl": "pkg:maven/com.google.protobuf/protoc@3.19.6?classifier=linux-aarch_64&type=exe" + } + } + }, + { + "category": "product_version", + "name": "io.grpc.protoc-gen-grpc-java-1.49.0", + "product": { + "name": "io.grpc.protoc-gen-grpc-java-1.49.0", + "product_id": "io.grpc.protoc-gen-grpc-java-1.49.0", + "product_identification_helper": { + "purl": "pkg:maven/io.grpc/protoc-gen-grpc-java@1.49.0?classifier=linux-aarch_64&type=exe" + } + } + }, + { + "category": "product_version", + "name": "com.google.api.grpc.proto-google-common-protos-2.9.2.redhat-00004", + "product": { + "name": "com.google.api.grpc.proto-google-common-protos-2.9.2.redhat-00004", + "product_id": "com.google.api.grpc.proto-google-common-protos-2.9.2.redhat-00004", + "product_identification_helper": { + "purl": "pkg:maven/com.google.api.grpc/proto-google-common-protos@2.9.2.redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.qpid.proton-j-0.34.0.redhat-00001", + "product": { + "name": "org.apache.qpid.proton-j-0.34.0.redhat-00001", + "product_id": "org.apache.qpid.proton-j-0.34.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.qpid/proton-j@0.34.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.squareup.protoparser-4.0.3.redhat-00001", + "product": { + "name": "com.squareup.protoparser-4.0.3.redhat-00001", + "product_id": "com.squareup.protoparser-4.0.3.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/com.squareup/protoparser@4.0.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.infinispan.protostream.protostream-4.6.2.Final-redhat-00002", + "product": { + "name": "org.infinispan.protostream.protostream-4.6.2.Final-redhat-00002", + "product_id": "org.infinispan.protostream.protostream-4.6.2.Final-redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.infinispan.protostream/protostream@4.6.2.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.infinispan.protostream.protostream-processor-4.6.2.Final-redhat-00002", + "product": { + "name": "org.infinispan.protostream.protostream-processor-4.6.2.Final-redhat-00002", + "product_id": "org.infinispan.protostream.protostream-processor-4.6.2.Final-redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.infinispan.protostream/protostream-processor@4.6.2.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.infinispan.protostream.protostream-types-4.6.2.Final-redhat-00002", + "product": { + "name": "org.infinispan.protostream.protostream-types-4.6.2.Final-redhat-00002", + "product_id": "org.infinispan.protostream.protostream-types-4.6.2.Final-redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.infinispan.protostream/protostream-types@4.6.2.Final-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-agroal-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-agroal-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-agroal-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-agroal@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-agroal-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-agroal-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-agroal-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-agroal-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-agroal-spi-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-agroal-spi-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-agroal-spi-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-agroal-spi@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-apache-httpclient-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-apache-httpclient-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-apache-httpclient-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-apache-httpclient-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-apache-httpclient-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-apache-httpclient-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-apache-httpclient-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-arc-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-arc-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-arc-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-arc@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-arc-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-arc-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-arc-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-arc-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-avro-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-avro-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-avro-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-avro@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-avro-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-avro-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-avro-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-avro-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-bom-quarkus-platform-descriptor-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-bom-quarkus-platform-descriptor-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-bom-quarkus-platform-descriptor-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-descriptor@2.13.8.Final-redhat-00006?classifier=2.13.8.Final-redhat-00006&repository_url=https://maven.repository.redhat.com/ga/&type=json" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-bom-quarkus-platform-properties-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-bom-quarkus-platform-properties-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-bom-quarkus-platform-properties-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-bom-quarkus-platform-properties@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=properties" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-bootstrap-app-model-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-bootstrap-app-model-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-bootstrap-app-model-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-app-model@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-bootstrap-core-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-bootstrap-core-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-bootstrap-core-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-core@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-bootstrap-maven-resolver-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-bootstrap-maven-resolver-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-bootstrap-maven-resolver-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-maven-resolver@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-bootstrap-runner-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-bootstrap-runner-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-bootstrap-runner-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-bootstrap-runner@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-builder-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-builder-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-builder-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-builder@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-cache-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-cache-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-cache-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-cache@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-cache-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-cache-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-cache-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-cache-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-caffeine-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-caffeine-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-caffeine-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-caffeine@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-caffeine-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-caffeine-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-caffeine-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-caffeine-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-class-change-agent-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-class-change-agent-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-class-change-agent-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-class-change-agent@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-config-yaml-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-config-yaml-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-config-yaml-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-config-yaml-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-config-yaml-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-config-yaml-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-config-yaml-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-container-image-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-container-image-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-container-image-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-container-image@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-container-image-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-container-image-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-container-image-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-container-image-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-container-image-openshift-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-container-image-openshift-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-container-image-openshift-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-container-image-openshift-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-container-image-openshift-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-container-image-openshift-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-container-image-openshift-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-container-image-spi-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-container-image-spi-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-container-image-spi-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-container-image-spi@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-container-image-util-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-container-image-util-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-container-image-util-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-container-image-util@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-core-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-core-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-core-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-core@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-core-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-core-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-core-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-core-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-credentials-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-credentials-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-credentials-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-credentials@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-credentials-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-credentials-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-credentials-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-credentials-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-datasource-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-datasource-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-datasource-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-datasource@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-datasource-common-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-datasource-common-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-datasource-common-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-datasource-common@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-datasource-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-datasource-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-datasource-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-datasource-deployment-spi-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-datasource-deployment-spi-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-datasource-deployment-spi-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-datasource-deployment-spi@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-development-mode-spi-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-development-mode-spi-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-development-mode-spi-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-development-mode-spi@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-devservices-common-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-devservices-common-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-devservices-common-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-devservices-common@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-devservices-db2-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-devservices-db2-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-devservices-db2-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-devservices-db2@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-devservices-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-devservices-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-devservices-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-devservices-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-devservices-derby-2.13.8.Final", + "product": { + "name": "io.quarkus.quarkus-devservices-derby-2.13.8.Final", + "product_id": "io.quarkus.quarkus-devservices-derby-2.13.8.Final", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-devservices-derby@2.13.8.Final?type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-devservices-h2-2.13.8.Final", + "product": { + "name": "io.quarkus.quarkus-devservices-h2-2.13.8.Final", + "product_id": "io.quarkus.quarkus-devservices-h2-2.13.8.Final", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-devservices-h2@2.13.8.Final?type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-devservices-mariadb-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-devservices-mariadb-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-devservices-mariadb-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mariadb@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-devservices-mssql-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-devservices-mssql-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-devservices-mssql-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mssql@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-devservices-mysql-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-devservices-mysql-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-devservices-mysql-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-devservices-mysql@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-devservices-oracle-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-devservices-oracle-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-devservices-oracle-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-devservices-oracle@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-devservices-postgresql-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-devservices-postgresql-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-devservices-postgresql-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-devservices-postgresql@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-devtools-base-codestarts-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-devtools-base-codestarts-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-devtools-base-codestarts-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-devtools-base-codestarts@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-devtools-codestarts-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-devtools-codestarts-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-devtools-codestarts-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-devtools-codestarts@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-devtools-common-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-devtools-common-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-devtools-common-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-devtools-common@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-devtools-message-writer-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-devtools-message-writer-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-devtools-message-writer-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-devtools-message-writer@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-devtools-registry-client-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-devtools-registry-client-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-devtools-registry-client-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-devtools-registry-client@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-devtools-utilities-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-devtools-utilities-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-devtools-utilities-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-devtools-utilities@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-elasticsearch-rest-client-common-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-elasticsearch-rest-client-common-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-elasticsearch-rest-client-common-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-elasticsearch-rest-client-common-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-elasticsearch-rest-client-common-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-elasticsearch-rest-client-common-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-elasticsearch-rest-client-common-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-elytron-security-common-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-elytron-security-common-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-elytron-security-common-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-elytron-security-common-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-elytron-security-common-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-elytron-security-common-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-elytron-security-common-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-extension-maven-plugin-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-extension-maven-plugin-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-extension-maven-plugin-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-extension-maven-plugin@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-extension-processor-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-extension-processor-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-extension-processor-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-extension-processor@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-fs-util-0.0.9.redhat-00003", + "product": { + "name": "io.quarkus.quarkus-fs-util-0.0.9.redhat-00003", + "product_id": "io.quarkus.quarkus-fs-util-0.0.9.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-fs-util@0.0.9.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-funqy-knative-events-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-funqy-knative-events-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-funqy-knative-events-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-funqy-knative-events-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-funqy-knative-events-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-funqy-knative-events-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-funqy-knative-events-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-funqy-server-common-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-funqy-server-common-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-funqy-server-common-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-funqy-server-common-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-funqy-server-common-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-funqy-server-common-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-funqy-server-common-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-grpc-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-grpc-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-grpc-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-grpc@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-grpc-api-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-grpc-api-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-grpc-api-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-grpc-api@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-grpc-codegen-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-grpc-codegen-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-grpc-codegen-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-grpc-codegen@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-grpc-common-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-grpc-common-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-grpc-common-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-grpc-common-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-grpc-common-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-grpc-common-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-grpc-common-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-grpc-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-grpc-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-grpc-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-grpc-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-grpc-protoc-plugin-2.13.8.Final", + "product": { + "name": "io.quarkus.quarkus-grpc-protoc-plugin-2.13.8.Final", + "product_id": "io.quarkus.quarkus-grpc-protoc-plugin-2.13.8.Final", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-grpc-protoc-plugin@2.13.8.Final?classifier=shaded&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-grpc-stubs-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-grpc-stubs-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-grpc-stubs-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-grpc-stubs@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-hal-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-hal-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-hal-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-hal@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-hal-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-hal-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-hal-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-hal-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-hibernate-orm-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-hibernate-orm-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-hibernate-orm-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-hibernate-orm-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-hibernate-orm-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-hibernate-orm-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-hibernate-orm-deployment-spi-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-hibernate-orm-deployment-spi-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-hibernate-orm-deployment-spi-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-deployment-spi@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-hibernate-orm-panache-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-hibernate-orm-panache-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-hibernate-orm-panache-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-hibernate-orm-panache-common-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-hibernate-orm-panache-common-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-hibernate-orm-panache-common-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-hibernate-orm-panache-common-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-hibernate-orm-panache-common-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-hibernate-orm-panache-common-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-common-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-hibernate-orm-panache-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-hibernate-orm-panache-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-hibernate-orm-panache-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-panache-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-hibernate-orm-rest-data-panache-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-hibernate-orm-rest-data-panache-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-hibernate-orm-rest-data-panache-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-hibernate-orm-rest-data-panache-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-hibernate-orm-rest-data-panache-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-hibernate-orm-rest-data-panache-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-orm-rest-data-panache-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-hibernate-reactive-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-hibernate-reactive-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-hibernate-reactive-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-hibernate-reactive-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-hibernate-reactive-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-hibernate-reactive-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-reactive-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-hibernate-search-orm-elasticsearch-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-hibernate-search-orm-elasticsearch-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-hibernate-search-orm-elasticsearch-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-hibernate-search-orm-elasticsearch-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-hibernate-search-orm-elasticsearch-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-hibernate-search-orm-elasticsearch-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-search-orm-elasticsearch-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-hibernate-validator-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-hibernate-validator-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-hibernate-validator-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-hibernate-validator-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-hibernate-validator-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-hibernate-validator-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-hibernate-validator-spi-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-hibernate-validator-spi-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-hibernate-validator-spi-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-hibernate-validator-spi@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.http.quarkus-http-core-4.1.9.redhat-00001", + "product": { + "name": "io.quarkus.http.quarkus-http-core-4.1.9.redhat-00001", + "product_id": "io.quarkus.http.quarkus-http-core-4.1.9.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus.http/quarkus-http-core@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.http.quarkus-http-http-core-4.1.9.redhat-00001", + "product": { + "name": "io.quarkus.http.quarkus-http-http-core-4.1.9.redhat-00001", + "product_id": "io.quarkus.http.quarkus-http-http-core-4.1.9.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus.http/quarkus-http-http-core@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.http.quarkus-http-servlet-4.1.9.redhat-00001", + "product": { + "name": "io.quarkus.http.quarkus-http-servlet-4.1.9.redhat-00001", + "product_id": "io.quarkus.http.quarkus-http-servlet-4.1.9.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus.http/quarkus-http-servlet@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.http.quarkus-http-vertx-backend-4.1.9.redhat-00001", + "product": { + "name": "io.quarkus.http.quarkus-http-vertx-backend-4.1.9.redhat-00001", + "product_id": "io.quarkus.http.quarkus-http-vertx-backend-4.1.9.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus.http/quarkus-http-vertx-backend@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.http.quarkus-http-websocket-core-4.1.9.redhat-00001", + "product": { + "name": "io.quarkus.http.quarkus-http-websocket-core-4.1.9.redhat-00001", + "product_id": "io.quarkus.http.quarkus-http-websocket-core-4.1.9.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-core@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.http.quarkus-http-websocket-vertx-4.1.9.redhat-00001", + "product": { + "name": "io.quarkus.http.quarkus-http-websocket-vertx-4.1.9.redhat-00001", + "product_id": "io.quarkus.http.quarkus-http-websocket-vertx-4.1.9.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus.http/quarkus-http-websocket-vertx@4.1.9.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-ide-launcher-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-ide-launcher-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-ide-launcher-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-ide-launcher@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-infinispan-client-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-infinispan-client-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-infinispan-client-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-infinispan-client-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-infinispan-client-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-infinispan-client-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-infinispan-client-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jackson-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jackson-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jackson-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jackson@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jackson-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jackson-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jackson-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jackson-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jackson-spi-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jackson-spi-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jackson-spi-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jackson-spi@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jacoco-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jacoco-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jacoco-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jacoco@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jacoco-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jacoco-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jacoco-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jacoco-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jaeger-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jaeger-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jaeger-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jaeger@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jaeger-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jaeger-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jaeger-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jaeger-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jaxb-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jaxb-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jaxb-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jaxb@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jaxb-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jaxb-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jaxb-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jaxb-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jaxp-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jaxp-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jaxp-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jaxp@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jaxp-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jaxp-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jaxp-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jaxp-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jaxrs-client-reactive-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jaxrs-client-reactive-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jaxrs-client-reactive-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jaxrs-client-reactive-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jaxrs-client-reactive-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jaxrs-client-reactive-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-client-reactive-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jaxrs-spi-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jaxrs-spi-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jaxrs-spi-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jaxrs-spi-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jdbc-db2-2.13.8.Final", + "product": { + "name": "io.quarkus.quarkus-jdbc-db2-2.13.8.Final", + "product_id": "io.quarkus.quarkus-jdbc-db2-2.13.8.Final", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2@2.13.8.Final?type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jdbc-db2-deployment-2.13.8.Final", + "product": { + "name": "io.quarkus.quarkus-jdbc-db2-deployment-2.13.8.Final", + "product_id": "io.quarkus.quarkus-jdbc-db2-deployment-2.13.8.Final", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-db2-deployment@2.13.8.Final?type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jdbc-derby-2.13.8.Final", + "product": { + "name": "io.quarkus.quarkus-jdbc-derby-2.13.8.Final", + "product_id": "io.quarkus.quarkus-jdbc-derby-2.13.8.Final", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby@2.13.8.Final?type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jdbc-derby-deployment-2.13.8.Final", + "product": { + "name": "io.quarkus.quarkus-jdbc-derby-deployment-2.13.8.Final", + "product_id": "io.quarkus.quarkus-jdbc-derby-deployment-2.13.8.Final", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-derby-deployment@2.13.8.Final?type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jdbc-h2-2.13.8.Final", + "product": { + "name": "io.quarkus.quarkus-jdbc-h2-2.13.8.Final", + "product_id": "io.quarkus.quarkus-jdbc-h2-2.13.8.Final", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2@2.13.8.Final?type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jdbc-h2-deployment-2.13.8.Final", + "product": { + "name": "io.quarkus.quarkus-jdbc-h2-deployment-2.13.8.Final", + "product_id": "io.quarkus.quarkus-jdbc-h2-deployment-2.13.8.Final", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-h2-deployment@2.13.8.Final?type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jdbc-mariadb-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jdbc-mariadb-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jdbc-mariadb-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jdbc-mariadb-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jdbc-mariadb-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jdbc-mariadb-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mariadb-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jdbc-mssql-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jdbc-mssql-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jdbc-mssql-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jdbc-mssql-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jdbc-mssql-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jdbc-mssql-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mssql-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jdbc-mysql-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jdbc-mysql-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jdbc-mysql-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jdbc-mysql-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jdbc-mysql-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jdbc-mysql-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-mysql-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jdbc-oracle-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jdbc-oracle-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jdbc-oracle-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jdbc-oracle-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jdbc-oracle-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jdbc-oracle-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-oracle-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jdbc-postgresql-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jdbc-postgresql-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jdbc-postgresql-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jdbc-postgresql-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jdbc-postgresql-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jdbc-postgresql-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jdbc-postgresql-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jsonb-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jsonb-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jsonb-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jsonb@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jsonb-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jsonb-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jsonb-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jsonb-spi-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jsonb-spi-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jsonb-spi-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jsonb-spi@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jsonp-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jsonp-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jsonp-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jsonp@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-jsonp-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-jsonp-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-jsonp-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-jsonp-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-junit4-mock-2.13.8.Final", + "product": { + "name": "io.quarkus.quarkus-junit4-mock-2.13.8.Final", + "product_id": "io.quarkus.quarkus-junit4-mock-2.13.8.Final", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-junit4-mock@2.13.8.Final?type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-kafka-client-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-kafka-client-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-kafka-client-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-kafka-client-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-kafka-client-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-kafka-client-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-kafka-client-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-kafka-streams-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-kafka-streams-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-kafka-streams-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-kafka-streams-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-kafka-streams-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-kafka-streams-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-kafka-streams-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-keycloak-authorization-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-keycloak-authorization-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-keycloak-authorization-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-keycloak-authorization-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-keycloak-authorization-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-keycloak-authorization-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-keycloak-authorization-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-kubernetes-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-kubernetes-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-kubernetes-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-kubernetes-client-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-kubernetes-client-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-kubernetes-client-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-kubernetes-client-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-kubernetes-client-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-kubernetes-client-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-kubernetes-client-internal-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-kubernetes-client-internal-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-kubernetes-client-internal-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-kubernetes-client-internal-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-kubernetes-client-internal-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-kubernetes-client-internal-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-internal-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-kubernetes-client-spi-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-kubernetes-client-spi-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-kubernetes-client-spi-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-client-spi@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-kubernetes-config-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-kubernetes-config-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-kubernetes-config-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-kubernetes-config-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-kubernetes-config-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-kubernetes-config-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-config-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-kubernetes-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-kubernetes-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-kubernetes-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-kubernetes-service-binding-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-kubernetes-service-binding-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-kubernetes-service-binding-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-kubernetes-service-binding-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-kubernetes-service-binding-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-kubernetes-service-binding-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-kubernetes-service-binding-spi-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-kubernetes-service-binding-spi-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-kubernetes-service-binding-spi-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-service-binding-spi@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-kubernetes-spi-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-kubernetes-spi-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-kubernetes-spi-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-kubernetes-spi@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.hibernate.quarkus-local-cache-0.1.1.redhat-00002", + "product": { + "name": "org.hibernate.quarkus-local-cache-0.1.1.redhat-00002", + "product_id": "org.hibernate.quarkus-local-cache-0.1.1.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.hibernate/quarkus-local-cache@0.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-logging-json-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-logging-json-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-logging-json-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-logging-json@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-logging-json-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-logging-json-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-logging-json-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-logging-json-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-mailer-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-mailer-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-mailer-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-mailer@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-mailer-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-mailer-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-mailer-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-mailer-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-maven-plugin-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-maven-plugin-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-maven-plugin-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-maven-plugin@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-micrometer-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-micrometer-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-micrometer-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-micrometer@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-micrometer-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-micrometer-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-micrometer-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-micrometer-registry-prometheus-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-micrometer-registry-prometheus-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-micrometer-registry-prometheus-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-micrometer-registry-prometheus-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-micrometer-registry-prometheus-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-micrometer-registry-prometheus-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-micrometer-registry-prometheus-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-mongodb-client-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-mongodb-client-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-mongodb-client-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-mongodb-client-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-mongodb-client-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-mongodb-client-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-mongodb-client-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-mutiny-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-mutiny-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-mutiny-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-mutiny@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-mutiny-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-mutiny-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-mutiny-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-mutiny-reactive-streams-operators-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-mutiny-reactive-streams-operators-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-mutiny-reactive-streams-operators-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-mutiny-reactive-streams-operators-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-mutiny-reactive-streams-operators-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-mutiny-reactive-streams-operators-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-mutiny-reactive-streams-operators-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-narayana-jta-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-narayana-jta-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-narayana-jta-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-narayana-jta-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-narayana-jta-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-narayana-jta-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-narayana-jta-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-netty-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-netty-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-netty-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-netty@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-netty-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-netty-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-netty-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-netty-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-oidc-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-oidc-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-oidc-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-oidc@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-oidc-client-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-oidc-client-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-oidc-client-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-oidc-client-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-oidc-client-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-oidc-client-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-oidc-client-filter-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-oidc-client-filter-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-oidc-client-filter-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-oidc-client-filter-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-oidc-client-filter-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-oidc-client-filter-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-filter-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-oidc-client-reactive-filter-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-oidc-client-reactive-filter-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-oidc-client-reactive-filter-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-oidc-client-reactive-filter-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-oidc-client-reactive-filter-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-oidc-client-reactive-filter-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-oidc-client-reactive-filter-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-oidc-common-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-oidc-common-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-oidc-common-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-oidc-common-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-oidc-common-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-oidc-common-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-oidc-common-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-oidc-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-oidc-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-oidc-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-oidc-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-openshift-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-openshift-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-openshift-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-openshift@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-openshift-client-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-openshift-client-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-openshift-client-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-openshift-client-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-openshift-client-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-openshift-client-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-openshift-client-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-openshift-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-openshift-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-openshift-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-openshift-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-opentelemetry-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-opentelemetry-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-opentelemetry-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-opentelemetry-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-opentelemetry-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-opentelemetry-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-opentelemetry-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-panache-common-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-panache-common-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-panache-common-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-panache-common@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-panache-common-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-panache-common-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-panache-common-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-panache-common-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-panache-hibernate-common-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-panache-hibernate-common-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-panache-hibernate-common-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-panache-hibernate-common-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-panache-hibernate-common-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-panache-hibernate-common-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-panache-hibernate-common-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-project-core-extension-codestarts-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-project-core-extension-codestarts-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-project-core-extension-codestarts-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-project-core-extension-codestarts@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-quartz-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-quartz-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-quartz-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-quartz@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-quartz-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-quartz-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-quartz-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-quartz-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-qute-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-qute-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-qute-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-qute@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-qute-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-qute-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-qute-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-qute-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-reactive-datasource-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-reactive-datasource-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-reactive-datasource-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-reactive-datasource-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-reactive-datasource-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-reactive-datasource-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-reactive-datasource-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-reactive-mssql-client-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-reactive-mssql-client-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-reactive-mssql-client-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-reactive-mssql-client-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-reactive-mssql-client-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-reactive-mssql-client-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mssql-client-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-reactive-mysql-client-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-reactive-mysql-client-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-reactive-mysql-client-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-reactive-mysql-client-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-reactive-mysql-client-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-reactive-mysql-client-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-reactive-mysql-client-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-reactive-pg-client-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-reactive-pg-client-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-reactive-pg-client-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-reactive-pg-client-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-reactive-pg-client-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-reactive-pg-client-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-reactive-pg-client-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-reactive-routes-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-reactive-routes-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-reactive-routes-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-reactive-routes-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-reactive-routes-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-reactive-routes-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-reactive-routes-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-rest-client-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-rest-client-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-rest-client-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-rest-client@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-rest-client-config-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-rest-client-config-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-rest-client-config-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-rest-client-config-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-rest-client-config-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-rest-client-config-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-config-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-rest-client-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-rest-client-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-rest-client-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-rest-client-jackson-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-rest-client-jackson-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-rest-client-jackson-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-rest-client-jackson-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-rest-client-jackson-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-rest-client-jackson-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jackson-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-rest-client-jaxb-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-rest-client-jaxb-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-rest-client-jaxb-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-rest-client-jaxb-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-rest-client-jaxb-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-rest-client-jaxb-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jaxb-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-rest-client-jsonb-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-rest-client-jsonb-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-rest-client-jsonb-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-rest-client-jsonb-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-rest-client-jsonb-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-rest-client-jsonb-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-jsonb-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-rest-client-reactive-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-rest-client-reactive-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-rest-client-reactive-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-rest-client-reactive-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-rest-client-reactive-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-rest-client-reactive-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-rest-client-reactive-jackson-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-rest-client-reactive-jackson-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-rest-client-reactive-jackson-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-rest-client-reactive-jackson-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-rest-client-reactive-jackson-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-rest-client-reactive-jackson-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-rest-client-reactive-jackson-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-rest-data-panache-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-rest-data-panache-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-rest-data-panache-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-rest-data-panache-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-rest-data-panache-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-rest-data-panache-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-rest-data-panache-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-common-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-common-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-common-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-common-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-common-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-common-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-common-spi-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-common-spi-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-common-spi-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-common-spi@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-jackson-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-jackson-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-jackson-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-jackson-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-jackson-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-jackson-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jackson-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-jaxb-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-jaxb-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-jaxb-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-jaxb-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-jaxb-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-jaxb-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jaxb-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-jsonb-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-jsonb-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-jsonb-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-jsonb-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-jsonb-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-jsonb-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-jsonb-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-multipart-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-multipart-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-multipart-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-multipart-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-multipart-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-multipart-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-multipart-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-qute-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-qute-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-qute-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-qute-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-qute-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-qute-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-qute-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-reactive-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-reactive-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-reactive-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-reactive-common-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-reactive-common-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-reactive-common-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-reactive-common-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-reactive-common-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-reactive-common-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-common-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-reactive-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-reactive-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-reactive-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-reactive-jackson-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-reactive-jackson-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-reactive-jackson-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-reactive-jackson-common-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-reactive-jackson-common-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-reactive-jackson-common-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-reactive-jackson-common-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-reactive-jackson-common-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-reactive-jackson-common-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-common-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-reactive-jackson-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-reactive-jackson-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-reactive-jackson-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jackson-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-reactive-jaxb-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-reactive-jaxb-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-reactive-jaxb-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-reactive-jaxb-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-reactive-jaxb-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-reactive-jaxb-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jaxb-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-reactive-jsonb-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-reactive-jsonb-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-reactive-jsonb-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-reactive-jsonb-common-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-reactive-jsonb-common-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-reactive-jsonb-common-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-reactive-jsonb-common-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-reactive-jsonb-common-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-reactive-jsonb-common-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-common-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-reactive-jsonb-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-reactive-jsonb-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-reactive-jsonb-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-jsonb-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-reactive-qute-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-reactive-qute-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-reactive-qute-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-reactive-qute-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-reactive-qute-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-reactive-qute-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-qute-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-reactive-server-spi-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-reactive-server-spi-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-reactive-server-spi-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-server-spi-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-reactive-spi-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-reactive-spi-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-reactive-spi-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-reactive-spi-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-server-common-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-server-common-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-server-common-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-server-common-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-server-common-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-server-common-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-resteasy-server-common-spi-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-resteasy-server-common-spi-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-resteasy-server-common-spi-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-resteasy-server-common-spi@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-scheduler-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-scheduler-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-scheduler-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-scheduler@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-scheduler-api-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-scheduler-api-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-scheduler-api-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-api@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-scheduler-common-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-scheduler-common-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-scheduler-common-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-common@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-scheduler-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-scheduler-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-scheduler-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-scheduler-kotlin-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-scheduler-kotlin-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-scheduler-kotlin-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-scheduler-kotlin@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.security.quarkus-security-1.1.4.Final-redhat-00001", + "product": { + "name": "io.quarkus.security.quarkus-security-1.1.4.Final-redhat-00001", + "product_id": "io.quarkus.security.quarkus-security-1.1.4.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus.security/quarkus-security@1.1.4.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-security-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-security-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-security-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-security@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-security-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-security-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-security-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-security-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-security-runtime-spi-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-security-runtime-spi-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-security-runtime-spi-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-security-runtime-spi@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-security-spi-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-security-spi-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-security-spi-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-security-spi@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-context-propagation-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-context-propagation-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-context-propagation-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-context-propagation-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-context-propagation-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-context-propagation-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-context-propagation-spi-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-context-propagation-spi-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-context-propagation-spi-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-context-propagation-spi@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-fault-tolerance-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-fault-tolerance-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-fault-tolerance-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-fault-tolerance-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-fault-tolerance-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-fault-tolerance-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-fault-tolerance-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-graphql-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-graphql-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-graphql-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-graphql-client-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-graphql-client-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-graphql-client-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-graphql-client-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-graphql-client-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-graphql-client-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-client-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-graphql-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-graphql-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-graphql-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-graphql-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-health-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-health-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-health-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-health-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-health-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-health-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-health-spi-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-health-spi-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-health-spi-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-health-spi@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-jwt-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-jwt-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-jwt-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-jwt-build-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-jwt-build-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-jwt-build-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-jwt-build-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-jwt-build-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-jwt-build-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-build-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-jwt-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-jwt-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-jwt-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-jwt-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-metrics-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-metrics-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-metrics-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-metrics-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-metrics-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-metrics-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-metrics-spi-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-metrics-spi-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-metrics-spi-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-metrics-spi@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-openapi-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-openapi-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-openapi-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-openapi-common-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-openapi-common-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-openapi-common-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-common-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-openapi-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-openapi-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-openapi-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-openapi-spi-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-openapi-spi-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-openapi-spi-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-openapi-spi@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-opentracing-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-opentracing-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-opentracing-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-opentracing-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-opentracing-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-opentracing-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-opentracing-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-reactive-messaging-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-reactive-messaging-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-reactive-messaging-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-reactive-messaging-amqp-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-reactive-messaging-amqp-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-reactive-messaging-amqp-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-reactive-messaging-amqp-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-reactive-messaging-amqp-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-reactive-messaging-amqp-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-amqp-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-reactive-messaging-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-reactive-messaging-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-reactive-messaging-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-reactive-messaging-kafka-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-reactive-messaging-kafka-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-reactive-messaging-kafka-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-reactive-messaging-kafka-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-reactive-messaging-kafka-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-reactive-messaging-kafka-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kafka-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-reactive-messaging-kotlin-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-reactive-messaging-kotlin-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-reactive-messaging-kotlin-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-reactive-messaging-kotlin@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-stork-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-stork-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-stork-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-smallrye-stork-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-smallrye-stork-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-smallrye-stork-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-smallrye-stork-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-beans-api-5.2.0.SP7-redhat-00001", + "product": { + "name": "io.quarkus.quarkus-spring-beans-api-5.2.0.SP7-redhat-00001", + "product_id": "io.quarkus.quarkus-spring-beans-api-5.2.0.SP7-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-beans-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-boot-orm-api-2.1.0.SP1-redhat-00003", + "product": { + "name": "io.quarkus.quarkus-spring-boot-orm-api-2.1.0.SP1-redhat-00003", + "product_id": "io.quarkus.quarkus-spring-boot-orm-api-2.1.0.SP1-redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-orm-api@2.1.0.SP1-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-boot-properties-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-spring-boot-properties-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-spring-boot-properties-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-boot-properties-api-2.1.0.SP1-redhat-00003", + "product": { + "name": "io.quarkus.quarkus-spring-boot-properties-api-2.1.0.SP1-redhat-00003", + "product_id": "io.quarkus.quarkus-spring-boot-properties-api-2.1.0.SP1-redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-api@2.1.0.SP1-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-boot-properties-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-spring-boot-properties-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-spring-boot-properties-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-boot-properties-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-cache-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-spring-cache-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-spring-cache-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-cache-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-spring-cache-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-spring-cache-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-cache-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-cloud-config-client-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-spring-cloud-config-client-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-spring-cloud-config-client-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-cloud-config-client-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-spring-cloud-config-client-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-spring-cloud-config-client-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-cloud-config-client-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-context-api-5.2.0.SP7-redhat-00001", + "product": { + "name": "io.quarkus.quarkus-spring-context-api-5.2.0.SP7-redhat-00001", + "product_id": "io.quarkus.quarkus-spring-context-api-5.2.0.SP7-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-context-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-core-api-5.2.0.SP7-redhat-00001", + "product": { + "name": "io.quarkus.quarkus-spring-core-api-5.2.0.SP7-redhat-00001", + "product_id": "io.quarkus.quarkus-spring-core-api-5.2.0.SP7-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-core-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-data-commons-api-2.1.0.SP2-redhat-00002", + "product": { + "name": "io.quarkus.quarkus-spring-data-commons-api-2.1.0.SP2-redhat-00002", + "product_id": "io.quarkus.quarkus-spring-data-commons-api-2.1.0.SP2-redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-commons-api@2.1.0.SP2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-data-jpa-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-spring-data-jpa-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-spring-data-jpa-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-data-jpa-api-2.1.0.SP2-redhat-00002", + "product": { + "name": "io.quarkus.quarkus-spring-data-jpa-api-2.1.0.SP2-redhat-00002", + "product_id": "io.quarkus.quarkus-spring-data-jpa-api-2.1.0.SP2-redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-api@2.1.0.SP2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-data-jpa-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-spring-data-jpa-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-spring-data-jpa-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-jpa-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-data-rest-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-spring-data-rest-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-spring-data-rest-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-data-rest-api-2.1.0.SP2-redhat-00002", + "product": { + "name": "io.quarkus.quarkus-spring-data-rest-api-2.1.0.SP2-redhat-00002", + "product_id": "io.quarkus.quarkus-spring-data-rest-api-2.1.0.SP2-redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-api@2.1.0.SP2-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-data-rest-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-spring-data-rest-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-spring-data-rest-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-data-rest-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-di-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-spring-di-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-spring-di-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-di@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-di-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-spring-di-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-spring-di-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-di-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-scheduled-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-spring-scheduled-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-spring-scheduled-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-scheduled-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-spring-scheduled-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-spring-scheduled-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-scheduled-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-security-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-spring-security-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-spring-security-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-security@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-security-core-api-5.3.0.Final-redhat-00001", + "product": { + "name": "io.quarkus.quarkus-spring-security-core-api-5.3.0.Final-redhat-00001", + "product_id": "io.quarkus.quarkus-spring-security-core-api-5.3.0.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-core-api@5.3.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-security-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-spring-security-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-spring-security-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-security-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-web-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-spring-web-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-spring-web-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-web@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-web-api-5.2.0.SP7-redhat-00001", + "product": { + "name": "io.quarkus.quarkus-spring-web-api-5.2.0.SP7-redhat-00001", + "product_id": "io.quarkus.quarkus-spring-web-api-5.2.0.SP7-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-web-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-spring-web-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-spring-web-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-web-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-spring-webmvc-api-5.2.0.SP7-redhat-00001", + "product": { + "name": "io.quarkus.quarkus-spring-webmvc-api-5.2.0.SP7-redhat-00001", + "product_id": "io.quarkus.quarkus-spring-webmvc-api-5.2.0.SP7-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-spring-webmvc-api@5.2.0.SP7-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-swagger-ui-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-swagger-ui-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-swagger-ui-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-swagger-ui-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-swagger-ui-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-swagger-ui-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-swagger-ui-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-transaction-annotations-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-transaction-annotations-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-transaction-annotations-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-transaction-annotations@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-undertow-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-undertow-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-undertow-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-undertow@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-undertow-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-undertow-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-undertow-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-undertow-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-undertow-spi-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-undertow-spi-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-undertow-spi-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-undertow-spi@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-vertx-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-vertx-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-vertx-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-vertx@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-vertx-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-vertx-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-vertx-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-vertx-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-vertx-http-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-vertx-http-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-vertx-http-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-vertx-http-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-vertx-http-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-vertx-http-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-vertx-http-deployment-spi-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-vertx-http-deployment-spi-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-vertx-http-deployment-spi-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-deployment-spi@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-vertx-http-dev-console-runtime-spi-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-vertx-http-dev-console-runtime-spi-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-vertx-http-dev-console-runtime-spi-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-runtime-spi@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-vertx-http-dev-console-spi-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-vertx-http-dev-console-spi-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-vertx-http-dev-console-spi-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-vertx-http-dev-console-spi@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-vertx-latebound-mdc-provider-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-vertx-latebound-mdc-provider-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-vertx-latebound-mdc-provider-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-vertx-latebound-mdc-provider@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-websockets-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-websockets-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-websockets-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-websockets@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-websockets-client-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-websockets-client-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-websockets-client-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-websockets-client-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-websockets-client-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-websockets-client-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-websockets-client-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.quarkus-websockets-deployment-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.quarkus-websockets-deployment-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.quarkus-websockets-deployment-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus/quarkus-websockets-deployment@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.quartz-scheduler.quartz-2.3.2.redhat-00007", + "product": { + "name": "org.quartz-scheduler.quartz-2.3.2.redhat-00007", + "product_id": "org.quartz-scheduler.quartz-2.3.2.redhat-00007", + "product_identification_helper": { + "purl": "pkg:maven/org.quartz-scheduler/quartz@2.3.2.redhat-00007?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.qute.qute-core-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.qute.qute-core-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.qute.qute-core-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus.qute/qute-core@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.qute.qute-generator-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.qute.qute-generator-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.qute.qute-generator-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus.qute/qute-generator@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.reactivestreams.reactive-streams-1.0.3.redhat-00005", + "product": { + "name": "org.reactivestreams.reactive-streams-1.0.3.redhat-00005", + "product_id": "org.reactivestreams.reactive-streams-1.0.3.redhat-00005", + "product_identification_helper": { + "purl": "pkg:maven/org.reactivestreams/reactive-streams@1.0.3.redhat-00005?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.projectreactor.reactor-core-3.2.22.RELEASE", + "product": { + "name": "io.projectreactor.reactor-core-3.2.22.RELEASE", + "product_id": "io.projectreactor.reactor-core-3.2.22.RELEASE", + "product_identification_helper": { + "purl": "pkg:maven/io.projectreactor/reactor-core@3.2.22.RELEASE?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.aesh.readline-2.2.0.redhat-00001", + "product": { + "name": "org.aesh.readline-2.2.0.redhat-00001", + "product_id": "org.aesh.readline-2.2.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.aesh/readline@2.2.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.resteasy.resteasy-cdi-4.7.9.Final-redhat-00001", + "product": { + "name": "org.jboss.resteasy.resteasy-cdi-4.7.9.Final-redhat-00001", + "product_id": "org.jboss.resteasy.resteasy-cdi-4.7.9.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.resteasy/resteasy-cdi@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.resteasy.resteasy-client-4.7.9.Final-redhat-00001", + "product": { + "name": "org.jboss.resteasy.resteasy-client-4.7.9.Final-redhat-00001", + "product_id": "org.jboss.resteasy.resteasy-client-4.7.9.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.resteasy.resteasy-client-api-4.7.9.Final-redhat-00001", + "product": { + "name": "org.jboss.resteasy.resteasy-client-api-4.7.9.Final-redhat-00001", + "product_id": "org.jboss.resteasy.resteasy-client-api-4.7.9.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-api@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.resteasy.resteasy-client-microprofile-4.7.9.Final-redhat-00001", + "product": { + "name": "org.jboss.resteasy.resteasy-client-microprofile-4.7.9.Final-redhat-00001", + "product_id": "org.jboss.resteasy.resteasy-client-microprofile-4.7.9.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.resteasy.resteasy-client-microprofile-base-4.7.9.Final-redhat-00001", + "product": { + "name": "org.jboss.resteasy.resteasy-client-microprofile-base-4.7.9.Final-redhat-00001", + "product_id": "org.jboss.resteasy.resteasy-client-microprofile-base-4.7.9.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.resteasy/resteasy-client-microprofile-base@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.resteasy.resteasy-core-4.7.9.Final-redhat-00001", + "product": { + "name": "org.jboss.resteasy.resteasy-core-4.7.9.Final-redhat-00001", + "product_id": "org.jboss.resteasy.resteasy-core-4.7.9.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.resteasy.resteasy-core-spi-4.7.9.Final-redhat-00001", + "product": { + "name": "org.jboss.resteasy.resteasy-core-spi-4.7.9.Final-redhat-00001", + "product_id": "org.jboss.resteasy.resteasy-core-spi-4.7.9.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.resteasy/resteasy-core-spi@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.resteasy.resteasy-jackson2-provider-4.7.9.Final-redhat-00001", + "product": { + "name": "org.jboss.resteasy.resteasy-jackson2-provider-4.7.9.Final-redhat-00001", + "product_id": "org.jboss.resteasy.resteasy-jackson2-provider-4.7.9.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jackson2-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.resteasy.resteasy-jaxb-provider-4.7.9.Final-redhat-00001", + "product": { + "name": "org.jboss.resteasy.resteasy-jaxb-provider-4.7.9.Final-redhat-00001", + "product_id": "org.jboss.resteasy.resteasy-jaxb-provider-4.7.9.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.resteasy/resteasy-jaxb-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.resteasy.resteasy-json-binding-provider-4.7.9.Final-redhat-00001", + "product": { + "name": "org.jboss.resteasy.resteasy-json-binding-provider-4.7.9.Final-redhat-00001", + "product_id": "org.jboss.resteasy.resteasy-json-binding-provider-4.7.9.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-binding-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.resteasy.resteasy-json-p-provider-4.7.9.Final-redhat-00001", + "product": { + "name": "org.jboss.resteasy.resteasy-json-p-provider-4.7.9.Final-redhat-00001", + "product_id": "org.jboss.resteasy.resteasy-json-p-provider-4.7.9.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.resteasy/resteasy-json-p-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.resteasy.resteasy-multipart-provider-4.7.9.Final-redhat-00001", + "product": { + "name": "org.jboss.resteasy.resteasy-multipart-provider-4.7.9.Final-redhat-00001", + "product_id": "org.jboss.resteasy.resteasy-multipart-provider-4.7.9.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.resteasy/resteasy-multipart-provider@4.7.9.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.resteasy.reactive.resteasy-reactive-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-client-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-client-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.resteasy.reactive.resteasy-reactive-client-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-client-processor-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-client-processor-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.resteasy.reactive.resteasy-reactive-client-processor-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-client-processor@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-common-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-common-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.resteasy.reactive.resteasy-reactive-common-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-common-processor-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-common-processor-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.resteasy.reactive.resteasy-reactive-common-processor-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-processor@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-common-types-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-common-types-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.resteasy.reactive.resteasy-reactive-common-types-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-common-types@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-jackson-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-jackson-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.resteasy.reactive.resteasy-reactive-jackson-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jackson@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-jsonb-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-jsonb-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.resteasy.reactive.resteasy-reactive-jsonb-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-jsonb@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-processor-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-processor-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.resteasy.reactive.resteasy-reactive-processor-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-processor@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-vertx-2.13.8.Final-redhat-00006", + "product": { + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-vertx-2.13.8.Final-redhat-00006", + "product_id": "io.quarkus.resteasy.reactive.resteasy-reactive-vertx-2.13.8.Final-redhat-00006", + "product_identification_helper": { + "purl": "pkg:maven/io.quarkus.resteasy.reactive/resteasy-reactive-vertx@2.13.8.Final-redhat-00006?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.rocksdb.rocksdbjni-6.29.4.redhat-00003", + "product": { + "name": "org.rocksdb.rocksdbjni-6.29.4.redhat-00003", + "product_id": "org.rocksdb.rocksdbjni-6.29.4.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/org.rocksdb/rocksdbjni@6.29.4.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.reactivex.rxjava3.rxjava-3.1.4.Final-redhat-00001", + "product": { + "name": "io.reactivex.rxjava3.rxjava-3.1.4.Final-redhat-00001", + "product_id": "io.reactivex.rxjava3.rxjava-3.1.4.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.reactivex.rxjava3/rxjava@3.1.4.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.dekorate.s2i-annotations-2.11.3.redhat-00001", + "product": { + "name": "io.dekorate.s2i-annotations-2.11.3.redhat-00001", + "product_id": "io.dekorate.s2i-annotations-2.11.3.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.dekorate/s2i-annotations@2.11.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.ongres.stringprep.saslprep-1.1.0.redhat-00002", + "product": { + "name": "com.ongres.stringprep.saslprep-1.1.0.redhat-00002", + "product_id": "com.ongres.stringprep.saslprep-1.1.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/com.ongres.stringprep/saslprep@1.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.dekorate.servicebinding-annotations-2.11.3.redhat-00001", + "product": { + "name": "io.dekorate.servicebinding-annotations-2.11.3.redhat-00001", + "product_id": "io.dekorate.servicebinding-annotations-2.11.3.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.dekorate/servicebinding-annotations@2.11.3.redhat-00001?classifier=noapt&repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.shrinkwrap.shrinkwrap-api-1.2.6", + "product": { + "name": "org.jboss.shrinkwrap.shrinkwrap-api-1.2.6", + "product_id": "org.jboss.shrinkwrap.shrinkwrap-api-1.2.6", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-api@1.2.6?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.shrinkwrap.shrinkwrap-impl-base-1.2.6", + "product": { + "name": "org.jboss.shrinkwrap.shrinkwrap-impl-base-1.2.6", + "product_id": "org.jboss.shrinkwrap.shrinkwrap-impl-base-1.2.6", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-impl-base@1.2.6?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-api-3.1.3", + "product": { + "name": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-api-3.1.3", + "product_id": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-api-3.1.3", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api@3.1.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-api-maven-3.1.3", + "product": { + "name": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-api-maven-3.1.3", + "product_id": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-api-maven-3.1.3", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven@3.1.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-api-maven-archive-3.1.3", + "product": { + "name": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-api-maven-archive-3.1.3", + "product_id": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-api-maven-archive-3.1.3", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-api-maven-archive@3.1.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-impl-maven-archive-3.1.3", + "product": { + "name": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-impl-maven-archive-3.1.3", + "product_id": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-impl-maven-archive-3.1.3", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-impl-maven-archive@3.1.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-spi-3.1.3", + "product": { + "name": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-spi-3.1.3", + "product_id": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-spi-3.1.3", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi@3.1.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-spi-maven-archive-3.1.3", + "product": { + "name": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-spi-maven-archive-3.1.3", + "product_id": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-spi-maven-archive-3.1.3", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.shrinkwrap.resolver/shrinkwrap-resolver-spi-maven-archive@3.1.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.shrinkwrap.shrinkwrap-spi-1.2.6", + "product": { + "name": "org.jboss.shrinkwrap.shrinkwrap-spi-1.2.6", + "product_id": "org.jboss.shrinkwrap.shrinkwrap-spi-1.2.6", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.shrinkwrap/shrinkwrap-spi@1.2.6?type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.prometheus.simpleclient-0.15.0.redhat-00001", + "product": { + "name": "io.prometheus.simpleclient-0.15.0.redhat-00001", + "product_id": "io.prometheus.simpleclient-0.15.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.prometheus/simpleclient@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.prometheus.simpleclient_common-0.15.0.redhat-00001", + "product": { + "name": "io.prometheus.simpleclient_common-0.15.0.redhat-00001", + "product_id": "io.prometheus.simpleclient_common-0.15.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.prometheus/simpleclient_common@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.prometheus.simpleclient_tracer_common-0.15.0.redhat-00001", + "product": { + "name": "io.prometheus.simpleclient_tracer_common-0.15.0.redhat-00001", + "product_id": "io.prometheus.simpleclient_tracer_common-0.15.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_common@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.prometheus.simpleclient_tracer_otel-0.15.0.redhat-00001", + "product": { + "name": "io.prometheus.simpleclient_tracer_otel-0.15.0.redhat-00001", + "product_id": "io.prometheus.simpleclient_tracer_otel-0.15.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.prometheus.simpleclient_tracer_otel_agent-0.15.0.redhat-00001", + "product": { + "name": "io.prometheus.simpleclient_tracer_otel_agent-0.15.0.redhat-00001", + "product_id": "io.prometheus.simpleclient_tracer_otel_agent-0.15.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.prometheus/simpleclient_tracer_otel_agent@0.15.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.slf4j.slf4j-api-1.7.36.redhat-00003", + "product": { + "name": "org.slf4j.slf4j-api-1.7.36.redhat-00003", + "product_id": "org.slf4j.slf4j-api-1.7.36.redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/org.slf4j/slf4j-api@1.7.36.redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.jboss.slf4j.slf4j-jboss-logmanager-1.2.0.Final-redhat-00001", + "product": { + "name": "org.jboss.slf4j.slf4j-jboss-logmanager-1.2.0.Final-redhat-00001", + "product_id": "org.jboss.slf4j.slf4j-jboss-logmanager-1.2.0.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.jboss.slf4j/slf4j-jboss-logmanager@1.2.0.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.common.smallrye-common-annotation-1.13.1.redhat-00001", + "product": { + "name": "io.smallrye.common.smallrye-common-annotation-1.13.1.redhat-00001", + "product_id": "io.smallrye.common.smallrye-common-annotation-1.13.1.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.common/smallrye-common-annotation@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.common.smallrye-common-classloader-1.13.1.redhat-00001", + "product": { + "name": "io.smallrye.common.smallrye-common-classloader-1.13.1.redhat-00001", + "product_id": "io.smallrye.common.smallrye-common-classloader-1.13.1.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.common/smallrye-common-classloader@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.common.smallrye-common-constraint-1.13.1.redhat-00001", + "product": { + "name": "io.smallrye.common.smallrye-common-constraint-1.13.1.redhat-00001", + "product_id": "io.smallrye.common.smallrye-common-constraint-1.13.1.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.common/smallrye-common-constraint@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.common.smallrye-common-expression-1.13.1.redhat-00001", + "product": { + "name": "io.smallrye.common.smallrye-common-expression-1.13.1.redhat-00001", + "product_id": "io.smallrye.common.smallrye-common-expression-1.13.1.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.common/smallrye-common-expression@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.common.smallrye-common-function-1.13.1.redhat-00001", + "product": { + "name": "io.smallrye.common.smallrye-common-function-1.13.1.redhat-00001", + "product_id": "io.smallrye.common.smallrye-common-function-1.13.1.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.common/smallrye-common-function@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.common.smallrye-common-io-1.13.1.redhat-00001", + "product": { + "name": "io.smallrye.common.smallrye-common-io-1.13.1.redhat-00001", + "product_id": "io.smallrye.common.smallrye-common-io-1.13.1.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.common/smallrye-common-io@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.common.smallrye-common-os-1.13.1.redhat-00001", + "product": { + "name": "io.smallrye.common.smallrye-common-os-1.13.1.redhat-00001", + "product_id": "io.smallrye.common.smallrye-common-os-1.13.1.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.common/smallrye-common-os@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.common.smallrye-common-version-1.13.1.redhat-00001", + "product": { + "name": "io.smallrye.common.smallrye-common-version-1.13.1.redhat-00001", + "product_id": "io.smallrye.common.smallrye-common-version-1.13.1.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.common/smallrye-common-version@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.common.smallrye-common-vertx-context-1.13.1.redhat-00001", + "product": { + "name": "io.smallrye.common.smallrye-common-vertx-context-1.13.1.redhat-00001", + "product_id": "io.smallrye.common.smallrye-common-vertx-context-1.13.1.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.common/smallrye-common-vertx-context@1.13.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.config.smallrye-config-2.12.3.redhat-00001", + "product": { + "name": "io.smallrye.config.smallrye-config-2.12.3.redhat-00001", + "product_id": "io.smallrye.config.smallrye-config-2.12.3.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.config/smallrye-config@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.config.smallrye-config-common-2.12.3.redhat-00001", + "product": { + "name": "io.smallrye.config.smallrye-config-common-2.12.3.redhat-00001", + "product_id": "io.smallrye.config.smallrye-config-common-2.12.3.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.config/smallrye-config-common@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.config.smallrye-config-core-2.12.3.redhat-00001", + "product": { + "name": "io.smallrye.config.smallrye-config-core-2.12.3.redhat-00001", + "product_id": "io.smallrye.config.smallrye-config-core-2.12.3.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.config/smallrye-config-core@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.config.smallrye-config-source-yaml-2.12.3.redhat-00001", + "product": { + "name": "io.smallrye.config.smallrye-config-source-yaml-2.12.3.redhat-00001", + "product_id": "io.smallrye.config.smallrye-config-source-yaml-2.12.3.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.config/smallrye-config-source-yaml@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.config.smallrye-config-validator-2.12.3.redhat-00001", + "product": { + "name": "io.smallrye.config.smallrye-config-validator-2.12.3.redhat-00001", + "product_id": "io.smallrye.config.smallrye-config-validator-2.12.3.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.config/smallrye-config-validator@2.12.3.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-context-propagation-1.2.2.redhat-00001", + "product": { + "name": "io.smallrye.smallrye-context-propagation-1.2.2.redhat-00001", + "product_id": "io.smallrye.smallrye-context-propagation-1.2.2.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-context-propagation-api-1.2.2.redhat-00001", + "product": { + "name": "io.smallrye.smallrye-context-propagation-api-1.2.2.redhat-00001", + "product_id": "io.smallrye.smallrye-context-propagation-api-1.2.2.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-api@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-context-propagation-jta-1.2.2.redhat-00001", + "product": { + "name": "io.smallrye.smallrye-context-propagation-jta-1.2.2.redhat-00001", + "product_id": "io.smallrye.smallrye-context-propagation-jta-1.2.2.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-jta@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-context-propagation-storage-1.2.2.redhat-00001", + "product": { + "name": "io.smallrye.smallrye-context-propagation-storage-1.2.2.redhat-00001", + "product_id": "io.smallrye.smallrye-context-propagation-storage-1.2.2.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-context-propagation-storage@1.2.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-fault-tolerance-5.5.0.redhat-00002", + "product": { + "name": "io.smallrye.smallrye-fault-tolerance-5.5.0.redhat-00002", + "product_id": "io.smallrye.smallrye-fault-tolerance-5.5.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-fault-tolerance-api-5.5.0.redhat-00002", + "product": { + "name": "io.smallrye.smallrye-fault-tolerance-api-5.5.0.redhat-00002", + "product_id": "io.smallrye.smallrye-fault-tolerance-api-5.5.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-api@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-fault-tolerance-autoconfig-core-5.5.0.redhat-00002", + "product": { + "name": "io.smallrye.smallrye-fault-tolerance-autoconfig-core-5.5.0.redhat-00002", + "product_id": "io.smallrye.smallrye-fault-tolerance-autoconfig-core-5.5.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-autoconfig-core@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-fault-tolerance-context-propagation-5.5.0.redhat-00002", + "product": { + "name": "io.smallrye.smallrye-fault-tolerance-context-propagation-5.5.0.redhat-00002", + "product_id": "io.smallrye.smallrye-fault-tolerance-context-propagation-5.5.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-context-propagation@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-fault-tolerance-core-5.5.0.redhat-00002", + "product": { + "name": "io.smallrye.smallrye-fault-tolerance-core-5.5.0.redhat-00002", + "product_id": "io.smallrye.smallrye-fault-tolerance-core-5.5.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-core@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-fault-tolerance-mutiny-5.5.0.redhat-00002", + "product": { + "name": "io.smallrye.smallrye-fault-tolerance-mutiny-5.5.0.redhat-00002", + "product_id": "io.smallrye.smallrye-fault-tolerance-mutiny-5.5.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-mutiny@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-fault-tolerance-tracing-propagation-5.5.0.redhat-00002", + "product": { + "name": "io.smallrye.smallrye-fault-tolerance-tracing-propagation-5.5.0.redhat-00002", + "product_id": "io.smallrye.smallrye-fault-tolerance-tracing-propagation-5.5.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-tracing-propagation@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-fault-tolerance-vertx-5.5.0.redhat-00002", + "product": { + "name": "io.smallrye.smallrye-fault-tolerance-vertx-5.5.0.redhat-00002", + "product_id": "io.smallrye.smallrye-fault-tolerance-vertx-5.5.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-fault-tolerance-vertx@5.5.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-graphql-1.7.2.redhat-00001", + "product": { + "name": "io.smallrye.smallrye-graphql-1.7.2.redhat-00001", + "product_id": "io.smallrye.smallrye-graphql-1.7.2.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-graphql@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-graphql-api-1.7.2.redhat-00001", + "product": { + "name": "io.smallrye.smallrye-graphql-api-1.7.2.redhat-00001", + "product_id": "io.smallrye.smallrye-graphql-api-1.7.2.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-graphql-api@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-graphql-cdi-1.7.2.redhat-00001", + "product": { + "name": "io.smallrye.smallrye-graphql-cdi-1.7.2.redhat-00001", + "product_id": "io.smallrye.smallrye-graphql-cdi-1.7.2.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-graphql-cdi@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-graphql-client-1.7.2.redhat-00001", + "product": { + "name": "io.smallrye.smallrye-graphql-client-1.7.2.redhat-00001", + "product_id": "io.smallrye.smallrye-graphql-client-1.7.2.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-graphql-client-api-1.7.2.redhat-00001", + "product": { + "name": "io.smallrye.smallrye-graphql-client-api-1.7.2.redhat-00001", + "product_id": "io.smallrye.smallrye-graphql-client-api-1.7.2.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-api@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-graphql-client-implementation-vertx-1.7.2.redhat-00001", + "product": { + "name": "io.smallrye.smallrye-graphql-client-implementation-vertx-1.7.2.redhat-00001", + "product_id": "io.smallrye.smallrye-graphql-client-implementation-vertx-1.7.2.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-graphql-client-implementation-vertx@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-graphql-schema-builder-1.7.2.redhat-00001", + "product": { + "name": "io.smallrye.smallrye-graphql-schema-builder-1.7.2.redhat-00001", + "product_id": "io.smallrye.smallrye-graphql-schema-builder-1.7.2.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-builder@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-graphql-schema-model-1.7.2.redhat-00001", + "product": { + "name": "io.smallrye.smallrye-graphql-schema-model-1.7.2.redhat-00001", + "product_id": "io.smallrye.smallrye-graphql-schema-model-1.7.2.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-graphql-schema-model@1.7.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-graphql-ui-graphiql-1.7.2", + "product": { + "name": "io.smallrye.smallrye-graphql-ui-graphiql-1.7.2", + "product_id": "io.smallrye.smallrye-graphql-ui-graphiql-1.7.2", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-graphql-ui-graphiql@1.7.2?type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-health-3.3.0.redhat-00002", + "product": { + "name": "io.smallrye.smallrye-health-3.3.0.redhat-00002", + "product_id": "io.smallrye.smallrye-health-3.3.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-health@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-health-api-3.3.0.redhat-00002", + "product": { + "name": "io.smallrye.smallrye-health-api-3.3.0.redhat-00002", + "product_id": "io.smallrye.smallrye-health-api-3.3.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-health-api@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-health-provided-checks-3.3.0.redhat-00002", + "product": { + "name": "io.smallrye.smallrye-health-provided-checks-3.3.0.redhat-00002", + "product_id": "io.smallrye.smallrye-health-provided-checks-3.3.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-health-provided-checks@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-health-ui-3.3.0.redhat-00002", + "product": { + "name": "io.smallrye.smallrye-health-ui-3.3.0.redhat-00002", + "product_id": "io.smallrye.smallrye-health-ui-3.3.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-health-ui@3.3.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-jwt-3.5.4.redhat-00001", + "product": { + "name": "io.smallrye.smallrye-jwt-3.5.4.redhat-00001", + "product_id": "io.smallrye.smallrye-jwt-3.5.4.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-jwt@3.5.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-jwt-build-3.5.4.redhat-00001", + "product": { + "name": "io.smallrye.smallrye-jwt-build-3.5.4.redhat-00001", + "product_id": "io.smallrye.smallrye-jwt-build-3.5.4.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-jwt-build@3.5.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-jwt-common-3.5.4.redhat-00001", + "product": { + "name": "io.smallrye.smallrye-jwt-common-3.5.4.redhat-00001", + "product_id": "io.smallrye.smallrye-jwt-common-3.5.4.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-jwt-common@3.5.4.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-metrics-3.0.5.redhat-00001", + "product": { + "name": "io.smallrye.smallrye-metrics-3.0.5.redhat-00001", + "product_id": "io.smallrye.smallrye-metrics-3.0.5.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-metrics@3.0.5.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-amqp-client-2.27.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-amqp-client-2.27.0.redhat-00001", + "product_id": "io.smallrye.reactive.smallrye-mutiny-vertx-amqp-client-2.27.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-amqp-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-auth-common-2.27.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-auth-common-2.27.0.redhat-00001", + "product_id": "io.smallrye.reactive.smallrye-mutiny-vertx-auth-common-2.27.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-auth-common@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-bridge-common-2.27.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-bridge-common-2.27.0.redhat-00001", + "product_id": "io.smallrye.reactive.smallrye-mutiny-vertx-bridge-common-2.27.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-bridge-common@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-core-2.27.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-core-2.27.0.redhat-00001", + "product_id": "io.smallrye.reactive.smallrye-mutiny-vertx-core-2.27.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-core@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-mail-client-2.27.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-mail-client-2.27.0.redhat-00001", + "product_id": "io.smallrye.reactive.smallrye-mutiny-vertx-mail-client-2.27.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mail-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-mssql-client-2.27.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-mssql-client-2.27.0.redhat-00001", + "product_id": "io.smallrye.reactive.smallrye-mutiny-vertx-mssql-client-2.27.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mssql-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-mysql-client-2.27.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-mysql-client-2.27.0.redhat-00001", + "product_id": "io.smallrye.reactive.smallrye-mutiny-vertx-mysql-client-2.27.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-mysql-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-pg-client-2.27.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-pg-client-2.27.0.redhat-00001", + "product_id": "io.smallrye.reactive.smallrye-mutiny-vertx-pg-client-2.27.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-pg-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-runtime-2.27.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-runtime-2.27.0.redhat-00001", + "product_id": "io.smallrye.reactive.smallrye-mutiny-vertx-runtime-2.27.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-runtime@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-sql-client-2.27.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-sql-client-2.27.0.redhat-00001", + "product_id": "io.smallrye.reactive.smallrye-mutiny-vertx-sql-client-2.27.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-sql-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-uri-template-2.27.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-uri-template-2.27.0.redhat-00001", + "product_id": "io.smallrye.reactive.smallrye-mutiny-vertx-uri-template-2.27.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-uri-template@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-web-2.27.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-web-2.27.0.redhat-00001", + "product_id": "io.smallrye.reactive.smallrye-mutiny-vertx-web-2.27.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-web-client-2.27.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-web-client-2.27.0.redhat-00001", + "product_id": "io.smallrye.reactive.smallrye-mutiny-vertx-web-client-2.27.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-client@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-web-common-2.27.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-web-common-2.27.0.redhat-00001", + "product_id": "io.smallrye.reactive.smallrye-mutiny-vertx-web-common-2.27.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/smallrye-mutiny-vertx-web-common@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-open-api-core-2.2.1.redhat-00001", + "product": { + "name": "io.smallrye.smallrye-open-api-core-2.2.1.redhat-00001", + "product_id": "io.smallrye.smallrye-open-api-core-2.2.1.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-open-api-core@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-open-api-jaxrs-2.2.1.redhat-00001", + "product": { + "name": "io.smallrye.smallrye-open-api-jaxrs-2.2.1.redhat-00001", + "product_id": "io.smallrye.smallrye-open-api-jaxrs-2.2.1.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-open-api-jaxrs@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-open-api-spring-2.2.1.redhat-00001", + "product": { + "name": "io.smallrye.smallrye-open-api-spring-2.2.1.redhat-00001", + "product_id": "io.smallrye.smallrye-open-api-spring-2.2.1.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-open-api-spring@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-open-api-ui-2.2.1.redhat-00001", + "product": { + "name": "io.smallrye.smallrye-open-api-ui-2.2.1.redhat-00001", + "product_id": "io.smallrye.smallrye-open-api-ui-2.2.1.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-open-api-ui@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-open-api-vertx-2.2.1.redhat-00001", + "product": { + "name": "io.smallrye.smallrye-open-api-vertx-2.2.1.redhat-00001", + "product_id": "io.smallrye.smallrye-open-api-vertx-2.2.1.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-open-api-vertx@2.2.1.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-opentracing-2.1.1.redhat-00002", + "product": { + "name": "io.smallrye.smallrye-opentracing-2.1.1.redhat-00002", + "product_id": "io.smallrye.smallrye-opentracing-2.1.1.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-opentracing@2.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.smallrye-opentracing-contrib-2.1.1.redhat-00002", + "product": { + "name": "io.smallrye.smallrye-opentracing-contrib-2.1.1.redhat-00002", + "product_id": "io.smallrye.smallrye-opentracing-contrib-2.1.1.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye/smallrye-opentracing-contrib@2.1.1.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.smallrye-reactive-converter-api-2.7.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.smallrye-reactive-converter-api-2.7.0.redhat-00001", + "product_id": "io.smallrye.reactive.smallrye-reactive-converter-api-2.7.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-api@2.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.smallrye-reactive-converter-mutiny-2.7.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.smallrye-reactive-converter-mutiny-2.7.0.redhat-00001", + "product_id": "io.smallrye.reactive.smallrye-reactive-converter-mutiny-2.7.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-converter-mutiny@2.7.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.smallrye-reactive-messaging-amqp-3.21.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.smallrye-reactive-messaging-amqp-3.21.0.redhat-00001", + "product_id": "io.smallrye.reactive.smallrye-reactive-messaging-amqp-3.21.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-amqp@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.smallrye-reactive-messaging-api-3.21.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.smallrye-reactive-messaging-api-3.21.0.redhat-00001", + "product_id": "io.smallrye.reactive.smallrye-reactive-messaging-api-3.21.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-api@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.smallrye-reactive-messaging-health-3.21.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.smallrye-reactive-messaging-health-3.21.0.redhat-00001", + "product_id": "io.smallrye.reactive.smallrye-reactive-messaging-health-3.21.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-health@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.smallrye-reactive-messaging-kafka-3.21.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.smallrye-reactive-messaging-kafka-3.21.0.redhat-00001", + "product_id": "io.smallrye.reactive.smallrye-reactive-messaging-kafka-3.21.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.smallrye-reactive-messaging-kafka-api-3.21.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.smallrye-reactive-messaging-kafka-api-3.21.0.redhat-00001", + "product_id": "io.smallrye.reactive.smallrye-reactive-messaging-kafka-api-3.21.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-kafka-api@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.smallrye-reactive-messaging-provider-3.21.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.smallrye-reactive-messaging-provider-3.21.0.redhat-00001", + "product_id": "io.smallrye.reactive.smallrye-reactive-messaging-provider-3.21.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/smallrye-reactive-messaging-provider@3.21.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.yaml.snakeyaml-1.33.0.redhat-00002", + "product": { + "name": "org.yaml.snakeyaml-1.33.0.redhat-00002", + "product_id": "org.yaml.snakeyaml-1.33.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.yaml/snakeyaml@1.33.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.xerial.snappy.snappy-java-1.1.8.4-redhat-00003", + "product": { + "name": "org.xerial.snappy.snappy-java-1.1.8.4-redhat-00003", + "product_id": "org.xerial.snappy.snappy-java-1.1.8.4-redhat-00003", + "product_identification_helper": { + "purl": "pkg:maven/org.xerial.snappy/snappy-java@1.1.8.4-redhat-00003?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "net.spy.spymemcached-2.12.1", + "product": { + "name": "net.spy.spymemcached-2.12.1", + "product_id": "net.spy.spymemcached-2.12.1", + "product_identification_helper": { + "purl": "pkg:maven/net.spy/spymemcached@2.12.1?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.sshd.sshd-common-2.9.2.redhat-00001", + "product": { + "name": "org.apache.sshd.sshd-common-2.9.2.redhat-00001", + "product_id": "org.apache.sshd.sshd-common-2.9.2.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.sshd/sshd-common@2.9.2.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.stork.stork-api-1.1.2.redhat-00002", + "product": { + "name": "io.smallrye.stork.stork-api-1.1.2.redhat-00002", + "product_id": "io.smallrye.stork.stork-api-1.1.2.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.stork/stork-api@1.1.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.stork.stork-core-1.1.2.redhat-00002", + "product": { + "name": "io.smallrye.stork.stork-core-1.1.2.redhat-00002", + "product_id": "io.smallrye.stork.stork-core-1.1.2.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.stork/stork-core@1.1.2.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.strimzi.strimzi-test-container-0.100.0", + "product": { + "name": "io.strimzi.strimzi-test-container-0.100.0", + "product_id": "io.strimzi.strimzi-test-container-0.100.0", + "product_identification_helper": { + "purl": "pkg:maven/io.strimzi/strimzi-test-container@0.100.0?type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.ongres.stringprep.stringprep-1.1.0.redhat-00002", + "product": { + "name": "com.ongres.stringprep.stringprep-1.1.0.redhat-00002", + "product_id": "com.ongres.stringprep.stringprep-1.1.0.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/com.ongres.stringprep/stringprep@1.1.0.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.testcontainers.testcontainers-1.17.3", + "product": { + "name": "org.testcontainers.testcontainers-1.17.3", + "product_id": "org.testcontainers.testcontainers-1.17.3", + "product_identification_helper": { + "purl": "pkg:maven/org.testcontainers/testcontainers@1.17.3?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.glassfish.jaxb.txw2-2.3.3.b02-redhat-00004", + "product": { + "name": "org.glassfish.jaxb.txw2-2.3.3.b02-redhat-00004", + "product_id": "org.glassfish.jaxb.txw2-2.3.3.b02-redhat-00004", + "product_identification_helper": { + "purl": "pkg:maven/org.glassfish.jaxb/txw2@2.3.3.b02-redhat-00004?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.velocity.velocity-engine-core-2.3.0.redhat-00001", + "product": { + "name": "org.apache.velocity.velocity-engine-core-2.3.0.redhat-00001", + "product_id": "org.apache.velocity.velocity-engine-core-2.3.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.velocity/velocity-engine-core@2.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.vertx.vertx-amqp-client-4.3.4.redhat-00008", + "product": { + "name": "io.vertx.vertx-amqp-client-4.3.4.redhat-00008", + "product_id": "io.vertx.vertx-amqp-client-4.3.4.redhat-00008", + "product_identification_helper": { + "purl": "pkg:maven/io.vertx/vertx-amqp-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.vertx.vertx-auth-common-4.3.4.redhat-00008", + "product": { + "name": "io.vertx.vertx-auth-common-4.3.4.redhat-00008", + "product_id": "io.vertx.vertx-auth-common-4.3.4.redhat-00008", + "product_identification_helper": { + "purl": "pkg:maven/io.vertx/vertx-auth-common@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.vertx.vertx-bridge-common-4.3.4.redhat-00008", + "product": { + "name": "io.vertx.vertx-bridge-common-4.3.4.redhat-00008", + "product_id": "io.vertx.vertx-bridge-common-4.3.4.redhat-00008", + "product_identification_helper": { + "purl": "pkg:maven/io.vertx/vertx-bridge-common@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.vertx.vertx-codegen-4.3.4.redhat-00008", + "product": { + "name": "io.vertx.vertx-codegen-4.3.4.redhat-00008", + "product_id": "io.vertx.vertx-codegen-4.3.4.redhat-00008", + "product_identification_helper": { + "purl": "pkg:maven/io.vertx/vertx-codegen@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.vertx.vertx-core-4.3.4.redhat-00008", + "product": { + "name": "io.vertx.vertx-core-4.3.4.redhat-00008", + "product_id": "io.vertx.vertx-core-4.3.4.redhat-00008", + "product_identification_helper": { + "purl": "pkg:maven/io.vertx/vertx-core@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.vertx.vertx-grpc-4.3.4.redhat-00008", + "product": { + "name": "io.vertx.vertx-grpc-4.3.4.redhat-00008", + "product_id": "io.vertx.vertx-grpc-4.3.4.redhat-00008", + "product_identification_helper": { + "purl": "pkg:maven/io.vertx/vertx-grpc@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.vertx.vertx-kafka-client-4.3.4.redhat-00008", + "product": { + "name": "io.vertx.vertx-kafka-client-4.3.4.redhat-00008", + "product_id": "io.vertx.vertx-kafka-client-4.3.4.redhat-00008", + "product_identification_helper": { + "purl": "pkg:maven/io.vertx/vertx-kafka-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.vertx.vertx-mail-client-4.3.4.redhat-00008", + "product": { + "name": "io.vertx.vertx-mail-client-4.3.4.redhat-00008", + "product_id": "io.vertx.vertx-mail-client-4.3.4.redhat-00008", + "product_identification_helper": { + "purl": "pkg:maven/io.vertx/vertx-mail-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.vertx.vertx-mssql-client-4.3.4.redhat-00008", + "product": { + "name": "io.vertx.vertx-mssql-client-4.3.4.redhat-00008", + "product_id": "io.vertx.vertx-mssql-client-4.3.4.redhat-00008", + "product_identification_helper": { + "purl": "pkg:maven/io.vertx/vertx-mssql-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.smallrye.reactive.vertx-mutiny-generator-2.27.0.redhat-00001", + "product": { + "name": "io.smallrye.reactive.vertx-mutiny-generator-2.27.0.redhat-00001", + "product_id": "io.smallrye.reactive.vertx-mutiny-generator-2.27.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.smallrye.reactive/vertx-mutiny-generator@2.27.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.vertx.vertx-mysql-client-4.3.4.redhat-00008", + "product": { + "name": "io.vertx.vertx-mysql-client-4.3.4.redhat-00008", + "product_id": "io.vertx.vertx-mysql-client-4.3.4.redhat-00008", + "product_identification_helper": { + "purl": "pkg:maven/io.vertx/vertx-mysql-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.vertx.vertx-pg-client-4.3.4.redhat-00008", + "product": { + "name": "io.vertx.vertx-pg-client-4.3.4.redhat-00008", + "product_id": "io.vertx.vertx-pg-client-4.3.4.redhat-00008", + "product_identification_helper": { + "purl": "pkg:maven/io.vertx/vertx-pg-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.vertx.vertx-proton-4.3.4.redhat-00008", + "product": { + "name": "io.vertx.vertx-proton-4.3.4.redhat-00008", + "product_id": "io.vertx.vertx-proton-4.3.4.redhat-00008", + "product_identification_helper": { + "purl": "pkg:maven/io.vertx/vertx-proton@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.vertx.vertx-sql-client-4.3.4.redhat-00008", + "product": { + "name": "io.vertx.vertx-sql-client-4.3.4.redhat-00008", + "product_id": "io.vertx.vertx-sql-client-4.3.4.redhat-00008", + "product_identification_helper": { + "purl": "pkg:maven/io.vertx/vertx-sql-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.vertx.vertx-uri-template-4.3.4.redhat-00008", + "product": { + "name": "io.vertx.vertx-uri-template-4.3.4.redhat-00008", + "product_id": "io.vertx.vertx-uri-template-4.3.4.redhat-00008", + "product_identification_helper": { + "purl": "pkg:maven/io.vertx/vertx-uri-template@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.vertx.vertx-web-4.3.4.redhat-00008", + "product": { + "name": "io.vertx.vertx-web-4.3.4.redhat-00008", + "product_id": "io.vertx.vertx-web-4.3.4.redhat-00008", + "product_identification_helper": { + "purl": "pkg:maven/io.vertx/vertx-web@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.vertx.vertx-web-client-4.3.4.redhat-00008", + "product": { + "name": "io.vertx.vertx-web-client-4.3.4.redhat-00008", + "product_id": "io.vertx.vertx-web-client-4.3.4.redhat-00008", + "product_identification_helper": { + "purl": "pkg:maven/io.vertx/vertx-web-client@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.vertx.vertx-web-common-4.3.4.redhat-00008", + "product": { + "name": "io.vertx.vertx-web-common-4.3.4.redhat-00008", + "product_id": "io.vertx.vertx-web-common-4.3.4.redhat-00008", + "product_identification_helper": { + "purl": "pkg:maven/io.vertx/vertx-web-common@4.3.4.redhat-00008?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.maven.wagon.wagon-file-3.5.1", + "product": { + "name": "org.apache.maven.wagon.wagon-file-3.5.1", + "product_id": "org.apache.maven.wagon.wagon-file-3.5.1", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.maven.wagon/wagon-file@3.5.1?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.maven.wagon.wagon-http-3.5.1", + "product": { + "name": "org.apache.maven.wagon.wagon-http-3.5.1", + "product_id": "org.apache.maven.wagon.wagon-http-3.5.1", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http@3.5.1?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.maven.wagon.wagon-http-shared-3.5.1", + "product": { + "name": "org.apache.maven.wagon.wagon-http-shared-3.5.1", + "product_id": "org.apache.maven.wagon.wagon-http-shared-3.5.1", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.maven.wagon/wagon-http-shared@3.5.1?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.apache.maven.wagon.wagon-provider-api-3.5.1", + "product": { + "name": "org.apache.maven.wagon.wagon-provider-api-3.5.1", + "product_id": "org.apache.maven.wagon.wagon-provider-api-3.5.1", + "product_identification_helper": { + "purl": "pkg:maven/org.apache.maven.wagon/wagon-provider-api@3.5.1?type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.common.wildfly-common-1.5.4.Final-format-001-redhat-00001", + "product": { + "name": "org.wildfly.common.wildfly-common-1.5.4.Final-format-001-redhat-00001", + "product_id": "org.wildfly.common.wildfly-common-1.5.4.Final-format-001-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.common/wildfly-common@1.5.4.Final-format-001-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-asn1-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-asn1-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-asn1-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-asn1@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-auth-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-auth-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-auth-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-auth-server-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-auth-server-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-auth-server-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-auth-server@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-base-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-base-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-base-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-base@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-credential-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-credential-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-credential-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-credential@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-http-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-http-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-http-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-http@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-keystore-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-keystore-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-keystore-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-keystore@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-mechanism-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-mechanism-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-mechanism-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-mechanism-digest-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-mechanism-digest-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-mechanism-digest-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-digest@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-mechanism-gssapi-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-mechanism-gssapi-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-mechanism-gssapi-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-gssapi@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-mechanism-oauth2-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-mechanism-oauth2-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-mechanism-oauth2-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-oauth2@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-mechanism-scram-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-mechanism-scram-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-mechanism-scram-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-mechanism-scram@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-password-impl-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-password-impl-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-password-impl-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-password-impl@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-permission-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-permission-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-permission-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-permission@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-provider-util-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-provider-util-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-provider-util-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-provider-util@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-sasl-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-sasl-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-sasl-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-sasl-digest-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-sasl-digest-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-sasl-digest-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-digest@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-sasl-external-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-sasl-external-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-sasl-external-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-external@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-sasl-gs2-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-sasl-gs2-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-sasl-gs2-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gs2@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-sasl-gssapi-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-sasl-gssapi-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-sasl-gssapi-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-gssapi@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-sasl-oauth2-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-sasl-oauth2-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-sasl-oauth2-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-oauth2@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-sasl-plain-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-sasl-plain-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-sasl-plain-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-plain@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-sasl-scram-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-sasl-scram-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-sasl-scram-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-sasl-scram@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-security-manager-action-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-security-manager-action-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-security-manager-action-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-security-manager-action@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-ssl-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-ssl-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-ssl-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-ssl@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-util-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-util-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-util-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-util@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-x500-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-x500-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-x500-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-x500-cert-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-x500-cert-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-x500-cert-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.wildfly.security.wildfly-elytron-x500-cert-util-1.20.1.Final-redhat-00001", + "product": { + "name": "org.wildfly.security.wildfly-elytron-x500-cert-util-1.20.1.Final-redhat-00001", + "product_id": "org.wildfly.security.wildfly-elytron-x500-cert-util-1.20.1.Final-redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/org.wildfly.security/wildfly-elytron-x500-cert-util@1.20.1.Final-redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "org.eclipse.yasson-1.0.11.redhat-00002", + "product": { + "name": "org.eclipse.yasson-1.0.11.redhat-00002", + "product_id": "org.eclipse.yasson-1.0.11.redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/org.eclipse/yasson@1.0.11.redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "io.fabric8.zjsonpatch-0.3.0.redhat-00001", + "product": { + "name": "io.fabric8.zjsonpatch-0.3.0.redhat-00001", + "product_id": "io.fabric8.zjsonpatch-0.3.0.redhat-00001", + "product_identification_helper": { + "purl": "pkg:maven/io.fabric8/zjsonpatch@0.3.0.redhat-00001?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "category": "product_version", + "name": "com.github.luben.zstd-jni-1.5.2.3-redhat-00002", + "product": { + "name": "com.github.luben.zstd-jni-1.5.2.3-redhat-00002", + "product_id": "com.github.luben.zstd-jni-1.5.2.3-redhat-00002", + "product_identification_helper": { + "purl": "pkg:maven/com.github.luben/zstd-jni@1.5.2.3-redhat-00002?repository_url=https://maven.repository.redhat.com/ga/&type=jar" + } + } + }, + { + "branches": [ + { + "category": "product_version", + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.aarch64", + "product": { + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.aarch64", + "product_id": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-7.0-source-built-artifacts@7.0.112-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.aarch64", + "product": { + "name": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.aarch64", + "product_id": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet7.0-debugsource@7.0.112-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64", + "product": { + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64", + "product_id": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-7.0-debuginfo@7.0.12-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.aarch64", + "product": { + "name": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.aarch64", + "product_id": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host-debuginfo@7.0.12-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64", + "product": { + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64", + "product_id": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-7.0-debuginfo@7.0.12-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64", + "product": { + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64", + "product_id": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-7.0-debuginfo@7.0.12-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.aarch64", + "product": { + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.aarch64", + "product_id": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-7.0-debuginfo@7.0.112-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.aarch64", + "product": { + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.aarch64", + "product_id": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet7.0-debuginfo@7.0.112-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.aarch64", + "product": { + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.aarch64", + "product_id": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-runtime-7.0@7.0.12-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.aarch64", + "product": { + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.aarch64", + "product_id": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-targeting-pack-7.0@7.0.12-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-0:7.0.112-1.el8_8.aarch64", + "product": { + "name": "dotnet-0:7.0.112-1.el8_8.aarch64", + "product_id": "dotnet-0:7.0.112-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet@7.0.112-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.aarch64", + "product": { + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.aarch64", + "product_id": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-7.0@7.0.12-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-0:7.0.12-1.el8_8.aarch64", + "product": { + "name": "dotnet-host-0:7.0.12-1.el8_8.aarch64", + "product_id": "dotnet-host-0:7.0.12-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host@7.0.12-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.aarch64", + "product": { + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.aarch64", + "product_id": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-7.0@7.0.12-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.aarch64", + "product": { + "name": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.aarch64", + "product_id": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-7.0@7.0.12-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.aarch64", + "product": { + "name": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.aarch64", + "product_id": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-7.0@7.0.112-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.aarch64", + "product": { + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.aarch64", + "product_id": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-targeting-pack-7.0@7.0.12-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-templates-7.0-0:7.0.112-1.el8_8.aarch64", + "product": { + "name": "dotnet-templates-7.0-0:7.0.112-1.el8_8.aarch64", + "product_id": "dotnet-templates-7.0-0:7.0.112-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-templates-7.0@7.0.112-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.aarch64", + "product": { + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.aarch64", + "product_id": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/netstandard-targeting-pack-2.1@7.0.112-1.el8_8?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.ppc64le", + "product": { + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.ppc64le", + "product_id": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-7.0-source-built-artifacts@7.0.112-1.el8_8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.ppc64le", + "product": { + "name": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.ppc64le", + "product_id": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet7.0-debugsource@7.0.112-1.el8_8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le", + "product": { + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le", + "product_id": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-7.0-debuginfo@7.0.12-1.el8_8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.ppc64le", + "product": { + "name": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.ppc64le", + "product_id": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host-debuginfo@7.0.12-1.el8_8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le", + "product": { + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le", + "product_id": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-7.0-debuginfo@7.0.12-1.el8_8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le", + "product": { + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le", + "product_id": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-7.0-debuginfo@7.0.12-1.el8_8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.ppc64le", + "product": { + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.ppc64le", + "product_id": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-7.0-debuginfo@7.0.112-1.el8_8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.ppc64le", + "product": { + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.ppc64le", + "product_id": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet7.0-debuginfo@7.0.112-1.el8_8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.ppc64le", + "product": { + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.ppc64le", + "product_id": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-runtime-7.0@7.0.12-1.el8_8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.ppc64le", + "product": { + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.ppc64le", + "product_id": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-targeting-pack-7.0@7.0.12-1.el8_8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-0:7.0.112-1.el8_8.ppc64le", + "product": { + "name": "dotnet-0:7.0.112-1.el8_8.ppc64le", + "product_id": "dotnet-0:7.0.112-1.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet@7.0.112-1.el8_8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.ppc64le", + "product": { + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.ppc64le", + "product_id": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-7.0@7.0.12-1.el8_8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-0:7.0.12-1.el8_8.ppc64le", + "product": { + "name": "dotnet-host-0:7.0.12-1.el8_8.ppc64le", + "product_id": "dotnet-host-0:7.0.12-1.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host@7.0.12-1.el8_8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.ppc64le", + "product": { + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.ppc64le", + "product_id": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-7.0@7.0.12-1.el8_8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.ppc64le", + "product": { + "name": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.ppc64le", + "product_id": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-7.0@7.0.12-1.el8_8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.ppc64le", + "product": { + "name": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.ppc64le", + "product_id": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-7.0@7.0.112-1.el8_8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.ppc64le", + "product": { + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.ppc64le", + "product_id": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-targeting-pack-7.0@7.0.12-1.el8_8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "dotnet-templates-7.0-0:7.0.112-1.el8_8.ppc64le", + "product": { + "name": "dotnet-templates-7.0-0:7.0.112-1.el8_8.ppc64le", + "product_id": "dotnet-templates-7.0-0:7.0.112-1.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-templates-7.0@7.0.112-1.el8_8?arch=ppc64le" + } + } + }, + { + "category": "product_version", + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.ppc64le", + "product": { + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.ppc64le", + "product_id": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/netstandard-targeting-pack-2.1@7.0.112-1.el8_8?arch=ppc64le" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.x86_64", + "product": { + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.x86_64", + "product_id": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-7.0-source-built-artifacts@7.0.112-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.x86_64", + "product": { + "name": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.x86_64", + "product_id": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet7.0-debugsource@7.0.112-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64", + "product": { + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64", + "product_id": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-7.0-debuginfo@7.0.12-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.x86_64", + "product": { + "name": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.x86_64", + "product_id": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host-debuginfo@7.0.12-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64", + "product": { + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64", + "product_id": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-7.0-debuginfo@7.0.12-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64", + "product": { + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64", + "product_id": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-7.0-debuginfo@7.0.12-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.x86_64", + "product": { + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.x86_64", + "product_id": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-7.0-debuginfo@7.0.112-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.x86_64", + "product": { + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.x86_64", + "product_id": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet7.0-debuginfo@7.0.112-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.x86_64", + "product": { + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.x86_64", + "product_id": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-runtime-7.0@7.0.12-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.x86_64", + "product": { + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.x86_64", + "product_id": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-targeting-pack-7.0@7.0.12-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-0:7.0.112-1.el8_8.x86_64", + "product": { + "name": "dotnet-0:7.0.112-1.el8_8.x86_64", + "product_id": "dotnet-0:7.0.112-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet@7.0.112-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.x86_64", + "product": { + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.x86_64", + "product_id": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-7.0@7.0.12-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-0:7.0.12-1.el8_8.x86_64", + "product": { + "name": "dotnet-host-0:7.0.12-1.el8_8.x86_64", + "product_id": "dotnet-host-0:7.0.12-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host@7.0.12-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.x86_64", + "product": { + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.x86_64", + "product_id": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-7.0@7.0.12-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.x86_64", + "product": { + "name": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.x86_64", + "product_id": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-7.0@7.0.12-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.x86_64", + "product": { + "name": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.x86_64", + "product_id": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-7.0@7.0.112-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.x86_64", + "product": { + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.x86_64", + "product_id": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-targeting-pack-7.0@7.0.12-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-templates-7.0-0:7.0.112-1.el8_8.x86_64", + "product": { + "name": "dotnet-templates-7.0-0:7.0.112-1.el8_8.x86_64", + "product_id": "dotnet-templates-7.0-0:7.0.112-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-templates-7.0@7.0.112-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.x86_64", + "product": { + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.x86_64", + "product_id": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/netstandard-targeting-pack-2.1@7.0.112-1.el8_8?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.s390x", + "product": { + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.s390x", + "product_id": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-7.0-source-built-artifacts@7.0.112-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.s390x", + "product": { + "name": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.s390x", + "product_id": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet7.0-debugsource@7.0.112-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.s390x", + "product": { + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.s390x", + "product_id": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-7.0-debuginfo@7.0.12-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.s390x", + "product": { + "name": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.s390x", + "product_id": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host-debuginfo@7.0.12-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.s390x", + "product": { + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.s390x", + "product_id": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-7.0-debuginfo@7.0.12-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.s390x", + "product": { + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.s390x", + "product_id": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-7.0-debuginfo@7.0.12-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.s390x", + "product": { + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.s390x", + "product_id": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-7.0-debuginfo@7.0.112-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.s390x", + "product": { + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.s390x", + "product_id": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet7.0-debuginfo@7.0.112-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.s390x", + "product": { + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.s390x", + "product_id": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-runtime-7.0@7.0.12-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.s390x", + "product": { + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.s390x", + "product_id": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-targeting-pack-7.0@7.0.12-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-0:7.0.112-1.el8_8.s390x", + "product": { + "name": "dotnet-0:7.0.112-1.el8_8.s390x", + "product_id": "dotnet-0:7.0.112-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet@7.0.112-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.s390x", + "product": { + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.s390x", + "product_id": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-7.0@7.0.12-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-0:7.0.12-1.el8_8.s390x", + "product": { + "name": "dotnet-host-0:7.0.12-1.el8_8.s390x", + "product_id": "dotnet-host-0:7.0.12-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host@7.0.12-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.s390x", + "product": { + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.s390x", + "product_id": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-7.0@7.0.12-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.s390x", + "product": { + "name": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.s390x", + "product_id": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-7.0@7.0.12-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.s390x", + "product": { + "name": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.s390x", + "product_id": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-7.0@7.0.112-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.s390x", + "product": { + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.s390x", + "product_id": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-targeting-pack-7.0@7.0.12-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-templates-7.0-0:7.0.112-1.el8_8.s390x", + "product": { + "name": "dotnet-templates-7.0-0:7.0.112-1.el8_8.s390x", + "product_id": "dotnet-templates-7.0-0:7.0.112-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-templates-7.0@7.0.112-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.s390x", + "product": { + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.s390x", + "product_id": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/netstandard-targeting-pack-2.1@7.0.112-1.el8_8?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "dotnet7.0-0:7.0.112-1.el8_8.src", + "product": { + "name": "dotnet7.0-0:7.0.112-1.el8_8.src", + "product_id": "dotnet7.0-0:7.0.112-1.el8_8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet7.0@7.0.112-1.el8_8?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-mod-devel-1:1.20.1-14.el9_2.1.aarch64", + "product": { + "name": "nginx-mod-devel-1:1.20.1-14.el9_2.1.aarch64", + "product_id": "nginx-mod-devel-1:1.20.1-14.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-devel@1.20.1-14.el9_2.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debugsource-1:1.20.1-14.el9_2.1.aarch64", + "product": { + "name": "nginx-debugsource-1:1.20.1-14.el9_2.1.aarch64", + "product_id": "nginx-debugsource-1:1.20.1-14.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debugsource@1.20.1-14.el9_2.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "product": { + "name": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "product_id": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-core-debuginfo@1.20.1-14.el9_2.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "product": { + "name": "nginx-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "product_id": "nginx-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debuginfo@1.20.1-14.el9_2.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "product": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "product_id": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter-debuginfo@1.20.1-14.el9_2.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "product": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "product_id": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl-debuginfo@1.20.1-14.el9_2.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "product": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "product_id": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter-debuginfo@1.20.1-14.el9_2.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "product": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "product_id": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail-debuginfo@1.20.1-14.el9_2.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "product": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "product_id": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream-debuginfo@1.20.1-14.el9_2.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-1:1.20.1-14.el9_2.1.aarch64", + "product": { + "name": "nginx-1:1.20.1-14.el9_2.1.aarch64", + "product_id": "nginx-1:1.20.1-14.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.20.1-14.el9_2.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-core-1:1.20.1-14.el9_2.1.aarch64", + "product": { + "name": "nginx-core-1:1.20.1-14.el9_2.1.aarch64", + "product_id": "nginx-core-1:1.20.1-14.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-core@1.20.1-14.el9_2.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.aarch64", + "product": { + "name": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.aarch64", + "product_id": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter@1.20.1-14.el9_2.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.aarch64", + "product": { + "name": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.aarch64", + "product_id": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl@1.20.1-14.el9_2.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.aarch64", + "product": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.aarch64", + "product_id": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter@1.20.1-14.el9_2.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-1:1.20.1-14.el9_2.1.aarch64", + "product": { + "name": "nginx-mod-mail-1:1.20.1-14.el9_2.1.aarch64", + "product_id": "nginx-mod-mail-1:1.20.1-14.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail@1.20.1-14.el9_2.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-1:1.20.1-14.el9_2.1.aarch64", + "product": { + "name": "nginx-mod-stream-1:1.20.1-14.el9_2.1.aarch64", + "product_id": "nginx-mod-stream-1:1.20.1-14.el9_2.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream@1.20.1-14.el9_2.1?arch=aarch64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-mod-devel-1:1.20.1-14.el9_2.1.ppc64le", + "product": { + "name": "nginx-mod-devel-1:1.20.1-14.el9_2.1.ppc64le", + "product_id": "nginx-mod-devel-1:1.20.1-14.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-devel@1.20.1-14.el9_2.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debugsource-1:1.20.1-14.el9_2.1.ppc64le", + "product": { + "name": "nginx-debugsource-1:1.20.1-14.el9_2.1.ppc64le", + "product_id": "nginx-debugsource-1:1.20.1-14.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debugsource@1.20.1-14.el9_2.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "product": { + "name": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "product_id": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-core-debuginfo@1.20.1-14.el9_2.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "product": { + "name": "nginx-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "product_id": "nginx-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debuginfo@1.20.1-14.el9_2.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "product": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "product_id": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter-debuginfo@1.20.1-14.el9_2.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "product": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "product_id": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl-debuginfo@1.20.1-14.el9_2.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "product": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "product_id": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter-debuginfo@1.20.1-14.el9_2.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "product": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "product_id": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail-debuginfo@1.20.1-14.el9_2.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "product": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "product_id": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream-debuginfo@1.20.1-14.el9_2.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-1:1.20.1-14.el9_2.1.ppc64le", + "product": { + "name": "nginx-1:1.20.1-14.el9_2.1.ppc64le", + "product_id": "nginx-1:1.20.1-14.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.20.1-14.el9_2.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-core-1:1.20.1-14.el9_2.1.ppc64le", + "product": { + "name": "nginx-core-1:1.20.1-14.el9_2.1.ppc64le", + "product_id": "nginx-core-1:1.20.1-14.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-core@1.20.1-14.el9_2.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.ppc64le", + "product": { + "name": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.ppc64le", + "product_id": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter@1.20.1-14.el9_2.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.ppc64le", + "product": { + "name": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.ppc64le", + "product_id": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl@1.20.1-14.el9_2.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.ppc64le", + "product": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.ppc64le", + "product_id": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter@1.20.1-14.el9_2.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-1:1.20.1-14.el9_2.1.ppc64le", + "product": { + "name": "nginx-mod-mail-1:1.20.1-14.el9_2.1.ppc64le", + "product_id": "nginx-mod-mail-1:1.20.1-14.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail@1.20.1-14.el9_2.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-1:1.20.1-14.el9_2.1.ppc64le", + "product": { + "name": "nginx-mod-stream-1:1.20.1-14.el9_2.1.ppc64le", + "product_id": "nginx-mod-stream-1:1.20.1-14.el9_2.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream@1.20.1-14.el9_2.1?arch=ppc64le&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-mod-devel-1:1.20.1-14.el9_2.1.x86_64", + "product": { + "name": "nginx-mod-devel-1:1.20.1-14.el9_2.1.x86_64", + "product_id": "nginx-mod-devel-1:1.20.1-14.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-devel@1.20.1-14.el9_2.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debugsource-1:1.20.1-14.el9_2.1.x86_64", + "product": { + "name": "nginx-debugsource-1:1.20.1-14.el9_2.1.x86_64", + "product_id": "nginx-debugsource-1:1.20.1-14.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debugsource@1.20.1-14.el9_2.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "product": { + "name": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "product_id": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-core-debuginfo@1.20.1-14.el9_2.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "product": { + "name": "nginx-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "product_id": "nginx-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debuginfo@1.20.1-14.el9_2.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "product": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "product_id": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter-debuginfo@1.20.1-14.el9_2.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "product": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "product_id": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl-debuginfo@1.20.1-14.el9_2.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "product": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "product_id": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter-debuginfo@1.20.1-14.el9_2.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "product": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "product_id": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail-debuginfo@1.20.1-14.el9_2.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "product": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "product_id": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream-debuginfo@1.20.1-14.el9_2.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-1:1.20.1-14.el9_2.1.x86_64", + "product": { + "name": "nginx-1:1.20.1-14.el9_2.1.x86_64", + "product_id": "nginx-1:1.20.1-14.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.20.1-14.el9_2.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-core-1:1.20.1-14.el9_2.1.x86_64", + "product": { + "name": "nginx-core-1:1.20.1-14.el9_2.1.x86_64", + "product_id": "nginx-core-1:1.20.1-14.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-core@1.20.1-14.el9_2.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.x86_64", + "product": { + "name": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.x86_64", + "product_id": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter@1.20.1-14.el9_2.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.x86_64", + "product": { + "name": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.x86_64", + "product_id": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl@1.20.1-14.el9_2.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.x86_64", + "product": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.x86_64", + "product_id": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter@1.20.1-14.el9_2.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-1:1.20.1-14.el9_2.1.x86_64", + "product": { + "name": "nginx-mod-mail-1:1.20.1-14.el9_2.1.x86_64", + "product_id": "nginx-mod-mail-1:1.20.1-14.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail@1.20.1-14.el9_2.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-1:1.20.1-14.el9_2.1.x86_64", + "product": { + "name": "nginx-mod-stream-1:1.20.1-14.el9_2.1.x86_64", + "product_id": "nginx-mod-stream-1:1.20.1-14.el9_2.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream@1.20.1-14.el9_2.1?arch=x86_64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-mod-devel-1:1.20.1-14.el9_2.1.s390x", + "product": { + "name": "nginx-mod-devel-1:1.20.1-14.el9_2.1.s390x", + "product_id": "nginx-mod-devel-1:1.20.1-14.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-devel@1.20.1-14.el9_2.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debugsource-1:1.20.1-14.el9_2.1.s390x", + "product": { + "name": "nginx-debugsource-1:1.20.1-14.el9_2.1.s390x", + "product_id": "nginx-debugsource-1:1.20.1-14.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debugsource@1.20.1-14.el9_2.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "product": { + "name": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "product_id": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-core-debuginfo@1.20.1-14.el9_2.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "product": { + "name": "nginx-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "product_id": "nginx-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debuginfo@1.20.1-14.el9_2.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "product": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "product_id": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter-debuginfo@1.20.1-14.el9_2.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "product": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "product_id": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl-debuginfo@1.20.1-14.el9_2.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "product": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "product_id": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter-debuginfo@1.20.1-14.el9_2.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "product": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "product_id": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail-debuginfo@1.20.1-14.el9_2.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "product": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "product_id": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream-debuginfo@1.20.1-14.el9_2.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-1:1.20.1-14.el9_2.1.s390x", + "product": { + "name": "nginx-1:1.20.1-14.el9_2.1.s390x", + "product_id": "nginx-1:1.20.1-14.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.20.1-14.el9_2.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-core-1:1.20.1-14.el9_2.1.s390x", + "product": { + "name": "nginx-core-1:1.20.1-14.el9_2.1.s390x", + "product_id": "nginx-core-1:1.20.1-14.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-core@1.20.1-14.el9_2.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.s390x", + "product": { + "name": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.s390x", + "product_id": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter@1.20.1-14.el9_2.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.s390x", + "product": { + "name": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.s390x", + "product_id": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl@1.20.1-14.el9_2.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.s390x", + "product": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.s390x", + "product_id": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter@1.20.1-14.el9_2.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-1:1.20.1-14.el9_2.1.s390x", + "product": { + "name": "nginx-mod-mail-1:1.20.1-14.el9_2.1.s390x", + "product_id": "nginx-mod-mail-1:1.20.1-14.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail@1.20.1-14.el9_2.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-1:1.20.1-14.el9_2.1.s390x", + "product": { + "name": "nginx-mod-stream-1:1.20.1-14.el9_2.1.s390x", + "product_id": "nginx-mod-stream-1:1.20.1-14.el9_2.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream@1.20.1-14.el9_2.1?arch=s390x&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.20.1-14.el9_2.1.src", + "product": { + "name": "nginx-1:1.20.1-14.el9_2.1.src", + "product_id": "nginx-1:1.20.1-14.el9_2.1.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.20.1-14.el9_2.1?arch=src&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-all-modules-1:1.20.1-14.el9_2.1.noarch", + "product": { + "name": "nginx-all-modules-1:1.20.1-14.el9_2.1.noarch", + "product_id": "nginx-all-modules-1:1.20.1-14.el9_2.1.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-all-modules@1.20.1-14.el9_2.1?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-filesystem-1:1.20.1-14.el9_2.1.noarch", + "product": { + "name": "nginx-filesystem-1:1.20.1-14.el9_2.1.noarch", + "product_id": "nginx-filesystem-1:1.20.1-14.el9_2.1.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-filesystem@1.20.1-14.el9_2.1?arch=noarch&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.20.1-10.el9_0.1.src", + "product": { + "name": "nginx-1:1.20.1-10.el9_0.1.src", + "product_id": "nginx-1:1.20.1-10.el9_0.1.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.20.1-10.el9_0.1?arch=src&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.20.1-10.el9_0.1.aarch64", + "product": { + "name": "nginx-1:1.20.1-10.el9_0.1.aarch64", + "product_id": "nginx-1:1.20.1-10.el9_0.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.20.1-10.el9_0.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.aarch64", + "product": { + "name": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.aarch64", + "product_id": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter@1.20.1-10.el9_0.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.aarch64", + "product": { + "name": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.aarch64", + "product_id": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl@1.20.1-10.el9_0.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.aarch64", + "product": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.aarch64", + "product_id": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter@1.20.1-10.el9_0.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-1:1.20.1-10.el9_0.1.aarch64", + "product": { + "name": "nginx-mod-mail-1:1.20.1-10.el9_0.1.aarch64", + "product_id": "nginx-mod-mail-1:1.20.1-10.el9_0.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail@1.20.1-10.el9_0.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-1:1.20.1-10.el9_0.1.aarch64", + "product": { + "name": "nginx-mod-stream-1:1.20.1-10.el9_0.1.aarch64", + "product_id": "nginx-mod-stream-1:1.20.1-10.el9_0.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream@1.20.1-10.el9_0.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debugsource-1:1.20.1-10.el9_0.1.aarch64", + "product": { + "name": "nginx-debugsource-1:1.20.1-10.el9_0.1.aarch64", + "product_id": "nginx-debugsource-1:1.20.1-10.el9_0.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debugsource@1.20.1-10.el9_0.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "product": { + "name": "nginx-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "product_id": "nginx-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debuginfo@1.20.1-10.el9_0.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "product": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "product_id": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter-debuginfo@1.20.1-10.el9_0.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "product": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "product_id": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl-debuginfo@1.20.1-10.el9_0.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "product": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "product_id": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter-debuginfo@1.20.1-10.el9_0.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "product": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "product_id": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail-debuginfo@1.20.1-10.el9_0.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "product": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "product_id": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream-debuginfo@1.20.1-10.el9_0.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-devel-1:1.20.1-10.el9_0.1.aarch64", + "product": { + "name": "nginx-mod-devel-1:1.20.1-10.el9_0.1.aarch64", + "product_id": "nginx-mod-devel-1:1.20.1-10.el9_0.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-devel@1.20.1-10.el9_0.1?arch=aarch64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.20.1-10.el9_0.1.ppc64le", + "product": { + "name": "nginx-1:1.20.1-10.el9_0.1.ppc64le", + "product_id": "nginx-1:1.20.1-10.el9_0.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.20.1-10.el9_0.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.ppc64le", + "product": { + "name": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.ppc64le", + "product_id": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter@1.20.1-10.el9_0.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.ppc64le", + "product": { + "name": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.ppc64le", + "product_id": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl@1.20.1-10.el9_0.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.ppc64le", + "product": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.ppc64le", + "product_id": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter@1.20.1-10.el9_0.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-1:1.20.1-10.el9_0.1.ppc64le", + "product": { + "name": "nginx-mod-mail-1:1.20.1-10.el9_0.1.ppc64le", + "product_id": "nginx-mod-mail-1:1.20.1-10.el9_0.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail@1.20.1-10.el9_0.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-1:1.20.1-10.el9_0.1.ppc64le", + "product": { + "name": "nginx-mod-stream-1:1.20.1-10.el9_0.1.ppc64le", + "product_id": "nginx-mod-stream-1:1.20.1-10.el9_0.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream@1.20.1-10.el9_0.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debugsource-1:1.20.1-10.el9_0.1.ppc64le", + "product": { + "name": "nginx-debugsource-1:1.20.1-10.el9_0.1.ppc64le", + "product_id": "nginx-debugsource-1:1.20.1-10.el9_0.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debugsource@1.20.1-10.el9_0.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "product": { + "name": "nginx-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "product_id": "nginx-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debuginfo@1.20.1-10.el9_0.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "product": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "product_id": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter-debuginfo@1.20.1-10.el9_0.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "product": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "product_id": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl-debuginfo@1.20.1-10.el9_0.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "product": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "product_id": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter-debuginfo@1.20.1-10.el9_0.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "product": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "product_id": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail-debuginfo@1.20.1-10.el9_0.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "product": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "product_id": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream-debuginfo@1.20.1-10.el9_0.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-devel-1:1.20.1-10.el9_0.1.ppc64le", + "product": { + "name": "nginx-mod-devel-1:1.20.1-10.el9_0.1.ppc64le", + "product_id": "nginx-mod-devel-1:1.20.1-10.el9_0.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-devel@1.20.1-10.el9_0.1?arch=ppc64le&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.20.1-10.el9_0.1.x86_64", + "product": { + "name": "nginx-1:1.20.1-10.el9_0.1.x86_64", + "product_id": "nginx-1:1.20.1-10.el9_0.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.20.1-10.el9_0.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.x86_64", + "product": { + "name": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.x86_64", + "product_id": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter@1.20.1-10.el9_0.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.x86_64", + "product": { + "name": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.x86_64", + "product_id": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl@1.20.1-10.el9_0.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.x86_64", + "product": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.x86_64", + "product_id": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter@1.20.1-10.el9_0.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-1:1.20.1-10.el9_0.1.x86_64", + "product": { + "name": "nginx-mod-mail-1:1.20.1-10.el9_0.1.x86_64", + "product_id": "nginx-mod-mail-1:1.20.1-10.el9_0.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail@1.20.1-10.el9_0.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-1:1.20.1-10.el9_0.1.x86_64", + "product": { + "name": "nginx-mod-stream-1:1.20.1-10.el9_0.1.x86_64", + "product_id": "nginx-mod-stream-1:1.20.1-10.el9_0.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream@1.20.1-10.el9_0.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debugsource-1:1.20.1-10.el9_0.1.x86_64", + "product": { + "name": "nginx-debugsource-1:1.20.1-10.el9_0.1.x86_64", + "product_id": "nginx-debugsource-1:1.20.1-10.el9_0.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debugsource@1.20.1-10.el9_0.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "product": { + "name": "nginx-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "product_id": "nginx-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debuginfo@1.20.1-10.el9_0.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "product": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "product_id": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter-debuginfo@1.20.1-10.el9_0.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "product": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "product_id": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl-debuginfo@1.20.1-10.el9_0.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "product": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "product_id": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter-debuginfo@1.20.1-10.el9_0.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "product": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "product_id": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail-debuginfo@1.20.1-10.el9_0.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "product": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "product_id": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream-debuginfo@1.20.1-10.el9_0.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-devel-1:1.20.1-10.el9_0.1.x86_64", + "product": { + "name": "nginx-mod-devel-1:1.20.1-10.el9_0.1.x86_64", + "product_id": "nginx-mod-devel-1:1.20.1-10.el9_0.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-devel@1.20.1-10.el9_0.1?arch=x86_64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.20.1-10.el9_0.1.s390x", + "product": { + "name": "nginx-1:1.20.1-10.el9_0.1.s390x", + "product_id": "nginx-1:1.20.1-10.el9_0.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.20.1-10.el9_0.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.s390x", + "product": { + "name": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.s390x", + "product_id": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter@1.20.1-10.el9_0.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.s390x", + "product": { + "name": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.s390x", + "product_id": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl@1.20.1-10.el9_0.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.s390x", + "product": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.s390x", + "product_id": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter@1.20.1-10.el9_0.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-1:1.20.1-10.el9_0.1.s390x", + "product": { + "name": "nginx-mod-mail-1:1.20.1-10.el9_0.1.s390x", + "product_id": "nginx-mod-mail-1:1.20.1-10.el9_0.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail@1.20.1-10.el9_0.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-1:1.20.1-10.el9_0.1.s390x", + "product": { + "name": "nginx-mod-stream-1:1.20.1-10.el9_0.1.s390x", + "product_id": "nginx-mod-stream-1:1.20.1-10.el9_0.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream@1.20.1-10.el9_0.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debugsource-1:1.20.1-10.el9_0.1.s390x", + "product": { + "name": "nginx-debugsource-1:1.20.1-10.el9_0.1.s390x", + "product_id": "nginx-debugsource-1:1.20.1-10.el9_0.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debugsource@1.20.1-10.el9_0.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "product": { + "name": "nginx-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "product_id": "nginx-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debuginfo@1.20.1-10.el9_0.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "product": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "product_id": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter-debuginfo@1.20.1-10.el9_0.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "product": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "product_id": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl-debuginfo@1.20.1-10.el9_0.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "product": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "product_id": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter-debuginfo@1.20.1-10.el9_0.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "product": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "product_id": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail-debuginfo@1.20.1-10.el9_0.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "product": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "product_id": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream-debuginfo@1.20.1-10.el9_0.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-devel-1:1.20.1-10.el9_0.1.s390x", + "product": { + "name": "nginx-mod-devel-1:1.20.1-10.el9_0.1.s390x", + "product_id": "nginx-mod-devel-1:1.20.1-10.el9_0.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-devel@1.20.1-10.el9_0.1?arch=s390x&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-all-modules-1:1.20.1-10.el9_0.1.noarch", + "product": { + "name": "nginx-all-modules-1:1.20.1-10.el9_0.1.noarch", + "product_id": "nginx-all-modules-1:1.20.1-10.el9_0.1.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-all-modules@1.20.1-10.el9_0.1?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-filesystem-1:1.20.1-10.el9_0.1.noarch", + "product": { + "name": "nginx-filesystem-1:1.20.1-10.el9_0.1.noarch", + "product_id": "nginx-filesystem-1:1.20.1-10.el9_0.1.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-filesystem@1.20.1-10.el9_0.1?arch=noarch&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.x86_64", + "product": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.x86_64", + "product_id": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0-source-built-artifacts@6.0.123-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet6.0-debugsource-0:6.0.123-1.el9_2.x86_64", + "product": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el9_2.x86_64", + "product_id": "dotnet6.0-debugsource-0:6.0.123-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0-debugsource@6.0.123-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64", + "product": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64", + "product_id": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-6.0-debuginfo@6.0.23-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64", + "product": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64", + "product_id": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-6.0-debuginfo@6.0.23-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64", + "product": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64", + "product_id": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-6.0-debuginfo@6.0.23-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.x86_64", + "product": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.x86_64", + "product_id": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0-debuginfo@6.0.123-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el9_2.x86_64", + "product": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el9_2.x86_64", + "product_id": "dotnet6.0-debuginfo-0:6.0.123-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0-debuginfo@6.0.123-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.x86_64", + "product": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.x86_64", + "product_id": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-runtime-6.0@6.0.23-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.x86_64", + "product": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.x86_64", + "product_id": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-targeting-pack-6.0@6.0.23-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.x86_64", + "product": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.x86_64", + "product_id": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-6.0@6.0.23-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.x86_64", + "product": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.x86_64", + "product_id": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-6.0@6.0.23-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-6.0-0:6.0.23-1.el9_2.x86_64", + "product": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el9_2.x86_64", + "product_id": "dotnet-runtime-6.0-0:6.0.23-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-6.0@6.0.23-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-0:6.0.123-1.el9_2.x86_64", + "product": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el9_2.x86_64", + "product_id": "dotnet-sdk-6.0-0:6.0.123-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0@6.0.123-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.x86_64", + "product": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.x86_64", + "product_id": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-targeting-pack-6.0@6.0.23-1.el9_2?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-templates-6.0-0:6.0.123-1.el9_2.x86_64", + "product": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el9_2.x86_64", + "product_id": "dotnet-templates-6.0-0:6.0.123-1.el9_2.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-templates-6.0@6.0.123-1.el9_2?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.s390x", + "product": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.s390x", + "product_id": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0-source-built-artifacts@6.0.123-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet6.0-debugsource-0:6.0.123-1.el9_2.s390x", + "product": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el9_2.s390x", + "product_id": "dotnet6.0-debugsource-0:6.0.123-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0-debugsource@6.0.123-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.s390x", + "product": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.s390x", + "product_id": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-6.0-debuginfo@6.0.23-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.s390x", + "product": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.s390x", + "product_id": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-6.0-debuginfo@6.0.23-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.s390x", + "product": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.s390x", + "product_id": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-6.0-debuginfo@6.0.23-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.s390x", + "product": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.s390x", + "product_id": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0-debuginfo@6.0.123-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el9_2.s390x", + "product": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el9_2.s390x", + "product_id": "dotnet6.0-debuginfo-0:6.0.123-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0-debuginfo@6.0.123-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.s390x", + "product": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.s390x", + "product_id": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-runtime-6.0@6.0.23-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.s390x", + "product": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.s390x", + "product_id": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-targeting-pack-6.0@6.0.23-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.s390x", + "product": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.s390x", + "product_id": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-6.0@6.0.23-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.s390x", + "product": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.s390x", + "product_id": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-6.0@6.0.23-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-6.0-0:6.0.23-1.el9_2.s390x", + "product": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el9_2.s390x", + "product_id": "dotnet-runtime-6.0-0:6.0.23-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-6.0@6.0.23-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-0:6.0.123-1.el9_2.s390x", + "product": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el9_2.s390x", + "product_id": "dotnet-sdk-6.0-0:6.0.123-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0@6.0.123-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.s390x", + "product": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.s390x", + "product_id": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-targeting-pack-6.0@6.0.23-1.el9_2?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-templates-6.0-0:6.0.123-1.el9_2.s390x", + "product": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el9_2.s390x", + "product_id": "dotnet-templates-6.0-0:6.0.123-1.el9_2.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-templates-6.0@6.0.123-1.el9_2?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.aarch64", + "product": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.aarch64", + "product_id": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0-source-built-artifacts@6.0.123-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet6.0-debugsource-0:6.0.123-1.el9_2.aarch64", + "product": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el9_2.aarch64", + "product_id": "dotnet6.0-debugsource-0:6.0.123-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0-debugsource@6.0.123-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64", + "product": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64", + "product_id": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-6.0-debuginfo@6.0.23-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64", + "product": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64", + "product_id": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-6.0-debuginfo@6.0.23-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64", + "product": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64", + "product_id": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-6.0-debuginfo@6.0.23-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.aarch64", + "product": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.aarch64", + "product_id": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0-debuginfo@6.0.123-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el9_2.aarch64", + "product": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el9_2.aarch64", + "product_id": "dotnet6.0-debuginfo-0:6.0.123-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0-debuginfo@6.0.123-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.aarch64", + "product": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.aarch64", + "product_id": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-runtime-6.0@6.0.23-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.aarch64", + "product": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.aarch64", + "product_id": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-targeting-pack-6.0@6.0.23-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.aarch64", + "product": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.aarch64", + "product_id": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-6.0@6.0.23-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.aarch64", + "product": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.aarch64", + "product_id": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-6.0@6.0.23-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-6.0-0:6.0.23-1.el9_2.aarch64", + "product": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el9_2.aarch64", + "product_id": "dotnet-runtime-6.0-0:6.0.23-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-6.0@6.0.23-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-0:6.0.123-1.el9_2.aarch64", + "product": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el9_2.aarch64", + "product_id": "dotnet-sdk-6.0-0:6.0.123-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0@6.0.123-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.aarch64", + "product": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.aarch64", + "product_id": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-targeting-pack-6.0@6.0.23-1.el9_2?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-templates-6.0-0:6.0.123-1.el9_2.aarch64", + "product": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el9_2.aarch64", + "product_id": "dotnet-templates-6.0-0:6.0.123-1.el9_2.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-templates-6.0@6.0.123-1.el9_2?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "dotnet6.0-0:6.0.123-1.el9_2.src", + "product": { + "name": "dotnet6.0-0:6.0.123-1.el9_2.src", + "product_id": "dotnet6.0-0:6.0.123-1.el9_2.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0@6.0.123-1.el9_2?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product": { + "name": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_id": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product": { + "name": "nginx-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_id": "nginx-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debuginfo@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debugsource-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product": { + "name": "nginx-debugsource-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_id": "nginx-debugsource-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debugsource@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-devel-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product": { + "name": "nginx-mod-devel-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_id": "nginx-mod-devel-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-devel@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product": { + "name": "nginx-mod-http-image-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_id": "nginx-mod-http-image-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_id": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter-debuginfo@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product": { + "name": "nginx-mod-http-perl-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_id": "nginx-mod-http-perl-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product": { + "name": "nginx-mod-http-perl-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_id": "nginx-mod-http-perl-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl-debuginfo@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product": { + "name": "nginx-mod-http-xslt-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_id": "nginx-mod-http-xslt-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_id": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter-debuginfo@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product": { + "name": "nginx-mod-mail-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_id": "nginx-mod-mail-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product": { + "name": "nginx-mod-mail-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_id": "nginx-mod-mail-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail-debuginfo@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product": { + "name": "nginx-mod-stream-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_id": "nginx-mod-stream-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product": { + "name": "nginx-mod-stream-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_id": "nginx-mod-stream-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream-debuginfo@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=aarch64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.src", + "product": { + "name": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.src", + "product_id": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=src&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-all-modules-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.noarch", + "product": { + "name": "nginx-all-modules-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.noarch", + "product_id": "nginx-all-modules-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-all-modules@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-filesystem-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.noarch", + "product": { + "name": "nginx-filesystem-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.noarch", + "product_id": "nginx-filesystem-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-filesystem@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=noarch&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product": { + "name": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_id": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product": { + "name": "nginx-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_id": "nginx-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debuginfo@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debugsource-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product": { + "name": "nginx-debugsource-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_id": "nginx-debugsource-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debugsource@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-devel-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product": { + "name": "nginx-mod-devel-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_id": "nginx-mod-devel-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-devel@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product": { + "name": "nginx-mod-http-image-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_id": "nginx-mod-http-image-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_id": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter-debuginfo@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product": { + "name": "nginx-mod-http-perl-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_id": "nginx-mod-http-perl-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product": { + "name": "nginx-mod-http-perl-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_id": "nginx-mod-http-perl-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl-debuginfo@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product": { + "name": "nginx-mod-http-xslt-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_id": "nginx-mod-http-xslt-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_id": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter-debuginfo@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product": { + "name": "nginx-mod-mail-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_id": "nginx-mod-mail-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product": { + "name": "nginx-mod-mail-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_id": "nginx-mod-mail-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail-debuginfo@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product": { + "name": "nginx-mod-stream-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_id": "nginx-mod-stream-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product": { + "name": "nginx-mod-stream-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_id": "nginx-mod-stream-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream-debuginfo@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=ppc64le&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product": { + "name": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_id": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product": { + "name": "nginx-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_id": "nginx-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debuginfo@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debugsource-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product": { + "name": "nginx-debugsource-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_id": "nginx-debugsource-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debugsource@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-devel-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product": { + "name": "nginx-mod-devel-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_id": "nginx-mod-devel-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-devel@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product": { + "name": "nginx-mod-http-image-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_id": "nginx-mod-http-image-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_id": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter-debuginfo@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product": { + "name": "nginx-mod-http-perl-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_id": "nginx-mod-http-perl-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product": { + "name": "nginx-mod-http-perl-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_id": "nginx-mod-http-perl-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl-debuginfo@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product": { + "name": "nginx-mod-http-xslt-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_id": "nginx-mod-http-xslt-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_id": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter-debuginfo@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product": { + "name": "nginx-mod-mail-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_id": "nginx-mod-mail-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product": { + "name": "nginx-mod-mail-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_id": "nginx-mod-mail-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail-debuginfo@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product": { + "name": "nginx-mod-stream-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_id": "nginx-mod-stream-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product": { + "name": "nginx-mod-stream-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_id": "nginx-mod-stream-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream-debuginfo@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=s390x&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product": { + "name": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_id": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product": { + "name": "nginx-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_id": "nginx-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debuginfo@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debugsource-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product": { + "name": "nginx-debugsource-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_id": "nginx-debugsource-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debugsource@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-devel-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product": { + "name": "nginx-mod-devel-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_id": "nginx-mod-devel-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-devel@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product": { + "name": "nginx-mod-http-image-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_id": "nginx-mod-http-image-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_id": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter-debuginfo@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product": { + "name": "nginx-mod-http-perl-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_id": "nginx-mod-http-perl-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product": { + "name": "nginx-mod-http-perl-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_id": "nginx-mod-http-perl-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl-debuginfo@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product": { + "name": "nginx-mod-http-xslt-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_id": "nginx-mod-http-xslt-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_id": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter-debuginfo@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product": { + "name": "nginx-mod-mail-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_id": "nginx-mod-mail-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product": { + "name": "nginx-mod-mail-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_id": "nginx-mod-mail-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail-debuginfo@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product": { + "name": "nginx-mod-stream-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_id": "nginx-mod-stream-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product": { + "name": "nginx-mod-stream-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_id": "nginx-mod-stream-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream-debuginfo@1.22.1-1.module%2Bel8.8.0%2B20355%2B6d9c8a63.1?arch=x86_64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.aarch64", + "product": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.aarch64", + "product_id": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0-source-built-artifacts@6.0.123-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet6.0-debugsource-0:6.0.123-1.el8_8.aarch64", + "product": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el8_8.aarch64", + "product_id": "dotnet6.0-debugsource-0:6.0.123-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0-debugsource@6.0.123-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64", + "product": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64", + "product_id": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-6.0-debuginfo@6.0.23-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64", + "product": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64", + "product_id": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-6.0-debuginfo@6.0.23-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64", + "product": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64", + "product_id": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-6.0-debuginfo@6.0.23-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.aarch64", + "product": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.aarch64", + "product_id": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0-debuginfo@6.0.123-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el8_8.aarch64", + "product": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el8_8.aarch64", + "product_id": "dotnet6.0-debuginfo-0:6.0.123-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0-debuginfo@6.0.123-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.aarch64", + "product": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.aarch64", + "product_id": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-runtime-6.0@6.0.23-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.aarch64", + "product": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.aarch64", + "product_id": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-targeting-pack-6.0@6.0.23-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.aarch64", + "product": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.aarch64", + "product_id": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-6.0@6.0.23-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.aarch64", + "product": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.aarch64", + "product_id": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-6.0@6.0.23-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-6.0-0:6.0.23-1.el8_8.aarch64", + "product": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el8_8.aarch64", + "product_id": "dotnet-runtime-6.0-0:6.0.23-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-6.0@6.0.23-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-0:6.0.123-1.el8_8.aarch64", + "product": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el8_8.aarch64", + "product_id": "dotnet-sdk-6.0-0:6.0.123-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0@6.0.123-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.aarch64", + "product": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.aarch64", + "product_id": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-targeting-pack-6.0@6.0.23-1.el8_8?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-templates-6.0-0:6.0.123-1.el8_8.aarch64", + "product": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el8_8.aarch64", + "product_id": "dotnet-templates-6.0-0:6.0.123-1.el8_8.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-templates-6.0@6.0.123-1.el8_8?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.x86_64", + "product": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.x86_64", + "product_id": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0-source-built-artifacts@6.0.123-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet6.0-debugsource-0:6.0.123-1.el8_8.x86_64", + "product": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el8_8.x86_64", + "product_id": "dotnet6.0-debugsource-0:6.0.123-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0-debugsource@6.0.123-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64", + "product": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64", + "product_id": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-6.0-debuginfo@6.0.23-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64", + "product": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64", + "product_id": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-6.0-debuginfo@6.0.23-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64", + "product": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64", + "product_id": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-6.0-debuginfo@6.0.23-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.x86_64", + "product": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.x86_64", + "product_id": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0-debuginfo@6.0.123-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el8_8.x86_64", + "product": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el8_8.x86_64", + "product_id": "dotnet6.0-debuginfo-0:6.0.123-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0-debuginfo@6.0.123-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.x86_64", + "product": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.x86_64", + "product_id": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-runtime-6.0@6.0.23-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.x86_64", + "product": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.x86_64", + "product_id": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-targeting-pack-6.0@6.0.23-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.x86_64", + "product": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.x86_64", + "product_id": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-6.0@6.0.23-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.x86_64", + "product": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.x86_64", + "product_id": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-6.0@6.0.23-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-6.0-0:6.0.23-1.el8_8.x86_64", + "product": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el8_8.x86_64", + "product_id": "dotnet-runtime-6.0-0:6.0.23-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-6.0@6.0.23-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-0:6.0.123-1.el8_8.x86_64", + "product": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el8_8.x86_64", + "product_id": "dotnet-sdk-6.0-0:6.0.123-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0@6.0.123-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.x86_64", + "product": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.x86_64", + "product_id": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-targeting-pack-6.0@6.0.23-1.el8_8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-templates-6.0-0:6.0.123-1.el8_8.x86_64", + "product": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el8_8.x86_64", + "product_id": "dotnet-templates-6.0-0:6.0.123-1.el8_8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-templates-6.0@6.0.123-1.el8_8?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.s390x", + "product": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.s390x", + "product_id": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0-source-built-artifacts@6.0.123-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet6.0-debugsource-0:6.0.123-1.el8_8.s390x", + "product": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el8_8.s390x", + "product_id": "dotnet6.0-debugsource-0:6.0.123-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0-debugsource@6.0.123-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.s390x", + "product": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.s390x", + "product_id": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-6.0-debuginfo@6.0.23-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.s390x", + "product": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.s390x", + "product_id": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-6.0-debuginfo@6.0.23-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.s390x", + "product": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.s390x", + "product_id": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-6.0-debuginfo@6.0.23-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.s390x", + "product": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.s390x", + "product_id": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0-debuginfo@6.0.123-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el8_8.s390x", + "product": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el8_8.s390x", + "product_id": "dotnet6.0-debuginfo-0:6.0.123-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0-debuginfo@6.0.123-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.s390x", + "product": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.s390x", + "product_id": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-runtime-6.0@6.0.23-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.s390x", + "product": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.s390x", + "product_id": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-targeting-pack-6.0@6.0.23-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.s390x", + "product": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.s390x", + "product_id": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-6.0@6.0.23-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.s390x", + "product": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.s390x", + "product_id": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-6.0@6.0.23-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-6.0-0:6.0.23-1.el8_8.s390x", + "product": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el8_8.s390x", + "product_id": "dotnet-runtime-6.0-0:6.0.23-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-6.0@6.0.23-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-0:6.0.123-1.el8_8.s390x", + "product": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el8_8.s390x", + "product_id": "dotnet-sdk-6.0-0:6.0.123-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0@6.0.123-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.s390x", + "product": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.s390x", + "product_id": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-targeting-pack-6.0@6.0.23-1.el8_8?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-templates-6.0-0:6.0.123-1.el8_8.s390x", + "product": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el8_8.s390x", + "product_id": "dotnet-templates-6.0-0:6.0.123-1.el8_8.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-templates-6.0@6.0.123-1.el8_8?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "dotnet6.0-0:6.0.123-1.el8_8.src", + "product": { + "name": "dotnet6.0-0:6.0.123-1.el8_8.src", + "product_id": "dotnet6.0-0:6.0.123-1.el8_8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0@6.0.123-1.el8_8?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.aarch64", + "product": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.aarch64", + "product_id": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-runtime-6.0@6.0.23-1.el9_0?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.aarch64", + "product": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.aarch64", + "product_id": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-targeting-pack-6.0@6.0.23-1.el9_0?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.aarch64", + "product": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.aarch64", + "product_id": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-6.0@6.0.23-1.el9_0?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-0:6.0.23-1.el9_0.aarch64", + "product": { + "name": "dotnet-host-0:6.0.23-1.el9_0.aarch64", + "product_id": "dotnet-host-0:6.0.23-1.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host@6.0.23-1.el9_0?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.aarch64", + "product": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.aarch64", + "product_id": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-6.0@6.0.23-1.el9_0?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-6.0-0:6.0.23-1.el9_0.aarch64", + "product": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el9_0.aarch64", + "product_id": "dotnet-runtime-6.0-0:6.0.23-1.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-6.0@6.0.23-1.el9_0?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-0:6.0.123-1.el9_0.aarch64", + "product": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el9_0.aarch64", + "product_id": "dotnet-sdk-6.0-0:6.0.123-1.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0@6.0.123-1.el9_0?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.aarch64", + "product": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.aarch64", + "product_id": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-targeting-pack-6.0@6.0.23-1.el9_0?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-templates-6.0-0:6.0.123-1.el9_0.aarch64", + "product": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el9_0.aarch64", + "product_id": "dotnet-templates-6.0-0:6.0.123-1.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-templates-6.0@6.0.123-1.el9_0?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.aarch64", + "product": { + "name": "netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.aarch64", + "product_id": "netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/netstandard-targeting-pack-2.1@6.0.123-1.el9_0?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet6.0-debugsource-0:6.0.123-1.el9_0.aarch64", + "product": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el9_0.aarch64", + "product_id": "dotnet6.0-debugsource-0:6.0.123-1.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0-debugsource@6.0.123-1.el9_0?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64", + "product": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64", + "product_id": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-6.0-debuginfo@6.0.23-1.el9_0?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-debuginfo-0:6.0.23-1.el9_0.aarch64", + "product": { + "name": "dotnet-host-debuginfo-0:6.0.23-1.el9_0.aarch64", + "product_id": "dotnet-host-debuginfo-0:6.0.23-1.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host-debuginfo@6.0.23-1.el9_0?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64", + "product": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64", + "product_id": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-6.0-debuginfo@6.0.23-1.el9_0?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64", + "product": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64", + "product_id": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-6.0-debuginfo@6.0.23-1.el9_0?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.aarch64", + "product": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.aarch64", + "product_id": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0-debuginfo@6.0.123-1.el9_0?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el9_0.aarch64", + "product": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el9_0.aarch64", + "product_id": "dotnet6.0-debuginfo-0:6.0.123-1.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0-debuginfo@6.0.123-1.el9_0?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.aarch64", + "product": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.aarch64", + "product_id": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0-source-built-artifacts@6.0.123-1.el9_0?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.x86_64", + "product": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.x86_64", + "product_id": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-runtime-6.0@6.0.23-1.el9_0?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.x86_64", + "product": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.x86_64", + "product_id": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-targeting-pack-6.0@6.0.23-1.el9_0?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.x86_64", + "product": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.x86_64", + "product_id": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-6.0@6.0.23-1.el9_0?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-0:6.0.23-1.el9_0.x86_64", + "product": { + "name": "dotnet-host-0:6.0.23-1.el9_0.x86_64", + "product_id": "dotnet-host-0:6.0.23-1.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host@6.0.23-1.el9_0?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.x86_64", + "product": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.x86_64", + "product_id": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-6.0@6.0.23-1.el9_0?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-6.0-0:6.0.23-1.el9_0.x86_64", + "product": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el9_0.x86_64", + "product_id": "dotnet-runtime-6.0-0:6.0.23-1.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-6.0@6.0.23-1.el9_0?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-0:6.0.123-1.el9_0.x86_64", + "product": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el9_0.x86_64", + "product_id": "dotnet-sdk-6.0-0:6.0.123-1.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0@6.0.123-1.el9_0?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.x86_64", + "product": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.x86_64", + "product_id": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-targeting-pack-6.0@6.0.23-1.el9_0?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-templates-6.0-0:6.0.123-1.el9_0.x86_64", + "product": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el9_0.x86_64", + "product_id": "dotnet-templates-6.0-0:6.0.123-1.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-templates-6.0@6.0.123-1.el9_0?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.x86_64", + "product": { + "name": "netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.x86_64", + "product_id": "netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/netstandard-targeting-pack-2.1@6.0.123-1.el9_0?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet6.0-debugsource-0:6.0.123-1.el9_0.x86_64", + "product": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el9_0.x86_64", + "product_id": "dotnet6.0-debugsource-0:6.0.123-1.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0-debugsource@6.0.123-1.el9_0?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64", + "product": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64", + "product_id": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-6.0-debuginfo@6.0.23-1.el9_0?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-debuginfo-0:6.0.23-1.el9_0.x86_64", + "product": { + "name": "dotnet-host-debuginfo-0:6.0.23-1.el9_0.x86_64", + "product_id": "dotnet-host-debuginfo-0:6.0.23-1.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host-debuginfo@6.0.23-1.el9_0?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64", + "product": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64", + "product_id": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-6.0-debuginfo@6.0.23-1.el9_0?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64", + "product": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64", + "product_id": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-6.0-debuginfo@6.0.23-1.el9_0?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.x86_64", + "product": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.x86_64", + "product_id": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0-debuginfo@6.0.123-1.el9_0?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el9_0.x86_64", + "product": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el9_0.x86_64", + "product_id": "dotnet6.0-debuginfo-0:6.0.123-1.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0-debuginfo@6.0.123-1.el9_0?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.x86_64", + "product": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.x86_64", + "product_id": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0-source-built-artifacts@6.0.123-1.el9_0?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.s390x", + "product": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.s390x", + "product_id": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-runtime-6.0@6.0.23-1.el9_0?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.s390x", + "product": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.s390x", + "product_id": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-targeting-pack-6.0@6.0.23-1.el9_0?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.s390x", + "product": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.s390x", + "product_id": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-6.0@6.0.23-1.el9_0?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-0:6.0.23-1.el9_0.s390x", + "product": { + "name": "dotnet-host-0:6.0.23-1.el9_0.s390x", + "product_id": "dotnet-host-0:6.0.23-1.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host@6.0.23-1.el9_0?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.s390x", + "product": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.s390x", + "product_id": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-6.0@6.0.23-1.el9_0?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-6.0-0:6.0.23-1.el9_0.s390x", + "product": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el9_0.s390x", + "product_id": "dotnet-runtime-6.0-0:6.0.23-1.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-6.0@6.0.23-1.el9_0?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-0:6.0.123-1.el9_0.s390x", + "product": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el9_0.s390x", + "product_id": "dotnet-sdk-6.0-0:6.0.123-1.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0@6.0.123-1.el9_0?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.s390x", + "product": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.s390x", + "product_id": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-targeting-pack-6.0@6.0.23-1.el9_0?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-templates-6.0-0:6.0.123-1.el9_0.s390x", + "product": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el9_0.s390x", + "product_id": "dotnet-templates-6.0-0:6.0.123-1.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-templates-6.0@6.0.123-1.el9_0?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.s390x", + "product": { + "name": "netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.s390x", + "product_id": "netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/netstandard-targeting-pack-2.1@6.0.123-1.el9_0?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet6.0-debugsource-0:6.0.123-1.el9_0.s390x", + "product": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el9_0.s390x", + "product_id": "dotnet6.0-debugsource-0:6.0.123-1.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0-debugsource@6.0.123-1.el9_0?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.s390x", + "product": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.s390x", + "product_id": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-6.0-debuginfo@6.0.23-1.el9_0?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-debuginfo-0:6.0.23-1.el9_0.s390x", + "product": { + "name": "dotnet-host-debuginfo-0:6.0.23-1.el9_0.s390x", + "product_id": "dotnet-host-debuginfo-0:6.0.23-1.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host-debuginfo@6.0.23-1.el9_0?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.s390x", + "product": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.s390x", + "product_id": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-6.0-debuginfo@6.0.23-1.el9_0?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.s390x", + "product": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.s390x", + "product_id": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-6.0-debuginfo@6.0.23-1.el9_0?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.s390x", + "product": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.s390x", + "product_id": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0-debuginfo@6.0.123-1.el9_0?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el9_0.s390x", + "product": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el9_0.s390x", + "product_id": "dotnet6.0-debuginfo-0:6.0.123-1.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0-debuginfo@6.0.123-1.el9_0?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.s390x", + "product": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.s390x", + "product_id": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0-source-built-artifacts@6.0.123-1.el9_0?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "dotnet6.0-0:6.0.123-1.el9_0.src", + "product": { + "name": "dotnet6.0-0:6.0.123-1.el9_0.src", + "product_id": "dotnet6.0-0:6.0.123-1.el9_0.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0@6.0.123-1.el9_0?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.aarch64", + "product": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.aarch64", + "product_id": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0-source-built-artifacts@6.0.123-1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet6.0-debugsource-0:6.0.123-1.el8_6.aarch64", + "product": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el8_6.aarch64", + "product_id": "dotnet6.0-debugsource-0:6.0.123-1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0-debugsource@6.0.123-1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64", + "product": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64", + "product_id": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-6.0-debuginfo@6.0.23-1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-debuginfo-0:6.0.23-1.el8_6.aarch64", + "product": { + "name": "dotnet-host-debuginfo-0:6.0.23-1.el8_6.aarch64", + "product_id": "dotnet-host-debuginfo-0:6.0.23-1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host-debuginfo@6.0.23-1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64", + "product": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64", + "product_id": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-6.0-debuginfo@6.0.23-1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64", + "product": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64", + "product_id": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-6.0-debuginfo@6.0.23-1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.aarch64", + "product": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.aarch64", + "product_id": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0-debuginfo@6.0.123-1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el8_6.aarch64", + "product": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el8_6.aarch64", + "product_id": "dotnet6.0-debuginfo-0:6.0.123-1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0-debuginfo@6.0.123-1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.aarch64", + "product": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.aarch64", + "product_id": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-runtime-6.0@6.0.23-1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.aarch64", + "product": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.aarch64", + "product_id": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-targeting-pack-6.0@6.0.23-1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-0:6.0.123-1.el8_6.aarch64", + "product": { + "name": "dotnet-0:6.0.123-1.el8_6.aarch64", + "product_id": "dotnet-0:6.0.123-1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet@6.0.123-1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.aarch64", + "product": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.aarch64", + "product_id": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-6.0@6.0.23-1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-0:6.0.23-1.el8_6.aarch64", + "product": { + "name": "dotnet-host-0:6.0.23-1.el8_6.aarch64", + "product_id": "dotnet-host-0:6.0.23-1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host@6.0.23-1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.aarch64", + "product": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.aarch64", + "product_id": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-6.0@6.0.23-1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-6.0-0:6.0.23-1.el8_6.aarch64", + "product": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el8_6.aarch64", + "product_id": "dotnet-runtime-6.0-0:6.0.23-1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-6.0@6.0.23-1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-0:6.0.123-1.el8_6.aarch64", + "product": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el8_6.aarch64", + "product_id": "dotnet-sdk-6.0-0:6.0.123-1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0@6.0.123-1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.aarch64", + "product": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.aarch64", + "product_id": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-targeting-pack-6.0@6.0.23-1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-templates-6.0-0:6.0.123-1.el8_6.aarch64", + "product": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el8_6.aarch64", + "product_id": "dotnet-templates-6.0-0:6.0.123-1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-templates-6.0@6.0.123-1.el8_6?arch=aarch64" + } + } + }, + { + "category": "product_version", + "name": "netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.aarch64", + "product": { + "name": "netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.aarch64", + "product_id": "netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/netstandard-targeting-pack-2.1@6.0.123-1.el8_6?arch=aarch64" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.x86_64", + "product": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.x86_64", + "product_id": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0-source-built-artifacts@6.0.123-1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet6.0-debugsource-0:6.0.123-1.el8_6.x86_64", + "product": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el8_6.x86_64", + "product_id": "dotnet6.0-debugsource-0:6.0.123-1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0-debugsource@6.0.123-1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64", + "product": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64", + "product_id": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-6.0-debuginfo@6.0.23-1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-debuginfo-0:6.0.23-1.el8_6.x86_64", + "product": { + "name": "dotnet-host-debuginfo-0:6.0.23-1.el8_6.x86_64", + "product_id": "dotnet-host-debuginfo-0:6.0.23-1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host-debuginfo@6.0.23-1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64", + "product": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64", + "product_id": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-6.0-debuginfo@6.0.23-1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64", + "product": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64", + "product_id": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-6.0-debuginfo@6.0.23-1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.x86_64", + "product": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.x86_64", + "product_id": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0-debuginfo@6.0.123-1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el8_6.x86_64", + "product": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el8_6.x86_64", + "product_id": "dotnet6.0-debuginfo-0:6.0.123-1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0-debuginfo@6.0.123-1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.x86_64", + "product": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.x86_64", + "product_id": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-runtime-6.0@6.0.23-1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.x86_64", + "product": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.x86_64", + "product_id": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-targeting-pack-6.0@6.0.23-1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-0:6.0.123-1.el8_6.x86_64", + "product": { + "name": "dotnet-0:6.0.123-1.el8_6.x86_64", + "product_id": "dotnet-0:6.0.123-1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet@6.0.123-1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.x86_64", + "product": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.x86_64", + "product_id": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-6.0@6.0.23-1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-0:6.0.23-1.el8_6.x86_64", + "product": { + "name": "dotnet-host-0:6.0.23-1.el8_6.x86_64", + "product_id": "dotnet-host-0:6.0.23-1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host@6.0.23-1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.x86_64", + "product": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.x86_64", + "product_id": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-6.0@6.0.23-1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-6.0-0:6.0.23-1.el8_6.x86_64", + "product": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el8_6.x86_64", + "product_id": "dotnet-runtime-6.0-0:6.0.23-1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-6.0@6.0.23-1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-0:6.0.123-1.el8_6.x86_64", + "product": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el8_6.x86_64", + "product_id": "dotnet-sdk-6.0-0:6.0.123-1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0@6.0.123-1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.x86_64", + "product": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.x86_64", + "product_id": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-targeting-pack-6.0@6.0.23-1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dotnet-templates-6.0-0:6.0.123-1.el8_6.x86_64", + "product": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el8_6.x86_64", + "product_id": "dotnet-templates-6.0-0:6.0.123-1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-templates-6.0@6.0.123-1.el8_6?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.x86_64", + "product": { + "name": "netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.x86_64", + "product_id": "netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/netstandard-targeting-pack-2.1@6.0.123-1.el8_6?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.s390x", + "product": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.s390x", + "product_id": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0-source-built-artifacts@6.0.123-1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet6.0-debugsource-0:6.0.123-1.el8_6.s390x", + "product": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el8_6.s390x", + "product_id": "dotnet6.0-debugsource-0:6.0.123-1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0-debugsource@6.0.123-1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.s390x", + "product": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.s390x", + "product_id": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-6.0-debuginfo@6.0.23-1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-debuginfo-0:6.0.23-1.el8_6.s390x", + "product": { + "name": "dotnet-host-debuginfo-0:6.0.23-1.el8_6.s390x", + "product_id": "dotnet-host-debuginfo-0:6.0.23-1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host-debuginfo@6.0.23-1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.s390x", + "product": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.s390x", + "product_id": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-6.0-debuginfo@6.0.23-1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.s390x", + "product": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.s390x", + "product_id": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-6.0-debuginfo@6.0.23-1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.s390x", + "product": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.s390x", + "product_id": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0-debuginfo@6.0.123-1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el8_6.s390x", + "product": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el8_6.s390x", + "product_id": "dotnet6.0-debuginfo-0:6.0.123-1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0-debuginfo@6.0.123-1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.s390x", + "product": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.s390x", + "product_id": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-runtime-6.0@6.0.23-1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.s390x", + "product": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.s390x", + "product_id": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/aspnetcore-targeting-pack-6.0@6.0.23-1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-0:6.0.123-1.el8_6.s390x", + "product": { + "name": "dotnet-0:6.0.123-1.el8_6.s390x", + "product_id": "dotnet-0:6.0.123-1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet@6.0.123-1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.s390x", + "product": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.s390x", + "product_id": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-apphost-pack-6.0@6.0.23-1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-host-0:6.0.23-1.el8_6.s390x", + "product": { + "name": "dotnet-host-0:6.0.23-1.el8_6.s390x", + "product_id": "dotnet-host-0:6.0.23-1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-host@6.0.23-1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.s390x", + "product": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.s390x", + "product_id": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-hostfxr-6.0@6.0.23-1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-runtime-6.0-0:6.0.23-1.el8_6.s390x", + "product": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el8_6.s390x", + "product_id": "dotnet-runtime-6.0-0:6.0.23-1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-runtime-6.0@6.0.23-1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-sdk-6.0-0:6.0.123-1.el8_6.s390x", + "product": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el8_6.s390x", + "product_id": "dotnet-sdk-6.0-0:6.0.123-1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-sdk-6.0@6.0.123-1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.s390x", + "product": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.s390x", + "product_id": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-targeting-pack-6.0@6.0.23-1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "dotnet-templates-6.0-0:6.0.123-1.el8_6.s390x", + "product": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el8_6.s390x", + "product_id": "dotnet-templates-6.0-0:6.0.123-1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet-templates-6.0@6.0.123-1.el8_6?arch=s390x" + } + } + }, + { + "category": "product_version", + "name": "netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.s390x", + "product": { + "name": "netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.s390x", + "product_id": "netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/netstandard-targeting-pack-2.1@6.0.123-1.el8_6?arch=s390x" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "dotnet6.0-0:6.0.123-1.el8_6.src", + "product": { + "name": "dotnet6.0-0:6.0.123-1.el8_6.src", + "product_id": "dotnet6.0-0:6.0.123-1.el8_6.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dotnet6.0@6.0.123-1.el8_6?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rh-dotnet60-aspnetcore-runtime-6.0-0:6.0.23-1.el7_9.x86_64", + "product": { + "name": "rh-dotnet60-aspnetcore-runtime-6.0-0:6.0.23-1.el7_9.x86_64", + "product_id": "rh-dotnet60-aspnetcore-runtime-6.0-0:6.0.23-1.el7_9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-dotnet60-aspnetcore-runtime-6.0@6.0.23-1.el7_9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rh-dotnet60-aspnetcore-targeting-pack-6.0-0:6.0.23-1.el7_9.x86_64", + "product": { + "name": "rh-dotnet60-aspnetcore-targeting-pack-6.0-0:6.0.23-1.el7_9.x86_64", + "product_id": "rh-dotnet60-aspnetcore-targeting-pack-6.0-0:6.0.23-1.el7_9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-dotnet60-aspnetcore-targeting-pack-6.0@6.0.23-1.el7_9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rh-dotnet60-dotnet-0:6.0.123-1.el7_9.x86_64", + "product": { + "name": "rh-dotnet60-dotnet-0:6.0.123-1.el7_9.x86_64", + "product_id": "rh-dotnet60-dotnet-0:6.0.123-1.el7_9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-dotnet60-dotnet@6.0.123-1.el7_9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rh-dotnet60-dotnet-apphost-pack-6.0-0:6.0.23-1.el7_9.x86_64", + "product": { + "name": "rh-dotnet60-dotnet-apphost-pack-6.0-0:6.0.23-1.el7_9.x86_64", + "product_id": "rh-dotnet60-dotnet-apphost-pack-6.0-0:6.0.23-1.el7_9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-dotnet60-dotnet-apphost-pack-6.0@6.0.23-1.el7_9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rh-dotnet60-dotnet-host-0:6.0.23-1.el7_9.x86_64", + "product": { + "name": "rh-dotnet60-dotnet-host-0:6.0.23-1.el7_9.x86_64", + "product_id": "rh-dotnet60-dotnet-host-0:6.0.23-1.el7_9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-dotnet60-dotnet-host@6.0.23-1.el7_9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rh-dotnet60-dotnet-hostfxr-6.0-0:6.0.23-1.el7_9.x86_64", + "product": { + "name": "rh-dotnet60-dotnet-hostfxr-6.0-0:6.0.23-1.el7_9.x86_64", + "product_id": "rh-dotnet60-dotnet-hostfxr-6.0-0:6.0.23-1.el7_9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-dotnet60-dotnet-hostfxr-6.0@6.0.23-1.el7_9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rh-dotnet60-dotnet-runtime-6.0-0:6.0.23-1.el7_9.x86_64", + "product": { + "name": "rh-dotnet60-dotnet-runtime-6.0-0:6.0.23-1.el7_9.x86_64", + "product_id": "rh-dotnet60-dotnet-runtime-6.0-0:6.0.23-1.el7_9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-dotnet60-dotnet-runtime-6.0@6.0.23-1.el7_9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rh-dotnet60-dotnet-sdk-6.0-0:6.0.123-1.el7_9.x86_64", + "product": { + "name": "rh-dotnet60-dotnet-sdk-6.0-0:6.0.123-1.el7_9.x86_64", + "product_id": "rh-dotnet60-dotnet-sdk-6.0-0:6.0.123-1.el7_9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-dotnet60-dotnet-sdk-6.0@6.0.123-1.el7_9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rh-dotnet60-dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el7_9.x86_64", + "product": { + "name": "rh-dotnet60-dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el7_9.x86_64", + "product_id": "rh-dotnet60-dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el7_9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-dotnet60-dotnet-sdk-6.0-source-built-artifacts@6.0.123-1.el7_9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rh-dotnet60-dotnet-targeting-pack-6.0-0:6.0.23-1.el7_9.x86_64", + "product": { + "name": "rh-dotnet60-dotnet-targeting-pack-6.0-0:6.0.23-1.el7_9.x86_64", + "product_id": "rh-dotnet60-dotnet-targeting-pack-6.0-0:6.0.23-1.el7_9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-dotnet60-dotnet-targeting-pack-6.0@6.0.23-1.el7_9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rh-dotnet60-dotnet-templates-6.0-0:6.0.123-1.el7_9.x86_64", + "product": { + "name": "rh-dotnet60-dotnet-templates-6.0-0:6.0.123-1.el7_9.x86_64", + "product_id": "rh-dotnet60-dotnet-templates-6.0-0:6.0.123-1.el7_9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-dotnet60-dotnet-templates-6.0@6.0.123-1.el7_9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rh-dotnet60-netstandard-targeting-pack-2.1-0:6.0.123-1.el7_9.x86_64", + "product": { + "name": "rh-dotnet60-netstandard-targeting-pack-2.1-0:6.0.123-1.el7_9.x86_64", + "product_id": "rh-dotnet60-netstandard-targeting-pack-2.1-0:6.0.123-1.el7_9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-dotnet60-netstandard-targeting-pack-2.1@6.0.123-1.el7_9?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rh-dotnet60-dotnet-debuginfo-0:6.0.123-1.el7_9.x86_64", + "product": { + "name": "rh-dotnet60-dotnet-debuginfo-0:6.0.123-1.el7_9.x86_64", + "product_id": "rh-dotnet60-dotnet-debuginfo-0:6.0.123-1.el7_9.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-dotnet60-dotnet-debuginfo@6.0.123-1.el7_9?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "rh-dotnet60-dotnet-0:6.0.123-1.el7_9.src", + "product": { + "name": "rh-dotnet60-dotnet-0:6.0.123-1.el7_9.src", + "product_id": "rh-dotnet60-dotnet-0:6.0.123-1.el7_9.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rh-dotnet60-dotnet@6.0.123-1.el7_9?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product": { + "name": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_id": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product": { + "name": "nginx-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_id": "nginx-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debuginfo@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debugsource-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product": { + "name": "nginx-debugsource-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_id": "nginx-debugsource-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debugsource@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-devel-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product": { + "name": "nginx-mod-devel-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_id": "nginx-mod-devel-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-devel@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product": { + "name": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_id": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_id": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter-debuginfo@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product": { + "name": "nginx-mod-http-perl-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_id": "nginx-mod-http-perl-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_id": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl-debuginfo@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_id": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_id": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter-debuginfo@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product": { + "name": "nginx-mod-mail-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_id": "nginx-mod-mail-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_id": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail-debuginfo@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product": { + "name": "nginx-mod-stream-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_id": "nginx-mod-stream-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_id": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream-debuginfo@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=aarch64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.src", + "product": { + "name": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.src", + "product_id": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=src&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-all-modules-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.noarch", + "product": { + "name": "nginx-all-modules-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.noarch", + "product_id": "nginx-all-modules-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-all-modules@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-filesystem-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.noarch", + "product": { + "name": "nginx-filesystem-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.noarch", + "product_id": "nginx-filesystem-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-filesystem@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=noarch&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product": { + "name": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_id": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product": { + "name": "nginx-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_id": "nginx-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debuginfo@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debugsource-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product": { + "name": "nginx-debugsource-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_id": "nginx-debugsource-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debugsource@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-devel-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product": { + "name": "nginx-mod-devel-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_id": "nginx-mod-devel-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-devel@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product": { + "name": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_id": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_id": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter-debuginfo@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product": { + "name": "nginx-mod-http-perl-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_id": "nginx-mod-http-perl-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_id": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl-debuginfo@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_id": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_id": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter-debuginfo@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product": { + "name": "nginx-mod-mail-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_id": "nginx-mod-mail-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_id": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail-debuginfo@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product": { + "name": "nginx-mod-stream-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_id": "nginx-mod-stream-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_id": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream-debuginfo@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=ppc64le&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product": { + "name": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_id": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product": { + "name": "nginx-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_id": "nginx-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debuginfo@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debugsource-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product": { + "name": "nginx-debugsource-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_id": "nginx-debugsource-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debugsource@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-devel-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product": { + "name": "nginx-mod-devel-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_id": "nginx-mod-devel-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-devel@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product": { + "name": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_id": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_id": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter-debuginfo@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product": { + "name": "nginx-mod-http-perl-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_id": "nginx-mod-http-perl-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_id": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl-debuginfo@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_id": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_id": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter-debuginfo@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product": { + "name": "nginx-mod-mail-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_id": "nginx-mod-mail-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_id": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail-debuginfo@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product": { + "name": "nginx-mod-stream-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_id": "nginx-mod-stream-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_id": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream-debuginfo@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=s390x&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product": { + "name": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_id": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product": { + "name": "nginx-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_id": "nginx-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debuginfo@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debugsource-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product": { + "name": "nginx-debugsource-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_id": "nginx-debugsource-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debugsource@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-devel-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product": { + "name": "nginx-mod-devel-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_id": "nginx-mod-devel-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-devel@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product": { + "name": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_id": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_id": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter-debuginfo@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product": { + "name": "nginx-mod-http-perl-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_id": "nginx-mod-http-perl-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_id": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl-debuginfo@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_id": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_id": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter-debuginfo@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product": { + "name": "nginx-mod-mail-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_id": "nginx-mod-mail-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_id": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail-debuginfo@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product": { + "name": "nginx-mod-stream-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_id": "nginx-mod-stream-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_id": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream-debuginfo@1.20.1-1.module%2Bel8.6.0%2B20350%2B58c16214.1?arch=x86_64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product": { + "name": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_id": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product": { + "name": "nginx-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_id": "nginx-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debuginfo@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debugsource-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product": { + "name": "nginx-debugsource-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_id": "nginx-debugsource-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debugsource@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-devel-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product": { + "name": "nginx-mod-devel-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_id": "nginx-mod-devel-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-devel@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product": { + "name": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_id": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_id": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter-debuginfo@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product": { + "name": "nginx-mod-http-perl-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_id": "nginx-mod-http-perl-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_id": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl-debuginfo@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_id": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_id": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter-debuginfo@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product": { + "name": "nginx-mod-mail-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_id": "nginx-mod-mail-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_id": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail-debuginfo@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product": { + "name": "nginx-mod-stream-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_id": "nginx-mod-stream-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=aarch64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_id": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream-debuginfo@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=aarch64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "aarch64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.src", + "product": { + "name": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.src", + "product_id": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=src&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-all-modules-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.noarch", + "product": { + "name": "nginx-all-modules-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.noarch", + "product_id": "nginx-all-modules-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-all-modules@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-filesystem-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.noarch", + "product": { + "name": "nginx-filesystem-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.noarch", + "product_id": "nginx-filesystem-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-filesystem@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=noarch&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product": { + "name": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_id": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product": { + "name": "nginx-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_id": "nginx-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debuginfo@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debugsource-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product": { + "name": "nginx-debugsource-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_id": "nginx-debugsource-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debugsource@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-devel-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product": { + "name": "nginx-mod-devel-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_id": "nginx-mod-devel-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-devel@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product": { + "name": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_id": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_id": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter-debuginfo@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product": { + "name": "nginx-mod-http-perl-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_id": "nginx-mod-http-perl-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_id": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl-debuginfo@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_id": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_id": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter-debuginfo@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product": { + "name": "nginx-mod-mail-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_id": "nginx-mod-mail-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_id": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail-debuginfo@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product": { + "name": "nginx-mod-stream-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_id": "nginx-mod-stream-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=ppc64le&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_id": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream-debuginfo@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=ppc64le&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "ppc64le" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product": { + "name": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_id": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product": { + "name": "nginx-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_id": "nginx-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debuginfo@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debugsource-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product": { + "name": "nginx-debugsource-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_id": "nginx-debugsource-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debugsource@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-devel-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product": { + "name": "nginx-mod-devel-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_id": "nginx-mod-devel-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-devel@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product": { + "name": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_id": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_id": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter-debuginfo@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product": { + "name": "nginx-mod-http-perl-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_id": "nginx-mod-http-perl-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_id": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl-debuginfo@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_id": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_id": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter-debuginfo@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product": { + "name": "nginx-mod-mail-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_id": "nginx-mod-mail-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_id": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail-debuginfo@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product": { + "name": "nginx-mod-stream-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_id": "nginx-mod-stream-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=s390x&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_id": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream-debuginfo@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=s390x&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "s390x" + }, + { + "branches": [ + { + "category": "product_version", + "name": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product": { + "name": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_id": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product": { + "name": "nginx-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_id": "nginx-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debuginfo@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-debugsource-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product": { + "name": "nginx-debugsource-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_id": "nginx-debugsource-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-debugsource@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-devel-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product": { + "name": "nginx-mod-devel-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_id": "nginx-mod-devel-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-devel@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product": { + "name": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_id": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_id": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-image-filter-debuginfo@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product": { + "name": "nginx-mod-http-perl-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_id": "nginx-mod-http-perl-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_id": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-perl-debuginfo@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_id": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_id": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-http-xslt-filter-debuginfo@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product": { + "name": "nginx-mod-mail-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_id": "nginx-mod-mail-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_id": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-mail-debuginfo@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product": { + "name": "nginx-mod-stream-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_id": "nginx-mod-stream-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=x86_64&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_id": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/nginx-mod-stream-debuginfo@1.20.1-1.module%2Bel8.8.0%2B20359%2B9bd89172.1?arch=x86_64&epoch=1" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + } + ], + "category": "vendor", + "name": "Red Hat" + } + ], + "relationships": [ + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el6sat.i686 as a component of Satellite Client 6 for RHEL 6", + "product_id": "6Server-satellite-client-6:puppet-agent-0:7.26.0-3.el6sat.i686" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el6sat.i686", + "relates_to_product_reference": "6Server-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el6sat.src as a component of Satellite Client 6 for RHEL 6", + "product_id": "6Server-satellite-client-6:puppet-agent-0:7.26.0-3.el6sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el6sat.src", + "relates_to_product_reference": "6Server-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el6sat.x86_64 as a component of Satellite Client 6 for RHEL 6", + "product_id": "6Server-satellite-client-6:puppet-agent-0:7.26.0-3.el6sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el6sat.x86_64", + "relates_to_product_reference": "6Server-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhc-worker-script-0:0.5-1.el7_9.src as a component of Red Hat Enterprise Linux Client (v. 7)", + "product_id": "7Client-7.9.Z:rhc-worker-script-0:0.5-1.el7_9.src" + }, + "product_reference": "rhc-worker-script-0:0.5-1.el7_9.src", + "relates_to_product_reference": "7Client-7.9.Z" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhc-worker-script-0:0.5-1.el7_9.x86_64 as a component of Red Hat Enterprise Linux Client (v. 7)", + "product_id": "7Client-7.9.Z:rhc-worker-script-0:0.5-1.el7_9.x86_64" + }, + "product_reference": "rhc-worker-script-0:0.5-1.el7_9.x86_64", + "relates_to_product_reference": "7Client-7.9.Z" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman_ygg_worker-0:0.2.2-1.el7sat.ppc64le as a component of Satellite Client 6 for RHEL 7", + "product_id": "7Client-satellite-client-6:foreman_ygg_worker-0:0.2.2-1.el7sat.ppc64le" + }, + "product_reference": "foreman_ygg_worker-0:0.2.2-1.el7sat.ppc64le", + "relates_to_product_reference": "7Client-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman_ygg_worker-0:0.2.2-1.el7sat.src as a component of Satellite Client 6 for RHEL 7", + "product_id": "7Client-satellite-client-6:foreman_ygg_worker-0:0.2.2-1.el7sat.src" + }, + "product_reference": "foreman_ygg_worker-0:0.2.2-1.el7sat.src", + "relates_to_product_reference": "7Client-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman_ygg_worker-0:0.2.2-1.el7sat.x86_64 as a component of Satellite Client 6 for RHEL 7", + "product_id": "7Client-satellite-client-6:foreman_ygg_worker-0:0.2.2-1.el7sat.x86_64" + }, + "product_reference": "foreman_ygg_worker-0:0.2.2-1.el7sat.x86_64", + "relates_to_product_reference": "7Client-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el7sat.src as a component of Satellite Client 6 for RHEL 7", + "product_id": "7Client-satellite-client-6:puppet-agent-0:7.26.0-3.el7sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el7sat.src", + "relates_to_product_reference": "7Client-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el7sat.x86_64 as a component of Satellite Client 6 for RHEL 7", + "product_id": "7Client-satellite-client-6:puppet-agent-0:7.26.0-3.el7sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el7sat.x86_64", + "relates_to_product_reference": "7Client-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-0:0.2.3-1.el7sat.ppc64le as a component of Satellite Client 6 for RHEL 7", + "product_id": "7Client-satellite-client-6:yggdrasil-0:0.2.3-1.el7sat.ppc64le" + }, + "product_reference": "yggdrasil-0:0.2.3-1.el7sat.ppc64le", + "relates_to_product_reference": "7Client-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-0:0.2.3-1.el7sat.src as a component of Satellite Client 6 for RHEL 7", + "product_id": "7Client-satellite-client-6:yggdrasil-0:0.2.3-1.el7sat.src" + }, + "product_reference": "yggdrasil-0:0.2.3-1.el7sat.src", + "relates_to_product_reference": "7Client-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-0:0.2.3-1.el7sat.x86_64 as a component of Satellite Client 6 for RHEL 7", + "product_id": "7Client-satellite-client-6:yggdrasil-0:0.2.3-1.el7sat.x86_64" + }, + "product_reference": "yggdrasil-0:0.2.3-1.el7sat.x86_64", + "relates_to_product_reference": "7Client-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhc-worker-script-0:0.5-1.el7_9.src as a component of Red Hat Enterprise Linux ComputeNode (v. 7)", + "product_id": "7ComputeNode-7.9.Z:rhc-worker-script-0:0.5-1.el7_9.src" + }, + "product_reference": "rhc-worker-script-0:0.5-1.el7_9.src", + "relates_to_product_reference": "7ComputeNode-7.9.Z" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhc-worker-script-0:0.5-1.el7_9.x86_64 as a component of Red Hat Enterprise Linux ComputeNode (v. 7)", + "product_id": "7ComputeNode-7.9.Z:rhc-worker-script-0:0.5-1.el7_9.x86_64" + }, + "product_reference": "rhc-worker-script-0:0.5-1.el7_9.x86_64", + "relates_to_product_reference": "7ComputeNode-7.9.Z" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-aspnetcore-runtime-6.0-0:6.0.23-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux ComputeNode (v. 7)", + "product_id": "7ComputeNode-dotNET-6.0:rh-dotnet60-aspnetcore-runtime-6.0-0:6.0.23-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-aspnetcore-runtime-6.0-0:6.0.23-1.el7_9.x86_64", + "relates_to_product_reference": "7ComputeNode-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-aspnetcore-targeting-pack-6.0-0:6.0.23-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux ComputeNode (v. 7)", + "product_id": "7ComputeNode-dotNET-6.0:rh-dotnet60-aspnetcore-targeting-pack-6.0-0:6.0.23-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-aspnetcore-targeting-pack-6.0-0:6.0.23-1.el7_9.x86_64", + "relates_to_product_reference": "7ComputeNode-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-0:6.0.123-1.el7_9.src as a component of .NET Core on Red Hat Enterprise Linux ComputeNode (v. 7)", + "product_id": "7ComputeNode-dotNET-6.0:rh-dotnet60-dotnet-0:6.0.123-1.el7_9.src" + }, + "product_reference": "rh-dotnet60-dotnet-0:6.0.123-1.el7_9.src", + "relates_to_product_reference": "7ComputeNode-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-0:6.0.123-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux ComputeNode (v. 7)", + "product_id": "7ComputeNode-dotNET-6.0:rh-dotnet60-dotnet-0:6.0.123-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-0:6.0.123-1.el7_9.x86_64", + "relates_to_product_reference": "7ComputeNode-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-apphost-pack-6.0-0:6.0.23-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux ComputeNode (v. 7)", + "product_id": "7ComputeNode-dotNET-6.0:rh-dotnet60-dotnet-apphost-pack-6.0-0:6.0.23-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-apphost-pack-6.0-0:6.0.23-1.el7_9.x86_64", + "relates_to_product_reference": "7ComputeNode-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-debuginfo-0:6.0.123-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux ComputeNode (v. 7)", + "product_id": "7ComputeNode-dotNET-6.0:rh-dotnet60-dotnet-debuginfo-0:6.0.123-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-debuginfo-0:6.0.123-1.el7_9.x86_64", + "relates_to_product_reference": "7ComputeNode-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-host-0:6.0.23-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux ComputeNode (v. 7)", + "product_id": "7ComputeNode-dotNET-6.0:rh-dotnet60-dotnet-host-0:6.0.23-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-host-0:6.0.23-1.el7_9.x86_64", + "relates_to_product_reference": "7ComputeNode-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-hostfxr-6.0-0:6.0.23-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux ComputeNode (v. 7)", + "product_id": "7ComputeNode-dotNET-6.0:rh-dotnet60-dotnet-hostfxr-6.0-0:6.0.23-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-hostfxr-6.0-0:6.0.23-1.el7_9.x86_64", + "relates_to_product_reference": "7ComputeNode-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-runtime-6.0-0:6.0.23-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux ComputeNode (v. 7)", + "product_id": "7ComputeNode-dotNET-6.0:rh-dotnet60-dotnet-runtime-6.0-0:6.0.23-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-runtime-6.0-0:6.0.23-1.el7_9.x86_64", + "relates_to_product_reference": "7ComputeNode-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-sdk-6.0-0:6.0.123-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux ComputeNode (v. 7)", + "product_id": "7ComputeNode-dotNET-6.0:rh-dotnet60-dotnet-sdk-6.0-0:6.0.123-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-sdk-6.0-0:6.0.123-1.el7_9.x86_64", + "relates_to_product_reference": "7ComputeNode-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux ComputeNode (v. 7)", + "product_id": "7ComputeNode-dotNET-6.0:rh-dotnet60-dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el7_9.x86_64", + "relates_to_product_reference": "7ComputeNode-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-targeting-pack-6.0-0:6.0.23-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux ComputeNode (v. 7)", + "product_id": "7ComputeNode-dotNET-6.0:rh-dotnet60-dotnet-targeting-pack-6.0-0:6.0.23-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-targeting-pack-6.0-0:6.0.23-1.el7_9.x86_64", + "relates_to_product_reference": "7ComputeNode-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-templates-6.0-0:6.0.123-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux ComputeNode (v. 7)", + "product_id": "7ComputeNode-dotNET-6.0:rh-dotnet60-dotnet-templates-6.0-0:6.0.123-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-templates-6.0-0:6.0.123-1.el7_9.x86_64", + "relates_to_product_reference": "7ComputeNode-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-netstandard-targeting-pack-2.1-0:6.0.123-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux ComputeNode (v. 7)", + "product_id": "7ComputeNode-dotNET-6.0:rh-dotnet60-netstandard-targeting-pack-2.1-0:6.0.123-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-netstandard-targeting-pack-2.1-0:6.0.123-1.el7_9.x86_64", + "relates_to_product_reference": "7ComputeNode-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman_ygg_worker-0:0.2.2-1.el7sat.ppc64le as a component of Satellite Client 6 for RHEL 7", + "product_id": "7ComputeNode-satellite-client-6:foreman_ygg_worker-0:0.2.2-1.el7sat.ppc64le" + }, + "product_reference": "foreman_ygg_worker-0:0.2.2-1.el7sat.ppc64le", + "relates_to_product_reference": "7ComputeNode-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman_ygg_worker-0:0.2.2-1.el7sat.src as a component of Satellite Client 6 for RHEL 7", + "product_id": "7ComputeNode-satellite-client-6:foreman_ygg_worker-0:0.2.2-1.el7sat.src" + }, + "product_reference": "foreman_ygg_worker-0:0.2.2-1.el7sat.src", + "relates_to_product_reference": "7ComputeNode-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman_ygg_worker-0:0.2.2-1.el7sat.x86_64 as a component of Satellite Client 6 for RHEL 7", + "product_id": "7ComputeNode-satellite-client-6:foreman_ygg_worker-0:0.2.2-1.el7sat.x86_64" + }, + "product_reference": "foreman_ygg_worker-0:0.2.2-1.el7sat.x86_64", + "relates_to_product_reference": "7ComputeNode-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el7sat.src as a component of Satellite Client 6 for RHEL 7", + "product_id": "7ComputeNode-satellite-client-6:puppet-agent-0:7.26.0-3.el7sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el7sat.src", + "relates_to_product_reference": "7ComputeNode-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el7sat.x86_64 as a component of Satellite Client 6 for RHEL 7", + "product_id": "7ComputeNode-satellite-client-6:puppet-agent-0:7.26.0-3.el7sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el7sat.x86_64", + "relates_to_product_reference": "7ComputeNode-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-0:0.2.3-1.el7sat.ppc64le as a component of Satellite Client 6 for RHEL 7", + "product_id": "7ComputeNode-satellite-client-6:yggdrasil-0:0.2.3-1.el7sat.ppc64le" + }, + "product_reference": "yggdrasil-0:0.2.3-1.el7sat.ppc64le", + "relates_to_product_reference": "7ComputeNode-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-0:0.2.3-1.el7sat.src as a component of Satellite Client 6 for RHEL 7", + "product_id": "7ComputeNode-satellite-client-6:yggdrasil-0:0.2.3-1.el7sat.src" + }, + "product_reference": "yggdrasil-0:0.2.3-1.el7sat.src", + "relates_to_product_reference": "7ComputeNode-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-0:0.2.3-1.el7sat.x86_64 as a component of Satellite Client 6 for RHEL 7", + "product_id": "7ComputeNode-satellite-client-6:yggdrasil-0:0.2.3-1.el7sat.x86_64" + }, + "product_reference": "yggdrasil-0:0.2.3-1.el7sat.x86_64", + "relates_to_product_reference": "7ComputeNode-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhc-worker-script-0:0.5-1.el7_9.src as a component of Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-7.9.Z:rhc-worker-script-0:0.5-1.el7_9.src" + }, + "product_reference": "rhc-worker-script-0:0.5-1.el7_9.src", + "relates_to_product_reference": "7Server-7.9.Z" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhc-worker-script-0:0.5-1.el7_9.x86_64 as a component of Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-7.9.Z:rhc-worker-script-0:0.5-1.el7_9.x86_64" + }, + "product_reference": "rhc-worker-script-0:0.5-1.el7_9.x86_64", + "relates_to_product_reference": "7Server-7.9.Z" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-0:1.19.13-1.el7_9.ppc64le as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-0:1.19.13-1.el7_9.ppc64le" + }, + "product_reference": "go-toolset-1.19-0:1.19.13-1.el7_9.ppc64le", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-0:1.19.13-1.el7_9.s390x as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-0:1.19.13-1.el7_9.s390x" + }, + "product_reference": "go-toolset-1.19-0:1.19.13-1.el7_9.s390x", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-0:1.19.13-1.el7_9.src as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-0:1.19.13-1.el7_9.src" + }, + "product_reference": "go-toolset-1.19-0:1.19.13-1.el7_9.src", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-0:1.19.13-1.el7_9.x86_64 as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-0:1.19.13-1.el7_9.x86_64" + }, + "product_reference": "go-toolset-1.19-0:1.19.13-1.el7_9.x86_64", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-build-0:1.19.13-1.el7_9.ppc64le as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-build-0:1.19.13-1.el7_9.ppc64le" + }, + "product_reference": "go-toolset-1.19-build-0:1.19.13-1.el7_9.ppc64le", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-build-0:1.19.13-1.el7_9.s390x as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-build-0:1.19.13-1.el7_9.s390x" + }, + "product_reference": "go-toolset-1.19-build-0:1.19.13-1.el7_9.s390x", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-build-0:1.19.13-1.el7_9.x86_64 as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-build-0:1.19.13-1.el7_9.x86_64" + }, + "product_reference": "go-toolset-1.19-build-0:1.19.13-1.el7_9.x86_64", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.ppc64le as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-golang-0:1.19.13-2.el7_9.ppc64le" + }, + "product_reference": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.ppc64le", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.s390x as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-golang-0:1.19.13-2.el7_9.s390x" + }, + "product_reference": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.s390x", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.src as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-golang-0:1.19.13-2.el7_9.src" + }, + "product_reference": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.src", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.x86_64 as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-golang-0:1.19.13-2.el7_9.x86_64" + }, + "product_reference": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.x86_64", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.ppc64le as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.ppc64le" + }, + "product_reference": "go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.ppc64le", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.s390x as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.s390x" + }, + "product_reference": "go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.s390x", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.x86_64 as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.x86_64" + }, + "product_reference": "go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.x86_64", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-docs-0:1.19.13-2.el7_9.noarch as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-golang-docs-0:1.19.13-2.el7_9.noarch" + }, + "product_reference": "go-toolset-1.19-golang-docs-0:1.19.13-2.el7_9.noarch", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.ppc64le as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.ppc64le" + }, + "product_reference": "go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.ppc64le", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.s390x as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.s390x" + }, + "product_reference": "go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.s390x", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.x86_64 as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.x86_64" + }, + "product_reference": "go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.x86_64", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-race-0:1.19.13-2.el7_9.x86_64 as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-golang-race-0:1.19.13-2.el7_9.x86_64" + }, + "product_reference": "go-toolset-1.19-golang-race-0:1.19.13-2.el7_9.x86_64", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.ppc64le as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.ppc64le" + }, + "product_reference": "go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.ppc64le", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.s390x as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.s390x" + }, + "product_reference": "go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.s390x", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.x86_64 as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.x86_64" + }, + "product_reference": "go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.x86_64", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.ppc64le as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.ppc64le" + }, + "product_reference": "go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.ppc64le", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.s390x as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.s390x" + }, + "product_reference": "go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.s390x", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.x86_64 as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.x86_64" + }, + "product_reference": "go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.x86_64", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-runtime-0:1.19.13-1.el7_9.ppc64le as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-runtime-0:1.19.13-1.el7_9.ppc64le" + }, + "product_reference": "go-toolset-1.19-runtime-0:1.19.13-1.el7_9.ppc64le", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-runtime-0:1.19.13-1.el7_9.s390x as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-runtime-0:1.19.13-1.el7_9.s390x" + }, + "product_reference": "go-toolset-1.19-runtime-0:1.19.13-1.el7_9.s390x", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-runtime-0:1.19.13-1.el7_9.x86_64 as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-runtime-0:1.19.13-1.el7_9.x86_64" + }, + "product_reference": "go-toolset-1.19-runtime-0:1.19.13-1.el7_9.x86_64", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.ppc64le as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.ppc64le" + }, + "product_reference": "go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.ppc64le", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.s390x as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.s390x" + }, + "product_reference": "go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.s390x", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.x86_64 as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-DevTools-2023.2:go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.x86_64" + }, + "product_reference": "go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.x86_64", + "relates_to_product_reference": "7Server-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-curl-0:8.2.1-2.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-curl-0:8.2.1-2.el7jbcs.src" + }, + "product_reference": "jbcs-httpd24-curl-0:8.2.1-2.el7jbcs.src", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-curl-0:8.2.1-2.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-curl-0:8.2.1-2.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-curl-0:8.2.1-2.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-curl-debuginfo-0:8.2.1-2.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-curl-debuginfo-0:8.2.1-2.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-curl-debuginfo-0:8.2.1-2.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-httpd-0:2.4.57-6.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-httpd-0:2.4.57-6.el7jbcs.src" + }, + "product_reference": "jbcs-httpd24-httpd-0:2.4.57-6.el7jbcs.src", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-httpd-0:2.4.57-6.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-httpd-0:2.4.57-6.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-httpd-0:2.4.57-6.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-httpd-debuginfo-0:2.4.57-6.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.57-6.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-httpd-debuginfo-0:2.4.57-6.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-httpd-devel-0:2.4.57-6.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-httpd-devel-0:2.4.57-6.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-httpd-devel-0:2.4.57-6.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-httpd-manual-0:2.4.57-6.el7jbcs.noarch as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-httpd-manual-0:2.4.57-6.el7jbcs.noarch" + }, + "product_reference": "jbcs-httpd24-httpd-manual-0:2.4.57-6.el7jbcs.noarch", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-httpd-selinux-0:2.4.57-6.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.57-6.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-httpd-selinux-0:2.4.57-6.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-httpd-tools-0:2.4.57-6.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-httpd-tools-0:2.4.57-6.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-httpd-tools-0:2.4.57-6.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-libcurl-0:8.2.1-2.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-libcurl-0:8.2.1-2.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-libcurl-0:8.2.1-2.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-libcurl-devel-0:8.2.1-2.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-libcurl-devel-0:8.2.1-2.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-libcurl-devel-0:8.2.1-2.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_http2-0:1.15.19-30.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-30.el7jbcs.src" + }, + "product_reference": "jbcs-httpd24-mod_http2-0:1.15.19-30.el7jbcs.src", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_http2-0:1.15.19-30.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-30.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_http2-0:1.15.19-30.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-30.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-30.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-30.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_jk-0:1.2.48-53.redhat_1.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-53.redhat_1.el7jbcs.src" + }, + "product_reference": "jbcs-httpd24-mod_jk-0:1.2.48-53.redhat_1.el7jbcs.src", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_jk-ap24-0:1.2.48-53.redhat_1.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-53.redhat_1.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_jk-ap24-0:1.2.48-53.redhat_1.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-53.redhat_1.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-53.redhat_1.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_jk-debuginfo-0:1.2.48-53.redhat_1.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_ldap-0:2.4.57-6.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-mod_ldap-0:2.4.57-6.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_ldap-0:2.4.57-6.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_md-1:2.4.0-27.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-27.el7jbcs.src" + }, + "product_reference": "jbcs-httpd24-mod_md-1:2.4.0-27.el7jbcs.src", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_md-1:2.4.0-27.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-mod_md-1:2.4.0-27.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_md-1:2.4.0-27.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_md-debuginfo-1:2.4.0-27.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-27.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_md-debuginfo-1:2.4.0-27.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_proxy_cluster-0:1.3.19-6.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.19-6.el7jbcs.src" + }, + "product_reference": "jbcs-httpd24-mod_proxy_cluster-0:1.3.19-6.el7jbcs.src", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_proxy_cluster-0:1.3.19-6.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.19-6.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_proxy_cluster-0:1.3.19-6.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.19-6.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.19-6.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.19-6.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_proxy_html-1:2.4.57-6.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.57-6.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_proxy_html-1:2.4.57-6.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_security-0:2.9.3-31.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-31.el7jbcs.src" + }, + "product_reference": "jbcs-httpd24-mod_security-0:2.9.3-31.el7jbcs.src", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_security-0:2.9.3-31.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-mod_security-0:2.9.3-31.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_security-0:2.9.3-31.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_security-debuginfo-0:2.9.3-31.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-31.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_security-debuginfo-0:2.9.3-31.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_session-0:2.4.57-6.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-mod_session-0:2.4.57-6.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_session-0:2.4.57-6.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_ssl-1:2.4.57-6.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-mod_ssl-1:2.4.57-6.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_ssl-1:2.4.57-6.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-nghttp2-0:1.43.0-12.el7jbcs.src as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-nghttp2-0:1.43.0-12.el7jbcs.src" + }, + "product_reference": "jbcs-httpd24-nghttp2-0:1.43.0-12.el7jbcs.src", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-nghttp2-0:1.43.0-12.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-nghttp2-0:1.43.0-12.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-nghttp2-0:1.43.0-12.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-nghttp2-debuginfo-0:1.43.0-12.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-nghttp2-debuginfo-0:1.43.0-12.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-nghttp2-debuginfo-0:1.43.0-12.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-nghttp2-devel-0:1.43.0-12.el7jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 7 Server", + "product_id": "7Server-JBCS:jbcs-httpd24-nghttp2-devel-0:1.43.0-12.el7jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-nghttp2-devel-0:1.43.0-12.el7jbcs.x86_64", + "relates_to_product_reference": "7Server-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el7eap.src as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el7eap.src" + }, + "product_reference": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el7eap.src", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-all-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-all-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-all-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-buffer-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-buffer-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-buffer-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-codec-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-codec-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-dns-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-codec-dns-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-codec-dns-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-haproxy-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-codec-haproxy-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-codec-haproxy-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-http-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-codec-http-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-codec-http-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-http2-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-codec-http2-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-codec-http2-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-memcache-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-codec-memcache-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-codec-memcache-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-mqtt-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-codec-mqtt-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-codec-mqtt-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-redis-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-codec-redis-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-codec-redis-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-smtp-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-codec-smtp-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-codec-smtp-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-socks-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-codec-socks-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-codec-socks-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-stomp-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-codec-stomp-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-codec-stomp-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-xml-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-codec-xml-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-codec-xml-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-common-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-common-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-common-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-handler-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-handler-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-handler-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-handler-proxy-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-handler-proxy-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-handler-proxy-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-resolver-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-resolver-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-resolver-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-resolver-dns-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-resolver-dns-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-resolver-dns-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-resolver-dns-classes-macos-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-resolver-dns-classes-macos-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-resolver-dns-classes-macos-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-transport-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-transport-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-classes-epoll-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-transport-classes-epoll-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-transport-classes-epoll-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-classes-kqueue-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-transport-classes-kqueue-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-transport-classes-kqueue-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el7eap.src as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el7eap.src" + }, + "product_reference": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el7eap.src", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el7eap.x86_64 as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el7eap.x86_64" + }, + "product_reference": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el7eap.x86_64", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-native-epoll-debuginfo-0:4.1.94-2.Final_redhat_00003.1.el7eap.x86_64 as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-transport-native-epoll-debuginfo-0:4.1.94-2.Final_redhat_00003.1.el7eap.x86_64" + }, + "product_reference": "eap7-netty-transport-native-epoll-debuginfo-0:4.1.94-2.Final_redhat_00003.1.el7eap.x86_64", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-native-unix-common-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-transport-native-unix-common-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-transport-native-unix-common-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-rxtx-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-transport-rxtx-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-transport-rxtx-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-sctp-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-transport-sctp-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-transport-sctp-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-udt-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-netty-transport-udt-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch" + }, + "product_reference": "eap7-netty-transport-udt-0:4.1.94-2.Final_redhat_00003.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el7eap.noarch" + }, + "product_reference": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el7eap.src as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el7eap.src" + }, + "product_reference": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el7eap.src", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el7eap.noarch" + }, + "product_reference": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el7eap.src as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el7eap.src" + }, + "product_reference": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el7eap.src", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-wildfly-java-jdk11-0:7.4.13-10.GA_redhat_00002.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-wildfly-java-jdk11-0:7.4.13-10.GA_redhat_00002.1.el7eap.noarch" + }, + "product_reference": "eap7-wildfly-java-jdk11-0:7.4.13-10.GA_redhat_00002.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-wildfly-java-jdk8-0:7.4.13-10.GA_redhat_00002.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-wildfly-java-jdk8-0:7.4.13-10.GA_redhat_00002.1.el7eap.noarch" + }, + "product_reference": "eap7-wildfly-java-jdk8-0:7.4.13-10.GA_redhat_00002.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-wildfly-modules-0:7.4.13-10.GA_redhat_00002.1.el7eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 7 Server", + "product_id": "7Server-JBEAP-7.4:eap7-wildfly-modules-0:7.4.13-10.GA_redhat_00002.1.el7eap.noarch" + }, + "product_reference": "eap7-wildfly-modules-0:7.4.13-10.GA_redhat_00002.1.el7eap.noarch", + "relates_to_product_reference": "7Server-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el7jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 7 Server", + "product_id": "7Server-JWS-5.7:jws5-tomcat-0:9.0.62-16.redhat_00014.1.el7jws.noarch" + }, + "product_reference": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "relates_to_product_reference": "7Server-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el7jws.src as a component of Red Hat JBoss Web Server 5.7 for RHEL 7 Server", + "product_id": "7Server-JWS-5.7:jws5-tomcat-0:9.0.62-16.redhat_00014.1.el7jws.src" + }, + "product_reference": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el7jws.src", + "relates_to_product_reference": "7Server-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-admin-webapps-0:9.0.62-16.redhat_00014.1.el7jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 7 Server", + "product_id": "7Server-JWS-5.7:jws5-tomcat-admin-webapps-0:9.0.62-16.redhat_00014.1.el7jws.noarch" + }, + "product_reference": "jws5-tomcat-admin-webapps-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "relates_to_product_reference": "7Server-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-docs-webapp-0:9.0.62-16.redhat_00014.1.el7jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 7 Server", + "product_id": "7Server-JWS-5.7:jws5-tomcat-docs-webapp-0:9.0.62-16.redhat_00014.1.el7jws.noarch" + }, + "product_reference": "jws5-tomcat-docs-webapp-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "relates_to_product_reference": "7Server-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-el-3.0-api-0:9.0.62-16.redhat_00014.1.el7jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 7 Server", + "product_id": "7Server-JWS-5.7:jws5-tomcat-el-3.0-api-0:9.0.62-16.redhat_00014.1.el7jws.noarch" + }, + "product_reference": "jws5-tomcat-el-3.0-api-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "relates_to_product_reference": "7Server-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-java-jdk11-0:9.0.62-16.redhat_00014.1.el7jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 7 Server", + "product_id": "7Server-JWS-5.7:jws5-tomcat-java-jdk11-0:9.0.62-16.redhat_00014.1.el7jws.noarch" + }, + "product_reference": "jws5-tomcat-java-jdk11-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "relates_to_product_reference": "7Server-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-java-jdk8-0:9.0.62-16.redhat_00014.1.el7jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 7 Server", + "product_id": "7Server-JWS-5.7:jws5-tomcat-java-jdk8-0:9.0.62-16.redhat_00014.1.el7jws.noarch" + }, + "product_reference": "jws5-tomcat-java-jdk8-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "relates_to_product_reference": "7Server-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-javadoc-0:9.0.62-16.redhat_00014.1.el7jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 7 Server", + "product_id": "7Server-JWS-5.7:jws5-tomcat-javadoc-0:9.0.62-16.redhat_00014.1.el7jws.noarch" + }, + "product_reference": "jws5-tomcat-javadoc-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "relates_to_product_reference": "7Server-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-jsp-2.3-api-0:9.0.62-16.redhat_00014.1.el7jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 7 Server", + "product_id": "7Server-JWS-5.7:jws5-tomcat-jsp-2.3-api-0:9.0.62-16.redhat_00014.1.el7jws.noarch" + }, + "product_reference": "jws5-tomcat-jsp-2.3-api-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "relates_to_product_reference": "7Server-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-lib-0:9.0.62-16.redhat_00014.1.el7jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 7 Server", + "product_id": "7Server-JWS-5.7:jws5-tomcat-lib-0:9.0.62-16.redhat_00014.1.el7jws.noarch" + }, + "product_reference": "jws5-tomcat-lib-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "relates_to_product_reference": "7Server-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-selinux-0:9.0.62-16.redhat_00014.1.el7jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 7 Server", + "product_id": "7Server-JWS-5.7:jws5-tomcat-selinux-0:9.0.62-16.redhat_00014.1.el7jws.noarch" + }, + "product_reference": "jws5-tomcat-selinux-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "relates_to_product_reference": "7Server-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-servlet-4.0-api-0:9.0.62-16.redhat_00014.1.el7jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 7 Server", + "product_id": "7Server-JWS-5.7:jws5-tomcat-servlet-4.0-api-0:9.0.62-16.redhat_00014.1.el7jws.noarch" + }, + "product_reference": "jws5-tomcat-servlet-4.0-api-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "relates_to_product_reference": "7Server-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-webapps-0:9.0.62-16.redhat_00014.1.el7jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 7 Server", + "product_id": "7Server-JWS-5.7:jws5-tomcat-webapps-0:9.0.62-16.redhat_00014.1.el7jws.noarch" + }, + "product_reference": "jws5-tomcat-webapps-0:9.0.62-16.redhat_00014.1.el7jws.noarch", + "relates_to_product_reference": "7Server-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-libnghttp2-0:1.7.1-11.el7.ppc64le as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:httpd24-libnghttp2-0:1.7.1-11.el7.ppc64le" + }, + "product_reference": "httpd24-libnghttp2-0:1.7.1-11.el7.ppc64le", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-libnghttp2-0:1.7.1-11.el7.s390x as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:httpd24-libnghttp2-0:1.7.1-11.el7.s390x" + }, + "product_reference": "httpd24-libnghttp2-0:1.7.1-11.el7.s390x", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-libnghttp2-0:1.7.1-11.el7.x86_64 as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:httpd24-libnghttp2-0:1.7.1-11.el7.x86_64" + }, + "product_reference": "httpd24-libnghttp2-0:1.7.1-11.el7.x86_64", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-libnghttp2-devel-0:1.7.1-11.el7.ppc64le as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:httpd24-libnghttp2-devel-0:1.7.1-11.el7.ppc64le" + }, + "product_reference": "httpd24-libnghttp2-devel-0:1.7.1-11.el7.ppc64le", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-libnghttp2-devel-0:1.7.1-11.el7.s390x as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:httpd24-libnghttp2-devel-0:1.7.1-11.el7.s390x" + }, + "product_reference": "httpd24-libnghttp2-devel-0:1.7.1-11.el7.s390x", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-libnghttp2-devel-0:1.7.1-11.el7.x86_64 as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:httpd24-libnghttp2-devel-0:1.7.1-11.el7.x86_64" + }, + "product_reference": "httpd24-libnghttp2-devel-0:1.7.1-11.el7.x86_64", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-nghttp2-0:1.7.1-11.el7.ppc64le as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:httpd24-nghttp2-0:1.7.1-11.el7.ppc64le" + }, + "product_reference": "httpd24-nghttp2-0:1.7.1-11.el7.ppc64le", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-nghttp2-0:1.7.1-11.el7.s390x as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:httpd24-nghttp2-0:1.7.1-11.el7.s390x" + }, + "product_reference": "httpd24-nghttp2-0:1.7.1-11.el7.s390x", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-nghttp2-0:1.7.1-11.el7.src as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:httpd24-nghttp2-0:1.7.1-11.el7.src" + }, + "product_reference": "httpd24-nghttp2-0:1.7.1-11.el7.src", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-nghttp2-0:1.7.1-11.el7.x86_64 as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:httpd24-nghttp2-0:1.7.1-11.el7.x86_64" + }, + "product_reference": "httpd24-nghttp2-0:1.7.1-11.el7.x86_64", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.ppc64le as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.ppc64le" + }, + "product_reference": "httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.ppc64le", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.s390x as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.s390x" + }, + "product_reference": "httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.s390x", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.x86_64 as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.x86_64" + }, + "product_reference": "httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.x86_64", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-1:1.20.1-1.el7.1.ppc64le as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nginx120-nginx-1:1.20.1-1.el7.1.ppc64le" + }, + "product_reference": "rh-nginx120-nginx-1:1.20.1-1.el7.1.ppc64le", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-1:1.20.1-1.el7.1.s390x as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nginx120-nginx-1:1.20.1-1.el7.1.s390x" + }, + "product_reference": "rh-nginx120-nginx-1:1.20.1-1.el7.1.s390x", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-1:1.20.1-1.el7.1.src as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nginx120-nginx-1:1.20.1-1.el7.1.src" + }, + "product_reference": "rh-nginx120-nginx-1:1.20.1-1.el7.1.src", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-1:1.20.1-1.el7.1.x86_64 as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nginx120-nginx-1:1.20.1-1.el7.1.x86_64" + }, + "product_reference": "rh-nginx120-nginx-1:1.20.1-1.el7.1.x86_64", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.ppc64le as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.ppc64le" + }, + "product_reference": "rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.ppc64le", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.s390x as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.s390x" + }, + "product_reference": "rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.s390x", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.x86_64 as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.x86_64" + }, + "product_reference": "rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.x86_64", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.ppc64le as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.ppc64le" + }, + "product_reference": "rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.ppc64le", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.s390x as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.s390x" + }, + "product_reference": "rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.s390x", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.x86_64 as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.x86_64" + }, + "product_reference": "rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.x86_64", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.ppc64le as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.ppc64le" + }, + "product_reference": "rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.ppc64le", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.s390x as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.s390x" + }, + "product_reference": "rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.s390x", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.x86_64 as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.x86_64" + }, + "product_reference": "rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.x86_64", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.ppc64le as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.ppc64le" + }, + "product_reference": "rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.ppc64le", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.s390x as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.s390x" + }, + "product_reference": "rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.s390x", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.x86_64 as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.x86_64" + }, + "product_reference": "rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.x86_64", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.ppc64le as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.ppc64le" + }, + "product_reference": "rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.ppc64le", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.s390x as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.s390x" + }, + "product_reference": "rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.s390x", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.x86_64 as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.x86_64" + }, + "product_reference": "rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.x86_64", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.ppc64le as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.ppc64le" + }, + "product_reference": "rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.ppc64le", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.s390x as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.s390x" + }, + "product_reference": "rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.s390x", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.x86_64 as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.x86_64" + }, + "product_reference": "rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.x86_64", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-0:14.21.3-5.el7.ppc64le as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nodejs14-nodejs-0:14.21.3-5.el7.ppc64le" + }, + "product_reference": "rh-nodejs14-nodejs-0:14.21.3-5.el7.ppc64le", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-0:14.21.3-5.el7.s390x as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nodejs14-nodejs-0:14.21.3-5.el7.s390x" + }, + "product_reference": "rh-nodejs14-nodejs-0:14.21.3-5.el7.s390x", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-0:14.21.3-5.el7.src as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nodejs14-nodejs-0:14.21.3-5.el7.src" + }, + "product_reference": "rh-nodejs14-nodejs-0:14.21.3-5.el7.src", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-0:14.21.3-5.el7.x86_64 as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nodejs14-nodejs-0:14.21.3-5.el7.x86_64" + }, + "product_reference": "rh-nodejs14-nodejs-0:14.21.3-5.el7.x86_64", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.ppc64le as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.ppc64le" + }, + "product_reference": "rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.ppc64le", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.s390x as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.s390x" + }, + "product_reference": "rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.s390x", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.x86_64 as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.x86_64" + }, + "product_reference": "rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.x86_64", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.ppc64le as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.ppc64le" + }, + "product_reference": "rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.ppc64le", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.s390x as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.s390x" + }, + "product_reference": "rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.s390x", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.x86_64 as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.x86_64" + }, + "product_reference": "rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.x86_64", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-docs-0:14.21.3-5.el7.noarch as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nodejs14-nodejs-docs-0:14.21.3-5.el7.noarch" + }, + "product_reference": "rh-nodejs14-nodejs-docs-0:14.21.3-5.el7.noarch", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.ppc64le as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.ppc64le" + }, + "product_reference": "rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.ppc64le", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.s390x as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.s390x" + }, + "product_reference": "rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.s390x", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.x86_64 as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.x86_64" + }, + "product_reference": "rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.x86_64", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.ppc64le as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.ppc64le" + }, + "product_reference": "rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.ppc64le", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.s390x as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.s390x" + }, + "product_reference": "rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.s390x", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.x86_64 as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.x86_64" + }, + "product_reference": "rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.x86_64", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-0:6.0.8-2.el7.3.ppc64le as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-varnish6-varnish-0:6.0.8-2.el7.3.ppc64le" + }, + "product_reference": "rh-varnish6-varnish-0:6.0.8-2.el7.3.ppc64le", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-0:6.0.8-2.el7.3.s390x as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-varnish6-varnish-0:6.0.8-2.el7.3.s390x" + }, + "product_reference": "rh-varnish6-varnish-0:6.0.8-2.el7.3.s390x", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-0:6.0.8-2.el7.3.src as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-varnish6-varnish-0:6.0.8-2.el7.3.src" + }, + "product_reference": "rh-varnish6-varnish-0:6.0.8-2.el7.3.src", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-0:6.0.8-2.el7.3.x86_64 as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-varnish6-varnish-0:6.0.8-2.el7.3.x86_64" + }, + "product_reference": "rh-varnish6-varnish-0:6.0.8-2.el7.3.x86_64", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.ppc64le as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.ppc64le" + }, + "product_reference": "rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.ppc64le", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.s390x as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.s390x" + }, + "product_reference": "rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.s390x", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.x86_64 as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.x86_64" + }, + "product_reference": "rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.x86_64", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.ppc64le as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.ppc64le" + }, + "product_reference": "rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.ppc64le", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.s390x as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.s390x" + }, + "product_reference": "rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.s390x", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.x86_64 as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.x86_64" + }, + "product_reference": "rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.x86_64", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.ppc64le as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.ppc64le" + }, + "product_reference": "rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.ppc64le", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.s390x as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.s390x" + }, + "product_reference": "rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.s390x", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.x86_64 as a component of Red Hat Software Collections for RHEL Workstation(v. 7)", + "product_id": "7Server-RHSCL-3.8:rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.x86_64" + }, + "product_reference": "rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.x86_64", + "relates_to_product_reference": "7Server-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-aspnetcore-runtime-6.0-0:6.0.23-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-dotNET-6.0:rh-dotnet60-aspnetcore-runtime-6.0-0:6.0.23-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-aspnetcore-runtime-6.0-0:6.0.23-1.el7_9.x86_64", + "relates_to_product_reference": "7Server-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-aspnetcore-targeting-pack-6.0-0:6.0.23-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-dotNET-6.0:rh-dotnet60-aspnetcore-targeting-pack-6.0-0:6.0.23-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-aspnetcore-targeting-pack-6.0-0:6.0.23-1.el7_9.x86_64", + "relates_to_product_reference": "7Server-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-0:6.0.123-1.el7_9.src as a component of .NET Core on Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-dotNET-6.0:rh-dotnet60-dotnet-0:6.0.123-1.el7_9.src" + }, + "product_reference": "rh-dotnet60-dotnet-0:6.0.123-1.el7_9.src", + "relates_to_product_reference": "7Server-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-0:6.0.123-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-dotNET-6.0:rh-dotnet60-dotnet-0:6.0.123-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-0:6.0.123-1.el7_9.x86_64", + "relates_to_product_reference": "7Server-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-apphost-pack-6.0-0:6.0.23-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-dotNET-6.0:rh-dotnet60-dotnet-apphost-pack-6.0-0:6.0.23-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-apphost-pack-6.0-0:6.0.23-1.el7_9.x86_64", + "relates_to_product_reference": "7Server-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-debuginfo-0:6.0.123-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-dotNET-6.0:rh-dotnet60-dotnet-debuginfo-0:6.0.123-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-debuginfo-0:6.0.123-1.el7_9.x86_64", + "relates_to_product_reference": "7Server-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-host-0:6.0.23-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-dotNET-6.0:rh-dotnet60-dotnet-host-0:6.0.23-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-host-0:6.0.23-1.el7_9.x86_64", + "relates_to_product_reference": "7Server-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-hostfxr-6.0-0:6.0.23-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-dotNET-6.0:rh-dotnet60-dotnet-hostfxr-6.0-0:6.0.23-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-hostfxr-6.0-0:6.0.23-1.el7_9.x86_64", + "relates_to_product_reference": "7Server-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-runtime-6.0-0:6.0.23-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-dotNET-6.0:rh-dotnet60-dotnet-runtime-6.0-0:6.0.23-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-runtime-6.0-0:6.0.23-1.el7_9.x86_64", + "relates_to_product_reference": "7Server-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-sdk-6.0-0:6.0.123-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-dotNET-6.0:rh-dotnet60-dotnet-sdk-6.0-0:6.0.123-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-sdk-6.0-0:6.0.123-1.el7_9.x86_64", + "relates_to_product_reference": "7Server-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-dotNET-6.0:rh-dotnet60-dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el7_9.x86_64", + "relates_to_product_reference": "7Server-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-targeting-pack-6.0-0:6.0.23-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-dotNET-6.0:rh-dotnet60-dotnet-targeting-pack-6.0-0:6.0.23-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-targeting-pack-6.0-0:6.0.23-1.el7_9.x86_64", + "relates_to_product_reference": "7Server-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-templates-6.0-0:6.0.123-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-dotNET-6.0:rh-dotnet60-dotnet-templates-6.0-0:6.0.123-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-templates-6.0-0:6.0.123-1.el7_9.x86_64", + "relates_to_product_reference": "7Server-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-netstandard-targeting-pack-2.1-0:6.0.123-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Server (v. 7)", + "product_id": "7Server-dotNET-6.0:rh-dotnet60-netstandard-targeting-pack-2.1-0:6.0.123-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-netstandard-targeting-pack-2.1-0:6.0.123-1.el7_9.x86_64", + "relates_to_product_reference": "7Server-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.1.1.27-1.el7sat.src as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-0:3.1.1.27-1.el7sat.src" + }, + "product_reference": "foreman-0:3.1.1.27-1.el7sat.src", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-cli-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-cli-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-debug-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-debug-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-ec2-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-gce-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-gce-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-gce-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-journald-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-journald-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-libvirt-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-openstack-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-ovirt-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-postgresql-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-service-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-service-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-telemetry-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-vmware-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el7sat.src as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:puppet-agent-0:7.26.0-3.el7sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el7sat.src", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el7sat.x86_64 as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:puppet-agent-0:7.26.0-3.el7sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el7sat.x86_64", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.11.5.6-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:satellite-0:6.11.5.6-1.el7sat.noarch" + }, + "product_reference": "satellite-0:6.11.5.6-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.11.5.6-1.el7sat.src as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:satellite-0:6.11.5.6-1.el7sat.src" + }, + "product_reference": "satellite-0:6.11.5.6-1.el7sat.src", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.11.5.6-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:satellite-capsule-0:6.11.5.6-1.el7sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.11.5.6-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.11.5.6-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:satellite-cli-0:6.11.5.6-1.el7sat.noarch" + }, + "product_reference": "satellite-cli-0:6.11.5.6-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.11.5.6-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:satellite-common-0:6.11.5.6-1.el7sat.noarch" + }, + "product_reference": "satellite-common-0:6.11.5.6-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.1.1.27-1.el7sat.src as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-0:3.1.1.27-1.el7sat.src" + }, + "product_reference": "foreman-0:3.1.1.27-1.el7sat.src", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-cli-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-cli-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-debug-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-debug-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-ec2-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-gce-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-gce-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-gce-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-journald-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-journald-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-libvirt-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-openstack-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-ovirt-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-postgresql-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-service-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-service-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-telemetry-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-vmware-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.11.5.6-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:satellite-0:6.11.5.6-1.el7sat.noarch" + }, + "product_reference": "satellite-0:6.11.5.6-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.11.5.6-1.el7sat.src as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:satellite-0:6.11.5.6-1.el7sat.src" + }, + "product_reference": "satellite-0:6.11.5.6-1.el7sat.src", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.11.5.6-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:satellite-capsule-0:6.11.5.6-1.el7sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.11.5.6-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.11.5.6-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:satellite-cli-0:6.11.5.6-1.el7sat.noarch" + }, + "product_reference": "satellite-cli-0:6.11.5.6-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.11.5.6-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:satellite-common-0:6.11.5.6-1.el7sat.noarch" + }, + "product_reference": "satellite-common-0:6.11.5.6-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.1.1.27-1.el7sat.src as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-0:3.1.1.27-1.el7sat.src" + }, + "product_reference": "foreman-0:3.1.1.27-1.el7sat.src", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-cli-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-cli-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-debug-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-debug-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-ec2-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-gce-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-gce-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-gce-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-journald-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-journald-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-libvirt-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-openstack-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-ovirt-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-postgresql-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-service-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-service-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-telemetry-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-vmware-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el7sat.src as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:puppet-agent-0:7.26.0-3.el7sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el7sat.src", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el7sat.x86_64 as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:puppet-agent-0:7.26.0-3.el7sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el7sat.x86_64", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.11.5.6-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:satellite-0:6.11.5.6-1.el7sat.noarch" + }, + "product_reference": "satellite-0:6.11.5.6-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.11.5.6-1.el7sat.src as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:satellite-0:6.11.5.6-1.el7sat.src" + }, + "product_reference": "satellite-0:6.11.5.6-1.el7sat.src", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.11.5.6-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:satellite-capsule-0:6.11.5.6-1.el7sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.11.5.6-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.11.5.6-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:satellite-cli-0:6.11.5.6-1.el7sat.noarch" + }, + "product_reference": "satellite-cli-0:6.11.5.6-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.11.5.6-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:satellite-common-0:6.11.5.6-1.el7sat.noarch" + }, + "product_reference": "satellite-common-0:6.11.5.6-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tfm-rubygem-git-0:1.18.0-0.1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:tfm-rubygem-git-0:1.18.0-0.1.el7sat.noarch" + }, + "product_reference": "tfm-rubygem-git-0:1.18.0-0.1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tfm-rubygem-git-0:1.18.0-0.1.el7sat.src as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:tfm-rubygem-git-0:1.18.0-0.1.el7sat.src" + }, + "product_reference": "tfm-rubygem-git-0:1.18.0-0.1.el7sat.src", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.noarch" + }, + "product_reference": "tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.src as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.src" + }, + "product_reference": "tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.src", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.noarch" + }, + "product_reference": "tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.src as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.src" + }, + "product_reference": "tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.src", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.src as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.src" + }, + "product_reference": "yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.src", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.x86_64 as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.x86_64" + }, + "product_reference": "yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.x86_64", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman_ygg_worker-0:0.2.2-1.el7sat.ppc64le as a component of Satellite Client 6 for RHEL 7", + "product_id": "7Server-satellite-client-6:foreman_ygg_worker-0:0.2.2-1.el7sat.ppc64le" + }, + "product_reference": "foreman_ygg_worker-0:0.2.2-1.el7sat.ppc64le", + "relates_to_product_reference": "7Server-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman_ygg_worker-0:0.2.2-1.el7sat.src as a component of Satellite Client 6 for RHEL 7", + "product_id": "7Server-satellite-client-6:foreman_ygg_worker-0:0.2.2-1.el7sat.src" + }, + "product_reference": "foreman_ygg_worker-0:0.2.2-1.el7sat.src", + "relates_to_product_reference": "7Server-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman_ygg_worker-0:0.2.2-1.el7sat.x86_64 as a component of Satellite Client 6 for RHEL 7", + "product_id": "7Server-satellite-client-6:foreman_ygg_worker-0:0.2.2-1.el7sat.x86_64" + }, + "product_reference": "foreman_ygg_worker-0:0.2.2-1.el7sat.x86_64", + "relates_to_product_reference": "7Server-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el7sat.src as a component of Satellite Client 6 for RHEL 7", + "product_id": "7Server-satellite-client-6:puppet-agent-0:7.26.0-3.el7sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el7sat.src", + "relates_to_product_reference": "7Server-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el7sat.x86_64 as a component of Satellite Client 6 for RHEL 7", + "product_id": "7Server-satellite-client-6:puppet-agent-0:7.26.0-3.el7sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el7sat.x86_64", + "relates_to_product_reference": "7Server-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-0:0.2.3-1.el7sat.ppc64le as a component of Satellite Client 6 for RHEL 7", + "product_id": "7Server-satellite-client-6:yggdrasil-0:0.2.3-1.el7sat.ppc64le" + }, + "product_reference": "yggdrasil-0:0.2.3-1.el7sat.ppc64le", + "relates_to_product_reference": "7Server-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-0:0.2.3-1.el7sat.src as a component of Satellite Client 6 for RHEL 7", + "product_id": "7Server-satellite-client-6:yggdrasil-0:0.2.3-1.el7sat.src" + }, + "product_reference": "yggdrasil-0:0.2.3-1.el7sat.src", + "relates_to_product_reference": "7Server-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-0:0.2.3-1.el7sat.x86_64 as a component of Satellite Client 6 for RHEL 7", + "product_id": "7Server-satellite-client-6:yggdrasil-0:0.2.3-1.el7sat.x86_64" + }, + "product_reference": "yggdrasil-0:0.2.3-1.el7sat.x86_64", + "relates_to_product_reference": "7Server-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhc-worker-script-0:0.5-1.el7_9.src as a component of Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-7.9.Z:rhc-worker-script-0:0.5-1.el7_9.src" + }, + "product_reference": "rhc-worker-script-0:0.5-1.el7_9.src", + "relates_to_product_reference": "7Workstation-7.9.Z" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhc-worker-script-0:0.5-1.el7_9.x86_64 as a component of Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-7.9.Z:rhc-worker-script-0:0.5-1.el7_9.x86_64" + }, + "product_reference": "rhc-worker-script-0:0.5-1.el7_9.x86_64", + "relates_to_product_reference": "7Workstation-7.9.Z" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-0:1.19.13-1.el7_9.ppc64le as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-0:1.19.13-1.el7_9.ppc64le" + }, + "product_reference": "go-toolset-1.19-0:1.19.13-1.el7_9.ppc64le", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-0:1.19.13-1.el7_9.s390x as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-0:1.19.13-1.el7_9.s390x" + }, + "product_reference": "go-toolset-1.19-0:1.19.13-1.el7_9.s390x", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-0:1.19.13-1.el7_9.src as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-0:1.19.13-1.el7_9.src" + }, + "product_reference": "go-toolset-1.19-0:1.19.13-1.el7_9.src", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-0:1.19.13-1.el7_9.x86_64 as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-0:1.19.13-1.el7_9.x86_64" + }, + "product_reference": "go-toolset-1.19-0:1.19.13-1.el7_9.x86_64", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-build-0:1.19.13-1.el7_9.ppc64le as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-build-0:1.19.13-1.el7_9.ppc64le" + }, + "product_reference": "go-toolset-1.19-build-0:1.19.13-1.el7_9.ppc64le", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-build-0:1.19.13-1.el7_9.s390x as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-build-0:1.19.13-1.el7_9.s390x" + }, + "product_reference": "go-toolset-1.19-build-0:1.19.13-1.el7_9.s390x", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-build-0:1.19.13-1.el7_9.x86_64 as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-build-0:1.19.13-1.el7_9.x86_64" + }, + "product_reference": "go-toolset-1.19-build-0:1.19.13-1.el7_9.x86_64", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.ppc64le as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-golang-0:1.19.13-2.el7_9.ppc64le" + }, + "product_reference": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.ppc64le", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.s390x as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-golang-0:1.19.13-2.el7_9.s390x" + }, + "product_reference": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.s390x", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.src as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-golang-0:1.19.13-2.el7_9.src" + }, + "product_reference": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.src", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.x86_64 as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-golang-0:1.19.13-2.el7_9.x86_64" + }, + "product_reference": "go-toolset-1.19-golang-0:1.19.13-2.el7_9.x86_64", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.ppc64le as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.ppc64le" + }, + "product_reference": "go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.ppc64le", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.s390x as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.s390x" + }, + "product_reference": "go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.s390x", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.x86_64 as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.x86_64" + }, + "product_reference": "go-toolset-1.19-golang-bin-0:1.19.13-2.el7_9.x86_64", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-docs-0:1.19.13-2.el7_9.noarch as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-golang-docs-0:1.19.13-2.el7_9.noarch" + }, + "product_reference": "go-toolset-1.19-golang-docs-0:1.19.13-2.el7_9.noarch", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.ppc64le as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.ppc64le" + }, + "product_reference": "go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.ppc64le", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.s390x as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.s390x" + }, + "product_reference": "go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.s390x", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.x86_64 as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.x86_64" + }, + "product_reference": "go-toolset-1.19-golang-misc-0:1.19.13-2.el7_9.x86_64", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-race-0:1.19.13-2.el7_9.x86_64 as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-golang-race-0:1.19.13-2.el7_9.x86_64" + }, + "product_reference": "go-toolset-1.19-golang-race-0:1.19.13-2.el7_9.x86_64", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.ppc64le as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.ppc64le" + }, + "product_reference": "go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.ppc64le", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.s390x as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.s390x" + }, + "product_reference": "go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.s390x", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.x86_64 as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.x86_64" + }, + "product_reference": "go-toolset-1.19-golang-src-0:1.19.13-2.el7_9.x86_64", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.ppc64le as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.ppc64le" + }, + "product_reference": "go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.ppc64le", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.s390x as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.s390x" + }, + "product_reference": "go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.s390x", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.x86_64 as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.x86_64" + }, + "product_reference": "go-toolset-1.19-golang-tests-0:1.19.13-2.el7_9.x86_64", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-runtime-0:1.19.13-1.el7_9.ppc64le as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-runtime-0:1.19.13-1.el7_9.ppc64le" + }, + "product_reference": "go-toolset-1.19-runtime-0:1.19.13-1.el7_9.ppc64le", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-runtime-0:1.19.13-1.el7_9.s390x as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-runtime-0:1.19.13-1.el7_9.s390x" + }, + "product_reference": "go-toolset-1.19-runtime-0:1.19.13-1.el7_9.s390x", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-runtime-0:1.19.13-1.el7_9.x86_64 as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-runtime-0:1.19.13-1.el7_9.x86_64" + }, + "product_reference": "go-toolset-1.19-runtime-0:1.19.13-1.el7_9.x86_64", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.ppc64le as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.ppc64le" + }, + "product_reference": "go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.ppc64le", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.s390x as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.s390x" + }, + "product_reference": "go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.s390x", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.x86_64 as a component of Red Hat Developer Tools for Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-DevTools-2023.2:go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.x86_64" + }, + "product_reference": "go-toolset-1.19-scldevel-0:1.19.13-1.el7_9.x86_64", + "relates_to_product_reference": "7Workstation-DevTools-2023.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-libnghttp2-0:1.7.1-11.el7.ppc64le as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:httpd24-libnghttp2-0:1.7.1-11.el7.ppc64le" + }, + "product_reference": "httpd24-libnghttp2-0:1.7.1-11.el7.ppc64le", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-libnghttp2-0:1.7.1-11.el7.s390x as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:httpd24-libnghttp2-0:1.7.1-11.el7.s390x" + }, + "product_reference": "httpd24-libnghttp2-0:1.7.1-11.el7.s390x", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-libnghttp2-0:1.7.1-11.el7.x86_64 as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:httpd24-libnghttp2-0:1.7.1-11.el7.x86_64" + }, + "product_reference": "httpd24-libnghttp2-0:1.7.1-11.el7.x86_64", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-libnghttp2-devel-0:1.7.1-11.el7.ppc64le as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:httpd24-libnghttp2-devel-0:1.7.1-11.el7.ppc64le" + }, + "product_reference": "httpd24-libnghttp2-devel-0:1.7.1-11.el7.ppc64le", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-libnghttp2-devel-0:1.7.1-11.el7.s390x as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:httpd24-libnghttp2-devel-0:1.7.1-11.el7.s390x" + }, + "product_reference": "httpd24-libnghttp2-devel-0:1.7.1-11.el7.s390x", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-libnghttp2-devel-0:1.7.1-11.el7.x86_64 as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:httpd24-libnghttp2-devel-0:1.7.1-11.el7.x86_64" + }, + "product_reference": "httpd24-libnghttp2-devel-0:1.7.1-11.el7.x86_64", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-nghttp2-0:1.7.1-11.el7.ppc64le as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:httpd24-nghttp2-0:1.7.1-11.el7.ppc64le" + }, + "product_reference": "httpd24-nghttp2-0:1.7.1-11.el7.ppc64le", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-nghttp2-0:1.7.1-11.el7.s390x as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:httpd24-nghttp2-0:1.7.1-11.el7.s390x" + }, + "product_reference": "httpd24-nghttp2-0:1.7.1-11.el7.s390x", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-nghttp2-0:1.7.1-11.el7.src as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:httpd24-nghttp2-0:1.7.1-11.el7.src" + }, + "product_reference": "httpd24-nghttp2-0:1.7.1-11.el7.src", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-nghttp2-0:1.7.1-11.el7.x86_64 as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:httpd24-nghttp2-0:1.7.1-11.el7.x86_64" + }, + "product_reference": "httpd24-nghttp2-0:1.7.1-11.el7.x86_64", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.ppc64le as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.ppc64le" + }, + "product_reference": "httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.ppc64le", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.s390x as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.s390x" + }, + "product_reference": "httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.s390x", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.x86_64 as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.x86_64" + }, + "product_reference": "httpd24-nghttp2-debuginfo-0:1.7.1-11.el7.x86_64", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-1:1.20.1-1.el7.1.ppc64le as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nginx120-nginx-1:1.20.1-1.el7.1.ppc64le" + }, + "product_reference": "rh-nginx120-nginx-1:1.20.1-1.el7.1.ppc64le", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-1:1.20.1-1.el7.1.s390x as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nginx120-nginx-1:1.20.1-1.el7.1.s390x" + }, + "product_reference": "rh-nginx120-nginx-1:1.20.1-1.el7.1.s390x", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-1:1.20.1-1.el7.1.src as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nginx120-nginx-1:1.20.1-1.el7.1.src" + }, + "product_reference": "rh-nginx120-nginx-1:1.20.1-1.el7.1.src", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-1:1.20.1-1.el7.1.x86_64 as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nginx120-nginx-1:1.20.1-1.el7.1.x86_64" + }, + "product_reference": "rh-nginx120-nginx-1:1.20.1-1.el7.1.x86_64", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.ppc64le as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.ppc64le" + }, + "product_reference": "rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.ppc64le", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.s390x as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.s390x" + }, + "product_reference": "rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.s390x", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.x86_64 as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.x86_64" + }, + "product_reference": "rh-nginx120-nginx-debuginfo-1:1.20.1-1.el7.1.x86_64", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.ppc64le as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.ppc64le" + }, + "product_reference": "rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.ppc64le", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.s390x as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.s390x" + }, + "product_reference": "rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.s390x", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.x86_64 as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.x86_64" + }, + "product_reference": "rh-nginx120-nginx-mod-http-image-filter-1:1.20.1-1.el7.1.x86_64", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.ppc64le as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.ppc64le" + }, + "product_reference": "rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.ppc64le", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.s390x as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.s390x" + }, + "product_reference": "rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.s390x", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.x86_64 as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.x86_64" + }, + "product_reference": "rh-nginx120-nginx-mod-http-perl-1:1.20.1-1.el7.1.x86_64", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.ppc64le as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.ppc64le" + }, + "product_reference": "rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.ppc64le", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.s390x as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.s390x" + }, + "product_reference": "rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.s390x", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.x86_64 as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.x86_64" + }, + "product_reference": "rh-nginx120-nginx-mod-http-xslt-filter-1:1.20.1-1.el7.1.x86_64", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.ppc64le as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.ppc64le" + }, + "product_reference": "rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.ppc64le", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.s390x as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.s390x" + }, + "product_reference": "rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.s390x", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.x86_64 as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.x86_64" + }, + "product_reference": "rh-nginx120-nginx-mod-mail-1:1.20.1-1.el7.1.x86_64", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.ppc64le as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.ppc64le" + }, + "product_reference": "rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.ppc64le", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.s390x as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.s390x" + }, + "product_reference": "rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.s390x", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.x86_64 as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.x86_64" + }, + "product_reference": "rh-nginx120-nginx-mod-stream-1:1.20.1-1.el7.1.x86_64", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-0:14.21.3-5.el7.ppc64le as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nodejs14-nodejs-0:14.21.3-5.el7.ppc64le" + }, + "product_reference": "rh-nodejs14-nodejs-0:14.21.3-5.el7.ppc64le", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-0:14.21.3-5.el7.s390x as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nodejs14-nodejs-0:14.21.3-5.el7.s390x" + }, + "product_reference": "rh-nodejs14-nodejs-0:14.21.3-5.el7.s390x", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-0:14.21.3-5.el7.src as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nodejs14-nodejs-0:14.21.3-5.el7.src" + }, + "product_reference": "rh-nodejs14-nodejs-0:14.21.3-5.el7.src", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-0:14.21.3-5.el7.x86_64 as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nodejs14-nodejs-0:14.21.3-5.el7.x86_64" + }, + "product_reference": "rh-nodejs14-nodejs-0:14.21.3-5.el7.x86_64", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.ppc64le as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.ppc64le" + }, + "product_reference": "rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.ppc64le", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.s390x as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.s390x" + }, + "product_reference": "rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.s390x", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.x86_64 as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.x86_64" + }, + "product_reference": "rh-nodejs14-nodejs-debuginfo-0:14.21.3-5.el7.x86_64", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.ppc64le as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.ppc64le" + }, + "product_reference": "rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.ppc64le", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.s390x as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.s390x" + }, + "product_reference": "rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.s390x", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.x86_64 as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.x86_64" + }, + "product_reference": "rh-nodejs14-nodejs-devel-0:14.21.3-5.el7.x86_64", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-docs-0:14.21.3-5.el7.noarch as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nodejs14-nodejs-docs-0:14.21.3-5.el7.noarch" + }, + "product_reference": "rh-nodejs14-nodejs-docs-0:14.21.3-5.el7.noarch", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.ppc64le as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.ppc64le" + }, + "product_reference": "rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.ppc64le", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.s390x as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.s390x" + }, + "product_reference": "rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.s390x", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.x86_64 as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.x86_64" + }, + "product_reference": "rh-nodejs14-nodejs-full-i18n-0:14.21.3-5.el7.x86_64", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.ppc64le as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.ppc64le" + }, + "product_reference": "rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.ppc64le", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.s390x as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.s390x" + }, + "product_reference": "rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.s390x", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.x86_64 as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.x86_64" + }, + "product_reference": "rh-nodejs14-npm-0:6.14.18-14.21.3.5.el7.x86_64", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-0:6.0.8-2.el7.3.ppc64le as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-varnish6-varnish-0:6.0.8-2.el7.3.ppc64le" + }, + "product_reference": "rh-varnish6-varnish-0:6.0.8-2.el7.3.ppc64le", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-0:6.0.8-2.el7.3.s390x as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-varnish6-varnish-0:6.0.8-2.el7.3.s390x" + }, + "product_reference": "rh-varnish6-varnish-0:6.0.8-2.el7.3.s390x", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-0:6.0.8-2.el7.3.src as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-varnish6-varnish-0:6.0.8-2.el7.3.src" + }, + "product_reference": "rh-varnish6-varnish-0:6.0.8-2.el7.3.src", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-0:6.0.8-2.el7.3.x86_64 as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-varnish6-varnish-0:6.0.8-2.el7.3.x86_64" + }, + "product_reference": "rh-varnish6-varnish-0:6.0.8-2.el7.3.x86_64", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.ppc64le as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.ppc64le" + }, + "product_reference": "rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.ppc64le", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.s390x as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.s390x" + }, + "product_reference": "rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.s390x", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.x86_64 as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.x86_64" + }, + "product_reference": "rh-varnish6-varnish-devel-0:6.0.8-2.el7.3.x86_64", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.ppc64le as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.ppc64le" + }, + "product_reference": "rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.ppc64le", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.s390x as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.s390x" + }, + "product_reference": "rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.s390x", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.x86_64 as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.x86_64" + }, + "product_reference": "rh-varnish6-varnish-docs-0:6.0.8-2.el7.3.x86_64", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.ppc64le as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.ppc64le" + }, + "product_reference": "rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.ppc64le", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.s390x as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.s390x" + }, + "product_reference": "rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.s390x", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.x86_64 as a component of Red Hat Software Collections for RHEL(v. 7)", + "product_id": "7Workstation-RHSCL-3.8:rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.x86_64" + }, + "product_reference": "rh-varnish6-varnish-libs-0:6.0.8-2.el7.3.x86_64", + "relates_to_product_reference": "7Workstation-RHSCL-3.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-aspnetcore-runtime-6.0-0:6.0.23-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-dotNET-6.0:rh-dotnet60-aspnetcore-runtime-6.0-0:6.0.23-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-aspnetcore-runtime-6.0-0:6.0.23-1.el7_9.x86_64", + "relates_to_product_reference": "7Workstation-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-aspnetcore-targeting-pack-6.0-0:6.0.23-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-dotNET-6.0:rh-dotnet60-aspnetcore-targeting-pack-6.0-0:6.0.23-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-aspnetcore-targeting-pack-6.0-0:6.0.23-1.el7_9.x86_64", + "relates_to_product_reference": "7Workstation-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-0:6.0.123-1.el7_9.src as a component of .NET Core on Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-dotNET-6.0:rh-dotnet60-dotnet-0:6.0.123-1.el7_9.src" + }, + "product_reference": "rh-dotnet60-dotnet-0:6.0.123-1.el7_9.src", + "relates_to_product_reference": "7Workstation-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-0:6.0.123-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-dotNET-6.0:rh-dotnet60-dotnet-0:6.0.123-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-0:6.0.123-1.el7_9.x86_64", + "relates_to_product_reference": "7Workstation-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-apphost-pack-6.0-0:6.0.23-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-dotNET-6.0:rh-dotnet60-dotnet-apphost-pack-6.0-0:6.0.23-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-apphost-pack-6.0-0:6.0.23-1.el7_9.x86_64", + "relates_to_product_reference": "7Workstation-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-debuginfo-0:6.0.123-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-dotNET-6.0:rh-dotnet60-dotnet-debuginfo-0:6.0.123-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-debuginfo-0:6.0.123-1.el7_9.x86_64", + "relates_to_product_reference": "7Workstation-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-host-0:6.0.23-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-dotNET-6.0:rh-dotnet60-dotnet-host-0:6.0.23-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-host-0:6.0.23-1.el7_9.x86_64", + "relates_to_product_reference": "7Workstation-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-hostfxr-6.0-0:6.0.23-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-dotNET-6.0:rh-dotnet60-dotnet-hostfxr-6.0-0:6.0.23-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-hostfxr-6.0-0:6.0.23-1.el7_9.x86_64", + "relates_to_product_reference": "7Workstation-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-runtime-6.0-0:6.0.23-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-dotNET-6.0:rh-dotnet60-dotnet-runtime-6.0-0:6.0.23-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-runtime-6.0-0:6.0.23-1.el7_9.x86_64", + "relates_to_product_reference": "7Workstation-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-sdk-6.0-0:6.0.123-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-dotNET-6.0:rh-dotnet60-dotnet-sdk-6.0-0:6.0.123-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-sdk-6.0-0:6.0.123-1.el7_9.x86_64", + "relates_to_product_reference": "7Workstation-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-dotNET-6.0:rh-dotnet60-dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el7_9.x86_64", + "relates_to_product_reference": "7Workstation-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-targeting-pack-6.0-0:6.0.23-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-dotNET-6.0:rh-dotnet60-dotnet-targeting-pack-6.0-0:6.0.23-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-targeting-pack-6.0-0:6.0.23-1.el7_9.x86_64", + "relates_to_product_reference": "7Workstation-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-dotnet-templates-6.0-0:6.0.123-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-dotNET-6.0:rh-dotnet60-dotnet-templates-6.0-0:6.0.123-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-dotnet-templates-6.0-0:6.0.123-1.el7_9.x86_64", + "relates_to_product_reference": "7Workstation-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-dotnet60-netstandard-targeting-pack-2.1-0:6.0.123-1.el7_9.x86_64 as a component of .NET Core on Red Hat Enterprise Linux Workstation (v. 7)", + "product_id": "7Workstation-dotNET-6.0:rh-dotnet60-netstandard-targeting-pack-2.1-0:6.0.123-1.el7_9.x86_64" + }, + "product_reference": "rh-dotnet60-netstandard-targeting-pack-2.1-0:6.0.123-1.el7_9.x86_64", + "relates_to_product_reference": "7Workstation-dotNET-6.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman_ygg_worker-0:0.2.2-1.el7sat.ppc64le as a component of Satellite Client 6 for RHEL 7", + "product_id": "7Workstation-satellite-client-6:foreman_ygg_worker-0:0.2.2-1.el7sat.ppc64le" + }, + "product_reference": "foreman_ygg_worker-0:0.2.2-1.el7sat.ppc64le", + "relates_to_product_reference": "7Workstation-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman_ygg_worker-0:0.2.2-1.el7sat.src as a component of Satellite Client 6 for RHEL 7", + "product_id": "7Workstation-satellite-client-6:foreman_ygg_worker-0:0.2.2-1.el7sat.src" + }, + "product_reference": "foreman_ygg_worker-0:0.2.2-1.el7sat.src", + "relates_to_product_reference": "7Workstation-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman_ygg_worker-0:0.2.2-1.el7sat.x86_64 as a component of Satellite Client 6 for RHEL 7", + "product_id": "7Workstation-satellite-client-6:foreman_ygg_worker-0:0.2.2-1.el7sat.x86_64" + }, + "product_reference": "foreman_ygg_worker-0:0.2.2-1.el7sat.x86_64", + "relates_to_product_reference": "7Workstation-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el7sat.src as a component of Satellite Client 6 for RHEL 7", + "product_id": "7Workstation-satellite-client-6:puppet-agent-0:7.26.0-3.el7sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el7sat.src", + "relates_to_product_reference": "7Workstation-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el7sat.x86_64 as a component of Satellite Client 6 for RHEL 7", + "product_id": "7Workstation-satellite-client-6:puppet-agent-0:7.26.0-3.el7sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el7sat.x86_64", + "relates_to_product_reference": "7Workstation-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-0:0.2.3-1.el7sat.ppc64le as a component of Satellite Client 6 for RHEL 7", + "product_id": "7Workstation-satellite-client-6:yggdrasil-0:0.2.3-1.el7sat.ppc64le" + }, + "product_reference": "yggdrasil-0:0.2.3-1.el7sat.ppc64le", + "relates_to_product_reference": "7Workstation-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-0:0.2.3-1.el7sat.src as a component of Satellite Client 6 for RHEL 7", + "product_id": "7Workstation-satellite-client-6:yggdrasil-0:0.2.3-1.el7sat.src" + }, + "product_reference": "yggdrasil-0:0.2.3-1.el7sat.src", + "relates_to_product_reference": "7Workstation-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-0:0.2.3-1.el7sat.x86_64 as a component of Satellite Client 6 for RHEL 7", + "product_id": "7Workstation-satellite-client-6:yggdrasil-0:0.2.3-1.el7sat.x86_64" + }, + "product_reference": "yggdrasil-0:0.2.3-1.el7sat.x86_64", + "relates_to_product_reference": "7Workstation-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/aap-cloud-billing-rhel8-operator@sha256:3151364d2c3359a253e6f95fe296ad9842bcf859a4d05e65abc1283f7646f986_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4-Cloud-Billing:ansible-automation-platform-24/aap-cloud-billing-rhel8-operator@sha256:3151364d2c3359a253e6f95fe296ad9842bcf859a4d05e65abc1283f7646f986_amd64" + }, + "product_reference": "ansible-automation-platform-24/aap-cloud-billing-rhel8-operator@sha256:3151364d2c3359a253e6f95fe296ad9842bcf859a4d05e65abc1283f7646f986_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4-Cloud-Billing" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/aap-cloud-billing-rhel8@sha256:f650486925c3bb5ff56570543839ef8ab668c91bba11a30aeceba22b0cf25b3e_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4-Cloud-Billing:ansible-automation-platform-24/aap-cloud-billing-rhel8@sha256:f650486925c3bb5ff56570543839ef8ab668c91bba11a30aeceba22b0cf25b3e_amd64" + }, + "product_reference": "ansible-automation-platform-24/aap-cloud-billing-rhel8@sha256:f650486925c3bb5ff56570543839ef8ab668c91bba11a30aeceba22b0cf25b3e_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4-Cloud-Billing" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/aap-cloud-metrics-collector-rhel8@sha256:738e8ad888db5fa2205b9eb809b25ee98b77b47e7cb009d7aef94e0ab09c9492_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4-Cloud-Billing:ansible-automation-platform-24/aap-cloud-metrics-collector-rhel8@sha256:738e8ad888db5fa2205b9eb809b25ee98b77b47e7cb009d7aef94e0ab09c9492_amd64" + }, + "product_reference": "ansible-automation-platform-24/aap-cloud-metrics-collector-rhel8@sha256:738e8ad888db5fa2205b9eb809b25ee98b77b47e7cb009d7aef94e0ab09c9492_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4-Cloud-Billing" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/aap-cloud-ui-rhel8-operator@sha256:2826678e9aca4fc567567c36f0d7af6cc22ee85fcfb23d3552534712685d512d_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4-Cloud-Billing:ansible-automation-platform-24/aap-cloud-ui-rhel8-operator@sha256:2826678e9aca4fc567567c36f0d7af6cc22ee85fcfb23d3552534712685d512d_amd64" + }, + "product_reference": "ansible-automation-platform-24/aap-cloud-ui-rhel8-operator@sha256:2826678e9aca4fc567567c36f0d7af6cc22ee85fcfb23d3552534712685d512d_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4-Cloud-Billing" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/aap-cloud-ui-rhel8@sha256:0d0b96befa8957940d289d905517a6e2ef687cc28c9e68c29acb7813a90a13a6_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4-Cloud-Billing:ansible-automation-platform-24/aap-cloud-ui-rhel8@sha256:0d0b96befa8957940d289d905517a6e2ef687cc28c9e68c29acb7813a90a13a6_amd64" + }, + "product_reference": "ansible-automation-platform-24/aap-cloud-ui-rhel8@sha256:0d0b96befa8957940d289d905517a6e2ef687cc28c9e68c29acb7813a90a13a6_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4-Cloud-Billing" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el8ap.aarch64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4-Developer-1.1:receptor-0:1.4.2-1.el8ap.aarch64" + }, + "product_reference": "receptor-0:1.4.2-1.el8ap.aarch64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4-Developer-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el8ap.ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4-Developer-1.1:receptor-0:1.4.2-1.el8ap.ppc64le" + }, + "product_reference": "receptor-0:1.4.2-1.el8ap.ppc64le", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4-Developer-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el8ap.s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4-Developer-1.1:receptor-0:1.4.2-1.el8ap.s390x" + }, + "product_reference": "receptor-0:1.4.2-1.el8ap.s390x", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4-Developer-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el8ap.src as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4-Developer-1.1:receptor-0:1.4.2-1.el8ap.src" + }, + "product_reference": "receptor-0:1.4.2-1.el8ap.src", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4-Developer-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el8ap.x86_64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4-Developer-1.1:receptor-0:1.4.2-1.el8ap.x86_64" + }, + "product_reference": "receptor-0:1.4.2-1.el8ap.x86_64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4-Developer-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptorctl-0:1.4.2-1.el8ap.noarch as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4-Developer-1.1:receptorctl-0:1.4.2-1.el8ap.noarch" + }, + "product_reference": "receptorctl-0:1.4.2-1.el8ap.noarch", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4-Developer-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el8ap.aarch64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4-Inside-1.2:receptor-0:1.4.2-1.el8ap.aarch64" + }, + "product_reference": "receptor-0:1.4.2-1.el8ap.aarch64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4-Inside-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el8ap.ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4-Inside-1.2:receptor-0:1.4.2-1.el8ap.ppc64le" + }, + "product_reference": "receptor-0:1.4.2-1.el8ap.ppc64le", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4-Inside-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el8ap.s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4-Inside-1.2:receptor-0:1.4.2-1.el8ap.s390x" + }, + "product_reference": "receptor-0:1.4.2-1.el8ap.s390x", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4-Inside-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el8ap.src as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4-Inside-1.2:receptor-0:1.4.2-1.el8ap.src" + }, + "product_reference": "receptor-0:1.4.2-1.el8ap.src", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4-Inside-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el8ap.x86_64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4-Inside-1.2:receptor-0:1.4.2-1.el8ap.x86_64" + }, + "product_reference": "receptor-0:1.4.2-1.el8ap.x86_64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4-Inside-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptorctl-0:1.4.2-1.el8ap.noarch as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4-Inside-1.2:receptorctl-0:1.4.2-1.el8ap.noarch" + }, + "product_reference": "receptorctl-0:1.4.2-1.el8ap.noarch", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4-Inside-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/aap-must-gather-rhel8@sha256:1ff8637546e4244650e7ad05e9e287c041198d4848a0834c4b505c73ec2adc40_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/aap-must-gather-rhel8@sha256:1ff8637546e4244650e7ad05e9e287c041198d4848a0834c4b505c73ec2adc40_amd64" + }, + "product_reference": "ansible-automation-platform-24/aap-must-gather-rhel8@sha256:1ff8637546e4244650e7ad05e9e287c041198d4848a0834c4b505c73ec2adc40_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/aap-must-gather-rhel8@sha256:53a9a6779f8569b03faec060888f39d2d3f071d3a4af8269f66490abd8bfad7e_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/aap-must-gather-rhel8@sha256:53a9a6779f8569b03faec060888f39d2d3f071d3a4af8269f66490abd8bfad7e_arm64" + }, + "product_reference": "ansible-automation-platform-24/aap-must-gather-rhel8@sha256:53a9a6779f8569b03faec060888f39d2d3f071d3a4af8269f66490abd8bfad7e_arm64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/aap-must-gather-rhel8@sha256:ba77e7f17865da4d59f91b69ab58cbeafaa86debe50d2d6fb89e9812f4aed1c7_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/aap-must-gather-rhel8@sha256:ba77e7f17865da4d59f91b69ab58cbeafaa86debe50d2d6fb89e9812f4aed1c7_s390x" + }, + "product_reference": "ansible-automation-platform-24/aap-must-gather-rhel8@sha256:ba77e7f17865da4d59f91b69ab58cbeafaa86debe50d2d6fb89e9812f4aed1c7_s390x", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/aap-must-gather-rhel8@sha256:d1730361a768cc0dc847958b872eac8befb5bcbe87d4fc18098b9ff4ed072cf3_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/aap-must-gather-rhel8@sha256:d1730361a768cc0dc847958b872eac8befb5bcbe87d4fc18098b9ff4ed072cf3_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/aap-must-gather-rhel8@sha256:d1730361a768cc0dc847958b872eac8befb5bcbe87d4fc18098b9ff4ed072cf3_ppc64le", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ansible-builder-rhel8@sha256:0089971676a347149081311def7417185edfeac0fa0fb09bac556d1e4ac17971_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ansible-builder-rhel8@sha256:0089971676a347149081311def7417185edfeac0fa0fb09bac556d1e4ac17971_arm64" + }, + "product_reference": "ansible-automation-platform-24/ansible-builder-rhel8@sha256:0089971676a347149081311def7417185edfeac0fa0fb09bac556d1e4ac17971_arm64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ansible-builder-rhel8@sha256:0a5ae31195b5b32e8f0800a301ce0e1e282812af59c667c4b40af82a8ca09d62_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ansible-builder-rhel8@sha256:0a5ae31195b5b32e8f0800a301ce0e1e282812af59c667c4b40af82a8ca09d62_amd64" + }, + "product_reference": "ansible-automation-platform-24/ansible-builder-rhel8@sha256:0a5ae31195b5b32e8f0800a301ce0e1e282812af59c667c4b40af82a8ca09d62_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ansible-builder-rhel8@sha256:73220bd2c0da0524f6eb6c7a88378ee9970a804a998f039fa14683cf5d7adf2f_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ansible-builder-rhel8@sha256:73220bd2c0da0524f6eb6c7a88378ee9970a804a998f039fa14683cf5d7adf2f_s390x" + }, + "product_reference": "ansible-automation-platform-24/ansible-builder-rhel8@sha256:73220bd2c0da0524f6eb6c7a88378ee9970a804a998f039fa14683cf5d7adf2f_s390x", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ansible-builder-rhel8@sha256:9aa60f9acfd33709262f38091589521ef49674607e69a3baa6f3d9c9508a10fe_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ansible-builder-rhel8@sha256:9aa60f9acfd33709262f38091589521ef49674607e69a3baa6f3d9c9508a10fe_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/ansible-builder-rhel8@sha256:9aa60f9acfd33709262f38091589521ef49674607e69a3baa6f3d9c9508a10fe_ppc64le", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ansible-python-base-rhel8@sha256:5cf9e0d8a0ad5b1492187b177751cede769b53dc830e5b1bc5dcdd110a71a397_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ansible-python-base-rhel8@sha256:5cf9e0d8a0ad5b1492187b177751cede769b53dc830e5b1bc5dcdd110a71a397_amd64" + }, + "product_reference": "ansible-automation-platform-24/ansible-python-base-rhel8@sha256:5cf9e0d8a0ad5b1492187b177751cede769b53dc830e5b1bc5dcdd110a71a397_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ansible-python-base-rhel8@sha256:6599eee6f2b0b8c08ea3dc49598f97aea3b53b456afcc410dd740c39bbfdcd63_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ansible-python-base-rhel8@sha256:6599eee6f2b0b8c08ea3dc49598f97aea3b53b456afcc410dd740c39bbfdcd63_arm64" + }, + "product_reference": "ansible-automation-platform-24/ansible-python-base-rhel8@sha256:6599eee6f2b0b8c08ea3dc49598f97aea3b53b456afcc410dd740c39bbfdcd63_arm64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ansible-python-base-rhel8@sha256:697fa0ba756009f66eb78f1feb4f9597da4b2382644c76f7755d29dd70aecea2_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ansible-python-base-rhel8@sha256:697fa0ba756009f66eb78f1feb4f9597da4b2382644c76f7755d29dd70aecea2_s390x" + }, + "product_reference": "ansible-automation-platform-24/ansible-python-base-rhel8@sha256:697fa0ba756009f66eb78f1feb4f9597da4b2382644c76f7755d29dd70aecea2_s390x", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ansible-python-base-rhel8@sha256:dd8c5dc68cf8d71a563743040922540101be6c1b29c2f565e1352ece5b68377b_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ansible-python-base-rhel8@sha256:dd8c5dc68cf8d71a563743040922540101be6c1b29c2f565e1352ece5b68377b_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/ansible-python-base-rhel8@sha256:dd8c5dc68cf8d71a563743040922540101be6c1b29c2f565e1352ece5b68377b_ppc64le", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ansible-python-toolkit-rhel8@sha256:9273cfd468a23859d784dc3fbf2ad1abb04892e6a3f2ad55d8d2e7c623d0419f_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ansible-python-toolkit-rhel8@sha256:9273cfd468a23859d784dc3fbf2ad1abb04892e6a3f2ad55d8d2e7c623d0419f_s390x" + }, + "product_reference": "ansible-automation-platform-24/ansible-python-toolkit-rhel8@sha256:9273cfd468a23859d784dc3fbf2ad1abb04892e6a3f2ad55d8d2e7c623d0419f_s390x", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ansible-python-toolkit-rhel8@sha256:99e842a1ca0ea2234c09a8a9466d936968ef36032c102e26fa761089528461e7_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ansible-python-toolkit-rhel8@sha256:99e842a1ca0ea2234c09a8a9466d936968ef36032c102e26fa761089528461e7_amd64" + }, + "product_reference": "ansible-automation-platform-24/ansible-python-toolkit-rhel8@sha256:99e842a1ca0ea2234c09a8a9466d936968ef36032c102e26fa761089528461e7_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ansible-python-toolkit-rhel8@sha256:d2d4b79f72dfe3f646f27b2c35e5108ed3a3c867fd0b9c04d0193e6ec717ad75_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ansible-python-toolkit-rhel8@sha256:d2d4b79f72dfe3f646f27b2c35e5108ed3a3c867fd0b9c04d0193e6ec717ad75_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/ansible-python-toolkit-rhel8@sha256:d2d4b79f72dfe3f646f27b2c35e5108ed3a3c867fd0b9c04d0193e6ec717ad75_ppc64le", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ansible-python-toolkit-rhel8@sha256:d6ae7f3136a14984e33f46598f6e321ad72f3875e4c3f0a8c773e5046fb99f1a_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ansible-python-toolkit-rhel8@sha256:d6ae7f3136a14984e33f46598f6e321ad72f3875e4c3f0a8c773e5046fb99f1a_arm64" + }, + "product_reference": "ansible-automation-platform-24/ansible-python-toolkit-rhel8@sha256:d6ae7f3136a14984e33f46598f6e321ad72f3875e4c3f0a8c773e5046fb99f1a_arm64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/controller-rhel8-operator@sha256:013993b69238a181ef9be9c6cbd173f4af8280f6dc763e52a493e54e71069a01_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/controller-rhel8-operator@sha256:013993b69238a181ef9be9c6cbd173f4af8280f6dc763e52a493e54e71069a01_arm64" + }, + "product_reference": "ansible-automation-platform-24/controller-rhel8-operator@sha256:013993b69238a181ef9be9c6cbd173f4af8280f6dc763e52a493e54e71069a01_arm64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/controller-rhel8-operator@sha256:07a798fdc9b88ce7332a1300475e3a56d439b55a7ad5e10fd8d4e036661841cd_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/controller-rhel8-operator@sha256:07a798fdc9b88ce7332a1300475e3a56d439b55a7ad5e10fd8d4e036661841cd_amd64" + }, + "product_reference": "ansible-automation-platform-24/controller-rhel8-operator@sha256:07a798fdc9b88ce7332a1300475e3a56d439b55a7ad5e10fd8d4e036661841cd_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/controller-rhel8-operator@sha256:2e252f02c2695856d19d90299e2f1cc2bf93d7304e48da306628b12f4d56b037_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/controller-rhel8-operator@sha256:2e252f02c2695856d19d90299e2f1cc2bf93d7304e48da306628b12f4d56b037_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/controller-rhel8-operator@sha256:2e252f02c2695856d19d90299e2f1cc2bf93d7304e48da306628b12f4d56b037_ppc64le", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/controller-rhel8-operator@sha256:71dac652dd2a9588f1722c5147c8cc9cdb5c38d3cb3dc5a5e955c4cba6a3e57c_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/controller-rhel8-operator@sha256:71dac652dd2a9588f1722c5147c8cc9cdb5c38d3cb3dc5a5e955c4cba6a3e57c_s390x" + }, + "product_reference": "ansible-automation-platform-24/controller-rhel8-operator@sha256:71dac652dd2a9588f1722c5147c8cc9cdb5c38d3cb3dc5a5e955c4cba6a3e57c_s390x", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/controller-rhel8@sha256:11f4ad08d0d96223b17e08a5d07f0594d0d450fe94bd86ce6f57165d20eedfee_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/controller-rhel8@sha256:11f4ad08d0d96223b17e08a5d07f0594d0d450fe94bd86ce6f57165d20eedfee_amd64" + }, + "product_reference": "ansible-automation-platform-24/controller-rhel8@sha256:11f4ad08d0d96223b17e08a5d07f0594d0d450fe94bd86ce6f57165d20eedfee_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/controller-rhel8@sha256:6855d1b68735adde33f4ad83496e7ada4548e3fb1ad07cb7925dfb726d800da0_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/controller-rhel8@sha256:6855d1b68735adde33f4ad83496e7ada4548e3fb1ad07cb7925dfb726d800da0_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/controller-rhel8@sha256:6855d1b68735adde33f4ad83496e7ada4548e3fb1ad07cb7925dfb726d800da0_ppc64le", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/controller-rhel8@sha256:c8fdd92c3c2c497ab1d4ba8c96759e8f2dfe7f023df6c5021dfed672c98d0621_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/controller-rhel8@sha256:c8fdd92c3c2c497ab1d4ba8c96759e8f2dfe7f023df6c5021dfed672c98d0621_arm64" + }, + "product_reference": "ansible-automation-platform-24/controller-rhel8@sha256:c8fdd92c3c2c497ab1d4ba8c96759e8f2dfe7f023df6c5021dfed672c98d0621_arm64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/controller-rhel8@sha256:f346fa5d9a45ba329dc668e6a63672020fb579948b6c417ce76400e07ef928a5_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/controller-rhel8@sha256:f346fa5d9a45ba329dc668e6a63672020fb579948b6c417ce76400e07ef928a5_s390x" + }, + "product_reference": "ansible-automation-platform-24/controller-rhel8@sha256:f346fa5d9a45ba329dc668e6a63672020fb579948b6c417ce76400e07ef928a5_s390x", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/de-minimal-rhel8@sha256:1e2c70baa0950d9667715e4deda717db264ea07aaa097ed4c3e11025eb4c59a0_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/de-minimal-rhel8@sha256:1e2c70baa0950d9667715e4deda717db264ea07aaa097ed4c3e11025eb4c59a0_arm64" + }, + "product_reference": "ansible-automation-platform-24/de-minimal-rhel8@sha256:1e2c70baa0950d9667715e4deda717db264ea07aaa097ed4c3e11025eb4c59a0_arm64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/de-minimal-rhel8@sha256:3407db77ac87aecdc3bd3d32294672192caadd5779858d9c1ca559eef0dcf431_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/de-minimal-rhel8@sha256:3407db77ac87aecdc3bd3d32294672192caadd5779858d9c1ca559eef0dcf431_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/de-minimal-rhel8@sha256:3407db77ac87aecdc3bd3d32294672192caadd5779858d9c1ca559eef0dcf431_ppc64le", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/de-minimal-rhel8@sha256:6bf6294838abf4584f07500c9d61e7358d706f5754e1171e6a4184957e272d18_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/de-minimal-rhel8@sha256:6bf6294838abf4584f07500c9d61e7358d706f5754e1171e6a4184957e272d18_s390x" + }, + "product_reference": "ansible-automation-platform-24/de-minimal-rhel8@sha256:6bf6294838abf4584f07500c9d61e7358d706f5754e1171e6a4184957e272d18_s390x", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/de-minimal-rhel8@sha256:8c7d062a28b7e54510c1aa45598a6e7c0777962b0c5d1dd1eff77e2203aabc93_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/de-minimal-rhel8@sha256:8c7d062a28b7e54510c1aa45598a6e7c0777962b0c5d1dd1eff77e2203aabc93_amd64" + }, + "product_reference": "ansible-automation-platform-24/de-minimal-rhel8@sha256:8c7d062a28b7e54510c1aa45598a6e7c0777962b0c5d1dd1eff77e2203aabc93_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/de-supported-rhel8@sha256:037b08f1cdf2bd0ba488ec02d6c4136171cadad65017f4331fb8e6d8b9ec8ffb_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/de-supported-rhel8@sha256:037b08f1cdf2bd0ba488ec02d6c4136171cadad65017f4331fb8e6d8b9ec8ffb_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/de-supported-rhel8@sha256:037b08f1cdf2bd0ba488ec02d6c4136171cadad65017f4331fb8e6d8b9ec8ffb_ppc64le", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/de-supported-rhel8@sha256:3abdaa6c02011ee543838612626d895980298d6e505e510f4a2b75e6ee0d6315_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/de-supported-rhel8@sha256:3abdaa6c02011ee543838612626d895980298d6e505e510f4a2b75e6ee0d6315_amd64" + }, + "product_reference": "ansible-automation-platform-24/de-supported-rhel8@sha256:3abdaa6c02011ee543838612626d895980298d6e505e510f4a2b75e6ee0d6315_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/de-supported-rhel8@sha256:d4d8984a1e1191d58e402dfd9f7d80a1f3bf714b774cc0837809ccabbbbfdb03_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/de-supported-rhel8@sha256:d4d8984a1e1191d58e402dfd9f7d80a1f3bf714b774cc0837809ccabbbbfdb03_arm64" + }, + "product_reference": "ansible-automation-platform-24/de-supported-rhel8@sha256:d4d8984a1e1191d58e402dfd9f7d80a1f3bf714b774cc0837809ccabbbbfdb03_arm64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/de-supported-rhel8@sha256:dcdf4678c085dcb1014930901def587b01e780ce45a471f17a9c39de221b0757_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/de-supported-rhel8@sha256:dcdf4678c085dcb1014930901def587b01e780ce45a471f17a9c39de221b0757_s390x" + }, + "product_reference": "ansible-automation-platform-24/de-supported-rhel8@sha256:dcdf4678c085dcb1014930901def587b01e780ce45a471f17a9c39de221b0757_s390x", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/eda-controller-rhel8-operator@sha256:4220b98f9d8e805a77a4a4ef95855b8f2c61467a02f686c7b547496831493746_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/eda-controller-rhel8-operator@sha256:4220b98f9d8e805a77a4a4ef95855b8f2c61467a02f686c7b547496831493746_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/eda-controller-rhel8-operator@sha256:4220b98f9d8e805a77a4a4ef95855b8f2c61467a02f686c7b547496831493746_ppc64le", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/eda-controller-rhel8-operator@sha256:683b9705958bb94e2f3fa8901c19ffd4d2a3967104fec3a969a46fa7e5702507_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/eda-controller-rhel8-operator@sha256:683b9705958bb94e2f3fa8901c19ffd4d2a3967104fec3a969a46fa7e5702507_arm64" + }, + "product_reference": "ansible-automation-platform-24/eda-controller-rhel8-operator@sha256:683b9705958bb94e2f3fa8901c19ffd4d2a3967104fec3a969a46fa7e5702507_arm64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/eda-controller-rhel8-operator@sha256:b533066a88203acca58a7355f379018eb270f0c932c35f8170e76bfe658ef84b_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/eda-controller-rhel8-operator@sha256:b533066a88203acca58a7355f379018eb270f0c932c35f8170e76bfe658ef84b_s390x" + }, + "product_reference": "ansible-automation-platform-24/eda-controller-rhel8-operator@sha256:b533066a88203acca58a7355f379018eb270f0c932c35f8170e76bfe658ef84b_s390x", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/eda-controller-rhel8-operator@sha256:f9f8d32c2ab60ab6c30bfcdec7778f6eb67ba30015d9453afd67ab334c8c2fe5_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/eda-controller-rhel8-operator@sha256:f9f8d32c2ab60ab6c30bfcdec7778f6eb67ba30015d9453afd67ab334c8c2fe5_amd64" + }, + "product_reference": "ansible-automation-platform-24/eda-controller-rhel8-operator@sha256:f9f8d32c2ab60ab6c30bfcdec7778f6eb67ba30015d9453afd67ab334c8c2fe5_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/eda-controller-rhel8@sha256:2bc05e35b21a826737e8bc523924d8137a531003d2ba2466243f4172708f2cbc_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/eda-controller-rhel8@sha256:2bc05e35b21a826737e8bc523924d8137a531003d2ba2466243f4172708f2cbc_arm64" + }, + "product_reference": "ansible-automation-platform-24/eda-controller-rhel8@sha256:2bc05e35b21a826737e8bc523924d8137a531003d2ba2466243f4172708f2cbc_arm64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/eda-controller-rhel8@sha256:3059b9a6c38deb5aac3fb60875214fe2dafe50cda028638816ec67741169ec73_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/eda-controller-rhel8@sha256:3059b9a6c38deb5aac3fb60875214fe2dafe50cda028638816ec67741169ec73_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/eda-controller-rhel8@sha256:3059b9a6c38deb5aac3fb60875214fe2dafe50cda028638816ec67741169ec73_ppc64le", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/eda-controller-rhel8@sha256:7d75552ba2d42b0f85695e9a71ff71dd781bce0452590d89c12a8fc9f1a501ff_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/eda-controller-rhel8@sha256:7d75552ba2d42b0f85695e9a71ff71dd781bce0452590d89c12a8fc9f1a501ff_s390x" + }, + "product_reference": "ansible-automation-platform-24/eda-controller-rhel8@sha256:7d75552ba2d42b0f85695e9a71ff71dd781bce0452590d89c12a8fc9f1a501ff_s390x", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/eda-controller-rhel8@sha256:fd7e96d6b70e0a1b13f0f34e7f14d4de14d07f0db6c449c20e1211bc3982205e_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/eda-controller-rhel8@sha256:fd7e96d6b70e0a1b13f0f34e7f14d4de14d07f0db6c449c20e1211bc3982205e_amd64" + }, + "product_reference": "ansible-automation-platform-24/eda-controller-rhel8@sha256:fd7e96d6b70e0a1b13f0f34e7f14d4de14d07f0db6c449c20e1211bc3982205e_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/eda-controller-ui-rhel8@sha256:56b46c50edef8f427dbc11d32c493ccc3b12df9dc9f553c2e8d3740313ae3cd1_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/eda-controller-ui-rhel8@sha256:56b46c50edef8f427dbc11d32c493ccc3b12df9dc9f553c2e8d3740313ae3cd1_amd64" + }, + "product_reference": "ansible-automation-platform-24/eda-controller-ui-rhel8@sha256:56b46c50edef8f427dbc11d32c493ccc3b12df9dc9f553c2e8d3740313ae3cd1_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/eda-controller-ui-rhel8@sha256:7eeca90468dde408d820ffb7b530d0cef615fe6f4a7e852b47ff18028cc09ecc_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/eda-controller-ui-rhel8@sha256:7eeca90468dde408d820ffb7b530d0cef615fe6f4a7e852b47ff18028cc09ecc_s390x" + }, + "product_reference": "ansible-automation-platform-24/eda-controller-ui-rhel8@sha256:7eeca90468dde408d820ffb7b530d0cef615fe6f4a7e852b47ff18028cc09ecc_s390x", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/eda-controller-ui-rhel8@sha256:88f5e52c33ca6ff00cb1fd37753a2b1f9e4b6b2a07977e68b71262a8d7a4c58b_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/eda-controller-ui-rhel8@sha256:88f5e52c33ca6ff00cb1fd37753a2b1f9e4b6b2a07977e68b71262a8d7a4c58b_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/eda-controller-ui-rhel8@sha256:88f5e52c33ca6ff00cb1fd37753a2b1f9e4b6b2a07977e68b71262a8d7a4c58b_ppc64le", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/eda-controller-ui-rhel8@sha256:ee508e6aaaf56c6ec9025d7650000a39a7b05319b570e6961eb72d20623793d9_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/eda-controller-ui-rhel8@sha256:ee508e6aaaf56c6ec9025d7650000a39a7b05319b570e6961eb72d20623793d9_arm64" + }, + "product_reference": "ansible-automation-platform-24/eda-controller-ui-rhel8@sha256:ee508e6aaaf56c6ec9025d7650000a39a7b05319b570e6961eb72d20623793d9_arm64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ee-29-rhel8@sha256:5685c052ba6b6d3eec7b7c740ba6b967e92f1fa22631dcf2fe048c57d16cf12a_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ee-29-rhel8@sha256:5685c052ba6b6d3eec7b7c740ba6b967e92f1fa22631dcf2fe048c57d16cf12a_amd64" + }, + "product_reference": "ansible-automation-platform-24/ee-29-rhel8@sha256:5685c052ba6b6d3eec7b7c740ba6b967e92f1fa22631dcf2fe048c57d16cf12a_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ee-cloud-services-rhel8@sha256:d0797635652c5d9044da6c9f3ecbcc174bf7a9823f1c72cde44830cfe4f5ff56_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ee-cloud-services-rhel8@sha256:d0797635652c5d9044da6c9f3ecbcc174bf7a9823f1c72cde44830cfe4f5ff56_amd64" + }, + "product_reference": "ansible-automation-platform-24/ee-cloud-services-rhel8@sha256:d0797635652c5d9044da6c9f3ecbcc174bf7a9823f1c72cde44830cfe4f5ff56_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ee-dellemc-openmanage-rhel8@sha256:628f7596505a9ab111cfcd1d3a1eb11e537dbf663d9b802e3cc94af8dbfa05d6_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ee-dellemc-openmanage-rhel8@sha256:628f7596505a9ab111cfcd1d3a1eb11e537dbf663d9b802e3cc94af8dbfa05d6_arm64" + }, + "product_reference": "ansible-automation-platform-24/ee-dellemc-openmanage-rhel8@sha256:628f7596505a9ab111cfcd1d3a1eb11e537dbf663d9b802e3cc94af8dbfa05d6_arm64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ee-dellemc-openmanage-rhel8@sha256:894f470c00c9bffad51ba8e8aecac867345c6e3f90227d773699cf8ef25120eb_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ee-dellemc-openmanage-rhel8@sha256:894f470c00c9bffad51ba8e8aecac867345c6e3f90227d773699cf8ef25120eb_amd64" + }, + "product_reference": "ansible-automation-platform-24/ee-dellemc-openmanage-rhel8@sha256:894f470c00c9bffad51ba8e8aecac867345c6e3f90227d773699cf8ef25120eb_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ee-minimal-rhel8@sha256:382c4b91e8c8b30b51d3168b4a16f7c75c96198f4699c301bd03d686c8e85ae7_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ee-minimal-rhel8@sha256:382c4b91e8c8b30b51d3168b4a16f7c75c96198f4699c301bd03d686c8e85ae7_s390x" + }, + "product_reference": "ansible-automation-platform-24/ee-minimal-rhel8@sha256:382c4b91e8c8b30b51d3168b4a16f7c75c96198f4699c301bd03d686c8e85ae7_s390x", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ee-minimal-rhel8@sha256:5a2b269ebe2bbb5f27af823cc13c3ce06ade36f43480aa56d41d654d5ef139e3_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ee-minimal-rhel8@sha256:5a2b269ebe2bbb5f27af823cc13c3ce06ade36f43480aa56d41d654d5ef139e3_arm64" + }, + "product_reference": "ansible-automation-platform-24/ee-minimal-rhel8@sha256:5a2b269ebe2bbb5f27af823cc13c3ce06ade36f43480aa56d41d654d5ef139e3_arm64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ee-minimal-rhel8@sha256:63ea2ecffbf408183f3f37e4c1df4e3a77b9f4c0806d2ef3141d102470661e38_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ee-minimal-rhel8@sha256:63ea2ecffbf408183f3f37e4c1df4e3a77b9f4c0806d2ef3141d102470661e38_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/ee-minimal-rhel8@sha256:63ea2ecffbf408183f3f37e4c1df4e3a77b9f4c0806d2ef3141d102470661e38_ppc64le", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ee-minimal-rhel8@sha256:c4c7158dfc2c317c62aed28f6db21bc347aca92b8301a6cb932c1a5fbf3eac87_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ee-minimal-rhel8@sha256:c4c7158dfc2c317c62aed28f6db21bc347aca92b8301a6cb932c1a5fbf3eac87_amd64" + }, + "product_reference": "ansible-automation-platform-24/ee-minimal-rhel8@sha256:c4c7158dfc2c317c62aed28f6db21bc347aca92b8301a6cb932c1a5fbf3eac87_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ee-supported-rhel8@sha256:72098dcaf2cf2174557428f1121c5926b905dfaa0aad160d3064d171946f298e_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ee-supported-rhel8@sha256:72098dcaf2cf2174557428f1121c5926b905dfaa0aad160d3064d171946f298e_amd64" + }, + "product_reference": "ansible-automation-platform-24/ee-supported-rhel8@sha256:72098dcaf2cf2174557428f1121c5926b905dfaa0aad160d3064d171946f298e_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ee-supported-rhel8@sha256:97e133b817c1aac347642b414ca6cb108fec25434b945c398bae6763f1596c5e_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ee-supported-rhel8@sha256:97e133b817c1aac347642b414ca6cb108fec25434b945c398bae6763f1596c5e_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/ee-supported-rhel8@sha256:97e133b817c1aac347642b414ca6cb108fec25434b945c398bae6763f1596c5e_ppc64le", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ee-supported-rhel8@sha256:a5641fd059a00dff89f846472bf2c139c15ac2908328b03f86ab67087a1dbcf4_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ee-supported-rhel8@sha256:a5641fd059a00dff89f846472bf2c139c15ac2908328b03f86ab67087a1dbcf4_s390x" + }, + "product_reference": "ansible-automation-platform-24/ee-supported-rhel8@sha256:a5641fd059a00dff89f846472bf2c139c15ac2908328b03f86ab67087a1dbcf4_s390x", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ee-supported-rhel8@sha256:adad7b24fba97c5649f320ebc72a6b6cbf280e552121a2081b0fe804b06ef78d_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ee-supported-rhel8@sha256:adad7b24fba97c5649f320ebc72a6b6cbf280e552121a2081b0fe804b06ef78d_arm64" + }, + "product_reference": "ansible-automation-platform-24/ee-supported-rhel8@sha256:adad7b24fba97c5649f320ebc72a6b6cbf280e552121a2081b0fe804b06ef78d_arm64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/hub-rhel8-operator@sha256:32fa50754404a12b4d4a58d4ef9def3f5e8225cb2cf1e56983df1677f621462e_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/hub-rhel8-operator@sha256:32fa50754404a12b4d4a58d4ef9def3f5e8225cb2cf1e56983df1677f621462e_s390x" + }, + "product_reference": "ansible-automation-platform-24/hub-rhel8-operator@sha256:32fa50754404a12b4d4a58d4ef9def3f5e8225cb2cf1e56983df1677f621462e_s390x", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/hub-rhel8-operator@sha256:ad9213450b9284c6e4323f9f8a5dfc42734ac95b67e5cd6a3afc3bd2945e993d_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/hub-rhel8-operator@sha256:ad9213450b9284c6e4323f9f8a5dfc42734ac95b67e5cd6a3afc3bd2945e993d_arm64" + }, + "product_reference": "ansible-automation-platform-24/hub-rhel8-operator@sha256:ad9213450b9284c6e4323f9f8a5dfc42734ac95b67e5cd6a3afc3bd2945e993d_arm64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/hub-rhel8-operator@sha256:b3064c6ba7b2cf491ced94cd9b6545306cb7d59e2054a0d7042daaa3c062246e_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/hub-rhel8-operator@sha256:b3064c6ba7b2cf491ced94cd9b6545306cb7d59e2054a0d7042daaa3c062246e_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/hub-rhel8-operator@sha256:b3064c6ba7b2cf491ced94cd9b6545306cb7d59e2054a0d7042daaa3c062246e_ppc64le", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/hub-rhel8-operator@sha256:f38fcf5efc4501f3111484cd9c5216f4014fcfd0088d4dd3ad6c14ad76dbe83a_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/hub-rhel8-operator@sha256:f38fcf5efc4501f3111484cd9c5216f4014fcfd0088d4dd3ad6c14ad76dbe83a_amd64" + }, + "product_reference": "ansible-automation-platform-24/hub-rhel8-operator@sha256:f38fcf5efc4501f3111484cd9c5216f4014fcfd0088d4dd3ad6c14ad76dbe83a_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/hub-rhel8@sha256:a27c12f79db64522884b304c30f40635c774f51596689670fd628f409a68663f_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/hub-rhel8@sha256:a27c12f79db64522884b304c30f40635c774f51596689670fd628f409a68663f_arm64" + }, + "product_reference": "ansible-automation-platform-24/hub-rhel8@sha256:a27c12f79db64522884b304c30f40635c774f51596689670fd628f409a68663f_arm64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/hub-rhel8@sha256:ac2b684d7ac8e0b6f36fe2da22b2ed41bfb24f8e2f77e64117c186a3cdf2f21b_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/hub-rhel8@sha256:ac2b684d7ac8e0b6f36fe2da22b2ed41bfb24f8e2f77e64117c186a3cdf2f21b_amd64" + }, + "product_reference": "ansible-automation-platform-24/hub-rhel8@sha256:ac2b684d7ac8e0b6f36fe2da22b2ed41bfb24f8e2f77e64117c186a3cdf2f21b_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/hub-rhel8@sha256:df80c45631e780f58aaf85edddaf77ed82c0b41f0ad766db048615290eeb96a3_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/hub-rhel8@sha256:df80c45631e780f58aaf85edddaf77ed82c0b41f0ad766db048615290eeb96a3_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/hub-rhel8@sha256:df80c45631e780f58aaf85edddaf77ed82c0b41f0ad766db048615290eeb96a3_ppc64le", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/hub-rhel8@sha256:fe2675bd2c51d62dfa3473653c00ddf55a1b64791f5029fe0b87087461b700a1_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/hub-rhel8@sha256:fe2675bd2c51d62dfa3473653c00ddf55a1b64791f5029fe0b87087461b700a1_s390x" + }, + "product_reference": "ansible-automation-platform-24/hub-rhel8@sha256:fe2675bd2c51d62dfa3473653c00ddf55a1b64791f5029fe0b87087461b700a1_s390x", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/hub-web-rhel8@sha256:01b5493444bc24c954ce86554d0ba8ca99b9db8c516901d0539e1b001ba78590_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/hub-web-rhel8@sha256:01b5493444bc24c954ce86554d0ba8ca99b9db8c516901d0539e1b001ba78590_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/hub-web-rhel8@sha256:01b5493444bc24c954ce86554d0ba8ca99b9db8c516901d0539e1b001ba78590_ppc64le", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/hub-web-rhel8@sha256:0b7d67480c6a15e5a655573f2ac885d34df441978f8f595f8c4d9f5e93c052d1_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/hub-web-rhel8@sha256:0b7d67480c6a15e5a655573f2ac885d34df441978f8f595f8c4d9f5e93c052d1_arm64" + }, + "product_reference": "ansible-automation-platform-24/hub-web-rhel8@sha256:0b7d67480c6a15e5a655573f2ac885d34df441978f8f595f8c4d9f5e93c052d1_arm64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/hub-web-rhel8@sha256:a44ffd3666281ab867c177915ddf48fdb59052a2d48f49284a598e8c80125d7b_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/hub-web-rhel8@sha256:a44ffd3666281ab867c177915ddf48fdb59052a2d48f49284a598e8c80125d7b_amd64" + }, + "product_reference": "ansible-automation-platform-24/hub-web-rhel8@sha256:a44ffd3666281ab867c177915ddf48fdb59052a2d48f49284a598e8c80125d7b_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/hub-web-rhel8@sha256:ff2db93490c489562bb8c37a247daf01e10c871e628b24cc4006dd2bd14473bb_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/hub-web-rhel8@sha256:ff2db93490c489562bb8c37a247daf01e10c871e628b24cc4006dd2bd14473bb_s390x" + }, + "product_reference": "ansible-automation-platform-24/hub-web-rhel8@sha256:ff2db93490c489562bb8c37a247daf01e10c871e628b24cc4006dd2bd14473bb_s390x", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/platform-resource-rhel8-operator@sha256:13425b0194354a15d71f6bccd7b2e526ef4b2cd8c56b6aff91ebf4435bda20bc_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/platform-resource-rhel8-operator@sha256:13425b0194354a15d71f6bccd7b2e526ef4b2cd8c56b6aff91ebf4435bda20bc_amd64" + }, + "product_reference": "ansible-automation-platform-24/platform-resource-rhel8-operator@sha256:13425b0194354a15d71f6bccd7b2e526ef4b2cd8c56b6aff91ebf4435bda20bc_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/platform-resource-rhel8-operator@sha256:893d04a458674590c81c2ef09fb222c36f47bee71ab3615d6bb73432c58d965b_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/platform-resource-rhel8-operator@sha256:893d04a458674590c81c2ef09fb222c36f47bee71ab3615d6bb73432c58d965b_s390x" + }, + "product_reference": "ansible-automation-platform-24/platform-resource-rhel8-operator@sha256:893d04a458674590c81c2ef09fb222c36f47bee71ab3615d6bb73432c58d965b_s390x", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/platform-resource-rhel8-operator@sha256:964337aac284059c1abde17a9bd2c0d13fd5a149a91af19eb56944728f7f5584_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/platform-resource-rhel8-operator@sha256:964337aac284059c1abde17a9bd2c0d13fd5a149a91af19eb56944728f7f5584_arm64" + }, + "product_reference": "ansible-automation-platform-24/platform-resource-rhel8-operator@sha256:964337aac284059c1abde17a9bd2c0d13fd5a149a91af19eb56944728f7f5584_arm64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/platform-resource-rhel8-operator@sha256:9d429c6e5d72bf883362b1ae11f8b4ed3a9d468e77e2e29c8ff234df9e255db4_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/platform-resource-rhel8-operator@sha256:9d429c6e5d72bf883362b1ae11f8b4ed3a9d468e77e2e29c8ff234df9e255db4_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/platform-resource-rhel8-operator@sha256:9d429c6e5d72bf883362b1ae11f8b4ed3a9d468e77e2e29c8ff234df9e255db4_ppc64le", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/platform-resource-runner-rhel8@sha256:38bc442a6181a739b4c232d25abd7018dbce05083f3bf09ab7a071a3d2a4c7b4_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/platform-resource-runner-rhel8@sha256:38bc442a6181a739b4c232d25abd7018dbce05083f3bf09ab7a071a3d2a4c7b4_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/platform-resource-runner-rhel8@sha256:38bc442a6181a739b4c232d25abd7018dbce05083f3bf09ab7a071a3d2a4c7b4_ppc64le", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/platform-resource-runner-rhel8@sha256:8c80648871aee9d1c5450226d18b122a40fe188b1140fcb22800ecda41bb6343_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/platform-resource-runner-rhel8@sha256:8c80648871aee9d1c5450226d18b122a40fe188b1140fcb22800ecda41bb6343_arm64" + }, + "product_reference": "ansible-automation-platform-24/platform-resource-runner-rhel8@sha256:8c80648871aee9d1c5450226d18b122a40fe188b1140fcb22800ecda41bb6343_arm64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/platform-resource-runner-rhel8@sha256:cfbf2ddd1dce998575bf8e38cd38bbcc98b006ba918d5de8ea1621b5de4d3f67_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/platform-resource-runner-rhel8@sha256:cfbf2ddd1dce998575bf8e38cd38bbcc98b006ba918d5de8ea1621b5de4d3f67_amd64" + }, + "product_reference": "ansible-automation-platform-24/platform-resource-runner-rhel8@sha256:cfbf2ddd1dce998575bf8e38cd38bbcc98b006ba918d5de8ea1621b5de4d3f67_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/platform-resource-runner-rhel8@sha256:de8830287e00c4062524ebc9e9a93896503101e6382f553c89cc0c1e7d15618f_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/platform-resource-runner-rhel8@sha256:de8830287e00c4062524ebc9e9a93896503101e6382f553c89cc0c1e7d15618f_s390x" + }, + "product_reference": "ansible-automation-platform-24/platform-resource-runner-rhel8@sha256:de8830287e00c4062524ebc9e9a93896503101e6382f553c89cc0c1e7d15618f_s390x", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform/cloud-addons-operator-bundle@sha256:bdc45dd15fcdf3d3956c6ddc2316a8e68490cc1d4249f95b01b231a0fb17debf_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform/cloud-addons-operator-bundle@sha256:bdc45dd15fcdf3d3956c6ddc2316a8e68490cc1d4249f95b01b231a0fb17debf_amd64" + }, + "product_reference": "ansible-automation-platform/cloud-addons-operator-bundle@sha256:bdc45dd15fcdf3d3956c6ddc2316a8e68490cc1d4249f95b01b231a0fb17debf_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform/ee-containerized-installer-rhel8@sha256:797d37d3015ebbf5125f6e1d12d47774a276a42a3c18ccabab2bf1c466b001fd_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform/ee-containerized-installer-rhel8@sha256:797d37d3015ebbf5125f6e1d12d47774a276a42a3c18ccabab2bf1c466b001fd_arm64" + }, + "product_reference": "ansible-automation-platform/ee-containerized-installer-rhel8@sha256:797d37d3015ebbf5125f6e1d12d47774a276a42a3c18ccabab2bf1c466b001fd_arm64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform/ee-containerized-installer-rhel8@sha256:a4cdb956a90531672851a53c6691591c871513630c8d441b0061d0c187f62a99_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform/ee-containerized-installer-rhel8@sha256:a4cdb956a90531672851a53c6691591c871513630c8d441b0061d0c187f62a99_amd64" + }, + "product_reference": "ansible-automation-platform/ee-containerized-installer-rhel8@sha256:a4cdb956a90531672851a53c6691591c871513630c8d441b0061d0c187f62a99_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform/platform-operator-bundle@sha256:5825e694ae618fd41f495a7d5b9f911da004a9649aa09ca66ad64d3812a884d9_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform/platform-operator-bundle@sha256:5825e694ae618fd41f495a7d5b9f911da004a9649aa09ca66ad64d3812a884d9_amd64" + }, + "product_reference": "ansible-automation-platform/platform-operator-bundle@sha256:5825e694ae618fd41f495a7d5b9f911da004a9649aa09ca66ad64d3812a884d9_amd64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform/platform-operator-bundle@sha256:8b8051faac5197c85088cdb2032576d7789ef251ffd8ea8fc2e525a199202ab0_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform/platform-operator-bundle@sha256:8b8051faac5197c85088cdb2032576d7789ef251ffd8ea8fc2e525a199202ab0_s390x" + }, + "product_reference": "ansible-automation-platform/platform-operator-bundle@sha256:8b8051faac5197c85088cdb2032576d7789ef251ffd8ea8fc2e525a199202ab0_s390x", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform/platform-operator-bundle@sha256:d5d128596af42dddb7f3efa725050a35c07eae5e63a4bd8be7789857cf5d36f3_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform/platform-operator-bundle@sha256:d5d128596af42dddb7f3efa725050a35c07eae5e63a4bd8be7789857cf5d36f3_arm64" + }, + "product_reference": "ansible-automation-platform/platform-operator-bundle@sha256:d5d128596af42dddb7f3efa725050a35c07eae5e63a4bd8be7789857cf5d36f3_arm64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform/platform-operator-bundle@sha256:ecc912e9ab3146df86e7be7afbc077db49e74f913815c73521ae67893f452853_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:ansible-automation-platform/platform-operator-bundle@sha256:ecc912e9ab3146df86e7be7afbc077db49e74f913815c73521ae67893f452853_ppc64le" + }, + "product_reference": "ansible-automation-platform/platform-operator-bundle@sha256:ecc912e9ab3146df86e7be7afbc077db49e74f913815c73521ae67893f452853_ppc64le", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el8ap.aarch64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:receptor-0:1.4.2-1.el8ap.aarch64" + }, + "product_reference": "receptor-0:1.4.2-1.el8ap.aarch64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el8ap.ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:receptor-0:1.4.2-1.el8ap.ppc64le" + }, + "product_reference": "receptor-0:1.4.2-1.el8ap.ppc64le", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el8ap.s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:receptor-0:1.4.2-1.el8ap.s390x" + }, + "product_reference": "receptor-0:1.4.2-1.el8ap.s390x", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el8ap.src as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:receptor-0:1.4.2-1.el8ap.src" + }, + "product_reference": "receptor-0:1.4.2-1.el8ap.src", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el8ap.x86_64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:receptor-0:1.4.2-1.el8ap.x86_64" + }, + "product_reference": "receptor-0:1.4.2-1.el8ap.x86_64", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptorctl-0:1.4.2-1.el8ap.noarch as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 8", + "product_id": "8Base-Ansible-Automation-Platform-2.4:receptorctl-0:1.4.2-1.el8ap.noarch" + }, + "product_reference": "receptorctl-0:1.4.2-1.el8ap.noarch", + "relates_to_product_reference": "8Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/bridge-marker@sha256:6ec0d63868d6c69891b96338782db6ddefb6eeeb155a8b316112cfa3b756885c_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/bridge-marker@sha256:6ec0d63868d6c69891b96338782db6ddefb6eeeb155a8b316112cfa3b756885c_amd64" + }, + "product_reference": "container-native-virtualization/bridge-marker@sha256:6ec0d63868d6c69891b96338782db6ddefb6eeeb155a8b316112cfa3b756885c_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/checkup-framework@sha256:7a9443d47b8f954670ff3a8f0196f26a3a7bb4b16d2c3469a22d01172f31fc26_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/checkup-framework@sha256:7a9443d47b8f954670ff3a8f0196f26a3a7bb4b16d2c3469a22d01172f31fc26_amd64" + }, + "product_reference": "container-native-virtualization/checkup-framework@sha256:7a9443d47b8f954670ff3a8f0196f26a3a7bb4b16d2c3469a22d01172f31fc26_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/cluster-network-addons-operator@sha256:bf77cbd3fa96da043778f1f27ccf009097f53a46ca1584b440a15623a6edde88_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/cluster-network-addons-operator@sha256:bf77cbd3fa96da043778f1f27ccf009097f53a46ca1584b440a15623a6edde88_amd64" + }, + "product_reference": "container-native-virtualization/cluster-network-addons-operator@sha256:bf77cbd3fa96da043778f1f27ccf009097f53a46ca1584b440a15623a6edde88_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/cnv-containernetworking-plugins@sha256:d34dbb657cb4a631ccca5687f05a9387d679cf03d9899c0843b4f1733ee64103_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/cnv-containernetworking-plugins@sha256:d34dbb657cb4a631ccca5687f05a9387d679cf03d9899c0843b4f1733ee64103_amd64" + }, + "product_reference": "container-native-virtualization/cnv-containernetworking-plugins@sha256:d34dbb657cb4a631ccca5687f05a9387d679cf03d9899c0843b4f1733ee64103_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/cnv-must-gather-rhel8@sha256:575bce5098573be251955aca405570171a458f6993d6735aa39b52012dd0320c_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/cnv-must-gather-rhel8@sha256:575bce5098573be251955aca405570171a458f6993d6735aa39b52012dd0320c_amd64" + }, + "product_reference": "container-native-virtualization/cnv-must-gather-rhel8@sha256:575bce5098573be251955aca405570171a458f6993d6735aa39b52012dd0320c_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hco-bundle-registry@sha256:d2530174f8d682e186b1be97d1e567927c1aaaa7fe5fa1f83eb826608515dccc_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/hco-bundle-registry@sha256:d2530174f8d682e186b1be97d1e567927c1aaaa7fe5fa1f83eb826608515dccc_amd64" + }, + "product_reference": "container-native-virtualization/hco-bundle-registry@sha256:d2530174f8d682e186b1be97d1e567927c1aaaa7fe5fa1f83eb826608515dccc_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hostpath-csi-driver-rhel8@sha256:20488cf9f269a34be9a3d82e04a28b598b26be0a495f51a47a8dba02f7e9d974_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/hostpath-csi-driver-rhel8@sha256:20488cf9f269a34be9a3d82e04a28b598b26be0a495f51a47a8dba02f7e9d974_amd64" + }, + "product_reference": "container-native-virtualization/hostpath-csi-driver-rhel8@sha256:20488cf9f269a34be9a3d82e04a28b598b26be0a495f51a47a8dba02f7e9d974_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hostpath-csi-driver@sha256:20488cf9f269a34be9a3d82e04a28b598b26be0a495f51a47a8dba02f7e9d974_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/hostpath-csi-driver@sha256:20488cf9f269a34be9a3d82e04a28b598b26be0a495f51a47a8dba02f7e9d974_amd64" + }, + "product_reference": "container-native-virtualization/hostpath-csi-driver@sha256:20488cf9f269a34be9a3d82e04a28b598b26be0a495f51a47a8dba02f7e9d974_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hostpath-provisioner-rhel8-operator@sha256:d0755533e714fde9377688064f67e3949d94db4307c36b16d9e4990caa2080b6_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/hostpath-provisioner-rhel8-operator@sha256:d0755533e714fde9377688064f67e3949d94db4307c36b16d9e4990caa2080b6_amd64" + }, + "product_reference": "container-native-virtualization/hostpath-provisioner-rhel8-operator@sha256:d0755533e714fde9377688064f67e3949d94db4307c36b16d9e4990caa2080b6_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hostpath-provisioner-rhel8@sha256:6a49eb5fa0d5d85d028753ccfda32c66c0d26f1d6bd4d264f0d7f1af7887e131_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/hostpath-provisioner-rhel8@sha256:6a49eb5fa0d5d85d028753ccfda32c66c0d26f1d6bd4d264f0d7f1af7887e131_amd64" + }, + "product_reference": "container-native-virtualization/hostpath-provisioner-rhel8@sha256:6a49eb5fa0d5d85d028753ccfda32c66c0d26f1d6bd4d264f0d7f1af7887e131_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hyperconverged-cluster-operator@sha256:5d446416c7c4ac98bf24b5c0bf7631e7feb55ebb898aedace28f8484ae628cf5_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/hyperconverged-cluster-operator@sha256:5d446416c7c4ac98bf24b5c0bf7631e7feb55ebb898aedace28f8484ae628cf5_amd64" + }, + "product_reference": "container-native-virtualization/hyperconverged-cluster-operator@sha256:5d446416c7c4ac98bf24b5c0bf7631e7feb55ebb898aedace28f8484ae628cf5_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hyperconverged-cluster-webhook-rhel8@sha256:3f8b6e4d39648595a62b087f49b9a8e8844bf2f9a743e32db69bdcc491831b55_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/hyperconverged-cluster-webhook-rhel8@sha256:3f8b6e4d39648595a62b087f49b9a8e8844bf2f9a743e32db69bdcc491831b55_amd64" + }, + "product_reference": "container-native-virtualization/hyperconverged-cluster-webhook-rhel8@sha256:3f8b6e4d39648595a62b087f49b9a8e8844bf2f9a743e32db69bdcc491831b55_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubemacpool@sha256:cfb161f31bc459f160a31cf9ad4ec8f0d7ee9140c13b8ba2e6477cdb971f6384_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/kubemacpool@sha256:cfb161f31bc459f160a31cf9ad4ec8f0d7ee9140c13b8ba2e6477cdb971f6384_amd64" + }, + "product_reference": "container-native-virtualization/kubemacpool@sha256:cfb161f31bc459f160a31cf9ad4ec8f0d7ee9140c13b8ba2e6477cdb971f6384_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-console-plugin@sha256:3ff40d3759ea6c50aeb143a5aff6f798611267452eb8111361ef9e0a89260bf5_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/kubevirt-console-plugin@sha256:3ff40d3759ea6c50aeb143a5aff6f798611267452eb8111361ef9e0a89260bf5_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-console-plugin@sha256:3ff40d3759ea6c50aeb143a5aff6f798611267452eb8111361ef9e0a89260bf5_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-ssp-operator@sha256:81fa9feb8418ebf53d9e386fc98a8ee45fd83c30496e3574626449ab19a10236_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/kubevirt-ssp-operator@sha256:81fa9feb8418ebf53d9e386fc98a8ee45fd83c30496e3574626449ab19a10236_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-ssp-operator@sha256:81fa9feb8418ebf53d9e386fc98a8ee45fd83c30496e3574626449ab19a10236_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm@sha256:8c7d9751d790df2471a9e8606afcb2880b800ec713a089b2a801df247a0f3fec_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm@sha256:8c7d9751d790df2471a9e8606afcb2880b800ec713a089b2a801df247a0f3fec_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm@sha256:8c7d9751d790df2471a9e8606afcb2880b800ec713a089b2a801df247a0f3fec_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-copy-template@sha256:f4b0b6daf093a75fcd8d4cc61496a316f86899e8ce4217e9f761def5f9d0e794_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/kubevirt-tekton-tasks-copy-template@sha256:f4b0b6daf093a75fcd8d4cc61496a316f86899e8ce4217e9f761def5f9d0e794_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-copy-template@sha256:f4b0b6daf093a75fcd8d4cc61496a316f86899e8ce4217e9f761def5f9d0e794_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume@sha256:33a16329639f805c0d75a0ed6fe699755938f602230104715c0ad3b545aaf7fa_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/kubevirt-tekton-tasks-create-datavolume@sha256:33a16329639f805c0d75a0ed6fe699755938f602230104715c0ad3b545aaf7fa_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume@sha256:33a16329639f805c0d75a0ed6fe699755938f602230104715c0ad3b545aaf7fa_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template@sha256:caed594ab506d7cf550130d927b68bdcfb3707b8464f2d18da468d9b884c3017_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template@sha256:caed594ab506d7cf550130d927b68bdcfb3707b8464f2d18da468d9b884c3017_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template@sha256:caed594ab506d7cf550130d927b68bdcfb3707b8464f2d18da468d9b884c3017_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize@sha256:4980e6eeadf62bedffff98982f0f5b5e426b0ab01867057dba027e87f9557ce4_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize@sha256:4980e6eeadf62bedffff98982f0f5b5e426b0ab01867057dba027e87f9557ce4_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize@sha256:4980e6eeadf62bedffff98982f0f5b5e426b0ab01867057dba027e87f9557ce4_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep@sha256:254f671bc0443d32ba60cfafa4ed4592c2030270b160c1e7b1d302d797bd9a82_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep@sha256:254f671bc0443d32ba60cfafa4ed4592c2030270b160c1e7b1d302d797bd9a82_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep@sha256:254f671bc0443d32ba60cfafa4ed4592c2030270b160c1e7b1d302d797bd9a82_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template@sha256:69ceb3d47f3c8c32abcca8ec5ad7ebce42ce64e8200f77c1b829c2cb5495c478_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template@sha256:69ceb3d47f3c8c32abcca8ec5ad7ebce42ce64e8200f77c1b829c2cb5495c478_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template@sha256:69ceb3d47f3c8c32abcca8ec5ad7ebce42ce64e8200f77c1b829c2cb5495c478_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-operator@sha256:ec2ac2bedd9f14ff0fbdfe3844d67f1361d59eb379ef6dfcd0fa5727635bdea4_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/kubevirt-tekton-tasks-operator@sha256:ec2ac2bedd9f14ff0fbdfe3844d67f1361d59eb379ef6dfcd0fa5727635bdea4_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-operator@sha256:ec2ac2bedd9f14ff0fbdfe3844d67f1361d59eb379ef6dfcd0fa5727635bdea4_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status@sha256:a1fac42b6bf868c20ad974a0409cd62e68be20ea9e4ca5ff4ebc211bb9dc85ab_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status@sha256:a1fac42b6bf868c20ad974a0409cd62e68be20ea9e4ca5ff4ebc211bb9dc85ab_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status@sha256:a1fac42b6bf868c20ad974a0409cd62e68be20ea9e4ca5ff4ebc211bb9dc85ab_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-template-validator@sha256:47b866156816f285cf7ea8b8d523e2ec84bc58751e1d593e98bf8ab493c8db09_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/kubevirt-template-validator@sha256:47b866156816f285cf7ea8b8d523e2ec84bc58751e1d593e98bf8ab493c8db09_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-template-validator@sha256:47b866156816f285cf7ea8b8d523e2ec84bc58751e1d593e98bf8ab493c8db09_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/libguestfs-tools@sha256:0547ff01b9717560fd81ce291acc4b3e70098df3b80d42d35ec2b563b0ce035a_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/libguestfs-tools@sha256:0547ff01b9717560fd81ce291acc4b3e70098df3b80d42d35ec2b563b0ce035a_amd64" + }, + "product_reference": "container-native-virtualization/libguestfs-tools@sha256:0547ff01b9717560fd81ce291acc4b3e70098df3b80d42d35ec2b563b0ce035a_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/ovs-cni-marker@sha256:7c44a0d3bb352c0327974ccb3c2054c6cff88fa58399b1e40409e197ad78d585_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/ovs-cni-marker@sha256:7c44a0d3bb352c0327974ccb3c2054c6cff88fa58399b1e40409e197ad78d585_amd64" + }, + "product_reference": "container-native-virtualization/ovs-cni-marker@sha256:7c44a0d3bb352c0327974ccb3c2054c6cff88fa58399b1e40409e197ad78d585_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/ovs-cni-plugin@sha256:4eb3e9b62fa09edc3e678fa0afad10b8e1042fb95ddecaca7a48e79c392b3029_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/ovs-cni-plugin@sha256:4eb3e9b62fa09edc3e678fa0afad10b8e1042fb95ddecaca7a48e79c392b3029_amd64" + }, + "product_reference": "container-native-virtualization/ovs-cni-plugin@sha256:4eb3e9b62fa09edc3e678fa0afad10b8e1042fb95ddecaca7a48e79c392b3029_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-api@sha256:fd9dd050e1670ffd7f1816ebcced2a77a51aa4bbf96bec893f8b7e84b3824763_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/virt-api@sha256:fd9dd050e1670ffd7f1816ebcced2a77a51aa4bbf96bec893f8b7e84b3824763_amd64" + }, + "product_reference": "container-native-virtualization/virt-api@sha256:fd9dd050e1670ffd7f1816ebcced2a77a51aa4bbf96bec893f8b7e84b3824763_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-artifacts-server@sha256:bedf2d810c355505de7b2dcb24b27d04b0ab94d3adc711d942ee830c71ff49a3_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/virt-artifacts-server@sha256:bedf2d810c355505de7b2dcb24b27d04b0ab94d3adc711d942ee830c71ff49a3_amd64" + }, + "product_reference": "container-native-virtualization/virt-artifacts-server@sha256:bedf2d810c355505de7b2dcb24b27d04b0ab94d3adc711d942ee830c71ff49a3_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-apiserver@sha256:de581a993f71f57bced78261962524b1e1eaaf8f6c89549735475fad3b997093_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/virt-cdi-apiserver@sha256:de581a993f71f57bced78261962524b1e1eaaf8f6c89549735475fad3b997093_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-apiserver@sha256:de581a993f71f57bced78261962524b1e1eaaf8f6c89549735475fad3b997093_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-cloner@sha256:9c5ac022e709ac0ecd77814138639b3b9e6d34fa9f98bc3ce4127b1d68af29f2_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/virt-cdi-cloner@sha256:9c5ac022e709ac0ecd77814138639b3b9e6d34fa9f98bc3ce4127b1d68af29f2_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-cloner@sha256:9c5ac022e709ac0ecd77814138639b3b9e6d34fa9f98bc3ce4127b1d68af29f2_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-controller@sha256:192f40ae9ba79582d0f9ac7ca7f1eb1f8c44abd7c79345bd579807cc94a883f0_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/virt-cdi-controller@sha256:192f40ae9ba79582d0f9ac7ca7f1eb1f8c44abd7c79345bd579807cc94a883f0_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-controller@sha256:192f40ae9ba79582d0f9ac7ca7f1eb1f8c44abd7c79345bd579807cc94a883f0_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-importer@sha256:ce436ec0a51e51ba209da49d6d877c7e07faf264b966849934c72d1c031a78dd_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/virt-cdi-importer@sha256:ce436ec0a51e51ba209da49d6d877c7e07faf264b966849934c72d1c031a78dd_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-importer@sha256:ce436ec0a51e51ba209da49d6d877c7e07faf264b966849934c72d1c031a78dd_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-operator@sha256:1b503bfc4177444b360c4a1a470ac8322d3394fd9e8ebe7f2bad849249d2c6fd_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/virt-cdi-operator@sha256:1b503bfc4177444b360c4a1a470ac8322d3394fd9e8ebe7f2bad849249d2c6fd_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-operator@sha256:1b503bfc4177444b360c4a1a470ac8322d3394fd9e8ebe7f2bad849249d2c6fd_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-uploadproxy@sha256:fc0aafe98acf811a0e94091a6dcec5f465ddc64e279ad250f6c8fa4225de7c7f_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/virt-cdi-uploadproxy@sha256:fc0aafe98acf811a0e94091a6dcec5f465ddc64e279ad250f6c8fa4225de7c7f_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-uploadproxy@sha256:fc0aafe98acf811a0e94091a6dcec5f465ddc64e279ad250f6c8fa4225de7c7f_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-uploadserver@sha256:029992238c9723c2760d24d502b95d22a46f3a1586e076da54863fc22f9cca35_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/virt-cdi-uploadserver@sha256:029992238c9723c2760d24d502b95d22a46f3a1586e076da54863fc22f9cca35_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-uploadserver@sha256:029992238c9723c2760d24d502b95d22a46f3a1586e076da54863fc22f9cca35_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-controller@sha256:3c80a72772b98e46fc1382c3dc6a7b8a41f50e8bde5a12362a121e1dd1d2cc64_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/virt-controller@sha256:3c80a72772b98e46fc1382c3dc6a7b8a41f50e8bde5a12362a121e1dd1d2cc64_amd64" + }, + "product_reference": "container-native-virtualization/virt-controller@sha256:3c80a72772b98e46fc1382c3dc6a7b8a41f50e8bde5a12362a121e1dd1d2cc64_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-handler@sha256:841aca720b7082e72059f733ead2e02915e6ead7506d79ac6eff0b143390713e_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/virt-handler@sha256:841aca720b7082e72059f733ead2e02915e6ead7506d79ac6eff0b143390713e_amd64" + }, + "product_reference": "container-native-virtualization/virt-handler@sha256:841aca720b7082e72059f733ead2e02915e6ead7506d79ac6eff0b143390713e_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-launcher@sha256:1480ad0874186f451bd95b51953940ad7589c2546715770be1b61f3e8dec3ea9_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/virt-launcher@sha256:1480ad0874186f451bd95b51953940ad7589c2546715770be1b61f3e8dec3ea9_amd64" + }, + "product_reference": "container-native-virtualization/virt-launcher@sha256:1480ad0874186f451bd95b51953940ad7589c2546715770be1b61f3e8dec3ea9_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-operator@sha256:8dc7b78fea1006af9bb0d62120b50964e2fc73ee049a0efe94d366aad296ab95_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/virt-operator@sha256:8dc7b78fea1006af9bb0d62120b50964e2fc73ee049a0efe94d366aad296ab95_amd64" + }, + "product_reference": "container-native-virtualization/virt-operator@sha256:8dc7b78fea1006af9bb0d62120b50964e2fc73ee049a0efe94d366aad296ab95_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virtio-win@sha256:58f2d6b9b41d6a0af3a20d2ce491f2c2bf8b3f07b6ea0170b729f0db0626c21d_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/virtio-win@sha256:58f2d6b9b41d6a0af3a20d2ce491f2c2bf8b3f07b6ea0170b729f0db0626c21d_amd64" + }, + "product_reference": "container-native-virtualization/virtio-win@sha256:58f2d6b9b41d6a0af3a20d2ce491f2c2bf8b3f07b6ea0170b729f0db0626c21d_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/vm-network-latency-checkup@sha256:9d28ad64ab3d2858ce9b1144a77816cc1ae07f53b37599fc24609a9429c0a0b8_amd64 as a component of CNV 4.11 for RHEL 8", + "product_id": "8Base-CNV-4.11:container-native-virtualization/vm-network-latency-checkup@sha256:9d28ad64ab3d2858ce9b1144a77816cc1ae07f53b37599fc24609a9429c0a0b8_amd64" + }, + "product_reference": "container-native-virtualization/vm-network-latency-checkup@sha256:9d28ad64ab3d2858ce9b1144a77816cc1ae07f53b37599fc24609a9429c0a0b8_amd64", + "relates_to_product_reference": "8Base-CNV-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/bridge-marker@sha256:23d0f2055443e81079ef82573ff23539ff03bc0a57912638b80fdf24d6e74b4f_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/bridge-marker@sha256:23d0f2055443e81079ef82573ff23539ff03bc0a57912638b80fdf24d6e74b4f_amd64" + }, + "product_reference": "container-native-virtualization/bridge-marker@sha256:23d0f2055443e81079ef82573ff23539ff03bc0a57912638b80fdf24d6e74b4f_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/cluster-network-addons-operator@sha256:c9106a0cdf723043ad2e94fe746d084ffb4cdf50292763922389acafb6d1abf7_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/cluster-network-addons-operator@sha256:c9106a0cdf723043ad2e94fe746d084ffb4cdf50292763922389acafb6d1abf7_amd64" + }, + "product_reference": "container-native-virtualization/cluster-network-addons-operator@sha256:c9106a0cdf723043ad2e94fe746d084ffb4cdf50292763922389acafb6d1abf7_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/cnv-containernetworking-plugins@sha256:b60bc0fd0988c23c1224280c9b63e98d5b77998f0ed24e12a55158da8971ae4d_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/cnv-containernetworking-plugins@sha256:b60bc0fd0988c23c1224280c9b63e98d5b77998f0ed24e12a55158da8971ae4d_amd64" + }, + "product_reference": "container-native-virtualization/cnv-containernetworking-plugins@sha256:b60bc0fd0988c23c1224280c9b63e98d5b77998f0ed24e12a55158da8971ae4d_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/cnv-must-gather-rhel8@sha256:74ff80f2d32a0d1dd58c7ac63cc2c5792146e3bc2a65b57727e172e0da8ed994_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/cnv-must-gather-rhel8@sha256:74ff80f2d32a0d1dd58c7ac63cc2c5792146e3bc2a65b57727e172e0da8ed994_amd64" + }, + "product_reference": "container-native-virtualization/cnv-must-gather-rhel8@sha256:74ff80f2d32a0d1dd58c7ac63cc2c5792146e3bc2a65b57727e172e0da8ed994_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hco-bundle-registry@sha256:dddf77c42a60a2837388448d294a65719281984009708a1d90ce328c3d95aa28_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/hco-bundle-registry@sha256:dddf77c42a60a2837388448d294a65719281984009708a1d90ce328c3d95aa28_amd64" + }, + "product_reference": "container-native-virtualization/hco-bundle-registry@sha256:dddf77c42a60a2837388448d294a65719281984009708a1d90ce328c3d95aa28_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hostpath-csi-driver@sha256:6b9c72bfb44b3ed66ffbe7785bfa44d81bed9b5c802e8f664d5bd129789a108a_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/hostpath-csi-driver@sha256:6b9c72bfb44b3ed66ffbe7785bfa44d81bed9b5c802e8f664d5bd129789a108a_amd64" + }, + "product_reference": "container-native-virtualization/hostpath-csi-driver@sha256:6b9c72bfb44b3ed66ffbe7785bfa44d81bed9b5c802e8f664d5bd129789a108a_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hostpath-provisioner-rhel8-operator@sha256:97a53da9d0aa186d8120558b071c8a609db2e9fdf55e88780c4df4a96d1e7fb9_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/hostpath-provisioner-rhel8-operator@sha256:97a53da9d0aa186d8120558b071c8a609db2e9fdf55e88780c4df4a96d1e7fb9_amd64" + }, + "product_reference": "container-native-virtualization/hostpath-provisioner-rhel8-operator@sha256:97a53da9d0aa186d8120558b071c8a609db2e9fdf55e88780c4df4a96d1e7fb9_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hostpath-provisioner-rhel8@sha256:a6c27e3bdbf23952f0eacb1be73c14eabb02b9e6ed12ac2f1fa3f386de11ed8c_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/hostpath-provisioner-rhel8@sha256:a6c27e3bdbf23952f0eacb1be73c14eabb02b9e6ed12ac2f1fa3f386de11ed8c_amd64" + }, + "product_reference": "container-native-virtualization/hostpath-provisioner-rhel8@sha256:a6c27e3bdbf23952f0eacb1be73c14eabb02b9e6ed12ac2f1fa3f386de11ed8c_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hyperconverged-cluster-operator@sha256:5fbe17bcbbf20acae781c4fbdde81d1d53469f276b217a9a0339baae8c28a442_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/hyperconverged-cluster-operator@sha256:5fbe17bcbbf20acae781c4fbdde81d1d53469f276b217a9a0339baae8c28a442_amd64" + }, + "product_reference": "container-native-virtualization/hyperconverged-cluster-operator@sha256:5fbe17bcbbf20acae781c4fbdde81d1d53469f276b217a9a0339baae8c28a442_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hyperconverged-cluster-webhook-rhel8@sha256:3b73aae81279eb9fc9354a141230a2ae2ffaf767ec430653ceef9e8a6f5b2578_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/hyperconverged-cluster-webhook-rhel8@sha256:3b73aae81279eb9fc9354a141230a2ae2ffaf767ec430653ceef9e8a6f5b2578_amd64" + }, + "product_reference": "container-native-virtualization/hyperconverged-cluster-webhook-rhel8@sha256:3b73aae81279eb9fc9354a141230a2ae2ffaf767ec430653ceef9e8a6f5b2578_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubemacpool@sha256:a63b4835f1e1afc3d5da3b80526e494ace5fe6917a51526648b9b1228168f552_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/kubemacpool@sha256:a63b4835f1e1afc3d5da3b80526e494ace5fe6917a51526648b9b1228168f552_amd64" + }, + "product_reference": "container-native-virtualization/kubemacpool@sha256:a63b4835f1e1afc3d5da3b80526e494ace5fe6917a51526648b9b1228168f552_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-console-plugin@sha256:861fb3b8d3b009f5dda71338f5dc340081e4501cc38af55c8d03a1c00378c6a3_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/kubevirt-console-plugin@sha256:861fb3b8d3b009f5dda71338f5dc340081e4501cc38af55c8d03a1c00378c6a3_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-console-plugin@sha256:861fb3b8d3b009f5dda71338f5dc340081e4501cc38af55c8d03a1c00378c6a3_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-ssp-operator@sha256:8218a9b29aaa5bdcddc4b67256c802fc555fc2b96fc2045671d9a62faa0517e5_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/kubevirt-ssp-operator@sha256:8218a9b29aaa5bdcddc4b67256c802fc555fc2b96fc2045671d9a62faa0517e5_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-ssp-operator@sha256:8218a9b29aaa5bdcddc4b67256c802fc555fc2b96fc2045671d9a62faa0517e5_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm@sha256:a530fcc39c11350dabf592c52288a44521f639a91716afe40c31f676a0287eb2_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm@sha256:a530fcc39c11350dabf592c52288a44521f639a91716afe40c31f676a0287eb2_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm@sha256:a530fcc39c11350dabf592c52288a44521f639a91716afe40c31f676a0287eb2_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-copy-template@sha256:b9f5f854305f631dd893995365e92ecb6a20085c84cab124bd5a1f715bbf110b_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/kubevirt-tekton-tasks-copy-template@sha256:b9f5f854305f631dd893995365e92ecb6a20085c84cab124bd5a1f715bbf110b_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-copy-template@sha256:b9f5f854305f631dd893995365e92ecb6a20085c84cab124bd5a1f715bbf110b_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume@sha256:1fbad55cf897a63ba992609d0b966d1a15ea33c65772a89d3ed03cc565c88ff3_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/kubevirt-tekton-tasks-create-datavolume@sha256:1fbad55cf897a63ba992609d0b966d1a15ea33c65772a89d3ed03cc565c88ff3_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume@sha256:1fbad55cf897a63ba992609d0b966d1a15ea33c65772a89d3ed03cc565c88ff3_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template@sha256:420a2f4a5ccf17d354945725efd872ce48042afb02f9446348d95086f6c074e6_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template@sha256:420a2f4a5ccf17d354945725efd872ce48042afb02f9446348d95086f6c074e6_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template@sha256:420a2f4a5ccf17d354945725efd872ce48042afb02f9446348d95086f6c074e6_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize@sha256:aa24caef43563243aa45e2146a9be4ebe15a55e7d47cd043d0a2e1094d4662bb_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize@sha256:aa24caef43563243aa45e2146a9be4ebe15a55e7d47cd043d0a2e1094d4662bb_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize@sha256:aa24caef43563243aa45e2146a9be4ebe15a55e7d47cd043d0a2e1094d4662bb_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep@sha256:0cb042eb4f9f6c8d1436d010eb9691ceb5c02f0f273ae458780ad92727f45908_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep@sha256:0cb042eb4f9f6c8d1436d010eb9691ceb5c02f0f273ae458780ad92727f45908_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep@sha256:0cb042eb4f9f6c8d1436d010eb9691ceb5c02f0f273ae458780ad92727f45908_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template@sha256:6337cb6e7978d8622f6948f81bd927ba97265baaedf3c527bf2b0bc9d33fd7af_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template@sha256:6337cb6e7978d8622f6948f81bd927ba97265baaedf3c527bf2b0bc9d33fd7af_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template@sha256:6337cb6e7978d8622f6948f81bd927ba97265baaedf3c527bf2b0bc9d33fd7af_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-operator@sha256:108b0a434e22eb7837b225f711d63303a08193d8af3883522c992d6486c26353_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/kubevirt-tekton-tasks-operator@sha256:108b0a434e22eb7837b225f711d63303a08193d8af3883522c992d6486c26353_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-operator@sha256:108b0a434e22eb7837b225f711d63303a08193d8af3883522c992d6486c26353_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status@sha256:4b393bbab7a0da4574a285ec365da0559e137e55c28b88ec9f4c7b75a0bde133_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status@sha256:4b393bbab7a0da4574a285ec365da0559e137e55c28b88ec9f4c7b75a0bde133_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status@sha256:4b393bbab7a0da4574a285ec365da0559e137e55c28b88ec9f4c7b75a0bde133_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-template-validator@sha256:053df4781a11f4353e06fcc7b12e8fb81a52b7bccab5f8a6c98f56947d05c270_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/kubevirt-template-validator@sha256:053df4781a11f4353e06fcc7b12e8fb81a52b7bccab5f8a6c98f56947d05c270_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-template-validator@sha256:053df4781a11f4353e06fcc7b12e8fb81a52b7bccab5f8a6c98f56947d05c270_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/libguestfs-tools@sha256:9b0649921289b2484e05760c81890262cae75d9cbac2764ec258b57fa3b7e605_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/libguestfs-tools@sha256:9b0649921289b2484e05760c81890262cae75d9cbac2764ec258b57fa3b7e605_amd64" + }, + "product_reference": "container-native-virtualization/libguestfs-tools@sha256:9b0649921289b2484e05760c81890262cae75d9cbac2764ec258b57fa3b7e605_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/ovs-cni-marker@sha256:43a216c37d6ff86c2ac963f64022e1b4c475a64cb681bb504879caf70f8688df_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/ovs-cni-marker@sha256:43a216c37d6ff86c2ac963f64022e1b4c475a64cb681bb504879caf70f8688df_amd64" + }, + "product_reference": "container-native-virtualization/ovs-cni-marker@sha256:43a216c37d6ff86c2ac963f64022e1b4c475a64cb681bb504879caf70f8688df_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/ovs-cni-plugin@sha256:dc55c6e82516b8fc6b80b858cc9c308384998b8bb578252ca25e919e3fcf7c08_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/ovs-cni-plugin@sha256:dc55c6e82516b8fc6b80b858cc9c308384998b8bb578252ca25e919e3fcf7c08_amd64" + }, + "product_reference": "container-native-virtualization/ovs-cni-plugin@sha256:dc55c6e82516b8fc6b80b858cc9c308384998b8bb578252ca25e919e3fcf7c08_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-api@sha256:8a8079e2bed79b5d18796db8ba44d56610b68544974e55c851b0116997b82414_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/virt-api@sha256:8a8079e2bed79b5d18796db8ba44d56610b68544974e55c851b0116997b82414_amd64" + }, + "product_reference": "container-native-virtualization/virt-api@sha256:8a8079e2bed79b5d18796db8ba44d56610b68544974e55c851b0116997b82414_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-artifacts-server@sha256:383022adea0838abf0e7394b95059b995e616427eed4fff1e65d125c14c0a7e5_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/virt-artifacts-server@sha256:383022adea0838abf0e7394b95059b995e616427eed4fff1e65d125c14c0a7e5_amd64" + }, + "product_reference": "container-native-virtualization/virt-artifacts-server@sha256:383022adea0838abf0e7394b95059b995e616427eed4fff1e65d125c14c0a7e5_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-apiserver@sha256:10c4bb9ad748bac9b04ef16f542941a67a4c78d8dd4069c8f5cbade859ae3dba_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/virt-cdi-apiserver@sha256:10c4bb9ad748bac9b04ef16f542941a67a4c78d8dd4069c8f5cbade859ae3dba_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-apiserver@sha256:10c4bb9ad748bac9b04ef16f542941a67a4c78d8dd4069c8f5cbade859ae3dba_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-cloner@sha256:fba428882b1637778d373ebd4c86842235fad5115334110e5d41514ccfde64c6_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/virt-cdi-cloner@sha256:fba428882b1637778d373ebd4c86842235fad5115334110e5d41514ccfde64c6_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-cloner@sha256:fba428882b1637778d373ebd4c86842235fad5115334110e5d41514ccfde64c6_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-controller@sha256:97208eac253cb235dd67214dc6e8bdc5335f438250b662c4ba30fb6735ea6ecb_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/virt-cdi-controller@sha256:97208eac253cb235dd67214dc6e8bdc5335f438250b662c4ba30fb6735ea6ecb_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-controller@sha256:97208eac253cb235dd67214dc6e8bdc5335f438250b662c4ba30fb6735ea6ecb_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-importer@sha256:7296bc1fc028558ad2c011b3a4ea66e2f058c2d0c0ca128703699ea40ad12ac2_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/virt-cdi-importer@sha256:7296bc1fc028558ad2c011b3a4ea66e2f058c2d0c0ca128703699ea40ad12ac2_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-importer@sha256:7296bc1fc028558ad2c011b3a4ea66e2f058c2d0c0ca128703699ea40ad12ac2_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-operator@sha256:8c17826aa039376a4a50f9a2db48b3f2797b14b915aa069826f4278182fb5e22_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/virt-cdi-operator@sha256:8c17826aa039376a4a50f9a2db48b3f2797b14b915aa069826f4278182fb5e22_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-operator@sha256:8c17826aa039376a4a50f9a2db48b3f2797b14b915aa069826f4278182fb5e22_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-uploadproxy@sha256:c980ef56b6e73b9f7e76b05b61a245d891465c3ce6a779591ef9bffa79aaa2f8_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/virt-cdi-uploadproxy@sha256:c980ef56b6e73b9f7e76b05b61a245d891465c3ce6a779591ef9bffa79aaa2f8_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-uploadproxy@sha256:c980ef56b6e73b9f7e76b05b61a245d891465c3ce6a779591ef9bffa79aaa2f8_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-uploadserver@sha256:42e669ed714ce412b299d52edf016d478c715127916846265cc48342d9e9fcb4_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/virt-cdi-uploadserver@sha256:42e669ed714ce412b299d52edf016d478c715127916846265cc48342d9e9fcb4_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-uploadserver@sha256:42e669ed714ce412b299d52edf016d478c715127916846265cc48342d9e9fcb4_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-controller@sha256:c7ef9a1f3dcd6ba257b3f6a5431cf8cce5809a4b76fa14523c65b45af995bc40_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/virt-controller@sha256:c7ef9a1f3dcd6ba257b3f6a5431cf8cce5809a4b76fa14523c65b45af995bc40_amd64" + }, + "product_reference": "container-native-virtualization/virt-controller@sha256:c7ef9a1f3dcd6ba257b3f6a5431cf8cce5809a4b76fa14523c65b45af995bc40_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-exportproxy@sha256:4b4fe7649612d6230cac655ae7ca5e2c4b2817911bdac9d9b1d53b233d7a4a72_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/virt-exportproxy@sha256:4b4fe7649612d6230cac655ae7ca5e2c4b2817911bdac9d9b1d53b233d7a4a72_amd64" + }, + "product_reference": "container-native-virtualization/virt-exportproxy@sha256:4b4fe7649612d6230cac655ae7ca5e2c4b2817911bdac9d9b1d53b233d7a4a72_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-exportserver@sha256:13a1fd0199c6af5555c7a357f495b160304a67fc680dc57fde1dea98a6a08e67_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/virt-exportserver@sha256:13a1fd0199c6af5555c7a357f495b160304a67fc680dc57fde1dea98a6a08e67_amd64" + }, + "product_reference": "container-native-virtualization/virt-exportserver@sha256:13a1fd0199c6af5555c7a357f495b160304a67fc680dc57fde1dea98a6a08e67_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-handler@sha256:cc93189523fcc3eb3f023a576eb9501234d5d862fb91136ae16e631b0abcbe29_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/virt-handler@sha256:cc93189523fcc3eb3f023a576eb9501234d5d862fb91136ae16e631b0abcbe29_amd64" + }, + "product_reference": "container-native-virtualization/virt-handler@sha256:cc93189523fcc3eb3f023a576eb9501234d5d862fb91136ae16e631b0abcbe29_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-launcher@sha256:d58d3f87c690066148fd32f4549b1df516a4085bf6bdb8de4abcd033047cf6a0_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/virt-launcher@sha256:d58d3f87c690066148fd32f4549b1df516a4085bf6bdb8de4abcd033047cf6a0_amd64" + }, + "product_reference": "container-native-virtualization/virt-launcher@sha256:d58d3f87c690066148fd32f4549b1df516a4085bf6bdb8de4abcd033047cf6a0_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-operator@sha256:c2daeb82867dd85031ec6bb2251f9ba7e6a3961ad89c59d96c4d223e7856824c_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/virt-operator@sha256:c2daeb82867dd85031ec6bb2251f9ba7e6a3961ad89c59d96c4d223e7856824c_amd64" + }, + "product_reference": "container-native-virtualization/virt-operator@sha256:c2daeb82867dd85031ec6bb2251f9ba7e6a3961ad89c59d96c4d223e7856824c_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virtio-win@sha256:da501d80839308b9603eaf8fdc99cdb8f67a4c25e67b3897a162b54e7d113826_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/virtio-win@sha256:da501d80839308b9603eaf8fdc99cdb8f67a4c25e67b3897a162b54e7d113826_amd64" + }, + "product_reference": "container-native-virtualization/virtio-win@sha256:da501d80839308b9603eaf8fdc99cdb8f67a4c25e67b3897a162b54e7d113826_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/vm-network-latency-checkup@sha256:f33051f5c6ac1c7f3098e48b5388fde6c11830136641802d77a8e433cfd942fa_amd64 as a component of CNV 4.12 for RHEL 8", + "product_id": "8Base-CNV-4.12:container-native-virtualization/vm-network-latency-checkup@sha256:f33051f5c6ac1c7f3098e48b5388fde6c11830136641802d77a8e433cfd942fa_amd64" + }, + "product_reference": "container-native-virtualization/vm-network-latency-checkup@sha256:f33051f5c6ac1c7f3098e48b5388fde6c11830136641802d77a8e433cfd942fa_amd64", + "relates_to_product_reference": "8Base-CNV-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cryostat-tech-preview/cryostat-grafana-dashboard-rhel8@sha256:25214921951dbb2ce9eeda23ce3cce3291a789436927beff1317541a68554fa9_amd64 as a component of Cryostat 2 on RHEL 8", + "product_id": "8Base-Cryostat-2:cryostat-tech-preview/cryostat-grafana-dashboard-rhel8@sha256:25214921951dbb2ce9eeda23ce3cce3291a789436927beff1317541a68554fa9_amd64" + }, + "product_reference": "cryostat-tech-preview/cryostat-grafana-dashboard-rhel8@sha256:25214921951dbb2ce9eeda23ce3cce3291a789436927beff1317541a68554fa9_amd64", + "relates_to_product_reference": "8Base-Cryostat-2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cryostat-tech-preview/cryostat-operator-bundle@sha256:8d4dd000a817aec11eef4303c9d17bc92b809f313796ae360d00101a3a04bf86_amd64 as a component of Cryostat 2 on RHEL 8", + "product_id": "8Base-Cryostat-2:cryostat-tech-preview/cryostat-operator-bundle@sha256:8d4dd000a817aec11eef4303c9d17bc92b809f313796ae360d00101a3a04bf86_amd64" + }, + "product_reference": "cryostat-tech-preview/cryostat-operator-bundle@sha256:8d4dd000a817aec11eef4303c9d17bc92b809f313796ae360d00101a3a04bf86_amd64", + "relates_to_product_reference": "8Base-Cryostat-2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cryostat-tech-preview/cryostat-reports-rhel8@sha256:5408e8448ab25072a2fc0a018105e52668d239b7449b9abe6c44c57c439c34a1_amd64 as a component of Cryostat 2 on RHEL 8", + "product_id": "8Base-Cryostat-2:cryostat-tech-preview/cryostat-reports-rhel8@sha256:5408e8448ab25072a2fc0a018105e52668d239b7449b9abe6c44c57c439c34a1_amd64" + }, + "product_reference": "cryostat-tech-preview/cryostat-reports-rhel8@sha256:5408e8448ab25072a2fc0a018105e52668d239b7449b9abe6c44c57c439c34a1_amd64", + "relates_to_product_reference": "8Base-Cryostat-2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cryostat-tech-preview/cryostat-rhel8-operator@sha256:15459ee1c5ec24cdfaf2427d6aa3c4fe1fa89d58608217a0dbdae709c99ba877_amd64 as a component of Cryostat 2 on RHEL 8", + "product_id": "8Base-Cryostat-2:cryostat-tech-preview/cryostat-rhel8-operator@sha256:15459ee1c5ec24cdfaf2427d6aa3c4fe1fa89d58608217a0dbdae709c99ba877_amd64" + }, + "product_reference": "cryostat-tech-preview/cryostat-rhel8-operator@sha256:15459ee1c5ec24cdfaf2427d6aa3c4fe1fa89d58608217a0dbdae709c99ba877_amd64", + "relates_to_product_reference": "8Base-Cryostat-2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cryostat-tech-preview/cryostat-rhel8@sha256:90305e17793e3a1275a5611745d1c6c8b056198c3e82283b50df85e747f09193_amd64 as a component of Cryostat 2 on RHEL 8", + "product_id": "8Base-Cryostat-2:cryostat-tech-preview/cryostat-rhel8@sha256:90305e17793e3a1275a5611745d1c6c8b056198c3e82283b50df85e747f09193_amd64" + }, + "product_reference": "cryostat-tech-preview/cryostat-rhel8@sha256:90305e17793e3a1275a5611745d1c6c8b056198c3e82283b50df85e747f09193_amd64", + "relates_to_product_reference": "8Base-Cryostat-2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cryostat-tech-preview/jfr-datasource-rhel8@sha256:a0445fffa148a3cf471adbb288a07d175d7e2950d12c0f99cc56f709f4b60f29_amd64 as a component of Cryostat 2 on RHEL 8", + "product_id": "8Base-Cryostat-2:cryostat-tech-preview/jfr-datasource-rhel8@sha256:a0445fffa148a3cf471adbb288a07d175d7e2950d12c0f99cc56f709f4b60f29_amd64" + }, + "product_reference": "cryostat-tech-preview/jfr-datasource-rhel8@sha256:a0445fffa148a3cf471adbb288a07d175d7e2950d12c0f99cc56f709f4b60f29_amd64", + "relates_to_product_reference": "8Base-Cryostat-2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "workload-availability/fence-agents-remediation-operator-bundle@sha256:94bade4574c3679a425628f68067f9aead57bdd78e60f635041f421ed30341de_amd64 as a component of Fence Agents Remediation 0.2 for RHEL 8", + "product_id": "8Base-FENCE-AGENTS-REMEDIATION-0.2:workload-availability/fence-agents-remediation-operator-bundle@sha256:94bade4574c3679a425628f68067f9aead57bdd78e60f635041f421ed30341de_amd64" + }, + "product_reference": "workload-availability/fence-agents-remediation-operator-bundle@sha256:94bade4574c3679a425628f68067f9aead57bdd78e60f635041f421ed30341de_amd64", + "relates_to_product_reference": "8Base-FENCE-AGENTS-REMEDIATION-0.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "workload-availability/fence-agents-remediation-rhel8-operator@sha256:bf4c69f22f3f89985fcc79f6bf78da786a619d1b96d6529038337c947260099c_amd64 as a component of Fence Agents Remediation 0.2 for RHEL 8", + "product_id": "8Base-FENCE-AGENTS-REMEDIATION-0.2:workload-availability/fence-agents-remediation-rhel8-operator@sha256:bf4c69f22f3f89985fcc79f6bf78da786a619d1b96d6529038337c947260099c_amd64" + }, + "product_reference": "workload-availability/fence-agents-remediation-rhel8-operator@sha256:bf4c69f22f3f89985fcc79f6bf78da786a619d1b96d6529038337c947260099c_amd64", + "relates_to_product_reference": "8Base-FENCE-AGENTS-REMEDIATION-0.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/argocd-rhel8@sha256:0d080aed6b1ce572f52c35e144fdc7b4668d8c65ae8b98ad2237d993f60b054d_s390x as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/argocd-rhel8@sha256:0d080aed6b1ce572f52c35e144fdc7b4668d8c65ae8b98ad2237d993f60b054d_s390x" + }, + "product_reference": "openshift-gitops-1/argocd-rhel8@sha256:0d080aed6b1ce572f52c35e144fdc7b4668d8c65ae8b98ad2237d993f60b054d_s390x", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/argocd-rhel8@sha256:8fdda631342e2dce25d5febf607c38f6c399ddd25d9ad8c1b174a2dc575cf58c_ppc64le as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/argocd-rhel8@sha256:8fdda631342e2dce25d5febf607c38f6c399ddd25d9ad8c1b174a2dc575cf58c_ppc64le" + }, + "product_reference": "openshift-gitops-1/argocd-rhel8@sha256:8fdda631342e2dce25d5febf607c38f6c399ddd25d9ad8c1b174a2dc575cf58c_ppc64le", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/argocd-rhel8@sha256:fb09d1723d1a72831cbfc9e611ef5b50c2e0edb2ef90abac07eda8550f419cba_arm64 as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/argocd-rhel8@sha256:fb09d1723d1a72831cbfc9e611ef5b50c2e0edb2ef90abac07eda8550f419cba_arm64" + }, + "product_reference": "openshift-gitops-1/argocd-rhel8@sha256:fb09d1723d1a72831cbfc9e611ef5b50c2e0edb2ef90abac07eda8550f419cba_arm64", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/argocd-rhel8@sha256:fdf40063f9f02b0ed3843bc84d3cadf3375cad3c24b299adfbfc7bc054ca81d3_amd64 as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/argocd-rhel8@sha256:fdf40063f9f02b0ed3843bc84d3cadf3375cad3c24b299adfbfc7bc054ca81d3_amd64" + }, + "product_reference": "openshift-gitops-1/argocd-rhel8@sha256:fdf40063f9f02b0ed3843bc84d3cadf3375cad3c24b299adfbfc7bc054ca81d3_amd64", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/console-plugin-rhel8@sha256:371a942b555139688ccaff031e17a64a7951a122fb539aea766a6685fb6f09b2_s390x as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/console-plugin-rhel8@sha256:371a942b555139688ccaff031e17a64a7951a122fb539aea766a6685fb6f09b2_s390x" + }, + "product_reference": "openshift-gitops-1/console-plugin-rhel8@sha256:371a942b555139688ccaff031e17a64a7951a122fb539aea766a6685fb6f09b2_s390x", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/console-plugin-rhel8@sha256:5d7864c8650af9841477efe7346613d096a4e23c2d12c624eea18371d2652c43_amd64 as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/console-plugin-rhel8@sha256:5d7864c8650af9841477efe7346613d096a4e23c2d12c624eea18371d2652c43_amd64" + }, + "product_reference": "openshift-gitops-1/console-plugin-rhel8@sha256:5d7864c8650af9841477efe7346613d096a4e23c2d12c624eea18371d2652c43_amd64", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/console-plugin-rhel8@sha256:5dd600edbbe26c66a71346811343d087db759c236568b50588c8e2667dce07ef_ppc64le as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/console-plugin-rhel8@sha256:5dd600edbbe26c66a71346811343d087db759c236568b50588c8e2667dce07ef_ppc64le" + }, + "product_reference": "openshift-gitops-1/console-plugin-rhel8@sha256:5dd600edbbe26c66a71346811343d087db759c236568b50588c8e2667dce07ef_ppc64le", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/console-plugin-rhel8@sha256:8be5858787824f521d56c1e6ac4dae8b8ad0da80bb8f9132bb15551f29d386d0_arm64 as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/console-plugin-rhel8@sha256:8be5858787824f521d56c1e6ac4dae8b8ad0da80bb8f9132bb15551f29d386d0_arm64" + }, + "product_reference": "openshift-gitops-1/console-plugin-rhel8@sha256:8be5858787824f521d56c1e6ac4dae8b8ad0da80bb8f9132bb15551f29d386d0_arm64", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/dex-rhel8@sha256:01a11a866efae4dc4c1a8701a926f1dbaed0d59b67016af42ce3b1583f76f61e_ppc64le as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/dex-rhel8@sha256:01a11a866efae4dc4c1a8701a926f1dbaed0d59b67016af42ce3b1583f76f61e_ppc64le" + }, + "product_reference": "openshift-gitops-1/dex-rhel8@sha256:01a11a866efae4dc4c1a8701a926f1dbaed0d59b67016af42ce3b1583f76f61e_ppc64le", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/dex-rhel8@sha256:33aa62d739ea3c7441cf5090358a438a3145f2eb068250325a47efcfe7e2262b_amd64 as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/dex-rhel8@sha256:33aa62d739ea3c7441cf5090358a438a3145f2eb068250325a47efcfe7e2262b_amd64" + }, + "product_reference": "openshift-gitops-1/dex-rhel8@sha256:33aa62d739ea3c7441cf5090358a438a3145f2eb068250325a47efcfe7e2262b_amd64", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/dex-rhel8@sha256:8786a4bad9e5dafaefb4d9d6a82cb2cd1a5e33c5705da016a6dd678ed0bd3020_s390x as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/dex-rhel8@sha256:8786a4bad9e5dafaefb4d9d6a82cb2cd1a5e33c5705da016a6dd678ed0bd3020_s390x" + }, + "product_reference": "openshift-gitops-1/dex-rhel8@sha256:8786a4bad9e5dafaefb4d9d6a82cb2cd1a5e33c5705da016a6dd678ed0bd3020_s390x", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/dex-rhel8@sha256:a2eab607bbafe95976fb45760d529eb43bd964981dac1cf75c2691a3d6f3d05a_arm64 as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/dex-rhel8@sha256:a2eab607bbafe95976fb45760d529eb43bd964981dac1cf75c2691a3d6f3d05a_arm64" + }, + "product_reference": "openshift-gitops-1/dex-rhel8@sha256:a2eab607bbafe95976fb45760d529eb43bd964981dac1cf75c2691a3d6f3d05a_arm64", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/gitops-operator-bundle@sha256:b2d58f4dc20eb7e17e09af0e8c5de55fa04f9f4f697e10c6be81a7a6a08381b2_amd64 as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/gitops-operator-bundle@sha256:b2d58f4dc20eb7e17e09af0e8c5de55fa04f9f4f697e10c6be81a7a6a08381b2_amd64" + }, + "product_reference": "openshift-gitops-1/gitops-operator-bundle@sha256:b2d58f4dc20eb7e17e09af0e8c5de55fa04f9f4f697e10c6be81a7a6a08381b2_amd64", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/gitops-rhel8-operator@sha256:527cb23f973543f90679bbb655c2a1324d3415cec0d3f2f81e5dd1e557168834_arm64 as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/gitops-rhel8-operator@sha256:527cb23f973543f90679bbb655c2a1324d3415cec0d3f2f81e5dd1e557168834_arm64" + }, + "product_reference": "openshift-gitops-1/gitops-rhel8-operator@sha256:527cb23f973543f90679bbb655c2a1324d3415cec0d3f2f81e5dd1e557168834_arm64", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/gitops-rhel8-operator@sha256:5b402f28111ffcfdd3056e585e5bd48d23fd3eba7716255936e0f0a2e76a68b0_s390x as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/gitops-rhel8-operator@sha256:5b402f28111ffcfdd3056e585e5bd48d23fd3eba7716255936e0f0a2e76a68b0_s390x" + }, + "product_reference": "openshift-gitops-1/gitops-rhel8-operator@sha256:5b402f28111ffcfdd3056e585e5bd48d23fd3eba7716255936e0f0a2e76a68b0_s390x", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/gitops-rhel8-operator@sha256:7b80ab7f48d445d42c1dde4e6a925f31db872514f63513abd1fc9ae6b1f19ef2_ppc64le as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/gitops-rhel8-operator@sha256:7b80ab7f48d445d42c1dde4e6a925f31db872514f63513abd1fc9ae6b1f19ef2_ppc64le" + }, + "product_reference": "openshift-gitops-1/gitops-rhel8-operator@sha256:7b80ab7f48d445d42c1dde4e6a925f31db872514f63513abd1fc9ae6b1f19ef2_ppc64le", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/gitops-rhel8-operator@sha256:92d88294b1dc0a204a712900ee11bc0823215e2ee4da91552eb2c16467d473ba_amd64 as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/gitops-rhel8-operator@sha256:92d88294b1dc0a204a712900ee11bc0823215e2ee4da91552eb2c16467d473ba_amd64" + }, + "product_reference": "openshift-gitops-1/gitops-rhel8-operator@sha256:92d88294b1dc0a204a712900ee11bc0823215e2ee4da91552eb2c16467d473ba_amd64", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/gitops-rhel8@sha256:0b883f8ba0c6a799f0f0100c1cd40ab61e3421e0b48407d0e99a9b20a076515c_arm64 as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/gitops-rhel8@sha256:0b883f8ba0c6a799f0f0100c1cd40ab61e3421e0b48407d0e99a9b20a076515c_arm64" + }, + "product_reference": "openshift-gitops-1/gitops-rhel8@sha256:0b883f8ba0c6a799f0f0100c1cd40ab61e3421e0b48407d0e99a9b20a076515c_arm64", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/gitops-rhel8@sha256:5669866b9c26f4b56b3cee7b544e58c7371538570df2da6638c4556800beb2d7_ppc64le as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/gitops-rhel8@sha256:5669866b9c26f4b56b3cee7b544e58c7371538570df2da6638c4556800beb2d7_ppc64le" + }, + "product_reference": "openshift-gitops-1/gitops-rhel8@sha256:5669866b9c26f4b56b3cee7b544e58c7371538570df2da6638c4556800beb2d7_ppc64le", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/gitops-rhel8@sha256:971b2e412184c040ae2909691c9e8169de372b4e73aa6ac906feff631fa96abc_s390x as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/gitops-rhel8@sha256:971b2e412184c040ae2909691c9e8169de372b4e73aa6ac906feff631fa96abc_s390x" + }, + "product_reference": "openshift-gitops-1/gitops-rhel8@sha256:971b2e412184c040ae2909691c9e8169de372b4e73aa6ac906feff631fa96abc_s390x", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/gitops-rhel8@sha256:dd595a3c6bc0103e93f9fd29c175950dbc1df005f36188ce23929e1da46999e4_amd64 as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/gitops-rhel8@sha256:dd595a3c6bc0103e93f9fd29c175950dbc1df005f36188ce23929e1da46999e4_amd64" + }, + "product_reference": "openshift-gitops-1/gitops-rhel8@sha256:dd595a3c6bc0103e93f9fd29c175950dbc1df005f36188ce23929e1da46999e4_amd64", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/kam-delivery-rhel8@sha256:0ea24b2bf85c4bdd083d155b6eb2de5e9e026e5d0de9b536c401137ab64d984a_s390x as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/kam-delivery-rhel8@sha256:0ea24b2bf85c4bdd083d155b6eb2de5e9e026e5d0de9b536c401137ab64d984a_s390x" + }, + "product_reference": "openshift-gitops-1/kam-delivery-rhel8@sha256:0ea24b2bf85c4bdd083d155b6eb2de5e9e026e5d0de9b536c401137ab64d984a_s390x", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/kam-delivery-rhel8@sha256:49d3609e5f780d767722a60c3c18d62ab89aeccaf92b07e4c660dbe41058c616_amd64 as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/kam-delivery-rhel8@sha256:49d3609e5f780d767722a60c3c18d62ab89aeccaf92b07e4c660dbe41058c616_amd64" + }, + "product_reference": "openshift-gitops-1/kam-delivery-rhel8@sha256:49d3609e5f780d767722a60c3c18d62ab89aeccaf92b07e4c660dbe41058c616_amd64", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/kam-delivery-rhel8@sha256:781c83077c2ee1cfca7f6da18ff002b6a65a1e07c7e415704953cc6fbffbaea9_arm64 as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/kam-delivery-rhel8@sha256:781c83077c2ee1cfca7f6da18ff002b6a65a1e07c7e415704953cc6fbffbaea9_arm64" + }, + "product_reference": "openshift-gitops-1/kam-delivery-rhel8@sha256:781c83077c2ee1cfca7f6da18ff002b6a65a1e07c7e415704953cc6fbffbaea9_arm64", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/kam-delivery-rhel8@sha256:88a8aee36d303243ddb183c136d0f4d44da090b567db858fb74d5a73d35d78cd_ppc64le as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-1/kam-delivery-rhel8@sha256:88a8aee36d303243ddb183c136d0f4d44da090b567db858fb74d5a73d35d78cd_ppc64le" + }, + "product_reference": "openshift-gitops-1/kam-delivery-rhel8@sha256:88a8aee36d303243ddb183c136d0f4d44da090b567db858fb74d5a73d35d78cd_ppc64le", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-kam-0:1.8.6-10.el8.aarch64 as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-kam-0:1.8.6-10.el8.aarch64" + }, + "product_reference": "openshift-gitops-kam-0:1.8.6-10.el8.aarch64", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-kam-0:1.8.6-10.el8.ppc64le as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-kam-0:1.8.6-10.el8.ppc64le" + }, + "product_reference": "openshift-gitops-kam-0:1.8.6-10.el8.ppc64le", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-kam-0:1.8.6-10.el8.s390x as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-kam-0:1.8.6-10.el8.s390x" + }, + "product_reference": "openshift-gitops-kam-0:1.8.6-10.el8.s390x", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-kam-0:1.8.6-10.el8.src as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-kam-0:1.8.6-10.el8.src" + }, + "product_reference": "openshift-gitops-kam-0:1.8.6-10.el8.src", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-kam-0:1.8.6-10.el8.x86_64 as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-kam-0:1.8.6-10.el8.x86_64" + }, + "product_reference": "openshift-gitops-kam-0:1.8.6-10.el8.x86_64", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-kam-redistributable-0:1.8.6-10.el8.x86_64 as a component of Red Hat OpenShift GitOps 1.8", + "product_id": "8Base-GitOps-1.8:openshift-gitops-kam-redistributable-0:1.8.6-10.el8.x86_64" + }, + "product_reference": "openshift-gitops-kam-redistributable-0:1.8.6-10.el8.x86_64", + "relates_to_product_reference": "8Base-GitOps-1.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/argo-rollouts-rhel8@sha256:08c50b13b7fd04f3756250ce727f75f9d8da1bf0dbb27fd2f1206850d9e7d0fc_amd64 as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/argo-rollouts-rhel8@sha256:08c50b13b7fd04f3756250ce727f75f9d8da1bf0dbb27fd2f1206850d9e7d0fc_amd64" + }, + "product_reference": "openshift-gitops-1/argo-rollouts-rhel8@sha256:08c50b13b7fd04f3756250ce727f75f9d8da1bf0dbb27fd2f1206850d9e7d0fc_amd64", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/argo-rollouts-rhel8@sha256:5dda4516e7dd63cc711cd18e0569cdac873c2a3ae3bf41fd7645384e1aea0952_arm64 as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/argo-rollouts-rhel8@sha256:5dda4516e7dd63cc711cd18e0569cdac873c2a3ae3bf41fd7645384e1aea0952_arm64" + }, + "product_reference": "openshift-gitops-1/argo-rollouts-rhel8@sha256:5dda4516e7dd63cc711cd18e0569cdac873c2a3ae3bf41fd7645384e1aea0952_arm64", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/argo-rollouts-rhel8@sha256:9afedd1e7109a88fbe381846a6a0a206b24ba3e62dd699aa750d4b7f28505080_ppc64le as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/argo-rollouts-rhel8@sha256:9afedd1e7109a88fbe381846a6a0a206b24ba3e62dd699aa750d4b7f28505080_ppc64le" + }, + "product_reference": "openshift-gitops-1/argo-rollouts-rhel8@sha256:9afedd1e7109a88fbe381846a6a0a206b24ba3e62dd699aa750d4b7f28505080_ppc64le", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/argo-rollouts-rhel8@sha256:b830502f20de70c8fc7f77a6c58409c00f6db79224f306f5f667fadfca59bd84_s390x as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/argo-rollouts-rhel8@sha256:b830502f20de70c8fc7f77a6c58409c00f6db79224f306f5f667fadfca59bd84_s390x" + }, + "product_reference": "openshift-gitops-1/argo-rollouts-rhel8@sha256:b830502f20de70c8fc7f77a6c58409c00f6db79224f306f5f667fadfca59bd84_s390x", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/argocd-rhel8@sha256:bd8aa96326b5c5e649634489941e19bc17cbe04bfeb00d1b362d7afe98277594_arm64 as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/argocd-rhel8@sha256:bd8aa96326b5c5e649634489941e19bc17cbe04bfeb00d1b362d7afe98277594_arm64" + }, + "product_reference": "openshift-gitops-1/argocd-rhel8@sha256:bd8aa96326b5c5e649634489941e19bc17cbe04bfeb00d1b362d7afe98277594_arm64", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/argocd-rhel8@sha256:dd7e218067771217c00df8b4ed7b94faaa70f31596d8a8da796a1115f694fbfc_ppc64le as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/argocd-rhel8@sha256:dd7e218067771217c00df8b4ed7b94faaa70f31596d8a8da796a1115f694fbfc_ppc64le" + }, + "product_reference": "openshift-gitops-1/argocd-rhel8@sha256:dd7e218067771217c00df8b4ed7b94faaa70f31596d8a8da796a1115f694fbfc_ppc64le", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/argocd-rhel8@sha256:e432172e252f278ffe9d1e8bcf6c89c81cbef76e3755eb7b9f3d5ec4622a63e0_s390x as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/argocd-rhel8@sha256:e432172e252f278ffe9d1e8bcf6c89c81cbef76e3755eb7b9f3d5ec4622a63e0_s390x" + }, + "product_reference": "openshift-gitops-1/argocd-rhel8@sha256:e432172e252f278ffe9d1e8bcf6c89c81cbef76e3755eb7b9f3d5ec4622a63e0_s390x", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/argocd-rhel8@sha256:fbd5576fa614602b26677e91136d0c9c4722e0eb09672e3784ebdfe71737d3bd_amd64 as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/argocd-rhel8@sha256:fbd5576fa614602b26677e91136d0c9c4722e0eb09672e3784ebdfe71737d3bd_amd64" + }, + "product_reference": "openshift-gitops-1/argocd-rhel8@sha256:fbd5576fa614602b26677e91136d0c9c4722e0eb09672e3784ebdfe71737d3bd_amd64", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/console-plugin-rhel8@sha256:21bff8ab1b76db1507a96432d49df4e537ed66d1fed1c96434bde10bfdd62059_ppc64le as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/console-plugin-rhel8@sha256:21bff8ab1b76db1507a96432d49df4e537ed66d1fed1c96434bde10bfdd62059_ppc64le" + }, + "product_reference": "openshift-gitops-1/console-plugin-rhel8@sha256:21bff8ab1b76db1507a96432d49df4e537ed66d1fed1c96434bde10bfdd62059_ppc64le", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/console-plugin-rhel8@sha256:7c05fd1be9aa7427e565544975f7f85d4600c7eabfd22ff4f07e057e566496eb_arm64 as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/console-plugin-rhel8@sha256:7c05fd1be9aa7427e565544975f7f85d4600c7eabfd22ff4f07e057e566496eb_arm64" + }, + "product_reference": "openshift-gitops-1/console-plugin-rhel8@sha256:7c05fd1be9aa7427e565544975f7f85d4600c7eabfd22ff4f07e057e566496eb_arm64", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/console-plugin-rhel8@sha256:84dee8a0455dca910bab7407bb8bc3151f788ae991aa9c7d9380e8c7c1a4014c_s390x as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/console-plugin-rhel8@sha256:84dee8a0455dca910bab7407bb8bc3151f788ae991aa9c7d9380e8c7c1a4014c_s390x" + }, + "product_reference": "openshift-gitops-1/console-plugin-rhel8@sha256:84dee8a0455dca910bab7407bb8bc3151f788ae991aa9c7d9380e8c7c1a4014c_s390x", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/console-plugin-rhel8@sha256:eb9abd40236e7752cd8b5d215ff8619d73e1fd5ff6abd0884409dcd442fb4eaf_amd64 as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/console-plugin-rhel8@sha256:eb9abd40236e7752cd8b5d215ff8619d73e1fd5ff6abd0884409dcd442fb4eaf_amd64" + }, + "product_reference": "openshift-gitops-1/console-plugin-rhel8@sha256:eb9abd40236e7752cd8b5d215ff8619d73e1fd5ff6abd0884409dcd442fb4eaf_amd64", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/dex-rhel8@sha256:14b1e455f6ba59777aec0298b64a21cf40d89429dcbc3dd59ad2f30c649d6f5f_ppc64le as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/dex-rhel8@sha256:14b1e455f6ba59777aec0298b64a21cf40d89429dcbc3dd59ad2f30c649d6f5f_ppc64le" + }, + "product_reference": "openshift-gitops-1/dex-rhel8@sha256:14b1e455f6ba59777aec0298b64a21cf40d89429dcbc3dd59ad2f30c649d6f5f_ppc64le", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/dex-rhel8@sha256:2c5390ab43937ee0f089f56bd64752aa7d477d713d2eabf17fa7a48b3244e573_amd64 as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/dex-rhel8@sha256:2c5390ab43937ee0f089f56bd64752aa7d477d713d2eabf17fa7a48b3244e573_amd64" + }, + "product_reference": "openshift-gitops-1/dex-rhel8@sha256:2c5390ab43937ee0f089f56bd64752aa7d477d713d2eabf17fa7a48b3244e573_amd64", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/dex-rhel8@sha256:ae805dd6858d45e042b335240e450c5f5635546381f2cf755b4d0049f80e4bbd_s390x as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/dex-rhel8@sha256:ae805dd6858d45e042b335240e450c5f5635546381f2cf755b4d0049f80e4bbd_s390x" + }, + "product_reference": "openshift-gitops-1/dex-rhel8@sha256:ae805dd6858d45e042b335240e450c5f5635546381f2cf755b4d0049f80e4bbd_s390x", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/dex-rhel8@sha256:f58dc92bdffd95385a51ecdff7677b49cc85b0a7718ca5f69301e6711a9bf04c_arm64 as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/dex-rhel8@sha256:f58dc92bdffd95385a51ecdff7677b49cc85b0a7718ca5f69301e6711a9bf04c_arm64" + }, + "product_reference": "openshift-gitops-1/dex-rhel8@sha256:f58dc92bdffd95385a51ecdff7677b49cc85b0a7718ca5f69301e6711a9bf04c_arm64", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/gitops-operator-bundle@sha256:d8725149c57d5de6c5c10d472cfd54721e8f8bf12e66e34c0311103a835a3081_amd64 as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/gitops-operator-bundle@sha256:d8725149c57d5de6c5c10d472cfd54721e8f8bf12e66e34c0311103a835a3081_amd64" + }, + "product_reference": "openshift-gitops-1/gitops-operator-bundle@sha256:d8725149c57d5de6c5c10d472cfd54721e8f8bf12e66e34c0311103a835a3081_amd64", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/gitops-rhel8-operator@sha256:02bc04eaa379108c8cf99da5d89a4e8305ccb3c3921037c9b160d639c5c4de03_s390x as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/gitops-rhel8-operator@sha256:02bc04eaa379108c8cf99da5d89a4e8305ccb3c3921037c9b160d639c5c4de03_s390x" + }, + "product_reference": "openshift-gitops-1/gitops-rhel8-operator@sha256:02bc04eaa379108c8cf99da5d89a4e8305ccb3c3921037c9b160d639c5c4de03_s390x", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/gitops-rhel8-operator@sha256:32da9518faee368da0902ba87c1ed95a03e75ea344a31c9af19a96a436a6ddf3_arm64 as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/gitops-rhel8-operator@sha256:32da9518faee368da0902ba87c1ed95a03e75ea344a31c9af19a96a436a6ddf3_arm64" + }, + "product_reference": "openshift-gitops-1/gitops-rhel8-operator@sha256:32da9518faee368da0902ba87c1ed95a03e75ea344a31c9af19a96a436a6ddf3_arm64", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/gitops-rhel8-operator@sha256:79f9227088dee48a79afd14732087c23ea0c6869c0dd167dac94365b225592ec_ppc64le as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/gitops-rhel8-operator@sha256:79f9227088dee48a79afd14732087c23ea0c6869c0dd167dac94365b225592ec_ppc64le" + }, + "product_reference": "openshift-gitops-1/gitops-rhel8-operator@sha256:79f9227088dee48a79afd14732087c23ea0c6869c0dd167dac94365b225592ec_ppc64le", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/gitops-rhel8-operator@sha256:d491c7c8525393b4dc8277fae5639ee41ae4d6bbada83a212742e9683877f0b0_amd64 as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/gitops-rhel8-operator@sha256:d491c7c8525393b4dc8277fae5639ee41ae4d6bbada83a212742e9683877f0b0_amd64" + }, + "product_reference": "openshift-gitops-1/gitops-rhel8-operator@sha256:d491c7c8525393b4dc8277fae5639ee41ae4d6bbada83a212742e9683877f0b0_amd64", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/gitops-rhel8@sha256:1e4441c4b21af05b97b4f4d5fdae767721ecc645a43f63611d18d3de87498805_arm64 as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/gitops-rhel8@sha256:1e4441c4b21af05b97b4f4d5fdae767721ecc645a43f63611d18d3de87498805_arm64" + }, + "product_reference": "openshift-gitops-1/gitops-rhel8@sha256:1e4441c4b21af05b97b4f4d5fdae767721ecc645a43f63611d18d3de87498805_arm64", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/gitops-rhel8@sha256:21f03d5337d4177a908f63ce3558bc130a045fc45c6f6a4d2783de4e4b555e21_ppc64le as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/gitops-rhel8@sha256:21f03d5337d4177a908f63ce3558bc130a045fc45c6f6a4d2783de4e4b555e21_ppc64le" + }, + "product_reference": "openshift-gitops-1/gitops-rhel8@sha256:21f03d5337d4177a908f63ce3558bc130a045fc45c6f6a4d2783de4e4b555e21_ppc64le", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/gitops-rhel8@sha256:585361fa372d675855cb517e0305339f9856fecc7b1f89b31ad33bca3f9836b8_s390x as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/gitops-rhel8@sha256:585361fa372d675855cb517e0305339f9856fecc7b1f89b31ad33bca3f9836b8_s390x" + }, + "product_reference": "openshift-gitops-1/gitops-rhel8@sha256:585361fa372d675855cb517e0305339f9856fecc7b1f89b31ad33bca3f9836b8_s390x", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/gitops-rhel8@sha256:97acdfe9b2fba3a37f01e91efb4074eadcec204414ae7f2c0a426b71af60288c_amd64 as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/gitops-rhel8@sha256:97acdfe9b2fba3a37f01e91efb4074eadcec204414ae7f2c0a426b71af60288c_amd64" + }, + "product_reference": "openshift-gitops-1/gitops-rhel8@sha256:97acdfe9b2fba3a37f01e91efb4074eadcec204414ae7f2c0a426b71af60288c_amd64", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/kam-delivery-rhel8@sha256:1c546c5cdafd6ca78c3f5cb51d76bdc1c139fdbeee3eae0799a2550920cd31a1_amd64 as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/kam-delivery-rhel8@sha256:1c546c5cdafd6ca78c3f5cb51d76bdc1c139fdbeee3eae0799a2550920cd31a1_amd64" + }, + "product_reference": "openshift-gitops-1/kam-delivery-rhel8@sha256:1c546c5cdafd6ca78c3f5cb51d76bdc1c139fdbeee3eae0799a2550920cd31a1_amd64", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/kam-delivery-rhel8@sha256:6bdef15c447107069382c76cbf89faccbc116ec62c9be9231b0a8edc0e63c0a5_ppc64le as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/kam-delivery-rhel8@sha256:6bdef15c447107069382c76cbf89faccbc116ec62c9be9231b0a8edc0e63c0a5_ppc64le" + }, + "product_reference": "openshift-gitops-1/kam-delivery-rhel8@sha256:6bdef15c447107069382c76cbf89faccbc116ec62c9be9231b0a8edc0e63c0a5_ppc64le", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/kam-delivery-rhel8@sha256:9903bb78e5d0cc39d314e9bdaecf902ac4d24bee3f11b7658caaa381253c81c1_arm64 as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/kam-delivery-rhel8@sha256:9903bb78e5d0cc39d314e9bdaecf902ac4d24bee3f11b7658caaa381253c81c1_arm64" + }, + "product_reference": "openshift-gitops-1/kam-delivery-rhel8@sha256:9903bb78e5d0cc39d314e9bdaecf902ac4d24bee3f11b7658caaa381253c81c1_arm64", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/kam-delivery-rhel8@sha256:b6864990dd11208362570ff7642baf33d96690a9547ddb71403f5deb5578a761_s390x as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/kam-delivery-rhel8@sha256:b6864990dd11208362570ff7642baf33d96690a9547ddb71403f5deb5578a761_s390x" + }, + "product_reference": "openshift-gitops-1/kam-delivery-rhel8@sha256:b6864990dd11208362570ff7642baf33d96690a9547ddb71403f5deb5578a761_s390x", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/must-gather-rhel8@sha256:399cd150882466cd9e301ea92e899b802980825082c7a5d0a780a81903af0fce_s390x as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/must-gather-rhel8@sha256:399cd150882466cd9e301ea92e899b802980825082c7a5d0a780a81903af0fce_s390x" + }, + "product_reference": "openshift-gitops-1/must-gather-rhel8@sha256:399cd150882466cd9e301ea92e899b802980825082c7a5d0a780a81903af0fce_s390x", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/must-gather-rhel8@sha256:3eb502b1ef4886e5300c5cac0252f9000f1c71bb6c5f1a93758d01d36654be7e_arm64 as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/must-gather-rhel8@sha256:3eb502b1ef4886e5300c5cac0252f9000f1c71bb6c5f1a93758d01d36654be7e_arm64" + }, + "product_reference": "openshift-gitops-1/must-gather-rhel8@sha256:3eb502b1ef4886e5300c5cac0252f9000f1c71bb6c5f1a93758d01d36654be7e_arm64", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/must-gather-rhel8@sha256:847b14b3fae4d48b588174564b5a17177c141a8d4155442c146f4828642b86cc_ppc64le as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/must-gather-rhel8@sha256:847b14b3fae4d48b588174564b5a17177c141a8d4155442c146f4828642b86cc_ppc64le" + }, + "product_reference": "openshift-gitops-1/must-gather-rhel8@sha256:847b14b3fae4d48b588174564b5a17177c141a8d4155442c146f4828642b86cc_ppc64le", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-1/must-gather-rhel8@sha256:b8ff5a1de115b5760c281f59a32831a3a6b949d65a15689d591da6849b297ee9_amd64 as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-1/must-gather-rhel8@sha256:b8ff5a1de115b5760c281f59a32831a3a6b949d65a15689d591da6849b297ee9_amd64" + }, + "product_reference": "openshift-gitops-1/must-gather-rhel8@sha256:b8ff5a1de115b5760c281f59a32831a3a6b949d65a15689d591da6849b297ee9_amd64", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-kam-0:1.9.3-32.el8.aarch64 as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-kam-0:1.9.3-32.el8.aarch64" + }, + "product_reference": "openshift-gitops-kam-0:1.9.3-32.el8.aarch64", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-kam-0:1.9.3-32.el8.ppc64le as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-kam-0:1.9.3-32.el8.ppc64le" + }, + "product_reference": "openshift-gitops-kam-0:1.9.3-32.el8.ppc64le", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-kam-0:1.9.3-32.el8.s390x as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-kam-0:1.9.3-32.el8.s390x" + }, + "product_reference": "openshift-gitops-kam-0:1.9.3-32.el8.s390x", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-kam-0:1.9.3-32.el8.src as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-kam-0:1.9.3-32.el8.src" + }, + "product_reference": "openshift-gitops-kam-0:1.9.3-32.el8.src", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-kam-0:1.9.3-32.el8.x86_64 as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-kam-0:1.9.3-32.el8.x86_64" + }, + "product_reference": "openshift-gitops-kam-0:1.9.3-32.el8.x86_64", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-gitops-kam-redistributable-0:1.9.3-32.el8.x86_64 as a component of Red Hat OpenShift GitOps 1.9", + "product_id": "8Base-GitOps-1.9:openshift-gitops-kam-redistributable-0:1.9.3-32.el8.x86_64" + }, + "product_reference": "openshift-gitops-kam-redistributable-0:1.9.3-32.el8.x86_64", + "relates_to_product_reference": "8Base-GitOps-1.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-curl-0:8.2.1-2.el8jbcs.src as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-curl-0:8.2.1-2.el8jbcs.src" + }, + "product_reference": "jbcs-httpd24-curl-0:8.2.1-2.el8jbcs.src", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-curl-0:8.2.1-2.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-curl-0:8.2.1-2.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-curl-0:8.2.1-2.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-curl-debuginfo-0:8.2.1-2.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-curl-debuginfo-0:8.2.1-2.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-curl-debuginfo-0:8.2.1-2.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-httpd-0:2.4.57-6.el8jbcs.src as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-httpd-0:2.4.57-6.el8jbcs.src" + }, + "product_reference": "jbcs-httpd24-httpd-0:2.4.57-6.el8jbcs.src", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-httpd-0:2.4.57-6.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-httpd-0:2.4.57-6.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-httpd-0:2.4.57-6.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-httpd-debuginfo-0:2.4.57-6.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-httpd-debuginfo-0:2.4.57-6.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-httpd-debuginfo-0:2.4.57-6.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-httpd-devel-0:2.4.57-6.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-httpd-devel-0:2.4.57-6.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-httpd-devel-0:2.4.57-6.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-httpd-manual-0:2.4.57-6.el8jbcs.noarch as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-httpd-manual-0:2.4.57-6.el8jbcs.noarch" + }, + "product_reference": "jbcs-httpd24-httpd-manual-0:2.4.57-6.el8jbcs.noarch", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-httpd-selinux-0:2.4.57-6.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-httpd-selinux-0:2.4.57-6.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-httpd-selinux-0:2.4.57-6.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-httpd-tools-0:2.4.57-6.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-httpd-tools-0:2.4.57-6.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-httpd-tools-0:2.4.57-6.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-httpd-tools-debuginfo-0:2.4.57-6.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-httpd-tools-debuginfo-0:2.4.57-6.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-httpd-tools-debuginfo-0:2.4.57-6.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-libcurl-0:8.2.1-2.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-libcurl-0:8.2.1-2.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-libcurl-0:8.2.1-2.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-libcurl-debuginfo-0:8.2.1-2.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-libcurl-debuginfo-0:8.2.1-2.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-libcurl-debuginfo-0:8.2.1-2.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-libcurl-devel-0:8.2.1-2.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-libcurl-devel-0:8.2.1-2.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-libcurl-devel-0:8.2.1-2.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_http2-0:1.15.19-30.el8jbcs.src as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-30.el8jbcs.src" + }, + "product_reference": "jbcs-httpd24-mod_http2-0:1.15.19-30.el8jbcs.src", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_http2-0:1.15.19-30.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-mod_http2-0:1.15.19-30.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_http2-0:1.15.19-30.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-30.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-30.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_http2-debuginfo-0:1.15.19-30.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_jk-0:1.2.48-53.redhat_1.el8jbcs.src as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-mod_jk-0:1.2.48-53.redhat_1.el8jbcs.src" + }, + "product_reference": "jbcs-httpd24-mod_jk-0:1.2.48-53.redhat_1.el8jbcs.src", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_jk-ap24-0:1.2.48-53.redhat_1.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-mod_jk-ap24-0:1.2.48-53.redhat_1.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_jk-ap24-0:1.2.48-53.redhat_1.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-53.redhat_1.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-53.redhat_1.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_jk-ap24-debuginfo-0:1.2.48-53.redhat_1.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_ldap-0:2.4.57-6.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-mod_ldap-0:2.4.57-6.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_ldap-0:2.4.57-6.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_ldap-debuginfo-0:2.4.57-6.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-mod_ldap-debuginfo-0:2.4.57-6.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_ldap-debuginfo-0:2.4.57-6.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_md-1:2.4.0-27.el8jbcs.src as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-27.el8jbcs.src" + }, + "product_reference": "jbcs-httpd24-mod_md-1:2.4.0-27.el8jbcs.src", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_md-1:2.4.0-27.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-mod_md-1:2.4.0-27.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_md-1:2.4.0-27.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_md-debuginfo-1:2.4.0-27.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-mod_md-debuginfo-1:2.4.0-27.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_md-debuginfo-1:2.4.0-27.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_proxy_cluster-0:1.3.19-6.el8jbcs.src as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.19-6.el8jbcs.src" + }, + "product_reference": "jbcs-httpd24-mod_proxy_cluster-0:1.3.19-6.el8jbcs.src", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_proxy_cluster-0:1.3.19-6.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-0:1.3.19-6.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_proxy_cluster-0:1.3.19-6.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.19-6.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.19-6.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_proxy_cluster-debuginfo-0:1.3.19-6.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_proxy_html-1:2.4.57-6.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-mod_proxy_html-1:2.4.57-6.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_proxy_html-1:2.4.57-6.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.57-6.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.57-6.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_proxy_html-debuginfo-1:2.4.57-6.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_security-0:2.9.3-31.el8jbcs.src as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-31.el8jbcs.src" + }, + "product_reference": "jbcs-httpd24-mod_security-0:2.9.3-31.el8jbcs.src", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_security-0:2.9.3-31.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-mod_security-0:2.9.3-31.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_security-0:2.9.3-31.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_security-debuginfo-0:2.9.3-31.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-mod_security-debuginfo-0:2.9.3-31.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_security-debuginfo-0:2.9.3-31.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_session-0:2.4.57-6.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-mod_session-0:2.4.57-6.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_session-0:2.4.57-6.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_session-debuginfo-0:2.4.57-6.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-mod_session-debuginfo-0:2.4.57-6.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_session-debuginfo-0:2.4.57-6.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_ssl-1:2.4.57-6.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-mod_ssl-1:2.4.57-6.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_ssl-1:2.4.57-6.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-mod_ssl-debuginfo-1:2.4.57-6.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-mod_ssl-debuginfo-1:2.4.57-6.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-mod_ssl-debuginfo-1:2.4.57-6.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-nghttp2-0:1.43.0-12.el8jbcs.src as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-nghttp2-0:1.43.0-12.el8jbcs.src" + }, + "product_reference": "jbcs-httpd24-nghttp2-0:1.43.0-12.el8jbcs.src", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-nghttp2-0:1.43.0-12.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-nghttp2-0:1.43.0-12.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-nghttp2-0:1.43.0-12.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-nghttp2-debuginfo-0:1.43.0-12.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-nghttp2-debuginfo-0:1.43.0-12.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-nghttp2-debuginfo-0:1.43.0-12.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jbcs-httpd24-nghttp2-devel-0:1.43.0-12.el8jbcs.x86_64 as a component of Red Hat JBoss Core Services on RHEL 8", + "product_id": "8Base-JBCS:jbcs-httpd24-nghttp2-devel-0:1.43.0-12.el8jbcs.x86_64" + }, + "product_reference": "jbcs-httpd24-nghttp2-devel-0:1.43.0-12.el8jbcs.x86_64", + "relates_to_product_reference": "8Base-JBCS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el8eap.src as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el8eap.src" + }, + "product_reference": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el8eap.src", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-all-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-all-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-all-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-buffer-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-buffer-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-buffer-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-codec-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-codec-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-dns-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-codec-dns-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-codec-dns-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-haproxy-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-codec-haproxy-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-codec-haproxy-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-http-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-codec-http-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-codec-http-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-http2-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-codec-http2-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-codec-http2-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-memcache-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-codec-memcache-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-codec-memcache-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-mqtt-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-codec-mqtt-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-codec-mqtt-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-redis-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-codec-redis-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-codec-redis-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-smtp-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-codec-smtp-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-codec-smtp-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-socks-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-codec-socks-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-codec-socks-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-stomp-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-codec-stomp-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-codec-stomp-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-xml-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-codec-xml-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-codec-xml-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-common-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-common-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-common-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-handler-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-handler-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-handler-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-handler-proxy-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-handler-proxy-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-handler-proxy-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-resolver-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-resolver-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-resolver-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-resolver-dns-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-resolver-dns-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-resolver-dns-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-resolver-dns-classes-macos-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-resolver-dns-classes-macos-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-resolver-dns-classes-macos-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-transport-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-transport-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-classes-epoll-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-transport-classes-epoll-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-transport-classes-epoll-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-classes-kqueue-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-transport-classes-kqueue-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-transport-classes-kqueue-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el8eap.src as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el8eap.src" + }, + "product_reference": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el8eap.src", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el8eap.x86_64 as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el8eap.x86_64" + }, + "product_reference": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el8eap.x86_64", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-native-epoll-debuginfo-0:4.1.94-2.Final_redhat_00003.1.el8eap.x86_64 as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-transport-native-epoll-debuginfo-0:4.1.94-2.Final_redhat_00003.1.el8eap.x86_64" + }, + "product_reference": "eap7-netty-transport-native-epoll-debuginfo-0:4.1.94-2.Final_redhat_00003.1.el8eap.x86_64", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-native-unix-common-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-transport-native-unix-common-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-transport-native-unix-common-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-rxtx-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-transport-rxtx-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-transport-rxtx-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-sctp-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-transport-sctp-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-transport-sctp-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-udt-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-netty-transport-udt-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch" + }, + "product_reference": "eap7-netty-transport-udt-0:4.1.94-2.Final_redhat_00003.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el8eap.noarch" + }, + "product_reference": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el8eap.src as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el8eap.src" + }, + "product_reference": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el8eap.src", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch" + }, + "product_reference": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el8eap.src as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el8eap.src" + }, + "product_reference": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el8eap.src", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-wildfly-java-jdk11-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-wildfly-java-jdk11-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch" + }, + "product_reference": "eap7-wildfly-java-jdk11-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-wildfly-java-jdk17-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-wildfly-java-jdk17-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch" + }, + "product_reference": "eap7-wildfly-java-jdk17-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-wildfly-java-jdk8-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-wildfly-java-jdk8-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch" + }, + "product_reference": "eap7-wildfly-java-jdk8-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-wildfly-modules-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 8", + "product_id": "8Base-JBEAP-7.4:eap7-wildfly-modules-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch" + }, + "product_reference": "eap7-wildfly-modules-0:7.4.13-10.GA_redhat_00002.1.el8eap.noarch", + "relates_to_product_reference": "8Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el8jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 8", + "product_id": "8Base-JWS-5.7:jws5-tomcat-0:9.0.62-16.redhat_00014.1.el8jws.noarch" + }, + "product_reference": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "relates_to_product_reference": "8Base-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el8jws.src as a component of Red Hat JBoss Web Server 5.7 for RHEL 8", + "product_id": "8Base-JWS-5.7:jws5-tomcat-0:9.0.62-16.redhat_00014.1.el8jws.src" + }, + "product_reference": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el8jws.src", + "relates_to_product_reference": "8Base-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-admin-webapps-0:9.0.62-16.redhat_00014.1.el8jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 8", + "product_id": "8Base-JWS-5.7:jws5-tomcat-admin-webapps-0:9.0.62-16.redhat_00014.1.el8jws.noarch" + }, + "product_reference": "jws5-tomcat-admin-webapps-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "relates_to_product_reference": "8Base-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-docs-webapp-0:9.0.62-16.redhat_00014.1.el8jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 8", + "product_id": "8Base-JWS-5.7:jws5-tomcat-docs-webapp-0:9.0.62-16.redhat_00014.1.el8jws.noarch" + }, + "product_reference": "jws5-tomcat-docs-webapp-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "relates_to_product_reference": "8Base-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-el-3.0-api-0:9.0.62-16.redhat_00014.1.el8jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 8", + "product_id": "8Base-JWS-5.7:jws5-tomcat-el-3.0-api-0:9.0.62-16.redhat_00014.1.el8jws.noarch" + }, + "product_reference": "jws5-tomcat-el-3.0-api-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "relates_to_product_reference": "8Base-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-javadoc-0:9.0.62-16.redhat_00014.1.el8jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 8", + "product_id": "8Base-JWS-5.7:jws5-tomcat-javadoc-0:9.0.62-16.redhat_00014.1.el8jws.noarch" + }, + "product_reference": "jws5-tomcat-javadoc-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "relates_to_product_reference": "8Base-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-jsp-2.3-api-0:9.0.62-16.redhat_00014.1.el8jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 8", + "product_id": "8Base-JWS-5.7:jws5-tomcat-jsp-2.3-api-0:9.0.62-16.redhat_00014.1.el8jws.noarch" + }, + "product_reference": "jws5-tomcat-jsp-2.3-api-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "relates_to_product_reference": "8Base-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-lib-0:9.0.62-16.redhat_00014.1.el8jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 8", + "product_id": "8Base-JWS-5.7:jws5-tomcat-lib-0:9.0.62-16.redhat_00014.1.el8jws.noarch" + }, + "product_reference": "jws5-tomcat-lib-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "relates_to_product_reference": "8Base-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-selinux-0:9.0.62-16.redhat_00014.1.el8jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 8", + "product_id": "8Base-JWS-5.7:jws5-tomcat-selinux-0:9.0.62-16.redhat_00014.1.el8jws.noarch" + }, + "product_reference": "jws5-tomcat-selinux-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "relates_to_product_reference": "8Base-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-servlet-4.0-api-0:9.0.62-16.redhat_00014.1.el8jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 8", + "product_id": "8Base-JWS-5.7:jws5-tomcat-servlet-4.0-api-0:9.0.62-16.redhat_00014.1.el8jws.noarch" + }, + "product_reference": "jws5-tomcat-servlet-4.0-api-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "relates_to_product_reference": "8Base-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-webapps-0:9.0.62-16.redhat_00014.1.el8jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 8", + "product_id": "8Base-JWS-5.7:jws5-tomcat-webapps-0:9.0.62-16.redhat_00014.1.el8jws.noarch" + }, + "product_reference": "jws5-tomcat-webapps-0:9.0.62-16.redhat_00014.1.el8jws.noarch", + "relates_to_product_reference": "8Base-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "workload-availability/machine-deletion-remediation-operator-bundle@sha256:394d122efcf0da16bb68bfef1292395cda1bdb21909ae55f8fcc54a16814f1cf_amd64 as a component of Machine Deletion Remediation 0.2 for RHEL 8", + "product_id": "8Base-MACHINE-DELETION-REMEDIATION-0.2:workload-availability/machine-deletion-remediation-operator-bundle@sha256:394d122efcf0da16bb68bfef1292395cda1bdb21909ae55f8fcc54a16814f1cf_amd64" + }, + "product_reference": "workload-availability/machine-deletion-remediation-operator-bundle@sha256:394d122efcf0da16bb68bfef1292395cda1bdb21909ae55f8fcc54a16814f1cf_amd64", + "relates_to_product_reference": "8Base-MACHINE-DELETION-REMEDIATION-0.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "workload-availability/machine-deletion-remediation-rhel8-operator@sha256:f2bfffe3db68a417fe64739adcc72b8e4333b18849c03ba78d751b8f371c705a_amd64 as a component of Machine Deletion Remediation 0.2 for RHEL 8", + "product_id": "8Base-MACHINE-DELETION-REMEDIATION-0.2:workload-availability/machine-deletion-remediation-rhel8-operator@sha256:f2bfffe3db68a417fe64739adcc72b8e4333b18849c03ba78d751b8f371c705a_amd64" + }, + "product_reference": "workload-availability/machine-deletion-remediation-rhel8-operator@sha256:f2bfffe3db68a417fe64739adcc72b8e4333b18849c03ba78d751b8f371c705a_amd64", + "relates_to_product_reference": "8Base-MACHINE-DELETION-REMEDIATION-0.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mta/mta-hub-rhel8@sha256:5dddb8ad78fd32ea95f0cecefefe23df5f91947e4ecf91545904a41d587d5f9c_amd64 as a component of MTA 6.1 for RHEL 8", + "product_id": "8Base-MTA-6.1:mta/mta-hub-rhel8@sha256:5dddb8ad78fd32ea95f0cecefefe23df5f91947e4ecf91545904a41d587d5f9c_amd64" + }, + "product_reference": "mta/mta-hub-rhel8@sha256:5dddb8ad78fd32ea95f0cecefefe23df5f91947e4ecf91545904a41d587d5f9c_amd64", + "relates_to_product_reference": "8Base-MTA-6.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mta/mta-operator-bundle@sha256:f3d585e24d65905b2e9f594dcdb67721aa95057ab7587ae531c3487aa2f94e53_amd64 as a component of MTA 6.1 for RHEL 8", + "product_id": "8Base-MTA-6.1:mta/mta-operator-bundle@sha256:f3d585e24d65905b2e9f594dcdb67721aa95057ab7587ae531c3487aa2f94e53_amd64" + }, + "product_reference": "mta/mta-operator-bundle@sha256:f3d585e24d65905b2e9f594dcdb67721aa95057ab7587ae531c3487aa2f94e53_amd64", + "relates_to_product_reference": "8Base-MTA-6.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mta/mta-pathfinder-rhel8@sha256:e3abb9fce799c8b59e2001fa06b186fecce9f8d19d4987e3ce16ba2325f0ad00_amd64 as a component of MTA 6.1 for RHEL 8", + "product_id": "8Base-MTA-6.1:mta/mta-pathfinder-rhel8@sha256:e3abb9fce799c8b59e2001fa06b186fecce9f8d19d4987e3ce16ba2325f0ad00_amd64" + }, + "product_reference": "mta/mta-pathfinder-rhel8@sha256:e3abb9fce799c8b59e2001fa06b186fecce9f8d19d4987e3ce16ba2325f0ad00_amd64", + "relates_to_product_reference": "8Base-MTA-6.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mta/mta-rhel8-operator@sha256:3ec660105a8b02d46e6b0fb33293f5dc8e8c628b9a0487b261e7c6c811152f55_amd64 as a component of MTA 6.1 for RHEL 8", + "product_id": "8Base-MTA-6.1:mta/mta-rhel8-operator@sha256:3ec660105a8b02d46e6b0fb33293f5dc8e8c628b9a0487b261e7c6c811152f55_amd64" + }, + "product_reference": "mta/mta-rhel8-operator@sha256:3ec660105a8b02d46e6b0fb33293f5dc8e8c628b9a0487b261e7c6c811152f55_amd64", + "relates_to_product_reference": "8Base-MTA-6.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mta/mta-ui-rhel8@sha256:c3b75025b98012483cd5d7fc3b1e2b747e6c78782e99736522b9cdbf220f5841_amd64 as a component of MTA 6.1 for RHEL 8", + "product_id": "8Base-MTA-6.1:mta/mta-ui-rhel8@sha256:c3b75025b98012483cd5d7fc3b1e2b747e6c78782e99736522b9cdbf220f5841_amd64" + }, + "product_reference": "mta/mta-ui-rhel8@sha256:c3b75025b98012483cd5d7fc3b1e2b747e6c78782e99736522b9cdbf220f5841_amd64", + "relates_to_product_reference": "8Base-MTA-6.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mta/mta-windup-addon-rhel8@sha256:569e41225942bc8bebaa2d4becb83254ab5ca290363a18d186754fc7f039e95a_amd64 as a component of MTA 6.1 for RHEL 8", + "product_id": "8Base-MTA-6.1:mta/mta-windup-addon-rhel8@sha256:569e41225942bc8bebaa2d4becb83254ab5ca290363a18d186754fc7f039e95a_amd64" + }, + "product_reference": "mta/mta-windup-addon-rhel8@sha256:569e41225942bc8bebaa2d4becb83254ab5ca290363a18d186754fc7f039e95a_amd64", + "relates_to_product_reference": "8Base-MTA-6.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mta/mta-rhel8-operator@sha256:a044ecc125e34bbdc41c5926b9bb49cf233c534618367e1bd57d24d4b54164fb_amd64 as a component of MTA 6.2 for RHEL 8", + "product_id": "8Base-MTA-6.2:mta/mta-rhel8-operator@sha256:a044ecc125e34bbdc41c5926b9bb49cf233c534618367e1bd57d24d4b54164fb_amd64" + }, + "product_reference": "mta/mta-rhel8-operator@sha256:a044ecc125e34bbdc41c5926b9bb49cf233c534618367e1bd57d24d4b54164fb_amd64", + "relates_to_product_reference": "8Base-MTA-6.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-operator-bundle@sha256:13b3c51ad5aed90c1df7b98294baae889766c76c7c14fb952a6c0808980473ea_s390x as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-operator-bundle@sha256:13b3c51ad5aed90c1df7b98294baae889766c76c7c14fb952a6c0808980473ea_s390x" + }, + "product_reference": "mtr/mtr-operator-bundle@sha256:13b3c51ad5aed90c1df7b98294baae889766c76c7c14fb952a6c0808980473ea_s390x", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-operator-bundle@sha256:60acebf53444e65bab7e216838cd9da49928fed27db24d75f5d1a244993f42dd_amd64 as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-operator-bundle@sha256:60acebf53444e65bab7e216838cd9da49928fed27db24d75f5d1a244993f42dd_amd64" + }, + "product_reference": "mtr/mtr-operator-bundle@sha256:60acebf53444e65bab7e216838cd9da49928fed27db24d75f5d1a244993f42dd_amd64", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-operator-bundle@sha256:879263f1412ce4ebd224728713b5f353a3aff3130b052718d6cb6d763513ab85_s390x as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-operator-bundle@sha256:879263f1412ce4ebd224728713b5f353a3aff3130b052718d6cb6d763513ab85_s390x" + }, + "product_reference": "mtr/mtr-operator-bundle@sha256:879263f1412ce4ebd224728713b5f353a3aff3130b052718d6cb6d763513ab85_s390x", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-operator-bundle@sha256:a1656094f8f5b859d15e4be824e714478a028b18cf2c8acef38acbc9b35428fe_arm64 as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-operator-bundle@sha256:a1656094f8f5b859d15e4be824e714478a028b18cf2c8acef38acbc9b35428fe_arm64" + }, + "product_reference": "mtr/mtr-operator-bundle@sha256:a1656094f8f5b859d15e4be824e714478a028b18cf2c8acef38acbc9b35428fe_arm64", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-operator-bundle@sha256:a168c9110fd01e0615e62e16408688599d65dece68d5965547b50be3072bde7b_ppc64le as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-operator-bundle@sha256:a168c9110fd01e0615e62e16408688599d65dece68d5965547b50be3072bde7b_ppc64le" + }, + "product_reference": "mtr/mtr-operator-bundle@sha256:a168c9110fd01e0615e62e16408688599d65dece68d5965547b50be3072bde7b_ppc64le", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-operator-bundle@sha256:a34d7e0a9c5064a9a61d297dec40dca605e7a2dd933a1b6bde445f1dfdda6003_ppc64le as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-operator-bundle@sha256:a34d7e0a9c5064a9a61d297dec40dca605e7a2dd933a1b6bde445f1dfdda6003_ppc64le" + }, + "product_reference": "mtr/mtr-operator-bundle@sha256:a34d7e0a9c5064a9a61d297dec40dca605e7a2dd933a1b6bde445f1dfdda6003_ppc64le", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-operator-bundle@sha256:d625ba8a43c5e2f672fc1eacf894792cb11be7397a7678ae768dfb37f5feaf29_amd64 as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-operator-bundle@sha256:d625ba8a43c5e2f672fc1eacf894792cb11be7397a7678ae768dfb37f5feaf29_amd64" + }, + "product_reference": "mtr/mtr-operator-bundle@sha256:d625ba8a43c5e2f672fc1eacf894792cb11be7397a7678ae768dfb37f5feaf29_amd64", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-operator-bundle@sha256:ed8fe2d3313cea2435357cce660cc933260d3a254e66575aa8d9e6edd44531eb_arm64 as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-operator-bundle@sha256:ed8fe2d3313cea2435357cce660cc933260d3a254e66575aa8d9e6edd44531eb_arm64" + }, + "product_reference": "mtr/mtr-operator-bundle@sha256:ed8fe2d3313cea2435357cce660cc933260d3a254e66575aa8d9e6edd44531eb_arm64", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-rhel8-operator@sha256:71ce5cfaf6f39e242599df08643c9512c5af0a316a3b19b45c6042154c68d236_ppc64le as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-rhel8-operator@sha256:71ce5cfaf6f39e242599df08643c9512c5af0a316a3b19b45c6042154c68d236_ppc64le" + }, + "product_reference": "mtr/mtr-rhel8-operator@sha256:71ce5cfaf6f39e242599df08643c9512c5af0a316a3b19b45c6042154c68d236_ppc64le", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-rhel8-operator@sha256:74dbf338ddb1772ad6dba53c0fa185cfe4d8d8973210d67b7662d3406b26c3a6_arm64 as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-rhel8-operator@sha256:74dbf338ddb1772ad6dba53c0fa185cfe4d8d8973210d67b7662d3406b26c3a6_arm64" + }, + "product_reference": "mtr/mtr-rhel8-operator@sha256:74dbf338ddb1772ad6dba53c0fa185cfe4d8d8973210d67b7662d3406b26c3a6_arm64", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-rhel8-operator@sha256:8b69faaf8c6d271bdc915cbeaf8e8aba924ab061d5c46aaacb17db8adcfadb84_amd64 as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-rhel8-operator@sha256:8b69faaf8c6d271bdc915cbeaf8e8aba924ab061d5c46aaacb17db8adcfadb84_amd64" + }, + "product_reference": "mtr/mtr-rhel8-operator@sha256:8b69faaf8c6d271bdc915cbeaf8e8aba924ab061d5c46aaacb17db8adcfadb84_amd64", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-rhel8-operator@sha256:93c10589ddcd6d5ac5a910474806ce55d7ed798c10ce8e7c430d22291f11b72b_s390x as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-rhel8-operator@sha256:93c10589ddcd6d5ac5a910474806ce55d7ed798c10ce8e7c430d22291f11b72b_s390x" + }, + "product_reference": "mtr/mtr-rhel8-operator@sha256:93c10589ddcd6d5ac5a910474806ce55d7ed798c10ce8e7c430d22291f11b72b_s390x", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-rhel8-operator@sha256:a4a3645358bca40d262ab0e796d5462c1bbc34be1d6fed6ecb0d09e4ac55f7a6_ppc64le as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-rhel8-operator@sha256:a4a3645358bca40d262ab0e796d5462c1bbc34be1d6fed6ecb0d09e4ac55f7a6_ppc64le" + }, + "product_reference": "mtr/mtr-rhel8-operator@sha256:a4a3645358bca40d262ab0e796d5462c1bbc34be1d6fed6ecb0d09e4ac55f7a6_ppc64le", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-rhel8-operator@sha256:aa640165558c9f5e916db580b354a358c167eae36597439b5c393d9686b9be6f_arm64 as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-rhel8-operator@sha256:aa640165558c9f5e916db580b354a358c167eae36597439b5c393d9686b9be6f_arm64" + }, + "product_reference": "mtr/mtr-rhel8-operator@sha256:aa640165558c9f5e916db580b354a358c167eae36597439b5c393d9686b9be6f_arm64", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-rhel8-operator@sha256:e01ce6a876935bf298a0820199aa7b462a99b7c48680da6aa3e7c113446d5d88_amd64 as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-rhel8-operator@sha256:e01ce6a876935bf298a0820199aa7b462a99b7c48680da6aa3e7c113446d5d88_amd64" + }, + "product_reference": "mtr/mtr-rhel8-operator@sha256:e01ce6a876935bf298a0820199aa7b462a99b7c48680da6aa3e7c113446d5d88_amd64", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-rhel8-operator@sha256:f55c866e421df052ccacb5145893fc6fe0a42f3d5d224123b0c9bfdde6495001_s390x as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-rhel8-operator@sha256:f55c866e421df052ccacb5145893fc6fe0a42f3d5d224123b0c9bfdde6495001_s390x" + }, + "product_reference": "mtr/mtr-rhel8-operator@sha256:f55c866e421df052ccacb5145893fc6fe0a42f3d5d224123b0c9bfdde6495001_s390x", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-web-container-rhel8@sha256:1165d0a18300b3ca0a432311e392aacbac822e5efe1d2e01429907b248f81774_s390x as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-web-container-rhel8@sha256:1165d0a18300b3ca0a432311e392aacbac822e5efe1d2e01429907b248f81774_s390x" + }, + "product_reference": "mtr/mtr-web-container-rhel8@sha256:1165d0a18300b3ca0a432311e392aacbac822e5efe1d2e01429907b248f81774_s390x", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-web-container-rhel8@sha256:12bb394a495be9cd01d5038256299462e5ec93ba4b593e60687f23f9f75090f1_ppc64le as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-web-container-rhel8@sha256:12bb394a495be9cd01d5038256299462e5ec93ba4b593e60687f23f9f75090f1_ppc64le" + }, + "product_reference": "mtr/mtr-web-container-rhel8@sha256:12bb394a495be9cd01d5038256299462e5ec93ba4b593e60687f23f9f75090f1_ppc64le", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-web-container-rhel8@sha256:801e00ff1c5aa1f2dd140b448e0d39210b2ed608306777d98959afe0b77ac0cf_ppc64le as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-web-container-rhel8@sha256:801e00ff1c5aa1f2dd140b448e0d39210b2ed608306777d98959afe0b77ac0cf_ppc64le" + }, + "product_reference": "mtr/mtr-web-container-rhel8@sha256:801e00ff1c5aa1f2dd140b448e0d39210b2ed608306777d98959afe0b77ac0cf_ppc64le", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-web-container-rhel8@sha256:c3e0a56a743b64e197f24898c847825102ec9309a97112906cb03a1c3f9f93e6_amd64 as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-web-container-rhel8@sha256:c3e0a56a743b64e197f24898c847825102ec9309a97112906cb03a1c3f9f93e6_amd64" + }, + "product_reference": "mtr/mtr-web-container-rhel8@sha256:c3e0a56a743b64e197f24898c847825102ec9309a97112906cb03a1c3f9f93e6_amd64", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-web-container-rhel8@sha256:c7348032abd6194e7fb47e63e1f00db706c20ebee4edba53746da6d3c40f166d_s390x as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-web-container-rhel8@sha256:c7348032abd6194e7fb47e63e1f00db706c20ebee4edba53746da6d3c40f166d_s390x" + }, + "product_reference": "mtr/mtr-web-container-rhel8@sha256:c7348032abd6194e7fb47e63e1f00db706c20ebee4edba53746da6d3c40f166d_s390x", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-web-container-rhel8@sha256:d3ef4e55145f7c1d8ba413b5a57292eec0a98b0279a430ec6e09bcd7ae9b6fc6_amd64 as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-web-container-rhel8@sha256:d3ef4e55145f7c1d8ba413b5a57292eec0a98b0279a430ec6e09bcd7ae9b6fc6_amd64" + }, + "product_reference": "mtr/mtr-web-container-rhel8@sha256:d3ef4e55145f7c1d8ba413b5a57292eec0a98b0279a430ec6e09bcd7ae9b6fc6_amd64", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-web-executor-container-rhel8@sha256:5b39504feb5073935afc16220e297e85a1a7287f482c89b4227ef0b9b7f7f355_arm64 as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-web-executor-container-rhel8@sha256:5b39504feb5073935afc16220e297e85a1a7287f482c89b4227ef0b9b7f7f355_arm64" + }, + "product_reference": "mtr/mtr-web-executor-container-rhel8@sha256:5b39504feb5073935afc16220e297e85a1a7287f482c89b4227ef0b9b7f7f355_arm64", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-web-executor-container-rhel8@sha256:91fb192d6b10008cb42d014c1c6a31fca5a21bbe033ef7694ff487f291a828b9_arm64 as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-web-executor-container-rhel8@sha256:91fb192d6b10008cb42d014c1c6a31fca5a21bbe033ef7694ff487f291a828b9_arm64" + }, + "product_reference": "mtr/mtr-web-executor-container-rhel8@sha256:91fb192d6b10008cb42d014c1c6a31fca5a21bbe033ef7694ff487f291a828b9_arm64", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-web-executor-container-rhel8@sha256:9a8218e8ad59ef78011343e70d61b4c0b3e3eaa2ddb9470cce87102698b986a5_amd64 as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-web-executor-container-rhel8@sha256:9a8218e8ad59ef78011343e70d61b4c0b3e3eaa2ddb9470cce87102698b986a5_amd64" + }, + "product_reference": "mtr/mtr-web-executor-container-rhel8@sha256:9a8218e8ad59ef78011343e70d61b4c0b3e3eaa2ddb9470cce87102698b986a5_amd64", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-web-executor-container-rhel8@sha256:ae7617841e45fb30cd8880ca48481b8451a203d63e06bc69c54f18152c034a53_ppc64le as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-web-executor-container-rhel8@sha256:ae7617841e45fb30cd8880ca48481b8451a203d63e06bc69c54f18152c034a53_ppc64le" + }, + "product_reference": "mtr/mtr-web-executor-container-rhel8@sha256:ae7617841e45fb30cd8880ca48481b8451a203d63e06bc69c54f18152c034a53_ppc64le", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-web-executor-container-rhel8@sha256:dd3df81b45579bf9cd1480922504ddf85dd09c5d8d99de5b0a1886b3fb6e02c2_amd64 as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-web-executor-container-rhel8@sha256:dd3df81b45579bf9cd1480922504ddf85dd09c5d8d99de5b0a1886b3fb6e02c2_amd64" + }, + "product_reference": "mtr/mtr-web-executor-container-rhel8@sha256:dd3df81b45579bf9cd1480922504ddf85dd09c5d8d99de5b0a1886b3fb6e02c2_amd64", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-web-executor-container-rhel8@sha256:deb6fa4f9b3f4ac7356383dee6137558c842af367f275f72c27ba04104f95d4a_s390x as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-web-executor-container-rhel8@sha256:deb6fa4f9b3f4ac7356383dee6137558c842af367f275f72c27ba04104f95d4a_s390x" + }, + "product_reference": "mtr/mtr-web-executor-container-rhel8@sha256:deb6fa4f9b3f4ac7356383dee6137558c842af367f275f72c27ba04104f95d4a_s390x", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-web-executor-container-rhel8@sha256:f138323dcffc5d4386decaf6fdcd4c059348a5c8ce3d6392c94dc7a40440ee3d_s390x as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-web-executor-container-rhel8@sha256:f138323dcffc5d4386decaf6fdcd4c059348a5c8ce3d6392c94dc7a40440ee3d_s390x" + }, + "product_reference": "mtr/mtr-web-executor-container-rhel8@sha256:f138323dcffc5d4386decaf6fdcd4c059348a5c8ce3d6392c94dc7a40440ee3d_s390x", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mtr/mtr-web-executor-container-rhel8@sha256:f5f48da94ab95be7c2b7642610af860d5bbcda300445f691d0139c2b1e23de84_ppc64le as a component of Migration Toolkit for Runtimes 1 on RHEL 8", + "product_id": "8Base-MTR-1:mtr/mtr-web-executor-container-rhel8@sha256:f5f48da94ab95be7c2b7642610af860d5bbcda300445f691d0139c2b1e23de84_ppc64le" + }, + "product_reference": "mtr/mtr-web-executor-container-rhel8@sha256:f5f48da94ab95be7c2b7642610af860d5bbcda300445f691d0139c2b1e23de84_ppc64le", + "relates_to_product_reference": "8Base-MTR-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-must-gather-api-rhel8@sha256:afc08bab3b5b19bcd4003819d4e1bc1c9c3faf71370154ee1695c9a3a6192223_amd64 as a component of 8Base-MTV-2.4", + "product_id": "8Base-MTV-2.4:migration-toolkit-virtualization/mtv-must-gather-api-rhel8@sha256:afc08bab3b5b19bcd4003819d4e1bc1c9c3faf71370154ee1695c9a3a6192223_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-must-gather-api-rhel8@sha256:afc08bab3b5b19bcd4003819d4e1bc1c9c3faf71370154ee1695c9a3a6192223_amd64", + "relates_to_product_reference": "8Base-MTV-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-must-gather-rhel8@sha256:0b766d8e51580920d3b558eaac237b39b70f890127adaac34177aff1b97596fa_amd64 as a component of 8Base-MTV-2.4", + "product_id": "8Base-MTV-2.4:migration-toolkit-virtualization/mtv-must-gather-rhel8@sha256:0b766d8e51580920d3b558eaac237b39b70f890127adaac34177aff1b97596fa_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-must-gather-rhel8@sha256:0b766d8e51580920d3b558eaac237b39b70f890127adaac34177aff1b97596fa_amd64", + "relates_to_product_reference": "8Base-MTV-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-rhel8-operator@sha256:30cea757cbe41f54ecfd59320ea92351e1209f5646c7346d7d7563e383e988bb_amd64 as a component of 8Base-MTV-2.4", + "product_id": "8Base-MTV-2.4:migration-toolkit-virtualization/mtv-rhel8-operator@sha256:30cea757cbe41f54ecfd59320ea92351e1209f5646c7346d7d7563e383e988bb_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-rhel8-operator@sha256:30cea757cbe41f54ecfd59320ea92351e1209f5646c7346d7d7563e383e988bb_amd64", + "relates_to_product_reference": "8Base-MTV-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-rhv-populator-rhel8@sha256:f1c946eb52c6464db8a68cd4c6b61b6df145c68aef4a4858651076ba27d5c40b_amd64 as a component of 8Base-MTV-2.4", + "product_id": "8Base-MTV-2.4:migration-toolkit-virtualization/mtv-rhv-populator-rhel8@sha256:f1c946eb52c6464db8a68cd4c6b61b6df145c68aef4a4858651076ba27d5c40b_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-rhv-populator-rhel8@sha256:f1c946eb52c6464db8a68cd4c6b61b6df145c68aef4a4858651076ba27d5c40b_amd64", + "relates_to_product_reference": "8Base-MTV-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-ui-rhel8@sha256:f872479bcfbf35cae89eb3c95005067b8e64aca090cc058c4e4a1f0db56df9ff_amd64 as a component of 8Base-MTV-2.4", + "product_id": "8Base-MTV-2.4:migration-toolkit-virtualization/mtv-ui-rhel8@sha256:f872479bcfbf35cae89eb3c95005067b8e64aca090cc058c4e4a1f0db56df9ff_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-ui-rhel8@sha256:f872479bcfbf35cae89eb3c95005067b8e64aca090cc058c4e4a1f0db56df9ff_amd64", + "relates_to_product_reference": "8Base-MTV-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-virt-v2v-warm-rhel8@sha256:c8a7ee4f36ffc0206d614ad47ce95a13aacdf80a47e1ea7209e0f9824914c36c_amd64 as a component of 8Base-MTV-2.4", + "product_id": "8Base-MTV-2.4:migration-toolkit-virtualization/mtv-virt-v2v-warm-rhel8@sha256:c8a7ee4f36ffc0206d614ad47ce95a13aacdf80a47e1ea7209e0f9824914c36c_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-virt-v2v-warm-rhel8@sha256:c8a7ee4f36ffc0206d614ad47ce95a13aacdf80a47e1ea7209e0f9824914c36c_amd64", + "relates_to_product_reference": "8Base-MTV-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-must-gather-api-rhel8@sha256:e1e3b4adafebe14f5c1c17b8b81c921c8c2daf77bf22ffef9f0a2e1ac1a32d5f_amd64 as a component of 8Base-MTV-2.5", + "product_id": "8Base-MTV-2.5:migration-toolkit-virtualization/mtv-must-gather-api-rhel8@sha256:e1e3b4adafebe14f5c1c17b8b81c921c8c2daf77bf22ffef9f0a2e1ac1a32d5f_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-must-gather-api-rhel8@sha256:e1e3b4adafebe14f5c1c17b8b81c921c8c2daf77bf22ffef9f0a2e1ac1a32d5f_amd64", + "relates_to_product_reference": "8Base-MTV-2.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-must-gather-rhel8@sha256:cfd662d50e649898951b9dc21bb8bd533ccbe4daa9ae9eb1ea365ae9bfdf39e0_amd64 as a component of 8Base-MTV-2.5", + "product_id": "8Base-MTV-2.5:migration-toolkit-virtualization/mtv-must-gather-rhel8@sha256:cfd662d50e649898951b9dc21bb8bd533ccbe4daa9ae9eb1ea365ae9bfdf39e0_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-must-gather-rhel8@sha256:cfd662d50e649898951b9dc21bb8bd533ccbe4daa9ae9eb1ea365ae9bfdf39e0_amd64", + "relates_to_product_reference": "8Base-MTV-2.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-rhel8-operator@sha256:86e6fc987f49aa419b0c7f15276559c4e0958adc9385d80deef228dfb9bcf0ba_amd64 as a component of 8Base-MTV-2.5", + "product_id": "8Base-MTV-2.5:migration-toolkit-virtualization/mtv-rhel8-operator@sha256:86e6fc987f49aa419b0c7f15276559c4e0958adc9385d80deef228dfb9bcf0ba_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-rhel8-operator@sha256:86e6fc987f49aa419b0c7f15276559c4e0958adc9385d80deef228dfb9bcf0ba_amd64", + "relates_to_product_reference": "8Base-MTV-2.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-rhv-populator-rhel8@sha256:bd5cf5ff33a900a8f7b8b4fc52ada3af737d42793b27e63f5cc7c36b11a21189_amd64 as a component of 8Base-MTV-2.5", + "product_id": "8Base-MTV-2.5:migration-toolkit-virtualization/mtv-rhv-populator-rhel8@sha256:bd5cf5ff33a900a8f7b8b4fc52ada3af737d42793b27e63f5cc7c36b11a21189_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-rhv-populator-rhel8@sha256:bd5cf5ff33a900a8f7b8b4fc52ada3af737d42793b27e63f5cc7c36b11a21189_amd64", + "relates_to_product_reference": "8Base-MTV-2.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-virt-v2v-warm-rhel8@sha256:fd9758985cb3ab4fe6bddf1b989b0cc7803d9bf79883dfe3a02c6c3644fcc891_amd64 as a component of 8Base-MTV-2.5", + "product_id": "8Base-MTV-2.5:migration-toolkit-virtualization/mtv-virt-v2v-warm-rhel8@sha256:fd9758985cb3ab4fe6bddf1b989b0cc7803d9bf79883dfe3a02c6c3644fcc891_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-virt-v2v-warm-rhel8@sha256:fd9758985cb3ab4fe6bddf1b989b0cc7803d9bf79883dfe3a02c6c3644fcc891_amd64", + "relates_to_product_reference": "8Base-MTV-2.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "workload-availability/node-healthcheck-operator-bundle@sha256:151e7d9bc500b7252af46d0856e3e16559ff310a1d0efedcc5d914164bbdef55_amd64 as a component of Node Healthcheck Operator 0.4 for RHEL 8", + "product_id": "8Base-NODE-HEALTHCHECK-OPERATOR-0.4:workload-availability/node-healthcheck-operator-bundle@sha256:151e7d9bc500b7252af46d0856e3e16559ff310a1d0efedcc5d914164bbdef55_amd64" + }, + "product_reference": "workload-availability/node-healthcheck-operator-bundle@sha256:151e7d9bc500b7252af46d0856e3e16559ff310a1d0efedcc5d914164bbdef55_amd64", + "relates_to_product_reference": "8Base-NODE-HEALTHCHECK-OPERATOR-0.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "workload-availability/node-healthcheck-rhel8-operator@sha256:1e69fca94c72373f8034b4914e113e23e418f2c1b227d7ea0c8af3dcb63187a6_amd64 as a component of Node Healthcheck Operator 0.4 for RHEL 8", + "product_id": "8Base-NODE-HEALTHCHECK-OPERATOR-0.4:workload-availability/node-healthcheck-rhel8-operator@sha256:1e69fca94c72373f8034b4914e113e23e418f2c1b227d7ea0c8af3dcb63187a6_amd64" + }, + "product_reference": "workload-availability/node-healthcheck-rhel8-operator@sha256:1e69fca94c72373f8034b4914e113e23e418f2c1b227d7ea0c8af3dcb63187a6_amd64", + "relates_to_product_reference": "8Base-NODE-HEALTHCHECK-OPERATOR-0.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "workload-availability/node-remediation-console-rhel8@sha256:c4a6e43c9d96f8dbe743db5af83495d9350ef8ac45e3adbec0fbbc53db40502a_amd64 as a component of Node Healthcheck Operator 0.4 for RHEL 8", + "product_id": "8Base-NODE-HEALTHCHECK-OPERATOR-0.4:workload-availability/node-remediation-console-rhel8@sha256:c4a6e43c9d96f8dbe743db5af83495d9350ef8ac45e3adbec0fbbc53db40502a_amd64" + }, + "product_reference": "workload-availability/node-remediation-console-rhel8@sha256:c4a6e43c9d96f8dbe743db5af83495d9350ef8ac45e3adbec0fbbc53db40502a_amd64", + "relates_to_product_reference": "8Base-NODE-HEALTHCHECK-OPERATOR-0.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "workload-availability/node-healthcheck-must-gather-rhel8@sha256:29aa40527f9d289cb41939db052a658a4fdd949006854a3bab5aa41fd783d28d_amd64 as a component of Node Healthcheck Operator 0.6 for RHEL 8", + "product_id": "8Base-NODE-HEALTHCHECK-OPERATOR-0.6:workload-availability/node-healthcheck-must-gather-rhel8@sha256:29aa40527f9d289cb41939db052a658a4fdd949006854a3bab5aa41fd783d28d_amd64" + }, + "product_reference": "workload-availability/node-healthcheck-must-gather-rhel8@sha256:29aa40527f9d289cb41939db052a658a4fdd949006854a3bab5aa41fd783d28d_amd64", + "relates_to_product_reference": "8Base-NODE-HEALTHCHECK-OPERATOR-0.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "workload-availability/node-healthcheck-operator-bundle@sha256:309ba89dece3ee9901ed66c40bd28d71f20c7d91a7feff552e28ea0c772b9178_amd64 as a component of Node Healthcheck Operator 0.6 for RHEL 8", + "product_id": "8Base-NODE-HEALTHCHECK-OPERATOR-0.6:workload-availability/node-healthcheck-operator-bundle@sha256:309ba89dece3ee9901ed66c40bd28d71f20c7d91a7feff552e28ea0c772b9178_amd64" + }, + "product_reference": "workload-availability/node-healthcheck-operator-bundle@sha256:309ba89dece3ee9901ed66c40bd28d71f20c7d91a7feff552e28ea0c772b9178_amd64", + "relates_to_product_reference": "8Base-NODE-HEALTHCHECK-OPERATOR-0.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "workload-availability/node-healthcheck-rhel8-operator@sha256:b0035ef85a042b920d1aa53e86d390b06066d3cf6bb85956a28fa4480c324658_amd64 as a component of Node Healthcheck Operator 0.6 for RHEL 8", + "product_id": "8Base-NODE-HEALTHCHECK-OPERATOR-0.6:workload-availability/node-healthcheck-rhel8-operator@sha256:b0035ef85a042b920d1aa53e86d390b06066d3cf6bb85956a28fa4480c324658_amd64" + }, + "product_reference": "workload-availability/node-healthcheck-rhel8-operator@sha256:b0035ef85a042b920d1aa53e86d390b06066d3cf6bb85956a28fa4480c324658_amd64", + "relates_to_product_reference": "8Base-NODE-HEALTHCHECK-OPERATOR-0.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "workload-availability/node-remediation-console-rhel8@sha256:154ce9bd17e6809c283526ff0fb2e7f37da86e1703d13e18c741928850e67716_amd64 as a component of Node Healthcheck Operator 0.6 for RHEL 8", + "product_id": "8Base-NODE-HEALTHCHECK-OPERATOR-0.6:workload-availability/node-remediation-console-rhel8@sha256:154ce9bd17e6809c283526ff0fb2e7f37da86e1703d13e18c741928850e67716_amd64" + }, + "product_reference": "workload-availability/node-remediation-console-rhel8@sha256:154ce9bd17e6809c283526ff0fb2e7f37da86e1703d13e18c741928850e67716_amd64", + "relates_to_product_reference": "8Base-NODE-HEALTHCHECK-OPERATOR-0.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "workload-availability/node-maintenance-must-gather-rhel8@sha256:21c3c638dc206d3f4a4b0295455e8f26e679a6c30a74746bc1be8d080dcf6883_amd64 as a component of Node Maintenance Operator 5.0 for RHEL 8", + "product_id": "8Base-NODE-MAINTENANCE-OPERATOR-5.0:workload-availability/node-maintenance-must-gather-rhel8@sha256:21c3c638dc206d3f4a4b0295455e8f26e679a6c30a74746bc1be8d080dcf6883_amd64" + }, + "product_reference": "workload-availability/node-maintenance-must-gather-rhel8@sha256:21c3c638dc206d3f4a4b0295455e8f26e679a6c30a74746bc1be8d080dcf6883_amd64", + "relates_to_product_reference": "8Base-NODE-MAINTENANCE-OPERATOR-5.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "workload-availability/node-maintenance-operator-bundle@sha256:9fe87e1b0c49dd00a6ab0c35b68ebf641f347ac5b405d31f3c5ace02a7a30540_amd64 as a component of Node Maintenance Operator 5.0 for RHEL 8", + "product_id": "8Base-NODE-MAINTENANCE-OPERATOR-5.0:workload-availability/node-maintenance-operator-bundle@sha256:9fe87e1b0c49dd00a6ab0c35b68ebf641f347ac5b405d31f3c5ace02a7a30540_amd64" + }, + "product_reference": "workload-availability/node-maintenance-operator-bundle@sha256:9fe87e1b0c49dd00a6ab0c35b68ebf641f347ac5b405d31f3c5ace02a7a30540_amd64", + "relates_to_product_reference": "8Base-NODE-MAINTENANCE-OPERATOR-5.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "workload-availability/node-maintenance-rhel8-operator@sha256:6aa1ce70d3d9cc464ae84efce5d0c88a81cdda713a51611be873b550842bde82_amd64 as a component of Node Maintenance Operator 5.0 for RHEL 8", + "product_id": "8Base-NODE-MAINTENANCE-OPERATOR-5.0:workload-availability/node-maintenance-rhel8-operator@sha256:6aa1ce70d3d9cc464ae84efce5d0c88a81cdda713a51611be873b550842bde82_amd64" + }, + "product_reference": "workload-availability/node-maintenance-rhel8-operator@sha256:6aa1ce70d3d9cc464ae84efce5d0c88a81cdda713a51611be873b550842bde82_amd64", + "relates_to_product_reference": "8Base-NODE-MAINTENANCE-OPERATOR-5.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "workload-availability/node-maintenance-operator-bundle@sha256:35d2c7c2849f89474fd5648a0d2781dde28131303cc8a597ce243a3e314fe0af_amd64 as a component of Node Maintenance Operator 5.2 for RHEL 8", + "product_id": "8Base-NODE-MAINTENANCE-OPERATOR-5.2:workload-availability/node-maintenance-operator-bundle@sha256:35d2c7c2849f89474fd5648a0d2781dde28131303cc8a597ce243a3e314fe0af_amd64" + }, + "product_reference": "workload-availability/node-maintenance-operator-bundle@sha256:35d2c7c2849f89474fd5648a0d2781dde28131303cc8a597ce243a3e314fe0af_amd64", + "relates_to_product_reference": "8Base-NODE-MAINTENANCE-OPERATOR-5.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "workload-availability/node-maintenance-rhel8-operator@sha256:5075d5702c0c8ffa792b40f09787ac3e6c3be9283c179c11cc40216a194b05a5_amd64 as a component of Node Maintenance Operator 5.2 for RHEL 8", + "product_id": "8Base-NODE-MAINTENANCE-OPERATOR-5.2:workload-availability/node-maintenance-rhel8-operator@sha256:5075d5702c0c8ffa792b40f09787ac3e6c3be9283c179c11cc40216a194b05a5_amd64" + }, + "product_reference": "workload-availability/node-maintenance-rhel8-operator@sha256:5075d5702c0c8ffa792b40f09787ac3e6c3be9283c179c11cc40216a194b05a5_amd64", + "relates_to_product_reference": "8Base-NODE-MAINTENANCE-OPERATOR-5.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:1d9eb04551c7629c1c955a83f56c9950af52cf507a960673fbbb71bc53a45d42_amd64 as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:1d9eb04551c7629c1c955a83f56c9950af52cf507a960673fbbb71bc53a45d42_amd64" + }, + "product_reference": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:1d9eb04551c7629c1c955a83f56c9950af52cf507a960673fbbb71bc53a45d42_amd64", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:a107558ebc95b2d1c57a3571491bbf6ec88921ca8e6e45419dbec9bf47d505b9_ppc64le as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:a107558ebc95b2d1c57a3571491bbf6ec88921ca8e6e45419dbec9bf47d505b9_ppc64le" + }, + "product_reference": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:a107558ebc95b2d1c57a3571491bbf6ec88921ca8e6e45419dbec9bf47d505b9_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:ca91eab699f97705c3e696150446582caab5b97db9230c0a2a7d0b9e09a7c571_s390x as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:ca91eab699f97705c3e696150446582caab5b97db9230c0a2a7d0b9e09a7c571_s390x" + }, + "product_reference": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:ca91eab699f97705c3e696150446582caab5b97db9230c0a2a7d0b9e09a7c571_s390x", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-mustgather-rhel8@sha256:2d68a7b0030a673d88d59d712352614f136704fc95a5523484eea11eeeb76619_s390x as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-mustgather-rhel8@sha256:2d68a7b0030a673d88d59d712352614f136704fc95a5523484eea11eeeb76619_s390x" + }, + "product_reference": "oadp/oadp-mustgather-rhel8@sha256:2d68a7b0030a673d88d59d712352614f136704fc95a5523484eea11eeeb76619_s390x", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-mustgather-rhel8@sha256:d2ea8cc469b9bc2cb99dc81ef1c8c043ef7d4c320b588f7bf1e221807767a21c_amd64 as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-mustgather-rhel8@sha256:d2ea8cc469b9bc2cb99dc81ef1c8c043ef7d4c320b588f7bf1e221807767a21c_amd64" + }, + "product_reference": "oadp/oadp-mustgather-rhel8@sha256:d2ea8cc469b9bc2cb99dc81ef1c8c043ef7d4c320b588f7bf1e221807767a21c_amd64", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-mustgather-rhel8@sha256:f4db0cbe93b098c3e73e65bf83cdd73214e6eb9894a5d1d42d0f5fd58162a750_ppc64le as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-mustgather-rhel8@sha256:f4db0cbe93b098c3e73e65bf83cdd73214e6eb9894a5d1d42d0f5fd58162a750_ppc64le" + }, + "product_reference": "oadp/oadp-mustgather-rhel8@sha256:f4db0cbe93b098c3e73e65bf83cdd73214e6eb9894a5d1d42d0f5fd58162a750_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-operator-bundle@sha256:7381cf4462e525945055a1b2b0bf168d469d2bd3f67bb10f6c8cb13e58fa9569_ppc64le as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-operator-bundle@sha256:7381cf4462e525945055a1b2b0bf168d469d2bd3f67bb10f6c8cb13e58fa9569_ppc64le" + }, + "product_reference": "oadp/oadp-operator-bundle@sha256:7381cf4462e525945055a1b2b0bf168d469d2bd3f67bb10f6c8cb13e58fa9569_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-operator-bundle@sha256:a709259c3a6d923485ed217e9dd74f11c02a32c113f017ebbd8c49d60c83c47b_amd64 as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-operator-bundle@sha256:a709259c3a6d923485ed217e9dd74f11c02a32c113f017ebbd8c49d60c83c47b_amd64" + }, + "product_reference": "oadp/oadp-operator-bundle@sha256:a709259c3a6d923485ed217e9dd74f11c02a32c113f017ebbd8c49d60c83c47b_amd64", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-operator-bundle@sha256:f6e549d662f01f8ccf0c1ab9016b1aadcd417096bc49133a536292c55049c13a_s390x as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-operator-bundle@sha256:f6e549d662f01f8ccf0c1ab9016b1aadcd417096bc49133a536292c55049c13a_s390x" + }, + "product_reference": "oadp/oadp-operator-bundle@sha256:f6e549d662f01f8ccf0c1ab9016b1aadcd417096bc49133a536292c55049c13a_s390x", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-rhel8-operator@sha256:0f7a9f47f67af388ebebb7ef28a775857ac37d35e234ee228a4ea25bfc64c3e3_ppc64le as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-rhel8-operator@sha256:0f7a9f47f67af388ebebb7ef28a775857ac37d35e234ee228a4ea25bfc64c3e3_ppc64le" + }, + "product_reference": "oadp/oadp-rhel8-operator@sha256:0f7a9f47f67af388ebebb7ef28a775857ac37d35e234ee228a4ea25bfc64c3e3_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-rhel8-operator@sha256:2d3e387f50011ea9496e7524624100afb1e5eb9aeb220c971ac850e3d3fb3ecd_s390x as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-rhel8-operator@sha256:2d3e387f50011ea9496e7524624100afb1e5eb9aeb220c971ac850e3d3fb3ecd_s390x" + }, + "product_reference": "oadp/oadp-rhel8-operator@sha256:2d3e387f50011ea9496e7524624100afb1e5eb9aeb220c971ac850e3d3fb3ecd_s390x", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-rhel8-operator@sha256:bf0607d865944a9011852bcbd92d2f289f4086aba2186331ab4a65c7bd065604_amd64 as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-rhel8-operator@sha256:bf0607d865944a9011852bcbd92d2f289f4086aba2186331ab4a65c7bd065604_amd64" + }, + "product_reference": "oadp/oadp-rhel8-operator@sha256:bf0607d865944a9011852bcbd92d2f289f4086aba2186331ab4a65c7bd065604_amd64", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:9bc0630106402a86da33e4a21c5d64c6379125f6a446519f5a659ba1ed110b76_amd64 as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-velero-plugin-for-aws-rhel8@sha256:9bc0630106402a86da33e4a21c5d64c6379125f6a446519f5a659ba1ed110b76_amd64" + }, + "product_reference": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:9bc0630106402a86da33e4a21c5d64c6379125f6a446519f5a659ba1ed110b76_amd64", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:ec6dd5b1b4a9382b86ae970240e25f11a4eb8e2ba42a2f6f727a984cf79f0cdb_ppc64le as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-velero-plugin-for-aws-rhel8@sha256:ec6dd5b1b4a9382b86ae970240e25f11a4eb8e2ba42a2f6f727a984cf79f0cdb_ppc64le" + }, + "product_reference": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:ec6dd5b1b4a9382b86ae970240e25f11a4eb8e2ba42a2f6f727a984cf79f0cdb_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:fbef5cf169028b7e2c16c00ab699bcdb5733e2368ead683639495c2c584e08d7_s390x as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-velero-plugin-for-aws-rhel8@sha256:fbef5cf169028b7e2c16c00ab699bcdb5733e2368ead683639495c2c584e08d7_s390x" + }, + "product_reference": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:fbef5cf169028b7e2c16c00ab699bcdb5733e2368ead683639495c2c584e08d7_s390x", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:57e64b3f70a5d06d68b2dfa3dfd329474ee39354e1ff3730742ae5869ffe9242_amd64 as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-velero-plugin-for-csi-rhel8@sha256:57e64b3f70a5d06d68b2dfa3dfd329474ee39354e1ff3730742ae5869ffe9242_amd64" + }, + "product_reference": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:57e64b3f70a5d06d68b2dfa3dfd329474ee39354e1ff3730742ae5869ffe9242_amd64", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:9535d60aeca08fbcb35f5ddecc455fbf8fd240b185b0359fcf15db088beed93b_ppc64le as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-velero-plugin-for-csi-rhel8@sha256:9535d60aeca08fbcb35f5ddecc455fbf8fd240b185b0359fcf15db088beed93b_ppc64le" + }, + "product_reference": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:9535d60aeca08fbcb35f5ddecc455fbf8fd240b185b0359fcf15db088beed93b_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:a68d39f20190d5dd35cb799b02ad3ff4fdaf52ab22f7785ba4be4d20c95a09af_s390x as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-velero-plugin-for-csi-rhel8@sha256:a68d39f20190d5dd35cb799b02ad3ff4fdaf52ab22f7785ba4be4d20c95a09af_s390x" + }, + "product_reference": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:a68d39f20190d5dd35cb799b02ad3ff4fdaf52ab22f7785ba4be4d20c95a09af_s390x", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:4a509a9562f941a6eb85e29db424080204172cfcee21b2cbbe066efb5c60198c_amd64 as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:4a509a9562f941a6eb85e29db424080204172cfcee21b2cbbe066efb5c60198c_amd64" + }, + "product_reference": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:4a509a9562f941a6eb85e29db424080204172cfcee21b2cbbe066efb5c60198c_amd64", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:7933617816babdf5e6da973b7ffbf54a2c280a66fc6a9861e2dc731f01043d80_s390x as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:7933617816babdf5e6da973b7ffbf54a2c280a66fc6a9861e2dc731f01043d80_s390x" + }, + "product_reference": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:7933617816babdf5e6da973b7ffbf54a2c280a66fc6a9861e2dc731f01043d80_s390x", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:c8e99a08d99db02bb8a5f3fde5ff77108b4699fa710c12b257e411e1f3014f7b_ppc64le as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:c8e99a08d99db02bb8a5f3fde5ff77108b4699fa710c12b257e411e1f3014f7b_ppc64le" + }, + "product_reference": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:c8e99a08d99db02bb8a5f3fde5ff77108b4699fa710c12b257e411e1f3014f7b_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:209ccbbf81de2154f620e3dc690a053d7110bc805fc148cff668bcab43674894_ppc64le as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:209ccbbf81de2154f620e3dc690a053d7110bc805fc148cff668bcab43674894_ppc64le" + }, + "product_reference": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:209ccbbf81de2154f620e3dc690a053d7110bc805fc148cff668bcab43674894_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:7b4c2fbf7ae8c859bfc976a1e07ef02e430792b16f36fd7fe9e447c7427d5003_s390x as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:7b4c2fbf7ae8c859bfc976a1e07ef02e430792b16f36fd7fe9e447c7427d5003_s390x" + }, + "product_reference": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:7b4c2fbf7ae8c859bfc976a1e07ef02e430792b16f36fd7fe9e447c7427d5003_s390x", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:7bc516a3dc31d5675989c253dfc5d4f5b6e5675ed0dcd99aeabcf45748cfb82a_amd64 as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:7bc516a3dc31d5675989c253dfc5d4f5b6e5675ed0dcd99aeabcf45748cfb82a_amd64" + }, + "product_reference": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:7bc516a3dc31d5675989c253dfc5d4f5b6e5675ed0dcd99aeabcf45748cfb82a_amd64", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-rhel8@sha256:569d29f6abf7e47afa87dc786028dd1b3b25c703f03bb72f0cdb56fa9fd8322e_amd64 as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-velero-plugin-rhel8@sha256:569d29f6abf7e47afa87dc786028dd1b3b25c703f03bb72f0cdb56fa9fd8322e_amd64" + }, + "product_reference": "oadp/oadp-velero-plugin-rhel8@sha256:569d29f6abf7e47afa87dc786028dd1b3b25c703f03bb72f0cdb56fa9fd8322e_amd64", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-rhel8@sha256:c2e022362052875f262fc082268fe1093d1a7a60aa51479b05346f5fc857864c_ppc64le as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-velero-plugin-rhel8@sha256:c2e022362052875f262fc082268fe1093d1a7a60aa51479b05346f5fc857864c_ppc64le" + }, + "product_reference": "oadp/oadp-velero-plugin-rhel8@sha256:c2e022362052875f262fc082268fe1093d1a7a60aa51479b05346f5fc857864c_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-rhel8@sha256:c521866aa8677b189bfe5b07f38b640e5fe5f392bcf6af9a25cda0daab393cd9_s390x as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-velero-plugin-rhel8@sha256:c521866aa8677b189bfe5b07f38b640e5fe5f392bcf6af9a25cda0daab393cd9_s390x" + }, + "product_reference": "oadp/oadp-velero-plugin-rhel8@sha256:c521866aa8677b189bfe5b07f38b640e5fe5f392bcf6af9a25cda0daab393cd9_s390x", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:27b11e8db2a414fdbc1cf7d0844db973f3f23c2d47af1c6890f42b1e7627efda_ppc64le as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-velero-restic-restore-helper-rhel8@sha256:27b11e8db2a414fdbc1cf7d0844db973f3f23c2d47af1c6890f42b1e7627efda_ppc64le" + }, + "product_reference": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:27b11e8db2a414fdbc1cf7d0844db973f3f23c2d47af1c6890f42b1e7627efda_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:2ced4f24ae6649bdeda3d075841b77c2171193e882c5559ec1d6f3cad6f94a8b_amd64 as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-velero-restic-restore-helper-rhel8@sha256:2ced4f24ae6649bdeda3d075841b77c2171193e882c5559ec1d6f3cad6f94a8b_amd64" + }, + "product_reference": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:2ced4f24ae6649bdeda3d075841b77c2171193e882c5559ec1d6f3cad6f94a8b_amd64", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:7466b02853935e62195da737dc4dc1e7776537a330b943feb971d9b0aab01a5b_s390x as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-velero-restic-restore-helper-rhel8@sha256:7466b02853935e62195da737dc4dc1e7776537a330b943feb971d9b0aab01a5b_s390x" + }, + "product_reference": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:7466b02853935e62195da737dc4dc1e7776537a330b943feb971d9b0aab01a5b_s390x", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-rhel8@sha256:12379906744bbe5df4574415a81fa2a2d79e42317cf72c168e5ee05380d2c412_ppc64le as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-velero-rhel8@sha256:12379906744bbe5df4574415a81fa2a2d79e42317cf72c168e5ee05380d2c412_ppc64le" + }, + "product_reference": "oadp/oadp-velero-rhel8@sha256:12379906744bbe5df4574415a81fa2a2d79e42317cf72c168e5ee05380d2c412_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-rhel8@sha256:19772d059d2f70b59c21f01b8cdb34736dd835a695586e74234785b577abbf74_s390x as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-velero-rhel8@sha256:19772d059d2f70b59c21f01b8cdb34736dd835a695586e74234785b577abbf74_s390x" + }, + "product_reference": "oadp/oadp-velero-rhel8@sha256:19772d059d2f70b59c21f01b8cdb34736dd835a695586e74234785b577abbf74_s390x", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-rhel8@sha256:f1d013a16cc4ef007406323214d6e72b2a09ce9f38326df50497a2425e3a66b2_amd64 as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-velero-rhel8@sha256:f1d013a16cc4ef007406323214d6e72b2a09ce9f38326df50497a2425e3a66b2_amd64" + }, + "product_reference": "oadp/oadp-velero-rhel8@sha256:f1d013a16cc4ef007406323214d6e72b2a09ce9f38326df50497a2425e3a66b2_amd64", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:0e4b9f532f0ae2242b50ce34be7b7f5df6986c19ff126198a7b6aca4f8661d4a_amd64 as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-volume-snapshot-mover-rhel8@sha256:0e4b9f532f0ae2242b50ce34be7b7f5df6986c19ff126198a7b6aca4f8661d4a_amd64" + }, + "product_reference": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:0e4b9f532f0ae2242b50ce34be7b7f5df6986c19ff126198a7b6aca4f8661d4a_amd64", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:7cc9fc024056ca5e857a6135bd99607d14eef47426eea87286f4e33f0751fcbd_s390x as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-volume-snapshot-mover-rhel8@sha256:7cc9fc024056ca5e857a6135bd99607d14eef47426eea87286f4e33f0751fcbd_s390x" + }, + "product_reference": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:7cc9fc024056ca5e857a6135bd99607d14eef47426eea87286f4e33f0751fcbd_s390x", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:8abfd51f73690022c8e646ffe9a30f8b8e135c56eb67348a4bc0c2cfedbea29c_ppc64le as a component of 8Base-OADP-1.1", + "product_id": "8Base-OADP-1.1:oadp/oadp-volume-snapshot-mover-rhel8@sha256:8abfd51f73690022c8e646ffe9a30f8b8e135c56eb67348a4bc0c2cfedbea29c_ppc64le" + }, + "product_reference": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:8abfd51f73690022c8e646ffe9a30f8b8e135c56eb67348a4bc0c2cfedbea29c_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:1eba8b3a26d43f2946391817f37cdd8c64415f65108acdfeba66ef9cfebcf0e0_amd64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:1eba8b3a26d43f2946391817f37cdd8c64415f65108acdfeba66ef9cfebcf0e0_amd64" + }, + "product_reference": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:1eba8b3a26d43f2946391817f37cdd8c64415f65108acdfeba66ef9cfebcf0e0_amd64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:d79146d04177eda5ccc777815932fda586542cf53e88d2069b980d14a3bccfa8_arm64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:d79146d04177eda5ccc777815932fda586542cf53e88d2069b980d14a3bccfa8_arm64" + }, + "product_reference": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:d79146d04177eda5ccc777815932fda586542cf53e88d2069b980d14a3bccfa8_arm64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:d98265aa2ddfe8a051e6e332f450ae4007e5f719eb456b2db582fe095f7cb88a_ppc64le as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:d98265aa2ddfe8a051e6e332f450ae4007e5f719eb456b2db582fe095f7cb88a_ppc64le" + }, + "product_reference": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:d98265aa2ddfe8a051e6e332f450ae4007e5f719eb456b2db582fe095f7cb88a_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:e2cecef9337f9aba8285a8d917e5cf75e24d93d44197578f93a497eed309d94a_s390x as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:e2cecef9337f9aba8285a8d917e5cf75e24d93d44197578f93a497eed309d94a_s390x" + }, + "product_reference": "oadp/oadp-kubevirt-velero-plugin-rhel8@sha256:e2cecef9337f9aba8285a8d917e5cf75e24d93d44197578f93a497eed309d94a_s390x", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-mustgather-rhel8@sha256:4410001b038f57f2b53a0aa8a7187db960410a3e6091b4923c0b1924d3ce2592_arm64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-mustgather-rhel8@sha256:4410001b038f57f2b53a0aa8a7187db960410a3e6091b4923c0b1924d3ce2592_arm64" + }, + "product_reference": "oadp/oadp-mustgather-rhel8@sha256:4410001b038f57f2b53a0aa8a7187db960410a3e6091b4923c0b1924d3ce2592_arm64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-mustgather-rhel8@sha256:5220e6df18cb18dc2d566bae6b49ced636d9627a111f7bb042ebab3eb0372754_s390x as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-mustgather-rhel8@sha256:5220e6df18cb18dc2d566bae6b49ced636d9627a111f7bb042ebab3eb0372754_s390x" + }, + "product_reference": "oadp/oadp-mustgather-rhel8@sha256:5220e6df18cb18dc2d566bae6b49ced636d9627a111f7bb042ebab3eb0372754_s390x", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-mustgather-rhel8@sha256:7d66d863ae6c46e1701ed0c55a7ebd5eaba3d0a330fed5dcbdde5d5f0c5c889d_amd64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-mustgather-rhel8@sha256:7d66d863ae6c46e1701ed0c55a7ebd5eaba3d0a330fed5dcbdde5d5f0c5c889d_amd64" + }, + "product_reference": "oadp/oadp-mustgather-rhel8@sha256:7d66d863ae6c46e1701ed0c55a7ebd5eaba3d0a330fed5dcbdde5d5f0c5c889d_amd64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-mustgather-rhel8@sha256:e712baa2a2a94afc004397d10fc6f65334dc3a4c547a97ecea5dc96247d28d4f_ppc64le as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-mustgather-rhel8@sha256:e712baa2a2a94afc004397d10fc6f65334dc3a4c547a97ecea5dc96247d28d4f_ppc64le" + }, + "product_reference": "oadp/oadp-mustgather-rhel8@sha256:e712baa2a2a94afc004397d10fc6f65334dc3a4c547a97ecea5dc96247d28d4f_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-operator-bundle@sha256:22d1ac29ae9c3b35e4f850cf26cdcbdf61d5630a1a9aeed079c2dc8f46bb7434_amd64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-operator-bundle@sha256:22d1ac29ae9c3b35e4f850cf26cdcbdf61d5630a1a9aeed079c2dc8f46bb7434_amd64" + }, + "product_reference": "oadp/oadp-operator-bundle@sha256:22d1ac29ae9c3b35e4f850cf26cdcbdf61d5630a1a9aeed079c2dc8f46bb7434_amd64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-operator-bundle@sha256:42d3bb0d645e427380af3f100307fb1aace330ed107a35961d30e2f3a1ded213_ppc64le as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-operator-bundle@sha256:42d3bb0d645e427380af3f100307fb1aace330ed107a35961d30e2f3a1ded213_ppc64le" + }, + "product_reference": "oadp/oadp-operator-bundle@sha256:42d3bb0d645e427380af3f100307fb1aace330ed107a35961d30e2f3a1ded213_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-operator-bundle@sha256:912b4769343594442f2eee159d52a61ff72a559628b57002cc9fedf7fab7d992_s390x as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-operator-bundle@sha256:912b4769343594442f2eee159d52a61ff72a559628b57002cc9fedf7fab7d992_s390x" + }, + "product_reference": "oadp/oadp-operator-bundle@sha256:912b4769343594442f2eee159d52a61ff72a559628b57002cc9fedf7fab7d992_s390x", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-operator-bundle@sha256:dea1e97ee88949b9692f2077f4769b214031366f72f392cd89f85c0c7dcfffd2_arm64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-operator-bundle@sha256:dea1e97ee88949b9692f2077f4769b214031366f72f392cd89f85c0c7dcfffd2_arm64" + }, + "product_reference": "oadp/oadp-operator-bundle@sha256:dea1e97ee88949b9692f2077f4769b214031366f72f392cd89f85c0c7dcfffd2_arm64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-rhel8-operator@sha256:4628ec389b445fae40227657c9b1b6330fae7a9a76cf80798c4c7f74181050f9_arm64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-rhel8-operator@sha256:4628ec389b445fae40227657c9b1b6330fae7a9a76cf80798c4c7f74181050f9_arm64" + }, + "product_reference": "oadp/oadp-rhel8-operator@sha256:4628ec389b445fae40227657c9b1b6330fae7a9a76cf80798c4c7f74181050f9_arm64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-rhel8-operator@sha256:7572bcc6b877c605805601dca3a6daf8c74b4c82defff9d53dd4173abad84e85_ppc64le as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-rhel8-operator@sha256:7572bcc6b877c605805601dca3a6daf8c74b4c82defff9d53dd4173abad84e85_ppc64le" + }, + "product_reference": "oadp/oadp-rhel8-operator@sha256:7572bcc6b877c605805601dca3a6daf8c74b4c82defff9d53dd4173abad84e85_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-rhel8-operator@sha256:d610d59b4d11ca019611a80ff929cea304a333c78ae8339a8c24628daa97ccdb_amd64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-rhel8-operator@sha256:d610d59b4d11ca019611a80ff929cea304a333c78ae8339a8c24628daa97ccdb_amd64" + }, + "product_reference": "oadp/oadp-rhel8-operator@sha256:d610d59b4d11ca019611a80ff929cea304a333c78ae8339a8c24628daa97ccdb_amd64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-rhel8-operator@sha256:f1ca2345c320ccef8c1336e2b4caba0c97e6d455e9f1c70cfb921b07d26e9024_s390x as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-rhel8-operator@sha256:f1ca2345c320ccef8c1336e2b4caba0c97e6d455e9f1c70cfb921b07d26e9024_s390x" + }, + "product_reference": "oadp/oadp-rhel8-operator@sha256:f1ca2345c320ccef8c1336e2b4caba0c97e6d455e9f1c70cfb921b07d26e9024_s390x", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:64777c17edf16c46a0519a6a3a479e2004da580f5f1b9987d3464894cdc3d621_ppc64le as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-plugin-for-aws-rhel8@sha256:64777c17edf16c46a0519a6a3a479e2004da580f5f1b9987d3464894cdc3d621_ppc64le" + }, + "product_reference": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:64777c17edf16c46a0519a6a3a479e2004da580f5f1b9987d3464894cdc3d621_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:6876a1fbf67f9b91ef0cd8442ed56a2b3be79daca4f30ab583c4e95b6179b935_s390x as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-plugin-for-aws-rhel8@sha256:6876a1fbf67f9b91ef0cd8442ed56a2b3be79daca4f30ab583c4e95b6179b935_s390x" + }, + "product_reference": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:6876a1fbf67f9b91ef0cd8442ed56a2b3be79daca4f30ab583c4e95b6179b935_s390x", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:81072079708e5808b6a73d8ad9fa6838680a90565a64eed263dfac62eb074f32_amd64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-plugin-for-aws-rhel8@sha256:81072079708e5808b6a73d8ad9fa6838680a90565a64eed263dfac62eb074f32_amd64" + }, + "product_reference": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:81072079708e5808b6a73d8ad9fa6838680a90565a64eed263dfac62eb074f32_amd64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:a2118e62fcd7dfe8e65b0b1e9df909da3a6317137d2097f4c4ac335c80aefdfc_arm64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-plugin-for-aws-rhel8@sha256:a2118e62fcd7dfe8e65b0b1e9df909da3a6317137d2097f4c4ac335c80aefdfc_arm64" + }, + "product_reference": "oadp/oadp-velero-plugin-for-aws-rhel8@sha256:a2118e62fcd7dfe8e65b0b1e9df909da3a6317137d2097f4c4ac335c80aefdfc_arm64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:166cc137856090465797a03844a1ce0c7c5b315917264d1a3c570ff8630c097f_amd64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-plugin-for-csi-rhel8@sha256:166cc137856090465797a03844a1ce0c7c5b315917264d1a3c570ff8630c097f_amd64" + }, + "product_reference": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:166cc137856090465797a03844a1ce0c7c5b315917264d1a3c570ff8630c097f_amd64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:8ad05b4f05a94234566276f923ac3ef40ecc17d9e4d05821851b20e381d57bae_s390x as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-plugin-for-csi-rhel8@sha256:8ad05b4f05a94234566276f923ac3ef40ecc17d9e4d05821851b20e381d57bae_s390x" + }, + "product_reference": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:8ad05b4f05a94234566276f923ac3ef40ecc17d9e4d05821851b20e381d57bae_s390x", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:d5e564b3d10e44ae21a66f1cbe877b23f55ab397328f4bd168fb4340bbb1569d_arm64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-plugin-for-csi-rhel8@sha256:d5e564b3d10e44ae21a66f1cbe877b23f55ab397328f4bd168fb4340bbb1569d_arm64" + }, + "product_reference": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:d5e564b3d10e44ae21a66f1cbe877b23f55ab397328f4bd168fb4340bbb1569d_arm64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:fbc5a4985c0cdf01f6b4aa0d2c9e516f7da8f6a5a6e5e795076e3f710333bb67_ppc64le as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-plugin-for-csi-rhel8@sha256:fbc5a4985c0cdf01f6b4aa0d2c9e516f7da8f6a5a6e5e795076e3f710333bb67_ppc64le" + }, + "product_reference": "oadp/oadp-velero-plugin-for-csi-rhel8@sha256:fbc5a4985c0cdf01f6b4aa0d2c9e516f7da8f6a5a6e5e795076e3f710333bb67_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:09426f08a141993d299b940acf33c1065deba4f6bdf9d93db2496cdb043d2f8d_arm64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:09426f08a141993d299b940acf33c1065deba4f6bdf9d93db2496cdb043d2f8d_arm64" + }, + "product_reference": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:09426f08a141993d299b940acf33c1065deba4f6bdf9d93db2496cdb043d2f8d_arm64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:31e7cdd4e0965814bfa1a5e07047e3b7ed4953c11bdd0b5adadf493d9b54b534_amd64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:31e7cdd4e0965814bfa1a5e07047e3b7ed4953c11bdd0b5adadf493d9b54b534_amd64" + }, + "product_reference": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:31e7cdd4e0965814bfa1a5e07047e3b7ed4953c11bdd0b5adadf493d9b54b534_amd64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:3613dc6e2c0b94095d30deae7009f05245f55b01b8caea791d99f8492d751b96_s390x as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:3613dc6e2c0b94095d30deae7009f05245f55b01b8caea791d99f8492d751b96_s390x" + }, + "product_reference": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:3613dc6e2c0b94095d30deae7009f05245f55b01b8caea791d99f8492d751b96_s390x", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:da7601aa767656db6edea1eac57f8a891eebbf74155c395b569e2d4ff5d81269_ppc64le as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:da7601aa767656db6edea1eac57f8a891eebbf74155c395b569e2d4ff5d81269_ppc64le" + }, + "product_reference": "oadp/oadp-velero-plugin-for-gcp-rhel8@sha256:da7601aa767656db6edea1eac57f8a891eebbf74155c395b569e2d4ff5d81269_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:44861c3facde9c65e656ae68a8ec6c8871252d6d7e585c37743f0625e4ca7d45_s390x as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:44861c3facde9c65e656ae68a8ec6c8871252d6d7e585c37743f0625e4ca7d45_s390x" + }, + "product_reference": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:44861c3facde9c65e656ae68a8ec6c8871252d6d7e585c37743f0625e4ca7d45_s390x", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:782f4fdab3ad3507e50ad2d77bc3517c3eb74670909ffbea0a0b913c895c69f5_ppc64le as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:782f4fdab3ad3507e50ad2d77bc3517c3eb74670909ffbea0a0b913c895c69f5_ppc64le" + }, + "product_reference": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:782f4fdab3ad3507e50ad2d77bc3517c3eb74670909ffbea0a0b913c895c69f5_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:934290eeb999c5cbf67ff7d306299cc1c54db613e148cea14489db94ca0c3295_arm64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:934290eeb999c5cbf67ff7d306299cc1c54db613e148cea14489db94ca0c3295_arm64" + }, + "product_reference": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:934290eeb999c5cbf67ff7d306299cc1c54db613e148cea14489db94ca0c3295_arm64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:d75d79f906c5385cfd85777780eb85a1750b76b09125d5d6bbb963f8e160ebe2_amd64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:d75d79f906c5385cfd85777780eb85a1750b76b09125d5d6bbb963f8e160ebe2_amd64" + }, + "product_reference": "oadp/oadp-velero-plugin-for-microsoft-azure-rhel8@sha256:d75d79f906c5385cfd85777780eb85a1750b76b09125d5d6bbb963f8e160ebe2_amd64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-vsm-rhel8@sha256:7131005d74a60827511929b9a029b1e1b16284fd90d19e8fdf626fad02d65a45_amd64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-plugin-for-vsm-rhel8@sha256:7131005d74a60827511929b9a029b1e1b16284fd90d19e8fdf626fad02d65a45_amd64" + }, + "product_reference": "oadp/oadp-velero-plugin-for-vsm-rhel8@sha256:7131005d74a60827511929b9a029b1e1b16284fd90d19e8fdf626fad02d65a45_amd64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-vsm-rhel8@sha256:871dbeefc4f519a91948a3ab7c2e2fddc4d3f69d18a84a1a18856e0ac291eccb_s390x as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-plugin-for-vsm-rhel8@sha256:871dbeefc4f519a91948a3ab7c2e2fddc4d3f69d18a84a1a18856e0ac291eccb_s390x" + }, + "product_reference": "oadp/oadp-velero-plugin-for-vsm-rhel8@sha256:871dbeefc4f519a91948a3ab7c2e2fddc4d3f69d18a84a1a18856e0ac291eccb_s390x", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-vsm-rhel8@sha256:a7faed6579c5d1f8ff56f18889abd458e6c359a1fd038b86d6bb078cecc3d990_arm64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-plugin-for-vsm-rhel8@sha256:a7faed6579c5d1f8ff56f18889abd458e6c359a1fd038b86d6bb078cecc3d990_arm64" + }, + "product_reference": "oadp/oadp-velero-plugin-for-vsm-rhel8@sha256:a7faed6579c5d1f8ff56f18889abd458e6c359a1fd038b86d6bb078cecc3d990_arm64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-for-vsm-rhel8@sha256:c29da97ce94aff1b538072d27d58ed65a2db5caf5f079f837c949fa866b53eaa_ppc64le as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-plugin-for-vsm-rhel8@sha256:c29da97ce94aff1b538072d27d58ed65a2db5caf5f079f837c949fa866b53eaa_ppc64le" + }, + "product_reference": "oadp/oadp-velero-plugin-for-vsm-rhel8@sha256:c29da97ce94aff1b538072d27d58ed65a2db5caf5f079f837c949fa866b53eaa_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-rhel8@sha256:017ae58a715980dfc2b32aa9d1865a7786991ab86a8c17880d142d43fe5188dd_amd64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-plugin-rhel8@sha256:017ae58a715980dfc2b32aa9d1865a7786991ab86a8c17880d142d43fe5188dd_amd64" + }, + "product_reference": "oadp/oadp-velero-plugin-rhel8@sha256:017ae58a715980dfc2b32aa9d1865a7786991ab86a8c17880d142d43fe5188dd_amd64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-rhel8@sha256:9615a84312443cd9b090d51f6dd132b526e58b962c00ac8475a41ad764fa35a0_arm64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-plugin-rhel8@sha256:9615a84312443cd9b090d51f6dd132b526e58b962c00ac8475a41ad764fa35a0_arm64" + }, + "product_reference": "oadp/oadp-velero-plugin-rhel8@sha256:9615a84312443cd9b090d51f6dd132b526e58b962c00ac8475a41ad764fa35a0_arm64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-rhel8@sha256:a5d985fb6042a03fa996552e43b7734de7f82a05bd69627412ba9350d0a0d318_ppc64le as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-plugin-rhel8@sha256:a5d985fb6042a03fa996552e43b7734de7f82a05bd69627412ba9350d0a0d318_ppc64le" + }, + "product_reference": "oadp/oadp-velero-plugin-rhel8@sha256:a5d985fb6042a03fa996552e43b7734de7f82a05bd69627412ba9350d0a0d318_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-plugin-rhel8@sha256:ea6fe5af28e3c79f2545b46c1639ae5e54e3845a5df2624955a7339511982479_s390x as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-plugin-rhel8@sha256:ea6fe5af28e3c79f2545b46c1639ae5e54e3845a5df2624955a7339511982479_s390x" + }, + "product_reference": "oadp/oadp-velero-plugin-rhel8@sha256:ea6fe5af28e3c79f2545b46c1639ae5e54e3845a5df2624955a7339511982479_s390x", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:66fde1bc2e17380cff5503c81cc0b1e4912c310d4c778d7d3b76835fd1aaf45d_amd64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-restic-restore-helper-rhel8@sha256:66fde1bc2e17380cff5503c81cc0b1e4912c310d4c778d7d3b76835fd1aaf45d_amd64" + }, + "product_reference": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:66fde1bc2e17380cff5503c81cc0b1e4912c310d4c778d7d3b76835fd1aaf45d_amd64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:982c9120f45add7a8832505823da117a054a79913f0c2811efde3b0349f5a79e_s390x as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-restic-restore-helper-rhel8@sha256:982c9120f45add7a8832505823da117a054a79913f0c2811efde3b0349f5a79e_s390x" + }, + "product_reference": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:982c9120f45add7a8832505823da117a054a79913f0c2811efde3b0349f5a79e_s390x", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:c34c2a171210bc35bef35c783e9d3989e9426ec00e87c3040c5e5de808e1e90e_arm64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-restic-restore-helper-rhel8@sha256:c34c2a171210bc35bef35c783e9d3989e9426ec00e87c3040c5e5de808e1e90e_arm64" + }, + "product_reference": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:c34c2a171210bc35bef35c783e9d3989e9426ec00e87c3040c5e5de808e1e90e_arm64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:d234e14c2c5789d9d00dc64d8b67d699517c647b05f7190aeb624cd21a5cca8c_ppc64le as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-restic-restore-helper-rhel8@sha256:d234e14c2c5789d9d00dc64d8b67d699517c647b05f7190aeb624cd21a5cca8c_ppc64le" + }, + "product_reference": "oadp/oadp-velero-restic-restore-helper-rhel8@sha256:d234e14c2c5789d9d00dc64d8b67d699517c647b05f7190aeb624cd21a5cca8c_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-rhel8@sha256:3d842994b0247323a38ff8c8fe943033e63b05bdc91ae17f222847e0ac11c353_s390x as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-rhel8@sha256:3d842994b0247323a38ff8c8fe943033e63b05bdc91ae17f222847e0ac11c353_s390x" + }, + "product_reference": "oadp/oadp-velero-rhel8@sha256:3d842994b0247323a38ff8c8fe943033e63b05bdc91ae17f222847e0ac11c353_s390x", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-rhel8@sha256:e2e8e59932a0b8db365458347161fdd0589c2a533d3eb9b68330b7d3c64af363_arm64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-rhel8@sha256:e2e8e59932a0b8db365458347161fdd0589c2a533d3eb9b68330b7d3c64af363_arm64" + }, + "product_reference": "oadp/oadp-velero-rhel8@sha256:e2e8e59932a0b8db365458347161fdd0589c2a533d3eb9b68330b7d3c64af363_arm64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-rhel8@sha256:ee41521bcac4206c966bc054416c92f14c240a1ef488ce4b126a8478d45966cc_ppc64le as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-rhel8@sha256:ee41521bcac4206c966bc054416c92f14c240a1ef488ce4b126a8478d45966cc_ppc64le" + }, + "product_reference": "oadp/oadp-velero-rhel8@sha256:ee41521bcac4206c966bc054416c92f14c240a1ef488ce4b126a8478d45966cc_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-velero-rhel8@sha256:f44e0b13bbfeb73b64f9e7407a81c4ca0bbe783442dd0d29abb12e02e1bd7b8f_amd64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-velero-rhel8@sha256:f44e0b13bbfeb73b64f9e7407a81c4ca0bbe783442dd0d29abb12e02e1bd7b8f_amd64" + }, + "product_reference": "oadp/oadp-velero-rhel8@sha256:f44e0b13bbfeb73b64f9e7407a81c4ca0bbe783442dd0d29abb12e02e1bd7b8f_amd64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:41726661a3574000106c13ee6d8c24745dfc53775aea3a7a4bc60e45e3f3968b_amd64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-volume-snapshot-mover-rhel8@sha256:41726661a3574000106c13ee6d8c24745dfc53775aea3a7a4bc60e45e3f3968b_amd64" + }, + "product_reference": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:41726661a3574000106c13ee6d8c24745dfc53775aea3a7a4bc60e45e3f3968b_amd64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:4a519c0df406c04c1b03a3a88ed075fb6815f0d43fe5d364f006aaf25074c12b_s390x as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-volume-snapshot-mover-rhel8@sha256:4a519c0df406c04c1b03a3a88ed075fb6815f0d43fe5d364f006aaf25074c12b_s390x" + }, + "product_reference": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:4a519c0df406c04c1b03a3a88ed075fb6815f0d43fe5d364f006aaf25074c12b_s390x", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:80a01ef4f6e44980e755f6939dc00252bd7274c9d13792dfa80f15423806f277_arm64 as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-volume-snapshot-mover-rhel8@sha256:80a01ef4f6e44980e755f6939dc00252bd7274c9d13792dfa80f15423806f277_arm64" + }, + "product_reference": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:80a01ef4f6e44980e755f6939dc00252bd7274c9d13792dfa80f15423806f277_arm64", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:d1f8e31d8ab726c672f3c53044aa7b563735686968ef0b95686c54171c3faf22_ppc64le as a component of 8Base-OADP-1.2", + "product_id": "8Base-OADP-1.2:oadp/oadp-volume-snapshot-mover-rhel8@sha256:d1f8e31d8ab726c672f3c53044aa7b563735686968ef0b95686c54171c3faf22_ppc64le" + }, + "product_reference": "oadp/oadp-volume-snapshot-mover-rhel8@sha256:d1f8e31d8ab726c672f3c53044aa7b563735686968ef0b95686c54171c3faf22_ppc64le", + "relates_to_product_reference": "8Base-OADP-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "custom-metrics-autoscaler/custom-metrics-autoscaler-adapter-rhel8@sha256:f3c6056ddc7be68ba0eac90df388e63de70da69d4b4c49a85bad7a4e1ecbeec6_amd64 as a component of OpenShift Custom Metrics Autoscaler 2", + "product_id": "8Base-OCMA-2:custom-metrics-autoscaler/custom-metrics-autoscaler-adapter-rhel8@sha256:f3c6056ddc7be68ba0eac90df388e63de70da69d4b4c49a85bad7a4e1ecbeec6_amd64" + }, + "product_reference": "custom-metrics-autoscaler/custom-metrics-autoscaler-adapter-rhel8@sha256:f3c6056ddc7be68ba0eac90df388e63de70da69d4b4c49a85bad7a4e1ecbeec6_amd64", + "relates_to_product_reference": "8Base-OCMA-2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "custom-metrics-autoscaler/custom-metrics-autoscaler-admission-webhooks-rhel8@sha256:5fa428c0cfb55c296ec601117ac124a7648c89f10bf6a031691cc08b15bcae4f_amd64 as a component of OpenShift Custom Metrics Autoscaler 2", + "product_id": "8Base-OCMA-2:custom-metrics-autoscaler/custom-metrics-autoscaler-admission-webhooks-rhel8@sha256:5fa428c0cfb55c296ec601117ac124a7648c89f10bf6a031691cc08b15bcae4f_amd64" + }, + "product_reference": "custom-metrics-autoscaler/custom-metrics-autoscaler-admission-webhooks-rhel8@sha256:5fa428c0cfb55c296ec601117ac124a7648c89f10bf6a031691cc08b15bcae4f_amd64", + "relates_to_product_reference": "8Base-OCMA-2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "custom-metrics-autoscaler/custom-metrics-autoscaler-operator-bundle@sha256:f66bacfad9cab2c65003cc86331a42fe68336a73feaf802365a3badd4cf5f1b5_amd64 as a component of OpenShift Custom Metrics Autoscaler 2", + "product_id": "8Base-OCMA-2:custom-metrics-autoscaler/custom-metrics-autoscaler-operator-bundle@sha256:f66bacfad9cab2c65003cc86331a42fe68336a73feaf802365a3badd4cf5f1b5_amd64" + }, + "product_reference": "custom-metrics-autoscaler/custom-metrics-autoscaler-operator-bundle@sha256:f66bacfad9cab2c65003cc86331a42fe68336a73feaf802365a3badd4cf5f1b5_amd64", + "relates_to_product_reference": "8Base-OCMA-2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "custom-metrics-autoscaler/custom-metrics-autoscaler-rhel8-operator@sha256:921c402950001225c8dff5bb14b9307eb69f7a7a6bcdecb852c94a0e8e5c255c_amd64 as a component of OpenShift Custom Metrics Autoscaler 2", + "product_id": "8Base-OCMA-2:custom-metrics-autoscaler/custom-metrics-autoscaler-rhel8-operator@sha256:921c402950001225c8dff5bb14b9307eb69f7a7a6bcdecb852c94a0e8e5c255c_amd64" + }, + "product_reference": "custom-metrics-autoscaler/custom-metrics-autoscaler-rhel8-operator@sha256:921c402950001225c8dff5bb14b9307eb69f7a7a6bcdecb852c94a0e8e5c255c_amd64", + "relates_to_product_reference": "8Base-OCMA-2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "custom-metrics-autoscaler/custom-metrics-autoscaler-rhel8@sha256:49bdd152e73c3339c51fce94820a8cbe00bab54e53a02654bc920daa5592bcc0_amd64 as a component of OpenShift Custom Metrics Autoscaler 2", + "product_id": "8Base-OCMA-2:custom-metrics-autoscaler/custom-metrics-autoscaler-rhel8@sha256:49bdd152e73c3339c51fce94820a8cbe00bab54e53a02654bc920daa5592bcc0_amd64" + }, + "product_reference": "custom-metrics-autoscaler/custom-metrics-autoscaler-rhel8@sha256:49bdd152e73c3339c51fce94820a8cbe00bab54e53a02654bc920daa5592bcc0_amd64", + "relates_to_product_reference": "8Base-OCMA-2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jenkins-0:2.414.3.1698292201-3.el8.noarch as a component of OpenShift Developer Tools and Services for OCP 4.13 for RHEL 8", + "product_id": "8Base-OCP-Tools-4.13:jenkins-0:2.414.3.1698292201-3.el8.noarch" + }, + "product_reference": "jenkins-0:2.414.3.1698292201-3.el8.noarch", + "relates_to_product_reference": "8Base-OCP-Tools-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jenkins-0:2.414.3.1698292201-3.el8.src as a component of OpenShift Developer Tools and Services for OCP 4.13 for RHEL 8", + "product_id": "8Base-OCP-Tools-4.13:jenkins-0:2.414.3.1698292201-3.el8.src" + }, + "product_reference": "jenkins-0:2.414.3.1698292201-3.el8.src", + "relates_to_product_reference": "8Base-OCP-Tools-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jenkins-2-plugins-0:4.13.1698292274-1.el8.noarch as a component of OpenShift Developer Tools and Services for OCP 4.13 for RHEL 8", + "product_id": "8Base-OCP-Tools-4.13:jenkins-2-plugins-0:4.13.1698292274-1.el8.noarch" + }, + "product_reference": "jenkins-2-plugins-0:4.13.1698292274-1.el8.noarch", + "relates_to_product_reference": "8Base-OCP-Tools-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jenkins-2-plugins-0:4.13.1698292274-1.el8.src as a component of OpenShift Developer Tools and Services for OCP 4.13 for RHEL 8", + "product_id": "8Base-OCP-Tools-4.13:jenkins-2-plugins-0:4.13.1698292274-1.el8.src" + }, + "product_reference": "jenkins-2-plugins-0:4.13.1698292274-1.el8.src", + "relates_to_product_reference": "8Base-OCP-Tools-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jenkins-0:2.414.3.1699356615-3.el8.noarch as a component of OpenShift Developer Tools and Services for OCP 4.14 for RHEL 8", + "product_id": "8Base-OCP-Tools-4.14:jenkins-0:2.414.3.1699356615-3.el8.noarch" + }, + "product_reference": "jenkins-0:2.414.3.1699356615-3.el8.noarch", + "relates_to_product_reference": "8Base-OCP-Tools-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jenkins-0:2.414.3.1699356615-3.el8.src as a component of OpenShift Developer Tools and Services for OCP 4.14 for RHEL 8", + "product_id": "8Base-OCP-Tools-4.14:jenkins-0:2.414.3.1699356615-3.el8.src" + }, + "product_reference": "jenkins-0:2.414.3.1699356615-3.el8.src", + "relates_to_product_reference": "8Base-OCP-Tools-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jenkins-2-plugins-0:4.14.1699356715-1.el8.noarch as a component of OpenShift Developer Tools and Services for OCP 4.14 for RHEL 8", + "product_id": "8Base-OCP-Tools-4.14:jenkins-2-plugins-0:4.14.1699356715-1.el8.noarch" + }, + "product_reference": "jenkins-2-plugins-0:4.14.1699356715-1.el8.noarch", + "relates_to_product_reference": "8Base-OCP-Tools-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jenkins-2-plugins-0:4.14.1699356715-1.el8.src as a component of OpenShift Developer Tools and Services for OCP 4.14 for RHEL 8", + "product_id": "8Base-OCP-Tools-4.14:jenkins-2-plugins-0:4.14.1699356715-1.el8.src" + }, + "product_reference": "jenkins-2-plugins-0:4.14.1699356715-1.el8.src", + "relates_to_product_reference": "8Base-OCP-Tools-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-secondary-scheduler-operator/secondary-scheduler-operator-bundle@sha256:51458b1eafc32dd920558e757506e9b71856b5b47744284c961c5430766536b2_amd64 as a component of OSSO 1.1 for RHEL 8", + "product_id": "8Base-OSSO-1.1:openshift-secondary-scheduler-operator/secondary-scheduler-operator-bundle@sha256:51458b1eafc32dd920558e757506e9b71856b5b47744284c961c5430766536b2_amd64" + }, + "product_reference": "openshift-secondary-scheduler-operator/secondary-scheduler-operator-bundle@sha256:51458b1eafc32dd920558e757506e9b71856b5b47744284c961c5430766536b2_amd64", + "relates_to_product_reference": "8Base-OSSO-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-secondary-scheduler-operator/secondary-scheduler-operator-rhel8@sha256:fb305e8ee14a0cd1f45da0bdd9000a1f9d0a9c4dd20e300004c3cef26997b9b8_amd64 as a component of OSSO 1.1 for RHEL 8", + "product_id": "8Base-OSSO-1.1:openshift-secondary-scheduler-operator/secondary-scheduler-operator-rhel8@sha256:fb305e8ee14a0cd1f45da0bdd9000a1f9d0a9c4dd20e300004c3cef26997b9b8_amd64" + }, + "product_reference": "openshift-secondary-scheduler-operator/secondary-scheduler-operator-rhel8@sha256:fb305e8ee14a0cd1f45da0bdd9000a1f9d0a9c4dd20e300004c3cef26997b9b8_amd64", + "relates_to_product_reference": "8Base-OSSO-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-secondary-scheduler-operator/secondary-scheduler-operator-bundle@sha256:775e1822637d308859c4eff42d7b09c949610430ff27cf08d01d41e44cbac2ff_amd64 as a component of OSSO 1.2 for RHEL 8", + "product_id": "8Base-OSSO-1.2:openshift-secondary-scheduler-operator/secondary-scheduler-operator-bundle@sha256:775e1822637d308859c4eff42d7b09c949610430ff27cf08d01d41e44cbac2ff_amd64" + }, + "product_reference": "openshift-secondary-scheduler-operator/secondary-scheduler-operator-bundle@sha256:775e1822637d308859c4eff42d7b09c949610430ff27cf08d01d41e44cbac2ff_amd64", + "relates_to_product_reference": "8Base-OSSO-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-secondary-scheduler-operator/secondary-scheduler-operator-rhel8@sha256:864b263c4dfee9c6144a910f59b6155d20fb48f49f0490efb5d14d383ba2bb84_amd64 as a component of OSSO 1.2 for RHEL 8", + "product_id": "8Base-OSSO-1.2:openshift-secondary-scheduler-operator/secondary-scheduler-operator-rhel8@sha256:864b263c4dfee9c6144a910f59b6155d20fb48f49f0490efb5d14d383ba2bb84_amd64" + }, + "product_reference": "openshift-secondary-scheduler-operator/secondary-scheduler-operator-rhel8@sha256:864b263c4dfee9c6144a910f59b6155d20fb48f49f0490efb5d14d383ba2bb84_amd64", + "relates_to_product_reference": "8Base-OSSO-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-clients-0:1.9.2-4.el8.ppc64le as a component of Openshift Serverless 1 on RHEL 8Base", + "product_id": "8Base-Openshift-Serverless-1:openshift-serverless-clients-0:1.9.2-4.el8.ppc64le" + }, + "product_reference": "openshift-serverless-clients-0:1.9.2-4.el8.ppc64le", + "relates_to_product_reference": "8Base-Openshift-Serverless-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-clients-0:1.9.2-4.el8.s390x as a component of Openshift Serverless 1 on RHEL 8Base", + "product_id": "8Base-Openshift-Serverless-1:openshift-serverless-clients-0:1.9.2-4.el8.s390x" + }, + "product_reference": "openshift-serverless-clients-0:1.9.2-4.el8.s390x", + "relates_to_product_reference": "8Base-Openshift-Serverless-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-clients-0:1.9.2-4.el8.src as a component of Openshift Serverless 1 on RHEL 8Base", + "product_id": "8Base-Openshift-Serverless-1:openshift-serverless-clients-0:1.9.2-4.el8.src" + }, + "product_reference": "openshift-serverless-clients-0:1.9.2-4.el8.src", + "relates_to_product_reference": "8Base-Openshift-Serverless-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-clients-0:1.9.2-4.el8.x86_64 as a component of Openshift Serverless 1 on RHEL 8Base", + "product_id": "8Base-Openshift-Serverless-1:openshift-serverless-clients-0:1.9.2-4.el8.x86_64" + }, + "product_reference": "openshift-serverless-clients-0:1.9.2-4.el8.x86_64", + "relates_to_product_reference": "8Base-Openshift-Serverless-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines-client-0:1.11.2-11148.el8.aarch64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines-client-0:1.11.2-11148.el8.aarch64" + }, + "product_reference": "openshift-pipelines-client-0:1.11.2-11148.el8.aarch64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines-client-0:1.11.2-11148.el8.ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines-client-0:1.11.2-11148.el8.ppc64le" + }, + "product_reference": "openshift-pipelines-client-0:1.11.2-11148.el8.ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines-client-0:1.11.2-11148.el8.s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines-client-0:1.11.2-11148.el8.s390x" + }, + "product_reference": "openshift-pipelines-client-0:1.11.2-11148.el8.s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines-client-0:1.11.2-11148.el8.src as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines-client-0:1.11.2-11148.el8.src" + }, + "product_reference": "openshift-pipelines-client-0:1.11.2-11148.el8.src", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines-client-0:1.11.2-11148.el8.x86_64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines-client-0:1.11.2-11148.el8.x86_64" + }, + "product_reference": "openshift-pipelines-client-0:1.11.2-11148.el8.x86_64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines-client-redistributable-0:1.11.2-11148.el8.aarch64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines-client-redistributable-0:1.11.2-11148.el8.aarch64" + }, + "product_reference": "openshift-pipelines-client-redistributable-0:1.11.2-11148.el8.aarch64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines-client-redistributable-0:1.11.2-11148.el8.ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines-client-redistributable-0:1.11.2-11148.el8.ppc64le" + }, + "product_reference": "openshift-pipelines-client-redistributable-0:1.11.2-11148.el8.ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines-client-redistributable-0:1.11.2-11148.el8.s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines-client-redistributable-0:1.11.2-11148.el8.s390x" + }, + "product_reference": "openshift-pipelines-client-redistributable-0:1.11.2-11148.el8.s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines-client-redistributable-0:1.11.2-11148.el8.x86_64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines-client-redistributable-0:1.11.2-11148.el8.x86_64" + }, + "product_reference": "openshift-pipelines-client-redistributable-0:1.11.2-11148.el8.x86_64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:5b6015d505075fff67033cce64ba85931f90bf9dd4b3a5b5f3f8cd618c60b13f_arm64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-chains-controller-rhel8@sha256:5b6015d505075fff67033cce64ba85931f90bf9dd4b3a5b5f3f8cd618c60b13f_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:5b6015d505075fff67033cce64ba85931f90bf9dd4b3a5b5f3f8cd618c60b13f_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:5f964a60593f4e8f96c01ae703bd6748fe0c0f788f75dda4e357ee32db8016df_amd64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-chains-controller-rhel8@sha256:5f964a60593f4e8f96c01ae703bd6748fe0c0f788f75dda4e357ee32db8016df_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:5f964a60593f4e8f96c01ae703bd6748fe0c0f788f75dda4e357ee32db8016df_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:5fda3388d67459119980528fe03d5895310e1153c8114a08a3b05bd9ecdda687_ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-chains-controller-rhel8@sha256:5fda3388d67459119980528fe03d5895310e1153c8114a08a3b05bd9ecdda687_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:5fda3388d67459119980528fe03d5895310e1153c8114a08a3b05bd9ecdda687_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:f58a1bd922aac35c35368ca4b3bd33908070c408aaf895c69dae6ca369e3733b_s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-chains-controller-rhel8@sha256:f58a1bd922aac35c35368ca4b3bd33908070c408aaf895c69dae6ca369e3733b_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:f58a1bd922aac35c35368ca4b3bd33908070c408aaf895c69dae6ca369e3733b_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:0303f01d8b2f3be3c09a6bbde001d40146ea459ca3401980af5ed0d0745528c1_s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:0303f01d8b2f3be3c09a6bbde001d40146ea459ca3401980af5ed0d0745528c1_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:0303f01d8b2f3be3c09a6bbde001d40146ea459ca3401980af5ed0d0745528c1_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:5da30a15ec05c5651ccdc8256c5f0e2983197b1aacafc51a8d5fff5a59dc78fc_amd64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:5da30a15ec05c5651ccdc8256c5f0e2983197b1aacafc51a8d5fff5a59dc78fc_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:5da30a15ec05c5651ccdc8256c5f0e2983197b1aacafc51a8d5fff5a59dc78fc_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:80cb3805280e496b99f459189cd28bd70303fa4f78c41e8efba18a15e5b383fd_arm64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:80cb3805280e496b99f459189cd28bd70303fa4f78c41e8efba18a15e5b383fd_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:80cb3805280e496b99f459189cd28bd70303fa4f78c41e8efba18a15e5b383fd_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:ccc4687dd3054f00af5ee927ac9410d9445a8e1a54aeb58cc2e79246c8ea83ba_ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:ccc4687dd3054f00af5ee927ac9410d9445a8e1a54aeb58cc2e79246c8ea83ba_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:ccc4687dd3054f00af5ee927ac9410d9445a8e1a54aeb58cc2e79246c8ea83ba_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-controller-rhel8@sha256:18f8d9707850a4624764e955c0f14f7299f3fc9b9ed8852036cc809b8233a400_arm64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-controller-rhel8@sha256:18f8d9707850a4624764e955c0f14f7299f3fc9b9ed8852036cc809b8233a400_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-controller-rhel8@sha256:18f8d9707850a4624764e955c0f14f7299f3fc9b9ed8852036cc809b8233a400_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-controller-rhel8@sha256:909342dadd2be08b629e05ae79e20cc74705d51eb93330ae441ca160ab07bb81_s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-controller-rhel8@sha256:909342dadd2be08b629e05ae79e20cc74705d51eb93330ae441ca160ab07bb81_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-controller-rhel8@sha256:909342dadd2be08b629e05ae79e20cc74705d51eb93330ae441ca160ab07bb81_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-controller-rhel8@sha256:d452c0a9759564024094bb1949d20c48c239158bb70d9875d9e66ae03e83ebe6_amd64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-controller-rhel8@sha256:d452c0a9759564024094bb1949d20c48c239158bb70d9875d9e66ae03e83ebe6_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-controller-rhel8@sha256:d452c0a9759564024094bb1949d20c48c239158bb70d9875d9e66ae03e83ebe6_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-controller-rhel8@sha256:e7f92b0f53d1f04b153b42d34e156da11e0794fc076214394595c476fc85431b_ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-controller-rhel8@sha256:e7f92b0f53d1f04b153b42d34e156da11e0794fc076214394595c476fc85431b_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-controller-rhel8@sha256:e7f92b0f53d1f04b153b42d34e156da11e0794fc076214394595c476fc85431b_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:0064ab030aa6f1839bbc3dfd157064adf75e470164f902c00075127ca50d856b_arm64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-entrypoint-rhel8@sha256:0064ab030aa6f1839bbc3dfd157064adf75e470164f902c00075127ca50d856b_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:0064ab030aa6f1839bbc3dfd157064adf75e470164f902c00075127ca50d856b_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:657d69d0bdd7006462a81cfb1b9cb16cc8eee1f2ee47203ca29fb54524dbc1cb_amd64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-entrypoint-rhel8@sha256:657d69d0bdd7006462a81cfb1b9cb16cc8eee1f2ee47203ca29fb54524dbc1cb_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:657d69d0bdd7006462a81cfb1b9cb16cc8eee1f2ee47203ca29fb54524dbc1cb_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:84609ad6fe8c76ea9f238e253ecbb9eb8d02da08a7826917ce6a55c681f8e1dd_s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-entrypoint-rhel8@sha256:84609ad6fe8c76ea9f238e253ecbb9eb8d02da08a7826917ce6a55c681f8e1dd_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:84609ad6fe8c76ea9f238e253ecbb9eb8d02da08a7826917ce6a55c681f8e1dd_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:a38c3344154fa7b2bfdf2f48e369aa26acdbc4b404be995aa35b685871c8e52e_ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-entrypoint-rhel8@sha256:a38c3344154fa7b2bfdf2f48e369aa26acdbc4b404be995aa35b685871c8e52e_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:a38c3344154fa7b2bfdf2f48e369aa26acdbc4b404be995aa35b685871c8e52e_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:a150b75b8e35cc3f4378122d2e1ad93dc4880488aeb03ca78be7a4f8ab3d439d_arm64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-hub-api-rhel8@sha256:a150b75b8e35cc3f4378122d2e1ad93dc4880488aeb03ca78be7a4f8ab3d439d_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:a150b75b8e35cc3f4378122d2e1ad93dc4880488aeb03ca78be7a4f8ab3d439d_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:ab0c47cf9bbf4fa18dbf314959e37a37bc03b555ddbfeaf395b0cf1bbac1d38e_s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-hub-api-rhel8@sha256:ab0c47cf9bbf4fa18dbf314959e37a37bc03b555ddbfeaf395b0cf1bbac1d38e_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:ab0c47cf9bbf4fa18dbf314959e37a37bc03b555ddbfeaf395b0cf1bbac1d38e_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:bec90770d8f779bcd8ad00eeac03eb30d3a37ba9d89b885dbf11aae1179faa90_amd64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-hub-api-rhel8@sha256:bec90770d8f779bcd8ad00eeac03eb30d3a37ba9d89b885dbf11aae1179faa90_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:bec90770d8f779bcd8ad00eeac03eb30d3a37ba9d89b885dbf11aae1179faa90_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:c648fd4931eab69a12c96ebfbd1c603ebf5c38609d490c66495f3c39bdb1bb1d_ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-hub-api-rhel8@sha256:c648fd4931eab69a12c96ebfbd1c603ebf5c38609d490c66495f3c39bdb1bb1d_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:c648fd4931eab69a12c96ebfbd1c603ebf5c38609d490c66495f3c39bdb1bb1d_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:0170d82ad87d1711060c8deecfe108e8191a2a2215f384698b7337768e062515_s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:0170d82ad87d1711060c8deecfe108e8191a2a2215f384698b7337768e062515_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:0170d82ad87d1711060c8deecfe108e8191a2a2215f384698b7337768e062515_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:40e78ea2e906d9e2e1b74c4731b428c95a1a61bb764e6aeb20189abea166a8d9_arm64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:40e78ea2e906d9e2e1b74c4731b428c95a1a61bb764e6aeb20189abea166a8d9_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:40e78ea2e906d9e2e1b74c4731b428c95a1a61bb764e6aeb20189abea166a8d9_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:631a5cc9a651a114e09c26e5c2780679afc1b5d64e93a091237ab05d9c8e33eb_amd64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:631a5cc9a651a114e09c26e5c2780679afc1b5d64e93a091237ab05d9c8e33eb_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:631a5cc9a651a114e09c26e5c2780679afc1b5d64e93a091237ab05d9c8e33eb_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:a9c70d7dfa56252cba6789be6eab48f4c8ee9c1d7bf74f27328393bf0f0ab7d2_ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:a9c70d7dfa56252cba6789be6eab48f4c8ee9c1d7bf74f27328393bf0f0ab7d2_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:a9c70d7dfa56252cba6789be6eab48f4c8ee9c1d7bf74f27328393bf0f0ab7d2_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:16a287c22d6590e2c3fc6c92702483f8475696be34e4210165beeb9ac69ad4fa_s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-hub-ui-rhel8@sha256:16a287c22d6590e2c3fc6c92702483f8475696be34e4210165beeb9ac69ad4fa_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:16a287c22d6590e2c3fc6c92702483f8475696be34e4210165beeb9ac69ad4fa_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:2dba2b7b58ce3a34a8fd244ade29d9d979d6d9d4373230827522c399cdd34a22_arm64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-hub-ui-rhel8@sha256:2dba2b7b58ce3a34a8fd244ade29d9d979d6d9d4373230827522c399cdd34a22_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:2dba2b7b58ce3a34a8fd244ade29d9d979d6d9d4373230827522c399cdd34a22_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:9e5123396252d9c8173b47d8b7043e19b09cc9b124c2ba2472d63b2f2996a24e_amd64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-hub-ui-rhel8@sha256:9e5123396252d9c8173b47d8b7043e19b09cc9b124c2ba2472d63b2f2996a24e_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:9e5123396252d9c8173b47d8b7043e19b09cc9b124c2ba2472d63b2f2996a24e_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:d62f295e4f46fa0660289f0fd65c18124cffcafe119d905f935bb15e4a7ce94d_ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-hub-ui-rhel8@sha256:d62f295e4f46fa0660289f0fd65c18124cffcafe119d905f935bb15e4a7ce94d_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:d62f295e4f46fa0660289f0fd65c18124cffcafe119d905f935bb15e4a7ce94d_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-nop-rhel8@sha256:146924f960674b80d7afe465ce84bea7fa5742992d33e19e94254e4a1f02039d_arm64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-nop-rhel8@sha256:146924f960674b80d7afe465ce84bea7fa5742992d33e19e94254e4a1f02039d_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-nop-rhel8@sha256:146924f960674b80d7afe465ce84bea7fa5742992d33e19e94254e4a1f02039d_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-nop-rhel8@sha256:473dc1a323668dd972787b5c0e145d4dd90e38a7ea254fde87b326b00bd8ba99_ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-nop-rhel8@sha256:473dc1a323668dd972787b5c0e145d4dd90e38a7ea254fde87b326b00bd8ba99_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-nop-rhel8@sha256:473dc1a323668dd972787b5c0e145d4dd90e38a7ea254fde87b326b00bd8ba99_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-nop-rhel8@sha256:6eb22a455b3d84235e61f3ce4c1113fd6b7b1cd1262c6375c38c0fc93f29d7bd_amd64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-nop-rhel8@sha256:6eb22a455b3d84235e61f3ce4c1113fd6b7b1cd1262c6375c38c0fc93f29d7bd_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-nop-rhel8@sha256:6eb22a455b3d84235e61f3ce4c1113fd6b7b1cd1262c6375c38c0fc93f29d7bd_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-nop-rhel8@sha256:ecbcf68557474176d2c575ab1d9d49f6c2f58e75fcc3e0ccd26fdcb872209a0b_s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-nop-rhel8@sha256:ecbcf68557474176d2c575ab1d9d49f6c2f58e75fcc3e0ccd26fdcb872209a0b_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-nop-rhel8@sha256:ecbcf68557474176d2c575ab1d9d49f6c2f58e75fcc3e0ccd26fdcb872209a0b_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-operator-bundle@sha256:25ef8ce0478993a0ad0fe40f804ceec020f1898719b53cb0491b24de1bf8de95_amd64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-operator-bundle@sha256:25ef8ce0478993a0ad0fe40f804ceec020f1898719b53cb0491b24de1bf8de95_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-operator-bundle@sha256:25ef8ce0478993a0ad0fe40f804ceec020f1898719b53cb0491b24de1bf8de95_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-operator-bundle@sha256:3be2f328c720338815c9147b3c135716e4f01fe3a082ea61698f49dff260c232_arm64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-operator-bundle@sha256:3be2f328c720338815c9147b3c135716e4f01fe3a082ea61698f49dff260c232_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-operator-bundle@sha256:3be2f328c720338815c9147b3c135716e4f01fe3a082ea61698f49dff260c232_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-operator-bundle@sha256:5bcb14fe61c6052752b8db5d55b43de9f80cc771c660519421c08e4776094b6f_s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-operator-bundle@sha256:5bcb14fe61c6052752b8db5d55b43de9f80cc771c660519421c08e4776094b6f_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-operator-bundle@sha256:5bcb14fe61c6052752b8db5d55b43de9f80cc771c660519421c08e4776094b6f_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-operator-bundle@sha256:cec1cdd6d41a292a4801df4d999cedab1f2c1358bbd34392e5f5c4d4b4fbc604_ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-operator-bundle@sha256:cec1cdd6d41a292a4801df4d999cedab1f2c1358bbd34392e5f5c4d4b4fbc604_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-operator-bundle@sha256:cec1cdd6d41a292a4801df4d999cedab1f2c1358bbd34392e5f5c4d4b4fbc604_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:2f12ba1c210ae9a6b65d66b53c40960df75a4d60e476bfd08ab64d8d44caf258_ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:2f12ba1c210ae9a6b65d66b53c40960df75a4d60e476bfd08ab64d8d44caf258_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:2f12ba1c210ae9a6b65d66b53c40960df75a4d60e476bfd08ab64d8d44caf258_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:3ce3c07ca2b27db64e991df944ca9bd010ad999682e7d1cff01357dffa046a90_s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:3ce3c07ca2b27db64e991df944ca9bd010ad999682e7d1cff01357dffa046a90_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:3ce3c07ca2b27db64e991df944ca9bd010ad999682e7d1cff01357dffa046a90_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:50e12e55041e99b78ebbe2cb2ca850913af24fb66fac31e192ef000b5232eb73_arm64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:50e12e55041e99b78ebbe2cb2ca850913af24fb66fac31e192ef000b5232eb73_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:50e12e55041e99b78ebbe2cb2ca850913af24fb66fac31e192ef000b5232eb73_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:90a30dafd400ead9a5eb4c7fbd5974a10706c0886c2ce1aeedb008a792ba6ad9_amd64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:90a30dafd400ead9a5eb4c7fbd5974a10706c0886c2ce1aeedb008a792ba6ad9_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:90a30dafd400ead9a5eb4c7fbd5974a10706c0886c2ce1aeedb008a792ba6ad9_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:0726327c92f3cedd0a7d75ba1eee1afd639b665e24754bb1ceb597dbe0afbdcf_ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:0726327c92f3cedd0a7d75ba1eee1afd639b665e24754bb1ceb597dbe0afbdcf_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:0726327c92f3cedd0a7d75ba1eee1afd639b665e24754bb1ceb597dbe0afbdcf_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:121516818a708a1c28f2753d25fc814b1969d38c9419aa91d8ebc2c1636d1dce_arm64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:121516818a708a1c28f2753d25fc814b1969d38c9419aa91d8ebc2c1636d1dce_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:121516818a708a1c28f2753d25fc814b1969d38c9419aa91d8ebc2c1636d1dce_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:7a726600ef9002edb6b8d134b2ab66ced8a31b6d33392c12e187470b4272e847_s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:7a726600ef9002edb6b8d134b2ab66ced8a31b6d33392c12e187470b4272e847_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:7a726600ef9002edb6b8d134b2ab66ced8a31b6d33392c12e187470b4272e847_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:d45688a65b20c82d509ecdb28df19e86929a6b026ab59cc8e79a34e844e75f36_amd64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:d45688a65b20c82d509ecdb28df19e86929a6b026ab59cc8e79a34e844e75f36_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:d45688a65b20c82d509ecdb28df19e86929a6b026ab59cc8e79a34e844e75f36_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:3129b394cbe17230b8600cd0f0d87ed7881a8bcada87f878114a9421936172e2_arm64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:3129b394cbe17230b8600cd0f0d87ed7881a8bcada87f878114a9421936172e2_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:3129b394cbe17230b8600cd0f0d87ed7881a8bcada87f878114a9421936172e2_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:428efe5713950c4f6a7df6af68edf7b5e347b47afd62e717252fc340a70dadb1_amd64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:428efe5713950c4f6a7df6af68edf7b5e347b47afd62e717252fc340a70dadb1_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:428efe5713950c4f6a7df6af68edf7b5e347b47afd62e717252fc340a70dadb1_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:46be2ed44580d4c1138776e558e323d9f275b5db5cf69c8ad4b492b532bb8de8_ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:46be2ed44580d4c1138776e558e323d9f275b5db5cf69c8ad4b492b532bb8de8_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:46be2ed44580d4c1138776e558e323d9f275b5db5cf69c8ad4b492b532bb8de8_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:9920fc58712bd9bf06add59dafb87b4449ff676c3f58a677aafec22278cbcb68_s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:9920fc58712bd9bf06add59dafb87b4449ff676c3f58a677aafec22278cbcb68_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:9920fc58712bd9bf06add59dafb87b4449ff676c3f58a677aafec22278cbcb68_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:1c31cdcfcde3f93f259192a7bf70d879fb0c9243db67cf4f90b0e2dba7c362c7_ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-resolvers-rhel8@sha256:1c31cdcfcde3f93f259192a7bf70d879fb0c9243db67cf4f90b0e2dba7c362c7_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:1c31cdcfcde3f93f259192a7bf70d879fb0c9243db67cf4f90b0e2dba7c362c7_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:53f03dbfb145c38f484ee10c00238e411e734d9fb8cda189c76cd5664f318f15_s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-resolvers-rhel8@sha256:53f03dbfb145c38f484ee10c00238e411e734d9fb8cda189c76cd5664f318f15_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:53f03dbfb145c38f484ee10c00238e411e734d9fb8cda189c76cd5664f318f15_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:6491e02bb55405681f62ab3bd399788743b13193e9c019b984e43e1e9167af8d_amd64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-resolvers-rhel8@sha256:6491e02bb55405681f62ab3bd399788743b13193e9c019b984e43e1e9167af8d_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:6491e02bb55405681f62ab3bd399788743b13193e9c019b984e43e1e9167af8d_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:cd7a7785817cdd9098d46a4b810c0bb88b5f0192c26e97087b31c3e3a6984649_arm64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-resolvers-rhel8@sha256:cd7a7785817cdd9098d46a4b810c0bb88b5f0192c26e97087b31c3e3a6984649_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:cd7a7785817cdd9098d46a4b810c0bb88b5f0192c26e97087b31c3e3a6984649_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-results-api-rhel8@sha256:1f2dd09e23781d316507fc5fa626072c9e4b97ef6428c9238e1ff1ef9a1dc415_s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-results-api-rhel8@sha256:1f2dd09e23781d316507fc5fa626072c9e4b97ef6428c9238e1ff1ef9a1dc415_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-results-api-rhel8@sha256:1f2dd09e23781d316507fc5fa626072c9e4b97ef6428c9238e1ff1ef9a1dc415_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-results-api-rhel8@sha256:96008c78ead27b3c7f9158a448946d1a52ec8a7c1ce41dc95a39104df217b6dd_ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-results-api-rhel8@sha256:96008c78ead27b3c7f9158a448946d1a52ec8a7c1ce41dc95a39104df217b6dd_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-results-api-rhel8@sha256:96008c78ead27b3c7f9158a448946d1a52ec8a7c1ce41dc95a39104df217b6dd_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-results-api-rhel8@sha256:a6817868b710d8a73ee7ff046230bfa2fcbc622a3b929ccf0745bb97f511dbbe_arm64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-results-api-rhel8@sha256:a6817868b710d8a73ee7ff046230bfa2fcbc622a3b929ccf0745bb97f511dbbe_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-results-api-rhel8@sha256:a6817868b710d8a73ee7ff046230bfa2fcbc622a3b929ccf0745bb97f511dbbe_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-results-api-rhel8@sha256:c427ac8a786d85d1d0bfac1a20c0578266d7e7e78ba4f618fb76aae4fbd515ab_amd64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-results-api-rhel8@sha256:c427ac8a786d85d1d0bfac1a20c0578266d7e7e78ba4f618fb76aae4fbd515ab_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-results-api-rhel8@sha256:c427ac8a786d85d1d0bfac1a20c0578266d7e7e78ba4f618fb76aae4fbd515ab_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:37414e8e53c4eb0649bd6c9009bd94b69963876a50d596670997b8e68aee81cf_arm64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-results-watcher-rhel8@sha256:37414e8e53c4eb0649bd6c9009bd94b69963876a50d596670997b8e68aee81cf_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:37414e8e53c4eb0649bd6c9009bd94b69963876a50d596670997b8e68aee81cf_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:5c6876c31b669716580333018eb3dcb2e4f3774369f783c64ce79e4833379f62_ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-results-watcher-rhel8@sha256:5c6876c31b669716580333018eb3dcb2e4f3774369f783c64ce79e4833379f62_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:5c6876c31b669716580333018eb3dcb2e4f3774369f783c64ce79e4833379f62_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:60e9ac3950ebd06f2d21936556f844bd72fe82312217a9664effde1cbb90fe01_s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-results-watcher-rhel8@sha256:60e9ac3950ebd06f2d21936556f844bd72fe82312217a9664effde1cbb90fe01_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:60e9ac3950ebd06f2d21936556f844bd72fe82312217a9664effde1cbb90fe01_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:9ffe4b68bca39aeff9ac9a4edf221bcbb8622f3e469f9b8499be6a53c032d4b2_amd64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-results-watcher-rhel8@sha256:9ffe4b68bca39aeff9ac9a4edf221bcbb8622f3e469f9b8499be6a53c032d4b2_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:9ffe4b68bca39aeff9ac9a4edf221bcbb8622f3e469f9b8499be6a53c032d4b2_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-rhel8-operator@sha256:3173d641ec00d379acd33dbae09d88cf30aaf393db0ffc67ea341f92ec137426_s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-rhel8-operator@sha256:3173d641ec00d379acd33dbae09d88cf30aaf393db0ffc67ea341f92ec137426_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-rhel8-operator@sha256:3173d641ec00d379acd33dbae09d88cf30aaf393db0ffc67ea341f92ec137426_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-rhel8-operator@sha256:a17b0a96657fed29945d4414eb8287c15b67b7af20f1bb861f9d38895c3d7ec4_amd64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-rhel8-operator@sha256:a17b0a96657fed29945d4414eb8287c15b67b7af20f1bb861f9d38895c3d7ec4_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-rhel8-operator@sha256:a17b0a96657fed29945d4414eb8287c15b67b7af20f1bb861f9d38895c3d7ec4_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-rhel8-operator@sha256:a9419ae2186cd794aa0ed8115bdfa53c8180dd065796d18accf813a0286fbab2_arm64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-rhel8-operator@sha256:a9419ae2186cd794aa0ed8115bdfa53c8180dd065796d18accf813a0286fbab2_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-rhel8-operator@sha256:a9419ae2186cd794aa0ed8115bdfa53c8180dd065796d18accf813a0286fbab2_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-rhel8-operator@sha256:d87233df397bf3cdf548db58729cb70a8382c0be952d3391dc122affb122bd69_ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-rhel8-operator@sha256:d87233df397bf3cdf548db58729cb70a8382c0be952d3391dc122affb122bd69_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-rhel8-operator@sha256:d87233df397bf3cdf548db58729cb70a8382c0be952d3391dc122affb122bd69_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:2e0e8c29cff6215ff78fe8a6e38dd4b5575b076cfd0708d3ca633fa94e9d14b1_s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:2e0e8c29cff6215ff78fe8a6e38dd4b5575b076cfd0708d3ca633fa94e9d14b1_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:2e0e8c29cff6215ff78fe8a6e38dd4b5575b076cfd0708d3ca633fa94e9d14b1_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:7fae81ba69dee59bae52bd3c52ea413b6d669c4f932707185d2fa6a090b47139_ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:7fae81ba69dee59bae52bd3c52ea413b6d669c4f932707185d2fa6a090b47139_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:7fae81ba69dee59bae52bd3c52ea413b6d669c4f932707185d2fa6a090b47139_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:8ecbe288abe42ddb0804c0ba487f6c9b7a897c198b91428483bac3b4f292b8c0_amd64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:8ecbe288abe42ddb0804c0ba487f6c9b7a897c198b91428483bac3b4f292b8c0_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:8ecbe288abe42ddb0804c0ba487f6c9b7a897c198b91428483bac3b4f292b8c0_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:fb0f32399df94b6b68d2dd2b67a140cf1881de337d789e5a4d8655b1120760d7_arm64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:fb0f32399df94b6b68d2dd2b67a140cf1881de337d789e5a4d8655b1120760d7_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:fb0f32399df94b6b68d2dd2b67a140cf1881de337d789e5a4d8655b1120760d7_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:88b684a2b8d52fe8f36874eb75225be71f026b3e13b4deba59559a898a9caf24_s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:88b684a2b8d52fe8f36874eb75225be71f026b3e13b4deba59559a898a9caf24_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:88b684a2b8d52fe8f36874eb75225be71f026b3e13b4deba59559a898a9caf24_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:9e6f200692d1ec22c6ed704a3f250558328a0846dddbc95bf7a9aece2fbc7863_ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:9e6f200692d1ec22c6ed704a3f250558328a0846dddbc95bf7a9aece2fbc7863_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:9e6f200692d1ec22c6ed704a3f250558328a0846dddbc95bf7a9aece2fbc7863_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:c124d6a9d0eb1893e06c0254e153baa7785b7a42189bfcf55e2275aa041c6bd3_amd64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:c124d6a9d0eb1893e06c0254e153baa7785b7a42189bfcf55e2275aa041c6bd3_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:c124d6a9d0eb1893e06c0254e153baa7785b7a42189bfcf55e2275aa041c6bd3_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:f900ecae42f593dbdf79d2aef36d20b07f8484938cd04589141a93b3930aa326_arm64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:f900ecae42f593dbdf79d2aef36d20b07f8484938cd04589141a93b3930aa326_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:f900ecae42f593dbdf79d2aef36d20b07f8484938cd04589141a93b3930aa326_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:0f1cc8a81f7bab6205cd359ec7ca4479f3be5d61e5a57461b53ab6d5ba8817ee_arm64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:0f1cc8a81f7bab6205cd359ec7ca4479f3be5d61e5a57461b53ab6d5ba8817ee_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:0f1cc8a81f7bab6205cd359ec7ca4479f3be5d61e5a57461b53ab6d5ba8817ee_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:4f81b02cb771c6f16ad216826271dfb876a57c8f8488c38884573a660c8897bf_s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:4f81b02cb771c6f16ad216826271dfb876a57c8f8488c38884573a660c8897bf_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:4f81b02cb771c6f16ad216826271dfb876a57c8f8488c38884573a660c8897bf_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:840fff0f30c62b107e016da16edd6540aec393af64c30b665c254131584abfaf_ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:840fff0f30c62b107e016da16edd6540aec393af64c30b665c254131584abfaf_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:840fff0f30c62b107e016da16edd6540aec393af64c30b665c254131584abfaf_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:a1ad075ab0cb3709c4078150cf73b6499aef69d2bfd058caca3d80f31a11ac15_amd64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:a1ad075ab0cb3709c4078150cf73b6499aef69d2bfd058caca3d80f31a11ac15_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:a1ad075ab0cb3709c4078150cf73b6499aef69d2bfd058caca3d80f31a11ac15_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:3ccc799b3c9aa6b03af0106f7be42479f068532038c62f02f5f05d510794b91c_s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:3ccc799b3c9aa6b03af0106f7be42479f068532038c62f02f5f05d510794b91c_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:3ccc799b3c9aa6b03af0106f7be42479f068532038c62f02f5f05d510794b91c_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:c6af5b42b9e7f6022b8c0c2fe86dce1f0447ee8f3f8b6526bcd4eab59c5375aa_arm64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:c6af5b42b9e7f6022b8c0c2fe86dce1f0447ee8f3f8b6526bcd4eab59c5375aa_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:c6af5b42b9e7f6022b8c0c2fe86dce1f0447ee8f3f8b6526bcd4eab59c5375aa_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:d1ae1ef0f2d59eb58088762fc3c4eadb745182aad55dab4baf303b65cf276235_amd64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:d1ae1ef0f2d59eb58088762fc3c4eadb745182aad55dab4baf303b65cf276235_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:d1ae1ef0f2d59eb58088762fc3c4eadb745182aad55dab4baf303b65cf276235_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:e40751e972df028ac7f071edfc96fbc709c834541cc39a0895bb0ce0f1472063_ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:e40751e972df028ac7f071edfc96fbc709c834541cc39a0895bb0ce0f1472063_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:e40751e972df028ac7f071edfc96fbc709c834541cc39a0895bb0ce0f1472063_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:0a7542dc8795ab66b578996aec5306ce30eeb84382839cec61e8a8e756969470_ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:0a7542dc8795ab66b578996aec5306ce30eeb84382839cec61e8a8e756969470_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:0a7542dc8795ab66b578996aec5306ce30eeb84382839cec61e8a8e756969470_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:a3381d5a211b98f383555d0aa7cf8a71f58639ddd06bf6ddb8809da230d60f22_amd64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:a3381d5a211b98f383555d0aa7cf8a71f58639ddd06bf6ddb8809da230d60f22_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:a3381d5a211b98f383555d0aa7cf8a71f58639ddd06bf6ddb8809da230d60f22_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:d12242b47bf7007fe3dfbb46e2bc53c383ec6117052588f130e92b25d869a19b_s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:d12242b47bf7007fe3dfbb46e2bc53c383ec6117052588f130e92b25d869a19b_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:d12242b47bf7007fe3dfbb46e2bc53c383ec6117052588f130e92b25d869a19b_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:f844ac2fd64e76202ab846a2e8eff56be0c7ec19a26756c0d063f416b7371cb8_arm64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:f844ac2fd64e76202ab846a2e8eff56be0c7ec19a26756c0d063f416b7371cb8_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:f844ac2fd64e76202ab846a2e8eff56be0c7ec19a26756c0d063f416b7371cb8_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-webhook-rhel8@sha256:526aad7d7e14a5036e5dc43e8f6df1d47e16bc54352ae856e8ff2c46bb7e5987_ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-webhook-rhel8@sha256:526aad7d7e14a5036e5dc43e8f6df1d47e16bc54352ae856e8ff2c46bb7e5987_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-webhook-rhel8@sha256:526aad7d7e14a5036e5dc43e8f6df1d47e16bc54352ae856e8ff2c46bb7e5987_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-webhook-rhel8@sha256:6b329beee4828e7148c497790d146ec559ff057f50bc1d31aa15c892e2dd1281_amd64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-webhook-rhel8@sha256:6b329beee4828e7148c497790d146ec559ff057f50bc1d31aa15c892e2dd1281_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-webhook-rhel8@sha256:6b329beee4828e7148c497790d146ec559ff057f50bc1d31aa15c892e2dd1281_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-webhook-rhel8@sha256:71339ac4fdd95eef529b245d2dc86f8cb5601ef321340003c4b6121247418884_s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-webhook-rhel8@sha256:71339ac4fdd95eef529b245d2dc86f8cb5601ef321340003c4b6121247418884_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-webhook-rhel8@sha256:71339ac4fdd95eef529b245d2dc86f8cb5601ef321340003c4b6121247418884_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-webhook-rhel8@sha256:eaa581618cde7526e2c2356a12cd57010c44fd41a7003ffc45c5bd7847278ab6_arm64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-webhook-rhel8@sha256:eaa581618cde7526e2c2356a12cd57010c44fd41a7003ffc45c5bd7847278ab6_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-webhook-rhel8@sha256:eaa581618cde7526e2c2356a12cd57010c44fd41a7003ffc45c5bd7847278ab6_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:0b6efd46e96a6e2ff0d0b0a10be27719737ff74beaa7106f4f01817bdbb7ae27_arm64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:0b6efd46e96a6e2ff0d0b0a10be27719737ff74beaa7106f4f01817bdbb7ae27_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:0b6efd46e96a6e2ff0d0b0a10be27719737ff74beaa7106f4f01817bdbb7ae27_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:3a9e28cec87f9f6086c8c096832eb3f545d2f449f9296db3edf0a2332314f5df_s390x as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:3a9e28cec87f9f6086c8c096832eb3f545d2f449f9296db3edf0a2332314f5df_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:3a9e28cec87f9f6086c8c096832eb3f545d2f449f9296db3edf0a2332314f5df_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:6de98fe9c976638bfc45555620689234b056a0af1d6894ff560762e6bd6d0bff_amd64 as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:6de98fe9c976638bfc45555620689234b056a0af1d6894ff560762e6bd6d0bff_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:6de98fe9c976638bfc45555620689234b056a0af1d6894ff560762e6bd6d0bff_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:770ee8338d6d79896772dc0002688d09955fad7bb27fdad1e91bd531b295ed00_ppc64le as a component of OpenShift Pipelines version 1.11 for RHEL 8", + "product_id": "8Base-PIPELINES-1.11:openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:770ee8338d6d79896772dc0002688d09955fad7bb27fdad1e91bd531b295ed00_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:770ee8338d6d79896772dc0002688d09955fad7bb27fdad1e91bd531b295ed00_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines-client-0:1.12.1-11260.el8.aarch64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines-client-0:1.12.1-11260.el8.aarch64" + }, + "product_reference": "openshift-pipelines-client-0:1.12.1-11260.el8.aarch64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines-client-0:1.12.1-11260.el8.ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines-client-0:1.12.1-11260.el8.ppc64le" + }, + "product_reference": "openshift-pipelines-client-0:1.12.1-11260.el8.ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines-client-0:1.12.1-11260.el8.s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines-client-0:1.12.1-11260.el8.s390x" + }, + "product_reference": "openshift-pipelines-client-0:1.12.1-11260.el8.s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines-client-0:1.12.1-11260.el8.src as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines-client-0:1.12.1-11260.el8.src" + }, + "product_reference": "openshift-pipelines-client-0:1.12.1-11260.el8.src", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines-client-0:1.12.1-11260.el8.x86_64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines-client-0:1.12.1-11260.el8.x86_64" + }, + "product_reference": "openshift-pipelines-client-0:1.12.1-11260.el8.x86_64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines-client-redistributable-0:1.12.1-11260.el8.aarch64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines-client-redistributable-0:1.12.1-11260.el8.aarch64" + }, + "product_reference": "openshift-pipelines-client-redistributable-0:1.12.1-11260.el8.aarch64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines-client-redistributable-0:1.12.1-11260.el8.ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines-client-redistributable-0:1.12.1-11260.el8.ppc64le" + }, + "product_reference": "openshift-pipelines-client-redistributable-0:1.12.1-11260.el8.ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines-client-redistributable-0:1.12.1-11260.el8.s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines-client-redistributable-0:1.12.1-11260.el8.s390x" + }, + "product_reference": "openshift-pipelines-client-redistributable-0:1.12.1-11260.el8.s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines-client-redistributable-0:1.12.1-11260.el8.x86_64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines-client-redistributable-0:1.12.1-11260.el8.x86_64" + }, + "product_reference": "openshift-pipelines-client-redistributable-0:1.12.1-11260.el8.x86_64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:116359e30bc6aa61773d6963383760a54d65fbd8d4e519eec4509b69852e95ea_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-chains-controller-rhel8@sha256:116359e30bc6aa61773d6963383760a54d65fbd8d4e519eec4509b69852e95ea_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:116359e30bc6aa61773d6963383760a54d65fbd8d4e519eec4509b69852e95ea_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:2ea77b758529e064dae4d1bcd5b326138f86735e216d1306a4e2c7cac00f3134_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-chains-controller-rhel8@sha256:2ea77b758529e064dae4d1bcd5b326138f86735e216d1306a4e2c7cac00f3134_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:2ea77b758529e064dae4d1bcd5b326138f86735e216d1306a4e2c7cac00f3134_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:4318a47d134f0fbcac0fe68cde31efc05e7aeb8a197cfdd13a58b848aa7d227f_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-chains-controller-rhel8@sha256:4318a47d134f0fbcac0fe68cde31efc05e7aeb8a197cfdd13a58b848aa7d227f_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:4318a47d134f0fbcac0fe68cde31efc05e7aeb8a197cfdd13a58b848aa7d227f_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:797342f67fd5fa305ccb10b07085e10c65ad58bf6c95c94af139ca44c537cb17_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-chains-controller-rhel8@sha256:797342f67fd5fa305ccb10b07085e10c65ad58bf6c95c94af139ca44c537cb17_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-chains-controller-rhel8@sha256:797342f67fd5fa305ccb10b07085e10c65ad58bf6c95c94af139ca44c537cb17_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:0a1cc1b6df16a7b94075369909bba6aa136028ead28cc147ca2cba04875a7868_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:0a1cc1b6df16a7b94075369909bba6aa136028ead28cc147ca2cba04875a7868_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:0a1cc1b6df16a7b94075369909bba6aa136028ead28cc147ca2cba04875a7868_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:1aa2ec69df67db06e4240b27f9509a367ab030df653629a6537508e22a6576e5_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:1aa2ec69df67db06e4240b27f9509a367ab030df653629a6537508e22a6576e5_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:1aa2ec69df67db06e4240b27f9509a367ab030df653629a6537508e22a6576e5_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:28262e80e10cb265b53d79e85244febb7f3b484be32d4ce7b745bbd461e2d826_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:28262e80e10cb265b53d79e85244febb7f3b484be32d4ce7b745bbd461e2d826_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:28262e80e10cb265b53d79e85244febb7f3b484be32d4ce7b745bbd461e2d826_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:3d3f6bb7ffa163cffb3cbaebb83f40838a53b3f12a4a0f150ce7e675707c5952_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:3d3f6bb7ffa163cffb3cbaebb83f40838a53b3f12a4a0f150ce7e675707c5952_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-cli-tkn-rhel8@sha256:3d3f6bb7ffa163cffb3cbaebb83f40838a53b3f12a4a0f150ce7e675707c5952_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-controller-rhel8@sha256:1575c6566d0eef999fa2fb98d32213b5f7c330a2b994af4fbd50d5f7351e2c03_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-controller-rhel8@sha256:1575c6566d0eef999fa2fb98d32213b5f7c330a2b994af4fbd50d5f7351e2c03_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-controller-rhel8@sha256:1575c6566d0eef999fa2fb98d32213b5f7c330a2b994af4fbd50d5f7351e2c03_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-controller-rhel8@sha256:287e63d390d671f26744ce8777bcc32462263b01b498dd227b83532462714c29_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-controller-rhel8@sha256:287e63d390d671f26744ce8777bcc32462263b01b498dd227b83532462714c29_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-controller-rhel8@sha256:287e63d390d671f26744ce8777bcc32462263b01b498dd227b83532462714c29_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-controller-rhel8@sha256:61e2e3822dc0709407ee493c5cb7feeb65d0ae797faead9513bde74eb4f39be1_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-controller-rhel8@sha256:61e2e3822dc0709407ee493c5cb7feeb65d0ae797faead9513bde74eb4f39be1_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-controller-rhel8@sha256:61e2e3822dc0709407ee493c5cb7feeb65d0ae797faead9513bde74eb4f39be1_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-controller-rhel8@sha256:dff11111aa116706c4805c8480f5a12058ed59b2776858b19c0e01168d01cc14_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-controller-rhel8@sha256:dff11111aa116706c4805c8480f5a12058ed59b2776858b19c0e01168d01cc14_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-controller-rhel8@sha256:dff11111aa116706c4805c8480f5a12058ed59b2776858b19c0e01168d01cc14_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:0f40a29b561a9993cbfec7cd708b074e589954af0a428e52c20c44ff210f986b_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-entrypoint-rhel8@sha256:0f40a29b561a9993cbfec7cd708b074e589954af0a428e52c20c44ff210f986b_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:0f40a29b561a9993cbfec7cd708b074e589954af0a428e52c20c44ff210f986b_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:669b7e4241129e9336c23da8fd8ebeed5464d65945ee284e7131d48da99890b4_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-entrypoint-rhel8@sha256:669b7e4241129e9336c23da8fd8ebeed5464d65945ee284e7131d48da99890b4_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:669b7e4241129e9336c23da8fd8ebeed5464d65945ee284e7131d48da99890b4_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:b2d8abd9ad6bfafa84ece67b548aa2942ba1779ce1fda438279ac63b60896776_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-entrypoint-rhel8@sha256:b2d8abd9ad6bfafa84ece67b548aa2942ba1779ce1fda438279ac63b60896776_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:b2d8abd9ad6bfafa84ece67b548aa2942ba1779ce1fda438279ac63b60896776_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:e886d5ebad7ac27623069fe464c908a26b1beeaadc8ec57f6612e2b508846ead_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-entrypoint-rhel8@sha256:e886d5ebad7ac27623069fe464c908a26b1beeaadc8ec57f6612e2b508846ead_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-entrypoint-rhel8@sha256:e886d5ebad7ac27623069fe464c908a26b1beeaadc8ec57f6612e2b508846ead_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-events-rhel8@sha256:3e0d44dc4552aa6612d32646a902d5752dc057415ff27c6929b2aa49bffbef4e_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-events-rhel8@sha256:3e0d44dc4552aa6612d32646a902d5752dc057415ff27c6929b2aa49bffbef4e_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-events-rhel8@sha256:3e0d44dc4552aa6612d32646a902d5752dc057415ff27c6929b2aa49bffbef4e_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-events-rhel8@sha256:7e82a4f854a86bc651071c87627d21af96e626ed33337b2578fe57fee89468c2_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-events-rhel8@sha256:7e82a4f854a86bc651071c87627d21af96e626ed33337b2578fe57fee89468c2_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-events-rhel8@sha256:7e82a4f854a86bc651071c87627d21af96e626ed33337b2578fe57fee89468c2_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-events-rhel8@sha256:8b4611e27d99bde9fb579a1bc8721ab6d52f17bfb81f2454434c5ed19a98a2ea_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-events-rhel8@sha256:8b4611e27d99bde9fb579a1bc8721ab6d52f17bfb81f2454434c5ed19a98a2ea_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-events-rhel8@sha256:8b4611e27d99bde9fb579a1bc8721ab6d52f17bfb81f2454434c5ed19a98a2ea_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-events-rhel8@sha256:8de8684a69b587d1f065d6078e81a3e5341ff21c485ceaac6383aa8c517fe0b3_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-events-rhel8@sha256:8de8684a69b587d1f065d6078e81a3e5341ff21c485ceaac6383aa8c517fe0b3_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-events-rhel8@sha256:8de8684a69b587d1f065d6078e81a3e5341ff21c485ceaac6383aa8c517fe0b3_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-git-init-rhel8@sha256:07586965cffa016dafc2847be858c8587abff1fedbf2b2df748cd58514e3ef4b_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-git-init-rhel8@sha256:07586965cffa016dafc2847be858c8587abff1fedbf2b2df748cd58514e3ef4b_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-git-init-rhel8@sha256:07586965cffa016dafc2847be858c8587abff1fedbf2b2df748cd58514e3ef4b_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-git-init-rhel8@sha256:38af85bccd58ac63b36c8e9a2ef3b06f26d6a4759827f4e5cbeb1b659a820bde_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-git-init-rhel8@sha256:38af85bccd58ac63b36c8e9a2ef3b06f26d6a4759827f4e5cbeb1b659a820bde_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-git-init-rhel8@sha256:38af85bccd58ac63b36c8e9a2ef3b06f26d6a4759827f4e5cbeb1b659a820bde_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-git-init-rhel8@sha256:9a78ad10c41dc3a256b8fcef61effd6789ca7725c33fb49f92f8dd39bc82173b_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-git-init-rhel8@sha256:9a78ad10c41dc3a256b8fcef61effd6789ca7725c33fb49f92f8dd39bc82173b_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-git-init-rhel8@sha256:9a78ad10c41dc3a256b8fcef61effd6789ca7725c33fb49f92f8dd39bc82173b_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-git-init-rhel8@sha256:f9f11063dce92b9dde7616b7fe994d91e19d3b4cc50aa36d003fb658c2efaffd_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-git-init-rhel8@sha256:f9f11063dce92b9dde7616b7fe994d91e19d3b4cc50aa36d003fb658c2efaffd_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-git-init-rhel8@sha256:f9f11063dce92b9dde7616b7fe994d91e19d3b4cc50aa36d003fb658c2efaffd_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:346f87d202160ba458f93207b0c66bfef3b8203d9aa48c47677c64a9ff9467d8_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-hub-api-rhel8@sha256:346f87d202160ba458f93207b0c66bfef3b8203d9aa48c47677c64a9ff9467d8_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:346f87d202160ba458f93207b0c66bfef3b8203d9aa48c47677c64a9ff9467d8_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:38ddec97f08a0bc1ff1e463a571ab62489dc938ed16ad1c3dd2c4b41139a8a90_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-hub-api-rhel8@sha256:38ddec97f08a0bc1ff1e463a571ab62489dc938ed16ad1c3dd2c4b41139a8a90_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:38ddec97f08a0bc1ff1e463a571ab62489dc938ed16ad1c3dd2c4b41139a8a90_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:5790386713432c09382d7acbbaf603a95c7098fb2f6af9f88822ce50c5af0760_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-hub-api-rhel8@sha256:5790386713432c09382d7acbbaf603a95c7098fb2f6af9f88822ce50c5af0760_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:5790386713432c09382d7acbbaf603a95c7098fb2f6af9f88822ce50c5af0760_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:d023f432d3bce3f5706b1b909ea8a8d36a4c370f0fcf50ee9e648b7f4fb095bc_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-hub-api-rhel8@sha256:d023f432d3bce3f5706b1b909ea8a8d36a4c370f0fcf50ee9e648b7f4fb095bc_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-hub-api-rhel8@sha256:d023f432d3bce3f5706b1b909ea8a8d36a4c370f0fcf50ee9e648b7f4fb095bc_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:2beb349996a33481911d905a899be11b59d5cd4c3a16f7c37f0fc67eb1ae090b_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:2beb349996a33481911d905a899be11b59d5cd4c3a16f7c37f0fc67eb1ae090b_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:2beb349996a33481911d905a899be11b59d5cd4c3a16f7c37f0fc67eb1ae090b_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:4a33269cee36726cf553107faaff19fa1115cd35e4965a5a698f721a0631729f_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:4a33269cee36726cf553107faaff19fa1115cd35e4965a5a698f721a0631729f_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:4a33269cee36726cf553107faaff19fa1115cd35e4965a5a698f721a0631729f_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:4ede517f844b45e55a4a8487c754bbb9a2946a34573e844a12a9dd2f053f684e_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:4ede517f844b45e55a4a8487c754bbb9a2946a34573e844a12a9dd2f053f684e_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:4ede517f844b45e55a4a8487c754bbb9a2946a34573e844a12a9dd2f053f684e_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:e6035115e3a393125d5ca8ac648a88a662824e24a97fc051f72a80849756a9d2_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:e6035115e3a393125d5ca8ac648a88a662824e24a97fc051f72a80849756a9d2_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-hub-db-migration-rhel8@sha256:e6035115e3a393125d5ca8ac648a88a662824e24a97fc051f72a80849756a9d2_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:0850cb1af40ab81ba7b9e5bbd569621694aabd6b28e3ba6160d270308e5fe6be_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-hub-ui-rhel8@sha256:0850cb1af40ab81ba7b9e5bbd569621694aabd6b28e3ba6160d270308e5fe6be_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:0850cb1af40ab81ba7b9e5bbd569621694aabd6b28e3ba6160d270308e5fe6be_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:cf39fd2b6d5e209781c2bb329f907c76b2263b45d24af84f538a2721d4610d56_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-hub-ui-rhel8@sha256:cf39fd2b6d5e209781c2bb329f907c76b2263b45d24af84f538a2721d4610d56_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:cf39fd2b6d5e209781c2bb329f907c76b2263b45d24af84f538a2721d4610d56_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:dd0fb9390ecb2e23f61b57bfe3fb896596b57a5cda963250cdbf0d145a536a86_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-hub-ui-rhel8@sha256:dd0fb9390ecb2e23f61b57bfe3fb896596b57a5cda963250cdbf0d145a536a86_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:dd0fb9390ecb2e23f61b57bfe3fb896596b57a5cda963250cdbf0d145a536a86_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:e8922f4d8c9d92d3a9aaf7e62ad135c07d5e908be6ee30ca04fc29da897dfea0_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-hub-ui-rhel8@sha256:e8922f4d8c9d92d3a9aaf7e62ad135c07d5e908be6ee30ca04fc29da897dfea0_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-hub-ui-rhel8@sha256:e8922f4d8c9d92d3a9aaf7e62ad135c07d5e908be6ee30ca04fc29da897dfea0_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-nop-rhel8@sha256:291d7da532c7d33b345bb801f3c38f80be5cf35b99c9be47e0666be69a3244da_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-nop-rhel8@sha256:291d7da532c7d33b345bb801f3c38f80be5cf35b99c9be47e0666be69a3244da_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-nop-rhel8@sha256:291d7da532c7d33b345bb801f3c38f80be5cf35b99c9be47e0666be69a3244da_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-nop-rhel8@sha256:487cc30c2c670aba327b729db1299f483e047b607db676b5a3ee706849831bda_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-nop-rhel8@sha256:487cc30c2c670aba327b729db1299f483e047b607db676b5a3ee706849831bda_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-nop-rhel8@sha256:487cc30c2c670aba327b729db1299f483e047b607db676b5a3ee706849831bda_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-nop-rhel8@sha256:62eaf79892ebf6f8873d89f511b87d398f8f742b4f139f959a2e3f7ba99cc280_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-nop-rhel8@sha256:62eaf79892ebf6f8873d89f511b87d398f8f742b4f139f959a2e3f7ba99cc280_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-nop-rhel8@sha256:62eaf79892ebf6f8873d89f511b87d398f8f742b4f139f959a2e3f7ba99cc280_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-nop-rhel8@sha256:d38def1b0a62fdd49f40d785e6efc6f1ee73b6e0bdb0b98f98dd73696498488d_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-nop-rhel8@sha256:d38def1b0a62fdd49f40d785e6efc6f1ee73b6e0bdb0b98f98dd73696498488d_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-nop-rhel8@sha256:d38def1b0a62fdd49f40d785e6efc6f1ee73b6e0bdb0b98f98dd73696498488d_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-operator-bundle@sha256:115e99b0799fc6e0d3a14e6f1656e922111444fc23f08be11bedbec83dc86cc3_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-operator-bundle@sha256:115e99b0799fc6e0d3a14e6f1656e922111444fc23f08be11bedbec83dc86cc3_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-operator-bundle@sha256:115e99b0799fc6e0d3a14e6f1656e922111444fc23f08be11bedbec83dc86cc3_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-operator-bundle@sha256:474120a685ba41e91084a1631621418cd57c65f987981436e4e3bff31d5f402f_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-operator-bundle@sha256:474120a685ba41e91084a1631621418cd57c65f987981436e4e3bff31d5f402f_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-operator-bundle@sha256:474120a685ba41e91084a1631621418cd57c65f987981436e4e3bff31d5f402f_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-operator-bundle@sha256:91517f7e8fe93b57650d307a7e78b82a6f70107460bb667dd7b850a6cdd6deb1_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-operator-bundle@sha256:91517f7e8fe93b57650d307a7e78b82a6f70107460bb667dd7b850a6cdd6deb1_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-operator-bundle@sha256:91517f7e8fe93b57650d307a7e78b82a6f70107460bb667dd7b850a6cdd6deb1_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-operator-bundle@sha256:d2909feede4924df75047a0c0c0a836b8b6efe4e0da083d1878fb2e7e0c23507_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-operator-bundle@sha256:d2909feede4924df75047a0c0c0a836b8b6efe4e0da083d1878fb2e7e0c23507_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-operator-bundle@sha256:d2909feede4924df75047a0c0c0a836b8b6efe4e0da083d1878fb2e7e0c23507_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:2f158c95e2018b79a8dbe9b5164bce3319182b84cef8859697e95b9aa1012c1a_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:2f158c95e2018b79a8dbe9b5164bce3319182b84cef8859697e95b9aa1012c1a_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:2f158c95e2018b79a8dbe9b5164bce3319182b84cef8859697e95b9aa1012c1a_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:410eb6fa5b37835acaf5cea259e0a70163a4be87f54ba045ad24b5e2b7bd010e_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:410eb6fa5b37835acaf5cea259e0a70163a4be87f54ba045ad24b5e2b7bd010e_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:410eb6fa5b37835acaf5cea259e0a70163a4be87f54ba045ad24b5e2b7bd010e_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:f4dfe1212cb6acdd76e883ef917c00e058f553ab04e2ed66912c9723bbcdfc59_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:f4dfe1212cb6acdd76e883ef917c00e058f553ab04e2ed66912c9723bbcdfc59_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:f4dfe1212cb6acdd76e883ef917c00e058f553ab04e2ed66912c9723bbcdfc59_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:f5b391696522945fa00a55977f2f7727452549309d923bc2a7e2608bcefdb7c9_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:f5b391696522945fa00a55977f2f7727452549309d923bc2a7e2608bcefdb7c9_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-operator-proxy-rhel8@sha256:f5b391696522945fa00a55977f2f7727452549309d923bc2a7e2608bcefdb7c9_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:031e149e550685a213fef705dc71f0f830a0fd4be42afc70f6a89d8163acbcad_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:031e149e550685a213fef705dc71f0f830a0fd4be42afc70f6a89d8163acbcad_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:031e149e550685a213fef705dc71f0f830a0fd4be42afc70f6a89d8163acbcad_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:0ce510deaecb5fda9bea248cde60c5743d1e4094087e58f9a72de1b2597ab26a_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:0ce510deaecb5fda9bea248cde60c5743d1e4094087e58f9a72de1b2597ab26a_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:0ce510deaecb5fda9bea248cde60c5743d1e4094087e58f9a72de1b2597ab26a_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:6e926a41e998366d20ea5562f8b5a3662815907e0a066e875859947defc5b119_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:6e926a41e998366d20ea5562f8b5a3662815907e0a066e875859947defc5b119_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:6e926a41e998366d20ea5562f8b5a3662815907e0a066e875859947defc5b119_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:c4e2b44ae685e9cde43dcb8964337c81acf0e519f205d0366c8a0fb12cce075b_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:c4e2b44ae685e9cde43dcb8964337c81acf0e519f205d0366c8a0fb12cce075b_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-operator-webhook-rhel8@sha256:c4e2b44ae685e9cde43dcb8964337c81acf0e519f205d0366c8a0fb12cce075b_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:0aa1ea10b71db84fb46127d81891cebb98fef546c45c276fefda79133992eaa3_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:0aa1ea10b71db84fb46127d81891cebb98fef546c45c276fefda79133992eaa3_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:0aa1ea10b71db84fb46127d81891cebb98fef546c45c276fefda79133992eaa3_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:4fc979e5d559ca2c88999f9e0289abbfd7abff4b17f6001349aacbb8db4765a4_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:4fc979e5d559ca2c88999f9e0289abbfd7abff4b17f6001349aacbb8db4765a4_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:4fc979e5d559ca2c88999f9e0289abbfd7abff4b17f6001349aacbb8db4765a4_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:5384a4a6adc017b2c522732e87b795349d0879d7d5ea2b7d11191b416701778b_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:5384a4a6adc017b2c522732e87b795349d0879d7d5ea2b7d11191b416701778b_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:5384a4a6adc017b2c522732e87b795349d0879d7d5ea2b7d11191b416701778b_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:6049abe50510fb913fecb8828d6dd054a0ad2e9382920c78bc70c4e1030d5b50_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:6049abe50510fb913fecb8828d6dd054a0ad2e9382920c78bc70c4e1030d5b50_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-pipelines-as-code-rhel8@sha256:6049abe50510fb913fecb8828d6dd054a0ad2e9382920c78bc70c4e1030d5b50_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:6777f3a06a187632435fe720a144dec4f7ed44f326f69d409ba41302fe145eb7_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-resolvers-rhel8@sha256:6777f3a06a187632435fe720a144dec4f7ed44f326f69d409ba41302fe145eb7_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:6777f3a06a187632435fe720a144dec4f7ed44f326f69d409ba41302fe145eb7_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:c5d326316813a458955aa99fe2db671797bfc9901089b053db657ec4c1b0a50e_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-resolvers-rhel8@sha256:c5d326316813a458955aa99fe2db671797bfc9901089b053db657ec4c1b0a50e_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:c5d326316813a458955aa99fe2db671797bfc9901089b053db657ec4c1b0a50e_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:e8509f0ed5a4230067a956c148ffd2cf1ea1d4a534bb76669f3b4488502ee0e1_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-resolvers-rhel8@sha256:e8509f0ed5a4230067a956c148ffd2cf1ea1d4a534bb76669f3b4488502ee0e1_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:e8509f0ed5a4230067a956c148ffd2cf1ea1d4a534bb76669f3b4488502ee0e1_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:f127289c8505ac6d184e5c4dd16d7ed4d450a7fd7a90e19aebe3ad4845d432b9_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-resolvers-rhel8@sha256:f127289c8505ac6d184e5c4dd16d7ed4d450a7fd7a90e19aebe3ad4845d432b9_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-resolvers-rhel8@sha256:f127289c8505ac6d184e5c4dd16d7ed4d450a7fd7a90e19aebe3ad4845d432b9_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-results-api-rhel8@sha256:601d3c134545e442d69ef465c86c56147873f7e5ee55f75690a21814e1c9d24b_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-results-api-rhel8@sha256:601d3c134545e442d69ef465c86c56147873f7e5ee55f75690a21814e1c9d24b_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-results-api-rhel8@sha256:601d3c134545e442d69ef465c86c56147873f7e5ee55f75690a21814e1c9d24b_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-results-api-rhel8@sha256:7a4c0a4be506ea572c4e92dcf982e512b457ac407e50f6e1918222e74e547998_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-results-api-rhel8@sha256:7a4c0a4be506ea572c4e92dcf982e512b457ac407e50f6e1918222e74e547998_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-results-api-rhel8@sha256:7a4c0a4be506ea572c4e92dcf982e512b457ac407e50f6e1918222e74e547998_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-results-api-rhel8@sha256:8cf80131852b0286a1c37951aceeed4672c2b2ec79404e9d24ba6226aaf6e3d3_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-results-api-rhel8@sha256:8cf80131852b0286a1c37951aceeed4672c2b2ec79404e9d24ba6226aaf6e3d3_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-results-api-rhel8@sha256:8cf80131852b0286a1c37951aceeed4672c2b2ec79404e9d24ba6226aaf6e3d3_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-results-api-rhel8@sha256:da7c94fef6c13de426492f80bd0e6ffaeefbc7243a52c25a0b50b13409f27ca3_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-results-api-rhel8@sha256:da7c94fef6c13de426492f80bd0e6ffaeefbc7243a52c25a0b50b13409f27ca3_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-results-api-rhel8@sha256:da7c94fef6c13de426492f80bd0e6ffaeefbc7243a52c25a0b50b13409f27ca3_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:13dc44a684a981c8443054577ba974e16cbf5c2250cf299b084363ff62cca4bf_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-results-watcher-rhel8@sha256:13dc44a684a981c8443054577ba974e16cbf5c2250cf299b084363ff62cca4bf_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:13dc44a684a981c8443054577ba974e16cbf5c2250cf299b084363ff62cca4bf_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:364bd3b69dcd4e362daca5b28a2f663537db35491566600683b42baf65ae0a3b_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-results-watcher-rhel8@sha256:364bd3b69dcd4e362daca5b28a2f663537db35491566600683b42baf65ae0a3b_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:364bd3b69dcd4e362daca5b28a2f663537db35491566600683b42baf65ae0a3b_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:919ce4d550a7c801c6770424fbc20af457284853b897e4d93026a2fa451ad985_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-results-watcher-rhel8@sha256:919ce4d550a7c801c6770424fbc20af457284853b897e4d93026a2fa451ad985_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:919ce4d550a7c801c6770424fbc20af457284853b897e4d93026a2fa451ad985_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:b79cad87c2c29dfaa06921389a7f844a129f7ca565fc04d58db3a17ee6aed575_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-results-watcher-rhel8@sha256:b79cad87c2c29dfaa06921389a7f844a129f7ca565fc04d58db3a17ee6aed575_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-results-watcher-rhel8@sha256:b79cad87c2c29dfaa06921389a7f844a129f7ca565fc04d58db3a17ee6aed575_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-rhel8-operator@sha256:48403dc5bebb446bf2678fe5015282e30d1f9962d540395b0c4b9485367274ed_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-rhel8-operator@sha256:48403dc5bebb446bf2678fe5015282e30d1f9962d540395b0c4b9485367274ed_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-rhel8-operator@sha256:48403dc5bebb446bf2678fe5015282e30d1f9962d540395b0c4b9485367274ed_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-rhel8-operator@sha256:6431d010afbeecaa84dd29a5df6271ee886aed8df8f702d55b066858f4fa5510_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-rhel8-operator@sha256:6431d010afbeecaa84dd29a5df6271ee886aed8df8f702d55b066858f4fa5510_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-rhel8-operator@sha256:6431d010afbeecaa84dd29a5df6271ee886aed8df8f702d55b066858f4fa5510_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-rhel8-operator@sha256:9cb6891d5ed9bbe719b927b8c5bb1156fa37cf73cb539d2aedee7685dd95b8fa_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-rhel8-operator@sha256:9cb6891d5ed9bbe719b927b8c5bb1156fa37cf73cb539d2aedee7685dd95b8fa_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-rhel8-operator@sha256:9cb6891d5ed9bbe719b927b8c5bb1156fa37cf73cb539d2aedee7685dd95b8fa_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-rhel8-operator@sha256:f4838dc71f1c62782a67f4ae35e3a4cc72d11b10644491e461752140164f2570_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-rhel8-operator@sha256:f4838dc71f1c62782a67f4ae35e3a4cc72d11b10644491e461752140164f2570_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-rhel8-operator@sha256:f4838dc71f1c62782a67f4ae35e3a4cc72d11b10644491e461752140164f2570_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:0771070fdd2004d189c58feb9a0c62debed68985553570f1cc14d621f974e5cf_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:0771070fdd2004d189c58feb9a0c62debed68985553570f1cc14d621f974e5cf_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:0771070fdd2004d189c58feb9a0c62debed68985553570f1cc14d621f974e5cf_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:6ae9e91827c9c27aa908c07c956f233d6faaccd492d0966eee36ba086190c7d7_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:6ae9e91827c9c27aa908c07c956f233d6faaccd492d0966eee36ba086190c7d7_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:6ae9e91827c9c27aa908c07c956f233d6faaccd492d0966eee36ba086190c7d7_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:a9259b212e388a3648a5236a8597262e732a47c26b2040581dbb8f101dc226b4_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:a9259b212e388a3648a5236a8597262e732a47c26b2040581dbb8f101dc226b4_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:a9259b212e388a3648a5236a8597262e732a47c26b2040581dbb8f101dc226b4_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:c986e1df834c8862a80390f8a605647d3a6f50e5fc1a13c6d92d2a89477f057e_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:c986e1df834c8862a80390f8a605647d3a6f50e5fc1a13c6d92d2a89477f057e_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-serve-tkn-cli-rhel8@sha256:c986e1df834c8862a80390f8a605647d3a6f50e5fc1a13c6d92d2a89477f057e_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:3f199873cd481ff2a4e57f42c4e2e5831a6d586ac2f784e7376fae437ea7dfa8_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:3f199873cd481ff2a4e57f42c4e2e5831a6d586ac2f784e7376fae437ea7dfa8_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:3f199873cd481ff2a4e57f42c4e2e5831a6d586ac2f784e7376fae437ea7dfa8_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:70eabeabda582b788dc35b38c56e346f1eb1e03e802122f3dbebc03a3fe10b48_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:70eabeabda582b788dc35b38c56e346f1eb1e03e802122f3dbebc03a3fe10b48_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:70eabeabda582b788dc35b38c56e346f1eb1e03e802122f3dbebc03a3fe10b48_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:9c5aed4e686d4a61a8dbc268117a54386c937e6d559c95cf9ac775e73a5da470_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:9c5aed4e686d4a61a8dbc268117a54386c937e6d559c95cf9ac775e73a5da470_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:9c5aed4e686d4a61a8dbc268117a54386c937e6d559c95cf9ac775e73a5da470_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:ccba683724b61543d5d553aac65198f2d522f202d26a7950f54033099946ad2d_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:ccba683724b61543d5d553aac65198f2d522f202d26a7950f54033099946ad2d_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-controller-rhel8@sha256:ccba683724b61543d5d553aac65198f2d522f202d26a7950f54033099946ad2d_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:2dfdff7382bd8f605eae8be7a50d8c26bdb7288ad1872714cb6e699d6825a571_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:2dfdff7382bd8f605eae8be7a50d8c26bdb7288ad1872714cb6e699d6825a571_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:2dfdff7382bd8f605eae8be7a50d8c26bdb7288ad1872714cb6e699d6825a571_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:5627436ea299325eb23bfdf59eaad9b5278432a421746bfc2b790223723712c7_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:5627436ea299325eb23bfdf59eaad9b5278432a421746bfc2b790223723712c7_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:5627436ea299325eb23bfdf59eaad9b5278432a421746bfc2b790223723712c7_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:939d34be2719f922c797937f83c94a3f42c013766eb2e4cf4df9d7afc1d33993_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:939d34be2719f922c797937f83c94a3f42c013766eb2e4cf4df9d7afc1d33993_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:939d34be2719f922c797937f83c94a3f42c013766eb2e4cf4df9d7afc1d33993_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:e61d5775a496c35e97b5245bd4ad11ee67ecb0d1e65e2d155b51723d66ff2588_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:e61d5775a496c35e97b5245bd4ad11ee67ecb0d1e65e2d155b51723d66ff2588_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-core-interceptors-rhel8@sha256:e61d5775a496c35e97b5245bd4ad11ee67ecb0d1e65e2d155b51723d66ff2588_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:845db9b34b2ceb0a6a126796aba0f0368e6b028b0e472a278dec4626a2d07365_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:845db9b34b2ceb0a6a126796aba0f0368e6b028b0e472a278dec4626a2d07365_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:845db9b34b2ceb0a6a126796aba0f0368e6b028b0e472a278dec4626a2d07365_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:a7f5864d2be8ed24e4e1edd517b9ba60a7f385aa556841dc4f1f19a9e37e8f69_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:a7f5864d2be8ed24e4e1edd517b9ba60a7f385aa556841dc4f1f19a9e37e8f69_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:a7f5864d2be8ed24e4e1edd517b9ba60a7f385aa556841dc4f1f19a9e37e8f69_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:a8d7b2773ba0936d6ee1ddc8725771d113893195c1a3601464a72232b15207e2_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:a8d7b2773ba0936d6ee1ddc8725771d113893195c1a3601464a72232b15207e2_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:a8d7b2773ba0936d6ee1ddc8725771d113893195c1a3601464a72232b15207e2_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:e75a24593e79a36d593ec3818573875898561b327f74ee96fc1dd5124f9f7a19_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:e75a24593e79a36d593ec3818573875898561b327f74ee96fc1dd5124f9f7a19_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-eventlistenersink-rhel8@sha256:e75a24593e79a36d593ec3818573875898561b327f74ee96fc1dd5124f9f7a19_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:8affee75c32087f61e1ecbe77ebd08269aa36d7ceaf5fb0ae1e9982f2488c39a_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:8affee75c32087f61e1ecbe77ebd08269aa36d7ceaf5fb0ae1e9982f2488c39a_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:8affee75c32087f61e1ecbe77ebd08269aa36d7ceaf5fb0ae1e9982f2488c39a_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:993b6cbb4990ee9355ce505aac2882a72481fa6a8c1bdb2114bd435167ae5fb3_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:993b6cbb4990ee9355ce505aac2882a72481fa6a8c1bdb2114bd435167ae5fb3_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:993b6cbb4990ee9355ce505aac2882a72481fa6a8c1bdb2114bd435167ae5fb3_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:ba3a8d4f2571f0c55391100c6616ab3d3c86a82a82bf82119a1714b61194517c_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:ba3a8d4f2571f0c55391100c6616ab3d3c86a82a82bf82119a1714b61194517c_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:ba3a8d4f2571f0c55391100c6616ab3d3c86a82a82bf82119a1714b61194517c_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:d99348b1b2ad44ee54043300389e534c54e85c7d3515148cccfc03abdef9ce00_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:d99348b1b2ad44ee54043300389e534c54e85c7d3515148cccfc03abdef9ce00_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-triggers-webhook-rhel8@sha256:d99348b1b2ad44ee54043300389e534c54e85c7d3515148cccfc03abdef9ce00_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-webhook-rhel8@sha256:9a3e514b0e95ebef02939fa92529647d82dcd6a4061c5d9483e376ddf454cc55_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-webhook-rhel8@sha256:9a3e514b0e95ebef02939fa92529647d82dcd6a4061c5d9483e376ddf454cc55_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-webhook-rhel8@sha256:9a3e514b0e95ebef02939fa92529647d82dcd6a4061c5d9483e376ddf454cc55_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-webhook-rhel8@sha256:b08ad288721af271ade9a982fa00ac91de30784b5cf087fcc1a75857159a2c3c_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-webhook-rhel8@sha256:b08ad288721af271ade9a982fa00ac91de30784b5cf087fcc1a75857159a2c3c_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-webhook-rhel8@sha256:b08ad288721af271ade9a982fa00ac91de30784b5cf087fcc1a75857159a2c3c_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-webhook-rhel8@sha256:bde79fe3e2cd0bf3142f41f7c804e97cdd88cb24ee34d60509fa83efc4877ecc_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-webhook-rhel8@sha256:bde79fe3e2cd0bf3142f41f7c804e97cdd88cb24ee34d60509fa83efc4877ecc_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-webhook-rhel8@sha256:bde79fe3e2cd0bf3142f41f7c804e97cdd88cb24ee34d60509fa83efc4877ecc_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-webhook-rhel8@sha256:fcacefc31f869dcb0287a54eeafcb4a44db8c13697ed486f2fcb5b3aa6b47041_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-webhook-rhel8@sha256:fcacefc31f869dcb0287a54eeafcb4a44db8c13697ed486f2fcb5b3aa6b47041_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-webhook-rhel8@sha256:fcacefc31f869dcb0287a54eeafcb4a44db8c13697ed486f2fcb5b3aa6b47041_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:0ab99cc4f6f684aac86b57d6fb7c18eefac5f8dae1c9663f4903ca6f88baf6ed_s390x as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:0ab99cc4f6f684aac86b57d6fb7c18eefac5f8dae1c9663f4903ca6f88baf6ed_s390x" + }, + "product_reference": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:0ab99cc4f6f684aac86b57d6fb7c18eefac5f8dae1c9663f4903ca6f88baf6ed_s390x", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:26fb9b49f33fda7c7fa68a94db45210fa27119ac41376de9deef9af104bed059_amd64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:26fb9b49f33fda7c7fa68a94db45210fa27119ac41376de9deef9af104bed059_amd64" + }, + "product_reference": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:26fb9b49f33fda7c7fa68a94db45210fa27119ac41376de9deef9af104bed059_amd64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:a8d7d8f7df1e2ea94bc4d221571bccd70c9f7d80955ba08b9281e2488e3c8752_arm64 as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:a8d7d8f7df1e2ea94bc4d221571bccd70c9f7d80955ba08b9281e2488e3c8752_arm64" + }, + "product_reference": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:a8d7d8f7df1e2ea94bc4d221571bccd70c9f7d80955ba08b9281e2488e3c8752_arm64", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:e2790658d28dd41417c69476daf1d3e6f6228ed73ed07bc20aed1c5d9ff382eb_ppc64le as a component of OpenShift Pipelines version 1.12 for RHEL 8", + "product_id": "8Base-PIPELINES-1.12:openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:e2790658d28dd41417c69476daf1d3e6f6228ed73ed07bc20aed1c5d9ff382eb_ppc64le" + }, + "product_reference": "openshift-pipelines/pipelines-workingdirinit-rhel8@sha256:e2790658d28dd41417c69476daf1d3e6f6228ed73ed07bc20aed1c5d9ff382eb_ppc64le", + "relates_to_product_reference": "8Base-PIPELINES-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:22041df5bf50628fd8fb62127f84c6ce8d77cb2821b0f41e1e809cf3bc2ab434_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:22041df5bf50628fd8fb62127f84c6ce8d77cb2821b0f41e1e809cf3bc2ab434_arm64" + }, + "product_reference": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:22041df5bf50628fd8fb62127f84c6ce8d77cb2821b0f41e1e809cf3bc2ab434_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:25c5c77fe79b72f805eba0e183bbca799f6f11266585fd9a24acb0aee4a4ee44_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:25c5c77fe79b72f805eba0e183bbca799f6f11266585fd9a24acb0aee4a4ee44_amd64" + }, + "product_reference": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:25c5c77fe79b72f805eba0e183bbca799f6f11266585fd9a24acb0aee4a4ee44_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:39a3531a490d9d7a2528dca7efbbfe3742e7b02d3d7b139c47eacd0fb3398478_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:39a3531a490d9d7a2528dca7efbbfe3742e7b02d3d7b139c47eacd0fb3398478_ppc64le" + }, + "product_reference": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:39a3531a490d9d7a2528dca7efbbfe3742e7b02d3d7b139c47eacd0fb3398478_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:41f8bcf3a01621f4df736db053571c6fdbe3bdc5be731b3f196d0b999b578bd8_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:41f8bcf3a01621f4df736db053571c6fdbe3bdc5be731b3f196d0b999b578bd8_s390x" + }, + "product_reference": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:41f8bcf3a01621f4df736db053571c6fdbe3bdc5be731b3f196d0b999b578bd8_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-grafana-rhel8@sha256:4b9c090d9361d711f400ecae06bfb685d4b14ecdd2c04d1dad1c21aeffe1a7c7_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-grafana-rhel8@sha256:4b9c090d9361d711f400ecae06bfb685d4b14ecdd2c04d1dad1c21aeffe1a7c7_ppc64le" + }, + "product_reference": "rhacm2/acm-grafana-rhel8@sha256:4b9c090d9361d711f400ecae06bfb685d4b14ecdd2c04d1dad1c21aeffe1a7c7_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-grafana-rhel8@sha256:593eeebb93cf18d65214d810f0803e1d03689a4b662c375e00056786e25bb2b5_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-grafana-rhel8@sha256:593eeebb93cf18d65214d810f0803e1d03689a4b662c375e00056786e25bb2b5_amd64" + }, + "product_reference": "rhacm2/acm-grafana-rhel8@sha256:593eeebb93cf18d65214d810f0803e1d03689a4b662c375e00056786e25bb2b5_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-grafana-rhel8@sha256:a3af2c5b71c4b4eeed51fc1e7da1ba150ffcea62b633bc3dcbb8bb2c5b91fa76_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-grafana-rhel8@sha256:a3af2c5b71c4b4eeed51fc1e7da1ba150ffcea62b633bc3dcbb8bb2c5b91fa76_s390x" + }, + "product_reference": "rhacm2/acm-grafana-rhel8@sha256:a3af2c5b71c4b4eeed51fc1e7da1ba150ffcea62b633bc3dcbb8bb2c5b91fa76_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-grafana-rhel8@sha256:f867f63c7dd11ecf5ccf7af55de55bbedd46349aee79170b3dbacac47fcbd596_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-grafana-rhel8@sha256:f867f63c7dd11ecf5ccf7af55de55bbedd46349aee79170b3dbacac47fcbd596_arm64" + }, + "product_reference": "rhacm2/acm-grafana-rhel8@sha256:f867f63c7dd11ecf5ccf7af55de55bbedd46349aee79170b3dbacac47fcbd596_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-must-gather-rhel8@sha256:73707cce9f52bca40994ae5dc64d39512f86c2fad089cc6a98fad35600714884_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-must-gather-rhel8@sha256:73707cce9f52bca40994ae5dc64d39512f86c2fad089cc6a98fad35600714884_ppc64le" + }, + "product_reference": "rhacm2/acm-must-gather-rhel8@sha256:73707cce9f52bca40994ae5dc64d39512f86c2fad089cc6a98fad35600714884_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-must-gather-rhel8@sha256:a5ce4bb1fbfa9e0ac1e0011d5d6e1fcbdcc716784384d9cb415f91b75c68adfd_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-must-gather-rhel8@sha256:a5ce4bb1fbfa9e0ac1e0011d5d6e1fcbdcc716784384d9cb415f91b75c68adfd_s390x" + }, + "product_reference": "rhacm2/acm-must-gather-rhel8@sha256:a5ce4bb1fbfa9e0ac1e0011d5d6e1fcbdcc716784384d9cb415f91b75c68adfd_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-must-gather-rhel8@sha256:f0a55d80c693cf5a618d809a27e906e258f66bcb7e3d93fe78b542c084bf7624_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-must-gather-rhel8@sha256:f0a55d80c693cf5a618d809a27e906e258f66bcb7e3d93fe78b542c084bf7624_amd64" + }, + "product_reference": "rhacm2/acm-must-gather-rhel8@sha256:f0a55d80c693cf5a618d809a27e906e258f66bcb7e3d93fe78b542c084bf7624_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-must-gather-rhel8@sha256:f251e9013b44c544d23a2572fcecf9b6494043ddd668c873552b7da7bc2fc922_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-must-gather-rhel8@sha256:f251e9013b44c544d23a2572fcecf9b6494043ddd668c873552b7da7bc2fc922_arm64" + }, + "product_reference": "rhacm2/acm-must-gather-rhel8@sha256:f251e9013b44c544d23a2572fcecf9b6494043ddd668c873552b7da7bc2fc922_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-operator-bundle@sha256:099e7ab081724937eabcda3fa30f892d3375f2188e95930ee8960933b09c92ae_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-operator-bundle@sha256:099e7ab081724937eabcda3fa30f892d3375f2188e95930ee8960933b09c92ae_amd64" + }, + "product_reference": "rhacm2/acm-operator-bundle@sha256:099e7ab081724937eabcda3fa30f892d3375f2188e95930ee8960933b09c92ae_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-operator-bundle@sha256:1b1117268e33a09d03a7f0d7a3a586b5bd0c3e2fccd4974c3ab6c697ad21ab13_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-operator-bundle@sha256:1b1117268e33a09d03a7f0d7a3a586b5bd0c3e2fccd4974c3ab6c697ad21ab13_ppc64le" + }, + "product_reference": "rhacm2/acm-operator-bundle@sha256:1b1117268e33a09d03a7f0d7a3a586b5bd0c3e2fccd4974c3ab6c697ad21ab13_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-operator-bundle@sha256:a61b13ac0e071e213ada0a2288b81a4317e28cd5eeec7b6e78d952d06cd59c7c_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-operator-bundle@sha256:a61b13ac0e071e213ada0a2288b81a4317e28cd5eeec7b6e78d952d06cd59c7c_s390x" + }, + "product_reference": "rhacm2/acm-operator-bundle@sha256:a61b13ac0e071e213ada0a2288b81a4317e28cd5eeec7b6e78d952d06cd59c7c_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:3016d37cf969a94314aaaa295c0b1309f4bbfbc50d7d0789e1b875783e2904e4_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-prometheus-config-reloader-rhel8@sha256:3016d37cf969a94314aaaa295c0b1309f4bbfbc50d7d0789e1b875783e2904e4_amd64" + }, + "product_reference": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:3016d37cf969a94314aaaa295c0b1309f4bbfbc50d7d0789e1b875783e2904e4_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:45efadc157d6d364d84ab040cfb327b9ff27aa3f5e3848a3fe19d75aec0b5e45_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-prometheus-config-reloader-rhel8@sha256:45efadc157d6d364d84ab040cfb327b9ff27aa3f5e3848a3fe19d75aec0b5e45_arm64" + }, + "product_reference": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:45efadc157d6d364d84ab040cfb327b9ff27aa3f5e3848a3fe19d75aec0b5e45_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:56c3a6164c4da09aca7b487f282b3dc1ac6aeb236970afa5b2aadcb8b3d2d5c6_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-prometheus-config-reloader-rhel8@sha256:56c3a6164c4da09aca7b487f282b3dc1ac6aeb236970afa5b2aadcb8b3d2d5c6_s390x" + }, + "product_reference": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:56c3a6164c4da09aca7b487f282b3dc1ac6aeb236970afa5b2aadcb8b3d2d5c6_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:dde63fb84d127d01ad6e3a76646e9d9b385b0a4695e7b056f55418323f70b5c0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-prometheus-config-reloader-rhel8@sha256:dde63fb84d127d01ad6e3a76646e9d9b385b0a4695e7b056f55418323f70b5c0_ppc64le" + }, + "product_reference": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:dde63fb84d127d01ad6e3a76646e9d9b385b0a4695e7b056f55418323f70b5c0_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-prometheus-rhel8@sha256:17bc1745c0f54763585ad6da8d4117b471be9aeaf545c3c748d8aa963fbd46cd_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-prometheus-rhel8@sha256:17bc1745c0f54763585ad6da8d4117b471be9aeaf545c3c748d8aa963fbd46cd_s390x" + }, + "product_reference": "rhacm2/acm-prometheus-rhel8@sha256:17bc1745c0f54763585ad6da8d4117b471be9aeaf545c3c748d8aa963fbd46cd_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-prometheus-rhel8@sha256:71c105c0d3b7507efed5a5b792611cc5022dd97293da4ecfa16a593524f51f22_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-prometheus-rhel8@sha256:71c105c0d3b7507efed5a5b792611cc5022dd97293da4ecfa16a593524f51f22_ppc64le" + }, + "product_reference": "rhacm2/acm-prometheus-rhel8@sha256:71c105c0d3b7507efed5a5b792611cc5022dd97293da4ecfa16a593524f51f22_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-prometheus-rhel8@sha256:b3d2553e8f5a36382229ace49e395e7471b644663e629e87bfa007efa698e559_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-prometheus-rhel8@sha256:b3d2553e8f5a36382229ace49e395e7471b644663e629e87bfa007efa698e559_arm64" + }, + "product_reference": "rhacm2/acm-prometheus-rhel8@sha256:b3d2553e8f5a36382229ace49e395e7471b644663e629e87bfa007efa698e559_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-prometheus-rhel8@sha256:ea2ee7c76c6bce72ee098fae5a86ce6f8b68baa04cc0072f9833718ad8f84456_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-prometheus-rhel8@sha256:ea2ee7c76c6bce72ee098fae5a86ce6f8b68baa04cc0072f9833718ad8f84456_amd64" + }, + "product_reference": "rhacm2/acm-prometheus-rhel8@sha256:ea2ee7c76c6bce72ee098fae5a86ce6f8b68baa04cc0072f9833718ad8f84456_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:6a09d93786436b8e8fadb9cacb23488caf1a131ba587da51a574dea176289ee2_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-volsync-addon-controller-rhel8@sha256:6a09d93786436b8e8fadb9cacb23488caf1a131ba587da51a574dea176289ee2_s390x" + }, + "product_reference": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:6a09d93786436b8e8fadb9cacb23488caf1a131ba587da51a574dea176289ee2_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:ad7289555a0aa835de14f9158a166ce503f6cf13b1a5bea2c8098fb156e03e9d_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-volsync-addon-controller-rhel8@sha256:ad7289555a0aa835de14f9158a166ce503f6cf13b1a5bea2c8098fb156e03e9d_arm64" + }, + "product_reference": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:ad7289555a0aa835de14f9158a166ce503f6cf13b1a5bea2c8098fb156e03e9d_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:e797cb581b5d0508da0c8e14bd7aa3a49376d3c2ccaa643fd9f3b2ba858236a6_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-volsync-addon-controller-rhel8@sha256:e797cb581b5d0508da0c8e14bd7aa3a49376d3c2ccaa643fd9f3b2ba858236a6_amd64" + }, + "product_reference": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:e797cb581b5d0508da0c8e14bd7aa3a49376d3c2ccaa643fd9f3b2ba858236a6_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:f8f219b28fc4eb3ba76064c94b8618a185e51f701e870d773de0022e53fdec67_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/acm-volsync-addon-controller-rhel8@sha256:f8f219b28fc4eb3ba76064c94b8618a185e51f701e870d773de0022e53fdec67_ppc64le" + }, + "product_reference": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:f8f219b28fc4eb3ba76064c94b8618a185e51f701e870d773de0022e53fdec67_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/cert-policy-controller-rhel8@sha256:51e31d2ddfa55f1f1113f3a3df84326ec5bcf8fff1cf542747b6b2ad920c227d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/cert-policy-controller-rhel8@sha256:51e31d2ddfa55f1f1113f3a3df84326ec5bcf8fff1cf542747b6b2ad920c227d_ppc64le" + }, + "product_reference": "rhacm2/cert-policy-controller-rhel8@sha256:51e31d2ddfa55f1f1113f3a3df84326ec5bcf8fff1cf542747b6b2ad920c227d_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/cert-policy-controller-rhel8@sha256:9512de5254c8a20e465dcad117ec2f195f38eaf1b1369b42188d9bface8134a4_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/cert-policy-controller-rhel8@sha256:9512de5254c8a20e465dcad117ec2f195f38eaf1b1369b42188d9bface8134a4_s390x" + }, + "product_reference": "rhacm2/cert-policy-controller-rhel8@sha256:9512de5254c8a20e465dcad117ec2f195f38eaf1b1369b42188d9bface8134a4_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/cert-policy-controller-rhel8@sha256:b5853015a62cffc07a9bf58ed1bc5622a1d374ae6eb7d2b0c16cfb8339b03f71_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/cert-policy-controller-rhel8@sha256:b5853015a62cffc07a9bf58ed1bc5622a1d374ae6eb7d2b0c16cfb8339b03f71_arm64" + }, + "product_reference": "rhacm2/cert-policy-controller-rhel8@sha256:b5853015a62cffc07a9bf58ed1bc5622a1d374ae6eb7d2b0c16cfb8339b03f71_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/cert-policy-controller-rhel8@sha256:f1f513263c99d949da200459c852e77b2efb0171530e6b108a5b26e11563daf9_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/cert-policy-controller-rhel8@sha256:f1f513263c99d949da200459c852e77b2efb0171530e6b108a5b26e11563daf9_amd64" + }, + "product_reference": "rhacm2/cert-policy-controller-rhel8@sha256:f1f513263c99d949da200459c852e77b2efb0171530e6b108a5b26e11563daf9_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:033221c202572fd2983a1fafd7028f3d40df8232a1660aa04b404a275ccc1b89_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/cluster-backup-rhel8-operator@sha256:033221c202572fd2983a1fafd7028f3d40df8232a1660aa04b404a275ccc1b89_arm64" + }, + "product_reference": "rhacm2/cluster-backup-rhel8-operator@sha256:033221c202572fd2983a1fafd7028f3d40df8232a1660aa04b404a275ccc1b89_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:3e10c0acd8ea2090e75c6bf2220a0be08a932fd7c109a7449c2a331480dd64ab_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/cluster-backup-rhel8-operator@sha256:3e10c0acd8ea2090e75c6bf2220a0be08a932fd7c109a7449c2a331480dd64ab_ppc64le" + }, + "product_reference": "rhacm2/cluster-backup-rhel8-operator@sha256:3e10c0acd8ea2090e75c6bf2220a0be08a932fd7c109a7449c2a331480dd64ab_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:6c08a5716545d4ab34a4c4e0cca896a9d9548d6c6fb8d61fd7a527c68f6428d7_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/cluster-backup-rhel8-operator@sha256:6c08a5716545d4ab34a4c4e0cca896a9d9548d6c6fb8d61fd7a527c68f6428d7_s390x" + }, + "product_reference": "rhacm2/cluster-backup-rhel8-operator@sha256:6c08a5716545d4ab34a4c4e0cca896a9d9548d6c6fb8d61fd7a527c68f6428d7_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:8a7bfb5e2d3a815425c4eaa48843ec77d84641267f7439b47d36758d2cdc4c85_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/cluster-backup-rhel8-operator@sha256:8a7bfb5e2d3a815425c4eaa48843ec77d84641267f7439b47d36758d2cdc4c85_amd64" + }, + "product_reference": "rhacm2/cluster-backup-rhel8-operator@sha256:8a7bfb5e2d3a815425c4eaa48843ec77d84641267f7439b47d36758d2cdc4c85_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/config-policy-controller-rhel8@sha256:43fb8527c7014db555972fae47184c3d50c1ec43ec87e8ba113541a3dddd4c85_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/config-policy-controller-rhel8@sha256:43fb8527c7014db555972fae47184c3d50c1ec43ec87e8ba113541a3dddd4c85_s390x" + }, + "product_reference": "rhacm2/config-policy-controller-rhel8@sha256:43fb8527c7014db555972fae47184c3d50c1ec43ec87e8ba113541a3dddd4c85_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/config-policy-controller-rhel8@sha256:4f12590017909852fa52fca688ad625ecf65b63569b4cfabcd4215beb5bf69e9_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/config-policy-controller-rhel8@sha256:4f12590017909852fa52fca688ad625ecf65b63569b4cfabcd4215beb5bf69e9_arm64" + }, + "product_reference": "rhacm2/config-policy-controller-rhel8@sha256:4f12590017909852fa52fca688ad625ecf65b63569b4cfabcd4215beb5bf69e9_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/config-policy-controller-rhel8@sha256:71390be7a708c4997ca74895f07085fee710d3aa51d578ae6083cc71c3d5149e_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/config-policy-controller-rhel8@sha256:71390be7a708c4997ca74895f07085fee710d3aa51d578ae6083cc71c3d5149e_amd64" + }, + "product_reference": "rhacm2/config-policy-controller-rhel8@sha256:71390be7a708c4997ca74895f07085fee710d3aa51d578ae6083cc71c3d5149e_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/config-policy-controller-rhel8@sha256:bd2496dca1e8ed428d6ef911a9aaa2eb17655b9ebc110d8a6da0b837fbceec3d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/config-policy-controller-rhel8@sha256:bd2496dca1e8ed428d6ef911a9aaa2eb17655b9ebc110d8a6da0b837fbceec3d_ppc64le" + }, + "product_reference": "rhacm2/config-policy-controller-rhel8@sha256:bd2496dca1e8ed428d6ef911a9aaa2eb17655b9ebc110d8a6da0b837fbceec3d_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/console-rhel8@sha256:3d311acea5ebf4d9098ffa1cb2943774060352e42d1876b1e0f6dfdd4ab4463a_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/console-rhel8@sha256:3d311acea5ebf4d9098ffa1cb2943774060352e42d1876b1e0f6dfdd4ab4463a_arm64" + }, + "product_reference": "rhacm2/console-rhel8@sha256:3d311acea5ebf4d9098ffa1cb2943774060352e42d1876b1e0f6dfdd4ab4463a_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/console-rhel8@sha256:3d6c5e521eaf99af4354656e9e99a20702232981a34ea285cd9d78a394a76172_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/console-rhel8@sha256:3d6c5e521eaf99af4354656e9e99a20702232981a34ea285cd9d78a394a76172_ppc64le" + }, + "product_reference": "rhacm2/console-rhel8@sha256:3d6c5e521eaf99af4354656e9e99a20702232981a34ea285cd9d78a394a76172_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/console-rhel8@sha256:895049fa6d8f3ff0c8949e191570d1b3565953a22a818ece69839f912dea719e_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/console-rhel8@sha256:895049fa6d8f3ff0c8949e191570d1b3565953a22a818ece69839f912dea719e_s390x" + }, + "product_reference": "rhacm2/console-rhel8@sha256:895049fa6d8f3ff0c8949e191570d1b3565953a22a818ece69839f912dea719e_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/console-rhel8@sha256:af47eee56b5df1ff8c4966af401f7d1855e5dc957b856d9f931498ac17c101f5_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/console-rhel8@sha256:af47eee56b5df1ff8c4966af401f7d1855e5dc957b856d9f931498ac17c101f5_amd64" + }, + "product_reference": "rhacm2/console-rhel8@sha256:af47eee56b5df1ff8c4966af401f7d1855e5dc957b856d9f931498ac17c101f5_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:0ccd5b2bc6ad1f2a65034ab24564edfd53550fed412660ca05deca650a4d2c56_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/endpoint-monitoring-rhel8-operator@sha256:0ccd5b2bc6ad1f2a65034ab24564edfd53550fed412660ca05deca650a4d2c56_amd64" + }, + "product_reference": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:0ccd5b2bc6ad1f2a65034ab24564edfd53550fed412660ca05deca650a4d2c56_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:3f049362fa4c058d0f2d55f746a6c354e6391e50c29fd56f4c92243df4b1c1c5_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/endpoint-monitoring-rhel8-operator@sha256:3f049362fa4c058d0f2d55f746a6c354e6391e50c29fd56f4c92243df4b1c1c5_s390x" + }, + "product_reference": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:3f049362fa4c058d0f2d55f746a6c354e6391e50c29fd56f4c92243df4b1c1c5_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:5bd37a3a9d990fc9e1bbf2f7d6de1b677818268200d3ba90a5b58685971f67cb_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/endpoint-monitoring-rhel8-operator@sha256:5bd37a3a9d990fc9e1bbf2f7d6de1b677818268200d3ba90a5b58685971f67cb_arm64" + }, + "product_reference": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:5bd37a3a9d990fc9e1bbf2f7d6de1b677818268200d3ba90a5b58685971f67cb_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:d50557876a2a70edd18d2d1396470f92bffdf8c063d2604ed8816884bc9c629a_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/endpoint-monitoring-rhel8-operator@sha256:d50557876a2a70edd18d2d1396470f92bffdf8c063d2604ed8816884bc9c629a_ppc64le" + }, + "product_reference": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:d50557876a2a70edd18d2d1396470f92bffdf8c063d2604ed8816884bc9c629a_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:46f750706e47ab16b8f5dee46d4eb40c5ce377b874db03b5b403945d369060d1_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/governance-policy-propagator-rhel8@sha256:46f750706e47ab16b8f5dee46d4eb40c5ce377b874db03b5b403945d369060d1_amd64" + }, + "product_reference": "rhacm2/governance-policy-propagator-rhel8@sha256:46f750706e47ab16b8f5dee46d4eb40c5ce377b874db03b5b403945d369060d1_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:57a227764d3935ca20736d5d2f59d8605e5a799a1e397b5cd56249edee6fec3d_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/governance-policy-propagator-rhel8@sha256:57a227764d3935ca20736d5d2f59d8605e5a799a1e397b5cd56249edee6fec3d_arm64" + }, + "product_reference": "rhacm2/governance-policy-propagator-rhel8@sha256:57a227764d3935ca20736d5d2f59d8605e5a799a1e397b5cd56249edee6fec3d_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:6419ab49e17dbe2c04e08010e2795f2642178d52d2b6c5100ed44c4b71dbbf1d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/governance-policy-propagator-rhel8@sha256:6419ab49e17dbe2c04e08010e2795f2642178d52d2b6c5100ed44c4b71dbbf1d_ppc64le" + }, + "product_reference": "rhacm2/governance-policy-propagator-rhel8@sha256:6419ab49e17dbe2c04e08010e2795f2642178d52d2b6c5100ed44c4b71dbbf1d_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:ad1a397be2c0c0ace78bc977bd5d7963a31a78c0a284a8aa77a377e7429c982b_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/governance-policy-propagator-rhel8@sha256:ad1a397be2c0c0ace78bc977bd5d7963a31a78c0a284a8aa77a377e7429c982b_s390x" + }, + "product_reference": "rhacm2/governance-policy-propagator-rhel8@sha256:ad1a397be2c0c0ace78bc977bd5d7963a31a78c0a284a8aa77a377e7429c982b_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/governance-policy-spec-sync-rhel8@sha256:1ff7592a5c8dd1942b904a445f00a707bb233db2c6d92d83a818a7ad357d7a27_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/governance-policy-spec-sync-rhel8@sha256:1ff7592a5c8dd1942b904a445f00a707bb233db2c6d92d83a818a7ad357d7a27_s390x" + }, + "product_reference": "rhacm2/governance-policy-spec-sync-rhel8@sha256:1ff7592a5c8dd1942b904a445f00a707bb233db2c6d92d83a818a7ad357d7a27_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/governance-policy-spec-sync-rhel8@sha256:2aa813b972d7598880e3bd41affa80323fe60949be6cb20217f6538ce2e8bac1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/governance-policy-spec-sync-rhel8@sha256:2aa813b972d7598880e3bd41affa80323fe60949be6cb20217f6538ce2e8bac1_ppc64le" + }, + "product_reference": "rhacm2/governance-policy-spec-sync-rhel8@sha256:2aa813b972d7598880e3bd41affa80323fe60949be6cb20217f6538ce2e8bac1_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/governance-policy-spec-sync-rhel8@sha256:719ac6bf7f07fcb78f8ae5b599260eab62379feb427d23fe29d1b3df7e9db821_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/governance-policy-spec-sync-rhel8@sha256:719ac6bf7f07fcb78f8ae5b599260eab62379feb427d23fe29d1b3df7e9db821_amd64" + }, + "product_reference": "rhacm2/governance-policy-spec-sync-rhel8@sha256:719ac6bf7f07fcb78f8ae5b599260eab62379feb427d23fe29d1b3df7e9db821_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/governance-policy-spec-sync-rhel8@sha256:71eeb8d5d8de78dd1204b8b152af7d8b4b2bb09293fb9a9ddc20014bdf5e18c7_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/governance-policy-spec-sync-rhel8@sha256:71eeb8d5d8de78dd1204b8b152af7d8b4b2bb09293fb9a9ddc20014bdf5e18c7_arm64" + }, + "product_reference": "rhacm2/governance-policy-spec-sync-rhel8@sha256:71eeb8d5d8de78dd1204b8b152af7d8b4b2bb09293fb9a9ddc20014bdf5e18c7_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/governance-policy-status-sync-rhel8@sha256:88544253e9fdb1b31271900095e9f58ef2f946ab32bc5630a1d5515a185ae4cd_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/governance-policy-status-sync-rhel8@sha256:88544253e9fdb1b31271900095e9f58ef2f946ab32bc5630a1d5515a185ae4cd_arm64" + }, + "product_reference": "rhacm2/governance-policy-status-sync-rhel8@sha256:88544253e9fdb1b31271900095e9f58ef2f946ab32bc5630a1d5515a185ae4cd_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/governance-policy-status-sync-rhel8@sha256:ad2468a852d30eaba67cd6a685c894280e938a7471c98f73144ead47bf1a9507_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/governance-policy-status-sync-rhel8@sha256:ad2468a852d30eaba67cd6a685c894280e938a7471c98f73144ead47bf1a9507_ppc64le" + }, + "product_reference": "rhacm2/governance-policy-status-sync-rhel8@sha256:ad2468a852d30eaba67cd6a685c894280e938a7471c98f73144ead47bf1a9507_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/governance-policy-status-sync-rhel8@sha256:bdd930e70499b9c894cf3998d7444b9e0ceb2caa0545e1458331fbd47fd95c2b_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/governance-policy-status-sync-rhel8@sha256:bdd930e70499b9c894cf3998d7444b9e0ceb2caa0545e1458331fbd47fd95c2b_amd64" + }, + "product_reference": "rhacm2/governance-policy-status-sync-rhel8@sha256:bdd930e70499b9c894cf3998d7444b9e0ceb2caa0545e1458331fbd47fd95c2b_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/governance-policy-status-sync-rhel8@sha256:f651b33aad48acdc23690c1734748fc2708deed4eb343bc9495462096dafe5b1_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/governance-policy-status-sync-rhel8@sha256:f651b33aad48acdc23690c1734748fc2708deed4eb343bc9495462096dafe5b1_s390x" + }, + "product_reference": "rhacm2/governance-policy-status-sync-rhel8@sha256:f651b33aad48acdc23690c1734748fc2708deed4eb343bc9495462096dafe5b1_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/governance-policy-template-sync-rhel8@sha256:19171cb758d807feb17186bbe0a4f982689d98215416a2ecc679be76b74d028a_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/governance-policy-template-sync-rhel8@sha256:19171cb758d807feb17186bbe0a4f982689d98215416a2ecc679be76b74d028a_arm64" + }, + "product_reference": "rhacm2/governance-policy-template-sync-rhel8@sha256:19171cb758d807feb17186bbe0a4f982689d98215416a2ecc679be76b74d028a_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/governance-policy-template-sync-rhel8@sha256:1cf75fedfade2b8309551ec602ef87d423b7c7001e9bca330beb6c3e090d88e1_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/governance-policy-template-sync-rhel8@sha256:1cf75fedfade2b8309551ec602ef87d423b7c7001e9bca330beb6c3e090d88e1_amd64" + }, + "product_reference": "rhacm2/governance-policy-template-sync-rhel8@sha256:1cf75fedfade2b8309551ec602ef87d423b7c7001e9bca330beb6c3e090d88e1_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/governance-policy-template-sync-rhel8@sha256:ab7e208fb7d48575fa60933e039487cb3180e0bc9b359cb566c01cb3b4747461_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/governance-policy-template-sync-rhel8@sha256:ab7e208fb7d48575fa60933e039487cb3180e0bc9b359cb566c01cb3b4747461_s390x" + }, + "product_reference": "rhacm2/governance-policy-template-sync-rhel8@sha256:ab7e208fb7d48575fa60933e039487cb3180e0bc9b359cb566c01cb3b4747461_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/governance-policy-template-sync-rhel8@sha256:cfa6b74968f6ff7d8ee0bd2d8fbbb40c55f224221ea6f0d964095f8943c9096f_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/governance-policy-template-sync-rhel8@sha256:cfa6b74968f6ff7d8ee0bd2d8fbbb40c55f224221ea6f0d964095f8943c9096f_ppc64le" + }, + "product_reference": "rhacm2/governance-policy-template-sync-rhel8@sha256:cfa6b74968f6ff7d8ee0bd2d8fbbb40c55f224221ea6f0d964095f8943c9096f_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:b51eee27cb08086a8d50e580cb52b5c0e7fb89898da8ce98c91a0edcbe6577d8_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/grafana-dashboard-loader-rhel8@sha256:b51eee27cb08086a8d50e580cb52b5c0e7fb89898da8ce98c91a0edcbe6577d8_amd64" + }, + "product_reference": "rhacm2/grafana-dashboard-loader-rhel8@sha256:b51eee27cb08086a8d50e580cb52b5c0e7fb89898da8ce98c91a0edcbe6577d8_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:ec27ea669750a2540e566d3eee4c9af8d6d062706a1760c28beb0cc674656108_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/grafana-dashboard-loader-rhel8@sha256:ec27ea669750a2540e566d3eee4c9af8d6d062706a1760c28beb0cc674656108_s390x" + }, + "product_reference": "rhacm2/grafana-dashboard-loader-rhel8@sha256:ec27ea669750a2540e566d3eee4c9af8d6d062706a1760c28beb0cc674656108_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:f899586a67adebe6e8e7c2e5ebf027eadfbd9f944a1ab996af5f6ab90f873f76_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/grafana-dashboard-loader-rhel8@sha256:f899586a67adebe6e8e7c2e5ebf027eadfbd9f944a1ab996af5f6ab90f873f76_arm64" + }, + "product_reference": "rhacm2/grafana-dashboard-loader-rhel8@sha256:f899586a67adebe6e8e7c2e5ebf027eadfbd9f944a1ab996af5f6ab90f873f76_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:fc87784eff08eb0419c72f0b1d3c3291b79d02f08f212ce711dec0c4f2ca65a0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/grafana-dashboard-loader-rhel8@sha256:fc87784eff08eb0419c72f0b1d3c3291b79d02f08f212ce711dec0c4f2ca65a0_ppc64le" + }, + "product_reference": "rhacm2/grafana-dashboard-loader-rhel8@sha256:fc87784eff08eb0419c72f0b1d3c3291b79d02f08f212ce711dec0c4f2ca65a0_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/iam-policy-controller-rhel8@sha256:0ee26c04547c94f50dd5d280fc6ff73a67a71937c00d9a0c8f972e4198f5d309_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/iam-policy-controller-rhel8@sha256:0ee26c04547c94f50dd5d280fc6ff73a67a71937c00d9a0c8f972e4198f5d309_s390x" + }, + "product_reference": "rhacm2/iam-policy-controller-rhel8@sha256:0ee26c04547c94f50dd5d280fc6ff73a67a71937c00d9a0c8f972e4198f5d309_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/iam-policy-controller-rhel8@sha256:3f9d127573599a4d5e533d3c9e8a23f1fc8eb24ba81eb86e50a8fe4d0867f979_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/iam-policy-controller-rhel8@sha256:3f9d127573599a4d5e533d3c9e8a23f1fc8eb24ba81eb86e50a8fe4d0867f979_arm64" + }, + "product_reference": "rhacm2/iam-policy-controller-rhel8@sha256:3f9d127573599a4d5e533d3c9e8a23f1fc8eb24ba81eb86e50a8fe4d0867f979_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/iam-policy-controller-rhel8@sha256:48cdbe1f1bed152b1cd96efb765ddcabd5d8553a3e08b8e84709f41c07b53403_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/iam-policy-controller-rhel8@sha256:48cdbe1f1bed152b1cd96efb765ddcabd5d8553a3e08b8e84709f41c07b53403_ppc64le" + }, + "product_reference": "rhacm2/iam-policy-controller-rhel8@sha256:48cdbe1f1bed152b1cd96efb765ddcabd5d8553a3e08b8e84709f41c07b53403_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/iam-policy-controller-rhel8@sha256:f48fffa8ede6ed6341b48680624c19c20ebcdd51f1c282d811cdfc1d79af3ee0_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/iam-policy-controller-rhel8@sha256:f48fffa8ede6ed6341b48680624c19c20ebcdd51f1c282d811cdfc1d79af3ee0_amd64" + }, + "product_reference": "rhacm2/iam-policy-controller-rhel8@sha256:f48fffa8ede6ed6341b48680624c19c20ebcdd51f1c282d811cdfc1d79af3ee0_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/insights-client-rhel8@sha256:10e5b76b088f315f84328d78305a4304c8c0de4802b36558a758e73dde9eac3a_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/insights-client-rhel8@sha256:10e5b76b088f315f84328d78305a4304c8c0de4802b36558a758e73dde9eac3a_ppc64le" + }, + "product_reference": "rhacm2/insights-client-rhel8@sha256:10e5b76b088f315f84328d78305a4304c8c0de4802b36558a758e73dde9eac3a_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/insights-client-rhel8@sha256:1390dd39465ed346b96d1fd479208183b9731f5801c86306628c298f8da99ff1_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/insights-client-rhel8@sha256:1390dd39465ed346b96d1fd479208183b9731f5801c86306628c298f8da99ff1_amd64" + }, + "product_reference": "rhacm2/insights-client-rhel8@sha256:1390dd39465ed346b96d1fd479208183b9731f5801c86306628c298f8da99ff1_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/insights-client-rhel8@sha256:6a97a846f10bbd5b584d7ee4e2ab4c24dfdf909223367a219e537ce2c01aa22f_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/insights-client-rhel8@sha256:6a97a846f10bbd5b584d7ee4e2ab4c24dfdf909223367a219e537ce2c01aa22f_arm64" + }, + "product_reference": "rhacm2/insights-client-rhel8@sha256:6a97a846f10bbd5b584d7ee4e2ab4c24dfdf909223367a219e537ce2c01aa22f_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/insights-client-rhel8@sha256:c0b4bdb87d21f7ae4c4a8588e0fd6c0feabe0837196d971bb19ead480fc67baf_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/insights-client-rhel8@sha256:c0b4bdb87d21f7ae4c4a8588e0fd6c0feabe0837196d971bb19ead480fc67baf_s390x" + }, + "product_reference": "rhacm2/insights-client-rhel8@sha256:c0b4bdb87d21f7ae4c4a8588e0fd6c0feabe0837196d971bb19ead480fc67baf_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/insights-metrics-rhel8@sha256:16e1537ee0a915c05da1806adbace166f213e963b2257b1c4f1c2b4a4382f278_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/insights-metrics-rhel8@sha256:16e1537ee0a915c05da1806adbace166f213e963b2257b1c4f1c2b4a4382f278_amd64" + }, + "product_reference": "rhacm2/insights-metrics-rhel8@sha256:16e1537ee0a915c05da1806adbace166f213e963b2257b1c4f1c2b4a4382f278_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/insights-metrics-rhel8@sha256:adfd089cea6679f71e53283efb032e887238b4416d681fee182292e5d07a0396_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/insights-metrics-rhel8@sha256:adfd089cea6679f71e53283efb032e887238b4416d681fee182292e5d07a0396_s390x" + }, + "product_reference": "rhacm2/insights-metrics-rhel8@sha256:adfd089cea6679f71e53283efb032e887238b4416d681fee182292e5d07a0396_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/insights-metrics-rhel8@sha256:b0a83c30c4355830cdf29193c8590842c0b4f80a6376b66a5e975a09948b89fe_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/insights-metrics-rhel8@sha256:b0a83c30c4355830cdf29193c8590842c0b4f80a6376b66a5e975a09948b89fe_arm64" + }, + "product_reference": "rhacm2/insights-metrics-rhel8@sha256:b0a83c30c4355830cdf29193c8590842c0b4f80a6376b66a5e975a09948b89fe_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/insights-metrics-rhel8@sha256:dc52bb88ebbfa0dbb17fd9d9a6d6ef4dc9c67d99382dd64ec366cd77298b3a5d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/insights-metrics-rhel8@sha256:dc52bb88ebbfa0dbb17fd9d9a6d6ef4dc9c67d99382dd64ec366cd77298b3a5d_ppc64le" + }, + "product_reference": "rhacm2/insights-metrics-rhel8@sha256:dc52bb88ebbfa0dbb17fd9d9a6d6ef4dc9c67d99382dd64ec366cd77298b3a5d_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:1d81133a8a2daae2be9ae84035446be5d8f32ca738f1197e0dea7e9e6df5bc87_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/klusterlet-addon-controller-rhel8@sha256:1d81133a8a2daae2be9ae84035446be5d8f32ca738f1197e0dea7e9e6df5bc87_s390x" + }, + "product_reference": "rhacm2/klusterlet-addon-controller-rhel8@sha256:1d81133a8a2daae2be9ae84035446be5d8f32ca738f1197e0dea7e9e6df5bc87_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:3ccbfbfff8ef7f38a3fd887d279677033ea1ab670f35d8521c2a8ecf66996070_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/klusterlet-addon-controller-rhel8@sha256:3ccbfbfff8ef7f38a3fd887d279677033ea1ab670f35d8521c2a8ecf66996070_ppc64le" + }, + "product_reference": "rhacm2/klusterlet-addon-controller-rhel8@sha256:3ccbfbfff8ef7f38a3fd887d279677033ea1ab670f35d8521c2a8ecf66996070_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:c2372b0d060c901e4492d8240e4ec817c46a2de5a688b5ba3f24d1c21b1a1064_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/klusterlet-addon-controller-rhel8@sha256:c2372b0d060c901e4492d8240e4ec817c46a2de5a688b5ba3f24d1c21b1a1064_arm64" + }, + "product_reference": "rhacm2/klusterlet-addon-controller-rhel8@sha256:c2372b0d060c901e4492d8240e4ec817c46a2de5a688b5ba3f24d1c21b1a1064_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:f8d8a8b8cf13be2b54f69b5689ee8a455986990dd86da7b9c7ee292d437872b8_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/klusterlet-addon-controller-rhel8@sha256:f8d8a8b8cf13be2b54f69b5689ee8a455986990dd86da7b9c7ee292d437872b8_amd64" + }, + "product_reference": "rhacm2/klusterlet-addon-controller-rhel8@sha256:f8d8a8b8cf13be2b54f69b5689ee8a455986990dd86da7b9c7ee292d437872b8_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:3e53f7641466cfb57575d655eea045b72ad0a9b727cfe8fd9fcebfead04538c9_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/kube-rbac-proxy-rhel8@sha256:3e53f7641466cfb57575d655eea045b72ad0a9b727cfe8fd9fcebfead04538c9_arm64" + }, + "product_reference": "rhacm2/kube-rbac-proxy-rhel8@sha256:3e53f7641466cfb57575d655eea045b72ad0a9b727cfe8fd9fcebfead04538c9_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:98ba161e0f36fd798e59b362259c2a7f55d0b7dc016e4231dc74f87c041923b0_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/kube-rbac-proxy-rhel8@sha256:98ba161e0f36fd798e59b362259c2a7f55d0b7dc016e4231dc74f87c041923b0_amd64" + }, + "product_reference": "rhacm2/kube-rbac-proxy-rhel8@sha256:98ba161e0f36fd798e59b362259c2a7f55d0b7dc016e4231dc74f87c041923b0_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:a26bb7fc304dd11b41e0fdca7dfab7856c545067d2df9376411a18c65c5db8e5_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/kube-rbac-proxy-rhel8@sha256:a26bb7fc304dd11b41e0fdca7dfab7856c545067d2df9376411a18c65c5db8e5_s390x" + }, + "product_reference": "rhacm2/kube-rbac-proxy-rhel8@sha256:a26bb7fc304dd11b41e0fdca7dfab7856c545067d2df9376411a18c65c5db8e5_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:e3827be6e63996d33dc5c2c680cf0e4eb9524ad35083c40c5fdd2222d18ecbad_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/kube-rbac-proxy-rhel8@sha256:e3827be6e63996d33dc5c2c680cf0e4eb9524ad35083c40c5fdd2222d18ecbad_ppc64le" + }, + "product_reference": "rhacm2/kube-rbac-proxy-rhel8@sha256:e3827be6e63996d33dc5c2c680cf0e4eb9524ad35083c40c5fdd2222d18ecbad_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/kube-state-metrics-rhel8@sha256:313fc92205aef10fe75746fe19c88b10310a4da74f2853024a6cea372b63f1cb_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/kube-state-metrics-rhel8@sha256:313fc92205aef10fe75746fe19c88b10310a4da74f2853024a6cea372b63f1cb_ppc64le" + }, + "product_reference": "rhacm2/kube-state-metrics-rhel8@sha256:313fc92205aef10fe75746fe19c88b10310a4da74f2853024a6cea372b63f1cb_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/kube-state-metrics-rhel8@sha256:326b842bb99ba476916e6cef4fd7a0db66ea49923f8c9943ba43c50d71e9595c_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/kube-state-metrics-rhel8@sha256:326b842bb99ba476916e6cef4fd7a0db66ea49923f8c9943ba43c50d71e9595c_s390x" + }, + "product_reference": "rhacm2/kube-state-metrics-rhel8@sha256:326b842bb99ba476916e6cef4fd7a0db66ea49923f8c9943ba43c50d71e9595c_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/kube-state-metrics-rhel8@sha256:907ad3c695448422c7cdc94e26d249cb792bf48bca63ebf158148e75b898beaf_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/kube-state-metrics-rhel8@sha256:907ad3c695448422c7cdc94e26d249cb792bf48bca63ebf158148e75b898beaf_arm64" + }, + "product_reference": "rhacm2/kube-state-metrics-rhel8@sha256:907ad3c695448422c7cdc94e26d249cb792bf48bca63ebf158148e75b898beaf_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/kube-state-metrics-rhel8@sha256:d5bf8f26c314ba86b92c5d2272bd582b9f31e0177727b8c1f5840f38657f88b4_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/kube-state-metrics-rhel8@sha256:d5bf8f26c314ba86b92c5d2272bd582b9f31e0177727b8c1f5840f38657f88b4_amd64" + }, + "product_reference": "rhacm2/kube-state-metrics-rhel8@sha256:d5bf8f26c314ba86b92c5d2272bd582b9f31e0177727b8c1f5840f38657f88b4_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/management-ingress-rhel8@sha256:15afd2ae756ad04616dc7678dc7e6c00eaf8bd25fec1cd32552b834f7d1afbfc_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/management-ingress-rhel8@sha256:15afd2ae756ad04616dc7678dc7e6c00eaf8bd25fec1cd32552b834f7d1afbfc_ppc64le" + }, + "product_reference": "rhacm2/management-ingress-rhel8@sha256:15afd2ae756ad04616dc7678dc7e6c00eaf8bd25fec1cd32552b834f7d1afbfc_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/management-ingress-rhel8@sha256:20f8ea5fbedad03c447c1cc92e90b89119dd3a2d84e84ea996aa8942a6a09280_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/management-ingress-rhel8@sha256:20f8ea5fbedad03c447c1cc92e90b89119dd3a2d84e84ea996aa8942a6a09280_arm64" + }, + "product_reference": "rhacm2/management-ingress-rhel8@sha256:20f8ea5fbedad03c447c1cc92e90b89119dd3a2d84e84ea996aa8942a6a09280_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/management-ingress-rhel8@sha256:3be3b5d511c7e7ad9bbfcb53a6ee92f96ee2d390ef3160a3c5bc8488e21ee747_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/management-ingress-rhel8@sha256:3be3b5d511c7e7ad9bbfcb53a6ee92f96ee2d390ef3160a3c5bc8488e21ee747_amd64" + }, + "product_reference": "rhacm2/management-ingress-rhel8@sha256:3be3b5d511c7e7ad9bbfcb53a6ee92f96ee2d390ef3160a3c5bc8488e21ee747_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/management-ingress-rhel8@sha256:7f4cec5b224f6dbf066f896f4afb3462dfc8411080575c6e59f3d924eda06e31_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/management-ingress-rhel8@sha256:7f4cec5b224f6dbf066f896f4afb3462dfc8411080575c6e59f3d924eda06e31_s390x" + }, + "product_reference": "rhacm2/management-ingress-rhel8@sha256:7f4cec5b224f6dbf066f896f4afb3462dfc8411080575c6e59f3d924eda06e31_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/memcached-exporter-rhel8@sha256:5f4cc7420bea1fdc223f68d62e1960344481d99ad4db4f0dd0b64ff7dd0fc356_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/memcached-exporter-rhel8@sha256:5f4cc7420bea1fdc223f68d62e1960344481d99ad4db4f0dd0b64ff7dd0fc356_arm64" + }, + "product_reference": "rhacm2/memcached-exporter-rhel8@sha256:5f4cc7420bea1fdc223f68d62e1960344481d99ad4db4f0dd0b64ff7dd0fc356_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/memcached-exporter-rhel8@sha256:76a958137210ca481befc1050595be4b915fb7440a0d79e090766b57f12723f8_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/memcached-exporter-rhel8@sha256:76a958137210ca481befc1050595be4b915fb7440a0d79e090766b57f12723f8_amd64" + }, + "product_reference": "rhacm2/memcached-exporter-rhel8@sha256:76a958137210ca481befc1050595be4b915fb7440a0d79e090766b57f12723f8_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/memcached-exporter-rhel8@sha256:b5dce8fe7cf6ff8ce61ab9262848e82ee41c5f5ca19ef92b5cb3a3a836b6f3de_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/memcached-exporter-rhel8@sha256:b5dce8fe7cf6ff8ce61ab9262848e82ee41c5f5ca19ef92b5cb3a3a836b6f3de_ppc64le" + }, + "product_reference": "rhacm2/memcached-exporter-rhel8@sha256:b5dce8fe7cf6ff8ce61ab9262848e82ee41c5f5ca19ef92b5cb3a3a836b6f3de_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/memcached-exporter-rhel8@sha256:c6a92af3a86073372cbb8cd1f6b58dc9c99076a422af6d9e627d458edc14d593_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/memcached-exporter-rhel8@sha256:c6a92af3a86073372cbb8cd1f6b58dc9c99076a422af6d9e627d458edc14d593_s390x" + }, + "product_reference": "rhacm2/memcached-exporter-rhel8@sha256:c6a92af3a86073372cbb8cd1f6b58dc9c99076a422af6d9e627d458edc14d593_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/memcached-rhel8@sha256:881d6ffe1241d6d45c8cd5d0e85e839a0d1360bc2f38becf21395041835af0cb_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/memcached-rhel8@sha256:881d6ffe1241d6d45c8cd5d0e85e839a0d1360bc2f38becf21395041835af0cb_ppc64le" + }, + "product_reference": "rhacm2/memcached-rhel8@sha256:881d6ffe1241d6d45c8cd5d0e85e839a0d1360bc2f38becf21395041835af0cb_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/memcached-rhel8@sha256:ab4987fd9c1aaa1a65f3af354b015515221e73219238a3f8862de9daae82635e_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/memcached-rhel8@sha256:ab4987fd9c1aaa1a65f3af354b015515221e73219238a3f8862de9daae82635e_s390x" + }, + "product_reference": "rhacm2/memcached-rhel8@sha256:ab4987fd9c1aaa1a65f3af354b015515221e73219238a3f8862de9daae82635e_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/memcached-rhel8@sha256:e9dc8d532caa5ff5aaa8f95835854228aaaa35a406316f943da8af19a44331cb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/memcached-rhel8@sha256:e9dc8d532caa5ff5aaa8f95835854228aaaa35a406316f943da8af19a44331cb_amd64" + }, + "product_reference": "rhacm2/memcached-rhel8@sha256:e9dc8d532caa5ff5aaa8f95835854228aaaa35a406316f943da8af19a44331cb_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/memcached-rhel8@sha256:edc25c1e118892294b29e528ab07fa3e4395e88c7e8549ecdd425e15962d40e1_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/memcached-rhel8@sha256:edc25c1e118892294b29e528ab07fa3e4395e88c7e8549ecdd425e15962d40e1_arm64" + }, + "product_reference": "rhacm2/memcached-rhel8@sha256:edc25c1e118892294b29e528ab07fa3e4395e88c7e8549ecdd425e15962d40e1_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/metrics-collector-rhel8@sha256:7fbf4b921d203912b8746b46cefe6d72783f8a71e58199df7d415693b0eb3f00_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/metrics-collector-rhel8@sha256:7fbf4b921d203912b8746b46cefe6d72783f8a71e58199df7d415693b0eb3f00_arm64" + }, + "product_reference": "rhacm2/metrics-collector-rhel8@sha256:7fbf4b921d203912b8746b46cefe6d72783f8a71e58199df7d415693b0eb3f00_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/metrics-collector-rhel8@sha256:a64297c63c5bb0a5691874b1c2908b2233c671250a3418d72c153382594b1df0_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/metrics-collector-rhel8@sha256:a64297c63c5bb0a5691874b1c2908b2233c671250a3418d72c153382594b1df0_amd64" + }, + "product_reference": "rhacm2/metrics-collector-rhel8@sha256:a64297c63c5bb0a5691874b1c2908b2233c671250a3418d72c153382594b1df0_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/metrics-collector-rhel8@sha256:b45633332fd01ea542df64dc46972f1f0c9ec5eb04be13bea1de7ca2ff0e1c8b_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/metrics-collector-rhel8@sha256:b45633332fd01ea542df64dc46972f1f0c9ec5eb04be13bea1de7ca2ff0e1c8b_ppc64le" + }, + "product_reference": "rhacm2/metrics-collector-rhel8@sha256:b45633332fd01ea542df64dc46972f1f0c9ec5eb04be13bea1de7ca2ff0e1c8b_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/metrics-collector-rhel8@sha256:cfac691f36d544461f0b9f11df9ad4dcfd680030068bd5fcaa3de00001955e03_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/metrics-collector-rhel8@sha256:cfac691f36d544461f0b9f11df9ad4dcfd680030068bd5fcaa3de00001955e03_s390x" + }, + "product_reference": "rhacm2/metrics-collector-rhel8@sha256:cfac691f36d544461f0b9f11df9ad4dcfd680030068bd5fcaa3de00001955e03_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicloud-integrations-rhel8@sha256:44a5e58ee9ed3e1596b8c5f3f7966afea590cd40889685465b422d01770824b0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multicloud-integrations-rhel8@sha256:44a5e58ee9ed3e1596b8c5f3f7966afea590cd40889685465b422d01770824b0_ppc64le" + }, + "product_reference": "rhacm2/multicloud-integrations-rhel8@sha256:44a5e58ee9ed3e1596b8c5f3f7966afea590cd40889685465b422d01770824b0_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicloud-integrations-rhel8@sha256:b56998d0f6c2c7de6ac612c32e162cf8d2c120f13a622e1d96d92fd15e11f81f_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multicloud-integrations-rhel8@sha256:b56998d0f6c2c7de6ac612c32e162cf8d2c120f13a622e1d96d92fd15e11f81f_arm64" + }, + "product_reference": "rhacm2/multicloud-integrations-rhel8@sha256:b56998d0f6c2c7de6ac612c32e162cf8d2c120f13a622e1d96d92fd15e11f81f_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicloud-integrations-rhel8@sha256:b6afdf659710f3b91bb0b5da1281b5306cf6dfe7e307418dfe4b029353731630_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multicloud-integrations-rhel8@sha256:b6afdf659710f3b91bb0b5da1281b5306cf6dfe7e307418dfe4b029353731630_s390x" + }, + "product_reference": "rhacm2/multicloud-integrations-rhel8@sha256:b6afdf659710f3b91bb0b5da1281b5306cf6dfe7e307418dfe4b029353731630_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicloud-integrations-rhel8@sha256:e0525e0b945fdc89c18b9bb9fc0ef728f38bc288cd81fae5b3ddcd5f008c39df_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multicloud-integrations-rhel8@sha256:e0525e0b945fdc89c18b9bb9fc0ef728f38bc288cd81fae5b3ddcd5f008c39df_amd64" + }, + "product_reference": "rhacm2/multicloud-integrations-rhel8@sha256:e0525e0b945fdc89c18b9bb9fc0ef728f38bc288cd81fae5b3ddcd5f008c39df_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:07bf623b7da6a21239ae701a149dc4818d6442cfc25dcca8c1190aed63582645_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multicluster-observability-rhel8-operator@sha256:07bf623b7da6a21239ae701a149dc4818d6442cfc25dcca8c1190aed63582645_arm64" + }, + "product_reference": "rhacm2/multicluster-observability-rhel8-operator@sha256:07bf623b7da6a21239ae701a149dc4818d6442cfc25dcca8c1190aed63582645_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:2e1b3d0c028ea243f3de0e603b5762fef8dc424b0c4851450484c47cd5e428c5_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multicluster-observability-rhel8-operator@sha256:2e1b3d0c028ea243f3de0e603b5762fef8dc424b0c4851450484c47cd5e428c5_s390x" + }, + "product_reference": "rhacm2/multicluster-observability-rhel8-operator@sha256:2e1b3d0c028ea243f3de0e603b5762fef8dc424b0c4851450484c47cd5e428c5_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:452334dd5f45c01e0843576e6e559e24eb256cfc2444aad1db3f871c14abaae0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multicluster-observability-rhel8-operator@sha256:452334dd5f45c01e0843576e6e559e24eb256cfc2444aad1db3f871c14abaae0_ppc64le" + }, + "product_reference": "rhacm2/multicluster-observability-rhel8-operator@sha256:452334dd5f45c01e0843576e6e559e24eb256cfc2444aad1db3f871c14abaae0_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:5132d8d65b3e7a17ca7995b0540cd2e260194495950807f16e2aa15a46bd077d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multicluster-observability-rhel8-operator@sha256:5132d8d65b3e7a17ca7995b0540cd2e260194495950807f16e2aa15a46bd077d_amd64" + }, + "product_reference": "rhacm2/multicluster-observability-rhel8-operator@sha256:5132d8d65b3e7a17ca7995b0540cd2e260194495950807f16e2aa15a46bd077d_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:49d5b3a14be0389434a18037011d9e865e3e70bda941904e67421ca43754b291_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multicluster-operators-application-rhel8@sha256:49d5b3a14be0389434a18037011d9e865e3e70bda941904e67421ca43754b291_ppc64le" + }, + "product_reference": "rhacm2/multicluster-operators-application-rhel8@sha256:49d5b3a14be0389434a18037011d9e865e3e70bda941904e67421ca43754b291_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:6b70cbea821515eed80840d6682f9edaccb96dff35b16f1687981a3deefb0d8a_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multicluster-operators-application-rhel8@sha256:6b70cbea821515eed80840d6682f9edaccb96dff35b16f1687981a3deefb0d8a_s390x" + }, + "product_reference": "rhacm2/multicluster-operators-application-rhel8@sha256:6b70cbea821515eed80840d6682f9edaccb96dff35b16f1687981a3deefb0d8a_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:b23fd7ae112056410ddd6f83a1a8af8cb609fcce37c10b4438e5d54f7b67ef64_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multicluster-operators-application-rhel8@sha256:b23fd7ae112056410ddd6f83a1a8af8cb609fcce37c10b4438e5d54f7b67ef64_amd64" + }, + "product_reference": "rhacm2/multicluster-operators-application-rhel8@sha256:b23fd7ae112056410ddd6f83a1a8af8cb609fcce37c10b4438e5d54f7b67ef64_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:d2e9c3b52c106237662873984fc0c0205afaab7427a61726c658f331caa77507_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multicluster-operators-application-rhel8@sha256:d2e9c3b52c106237662873984fc0c0205afaab7427a61726c658f331caa77507_arm64" + }, + "product_reference": "rhacm2/multicluster-operators-application-rhel8@sha256:d2e9c3b52c106237662873984fc0c0205afaab7427a61726c658f331caa77507_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:4424829a1a91ff7540f1ac01f4b6f2090d65810303169753ef197e95dc9315cc_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multicluster-operators-channel-rhel8@sha256:4424829a1a91ff7540f1ac01f4b6f2090d65810303169753ef197e95dc9315cc_arm64" + }, + "product_reference": "rhacm2/multicluster-operators-channel-rhel8@sha256:4424829a1a91ff7540f1ac01f4b6f2090d65810303169753ef197e95dc9315cc_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:80f5a3dadcc737d900b9e4cc54ed67ee8c18da8e6dd05c217cf4fbcaa0f7dada_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multicluster-operators-channel-rhel8@sha256:80f5a3dadcc737d900b9e4cc54ed67ee8c18da8e6dd05c217cf4fbcaa0f7dada_amd64" + }, + "product_reference": "rhacm2/multicluster-operators-channel-rhel8@sha256:80f5a3dadcc737d900b9e4cc54ed67ee8c18da8e6dd05c217cf4fbcaa0f7dada_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:c59137b491324a1557768b4adb4433cd4513ca70b9cf7a230987291e781f42a6_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multicluster-operators-channel-rhel8@sha256:c59137b491324a1557768b4adb4433cd4513ca70b9cf7a230987291e781f42a6_ppc64le" + }, + "product_reference": "rhacm2/multicluster-operators-channel-rhel8@sha256:c59137b491324a1557768b4adb4433cd4513ca70b9cf7a230987291e781f42a6_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:cef347bab739ad4581ee1b6856c7a115bf3b4283821f8a87473e123eac3e843c_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multicluster-operators-channel-rhel8@sha256:cef347bab739ad4581ee1b6856c7a115bf3b4283821f8a87473e123eac3e843c_s390x" + }, + "product_reference": "rhacm2/multicluster-operators-channel-rhel8@sha256:cef347bab739ad4581ee1b6856c7a115bf3b4283821f8a87473e123eac3e843c_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:9d6dc96bb71f4a98bb2a22f27554996da153c111bd471c959f202bfaa20a09e2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multicluster-operators-subscription-rhel8@sha256:9d6dc96bb71f4a98bb2a22f27554996da153c111bd471c959f202bfaa20a09e2_amd64" + }, + "product_reference": "rhacm2/multicluster-operators-subscription-rhel8@sha256:9d6dc96bb71f4a98bb2a22f27554996da153c111bd471c959f202bfaa20a09e2_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:bfb0eeba13fee57aab468e56123532bb2e27cf5a2e7670bdd5eb2bff77d35247_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multicluster-operators-subscription-rhel8@sha256:bfb0eeba13fee57aab468e56123532bb2e27cf5a2e7670bdd5eb2bff77d35247_ppc64le" + }, + "product_reference": "rhacm2/multicluster-operators-subscription-rhel8@sha256:bfb0eeba13fee57aab468e56123532bb2e27cf5a2e7670bdd5eb2bff77d35247_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:c0ab119c13aec1763d479ab66f4767d9fdd7a0e042794c78f936d9800db38c34_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multicluster-operators-subscription-rhel8@sha256:c0ab119c13aec1763d479ab66f4767d9fdd7a0e042794c78f936d9800db38c34_s390x" + }, + "product_reference": "rhacm2/multicluster-operators-subscription-rhel8@sha256:c0ab119c13aec1763d479ab66f4767d9fdd7a0e042794c78f936d9800db38c34_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:fb2a632fbb1d442bc5f9f6c8e74494755a0f5ba9e186b93c5fcbdfb51979e780_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multicluster-operators-subscription-rhel8@sha256:fb2a632fbb1d442bc5f9f6c8e74494755a0f5ba9e186b93c5fcbdfb51979e780_arm64" + }, + "product_reference": "rhacm2/multicluster-operators-subscription-rhel8@sha256:fb2a632fbb1d442bc5f9f6c8e74494755a0f5ba9e186b93c5fcbdfb51979e780_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multiclusterhub-repo-rhel8@sha256:1048748add6fe918de9ec3b5784ce7f364544fc6f1f98932494fe548a88112e9_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multiclusterhub-repo-rhel8@sha256:1048748add6fe918de9ec3b5784ce7f364544fc6f1f98932494fe548a88112e9_arm64" + }, + "product_reference": "rhacm2/multiclusterhub-repo-rhel8@sha256:1048748add6fe918de9ec3b5784ce7f364544fc6f1f98932494fe548a88112e9_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multiclusterhub-repo-rhel8@sha256:8506141e005b636aa67e3ef761ae403580223b9266c3e9f3e33a19b2aebf4f73_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multiclusterhub-repo-rhel8@sha256:8506141e005b636aa67e3ef761ae403580223b9266c3e9f3e33a19b2aebf4f73_ppc64le" + }, + "product_reference": "rhacm2/multiclusterhub-repo-rhel8@sha256:8506141e005b636aa67e3ef761ae403580223b9266c3e9f3e33a19b2aebf4f73_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multiclusterhub-repo-rhel8@sha256:bd7dfc526cc667b13d33e0e1dbcc5179a8ac9590a12adbc424ae4f10495b2196_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multiclusterhub-repo-rhel8@sha256:bd7dfc526cc667b13d33e0e1dbcc5179a8ac9590a12adbc424ae4f10495b2196_s390x" + }, + "product_reference": "rhacm2/multiclusterhub-repo-rhel8@sha256:bd7dfc526cc667b13d33e0e1dbcc5179a8ac9590a12adbc424ae4f10495b2196_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multiclusterhub-repo-rhel8@sha256:d1423824ee2c1288e8c56d470ca8ac1fb82f5374acb7111a9b736598f2043d1d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multiclusterhub-repo-rhel8@sha256:d1423824ee2c1288e8c56d470ca8ac1fb82f5374acb7111a9b736598f2043d1d_amd64" + }, + "product_reference": "rhacm2/multiclusterhub-repo-rhel8@sha256:d1423824ee2c1288e8c56d470ca8ac1fb82f5374acb7111a9b736598f2043d1d_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multiclusterhub-rhel8@sha256:2b3f402dccbde738a7b212d0d92e79511974af296229f0179df98ad18d574298_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multiclusterhub-rhel8@sha256:2b3f402dccbde738a7b212d0d92e79511974af296229f0179df98ad18d574298_s390x" + }, + "product_reference": "rhacm2/multiclusterhub-rhel8@sha256:2b3f402dccbde738a7b212d0d92e79511974af296229f0179df98ad18d574298_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multiclusterhub-rhel8@sha256:9903154a3b36a4255951e5b2f1c369987c0af796d890e2400304a9f64cd7d8a2_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multiclusterhub-rhel8@sha256:9903154a3b36a4255951e5b2f1c369987c0af796d890e2400304a9f64cd7d8a2_ppc64le" + }, + "product_reference": "rhacm2/multiclusterhub-rhel8@sha256:9903154a3b36a4255951e5b2f1c369987c0af796d890e2400304a9f64cd7d8a2_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multiclusterhub-rhel8@sha256:a3311e48fbf48dbb7165f44810e526031c24b4b756a6972fc2bbf8d6a8583c44_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multiclusterhub-rhel8@sha256:a3311e48fbf48dbb7165f44810e526031c24b4b756a6972fc2bbf8d6a8583c44_amd64" + }, + "product_reference": "rhacm2/multiclusterhub-rhel8@sha256:a3311e48fbf48dbb7165f44810e526031c24b4b756a6972fc2bbf8d6a8583c44_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multiclusterhub-rhel8@sha256:bb05deb3986ea92b9e59499085f94d122b36b329819e4411adad5ce7dc37e067_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/multiclusterhub-rhel8@sha256:bb05deb3986ea92b9e59499085f94d122b36b329819e4411adad5ce7dc37e067_arm64" + }, + "product_reference": "rhacm2/multiclusterhub-rhel8@sha256:bb05deb3986ea92b9e59499085f94d122b36b329819e4411adad5ce7dc37e067_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/node-exporter-rhel8@sha256:2b2a1911b9d808f95f1e2190557a767e66d60059d06097243bc293f534770897_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/node-exporter-rhel8@sha256:2b2a1911b9d808f95f1e2190557a767e66d60059d06097243bc293f534770897_amd64" + }, + "product_reference": "rhacm2/node-exporter-rhel8@sha256:2b2a1911b9d808f95f1e2190557a767e66d60059d06097243bc293f534770897_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/node-exporter-rhel8@sha256:4887507bf49f93f91e438f54396d1ae5f25d3919e204b62a6946eff22ca55c3c_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/node-exporter-rhel8@sha256:4887507bf49f93f91e438f54396d1ae5f25d3919e204b62a6946eff22ca55c3c_ppc64le" + }, + "product_reference": "rhacm2/node-exporter-rhel8@sha256:4887507bf49f93f91e438f54396d1ae5f25d3919e204b62a6946eff22ca55c3c_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/node-exporter-rhel8@sha256:604a4b2552947d0dd3f6335416b0eacf4e51869cda8976e723e273c66ceadd21_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/node-exporter-rhel8@sha256:604a4b2552947d0dd3f6335416b0eacf4e51869cda8976e723e273c66ceadd21_s390x" + }, + "product_reference": "rhacm2/node-exporter-rhel8@sha256:604a4b2552947d0dd3f6335416b0eacf4e51869cda8976e723e273c66ceadd21_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/node-exporter-rhel8@sha256:9c3756745f03a35de4527eb10e763cb183ccd0f44ddb843d25c97b5b470f0725_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/node-exporter-rhel8@sha256:9c3756745f03a35de4527eb10e763cb183ccd0f44ddb843d25c97b5b470f0725_arm64" + }, + "product_reference": "rhacm2/node-exporter-rhel8@sha256:9c3756745f03a35de4527eb10e763cb183ccd0f44ddb843d25c97b5b470f0725_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/observatorium-rhel8-operator@sha256:1024ad0e67b17f01a7e150a4ea0d36cb00a76526a1dbef8dce7f0fc83b845028_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/observatorium-rhel8-operator@sha256:1024ad0e67b17f01a7e150a4ea0d36cb00a76526a1dbef8dce7f0fc83b845028_ppc64le" + }, + "product_reference": "rhacm2/observatorium-rhel8-operator@sha256:1024ad0e67b17f01a7e150a4ea0d36cb00a76526a1dbef8dce7f0fc83b845028_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/observatorium-rhel8-operator@sha256:1c72d9cdc384f7c5a8f170fcda69eb3e6bc452d4195fb16d2a2a13721d2f9837_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/observatorium-rhel8-operator@sha256:1c72d9cdc384f7c5a8f170fcda69eb3e6bc452d4195fb16d2a2a13721d2f9837_s390x" + }, + "product_reference": "rhacm2/observatorium-rhel8-operator@sha256:1c72d9cdc384f7c5a8f170fcda69eb3e6bc452d4195fb16d2a2a13721d2f9837_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/observatorium-rhel8-operator@sha256:5e630cc810dfe88aad2c3df4a73bd7422ecb7ed41b953b25bea521810bc269ce_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/observatorium-rhel8-operator@sha256:5e630cc810dfe88aad2c3df4a73bd7422ecb7ed41b953b25bea521810bc269ce_amd64" + }, + "product_reference": "rhacm2/observatorium-rhel8-operator@sha256:5e630cc810dfe88aad2c3df4a73bd7422ecb7ed41b953b25bea521810bc269ce_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/observatorium-rhel8-operator@sha256:be0b623dd01d0f2d77203c48b91d84c47da6500e8643dab6206cdaae2c677095_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/observatorium-rhel8-operator@sha256:be0b623dd01d0f2d77203c48b91d84c47da6500e8643dab6206cdaae2c677095_arm64" + }, + "product_reference": "rhacm2/observatorium-rhel8-operator@sha256:be0b623dd01d0f2d77203c48b91d84c47da6500e8643dab6206cdaae2c677095_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/observatorium-rhel8@sha256:00fe1e7400d7665bff0b6d778c4801243cf2450cf94ba8dca726aa96dc65294b_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/observatorium-rhel8@sha256:00fe1e7400d7665bff0b6d778c4801243cf2450cf94ba8dca726aa96dc65294b_amd64" + }, + "product_reference": "rhacm2/observatorium-rhel8@sha256:00fe1e7400d7665bff0b6d778c4801243cf2450cf94ba8dca726aa96dc65294b_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/observatorium-rhel8@sha256:2973c12aead110b123433b0c7dd3f562fc8c9f6d6133d7b23e0bdf980d079041_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/observatorium-rhel8@sha256:2973c12aead110b123433b0c7dd3f562fc8c9f6d6133d7b23e0bdf980d079041_arm64" + }, + "product_reference": "rhacm2/observatorium-rhel8@sha256:2973c12aead110b123433b0c7dd3f562fc8c9f6d6133d7b23e0bdf980d079041_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/observatorium-rhel8@sha256:3f38723b51b364474f22839e68ead658a24abe195570a292f52b36476c7fb3d2_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/observatorium-rhel8@sha256:3f38723b51b364474f22839e68ead658a24abe195570a292f52b36476c7fb3d2_ppc64le" + }, + "product_reference": "rhacm2/observatorium-rhel8@sha256:3f38723b51b364474f22839e68ead658a24abe195570a292f52b36476c7fb3d2_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/observatorium-rhel8@sha256:4d86b921b410a9ae1b17ca5e96dc42b6eb064e1832e07df58e08cba54d4fbf16_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/observatorium-rhel8@sha256:4d86b921b410a9ae1b17ca5e96dc42b6eb064e1832e07df58e08cba54d4fbf16_s390x" + }, + "product_reference": "rhacm2/observatorium-rhel8@sha256:4d86b921b410a9ae1b17ca5e96dc42b6eb064e1832e07df58e08cba54d4fbf16_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:1a14df039768c8a2fd5f54a8336ed9ca83385811e46336a5f592b8a3914c8f7f_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/prometheus-alertmanager-rhel8@sha256:1a14df039768c8a2fd5f54a8336ed9ca83385811e46336a5f592b8a3914c8f7f_s390x" + }, + "product_reference": "rhacm2/prometheus-alertmanager-rhel8@sha256:1a14df039768c8a2fd5f54a8336ed9ca83385811e46336a5f592b8a3914c8f7f_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:5803b3954a9b51c105ccb5f62fcf8221a7b95492deed5372ca099e2915bbc14f_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/prometheus-alertmanager-rhel8@sha256:5803b3954a9b51c105ccb5f62fcf8221a7b95492deed5372ca099e2915bbc14f_ppc64le" + }, + "product_reference": "rhacm2/prometheus-alertmanager-rhel8@sha256:5803b3954a9b51c105ccb5f62fcf8221a7b95492deed5372ca099e2915bbc14f_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:99f5bbd89e595a682c21d1d43ec05547103efe8444583da114d62ec89ca3c162_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/prometheus-alertmanager-rhel8@sha256:99f5bbd89e595a682c21d1d43ec05547103efe8444583da114d62ec89ca3c162_amd64" + }, + "product_reference": "rhacm2/prometheus-alertmanager-rhel8@sha256:99f5bbd89e595a682c21d1d43ec05547103efe8444583da114d62ec89ca3c162_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:a39f4c45679ce904890315d93aaff2bb54d9001dec00345a9b5a4d88f818b860_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/prometheus-alertmanager-rhel8@sha256:a39f4c45679ce904890315d93aaff2bb54d9001dec00345a9b5a4d88f818b860_arm64" + }, + "product_reference": "rhacm2/prometheus-alertmanager-rhel8@sha256:a39f4c45679ce904890315d93aaff2bb54d9001dec00345a9b5a4d88f818b860_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/prometheus-rhel8@sha256:0fafb9f039a1eae3f491ee18fe736e2c233dcbb84089edf8dfc61fd31a934062_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/prometheus-rhel8@sha256:0fafb9f039a1eae3f491ee18fe736e2c233dcbb84089edf8dfc61fd31a934062_arm64" + }, + "product_reference": "rhacm2/prometheus-rhel8@sha256:0fafb9f039a1eae3f491ee18fe736e2c233dcbb84089edf8dfc61fd31a934062_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/prometheus-rhel8@sha256:2fa9582d314b606dfcc18b531872ce2fc3ac088e2f30306358b2d6153c1b2607_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/prometheus-rhel8@sha256:2fa9582d314b606dfcc18b531872ce2fc3ac088e2f30306358b2d6153c1b2607_ppc64le" + }, + "product_reference": "rhacm2/prometheus-rhel8@sha256:2fa9582d314b606dfcc18b531872ce2fc3ac088e2f30306358b2d6153c1b2607_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/prometheus-rhel8@sha256:416c680229ac711c283748dc78badb8460bf3f304c9ff9d90b4cef05edd9c845_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/prometheus-rhel8@sha256:416c680229ac711c283748dc78badb8460bf3f304c9ff9d90b4cef05edd9c845_s390x" + }, + "product_reference": "rhacm2/prometheus-rhel8@sha256:416c680229ac711c283748dc78badb8460bf3f304c9ff9d90b4cef05edd9c845_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/prometheus-rhel8@sha256:dd9b4a171a2acd42094d7fa6fd3a20b89fa30794ea322ad5a02767cd0d5b13c5_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/prometheus-rhel8@sha256:dd9b4a171a2acd42094d7fa6fd3a20b89fa30794ea322ad5a02767cd0d5b13c5_amd64" + }, + "product_reference": "rhacm2/prometheus-rhel8@sha256:dd9b4a171a2acd42094d7fa6fd3a20b89fa30794ea322ad5a02767cd0d5b13c5_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:0b01f8782453167af4d2bb3549d2215eeaf75813d6f39a5cfbd06d9cb063d59f_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/rbac-query-proxy-rhel8@sha256:0b01f8782453167af4d2bb3549d2215eeaf75813d6f39a5cfbd06d9cb063d59f_ppc64le" + }, + "product_reference": "rhacm2/rbac-query-proxy-rhel8@sha256:0b01f8782453167af4d2bb3549d2215eeaf75813d6f39a5cfbd06d9cb063d59f_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:285bf0611954d06a9dd3cb4c9962fa5c187e25bf4deebc1abcff6c9337fb1291_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/rbac-query-proxy-rhel8@sha256:285bf0611954d06a9dd3cb4c9962fa5c187e25bf4deebc1abcff6c9337fb1291_amd64" + }, + "product_reference": "rhacm2/rbac-query-proxy-rhel8@sha256:285bf0611954d06a9dd3cb4c9962fa5c187e25bf4deebc1abcff6c9337fb1291_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:6e31334cbec6e7976d6feb3ace7eab198dd902b6665de583fb8eb0a212230135_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/rbac-query-proxy-rhel8@sha256:6e31334cbec6e7976d6feb3ace7eab198dd902b6665de583fb8eb0a212230135_s390x" + }, + "product_reference": "rhacm2/rbac-query-proxy-rhel8@sha256:6e31334cbec6e7976d6feb3ace7eab198dd902b6665de583fb8eb0a212230135_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:de3202b433bde6aed32c597d1db9acb85c9e9de622189cdcfe8713a5782cfb08_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/rbac-query-proxy-rhel8@sha256:de3202b433bde6aed32c597d1db9acb85c9e9de622189cdcfe8713a5782cfb08_arm64" + }, + "product_reference": "rhacm2/rbac-query-proxy-rhel8@sha256:de3202b433bde6aed32c597d1db9acb85c9e9de622189cdcfe8713a5782cfb08_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/redisgraph-tls-rhel8@sha256:98027a18467dc3c44ff2529ee1fa3986d3f7b43f163bd89732b87f1f99512646_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/redisgraph-tls-rhel8@sha256:98027a18467dc3c44ff2529ee1fa3986d3f7b43f163bd89732b87f1f99512646_arm64" + }, + "product_reference": "rhacm2/redisgraph-tls-rhel8@sha256:98027a18467dc3c44ff2529ee1fa3986d3f7b43f163bd89732b87f1f99512646_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/redisgraph-tls-rhel8@sha256:998ce9ac5a57b01d0713d94f95f8ddd8be327d72a7a2d18217251733d78c853d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/redisgraph-tls-rhel8@sha256:998ce9ac5a57b01d0713d94f95f8ddd8be327d72a7a2d18217251733d78c853d_amd64" + }, + "product_reference": "rhacm2/redisgraph-tls-rhel8@sha256:998ce9ac5a57b01d0713d94f95f8ddd8be327d72a7a2d18217251733d78c853d_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/redisgraph-tls-rhel8@sha256:a47f1e7553291c0a43f94e067a98ea24efc47e5b8a84dcc24985f00aba0d2726_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/redisgraph-tls-rhel8@sha256:a47f1e7553291c0a43f94e067a98ea24efc47e5b8a84dcc24985f00aba0d2726_s390x" + }, + "product_reference": "rhacm2/redisgraph-tls-rhel8@sha256:a47f1e7553291c0a43f94e067a98ea24efc47e5b8a84dcc24985f00aba0d2726_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/redisgraph-tls-rhel8@sha256:dce2ffb6a274301a5a5ecf742cce17698e2bfd68d7a15ab492cec96c1374f495_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/redisgraph-tls-rhel8@sha256:dce2ffb6a274301a5a5ecf742cce17698e2bfd68d7a15ab492cec96c1374f495_ppc64le" + }, + "product_reference": "rhacm2/redisgraph-tls-rhel8@sha256:dce2ffb6a274301a5a5ecf742cce17698e2bfd68d7a15ab492cec96c1374f495_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/search-aggregator-rhel8@sha256:465f1351d66f28d46663fb4af4e7725e8d799a267bc816838eb83172fb82e509_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/search-aggregator-rhel8@sha256:465f1351d66f28d46663fb4af4e7725e8d799a267bc816838eb83172fb82e509_arm64" + }, + "product_reference": "rhacm2/search-aggregator-rhel8@sha256:465f1351d66f28d46663fb4af4e7725e8d799a267bc816838eb83172fb82e509_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/search-aggregator-rhel8@sha256:51888c504d51b1a3abd343f407774925bed5f0ec01087c6b0ded34a8b547916c_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/search-aggregator-rhel8@sha256:51888c504d51b1a3abd343f407774925bed5f0ec01087c6b0ded34a8b547916c_amd64" + }, + "product_reference": "rhacm2/search-aggregator-rhel8@sha256:51888c504d51b1a3abd343f407774925bed5f0ec01087c6b0ded34a8b547916c_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/search-aggregator-rhel8@sha256:a94e20af3a36c0cd45f3440a0c9673818dd1e05a27f29568722937b46c0fb079_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/search-aggregator-rhel8@sha256:a94e20af3a36c0cd45f3440a0c9673818dd1e05a27f29568722937b46c0fb079_s390x" + }, + "product_reference": "rhacm2/search-aggregator-rhel8@sha256:a94e20af3a36c0cd45f3440a0c9673818dd1e05a27f29568722937b46c0fb079_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/search-aggregator-rhel8@sha256:afaf5779cf928369aec98aeb1dbaffb4cb3194659201c4e7eda232034b8addc2_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/search-aggregator-rhel8@sha256:afaf5779cf928369aec98aeb1dbaffb4cb3194659201c4e7eda232034b8addc2_ppc64le" + }, + "product_reference": "rhacm2/search-aggregator-rhel8@sha256:afaf5779cf928369aec98aeb1dbaffb4cb3194659201c4e7eda232034b8addc2_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/search-api-rhel8@sha256:6388fc4edbceee488ccccb50db788df7fd46f643402e7fabf3f11091eb645cd3_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/search-api-rhel8@sha256:6388fc4edbceee488ccccb50db788df7fd46f643402e7fabf3f11091eb645cd3_ppc64le" + }, + "product_reference": "rhacm2/search-api-rhel8@sha256:6388fc4edbceee488ccccb50db788df7fd46f643402e7fabf3f11091eb645cd3_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/search-api-rhel8@sha256:d319423c8ae05292ff341bda4ba59e31b48aea560bd8749d5932bfb930fd564b_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/search-api-rhel8@sha256:d319423c8ae05292ff341bda4ba59e31b48aea560bd8749d5932bfb930fd564b_arm64" + }, + "product_reference": "rhacm2/search-api-rhel8@sha256:d319423c8ae05292ff341bda4ba59e31b48aea560bd8749d5932bfb930fd564b_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/search-api-rhel8@sha256:f42a0c860fb6f84a6d1f49eebc408cdb0ae545259c9cb0f669af193216153f6f_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/search-api-rhel8@sha256:f42a0c860fb6f84a6d1f49eebc408cdb0ae545259c9cb0f669af193216153f6f_amd64" + }, + "product_reference": "rhacm2/search-api-rhel8@sha256:f42a0c860fb6f84a6d1f49eebc408cdb0ae545259c9cb0f669af193216153f6f_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/search-api-rhel8@sha256:f877b687db8c83e2077f70e9c0d92dc84ef330d47dd3a2a548156c3c479d151f_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/search-api-rhel8@sha256:f877b687db8c83e2077f70e9c0d92dc84ef330d47dd3a2a548156c3c479d151f_s390x" + }, + "product_reference": "rhacm2/search-api-rhel8@sha256:f877b687db8c83e2077f70e9c0d92dc84ef330d47dd3a2a548156c3c479d151f_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/search-collector-rhel8@sha256:05559e55506c1d29fb4aef499e9e1f42f8b4e32e2b14dc2d665a751e0c5fc9c8_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/search-collector-rhel8@sha256:05559e55506c1d29fb4aef499e9e1f42f8b4e32e2b14dc2d665a751e0c5fc9c8_arm64" + }, + "product_reference": "rhacm2/search-collector-rhel8@sha256:05559e55506c1d29fb4aef499e9e1f42f8b4e32e2b14dc2d665a751e0c5fc9c8_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/search-collector-rhel8@sha256:a6cd92b570fa2d6aafcde2ff672909fab1c2ec461a725898e646266454967baf_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/search-collector-rhel8@sha256:a6cd92b570fa2d6aafcde2ff672909fab1c2ec461a725898e646266454967baf_amd64" + }, + "product_reference": "rhacm2/search-collector-rhel8@sha256:a6cd92b570fa2d6aafcde2ff672909fab1c2ec461a725898e646266454967baf_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/search-collector-rhel8@sha256:c6cc24ea2661fb8b46b9475f17339e7e449270bfb18a33e0f48cabefd59535b2_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/search-collector-rhel8@sha256:c6cc24ea2661fb8b46b9475f17339e7e449270bfb18a33e0f48cabefd59535b2_ppc64le" + }, + "product_reference": "rhacm2/search-collector-rhel8@sha256:c6cc24ea2661fb8b46b9475f17339e7e449270bfb18a33e0f48cabefd59535b2_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/search-collector-rhel8@sha256:dd5c05f9efe67fac19225b8c1217f6a6f2b0231fa7df472ec8611f84eb7b23dd_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/search-collector-rhel8@sha256:dd5c05f9efe67fac19225b8c1217f6a6f2b0231fa7df472ec8611f84eb7b23dd_s390x" + }, + "product_reference": "rhacm2/search-collector-rhel8@sha256:dd5c05f9efe67fac19225b8c1217f6a6f2b0231fa7df472ec8611f84eb7b23dd_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/search-rhel8@sha256:49143b01565d10a5cad92339ea0610cc3f41f1369496acc44552aaf3b633f915_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/search-rhel8@sha256:49143b01565d10a5cad92339ea0610cc3f41f1369496acc44552aaf3b633f915_amd64" + }, + "product_reference": "rhacm2/search-rhel8@sha256:49143b01565d10a5cad92339ea0610cc3f41f1369496acc44552aaf3b633f915_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/search-rhel8@sha256:592edd12c4a506c3150738df2df16bdefe96d0b0c5a6cefd912ed2a941af8f1e_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/search-rhel8@sha256:592edd12c4a506c3150738df2df16bdefe96d0b0c5a6cefd912ed2a941af8f1e_ppc64le" + }, + "product_reference": "rhacm2/search-rhel8@sha256:592edd12c4a506c3150738df2df16bdefe96d0b0c5a6cefd912ed2a941af8f1e_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/search-rhel8@sha256:6491797522cd2169accd2398d7e10601e4e2f487d3ef50cd59656724f5162533_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/search-rhel8@sha256:6491797522cd2169accd2398d7e10601e4e2f487d3ef50cd59656724f5162533_arm64" + }, + "product_reference": "rhacm2/search-rhel8@sha256:6491797522cd2169accd2398d7e10601e4e2f487d3ef50cd59656724f5162533_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/search-rhel8@sha256:acbc3116ddd9a68dd1a4448b130744f0d083b1818ee6978e79f18250c558e936_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/search-rhel8@sha256:acbc3116ddd9a68dd1a4448b130744f0d083b1818ee6978e79f18250c558e936_s390x" + }, + "product_reference": "rhacm2/search-rhel8@sha256:acbc3116ddd9a68dd1a4448b130744f0d083b1818ee6978e79f18250c558e936_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/submariner-addon-rhel8@sha256:024ad93e72022e0f203383ec4645b1eb13f07fe848fc77a1a73b3cb9b1ae497b_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/submariner-addon-rhel8@sha256:024ad93e72022e0f203383ec4645b1eb13f07fe848fc77a1a73b3cb9b1ae497b_s390x" + }, + "product_reference": "rhacm2/submariner-addon-rhel8@sha256:024ad93e72022e0f203383ec4645b1eb13f07fe848fc77a1a73b3cb9b1ae497b_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/submariner-addon-rhel8@sha256:1a4375944fa8d3a7a2d8e76b8354ccd1c1c9ed24577e3d55f9cf2ec3205cbac0_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/submariner-addon-rhel8@sha256:1a4375944fa8d3a7a2d8e76b8354ccd1c1c9ed24577e3d55f9cf2ec3205cbac0_amd64" + }, + "product_reference": "rhacm2/submariner-addon-rhel8@sha256:1a4375944fa8d3a7a2d8e76b8354ccd1c1c9ed24577e3d55f9cf2ec3205cbac0_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/submariner-addon-rhel8@sha256:5eccd72234d1e14ab909bb5b6940e2669ae7b0e7773e1d6603f65be1fdd216bd_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/submariner-addon-rhel8@sha256:5eccd72234d1e14ab909bb5b6940e2669ae7b0e7773e1d6603f65be1fdd216bd_arm64" + }, + "product_reference": "rhacm2/submariner-addon-rhel8@sha256:5eccd72234d1e14ab909bb5b6940e2669ae7b0e7773e1d6603f65be1fdd216bd_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/submariner-addon-rhel8@sha256:ca52c6c893205219efe5cf26c3a90aa8f74e4519eb2440415254f6a16cd65c1f_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/submariner-addon-rhel8@sha256:ca52c6c893205219efe5cf26c3a90aa8f74e4519eb2440415254f6a16cd65c1f_ppc64le" + }, + "product_reference": "rhacm2/submariner-addon-rhel8@sha256:ca52c6c893205219efe5cf26c3a90aa8f74e4519eb2440415254f6a16cd65c1f_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:5d52980539e3fe292d178b066ebdf214b81120e18cd6e86a4133be201388266a_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/thanos-receive-controller-rhel8@sha256:5d52980539e3fe292d178b066ebdf214b81120e18cd6e86a4133be201388266a_amd64" + }, + "product_reference": "rhacm2/thanos-receive-controller-rhel8@sha256:5d52980539e3fe292d178b066ebdf214b81120e18cd6e86a4133be201388266a_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:8840719e7e4a4eff44473b9b8870c326abaa01993f4148fa25066525ba3991fb_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/thanos-receive-controller-rhel8@sha256:8840719e7e4a4eff44473b9b8870c326abaa01993f4148fa25066525ba3991fb_arm64" + }, + "product_reference": "rhacm2/thanos-receive-controller-rhel8@sha256:8840719e7e4a4eff44473b9b8870c326abaa01993f4148fa25066525ba3991fb_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:b4c607562916c00520c19bfc616eaff2552a4f91279baee06d7d2905ee57bf17_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/thanos-receive-controller-rhel8@sha256:b4c607562916c00520c19bfc616eaff2552a4f91279baee06d7d2905ee57bf17_ppc64le" + }, + "product_reference": "rhacm2/thanos-receive-controller-rhel8@sha256:b4c607562916c00520c19bfc616eaff2552a4f91279baee06d7d2905ee57bf17_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:f922a4bc39253f0f4a2d52c6d7d8628644dc449a01ad0580b2dcdc0e91eb9044_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/thanos-receive-controller-rhel8@sha256:f922a4bc39253f0f4a2d52c6d7d8628644dc449a01ad0580b2dcdc0e91eb9044_s390x" + }, + "product_reference": "rhacm2/thanos-receive-controller-rhel8@sha256:f922a4bc39253f0f4a2d52c6d7d8628644dc449a01ad0580b2dcdc0e91eb9044_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/thanos-rhel8@sha256:3c3db5aaa9d465e66baab189ced74f8e6485115930fd148117f7ea4048c84274_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/thanos-rhel8@sha256:3c3db5aaa9d465e66baab189ced74f8e6485115930fd148117f7ea4048c84274_arm64" + }, + "product_reference": "rhacm2/thanos-rhel8@sha256:3c3db5aaa9d465e66baab189ced74f8e6485115930fd148117f7ea4048c84274_arm64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/thanos-rhel8@sha256:40898f7daa28976e247b0ffb66d4993ca0fc9f8e6cf9b657630616d29cffea04_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/thanos-rhel8@sha256:40898f7daa28976e247b0ffb66d4993ca0fc9f8e6cf9b657630616d29cffea04_ppc64le" + }, + "product_reference": "rhacm2/thanos-rhel8@sha256:40898f7daa28976e247b0ffb66d4993ca0fc9f8e6cf9b657630616d29cffea04_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/thanos-rhel8@sha256:6a4f4abb065cbed85e9b2ac43234939947c101059af2bc29e561f4c842c42ddb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/thanos-rhel8@sha256:6a4f4abb065cbed85e9b2ac43234939947c101059af2bc29e561f4c842c42ddb_amd64" + }, + "product_reference": "rhacm2/thanos-rhel8@sha256:6a4f4abb065cbed85e9b2ac43234939947c101059af2bc29e561f4c842c42ddb_amd64", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/thanos-rhel8@sha256:bbe9a0bd6776a2dbab5a634804a4a8fa3b4d9e85786977488005c4d8698f161b_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.6 for RHEL 8", + "product_id": "8Base-RHACM-2.6:rhacm2/thanos-rhel8@sha256:bbe9a0bd6776a2dbab5a634804a4a8fa3b4d9e85786977488005c4d8698f161b_s390x" + }, + "product_reference": "rhacm2/thanos-rhel8@sha256:bbe9a0bd6776a2dbab5a634804a4a8fa3b4d9e85786977488005c4d8698f161b_s390x", + "relates_to_product_reference": "8Base-RHACM-2.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:4ffd9d8b6b3c28eaddec00cf0f916b23d0cfcc9ee6cf101f4ac390126cd794c6_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:4ffd9d8b6b3c28eaddec00cf0f916b23d0cfcc9ee6cf101f4ac390126cd794c6_ppc64le" + }, + "product_reference": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:4ffd9d8b6b3c28eaddec00cf0f916b23d0cfcc9ee6cf101f4ac390126cd794c6_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:9ac73e246d0b2acda83c778ec7f289a3344e75e90d4e7891859981b7d3c0ba2a_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:9ac73e246d0b2acda83c778ec7f289a3344e75e90d4e7891859981b7d3c0ba2a_arm64" + }, + "product_reference": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:9ac73e246d0b2acda83c778ec7f289a3344e75e90d4e7891859981b7d3c0ba2a_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:be04990624a3c49f741cfc123cffffa50c594a03f5efd08e5cf06e3567f56faf_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:be04990624a3c49f741cfc123cffffa50c594a03f5efd08e5cf06e3567f56faf_amd64" + }, + "product_reference": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:be04990624a3c49f741cfc123cffffa50c594a03f5efd08e5cf06e3567f56faf_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:fa0cffb08d32608bf3324c56a53786fabf01a2de0716d5b8e63ee58d28ac2bd6_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:fa0cffb08d32608bf3324c56a53786fabf01a2de0716d5b8e63ee58d28ac2bd6_s390x" + }, + "product_reference": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:fa0cffb08d32608bf3324c56a53786fabf01a2de0716d5b8e63ee58d28ac2bd6_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:9a5ba16abc74f79ca68f42d616ef9a25c2af32a54985b18b2a481b24812411a2_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:9a5ba16abc74f79ca68f42d616ef9a25c2af32a54985b18b2a481b24812411a2_ppc64le" + }, + "product_reference": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:9a5ba16abc74f79ca68f42d616ef9a25c2af32a54985b18b2a481b24812411a2_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:b142cc821c14f1f3ebe50ceb85466212a709124f1d9645f787295932668743c2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:b142cc821c14f1f3ebe50ceb85466212a709124f1d9645f787295932668743c2_amd64" + }, + "product_reference": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:b142cc821c14f1f3ebe50ceb85466212a709124f1d9645f787295932668743c2_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:e120418c666d3199f993a0f5233b9419c7574b47f4ee31193e5fb53c02fc72ac_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:e120418c666d3199f993a0f5233b9419c7574b47f4ee31193e5fb53c02fc72ac_arm64" + }, + "product_reference": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:e120418c666d3199f993a0f5233b9419c7574b47f4ee31193e5fb53c02fc72ac_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:e5ae855b79e9cabbe1a7835e62cdc4220050b369e64cb48eee3c18e259f48d1a_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:e5ae855b79e9cabbe1a7835e62cdc4220050b369e64cb48eee3c18e259f48d1a_s390x" + }, + "product_reference": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:e5ae855b79e9cabbe1a7835e62cdc4220050b369e64cb48eee3c18e259f48d1a_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-grafana-rhel8@sha256:407ef4d320ec75954e710b7662ee74002fbdae952b227efbb3e80f3b5a5be3dd_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-grafana-rhel8@sha256:407ef4d320ec75954e710b7662ee74002fbdae952b227efbb3e80f3b5a5be3dd_ppc64le" + }, + "product_reference": "rhacm2/acm-grafana-rhel8@sha256:407ef4d320ec75954e710b7662ee74002fbdae952b227efbb3e80f3b5a5be3dd_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-grafana-rhel8@sha256:53a999e96f682d66772e18cb4f8abb424ce5005c0421509a01576850398a8df0_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-grafana-rhel8@sha256:53a999e96f682d66772e18cb4f8abb424ce5005c0421509a01576850398a8df0_s390x" + }, + "product_reference": "rhacm2/acm-grafana-rhel8@sha256:53a999e96f682d66772e18cb4f8abb424ce5005c0421509a01576850398a8df0_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-grafana-rhel8@sha256:5804763c8400693d515ad6d2955783d31a3f8c0ffa11c21b058a611384b4cb99_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-grafana-rhel8@sha256:5804763c8400693d515ad6d2955783d31a3f8c0ffa11c21b058a611384b4cb99_arm64" + }, + "product_reference": "rhacm2/acm-grafana-rhel8@sha256:5804763c8400693d515ad6d2955783d31a3f8c0ffa11c21b058a611384b4cb99_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-grafana-rhel8@sha256:a0db1de1dfb46d3d7cfd76cd65b24e918310dcef83e8f02915fd522b8d3e0a70_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-grafana-rhel8@sha256:a0db1de1dfb46d3d7cfd76cd65b24e918310dcef83e8f02915fd522b8d3e0a70_amd64" + }, + "product_reference": "rhacm2/acm-grafana-rhel8@sha256:a0db1de1dfb46d3d7cfd76cd65b24e918310dcef83e8f02915fd522b8d3e0a70_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-must-gather-rhel8@sha256:1b8acd8f3b6eedd4fb5ef671f08361f9a662cfdf1b6a7c817fd0ff75e2baca87_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-must-gather-rhel8@sha256:1b8acd8f3b6eedd4fb5ef671f08361f9a662cfdf1b6a7c817fd0ff75e2baca87_amd64" + }, + "product_reference": "rhacm2/acm-must-gather-rhel8@sha256:1b8acd8f3b6eedd4fb5ef671f08361f9a662cfdf1b6a7c817fd0ff75e2baca87_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-must-gather-rhel8@sha256:1c3bc20a767401ce32a07e56835372d16c06c8e68d435e46db24d6f46006f614_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-must-gather-rhel8@sha256:1c3bc20a767401ce32a07e56835372d16c06c8e68d435e46db24d6f46006f614_arm64" + }, + "product_reference": "rhacm2/acm-must-gather-rhel8@sha256:1c3bc20a767401ce32a07e56835372d16c06c8e68d435e46db24d6f46006f614_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-must-gather-rhel8@sha256:c5c7e49ae56fce81d05d3dc83e229d3dcdbd89ecdcd90781202605f494ad21ad_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-must-gather-rhel8@sha256:c5c7e49ae56fce81d05d3dc83e229d3dcdbd89ecdcd90781202605f494ad21ad_s390x" + }, + "product_reference": "rhacm2/acm-must-gather-rhel8@sha256:c5c7e49ae56fce81d05d3dc83e229d3dcdbd89ecdcd90781202605f494ad21ad_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-must-gather-rhel8@sha256:ca46575c7c69d7c37dc8b902736d725ec9387db927c3b8c2c9396e9d807672a1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-must-gather-rhel8@sha256:ca46575c7c69d7c37dc8b902736d725ec9387db927c3b8c2c9396e9d807672a1_ppc64le" + }, + "product_reference": "rhacm2/acm-must-gather-rhel8@sha256:ca46575c7c69d7c37dc8b902736d725ec9387db927c3b8c2c9396e9d807672a1_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-operator-bundle@sha256:523014ec9d1ca9c932f8b983a90432114d74d9a668202109f5c246fd6163329c_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-operator-bundle@sha256:523014ec9d1ca9c932f8b983a90432114d74d9a668202109f5c246fd6163329c_ppc64le" + }, + "product_reference": "rhacm2/acm-operator-bundle@sha256:523014ec9d1ca9c932f8b983a90432114d74d9a668202109f5c246fd6163329c_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-operator-bundle@sha256:59b9a7f7f421dd9dcfc01b0ff7e09283d2579abbb6374017e37a83c3ab4a8a2a_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-operator-bundle@sha256:59b9a7f7f421dd9dcfc01b0ff7e09283d2579abbb6374017e37a83c3ab4a8a2a_s390x" + }, + "product_reference": "rhacm2/acm-operator-bundle@sha256:59b9a7f7f421dd9dcfc01b0ff7e09283d2579abbb6374017e37a83c3ab4a8a2a_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-operator-bundle@sha256:95a7dc1932aaa0782e7f201cd2d30710cba05c1fcc4a04af036d1585079003f1_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-operator-bundle@sha256:95a7dc1932aaa0782e7f201cd2d30710cba05c1fcc4a04af036d1585079003f1_amd64" + }, + "product_reference": "rhacm2/acm-operator-bundle@sha256:95a7dc1932aaa0782e7f201cd2d30710cba05c1fcc4a04af036d1585079003f1_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:0786de1ca50aabde9ddd4f61af80500458c482f5e29e7240f59a74b4b8a98ba4_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-prometheus-config-reloader-rhel8@sha256:0786de1ca50aabde9ddd4f61af80500458c482f5e29e7240f59a74b4b8a98ba4_amd64" + }, + "product_reference": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:0786de1ca50aabde9ddd4f61af80500458c482f5e29e7240f59a74b4b8a98ba4_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:a0aaeca37538bf3f7a95c8731dd98b9109d9557295213207d67e0e45d222df21_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-prometheus-config-reloader-rhel8@sha256:a0aaeca37538bf3f7a95c8731dd98b9109d9557295213207d67e0e45d222df21_arm64" + }, + "product_reference": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:a0aaeca37538bf3f7a95c8731dd98b9109d9557295213207d67e0e45d222df21_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:d59b82ac8d3613908b6e43bf195c003baf2145ff6e64b41f27cd1cfbe03d3197_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-prometheus-config-reloader-rhel8@sha256:d59b82ac8d3613908b6e43bf195c003baf2145ff6e64b41f27cd1cfbe03d3197_ppc64le" + }, + "product_reference": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:d59b82ac8d3613908b6e43bf195c003baf2145ff6e64b41f27cd1cfbe03d3197_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:f74e98045a1ea79c2c8dfc0b7d5a43988f7f79263a5481791fa68208a638b3f3_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-prometheus-config-reloader-rhel8@sha256:f74e98045a1ea79c2c8dfc0b7d5a43988f7f79263a5481791fa68208a638b3f3_s390x" + }, + "product_reference": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:f74e98045a1ea79c2c8dfc0b7d5a43988f7f79263a5481791fa68208a638b3f3_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-prometheus-rhel8@sha256:2a32dc2f67b84c39cfb3463f33e25bb7872688914c7dd68270c5c9efbdbfc97f_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-prometheus-rhel8@sha256:2a32dc2f67b84c39cfb3463f33e25bb7872688914c7dd68270c5c9efbdbfc97f_amd64" + }, + "product_reference": "rhacm2/acm-prometheus-rhel8@sha256:2a32dc2f67b84c39cfb3463f33e25bb7872688914c7dd68270c5c9efbdbfc97f_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-prometheus-rhel8@sha256:94c104b662e58a47bd848878a4e60252e56abed80cd395068b87b36ba333c56f_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-prometheus-rhel8@sha256:94c104b662e58a47bd848878a4e60252e56abed80cd395068b87b36ba333c56f_s390x" + }, + "product_reference": "rhacm2/acm-prometheus-rhel8@sha256:94c104b662e58a47bd848878a4e60252e56abed80cd395068b87b36ba333c56f_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-prometheus-rhel8@sha256:e68bca7ac166592e005f9fc99917fd4533771c9a816884142c33fac561688319_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-prometheus-rhel8@sha256:e68bca7ac166592e005f9fc99917fd4533771c9a816884142c33fac561688319_ppc64le" + }, + "product_reference": "rhacm2/acm-prometheus-rhel8@sha256:e68bca7ac166592e005f9fc99917fd4533771c9a816884142c33fac561688319_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-prometheus-rhel8@sha256:ef2b25a2fbb2c9504c97cdad39c6699248431ef9bb57d4a497e819c52cb0469a_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-prometheus-rhel8@sha256:ef2b25a2fbb2c9504c97cdad39c6699248431ef9bb57d4a497e819c52cb0469a_arm64" + }, + "product_reference": "rhacm2/acm-prometheus-rhel8@sha256:ef2b25a2fbb2c9504c97cdad39c6699248431ef9bb57d4a497e819c52cb0469a_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-search-indexer-rhel8@sha256:014085eb094bddc231f32dc3b70fa2d647b9ebc2d639d8ad30ca4501dbebce4d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-search-indexer-rhel8@sha256:014085eb094bddc231f32dc3b70fa2d647b9ebc2d639d8ad30ca4501dbebce4d_ppc64le" + }, + "product_reference": "rhacm2/acm-search-indexer-rhel8@sha256:014085eb094bddc231f32dc3b70fa2d647b9ebc2d639d8ad30ca4501dbebce4d_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-search-indexer-rhel8@sha256:08b2f00aac5abbd6c4599670aa45658934744f92ca0fb6031637eb2325cc0516_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-search-indexer-rhel8@sha256:08b2f00aac5abbd6c4599670aa45658934744f92ca0fb6031637eb2325cc0516_amd64" + }, + "product_reference": "rhacm2/acm-search-indexer-rhel8@sha256:08b2f00aac5abbd6c4599670aa45658934744f92ca0fb6031637eb2325cc0516_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-search-indexer-rhel8@sha256:1c70bab38c211c2d31c15b55fb0a19c27a58cd952faba642bbf392eb7a1f01ca_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-search-indexer-rhel8@sha256:1c70bab38c211c2d31c15b55fb0a19c27a58cd952faba642bbf392eb7a1f01ca_s390x" + }, + "product_reference": "rhacm2/acm-search-indexer-rhel8@sha256:1c70bab38c211c2d31c15b55fb0a19c27a58cd952faba642bbf392eb7a1f01ca_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-search-indexer-rhel8@sha256:648be3417cf67a51de1ee3c6b170284b8f74cb6e66447ff55235511fb7f64ea6_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-search-indexer-rhel8@sha256:648be3417cf67a51de1ee3c6b170284b8f74cb6e66447ff55235511fb7f64ea6_arm64" + }, + "product_reference": "rhacm2/acm-search-indexer-rhel8@sha256:648be3417cf67a51de1ee3c6b170284b8f74cb6e66447ff55235511fb7f64ea6_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-search-v2-api-rhel8@sha256:5e70dc2a1e9ccfdf5cf28e8f559fd8bac029b1a13f658993bbe237ac53964349_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-search-v2-api-rhel8@sha256:5e70dc2a1e9ccfdf5cf28e8f559fd8bac029b1a13f658993bbe237ac53964349_s390x" + }, + "product_reference": "rhacm2/acm-search-v2-api-rhel8@sha256:5e70dc2a1e9ccfdf5cf28e8f559fd8bac029b1a13f658993bbe237ac53964349_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-search-v2-api-rhel8@sha256:627450e93bae015febadee96eb042b073e5d10b83fe328e5ed66de308686675a_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-search-v2-api-rhel8@sha256:627450e93bae015febadee96eb042b073e5d10b83fe328e5ed66de308686675a_amd64" + }, + "product_reference": "rhacm2/acm-search-v2-api-rhel8@sha256:627450e93bae015febadee96eb042b073e5d10b83fe328e5ed66de308686675a_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-search-v2-api-rhel8@sha256:a8ea4ccf051b23fc97b2321408e44ccb7fe5d58af50a9e3e342fbfd636c8896e_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-search-v2-api-rhel8@sha256:a8ea4ccf051b23fc97b2321408e44ccb7fe5d58af50a9e3e342fbfd636c8896e_ppc64le" + }, + "product_reference": "rhacm2/acm-search-v2-api-rhel8@sha256:a8ea4ccf051b23fc97b2321408e44ccb7fe5d58af50a9e3e342fbfd636c8896e_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-search-v2-api-rhel8@sha256:c779bdf5acdd1a33c32b5530472878f387dc1aba106bb82375fd9475f73c5a29_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-search-v2-api-rhel8@sha256:c779bdf5acdd1a33c32b5530472878f387dc1aba106bb82375fd9475f73c5a29_arm64" + }, + "product_reference": "rhacm2/acm-search-v2-api-rhel8@sha256:c779bdf5acdd1a33c32b5530472878f387dc1aba106bb82375fd9475f73c5a29_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-search-v2-rhel8@sha256:0c09b9b18b8b2ccf6a701efe9244f6100fdf273c60069ac2496bb8828d29a4f9_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-search-v2-rhel8@sha256:0c09b9b18b8b2ccf6a701efe9244f6100fdf273c60069ac2496bb8828d29a4f9_s390x" + }, + "product_reference": "rhacm2/acm-search-v2-rhel8@sha256:0c09b9b18b8b2ccf6a701efe9244f6100fdf273c60069ac2496bb8828d29a4f9_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-search-v2-rhel8@sha256:12d14fb1f6aeda236617e05dd6ce6825df60ea491d0fe77a04bd147ccfe20d8c_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-search-v2-rhel8@sha256:12d14fb1f6aeda236617e05dd6ce6825df60ea491d0fe77a04bd147ccfe20d8c_ppc64le" + }, + "product_reference": "rhacm2/acm-search-v2-rhel8@sha256:12d14fb1f6aeda236617e05dd6ce6825df60ea491d0fe77a04bd147ccfe20d8c_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-search-v2-rhel8@sha256:5910815b230c6cea2cb14c7d333078aedefe85ba396330144accff2c3fe427e0_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-search-v2-rhel8@sha256:5910815b230c6cea2cb14c7d333078aedefe85ba396330144accff2c3fe427e0_amd64" + }, + "product_reference": "rhacm2/acm-search-v2-rhel8@sha256:5910815b230c6cea2cb14c7d333078aedefe85ba396330144accff2c3fe427e0_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-search-v2-rhel8@sha256:abc5e636d8ddac8043d5bc37c183a086d07fe41ca1bd76513f566f2df5a38d9e_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-search-v2-rhel8@sha256:abc5e636d8ddac8043d5bc37c183a086d07fe41ca1bd76513f566f2df5a38d9e_arm64" + }, + "product_reference": "rhacm2/acm-search-v2-rhel8@sha256:abc5e636d8ddac8043d5bc37c183a086d07fe41ca1bd76513f566f2df5a38d9e_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:1c36e08be26c3cb3c8ea3217b11a8b92dd31040ec5158f5079f47d113c8c2a8e_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-volsync-addon-controller-rhel8@sha256:1c36e08be26c3cb3c8ea3217b11a8b92dd31040ec5158f5079f47d113c8c2a8e_s390x" + }, + "product_reference": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:1c36e08be26c3cb3c8ea3217b11a8b92dd31040ec5158f5079f47d113c8c2a8e_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:1c5162b261ce13effd5c45d40a8ae1bec07adc657f485c67b5ec0cd312543434_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-volsync-addon-controller-rhel8@sha256:1c5162b261ce13effd5c45d40a8ae1bec07adc657f485c67b5ec0cd312543434_amd64" + }, + "product_reference": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:1c5162b261ce13effd5c45d40a8ae1bec07adc657f485c67b5ec0cd312543434_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:71ddf2a944953a71f723e4f6c7d265bf528a26880b85085d4b580209701300be_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-volsync-addon-controller-rhel8@sha256:71ddf2a944953a71f723e4f6c7d265bf528a26880b85085d4b580209701300be_ppc64le" + }, + "product_reference": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:71ddf2a944953a71f723e4f6c7d265bf528a26880b85085d4b580209701300be_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:dffa95f5d243d869e2a59eb67176cb20ea2bf599a825ad3e20472164917ea6d6_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/acm-volsync-addon-controller-rhel8@sha256:dffa95f5d243d869e2a59eb67176cb20ea2bf599a825ad3e20472164917ea6d6_arm64" + }, + "product_reference": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:dffa95f5d243d869e2a59eb67176cb20ea2bf599a825ad3e20472164917ea6d6_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/cert-policy-controller-rhel8@sha256:0c07e61a43f825158d5d783beafedc03699604f0cf68c48b357cb389fcf04b7c_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/cert-policy-controller-rhel8@sha256:0c07e61a43f825158d5d783beafedc03699604f0cf68c48b357cb389fcf04b7c_arm64" + }, + "product_reference": "rhacm2/cert-policy-controller-rhel8@sha256:0c07e61a43f825158d5d783beafedc03699604f0cf68c48b357cb389fcf04b7c_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/cert-policy-controller-rhel8@sha256:0d858bada6f78887c707757b9dcb997e13a95ab452c4da639a6443db07499885_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/cert-policy-controller-rhel8@sha256:0d858bada6f78887c707757b9dcb997e13a95ab452c4da639a6443db07499885_amd64" + }, + "product_reference": "rhacm2/cert-policy-controller-rhel8@sha256:0d858bada6f78887c707757b9dcb997e13a95ab452c4da639a6443db07499885_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/cert-policy-controller-rhel8@sha256:17d6c9184efbe544edf3ca50d59cf545136e4d7cca27892ef2ce19eb31952633_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/cert-policy-controller-rhel8@sha256:17d6c9184efbe544edf3ca50d59cf545136e4d7cca27892ef2ce19eb31952633_ppc64le" + }, + "product_reference": "rhacm2/cert-policy-controller-rhel8@sha256:17d6c9184efbe544edf3ca50d59cf545136e4d7cca27892ef2ce19eb31952633_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/cert-policy-controller-rhel8@sha256:2dbd6b6b99ffaf78d7eed8f72d124c339d09e765b86f6b780818917928b9995e_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/cert-policy-controller-rhel8@sha256:2dbd6b6b99ffaf78d7eed8f72d124c339d09e765b86f6b780818917928b9995e_s390x" + }, + "product_reference": "rhacm2/cert-policy-controller-rhel8@sha256:2dbd6b6b99ffaf78d7eed8f72d124c339d09e765b86f6b780818917928b9995e_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:24001aeff6b8b0f151f9110791a001806bd6f5dcff28bdf899a34fc9cb44ab2f_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/cluster-backup-rhel8-operator@sha256:24001aeff6b8b0f151f9110791a001806bd6f5dcff28bdf899a34fc9cb44ab2f_ppc64le" + }, + "product_reference": "rhacm2/cluster-backup-rhel8-operator@sha256:24001aeff6b8b0f151f9110791a001806bd6f5dcff28bdf899a34fc9cb44ab2f_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:2cc45caec24aad547950655044005c4210cf9f732cb4e936d13ccad48d39a0a6_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/cluster-backup-rhel8-operator@sha256:2cc45caec24aad547950655044005c4210cf9f732cb4e936d13ccad48d39a0a6_arm64" + }, + "product_reference": "rhacm2/cluster-backup-rhel8-operator@sha256:2cc45caec24aad547950655044005c4210cf9f732cb4e936d13ccad48d39a0a6_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:550aeda277ec2cb3d9c25416a6b055ec0849b68fb90086f00cec1110aa19b354_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/cluster-backup-rhel8-operator@sha256:550aeda277ec2cb3d9c25416a6b055ec0849b68fb90086f00cec1110aa19b354_amd64" + }, + "product_reference": "rhacm2/cluster-backup-rhel8-operator@sha256:550aeda277ec2cb3d9c25416a6b055ec0849b68fb90086f00cec1110aa19b354_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:db49fb760a193e39798d05f850181d55b3461ba8924272f9527cf7fc38d3bca9_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/cluster-backup-rhel8-operator@sha256:db49fb760a193e39798d05f850181d55b3461ba8924272f9527cf7fc38d3bca9_s390x" + }, + "product_reference": "rhacm2/cluster-backup-rhel8-operator@sha256:db49fb760a193e39798d05f850181d55b3461ba8924272f9527cf7fc38d3bca9_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/config-policy-controller-rhel8@sha256:1192ffe45a699edc1b4d42f6df7ca3ace15b4ad4341a7866cc2d7a6dcb83834f_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/config-policy-controller-rhel8@sha256:1192ffe45a699edc1b4d42f6df7ca3ace15b4ad4341a7866cc2d7a6dcb83834f_ppc64le" + }, + "product_reference": "rhacm2/config-policy-controller-rhel8@sha256:1192ffe45a699edc1b4d42f6df7ca3ace15b4ad4341a7866cc2d7a6dcb83834f_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/config-policy-controller-rhel8@sha256:51ef5745cbdcd1e53d7869e1a432fab2c419c8cc0035eb1c27ac23e54b84c432_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/config-policy-controller-rhel8@sha256:51ef5745cbdcd1e53d7869e1a432fab2c419c8cc0035eb1c27ac23e54b84c432_s390x" + }, + "product_reference": "rhacm2/config-policy-controller-rhel8@sha256:51ef5745cbdcd1e53d7869e1a432fab2c419c8cc0035eb1c27ac23e54b84c432_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/config-policy-controller-rhel8@sha256:8fece907b56871171b194cbabde7d3e759ea4589ea9fe8bf18fcc9eb9aec81eb_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/config-policy-controller-rhel8@sha256:8fece907b56871171b194cbabde7d3e759ea4589ea9fe8bf18fcc9eb9aec81eb_arm64" + }, + "product_reference": "rhacm2/config-policy-controller-rhel8@sha256:8fece907b56871171b194cbabde7d3e759ea4589ea9fe8bf18fcc9eb9aec81eb_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/config-policy-controller-rhel8@sha256:ce3eaadf709a9c2f53274620071d87b916352149d7405ce265c94750bd916203_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/config-policy-controller-rhel8@sha256:ce3eaadf709a9c2f53274620071d87b916352149d7405ce265c94750bd916203_amd64" + }, + "product_reference": "rhacm2/config-policy-controller-rhel8@sha256:ce3eaadf709a9c2f53274620071d87b916352149d7405ce265c94750bd916203_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/console-rhel8@sha256:2d7cc90095dde471fff97878863e1f264c778cdc67edc8a6842c7dcceb5efefb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/console-rhel8@sha256:2d7cc90095dde471fff97878863e1f264c778cdc67edc8a6842c7dcceb5efefb_amd64" + }, + "product_reference": "rhacm2/console-rhel8@sha256:2d7cc90095dde471fff97878863e1f264c778cdc67edc8a6842c7dcceb5efefb_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/console-rhel8@sha256:8e407966ba663c8c8259e4a3c99fee8af8ddee11343a4f67e1c1ef750f6e1018_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/console-rhel8@sha256:8e407966ba663c8c8259e4a3c99fee8af8ddee11343a4f67e1c1ef750f6e1018_ppc64le" + }, + "product_reference": "rhacm2/console-rhel8@sha256:8e407966ba663c8c8259e4a3c99fee8af8ddee11343a4f67e1c1ef750f6e1018_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/console-rhel8@sha256:ca48488f565ed97f625a8d10c520ad2959ec693648b791d7cad1f0d4341646c7_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/console-rhel8@sha256:ca48488f565ed97f625a8d10c520ad2959ec693648b791d7cad1f0d4341646c7_s390x" + }, + "product_reference": "rhacm2/console-rhel8@sha256:ca48488f565ed97f625a8d10c520ad2959ec693648b791d7cad1f0d4341646c7_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/console-rhel8@sha256:fbdba1f6ee3715970785cc831e33e846c878e3f6e3e9fefb601c76f4fe19d815_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/console-rhel8@sha256:fbdba1f6ee3715970785cc831e33e846c878e3f6e3e9fefb601c76f4fe19d815_arm64" + }, + "product_reference": "rhacm2/console-rhel8@sha256:fbdba1f6ee3715970785cc831e33e846c878e3f6e3e9fefb601c76f4fe19d815_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:34e57b7f13fab4b7252d7c0e3ae0df6a6c3a4096be936e9066a310c2c21f566f_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/endpoint-monitoring-rhel8-operator@sha256:34e57b7f13fab4b7252d7c0e3ae0df6a6c3a4096be936e9066a310c2c21f566f_ppc64le" + }, + "product_reference": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:34e57b7f13fab4b7252d7c0e3ae0df6a6c3a4096be936e9066a310c2c21f566f_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:372cbad0d3e7f659a3ce8c100081cf9b98350e8093a65d5a2e56c12b72f6b6c9_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/endpoint-monitoring-rhel8-operator@sha256:372cbad0d3e7f659a3ce8c100081cf9b98350e8093a65d5a2e56c12b72f6b6c9_amd64" + }, + "product_reference": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:372cbad0d3e7f659a3ce8c100081cf9b98350e8093a65d5a2e56c12b72f6b6c9_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:6f6646191d33c864d42d998210f4cf4c18a08459be75306a9f490b172564175c_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/endpoint-monitoring-rhel8-operator@sha256:6f6646191d33c864d42d998210f4cf4c18a08459be75306a9f490b172564175c_arm64" + }, + "product_reference": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:6f6646191d33c864d42d998210f4cf4c18a08459be75306a9f490b172564175c_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:f7274b2790726ece43c1da61465a124a945ea2b3caba738833f7d7659776916c_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/endpoint-monitoring-rhel8-operator@sha256:f7274b2790726ece43c1da61465a124a945ea2b3caba738833f7d7659776916c_s390x" + }, + "product_reference": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:f7274b2790726ece43c1da61465a124a945ea2b3caba738833f7d7659776916c_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:2ddd44785d00482b1ef44e537fdac939ac698ae129939b72c76209dfdc1190a7_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/governance-policy-propagator-rhel8@sha256:2ddd44785d00482b1ef44e537fdac939ac698ae129939b72c76209dfdc1190a7_amd64" + }, + "product_reference": "rhacm2/governance-policy-propagator-rhel8@sha256:2ddd44785d00482b1ef44e537fdac939ac698ae129939b72c76209dfdc1190a7_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:568cb892832fcce1496b165d68c65db5545fb0158320a8b0b5fcc68475f35d63_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/governance-policy-propagator-rhel8@sha256:568cb892832fcce1496b165d68c65db5545fb0158320a8b0b5fcc68475f35d63_ppc64le" + }, + "product_reference": "rhacm2/governance-policy-propagator-rhel8@sha256:568cb892832fcce1496b165d68c65db5545fb0158320a8b0b5fcc68475f35d63_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:e97a31d9eacb0b6a2c9f3860e88b61fb96f1ae1dde24df9391555cd10437d9e9_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/governance-policy-propagator-rhel8@sha256:e97a31d9eacb0b6a2c9f3860e88b61fb96f1ae1dde24df9391555cd10437d9e9_s390x" + }, + "product_reference": "rhacm2/governance-policy-propagator-rhel8@sha256:e97a31d9eacb0b6a2c9f3860e88b61fb96f1ae1dde24df9391555cd10437d9e9_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:f4795bde04f07ad3adee7cf87e7351f926f6b28bb5336d8be26ed9b7fa551e49_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/governance-policy-propagator-rhel8@sha256:f4795bde04f07ad3adee7cf87e7351f926f6b28bb5336d8be26ed9b7fa551e49_arm64" + }, + "product_reference": "rhacm2/governance-policy-propagator-rhel8@sha256:f4795bde04f07ad3adee7cf87e7351f926f6b28bb5336d8be26ed9b7fa551e49_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:421ee0fad526062676a4043011ca6fea1502c0c6fc26d32d53fdff5833720452_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/grafana-dashboard-loader-rhel8@sha256:421ee0fad526062676a4043011ca6fea1502c0c6fc26d32d53fdff5833720452_s390x" + }, + "product_reference": "rhacm2/grafana-dashboard-loader-rhel8@sha256:421ee0fad526062676a4043011ca6fea1502c0c6fc26d32d53fdff5833720452_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:68c36ba7ef2b891541f3aa8ec95546a081966aba94143b16041a344b4061f9dd_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/grafana-dashboard-loader-rhel8@sha256:68c36ba7ef2b891541f3aa8ec95546a081966aba94143b16041a344b4061f9dd_arm64" + }, + "product_reference": "rhacm2/grafana-dashboard-loader-rhel8@sha256:68c36ba7ef2b891541f3aa8ec95546a081966aba94143b16041a344b4061f9dd_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:7c246660b9761d7a2c2314d02d2cac9877ad58c1b3931c5082da283a552a007c_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/grafana-dashboard-loader-rhel8@sha256:7c246660b9761d7a2c2314d02d2cac9877ad58c1b3931c5082da283a552a007c_ppc64le" + }, + "product_reference": "rhacm2/grafana-dashboard-loader-rhel8@sha256:7c246660b9761d7a2c2314d02d2cac9877ad58c1b3931c5082da283a552a007c_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:f0e51020bd8b79182e45635fe0e06df7935375c4f82b8bbd387cdf50316913aa_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/grafana-dashboard-loader-rhel8@sha256:f0e51020bd8b79182e45635fe0e06df7935375c4f82b8bbd387cdf50316913aa_amd64" + }, + "product_reference": "rhacm2/grafana-dashboard-loader-rhel8@sha256:f0e51020bd8b79182e45635fe0e06df7935375c4f82b8bbd387cdf50316913aa_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/iam-policy-controller-rhel8@sha256:80696c15028c27762ab36abddd51b39244bf7f94d92a86cd03294e2de487cc2a_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/iam-policy-controller-rhel8@sha256:80696c15028c27762ab36abddd51b39244bf7f94d92a86cd03294e2de487cc2a_ppc64le" + }, + "product_reference": "rhacm2/iam-policy-controller-rhel8@sha256:80696c15028c27762ab36abddd51b39244bf7f94d92a86cd03294e2de487cc2a_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/iam-policy-controller-rhel8@sha256:8fd2b3d1b7e827a46a57a75aef33e792864d1ee2b11634b0fd23fe466ccb8894_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/iam-policy-controller-rhel8@sha256:8fd2b3d1b7e827a46a57a75aef33e792864d1ee2b11634b0fd23fe466ccb8894_s390x" + }, + "product_reference": "rhacm2/iam-policy-controller-rhel8@sha256:8fd2b3d1b7e827a46a57a75aef33e792864d1ee2b11634b0fd23fe466ccb8894_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/iam-policy-controller-rhel8@sha256:d2e448393ccfb9ec61de3ad5fa4f8fb0876d46114420d131f97606a72790a373_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/iam-policy-controller-rhel8@sha256:d2e448393ccfb9ec61de3ad5fa4f8fb0876d46114420d131f97606a72790a373_amd64" + }, + "product_reference": "rhacm2/iam-policy-controller-rhel8@sha256:d2e448393ccfb9ec61de3ad5fa4f8fb0876d46114420d131f97606a72790a373_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/iam-policy-controller-rhel8@sha256:f09bcd763fa16c191efcad09414dbd12c1402c51bba4ee6072fa23fa030cfe6e_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/iam-policy-controller-rhel8@sha256:f09bcd763fa16c191efcad09414dbd12c1402c51bba4ee6072fa23fa030cfe6e_arm64" + }, + "product_reference": "rhacm2/iam-policy-controller-rhel8@sha256:f09bcd763fa16c191efcad09414dbd12c1402c51bba4ee6072fa23fa030cfe6e_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/insights-client-rhel8@sha256:05c2cbcd8d9124a73584910ae11243ab363c9800396cc95504ffb4adc004e928_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/insights-client-rhel8@sha256:05c2cbcd8d9124a73584910ae11243ab363c9800396cc95504ffb4adc004e928_arm64" + }, + "product_reference": "rhacm2/insights-client-rhel8@sha256:05c2cbcd8d9124a73584910ae11243ab363c9800396cc95504ffb4adc004e928_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/insights-client-rhel8@sha256:41a26793fe3dafc0dbd6b7a316acd463ff97b994979d3783f69cd607a8ab2658_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/insights-client-rhel8@sha256:41a26793fe3dafc0dbd6b7a316acd463ff97b994979d3783f69cd607a8ab2658_s390x" + }, + "product_reference": "rhacm2/insights-client-rhel8@sha256:41a26793fe3dafc0dbd6b7a316acd463ff97b994979d3783f69cd607a8ab2658_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/insights-client-rhel8@sha256:66ecbe8f55293bce099a36dee17499b4e759ef452764f893abe1e281cfafc896_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/insights-client-rhel8@sha256:66ecbe8f55293bce099a36dee17499b4e759ef452764f893abe1e281cfafc896_amd64" + }, + "product_reference": "rhacm2/insights-client-rhel8@sha256:66ecbe8f55293bce099a36dee17499b4e759ef452764f893abe1e281cfafc896_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/insights-client-rhel8@sha256:f9772a8ab44052d85ac4c555b9ada66eb1f21be33ac4f9e42559983d4b249e66_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/insights-client-rhel8@sha256:f9772a8ab44052d85ac4c555b9ada66eb1f21be33ac4f9e42559983d4b249e66_ppc64le" + }, + "product_reference": "rhacm2/insights-client-rhel8@sha256:f9772a8ab44052d85ac4c555b9ada66eb1f21be33ac4f9e42559983d4b249e66_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/insights-metrics-rhel8@sha256:0b69b37e0693e3f748a0d989c63ce015c60905fe409fe67ab2150c8877c18fa2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/insights-metrics-rhel8@sha256:0b69b37e0693e3f748a0d989c63ce015c60905fe409fe67ab2150c8877c18fa2_amd64" + }, + "product_reference": "rhacm2/insights-metrics-rhel8@sha256:0b69b37e0693e3f748a0d989c63ce015c60905fe409fe67ab2150c8877c18fa2_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/insights-metrics-rhel8@sha256:2a9da115463b6b2c345937c773f7b03fccb4f2b346af52c4481a690942bde1cb_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/insights-metrics-rhel8@sha256:2a9da115463b6b2c345937c773f7b03fccb4f2b346af52c4481a690942bde1cb_ppc64le" + }, + "product_reference": "rhacm2/insights-metrics-rhel8@sha256:2a9da115463b6b2c345937c773f7b03fccb4f2b346af52c4481a690942bde1cb_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/insights-metrics-rhel8@sha256:9febb7bb4549aa64d2a17767330020053e622e5e68f7d2bf6f5532a554fb8eb6_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/insights-metrics-rhel8@sha256:9febb7bb4549aa64d2a17767330020053e622e5e68f7d2bf6f5532a554fb8eb6_s390x" + }, + "product_reference": "rhacm2/insights-metrics-rhel8@sha256:9febb7bb4549aa64d2a17767330020053e622e5e68f7d2bf6f5532a554fb8eb6_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/insights-metrics-rhel8@sha256:cd42af3f047187a8d0ba83ed7d838751d30c6ad2a7410f4dd2260170127ed03d_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/insights-metrics-rhel8@sha256:cd42af3f047187a8d0ba83ed7d838751d30c6ad2a7410f4dd2260170127ed03d_arm64" + }, + "product_reference": "rhacm2/insights-metrics-rhel8@sha256:cd42af3f047187a8d0ba83ed7d838751d30c6ad2a7410f4dd2260170127ed03d_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:4e6abfcf3d7addc5e61b760d2cba8527752a6e559eaf64c843f368008f54c449_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/klusterlet-addon-controller-rhel8@sha256:4e6abfcf3d7addc5e61b760d2cba8527752a6e559eaf64c843f368008f54c449_amd64" + }, + "product_reference": "rhacm2/klusterlet-addon-controller-rhel8@sha256:4e6abfcf3d7addc5e61b760d2cba8527752a6e559eaf64c843f368008f54c449_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:8d39a8ec5fb4d1574c9e6d5e2066af924a4f37a9af4209fd61a9822f38099274_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/klusterlet-addon-controller-rhel8@sha256:8d39a8ec5fb4d1574c9e6d5e2066af924a4f37a9af4209fd61a9822f38099274_s390x" + }, + "product_reference": "rhacm2/klusterlet-addon-controller-rhel8@sha256:8d39a8ec5fb4d1574c9e6d5e2066af924a4f37a9af4209fd61a9822f38099274_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:d73888566b7ca3846ffdfec544af07401fa0c2c3c6d3b436dd61dd45c70b86b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/klusterlet-addon-controller-rhel8@sha256:d73888566b7ca3846ffdfec544af07401fa0c2c3c6d3b436dd61dd45c70b86b1_ppc64le" + }, + "product_reference": "rhacm2/klusterlet-addon-controller-rhel8@sha256:d73888566b7ca3846ffdfec544af07401fa0c2c3c6d3b436dd61dd45c70b86b1_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:e4ce50cfc352f152a48c14025f576dd3c90ae9329bffa137ff6a83d4d14e2c1a_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/klusterlet-addon-controller-rhel8@sha256:e4ce50cfc352f152a48c14025f576dd3c90ae9329bffa137ff6a83d4d14e2c1a_arm64" + }, + "product_reference": "rhacm2/klusterlet-addon-controller-rhel8@sha256:e4ce50cfc352f152a48c14025f576dd3c90ae9329bffa137ff6a83d4d14e2c1a_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:1508a46c15ede059dd12548151c8d4caec17ec8e3732ec99b13988a31e38f286_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/kube-rbac-proxy-rhel8@sha256:1508a46c15ede059dd12548151c8d4caec17ec8e3732ec99b13988a31e38f286_s390x" + }, + "product_reference": "rhacm2/kube-rbac-proxy-rhel8@sha256:1508a46c15ede059dd12548151c8d4caec17ec8e3732ec99b13988a31e38f286_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:33042554acc053a3e7df606c36ab474e72424bdefbb69bb2783054b25b062909_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/kube-rbac-proxy-rhel8@sha256:33042554acc053a3e7df606c36ab474e72424bdefbb69bb2783054b25b062909_arm64" + }, + "product_reference": "rhacm2/kube-rbac-proxy-rhel8@sha256:33042554acc053a3e7df606c36ab474e72424bdefbb69bb2783054b25b062909_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:8257b8e7c74d7389661fab47a810781ad472642c6c4f27f0aae5cf079a5cf885_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/kube-rbac-proxy-rhel8@sha256:8257b8e7c74d7389661fab47a810781ad472642c6c4f27f0aae5cf079a5cf885_amd64" + }, + "product_reference": "rhacm2/kube-rbac-proxy-rhel8@sha256:8257b8e7c74d7389661fab47a810781ad472642c6c4f27f0aae5cf079a5cf885_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:de46d82a99d05c9deddf6bf43544b9ee443eaf3551d9c3f33e7e9b6c4a59d254_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/kube-rbac-proxy-rhel8@sha256:de46d82a99d05c9deddf6bf43544b9ee443eaf3551d9c3f33e7e9b6c4a59d254_ppc64le" + }, + "product_reference": "rhacm2/kube-rbac-proxy-rhel8@sha256:de46d82a99d05c9deddf6bf43544b9ee443eaf3551d9c3f33e7e9b6c4a59d254_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/kube-state-metrics-rhel8@sha256:2ffab3cdf3be45dc9f621c8a09eba248c2c65098e3f27b6867b916966a0909d2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/kube-state-metrics-rhel8@sha256:2ffab3cdf3be45dc9f621c8a09eba248c2c65098e3f27b6867b916966a0909d2_amd64" + }, + "product_reference": "rhacm2/kube-state-metrics-rhel8@sha256:2ffab3cdf3be45dc9f621c8a09eba248c2c65098e3f27b6867b916966a0909d2_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/kube-state-metrics-rhel8@sha256:3a475d7006ef73d62a6e355752ae4fcb5955e65e1e5c2437e25973d5652ee8dc_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/kube-state-metrics-rhel8@sha256:3a475d7006ef73d62a6e355752ae4fcb5955e65e1e5c2437e25973d5652ee8dc_ppc64le" + }, + "product_reference": "rhacm2/kube-state-metrics-rhel8@sha256:3a475d7006ef73d62a6e355752ae4fcb5955e65e1e5c2437e25973d5652ee8dc_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/kube-state-metrics-rhel8@sha256:5ab6c969a81a61a37646614b87abeadf30cc66023f2f9e73a5a91eb63edc8ba3_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/kube-state-metrics-rhel8@sha256:5ab6c969a81a61a37646614b87abeadf30cc66023f2f9e73a5a91eb63edc8ba3_s390x" + }, + "product_reference": "rhacm2/kube-state-metrics-rhel8@sha256:5ab6c969a81a61a37646614b87abeadf30cc66023f2f9e73a5a91eb63edc8ba3_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/kube-state-metrics-rhel8@sha256:a0283dc8f1644ff565c2bd5b96a3922cce7771163957072bf1e5b5c15afbbe38_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/kube-state-metrics-rhel8@sha256:a0283dc8f1644ff565c2bd5b96a3922cce7771163957072bf1e5b5c15afbbe38_arm64" + }, + "product_reference": "rhacm2/kube-state-metrics-rhel8@sha256:a0283dc8f1644ff565c2bd5b96a3922cce7771163957072bf1e5b5c15afbbe38_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/memcached-exporter-rhel8@sha256:23f1671505862dfd0ff3cc38b275c42da7046dfa0ca04677068b62fb3cb52018_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/memcached-exporter-rhel8@sha256:23f1671505862dfd0ff3cc38b275c42da7046dfa0ca04677068b62fb3cb52018_amd64" + }, + "product_reference": "rhacm2/memcached-exporter-rhel8@sha256:23f1671505862dfd0ff3cc38b275c42da7046dfa0ca04677068b62fb3cb52018_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/memcached-exporter-rhel8@sha256:76b6c4ae987d8d9512784e63b4c75d364e7dcee66a497a15bac49f5edb508d2b_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/memcached-exporter-rhel8@sha256:76b6c4ae987d8d9512784e63b4c75d364e7dcee66a497a15bac49f5edb508d2b_s390x" + }, + "product_reference": "rhacm2/memcached-exporter-rhel8@sha256:76b6c4ae987d8d9512784e63b4c75d364e7dcee66a497a15bac49f5edb508d2b_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/memcached-exporter-rhel8@sha256:9f88b2bc2f479193d6a771e6793bee37077c8d895b1c553d3ae66eb9c0e5011a_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/memcached-exporter-rhel8@sha256:9f88b2bc2f479193d6a771e6793bee37077c8d895b1c553d3ae66eb9c0e5011a_arm64" + }, + "product_reference": "rhacm2/memcached-exporter-rhel8@sha256:9f88b2bc2f479193d6a771e6793bee37077c8d895b1c553d3ae66eb9c0e5011a_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/memcached-exporter-rhel8@sha256:d4a4e826b18e055d9d0331a4d505d3fc39f80d9ae1de266583002ef6b02c05d0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/memcached-exporter-rhel8@sha256:d4a4e826b18e055d9d0331a4d505d3fc39f80d9ae1de266583002ef6b02c05d0_ppc64le" + }, + "product_reference": "rhacm2/memcached-exporter-rhel8@sha256:d4a4e826b18e055d9d0331a4d505d3fc39f80d9ae1de266583002ef6b02c05d0_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/memcached-rhel8@sha256:34e6553fcdaaddec9070dfdba7e313c5fc7b259b95392af8e7f4dc438c12e6cb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/memcached-rhel8@sha256:34e6553fcdaaddec9070dfdba7e313c5fc7b259b95392af8e7f4dc438c12e6cb_amd64" + }, + "product_reference": "rhacm2/memcached-rhel8@sha256:34e6553fcdaaddec9070dfdba7e313c5fc7b259b95392af8e7f4dc438c12e6cb_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/memcached-rhel8@sha256:51a97d5c25e8076cb1636fca98a887a2b118cf274ab01ffc780bea80c97fb130_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/memcached-rhel8@sha256:51a97d5c25e8076cb1636fca98a887a2b118cf274ab01ffc780bea80c97fb130_ppc64le" + }, + "product_reference": "rhacm2/memcached-rhel8@sha256:51a97d5c25e8076cb1636fca98a887a2b118cf274ab01ffc780bea80c97fb130_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/memcached-rhel8@sha256:b7d14b760adec885a14bda22744ade2b212769f09a0388cd3d6ce0eb9acb0943_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/memcached-rhel8@sha256:b7d14b760adec885a14bda22744ade2b212769f09a0388cd3d6ce0eb9acb0943_arm64" + }, + "product_reference": "rhacm2/memcached-rhel8@sha256:b7d14b760adec885a14bda22744ade2b212769f09a0388cd3d6ce0eb9acb0943_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/memcached-rhel8@sha256:e469633bb4ae670ce3508457aef0843ed87561504ef8322e54abe998f8c49ade_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/memcached-rhel8@sha256:e469633bb4ae670ce3508457aef0843ed87561504ef8322e54abe998f8c49ade_s390x" + }, + "product_reference": "rhacm2/memcached-rhel8@sha256:e469633bb4ae670ce3508457aef0843ed87561504ef8322e54abe998f8c49ade_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/metrics-collector-rhel8@sha256:2c6dbf4487de944835ef83fc068413cab0aaeb0477cb4e72d7c76e6a9476f461_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/metrics-collector-rhel8@sha256:2c6dbf4487de944835ef83fc068413cab0aaeb0477cb4e72d7c76e6a9476f461_arm64" + }, + "product_reference": "rhacm2/metrics-collector-rhel8@sha256:2c6dbf4487de944835ef83fc068413cab0aaeb0477cb4e72d7c76e6a9476f461_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/metrics-collector-rhel8@sha256:49193aa0256958f6a614476026d0d2b92288339f3d9b2c40ca630947d200af8c_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/metrics-collector-rhel8@sha256:49193aa0256958f6a614476026d0d2b92288339f3d9b2c40ca630947d200af8c_ppc64le" + }, + "product_reference": "rhacm2/metrics-collector-rhel8@sha256:49193aa0256958f6a614476026d0d2b92288339f3d9b2c40ca630947d200af8c_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/metrics-collector-rhel8@sha256:59518651f43332c7bee15907edb06591804f9317fa5c323b604ab94b6c957927_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/metrics-collector-rhel8@sha256:59518651f43332c7bee15907edb06591804f9317fa5c323b604ab94b6c957927_amd64" + }, + "product_reference": "rhacm2/metrics-collector-rhel8@sha256:59518651f43332c7bee15907edb06591804f9317fa5c323b604ab94b6c957927_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/metrics-collector-rhel8@sha256:d4baa2a50505ba7a73b7d5a231794a68da15a4be57920e1a3b318e4d5ef17052_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/metrics-collector-rhel8@sha256:d4baa2a50505ba7a73b7d5a231794a68da15a4be57920e1a3b318e4d5ef17052_s390x" + }, + "product_reference": "rhacm2/metrics-collector-rhel8@sha256:d4baa2a50505ba7a73b7d5a231794a68da15a4be57920e1a3b318e4d5ef17052_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicloud-integrations-rhel8@sha256:1d39dc9b3b16bebb0fe9e718d3995bcf34fc81c827037ac093e9228f20a61033_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/multicloud-integrations-rhel8@sha256:1d39dc9b3b16bebb0fe9e718d3995bcf34fc81c827037ac093e9228f20a61033_arm64" + }, + "product_reference": "rhacm2/multicloud-integrations-rhel8@sha256:1d39dc9b3b16bebb0fe9e718d3995bcf34fc81c827037ac093e9228f20a61033_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicloud-integrations-rhel8@sha256:5f606a789c8ba5ab82a554dc5bfa92c54b54d490ebef8865a2e114de6572c456_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/multicloud-integrations-rhel8@sha256:5f606a789c8ba5ab82a554dc5bfa92c54b54d490ebef8865a2e114de6572c456_ppc64le" + }, + "product_reference": "rhacm2/multicloud-integrations-rhel8@sha256:5f606a789c8ba5ab82a554dc5bfa92c54b54d490ebef8865a2e114de6572c456_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicloud-integrations-rhel8@sha256:a7acfc755a4b86c07299b0b7c58464e19551fe0d19c9d57a62217210597f51ef_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/multicloud-integrations-rhel8@sha256:a7acfc755a4b86c07299b0b7c58464e19551fe0d19c9d57a62217210597f51ef_amd64" + }, + "product_reference": "rhacm2/multicloud-integrations-rhel8@sha256:a7acfc755a4b86c07299b0b7c58464e19551fe0d19c9d57a62217210597f51ef_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicloud-integrations-rhel8@sha256:f42ec0da9c0d0bd95266fc5bc60c0d4e263b2332aff260b990f804ae1d138123_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/multicloud-integrations-rhel8@sha256:f42ec0da9c0d0bd95266fc5bc60c0d4e263b2332aff260b990f804ae1d138123_s390x" + }, + "product_reference": "rhacm2/multicloud-integrations-rhel8@sha256:f42ec0da9c0d0bd95266fc5bc60c0d4e263b2332aff260b990f804ae1d138123_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:06e80b429a8c9fd6109f36aa059a2fb2de2ede519b5bd0a42709e0d9296a72fa_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/multicluster-observability-rhel8-operator@sha256:06e80b429a8c9fd6109f36aa059a2fb2de2ede519b5bd0a42709e0d9296a72fa_ppc64le" + }, + "product_reference": "rhacm2/multicluster-observability-rhel8-operator@sha256:06e80b429a8c9fd6109f36aa059a2fb2de2ede519b5bd0a42709e0d9296a72fa_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:227f7b89f463001986ac0a419e62863e0781aaed829d6d47820ca7f042e62c01_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/multicluster-observability-rhel8-operator@sha256:227f7b89f463001986ac0a419e62863e0781aaed829d6d47820ca7f042e62c01_s390x" + }, + "product_reference": "rhacm2/multicluster-observability-rhel8-operator@sha256:227f7b89f463001986ac0a419e62863e0781aaed829d6d47820ca7f042e62c01_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:23d1f549cfa49d58009be021b06b013e23f55634fc0b16109d88d7d4a0cbdeef_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/multicluster-observability-rhel8-operator@sha256:23d1f549cfa49d58009be021b06b013e23f55634fc0b16109d88d7d4a0cbdeef_arm64" + }, + "product_reference": "rhacm2/multicluster-observability-rhel8-operator@sha256:23d1f549cfa49d58009be021b06b013e23f55634fc0b16109d88d7d4a0cbdeef_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:fe8d090aefee9e73f8ffb2423cab7024254f17f978347d9c0fdf600d3f9f6b50_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/multicluster-observability-rhel8-operator@sha256:fe8d090aefee9e73f8ffb2423cab7024254f17f978347d9c0fdf600d3f9f6b50_amd64" + }, + "product_reference": "rhacm2/multicluster-observability-rhel8-operator@sha256:fe8d090aefee9e73f8ffb2423cab7024254f17f978347d9c0fdf600d3f9f6b50_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:32ae3ad3863663fc5b25b40c6cb7748b9d19925cd06c7f3dd6b8ec6d0913b923_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/multicluster-operators-application-rhel8@sha256:32ae3ad3863663fc5b25b40c6cb7748b9d19925cd06c7f3dd6b8ec6d0913b923_s390x" + }, + "product_reference": "rhacm2/multicluster-operators-application-rhel8@sha256:32ae3ad3863663fc5b25b40c6cb7748b9d19925cd06c7f3dd6b8ec6d0913b923_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:51b6140571aa4c6e7a84154632095d4816109bd0a3513b3b4a2b4d422b64f2f0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/multicluster-operators-application-rhel8@sha256:51b6140571aa4c6e7a84154632095d4816109bd0a3513b3b4a2b4d422b64f2f0_ppc64le" + }, + "product_reference": "rhacm2/multicluster-operators-application-rhel8@sha256:51b6140571aa4c6e7a84154632095d4816109bd0a3513b3b4a2b4d422b64f2f0_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:72f7dc328c709ea23eaa79a8859d85ad786e35aec575f0979f383979d04fce3f_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/multicluster-operators-application-rhel8@sha256:72f7dc328c709ea23eaa79a8859d85ad786e35aec575f0979f383979d04fce3f_arm64" + }, + "product_reference": "rhacm2/multicluster-operators-application-rhel8@sha256:72f7dc328c709ea23eaa79a8859d85ad786e35aec575f0979f383979d04fce3f_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:eb132d5efe17ade5bf3ec5b153dd333521412f27682afea30f1018d98d37c93d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/multicluster-operators-application-rhel8@sha256:eb132d5efe17ade5bf3ec5b153dd333521412f27682afea30f1018d98d37c93d_amd64" + }, + "product_reference": "rhacm2/multicluster-operators-application-rhel8@sha256:eb132d5efe17ade5bf3ec5b153dd333521412f27682afea30f1018d98d37c93d_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:0ef16de05314a24c3b0d1f6a8e32d3054edb6d8f9bc04b4324c845e3f016c5f9_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/multicluster-operators-channel-rhel8@sha256:0ef16de05314a24c3b0d1f6a8e32d3054edb6d8f9bc04b4324c845e3f016c5f9_amd64" + }, + "product_reference": "rhacm2/multicluster-operators-channel-rhel8@sha256:0ef16de05314a24c3b0d1f6a8e32d3054edb6d8f9bc04b4324c845e3f016c5f9_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:eac4a1d50d69f041bcbacb595e8eeaaa9da8888cdc1584ef42f946e46dfe7ba6_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/multicluster-operators-channel-rhel8@sha256:eac4a1d50d69f041bcbacb595e8eeaaa9da8888cdc1584ef42f946e46dfe7ba6_ppc64le" + }, + "product_reference": "rhacm2/multicluster-operators-channel-rhel8@sha256:eac4a1d50d69f041bcbacb595e8eeaaa9da8888cdc1584ef42f946e46dfe7ba6_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:f47b0451ca6c08481721fd2b4dd99105cf5d6aff65bfe30d90b8aae49675c11c_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/multicluster-operators-channel-rhel8@sha256:f47b0451ca6c08481721fd2b4dd99105cf5d6aff65bfe30d90b8aae49675c11c_s390x" + }, + "product_reference": "rhacm2/multicluster-operators-channel-rhel8@sha256:f47b0451ca6c08481721fd2b4dd99105cf5d6aff65bfe30d90b8aae49675c11c_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:f559073821c7213c611062d868ffa71f48875f8720cf411a32ff399733a92752_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/multicluster-operators-channel-rhel8@sha256:f559073821c7213c611062d868ffa71f48875f8720cf411a32ff399733a92752_arm64" + }, + "product_reference": "rhacm2/multicluster-operators-channel-rhel8@sha256:f559073821c7213c611062d868ffa71f48875f8720cf411a32ff399733a92752_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:0d5b085e922233f44bb948a99ddfcd5b497ca81485c93a177fb767998fcb705f_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/multicluster-operators-subscription-rhel8@sha256:0d5b085e922233f44bb948a99ddfcd5b497ca81485c93a177fb767998fcb705f_s390x" + }, + "product_reference": "rhacm2/multicluster-operators-subscription-rhel8@sha256:0d5b085e922233f44bb948a99ddfcd5b497ca81485c93a177fb767998fcb705f_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:206e6646976eccc0a2824f512aed4c019fc9140a49c86b0e3edba28f1c2ccdf3_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/multicluster-operators-subscription-rhel8@sha256:206e6646976eccc0a2824f512aed4c019fc9140a49c86b0e3edba28f1c2ccdf3_arm64" + }, + "product_reference": "rhacm2/multicluster-operators-subscription-rhel8@sha256:206e6646976eccc0a2824f512aed4c019fc9140a49c86b0e3edba28f1c2ccdf3_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:26e81840a7d6be515a77007cc2a39355f3a85d86315193d173df7ff15360013d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/multicluster-operators-subscription-rhel8@sha256:26e81840a7d6be515a77007cc2a39355f3a85d86315193d173df7ff15360013d_ppc64le" + }, + "product_reference": "rhacm2/multicluster-operators-subscription-rhel8@sha256:26e81840a7d6be515a77007cc2a39355f3a85d86315193d173df7ff15360013d_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:ca0eda9d3eaa78da3917f97f8988dd27e4d289e806a8b453af3f9bf272af43b2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/multicluster-operators-subscription-rhel8@sha256:ca0eda9d3eaa78da3917f97f8988dd27e4d289e806a8b453af3f9bf272af43b2_amd64" + }, + "product_reference": "rhacm2/multicluster-operators-subscription-rhel8@sha256:ca0eda9d3eaa78da3917f97f8988dd27e4d289e806a8b453af3f9bf272af43b2_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multiclusterhub-rhel8@sha256:249789b887760f7c3ff23706cf03feccfa5718351a7b330f095b0e40200be919_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/multiclusterhub-rhel8@sha256:249789b887760f7c3ff23706cf03feccfa5718351a7b330f095b0e40200be919_ppc64le" + }, + "product_reference": "rhacm2/multiclusterhub-rhel8@sha256:249789b887760f7c3ff23706cf03feccfa5718351a7b330f095b0e40200be919_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multiclusterhub-rhel8@sha256:3b701e20c7bf2d8031ad5a979e9b21cea8599205755c0773f0b6ac53d3fe00af_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/multiclusterhub-rhel8@sha256:3b701e20c7bf2d8031ad5a979e9b21cea8599205755c0773f0b6ac53d3fe00af_amd64" + }, + "product_reference": "rhacm2/multiclusterhub-rhel8@sha256:3b701e20c7bf2d8031ad5a979e9b21cea8599205755c0773f0b6ac53d3fe00af_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multiclusterhub-rhel8@sha256:e1fcfdcebd7317c108abb981f883e8587edbd1132e1005e6f4f1dc44ff9c5109_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/multiclusterhub-rhel8@sha256:e1fcfdcebd7317c108abb981f883e8587edbd1132e1005e6f4f1dc44ff9c5109_arm64" + }, + "product_reference": "rhacm2/multiclusterhub-rhel8@sha256:e1fcfdcebd7317c108abb981f883e8587edbd1132e1005e6f4f1dc44ff9c5109_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multiclusterhub-rhel8@sha256:fb20c8f580259ce1929ca0d7a3174e06643dd29d3e3ba69f6c107d4f0a23b764_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/multiclusterhub-rhel8@sha256:fb20c8f580259ce1929ca0d7a3174e06643dd29d3e3ba69f6c107d4f0a23b764_s390x" + }, + "product_reference": "rhacm2/multiclusterhub-rhel8@sha256:fb20c8f580259ce1929ca0d7a3174e06643dd29d3e3ba69f6c107d4f0a23b764_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/node-exporter-rhel8@sha256:44afe6666fba927709b61f8fe11bfb5e417c1a9a636d949ea498051c9cf30109_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/node-exporter-rhel8@sha256:44afe6666fba927709b61f8fe11bfb5e417c1a9a636d949ea498051c9cf30109_arm64" + }, + "product_reference": "rhacm2/node-exporter-rhel8@sha256:44afe6666fba927709b61f8fe11bfb5e417c1a9a636d949ea498051c9cf30109_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/node-exporter-rhel8@sha256:4a5001cd02ad785a93bf5b2863efc4e5b1dd5a32cad763177a65570bab7bf14d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/node-exporter-rhel8@sha256:4a5001cd02ad785a93bf5b2863efc4e5b1dd5a32cad763177a65570bab7bf14d_ppc64le" + }, + "product_reference": "rhacm2/node-exporter-rhel8@sha256:4a5001cd02ad785a93bf5b2863efc4e5b1dd5a32cad763177a65570bab7bf14d_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/node-exporter-rhel8@sha256:6ab877e385e399554328d5cc0298efa61e98024944f232b1ef42db9e9557dd49_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/node-exporter-rhel8@sha256:6ab877e385e399554328d5cc0298efa61e98024944f232b1ef42db9e9557dd49_s390x" + }, + "product_reference": "rhacm2/node-exporter-rhel8@sha256:6ab877e385e399554328d5cc0298efa61e98024944f232b1ef42db9e9557dd49_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/node-exporter-rhel8@sha256:bb1ae67b0c71bb8c3050692087f235a45e489da875c8f7786cd64fab53bc3f9d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/node-exporter-rhel8@sha256:bb1ae67b0c71bb8c3050692087f235a45e489da875c8f7786cd64fab53bc3f9d_amd64" + }, + "product_reference": "rhacm2/node-exporter-rhel8@sha256:bb1ae67b0c71bb8c3050692087f235a45e489da875c8f7786cd64fab53bc3f9d_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/observatorium-rhel8-operator@sha256:2efc875c6a5c0fe03db8618153bd441e4ce3d2c8a30ef27de3558bdac73533ae_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/observatorium-rhel8-operator@sha256:2efc875c6a5c0fe03db8618153bd441e4ce3d2c8a30ef27de3558bdac73533ae_ppc64le" + }, + "product_reference": "rhacm2/observatorium-rhel8-operator@sha256:2efc875c6a5c0fe03db8618153bd441e4ce3d2c8a30ef27de3558bdac73533ae_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/observatorium-rhel8-operator@sha256:51299b4ac2ff84c990826191540befaeb7d291861c90430c68c92164150d48c6_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/observatorium-rhel8-operator@sha256:51299b4ac2ff84c990826191540befaeb7d291861c90430c68c92164150d48c6_amd64" + }, + "product_reference": "rhacm2/observatorium-rhel8-operator@sha256:51299b4ac2ff84c990826191540befaeb7d291861c90430c68c92164150d48c6_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/observatorium-rhel8-operator@sha256:b9cb71ed0ac27970aaaf0f60e1c90d5b1dbfb2bcd8a432537bb2db3ad4d82d83_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/observatorium-rhel8-operator@sha256:b9cb71ed0ac27970aaaf0f60e1c90d5b1dbfb2bcd8a432537bb2db3ad4d82d83_s390x" + }, + "product_reference": "rhacm2/observatorium-rhel8-operator@sha256:b9cb71ed0ac27970aaaf0f60e1c90d5b1dbfb2bcd8a432537bb2db3ad4d82d83_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/observatorium-rhel8-operator@sha256:deee6c9ef749b7ba011b2f53dcdf06221648563a146b5802d3719ddd3f5c0a82_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/observatorium-rhel8-operator@sha256:deee6c9ef749b7ba011b2f53dcdf06221648563a146b5802d3719ddd3f5c0a82_arm64" + }, + "product_reference": "rhacm2/observatorium-rhel8-operator@sha256:deee6c9ef749b7ba011b2f53dcdf06221648563a146b5802d3719ddd3f5c0a82_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/observatorium-rhel8@sha256:0bdb4a4829fad9a95ceec48706fe93a276ed68a7366c6f8fd7d0e1f51205e1eb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/observatorium-rhel8@sha256:0bdb4a4829fad9a95ceec48706fe93a276ed68a7366c6f8fd7d0e1f51205e1eb_amd64" + }, + "product_reference": "rhacm2/observatorium-rhel8@sha256:0bdb4a4829fad9a95ceec48706fe93a276ed68a7366c6f8fd7d0e1f51205e1eb_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/observatorium-rhel8@sha256:87459371da3da99de6810d29b079a5384b7fc6cefc0664f2ded4886b4dc46763_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/observatorium-rhel8@sha256:87459371da3da99de6810d29b079a5384b7fc6cefc0664f2ded4886b4dc46763_ppc64le" + }, + "product_reference": "rhacm2/observatorium-rhel8@sha256:87459371da3da99de6810d29b079a5384b7fc6cefc0664f2ded4886b4dc46763_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/observatorium-rhel8@sha256:be950787b7921c2407ec29fbf309ab5f9e6a7e9f286fd79bf0ecd782d3f71474_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/observatorium-rhel8@sha256:be950787b7921c2407ec29fbf309ab5f9e6a7e9f286fd79bf0ecd782d3f71474_arm64" + }, + "product_reference": "rhacm2/observatorium-rhel8@sha256:be950787b7921c2407ec29fbf309ab5f9e6a7e9f286fd79bf0ecd782d3f71474_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/observatorium-rhel8@sha256:c9d6d24f468cc982450ad14b8b0402e6261be668a9bf154863b35abb4a24db9f_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/observatorium-rhel8@sha256:c9d6d24f468cc982450ad14b8b0402e6261be668a9bf154863b35abb4a24db9f_s390x" + }, + "product_reference": "rhacm2/observatorium-rhel8@sha256:c9d6d24f468cc982450ad14b8b0402e6261be668a9bf154863b35abb4a24db9f_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:116ac1acacb1d6e036be8b877e25678d4884378581c6bde98b65e545dfc6e45e_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/prometheus-alertmanager-rhel8@sha256:116ac1acacb1d6e036be8b877e25678d4884378581c6bde98b65e545dfc6e45e_ppc64le" + }, + "product_reference": "rhacm2/prometheus-alertmanager-rhel8@sha256:116ac1acacb1d6e036be8b877e25678d4884378581c6bde98b65e545dfc6e45e_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:60b0054b6061ee4a17deeb80ccd2936ed8a26e05445cd2c4ee68cfea4080bb7e_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/prometheus-alertmanager-rhel8@sha256:60b0054b6061ee4a17deeb80ccd2936ed8a26e05445cd2c4ee68cfea4080bb7e_s390x" + }, + "product_reference": "rhacm2/prometheus-alertmanager-rhel8@sha256:60b0054b6061ee4a17deeb80ccd2936ed8a26e05445cd2c4ee68cfea4080bb7e_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:75ce0c796cd35bf8f430681c7f006141cff7238874441d01a0a6b23a29110002_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/prometheus-alertmanager-rhel8@sha256:75ce0c796cd35bf8f430681c7f006141cff7238874441d01a0a6b23a29110002_amd64" + }, + "product_reference": "rhacm2/prometheus-alertmanager-rhel8@sha256:75ce0c796cd35bf8f430681c7f006141cff7238874441d01a0a6b23a29110002_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:aaa7f7ac39119a98620aa0b64f101587594f2d5e46d06512efa281d19ac1fa8d_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/prometheus-alertmanager-rhel8@sha256:aaa7f7ac39119a98620aa0b64f101587594f2d5e46d06512efa281d19ac1fa8d_arm64" + }, + "product_reference": "rhacm2/prometheus-alertmanager-rhel8@sha256:aaa7f7ac39119a98620aa0b64f101587594f2d5e46d06512efa281d19ac1fa8d_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/prometheus-rhel8@sha256:0b5f6bb09c9398cfe36c7f9cced3b6532c075487ae7e3c06676fa1f43ace9f59_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/prometheus-rhel8@sha256:0b5f6bb09c9398cfe36c7f9cced3b6532c075487ae7e3c06676fa1f43ace9f59_s390x" + }, + "product_reference": "rhacm2/prometheus-rhel8@sha256:0b5f6bb09c9398cfe36c7f9cced3b6532c075487ae7e3c06676fa1f43ace9f59_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/prometheus-rhel8@sha256:2ef70d3391863dd359b2ad2373d1678472a6f0b6464fd0409c3b0026e91d9f99_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/prometheus-rhel8@sha256:2ef70d3391863dd359b2ad2373d1678472a6f0b6464fd0409c3b0026e91d9f99_arm64" + }, + "product_reference": "rhacm2/prometheus-rhel8@sha256:2ef70d3391863dd359b2ad2373d1678472a6f0b6464fd0409c3b0026e91d9f99_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/prometheus-rhel8@sha256:9d1483142ba377a0351e7d84a94787c777f6407d732ef41d77d4d872f3e2b2fc_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/prometheus-rhel8@sha256:9d1483142ba377a0351e7d84a94787c777f6407d732ef41d77d4d872f3e2b2fc_ppc64le" + }, + "product_reference": "rhacm2/prometheus-rhel8@sha256:9d1483142ba377a0351e7d84a94787c777f6407d732ef41d77d4d872f3e2b2fc_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/prometheus-rhel8@sha256:b3f74a16bb9f4d72cd95c171652344d676935b7516a4b983e3eeea1be6b677f1_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/prometheus-rhel8@sha256:b3f74a16bb9f4d72cd95c171652344d676935b7516a4b983e3eeea1be6b677f1_amd64" + }, + "product_reference": "rhacm2/prometheus-rhel8@sha256:b3f74a16bb9f4d72cd95c171652344d676935b7516a4b983e3eeea1be6b677f1_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:02a72731414ecc961684a1a102fb77a0ed7b0f33332168c75b2fb705af762035_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/rbac-query-proxy-rhel8@sha256:02a72731414ecc961684a1a102fb77a0ed7b0f33332168c75b2fb705af762035_amd64" + }, + "product_reference": "rhacm2/rbac-query-proxy-rhel8@sha256:02a72731414ecc961684a1a102fb77a0ed7b0f33332168c75b2fb705af762035_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:67eca891e208cd3de56250b22ff0ca8625c767181cd282e85c837183427e85ca_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/rbac-query-proxy-rhel8@sha256:67eca891e208cd3de56250b22ff0ca8625c767181cd282e85c837183427e85ca_s390x" + }, + "product_reference": "rhacm2/rbac-query-proxy-rhel8@sha256:67eca891e208cd3de56250b22ff0ca8625c767181cd282e85c837183427e85ca_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:a32c04e7d60d5a5109ba306942503ced5591e08362a060c502b47d93291101ee_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/rbac-query-proxy-rhel8@sha256:a32c04e7d60d5a5109ba306942503ced5591e08362a060c502b47d93291101ee_arm64" + }, + "product_reference": "rhacm2/rbac-query-proxy-rhel8@sha256:a32c04e7d60d5a5109ba306942503ced5591e08362a060c502b47d93291101ee_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:ca957311c7bcdff8d9ed8694fe3523a02ddce73ffcdccd06580cf57555f599cc_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/rbac-query-proxy-rhel8@sha256:ca957311c7bcdff8d9ed8694fe3523a02ddce73ffcdccd06580cf57555f599cc_ppc64le" + }, + "product_reference": "rhacm2/rbac-query-proxy-rhel8@sha256:ca957311c7bcdff8d9ed8694fe3523a02ddce73ffcdccd06580cf57555f599cc_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/search-collector-rhel8@sha256:04cf8b9ffd2c9614794707712710e4d35a77a4e16a000dda8cd83b71798fa11b_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/search-collector-rhel8@sha256:04cf8b9ffd2c9614794707712710e4d35a77a4e16a000dda8cd83b71798fa11b_arm64" + }, + "product_reference": "rhacm2/search-collector-rhel8@sha256:04cf8b9ffd2c9614794707712710e4d35a77a4e16a000dda8cd83b71798fa11b_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/search-collector-rhel8@sha256:94022ed8b900257ff760e1cbcbed2382d399577b3123d947da9b668443e0f1cb_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/search-collector-rhel8@sha256:94022ed8b900257ff760e1cbcbed2382d399577b3123d947da9b668443e0f1cb_ppc64le" + }, + "product_reference": "rhacm2/search-collector-rhel8@sha256:94022ed8b900257ff760e1cbcbed2382d399577b3123d947da9b668443e0f1cb_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/search-collector-rhel8@sha256:a82e092b2a07e56199bbfb743221a15508558eaae045adde7b238d81078b5a8c_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/search-collector-rhel8@sha256:a82e092b2a07e56199bbfb743221a15508558eaae045adde7b238d81078b5a8c_amd64" + }, + "product_reference": "rhacm2/search-collector-rhel8@sha256:a82e092b2a07e56199bbfb743221a15508558eaae045adde7b238d81078b5a8c_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/search-collector-rhel8@sha256:d6d9dee94b5a27e9c5f138a1564bf1ea8494dbf8860768b5b381b7e894995ada_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/search-collector-rhel8@sha256:d6d9dee94b5a27e9c5f138a1564bf1ea8494dbf8860768b5b381b7e894995ada_s390x" + }, + "product_reference": "rhacm2/search-collector-rhel8@sha256:d6d9dee94b5a27e9c5f138a1564bf1ea8494dbf8860768b5b381b7e894995ada_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/submariner-addon-rhel8@sha256:132659ca491d75dd1eaf645b6a2b98f9f1e5b5e4aa352d231d82b1b766490522_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/submariner-addon-rhel8@sha256:132659ca491d75dd1eaf645b6a2b98f9f1e5b5e4aa352d231d82b1b766490522_ppc64le" + }, + "product_reference": "rhacm2/submariner-addon-rhel8@sha256:132659ca491d75dd1eaf645b6a2b98f9f1e5b5e4aa352d231d82b1b766490522_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/submariner-addon-rhel8@sha256:670cdada591c009519b4f7fbb1adda45bdf5a8932801df2cf2831507c0effb4f_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/submariner-addon-rhel8@sha256:670cdada591c009519b4f7fbb1adda45bdf5a8932801df2cf2831507c0effb4f_amd64" + }, + "product_reference": "rhacm2/submariner-addon-rhel8@sha256:670cdada591c009519b4f7fbb1adda45bdf5a8932801df2cf2831507c0effb4f_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/submariner-addon-rhel8@sha256:7497c2b85c22510beff99aa8aa7ab81541ccff7ef01a9cb3bd3614616a3f92ea_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/submariner-addon-rhel8@sha256:7497c2b85c22510beff99aa8aa7ab81541ccff7ef01a9cb3bd3614616a3f92ea_s390x" + }, + "product_reference": "rhacm2/submariner-addon-rhel8@sha256:7497c2b85c22510beff99aa8aa7ab81541ccff7ef01a9cb3bd3614616a3f92ea_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/submariner-addon-rhel8@sha256:9ad81706a3c4ca1c80868ea793d9c8551e40f4600ba531a466c0e48c304ca171_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/submariner-addon-rhel8@sha256:9ad81706a3c4ca1c80868ea793d9c8551e40f4600ba531a466c0e48c304ca171_arm64" + }, + "product_reference": "rhacm2/submariner-addon-rhel8@sha256:9ad81706a3c4ca1c80868ea793d9c8551e40f4600ba531a466c0e48c304ca171_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:0db75e56976b120fa9649721cde3e3529032ca5ce27ec2b0c43fd391ea04d37b_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/thanos-receive-controller-rhel8@sha256:0db75e56976b120fa9649721cde3e3529032ca5ce27ec2b0c43fd391ea04d37b_ppc64le" + }, + "product_reference": "rhacm2/thanos-receive-controller-rhel8@sha256:0db75e56976b120fa9649721cde3e3529032ca5ce27ec2b0c43fd391ea04d37b_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:223b070eb0696cd5bd2981d5a8e2bc0d588d9d5ea7169ab6474fb17b9aa56214_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/thanos-receive-controller-rhel8@sha256:223b070eb0696cd5bd2981d5a8e2bc0d588d9d5ea7169ab6474fb17b9aa56214_amd64" + }, + "product_reference": "rhacm2/thanos-receive-controller-rhel8@sha256:223b070eb0696cd5bd2981d5a8e2bc0d588d9d5ea7169ab6474fb17b9aa56214_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:2bb7b042c305d21168eaf726d15854d8e187011cf7e00c892dfc424cd30c720d_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/thanos-receive-controller-rhel8@sha256:2bb7b042c305d21168eaf726d15854d8e187011cf7e00c892dfc424cd30c720d_s390x" + }, + "product_reference": "rhacm2/thanos-receive-controller-rhel8@sha256:2bb7b042c305d21168eaf726d15854d8e187011cf7e00c892dfc424cd30c720d_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:2f0bfbe4560a27bc77c2bf79fd544548c299bd5ab185b813f0f56e826861b0f9_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/thanos-receive-controller-rhel8@sha256:2f0bfbe4560a27bc77c2bf79fd544548c299bd5ab185b813f0f56e826861b0f9_arm64" + }, + "product_reference": "rhacm2/thanos-receive-controller-rhel8@sha256:2f0bfbe4560a27bc77c2bf79fd544548c299bd5ab185b813f0f56e826861b0f9_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/thanos-rhel8@sha256:0e35756239bd71e15a08433545047d65345037facee55d464b976c803e0d1883_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/thanos-rhel8@sha256:0e35756239bd71e15a08433545047d65345037facee55d464b976c803e0d1883_s390x" + }, + "product_reference": "rhacm2/thanos-rhel8@sha256:0e35756239bd71e15a08433545047d65345037facee55d464b976c803e0d1883_s390x", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/thanos-rhel8@sha256:156c00a64a6d59aa5e7a0a0e0de7c71675a45251e49adabfc7cfc6525b70b3a1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/thanos-rhel8@sha256:156c00a64a6d59aa5e7a0a0e0de7c71675a45251e49adabfc7cfc6525b70b3a1_ppc64le" + }, + "product_reference": "rhacm2/thanos-rhel8@sha256:156c00a64a6d59aa5e7a0a0e0de7c71675a45251e49adabfc7cfc6525b70b3a1_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/thanos-rhel8@sha256:193d2700f2abba96c11af9b96afe65579ed071cbb3be7b2aba4c8a26d7e84855_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/thanos-rhel8@sha256:193d2700f2abba96c11af9b96afe65579ed071cbb3be7b2aba4c8a26d7e84855_arm64" + }, + "product_reference": "rhacm2/thanos-rhel8@sha256:193d2700f2abba96c11af9b96afe65579ed071cbb3be7b2aba4c8a26d7e84855_arm64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/thanos-rhel8@sha256:623a1fcc8d5911a0b286d58bc5bee663a9afa2482dda4e121a07e0641e3000f0_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.7 for RHEL 8", + "product_id": "8Base-RHACM-2.7:rhacm2/thanos-rhel8@sha256:623a1fcc8d5911a0b286d58bc5bee663a9afa2482dda4e121a07e0641e3000f0_amd64" + }, + "product_reference": "rhacm2/thanos-rhel8@sha256:623a1fcc8d5911a0b286d58bc5bee663a9afa2482dda4e121a07e0641e3000f0_amd64", + "relates_to_product_reference": "8Base-RHACM-2.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:2d22ec274c21b8a9baee1257a6384c8711093f12048418bf77e9432fd826d7e5_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:2d22ec274c21b8a9baee1257a6384c8711093f12048418bf77e9432fd826d7e5_ppc64le" + }, + "product_reference": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:2d22ec274c21b8a9baee1257a6384c8711093f12048418bf77e9432fd826d7e5_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:8ea03298ea9b7ad2ab5e7044ec97f36be2ddadd67aecd0b009257c163c5954af_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:8ea03298ea9b7ad2ab5e7044ec97f36be2ddadd67aecd0b009257c163c5954af_arm64" + }, + "product_reference": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:8ea03298ea9b7ad2ab5e7044ec97f36be2ddadd67aecd0b009257c163c5954af_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:ae0f7c315e5eb2ba0fc166966ffb7ebac10d399cafa47132f7333b06d2f15b99_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:ae0f7c315e5eb2ba0fc166966ffb7ebac10d399cafa47132f7333b06d2f15b99_amd64" + }, + "product_reference": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:ae0f7c315e5eb2ba0fc166966ffb7ebac10d399cafa47132f7333b06d2f15b99_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:c2ab23aa77bf351bf401dd26adfefe2797419493b643ae8ab2d04ba8dc02b98d_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:c2ab23aa77bf351bf401dd26adfefe2797419493b643ae8ab2d04ba8dc02b98d_s390x" + }, + "product_reference": "rhacm2/acm-governance-policy-addon-controller-rhel8@sha256:c2ab23aa77bf351bf401dd26adfefe2797419493b643ae8ab2d04ba8dc02b98d_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:2e6f43857d9b2e8a253c642ed8ddc7d2026d61164bd9b7adb55cce2554d04575_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:2e6f43857d9b2e8a253c642ed8ddc7d2026d61164bd9b7adb55cce2554d04575_s390x" + }, + "product_reference": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:2e6f43857d9b2e8a253c642ed8ddc7d2026d61164bd9b7adb55cce2554d04575_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:4396bef1d25c606399d775da80d8df03d41cf86081ebedab4b0acf28458ca9b2_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:4396bef1d25c606399d775da80d8df03d41cf86081ebedab4b0acf28458ca9b2_arm64" + }, + "product_reference": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:4396bef1d25c606399d775da80d8df03d41cf86081ebedab4b0acf28458ca9b2_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:5eeefe240d422252c631bee7d2c07bed893570a3af2962e5036f48489db9c8f0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:5eeefe240d422252c631bee7d2c07bed893570a3af2962e5036f48489db9c8f0_ppc64le" + }, + "product_reference": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:5eeefe240d422252c631bee7d2c07bed893570a3af2962e5036f48489db9c8f0_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:751c1e2bd2d9a69825825e26d202604e61afc09bef83bb065cca5f29a962eb75_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:751c1e2bd2d9a69825825e26d202604e61afc09bef83bb065cca5f29a962eb75_amd64" + }, + "product_reference": "rhacm2/acm-governance-policy-framework-addon-rhel8@sha256:751c1e2bd2d9a69825825e26d202604e61afc09bef83bb065cca5f29a962eb75_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-grafana-rhel8@sha256:1c4f46b57a32da7133acd2f6c822d16ba008012e2e8841d53a138d460e2106c8_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-grafana-rhel8@sha256:1c4f46b57a32da7133acd2f6c822d16ba008012e2e8841d53a138d460e2106c8_ppc64le" + }, + "product_reference": "rhacm2/acm-grafana-rhel8@sha256:1c4f46b57a32da7133acd2f6c822d16ba008012e2e8841d53a138d460e2106c8_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-grafana-rhel8@sha256:25ba12ecdf0ffdc8d6df41b422bcd3b036dab4ec0cc24152fcda39f23dea222c_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-grafana-rhel8@sha256:25ba12ecdf0ffdc8d6df41b422bcd3b036dab4ec0cc24152fcda39f23dea222c_amd64" + }, + "product_reference": "rhacm2/acm-grafana-rhel8@sha256:25ba12ecdf0ffdc8d6df41b422bcd3b036dab4ec0cc24152fcda39f23dea222c_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-grafana-rhel8@sha256:3fc6d018b92a00067d8e58bd178d4ccfdd45c922600179e5caf85068735cd1da_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-grafana-rhel8@sha256:3fc6d018b92a00067d8e58bd178d4ccfdd45c922600179e5caf85068735cd1da_arm64" + }, + "product_reference": "rhacm2/acm-grafana-rhel8@sha256:3fc6d018b92a00067d8e58bd178d4ccfdd45c922600179e5caf85068735cd1da_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-grafana-rhel8@sha256:a6dab3ca60bd0301bf99f110bd60ec8c38f4524c1dbb7752660379215611408d_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-grafana-rhel8@sha256:a6dab3ca60bd0301bf99f110bd60ec8c38f4524c1dbb7752660379215611408d_s390x" + }, + "product_reference": "rhacm2/acm-grafana-rhel8@sha256:a6dab3ca60bd0301bf99f110bd60ec8c38f4524c1dbb7752660379215611408d_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-must-gather-rhel8@sha256:3cdce8a566221b913a88d9b7a9afd9a7766e15675957963a8cbd3459441955c5_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-must-gather-rhel8@sha256:3cdce8a566221b913a88d9b7a9afd9a7766e15675957963a8cbd3459441955c5_amd64" + }, + "product_reference": "rhacm2/acm-must-gather-rhel8@sha256:3cdce8a566221b913a88d9b7a9afd9a7766e15675957963a8cbd3459441955c5_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-must-gather-rhel8@sha256:7ec612840d9ec8dc33d383382bf7ece05ede3863e90e268328b0904cb0e20485_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-must-gather-rhel8@sha256:7ec612840d9ec8dc33d383382bf7ece05ede3863e90e268328b0904cb0e20485_s390x" + }, + "product_reference": "rhacm2/acm-must-gather-rhel8@sha256:7ec612840d9ec8dc33d383382bf7ece05ede3863e90e268328b0904cb0e20485_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-must-gather-rhel8@sha256:d2b819b62d625930714cd4f7e6f54c2b8e035d2c4c0cc6cbec49c7bb93500f0f_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-must-gather-rhel8@sha256:d2b819b62d625930714cd4f7e6f54c2b8e035d2c4c0cc6cbec49c7bb93500f0f_ppc64le" + }, + "product_reference": "rhacm2/acm-must-gather-rhel8@sha256:d2b819b62d625930714cd4f7e6f54c2b8e035d2c4c0cc6cbec49c7bb93500f0f_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-must-gather-rhel8@sha256:eaef7a412290769e6782af14aaecf4347418e762a9e9ce4b66b4cf1124c600d3_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-must-gather-rhel8@sha256:eaef7a412290769e6782af14aaecf4347418e762a9e9ce4b66b4cf1124c600d3_arm64" + }, + "product_reference": "rhacm2/acm-must-gather-rhel8@sha256:eaef7a412290769e6782af14aaecf4347418e762a9e9ce4b66b4cf1124c600d3_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-operator-bundle@sha256:6a324ce5650572e54c17daebdea1f04d0db27d36862ea1eccef55661c96a0a38_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-operator-bundle@sha256:6a324ce5650572e54c17daebdea1f04d0db27d36862ea1eccef55661c96a0a38_amd64" + }, + "product_reference": "rhacm2/acm-operator-bundle@sha256:6a324ce5650572e54c17daebdea1f04d0db27d36862ea1eccef55661c96a0a38_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-operator-bundle@sha256:8f7d98d3b4bfc5d62a79a8cf4b92e68b91a33e3275017a195acda843897840a1_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-operator-bundle@sha256:8f7d98d3b4bfc5d62a79a8cf4b92e68b91a33e3275017a195acda843897840a1_s390x" + }, + "product_reference": "rhacm2/acm-operator-bundle@sha256:8f7d98d3b4bfc5d62a79a8cf4b92e68b91a33e3275017a195acda843897840a1_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-operator-bundle@sha256:969c8cea475b770644c2b7b7232805b7315cdda53556e45ca4d3d1ab931cecaf_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-operator-bundle@sha256:969c8cea475b770644c2b7b7232805b7315cdda53556e45ca4d3d1ab931cecaf_ppc64le" + }, + "product_reference": "rhacm2/acm-operator-bundle@sha256:969c8cea475b770644c2b7b7232805b7315cdda53556e45ca4d3d1ab931cecaf_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:198cd84a895a867e262086c84c8a6fea7cfec53bb080ff93c730d3c9169b5b52_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-prometheus-config-reloader-rhel8@sha256:198cd84a895a867e262086c84c8a6fea7cfec53bb080ff93c730d3c9169b5b52_arm64" + }, + "product_reference": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:198cd84a895a867e262086c84c8a6fea7cfec53bb080ff93c730d3c9169b5b52_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:4b0a77a9ef75f088438fe4d44e5ba2ef6240ea93053991bdc25f9cba653d35bf_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-prometheus-config-reloader-rhel8@sha256:4b0a77a9ef75f088438fe4d44e5ba2ef6240ea93053991bdc25f9cba653d35bf_s390x" + }, + "product_reference": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:4b0a77a9ef75f088438fe4d44e5ba2ef6240ea93053991bdc25f9cba653d35bf_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:9506bb2b641bab7ce5c109e300521d1124e69dd2e5033e8d987cfc5ad15e1b65_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-prometheus-config-reloader-rhel8@sha256:9506bb2b641bab7ce5c109e300521d1124e69dd2e5033e8d987cfc5ad15e1b65_ppc64le" + }, + "product_reference": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:9506bb2b641bab7ce5c109e300521d1124e69dd2e5033e8d987cfc5ad15e1b65_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:a8003ffc721d10f5ebcc1370f19aa7c36d0cfe6845e6727fd90b4f04eec1e1be_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-prometheus-config-reloader-rhel8@sha256:a8003ffc721d10f5ebcc1370f19aa7c36d0cfe6845e6727fd90b4f04eec1e1be_amd64" + }, + "product_reference": "rhacm2/acm-prometheus-config-reloader-rhel8@sha256:a8003ffc721d10f5ebcc1370f19aa7c36d0cfe6845e6727fd90b4f04eec1e1be_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-prometheus-rhel8@sha256:2c6617b626b4eb1bb72d5ed6da29e5bbd3c1c469950054d8f7ff5ccd43c4d9cf_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-prometheus-rhel8@sha256:2c6617b626b4eb1bb72d5ed6da29e5bbd3c1c469950054d8f7ff5ccd43c4d9cf_amd64" + }, + "product_reference": "rhacm2/acm-prometheus-rhel8@sha256:2c6617b626b4eb1bb72d5ed6da29e5bbd3c1c469950054d8f7ff5ccd43c4d9cf_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-prometheus-rhel8@sha256:b56b6d227dfb907ee8ab9e26337288607ecf133a1e032c708265df64c30bec10_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-prometheus-rhel8@sha256:b56b6d227dfb907ee8ab9e26337288607ecf133a1e032c708265df64c30bec10_ppc64le" + }, + "product_reference": "rhacm2/acm-prometheus-rhel8@sha256:b56b6d227dfb907ee8ab9e26337288607ecf133a1e032c708265df64c30bec10_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-prometheus-rhel8@sha256:d95cc03e85672b97f0d591d56126d945f85e0661c3625225570cea0543b4e45c_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-prometheus-rhel8@sha256:d95cc03e85672b97f0d591d56126d945f85e0661c3625225570cea0543b4e45c_s390x" + }, + "product_reference": "rhacm2/acm-prometheus-rhel8@sha256:d95cc03e85672b97f0d591d56126d945f85e0661c3625225570cea0543b4e45c_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-prometheus-rhel8@sha256:fc38b151c466158a8ac994332e41a9c739c28f5768907caafeebde5b8dc4cc1b_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-prometheus-rhel8@sha256:fc38b151c466158a8ac994332e41a9c739c28f5768907caafeebde5b8dc4cc1b_arm64" + }, + "product_reference": "rhacm2/acm-prometheus-rhel8@sha256:fc38b151c466158a8ac994332e41a9c739c28f5768907caafeebde5b8dc4cc1b_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-search-indexer-rhel8@sha256:519b21080b9051d3326a374129a338f80f82ac07b2f9222f27628ace971175c2_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-search-indexer-rhel8@sha256:519b21080b9051d3326a374129a338f80f82ac07b2f9222f27628ace971175c2_ppc64le" + }, + "product_reference": "rhacm2/acm-search-indexer-rhel8@sha256:519b21080b9051d3326a374129a338f80f82ac07b2f9222f27628ace971175c2_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-search-indexer-rhel8@sha256:6117c9c95c21d09e2f996b14f23e21e986ee88a3f9485ec74a2aa32515347896_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-search-indexer-rhel8@sha256:6117c9c95c21d09e2f996b14f23e21e986ee88a3f9485ec74a2aa32515347896_arm64" + }, + "product_reference": "rhacm2/acm-search-indexer-rhel8@sha256:6117c9c95c21d09e2f996b14f23e21e986ee88a3f9485ec74a2aa32515347896_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-search-indexer-rhel8@sha256:bbeaf4cf6b1b70ae274ec160aacf64769676ebb22b94aca7e7ad4b109276db60_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-search-indexer-rhel8@sha256:bbeaf4cf6b1b70ae274ec160aacf64769676ebb22b94aca7e7ad4b109276db60_s390x" + }, + "product_reference": "rhacm2/acm-search-indexer-rhel8@sha256:bbeaf4cf6b1b70ae274ec160aacf64769676ebb22b94aca7e7ad4b109276db60_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-search-indexer-rhel8@sha256:e9400f0866719bdc0722fc2de331d0fe7e95235809bc1e9f234ec0505069d415_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-search-indexer-rhel8@sha256:e9400f0866719bdc0722fc2de331d0fe7e95235809bc1e9f234ec0505069d415_amd64" + }, + "product_reference": "rhacm2/acm-search-indexer-rhel8@sha256:e9400f0866719bdc0722fc2de331d0fe7e95235809bc1e9f234ec0505069d415_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-search-v2-api-rhel8@sha256:058c73937555fe4958768cc256557479d7b7457a2b9b54ab0cb1b45a283c0e9f_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-search-v2-api-rhel8@sha256:058c73937555fe4958768cc256557479d7b7457a2b9b54ab0cb1b45a283c0e9f_amd64" + }, + "product_reference": "rhacm2/acm-search-v2-api-rhel8@sha256:058c73937555fe4958768cc256557479d7b7457a2b9b54ab0cb1b45a283c0e9f_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-search-v2-api-rhel8@sha256:7d73e38dd9451ebd7f9f721271ddfb238c2fa537caecad82e80246f14b93a339_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-search-v2-api-rhel8@sha256:7d73e38dd9451ebd7f9f721271ddfb238c2fa537caecad82e80246f14b93a339_arm64" + }, + "product_reference": "rhacm2/acm-search-v2-api-rhel8@sha256:7d73e38dd9451ebd7f9f721271ddfb238c2fa537caecad82e80246f14b93a339_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-search-v2-api-rhel8@sha256:bdab33be5c6359510a261b7ac3669bed2d9b2c2c90f52fc87a556a66a484c377_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-search-v2-api-rhel8@sha256:bdab33be5c6359510a261b7ac3669bed2d9b2c2c90f52fc87a556a66a484c377_s390x" + }, + "product_reference": "rhacm2/acm-search-v2-api-rhel8@sha256:bdab33be5c6359510a261b7ac3669bed2d9b2c2c90f52fc87a556a66a484c377_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-search-v2-api-rhel8@sha256:f8aa1327fa5304e6630bcf508a2376552e0243760c9f8f30e5104a89bdefa6ad_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-search-v2-api-rhel8@sha256:f8aa1327fa5304e6630bcf508a2376552e0243760c9f8f30e5104a89bdefa6ad_ppc64le" + }, + "product_reference": "rhacm2/acm-search-v2-api-rhel8@sha256:f8aa1327fa5304e6630bcf508a2376552e0243760c9f8f30e5104a89bdefa6ad_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-search-v2-rhel8@sha256:13d0a4f5c707e4b9b0d69f5924b606fc5924a2bb5dbc372119565c51727a353f_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-search-v2-rhel8@sha256:13d0a4f5c707e4b9b0d69f5924b606fc5924a2bb5dbc372119565c51727a353f_arm64" + }, + "product_reference": "rhacm2/acm-search-v2-rhel8@sha256:13d0a4f5c707e4b9b0d69f5924b606fc5924a2bb5dbc372119565c51727a353f_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-search-v2-rhel8@sha256:7258c07ed8a7390aa22132fa41a00b6fa226974008d4c0431d84e5de5d391611_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-search-v2-rhel8@sha256:7258c07ed8a7390aa22132fa41a00b6fa226974008d4c0431d84e5de5d391611_amd64" + }, + "product_reference": "rhacm2/acm-search-v2-rhel8@sha256:7258c07ed8a7390aa22132fa41a00b6fa226974008d4c0431d84e5de5d391611_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-search-v2-rhel8@sha256:83b861095e72d2e93aadbcce196aaac90153e175b71aea331c3f85ab35e85e74_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-search-v2-rhel8@sha256:83b861095e72d2e93aadbcce196aaac90153e175b71aea331c3f85ab35e85e74_ppc64le" + }, + "product_reference": "rhacm2/acm-search-v2-rhel8@sha256:83b861095e72d2e93aadbcce196aaac90153e175b71aea331c3f85ab35e85e74_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-search-v2-rhel8@sha256:902f1268e0f058c53edb63846b0dc49b0a94a8021c39740318cfaedc3b010e6d_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-search-v2-rhel8@sha256:902f1268e0f058c53edb63846b0dc49b0a94a8021c39740318cfaedc3b010e6d_s390x" + }, + "product_reference": "rhacm2/acm-search-v2-rhel8@sha256:902f1268e0f058c53edb63846b0dc49b0a94a8021c39740318cfaedc3b010e6d_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:178fff3d28af5530f439c63a258a58963bc79a157ee44db5074235e95a33f0f0_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-volsync-addon-controller-rhel8@sha256:178fff3d28af5530f439c63a258a58963bc79a157ee44db5074235e95a33f0f0_amd64" + }, + "product_reference": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:178fff3d28af5530f439c63a258a58963bc79a157ee44db5074235e95a33f0f0_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:1a58bb060db9aea2ccb8de99a12d19098688ab6e0cffb3202e9ec26bb4d43f7c_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-volsync-addon-controller-rhel8@sha256:1a58bb060db9aea2ccb8de99a12d19098688ab6e0cffb3202e9ec26bb4d43f7c_ppc64le" + }, + "product_reference": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:1a58bb060db9aea2ccb8de99a12d19098688ab6e0cffb3202e9ec26bb4d43f7c_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:22cc0d6d6d348ae55168cec56ab5420f3000a6a41c6d8b10da0e41e16b91d3b9_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-volsync-addon-controller-rhel8@sha256:22cc0d6d6d348ae55168cec56ab5420f3000a6a41c6d8b10da0e41e16b91d3b9_arm64" + }, + "product_reference": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:22cc0d6d6d348ae55168cec56ab5420f3000a6a41c6d8b10da0e41e16b91d3b9_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:8486d69a2db1b3422572b51ed9dbc245200d88372d7132ce6e876eec42e9db7a_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/acm-volsync-addon-controller-rhel8@sha256:8486d69a2db1b3422572b51ed9dbc245200d88372d7132ce6e876eec42e9db7a_s390x" + }, + "product_reference": "rhacm2/acm-volsync-addon-controller-rhel8@sha256:8486d69a2db1b3422572b51ed9dbc245200d88372d7132ce6e876eec42e9db7a_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/cert-policy-controller-rhel8@sha256:3070a15209ffe7feb42e9955e307aa127be19dfca78e50599144382c57be04e6_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/cert-policy-controller-rhel8@sha256:3070a15209ffe7feb42e9955e307aa127be19dfca78e50599144382c57be04e6_amd64" + }, + "product_reference": "rhacm2/cert-policy-controller-rhel8@sha256:3070a15209ffe7feb42e9955e307aa127be19dfca78e50599144382c57be04e6_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/cert-policy-controller-rhel8@sha256:d236dc498b623adaf6df43ae7ffb11585acdd328537daff9edf96461a429ad3c_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/cert-policy-controller-rhel8@sha256:d236dc498b623adaf6df43ae7ffb11585acdd328537daff9edf96461a429ad3c_ppc64le" + }, + "product_reference": "rhacm2/cert-policy-controller-rhel8@sha256:d236dc498b623adaf6df43ae7ffb11585acdd328537daff9edf96461a429ad3c_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/cert-policy-controller-rhel8@sha256:d7b28b1208af6c3a6b07327ab9ae95eb8466d16e164e7e10a517c1b85b1e2f8e_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/cert-policy-controller-rhel8@sha256:d7b28b1208af6c3a6b07327ab9ae95eb8466d16e164e7e10a517c1b85b1e2f8e_arm64" + }, + "product_reference": "rhacm2/cert-policy-controller-rhel8@sha256:d7b28b1208af6c3a6b07327ab9ae95eb8466d16e164e7e10a517c1b85b1e2f8e_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/cert-policy-controller-rhel8@sha256:fc7a20396546797065d4fbbced1c4023ff639091008e59efc87e48ddf5b36d23_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/cert-policy-controller-rhel8@sha256:fc7a20396546797065d4fbbced1c4023ff639091008e59efc87e48ddf5b36d23_s390x" + }, + "product_reference": "rhacm2/cert-policy-controller-rhel8@sha256:fc7a20396546797065d4fbbced1c4023ff639091008e59efc87e48ddf5b36d23_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:8f9405dc9f298d99627bf0803bad675d6329db0a59537e077040fee5720f863f_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/cluster-backup-rhel8-operator@sha256:8f9405dc9f298d99627bf0803bad675d6329db0a59537e077040fee5720f863f_amd64" + }, + "product_reference": "rhacm2/cluster-backup-rhel8-operator@sha256:8f9405dc9f298d99627bf0803bad675d6329db0a59537e077040fee5720f863f_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:c220a29e4394e70fe8b384dd5d0b5cfe462cce9dd5e16363214b895a3c5579e9_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/cluster-backup-rhel8-operator@sha256:c220a29e4394e70fe8b384dd5d0b5cfe462cce9dd5e16363214b895a3c5579e9_s390x" + }, + "product_reference": "rhacm2/cluster-backup-rhel8-operator@sha256:c220a29e4394e70fe8b384dd5d0b5cfe462cce9dd5e16363214b895a3c5579e9_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:ed2b197bb829ea7568808d6c4413ddc6486f8547ca0b6f1749d7fdfaf8174c52_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/cluster-backup-rhel8-operator@sha256:ed2b197bb829ea7568808d6c4413ddc6486f8547ca0b6f1749d7fdfaf8174c52_ppc64le" + }, + "product_reference": "rhacm2/cluster-backup-rhel8-operator@sha256:ed2b197bb829ea7568808d6c4413ddc6486f8547ca0b6f1749d7fdfaf8174c52_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/cluster-backup-rhel8-operator@sha256:f3b572ca76ec12c87f8866e33c4865cad9da6292e3d28bd9a736f856d8f48ffd_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/cluster-backup-rhel8-operator@sha256:f3b572ca76ec12c87f8866e33c4865cad9da6292e3d28bd9a736f856d8f48ffd_arm64" + }, + "product_reference": "rhacm2/cluster-backup-rhel8-operator@sha256:f3b572ca76ec12c87f8866e33c4865cad9da6292e3d28bd9a736f856d8f48ffd_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/config-policy-controller-rhel8@sha256:3be79ccfb0def98cd55002728e41f9f1ce4b4887dbc3a056417c43c6d9dd6974_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/config-policy-controller-rhel8@sha256:3be79ccfb0def98cd55002728e41f9f1ce4b4887dbc3a056417c43c6d9dd6974_amd64" + }, + "product_reference": "rhacm2/config-policy-controller-rhel8@sha256:3be79ccfb0def98cd55002728e41f9f1ce4b4887dbc3a056417c43c6d9dd6974_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/config-policy-controller-rhel8@sha256:572e07f03d2355a5b0e3fc8dccf2ad016f68ad93dd7edd9695248e07c9d37784_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/config-policy-controller-rhel8@sha256:572e07f03d2355a5b0e3fc8dccf2ad016f68ad93dd7edd9695248e07c9d37784_ppc64le" + }, + "product_reference": "rhacm2/config-policy-controller-rhel8@sha256:572e07f03d2355a5b0e3fc8dccf2ad016f68ad93dd7edd9695248e07c9d37784_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/config-policy-controller-rhel8@sha256:b8e48d0af1d00a7e33b71dc370f7d1a7491242cef5cf239b1036d21ccd14b56e_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/config-policy-controller-rhel8@sha256:b8e48d0af1d00a7e33b71dc370f7d1a7491242cef5cf239b1036d21ccd14b56e_arm64" + }, + "product_reference": "rhacm2/config-policy-controller-rhel8@sha256:b8e48d0af1d00a7e33b71dc370f7d1a7491242cef5cf239b1036d21ccd14b56e_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/config-policy-controller-rhel8@sha256:c1b575138eb2062c9c4fb42c94da1fba90660a484b67accce842f385b9fdd2f4_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/config-policy-controller-rhel8@sha256:c1b575138eb2062c9c4fb42c94da1fba90660a484b67accce842f385b9fdd2f4_s390x" + }, + "product_reference": "rhacm2/config-policy-controller-rhel8@sha256:c1b575138eb2062c9c4fb42c94da1fba90660a484b67accce842f385b9fdd2f4_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/console-rhel8@sha256:204cf5044ec3346d411f86d02c7bee1dbf98e73b690e07efa5a6f429cd9b1c41_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/console-rhel8@sha256:204cf5044ec3346d411f86d02c7bee1dbf98e73b690e07efa5a6f429cd9b1c41_s390x" + }, + "product_reference": "rhacm2/console-rhel8@sha256:204cf5044ec3346d411f86d02c7bee1dbf98e73b690e07efa5a6f429cd9b1c41_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/console-rhel8@sha256:37aefd991caedb01d3349c17984897dab48c49f9f1792b73658c8b3ab8070866_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/console-rhel8@sha256:37aefd991caedb01d3349c17984897dab48c49f9f1792b73658c8b3ab8070866_amd64" + }, + "product_reference": "rhacm2/console-rhel8@sha256:37aefd991caedb01d3349c17984897dab48c49f9f1792b73658c8b3ab8070866_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/console-rhel8@sha256:dfc987cc4b0f21bc67d5303f1f881980df9a750b1ad96746205cde47e143adcd_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/console-rhel8@sha256:dfc987cc4b0f21bc67d5303f1f881980df9a750b1ad96746205cde47e143adcd_arm64" + }, + "product_reference": "rhacm2/console-rhel8@sha256:dfc987cc4b0f21bc67d5303f1f881980df9a750b1ad96746205cde47e143adcd_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/console-rhel8@sha256:eca333c34cd335180edcff4b0db5050e55ef1436fb5878c7c371482f5a110998_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/console-rhel8@sha256:eca333c34cd335180edcff4b0db5050e55ef1436fb5878c7c371482f5a110998_ppc64le" + }, + "product_reference": "rhacm2/console-rhel8@sha256:eca333c34cd335180edcff4b0db5050e55ef1436fb5878c7c371482f5a110998_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:335e491f0e0ecf8c115a5f45833b8601a3fe3284bd9e3b9be8760b96c27fd761_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/endpoint-monitoring-rhel8-operator@sha256:335e491f0e0ecf8c115a5f45833b8601a3fe3284bd9e3b9be8760b96c27fd761_amd64" + }, + "product_reference": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:335e491f0e0ecf8c115a5f45833b8601a3fe3284bd9e3b9be8760b96c27fd761_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:40b3e627927111a4842b4e36afd9fab043927ba46efffe89fe20616ddf59a2b5_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/endpoint-monitoring-rhel8-operator@sha256:40b3e627927111a4842b4e36afd9fab043927ba46efffe89fe20616ddf59a2b5_s390x" + }, + "product_reference": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:40b3e627927111a4842b4e36afd9fab043927ba46efffe89fe20616ddf59a2b5_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:989e584e202a5daf0ac46ccb5d29b7d921c2b7db385ae0685efd0a1e65e72431_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/endpoint-monitoring-rhel8-operator@sha256:989e584e202a5daf0ac46ccb5d29b7d921c2b7db385ae0685efd0a1e65e72431_ppc64le" + }, + "product_reference": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:989e584e202a5daf0ac46ccb5d29b7d921c2b7db385ae0685efd0a1e65e72431_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:aa07d31f828b1015169538c35a73bb8584123c99f0ea35c3e1c2bc2d38ec5ddd_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/endpoint-monitoring-rhel8-operator@sha256:aa07d31f828b1015169538c35a73bb8584123c99f0ea35c3e1c2bc2d38ec5ddd_arm64" + }, + "product_reference": "rhacm2/endpoint-monitoring-rhel8-operator@sha256:aa07d31f828b1015169538c35a73bb8584123c99f0ea35c3e1c2bc2d38ec5ddd_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:198ad3884b346f49e847f6d2b14f34e902140e4441495c892b0c843e63c24943_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/governance-policy-propagator-rhel8@sha256:198ad3884b346f49e847f6d2b14f34e902140e4441495c892b0c843e63c24943_amd64" + }, + "product_reference": "rhacm2/governance-policy-propagator-rhel8@sha256:198ad3884b346f49e847f6d2b14f34e902140e4441495c892b0c843e63c24943_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:2c6b83ede0d61101032e831a8927e20d53aad5ae5617d99ebb29d5d2b8460d86_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/governance-policy-propagator-rhel8@sha256:2c6b83ede0d61101032e831a8927e20d53aad5ae5617d99ebb29d5d2b8460d86_arm64" + }, + "product_reference": "rhacm2/governance-policy-propagator-rhel8@sha256:2c6b83ede0d61101032e831a8927e20d53aad5ae5617d99ebb29d5d2b8460d86_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:69e1bbb1c9e0d10e1c9408c163af287456cade57b54067766696a68c261bf6a6_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/governance-policy-propagator-rhel8@sha256:69e1bbb1c9e0d10e1c9408c163af287456cade57b54067766696a68c261bf6a6_s390x" + }, + "product_reference": "rhacm2/governance-policy-propagator-rhel8@sha256:69e1bbb1c9e0d10e1c9408c163af287456cade57b54067766696a68c261bf6a6_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/governance-policy-propagator-rhel8@sha256:ed4a390f57d41d09d3c7d10a7114ef805c90f7a199b16aa3eed304b259a33dad_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/governance-policy-propagator-rhel8@sha256:ed4a390f57d41d09d3c7d10a7114ef805c90f7a199b16aa3eed304b259a33dad_ppc64le" + }, + "product_reference": "rhacm2/governance-policy-propagator-rhel8@sha256:ed4a390f57d41d09d3c7d10a7114ef805c90f7a199b16aa3eed304b259a33dad_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:1373ba0c04ed11c621995495ca56e57d8f03dc3a1e1b249443e06334d42748aa_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/grafana-dashboard-loader-rhel8@sha256:1373ba0c04ed11c621995495ca56e57d8f03dc3a1e1b249443e06334d42748aa_ppc64le" + }, + "product_reference": "rhacm2/grafana-dashboard-loader-rhel8@sha256:1373ba0c04ed11c621995495ca56e57d8f03dc3a1e1b249443e06334d42748aa_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:6a63ed2f1ea81d99b7158d41c342bb20fc2a18bf3a136b873e640a18c45e17f0_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/grafana-dashboard-loader-rhel8@sha256:6a63ed2f1ea81d99b7158d41c342bb20fc2a18bf3a136b873e640a18c45e17f0_s390x" + }, + "product_reference": "rhacm2/grafana-dashboard-loader-rhel8@sha256:6a63ed2f1ea81d99b7158d41c342bb20fc2a18bf3a136b873e640a18c45e17f0_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:7d1bfe68bea92a14a58cb9563cd243bafe05ade62000c9da013a2def9243fcda_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/grafana-dashboard-loader-rhel8@sha256:7d1bfe68bea92a14a58cb9563cd243bafe05ade62000c9da013a2def9243fcda_amd64" + }, + "product_reference": "rhacm2/grafana-dashboard-loader-rhel8@sha256:7d1bfe68bea92a14a58cb9563cd243bafe05ade62000c9da013a2def9243fcda_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/grafana-dashboard-loader-rhel8@sha256:9785892abbe11d983879cae1716d3483bebffdf5635759a6bb60c79bee4de876_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/grafana-dashboard-loader-rhel8@sha256:9785892abbe11d983879cae1716d3483bebffdf5635759a6bb60c79bee4de876_arm64" + }, + "product_reference": "rhacm2/grafana-dashboard-loader-rhel8@sha256:9785892abbe11d983879cae1716d3483bebffdf5635759a6bb60c79bee4de876_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/iam-policy-controller-rhel8@sha256:283e7d735988551bb7d440251ad63f11e0c8dc2cae0ec18490d875e29302ae01_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/iam-policy-controller-rhel8@sha256:283e7d735988551bb7d440251ad63f11e0c8dc2cae0ec18490d875e29302ae01_s390x" + }, + "product_reference": "rhacm2/iam-policy-controller-rhel8@sha256:283e7d735988551bb7d440251ad63f11e0c8dc2cae0ec18490d875e29302ae01_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/iam-policy-controller-rhel8@sha256:9040f97acb8e727a19a94bd66efffe6aea1ae8d299387c18de039fc6720d8032_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/iam-policy-controller-rhel8@sha256:9040f97acb8e727a19a94bd66efffe6aea1ae8d299387c18de039fc6720d8032_amd64" + }, + "product_reference": "rhacm2/iam-policy-controller-rhel8@sha256:9040f97acb8e727a19a94bd66efffe6aea1ae8d299387c18de039fc6720d8032_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/iam-policy-controller-rhel8@sha256:a43b1518b8377e28dd79558394c45a9a15cea6d2910054ef0566312451deea57_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/iam-policy-controller-rhel8@sha256:a43b1518b8377e28dd79558394c45a9a15cea6d2910054ef0566312451deea57_arm64" + }, + "product_reference": "rhacm2/iam-policy-controller-rhel8@sha256:a43b1518b8377e28dd79558394c45a9a15cea6d2910054ef0566312451deea57_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/iam-policy-controller-rhel8@sha256:b515f6a2392cdd343a462b573c777dedd360539491cda02778357e119a92fdc8_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/iam-policy-controller-rhel8@sha256:b515f6a2392cdd343a462b573c777dedd360539491cda02778357e119a92fdc8_ppc64le" + }, + "product_reference": "rhacm2/iam-policy-controller-rhel8@sha256:b515f6a2392cdd343a462b573c777dedd360539491cda02778357e119a92fdc8_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/insights-client-rhel8@sha256:21679709b39db5d24cd20ec18f4d305a2e0d297645b457b40b5ac0c415fca7ed_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/insights-client-rhel8@sha256:21679709b39db5d24cd20ec18f4d305a2e0d297645b457b40b5ac0c415fca7ed_amd64" + }, + "product_reference": "rhacm2/insights-client-rhel8@sha256:21679709b39db5d24cd20ec18f4d305a2e0d297645b457b40b5ac0c415fca7ed_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/insights-client-rhel8@sha256:2db72d8dc9cc59054bb771d4d9295409f05230d65595280901fd6f1fe772bb23_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/insights-client-rhel8@sha256:2db72d8dc9cc59054bb771d4d9295409f05230d65595280901fd6f1fe772bb23_ppc64le" + }, + "product_reference": "rhacm2/insights-client-rhel8@sha256:2db72d8dc9cc59054bb771d4d9295409f05230d65595280901fd6f1fe772bb23_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/insights-client-rhel8@sha256:6715cf45c09921e2041400d6f3346f5fa09f568bbea29635200d05caadc3b773_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/insights-client-rhel8@sha256:6715cf45c09921e2041400d6f3346f5fa09f568bbea29635200d05caadc3b773_arm64" + }, + "product_reference": "rhacm2/insights-client-rhel8@sha256:6715cf45c09921e2041400d6f3346f5fa09f568bbea29635200d05caadc3b773_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/insights-client-rhel8@sha256:beb0f9332b9bcfb58cd0db15279085412827ace954ec2ce34d574fc72c5a16a5_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/insights-client-rhel8@sha256:beb0f9332b9bcfb58cd0db15279085412827ace954ec2ce34d574fc72c5a16a5_s390x" + }, + "product_reference": "rhacm2/insights-client-rhel8@sha256:beb0f9332b9bcfb58cd0db15279085412827ace954ec2ce34d574fc72c5a16a5_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/insights-metrics-rhel8@sha256:4cd64a0df35effbcac4df5a8af2af7ba8b25809344823e1f7131501c94d291f7_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/insights-metrics-rhel8@sha256:4cd64a0df35effbcac4df5a8af2af7ba8b25809344823e1f7131501c94d291f7_arm64" + }, + "product_reference": "rhacm2/insights-metrics-rhel8@sha256:4cd64a0df35effbcac4df5a8af2af7ba8b25809344823e1f7131501c94d291f7_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/insights-metrics-rhel8@sha256:8de3fa1c1cc9a29e344798f70636e4bfbbf3e2b80edffedfe6179b6d64e76ad7_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/insights-metrics-rhel8@sha256:8de3fa1c1cc9a29e344798f70636e4bfbbf3e2b80edffedfe6179b6d64e76ad7_ppc64le" + }, + "product_reference": "rhacm2/insights-metrics-rhel8@sha256:8de3fa1c1cc9a29e344798f70636e4bfbbf3e2b80edffedfe6179b6d64e76ad7_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/insights-metrics-rhel8@sha256:cf4924480de9c8f69453476e0aabe378607dd64caae389125f19d3327e7b6ef4_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/insights-metrics-rhel8@sha256:cf4924480de9c8f69453476e0aabe378607dd64caae389125f19d3327e7b6ef4_s390x" + }, + "product_reference": "rhacm2/insights-metrics-rhel8@sha256:cf4924480de9c8f69453476e0aabe378607dd64caae389125f19d3327e7b6ef4_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/insights-metrics-rhel8@sha256:f63f53be892ac9d1b9e347a0be4d1670ab3615ce36d9156dd4f7696561a6c89b_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/insights-metrics-rhel8@sha256:f63f53be892ac9d1b9e347a0be4d1670ab3615ce36d9156dd4f7696561a6c89b_amd64" + }, + "product_reference": "rhacm2/insights-metrics-rhel8@sha256:f63f53be892ac9d1b9e347a0be4d1670ab3615ce36d9156dd4f7696561a6c89b_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:211d0ec2fd1ba5fd31eb22a37c848a7b7ad89aa34ee6649a1ff01816f681fbfe_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/klusterlet-addon-controller-rhel8@sha256:211d0ec2fd1ba5fd31eb22a37c848a7b7ad89aa34ee6649a1ff01816f681fbfe_ppc64le" + }, + "product_reference": "rhacm2/klusterlet-addon-controller-rhel8@sha256:211d0ec2fd1ba5fd31eb22a37c848a7b7ad89aa34ee6649a1ff01816f681fbfe_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:54d205dd8adcaf5c3527e740962902aa58fb965312f0c5700225a66fae04a91f_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/klusterlet-addon-controller-rhel8@sha256:54d205dd8adcaf5c3527e740962902aa58fb965312f0c5700225a66fae04a91f_arm64" + }, + "product_reference": "rhacm2/klusterlet-addon-controller-rhel8@sha256:54d205dd8adcaf5c3527e740962902aa58fb965312f0c5700225a66fae04a91f_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:a9e1277a6c105698aadea156f2bd8928e112898b1b71304e080866dfc27f975a_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/klusterlet-addon-controller-rhel8@sha256:a9e1277a6c105698aadea156f2bd8928e112898b1b71304e080866dfc27f975a_amd64" + }, + "product_reference": "rhacm2/klusterlet-addon-controller-rhel8@sha256:a9e1277a6c105698aadea156f2bd8928e112898b1b71304e080866dfc27f975a_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/klusterlet-addon-controller-rhel8@sha256:cdd3ebf85eeb85c398f94a19d11e9eeafeb1c4c5fb4d40777f13b461ccde5342_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/klusterlet-addon-controller-rhel8@sha256:cdd3ebf85eeb85c398f94a19d11e9eeafeb1c4c5fb4d40777f13b461ccde5342_s390x" + }, + "product_reference": "rhacm2/klusterlet-addon-controller-rhel8@sha256:cdd3ebf85eeb85c398f94a19d11e9eeafeb1c4c5fb4d40777f13b461ccde5342_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:7421984aba8fe9f8ab8212086eb38bed439644d0f52f08d8d1d903e6d1fe3014_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/kube-rbac-proxy-rhel8@sha256:7421984aba8fe9f8ab8212086eb38bed439644d0f52f08d8d1d903e6d1fe3014_arm64" + }, + "product_reference": "rhacm2/kube-rbac-proxy-rhel8@sha256:7421984aba8fe9f8ab8212086eb38bed439644d0f52f08d8d1d903e6d1fe3014_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:9c5e421fe5acaefae5ba644261686662a5a045d2b52725de8f25629d0be37c15_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/kube-rbac-proxy-rhel8@sha256:9c5e421fe5acaefae5ba644261686662a5a045d2b52725de8f25629d0be37c15_s390x" + }, + "product_reference": "rhacm2/kube-rbac-proxy-rhel8@sha256:9c5e421fe5acaefae5ba644261686662a5a045d2b52725de8f25629d0be37c15_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:a21ba83c2fe2d36e6e6333a72b8af74c46187256590bf38cd4bb349581f9fee2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/kube-rbac-proxy-rhel8@sha256:a21ba83c2fe2d36e6e6333a72b8af74c46187256590bf38cd4bb349581f9fee2_amd64" + }, + "product_reference": "rhacm2/kube-rbac-proxy-rhel8@sha256:a21ba83c2fe2d36e6e6333a72b8af74c46187256590bf38cd4bb349581f9fee2_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/kube-rbac-proxy-rhel8@sha256:e147090acd98be60573d39257eb66d4414da89a653fc284b15c65a6ac7fafacb_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/kube-rbac-proxy-rhel8@sha256:e147090acd98be60573d39257eb66d4414da89a653fc284b15c65a6ac7fafacb_ppc64le" + }, + "product_reference": "rhacm2/kube-rbac-proxy-rhel8@sha256:e147090acd98be60573d39257eb66d4414da89a653fc284b15c65a6ac7fafacb_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/kube-state-metrics-rhel8@sha256:22b541bb6a683e87da37cbb3d6cecc6e8d1d16795633522c3b7b793f1f4e5a77_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/kube-state-metrics-rhel8@sha256:22b541bb6a683e87da37cbb3d6cecc6e8d1d16795633522c3b7b793f1f4e5a77_s390x" + }, + "product_reference": "rhacm2/kube-state-metrics-rhel8@sha256:22b541bb6a683e87da37cbb3d6cecc6e8d1d16795633522c3b7b793f1f4e5a77_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/kube-state-metrics-rhel8@sha256:407b61e84a5f000bbe2efac0a6137e5efb21c614ae48762de2af71bf162a480e_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/kube-state-metrics-rhel8@sha256:407b61e84a5f000bbe2efac0a6137e5efb21c614ae48762de2af71bf162a480e_arm64" + }, + "product_reference": "rhacm2/kube-state-metrics-rhel8@sha256:407b61e84a5f000bbe2efac0a6137e5efb21c614ae48762de2af71bf162a480e_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/kube-state-metrics-rhel8@sha256:b7d4e66064ffa415a6efb92b5b070252864516fb4627ab4a4e15c1b4b3c83caa_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/kube-state-metrics-rhel8@sha256:b7d4e66064ffa415a6efb92b5b070252864516fb4627ab4a4e15c1b4b3c83caa_ppc64le" + }, + "product_reference": "rhacm2/kube-state-metrics-rhel8@sha256:b7d4e66064ffa415a6efb92b5b070252864516fb4627ab4a4e15c1b4b3c83caa_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/kube-state-metrics-rhel8@sha256:e82b3a6d566d5f602ab58ade6511e6e1e10dd5dbe58af89e415797b626185b9b_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/kube-state-metrics-rhel8@sha256:e82b3a6d566d5f602ab58ade6511e6e1e10dd5dbe58af89e415797b626185b9b_amd64" + }, + "product_reference": "rhacm2/kube-state-metrics-rhel8@sha256:e82b3a6d566d5f602ab58ade6511e6e1e10dd5dbe58af89e415797b626185b9b_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/memcached-exporter-rhel8@sha256:29c01316edcc63d830435bd9116f085ad341d1c660ec553777c038af3fc62f57_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/memcached-exporter-rhel8@sha256:29c01316edcc63d830435bd9116f085ad341d1c660ec553777c038af3fc62f57_ppc64le" + }, + "product_reference": "rhacm2/memcached-exporter-rhel8@sha256:29c01316edcc63d830435bd9116f085ad341d1c660ec553777c038af3fc62f57_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/memcached-exporter-rhel8@sha256:5cace1854f0c245b9b94a76eb3ddbf7fe65a15efe523273abc7a5e214582c266_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/memcached-exporter-rhel8@sha256:5cace1854f0c245b9b94a76eb3ddbf7fe65a15efe523273abc7a5e214582c266_amd64" + }, + "product_reference": "rhacm2/memcached-exporter-rhel8@sha256:5cace1854f0c245b9b94a76eb3ddbf7fe65a15efe523273abc7a5e214582c266_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/memcached-exporter-rhel8@sha256:cacf8cfe17cdefb9ca386c382af1b9e02c14fed5c13d1a96806019b2fe770fbb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/memcached-exporter-rhel8@sha256:cacf8cfe17cdefb9ca386c382af1b9e02c14fed5c13d1a96806019b2fe770fbb_s390x" + }, + "product_reference": "rhacm2/memcached-exporter-rhel8@sha256:cacf8cfe17cdefb9ca386c382af1b9e02c14fed5c13d1a96806019b2fe770fbb_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/memcached-exporter-rhel8@sha256:fe11bab716998c748e46b24736a902fef429706a5be2336bfb585a5987beffa9_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/memcached-exporter-rhel8@sha256:fe11bab716998c748e46b24736a902fef429706a5be2336bfb585a5987beffa9_arm64" + }, + "product_reference": "rhacm2/memcached-exporter-rhel8@sha256:fe11bab716998c748e46b24736a902fef429706a5be2336bfb585a5987beffa9_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/memcached-rhel8@sha256:132af7474c22c393b48dd119d9d932e7b2e0775b788226f11305d8e895bf9969_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/memcached-rhel8@sha256:132af7474c22c393b48dd119d9d932e7b2e0775b788226f11305d8e895bf9969_s390x" + }, + "product_reference": "rhacm2/memcached-rhel8@sha256:132af7474c22c393b48dd119d9d932e7b2e0775b788226f11305d8e895bf9969_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/memcached-rhel8@sha256:9afa5618d8f6414cd94a0207ae9acceec2a5028974fd198d5c2f50d445a2dd50_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/memcached-rhel8@sha256:9afa5618d8f6414cd94a0207ae9acceec2a5028974fd198d5c2f50d445a2dd50_amd64" + }, + "product_reference": "rhacm2/memcached-rhel8@sha256:9afa5618d8f6414cd94a0207ae9acceec2a5028974fd198d5c2f50d445a2dd50_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/memcached-rhel8@sha256:b0ca573192c41233c6f6bf107a90771e5d8f1dd1eae023c881b12f1db812b16a_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/memcached-rhel8@sha256:b0ca573192c41233c6f6bf107a90771e5d8f1dd1eae023c881b12f1db812b16a_ppc64le" + }, + "product_reference": "rhacm2/memcached-rhel8@sha256:b0ca573192c41233c6f6bf107a90771e5d8f1dd1eae023c881b12f1db812b16a_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/memcached-rhel8@sha256:ea00c275e1b3c77d9bd80f216f09a2474f34d4d981e3803996a15cde3c8572af_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/memcached-rhel8@sha256:ea00c275e1b3c77d9bd80f216f09a2474f34d4d981e3803996a15cde3c8572af_arm64" + }, + "product_reference": "rhacm2/memcached-rhel8@sha256:ea00c275e1b3c77d9bd80f216f09a2474f34d4d981e3803996a15cde3c8572af_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/metrics-collector-rhel8@sha256:3cd9604f468fe68386f4b441f7c790e0e865e12a18bfd457220589ec41e6e981_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/metrics-collector-rhel8@sha256:3cd9604f468fe68386f4b441f7c790e0e865e12a18bfd457220589ec41e6e981_arm64" + }, + "product_reference": "rhacm2/metrics-collector-rhel8@sha256:3cd9604f468fe68386f4b441f7c790e0e865e12a18bfd457220589ec41e6e981_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/metrics-collector-rhel8@sha256:918e223335575550260e173f8225b7b01500535ee1af6338f2b4c8d66bf87c0a_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/metrics-collector-rhel8@sha256:918e223335575550260e173f8225b7b01500535ee1af6338f2b4c8d66bf87c0a_ppc64le" + }, + "product_reference": "rhacm2/metrics-collector-rhel8@sha256:918e223335575550260e173f8225b7b01500535ee1af6338f2b4c8d66bf87c0a_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/metrics-collector-rhel8@sha256:e843365c24dad96c9435a15c7d93b234843e67e248f5194c9412896295ac1585_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/metrics-collector-rhel8@sha256:e843365c24dad96c9435a15c7d93b234843e67e248f5194c9412896295ac1585_s390x" + }, + "product_reference": "rhacm2/metrics-collector-rhel8@sha256:e843365c24dad96c9435a15c7d93b234843e67e248f5194c9412896295ac1585_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/metrics-collector-rhel8@sha256:ebde295c5bf1c20c1a2efb8d11187add61a67f9ac5bcacd7f82ea676bf16eb65_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/metrics-collector-rhel8@sha256:ebde295c5bf1c20c1a2efb8d11187add61a67f9ac5bcacd7f82ea676bf16eb65_amd64" + }, + "product_reference": "rhacm2/metrics-collector-rhel8@sha256:ebde295c5bf1c20c1a2efb8d11187add61a67f9ac5bcacd7f82ea676bf16eb65_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicloud-integrations-rhel8@sha256:09d5d1423228f8f55e95467da4417e6bc9c5bdd66b2dc68b5a54256552196bde_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/multicloud-integrations-rhel8@sha256:09d5d1423228f8f55e95467da4417e6bc9c5bdd66b2dc68b5a54256552196bde_amd64" + }, + "product_reference": "rhacm2/multicloud-integrations-rhel8@sha256:09d5d1423228f8f55e95467da4417e6bc9c5bdd66b2dc68b5a54256552196bde_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicloud-integrations-rhel8@sha256:730221cd6770537be9d03511386e6603cca8788e3f0c9ae5e599e27fea007dab_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/multicloud-integrations-rhel8@sha256:730221cd6770537be9d03511386e6603cca8788e3f0c9ae5e599e27fea007dab_s390x" + }, + "product_reference": "rhacm2/multicloud-integrations-rhel8@sha256:730221cd6770537be9d03511386e6603cca8788e3f0c9ae5e599e27fea007dab_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicloud-integrations-rhel8@sha256:baa9baf651e73ea576e910c36df51f9ab96350a42e301ad6ac917869cdf57060_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/multicloud-integrations-rhel8@sha256:baa9baf651e73ea576e910c36df51f9ab96350a42e301ad6ac917869cdf57060_arm64" + }, + "product_reference": "rhacm2/multicloud-integrations-rhel8@sha256:baa9baf651e73ea576e910c36df51f9ab96350a42e301ad6ac917869cdf57060_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicloud-integrations-rhel8@sha256:e76d5d7b13380999436ed9467627282e1e9e311a73cd7340c92d68c029c2dfcf_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/multicloud-integrations-rhel8@sha256:e76d5d7b13380999436ed9467627282e1e9e311a73cd7340c92d68c029c2dfcf_ppc64le" + }, + "product_reference": "rhacm2/multicloud-integrations-rhel8@sha256:e76d5d7b13380999436ed9467627282e1e9e311a73cd7340c92d68c029c2dfcf_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:5de6071dd040aed8b2730d5ac4eec48b50ac8c3a2bacf1fa1bd0f776348dc080_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/multicluster-observability-rhel8-operator@sha256:5de6071dd040aed8b2730d5ac4eec48b50ac8c3a2bacf1fa1bd0f776348dc080_ppc64le" + }, + "product_reference": "rhacm2/multicluster-observability-rhel8-operator@sha256:5de6071dd040aed8b2730d5ac4eec48b50ac8c3a2bacf1fa1bd0f776348dc080_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:69179b6be192d6a47aa6fdc4cab0286e63e94c217aaff3e9a5211850dfe1ef43_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/multicluster-observability-rhel8-operator@sha256:69179b6be192d6a47aa6fdc4cab0286e63e94c217aaff3e9a5211850dfe1ef43_amd64" + }, + "product_reference": "rhacm2/multicluster-observability-rhel8-operator@sha256:69179b6be192d6a47aa6fdc4cab0286e63e94c217aaff3e9a5211850dfe1ef43_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:e25adb6d63bc98e71c723c46e0fe1c4f1254363b48e106ab2e03692fc10ece83_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/multicluster-observability-rhel8-operator@sha256:e25adb6d63bc98e71c723c46e0fe1c4f1254363b48e106ab2e03692fc10ece83_arm64" + }, + "product_reference": "rhacm2/multicluster-observability-rhel8-operator@sha256:e25adb6d63bc98e71c723c46e0fe1c4f1254363b48e106ab2e03692fc10ece83_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-observability-rhel8-operator@sha256:f7f24be1b881736d8b89c5d42ac9c0e20de26da299471f20537242ca5e60efb9_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/multicluster-observability-rhel8-operator@sha256:f7f24be1b881736d8b89c5d42ac9c0e20de26da299471f20537242ca5e60efb9_s390x" + }, + "product_reference": "rhacm2/multicluster-observability-rhel8-operator@sha256:f7f24be1b881736d8b89c5d42ac9c0e20de26da299471f20537242ca5e60efb9_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:b18f0b6782fb7c10ec5eed47eded08327b3142268288bfc4a9971927691d56c5_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/multicluster-operators-application-rhel8@sha256:b18f0b6782fb7c10ec5eed47eded08327b3142268288bfc4a9971927691d56c5_s390x" + }, + "product_reference": "rhacm2/multicluster-operators-application-rhel8@sha256:b18f0b6782fb7c10ec5eed47eded08327b3142268288bfc4a9971927691d56c5_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:c5110059eae4f4686f5f4241a6c6554b55762da4af5fd63352076bc4dca3e3a2_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/multicluster-operators-application-rhel8@sha256:c5110059eae4f4686f5f4241a6c6554b55762da4af5fd63352076bc4dca3e3a2_arm64" + }, + "product_reference": "rhacm2/multicluster-operators-application-rhel8@sha256:c5110059eae4f4686f5f4241a6c6554b55762da4af5fd63352076bc4dca3e3a2_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:e15e8d37784258175a80ad7d9fa078a7d15766cd6e214f3bf24a42b77c3c2a1e_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/multicluster-operators-application-rhel8@sha256:e15e8d37784258175a80ad7d9fa078a7d15766cd6e214f3bf24a42b77c3c2a1e_ppc64le" + }, + "product_reference": "rhacm2/multicluster-operators-application-rhel8@sha256:e15e8d37784258175a80ad7d9fa078a7d15766cd6e214f3bf24a42b77c3c2a1e_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-application-rhel8@sha256:fffccc640a9b8b7c81f0dcbf385fc05b38af819a378494b9ef40d5666cf2a6af_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/multicluster-operators-application-rhel8@sha256:fffccc640a9b8b7c81f0dcbf385fc05b38af819a378494b9ef40d5666cf2a6af_amd64" + }, + "product_reference": "rhacm2/multicluster-operators-application-rhel8@sha256:fffccc640a9b8b7c81f0dcbf385fc05b38af819a378494b9ef40d5666cf2a6af_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:89bbb4fb1ec38a227c8649bc10f305496c522b2c5d990ac38f220c6f3d3d6593_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/multicluster-operators-channel-rhel8@sha256:89bbb4fb1ec38a227c8649bc10f305496c522b2c5d990ac38f220c6f3d3d6593_ppc64le" + }, + "product_reference": "rhacm2/multicluster-operators-channel-rhel8@sha256:89bbb4fb1ec38a227c8649bc10f305496c522b2c5d990ac38f220c6f3d3d6593_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:c2e848a787613458658f1521327c4783c338a6d3c561356c41be924c3ff999f3_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/multicluster-operators-channel-rhel8@sha256:c2e848a787613458658f1521327c4783c338a6d3c561356c41be924c3ff999f3_s390x" + }, + "product_reference": "rhacm2/multicluster-operators-channel-rhel8@sha256:c2e848a787613458658f1521327c4783c338a6d3c561356c41be924c3ff999f3_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:cde618e9b8c0a3262fc612ed8970d6b948bc8af4f5afee54f5c719f5a58ef881_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/multicluster-operators-channel-rhel8@sha256:cde618e9b8c0a3262fc612ed8970d6b948bc8af4f5afee54f5c719f5a58ef881_amd64" + }, + "product_reference": "rhacm2/multicluster-operators-channel-rhel8@sha256:cde618e9b8c0a3262fc612ed8970d6b948bc8af4f5afee54f5c719f5a58ef881_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-channel-rhel8@sha256:e9324cfef796306a65cd912f5391e78662613a1c270afb4402b57b3ccac884a7_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/multicluster-operators-channel-rhel8@sha256:e9324cfef796306a65cd912f5391e78662613a1c270afb4402b57b3ccac884a7_arm64" + }, + "product_reference": "rhacm2/multicluster-operators-channel-rhel8@sha256:e9324cfef796306a65cd912f5391e78662613a1c270afb4402b57b3ccac884a7_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:6990aa404c71c13de81e6945cb11a75df8ad1391a1531ab302a3ff2d05958e07_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/multicluster-operators-subscription-rhel8@sha256:6990aa404c71c13de81e6945cb11a75df8ad1391a1531ab302a3ff2d05958e07_s390x" + }, + "product_reference": "rhacm2/multicluster-operators-subscription-rhel8@sha256:6990aa404c71c13de81e6945cb11a75df8ad1391a1531ab302a3ff2d05958e07_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:6f4cf0eaba976cef1e20e4c9376a7047cb2d0dbea3e92fef0a9cfab992d148f7_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/multicluster-operators-subscription-rhel8@sha256:6f4cf0eaba976cef1e20e4c9376a7047cb2d0dbea3e92fef0a9cfab992d148f7_ppc64le" + }, + "product_reference": "rhacm2/multicluster-operators-subscription-rhel8@sha256:6f4cf0eaba976cef1e20e4c9376a7047cb2d0dbea3e92fef0a9cfab992d148f7_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:76468bac9ac8fc1cb96518eeca3c79c39fb28cccfc7446b698194b265e8067f1_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/multicluster-operators-subscription-rhel8@sha256:76468bac9ac8fc1cb96518eeca3c79c39fb28cccfc7446b698194b265e8067f1_amd64" + }, + "product_reference": "rhacm2/multicluster-operators-subscription-rhel8@sha256:76468bac9ac8fc1cb96518eeca3c79c39fb28cccfc7446b698194b265e8067f1_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multicluster-operators-subscription-rhel8@sha256:8dd5f35ec3935e0a20e319087be6b7bb5dfe39c6e3c9b54fb5718a12869f3809_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/multicluster-operators-subscription-rhel8@sha256:8dd5f35ec3935e0a20e319087be6b7bb5dfe39c6e3c9b54fb5718a12869f3809_arm64" + }, + "product_reference": "rhacm2/multicluster-operators-subscription-rhel8@sha256:8dd5f35ec3935e0a20e319087be6b7bb5dfe39c6e3c9b54fb5718a12869f3809_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multiclusterhub-rhel8@sha256:0406a9e33ff91d4ed7b98afeca50328f8434af36a4f3a82c1c3dc0da860ebcb8_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/multiclusterhub-rhel8@sha256:0406a9e33ff91d4ed7b98afeca50328f8434af36a4f3a82c1c3dc0da860ebcb8_amd64" + }, + "product_reference": "rhacm2/multiclusterhub-rhel8@sha256:0406a9e33ff91d4ed7b98afeca50328f8434af36a4f3a82c1c3dc0da860ebcb8_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multiclusterhub-rhel8@sha256:dacbf8c6b2f0b3951f6817b88011df58e802492f30495c62b9984eb3fc40926b_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/multiclusterhub-rhel8@sha256:dacbf8c6b2f0b3951f6817b88011df58e802492f30495c62b9984eb3fc40926b_ppc64le" + }, + "product_reference": "rhacm2/multiclusterhub-rhel8@sha256:dacbf8c6b2f0b3951f6817b88011df58e802492f30495c62b9984eb3fc40926b_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multiclusterhub-rhel8@sha256:e49598f46fbb8aa9323c1cf3a26554383429489fe8fcbcb995aae0f7bb006b64_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/multiclusterhub-rhel8@sha256:e49598f46fbb8aa9323c1cf3a26554383429489fe8fcbcb995aae0f7bb006b64_arm64" + }, + "product_reference": "rhacm2/multiclusterhub-rhel8@sha256:e49598f46fbb8aa9323c1cf3a26554383429489fe8fcbcb995aae0f7bb006b64_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/multiclusterhub-rhel8@sha256:f70805b4bc8414b2c44ca332ec421c3cfa8adb85c25a789c41db3d5bd28ace55_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/multiclusterhub-rhel8@sha256:f70805b4bc8414b2c44ca332ec421c3cfa8adb85c25a789c41db3d5bd28ace55_s390x" + }, + "product_reference": "rhacm2/multiclusterhub-rhel8@sha256:f70805b4bc8414b2c44ca332ec421c3cfa8adb85c25a789c41db3d5bd28ace55_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/node-exporter-rhel8@sha256:3d07a180d9bda173215cf2e2b820ffeada3830cb018e1a61efaf952484e73345_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/node-exporter-rhel8@sha256:3d07a180d9bda173215cf2e2b820ffeada3830cb018e1a61efaf952484e73345_ppc64le" + }, + "product_reference": "rhacm2/node-exporter-rhel8@sha256:3d07a180d9bda173215cf2e2b820ffeada3830cb018e1a61efaf952484e73345_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/node-exporter-rhel8@sha256:4ac90daec74a95efbbd4db97b0f38c3dc364151429702d190791c374382ee8ec_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/node-exporter-rhel8@sha256:4ac90daec74a95efbbd4db97b0f38c3dc364151429702d190791c374382ee8ec_amd64" + }, + "product_reference": "rhacm2/node-exporter-rhel8@sha256:4ac90daec74a95efbbd4db97b0f38c3dc364151429702d190791c374382ee8ec_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/node-exporter-rhel8@sha256:d736cf3539c30e44abaf8478e34de874ef11da74d6ff19ad2f2cb3207b1fc7a8_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/node-exporter-rhel8@sha256:d736cf3539c30e44abaf8478e34de874ef11da74d6ff19ad2f2cb3207b1fc7a8_arm64" + }, + "product_reference": "rhacm2/node-exporter-rhel8@sha256:d736cf3539c30e44abaf8478e34de874ef11da74d6ff19ad2f2cb3207b1fc7a8_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/node-exporter-rhel8@sha256:d7c88b926b7d2acb8e508da6030cec692b12b0ea1a3cbcdd0b06c9239d4ecf30_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/node-exporter-rhel8@sha256:d7c88b926b7d2acb8e508da6030cec692b12b0ea1a3cbcdd0b06c9239d4ecf30_s390x" + }, + "product_reference": "rhacm2/node-exporter-rhel8@sha256:d7c88b926b7d2acb8e508da6030cec692b12b0ea1a3cbcdd0b06c9239d4ecf30_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/observatorium-rhel8-operator@sha256:415f56738bc2011a5a058f64cd61c49c6d5a839889126bdbdd03372c6c4048da_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/observatorium-rhel8-operator@sha256:415f56738bc2011a5a058f64cd61c49c6d5a839889126bdbdd03372c6c4048da_amd64" + }, + "product_reference": "rhacm2/observatorium-rhel8-operator@sha256:415f56738bc2011a5a058f64cd61c49c6d5a839889126bdbdd03372c6c4048da_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/observatorium-rhel8-operator@sha256:b7b55b0036e421c84a2a1c2fffe0c7f4c90d399ec0c31fdaad6ed6517ce927de_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/observatorium-rhel8-operator@sha256:b7b55b0036e421c84a2a1c2fffe0c7f4c90d399ec0c31fdaad6ed6517ce927de_arm64" + }, + "product_reference": "rhacm2/observatorium-rhel8-operator@sha256:b7b55b0036e421c84a2a1c2fffe0c7f4c90d399ec0c31fdaad6ed6517ce927de_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/observatorium-rhel8-operator@sha256:c1d8921bbd4b4490640c3585e1443835d1cba14ee7514fe91b13f34978eaf9cd_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/observatorium-rhel8-operator@sha256:c1d8921bbd4b4490640c3585e1443835d1cba14ee7514fe91b13f34978eaf9cd_s390x" + }, + "product_reference": "rhacm2/observatorium-rhel8-operator@sha256:c1d8921bbd4b4490640c3585e1443835d1cba14ee7514fe91b13f34978eaf9cd_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/observatorium-rhel8-operator@sha256:e4b953e67c4d34dd732e39679bc602878241e215d1b28f21a947bbea3409b0e6_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/observatorium-rhel8-operator@sha256:e4b953e67c4d34dd732e39679bc602878241e215d1b28f21a947bbea3409b0e6_ppc64le" + }, + "product_reference": "rhacm2/observatorium-rhel8-operator@sha256:e4b953e67c4d34dd732e39679bc602878241e215d1b28f21a947bbea3409b0e6_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/observatorium-rhel8@sha256:1c39ffe1868f2fa48d7bf4f3a7deb9f03f47a9c0b93ca15d98cec710b87ee420_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/observatorium-rhel8@sha256:1c39ffe1868f2fa48d7bf4f3a7deb9f03f47a9c0b93ca15d98cec710b87ee420_arm64" + }, + "product_reference": "rhacm2/observatorium-rhel8@sha256:1c39ffe1868f2fa48d7bf4f3a7deb9f03f47a9c0b93ca15d98cec710b87ee420_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/observatorium-rhel8@sha256:2830e97f7f61431f4679e7254dea3c3744548533ce7fdd9d94b522388b25230c_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/observatorium-rhel8@sha256:2830e97f7f61431f4679e7254dea3c3744548533ce7fdd9d94b522388b25230c_ppc64le" + }, + "product_reference": "rhacm2/observatorium-rhel8@sha256:2830e97f7f61431f4679e7254dea3c3744548533ce7fdd9d94b522388b25230c_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/observatorium-rhel8@sha256:8a189e5401dcc15282ad2ec143a5c1e184b3df410af43994ad98ad3f33daf31c_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/observatorium-rhel8@sha256:8a189e5401dcc15282ad2ec143a5c1e184b3df410af43994ad98ad3f33daf31c_s390x" + }, + "product_reference": "rhacm2/observatorium-rhel8@sha256:8a189e5401dcc15282ad2ec143a5c1e184b3df410af43994ad98ad3f33daf31c_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/observatorium-rhel8@sha256:92fd9dffb48a6712d7f8351404561b0d96917874cddc3bdefef0df18a150710e_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/observatorium-rhel8@sha256:92fd9dffb48a6712d7f8351404561b0d96917874cddc3bdefef0df18a150710e_amd64" + }, + "product_reference": "rhacm2/observatorium-rhel8@sha256:92fd9dffb48a6712d7f8351404561b0d96917874cddc3bdefef0df18a150710e_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:0d34ad23f02657ff74534f8badb61066c6e1d4d35114b85172399571839175ca_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/prometheus-alertmanager-rhel8@sha256:0d34ad23f02657ff74534f8badb61066c6e1d4d35114b85172399571839175ca_amd64" + }, + "product_reference": "rhacm2/prometheus-alertmanager-rhel8@sha256:0d34ad23f02657ff74534f8badb61066c6e1d4d35114b85172399571839175ca_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:281071ee44d8d8ad7e41737ad67617d15a19417ac03e0c3c66695cc521dc4762_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/prometheus-alertmanager-rhel8@sha256:281071ee44d8d8ad7e41737ad67617d15a19417ac03e0c3c66695cc521dc4762_ppc64le" + }, + "product_reference": "rhacm2/prometheus-alertmanager-rhel8@sha256:281071ee44d8d8ad7e41737ad67617d15a19417ac03e0c3c66695cc521dc4762_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:96490ee0865cfd75c591789c415115c638dd309b06bad37d840154f8e030d70d_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/prometheus-alertmanager-rhel8@sha256:96490ee0865cfd75c591789c415115c638dd309b06bad37d840154f8e030d70d_arm64" + }, + "product_reference": "rhacm2/prometheus-alertmanager-rhel8@sha256:96490ee0865cfd75c591789c415115c638dd309b06bad37d840154f8e030d70d_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/prometheus-alertmanager-rhel8@sha256:cee29442ae18ce94953ca0751d41a8e1c1f41234cdd6fa87ea42f0b961c791f6_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/prometheus-alertmanager-rhel8@sha256:cee29442ae18ce94953ca0751d41a8e1c1f41234cdd6fa87ea42f0b961c791f6_s390x" + }, + "product_reference": "rhacm2/prometheus-alertmanager-rhel8@sha256:cee29442ae18ce94953ca0751d41a8e1c1f41234cdd6fa87ea42f0b961c791f6_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/prometheus-rhel8@sha256:05cfaba966546984efedbd1c43369e196b2c73e64961176b50590364d82793b7_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/prometheus-rhel8@sha256:05cfaba966546984efedbd1c43369e196b2c73e64961176b50590364d82793b7_ppc64le" + }, + "product_reference": "rhacm2/prometheus-rhel8@sha256:05cfaba966546984efedbd1c43369e196b2c73e64961176b50590364d82793b7_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/prometheus-rhel8@sha256:1c3dd279c41c323216b4f5741b2cb71ac28e99ff550478a847ee740441886461_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/prometheus-rhel8@sha256:1c3dd279c41c323216b4f5741b2cb71ac28e99ff550478a847ee740441886461_amd64" + }, + "product_reference": "rhacm2/prometheus-rhel8@sha256:1c3dd279c41c323216b4f5741b2cb71ac28e99ff550478a847ee740441886461_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/prometheus-rhel8@sha256:3b70591e49960ee52a7c7f3d1736ef83a55c2989c283df09c6d02a76e096918e_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/prometheus-rhel8@sha256:3b70591e49960ee52a7c7f3d1736ef83a55c2989c283df09c6d02a76e096918e_arm64" + }, + "product_reference": "rhacm2/prometheus-rhel8@sha256:3b70591e49960ee52a7c7f3d1736ef83a55c2989c283df09c6d02a76e096918e_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/prometheus-rhel8@sha256:acf3d1f575ce051bf0c04e45393c81138f86d0437d5d0f36a7ec2212925f9a92_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/prometheus-rhel8@sha256:acf3d1f575ce051bf0c04e45393c81138f86d0437d5d0f36a7ec2212925f9a92_s390x" + }, + "product_reference": "rhacm2/prometheus-rhel8@sha256:acf3d1f575ce051bf0c04e45393c81138f86d0437d5d0f36a7ec2212925f9a92_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:6b78c7fe0d19175d35d95b39bd40c41dc103786370b04dc7a25ca99a0a3a265d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/rbac-query-proxy-rhel8@sha256:6b78c7fe0d19175d35d95b39bd40c41dc103786370b04dc7a25ca99a0a3a265d_ppc64le" + }, + "product_reference": "rhacm2/rbac-query-proxy-rhel8@sha256:6b78c7fe0d19175d35d95b39bd40c41dc103786370b04dc7a25ca99a0a3a265d_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:bdd40befd1bb0f660f01ee4a1ba782e885ffe82bedc8799f1d0ca946b28a90d8_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/rbac-query-proxy-rhel8@sha256:bdd40befd1bb0f660f01ee4a1ba782e885ffe82bedc8799f1d0ca946b28a90d8_amd64" + }, + "product_reference": "rhacm2/rbac-query-proxy-rhel8@sha256:bdd40befd1bb0f660f01ee4a1ba782e885ffe82bedc8799f1d0ca946b28a90d8_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:e14b36c0a7c23a47b3a425511d46aff2acb289bd836464088adc7d57cf380bef_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/rbac-query-proxy-rhel8@sha256:e14b36c0a7c23a47b3a425511d46aff2acb289bd836464088adc7d57cf380bef_s390x" + }, + "product_reference": "rhacm2/rbac-query-proxy-rhel8@sha256:e14b36c0a7c23a47b3a425511d46aff2acb289bd836464088adc7d57cf380bef_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/rbac-query-proxy-rhel8@sha256:f6d9e53d5bbac3b0c4f12749e91f2be33fb0744432c9e1b537c68f087bd1ca21_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/rbac-query-proxy-rhel8@sha256:f6d9e53d5bbac3b0c4f12749e91f2be33fb0744432c9e1b537c68f087bd1ca21_arm64" + }, + "product_reference": "rhacm2/rbac-query-proxy-rhel8@sha256:f6d9e53d5bbac3b0c4f12749e91f2be33fb0744432c9e1b537c68f087bd1ca21_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/search-collector-rhel8@sha256:075f357114bf42f157f888115eb05db87cb1e4bd100d162efb91ed4e83edca4c_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/search-collector-rhel8@sha256:075f357114bf42f157f888115eb05db87cb1e4bd100d162efb91ed4e83edca4c_amd64" + }, + "product_reference": "rhacm2/search-collector-rhel8@sha256:075f357114bf42f157f888115eb05db87cb1e4bd100d162efb91ed4e83edca4c_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/search-collector-rhel8@sha256:59134348c5e1cd6a4015b990716374ba1ca98c1b326eaf2b09d5919fd00f89a1_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/search-collector-rhel8@sha256:59134348c5e1cd6a4015b990716374ba1ca98c1b326eaf2b09d5919fd00f89a1_arm64" + }, + "product_reference": "rhacm2/search-collector-rhel8@sha256:59134348c5e1cd6a4015b990716374ba1ca98c1b326eaf2b09d5919fd00f89a1_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/search-collector-rhel8@sha256:99b321599e1d5de91d26541f8c6b603aa6ca5f6f95945184ad5ebd3339858313_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/search-collector-rhel8@sha256:99b321599e1d5de91d26541f8c6b603aa6ca5f6f95945184ad5ebd3339858313_ppc64le" + }, + "product_reference": "rhacm2/search-collector-rhel8@sha256:99b321599e1d5de91d26541f8c6b603aa6ca5f6f95945184ad5ebd3339858313_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/search-collector-rhel8@sha256:9c0d344de37947aeefe29a0b122dfcd5258772e944309d2276fc0049c224d058_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/search-collector-rhel8@sha256:9c0d344de37947aeefe29a0b122dfcd5258772e944309d2276fc0049c224d058_s390x" + }, + "product_reference": "rhacm2/search-collector-rhel8@sha256:9c0d344de37947aeefe29a0b122dfcd5258772e944309d2276fc0049c224d058_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/submariner-addon-rhel8@sha256:2f3e6474a2f980a19739ef1d0a5b7253b9a2159571fadfc417a6e1ab5f211316_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/submariner-addon-rhel8@sha256:2f3e6474a2f980a19739ef1d0a5b7253b9a2159571fadfc417a6e1ab5f211316_amd64" + }, + "product_reference": "rhacm2/submariner-addon-rhel8@sha256:2f3e6474a2f980a19739ef1d0a5b7253b9a2159571fadfc417a6e1ab5f211316_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/submariner-addon-rhel8@sha256:3c87dd67c5a7eb884f2ce7a091db8b48cce539b92fb5d5be1c10b9cbea5184ed_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/submariner-addon-rhel8@sha256:3c87dd67c5a7eb884f2ce7a091db8b48cce539b92fb5d5be1c10b9cbea5184ed_arm64" + }, + "product_reference": "rhacm2/submariner-addon-rhel8@sha256:3c87dd67c5a7eb884f2ce7a091db8b48cce539b92fb5d5be1c10b9cbea5184ed_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/submariner-addon-rhel8@sha256:6c93cac2647c9815381c1892dc1a631d7fdcd11a38ab0d023a2e07c2dc7ddd70_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/submariner-addon-rhel8@sha256:6c93cac2647c9815381c1892dc1a631d7fdcd11a38ab0d023a2e07c2dc7ddd70_ppc64le" + }, + "product_reference": "rhacm2/submariner-addon-rhel8@sha256:6c93cac2647c9815381c1892dc1a631d7fdcd11a38ab0d023a2e07c2dc7ddd70_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/submariner-addon-rhel8@sha256:f8881d5d9042d2d15c7754480f1309e682cd6baafa8732776fa45a78595c4206_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/submariner-addon-rhel8@sha256:f8881d5d9042d2d15c7754480f1309e682cd6baafa8732776fa45a78595c4206_s390x" + }, + "product_reference": "rhacm2/submariner-addon-rhel8@sha256:f8881d5d9042d2d15c7754480f1309e682cd6baafa8732776fa45a78595c4206_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:4fde5e8108d91c67542f6e0e8f81783d5e5d25ca312dfdd8ff1d2c90f4c3d291_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/thanos-receive-controller-rhel8@sha256:4fde5e8108d91c67542f6e0e8f81783d5e5d25ca312dfdd8ff1d2c90f4c3d291_amd64" + }, + "product_reference": "rhacm2/thanos-receive-controller-rhel8@sha256:4fde5e8108d91c67542f6e0e8f81783d5e5d25ca312dfdd8ff1d2c90f4c3d291_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:810cea838a9f89b18b2b73f1b862f35601f1cdfaf3b795ab6816eea098d7c703_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/thanos-receive-controller-rhel8@sha256:810cea838a9f89b18b2b73f1b862f35601f1cdfaf3b795ab6816eea098d7c703_ppc64le" + }, + "product_reference": "rhacm2/thanos-receive-controller-rhel8@sha256:810cea838a9f89b18b2b73f1b862f35601f1cdfaf3b795ab6816eea098d7c703_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:8175e65d039dd727d441f6e33762bc8f621f677ad35120bda8a4ab0012eb1011_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/thanos-receive-controller-rhel8@sha256:8175e65d039dd727d441f6e33762bc8f621f677ad35120bda8a4ab0012eb1011_s390x" + }, + "product_reference": "rhacm2/thanos-receive-controller-rhel8@sha256:8175e65d039dd727d441f6e33762bc8f621f677ad35120bda8a4ab0012eb1011_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/thanos-receive-controller-rhel8@sha256:ee071999e06e5184b189d2bef0fcadc7738e257ca9246b8846f8af428100a9e9_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/thanos-receive-controller-rhel8@sha256:ee071999e06e5184b189d2bef0fcadc7738e257ca9246b8846f8af428100a9e9_arm64" + }, + "product_reference": "rhacm2/thanos-receive-controller-rhel8@sha256:ee071999e06e5184b189d2bef0fcadc7738e257ca9246b8846f8af428100a9e9_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/thanos-rhel8@sha256:0ff9bf2d3989c7ea645d65aec11520fa9735e926bb51f28655e21b2467f9fef0_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/thanos-rhel8@sha256:0ff9bf2d3989c7ea645d65aec11520fa9735e926bb51f28655e21b2467f9fef0_arm64" + }, + "product_reference": "rhacm2/thanos-rhel8@sha256:0ff9bf2d3989c7ea645d65aec11520fa9735e926bb51f28655e21b2467f9fef0_arm64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/thanos-rhel8@sha256:4188e1ff8ab01644abe3082f069f47087be55d7549bec11a3fbd62ed4460444f_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/thanos-rhel8@sha256:4188e1ff8ab01644abe3082f069f47087be55d7549bec11a3fbd62ed4460444f_s390x" + }, + "product_reference": "rhacm2/thanos-rhel8@sha256:4188e1ff8ab01644abe3082f069f47087be55d7549bec11a3fbd62ed4460444f_s390x", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/thanos-rhel8@sha256:d86212ccfbfe4a381d8adab2fee776a7bc28476f93c5c0134b632399d391e3c3_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/thanos-rhel8@sha256:d86212ccfbfe4a381d8adab2fee776a7bc28476f93c5c0134b632399d391e3c3_ppc64le" + }, + "product_reference": "rhacm2/thanos-rhel8@sha256:d86212ccfbfe4a381d8adab2fee776a7bc28476f93c5c0134b632399d391e3c3_ppc64le", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhacm2/thanos-rhel8@sha256:e23a3b213824a4ce701d4c3d07ad01b8be15a05c365098570b298666fefceaf2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.8 for RHEL 8", + "product_id": "8Base-RHACM-2.8:rhacm2/thanos-rhel8@sha256:e23a3b213824a4ce701d4c3d07ad01b8be15a05c365098570b298666fefceaf2_amd64" + }, + "product_reference": "rhacm2/thanos-rhel8@sha256:e23a3b213824a4ce701d4c3d07ad01b8be15a05c365098570b298666fefceaf2_amd64", + "relates_to_product_reference": "8Base-RHACM-2.8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:4953938e00bf4114fa18e0520ccf20611686da2372615187e5c4f2fdfbb01e06_ppc64le as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-central-db-rhel8@sha256:4953938e00bf4114fa18e0520ccf20611686da2372615187e5c4f2fdfbb01e06_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:4953938e00bf4114fa18e0520ccf20611686da2372615187e5c4f2fdfbb01e06_ppc64le", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:c4915dcdfd96742aa5ba9ca38d0de9938ce9c85f6fffa867c35427829ee7462f_amd64 as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-central-db-rhel8@sha256:c4915dcdfd96742aa5ba9ca38d0de9938ce9c85f6fffa867c35427829ee7462f_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:c4915dcdfd96742aa5ba9ca38d0de9938ce9c85f6fffa867c35427829ee7462f_amd64", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:f8fa778d169160543339202f870232b6b00a1d01347f4041565cae9acc910ea9_s390x as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-central-db-rhel8@sha256:f8fa778d169160543339202f870232b6b00a1d01347f4041565cae9acc910ea9_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:f8fa778d169160543339202f870232b6b00a1d01347f4041565cae9acc910ea9_s390x", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:0ae622d315c3f3b23d76b7bc864c8b3d45d53db76a1fcc46d77be0c126bb93ea_ppc64le as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-collector-rhel8@sha256:0ae622d315c3f3b23d76b7bc864c8b3d45d53db76a1fcc46d77be0c126bb93ea_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-collector-rhel8@sha256:0ae622d315c3f3b23d76b7bc864c8b3d45d53db76a1fcc46d77be0c126bb93ea_ppc64le", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:623ece01f5d7af6844848879985ca0a9a50473cf3e3bb6f4923280948d9ff896_amd64 as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-collector-rhel8@sha256:623ece01f5d7af6844848879985ca0a9a50473cf3e3bb6f4923280948d9ff896_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-collector-rhel8@sha256:623ece01f5d7af6844848879985ca0a9a50473cf3e3bb6f4923280948d9ff896_amd64", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:6246642e8ac76535613ae5758a0cbc1e408440de2ea2f8cc208c96d7266aac22_s390x as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-collector-rhel8@sha256:6246642e8ac76535613ae5758a0cbc1e408440de2ea2f8cc208c96d7266aac22_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-collector-rhel8@sha256:6246642e8ac76535613ae5758a0cbc1e408440de2ea2f8cc208c96d7266aac22_s390x", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:8c32a894305bb7fc0ac7ed37872a8dbb09f50c387bd7eb9c955c6cd11c9cf4fe_ppc64le as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:8c32a894305bb7fc0ac7ed37872a8dbb09f50c387bd7eb9c955c6cd11c9cf4fe_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:8c32a894305bb7fc0ac7ed37872a8dbb09f50c387bd7eb9c955c6cd11c9cf4fe_ppc64le", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:927d84e4c8b52de401106d5aa10605eee94ce911a9d8e81e0c41d3b8beb7c63a_s390x as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:927d84e4c8b52de401106d5aa10605eee94ce911a9d8e81e0c41d3b8beb7c63a_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:927d84e4c8b52de401106d5aa10605eee94ce911a9d8e81e0c41d3b8beb7c63a_s390x", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:e5bba2853add1a8dee9cd34a542b4baf82a50091a917c83b74ade4298528bd3e_amd64 as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:e5bba2853add1a8dee9cd34a542b4baf82a50091a917c83b74ade4298528bd3e_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:e5bba2853add1a8dee9cd34a542b4baf82a50091a917c83b74ade4298528bd3e_amd64", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:0a7f042c6158dbc550e5f32ecbf5829ed925d2c9fdf30c1705ff4c3ce4bce077_ppc64le as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-main-rhel8@sha256:0a7f042c6158dbc550e5f32ecbf5829ed925d2c9fdf30c1705ff4c3ce4bce077_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-main-rhel8@sha256:0a7f042c6158dbc550e5f32ecbf5829ed925d2c9fdf30c1705ff4c3ce4bce077_ppc64le", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:729e49fb7cfe2bd21541b1e82ccbb77197285aa90486b0c1685379484a956dd9_amd64 as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-main-rhel8@sha256:729e49fb7cfe2bd21541b1e82ccbb77197285aa90486b0c1685379484a956dd9_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-main-rhel8@sha256:729e49fb7cfe2bd21541b1e82ccbb77197285aa90486b0c1685379484a956dd9_amd64", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:95265ddc882b2548ed35ae247b283d0f25dce30a3904717396fe17c701d4eb81_s390x as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-main-rhel8@sha256:95265ddc882b2548ed35ae247b283d0f25dce30a3904717396fe17c701d4eb81_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-main-rhel8@sha256:95265ddc882b2548ed35ae247b283d0f25dce30a3904717396fe17c701d4eb81_s390x", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:42a9acbb0b0a6db326b51044c7e9c99f7a89b5861ac706eab1595b34146b77c4_ppc64le as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-operator-bundle@sha256:42a9acbb0b0a6db326b51044c7e9c99f7a89b5861ac706eab1595b34146b77c4_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-operator-bundle@sha256:42a9acbb0b0a6db326b51044c7e9c99f7a89b5861ac706eab1595b34146b77c4_ppc64le", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:55bea5ed24d5fda12c5a6ac34a908da2c471937fb2c934df1188b806ab56d96e_amd64 as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-operator-bundle@sha256:55bea5ed24d5fda12c5a6ac34a908da2c471937fb2c934df1188b806ab56d96e_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-operator-bundle@sha256:55bea5ed24d5fda12c5a6ac34a908da2c471937fb2c934df1188b806ab56d96e_amd64", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:b8aa66884d5fdfc0383d7a6fdf34418b2c55a00f441fa41a374ca405d7b3f068_s390x as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-operator-bundle@sha256:b8aa66884d5fdfc0383d7a6fdf34418b2c55a00f441fa41a374ca405d7b3f068_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-operator-bundle@sha256:b8aa66884d5fdfc0383d7a6fdf34418b2c55a00f441fa41a374ca405d7b3f068_s390x", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:2adb884147e473b17086eb7cd5462fdd4ab18e6bdc81cd81940001be4a5b67c7_s390x as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-rhel8-operator@sha256:2adb884147e473b17086eb7cd5462fdd4ab18e6bdc81cd81940001be4a5b67c7_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-rhel8-operator@sha256:2adb884147e473b17086eb7cd5462fdd4ab18e6bdc81cd81940001be4a5b67c7_s390x", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:373275fba75136a5735ce6a98b94f6b44fc6122d278fdc347f8a8c4740ebcf33_amd64 as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-rhel8-operator@sha256:373275fba75136a5735ce6a98b94f6b44fc6122d278fdc347f8a8c4740ebcf33_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-rhel8-operator@sha256:373275fba75136a5735ce6a98b94f6b44fc6122d278fdc347f8a8c4740ebcf33_amd64", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:8dd2654d1e078941de8b8cbd1d9aa3348ff8893c35edb5c513116129eae74207_ppc64le as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-rhel8-operator@sha256:8dd2654d1e078941de8b8cbd1d9aa3348ff8893c35edb5c513116129eae74207_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-rhel8-operator@sha256:8dd2654d1e078941de8b8cbd1d9aa3348ff8893c35edb5c513116129eae74207_ppc64le", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:060f753e5e57904fd0b3cea1f47f5a45a300ba40c3de448dce04fc4857200127_ppc64le as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-roxctl-rhel8@sha256:060f753e5e57904fd0b3cea1f47f5a45a300ba40c3de448dce04fc4857200127_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:060f753e5e57904fd0b3cea1f47f5a45a300ba40c3de448dce04fc4857200127_ppc64le", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:ad2b63ce031af12d8c31eb40652e324ea9cc5891624c4e1683c00d2948825c0f_amd64 as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-roxctl-rhel8@sha256:ad2b63ce031af12d8c31eb40652e324ea9cc5891624c4e1683c00d2948825c0f_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:ad2b63ce031af12d8c31eb40652e324ea9cc5891624c4e1683c00d2948825c0f_amd64", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:ce71c4526b7cd5d2bebf771b38e6ac61a12c5dabe3d0f9963e27245944f9e6db_s390x as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-roxctl-rhel8@sha256:ce71c4526b7cd5d2bebf771b38e6ac61a12c5dabe3d0f9963e27245944f9e6db_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:ce71c4526b7cd5d2bebf771b38e6ac61a12c5dabe3d0f9963e27245944f9e6db_s390x", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:83e47a2dc1741bb81aa566f2b310ef0bd47a43792bcca823cdb8ee293c3c3e82_ppc64le as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:83e47a2dc1741bb81aa566f2b310ef0bd47a43792bcca823cdb8ee293c3c3e82_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:83e47a2dc1741bb81aa566f2b310ef0bd47a43792bcca823cdb8ee293c3c3e82_ppc64le", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ad7c57277851a741e0bc2536f564e86b59be8377366f4b1b7ea79aaa662dc6fa_s390x as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ad7c57277851a741e0bc2536f564e86b59be8377366f4b1b7ea79aaa662dc6fa_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:ad7c57277851a741e0bc2536f564e86b59be8377366f4b1b7ea79aaa662dc6fa_s390x", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b565441374903dafa3ee00f015cabdf3c16b282d143fb1c9c91dcd126697d71d_amd64 as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b565441374903dafa3ee00f015cabdf3c16b282d143fb1c9c91dcd126697d71d_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:b565441374903dafa3ee00f015cabdf3c16b282d143fb1c9c91dcd126697d71d_amd64", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:172711e18b4289efdda02b662beeaa6941f7b41a533410871c9505b76f6a4481_amd64 as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:172711e18b4289efdda02b662beeaa6941f7b41a533410871c9505b76f6a4481_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:172711e18b4289efdda02b662beeaa6941f7b41a533410871c9505b76f6a4481_amd64", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7c15e7d6064a4f45e6aabb8ff309bd0244ff789ee392815d85f2321a90917929_ppc64le as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7c15e7d6064a4f45e6aabb8ff309bd0244ff789ee392815d85f2321a90917929_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:7c15e7d6064a4f45e6aabb8ff309bd0244ff789ee392815d85f2321a90917929_ppc64le", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b0d4ba54ba1e9bf8afe640c9c5b2c5eed807c22423a75e39702c033e41c93229_s390x as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b0d4ba54ba1e9bf8afe640c9c5b2c5eed807c22423a75e39702c033e41c93229_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:b0d4ba54ba1e9bf8afe640c9c5b2c5eed807c22423a75e39702c033e41c93229_s390x", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:2468f097410bad3de5799b9d46801a04b4580a53d05498dcae37edf73c157826_amd64 as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-scanner-rhel8@sha256:2468f097410bad3de5799b9d46801a04b4580a53d05498dcae37edf73c157826_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:2468f097410bad3de5799b9d46801a04b4580a53d05498dcae37edf73c157826_amd64", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:8e8acf87581468fd98a97fe28438ea0146b3d8c2b12a322f5c63bf11b4588d81_s390x as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-scanner-rhel8@sha256:8e8acf87581468fd98a97fe28438ea0146b3d8c2b12a322f5c63bf11b4588d81_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:8e8acf87581468fd98a97fe28438ea0146b3d8c2b12a322f5c63bf11b4588d81_s390x", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:f2ebd7e0fba97e74519ce5e05c1a5205e5a76d72ae88e8c83d4722f1f8c8950b_ppc64le as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-scanner-rhel8@sha256:f2ebd7e0fba97e74519ce5e05c1a5205e5a76d72ae88e8c83d4722f1f8c8950b_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:f2ebd7e0fba97e74519ce5e05c1a5205e5a76d72ae88e8c83d4722f1f8c8950b_ppc64le", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2a7393086842c64287c32d7cc99ba498c53ec164b3309df59277fb1bef6bbbad_amd64 as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2a7393086842c64287c32d7cc99ba498c53ec164b3309df59277fb1bef6bbbad_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2a7393086842c64287c32d7cc99ba498c53ec164b3309df59277fb1bef6bbbad_amd64", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:358e601cd9e79a86df7bc735fc593a707ad4fc4e14ed8f39131297a26fb282c3_s390x as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:358e601cd9e79a86df7bc735fc593a707ad4fc4e14ed8f39131297a26fb282c3_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:358e601cd9e79a86df7bc735fc593a707ad4fc4e14ed8f39131297a26fb282c3_s390x", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:668c8f074fd4b5ee1cd55f3f4b139965b570b0344e8e3b248cc0fecc14a7e4a6_ppc64le as a component of RHACS 3.74 for RHEL 8", + "product_id": "8Base-RHACS-3.74:advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:668c8f074fd4b5ee1cd55f3f4b139965b570b0344e8e3b248cc0fecc14a7e4a6_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:668c8f074fd4b5ee1cd55f3f4b139965b570b0344e8e3b248cc0fecc14a7e4a6_ppc64le", + "relates_to_product_reference": "8Base-RHACS-3.74" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:01bd7d0eb01bbccaedb4bd874f9d25ec1de15b6ffa7d9afa772c633c901b4d19_ppc64le as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-central-db-rhel8@sha256:01bd7d0eb01bbccaedb4bd874f9d25ec1de15b6ffa7d9afa772c633c901b4d19_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:01bd7d0eb01bbccaedb4bd874f9d25ec1de15b6ffa7d9afa772c633c901b4d19_ppc64le", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:bed6dd0b095914635cc4c7492e7c7f312bc84138df4dbb63ce632835697da1eb_amd64 as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-central-db-rhel8@sha256:bed6dd0b095914635cc4c7492e7c7f312bc84138df4dbb63ce632835697da1eb_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:bed6dd0b095914635cc4c7492e7c7f312bc84138df4dbb63ce632835697da1eb_amd64", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:f92672857754ee0baad0e17802ec23aa3f14e11dce65b59f60a8002a21987c75_s390x as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-central-db-rhel8@sha256:f92672857754ee0baad0e17802ec23aa3f14e11dce65b59f60a8002a21987c75_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:f92672857754ee0baad0e17802ec23aa3f14e11dce65b59f60a8002a21987c75_s390x", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:192562d3cc181ff2cc14b9bf7202dd1b09c3d25c3308154d3878834c42139b8a_s390x as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-collector-rhel8@sha256:192562d3cc181ff2cc14b9bf7202dd1b09c3d25c3308154d3878834c42139b8a_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-collector-rhel8@sha256:192562d3cc181ff2cc14b9bf7202dd1b09c3d25c3308154d3878834c42139b8a_s390x", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:2168e357d9d8b663595aefd49434fa7b87e3dcb5dfb1aa9cceeddf656d89436f_ppc64le as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-collector-rhel8@sha256:2168e357d9d8b663595aefd49434fa7b87e3dcb5dfb1aa9cceeddf656d89436f_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-collector-rhel8@sha256:2168e357d9d8b663595aefd49434fa7b87e3dcb5dfb1aa9cceeddf656d89436f_ppc64le", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:9974f6a4a1e0a9409fc5fee5addbc58ecafda1fd34231f2ac4b2972fbdbb422b_amd64 as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-collector-rhel8@sha256:9974f6a4a1e0a9409fc5fee5addbc58ecafda1fd34231f2ac4b2972fbdbb422b_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-collector-rhel8@sha256:9974f6a4a1e0a9409fc5fee5addbc58ecafda1fd34231f2ac4b2972fbdbb422b_amd64", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:39b9d467f3b5fc5813fc2b2a27e187b62673817d98ce496a5f35551046110ed1_ppc64le as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:39b9d467f3b5fc5813fc2b2a27e187b62673817d98ce496a5f35551046110ed1_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:39b9d467f3b5fc5813fc2b2a27e187b62673817d98ce496a5f35551046110ed1_ppc64le", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:6de4dae7bd8e1cae0bcf98e76380f10ce23e2d7868eac7189c5be44fb370c65b_s390x as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:6de4dae7bd8e1cae0bcf98e76380f10ce23e2d7868eac7189c5be44fb370c65b_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:6de4dae7bd8e1cae0bcf98e76380f10ce23e2d7868eac7189c5be44fb370c65b_s390x", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:ec6d6c5af603b2ca083e7a7600680e3e121daedc43c53b4c0c760463fc5e569c_amd64 as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:ec6d6c5af603b2ca083e7a7600680e3e121daedc43c53b4c0c760463fc5e569c_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:ec6d6c5af603b2ca083e7a7600680e3e121daedc43c53b4c0c760463fc5e569c_amd64", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:0165f336652e61518f87398d395766f408e372f1487026e6e06c5dd37e6cca24_s390x as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-main-rhel8@sha256:0165f336652e61518f87398d395766f408e372f1487026e6e06c5dd37e6cca24_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-main-rhel8@sha256:0165f336652e61518f87398d395766f408e372f1487026e6e06c5dd37e6cca24_s390x", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:2d91c9e119a9c6f69f5f6b44fd54cdb89a255a1f831c14c0346291a085cf1255_amd64 as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-main-rhel8@sha256:2d91c9e119a9c6f69f5f6b44fd54cdb89a255a1f831c14c0346291a085cf1255_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-main-rhel8@sha256:2d91c9e119a9c6f69f5f6b44fd54cdb89a255a1f831c14c0346291a085cf1255_amd64", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:70119ac2a99ae2b42a84f18d5dfc5a719ffd183a2c6587fd2654e17b207cbaa7_ppc64le as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-main-rhel8@sha256:70119ac2a99ae2b42a84f18d5dfc5a719ffd183a2c6587fd2654e17b207cbaa7_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-main-rhel8@sha256:70119ac2a99ae2b42a84f18d5dfc5a719ffd183a2c6587fd2654e17b207cbaa7_ppc64le", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:54e95a79b10a119472b6ef0351ff878e6a384b8e3100d25e943678bb120ed322_amd64 as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-operator-bundle@sha256:54e95a79b10a119472b6ef0351ff878e6a384b8e3100d25e943678bb120ed322_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-operator-bundle@sha256:54e95a79b10a119472b6ef0351ff878e6a384b8e3100d25e943678bb120ed322_amd64", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:594533fdc64148e9222d6a1bfaa2ac9c912478161035b2aadb3161e6a6c7de71_s390x as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-operator-bundle@sha256:594533fdc64148e9222d6a1bfaa2ac9c912478161035b2aadb3161e6a6c7de71_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-operator-bundle@sha256:594533fdc64148e9222d6a1bfaa2ac9c912478161035b2aadb3161e6a6c7de71_s390x", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:f996eaff3c93ae2a0589c038358da2932d85f7642289e6b5cc63e87af130e0f2_ppc64le as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-operator-bundle@sha256:f996eaff3c93ae2a0589c038358da2932d85f7642289e6b5cc63e87af130e0f2_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-operator-bundle@sha256:f996eaff3c93ae2a0589c038358da2932d85f7642289e6b5cc63e87af130e0f2_ppc64le", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:38933d28d8f623e8e421708f34a56e42cddd66b09c77b90ba7d0bab1ee10e6a6_amd64 as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-rhel8-operator@sha256:38933d28d8f623e8e421708f34a56e42cddd66b09c77b90ba7d0bab1ee10e6a6_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-rhel8-operator@sha256:38933d28d8f623e8e421708f34a56e42cddd66b09c77b90ba7d0bab1ee10e6a6_amd64", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:564a8cbb9da8f2daab1d4163a4dfffdb2fadf87808cee3d4cc0ca210cf37801c_ppc64le as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-rhel8-operator@sha256:564a8cbb9da8f2daab1d4163a4dfffdb2fadf87808cee3d4cc0ca210cf37801c_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-rhel8-operator@sha256:564a8cbb9da8f2daab1d4163a4dfffdb2fadf87808cee3d4cc0ca210cf37801c_ppc64le", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:62be9d1228353bb890192444a8f79aa10afa9acf57b6fbae49e6751d4355eced_s390x as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-rhel8-operator@sha256:62be9d1228353bb890192444a8f79aa10afa9acf57b6fbae49e6751d4355eced_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-rhel8-operator@sha256:62be9d1228353bb890192444a8f79aa10afa9acf57b6fbae49e6751d4355eced_s390x", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:356142a0cef442132a39383a807ff74c6cad931071c45f44e1f7a794accf7ed1_ppc64le as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-roxctl-rhel8@sha256:356142a0cef442132a39383a807ff74c6cad931071c45f44e1f7a794accf7ed1_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:356142a0cef442132a39383a807ff74c6cad931071c45f44e1f7a794accf7ed1_ppc64le", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:ad51e30709c6b9f4350473b72eed6f0cb037f41f08c675ad7868cc70462513ae_amd64 as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-roxctl-rhel8@sha256:ad51e30709c6b9f4350473b72eed6f0cb037f41f08c675ad7868cc70462513ae_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:ad51e30709c6b9f4350473b72eed6f0cb037f41f08c675ad7868cc70462513ae_amd64", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e3088b93eaf3e6114ec3706f4a86cf9a1135a19b2b9274ccd5a47d4d530d5ead_s390x as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e3088b93eaf3e6114ec3706f4a86cf9a1135a19b2b9274ccd5a47d4d530d5ead_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:e3088b93eaf3e6114ec3706f4a86cf9a1135a19b2b9274ccd5a47d4d530d5ead_s390x", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:024076d8e8f8759397d35ccf6d7e23c72e301d9ac76f9f3783802306412b6e82_ppc64le as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:024076d8e8f8759397d35ccf6d7e23c72e301d9ac76f9f3783802306412b6e82_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:024076d8e8f8759397d35ccf6d7e23c72e301d9ac76f9f3783802306412b6e82_ppc64le", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:16c06f7d13b140eace33c92e4de25080a369fb8cb07e8cd37dab1c77e20b98dc_s390x as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:16c06f7d13b140eace33c92e4de25080a369fb8cb07e8cd37dab1c77e20b98dc_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:16c06f7d13b140eace33c92e4de25080a369fb8cb07e8cd37dab1c77e20b98dc_s390x", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:6455831309117beb15181b443ca8f43c42b296798f9deaae25f5e180ef67f68e_amd64 as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:6455831309117beb15181b443ca8f43c42b296798f9deaae25f5e180ef67f68e_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:6455831309117beb15181b443ca8f43c42b296798f9deaae25f5e180ef67f68e_amd64", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:505df709de90a7c86795312064564df6365d2150ee4536332c5896f767c7dd26_s390x as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:505df709de90a7c86795312064564df6365d2150ee4536332c5896f767c7dd26_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:505df709de90a7c86795312064564df6365d2150ee4536332c5896f767c7dd26_s390x", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:784f6bd4459fe4ba58dba416fcd4ad259ad71d15afef167d3331e43063813e0c_amd64 as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:784f6bd4459fe4ba58dba416fcd4ad259ad71d15afef167d3331e43063813e0c_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:784f6bd4459fe4ba58dba416fcd4ad259ad71d15afef167d3331e43063813e0c_amd64", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f3c15fec3acb45f2b026820460c4be9b6d13fd2d5f10b0b7ddd8692971b2201b_ppc64le as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f3c15fec3acb45f2b026820460c4be9b6d13fd2d5f10b0b7ddd8692971b2201b_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:f3c15fec3acb45f2b026820460c4be9b6d13fd2d5f10b0b7ddd8692971b2201b_ppc64le", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:86a79d36cdbdeccd47fd477ea503b859b068a168ec95c4a44c2784300c1dc036_amd64 as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-scanner-rhel8@sha256:86a79d36cdbdeccd47fd477ea503b859b068a168ec95c4a44c2784300c1dc036_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:86a79d36cdbdeccd47fd477ea503b859b068a168ec95c4a44c2784300c1dc036_amd64", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:8ec71419eb15e2fc5300fdc7bcab0422bd0c467d718a0a37568b80df4272a0ff_ppc64le as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-scanner-rhel8@sha256:8ec71419eb15e2fc5300fdc7bcab0422bd0c467d718a0a37568b80df4272a0ff_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:8ec71419eb15e2fc5300fdc7bcab0422bd0c467d718a0a37568b80df4272a0ff_ppc64le", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:949cea90dd61fa675970dc2b6e2cbf7059a3095a8e679e6de8d30cac34ee2d51_s390x as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-scanner-rhel8@sha256:949cea90dd61fa675970dc2b6e2cbf7059a3095a8e679e6de8d30cac34ee2d51_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:949cea90dd61fa675970dc2b6e2cbf7059a3095a8e679e6de8d30cac34ee2d51_s390x", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:70114bb8763ef837426eb11929134ba804f70ccfe4f54eda180eb754c465ad63_ppc64le as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:70114bb8763ef837426eb11929134ba804f70ccfe4f54eda180eb754c465ad63_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:70114bb8763ef837426eb11929134ba804f70ccfe4f54eda180eb754c465ad63_ppc64le", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:70ea0eb9f752ea313bbfcc6248c12e9e3569df023c2a88ec07305579d8ffd1bc_amd64 as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:70ea0eb9f752ea313bbfcc6248c12e9e3569df023c2a88ec07305579d8ffd1bc_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:70ea0eb9f752ea313bbfcc6248c12e9e3569df023c2a88ec07305579d8ffd1bc_amd64", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:ce07a0fffd33647940720096d75329a6c857e49ae9ce7fc8358ad0c33adf1a4c_s390x as a component of RHACS 4.1 for RHEL 8", + "product_id": "8Base-RHACS-4.1:advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:ce07a0fffd33647940720096d75329a6c857e49ae9ce7fc8358ad0c33adf1a4c_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:ce07a0fffd33647940720096d75329a6c857e49ae9ce7fc8358ad0c33adf1a4c_s390x", + "relates_to_product_reference": "8Base-RHACS-4.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:8f37c6215c27e7231546a97987b471bae5f3f5cd7458989cc9f032d7429ce9a5_amd64 as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-central-db-rhel8@sha256:8f37c6215c27e7231546a97987b471bae5f3f5cd7458989cc9f032d7429ce9a5_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:8f37c6215c27e7231546a97987b471bae5f3f5cd7458989cc9f032d7429ce9a5_amd64", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:925bdf348da6851a2f0efd903ce3061b7d0ed7b17dee8aa76e4e3d75f0b28150_ppc64le as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-central-db-rhel8@sha256:925bdf348da6851a2f0efd903ce3061b7d0ed7b17dee8aa76e4e3d75f0b28150_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:925bdf348da6851a2f0efd903ce3061b7d0ed7b17dee8aa76e4e3d75f0b28150_ppc64le", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:f2fad967d9f9d6f8e8b9dbec3e2a581a43b64f02fdc584750e206674d655dd5f_s390x as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-central-db-rhel8@sha256:f2fad967d9f9d6f8e8b9dbec3e2a581a43b64f02fdc584750e206674d655dd5f_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-central-db-rhel8@sha256:f2fad967d9f9d6f8e8b9dbec3e2a581a43b64f02fdc584750e206674d655dd5f_s390x", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:0fc1a13e6960e5077ae351cd6f12c65cc06fb9526dc9261eed98345e7b9a98c0_amd64 as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-collector-rhel8@sha256:0fc1a13e6960e5077ae351cd6f12c65cc06fb9526dc9261eed98345e7b9a98c0_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-collector-rhel8@sha256:0fc1a13e6960e5077ae351cd6f12c65cc06fb9526dc9261eed98345e7b9a98c0_amd64", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:7f5898e7d868865d56b91f81d314bdc41a265e177f741dd05d4a9dc3b74d54bb_s390x as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-collector-rhel8@sha256:7f5898e7d868865d56b91f81d314bdc41a265e177f741dd05d4a9dc3b74d54bb_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-collector-rhel8@sha256:7f5898e7d868865d56b91f81d314bdc41a265e177f741dd05d4a9dc3b74d54bb_s390x", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-collector-rhel8@sha256:f591a221d2dbe643b6d975d1a2e9b9289173e2e845a838ab850debe20c957f11_ppc64le as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-collector-rhel8@sha256:f591a221d2dbe643b6d975d1a2e9b9289173e2e845a838ab850debe20c957f11_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-collector-rhel8@sha256:f591a221d2dbe643b6d975d1a2e9b9289173e2e845a838ab850debe20c957f11_ppc64le", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:0572022184db58987b3abb065f0abac5368d7163d671e287151986a4b18898cf_s390x as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:0572022184db58987b3abb065f0abac5368d7163d671e287151986a4b18898cf_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:0572022184db58987b3abb065f0abac5368d7163d671e287151986a4b18898cf_s390x", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:13315f5c0db23887865ac2d310bd33b6258ac409d185209656531bc0b1fa0b2a_amd64 as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:13315f5c0db23887865ac2d310bd33b6258ac409d185209656531bc0b1fa0b2a_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:13315f5c0db23887865ac2d310bd33b6258ac409d185209656531bc0b1fa0b2a_amd64", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:2844fcd4aa1aa285fffd24d0d07bd0e23b0927236d8d52ca51dafe3f06724850_ppc64le as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:2844fcd4aa1aa285fffd24d0d07bd0e23b0927236d8d52ca51dafe3f06724850_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-collector-slim-rhel8@sha256:2844fcd4aa1aa285fffd24d0d07bd0e23b0927236d8d52ca51dafe3f06724850_ppc64le", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:638b97de5d0f42e63a75764430801f8c6cca99994b82a1741efb9e8a5fca34d2_ppc64le as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-main-rhel8@sha256:638b97de5d0f42e63a75764430801f8c6cca99994b82a1741efb9e8a5fca34d2_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-main-rhel8@sha256:638b97de5d0f42e63a75764430801f8c6cca99994b82a1741efb9e8a5fca34d2_ppc64le", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:f92ebfda68d49b1d0460cda21d8ccb4b5c9c88224b85e0aca9c2f6c29e195445_s390x as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-main-rhel8@sha256:f92ebfda68d49b1d0460cda21d8ccb4b5c9c88224b85e0aca9c2f6c29e195445_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-main-rhel8@sha256:f92ebfda68d49b1d0460cda21d8ccb4b5c9c88224b85e0aca9c2f6c29e195445_s390x", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-main-rhel8@sha256:fd758a96e8b07884a9ecd9e3b948889bb9004af3fbe6a370b6f54baed179797c_amd64 as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-main-rhel8@sha256:fd758a96e8b07884a9ecd9e3b948889bb9004af3fbe6a370b6f54baed179797c_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-main-rhel8@sha256:fd758a96e8b07884a9ecd9e3b948889bb9004af3fbe6a370b6f54baed179797c_amd64", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:48fa08e690f9b2fbbde8fada15c9b124eb1fca868040369a73c98b95a9eff301_ppc64le as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-operator-bundle@sha256:48fa08e690f9b2fbbde8fada15c9b124eb1fca868040369a73c98b95a9eff301_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-operator-bundle@sha256:48fa08e690f9b2fbbde8fada15c9b124eb1fca868040369a73c98b95a9eff301_ppc64le", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:75148e16a364e4f67ecb8e914fc16b7ca4112c4e844b0d361a3feb88468f1215_amd64 as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-operator-bundle@sha256:75148e16a364e4f67ecb8e914fc16b7ca4112c4e844b0d361a3feb88468f1215_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-operator-bundle@sha256:75148e16a364e4f67ecb8e914fc16b7ca4112c4e844b0d361a3feb88468f1215_amd64", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-operator-bundle@sha256:9a029334191c6b5b15df35e1959b2860da68ac3673ef8009bd54189e685a3b03_s390x as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-operator-bundle@sha256:9a029334191c6b5b15df35e1959b2860da68ac3673ef8009bd54189e685a3b03_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-operator-bundle@sha256:9a029334191c6b5b15df35e1959b2860da68ac3673ef8009bd54189e685a3b03_s390x", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:103b5cd32930836320eea0b28532ff9160cea7b02ddbb6af47df7433f7bb47c4_ppc64le as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-rhel8-operator@sha256:103b5cd32930836320eea0b28532ff9160cea7b02ddbb6af47df7433f7bb47c4_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-rhel8-operator@sha256:103b5cd32930836320eea0b28532ff9160cea7b02ddbb6af47df7433f7bb47c4_ppc64le", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:31d38c18be2020f49c28dee55ca92fd14237c6b9e3f54d7b0d6f1ded0ed4c372_amd64 as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-rhel8-operator@sha256:31d38c18be2020f49c28dee55ca92fd14237c6b9e3f54d7b0d6f1ded0ed4c372_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-rhel8-operator@sha256:31d38c18be2020f49c28dee55ca92fd14237c6b9e3f54d7b0d6f1ded0ed4c372_amd64", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-rhel8-operator@sha256:772b19a562fe52c709532b487233cfbfa8cee16f12da309fd4432df04792f32c_s390x as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-rhel8-operator@sha256:772b19a562fe52c709532b487233cfbfa8cee16f12da309fd4432df04792f32c_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-rhel8-operator@sha256:772b19a562fe52c709532b487233cfbfa8cee16f12da309fd4432df04792f32c_s390x", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:9e05ce576af3755eb9db6b38c01bd851b2335f4cbd116338ebcac4e3ed6a1ab0_ppc64le as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-roxctl-rhel8@sha256:9e05ce576af3755eb9db6b38c01bd851b2335f4cbd116338ebcac4e3ed6a1ab0_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:9e05ce576af3755eb9db6b38c01bd851b2335f4cbd116338ebcac4e3ed6a1ab0_ppc64le", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:fab7366274d9d9d903ecc42bbb0219954481eb2a9a43cbb046df9f31f522c4b4_s390x as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-roxctl-rhel8@sha256:fab7366274d9d9d903ecc42bbb0219954481eb2a9a43cbb046df9f31f522c4b4_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:fab7366274d9d9d903ecc42bbb0219954481eb2a9a43cbb046df9f31f522c4b4_s390x", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:fec8341ce138808c01cb45838a6e494bf99d079a5009b622a8e4b0f3c1beee48_amd64 as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-roxctl-rhel8@sha256:fec8341ce138808c01cb45838a6e494bf99d079a5009b622a8e4b0f3c1beee48_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-roxctl-rhel8@sha256:fec8341ce138808c01cb45838a6e494bf99d079a5009b622a8e4b0f3c1beee48_amd64", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:1dc2e9076e32731506a39472bd045f90474f22a7a2fb0c0dbeca2942c4e8b06a_s390x as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:1dc2e9076e32731506a39472bd045f90474f22a7a2fb0c0dbeca2942c4e8b06a_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:1dc2e9076e32731506a39472bd045f90474f22a7a2fb0c0dbeca2942c4e8b06a_s390x", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:3b6df0593ce67833341a1ba58571753dbd20edc28490cf5647ea4f3d3a36c33e_amd64 as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:3b6df0593ce67833341a1ba58571753dbd20edc28490cf5647ea4f3d3a36c33e_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:3b6df0593ce67833341a1ba58571753dbd20edc28490cf5647ea4f3d3a36c33e_amd64", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4b386c2c2343fa09a4f71d4f7481b0e8daf7fcb3a3a710ff9f7c0e492070f156_ppc64le as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4b386c2c2343fa09a4f71d4f7481b0e8daf7fcb3a3a710ff9f7c0e492070f156_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-db-rhel8@sha256:4b386c2c2343fa09a4f71d4f7481b0e8daf7fcb3a3a710ff9f7c0e492070f156_ppc64le", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:62f346b0b81423603f6804de7938106653dc6fed6c22d9660426869cdbbda0ed_s390x as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:62f346b0b81423603f6804de7938106653dc6fed6c22d9660426869cdbbda0ed_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:62f346b0b81423603f6804de7938106653dc6fed6c22d9660426869cdbbda0ed_s390x", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:790f6345dc5a23855b2c3a2f0f1b07d6590659b8ff377833ce4d82f681056275_amd64 as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:790f6345dc5a23855b2c3a2f0f1b07d6590659b8ff377833ce4d82f681056275_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:790f6345dc5a23855b2c3a2f0f1b07d6590659b8ff377833ce4d82f681056275_amd64", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:89ca3042eb40d7bf4ea2658e1a9f39cd507d71d469d927f48e5a36f64eff98cb_ppc64le as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:89ca3042eb40d7bf4ea2658e1a9f39cd507d71d469d927f48e5a36f64eff98cb_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-db-slim-rhel8@sha256:89ca3042eb40d7bf4ea2658e1a9f39cd507d71d469d927f48e5a36f64eff98cb_ppc64le", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:1d6df1627b7cbbe659afdc40c395fd8fe85f237bdc58fc86bb589ca8a5995141_s390x as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-scanner-rhel8@sha256:1d6df1627b7cbbe659afdc40c395fd8fe85f237bdc58fc86bb589ca8a5995141_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:1d6df1627b7cbbe659afdc40c395fd8fe85f237bdc58fc86bb589ca8a5995141_s390x", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:2ed5dd9abad665d668416feda3ad4bf8631a083fe4616e502245bdd679388687_ppc64le as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-scanner-rhel8@sha256:2ed5dd9abad665d668416feda3ad4bf8631a083fe4616e502245bdd679388687_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:2ed5dd9abad665d668416feda3ad4bf8631a083fe4616e502245bdd679388687_ppc64le", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:fb3a7a2124196239fefe325f45132797d2bb4795de89a26e78a53ff8e0d9094e_amd64 as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-scanner-rhel8@sha256:fb3a7a2124196239fefe325f45132797d2bb4795de89a26e78a53ff8e0d9094e_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-rhel8@sha256:fb3a7a2124196239fefe325f45132797d2bb4795de89a26e78a53ff8e0d9094e_amd64", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2d39a1d54058d0bb181afc9218ee65698f572f3aa6c67c9cc058b23ea68cf32e_ppc64le as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2d39a1d54058d0bb181afc9218ee65698f572f3aa6c67c9cc058b23ea68cf32e_ppc64le" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:2d39a1d54058d0bb181afc9218ee65698f572f3aa6c67c9cc058b23ea68cf32e_ppc64le", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:3e0076d3574ecf23354a340f808926c4dc9e338920daa83085764c0f2a092025_amd64 as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:3e0076d3574ecf23354a340f808926c4dc9e338920daa83085764c0f2a092025_amd64" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:3e0076d3574ecf23354a340f808926c4dc9e338920daa83085764c0f2a092025_amd64", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4bc615a0954e2514c7266a639bcf0dedc290cf8d464738143ce73a5711e9dd66_s390x as a component of RHACS 4.2 for RHEL 8", + "product_id": "8Base-RHACS-4.2:advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4bc615a0954e2514c7266a639bcf0dedc290cf8d464738143ce73a5711e9dd66_s390x" + }, + "product_reference": "advanced-cluster-security/rhacs-scanner-slim-rhel8@sha256:4bc615a0954e2514c7266a639bcf0dedc290cf8d464738143ce73a5711e9dd66_s390x", + "relates_to_product_reference": "8Base-RHACS-4.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhmtc/openshift-migration-controller-rhel8@sha256:db6e79aff9c592fe7f27145d01d7444f4dc4e0144cc036ae916d9cf0c95a9cfe_amd64 as a component of 8Base-RHMTC-1.7", + "product_id": "8Base-RHMTC-1.7:rhmtc/openshift-migration-controller-rhel8@sha256:db6e79aff9c592fe7f27145d01d7444f4dc4e0144cc036ae916d9cf0c95a9cfe_amd64" + }, + "product_reference": "rhmtc/openshift-migration-controller-rhel8@sha256:db6e79aff9c592fe7f27145d01d7444f4dc4e0144cc036ae916d9cf0c95a9cfe_amd64", + "relates_to_product_reference": "8Base-RHMTC-1.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhmtc/openshift-migration-hook-runner-rhel8@sha256:c12186c030ce5192c823351ac212c1acf1c85fa574267bc64d2cdf90c5dae87f_amd64 as a component of 8Base-RHMTC-1.7", + "product_id": "8Base-RHMTC-1.7:rhmtc/openshift-migration-hook-runner-rhel8@sha256:c12186c030ce5192c823351ac212c1acf1c85fa574267bc64d2cdf90c5dae87f_amd64" + }, + "product_reference": "rhmtc/openshift-migration-hook-runner-rhel8@sha256:c12186c030ce5192c823351ac212c1acf1c85fa574267bc64d2cdf90c5dae87f_amd64", + "relates_to_product_reference": "8Base-RHMTC-1.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhmtc/openshift-migration-legacy-rhel8-operator@sha256:ce90e9b7af04340afc72f38cfdf5b64d2a6fcae23f59223e2d510c028823d87f_amd64 as a component of 8Base-RHMTC-1.7", + "product_id": "8Base-RHMTC-1.7:rhmtc/openshift-migration-legacy-rhel8-operator@sha256:ce90e9b7af04340afc72f38cfdf5b64d2a6fcae23f59223e2d510c028823d87f_amd64" + }, + "product_reference": "rhmtc/openshift-migration-legacy-rhel8-operator@sha256:ce90e9b7af04340afc72f38cfdf5b64d2a6fcae23f59223e2d510c028823d87f_amd64", + "relates_to_product_reference": "8Base-RHMTC-1.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhmtc/openshift-migration-log-reader-rhel8@sha256:58f92f50972a948c40319a5c2c9abfe3d44034ba1538f018b51f9998ee875e90_amd64 as a component of 8Base-RHMTC-1.7", + "product_id": "8Base-RHMTC-1.7:rhmtc/openshift-migration-log-reader-rhel8@sha256:58f92f50972a948c40319a5c2c9abfe3d44034ba1538f018b51f9998ee875e90_amd64" + }, + "product_reference": "rhmtc/openshift-migration-log-reader-rhel8@sha256:58f92f50972a948c40319a5c2c9abfe3d44034ba1538f018b51f9998ee875e90_amd64", + "relates_to_product_reference": "8Base-RHMTC-1.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhmtc/openshift-migration-must-gather-rhel8@sha256:cc19dae1824b42b15a8015f6a88f1bc0f85e75a9e7d14f38313a27d93c88f22f_amd64 as a component of 8Base-RHMTC-1.7", + "product_id": "8Base-RHMTC-1.7:rhmtc/openshift-migration-must-gather-rhel8@sha256:cc19dae1824b42b15a8015f6a88f1bc0f85e75a9e7d14f38313a27d93c88f22f_amd64" + }, + "product_reference": "rhmtc/openshift-migration-must-gather-rhel8@sha256:cc19dae1824b42b15a8015f6a88f1bc0f85e75a9e7d14f38313a27d93c88f22f_amd64", + "relates_to_product_reference": "8Base-RHMTC-1.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhmtc/openshift-migration-openvpn-rhel8@sha256:79006886844f82db986d9778994727cd40943faa77b2740b54f312fca6602950_amd64 as a component of 8Base-RHMTC-1.7", + "product_id": "8Base-RHMTC-1.7:rhmtc/openshift-migration-openvpn-rhel8@sha256:79006886844f82db986d9778994727cd40943faa77b2740b54f312fca6602950_amd64" + }, + "product_reference": "rhmtc/openshift-migration-openvpn-rhel8@sha256:79006886844f82db986d9778994727cd40943faa77b2740b54f312fca6602950_amd64", + "relates_to_product_reference": "8Base-RHMTC-1.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhmtc/openshift-migration-operator-bundle@sha256:34e80eefb9b91a41bc4648e02de37d262347085c4da9bd032f43c8bb59e4459a_amd64 as a component of 8Base-RHMTC-1.7", + "product_id": "8Base-RHMTC-1.7:rhmtc/openshift-migration-operator-bundle@sha256:34e80eefb9b91a41bc4648e02de37d262347085c4da9bd032f43c8bb59e4459a_amd64" + }, + "product_reference": "rhmtc/openshift-migration-operator-bundle@sha256:34e80eefb9b91a41bc4648e02de37d262347085c4da9bd032f43c8bb59e4459a_amd64", + "relates_to_product_reference": "8Base-RHMTC-1.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhmtc/openshift-migration-registry-rhel8@sha256:4dfa0ace1d92a6ae70d08dc3aff621e5f332956f213db987d9862ed2685e6733_amd64 as a component of 8Base-RHMTC-1.7", + "product_id": "8Base-RHMTC-1.7:rhmtc/openshift-migration-registry-rhel8@sha256:4dfa0ace1d92a6ae70d08dc3aff621e5f332956f213db987d9862ed2685e6733_amd64" + }, + "product_reference": "rhmtc/openshift-migration-registry-rhel8@sha256:4dfa0ace1d92a6ae70d08dc3aff621e5f332956f213db987d9862ed2685e6733_amd64", + "relates_to_product_reference": "8Base-RHMTC-1.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhmtc/openshift-migration-rhel8-operator@sha256:0dc885972e7035f2c4b31016f4053e2bd73e328ace6aeee07380db5e0b055b02_amd64 as a component of 8Base-RHMTC-1.7", + "product_id": "8Base-RHMTC-1.7:rhmtc/openshift-migration-rhel8-operator@sha256:0dc885972e7035f2c4b31016f4053e2bd73e328ace6aeee07380db5e0b055b02_amd64" + }, + "product_reference": "rhmtc/openshift-migration-rhel8-operator@sha256:0dc885972e7035f2c4b31016f4053e2bd73e328ace6aeee07380db5e0b055b02_amd64", + "relates_to_product_reference": "8Base-RHMTC-1.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhmtc/openshift-migration-rsync-transfer-rhel8@sha256:cc4a32d349982a82cee52247627f1fd76b6630a6ddb4523a326e83f99d65826d_amd64 as a component of 8Base-RHMTC-1.7", + "product_id": "8Base-RHMTC-1.7:rhmtc/openshift-migration-rsync-transfer-rhel8@sha256:cc4a32d349982a82cee52247627f1fd76b6630a6ddb4523a326e83f99d65826d_amd64" + }, + "product_reference": "rhmtc/openshift-migration-rsync-transfer-rhel8@sha256:cc4a32d349982a82cee52247627f1fd76b6630a6ddb4523a326e83f99d65826d_amd64", + "relates_to_product_reference": "8Base-RHMTC-1.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhmtc/openshift-migration-ui-rhel8@sha256:b3fd7bf0c25ecd110635de6e7d071cfe314cbe50ee0f924f3dfa985fd24ae59e_amd64 as a component of 8Base-RHMTC-1.7", + "product_id": "8Base-RHMTC-1.7:rhmtc/openshift-migration-ui-rhel8@sha256:b3fd7bf0c25ecd110635de6e7d071cfe314cbe50ee0f924f3dfa985fd24ae59e_amd64" + }, + "product_reference": "rhmtc/openshift-migration-ui-rhel8@sha256:b3fd7bf0c25ecd110635de6e7d071cfe314cbe50ee0f924f3dfa985fd24ae59e_amd64", + "relates_to_product_reference": "8Base-RHMTC-1.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhmtc/openshift-migration-velero-plugin-for-aws-rhel8@sha256:c65d0ecc82eb9ebf2256c599b116e5878e57192caca90a83c1035421be914657_amd64 as a component of 8Base-RHMTC-1.7", + "product_id": "8Base-RHMTC-1.7:rhmtc/openshift-migration-velero-plugin-for-aws-rhel8@sha256:c65d0ecc82eb9ebf2256c599b116e5878e57192caca90a83c1035421be914657_amd64" + }, + "product_reference": "rhmtc/openshift-migration-velero-plugin-for-aws-rhel8@sha256:c65d0ecc82eb9ebf2256c599b116e5878e57192caca90a83c1035421be914657_amd64", + "relates_to_product_reference": "8Base-RHMTC-1.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhmtc/openshift-migration-velero-plugin-for-gcp-rhel8@sha256:7ab0d93fe306b1baa0ae64a9c859776109f2cb27a0e468dc1d361e72a99d21b9_amd64 as a component of 8Base-RHMTC-1.7", + "product_id": "8Base-RHMTC-1.7:rhmtc/openshift-migration-velero-plugin-for-gcp-rhel8@sha256:7ab0d93fe306b1baa0ae64a9c859776109f2cb27a0e468dc1d361e72a99d21b9_amd64" + }, + "product_reference": "rhmtc/openshift-migration-velero-plugin-for-gcp-rhel8@sha256:7ab0d93fe306b1baa0ae64a9c859776109f2cb27a0e468dc1d361e72a99d21b9_amd64", + "relates_to_product_reference": "8Base-RHMTC-1.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhmtc/openshift-migration-velero-plugin-for-microsoft-azure-rhel8@sha256:c89b222e9e9ae02a505fb6986ef1b6ca4b0e15706e3d44d2f03176af7f0d9b6a_amd64 as a component of 8Base-RHMTC-1.7", + "product_id": "8Base-RHMTC-1.7:rhmtc/openshift-migration-velero-plugin-for-microsoft-azure-rhel8@sha256:c89b222e9e9ae02a505fb6986ef1b6ca4b0e15706e3d44d2f03176af7f0d9b6a_amd64" + }, + "product_reference": "rhmtc/openshift-migration-velero-plugin-for-microsoft-azure-rhel8@sha256:c89b222e9e9ae02a505fb6986ef1b6ca4b0e15706e3d44d2f03176af7f0d9b6a_amd64", + "relates_to_product_reference": "8Base-RHMTC-1.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhmtc/openshift-migration-velero-restic-restore-helper-rhel8@sha256:06010b3b3c7ad25cf0c122cf49bb7795712eebc47936e3c88db46256e93f0843_amd64 as a component of 8Base-RHMTC-1.7", + "product_id": "8Base-RHMTC-1.7:rhmtc/openshift-migration-velero-restic-restore-helper-rhel8@sha256:06010b3b3c7ad25cf0c122cf49bb7795712eebc47936e3c88db46256e93f0843_amd64" + }, + "product_reference": "rhmtc/openshift-migration-velero-restic-restore-helper-rhel8@sha256:06010b3b3c7ad25cf0c122cf49bb7795712eebc47936e3c88db46256e93f0843_amd64", + "relates_to_product_reference": "8Base-RHMTC-1.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhmtc/openshift-migration-velero-rhel8@sha256:39ac9f6895b2f71cc699c806df204b10af71f18a28de3d3839b7cde6cde13f64_amd64 as a component of 8Base-RHMTC-1.7", + "product_id": "8Base-RHMTC-1.7:rhmtc/openshift-migration-velero-rhel8@sha256:39ac9f6895b2f71cc699c806df204b10af71f18a28de3d3839b7cde6cde13f64_amd64" + }, + "product_reference": "rhmtc/openshift-migration-velero-rhel8@sha256:39ac9f6895b2f71cc699c806df204b10af71f18a28de3d3839b7cde6cde13f64_amd64", + "relates_to_product_reference": "8Base-RHMTC-1.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhmtc/openshift-velero-plugin-rhel8@sha256:4aefc874e9869305ec80f46548c5499b4887e29135efb9ecad01dfd5a54b31fa_amd64 as a component of 8Base-RHMTC-1.7", + "product_id": "8Base-RHMTC-1.7:rhmtc/openshift-velero-plugin-rhel8@sha256:4aefc874e9869305ec80f46548c5499b4887e29135efb9ecad01dfd5a54b31fa_amd64" + }, + "product_reference": "rhmtc/openshift-velero-plugin-rhel8@sha256:4aefc874e9869305ec80f46548c5499b4887e29135efb9ecad01dfd5a54b31fa_amd64", + "relates_to_product_reference": "8Base-RHMTC-1.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/cluster-logging-operator-bundle@sha256:b12bd9714a693251409de3f79cc59c3ea2b744eca288479942541bc091f98522_amd64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/cluster-logging-operator-bundle@sha256:b12bd9714a693251409de3f79cc59c3ea2b744eca288479942541bc091f98522_amd64" + }, + "product_reference": "openshift-logging/cluster-logging-operator-bundle@sha256:b12bd9714a693251409de3f79cc59c3ea2b744eca288479942541bc091f98522_amd64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:09686a47d73e381c80003714147137a3d3b1d9672d507d26c35a486e17f95938_ppc64le as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/cluster-logging-rhel8-operator@sha256:09686a47d73e381c80003714147137a3d3b1d9672d507d26c35a486e17f95938_ppc64le" + }, + "product_reference": "openshift-logging/cluster-logging-rhel8-operator@sha256:09686a47d73e381c80003714147137a3d3b1d9672d507d26c35a486e17f95938_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:51601c319a847410dd67dded9bfc3e177d607f9bbd955e40da14c0a6e18775d9_s390x as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/cluster-logging-rhel8-operator@sha256:51601c319a847410dd67dded9bfc3e177d607f9bbd955e40da14c0a6e18775d9_s390x" + }, + "product_reference": "openshift-logging/cluster-logging-rhel8-operator@sha256:51601c319a847410dd67dded9bfc3e177d607f9bbd955e40da14c0a6e18775d9_s390x", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:54b85cd3a230c34372cc913711bf94b4a60fdbb754006310c5ded66e19bb546c_amd64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/cluster-logging-rhel8-operator@sha256:54b85cd3a230c34372cc913711bf94b4a60fdbb754006310c5ded66e19bb546c_amd64" + }, + "product_reference": "openshift-logging/cluster-logging-rhel8-operator@sha256:54b85cd3a230c34372cc913711bf94b4a60fdbb754006310c5ded66e19bb546c_amd64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:ed66413a6035be14731ce10bde6f91023bde67e0861edf8f536c13e2101bf50a_arm64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/cluster-logging-rhel8-operator@sha256:ed66413a6035be14731ce10bde6f91023bde67e0861edf8f536c13e2101bf50a_arm64" + }, + "product_reference": "openshift-logging/cluster-logging-rhel8-operator@sha256:ed66413a6035be14731ce10bde6f91023bde67e0861edf8f536c13e2101bf50a_arm64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-operator-bundle@sha256:2a3bae732280547fc5434a6d9910fe8f4f3e9060d6454f61726bbe2efe6facaf_amd64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/elasticsearch-operator-bundle@sha256:2a3bae732280547fc5434a6d9910fe8f4f3e9060d6454f61726bbe2efe6facaf_amd64" + }, + "product_reference": "openshift-logging/elasticsearch-operator-bundle@sha256:2a3bae732280547fc5434a6d9910fe8f4f3e9060d6454f61726bbe2efe6facaf_amd64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:0c24a8b9b1d6fd2c0f831fdefbbee14d9991f561ea8196e8435d4c2b1b98c9b5_s390x as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/elasticsearch-proxy-rhel8@sha256:0c24a8b9b1d6fd2c0f831fdefbbee14d9991f561ea8196e8435d4c2b1b98c9b5_s390x" + }, + "product_reference": "openshift-logging/elasticsearch-proxy-rhel8@sha256:0c24a8b9b1d6fd2c0f831fdefbbee14d9991f561ea8196e8435d4c2b1b98c9b5_s390x", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:122662e15f63bb7da2392343adcdac3834c9b47f510ada210ecaefd5336673b4_ppc64le as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/elasticsearch-proxy-rhel8@sha256:122662e15f63bb7da2392343adcdac3834c9b47f510ada210ecaefd5336673b4_ppc64le" + }, + "product_reference": "openshift-logging/elasticsearch-proxy-rhel8@sha256:122662e15f63bb7da2392343adcdac3834c9b47f510ada210ecaefd5336673b4_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:61ad583d20b53b400460bd45368a2b91cccb3213a415d79a9ee879ac4447f594_amd64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/elasticsearch-proxy-rhel8@sha256:61ad583d20b53b400460bd45368a2b91cccb3213a415d79a9ee879ac4447f594_amd64" + }, + "product_reference": "openshift-logging/elasticsearch-proxy-rhel8@sha256:61ad583d20b53b400460bd45368a2b91cccb3213a415d79a9ee879ac4447f594_amd64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:97af66b3e1fb61379c42d1e9f456f1e831595dd22f62dc70be2da10c8ea9d780_arm64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/elasticsearch-proxy-rhel8@sha256:97af66b3e1fb61379c42d1e9f456f1e831595dd22f62dc70be2da10c8ea9d780_arm64" + }, + "product_reference": "openshift-logging/elasticsearch-proxy-rhel8@sha256:97af66b3e1fb61379c42d1e9f456f1e831595dd22f62dc70be2da10c8ea9d780_arm64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:07f46c6182126014df275c8cf64a2864ae1d887e58228c2c48da5809315e15fc_ppc64le as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/elasticsearch-rhel8-operator@sha256:07f46c6182126014df275c8cf64a2864ae1d887e58228c2c48da5809315e15fc_ppc64le" + }, + "product_reference": "openshift-logging/elasticsearch-rhel8-operator@sha256:07f46c6182126014df275c8cf64a2864ae1d887e58228c2c48da5809315e15fc_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:230a6d4dd1e8c7a0fcd485d450ec7ec7d1a29f3ad963f3e4d11cd92b9e1958a2_amd64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/elasticsearch-rhel8-operator@sha256:230a6d4dd1e8c7a0fcd485d450ec7ec7d1a29f3ad963f3e4d11cd92b9e1958a2_amd64" + }, + "product_reference": "openshift-logging/elasticsearch-rhel8-operator@sha256:230a6d4dd1e8c7a0fcd485d450ec7ec7d1a29f3ad963f3e4d11cd92b9e1958a2_amd64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:5ebb73023691a43b9bfc53543d87fc143ec11bbb25d5035bd5cb29e9526203b1_arm64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/elasticsearch-rhel8-operator@sha256:5ebb73023691a43b9bfc53543d87fc143ec11bbb25d5035bd5cb29e9526203b1_arm64" + }, + "product_reference": "openshift-logging/elasticsearch-rhel8-operator@sha256:5ebb73023691a43b9bfc53543d87fc143ec11bbb25d5035bd5cb29e9526203b1_arm64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:ceb0851250bd48ca908f038ae6a9df08530cc876054f3e8447c3b988b18da2a2_s390x as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/elasticsearch-rhel8-operator@sha256:ceb0851250bd48ca908f038ae6a9df08530cc876054f3e8447c3b988b18da2a2_s390x" + }, + "product_reference": "openshift-logging/elasticsearch-rhel8-operator@sha256:ceb0851250bd48ca908f038ae6a9df08530cc876054f3e8447c3b988b18da2a2_s390x", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch6-rhel8@sha256:1a6f54ae9b91e47bfcea27190ef7298f34c9d790964e0ee5e02d9807ce990a93_amd64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/elasticsearch6-rhel8@sha256:1a6f54ae9b91e47bfcea27190ef7298f34c9d790964e0ee5e02d9807ce990a93_amd64" + }, + "product_reference": "openshift-logging/elasticsearch6-rhel8@sha256:1a6f54ae9b91e47bfcea27190ef7298f34c9d790964e0ee5e02d9807ce990a93_amd64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch6-rhel8@sha256:459cf54a779336cfe71b1b4a790215ff8764b18a77b7d7cc3a89defb20748bf5_s390x as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/elasticsearch6-rhel8@sha256:459cf54a779336cfe71b1b4a790215ff8764b18a77b7d7cc3a89defb20748bf5_s390x" + }, + "product_reference": "openshift-logging/elasticsearch6-rhel8@sha256:459cf54a779336cfe71b1b4a790215ff8764b18a77b7d7cc3a89defb20748bf5_s390x", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch6-rhel8@sha256:8d0f3aa1db3f32885b1fa19a098b8aa225068df07e02a284639b732959febd84_arm64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/elasticsearch6-rhel8@sha256:8d0f3aa1db3f32885b1fa19a098b8aa225068df07e02a284639b732959febd84_arm64" + }, + "product_reference": "openshift-logging/elasticsearch6-rhel8@sha256:8d0f3aa1db3f32885b1fa19a098b8aa225068df07e02a284639b732959febd84_arm64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch6-rhel8@sha256:e945d7c6263362ab92f60e0a328ef7e59bf89e996d3b4fdf7fb394c388c0d762_ppc64le as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/elasticsearch6-rhel8@sha256:e945d7c6263362ab92f60e0a328ef7e59bf89e996d3b4fdf7fb394c388c0d762_ppc64le" + }, + "product_reference": "openshift-logging/elasticsearch6-rhel8@sha256:e945d7c6263362ab92f60e0a328ef7e59bf89e996d3b4fdf7fb394c388c0d762_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/eventrouter-rhel8@sha256:1820ac83c516361553a0c9f9c0dc93ea2ebc1cdbb89fb980ca0d356892e8d034_s390x as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/eventrouter-rhel8@sha256:1820ac83c516361553a0c9f9c0dc93ea2ebc1cdbb89fb980ca0d356892e8d034_s390x" + }, + "product_reference": "openshift-logging/eventrouter-rhel8@sha256:1820ac83c516361553a0c9f9c0dc93ea2ebc1cdbb89fb980ca0d356892e8d034_s390x", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/eventrouter-rhel8@sha256:3b0cc80d9dcc51d33cbf40edf9ee590495621957472a8b5811a0106896ca088b_amd64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/eventrouter-rhel8@sha256:3b0cc80d9dcc51d33cbf40edf9ee590495621957472a8b5811a0106896ca088b_amd64" + }, + "product_reference": "openshift-logging/eventrouter-rhel8@sha256:3b0cc80d9dcc51d33cbf40edf9ee590495621957472a8b5811a0106896ca088b_amd64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/eventrouter-rhel8@sha256:7f785fc49c70917f744c2b36ba80d4cf8171823c5da9071da081955cae410859_arm64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/eventrouter-rhel8@sha256:7f785fc49c70917f744c2b36ba80d4cf8171823c5da9071da081955cae410859_arm64" + }, + "product_reference": "openshift-logging/eventrouter-rhel8@sha256:7f785fc49c70917f744c2b36ba80d4cf8171823c5da9071da081955cae410859_arm64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/eventrouter-rhel8@sha256:d79bfb1655216dda89266b4f818941cebb0bba6d59edc299e43be0644aacd838_ppc64le as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/eventrouter-rhel8@sha256:d79bfb1655216dda89266b4f818941cebb0bba6d59edc299e43be0644aacd838_ppc64le" + }, + "product_reference": "openshift-logging/eventrouter-rhel8@sha256:d79bfb1655216dda89266b4f818941cebb0bba6d59edc299e43be0644aacd838_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/fluentd-rhel8@sha256:330405c116c6cc49d9e14ed373bc73f9759017ccc9d5cc984ad9241023778e2f_amd64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/fluentd-rhel8@sha256:330405c116c6cc49d9e14ed373bc73f9759017ccc9d5cc984ad9241023778e2f_amd64" + }, + "product_reference": "openshift-logging/fluentd-rhel8@sha256:330405c116c6cc49d9e14ed373bc73f9759017ccc9d5cc984ad9241023778e2f_amd64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/fluentd-rhel8@sha256:603effd18fc472200c23e6e8f49c2f9bc3e33a0ac9d951f28f52f5667a18850d_ppc64le as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/fluentd-rhel8@sha256:603effd18fc472200c23e6e8f49c2f9bc3e33a0ac9d951f28f52f5667a18850d_ppc64le" + }, + "product_reference": "openshift-logging/fluentd-rhel8@sha256:603effd18fc472200c23e6e8f49c2f9bc3e33a0ac9d951f28f52f5667a18850d_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/fluentd-rhel8@sha256:bb9d2ce71e2a9cdc09f7eacd5010d23412b68acedb5b828bd9b2a7e07c836137_arm64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/fluentd-rhel8@sha256:bb9d2ce71e2a9cdc09f7eacd5010d23412b68acedb5b828bd9b2a7e07c836137_arm64" + }, + "product_reference": "openshift-logging/fluentd-rhel8@sha256:bb9d2ce71e2a9cdc09f7eacd5010d23412b68acedb5b828bd9b2a7e07c836137_arm64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/fluentd-rhel8@sha256:c0c053caabd85aea33f8b69bda2739a9288ed8b48554932c431bd6f5615a510b_s390x as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/fluentd-rhel8@sha256:c0c053caabd85aea33f8b69bda2739a9288ed8b48554932c431bd6f5615a510b_s390x" + }, + "product_reference": "openshift-logging/fluentd-rhel8@sha256:c0c053caabd85aea33f8b69bda2739a9288ed8b48554932c431bd6f5615a510b_s390x", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/kibana6-rhel8@sha256:042d7881b2e5d5544a97ac95f39adfefbca08dab6621f7439b59d640ff1d4b13_s390x as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/kibana6-rhel8@sha256:042d7881b2e5d5544a97ac95f39adfefbca08dab6621f7439b59d640ff1d4b13_s390x" + }, + "product_reference": "openshift-logging/kibana6-rhel8@sha256:042d7881b2e5d5544a97ac95f39adfefbca08dab6621f7439b59d640ff1d4b13_s390x", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/kibana6-rhel8@sha256:7f3a73273dd82f675f1abf2e1a767f7f59392571ad82ff84e6740397800b0feb_amd64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/kibana6-rhel8@sha256:7f3a73273dd82f675f1abf2e1a767f7f59392571ad82ff84e6740397800b0feb_amd64" + }, + "product_reference": "openshift-logging/kibana6-rhel8@sha256:7f3a73273dd82f675f1abf2e1a767f7f59392571ad82ff84e6740397800b0feb_amd64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/kibana6-rhel8@sha256:87a32dd0769e887e2c11766e7564d4d161f180019d28dd78d99fe48e18c53ac5_ppc64le as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/kibana6-rhel8@sha256:87a32dd0769e887e2c11766e7564d4d161f180019d28dd78d99fe48e18c53ac5_ppc64le" + }, + "product_reference": "openshift-logging/kibana6-rhel8@sha256:87a32dd0769e887e2c11766e7564d4d161f180019d28dd78d99fe48e18c53ac5_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/kibana6-rhel8@sha256:99f9d95df943139be1b55c242c7ecc68c8b59aa6003cb91a1b94c73d9b7d8a6c_arm64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/kibana6-rhel8@sha256:99f9d95df943139be1b55c242c7ecc68c8b59aa6003cb91a1b94c73d9b7d8a6c_arm64" + }, + "product_reference": "openshift-logging/kibana6-rhel8@sha256:99f9d95df943139be1b55c242c7ecc68c8b59aa6003cb91a1b94c73d9b7d8a6c_arm64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:0dbe15a2497d60ed8c108be2afe0f7ad750ee7502c1180273767f0e5449943c6_s390x as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/log-file-metric-exporter-rhel8@sha256:0dbe15a2497d60ed8c108be2afe0f7ad750ee7502c1180273767f0e5449943c6_s390x" + }, + "product_reference": "openshift-logging/log-file-metric-exporter-rhel8@sha256:0dbe15a2497d60ed8c108be2afe0f7ad750ee7502c1180273767f0e5449943c6_s390x", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:1c82a3938cf38efafa4b02199b77ab4f452cb67c8c4d7233a5284a4d5fca2d72_amd64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/log-file-metric-exporter-rhel8@sha256:1c82a3938cf38efafa4b02199b77ab4f452cb67c8c4d7233a5284a4d5fca2d72_amd64" + }, + "product_reference": "openshift-logging/log-file-metric-exporter-rhel8@sha256:1c82a3938cf38efafa4b02199b77ab4f452cb67c8c4d7233a5284a4d5fca2d72_amd64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:8dfa5d26fa43a3baa36e8eac831868c4a26a177b42af704ccde7a2a3c7cbc7ad_ppc64le as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/log-file-metric-exporter-rhel8@sha256:8dfa5d26fa43a3baa36e8eac831868c4a26a177b42af704ccde7a2a3c7cbc7ad_ppc64le" + }, + "product_reference": "openshift-logging/log-file-metric-exporter-rhel8@sha256:8dfa5d26fa43a3baa36e8eac831868c4a26a177b42af704ccde7a2a3c7cbc7ad_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:cc37a55b298253f983fb7b31d9194eac06343ef694ee5979e9f43147ad0218a8_arm64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/log-file-metric-exporter-rhel8@sha256:cc37a55b298253f983fb7b31d9194eac06343ef694ee5979e9f43147ad0218a8_arm64" + }, + "product_reference": "openshift-logging/log-file-metric-exporter-rhel8@sha256:cc37a55b298253f983fb7b31d9194eac06343ef694ee5979e9f43147ad0218a8_arm64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-curator5-rhel8@sha256:5b23d637b76de7e4f557a8c3dc46b30021666a0425130586697a4c18cbe0ba10_ppc64le as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/logging-curator5-rhel8@sha256:5b23d637b76de7e4f557a8c3dc46b30021666a0425130586697a4c18cbe0ba10_ppc64le" + }, + "product_reference": "openshift-logging/logging-curator5-rhel8@sha256:5b23d637b76de7e4f557a8c3dc46b30021666a0425130586697a4c18cbe0ba10_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-curator5-rhel8@sha256:635a7982ecaae89e40fd87f01c83f26e0fb32cf402593b49070ee9d033f66000_arm64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/logging-curator5-rhel8@sha256:635a7982ecaae89e40fd87f01c83f26e0fb32cf402593b49070ee9d033f66000_arm64" + }, + "product_reference": "openshift-logging/logging-curator5-rhel8@sha256:635a7982ecaae89e40fd87f01c83f26e0fb32cf402593b49070ee9d033f66000_arm64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-curator5-rhel8@sha256:8dd650aafc9f881edb40dc35c9eb4d36eab365d3230020fa2cbad6bf47d6c833_amd64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/logging-curator5-rhel8@sha256:8dd650aafc9f881edb40dc35c9eb4d36eab365d3230020fa2cbad6bf47d6c833_amd64" + }, + "product_reference": "openshift-logging/logging-curator5-rhel8@sha256:8dd650aafc9f881edb40dc35c9eb4d36eab365d3230020fa2cbad6bf47d6c833_amd64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-curator5-rhel8@sha256:dc9a0d0c426d1f25b97f7a2730a9893f904584591022b8b09573bfd7a76f81b5_s390x as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/logging-curator5-rhel8@sha256:dc9a0d0c426d1f25b97f7a2730a9893f904584591022b8b09573bfd7a76f81b5_s390x" + }, + "product_reference": "openshift-logging/logging-curator5-rhel8@sha256:dc9a0d0c426d1f25b97f7a2730a9893f904584591022b8b09573bfd7a76f81b5_s390x", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-loki-rhel8@sha256:3451d2a31a99b7db16f08ec4e0374419185ff54b3a70109bfc9b35e2d7b72e8e_ppc64le as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/logging-loki-rhel8@sha256:3451d2a31a99b7db16f08ec4e0374419185ff54b3a70109bfc9b35e2d7b72e8e_ppc64le" + }, + "product_reference": "openshift-logging/logging-loki-rhel8@sha256:3451d2a31a99b7db16f08ec4e0374419185ff54b3a70109bfc9b35e2d7b72e8e_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-loki-rhel8@sha256:53d89f40f8362c922a5c50cc78b58e9573bd97cb67ec7a8520e161b421c78f3e_amd64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/logging-loki-rhel8@sha256:53d89f40f8362c922a5c50cc78b58e9573bd97cb67ec7a8520e161b421c78f3e_amd64" + }, + "product_reference": "openshift-logging/logging-loki-rhel8@sha256:53d89f40f8362c922a5c50cc78b58e9573bd97cb67ec7a8520e161b421c78f3e_amd64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-loki-rhel8@sha256:916880dff7f86c00e7fe2a1a3dbbc7c586551962228300e384304c8822cf1854_s390x as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/logging-loki-rhel8@sha256:916880dff7f86c00e7fe2a1a3dbbc7c586551962228300e384304c8822cf1854_s390x" + }, + "product_reference": "openshift-logging/logging-loki-rhel8@sha256:916880dff7f86c00e7fe2a1a3dbbc7c586551962228300e384304c8822cf1854_s390x", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-loki-rhel8@sha256:f7b33ceb2433364c87f6f035a38c467e54814c3973873bd3d6dfdf9b99d2d278_arm64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/logging-loki-rhel8@sha256:f7b33ceb2433364c87f6f035a38c467e54814c3973873bd3d6dfdf9b99d2d278_arm64" + }, + "product_reference": "openshift-logging/logging-loki-rhel8@sha256:f7b33ceb2433364c87f6f035a38c467e54814c3973873bd3d6dfdf9b99d2d278_arm64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:0647ae6a93087832d1529a9d56b2157a798efafc4645b8bcf1b49f1d43634978_amd64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/logging-view-plugin-rhel8@sha256:0647ae6a93087832d1529a9d56b2157a798efafc4645b8bcf1b49f1d43634978_amd64" + }, + "product_reference": "openshift-logging/logging-view-plugin-rhel8@sha256:0647ae6a93087832d1529a9d56b2157a798efafc4645b8bcf1b49f1d43634978_amd64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:257c8f58c651c6b6138fe4f4b3bb26f8f4368802691f5c52c0d110a95689caf2_ppc64le as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/logging-view-plugin-rhel8@sha256:257c8f58c651c6b6138fe4f4b3bb26f8f4368802691f5c52c0d110a95689caf2_ppc64le" + }, + "product_reference": "openshift-logging/logging-view-plugin-rhel8@sha256:257c8f58c651c6b6138fe4f4b3bb26f8f4368802691f5c52c0d110a95689caf2_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:b244e373e4b53141efddc052e27950a43ee79b200b856998d0c50110d2028afb_arm64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/logging-view-plugin-rhel8@sha256:b244e373e4b53141efddc052e27950a43ee79b200b856998d0c50110d2028afb_arm64" + }, + "product_reference": "openshift-logging/logging-view-plugin-rhel8@sha256:b244e373e4b53141efddc052e27950a43ee79b200b856998d0c50110d2028afb_arm64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:b50949035ee0c210959337c979d39fc20b9ab91cde51795347c56ba39ee5aa38_s390x as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/logging-view-plugin-rhel8@sha256:b50949035ee0c210959337c979d39fc20b9ab91cde51795347c56ba39ee5aa38_s390x" + }, + "product_reference": "openshift-logging/logging-view-plugin-rhel8@sha256:b50949035ee0c210959337c979d39fc20b9ab91cde51795347c56ba39ee5aa38_s390x", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/loki-operator-bundle@sha256:262aa1c348041e886c7941f77ab26aa42ab8cdeb1bbc8693deef80bfe96ff6ee_amd64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/loki-operator-bundle@sha256:262aa1c348041e886c7941f77ab26aa42ab8cdeb1bbc8693deef80bfe96ff6ee_amd64" + }, + "product_reference": "openshift-logging/loki-operator-bundle@sha256:262aa1c348041e886c7941f77ab26aa42ab8cdeb1bbc8693deef80bfe96ff6ee_amd64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/loki-rhel8-operator@sha256:7094ff337849ac3dec85bd4b0a19c45e8f8e7fb1c15062ca95e26f109496175a_ppc64le as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/loki-rhel8-operator@sha256:7094ff337849ac3dec85bd4b0a19c45e8f8e7fb1c15062ca95e26f109496175a_ppc64le" + }, + "product_reference": "openshift-logging/loki-rhel8-operator@sha256:7094ff337849ac3dec85bd4b0a19c45e8f8e7fb1c15062ca95e26f109496175a_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/loki-rhel8-operator@sha256:c739a1321e838d0efd97fd30e8ae031dcbc27f590cdc04c82e9d5eded2f140cd_amd64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/loki-rhel8-operator@sha256:c739a1321e838d0efd97fd30e8ae031dcbc27f590cdc04c82e9d5eded2f140cd_amd64" + }, + "product_reference": "openshift-logging/loki-rhel8-operator@sha256:c739a1321e838d0efd97fd30e8ae031dcbc27f590cdc04c82e9d5eded2f140cd_amd64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/loki-rhel8-operator@sha256:cc3200d2493d1ae32e07e273599708dd0d3be7ff4c82889feb33ed9c5da48de2_s390x as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/loki-rhel8-operator@sha256:cc3200d2493d1ae32e07e273599708dd0d3be7ff4c82889feb33ed9c5da48de2_s390x" + }, + "product_reference": "openshift-logging/loki-rhel8-operator@sha256:cc3200d2493d1ae32e07e273599708dd0d3be7ff4c82889feb33ed9c5da48de2_s390x", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/loki-rhel8-operator@sha256:e89ce451ee5d47db366f488578cff0c67a0a7db099eeb08f0f53b0ab2926279e_arm64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/loki-rhel8-operator@sha256:e89ce451ee5d47db366f488578cff0c67a0a7db099eeb08f0f53b0ab2926279e_arm64" + }, + "product_reference": "openshift-logging/loki-rhel8-operator@sha256:e89ce451ee5d47db366f488578cff0c67a0a7db099eeb08f0f53b0ab2926279e_arm64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:5e04611e624265dff9b18764ce33c37c53e8f1f5939c44d42b53307f8b22a96f_ppc64le as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/lokistack-gateway-rhel8@sha256:5e04611e624265dff9b18764ce33c37c53e8f1f5939c44d42b53307f8b22a96f_ppc64le" + }, + "product_reference": "openshift-logging/lokistack-gateway-rhel8@sha256:5e04611e624265dff9b18764ce33c37c53e8f1f5939c44d42b53307f8b22a96f_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:828524aeb6ef453ea8b8e8e1d978909a37db746c5def2577b6538bfac324c33d_s390x as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/lokistack-gateway-rhel8@sha256:828524aeb6ef453ea8b8e8e1d978909a37db746c5def2577b6538bfac324c33d_s390x" + }, + "product_reference": "openshift-logging/lokistack-gateway-rhel8@sha256:828524aeb6ef453ea8b8e8e1d978909a37db746c5def2577b6538bfac324c33d_s390x", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:ba3273020224e23fb530ed8eb2c6a408733e55d613aa6cf95b1609eb9aa5ff70_amd64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/lokistack-gateway-rhel8@sha256:ba3273020224e23fb530ed8eb2c6a408733e55d613aa6cf95b1609eb9aa5ff70_amd64" + }, + "product_reference": "openshift-logging/lokistack-gateway-rhel8@sha256:ba3273020224e23fb530ed8eb2c6a408733e55d613aa6cf95b1609eb9aa5ff70_amd64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:c0c815822696f7944662720a07e238d23c86f2d788aef93857bd04952a341d8d_arm64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/lokistack-gateway-rhel8@sha256:c0c815822696f7944662720a07e238d23c86f2d788aef93857bd04952a341d8d_arm64" + }, + "product_reference": "openshift-logging/lokistack-gateway-rhel8@sha256:c0c815822696f7944662720a07e238d23c86f2d788aef93857bd04952a341d8d_arm64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/opa-openshift-rhel8@sha256:196af50627ca6537d5511ebc89f0b7b4c57d1b67af921e84269bc71355b53c70_arm64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/opa-openshift-rhel8@sha256:196af50627ca6537d5511ebc89f0b7b4c57d1b67af921e84269bc71355b53c70_arm64" + }, + "product_reference": "openshift-logging/opa-openshift-rhel8@sha256:196af50627ca6537d5511ebc89f0b7b4c57d1b67af921e84269bc71355b53c70_arm64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/opa-openshift-rhel8@sha256:38a14d740af20e39609eef1326bfe919c7629b5c3cad91efac927c565986f15e_s390x as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/opa-openshift-rhel8@sha256:38a14d740af20e39609eef1326bfe919c7629b5c3cad91efac927c565986f15e_s390x" + }, + "product_reference": "openshift-logging/opa-openshift-rhel8@sha256:38a14d740af20e39609eef1326bfe919c7629b5c3cad91efac927c565986f15e_s390x", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/opa-openshift-rhel8@sha256:8d105423bee2a9063eed652b478938ac670a1e1389d28d8f98b8e3369ff486b8_ppc64le as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/opa-openshift-rhel8@sha256:8d105423bee2a9063eed652b478938ac670a1e1389d28d8f98b8e3369ff486b8_ppc64le" + }, + "product_reference": "openshift-logging/opa-openshift-rhel8@sha256:8d105423bee2a9063eed652b478938ac670a1e1389d28d8f98b8e3369ff486b8_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/opa-openshift-rhel8@sha256:b946086fd5bef8290629418b663b318908ceb9f171fa96f6626320923623c9a8_amd64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/opa-openshift-rhel8@sha256:b946086fd5bef8290629418b663b318908ceb9f171fa96f6626320923623c9a8_amd64" + }, + "product_reference": "openshift-logging/opa-openshift-rhel8@sha256:b946086fd5bef8290629418b663b318908ceb9f171fa96f6626320923623c9a8_amd64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/vector-rhel8@sha256:3f9a2886a6eb29d26d010cc015e1937fef6366a315e45d7122869bf772fbaa2b_s390x as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/vector-rhel8@sha256:3f9a2886a6eb29d26d010cc015e1937fef6366a315e45d7122869bf772fbaa2b_s390x" + }, + "product_reference": "openshift-logging/vector-rhel8@sha256:3f9a2886a6eb29d26d010cc015e1937fef6366a315e45d7122869bf772fbaa2b_s390x", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/vector-rhel8@sha256:655a7b7de697bfb09f393bd676f49ca0fc7abe790efa6fe0db270498b1474e4a_ppc64le as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/vector-rhel8@sha256:655a7b7de697bfb09f393bd676f49ca0fc7abe790efa6fe0db270498b1474e4a_ppc64le" + }, + "product_reference": "openshift-logging/vector-rhel8@sha256:655a7b7de697bfb09f393bd676f49ca0fc7abe790efa6fe0db270498b1474e4a_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/vector-rhel8@sha256:92b2a15e7f6365b4b7d4b5cb404e4829fa9629f8bfdedc7749bdf3d7369fc4be_arm64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/vector-rhel8@sha256:92b2a15e7f6365b4b7d4b5cb404e4829fa9629f8bfdedc7749bdf3d7369fc4be_arm64" + }, + "product_reference": "openshift-logging/vector-rhel8@sha256:92b2a15e7f6365b4b7d4b5cb404e4829fa9629f8bfdedc7749bdf3d7369fc4be_arm64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/vector-rhel8@sha256:ce46f671b48687a3b2b54583595eff8654ee219b6606230c497dc78c4ef6e9a0_amd64 as a component of RHOL 5.5 for RHEL 8", + "product_id": "8Base-RHOL-5.5:openshift-logging/vector-rhel8@sha256:ce46f671b48687a3b2b54583595eff8654ee219b6606230c497dc78c4ef6e9a0_amd64" + }, + "product_reference": "openshift-logging/vector-rhel8@sha256:ce46f671b48687a3b2b54583595eff8654ee219b6606230c497dc78c4ef6e9a0_amd64", + "relates_to_product_reference": "8Base-RHOL-5.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/cluster-logging-operator-bundle@sha256:02c4a20e1f2b0678afe4ea0757933ce581ef66e6b189622aea7dc0fa91e6c18c_amd64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/cluster-logging-operator-bundle@sha256:02c4a20e1f2b0678afe4ea0757933ce581ef66e6b189622aea7dc0fa91e6c18c_amd64" + }, + "product_reference": "openshift-logging/cluster-logging-operator-bundle@sha256:02c4a20e1f2b0678afe4ea0757933ce581ef66e6b189622aea7dc0fa91e6c18c_amd64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:556e2c39c0eebd2e8a4d361d40221fa8cf0e9bf7db66dcf2bd2f32576240d94b_amd64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/cluster-logging-rhel8-operator@sha256:556e2c39c0eebd2e8a4d361d40221fa8cf0e9bf7db66dcf2bd2f32576240d94b_amd64" + }, + "product_reference": "openshift-logging/cluster-logging-rhel8-operator@sha256:556e2c39c0eebd2e8a4d361d40221fa8cf0e9bf7db66dcf2bd2f32576240d94b_amd64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:64d3a93c2adbca869845ea59edfbef2675658bd15fd22dfc1681b57809d3269c_arm64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/cluster-logging-rhel8-operator@sha256:64d3a93c2adbca869845ea59edfbef2675658bd15fd22dfc1681b57809d3269c_arm64" + }, + "product_reference": "openshift-logging/cluster-logging-rhel8-operator@sha256:64d3a93c2adbca869845ea59edfbef2675658bd15fd22dfc1681b57809d3269c_arm64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:a697fe3d581606f0da267205636c94e0dd7076fdf562fe9d4f0332ec0267f880_s390x as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/cluster-logging-rhel8-operator@sha256:a697fe3d581606f0da267205636c94e0dd7076fdf562fe9d4f0332ec0267f880_s390x" + }, + "product_reference": "openshift-logging/cluster-logging-rhel8-operator@sha256:a697fe3d581606f0da267205636c94e0dd7076fdf562fe9d4f0332ec0267f880_s390x", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:f8553bf9f5a75c089cdf5a26f8853e6f4488c19ef2a8dc1e0ebc96e4aab0384f_ppc64le as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/cluster-logging-rhel8-operator@sha256:f8553bf9f5a75c089cdf5a26f8853e6f4488c19ef2a8dc1e0ebc96e4aab0384f_ppc64le" + }, + "product_reference": "openshift-logging/cluster-logging-rhel8-operator@sha256:f8553bf9f5a75c089cdf5a26f8853e6f4488c19ef2a8dc1e0ebc96e4aab0384f_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-operator-bundle@sha256:369d45c783651c6e07dfd721fa43025800b263da8e1fdbbc75b296686426e840_amd64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/elasticsearch-operator-bundle@sha256:369d45c783651c6e07dfd721fa43025800b263da8e1fdbbc75b296686426e840_amd64" + }, + "product_reference": "openshift-logging/elasticsearch-operator-bundle@sha256:369d45c783651c6e07dfd721fa43025800b263da8e1fdbbc75b296686426e840_amd64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:26f58db9cb18dfe0eb7a3478a7bb86c87efabe32d98dcf74bc34226a09ea6f0e_ppc64le as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/elasticsearch-proxy-rhel8@sha256:26f58db9cb18dfe0eb7a3478a7bb86c87efabe32d98dcf74bc34226a09ea6f0e_ppc64le" + }, + "product_reference": "openshift-logging/elasticsearch-proxy-rhel8@sha256:26f58db9cb18dfe0eb7a3478a7bb86c87efabe32d98dcf74bc34226a09ea6f0e_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:938ac92e58ab4fd377219899c6f3c25f41a58260f078e44b371d91964083d96a_s390x as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/elasticsearch-proxy-rhel8@sha256:938ac92e58ab4fd377219899c6f3c25f41a58260f078e44b371d91964083d96a_s390x" + }, + "product_reference": "openshift-logging/elasticsearch-proxy-rhel8@sha256:938ac92e58ab4fd377219899c6f3c25f41a58260f078e44b371d91964083d96a_s390x", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:c67b4fadb575fc60d60cc3307da75f2fa3e5c4760e572072308a506e4e271ab1_amd64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/elasticsearch-proxy-rhel8@sha256:c67b4fadb575fc60d60cc3307da75f2fa3e5c4760e572072308a506e4e271ab1_amd64" + }, + "product_reference": "openshift-logging/elasticsearch-proxy-rhel8@sha256:c67b4fadb575fc60d60cc3307da75f2fa3e5c4760e572072308a506e4e271ab1_amd64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:ce5fc5a37453626de4bcb9a05d3849ef7da0722bfc8f0fecfc1f693cf6b5deff_arm64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/elasticsearch-proxy-rhel8@sha256:ce5fc5a37453626de4bcb9a05d3849ef7da0722bfc8f0fecfc1f693cf6b5deff_arm64" + }, + "product_reference": "openshift-logging/elasticsearch-proxy-rhel8@sha256:ce5fc5a37453626de4bcb9a05d3849ef7da0722bfc8f0fecfc1f693cf6b5deff_arm64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:2a87c3b6888c57d813169da3ae06aa5bcac1ac916cdc62da3c492928d8eab187_amd64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/elasticsearch-rhel8-operator@sha256:2a87c3b6888c57d813169da3ae06aa5bcac1ac916cdc62da3c492928d8eab187_amd64" + }, + "product_reference": "openshift-logging/elasticsearch-rhel8-operator@sha256:2a87c3b6888c57d813169da3ae06aa5bcac1ac916cdc62da3c492928d8eab187_amd64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:34a393916466f1d4544cbe4d75936147c4bfc4e0246bee0faebc5c285f26d30d_arm64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/elasticsearch-rhel8-operator@sha256:34a393916466f1d4544cbe4d75936147c4bfc4e0246bee0faebc5c285f26d30d_arm64" + }, + "product_reference": "openshift-logging/elasticsearch-rhel8-operator@sha256:34a393916466f1d4544cbe4d75936147c4bfc4e0246bee0faebc5c285f26d30d_arm64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:358c663dbc3c6b0ee31a4b2665c79ff7b826ba6b72c21db62d186a6da09b04c4_ppc64le as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/elasticsearch-rhel8-operator@sha256:358c663dbc3c6b0ee31a4b2665c79ff7b826ba6b72c21db62d186a6da09b04c4_ppc64le" + }, + "product_reference": "openshift-logging/elasticsearch-rhel8-operator@sha256:358c663dbc3c6b0ee31a4b2665c79ff7b826ba6b72c21db62d186a6da09b04c4_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:7a9678d49d25ec0afbcab3c98a3d26d2eeda04a0ece3a833d91dde818f0dde22_s390x as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/elasticsearch-rhel8-operator@sha256:7a9678d49d25ec0afbcab3c98a3d26d2eeda04a0ece3a833d91dde818f0dde22_s390x" + }, + "product_reference": "openshift-logging/elasticsearch-rhel8-operator@sha256:7a9678d49d25ec0afbcab3c98a3d26d2eeda04a0ece3a833d91dde818f0dde22_s390x", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch6-rhel8@sha256:8e62859531fcb8dd6b054a76c4bc95b62ff62bcbe69fe18f132689a203168bc8_s390x as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/elasticsearch6-rhel8@sha256:8e62859531fcb8dd6b054a76c4bc95b62ff62bcbe69fe18f132689a203168bc8_s390x" + }, + "product_reference": "openshift-logging/elasticsearch6-rhel8@sha256:8e62859531fcb8dd6b054a76c4bc95b62ff62bcbe69fe18f132689a203168bc8_s390x", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch6-rhel8@sha256:92ab2dde35f2f59c3a8ce7b8b12f5703a7a214e83ca5cc13673d0c8ad373f02e_amd64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/elasticsearch6-rhel8@sha256:92ab2dde35f2f59c3a8ce7b8b12f5703a7a214e83ca5cc13673d0c8ad373f02e_amd64" + }, + "product_reference": "openshift-logging/elasticsearch6-rhel8@sha256:92ab2dde35f2f59c3a8ce7b8b12f5703a7a214e83ca5cc13673d0c8ad373f02e_amd64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch6-rhel8@sha256:caeeb679701abcbb9612b77ef0975575cf31c96b74bfc06553d61140a3f52bb7_ppc64le as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/elasticsearch6-rhel8@sha256:caeeb679701abcbb9612b77ef0975575cf31c96b74bfc06553d61140a3f52bb7_ppc64le" + }, + "product_reference": "openshift-logging/elasticsearch6-rhel8@sha256:caeeb679701abcbb9612b77ef0975575cf31c96b74bfc06553d61140a3f52bb7_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch6-rhel8@sha256:cd9a57aad90fdec4fef3b0f9b31df96c12bd7fe97cad90f9a1de79e6b0af4bbb_arm64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/elasticsearch6-rhel8@sha256:cd9a57aad90fdec4fef3b0f9b31df96c12bd7fe97cad90f9a1de79e6b0af4bbb_arm64" + }, + "product_reference": "openshift-logging/elasticsearch6-rhel8@sha256:cd9a57aad90fdec4fef3b0f9b31df96c12bd7fe97cad90f9a1de79e6b0af4bbb_arm64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/eventrouter-rhel8@sha256:b822207e2e70c989cf98d9e5a810e85034a8a1fd2130451e525ce4a804dd1727_s390x as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/eventrouter-rhel8@sha256:b822207e2e70c989cf98d9e5a810e85034a8a1fd2130451e525ce4a804dd1727_s390x" + }, + "product_reference": "openshift-logging/eventrouter-rhel8@sha256:b822207e2e70c989cf98d9e5a810e85034a8a1fd2130451e525ce4a804dd1727_s390x", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/eventrouter-rhel8@sha256:ec56cae824197805c3287f57854343d2d26caa0b192a009c966d28c32f0d0d92_ppc64le as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/eventrouter-rhel8@sha256:ec56cae824197805c3287f57854343d2d26caa0b192a009c966d28c32f0d0d92_ppc64le" + }, + "product_reference": "openshift-logging/eventrouter-rhel8@sha256:ec56cae824197805c3287f57854343d2d26caa0b192a009c966d28c32f0d0d92_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/eventrouter-rhel8@sha256:fc638d1f8ff0f079ea1f5cfa3a9938dc06374ca4e6cd24f92ba62b7d03fd6963_arm64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/eventrouter-rhel8@sha256:fc638d1f8ff0f079ea1f5cfa3a9938dc06374ca4e6cd24f92ba62b7d03fd6963_arm64" + }, + "product_reference": "openshift-logging/eventrouter-rhel8@sha256:fc638d1f8ff0f079ea1f5cfa3a9938dc06374ca4e6cd24f92ba62b7d03fd6963_arm64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/eventrouter-rhel8@sha256:ff509532db6b7e2d3a44fac2cf9b63687aa8bfbaab46d7a5f9d58be192475818_amd64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/eventrouter-rhel8@sha256:ff509532db6b7e2d3a44fac2cf9b63687aa8bfbaab46d7a5f9d58be192475818_amd64" + }, + "product_reference": "openshift-logging/eventrouter-rhel8@sha256:ff509532db6b7e2d3a44fac2cf9b63687aa8bfbaab46d7a5f9d58be192475818_amd64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/fluentd-rhel8@sha256:149d75b8f4f523c86122176935c63b96305f6eb308e74eea9fa6651c8e75d239_amd64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/fluentd-rhel8@sha256:149d75b8f4f523c86122176935c63b96305f6eb308e74eea9fa6651c8e75d239_amd64" + }, + "product_reference": "openshift-logging/fluentd-rhel8@sha256:149d75b8f4f523c86122176935c63b96305f6eb308e74eea9fa6651c8e75d239_amd64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/fluentd-rhel8@sha256:3038086e3dbfab1e3070cdeeb7968e863ab4b1012d161ed263e93b153ae2223b_s390x as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/fluentd-rhel8@sha256:3038086e3dbfab1e3070cdeeb7968e863ab4b1012d161ed263e93b153ae2223b_s390x" + }, + "product_reference": "openshift-logging/fluentd-rhel8@sha256:3038086e3dbfab1e3070cdeeb7968e863ab4b1012d161ed263e93b153ae2223b_s390x", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/fluentd-rhel8@sha256:816908f1ac923336e8e3b87129af40271bde545e12b3385186425038f1b14991_arm64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/fluentd-rhel8@sha256:816908f1ac923336e8e3b87129af40271bde545e12b3385186425038f1b14991_arm64" + }, + "product_reference": "openshift-logging/fluentd-rhel8@sha256:816908f1ac923336e8e3b87129af40271bde545e12b3385186425038f1b14991_arm64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/fluentd-rhel8@sha256:e489da61d05557fba2718fd3e75b7ba50c51c173f43088334db7f3c993748711_ppc64le as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/fluentd-rhel8@sha256:e489da61d05557fba2718fd3e75b7ba50c51c173f43088334db7f3c993748711_ppc64le" + }, + "product_reference": "openshift-logging/fluentd-rhel8@sha256:e489da61d05557fba2718fd3e75b7ba50c51c173f43088334db7f3c993748711_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/kibana6-rhel8@sha256:0958ffa84bed51e99177837ac672324e5a8c1b20535d8110a3bbabe3f952073e_ppc64le as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/kibana6-rhel8@sha256:0958ffa84bed51e99177837ac672324e5a8c1b20535d8110a3bbabe3f952073e_ppc64le" + }, + "product_reference": "openshift-logging/kibana6-rhel8@sha256:0958ffa84bed51e99177837ac672324e5a8c1b20535d8110a3bbabe3f952073e_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/kibana6-rhel8@sha256:0c4ea44d09b21a915c3ecc17c9a50ba22d71ed06b0cc4ba1d8bfbe1ced426e47_arm64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/kibana6-rhel8@sha256:0c4ea44d09b21a915c3ecc17c9a50ba22d71ed06b0cc4ba1d8bfbe1ced426e47_arm64" + }, + "product_reference": "openshift-logging/kibana6-rhel8@sha256:0c4ea44d09b21a915c3ecc17c9a50ba22d71ed06b0cc4ba1d8bfbe1ced426e47_arm64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/kibana6-rhel8@sha256:20b6b6aef51ef6cabe133e53dcc1d6665ff8fae0fab4d56ecd6998ca88554773_s390x as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/kibana6-rhel8@sha256:20b6b6aef51ef6cabe133e53dcc1d6665ff8fae0fab4d56ecd6998ca88554773_s390x" + }, + "product_reference": "openshift-logging/kibana6-rhel8@sha256:20b6b6aef51ef6cabe133e53dcc1d6665ff8fae0fab4d56ecd6998ca88554773_s390x", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/kibana6-rhel8@sha256:57b608727de6a22f2c39c138d184b4d2e9a1e62b2206fbcab290aeef2802e520_amd64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/kibana6-rhel8@sha256:57b608727de6a22f2c39c138d184b4d2e9a1e62b2206fbcab290aeef2802e520_amd64" + }, + "product_reference": "openshift-logging/kibana6-rhel8@sha256:57b608727de6a22f2c39c138d184b4d2e9a1e62b2206fbcab290aeef2802e520_amd64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:1646d63e4b9fa7d45f8fc9d1e8cec3cccbed9ba850f3ac07dc75b18f416c580f_s390x as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/log-file-metric-exporter-rhel8@sha256:1646d63e4b9fa7d45f8fc9d1e8cec3cccbed9ba850f3ac07dc75b18f416c580f_s390x" + }, + "product_reference": "openshift-logging/log-file-metric-exporter-rhel8@sha256:1646d63e4b9fa7d45f8fc9d1e8cec3cccbed9ba850f3ac07dc75b18f416c580f_s390x", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:94471501cf396d9d298e9dfee95ed7496e0ec8767eb80bab0ea809cb4e16b878_amd64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/log-file-metric-exporter-rhel8@sha256:94471501cf396d9d298e9dfee95ed7496e0ec8767eb80bab0ea809cb4e16b878_amd64" + }, + "product_reference": "openshift-logging/log-file-metric-exporter-rhel8@sha256:94471501cf396d9d298e9dfee95ed7496e0ec8767eb80bab0ea809cb4e16b878_amd64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:a2bd4a83b30b2b9e88e8581784e3e901d564d576ba3a58824cd203779ccc9e80_ppc64le as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/log-file-metric-exporter-rhel8@sha256:a2bd4a83b30b2b9e88e8581784e3e901d564d576ba3a58824cd203779ccc9e80_ppc64le" + }, + "product_reference": "openshift-logging/log-file-metric-exporter-rhel8@sha256:a2bd4a83b30b2b9e88e8581784e3e901d564d576ba3a58824cd203779ccc9e80_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:b442de2cb36a3a26b3d8b32d953d83d01c4cd5b659f974e1f781fbb5aaef5977_arm64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/log-file-metric-exporter-rhel8@sha256:b442de2cb36a3a26b3d8b32d953d83d01c4cd5b659f974e1f781fbb5aaef5977_arm64" + }, + "product_reference": "openshift-logging/log-file-metric-exporter-rhel8@sha256:b442de2cb36a3a26b3d8b32d953d83d01c4cd5b659f974e1f781fbb5aaef5977_arm64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-curator5-rhel8@sha256:1cac7ceee19cd185658324643c9a81d055d22aa238a28986c76594153c79b422_amd64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/logging-curator5-rhel8@sha256:1cac7ceee19cd185658324643c9a81d055d22aa238a28986c76594153c79b422_amd64" + }, + "product_reference": "openshift-logging/logging-curator5-rhel8@sha256:1cac7ceee19cd185658324643c9a81d055d22aa238a28986c76594153c79b422_amd64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-curator5-rhel8@sha256:4f8f194cc5827f05a969960937e9993528ad030c32d64c7a8d95bcb8ad1bb27a_arm64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/logging-curator5-rhel8@sha256:4f8f194cc5827f05a969960937e9993528ad030c32d64c7a8d95bcb8ad1bb27a_arm64" + }, + "product_reference": "openshift-logging/logging-curator5-rhel8@sha256:4f8f194cc5827f05a969960937e9993528ad030c32d64c7a8d95bcb8ad1bb27a_arm64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-curator5-rhel8@sha256:cb78249fdad4f2cff00011a9863f40f0749c2f3b4093a322f9590008e62c06c6_ppc64le as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/logging-curator5-rhel8@sha256:cb78249fdad4f2cff00011a9863f40f0749c2f3b4093a322f9590008e62c06c6_ppc64le" + }, + "product_reference": "openshift-logging/logging-curator5-rhel8@sha256:cb78249fdad4f2cff00011a9863f40f0749c2f3b4093a322f9590008e62c06c6_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-curator5-rhel8@sha256:f09e73392f894fd4f9c38595e617dd4eebabb698d8e1ad0f3ac4e080c37b1f12_s390x as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/logging-curator5-rhel8@sha256:f09e73392f894fd4f9c38595e617dd4eebabb698d8e1ad0f3ac4e080c37b1f12_s390x" + }, + "product_reference": "openshift-logging/logging-curator5-rhel8@sha256:f09e73392f894fd4f9c38595e617dd4eebabb698d8e1ad0f3ac4e080c37b1f12_s390x", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-loki-rhel8@sha256:47df30d450dbc2b26cf828f2208832ddcba75719cef9486d047e4b2bfb2c61a8_amd64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/logging-loki-rhel8@sha256:47df30d450dbc2b26cf828f2208832ddcba75719cef9486d047e4b2bfb2c61a8_amd64" + }, + "product_reference": "openshift-logging/logging-loki-rhel8@sha256:47df30d450dbc2b26cf828f2208832ddcba75719cef9486d047e4b2bfb2c61a8_amd64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-loki-rhel8@sha256:aea6196bddef8110c0d9282d6e84a7e8cdee066fab8ba3607dacb8425b458819_ppc64le as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/logging-loki-rhel8@sha256:aea6196bddef8110c0d9282d6e84a7e8cdee066fab8ba3607dacb8425b458819_ppc64le" + }, + "product_reference": "openshift-logging/logging-loki-rhel8@sha256:aea6196bddef8110c0d9282d6e84a7e8cdee066fab8ba3607dacb8425b458819_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-loki-rhel8@sha256:af7c029f15eacd2b65a99271538c68d9b2dcd5c25dbfabadd0e9f8bb2911d827_s390x as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/logging-loki-rhel8@sha256:af7c029f15eacd2b65a99271538c68d9b2dcd5c25dbfabadd0e9f8bb2911d827_s390x" + }, + "product_reference": "openshift-logging/logging-loki-rhel8@sha256:af7c029f15eacd2b65a99271538c68d9b2dcd5c25dbfabadd0e9f8bb2911d827_s390x", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-loki-rhel8@sha256:f4558c73e630c043e8ffebd92bfbc805d13a644b19e5e43d35979b7942225b98_arm64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/logging-loki-rhel8@sha256:f4558c73e630c043e8ffebd92bfbc805d13a644b19e5e43d35979b7942225b98_arm64" + }, + "product_reference": "openshift-logging/logging-loki-rhel8@sha256:f4558c73e630c043e8ffebd92bfbc805d13a644b19e5e43d35979b7942225b98_arm64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:42223f3fb6d55d6d9155f110b90323965eaf68263d51c485114784a651be8e5e_ppc64le as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/logging-view-plugin-rhel8@sha256:42223f3fb6d55d6d9155f110b90323965eaf68263d51c485114784a651be8e5e_ppc64le" + }, + "product_reference": "openshift-logging/logging-view-plugin-rhel8@sha256:42223f3fb6d55d6d9155f110b90323965eaf68263d51c485114784a651be8e5e_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:50230e9829718254fc51d844e0305978b694354bda4b798fb5066ca3c182d323_s390x as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/logging-view-plugin-rhel8@sha256:50230e9829718254fc51d844e0305978b694354bda4b798fb5066ca3c182d323_s390x" + }, + "product_reference": "openshift-logging/logging-view-plugin-rhel8@sha256:50230e9829718254fc51d844e0305978b694354bda4b798fb5066ca3c182d323_s390x", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:79590fd5063ffa0245d96cec02dc4ce257244a431e213ecbe38462e86536b859_arm64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/logging-view-plugin-rhel8@sha256:79590fd5063ffa0245d96cec02dc4ce257244a431e213ecbe38462e86536b859_arm64" + }, + "product_reference": "openshift-logging/logging-view-plugin-rhel8@sha256:79590fd5063ffa0245d96cec02dc4ce257244a431e213ecbe38462e86536b859_arm64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:fd9b30d940cdc8b281fa4a46e8a22f946571e7e72695fef9cfa02c4337e74dc0_amd64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/logging-view-plugin-rhel8@sha256:fd9b30d940cdc8b281fa4a46e8a22f946571e7e72695fef9cfa02c4337e74dc0_amd64" + }, + "product_reference": "openshift-logging/logging-view-plugin-rhel8@sha256:fd9b30d940cdc8b281fa4a46e8a22f946571e7e72695fef9cfa02c4337e74dc0_amd64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/loki-operator-bundle@sha256:62f04228cf7e9abc40efbd69b6dcd0b6d421834b520753194105010cc35e810c_amd64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/loki-operator-bundle@sha256:62f04228cf7e9abc40efbd69b6dcd0b6d421834b520753194105010cc35e810c_amd64" + }, + "product_reference": "openshift-logging/loki-operator-bundle@sha256:62f04228cf7e9abc40efbd69b6dcd0b6d421834b520753194105010cc35e810c_amd64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/loki-rhel8-operator@sha256:260731d610f37fa0072760f09d460d04fd3a1359d24a2218918412bc1a93947b_arm64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/loki-rhel8-operator@sha256:260731d610f37fa0072760f09d460d04fd3a1359d24a2218918412bc1a93947b_arm64" + }, + "product_reference": "openshift-logging/loki-rhel8-operator@sha256:260731d610f37fa0072760f09d460d04fd3a1359d24a2218918412bc1a93947b_arm64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/loki-rhel8-operator@sha256:347cb504d7b382c241a238d1fffc91b5905121c4fe6c976356c46909161b9ced_amd64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/loki-rhel8-operator@sha256:347cb504d7b382c241a238d1fffc91b5905121c4fe6c976356c46909161b9ced_amd64" + }, + "product_reference": "openshift-logging/loki-rhel8-operator@sha256:347cb504d7b382c241a238d1fffc91b5905121c4fe6c976356c46909161b9ced_amd64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/loki-rhel8-operator@sha256:c5c0c41173e8c288341859dda8e9c982fba297e2e6c616b953a04ea4280f8caa_ppc64le as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/loki-rhel8-operator@sha256:c5c0c41173e8c288341859dda8e9c982fba297e2e6c616b953a04ea4280f8caa_ppc64le" + }, + "product_reference": "openshift-logging/loki-rhel8-operator@sha256:c5c0c41173e8c288341859dda8e9c982fba297e2e6c616b953a04ea4280f8caa_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/loki-rhel8-operator@sha256:c5e123a5c5d637ff9fb0327c03351e46f14b0d774b484fd045d51df058550d3d_s390x as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/loki-rhel8-operator@sha256:c5e123a5c5d637ff9fb0327c03351e46f14b0d774b484fd045d51df058550d3d_s390x" + }, + "product_reference": "openshift-logging/loki-rhel8-operator@sha256:c5e123a5c5d637ff9fb0327c03351e46f14b0d774b484fd045d51df058550d3d_s390x", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:1da817a84816082f56d2f3bea2f4a680b8e8cc4fe7ff95e311b44e1b5f1f5f0a_s390x as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/lokistack-gateway-rhel8@sha256:1da817a84816082f56d2f3bea2f4a680b8e8cc4fe7ff95e311b44e1b5f1f5f0a_s390x" + }, + "product_reference": "openshift-logging/lokistack-gateway-rhel8@sha256:1da817a84816082f56d2f3bea2f4a680b8e8cc4fe7ff95e311b44e1b5f1f5f0a_s390x", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:a40f0f1402d912aa12329e0ee3f4d8084337a376f72f1e0b5e45a4dac44ac848_arm64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/lokistack-gateway-rhel8@sha256:a40f0f1402d912aa12329e0ee3f4d8084337a376f72f1e0b5e45a4dac44ac848_arm64" + }, + "product_reference": "openshift-logging/lokistack-gateway-rhel8@sha256:a40f0f1402d912aa12329e0ee3f4d8084337a376f72f1e0b5e45a4dac44ac848_arm64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:ea81838d5b7a63e28ad7e20113253a701063d8d723137681bf11afd801c69f6f_amd64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/lokistack-gateway-rhel8@sha256:ea81838d5b7a63e28ad7e20113253a701063d8d723137681bf11afd801c69f6f_amd64" + }, + "product_reference": "openshift-logging/lokistack-gateway-rhel8@sha256:ea81838d5b7a63e28ad7e20113253a701063d8d723137681bf11afd801c69f6f_amd64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:f7c8b8251566fadb3396dfee110b6995e9d2ca27614a3b51f148f78fe5b51b50_ppc64le as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/lokistack-gateway-rhel8@sha256:f7c8b8251566fadb3396dfee110b6995e9d2ca27614a3b51f148f78fe5b51b50_ppc64le" + }, + "product_reference": "openshift-logging/lokistack-gateway-rhel8@sha256:f7c8b8251566fadb3396dfee110b6995e9d2ca27614a3b51f148f78fe5b51b50_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/opa-openshift-rhel8@sha256:01d2e3c8016742d49a9fe1cf7d62c6826dfc8f805babdc4c32e1407c3c8ae6c2_amd64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/opa-openshift-rhel8@sha256:01d2e3c8016742d49a9fe1cf7d62c6826dfc8f805babdc4c32e1407c3c8ae6c2_amd64" + }, + "product_reference": "openshift-logging/opa-openshift-rhel8@sha256:01d2e3c8016742d49a9fe1cf7d62c6826dfc8f805babdc4c32e1407c3c8ae6c2_amd64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/opa-openshift-rhel8@sha256:5b8bc65ad9760c2bcabac5ebf72f2a256271a4c1173871742bf8f817c6ce0478_ppc64le as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/opa-openshift-rhel8@sha256:5b8bc65ad9760c2bcabac5ebf72f2a256271a4c1173871742bf8f817c6ce0478_ppc64le" + }, + "product_reference": "openshift-logging/opa-openshift-rhel8@sha256:5b8bc65ad9760c2bcabac5ebf72f2a256271a4c1173871742bf8f817c6ce0478_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/opa-openshift-rhel8@sha256:b76cb34507d54f963da41744b614b83bb7cc031942e7252452c3b299dcc0f530_s390x as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/opa-openshift-rhel8@sha256:b76cb34507d54f963da41744b614b83bb7cc031942e7252452c3b299dcc0f530_s390x" + }, + "product_reference": "openshift-logging/opa-openshift-rhel8@sha256:b76cb34507d54f963da41744b614b83bb7cc031942e7252452c3b299dcc0f530_s390x", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/opa-openshift-rhel8@sha256:e9fc83b6a9a40c2af4dd8a8454d8ca9e3a3bb96fdb290427d3a0c9cb753e91f4_arm64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/opa-openshift-rhel8@sha256:e9fc83b6a9a40c2af4dd8a8454d8ca9e3a3bb96fdb290427d3a0c9cb753e91f4_arm64" + }, + "product_reference": "openshift-logging/opa-openshift-rhel8@sha256:e9fc83b6a9a40c2af4dd8a8454d8ca9e3a3bb96fdb290427d3a0c9cb753e91f4_arm64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/vector-rhel8@sha256:10f88bb7c978c24555def7bf4d7fd35dba3d1b5ffdc32fde359b175fc8d8b34e_ppc64le as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/vector-rhel8@sha256:10f88bb7c978c24555def7bf4d7fd35dba3d1b5ffdc32fde359b175fc8d8b34e_ppc64le" + }, + "product_reference": "openshift-logging/vector-rhel8@sha256:10f88bb7c978c24555def7bf4d7fd35dba3d1b5ffdc32fde359b175fc8d8b34e_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/vector-rhel8@sha256:7e46ef2e749e3896a86af16744c1c3542ff8a6d0467793af27aedb0fdbc9ee4a_s390x as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/vector-rhel8@sha256:7e46ef2e749e3896a86af16744c1c3542ff8a6d0467793af27aedb0fdbc9ee4a_s390x" + }, + "product_reference": "openshift-logging/vector-rhel8@sha256:7e46ef2e749e3896a86af16744c1c3542ff8a6d0467793af27aedb0fdbc9ee4a_s390x", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/vector-rhel8@sha256:a9f8b40acd19609ee9c9bc85a4f2cdec9aa4c8c786b62ad94e33c8ea451de961_amd64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/vector-rhel8@sha256:a9f8b40acd19609ee9c9bc85a4f2cdec9aa4c8c786b62ad94e33c8ea451de961_amd64" + }, + "product_reference": "openshift-logging/vector-rhel8@sha256:a9f8b40acd19609ee9c9bc85a4f2cdec9aa4c8c786b62ad94e33c8ea451de961_amd64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/vector-rhel8@sha256:ebff04a36feae157572fdd32ce2cc045c504b850c0b9f471d381676da314dd97_arm64 as a component of RHOL 5.6 for RHEL 8", + "product_id": "8Base-RHOL-5.6:openshift-logging/vector-rhel8@sha256:ebff04a36feae157572fdd32ce2cc045c504b850c0b9f471d381676da314dd97_arm64" + }, + "product_reference": "openshift-logging/vector-rhel8@sha256:ebff04a36feae157572fdd32ce2cc045c504b850c0b9f471d381676da314dd97_arm64", + "relates_to_product_reference": "8Base-RHOL-5.6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/cluster-logging-operator-bundle@sha256:0761943b57451fa8cd0d42942a831376ab48f723e8ea461d0a5ea49c9a391d7b_amd64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/cluster-logging-operator-bundle@sha256:0761943b57451fa8cd0d42942a831376ab48f723e8ea461d0a5ea49c9a391d7b_amd64" + }, + "product_reference": "openshift-logging/cluster-logging-operator-bundle@sha256:0761943b57451fa8cd0d42942a831376ab48f723e8ea461d0a5ea49c9a391d7b_amd64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:1d6a2bd236f72f3dbb4c2e284cb2ac2554d7d79b416d57ee94b8d158ea3ea807_arm64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/cluster-logging-rhel8-operator@sha256:1d6a2bd236f72f3dbb4c2e284cb2ac2554d7d79b416d57ee94b8d158ea3ea807_arm64" + }, + "product_reference": "openshift-logging/cluster-logging-rhel8-operator@sha256:1d6a2bd236f72f3dbb4c2e284cb2ac2554d7d79b416d57ee94b8d158ea3ea807_arm64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:2023d126c1be90ab6e6b27e778cc3944a2e5af2b44358537d65e60d385e78959_ppc64le as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/cluster-logging-rhel8-operator@sha256:2023d126c1be90ab6e6b27e778cc3944a2e5af2b44358537d65e60d385e78959_ppc64le" + }, + "product_reference": "openshift-logging/cluster-logging-rhel8-operator@sha256:2023d126c1be90ab6e6b27e778cc3944a2e5af2b44358537d65e60d385e78959_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:c9a5546e0f427376f36d6d350cebe7ed3e7d2468d3c8290528fbe054462e22d6_s390x as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/cluster-logging-rhel8-operator@sha256:c9a5546e0f427376f36d6d350cebe7ed3e7d2468d3c8290528fbe054462e22d6_s390x" + }, + "product_reference": "openshift-logging/cluster-logging-rhel8-operator@sha256:c9a5546e0f427376f36d6d350cebe7ed3e7d2468d3c8290528fbe054462e22d6_s390x", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/cluster-logging-rhel8-operator@sha256:efb5cb250782473d1f4eb42d06747c9fad6df65c888cca88ed421bba399c5d96_amd64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/cluster-logging-rhel8-operator@sha256:efb5cb250782473d1f4eb42d06747c9fad6df65c888cca88ed421bba399c5d96_amd64" + }, + "product_reference": "openshift-logging/cluster-logging-rhel8-operator@sha256:efb5cb250782473d1f4eb42d06747c9fad6df65c888cca88ed421bba399c5d96_amd64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-operator-bundle@sha256:060f8fd11a32cbb6247d7d41e4be1fc71026e9bab9238995b7b2e563fb94e6d7_amd64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/elasticsearch-operator-bundle@sha256:060f8fd11a32cbb6247d7d41e4be1fc71026e9bab9238995b7b2e563fb94e6d7_amd64" + }, + "product_reference": "openshift-logging/elasticsearch-operator-bundle@sha256:060f8fd11a32cbb6247d7d41e4be1fc71026e9bab9238995b7b2e563fb94e6d7_amd64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:2995302941f4c0d5016e49c3a01ca3bc4d80935ce1de70c84a2124e28e290947_arm64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/elasticsearch-proxy-rhel8@sha256:2995302941f4c0d5016e49c3a01ca3bc4d80935ce1de70c84a2124e28e290947_arm64" + }, + "product_reference": "openshift-logging/elasticsearch-proxy-rhel8@sha256:2995302941f4c0d5016e49c3a01ca3bc4d80935ce1de70c84a2124e28e290947_arm64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:6f64ee3aeedb891cb4b88e90c7569235d8e136cb2a66c7da1bc3ec73a518aa5d_s390x as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/elasticsearch-proxy-rhel8@sha256:6f64ee3aeedb891cb4b88e90c7569235d8e136cb2a66c7da1bc3ec73a518aa5d_s390x" + }, + "product_reference": "openshift-logging/elasticsearch-proxy-rhel8@sha256:6f64ee3aeedb891cb4b88e90c7569235d8e136cb2a66c7da1bc3ec73a518aa5d_s390x", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:7ca7ec92b15a7556d6a8daabd24a70f42e4260b6caf9168e852890c063e91186_amd64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/elasticsearch-proxy-rhel8@sha256:7ca7ec92b15a7556d6a8daabd24a70f42e4260b6caf9168e852890c063e91186_amd64" + }, + "product_reference": "openshift-logging/elasticsearch-proxy-rhel8@sha256:7ca7ec92b15a7556d6a8daabd24a70f42e4260b6caf9168e852890c063e91186_amd64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-proxy-rhel8@sha256:f223378bb8b335e6ed531a451a48fc17c039004414836cc1f2bf8d408eb6eb18_ppc64le as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/elasticsearch-proxy-rhel8@sha256:f223378bb8b335e6ed531a451a48fc17c039004414836cc1f2bf8d408eb6eb18_ppc64le" + }, + "product_reference": "openshift-logging/elasticsearch-proxy-rhel8@sha256:f223378bb8b335e6ed531a451a48fc17c039004414836cc1f2bf8d408eb6eb18_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:368447ae5216ada4c092c8781d3b847a5d37606d7c4ce430376ed5d3a4384863_amd64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/elasticsearch-rhel8-operator@sha256:368447ae5216ada4c092c8781d3b847a5d37606d7c4ce430376ed5d3a4384863_amd64" + }, + "product_reference": "openshift-logging/elasticsearch-rhel8-operator@sha256:368447ae5216ada4c092c8781d3b847a5d37606d7c4ce430376ed5d3a4384863_amd64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:640dfbd649bde0c5fed45d5ecaf595e1cf09ffa6d76be3b75751108c0d85bbcb_ppc64le as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/elasticsearch-rhel8-operator@sha256:640dfbd649bde0c5fed45d5ecaf595e1cf09ffa6d76be3b75751108c0d85bbcb_ppc64le" + }, + "product_reference": "openshift-logging/elasticsearch-rhel8-operator@sha256:640dfbd649bde0c5fed45d5ecaf595e1cf09ffa6d76be3b75751108c0d85bbcb_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:720587fcb7a89a571c04c8e222e5ebf54c899086ce07461e5f5dac7dfe8e6af9_s390x as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/elasticsearch-rhel8-operator@sha256:720587fcb7a89a571c04c8e222e5ebf54c899086ce07461e5f5dac7dfe8e6af9_s390x" + }, + "product_reference": "openshift-logging/elasticsearch-rhel8-operator@sha256:720587fcb7a89a571c04c8e222e5ebf54c899086ce07461e5f5dac7dfe8e6af9_s390x", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch-rhel8-operator@sha256:9a492f0164ba9ea96a8cef43577a6d62ce5806dc1e821d3aee2abfcf35a02ac0_arm64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/elasticsearch-rhel8-operator@sha256:9a492f0164ba9ea96a8cef43577a6d62ce5806dc1e821d3aee2abfcf35a02ac0_arm64" + }, + "product_reference": "openshift-logging/elasticsearch-rhel8-operator@sha256:9a492f0164ba9ea96a8cef43577a6d62ce5806dc1e821d3aee2abfcf35a02ac0_arm64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch6-rhel8@sha256:0fab0830499ef530add912e8022f9d5a09addbf229e62bea989a1d8734e70a33_ppc64le as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/elasticsearch6-rhel8@sha256:0fab0830499ef530add912e8022f9d5a09addbf229e62bea989a1d8734e70a33_ppc64le" + }, + "product_reference": "openshift-logging/elasticsearch6-rhel8@sha256:0fab0830499ef530add912e8022f9d5a09addbf229e62bea989a1d8734e70a33_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch6-rhel8@sha256:560831bdc34128719564aaaca4b80bba32062b97c87118b4ac00413609bcf067_amd64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/elasticsearch6-rhel8@sha256:560831bdc34128719564aaaca4b80bba32062b97c87118b4ac00413609bcf067_amd64" + }, + "product_reference": "openshift-logging/elasticsearch6-rhel8@sha256:560831bdc34128719564aaaca4b80bba32062b97c87118b4ac00413609bcf067_amd64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch6-rhel8@sha256:90c408f644a8a853de8338f2d4c1b7ff10877973a98c15868e1e0662da8eca46_s390x as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/elasticsearch6-rhel8@sha256:90c408f644a8a853de8338f2d4c1b7ff10877973a98c15868e1e0662da8eca46_s390x" + }, + "product_reference": "openshift-logging/elasticsearch6-rhel8@sha256:90c408f644a8a853de8338f2d4c1b7ff10877973a98c15868e1e0662da8eca46_s390x", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/elasticsearch6-rhel8@sha256:a00a7c1c152b6d2897bdc06b0137b556e6931b7d309e4e9a585825dbd558d3ba_arm64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/elasticsearch6-rhel8@sha256:a00a7c1c152b6d2897bdc06b0137b556e6931b7d309e4e9a585825dbd558d3ba_arm64" + }, + "product_reference": "openshift-logging/elasticsearch6-rhel8@sha256:a00a7c1c152b6d2897bdc06b0137b556e6931b7d309e4e9a585825dbd558d3ba_arm64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/eventrouter-rhel8@sha256:3054aade5994df42ab7c2981865a7851049ea46ed20b7805d1553d6b28ab5af8_amd64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/eventrouter-rhel8@sha256:3054aade5994df42ab7c2981865a7851049ea46ed20b7805d1553d6b28ab5af8_amd64" + }, + "product_reference": "openshift-logging/eventrouter-rhel8@sha256:3054aade5994df42ab7c2981865a7851049ea46ed20b7805d1553d6b28ab5af8_amd64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/eventrouter-rhel8@sha256:7a45458250a73682ab11a3c743d563ab1c9072281b15d3a18088c5902130a4cd_s390x as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/eventrouter-rhel8@sha256:7a45458250a73682ab11a3c743d563ab1c9072281b15d3a18088c5902130a4cd_s390x" + }, + "product_reference": "openshift-logging/eventrouter-rhel8@sha256:7a45458250a73682ab11a3c743d563ab1c9072281b15d3a18088c5902130a4cd_s390x", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/eventrouter-rhel8@sha256:ac827708b7d49a217770e510124427e9430ec13b23d8fc3e0f7bdcb682214b34_ppc64le as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/eventrouter-rhel8@sha256:ac827708b7d49a217770e510124427e9430ec13b23d8fc3e0f7bdcb682214b34_ppc64le" + }, + "product_reference": "openshift-logging/eventrouter-rhel8@sha256:ac827708b7d49a217770e510124427e9430ec13b23d8fc3e0f7bdcb682214b34_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/eventrouter-rhel8@sha256:bc31b395c3a2353048cad9d0d44f28e60f7e0a01e5fc6f6b2803d813ec279687_arm64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/eventrouter-rhel8@sha256:bc31b395c3a2353048cad9d0d44f28e60f7e0a01e5fc6f6b2803d813ec279687_arm64" + }, + "product_reference": "openshift-logging/eventrouter-rhel8@sha256:bc31b395c3a2353048cad9d0d44f28e60f7e0a01e5fc6f6b2803d813ec279687_arm64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/fluentd-rhel8@sha256:08ba4f66916d6331ce739c856c863e2de59c7b870ef2247ed2ee4b5895932193_s390x as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/fluentd-rhel8@sha256:08ba4f66916d6331ce739c856c863e2de59c7b870ef2247ed2ee4b5895932193_s390x" + }, + "product_reference": "openshift-logging/fluentd-rhel8@sha256:08ba4f66916d6331ce739c856c863e2de59c7b870ef2247ed2ee4b5895932193_s390x", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/fluentd-rhel8@sha256:65b491f9794f306cfe74b6ff622e9fe8b1155df5ed89e8db1f34ee2d299b2245_ppc64le as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/fluentd-rhel8@sha256:65b491f9794f306cfe74b6ff622e9fe8b1155df5ed89e8db1f34ee2d299b2245_ppc64le" + }, + "product_reference": "openshift-logging/fluentd-rhel8@sha256:65b491f9794f306cfe74b6ff622e9fe8b1155df5ed89e8db1f34ee2d299b2245_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/fluentd-rhel8@sha256:d920792d5ea71265702f0a408888e051b47d23cb8b624c02e6ed29b142d152bf_arm64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/fluentd-rhel8@sha256:d920792d5ea71265702f0a408888e051b47d23cb8b624c02e6ed29b142d152bf_arm64" + }, + "product_reference": "openshift-logging/fluentd-rhel8@sha256:d920792d5ea71265702f0a408888e051b47d23cb8b624c02e6ed29b142d152bf_arm64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/fluentd-rhel8@sha256:f93ddeb2a52c0aead46bb0bb2af71a68c9a11093617615faadb3b07f45590fa1_amd64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/fluentd-rhel8@sha256:f93ddeb2a52c0aead46bb0bb2af71a68c9a11093617615faadb3b07f45590fa1_amd64" + }, + "product_reference": "openshift-logging/fluentd-rhel8@sha256:f93ddeb2a52c0aead46bb0bb2af71a68c9a11093617615faadb3b07f45590fa1_amd64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/kibana6-rhel8@sha256:6bdd69f14340d82695bd645b14f4faaa99c830630087d43aa843418cfb34b89e_arm64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/kibana6-rhel8@sha256:6bdd69f14340d82695bd645b14f4faaa99c830630087d43aa843418cfb34b89e_arm64" + }, + "product_reference": "openshift-logging/kibana6-rhel8@sha256:6bdd69f14340d82695bd645b14f4faaa99c830630087d43aa843418cfb34b89e_arm64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/kibana6-rhel8@sha256:b104e6731b8ddfb98dd8a0891dfb1051fb59e82d70f91c297a62402922412c32_amd64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/kibana6-rhel8@sha256:b104e6731b8ddfb98dd8a0891dfb1051fb59e82d70f91c297a62402922412c32_amd64" + }, + "product_reference": "openshift-logging/kibana6-rhel8@sha256:b104e6731b8ddfb98dd8a0891dfb1051fb59e82d70f91c297a62402922412c32_amd64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/kibana6-rhel8@sha256:e8af2bde433bebee9236365ce6bc52db26981c8e484df2048cb4ed2b7cb5bed1_s390x as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/kibana6-rhel8@sha256:e8af2bde433bebee9236365ce6bc52db26981c8e484df2048cb4ed2b7cb5bed1_s390x" + }, + "product_reference": "openshift-logging/kibana6-rhel8@sha256:e8af2bde433bebee9236365ce6bc52db26981c8e484df2048cb4ed2b7cb5bed1_s390x", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/kibana6-rhel8@sha256:eddddb656ad870ad417cb92756ce537d32b55b17a9af3c87b5e2f4834017e48a_ppc64le as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/kibana6-rhel8@sha256:eddddb656ad870ad417cb92756ce537d32b55b17a9af3c87b5e2f4834017e48a_ppc64le" + }, + "product_reference": "openshift-logging/kibana6-rhel8@sha256:eddddb656ad870ad417cb92756ce537d32b55b17a9af3c87b5e2f4834017e48a_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:407891f77d384f8708f9e33469c410e84ba25fa9e4cb16e4a6a9c212f0b48a9c_amd64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/log-file-metric-exporter-rhel8@sha256:407891f77d384f8708f9e33469c410e84ba25fa9e4cb16e4a6a9c212f0b48a9c_amd64" + }, + "product_reference": "openshift-logging/log-file-metric-exporter-rhel8@sha256:407891f77d384f8708f9e33469c410e84ba25fa9e4cb16e4a6a9c212f0b48a9c_amd64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:7f5f8f7d40938e5a0b2b2724c551f4e1dcf57de78daacd736b28b964d0fa6eec_arm64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/log-file-metric-exporter-rhel8@sha256:7f5f8f7d40938e5a0b2b2724c551f4e1dcf57de78daacd736b28b964d0fa6eec_arm64" + }, + "product_reference": "openshift-logging/log-file-metric-exporter-rhel8@sha256:7f5f8f7d40938e5a0b2b2724c551f4e1dcf57de78daacd736b28b964d0fa6eec_arm64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:a91af106ffacd6a620c6b194697516ee3e9f8aa36605873061766d9f0ec35f84_s390x as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/log-file-metric-exporter-rhel8@sha256:a91af106ffacd6a620c6b194697516ee3e9f8aa36605873061766d9f0ec35f84_s390x" + }, + "product_reference": "openshift-logging/log-file-metric-exporter-rhel8@sha256:a91af106ffacd6a620c6b194697516ee3e9f8aa36605873061766d9f0ec35f84_s390x", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/log-file-metric-exporter-rhel8@sha256:fef8afe2da100f267ed9e3848b4a9a1183e04bf0a9702404d03b2f57e5ec1bde_ppc64le as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/log-file-metric-exporter-rhel8@sha256:fef8afe2da100f267ed9e3848b4a9a1183e04bf0a9702404d03b2f57e5ec1bde_ppc64le" + }, + "product_reference": "openshift-logging/log-file-metric-exporter-rhel8@sha256:fef8afe2da100f267ed9e3848b4a9a1183e04bf0a9702404d03b2f57e5ec1bde_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-curator5-rhel8@sha256:00fe8c23f7944a5d639c17b2e81dd80a424aabbddd4d7f0aff6b54f8cf370a58_amd64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/logging-curator5-rhel8@sha256:00fe8c23f7944a5d639c17b2e81dd80a424aabbddd4d7f0aff6b54f8cf370a58_amd64" + }, + "product_reference": "openshift-logging/logging-curator5-rhel8@sha256:00fe8c23f7944a5d639c17b2e81dd80a424aabbddd4d7f0aff6b54f8cf370a58_amd64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-curator5-rhel8@sha256:0a7df021980720321c27e8021626e0c4f428150faa75fd92803b3e172f07eedf_arm64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/logging-curator5-rhel8@sha256:0a7df021980720321c27e8021626e0c4f428150faa75fd92803b3e172f07eedf_arm64" + }, + "product_reference": "openshift-logging/logging-curator5-rhel8@sha256:0a7df021980720321c27e8021626e0c4f428150faa75fd92803b3e172f07eedf_arm64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-curator5-rhel8@sha256:927ba226f05237f6ad1faf686149a89f692f8904445f5a35f15a685518d3fe6a_ppc64le as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/logging-curator5-rhel8@sha256:927ba226f05237f6ad1faf686149a89f692f8904445f5a35f15a685518d3fe6a_ppc64le" + }, + "product_reference": "openshift-logging/logging-curator5-rhel8@sha256:927ba226f05237f6ad1faf686149a89f692f8904445f5a35f15a685518d3fe6a_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-curator5-rhel8@sha256:94a2902ffbfcec5c29a23529d81f4605ebab9bde8156ad1be6dba42ccedeb1fe_s390x as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/logging-curator5-rhel8@sha256:94a2902ffbfcec5c29a23529d81f4605ebab9bde8156ad1be6dba42ccedeb1fe_s390x" + }, + "product_reference": "openshift-logging/logging-curator5-rhel8@sha256:94a2902ffbfcec5c29a23529d81f4605ebab9bde8156ad1be6dba42ccedeb1fe_s390x", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-loki-rhel8@sha256:476a5e47090c24d1f8f5bafaca9b80e5373a2da0f14a7ec6e7254a32440adfdb_ppc64le as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/logging-loki-rhel8@sha256:476a5e47090c24d1f8f5bafaca9b80e5373a2da0f14a7ec6e7254a32440adfdb_ppc64le" + }, + "product_reference": "openshift-logging/logging-loki-rhel8@sha256:476a5e47090c24d1f8f5bafaca9b80e5373a2da0f14a7ec6e7254a32440adfdb_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-loki-rhel8@sha256:8cb4328b46bc3f8627f11fe69b37d8147f1d76b909c9880066277615c36cabc1_arm64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/logging-loki-rhel8@sha256:8cb4328b46bc3f8627f11fe69b37d8147f1d76b909c9880066277615c36cabc1_arm64" + }, + "product_reference": "openshift-logging/logging-loki-rhel8@sha256:8cb4328b46bc3f8627f11fe69b37d8147f1d76b909c9880066277615c36cabc1_arm64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-loki-rhel8@sha256:9a1e97c4dac0165d92615b30b9140149b038ab788464dcd41f8a14b647220a98_s390x as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/logging-loki-rhel8@sha256:9a1e97c4dac0165d92615b30b9140149b038ab788464dcd41f8a14b647220a98_s390x" + }, + "product_reference": "openshift-logging/logging-loki-rhel8@sha256:9a1e97c4dac0165d92615b30b9140149b038ab788464dcd41f8a14b647220a98_s390x", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-loki-rhel8@sha256:9fe7eba96b742b1a3d55cef2934ce6259be01faf589f0b2ec1bc3b557a833980_amd64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/logging-loki-rhel8@sha256:9fe7eba96b742b1a3d55cef2934ce6259be01faf589f0b2ec1bc3b557a833980_amd64" + }, + "product_reference": "openshift-logging/logging-loki-rhel8@sha256:9fe7eba96b742b1a3d55cef2934ce6259be01faf589f0b2ec1bc3b557a833980_amd64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:0f251245e9f1030e64a6c9b76fe22b571e4a3f9cc2fd38979b52e5c91c6bd2e6_arm64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/logging-view-plugin-rhel8@sha256:0f251245e9f1030e64a6c9b76fe22b571e4a3f9cc2fd38979b52e5c91c6bd2e6_arm64" + }, + "product_reference": "openshift-logging/logging-view-plugin-rhel8@sha256:0f251245e9f1030e64a6c9b76fe22b571e4a3f9cc2fd38979b52e5c91c6bd2e6_arm64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:2f09d0a0faad8944b5d4689699ae15d3d4e44cefaa5aaa11f2c584e71b23e667_amd64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/logging-view-plugin-rhel8@sha256:2f09d0a0faad8944b5d4689699ae15d3d4e44cefaa5aaa11f2c584e71b23e667_amd64" + }, + "product_reference": "openshift-logging/logging-view-plugin-rhel8@sha256:2f09d0a0faad8944b5d4689699ae15d3d4e44cefaa5aaa11f2c584e71b23e667_amd64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:8181f92baa5a86da7767f605f4537b59fad583ee80fcde309fea504e9c3147c0_ppc64le as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/logging-view-plugin-rhel8@sha256:8181f92baa5a86da7767f605f4537b59fad583ee80fcde309fea504e9c3147c0_ppc64le" + }, + "product_reference": "openshift-logging/logging-view-plugin-rhel8@sha256:8181f92baa5a86da7767f605f4537b59fad583ee80fcde309fea504e9c3147c0_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-view-plugin-rhel8@sha256:c1247743656700aa4be1b1f6d43732e9ad65e0a99a928065aa94ef2a3729bac8_s390x as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/logging-view-plugin-rhel8@sha256:c1247743656700aa4be1b1f6d43732e9ad65e0a99a928065aa94ef2a3729bac8_s390x" + }, + "product_reference": "openshift-logging/logging-view-plugin-rhel8@sha256:c1247743656700aa4be1b1f6d43732e9ad65e0a99a928065aa94ef2a3729bac8_s390x", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/loki-operator-bundle@sha256:c569eba6b695d9f26dc47f413e925d02666683a4af0401f23cfd05b96dcb61e9_amd64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/loki-operator-bundle@sha256:c569eba6b695d9f26dc47f413e925d02666683a4af0401f23cfd05b96dcb61e9_amd64" + }, + "product_reference": "openshift-logging/loki-operator-bundle@sha256:c569eba6b695d9f26dc47f413e925d02666683a4af0401f23cfd05b96dcb61e9_amd64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/loki-rhel8-operator@sha256:31cdc95fe91aeb315afa5a1daf98e91587eac31b895de5b698bfd4637889ce22_arm64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/loki-rhel8-operator@sha256:31cdc95fe91aeb315afa5a1daf98e91587eac31b895de5b698bfd4637889ce22_arm64" + }, + "product_reference": "openshift-logging/loki-rhel8-operator@sha256:31cdc95fe91aeb315afa5a1daf98e91587eac31b895de5b698bfd4637889ce22_arm64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/loki-rhel8-operator@sha256:4e59120fc8a10978b234716a5757891c197e9394aae2446b3b8d8621f3983792_ppc64le as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/loki-rhel8-operator@sha256:4e59120fc8a10978b234716a5757891c197e9394aae2446b3b8d8621f3983792_ppc64le" + }, + "product_reference": "openshift-logging/loki-rhel8-operator@sha256:4e59120fc8a10978b234716a5757891c197e9394aae2446b3b8d8621f3983792_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/loki-rhel8-operator@sha256:75d73f70f941e73b41e38d666dc1dbdfb465cb2d182b6f3663d632da5a15feb7_s390x as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/loki-rhel8-operator@sha256:75d73f70f941e73b41e38d666dc1dbdfb465cb2d182b6f3663d632da5a15feb7_s390x" + }, + "product_reference": "openshift-logging/loki-rhel8-operator@sha256:75d73f70f941e73b41e38d666dc1dbdfb465cb2d182b6f3663d632da5a15feb7_s390x", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/loki-rhel8-operator@sha256:c7d2ef7cf71269238bb23db61f08f9d237baa955a18cb394e8d34dc80178cdc5_amd64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/loki-rhel8-operator@sha256:c7d2ef7cf71269238bb23db61f08f9d237baa955a18cb394e8d34dc80178cdc5_amd64" + }, + "product_reference": "openshift-logging/loki-rhel8-operator@sha256:c7d2ef7cf71269238bb23db61f08f9d237baa955a18cb394e8d34dc80178cdc5_amd64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:1b1dd755ceb338795820eb5c4abd1914071b4579502eb40379e0126dbc5bd58c_s390x as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/lokistack-gateway-rhel8@sha256:1b1dd755ceb338795820eb5c4abd1914071b4579502eb40379e0126dbc5bd58c_s390x" + }, + "product_reference": "openshift-logging/lokistack-gateway-rhel8@sha256:1b1dd755ceb338795820eb5c4abd1914071b4579502eb40379e0126dbc5bd58c_s390x", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:37e919ddb8673ef99e5e0e1b9e5c9c388c9417dd45971f2dab05bf92b462ab67_amd64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/lokistack-gateway-rhel8@sha256:37e919ddb8673ef99e5e0e1b9e5c9c388c9417dd45971f2dab05bf92b462ab67_amd64" + }, + "product_reference": "openshift-logging/lokistack-gateway-rhel8@sha256:37e919ddb8673ef99e5e0e1b9e5c9c388c9417dd45971f2dab05bf92b462ab67_amd64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:3ef274ae69a419f4458c290b6bd33c2787798dc5a905f46dc20aff7b1c0b6e25_arm64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/lokistack-gateway-rhel8@sha256:3ef274ae69a419f4458c290b6bd33c2787798dc5a905f46dc20aff7b1c0b6e25_arm64" + }, + "product_reference": "openshift-logging/lokistack-gateway-rhel8@sha256:3ef274ae69a419f4458c290b6bd33c2787798dc5a905f46dc20aff7b1c0b6e25_arm64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/lokistack-gateway-rhel8@sha256:4cc1ddf22cba8a5ed94549115b5210d961e1978618c8cb48e820e545369ecb65_ppc64le as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/lokistack-gateway-rhel8@sha256:4cc1ddf22cba8a5ed94549115b5210d961e1978618c8cb48e820e545369ecb65_ppc64le" + }, + "product_reference": "openshift-logging/lokistack-gateway-rhel8@sha256:4cc1ddf22cba8a5ed94549115b5210d961e1978618c8cb48e820e545369ecb65_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/opa-openshift-rhel8@sha256:a99366c13fbb55e96bebe92054c09ac75133023b940df8b80a43d89c8d6db580_s390x as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/opa-openshift-rhel8@sha256:a99366c13fbb55e96bebe92054c09ac75133023b940df8b80a43d89c8d6db580_s390x" + }, + "product_reference": "openshift-logging/opa-openshift-rhel8@sha256:a99366c13fbb55e96bebe92054c09ac75133023b940df8b80a43d89c8d6db580_s390x", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/opa-openshift-rhel8@sha256:bdb8fb48f8b164fb3d55de977aaa19414654ec7284f148db11b77b94a3feefd1_ppc64le as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/opa-openshift-rhel8@sha256:bdb8fb48f8b164fb3d55de977aaa19414654ec7284f148db11b77b94a3feefd1_ppc64le" + }, + "product_reference": "openshift-logging/opa-openshift-rhel8@sha256:bdb8fb48f8b164fb3d55de977aaa19414654ec7284f148db11b77b94a3feefd1_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/opa-openshift-rhel8@sha256:cc216b7b979a7b216fa7d4965ad6b1a147405fe95b95eafc0aa47c758f1b16d9_arm64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/opa-openshift-rhel8@sha256:cc216b7b979a7b216fa7d4965ad6b1a147405fe95b95eafc0aa47c758f1b16d9_arm64" + }, + "product_reference": "openshift-logging/opa-openshift-rhel8@sha256:cc216b7b979a7b216fa7d4965ad6b1a147405fe95b95eafc0aa47c758f1b16d9_arm64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/opa-openshift-rhel8@sha256:cf9edc3befb08c9e0327197884faeb387b44efc169063020d154aa2ce77bd711_amd64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/opa-openshift-rhel8@sha256:cf9edc3befb08c9e0327197884faeb387b44efc169063020d154aa2ce77bd711_amd64" + }, + "product_reference": "openshift-logging/opa-openshift-rhel8@sha256:cf9edc3befb08c9e0327197884faeb387b44efc169063020d154aa2ce77bd711_amd64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/vector-rhel8@sha256:5d785f0ff007386c3d6c69eb06e1bac518c7a1b781504ef5ddbb7e6a682382e8_amd64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/vector-rhel8@sha256:5d785f0ff007386c3d6c69eb06e1bac518c7a1b781504ef5ddbb7e6a682382e8_amd64" + }, + "product_reference": "openshift-logging/vector-rhel8@sha256:5d785f0ff007386c3d6c69eb06e1bac518c7a1b781504ef5ddbb7e6a682382e8_amd64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/vector-rhel8@sha256:7c85f6f777f9c74096c33f76fbc9c122f203cb549fc91142d51e6aebdc400ec5_s390x as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/vector-rhel8@sha256:7c85f6f777f9c74096c33f76fbc9c122f203cb549fc91142d51e6aebdc400ec5_s390x" + }, + "product_reference": "openshift-logging/vector-rhel8@sha256:7c85f6f777f9c74096c33f76fbc9c122f203cb549fc91142d51e6aebdc400ec5_s390x", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/vector-rhel8@sha256:b5633612eab927c2d65848d0fd4629e692fbd4ea5b7aa9254ddfe6982824c06a_ppc64le as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/vector-rhel8@sha256:b5633612eab927c2d65848d0fd4629e692fbd4ea5b7aa9254ddfe6982824c06a_ppc64le" + }, + "product_reference": "openshift-logging/vector-rhel8@sha256:b5633612eab927c2d65848d0fd4629e692fbd4ea5b7aa9254ddfe6982824c06a_ppc64le", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/vector-rhel8@sha256:eb444e7e77e14ff1f36c048bdd53d482b6cf3ed98d3ff6f2574620187fde49ab_arm64 as a component of RHOL 5.7 for RHEL 8", + "product_id": "8Base-RHOL-5.7:openshift-logging/vector-rhel8@sha256:eb444e7e77e14ff1f36c048bdd53d482b6cf3ed98d3ff6f2574620187fde49ab_arm64" + }, + "product_reference": "openshift-logging/vector-rhel8@sha256:eb444e7e77e14ff1f36c048bdd53d482b6cf3ed98d3ff6f2574620187fde49ab_arm64", + "relates_to_product_reference": "8Base-RHOL-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "collectd-libpod-stats-0:1.0.4-5.el8ost.ppc64le as a component of Red Hat OpenStack Platform 16.1", + "product_id": "8Base-RHOS-16.1:collectd-libpod-stats-0:1.0.4-5.el8ost.ppc64le" + }, + "product_reference": "collectd-libpod-stats-0:1.0.4-5.el8ost.ppc64le", + "relates_to_product_reference": "8Base-RHOS-16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "collectd-libpod-stats-0:1.0.4-5.el8ost.src as a component of Red Hat OpenStack Platform 16.1", + "product_id": "8Base-RHOS-16.1:collectd-libpod-stats-0:1.0.4-5.el8ost.src" + }, + "product_reference": "collectd-libpod-stats-0:1.0.4-5.el8ost.src", + "relates_to_product_reference": "8Base-RHOS-16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "collectd-libpod-stats-0:1.0.4-5.el8ost.x86_64 as a component of Red Hat OpenStack Platform 16.1", + "product_id": "8Base-RHOS-16.1:collectd-libpod-stats-0:1.0.4-5.el8ost.x86_64" + }, + "product_reference": "collectd-libpod-stats-0:1.0.4-5.el8ost.x86_64", + "relates_to_product_reference": "8Base-RHOS-16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "etcd-0:3.3.23-15.el8ost.ppc64le as a component of Red Hat OpenStack Platform 16.1", + "product_id": "8Base-RHOS-16.1:etcd-0:3.3.23-15.el8ost.ppc64le" + }, + "product_reference": "etcd-0:3.3.23-15.el8ost.ppc64le", + "relates_to_product_reference": "8Base-RHOS-16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "etcd-0:3.3.23-15.el8ost.src as a component of Red Hat OpenStack Platform 16.1", + "product_id": "8Base-RHOS-16.1:etcd-0:3.3.23-15.el8ost.src" + }, + "product_reference": "etcd-0:3.3.23-15.el8ost.src", + "relates_to_product_reference": "8Base-RHOS-16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "etcd-0:3.3.23-15.el8ost.x86_64 as a component of Red Hat OpenStack Platform 16.1", + "product_id": "8Base-RHOS-16.1:etcd-0:3.3.23-15.el8ost.x86_64" + }, + "product_reference": "etcd-0:3.3.23-15.el8ost.x86_64", + "relates_to_product_reference": "8Base-RHOS-16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "etcd-debuginfo-0:3.3.23-15.el8ost.ppc64le as a component of Red Hat OpenStack Platform 16.1", + "product_id": "8Base-RHOS-16.1:etcd-debuginfo-0:3.3.23-15.el8ost.ppc64le" + }, + "product_reference": "etcd-debuginfo-0:3.3.23-15.el8ost.ppc64le", + "relates_to_product_reference": "8Base-RHOS-16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "etcd-debuginfo-0:3.3.23-15.el8ost.x86_64 as a component of Red Hat OpenStack Platform 16.1", + "product_id": "8Base-RHOS-16.1:etcd-debuginfo-0:3.3.23-15.el8ost.x86_64" + }, + "product_reference": "etcd-debuginfo-0:3.3.23-15.el8ost.x86_64", + "relates_to_product_reference": "8Base-RHOS-16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "etcd-debugsource-0:3.3.23-15.el8ost.ppc64le as a component of Red Hat OpenStack Platform 16.1", + "product_id": "8Base-RHOS-16.1:etcd-debugsource-0:3.3.23-15.el8ost.ppc64le" + }, + "product_reference": "etcd-debugsource-0:3.3.23-15.el8ost.ppc64le", + "relates_to_product_reference": "8Base-RHOS-16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "etcd-debugsource-0:3.3.23-15.el8ost.x86_64 as a component of Red Hat OpenStack Platform 16.1", + "product_id": "8Base-RHOS-16.1:etcd-debugsource-0:3.3.23-15.el8ost.x86_64" + }, + "product_reference": "etcd-debugsource-0:3.3.23-15.el8ost.x86_64", + "relates_to_product_reference": "8Base-RHOS-16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-octavia-tests-tempest-0:1.3.0-1.20210528004838.0ae7f10.el8ost.src as a component of Red Hat OpenStack Platform 16.1", + "product_id": "8Base-RHOS-16.1:python-octavia-tests-tempest-0:1.3.0-1.20210528004838.0ae7f10.el8ost.src" + }, + "product_reference": "python-octavia-tests-tempest-0:1.3.0-1.20210528004838.0ae7f10.el8ost.src", + "relates_to_product_reference": "8Base-RHOS-16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-octavia-tests-tempest-debugsource-0:1.3.0-1.20210528004838.0ae7f10.el8ost.ppc64le as a component of Red Hat OpenStack Platform 16.1", + "product_id": "8Base-RHOS-16.1:python-octavia-tests-tempest-debugsource-0:1.3.0-1.20210528004838.0ae7f10.el8ost.ppc64le" + }, + "product_reference": "python-octavia-tests-tempest-debugsource-0:1.3.0-1.20210528004838.0ae7f10.el8ost.ppc64le", + "relates_to_product_reference": "8Base-RHOS-16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-octavia-tests-tempest-debugsource-0:1.3.0-1.20210528004838.0ae7f10.el8ost.x86_64 as a component of Red Hat OpenStack Platform 16.1", + "product_id": "8Base-RHOS-16.1:python-octavia-tests-tempest-debugsource-0:1.3.0-1.20210528004838.0ae7f10.el8ost.x86_64" + }, + "product_reference": "python-octavia-tests-tempest-debugsource-0:1.3.0-1.20210528004838.0ae7f10.el8ost.x86_64", + "relates_to_product_reference": "8Base-RHOS-16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-octavia-tests-tempest-0:1.3.0-1.20210528004838.0ae7f10.el8ost.noarch as a component of Red Hat OpenStack Platform 16.1", + "product_id": "8Base-RHOS-16.1:python3-octavia-tests-tempest-0:1.3.0-1.20210528004838.0ae7f10.el8ost.noarch" + }, + "product_reference": "python3-octavia-tests-tempest-0:1.3.0-1.20210528004838.0ae7f10.el8ost.noarch", + "relates_to_product_reference": "8Base-RHOS-16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-octavia-tests-tempest-golang-0:1.3.0-1.20210528004838.0ae7f10.el8ost.ppc64le as a component of Red Hat OpenStack Platform 16.1", + "product_id": "8Base-RHOS-16.1:python3-octavia-tests-tempest-golang-0:1.3.0-1.20210528004838.0ae7f10.el8ost.ppc64le" + }, + "product_reference": "python3-octavia-tests-tempest-golang-0:1.3.0-1.20210528004838.0ae7f10.el8ost.ppc64le", + "relates_to_product_reference": "8Base-RHOS-16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-octavia-tests-tempest-golang-0:1.3.0-1.20210528004838.0ae7f10.el8ost.x86_64 as a component of Red Hat OpenStack Platform 16.1", + "product_id": "8Base-RHOS-16.1:python3-octavia-tests-tempest-golang-0:1.3.0-1.20210528004838.0ae7f10.el8ost.x86_64" + }, + "product_reference": "python3-octavia-tests-tempest-golang-0:1.3.0-1.20210528004838.0ae7f10.el8ost.x86_64", + "relates_to_product_reference": "8Base-RHOS-16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-octavia-tests-tempest-golang-debuginfo-0:1.3.0-1.20210528004838.0ae7f10.el8ost.ppc64le as a component of Red Hat OpenStack Platform 16.1", + "product_id": "8Base-RHOS-16.1:python3-octavia-tests-tempest-golang-debuginfo-0:1.3.0-1.20210528004838.0ae7f10.el8ost.ppc64le" + }, + "product_reference": "python3-octavia-tests-tempest-golang-debuginfo-0:1.3.0-1.20210528004838.0ae7f10.el8ost.ppc64le", + "relates_to_product_reference": "8Base-RHOS-16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-octavia-tests-tempest-golang-debuginfo-0:1.3.0-1.20210528004838.0ae7f10.el8ost.x86_64 as a component of Red Hat OpenStack Platform 16.1", + "product_id": "8Base-RHOS-16.1:python3-octavia-tests-tempest-golang-debuginfo-0:1.3.0-1.20210528004838.0ae7f10.el8ost.x86_64" + }, + "product_reference": "python3-octavia-tests-tempest-golang-debuginfo-0:1.3.0-1.20210528004838.0ae7f10.el8ost.x86_64", + "relates_to_product_reference": "8Base-RHOS-16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "collectd-libpod-stats-0:1.0.4-5.el8ost.ppc64le as a component of Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2:collectd-libpod-stats-0:1.0.4-5.el8ost.ppc64le" + }, + "product_reference": "collectd-libpod-stats-0:1.0.4-5.el8ost.ppc64le", + "relates_to_product_reference": "8Base-RHOS-16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "collectd-libpod-stats-0:1.0.4-5.el8ost.src as a component of Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2:collectd-libpod-stats-0:1.0.4-5.el8ost.src" + }, + "product_reference": "collectd-libpod-stats-0:1.0.4-5.el8ost.src", + "relates_to_product_reference": "8Base-RHOS-16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "collectd-libpod-stats-0:1.0.4-5.el8ost.x86_64 as a component of Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2:collectd-libpod-stats-0:1.0.4-5.el8ost.x86_64" + }, + "product_reference": "collectd-libpod-stats-0:1.0.4-5.el8ost.x86_64", + "relates_to_product_reference": "8Base-RHOS-16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "etcd-0:3.3.23-15.el8ost.ppc64le as a component of Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2:etcd-0:3.3.23-15.el8ost.ppc64le" + }, + "product_reference": "etcd-0:3.3.23-15.el8ost.ppc64le", + "relates_to_product_reference": "8Base-RHOS-16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "etcd-0:3.3.23-15.el8ost.src as a component of Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2:etcd-0:3.3.23-15.el8ost.src" + }, + "product_reference": "etcd-0:3.3.23-15.el8ost.src", + "relates_to_product_reference": "8Base-RHOS-16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "etcd-0:3.3.23-15.el8ost.x86_64 as a component of Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2:etcd-0:3.3.23-15.el8ost.x86_64" + }, + "product_reference": "etcd-0:3.3.23-15.el8ost.x86_64", + "relates_to_product_reference": "8Base-RHOS-16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "etcd-debuginfo-0:3.3.23-15.el8ost.ppc64le as a component of Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2:etcd-debuginfo-0:3.3.23-15.el8ost.ppc64le" + }, + "product_reference": "etcd-debuginfo-0:3.3.23-15.el8ost.ppc64le", + "relates_to_product_reference": "8Base-RHOS-16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "etcd-debuginfo-0:3.3.23-15.el8ost.x86_64 as a component of Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2:etcd-debuginfo-0:3.3.23-15.el8ost.x86_64" + }, + "product_reference": "etcd-debuginfo-0:3.3.23-15.el8ost.x86_64", + "relates_to_product_reference": "8Base-RHOS-16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "etcd-debugsource-0:3.3.23-15.el8ost.ppc64le as a component of Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2:etcd-debugsource-0:3.3.23-15.el8ost.ppc64le" + }, + "product_reference": "etcd-debugsource-0:3.3.23-15.el8ost.ppc64le", + "relates_to_product_reference": "8Base-RHOS-16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "etcd-debugsource-0:3.3.23-15.el8ost.x86_64 as a component of Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2:etcd-debugsource-0:3.3.23-15.el8ost.x86_64" + }, + "product_reference": "etcd-debugsource-0:3.3.23-15.el8ost.x86_64", + "relates_to_product_reference": "8Base-RHOS-16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-octavia-tests-tempest-0:1.4.1-2.20230111145026.f7718ef.el8ost.src as a component of Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2:python-octavia-tests-tempest-0:1.4.1-2.20230111145026.f7718ef.el8ost.src" + }, + "product_reference": "python-octavia-tests-tempest-0:1.4.1-2.20230111145026.f7718ef.el8ost.src", + "relates_to_product_reference": "8Base-RHOS-16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-octavia-tests-tempest-debugsource-0:1.4.1-2.20230111145026.f7718ef.el8ost.ppc64le as a component of Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2:python-octavia-tests-tempest-debugsource-0:1.4.1-2.20230111145026.f7718ef.el8ost.ppc64le" + }, + "product_reference": "python-octavia-tests-tempest-debugsource-0:1.4.1-2.20230111145026.f7718ef.el8ost.ppc64le", + "relates_to_product_reference": "8Base-RHOS-16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-octavia-tests-tempest-debugsource-0:1.4.1-2.20230111145026.f7718ef.el8ost.x86_64 as a component of Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2:python-octavia-tests-tempest-debugsource-0:1.4.1-2.20230111145026.f7718ef.el8ost.x86_64" + }, + "product_reference": "python-octavia-tests-tempest-debugsource-0:1.4.1-2.20230111145026.f7718ef.el8ost.x86_64", + "relates_to_product_reference": "8Base-RHOS-16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-octavia-tests-tempest-0:1.4.1-2.20230111145026.f7718ef.el8ost.noarch as a component of Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2:python3-octavia-tests-tempest-0:1.4.1-2.20230111145026.f7718ef.el8ost.noarch" + }, + "product_reference": "python3-octavia-tests-tempest-0:1.4.1-2.20230111145026.f7718ef.el8ost.noarch", + "relates_to_product_reference": "8Base-RHOS-16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-octavia-tests-tempest-golang-0:1.4.1-2.20230111145026.f7718ef.el8ost.ppc64le as a component of Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2:python3-octavia-tests-tempest-golang-0:1.4.1-2.20230111145026.f7718ef.el8ost.ppc64le" + }, + "product_reference": "python3-octavia-tests-tempest-golang-0:1.4.1-2.20230111145026.f7718ef.el8ost.ppc64le", + "relates_to_product_reference": "8Base-RHOS-16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-octavia-tests-tempest-golang-0:1.4.1-2.20230111145026.f7718ef.el8ost.x86_64 as a component of Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2:python3-octavia-tests-tempest-golang-0:1.4.1-2.20230111145026.f7718ef.el8ost.x86_64" + }, + "product_reference": "python3-octavia-tests-tempest-golang-0:1.4.1-2.20230111145026.f7718ef.el8ost.x86_64", + "relates_to_product_reference": "8Base-RHOS-16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-octavia-tests-tempest-golang-debuginfo-0:1.4.1-2.20230111145026.f7718ef.el8ost.ppc64le as a component of Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2:python3-octavia-tests-tempest-golang-debuginfo-0:1.4.1-2.20230111145026.f7718ef.el8ost.ppc64le" + }, + "product_reference": "python3-octavia-tests-tempest-golang-debuginfo-0:1.4.1-2.20230111145026.f7718ef.el8ost.ppc64le", + "relates_to_product_reference": "8Base-RHOS-16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-octavia-tests-tempest-golang-debuginfo-0:1.4.1-2.20230111145026.f7718ef.el8ost.x86_64 as a component of Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2:python3-octavia-tests-tempest-golang-debuginfo-0:1.4.1-2.20230111145026.f7718ef.el8ost.x86_64" + }, + "product_reference": "python3-octavia-tests-tempest-golang-debuginfo-0:1.4.1-2.20230111145026.f7718ef.el8ost.x86_64", + "relates_to_product_reference": "8Base-RHOS-16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/osp-director-agent@sha256:669c11288ec857369274ef710c6f6ce4ca1355f9e18f43cb9bc49ab089d8f4a6_amd64 as a component of Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2:rhosp-rhel8/osp-director-agent@sha256:669c11288ec857369274ef710c6f6ce4ca1355f9e18f43cb9bc49ab089d8f4a6_amd64" + }, + "product_reference": "rhosp-rhel8/osp-director-agent@sha256:669c11288ec857369274ef710c6f6ce4ca1355f9e18f43cb9bc49ab089d8f4a6_amd64", + "relates_to_product_reference": "8Base-RHOS-16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/osp-director-downloader@sha256:79f994acd1e9e2b58143915f73590b1cbb3381b37285088973fef549545b3a8a_amd64 as a component of Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2:rhosp-rhel8/osp-director-downloader@sha256:79f994acd1e9e2b58143915f73590b1cbb3381b37285088973fef549545b3a8a_amd64" + }, + "product_reference": "rhosp-rhel8/osp-director-downloader@sha256:79f994acd1e9e2b58143915f73590b1cbb3381b37285088973fef549545b3a8a_amd64", + "relates_to_product_reference": "8Base-RHOS-16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/osp-director-operator-bundle@sha256:fe042ad7fa6c0b0cc3645205b817c70ed2498ac8f3d992dfaef5ca921b46da7f_amd64 as a component of Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2:rhosp-rhel8/osp-director-operator-bundle@sha256:fe042ad7fa6c0b0cc3645205b817c70ed2498ac8f3d992dfaef5ca921b46da7f_amd64" + }, + "product_reference": "rhosp-rhel8/osp-director-operator-bundle@sha256:fe042ad7fa6c0b0cc3645205b817c70ed2498ac8f3d992dfaef5ca921b46da7f_amd64", + "relates_to_product_reference": "8Base-RHOS-16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/osp-director-operator@sha256:451c7a787a5d8560f71928921eee70875c9c3fa58a606f602d6677a9872fea47_amd64 as a component of Red Hat OpenStack Platform 16.2", + "product_id": "8Base-RHOS-16.2:rhosp-rhel8/osp-director-operator@sha256:451c7a787a5d8560f71928921eee70875c9c3fa58a606f602d6677a9872fea47_amd64" + }, + "product_reference": "rhosp-rhel8/osp-director-operator@sha256:451c7a787a5d8560f71928921eee70875c9c3fa58a606f602d6677a9872fea47_amd64", + "relates_to_product_reference": "8Base-RHOS-16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "collectd-libpod-stats-0:1.0.5-6.el8ost.src as a component of Red Hat OpenStack Platform 17.1", + "product_id": "8Base-RHOS-17.1:collectd-libpod-stats-0:1.0.5-6.el8ost.src" + }, + "product_reference": "collectd-libpod-stats-0:1.0.5-6.el8ost.src", + "relates_to_product_reference": "8Base-RHOS-17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "collectd-libpod-stats-0:1.0.5-6.el8ost.x86_64 as a component of Red Hat OpenStack Platform 17.1", + "product_id": "8Base-RHOS-17.1:collectd-libpod-stats-0:1.0.5-6.el8ost.x86_64" + }, + "product_reference": "collectd-libpod-stats-0:1.0.5-6.el8ost.x86_64", + "relates_to_product_reference": "8Base-RHOS-17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-agent-rhel8@sha256:075e5a497bd37954221774f3b0e97a86f87bf9a8564a87fa8269b2acb01a5fdf_s390x as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-agent-rhel8@sha256:075e5a497bd37954221774f3b0e97a86f87bf9a8564a87fa8269b2acb01a5fdf_s390x" + }, + "product_reference": "rhosdt/jaeger-agent-rhel8@sha256:075e5a497bd37954221774f3b0e97a86f87bf9a8564a87fa8269b2acb01a5fdf_s390x", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-agent-rhel8@sha256:5667bbe8cdf5ef5b93fe2eb51af1b03ac25db50ee7f13a35e97c67968f70d9bc_amd64 as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-agent-rhel8@sha256:5667bbe8cdf5ef5b93fe2eb51af1b03ac25db50ee7f13a35e97c67968f70d9bc_amd64" + }, + "product_reference": "rhosdt/jaeger-agent-rhel8@sha256:5667bbe8cdf5ef5b93fe2eb51af1b03ac25db50ee7f13a35e97c67968f70d9bc_amd64", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-agent-rhel8@sha256:b57f6bbb0fd714828d0b9bf4759a04cad8ba98db394dbb79d8a5a9d2c48a8383_ppc64le as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-agent-rhel8@sha256:b57f6bbb0fd714828d0b9bf4759a04cad8ba98db394dbb79d8a5a9d2c48a8383_ppc64le" + }, + "product_reference": "rhosdt/jaeger-agent-rhel8@sha256:b57f6bbb0fd714828d0b9bf4759a04cad8ba98db394dbb79d8a5a9d2c48a8383_ppc64le", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-all-in-one-rhel8@sha256:21de0110a12e568d4fa9a814b1f3fb79b132be34770f795c6f43922a454bba34_ppc64le as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-all-in-one-rhel8@sha256:21de0110a12e568d4fa9a814b1f3fb79b132be34770f795c6f43922a454bba34_ppc64le" + }, + "product_reference": "rhosdt/jaeger-all-in-one-rhel8@sha256:21de0110a12e568d4fa9a814b1f3fb79b132be34770f795c6f43922a454bba34_ppc64le", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-all-in-one-rhel8@sha256:3555c97e1edbc18ecc7ad756dae043a55215bcacd31e70a41c3e444a4b5bac98_s390x as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-all-in-one-rhel8@sha256:3555c97e1edbc18ecc7ad756dae043a55215bcacd31e70a41c3e444a4b5bac98_s390x" + }, + "product_reference": "rhosdt/jaeger-all-in-one-rhel8@sha256:3555c97e1edbc18ecc7ad756dae043a55215bcacd31e70a41c3e444a4b5bac98_s390x", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-all-in-one-rhel8@sha256:dd221ad03daa551a30a5b3631b9a489ab29147f4d0d380f317ee6e8999c5638f_amd64 as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-all-in-one-rhel8@sha256:dd221ad03daa551a30a5b3631b9a489ab29147f4d0d380f317ee6e8999c5638f_amd64" + }, + "product_reference": "rhosdt/jaeger-all-in-one-rhel8@sha256:dd221ad03daa551a30a5b3631b9a489ab29147f4d0d380f317ee6e8999c5638f_amd64", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-collector-rhel8@sha256:20dfc6ffe41e4dceb854a2fa99cad5d6a9b48e8bfc51329fed767f47b7cb461f_ppc64le as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-collector-rhel8@sha256:20dfc6ffe41e4dceb854a2fa99cad5d6a9b48e8bfc51329fed767f47b7cb461f_ppc64le" + }, + "product_reference": "rhosdt/jaeger-collector-rhel8@sha256:20dfc6ffe41e4dceb854a2fa99cad5d6a9b48e8bfc51329fed767f47b7cb461f_ppc64le", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-collector-rhel8@sha256:9551931c00cc1052ddb32310153352d56c70a50826c29bcee53fc048c6995399_amd64 as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-collector-rhel8@sha256:9551931c00cc1052ddb32310153352d56c70a50826c29bcee53fc048c6995399_amd64" + }, + "product_reference": "rhosdt/jaeger-collector-rhel8@sha256:9551931c00cc1052ddb32310153352d56c70a50826c29bcee53fc048c6995399_amd64", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-collector-rhel8@sha256:a3224c5e1b39ca4a33f806a5930dd37304578420f382c43158ee290fffd21533_s390x as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-collector-rhel8@sha256:a3224c5e1b39ca4a33f806a5930dd37304578420f382c43158ee290fffd21533_s390x" + }, + "product_reference": "rhosdt/jaeger-collector-rhel8@sha256:a3224c5e1b39ca4a33f806a5930dd37304578420f382c43158ee290fffd21533_s390x", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-es-index-cleaner-rhel8@sha256:699727f91948e7a870cdae3f8d3cf88cdf1df934ea6c4e5e1a86467b7ea62da3_amd64 as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-es-index-cleaner-rhel8@sha256:699727f91948e7a870cdae3f8d3cf88cdf1df934ea6c4e5e1a86467b7ea62da3_amd64" + }, + "product_reference": "rhosdt/jaeger-es-index-cleaner-rhel8@sha256:699727f91948e7a870cdae3f8d3cf88cdf1df934ea6c4e5e1a86467b7ea62da3_amd64", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-es-index-cleaner-rhel8@sha256:6c1435712a36384a562448ec972ac39378b1e976490146cda1c98b510c76d849_s390x as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-es-index-cleaner-rhel8@sha256:6c1435712a36384a562448ec972ac39378b1e976490146cda1c98b510c76d849_s390x" + }, + "product_reference": "rhosdt/jaeger-es-index-cleaner-rhel8@sha256:6c1435712a36384a562448ec972ac39378b1e976490146cda1c98b510c76d849_s390x", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-es-index-cleaner-rhel8@sha256:c53876745a6ae8a8ca6ec74d22f8cae148cf4b99e45c3efdcca323b6fbb4ad0e_ppc64le as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-es-index-cleaner-rhel8@sha256:c53876745a6ae8a8ca6ec74d22f8cae148cf4b99e45c3efdcca323b6fbb4ad0e_ppc64le" + }, + "product_reference": "rhosdt/jaeger-es-index-cleaner-rhel8@sha256:c53876745a6ae8a8ca6ec74d22f8cae148cf4b99e45c3efdcca323b6fbb4ad0e_ppc64le", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-es-rollover-rhel8@sha256:0b0b4bb1d943449bbfe99653eb918583b38e6e7fc9317653acf487bb33715fcf_amd64 as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-es-rollover-rhel8@sha256:0b0b4bb1d943449bbfe99653eb918583b38e6e7fc9317653acf487bb33715fcf_amd64" + }, + "product_reference": "rhosdt/jaeger-es-rollover-rhel8@sha256:0b0b4bb1d943449bbfe99653eb918583b38e6e7fc9317653acf487bb33715fcf_amd64", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-es-rollover-rhel8@sha256:8bfdcdb4432975726865d321037b600260c4df1b3a1811d1c85523d61e91bccc_ppc64le as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-es-rollover-rhel8@sha256:8bfdcdb4432975726865d321037b600260c4df1b3a1811d1c85523d61e91bccc_ppc64le" + }, + "product_reference": "rhosdt/jaeger-es-rollover-rhel8@sha256:8bfdcdb4432975726865d321037b600260c4df1b3a1811d1c85523d61e91bccc_ppc64le", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-es-rollover-rhel8@sha256:fbce2ceb4a0c5231823c931b87726b7a6a5e5f0c87ba93abad09acb11661a675_s390x as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-es-rollover-rhel8@sha256:fbce2ceb4a0c5231823c931b87726b7a6a5e5f0c87ba93abad09acb11661a675_s390x" + }, + "product_reference": "rhosdt/jaeger-es-rollover-rhel8@sha256:fbce2ceb4a0c5231823c931b87726b7a6a5e5f0c87ba93abad09acb11661a675_s390x", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-ingester-rhel8@sha256:0d7c0ff5a6c0e645856e1550bfb8acea763d013e4b706b7da972094c26d8a3ba_ppc64le as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-ingester-rhel8@sha256:0d7c0ff5a6c0e645856e1550bfb8acea763d013e4b706b7da972094c26d8a3ba_ppc64le" + }, + "product_reference": "rhosdt/jaeger-ingester-rhel8@sha256:0d7c0ff5a6c0e645856e1550bfb8acea763d013e4b706b7da972094c26d8a3ba_ppc64le", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-ingester-rhel8@sha256:27b6554e746eae26692298e78d623b3b7dc6ba53330c5e398beacd8d41512732_amd64 as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-ingester-rhel8@sha256:27b6554e746eae26692298e78d623b3b7dc6ba53330c5e398beacd8d41512732_amd64" + }, + "product_reference": "rhosdt/jaeger-ingester-rhel8@sha256:27b6554e746eae26692298e78d623b3b7dc6ba53330c5e398beacd8d41512732_amd64", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-ingester-rhel8@sha256:498a6186790b5e8dc2ff8bc49f5a163a51b19ee36c5030b6ae44fd0c1dbe4139_s390x as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-ingester-rhel8@sha256:498a6186790b5e8dc2ff8bc49f5a163a51b19ee36c5030b6ae44fd0c1dbe4139_s390x" + }, + "product_reference": "rhosdt/jaeger-ingester-rhel8@sha256:498a6186790b5e8dc2ff8bc49f5a163a51b19ee36c5030b6ae44fd0c1dbe4139_s390x", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-operator-bundle@sha256:1a5c829466a50a4ed1b509fa83b1ffacb5290840e64c1f805e462c533a26c075_s390x as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-operator-bundle@sha256:1a5c829466a50a4ed1b509fa83b1ffacb5290840e64c1f805e462c533a26c075_s390x" + }, + "product_reference": "rhosdt/jaeger-operator-bundle@sha256:1a5c829466a50a4ed1b509fa83b1ffacb5290840e64c1f805e462c533a26c075_s390x", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-operator-bundle@sha256:1bbbe479ae64cb639bde227e52bb60c55a855fed9109c0ba850e2b1474c8cf5d_ppc64le as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-operator-bundle@sha256:1bbbe479ae64cb639bde227e52bb60c55a855fed9109c0ba850e2b1474c8cf5d_ppc64le" + }, + "product_reference": "rhosdt/jaeger-operator-bundle@sha256:1bbbe479ae64cb639bde227e52bb60c55a855fed9109c0ba850e2b1474c8cf5d_ppc64le", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-operator-bundle@sha256:f2ebe6b3b913ae5d0df0b985d4c2a93fc0f9dd90e97cdc2d39fdbb40a92c494a_amd64 as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-operator-bundle@sha256:f2ebe6b3b913ae5d0df0b985d4c2a93fc0f9dd90e97cdc2d39fdbb40a92c494a_amd64" + }, + "product_reference": "rhosdt/jaeger-operator-bundle@sha256:f2ebe6b3b913ae5d0df0b985d4c2a93fc0f9dd90e97cdc2d39fdbb40a92c494a_amd64", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-query-rhel8@sha256:40183936d78c62c1b34807bf21c6fa3570ab5a4c3fdcf2c708b6e2225addf88d_ppc64le as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-query-rhel8@sha256:40183936d78c62c1b34807bf21c6fa3570ab5a4c3fdcf2c708b6e2225addf88d_ppc64le" + }, + "product_reference": "rhosdt/jaeger-query-rhel8@sha256:40183936d78c62c1b34807bf21c6fa3570ab5a4c3fdcf2c708b6e2225addf88d_ppc64le", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-query-rhel8@sha256:db25d6492ba18bf18fe8f63c86a9d565938da15c7c639b77d6b9285db0174094_amd64 as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-query-rhel8@sha256:db25d6492ba18bf18fe8f63c86a9d565938da15c7c639b77d6b9285db0174094_amd64" + }, + "product_reference": "rhosdt/jaeger-query-rhel8@sha256:db25d6492ba18bf18fe8f63c86a9d565938da15c7c639b77d6b9285db0174094_amd64", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-query-rhel8@sha256:ebc33a6ada6c578e6b113bdfa3e0a9570f15e75cb3e87fa99a3ec23056d58f02_s390x as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-query-rhel8@sha256:ebc33a6ada6c578e6b113bdfa3e0a9570f15e75cb3e87fa99a3ec23056d58f02_s390x" + }, + "product_reference": "rhosdt/jaeger-query-rhel8@sha256:ebc33a6ada6c578e6b113bdfa3e0a9570f15e75cb3e87fa99a3ec23056d58f02_s390x", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-rhel8-operator@sha256:17b698d2b2bde4985346b6ffe28c4b0a71e0a6fec4937144aef5db4ca20f60e4_s390x as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-rhel8-operator@sha256:17b698d2b2bde4985346b6ffe28c4b0a71e0a6fec4937144aef5db4ca20f60e4_s390x" + }, + "product_reference": "rhosdt/jaeger-rhel8-operator@sha256:17b698d2b2bde4985346b6ffe28c4b0a71e0a6fec4937144aef5db4ca20f60e4_s390x", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-rhel8-operator@sha256:c3b11d9f4e98457310bd5a2a782ef02c85dabd0a97e954a5c385f648e168b9ba_amd64 as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-rhel8-operator@sha256:c3b11d9f4e98457310bd5a2a782ef02c85dabd0a97e954a5c385f648e168b9ba_amd64" + }, + "product_reference": "rhosdt/jaeger-rhel8-operator@sha256:c3b11d9f4e98457310bd5a2a782ef02c85dabd0a97e954a5c385f648e168b9ba_amd64", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/jaeger-rhel8-operator@sha256:e4722e3dbb65c43212e1f86bf5b24779879288a9044d57f2c33aed5baf1b2d33_ppc64le as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/jaeger-rhel8-operator@sha256:e4722e3dbb65c43212e1f86bf5b24779879288a9044d57f2c33aed5baf1b2d33_ppc64le" + }, + "product_reference": "rhosdt/jaeger-rhel8-operator@sha256:e4722e3dbb65c43212e1f86bf5b24779879288a9044d57f2c33aed5baf1b2d33_ppc64le", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/opentelemetry-collector-rhel8@sha256:97a23c3fdf791b59df6bc6e6f9311599ba2f3900aebe64ce4eaf8f77a7f76336_ppc64le as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/opentelemetry-collector-rhel8@sha256:97a23c3fdf791b59df6bc6e6f9311599ba2f3900aebe64ce4eaf8f77a7f76336_ppc64le" + }, + "product_reference": "rhosdt/opentelemetry-collector-rhel8@sha256:97a23c3fdf791b59df6bc6e6f9311599ba2f3900aebe64ce4eaf8f77a7f76336_ppc64le", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/opentelemetry-collector-rhel8@sha256:b9f94f8023b1e904e874ff67b5829c3c0e0a44aaeda6e88f8f34fa92d5f8a62c_amd64 as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/opentelemetry-collector-rhel8@sha256:b9f94f8023b1e904e874ff67b5829c3c0e0a44aaeda6e88f8f34fa92d5f8a62c_amd64" + }, + "product_reference": "rhosdt/opentelemetry-collector-rhel8@sha256:b9f94f8023b1e904e874ff67b5829c3c0e0a44aaeda6e88f8f34fa92d5f8a62c_amd64", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/opentelemetry-collector-rhel8@sha256:d68e45ac3dd60f05aab018cba084ff93195bf9175ba642164cb062f7a4b9d71f_s390x as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/opentelemetry-collector-rhel8@sha256:d68e45ac3dd60f05aab018cba084ff93195bf9175ba642164cb062f7a4b9d71f_s390x" + }, + "product_reference": "rhosdt/opentelemetry-collector-rhel8@sha256:d68e45ac3dd60f05aab018cba084ff93195bf9175ba642164cb062f7a4b9d71f_s390x", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/opentelemetry-operator-bundle@sha256:9b88c187427bf315cc27690e22425000b87de35b40b04e566152eaf5319043c6_s390x as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/opentelemetry-operator-bundle@sha256:9b88c187427bf315cc27690e22425000b87de35b40b04e566152eaf5319043c6_s390x" + }, + "product_reference": "rhosdt/opentelemetry-operator-bundle@sha256:9b88c187427bf315cc27690e22425000b87de35b40b04e566152eaf5319043c6_s390x", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/opentelemetry-operator-bundle@sha256:9de35e845d96684ca3009299dc5034742031f7632f839f877d812a243fd17f75_ppc64le as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/opentelemetry-operator-bundle@sha256:9de35e845d96684ca3009299dc5034742031f7632f839f877d812a243fd17f75_ppc64le" + }, + "product_reference": "rhosdt/opentelemetry-operator-bundle@sha256:9de35e845d96684ca3009299dc5034742031f7632f839f877d812a243fd17f75_ppc64le", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/opentelemetry-operator-bundle@sha256:dcfa33e5ff47f227e6a27d3babd88b02d269e96fc040eb0bc4301edd62dd404b_amd64 as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/opentelemetry-operator-bundle@sha256:dcfa33e5ff47f227e6a27d3babd88b02d269e96fc040eb0bc4301edd62dd404b_amd64" + }, + "product_reference": "rhosdt/opentelemetry-operator-bundle@sha256:dcfa33e5ff47f227e6a27d3babd88b02d269e96fc040eb0bc4301edd62dd404b_amd64", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/opentelemetry-rhel8-operator@sha256:5a2e8e06addd84a2c83976a57b84187f8450f45244bd7174b0078d2b2d9e5635_ppc64le as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/opentelemetry-rhel8-operator@sha256:5a2e8e06addd84a2c83976a57b84187f8450f45244bd7174b0078d2b2d9e5635_ppc64le" + }, + "product_reference": "rhosdt/opentelemetry-rhel8-operator@sha256:5a2e8e06addd84a2c83976a57b84187f8450f45244bd7174b0078d2b2d9e5635_ppc64le", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/opentelemetry-rhel8-operator@sha256:b5f01804dc8b8e1b0cc179dc79aff1298fe29c2239d694fedf958adee7e27ec3_amd64 as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/opentelemetry-rhel8-operator@sha256:b5f01804dc8b8e1b0cc179dc79aff1298fe29c2239d694fedf958adee7e27ec3_amd64" + }, + "product_reference": "rhosdt/opentelemetry-rhel8-operator@sha256:b5f01804dc8b8e1b0cc179dc79aff1298fe29c2239d694fedf958adee7e27ec3_amd64", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/opentelemetry-rhel8-operator@sha256:c940703247b04c520a51bf76f09a29eaa2e30d4e4d40db14f07e0ceba89eefbd_s390x as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/opentelemetry-rhel8-operator@sha256:c940703247b04c520a51bf76f09a29eaa2e30d4e4d40db14f07e0ceba89eefbd_s390x" + }, + "product_reference": "rhosdt/opentelemetry-rhel8-operator@sha256:c940703247b04c520a51bf76f09a29eaa2e30d4e4d40db14f07e0ceba89eefbd_s390x", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/tempo-gateway-opa-rhel8@sha256:f39bf591bff322ca89eddc61dc1b8ed00b018ca0aac39228c3cc33368c9928e6_ppc64le as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/tempo-gateway-opa-rhel8@sha256:f39bf591bff322ca89eddc61dc1b8ed00b018ca0aac39228c3cc33368c9928e6_ppc64le" + }, + "product_reference": "rhosdt/tempo-gateway-opa-rhel8@sha256:f39bf591bff322ca89eddc61dc1b8ed00b018ca0aac39228c3cc33368c9928e6_ppc64le", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/tempo-gateway-opa-rhel8@sha256:fc8a5757270970c2bcd42f659bdde3d9edebd0054cbd01541479c9aa51135cc8_s390x as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/tempo-gateway-opa-rhel8@sha256:fc8a5757270970c2bcd42f659bdde3d9edebd0054cbd01541479c9aa51135cc8_s390x" + }, + "product_reference": "rhosdt/tempo-gateway-opa-rhel8@sha256:fc8a5757270970c2bcd42f659bdde3d9edebd0054cbd01541479c9aa51135cc8_s390x", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/tempo-gateway-opa-rhel8@sha256:ff6ebe99d093908235e41a3fc84a13ae4d4b647063d0a48925b5aaa0d3017724_amd64 as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/tempo-gateway-opa-rhel8@sha256:ff6ebe99d093908235e41a3fc84a13ae4d4b647063d0a48925b5aaa0d3017724_amd64" + }, + "product_reference": "rhosdt/tempo-gateway-opa-rhel8@sha256:ff6ebe99d093908235e41a3fc84a13ae4d4b647063d0a48925b5aaa0d3017724_amd64", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/tempo-gateway-rhel8@sha256:4967482a0ef9ef89de4583d7ec9f6666e2334dacb099d5cb556f93f1118f5809_s390x as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/tempo-gateway-rhel8@sha256:4967482a0ef9ef89de4583d7ec9f6666e2334dacb099d5cb556f93f1118f5809_s390x" + }, + "product_reference": "rhosdt/tempo-gateway-rhel8@sha256:4967482a0ef9ef89de4583d7ec9f6666e2334dacb099d5cb556f93f1118f5809_s390x", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/tempo-gateway-rhel8@sha256:d5e00c9ebe3d8d4b009f1f6d7383d453ce9186e7e6ec1fc4c834b86461e831d9_ppc64le as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/tempo-gateway-rhel8@sha256:d5e00c9ebe3d8d4b009f1f6d7383d453ce9186e7e6ec1fc4c834b86461e831d9_ppc64le" + }, + "product_reference": "rhosdt/tempo-gateway-rhel8@sha256:d5e00c9ebe3d8d4b009f1f6d7383d453ce9186e7e6ec1fc4c834b86461e831d9_ppc64le", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/tempo-gateway-rhel8@sha256:ec8e340dc736f5f1d8f0ac4f0b5d767660bbcdc96e2dbc48d8349f20c11e5c46_amd64 as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/tempo-gateway-rhel8@sha256:ec8e340dc736f5f1d8f0ac4f0b5d767660bbcdc96e2dbc48d8349f20c11e5c46_amd64" + }, + "product_reference": "rhosdt/tempo-gateway-rhel8@sha256:ec8e340dc736f5f1d8f0ac4f0b5d767660bbcdc96e2dbc48d8349f20c11e5c46_amd64", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/tempo-operator-bundle@sha256:10394c478c148eaf171f328289b1bbec15b357bd1d5eb473abb31c2cd6cb5643_ppc64le as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/tempo-operator-bundle@sha256:10394c478c148eaf171f328289b1bbec15b357bd1d5eb473abb31c2cd6cb5643_ppc64le" + }, + "product_reference": "rhosdt/tempo-operator-bundle@sha256:10394c478c148eaf171f328289b1bbec15b357bd1d5eb473abb31c2cd6cb5643_ppc64le", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/tempo-operator-bundle@sha256:4fb7b99e4156f1c0e67708527ba6336fab647a717e6cad08dac93d191e820c70_s390x as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/tempo-operator-bundle@sha256:4fb7b99e4156f1c0e67708527ba6336fab647a717e6cad08dac93d191e820c70_s390x" + }, + "product_reference": "rhosdt/tempo-operator-bundle@sha256:4fb7b99e4156f1c0e67708527ba6336fab647a717e6cad08dac93d191e820c70_s390x", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/tempo-operator-bundle@sha256:c54b08652dfdecd90c604e144e08da7eb6908f89cf4b5fe9bcb7844d28a2a002_amd64 as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/tempo-operator-bundle@sha256:c54b08652dfdecd90c604e144e08da7eb6908f89cf4b5fe9bcb7844d28a2a002_amd64" + }, + "product_reference": "rhosdt/tempo-operator-bundle@sha256:c54b08652dfdecd90c604e144e08da7eb6908f89cf4b5fe9bcb7844d28a2a002_amd64", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/tempo-query-rhel8@sha256:307638d85cab7d8502cd6acd45d626a6e26a3c37ab3fb008946e80eee2e4a372_s390x as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/tempo-query-rhel8@sha256:307638d85cab7d8502cd6acd45d626a6e26a3c37ab3fb008946e80eee2e4a372_s390x" + }, + "product_reference": "rhosdt/tempo-query-rhel8@sha256:307638d85cab7d8502cd6acd45d626a6e26a3c37ab3fb008946e80eee2e4a372_s390x", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/tempo-query-rhel8@sha256:8c0c9b1534e1c2e4c513b8cef10df8daf9aed0e1798b563667b50c3e8554979b_amd64 as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/tempo-query-rhel8@sha256:8c0c9b1534e1c2e4c513b8cef10df8daf9aed0e1798b563667b50c3e8554979b_amd64" + }, + "product_reference": "rhosdt/tempo-query-rhel8@sha256:8c0c9b1534e1c2e4c513b8cef10df8daf9aed0e1798b563667b50c3e8554979b_amd64", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/tempo-query-rhel8@sha256:b5b4d89e126c76fa960a5ac2ba4b63f0e74ab5439cac372e1e0ebe81c1315b3e_ppc64le as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/tempo-query-rhel8@sha256:b5b4d89e126c76fa960a5ac2ba4b63f0e74ab5439cac372e1e0ebe81c1315b3e_ppc64le" + }, + "product_reference": "rhosdt/tempo-query-rhel8@sha256:b5b4d89e126c76fa960a5ac2ba4b63f0e74ab5439cac372e1e0ebe81c1315b3e_ppc64le", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/tempo-rhel8-operator@sha256:4d62e2ee295809b3cfd0f663892226f1c1f5cf4ccb841fb322149b1d4088f135_amd64 as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/tempo-rhel8-operator@sha256:4d62e2ee295809b3cfd0f663892226f1c1f5cf4ccb841fb322149b1d4088f135_amd64" + }, + "product_reference": "rhosdt/tempo-rhel8-operator@sha256:4d62e2ee295809b3cfd0f663892226f1c1f5cf4ccb841fb322149b1d4088f135_amd64", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/tempo-rhel8-operator@sha256:946413dd5505c92b1eb0c3343fedf7c99ed104cd51933b8ad0dad92c9d85e1f1_s390x as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/tempo-rhel8-operator@sha256:946413dd5505c92b1eb0c3343fedf7c99ed104cd51933b8ad0dad92c9d85e1f1_s390x" + }, + "product_reference": "rhosdt/tempo-rhel8-operator@sha256:946413dd5505c92b1eb0c3343fedf7c99ed104cd51933b8ad0dad92c9d85e1f1_s390x", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/tempo-rhel8-operator@sha256:f870fcbe6367921e167ee564e04db11daeaeafce3fa970aa28d8f8239be6391f_ppc64le as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/tempo-rhel8-operator@sha256:f870fcbe6367921e167ee564e04db11daeaeafce3fa970aa28d8f8239be6391f_ppc64le" + }, + "product_reference": "rhosdt/tempo-rhel8-operator@sha256:f870fcbe6367921e167ee564e04db11daeaeafce3fa970aa28d8f8239be6391f_ppc64le", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/tempo-rhel8@sha256:81b5694019779cea93a418e6edf684f54525dcb7da9a4090c7b886184bebe605_ppc64le as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/tempo-rhel8@sha256:81b5694019779cea93a418e6edf684f54525dcb7da9a4090c7b886184bebe605_ppc64le" + }, + "product_reference": "rhosdt/tempo-rhel8@sha256:81b5694019779cea93a418e6edf684f54525dcb7da9a4090c7b886184bebe605_ppc64le", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/tempo-rhel8@sha256:e77206dcf8a958c662f816161d9fa942eb7cd1749aa165075805e0add74e4cfb_amd64 as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/tempo-rhel8@sha256:e77206dcf8a958c662f816161d9fa942eb7cd1749aa165075805e0add74e4cfb_amd64" + }, + "product_reference": "rhosdt/tempo-rhel8@sha256:e77206dcf8a958c662f816161d9fa942eb7cd1749aa165075805e0add74e4cfb_amd64", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosdt/tempo-rhel8@sha256:efb15ac8f44d2ddcc0ac0913131df69f31ebd4aad76c503364b5efb517eabf40_s390x as a component of Red Hat OpenShift distributed tracing 2.9", + "product_id": "8Base-RHOSDT-2.9:rhosdt/tempo-rhel8@sha256:efb15ac8f44d2ddcc0ac0913131df69f31ebd4aad76c503364b5efb517eabf40_s390x" + }, + "product_reference": "rhosdt/tempo-rhel8@sha256:efb15ac8f44d2ddcc0ac0913131df69f31ebd4aad76c503364b5efb517eabf40_s390x", + "relates_to_product_reference": "8Base-RHOSDT-2.9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:bpftool-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "bpftool-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:bpftool-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "bpftool-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:bpftool-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "bpftool-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:bpftool-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "bpftool-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:4.18.0-372.76.1.el8_6.src as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-0:4.18.0-372.76.1.el8_6.src" + }, + "product_reference": "kernel-0:4.18.0-372.76.1.el8_6.src", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-core-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-core-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-core-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-core-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-core-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-core-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-core-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-core-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-core-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-core-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-core-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-core-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-cross-headers-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-cross-headers-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-cross-headers-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-cross-headers-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-debug-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-debug-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-debug-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-debug-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-core-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-core-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-core-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-core-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-devel-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-devel-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-devel-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-devel-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-modules-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-modules-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-modules-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-modules-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debuginfo-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-common-aarch64-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debuginfo-common-aarch64-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-debuginfo-common-aarch64-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-common-ppc64le-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debuginfo-common-ppc64le-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-debuginfo-common-ppc64le-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-common-s390x-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debuginfo-common-s390x-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-debuginfo-common-s390x-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-common-x86_64-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-debuginfo-common-x86_64-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-debuginfo-common-x86_64-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-devel-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-devel-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-devel-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-devel-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-devel-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-devel-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-devel-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-devel-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-doc-0:4.18.0-372.76.1.el8_6.noarch as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-doc-0:4.18.0-372.76.1.el8_6.noarch" + }, + "product_reference": "kernel-doc-0:4.18.0-372.76.1.el8_6.noarch", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-headers-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-headers-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-headers-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-headers-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-headers-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-headers-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-headers-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-headers-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-headers-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-headers-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-headers-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-headers-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-ipaclones-internal-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-ipaclones-internal-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-ipaclones-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-ipaclones-internal-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-ipaclones-internal-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-ipaclones-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-modules-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-modules-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-modules-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-modules-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-modules-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-modules-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-modules-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-modules-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-modules-extra-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-modules-extra-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-modules-extra-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-modules-extra-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-modules-internal-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-modules-internal-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-modules-internal-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-modules-internal-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-0:4.18.0-372.76.1.rt7.235.el8_6.src as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-rt-0:4.18.0-372.76.1.rt7.235.el8_6.src" + }, + "product_reference": "kernel-rt-0:4.18.0-372.76.1.rt7.235.el8_6.src", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-rt-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-core-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-rt-core-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-core-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-rt-debug-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-debug-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-core-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-rt-debug-core-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-debug-core-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-debuginfo-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-rt-debug-debuginfo-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-debug-debuginfo-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-devel-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-rt-debug-devel-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-debug-devel-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-kvm-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-rt-debug-kvm-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-debug-kvm-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-modules-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-rt-debug-modules-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-debug-modules-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-modules-extra-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-rt-debug-modules-extra-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-debug-modules-extra-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-modules-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-rt-debug-modules-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-debug-modules-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debuginfo-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-rt-debuginfo-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-debuginfo-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debuginfo-common-x86_64-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-rt-debuginfo-common-x86_64-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-debuginfo-common-x86_64-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-devel-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-rt-devel-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-devel-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-kvm-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-rt-kvm-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-kvm-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-modules-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-rt-modules-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-modules-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-modules-extra-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-rt-modules-extra-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-modules-extra-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-modules-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-rt-modules-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-modules-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-selftests-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-rt-selftests-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-selftests-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-tools-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-tools-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-tools-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-tools-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-tools-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-tools-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-tools-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-tools-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-tools-libs-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-tools-libs-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-tools-libs-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-zfcpdump-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-zfcpdump-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-core-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-zfcpdump-core-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-zfcpdump-core-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-debuginfo-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-zfcpdump-debuginfo-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-zfcpdump-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-devel-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-zfcpdump-devel-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-zfcpdump-devel-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-modules-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-zfcpdump-modules-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-zfcpdump-modules-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-modules-extra-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-zfcpdump-modules-extra-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-zfcpdump-modules-extra-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-modules-internal-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:kernel-zfcpdump-modules-internal-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-zfcpdump-modules-internal-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.src as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.src" + }, + "product_reference": "openshift-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.aarch64" + }, + "product_reference": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.ppc64le" + }, + "product_reference": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.s390x" + }, + "product_reference": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.src as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.src" + }, + "product_reference": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.x86_64" + }, + "product_reference": "openshift-clients-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-redistributable-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift-clients-redistributable-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.x86_64" + }, + "product_reference": "openshift-clients-redistributable-0:4.11.0-202310131344.p0.g3470d04.assembly.stream.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-hyperkube-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift-hyperkube-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.aarch64" + }, + "product_reference": "openshift-hyperkube-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-hyperkube-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift-hyperkube-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.ppc64le" + }, + "product_reference": "openshift-hyperkube-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-hyperkube-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift-hyperkube-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.s390x" + }, + "product_reference": "openshift-hyperkube-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-hyperkube-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift-hyperkube-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.x86_64" + }, + "product_reference": "openshift-hyperkube-0:4.11.0-202310140343.p0.gec2a592.assembly.stream.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:6c21303c0bab51cc5e19cfaba71987d1eb791dea378519d1b9eaa8b4860d8262_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/cloud-network-config-controller-rhel8@sha256:6c21303c0bab51cc5e19cfaba71987d1eb791dea378519d1b9eaa8b4860d8262_amd64" + }, + "product_reference": "openshift4/cloud-network-config-controller-rhel8@sha256:6c21303c0bab51cc5e19cfaba71987d1eb791dea378519d1b9eaa8b4860d8262_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:7426899efa4b4d01e043b69465633739099dceaec4abd208c76057caddef7815_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/cloud-network-config-controller-rhel8@sha256:7426899efa4b4d01e043b69465633739099dceaec4abd208c76057caddef7815_ppc64le" + }, + "product_reference": "openshift4/cloud-network-config-controller-rhel8@sha256:7426899efa4b4d01e043b69465633739099dceaec4abd208c76057caddef7815_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:95cf7456d548f8a2373a0fa458b493ee59c3263d8e928e885a1e0461f26b1429_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/cloud-network-config-controller-rhel8@sha256:95cf7456d548f8a2373a0fa458b493ee59c3263d8e928e885a1e0461f26b1429_arm64" + }, + "product_reference": "openshift4/cloud-network-config-controller-rhel8@sha256:95cf7456d548f8a2373a0fa458b493ee59c3263d8e928e885a1e0461f26b1429_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:ef4af9682f3bdbfd2adb76ee3b89c51bf9edbda5be47f00c8bc4f319637a4ef2_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/cloud-network-config-controller-rhel8@sha256:ef4af9682f3bdbfd2adb76ee3b89c51bf9edbda5be47f00c8bc4f319637a4ef2_s390x" + }, + "product_reference": "openshift4/cloud-network-config-controller-rhel8@sha256:ef4af9682f3bdbfd2adb76ee3b89c51bf9edbda5be47f00c8bc4f319637a4ef2_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/driver-toolkit-rhel8@sha256:7c8420b00c90ef520329590479845e2d85f5495fd498f2fc1961b1da616a7bbc_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/driver-toolkit-rhel8@sha256:7c8420b00c90ef520329590479845e2d85f5495fd498f2fc1961b1da616a7bbc_arm64" + }, + "product_reference": "openshift4/driver-toolkit-rhel8@sha256:7c8420b00c90ef520329590479845e2d85f5495fd498f2fc1961b1da616a7bbc_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/driver-toolkit-rhel8@sha256:953076cf56eaf0b6989cd37599c60ed166b61e46d776dde4ce620ebf2b1c1e68_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/driver-toolkit-rhel8@sha256:953076cf56eaf0b6989cd37599c60ed166b61e46d776dde4ce620ebf2b1c1e68_amd64" + }, + "product_reference": "openshift4/driver-toolkit-rhel8@sha256:953076cf56eaf0b6989cd37599c60ed166b61e46d776dde4ce620ebf2b1c1e68_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/driver-toolkit-rhel8@sha256:c198039813bf19c4e9e466115e4a5ba0e348f53a454c058d96acdbb6e10665e8_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/driver-toolkit-rhel8@sha256:c198039813bf19c4e9e466115e4a5ba0e348f53a454c058d96acdbb6e10665e8_s390x" + }, + "product_reference": "openshift4/driver-toolkit-rhel8@sha256:c198039813bf19c4e9e466115e4a5ba0e348f53a454c058d96acdbb6e10665e8_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/driver-toolkit-rhel8@sha256:eb158f2f9439aac6c216b8ddcba388f9bcf39f36295393dcc5afa20ac91db7d6_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/driver-toolkit-rhel8@sha256:eb158f2f9439aac6c216b8ddcba388f9bcf39f36295393dcc5afa20ac91db7d6_ppc64le" + }, + "product_reference": "openshift4/driver-toolkit-rhel8@sha256:eb158f2f9439aac6c216b8ddcba388f9bcf39f36295393dcc5afa20ac91db7d6_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/egress-router-cni-rhel8@sha256:bf5c2e057064fad9f11a4e4f59da182576dca5adbec274898bd0e9f1ab0b2d12_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/egress-router-cni-rhel8@sha256:bf5c2e057064fad9f11a4e4f59da182576dca5adbec274898bd0e9f1ab0b2d12_s390x" + }, + "product_reference": "openshift4/egress-router-cni-rhel8@sha256:bf5c2e057064fad9f11a4e4f59da182576dca5adbec274898bd0e9f1ab0b2d12_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/egress-router-cni-rhel8@sha256:c1077bbce8ba2b5285129978038e100ed7102609e8da9e28f6252a2b76d6c210_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/egress-router-cni-rhel8@sha256:c1077bbce8ba2b5285129978038e100ed7102609e8da9e28f6252a2b76d6c210_ppc64le" + }, + "product_reference": "openshift4/egress-router-cni-rhel8@sha256:c1077bbce8ba2b5285129978038e100ed7102609e8da9e28f6252a2b76d6c210_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/egress-router-cni-rhel8@sha256:d64fa7e4517b09a65c7f90cb7fae71adedf6d02e40a9812f2d8d884702890ff6_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/egress-router-cni-rhel8@sha256:d64fa7e4517b09a65c7f90cb7fae71adedf6d02e40a9812f2d8d884702890ff6_amd64" + }, + "product_reference": "openshift4/egress-router-cni-rhel8@sha256:d64fa7e4517b09a65c7f90cb7fae71adedf6d02e40a9812f2d8d884702890ff6_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/egress-router-cni-rhel8@sha256:f0aa07446110940ad7c43955c294627ab6c77f9b0b453027c562318604c9c1f2_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/egress-router-cni-rhel8@sha256:f0aa07446110940ad7c43955c294627ab6c77f9b0b453027c562318604c9c1f2_arm64" + }, + "product_reference": "openshift4/egress-router-cni-rhel8@sha256:f0aa07446110940ad7c43955c294627ab6c77f9b0b453027c562318604c9c1f2_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/network-tools-rhel8@sha256:1df693b76e72036c08708ec6deb9d305dc8ef78324908926bdab6af5390e4be0_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/network-tools-rhel8@sha256:1df693b76e72036c08708ec6deb9d305dc8ef78324908926bdab6af5390e4be0_ppc64le" + }, + "product_reference": "openshift4/network-tools-rhel8@sha256:1df693b76e72036c08708ec6deb9d305dc8ef78324908926bdab6af5390e4be0_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/network-tools-rhel8@sha256:2f2fdc6bd3a9b05854b86f62365b348f419e946ee4eef1741ac4ffac6a2baafb_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/network-tools-rhel8@sha256:2f2fdc6bd3a9b05854b86f62365b348f419e946ee4eef1741ac4ffac6a2baafb_amd64" + }, + "product_reference": "openshift4/network-tools-rhel8@sha256:2f2fdc6bd3a9b05854b86f62365b348f419e946ee4eef1741ac4ffac6a2baafb_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/network-tools-rhel8@sha256:96738031e629888b9dec64fe8c9e86cde378655769ff8c795d8ffb4c11838ced_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/network-tools-rhel8@sha256:96738031e629888b9dec64fe8c9e86cde378655769ff8c795d8ffb4c11838ced_s390x" + }, + "product_reference": "openshift4/network-tools-rhel8@sha256:96738031e629888b9dec64fe8c9e86cde378655769ff8c795d8ffb4c11838ced_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/network-tools-rhel8@sha256:e3a1e4189ee7d9c49ed273bf078a16d279544d4548896c8e9c0b9e0753c178fa_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/network-tools-rhel8@sha256:e3a1e4189ee7d9c49ed273bf078a16d279544d4548896c8e9c0b9e0753c178fa_arm64" + }, + "product_reference": "openshift4/network-tools-rhel8@sha256:e3a1e4189ee7d9c49ed273bf078a16d279544d4548896c8e9c0b9e0753c178fa_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/oc-mirror-plugin-rhel8@sha256:9cbb92e3fbd1ae3f710bb308db10015047861bc21d6513698a4211cdbbb037b9_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/oc-mirror-plugin-rhel8@sha256:9cbb92e3fbd1ae3f710bb308db10015047861bc21d6513698a4211cdbbb037b9_amd64" + }, + "product_reference": "openshift4/oc-mirror-plugin-rhel8@sha256:9cbb92e3fbd1ae3f710bb308db10015047861bc21d6513698a4211cdbbb037b9_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:2b257b13a862b079351f0ad6aa1efa0cacf563d33c818c9da6d7e311e4cc41ad_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-agent-installer-api-server-rhel8@sha256:2b257b13a862b079351f0ad6aa1efa0cacf563d33c818c9da6d7e311e4cc41ad_amd64" + }, + "product_reference": "openshift4/ose-agent-installer-api-server-rhel8@sha256:2b257b13a862b079351f0ad6aa1efa0cacf563d33c818c9da6d7e311e4cc41ad_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:4e4125ee395df9da1bd797f86aef91d52fb5b2292c6d9fac9da496ff375cf967_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-agent-installer-api-server-rhel8@sha256:4e4125ee395df9da1bd797f86aef91d52fb5b2292c6d9fac9da496ff375cf967_arm64" + }, + "product_reference": "openshift4/ose-agent-installer-api-server-rhel8@sha256:4e4125ee395df9da1bd797f86aef91d52fb5b2292c6d9fac9da496ff375cf967_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:87772908cc5f7aad001a52a85d074df650d8d650249d5e64e2d2730492991fed_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-agent-installer-api-server-rhel8@sha256:87772908cc5f7aad001a52a85d074df650d8d650249d5e64e2d2730492991fed_ppc64le" + }, + "product_reference": "openshift4/ose-agent-installer-api-server-rhel8@sha256:87772908cc5f7aad001a52a85d074df650d8d650249d5e64e2d2730492991fed_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:e65b37ee8dd7ecfff976b1dfd3b9c717d2fb973816a5c22c615d2e4ee6b3f6d7_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-agent-installer-api-server-rhel8@sha256:e65b37ee8dd7ecfff976b1dfd3b9c717d2fb973816a5c22c615d2e4ee6b3f6d7_s390x" + }, + "product_reference": "openshift4/ose-agent-installer-api-server-rhel8@sha256:e65b37ee8dd7ecfff976b1dfd3b9c717d2fb973816a5c22c615d2e4ee6b3f6d7_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:002c0fa1c8a271467359b1637dd75737f68e9da0d3aa6d2f317840d4d6084a9d_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-agent-installer-csr-approver-rhel8@sha256:002c0fa1c8a271467359b1637dd75737f68e9da0d3aa6d2f317840d4d6084a9d_ppc64le" + }, + "product_reference": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:002c0fa1c8a271467359b1637dd75737f68e9da0d3aa6d2f317840d4d6084a9d_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:64d0b91e27e269cd2d8bfd09712882bcdee4efc3ca4ec7052777ff7b904b0ab5_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-agent-installer-csr-approver-rhel8@sha256:64d0b91e27e269cd2d8bfd09712882bcdee4efc3ca4ec7052777ff7b904b0ab5_amd64" + }, + "product_reference": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:64d0b91e27e269cd2d8bfd09712882bcdee4efc3ca4ec7052777ff7b904b0ab5_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:6be395179eeb6ec093bfad88420f4394a11215fa71d0283e8469c1d1a6c4c376_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-agent-installer-csr-approver-rhel8@sha256:6be395179eeb6ec093bfad88420f4394a11215fa71d0283e8469c1d1a6c4c376_s390x" + }, + "product_reference": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:6be395179eeb6ec093bfad88420f4394a11215fa71d0283e8469c1d1a6c4c376_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:fa35472c6f79fd6abed2b427d1957302df0d2253626654c92fa0bfb58a928b7b_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-agent-installer-csr-approver-rhel8@sha256:fa35472c6f79fd6abed2b427d1957302df0d2253626654c92fa0bfb58a928b7b_arm64" + }, + "product_reference": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:fa35472c6f79fd6abed2b427d1957302df0d2253626654c92fa0bfb58a928b7b_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:0fca59b8bfae3e09ca1403da7df2a39be838680046263b6c2054ca13273a2949_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-agent-installer-node-agent-rhel8@sha256:0fca59b8bfae3e09ca1403da7df2a39be838680046263b6c2054ca13273a2949_s390x" + }, + "product_reference": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:0fca59b8bfae3e09ca1403da7df2a39be838680046263b6c2054ca13273a2949_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:187cde4bf99e8f6556fb908de54e5a46dd0f8ce71d7c49f60df103da284eabaf_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-agent-installer-node-agent-rhel8@sha256:187cde4bf99e8f6556fb908de54e5a46dd0f8ce71d7c49f60df103da284eabaf_arm64" + }, + "product_reference": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:187cde4bf99e8f6556fb908de54e5a46dd0f8ce71d7c49f60df103da284eabaf_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:4d1b32d4e9b3a2e99a9d08291fd4d83100f20d341f19f3b31a3fed1b0410729d_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-agent-installer-node-agent-rhel8@sha256:4d1b32d4e9b3a2e99a9d08291fd4d83100f20d341f19f3b31a3fed1b0410729d_ppc64le" + }, + "product_reference": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:4d1b32d4e9b3a2e99a9d08291fd4d83100f20d341f19f3b31a3fed1b0410729d_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:62b9e098bf912ad4cda376c548912bb49f13813cae4d505685bc308fb316998b_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-agent-installer-node-agent-rhel8@sha256:62b9e098bf912ad4cda376c548912bb49f13813cae4d505685bc308fb316998b_amd64" + }, + "product_reference": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:62b9e098bf912ad4cda376c548912bb49f13813cae4d505685bc308fb316998b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:1f63912e884c8b9b65e56603443d147b6706e57d73cf9b83a0969d279d507af4_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-agent-installer-orchestrator-rhel8@sha256:1f63912e884c8b9b65e56603443d147b6706e57d73cf9b83a0969d279d507af4_arm64" + }, + "product_reference": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:1f63912e884c8b9b65e56603443d147b6706e57d73cf9b83a0969d279d507af4_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:51356c83300a918ab71d99603ae33df5a16baaae5d71bd6becb6daecdb52e360_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-agent-installer-orchestrator-rhel8@sha256:51356c83300a918ab71d99603ae33df5a16baaae5d71bd6becb6daecdb52e360_amd64" + }, + "product_reference": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:51356c83300a918ab71d99603ae33df5a16baaae5d71bd6becb6daecdb52e360_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6d7fa8ea0329eb8a3621562321816dcfa795550ebef3d8905d2f84e073ef7689_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6d7fa8ea0329eb8a3621562321816dcfa795550ebef3d8905d2f84e073ef7689_ppc64le" + }, + "product_reference": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:6d7fa8ea0329eb8a3621562321816dcfa795550ebef3d8905d2f84e073ef7689_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:d3f82286ce088c8a9e8ddde72ade594bd54d1226ee72d70d2c6e30a4b138bb8c_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-agent-installer-orchestrator-rhel8@sha256:d3f82286ce088c8a9e8ddde72ade594bd54d1226ee72d70d2c6e30a4b138bb8c_s390x" + }, + "product_reference": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:d3f82286ce088c8a9e8ddde72ade594bd54d1226ee72d70d2c6e30a4b138bb8c_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:fee723af66f10aacdf082bf936831c603b9790a65e7d331b760762cc7b9a8ef4_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:fee723af66f10aacdf082bf936831c603b9790a65e7d331b760762cc7b9a8ef4_amd64" + }, + "product_reference": "openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:fee723af66f10aacdf082bf936831c603b9790a65e7d331b760762cc7b9a8ef4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:1476d5ac13b985fbd2145f66b56b09876b24476d65669b52cef846568ae9ebaa_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:1476d5ac13b985fbd2145f66b56b09876b24476d65669b52cef846568ae9ebaa_amd64" + }, + "product_reference": "openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:1476d5ac13b985fbd2145f66b56b09876b24476d65669b52cef846568ae9ebaa_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:83814af63879d7d85b065d5bdaf61a201cd4c85104031558d7936ba32d8062f7_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:83814af63879d7d85b065d5bdaf61a201cd4c85104031558d7936ba32d8062f7_amd64" + }, + "product_reference": "openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:83814af63879d7d85b065d5bdaf61a201cd4c85104031558d7936ba32d8062f7_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-alibaba-machine-controllers-rhel8@sha256:e3899346afa30203bb69417903204370246512c52a194930a5bdfa0ba5ac6940_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-alibaba-machine-controllers-rhel8@sha256:e3899346afa30203bb69417903204370246512c52a194930a5bdfa0ba5ac6940_amd64" + }, + "product_reference": "openshift4/ose-alibaba-machine-controllers-rhel8@sha256:e3899346afa30203bb69417903204370246512c52a194930a5bdfa0ba5ac6940_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:10f8bb0b768bfe58c0e88a79e58b5213fc391231bb09d16470e409bd6fd2971f_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-apiserver-network-proxy-rhel8@sha256:10f8bb0b768bfe58c0e88a79e58b5213fc391231bb09d16470e409bd6fd2971f_arm64" + }, + "product_reference": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:10f8bb0b768bfe58c0e88a79e58b5213fc391231bb09d16470e409bd6fd2971f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:8c5bc12cd6d2c91fad74fa4f973ef9d797444990b0441f7085c785e066abd666_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-apiserver-network-proxy-rhel8@sha256:8c5bc12cd6d2c91fad74fa4f973ef9d797444990b0441f7085c785e066abd666_amd64" + }, + "product_reference": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:8c5bc12cd6d2c91fad74fa4f973ef9d797444990b0441f7085c785e066abd666_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:a525abb6e1530e6a9ddbaceaf0f02401336ed837b852f7b659a8a14a4cb6ba82_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-apiserver-network-proxy-rhel8@sha256:a525abb6e1530e6a9ddbaceaf0f02401336ed837b852f7b659a8a14a4cb6ba82_s390x" + }, + "product_reference": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:a525abb6e1530e6a9ddbaceaf0f02401336ed837b852f7b659a8a14a4cb6ba82_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:e10348944f0e109da41ff9e2f268f2bcd271e0301905df5a4079ef79f689feca_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-apiserver-network-proxy-rhel8@sha256:e10348944f0e109da41ff9e2f268f2bcd271e0301905df5a4079ef79f689feca_ppc64le" + }, + "product_reference": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:e10348944f0e109da41ff9e2f268f2bcd271e0301905df5a4079ef79f689feca_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:23000beca2cfc5a71642513c117003694e46def7604444df234e6f046379e29f_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:23000beca2cfc5a71642513c117003694e46def7604444df234e6f046379e29f_amd64" + }, + "product_reference": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:23000beca2cfc5a71642513c117003694e46def7604444df234e6f046379e29f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:c8ed965ad4fbe27cb8713bb6d46000ec87cffbf171c0ba4acaebc81378c4530a_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:c8ed965ad4fbe27cb8713bb6d46000ec87cffbf171c0ba4acaebc81378c4530a_arm64" + }, + "product_reference": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:c8ed965ad4fbe27cb8713bb6d46000ec87cffbf171c0ba4acaebc81378c4530a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:53649e77c1149b1ccaedf20b17a15154d59f5fe93a8861c14ce5b2871bcf8cc6_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:53649e77c1149b1ccaedf20b17a15154d59f5fe93a8861c14ce5b2871bcf8cc6_amd64" + }, + "product_reference": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:53649e77c1149b1ccaedf20b17a15154d59f5fe93a8861c14ce5b2871bcf8cc6_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:71fde111463c290e7bf16a2c7aff1c5b34bdfe83516665e06bcda57dd06e3bbd_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:71fde111463c290e7bf16a2c7aff1c5b34bdfe83516665e06bcda57dd06e3bbd_arm64" + }, + "product_reference": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:71fde111463c290e7bf16a2c7aff1c5b34bdfe83516665e06bcda57dd06e3bbd_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:bd4d291a3e501cc8646e9ead2b925caabcef97e623952327bfb74f56525618a3_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:bd4d291a3e501cc8646e9ead2b925caabcef97e623952327bfb74f56525618a3_arm64" + }, + "product_reference": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:bd4d291a3e501cc8646e9ead2b925caabcef97e623952327bfb74f56525618a3_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:eb8e56dc5352b3799e952489ac9af8ab4b596bfc01ac33bb53614683dc72635d_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:eb8e56dc5352b3799e952489ac9af8ab4b596bfc01ac33bb53614683dc72635d_amd64" + }, + "product_reference": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:eb8e56dc5352b3799e952489ac9af8ab4b596bfc01ac33bb53614683dc72635d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:0034afd914ee031f32134d562b32799ae67ecdc60d9c2f02adef8da6a00486d2_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:0034afd914ee031f32134d562b32799ae67ecdc60d9c2f02adef8da6a00486d2_amd64" + }, + "product_reference": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:0034afd914ee031f32134d562b32799ae67ecdc60d9c2f02adef8da6a00486d2_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:44fed666262fa1d8935159767606ce13188d1605292fee0952986d942eb12940_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:44fed666262fa1d8935159767606ce13188d1605292fee0952986d942eb12940_arm64" + }, + "product_reference": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:44fed666262fa1d8935159767606ce13188d1605292fee0952986d942eb12940_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:0655f4ee96e6df306c6d42ee1999ec69462a29642f6fc066967897fb0edc982d_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:0655f4ee96e6df306c6d42ee1999ec69462a29642f6fc066967897fb0edc982d_amd64" + }, + "product_reference": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:0655f4ee96e6df306c6d42ee1999ec69462a29642f6fc066967897fb0edc982d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:b01a830fca96958a5270d4e99c17c960a2e1dc9e0c7684a9262fbeae5ae5eb23_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:b01a830fca96958a5270d4e99c17c960a2e1dc9e0c7684a9262fbeae5ae5eb23_arm64" + }, + "product_reference": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:b01a830fca96958a5270d4e99c17c960a2e1dc9e0c7684a9262fbeae5ae5eb23_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:067780589e4742ffd52d7916fda7c12ddd4c6699574b2c1809b6857ecb50e504_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:067780589e4742ffd52d7916fda7c12ddd4c6699574b2c1809b6857ecb50e504_amd64" + }, + "product_reference": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:067780589e4742ffd52d7916fda7c12ddd4c6699574b2c1809b6857ecb50e504_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:cb37337603eb86f1265ad9ea600a623fef9a07850057a866ba216f500a10734c_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:cb37337603eb86f1265ad9ea600a623fef9a07850057a866ba216f500a10734c_arm64" + }, + "product_reference": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:cb37337603eb86f1265ad9ea600a623fef9a07850057a866ba216f500a10734c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:b2c22bff9e146f631e74dbc838d236076d20c4af67a9e9ee8f4634836b3c6d41_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-azure-cloud-node-manager-rhel8@sha256:b2c22bff9e146f631e74dbc838d236076d20c4af67a9e9ee8f4634836b3c6d41_arm64" + }, + "product_reference": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:b2c22bff9e146f631e74dbc838d236076d20c4af67a9e9ee8f4634836b3c6d41_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:fa1fcca522d86733e103d2366eb74de1c5454421ebbf89d0822f4d6b7d14bc28_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-azure-cloud-node-manager-rhel8@sha256:fa1fcca522d86733e103d2366eb74de1c5454421ebbf89d0822f4d6b7d14bc28_amd64" + }, + "product_reference": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:fa1fcca522d86733e103d2366eb74de1c5454421ebbf89d0822f4d6b7d14bc28_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:39f5d19cc64a40878ad90bee6c385383fa930f7bb3661cdedb74c37d7404ab86_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:39f5d19cc64a40878ad90bee6c385383fa930f7bb3661cdedb74c37d7404ab86_arm64" + }, + "product_reference": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:39f5d19cc64a40878ad90bee6c385383fa930f7bb3661cdedb74c37d7404ab86_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:3f62ef833f484877acc57d8768678db6afe43e6a9acd05fd4ccba5fcdb1e5fd9_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:3f62ef833f484877acc57d8768678db6afe43e6a9acd05fd4ccba5fcdb1e5fd9_amd64" + }, + "product_reference": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:3f62ef833f484877acc57d8768678db6afe43e6a9acd05fd4ccba5fcdb1e5fd9_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:60b0b8078ee1e2b799de1557a9fbb0dbf7b6ee896a9674b39e7cd8c227351e52_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:60b0b8078ee1e2b799de1557a9fbb0dbf7b6ee896a9674b39e7cd8c227351e52_amd64" + }, + "product_reference": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:60b0b8078ee1e2b799de1557a9fbb0dbf7b6ee896a9674b39e7cd8c227351e52_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:f7cd8e9f43ad7323aef733ad068582032fd0be00d98f89a662ca0da20cdcb091_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:f7cd8e9f43ad7323aef733ad068582032fd0be00d98f89a662ca0da20cdcb091_arm64" + }, + "product_reference": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:f7cd8e9f43ad7323aef733ad068582032fd0be00d98f89a662ca0da20cdcb091_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:12863475e6d9cfa6c073782d68d0336e572b9741a3445bc21cf04ca21d7f13af_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-azure-disk-csi-driver-rhel8@sha256:12863475e6d9cfa6c073782d68d0336e572b9741a3445bc21cf04ca21d7f13af_arm64" + }, + "product_reference": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:12863475e6d9cfa6c073782d68d0336e572b9741a3445bc21cf04ca21d7f13af_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:46e580fc08cad0681a68217c0266b17a5906a920ebff7bed3d6ef9046d707987_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-azure-disk-csi-driver-rhel8@sha256:46e580fc08cad0681a68217c0266b17a5906a920ebff7bed3d6ef9046d707987_amd64" + }, + "product_reference": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:46e580fc08cad0681a68217c0266b17a5906a920ebff7bed3d6ef9046d707987_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:dfb04f651468e89423db280b798051cab62b8c79a47bb15a9876a46502813762_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:dfb04f651468e89423db280b798051cab62b8c79a47bb15a9876a46502813762_arm64" + }, + "product_reference": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:dfb04f651468e89423db280b798051cab62b8c79a47bb15a9876a46502813762_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e779a68012a97d70c86a8220676152efe87449b85fd24f3a424c4d629c1928ba_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e779a68012a97d70c86a8220676152efe87449b85fd24f3a424c4d629c1928ba_amd64" + }, + "product_reference": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:e779a68012a97d70c86a8220676152efe87449b85fd24f3a424c4d629c1928ba_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:f89ed6c93b544c7c73ca2123303c3be3f91ba0f36e560da5e8e1174f2040351d_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-azure-file-csi-driver-rhel8@sha256:f89ed6c93b544c7c73ca2123303c3be3f91ba0f36e560da5e8e1174f2040351d_amd64" + }, + "product_reference": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:f89ed6c93b544c7c73ca2123303c3be3f91ba0f36e560da5e8e1174f2040351d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:fc2521cf6854a350b0745b2831c815ab331c9f7026f00e3dbcd0a6f8cb9d2cd6_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-azure-file-csi-driver-rhel8@sha256:fc2521cf6854a350b0745b2831c815ab331c9f7026f00e3dbcd0a6f8cb9d2cd6_arm64" + }, + "product_reference": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:fc2521cf6854a350b0745b2831c815ab331c9f7026f00e3dbcd0a6f8cb9d2cd6_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:27c1a8ad4454080d97060c76ca3c42fe006e988f80f114fe27723e9c91416e36_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-baremetal-installer-rhel8@sha256:27c1a8ad4454080d97060c76ca3c42fe006e988f80f114fe27723e9c91416e36_s390x" + }, + "product_reference": "openshift4/ose-baremetal-installer-rhel8@sha256:27c1a8ad4454080d97060c76ca3c42fe006e988f80f114fe27723e9c91416e36_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:2f5a1518a27ed71fd928fcd2a94c317993db29a7e7cde6adb515aa403fae217c_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-baremetal-installer-rhel8@sha256:2f5a1518a27ed71fd928fcd2a94c317993db29a7e7cde6adb515aa403fae217c_arm64" + }, + "product_reference": "openshift4/ose-baremetal-installer-rhel8@sha256:2f5a1518a27ed71fd928fcd2a94c317993db29a7e7cde6adb515aa403fae217c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:37b542d202b5f8cb03a8057beda98f4c4eea212d1a4fe0bc996b77ee54d7cda6_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-baremetal-installer-rhel8@sha256:37b542d202b5f8cb03a8057beda98f4c4eea212d1a4fe0bc996b77ee54d7cda6_amd64" + }, + "product_reference": "openshift4/ose-baremetal-installer-rhel8@sha256:37b542d202b5f8cb03a8057beda98f4c4eea212d1a4fe0bc996b77ee54d7cda6_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:785df2d774a8e0998219aaae3b9b6f84be74f5a64990e8ba48296190999755d8_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-baremetal-installer-rhel8@sha256:785df2d774a8e0998219aaae3b9b6f84be74f5a64990e8ba48296190999755d8_ppc64le" + }, + "product_reference": "openshift4/ose-baremetal-installer-rhel8@sha256:785df2d774a8e0998219aaae3b9b6f84be74f5a64990e8ba48296190999755d8_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:4673afc6ecc038c17941229885903df4aa3ad09912f42177813d242560cd4fec_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-baremetal-machine-controllers@sha256:4673afc6ecc038c17941229885903df4aa3ad09912f42177813d242560cd4fec_s390x" + }, + "product_reference": "openshift4/ose-baremetal-machine-controllers@sha256:4673afc6ecc038c17941229885903df4aa3ad09912f42177813d242560cd4fec_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:52e1d455745f1d3f5b14713333ff1077554d1eb6e07b13555fd8817e24153811_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-baremetal-machine-controllers@sha256:52e1d455745f1d3f5b14713333ff1077554d1eb6e07b13555fd8817e24153811_amd64" + }, + "product_reference": "openshift4/ose-baremetal-machine-controllers@sha256:52e1d455745f1d3f5b14713333ff1077554d1eb6e07b13555fd8817e24153811_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:795c52ea8d83621aabd648ac83332186bf99cc281ea49927ce08c221412b6371_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-baremetal-machine-controllers@sha256:795c52ea8d83621aabd648ac83332186bf99cc281ea49927ce08c221412b6371_arm64" + }, + "product_reference": "openshift4/ose-baremetal-machine-controllers@sha256:795c52ea8d83621aabd648ac83332186bf99cc281ea49927ce08c221412b6371_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:9b7e6d05d4a6eb98a5f7a0edb4a2ffcbd7565a05d9964a209d48c58e133cb3ec_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-baremetal-machine-controllers@sha256:9b7e6d05d4a6eb98a5f7a0edb4a2ffcbd7565a05d9964a209d48c58e133cb3ec_ppc64le" + }, + "product_reference": "openshift4/ose-baremetal-machine-controllers@sha256:9b7e6d05d4a6eb98a5f7a0edb4a2ffcbd7565a05d9964a209d48c58e133cb3ec_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:526e988df240f7bd372f0c1ff22f676898ac1d88e272434c2e226ff828fd82ae_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-baremetal-rhel8-operator@sha256:526e988df240f7bd372f0c1ff22f676898ac1d88e272434c2e226ff828fd82ae_arm64" + }, + "product_reference": "openshift4/ose-baremetal-rhel8-operator@sha256:526e988df240f7bd372f0c1ff22f676898ac1d88e272434c2e226ff828fd82ae_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:a919e2aba4fb7d260dd3fd4ddf8ebf3bde986ef3d4c8961fa71ea36b65e3b954_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-baremetal-rhel8-operator@sha256:a919e2aba4fb7d260dd3fd4ddf8ebf3bde986ef3d4c8961fa71ea36b65e3b954_ppc64le" + }, + "product_reference": "openshift4/ose-baremetal-rhel8-operator@sha256:a919e2aba4fb7d260dd3fd4ddf8ebf3bde986ef3d4c8961fa71ea36b65e3b954_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:c69f493e7a13024e627fd483132080fc8ecc9555a2f2abfdc8d2f1e6a3fcc634_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-baremetal-rhel8-operator@sha256:c69f493e7a13024e627fd483132080fc8ecc9555a2f2abfdc8d2f1e6a3fcc634_amd64" + }, + "product_reference": "openshift4/ose-baremetal-rhel8-operator@sha256:c69f493e7a13024e627fd483132080fc8ecc9555a2f2abfdc8d2f1e6a3fcc634_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:f05e5b36b1b8b2f220b24a10d4b114f3c2c86b1566dc7c9fb6284dbcd08366aa_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-baremetal-rhel8-operator@sha256:f05e5b36b1b8b2f220b24a10d4b114f3c2c86b1566dc7c9fb6284dbcd08366aa_s390x" + }, + "product_reference": "openshift4/ose-baremetal-rhel8-operator@sha256:f05e5b36b1b8b2f220b24a10d4b114f3c2c86b1566dc7c9fb6284dbcd08366aa_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:459c9475068ae6f71bed28adaa734740b1e54a87946659c0227d49f03c14aa1e_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-baremetal-runtimecfg-rhel8@sha256:459c9475068ae6f71bed28adaa734740b1e54a87946659c0227d49f03c14aa1e_ppc64le" + }, + "product_reference": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:459c9475068ae6f71bed28adaa734740b1e54a87946659c0227d49f03c14aa1e_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:a9a361671b0ee52e3ba9d2328a24e9f11c62c344572a25e845a2a6a06afe2c3e_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-baremetal-runtimecfg-rhel8@sha256:a9a361671b0ee52e3ba9d2328a24e9f11c62c344572a25e845a2a6a06afe2c3e_s390x" + }, + "product_reference": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:a9a361671b0ee52e3ba9d2328a24e9f11c62c344572a25e845a2a6a06afe2c3e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:b8176f8f865018cc0f8f011fd9843b78c4d7aa2619c406965f1d4e0e680b677a_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-baremetal-runtimecfg-rhel8@sha256:b8176f8f865018cc0f8f011fd9843b78c4d7aa2619c406965f1d4e0e680b677a_amd64" + }, + "product_reference": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:b8176f8f865018cc0f8f011fd9843b78c4d7aa2619c406965f1d4e0e680b677a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:f5ac67f99074dfad3fa80a9d625e130f65e4b32e78e12ed39c6dd2425d4e2d87_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-baremetal-runtimecfg-rhel8@sha256:f5ac67f99074dfad3fa80a9d625e130f65e4b32e78e12ed39c6dd2425d4e2d87_arm64" + }, + "product_reference": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:f5ac67f99074dfad3fa80a9d625e130f65e4b32e78e12ed39c6dd2425d4e2d87_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli-artifacts@sha256:69e2c4adfbaf5c5af3b02447c48a09576b73a7ae6831e1b92bf134ff5d280342_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cli-artifacts@sha256:69e2c4adfbaf5c5af3b02447c48a09576b73a7ae6831e1b92bf134ff5d280342_arm64" + }, + "product_reference": "openshift4/ose-cli-artifacts@sha256:69e2c4adfbaf5c5af3b02447c48a09576b73a7ae6831e1b92bf134ff5d280342_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli-artifacts@sha256:96dc9a87125d233b608ed38e74d209334a22edaf152098b063fa11ca1fd8b323_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cli-artifacts@sha256:96dc9a87125d233b608ed38e74d209334a22edaf152098b063fa11ca1fd8b323_amd64" + }, + "product_reference": "openshift4/ose-cli-artifacts@sha256:96dc9a87125d233b608ed38e74d209334a22edaf152098b063fa11ca1fd8b323_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli-artifacts@sha256:d16b4ebbca1cd91005d14e6714bdb8e55449a936dae2a74ea85b1b33776db3fd_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cli-artifacts@sha256:d16b4ebbca1cd91005d14e6714bdb8e55449a936dae2a74ea85b1b33776db3fd_s390x" + }, + "product_reference": "openshift4/ose-cli-artifacts@sha256:d16b4ebbca1cd91005d14e6714bdb8e55449a936dae2a74ea85b1b33776db3fd_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli-artifacts@sha256:d683969f9b18e1d3b9fd188c6b6fc2e56f906157670e809e73dea78c74efa608_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cli-artifacts@sha256:d683969f9b18e1d3b9fd188c6b6fc2e56f906157670e809e73dea78c74efa608_ppc64le" + }, + "product_reference": "openshift4/ose-cli-artifacts@sha256:d683969f9b18e1d3b9fd188c6b6fc2e56f906157670e809e73dea78c74efa608_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli@sha256:448c9d241da6abf7ca5be22e0ac3583ca1c24eb4c874838d761b2bfbd3bc8434_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cli@sha256:448c9d241da6abf7ca5be22e0ac3583ca1c24eb4c874838d761b2bfbd3bc8434_s390x" + }, + "product_reference": "openshift4/ose-cli@sha256:448c9d241da6abf7ca5be22e0ac3583ca1c24eb4c874838d761b2bfbd3bc8434_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli@sha256:4e810ece74dca5b8daae1314b6b4b863c39b1827180d2dec00a57da0848141f0_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cli@sha256:4e810ece74dca5b8daae1314b6b4b863c39b1827180d2dec00a57da0848141f0_ppc64le" + }, + "product_reference": "openshift4/ose-cli@sha256:4e810ece74dca5b8daae1314b6b4b863c39b1827180d2dec00a57da0848141f0_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli@sha256:557ad4c0e69f6da2ee0c048d8465e3e46dbcebe424e92656f82e0faad39e8a43_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cli@sha256:557ad4c0e69f6da2ee0c048d8465e3e46dbcebe424e92656f82e0faad39e8a43_amd64" + }, + "product_reference": "openshift4/ose-cli@sha256:557ad4c0e69f6da2ee0c048d8465e3e46dbcebe424e92656f82e0faad39e8a43_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli@sha256:6ca39edba3455b976af84a9c1c430b03ab4adae51be0f0d98e599fc05dac95d3_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cli@sha256:6ca39edba3455b976af84a9c1c430b03ab4adae51be0f0d98e599fc05dac95d3_arm64" + }, + "product_reference": "openshift4/ose-cli@sha256:6ca39edba3455b976af84a9c1c430b03ab4adae51be0f0d98e599fc05dac95d3_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-credential-operator@sha256:4d022647bb14e22ef9c54b48c3806c2774cf95b1fa7e85662075e8260cbb49c4_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cloud-credential-operator@sha256:4d022647bb14e22ef9c54b48c3806c2774cf95b1fa7e85662075e8260cbb49c4_s390x" + }, + "product_reference": "openshift4/ose-cloud-credential-operator@sha256:4d022647bb14e22ef9c54b48c3806c2774cf95b1fa7e85662075e8260cbb49c4_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-credential-operator@sha256:bbbd343768786c60462ab4ae0ab321e8178c2f43bb803d34e462858d3438e30f_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cloud-credential-operator@sha256:bbbd343768786c60462ab4ae0ab321e8178c2f43bb803d34e462858d3438e30f_amd64" + }, + "product_reference": "openshift4/ose-cloud-credential-operator@sha256:bbbd343768786c60462ab4ae0ab321e8178c2f43bb803d34e462858d3438e30f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-credential-operator@sha256:c07bcc29651733b8326737c74185d66c9c8e536c4eb0c65bad86d47fbc3dae95_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cloud-credential-operator@sha256:c07bcc29651733b8326737c74185d66c9c8e536c4eb0c65bad86d47fbc3dae95_ppc64le" + }, + "product_reference": "openshift4/ose-cloud-credential-operator@sha256:c07bcc29651733b8326737c74185d66c9c8e536c4eb0c65bad86d47fbc3dae95_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-credential-operator@sha256:db4b7ad03a0762e383887f3ff2d67bc28fa4854b7414b15bf8b7bdd76d24a792_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cloud-credential-operator@sha256:db4b7ad03a0762e383887f3ff2d67bc28fa4854b7414b15bf8b7bdd76d24a792_arm64" + }, + "product_reference": "openshift4/ose-cloud-credential-operator@sha256:db4b7ad03a0762e383887f3ff2d67bc28fa4854b7414b15bf8b7bdd76d24a792_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:088624d63f15e601949ec12be36a2e9a13d3783ab2b9734613ba910930c2c8f1_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-api-rhel8@sha256:088624d63f15e601949ec12be36a2e9a13d3783ab2b9734613ba910930c2c8f1_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-api-rhel8@sha256:088624d63f15e601949ec12be36a2e9a13d3783ab2b9734613ba910930c2c8f1_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:15c8b63f86e1f0de852a3c8c0cf0d5ea4ae72802194fd0193cfc2335cd3424fe_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-api-rhel8@sha256:15c8b63f86e1f0de852a3c8c0cf0d5ea4ae72802194fd0193cfc2335cd3424fe_arm64" + }, + "product_reference": "openshift4/ose-cluster-api-rhel8@sha256:15c8b63f86e1f0de852a3c8c0cf0d5ea4ae72802194fd0193cfc2335cd3424fe_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:9f88675c1ff271af2112d1b88b5819748a034bd81b79ec4e7e887d7faf19b7ef_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-api-rhel8@sha256:9f88675c1ff271af2112d1b88b5819748a034bd81b79ec4e7e887d7faf19b7ef_s390x" + }, + "product_reference": "openshift4/ose-cluster-api-rhel8@sha256:9f88675c1ff271af2112d1b88b5819748a034bd81b79ec4e7e887d7faf19b7ef_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:ba337238a419795910ff972dcfaf815fdcbb409071917779ccc10526e7e60151_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-api-rhel8@sha256:ba337238a419795910ff972dcfaf815fdcbb409071917779ccc10526e7e60151_amd64" + }, + "product_reference": "openshift4/ose-cluster-api-rhel8@sha256:ba337238a419795910ff972dcfaf815fdcbb409071917779ccc10526e7e60151_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:5211fb0c23747922bacc6b8770b6254101ea86873f02d8700bdeec6390b6dde3_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-authentication-operator@sha256:5211fb0c23747922bacc6b8770b6254101ea86873f02d8700bdeec6390b6dde3_arm64" + }, + "product_reference": "openshift4/ose-cluster-authentication-operator@sha256:5211fb0c23747922bacc6b8770b6254101ea86873f02d8700bdeec6390b6dde3_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:cd36c522540fe8691dca5f0c037be6faa9594f5861dd1e18c39bd5108ae60fcb_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-authentication-operator@sha256:cd36c522540fe8691dca5f0c037be6faa9594f5861dd1e18c39bd5108ae60fcb_amd64" + }, + "product_reference": "openshift4/ose-cluster-authentication-operator@sha256:cd36c522540fe8691dca5f0c037be6faa9594f5861dd1e18c39bd5108ae60fcb_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:d43a53369784e6d17861530152d367c01a67a7b26b247ab06c4223698ae46a15_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-authentication-operator@sha256:d43a53369784e6d17861530152d367c01a67a7b26b247ab06c4223698ae46a15_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-authentication-operator@sha256:d43a53369784e6d17861530152d367c01a67a7b26b247ab06c4223698ae46a15_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:e2883b689c1665edebeef6fdf348aa657c33dd5f27219c60e09473a70993255b_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-authentication-operator@sha256:e2883b689c1665edebeef6fdf348aa657c33dd5f27219c60e09473a70993255b_s390x" + }, + "product_reference": "openshift4/ose-cluster-authentication-operator@sha256:e2883b689c1665edebeef6fdf348aa657c33dd5f27219c60e09473a70993255b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:224a6cba9db6ed212d84f2778b9d0e7913ba92eef85d97ed579cad9c4c8201ec_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-autoscaler-operator@sha256:224a6cba9db6ed212d84f2778b9d0e7913ba92eef85d97ed579cad9c4c8201ec_arm64" + }, + "product_reference": "openshift4/ose-cluster-autoscaler-operator@sha256:224a6cba9db6ed212d84f2778b9d0e7913ba92eef85d97ed579cad9c4c8201ec_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:2e991b7c57cb1bab609c6d78a99c44f5034046060da09f72e14b6d261a30ffdd_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-autoscaler-operator@sha256:2e991b7c57cb1bab609c6d78a99c44f5034046060da09f72e14b6d261a30ffdd_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-autoscaler-operator@sha256:2e991b7c57cb1bab609c6d78a99c44f5034046060da09f72e14b6d261a30ffdd_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:c8212a5a769a532c45ee7d3a5f6718cf10c36fd531bd9594aa7bc31c197cbb5a_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-autoscaler-operator@sha256:c8212a5a769a532c45ee7d3a5f6718cf10c36fd531bd9594aa7bc31c197cbb5a_amd64" + }, + "product_reference": "openshift4/ose-cluster-autoscaler-operator@sha256:c8212a5a769a532c45ee7d3a5f6718cf10c36fd531bd9594aa7bc31c197cbb5a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:f8ce7e8709f77af90f87e2729d1374aa26ff3da774808484366ac3c171988623_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-autoscaler-operator@sha256:f8ce7e8709f77af90f87e2729d1374aa26ff3da774808484366ac3c171988623_s390x" + }, + "product_reference": "openshift4/ose-cluster-autoscaler-operator@sha256:f8ce7e8709f77af90f87e2729d1374aa26ff3da774808484366ac3c171988623_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler@sha256:07010e0e5957be04c0d10cbaf89e1e5f30f3bf7381a675a1edf252d1d14361c9_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-autoscaler@sha256:07010e0e5957be04c0d10cbaf89e1e5f30f3bf7381a675a1edf252d1d14361c9_arm64" + }, + "product_reference": "openshift4/ose-cluster-autoscaler@sha256:07010e0e5957be04c0d10cbaf89e1e5f30f3bf7381a675a1edf252d1d14361c9_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler@sha256:2a22f62ac799c1dd53516243c561fdb6ce9aebc36889bf8f8a3fc5f11f4b43ab_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-autoscaler@sha256:2a22f62ac799c1dd53516243c561fdb6ce9aebc36889bf8f8a3fc5f11f4b43ab_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-autoscaler@sha256:2a22f62ac799c1dd53516243c561fdb6ce9aebc36889bf8f8a3fc5f11f4b43ab_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler@sha256:53d7221d26e5778a87667a65d4c88465f16c74722fce49509ac3d6806aacdf75_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-autoscaler@sha256:53d7221d26e5778a87667a65d4c88465f16c74722fce49509ac3d6806aacdf75_s390x" + }, + "product_reference": "openshift4/ose-cluster-autoscaler@sha256:53d7221d26e5778a87667a65d4c88465f16c74722fce49509ac3d6806aacdf75_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler@sha256:8c98607361b06da87301e190ed35ff837eed12542e7fcf4f9f1eeab2fa397339_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-autoscaler@sha256:8c98607361b06da87301e190ed35ff837eed12542e7fcf4f9f1eeab2fa397339_amd64" + }, + "product_reference": "openshift4/ose-cluster-autoscaler@sha256:8c98607361b06da87301e190ed35ff837eed12542e7fcf4f9f1eeab2fa397339_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:8114b7c8c048514b56b7d761bfcd4e6667934feba42efce30ca38488b6e37686_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-baremetal-operator-rhel8@sha256:8114b7c8c048514b56b7d761bfcd4e6667934feba42efce30ca38488b6e37686_s390x" + }, + "product_reference": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:8114b7c8c048514b56b7d761bfcd4e6667934feba42efce30ca38488b6e37686_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:94cef6960266bc6411bfb7c58c3636c495fa8acb36ff529c393e2d57c1fe2131_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-baremetal-operator-rhel8@sha256:94cef6960266bc6411bfb7c58c3636c495fa8acb36ff529c393e2d57c1fe2131_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:94cef6960266bc6411bfb7c58c3636c495fa8acb36ff529c393e2d57c1fe2131_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:bedb99805e871c6ddcfeee8ff60c492703e439e9853831d328c0ebc5f093e367_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-baremetal-operator-rhel8@sha256:bedb99805e871c6ddcfeee8ff60c492703e439e9853831d328c0ebc5f093e367_amd64" + }, + "product_reference": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:bedb99805e871c6ddcfeee8ff60c492703e439e9853831d328c0ebc5f093e367_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:e0e346bd9f7df30d9f54d2cb5cf3572a895bf14a17f8e8e17207c0f3af1d61d2_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-baremetal-operator-rhel8@sha256:e0e346bd9f7df30d9f54d2cb5cf3572a895bf14a17f8e8e17207c0f3af1d61d2_arm64" + }, + "product_reference": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:e0e346bd9f7df30d9f54d2cb5cf3572a895bf14a17f8e8e17207c0f3af1d61d2_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-bootstrap@sha256:8d96490148fe72901bdcaed137b89148d481b1cb2aa895dfe5d50071eb116391_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-bootstrap@sha256:8d96490148fe72901bdcaed137b89148d481b1cb2aa895dfe5d50071eb116391_arm64" + }, + "product_reference": "openshift4/ose-cluster-bootstrap@sha256:8d96490148fe72901bdcaed137b89148d481b1cb2aa895dfe5d50071eb116391_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-bootstrap@sha256:9e6b453b2ce045c9e9ba1a698d99784cadfbf3574750f4fab4cd937d9660bc6c_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-bootstrap@sha256:9e6b453b2ce045c9e9ba1a698d99784cadfbf3574750f4fab4cd937d9660bc6c_amd64" + }, + "product_reference": "openshift4/ose-cluster-bootstrap@sha256:9e6b453b2ce045c9e9ba1a698d99784cadfbf3574750f4fab4cd937d9660bc6c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-bootstrap@sha256:d87a386d8034a229b94186e4ef9d6042174b54741748a0c647689d216bdcd767_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-bootstrap@sha256:d87a386d8034a229b94186e4ef9d6042174b54741748a0c647689d216bdcd767_s390x" + }, + "product_reference": "openshift4/ose-cluster-bootstrap@sha256:d87a386d8034a229b94186e4ef9d6042174b54741748a0c647689d216bdcd767_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-bootstrap@sha256:fd179cbdaea077fc2bf9e26aa128f16c6c17866a2fa8de0b88bdc1f6cc54d3f7_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-bootstrap@sha256:fd179cbdaea077fc2bf9e26aa128f16c6c17866a2fa8de0b88bdc1f6cc54d3f7_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-bootstrap@sha256:fd179cbdaea077fc2bf9e26aa128f16c6c17866a2fa8de0b88bdc1f6cc54d3f7_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:12ee30ed842bf34bde1e9af46eb39fcb1c6f5412cdb97e261d7edd757a3f9534_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-capi-operator-container-rhel8@sha256:12ee30ed842bf34bde1e9af46eb39fcb1c6f5412cdb97e261d7edd757a3f9534_s390x" + }, + "product_reference": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:12ee30ed842bf34bde1e9af46eb39fcb1c6f5412cdb97e261d7edd757a3f9534_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:25445f76fd0d60934a4910f90770d2b617c4307940c451648354bfd8b9ead43e_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-capi-operator-container-rhel8@sha256:25445f76fd0d60934a4910f90770d2b617c4307940c451648354bfd8b9ead43e_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:25445f76fd0d60934a4910f90770d2b617c4307940c451648354bfd8b9ead43e_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:736cdb1d689532521a6a57016298b5284bcc098d29d634937317939d5116cf7b_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-capi-operator-container-rhel8@sha256:736cdb1d689532521a6a57016298b5284bcc098d29d634937317939d5116cf7b_amd64" + }, + "product_reference": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:736cdb1d689532521a6a57016298b5284bcc098d29d634937317939d5116cf7b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:c2c0690d401873a503e445adb4e0bf1ce9c3fb3bef994367a054e5cd4e0b8ebd_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-capi-operator-container-rhel8@sha256:c2c0690d401873a503e445adb4e0bf1ce9c3fb3bef994367a054e5cd4e0b8ebd_arm64" + }, + "product_reference": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:c2c0690d401873a503e445adb4e0bf1ce9c3fb3bef994367a054e5cd4e0b8ebd_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:12ee30ed842bf34bde1e9af46eb39fcb1c6f5412cdb97e261d7edd757a3f9534_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-capi-rhel8-operator@sha256:12ee30ed842bf34bde1e9af46eb39fcb1c6f5412cdb97e261d7edd757a3f9534_s390x" + }, + "product_reference": "openshift4/ose-cluster-capi-rhel8-operator@sha256:12ee30ed842bf34bde1e9af46eb39fcb1c6f5412cdb97e261d7edd757a3f9534_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:25445f76fd0d60934a4910f90770d2b617c4307940c451648354bfd8b9ead43e_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-capi-rhel8-operator@sha256:25445f76fd0d60934a4910f90770d2b617c4307940c451648354bfd8b9ead43e_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-capi-rhel8-operator@sha256:25445f76fd0d60934a4910f90770d2b617c4307940c451648354bfd8b9ead43e_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:736cdb1d689532521a6a57016298b5284bcc098d29d634937317939d5116cf7b_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-capi-rhel8-operator@sha256:736cdb1d689532521a6a57016298b5284bcc098d29d634937317939d5116cf7b_amd64" + }, + "product_reference": "openshift4/ose-cluster-capi-rhel8-operator@sha256:736cdb1d689532521a6a57016298b5284bcc098d29d634937317939d5116cf7b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:c2c0690d401873a503e445adb4e0bf1ce9c3fb3bef994367a054e5cd4e0b8ebd_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-capi-rhel8-operator@sha256:c2c0690d401873a503e445adb4e0bf1ce9c3fb3bef994367a054e5cd4e0b8ebd_arm64" + }, + "product_reference": "openshift4/ose-cluster-capi-rhel8-operator@sha256:c2c0690d401873a503e445adb4e0bf1ce9c3fb3bef994367a054e5cd4e0b8ebd_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:386fad4ccfed233b9171a1028337ae07e2c0bcf89a3d3f486c752d1f2f008a09_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:386fad4ccfed233b9171a1028337ae07e2c0bcf89a3d3f486c752d1f2f008a09_arm64" + }, + "product_reference": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:386fad4ccfed233b9171a1028337ae07e2c0bcf89a3d3f486c752d1f2f008a09_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:41fa0183e7ba78146efcefec5ecdbb135279486571638a557ca06f630853e8c3_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:41fa0183e7ba78146efcefec5ecdbb135279486571638a557ca06f630853e8c3_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:41fa0183e7ba78146efcefec5ecdbb135279486571638a557ca06f630853e8c3_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:9bb2a75e3fd0ba23d7badf305d83bc06ab2ffdd61837d160474117249279d9fe_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:9bb2a75e3fd0ba23d7badf305d83bc06ab2ffdd61837d160474117249279d9fe_amd64" + }, + "product_reference": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:9bb2a75e3fd0ba23d7badf305d83bc06ab2ffdd61837d160474117249279d9fe_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:e3957aa6149bfeb5e44d7ec12534f89841344a35171a91d1b22225895480a6be_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:e3957aa6149bfeb5e44d7ec12534f89841344a35171a91d1b22225895480a6be_s390x" + }, + "product_reference": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:e3957aa6149bfeb5e44d7ec12534f89841344a35171a91d1b22225895480a6be_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-config-operator@sha256:152d9f10c1ec51264f2c8410be663cfab4cae6f518012906a20e0c36f541dc72_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-config-operator@sha256:152d9f10c1ec51264f2c8410be663cfab4cae6f518012906a20e0c36f541dc72_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-config-operator@sha256:152d9f10c1ec51264f2c8410be663cfab4cae6f518012906a20e0c36f541dc72_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-config-operator@sha256:60d08dc8267f045242b29fd6e9108c70b5befba64a4ed757fbd22757ca6de38c_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-config-operator@sha256:60d08dc8267f045242b29fd6e9108c70b5befba64a4ed757fbd22757ca6de38c_s390x" + }, + "product_reference": "openshift4/ose-cluster-config-operator@sha256:60d08dc8267f045242b29fd6e9108c70b5befba64a4ed757fbd22757ca6de38c_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-config-operator@sha256:86e9009e3b427f4c82ccf3b79a37d550656d74e014676b9ba11299cc223fbd99_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-config-operator@sha256:86e9009e3b427f4c82ccf3b79a37d550656d74e014676b9ba11299cc223fbd99_amd64" + }, + "product_reference": "openshift4/ose-cluster-config-operator@sha256:86e9009e3b427f4c82ccf3b79a37d550656d74e014676b9ba11299cc223fbd99_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-config-operator@sha256:d6d7c60332ef143a50b05cf5a80e87027ca33379753e820411e7cc0582adfa98_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-config-operator@sha256:d6d7c60332ef143a50b05cf5a80e87027ca33379753e820411e7cc0582adfa98_arm64" + }, + "product_reference": "openshift4/ose-cluster-config-operator@sha256:d6d7c60332ef143a50b05cf5a80e87027ca33379753e820411e7cc0582adfa98_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:085266acdd227d40447538306506b6cbd95d523d139c1709ebb765c5113103d3_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:085266acdd227d40447538306506b6cbd95d523d139c1709ebb765c5113103d3_s390x" + }, + "product_reference": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:085266acdd227d40447538306506b6cbd95d523d139c1709ebb765c5113103d3_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:2149d32e6ca8a2f2a3e61a1f422fbc30f690882cf76a387cf4e9b1973ed581fa_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:2149d32e6ca8a2f2a3e61a1f422fbc30f690882cf76a387cf4e9b1973ed581fa_amd64" + }, + "product_reference": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:2149d32e6ca8a2f2a3e61a1f422fbc30f690882cf76a387cf4e9b1973ed581fa_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:99753a2f8167e026d296a912655968749ba5a64ca4c7527f77955177f8910c10_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:99753a2f8167e026d296a912655968749ba5a64ca4c7527f77955177f8910c10_arm64" + }, + "product_reference": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:99753a2f8167e026d296a912655968749ba5a64ca4c7527f77955177f8910c10_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:a15e1913349f77a62b3cd503fecb05b89475bd0d92b29dedf474c7c2e83ae488_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:a15e1913349f77a62b3cd503fecb05b89475bd0d92b29dedf474c7c2e83ae488_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:a15e1913349f77a62b3cd503fecb05b89475bd0d92b29dedf474c7c2e83ae488_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-dns-operator@sha256:1027ac246de8778ff79d4c939b39251d8921be01d5678437d0614ece60a4055f_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-dns-operator@sha256:1027ac246de8778ff79d4c939b39251d8921be01d5678437d0614ece60a4055f_amd64" + }, + "product_reference": "openshift4/ose-cluster-dns-operator@sha256:1027ac246de8778ff79d4c939b39251d8921be01d5678437d0614ece60a4055f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-dns-operator@sha256:4c6e5b9dfd9b698475a3f18167aa88c1ad5c43dba72a07c62b149fe5e4f607dd_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-dns-operator@sha256:4c6e5b9dfd9b698475a3f18167aa88c1ad5c43dba72a07c62b149fe5e4f607dd_s390x" + }, + "product_reference": "openshift4/ose-cluster-dns-operator@sha256:4c6e5b9dfd9b698475a3f18167aa88c1ad5c43dba72a07c62b149fe5e4f607dd_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-dns-operator@sha256:a94e6938d30d132ea02d2d707370c6a577431ebcc07c986ef40bb9c1f59dfead_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-dns-operator@sha256:a94e6938d30d132ea02d2d707370c6a577431ebcc07c986ef40bb9c1f59dfead_arm64" + }, + "product_reference": "openshift4/ose-cluster-dns-operator@sha256:a94e6938d30d132ea02d2d707370c6a577431ebcc07c986ef40bb9c1f59dfead_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-dns-operator@sha256:f0a6a2e76e1b5fae8ac781aeeb90a68c16f79735f69171f891af52eb328bdd06_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-dns-operator@sha256:f0a6a2e76e1b5fae8ac781aeeb90a68c16f79735f69171f891af52eb328bdd06_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-dns-operator@sha256:f0a6a2e76e1b5fae8ac781aeeb90a68c16f79735f69171f891af52eb328bdd06_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:054a137c463328f16a7a94539ce63ed128a3bcc08365de648bb8ec3c4e37b50a_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-etcd-rhel8-operator@sha256:054a137c463328f16a7a94539ce63ed128a3bcc08365de648bb8ec3c4e37b50a_s390x" + }, + "product_reference": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:054a137c463328f16a7a94539ce63ed128a3bcc08365de648bb8ec3c4e37b50a_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:06660d47881bef181d19a9812ecc79bf9c06e2a3d771f6ea72fa60502ae9186d_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-etcd-rhel8-operator@sha256:06660d47881bef181d19a9812ecc79bf9c06e2a3d771f6ea72fa60502ae9186d_arm64" + }, + "product_reference": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:06660d47881bef181d19a9812ecc79bf9c06e2a3d771f6ea72fa60502ae9186d_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:d28c821e8c6afd776e61583e1cdcd6f2ce8a5e93093157824548d2e067292c1a_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-etcd-rhel8-operator@sha256:d28c821e8c6afd776e61583e1cdcd6f2ce8a5e93093157824548d2e067292c1a_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:d28c821e8c6afd776e61583e1cdcd6f2ce8a5e93093157824548d2e067292c1a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:f68ade96de898a6fd9fd4e442deebd49920f289dccdd9066373b5a77f553ded4_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-etcd-rhel8-operator@sha256:f68ade96de898a6fd9fd4e442deebd49920f289dccdd9066373b5a77f553ded4_amd64" + }, + "product_reference": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:f68ade96de898a6fd9fd4e442deebd49920f289dccdd9066373b5a77f553ded4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:2c86a8c17f61f291f9fbc8b8098a44c75923dd307c7a51d5c9008abdb803b820_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-image-registry-operator@sha256:2c86a8c17f61f291f9fbc8b8098a44c75923dd307c7a51d5c9008abdb803b820_arm64" + }, + "product_reference": "openshift4/ose-cluster-image-registry-operator@sha256:2c86a8c17f61f291f9fbc8b8098a44c75923dd307c7a51d5c9008abdb803b820_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:c59c78b7bacc4fe72e150108a9511fe36e97edbef4aa631143901afc4ff3d98b_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-image-registry-operator@sha256:c59c78b7bacc4fe72e150108a9511fe36e97edbef4aa631143901afc4ff3d98b_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-image-registry-operator@sha256:c59c78b7bacc4fe72e150108a9511fe36e97edbef4aa631143901afc4ff3d98b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:d0144c7c5f67b9a954c88f86a89b13a6e3a38747b1c4999be184af8c9627a23b_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-image-registry-operator@sha256:d0144c7c5f67b9a954c88f86a89b13a6e3a38747b1c4999be184af8c9627a23b_amd64" + }, + "product_reference": "openshift4/ose-cluster-image-registry-operator@sha256:d0144c7c5f67b9a954c88f86a89b13a6e3a38747b1c4999be184af8c9627a23b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:d561a205a47dab3685ae0ece96eedc8fe40df15b27c7616cef1dc1e587d11c6e_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-image-registry-operator@sha256:d561a205a47dab3685ae0ece96eedc8fe40df15b27c7616cef1dc1e587d11c6e_s390x" + }, + "product_reference": "openshift4/ose-cluster-image-registry-operator@sha256:d561a205a47dab3685ae0ece96eedc8fe40df15b27c7616cef1dc1e587d11c6e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:2fdba045927065b28e7f644768883e5184f98a5873e8ea74cb234d67c85748f2_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-ingress-operator@sha256:2fdba045927065b28e7f644768883e5184f98a5873e8ea74cb234d67c85748f2_s390x" + }, + "product_reference": "openshift4/ose-cluster-ingress-operator@sha256:2fdba045927065b28e7f644768883e5184f98a5873e8ea74cb234d67c85748f2_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:40e34f918316a0f73864d65080ae9e05f9cfd288809e1b3cea7f9a200f587180_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-ingress-operator@sha256:40e34f918316a0f73864d65080ae9e05f9cfd288809e1b3cea7f9a200f587180_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-ingress-operator@sha256:40e34f918316a0f73864d65080ae9e05f9cfd288809e1b3cea7f9a200f587180_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:4b325435608ffaa7b2b254316e05b62e87b578d3cec42f7e71ac0af2362b15b3_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-ingress-operator@sha256:4b325435608ffaa7b2b254316e05b62e87b578d3cec42f7e71ac0af2362b15b3_amd64" + }, + "product_reference": "openshift4/ose-cluster-ingress-operator@sha256:4b325435608ffaa7b2b254316e05b62e87b578d3cec42f7e71ac0af2362b15b3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:77a52ee7f5707947e7210f6514c0419a56b618aa7ec318f2143c46a088adfe4f_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-ingress-operator@sha256:77a52ee7f5707947e7210f6514c0419a56b618aa7ec318f2143c46a088adfe4f_arm64" + }, + "product_reference": "openshift4/ose-cluster-ingress-operator@sha256:77a52ee7f5707947e7210f6514c0419a56b618aa7ec318f2143c46a088adfe4f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:02a8c3209b2b0ed9bb3d602dac2ca663ee1653b3d565958631937c066a7ac9f1_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-kube-apiserver-operator@sha256:02a8c3209b2b0ed9bb3d602dac2ca663ee1653b3d565958631937c066a7ac9f1_amd64" + }, + "product_reference": "openshift4/ose-cluster-kube-apiserver-operator@sha256:02a8c3209b2b0ed9bb3d602dac2ca663ee1653b3d565958631937c066a7ac9f1_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:58c6a80145ea603e932b36d719137b6c486d1bef7c3ace9162a39f222ea43606_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-kube-apiserver-operator@sha256:58c6a80145ea603e932b36d719137b6c486d1bef7c3ace9162a39f222ea43606_s390x" + }, + "product_reference": "openshift4/ose-cluster-kube-apiserver-operator@sha256:58c6a80145ea603e932b36d719137b6c486d1bef7c3ace9162a39f222ea43606_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:5e1f17520c786afb9f29b073677aca7830aa09d302e146cd149ba8803ae43e59_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-kube-apiserver-operator@sha256:5e1f17520c786afb9f29b073677aca7830aa09d302e146cd149ba8803ae43e59_arm64" + }, + "product_reference": "openshift4/ose-cluster-kube-apiserver-operator@sha256:5e1f17520c786afb9f29b073677aca7830aa09d302e146cd149ba8803ae43e59_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:e69a059307d2c9d1c851b6cda2828c74287cbb8405f0fd10163ca45f7c45202b_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-kube-apiserver-operator@sha256:e69a059307d2c9d1c851b6cda2828c74287cbb8405f0fd10163ca45f7c45202b_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-kube-apiserver-operator@sha256:e69a059307d2c9d1c851b6cda2828c74287cbb8405f0fd10163ca45f7c45202b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:1e77933d50a9798f7189a37153cd9a04fa2c7ae84e1048c659233984a0dd1c46_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:1e77933d50a9798f7189a37153cd9a04fa2c7ae84e1048c659233984a0dd1c46_amd64" + }, + "product_reference": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:1e77933d50a9798f7189a37153cd9a04fa2c7ae84e1048c659233984a0dd1c46_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:8283e15cf986dea446c6f1bd220a81b6f27dbb4f17f44bfda34e726bd3e9fa59_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:8283e15cf986dea446c6f1bd220a81b6f27dbb4f17f44bfda34e726bd3e9fa59_arm64" + }, + "product_reference": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:8283e15cf986dea446c6f1bd220a81b6f27dbb4f17f44bfda34e726bd3e9fa59_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:de5a97a2a183a493b949a426a58d8aaade47577173d1fb0bcd476e2644c48205_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:de5a97a2a183a493b949a426a58d8aaade47577173d1fb0bcd476e2644c48205_s390x" + }, + "product_reference": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:de5a97a2a183a493b949a426a58d8aaade47577173d1fb0bcd476e2644c48205_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:fca044f058031e3c6193477d66501f33d055d21ffc4e8bf954950ecd30c51ebd_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:fca044f058031e3c6193477d66501f33d055d21ffc4e8bf954950ecd30c51ebd_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:fca044f058031e3c6193477d66501f33d055d21ffc4e8bf954950ecd30c51ebd_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:5aa711db9c66fa8f1e1ded92a2f3f58dd338f3b6cc88bbe358918d435099061e_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-kube-controller-manager-operator@sha256:5aa711db9c66fa8f1e1ded92a2f3f58dd338f3b6cc88bbe358918d435099061e_arm64" + }, + "product_reference": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:5aa711db9c66fa8f1e1ded92a2f3f58dd338f3b6cc88bbe358918d435099061e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:7202d4619380326aea921fd46fe2f01ef65c831b8a152a84a8dc56b249554ffe_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-kube-controller-manager-operator@sha256:7202d4619380326aea921fd46fe2f01ef65c831b8a152a84a8dc56b249554ffe_s390x" + }, + "product_reference": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:7202d4619380326aea921fd46fe2f01ef65c831b8a152a84a8dc56b249554ffe_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:9cd0ac824c20a38e407f4f56d47eefed247379fce19323afff6777a37f3aec95_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-kube-controller-manager-operator@sha256:9cd0ac824c20a38e407f4f56d47eefed247379fce19323afff6777a37f3aec95_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:9cd0ac824c20a38e407f4f56d47eefed247379fce19323afff6777a37f3aec95_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:ccb3c66dfddf6129e905f0cc0556196dbd8997483bf2082ebc02883a795871aa_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-kube-controller-manager-operator@sha256:ccb3c66dfddf6129e905f0cc0556196dbd8997483bf2082ebc02883a795871aa_amd64" + }, + "product_reference": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:ccb3c66dfddf6129e905f0cc0556196dbd8997483bf2082ebc02883a795871aa_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:185ac3f27ebb9d5178205a809541000e2a81b5d62caa7620487b58e9138e97a5_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-kube-scheduler-operator@sha256:185ac3f27ebb9d5178205a809541000e2a81b5d62caa7620487b58e9138e97a5_amd64" + }, + "product_reference": "openshift4/ose-cluster-kube-scheduler-operator@sha256:185ac3f27ebb9d5178205a809541000e2a81b5d62caa7620487b58e9138e97a5_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:7d647bb35e3b5ee7f5ac9a524bcf4254d854ef910db1cd7130dc4756dbae1c3d_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-kube-scheduler-operator@sha256:7d647bb35e3b5ee7f5ac9a524bcf4254d854ef910db1cd7130dc4756dbae1c3d_arm64" + }, + "product_reference": "openshift4/ose-cluster-kube-scheduler-operator@sha256:7d647bb35e3b5ee7f5ac9a524bcf4254d854ef910db1cd7130dc4756dbae1c3d_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:d34f69622d3518703bbc9ffff1156864c2e952906abb1c1fbfe4674304106f04_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-kube-scheduler-operator@sha256:d34f69622d3518703bbc9ffff1156864c2e952906abb1c1fbfe4674304106f04_s390x" + }, + "product_reference": "openshift4/ose-cluster-kube-scheduler-operator@sha256:d34f69622d3518703bbc9ffff1156864c2e952906abb1c1fbfe4674304106f04_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:e0dad09090980117ebccd4af90472f3c768404f1c3e7816eb0c4fec5a81eaed8_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-kube-scheduler-operator@sha256:e0dad09090980117ebccd4af90472f3c768404f1c3e7816eb0c4fec5a81eaed8_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-kube-scheduler-operator@sha256:e0dad09090980117ebccd4af90472f3c768404f1c3e7816eb0c4fec5a81eaed8_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:669e96f90d68efaed7607125ca4e649702629b5fc77c22874db004d5010f7922_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:669e96f90d68efaed7607125ca4e649702629b5fc77c22874db004d5010f7922_s390x" + }, + "product_reference": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:669e96f90d68efaed7607125ca4e649702629b5fc77c22874db004d5010f7922_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:6cdc2e03c746d1fb4b5bf898bb25dc38c624b99cbf36c801ad300cf24cd71a8b_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:6cdc2e03c746d1fb4b5bf898bb25dc38c624b99cbf36c801ad300cf24cd71a8b_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:6cdc2e03c746d1fb4b5bf898bb25dc38c624b99cbf36c801ad300cf24cd71a8b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:e5b96fd293573a0e6433d3a1541a72c05cf21e7dfef796f01660e7c11b1d5eba_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:e5b96fd293573a0e6433d3a1541a72c05cf21e7dfef796f01660e7c11b1d5eba_arm64" + }, + "product_reference": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:e5b96fd293573a0e6433d3a1541a72c05cf21e7dfef796f01660e7c11b1d5eba_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:e88f6153b208debd5739278d998228362fe129c832d260f6787956d7c4931b2a_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:e88f6153b208debd5739278d998228362fe129c832d260f6787956d7c4931b2a_amd64" + }, + "product_reference": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:e88f6153b208debd5739278d998228362fe129c832d260f6787956d7c4931b2a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-machine-approver@sha256:09d3b736aa01ecb04dc1fc13500db5cdc44de99abcc8d6bdffde84b03473214d_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-machine-approver@sha256:09d3b736aa01ecb04dc1fc13500db5cdc44de99abcc8d6bdffde84b03473214d_amd64" + }, + "product_reference": "openshift4/ose-cluster-machine-approver@sha256:09d3b736aa01ecb04dc1fc13500db5cdc44de99abcc8d6bdffde84b03473214d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-machine-approver@sha256:0ea0a233d025abb43e8372af7a9c54a83418f296a1e5e9e58dd3800c0b2d928f_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-machine-approver@sha256:0ea0a233d025abb43e8372af7a9c54a83418f296a1e5e9e58dd3800c0b2d928f_arm64" + }, + "product_reference": "openshift4/ose-cluster-machine-approver@sha256:0ea0a233d025abb43e8372af7a9c54a83418f296a1e5e9e58dd3800c0b2d928f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-machine-approver@sha256:326f7482582c73c763fdd9154ea3f4e7b9688311e4a29d1dd861ca42b8a86b15_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-machine-approver@sha256:326f7482582c73c763fdd9154ea3f4e7b9688311e4a29d1dd861ca42b8a86b15_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-machine-approver@sha256:326f7482582c73c763fdd9154ea3f4e7b9688311e4a29d1dd861ca42b8a86b15_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-machine-approver@sha256:d3e6afb52599ea5162c9dacdf6fbaca5211ed1e499e56dceb9db6562e315ea03_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-machine-approver@sha256:d3e6afb52599ea5162c9dacdf6fbaca5211ed1e499e56dceb9db6562e315ea03_s390x" + }, + "product_reference": "openshift4/ose-cluster-machine-approver@sha256:d3e6afb52599ea5162c9dacdf6fbaca5211ed1e499e56dceb9db6562e315ea03_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:1ffdabd7ea37686554bba6d5265b72eb43f0cafeb1e7633d683279e62637cffb_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-monitoring-operator@sha256:1ffdabd7ea37686554bba6d5265b72eb43f0cafeb1e7633d683279e62637cffb_s390x" + }, + "product_reference": "openshift4/ose-cluster-monitoring-operator@sha256:1ffdabd7ea37686554bba6d5265b72eb43f0cafeb1e7633d683279e62637cffb_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:47e1d28eb75f13a740b5bc651d0a0b49927490d51393409900aff37a63078bf5_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-monitoring-operator@sha256:47e1d28eb75f13a740b5bc651d0a0b49927490d51393409900aff37a63078bf5_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-monitoring-operator@sha256:47e1d28eb75f13a740b5bc651d0a0b49927490d51393409900aff37a63078bf5_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:e15a51de44d65efaf2b380b94db3335f03e4ba912fafa0f915ea7afa0ab12d38_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-monitoring-operator@sha256:e15a51de44d65efaf2b380b94db3335f03e4ba912fafa0f915ea7afa0ab12d38_amd64" + }, + "product_reference": "openshift4/ose-cluster-monitoring-operator@sha256:e15a51de44d65efaf2b380b94db3335f03e4ba912fafa0f915ea7afa0ab12d38_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:e35870e5d6942586a7987622379e6609a8f5119f79fa9e2a48e79e60d19a1e81_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-monitoring-operator@sha256:e35870e5d6942586a7987622379e6609a8f5119f79fa9e2a48e79e60d19a1e81_arm64" + }, + "product_reference": "openshift4/ose-cluster-monitoring-operator@sha256:e35870e5d6942586a7987622379e6609a8f5119f79fa9e2a48e79e60d19a1e81_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-network-operator@sha256:33fdb8fa5fd55108403e5ce28bf132cd148615beaf07f4e2c30d37849688be8a_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-network-operator@sha256:33fdb8fa5fd55108403e5ce28bf132cd148615beaf07f4e2c30d37849688be8a_s390x" + }, + "product_reference": "openshift4/ose-cluster-network-operator@sha256:33fdb8fa5fd55108403e5ce28bf132cd148615beaf07f4e2c30d37849688be8a_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-network-operator@sha256:37811d9a34c90be4065a6efa7ae139ca693f44eb1772e337202cf0dcfd73e4a3_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-network-operator@sha256:37811d9a34c90be4065a6efa7ae139ca693f44eb1772e337202cf0dcfd73e4a3_arm64" + }, + "product_reference": "openshift4/ose-cluster-network-operator@sha256:37811d9a34c90be4065a6efa7ae139ca693f44eb1772e337202cf0dcfd73e4a3_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-network-operator@sha256:79fd9b122d1d3e42e33617eb033349b8cdfd85994d5e31bb50d77a677c3a1836_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-network-operator@sha256:79fd9b122d1d3e42e33617eb033349b8cdfd85994d5e31bb50d77a677c3a1836_amd64" + }, + "product_reference": "openshift4/ose-cluster-network-operator@sha256:79fd9b122d1d3e42e33617eb033349b8cdfd85994d5e31bb50d77a677c3a1836_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-network-operator@sha256:bbf8ba86ee4b204de16afc062c07bf24cf75abe105af2e3c8a0bc7617667261b_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-network-operator@sha256:bbf8ba86ee4b204de16afc062c07bf24cf75abe105af2e3c8a0bc7617667261b_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-network-operator@sha256:bbf8ba86ee4b204de16afc062c07bf24cf75abe105af2e3c8a0bc7617667261b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:71896c7701e5e5feb043c76b61d98c946bec1bf83d0eb5b8e2a6a5c64d41e165_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-node-tuning-operator@sha256:71896c7701e5e5feb043c76b61d98c946bec1bf83d0eb5b8e2a6a5c64d41e165_amd64" + }, + "product_reference": "openshift4/ose-cluster-node-tuning-operator@sha256:71896c7701e5e5feb043c76b61d98c946bec1bf83d0eb5b8e2a6a5c64d41e165_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:74fd9ac205a007c61eff98a20f27919caa4a1acd396b388a04ef41a48aee1695_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-node-tuning-operator@sha256:74fd9ac205a007c61eff98a20f27919caa4a1acd396b388a04ef41a48aee1695_s390x" + }, + "product_reference": "openshift4/ose-cluster-node-tuning-operator@sha256:74fd9ac205a007c61eff98a20f27919caa4a1acd396b388a04ef41a48aee1695_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:a85fa1de26aca0a68cabd37b52ea1645d231b5089fdab922d41e76ed3ebb432d_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-node-tuning-operator@sha256:a85fa1de26aca0a68cabd37b52ea1645d231b5089fdab922d41e76ed3ebb432d_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-node-tuning-operator@sha256:a85fa1de26aca0a68cabd37b52ea1645d231b5089fdab922d41e76ed3ebb432d_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:e2a5ac756267861f0f77f4ab5b0817375714b985f7261b0c981868410bf2c312_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-node-tuning-operator@sha256:e2a5ac756267861f0f77f4ab5b0817375714b985f7261b0c981868410bf2c312_arm64" + }, + "product_reference": "openshift4/ose-cluster-node-tuning-operator@sha256:e2a5ac756267861f0f77f4ab5b0817375714b985f7261b0c981868410bf2c312_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:2b5bfbaa0b2ee6595be0a5b4cbc6d41d51a7a4b5306953d2676d8cf182e364e1_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-openshift-apiserver-operator@sha256:2b5bfbaa0b2ee6595be0a5b4cbc6d41d51a7a4b5306953d2676d8cf182e364e1_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:2b5bfbaa0b2ee6595be0a5b4cbc6d41d51a7a4b5306953d2676d8cf182e364e1_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:d3ebbd443b7daee9b7ca73a26b7fbb8ecd355d543f994d0a34b185b2f090a971_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-openshift-apiserver-operator@sha256:d3ebbd443b7daee9b7ca73a26b7fbb8ecd355d543f994d0a34b185b2f090a971_s390x" + }, + "product_reference": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:d3ebbd443b7daee9b7ca73a26b7fbb8ecd355d543f994d0a34b185b2f090a971_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:e1ace6387642e7fbfa7725f44aeed7dccb4129c57460661828974c57425ebcaa_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-openshift-apiserver-operator@sha256:e1ace6387642e7fbfa7725f44aeed7dccb4129c57460661828974c57425ebcaa_arm64" + }, + "product_reference": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:e1ace6387642e7fbfa7725f44aeed7dccb4129c57460661828974c57425ebcaa_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:ea06be74212b7b6264be5cde5d45644133103263d9d070a7b06369e5048b18aa_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-openshift-apiserver-operator@sha256:ea06be74212b7b6264be5cde5d45644133103263d9d070a7b06369e5048b18aa_amd64" + }, + "product_reference": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:ea06be74212b7b6264be5cde5d45644133103263d9d070a7b06369e5048b18aa_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:226d24abd454e8a147dd34b945aca759d4a7acca6fd70af97617817354cc354b_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-openshift-controller-manager-operator@sha256:226d24abd454e8a147dd34b945aca759d4a7acca6fd70af97617817354cc354b_amd64" + }, + "product_reference": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:226d24abd454e8a147dd34b945aca759d4a7acca6fd70af97617817354cc354b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:7457b03663641881f84f2dbaca05d182b428d71d05f657487e0b0912386661e1_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-openshift-controller-manager-operator@sha256:7457b03663641881f84f2dbaca05d182b428d71d05f657487e0b0912386661e1_s390x" + }, + "product_reference": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:7457b03663641881f84f2dbaca05d182b428d71d05f657487e0b0912386661e1_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:8c6c7ea9c3e20af38a8b07036565d005acd96f5ecafb825e838a5600706248e9_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-openshift-controller-manager-operator@sha256:8c6c7ea9c3e20af38a8b07036565d005acd96f5ecafb825e838a5600706248e9_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:8c6c7ea9c3e20af38a8b07036565d005acd96f5ecafb825e838a5600706248e9_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:dfb9b45126c2169783fba566d5190bf12a38f98ddc0d1f10441897fdf00a297e_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-openshift-controller-manager-operator@sha256:dfb9b45126c2169783fba566d5190bf12a38f98ddc0d1f10441897fdf00a297e_arm64" + }, + "product_reference": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:dfb9b45126c2169783fba566d5190bf12a38f98ddc0d1f10441897fdf00a297e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:6ec4dda1902a4b2ae897288cf32a101c8d22ec4f087b33f9435160f9e6cc28b2_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-policy-controller-rhel8@sha256:6ec4dda1902a4b2ae897288cf32a101c8d22ec4f087b33f9435160f9e6cc28b2_arm64" + }, + "product_reference": "openshift4/ose-cluster-policy-controller-rhel8@sha256:6ec4dda1902a4b2ae897288cf32a101c8d22ec4f087b33f9435160f9e6cc28b2_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:7f025ebd14d5d8ff2cacad4d9054132a50ebc2d9a487c138516047a7caefad27_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-policy-controller-rhel8@sha256:7f025ebd14d5d8ff2cacad4d9054132a50ebc2d9a487c138516047a7caefad27_amd64" + }, + "product_reference": "openshift4/ose-cluster-policy-controller-rhel8@sha256:7f025ebd14d5d8ff2cacad4d9054132a50ebc2d9a487c138516047a7caefad27_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:ead328460d1e576964dbf14663cd9992b0a62e71fb9ed8b8aa8980eac8fe2e84_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-policy-controller-rhel8@sha256:ead328460d1e576964dbf14663cd9992b0a62e71fb9ed8b8aa8980eac8fe2e84_s390x" + }, + "product_reference": "openshift4/ose-cluster-policy-controller-rhel8@sha256:ead328460d1e576964dbf14663cd9992b0a62e71fb9ed8b8aa8980eac8fe2e84_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:f4e89ba7297ed94f69b9d952c41b99ed4a1ce50ba0f126ee09c697af715623bc_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-policy-controller-rhel8@sha256:f4e89ba7297ed94f69b9d952c41b99ed4a1ce50ba0f126ee09c697af715623bc_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-policy-controller-rhel8@sha256:f4e89ba7297ed94f69b9d952c41b99ed4a1ce50ba0f126ee09c697af715623bc_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-samples-operator@sha256:1b02606917ea513dc3922583423b688939660e21bdd931c85327bccfe9ed2ac2_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-samples-operator@sha256:1b02606917ea513dc3922583423b688939660e21bdd931c85327bccfe9ed2ac2_s390x" + }, + "product_reference": "openshift4/ose-cluster-samples-operator@sha256:1b02606917ea513dc3922583423b688939660e21bdd931c85327bccfe9ed2ac2_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-samples-operator@sha256:1f32b54665f03604cc0555f016e2075ea4ef2e169178b804ac8511d41bddd2c7_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-samples-operator@sha256:1f32b54665f03604cc0555f016e2075ea4ef2e169178b804ac8511d41bddd2c7_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-samples-operator@sha256:1f32b54665f03604cc0555f016e2075ea4ef2e169178b804ac8511d41bddd2c7_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-samples-operator@sha256:5785c9d183bee4471aa05b587467b65c2e82b866204dfb6d482347a7be7d55fa_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-samples-operator@sha256:5785c9d183bee4471aa05b587467b65c2e82b866204dfb6d482347a7be7d55fa_arm64" + }, + "product_reference": "openshift4/ose-cluster-samples-operator@sha256:5785c9d183bee4471aa05b587467b65c2e82b866204dfb6d482347a7be7d55fa_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-samples-operator@sha256:7782a01a8ca018e018c0846f8bbb0ff4701fb8fc7d1894ea7adda8d7cd75d992_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-samples-operator@sha256:7782a01a8ca018e018c0846f8bbb0ff4701fb8fc7d1894ea7adda8d7cd75d992_amd64" + }, + "product_reference": "openshift4/ose-cluster-samples-operator@sha256:7782a01a8ca018e018c0846f8bbb0ff4701fb8fc7d1894ea7adda8d7cd75d992_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-storage-operator@sha256:02d666abe908484f92554040f1b590a2c23fa88d37b5bd7829de27c91a5fa72f_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-storage-operator@sha256:02d666abe908484f92554040f1b590a2c23fa88d37b5bd7829de27c91a5fa72f_s390x" + }, + "product_reference": "openshift4/ose-cluster-storage-operator@sha256:02d666abe908484f92554040f1b590a2c23fa88d37b5bd7829de27c91a5fa72f_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-storage-operator@sha256:502a502baf9ae0f6b0080cddd0342ba26a14c80dd842639047a957fe33d73964_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-storage-operator@sha256:502a502baf9ae0f6b0080cddd0342ba26a14c80dd842639047a957fe33d73964_amd64" + }, + "product_reference": "openshift4/ose-cluster-storage-operator@sha256:502a502baf9ae0f6b0080cddd0342ba26a14c80dd842639047a957fe33d73964_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-storage-operator@sha256:8d8c828c86cb9f8745c9e673e54b9fa52ada68fa7dd4fdc3ba885467b8729fde_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-storage-operator@sha256:8d8c828c86cb9f8745c9e673e54b9fa52ada68fa7dd4fdc3ba885467b8729fde_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-storage-operator@sha256:8d8c828c86cb9f8745c9e673e54b9fa52ada68fa7dd4fdc3ba885467b8729fde_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-storage-operator@sha256:e850cd4c93d30f9faa064a0f3d04ba7a1ab368d415ee6256dd395039cb01558d_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-storage-operator@sha256:e850cd4c93d30f9faa064a0f3d04ba7a1ab368d415ee6256dd395039cb01558d_arm64" + }, + "product_reference": "openshift4/ose-cluster-storage-operator@sha256:e850cd4c93d30f9faa064a0f3d04ba7a1ab368d415ee6256dd395039cb01558d_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-update-keys@sha256:0e887425fac5b10836c248126fb0f24f969e9f661877cf0003fa76abc5e6ef84_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-update-keys@sha256:0e887425fac5b10836c248126fb0f24f969e9f661877cf0003fa76abc5e6ef84_arm64" + }, + "product_reference": "openshift4/ose-cluster-update-keys@sha256:0e887425fac5b10836c248126fb0f24f969e9f661877cf0003fa76abc5e6ef84_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-update-keys@sha256:5da4f07e1b9e6fddddce0b144bc44c994d5b98e8fe7d33b0cb8be5e8d8ae18a3_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-update-keys@sha256:5da4f07e1b9e6fddddce0b144bc44c994d5b98e8fe7d33b0cb8be5e8d8ae18a3_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-update-keys@sha256:5da4f07e1b9e6fddddce0b144bc44c994d5b98e8fe7d33b0cb8be5e8d8ae18a3_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-update-keys@sha256:c3a14c835b77c663133ae7555d210cc29938591177bd31449c2fc1d3a3de5c7e_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-update-keys@sha256:c3a14c835b77c663133ae7555d210cc29938591177bd31449c2fc1d3a3de5c7e_s390x" + }, + "product_reference": "openshift4/ose-cluster-update-keys@sha256:c3a14c835b77c663133ae7555d210cc29938591177bd31449c2fc1d3a3de5c7e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-update-keys@sha256:ff4ad9c01698263c0cce717e4cb4b7f1ee4882f12a0f2ea19d004a348137b2e0_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-update-keys@sha256:ff4ad9c01698263c0cce717e4cb4b7f1ee4882f12a0f2ea19d004a348137b2e0_amd64" + }, + "product_reference": "openshift4/ose-cluster-update-keys@sha256:ff4ad9c01698263c0cce717e4cb4b7f1ee4882f12a0f2ea19d004a348137b2e0_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-version-operator@sha256:78c6652b0c9c0817c1a276bdb1f6d2902bbb614feeb66ab0992f914a99c71082_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-version-operator@sha256:78c6652b0c9c0817c1a276bdb1f6d2902bbb614feeb66ab0992f914a99c71082_s390x" + }, + "product_reference": "openshift4/ose-cluster-version-operator@sha256:78c6652b0c9c0817c1a276bdb1f6d2902bbb614feeb66ab0992f914a99c71082_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-version-operator@sha256:d86fdfed81e9da5c1a9249ffdcdbc4576ab0ca2a1397ef4298d4da3ea892dd5d_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-version-operator@sha256:d86fdfed81e9da5c1a9249ffdcdbc4576ab0ca2a1397ef4298d4da3ea892dd5d_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-version-operator@sha256:d86fdfed81e9da5c1a9249ffdcdbc4576ab0ca2a1397ef4298d4da3ea892dd5d_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-version-operator@sha256:e84c61cf29f7118a5ae2539f573c66bfafbdcd560224e1e72d9c38fd03d88cb5_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-version-operator@sha256:e84c61cf29f7118a5ae2539f573c66bfafbdcd560224e1e72d9c38fd03d88cb5_arm64" + }, + "product_reference": "openshift4/ose-cluster-version-operator@sha256:e84c61cf29f7118a5ae2539f573c66bfafbdcd560224e1e72d9c38fd03d88cb5_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-version-operator@sha256:f3fa1152082f56afb742e572e20ea7eb6726a62494f15532ed438b4ac9e7aa29_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-cluster-version-operator@sha256:f3fa1152082f56afb742e572e20ea7eb6726a62494f15532ed438b4ac9e7aa29_amd64" + }, + "product_reference": "openshift4/ose-cluster-version-operator@sha256:f3fa1152082f56afb742e572e20ea7eb6726a62494f15532ed438b4ac9e7aa29_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-configmap-reloader@sha256:43e02aa864a605310e49bcb7cfb88096395777b9195f0ff97199674d23cc8e63_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-configmap-reloader@sha256:43e02aa864a605310e49bcb7cfb88096395777b9195f0ff97199674d23cc8e63_amd64" + }, + "product_reference": "openshift4/ose-configmap-reloader@sha256:43e02aa864a605310e49bcb7cfb88096395777b9195f0ff97199674d23cc8e63_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-configmap-reloader@sha256:848ac0f2da9db19bb722624592bd36cce0849f6eea403a61b5fb5c204c29464d_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-configmap-reloader@sha256:848ac0f2da9db19bb722624592bd36cce0849f6eea403a61b5fb5c204c29464d_ppc64le" + }, + "product_reference": "openshift4/ose-configmap-reloader@sha256:848ac0f2da9db19bb722624592bd36cce0849f6eea403a61b5fb5c204c29464d_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-configmap-reloader@sha256:b61260c71b57ad464295192442e35ace82b3450b2797ff690c67c336578c7ddb_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-configmap-reloader@sha256:b61260c71b57ad464295192442e35ace82b3450b2797ff690c67c336578c7ddb_s390x" + }, + "product_reference": "openshift4/ose-configmap-reloader@sha256:b61260c71b57ad464295192442e35ace82b3450b2797ff690c67c336578c7ddb_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-configmap-reloader@sha256:dab3fab2da67fc70f62d4bbdef2a6573e90c088a1bc8c6b1f257e8765350f0ea_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-configmap-reloader@sha256:dab3fab2da67fc70f62d4bbdef2a6573e90c088a1bc8c6b1f257e8765350f0ea_arm64" + }, + "product_reference": "openshift4/ose-configmap-reloader@sha256:dab3fab2da67fc70f62d4bbdef2a6573e90c088a1bc8c6b1f257e8765350f0ea_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console-operator@sha256:306483c0cd297549b7780e5c6a924f263b53d33dbd8f46b08e331a7dae748f5d_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-console-operator@sha256:306483c0cd297549b7780e5c6a924f263b53d33dbd8f46b08e331a7dae748f5d_arm64" + }, + "product_reference": "openshift4/ose-console-operator@sha256:306483c0cd297549b7780e5c6a924f263b53d33dbd8f46b08e331a7dae748f5d_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console-operator@sha256:59e96510d9ccd8b93949cee5e1a356eb64748b00f97db5d8813ac7580abab86c_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-console-operator@sha256:59e96510d9ccd8b93949cee5e1a356eb64748b00f97db5d8813ac7580abab86c_s390x" + }, + "product_reference": "openshift4/ose-console-operator@sha256:59e96510d9ccd8b93949cee5e1a356eb64748b00f97db5d8813ac7580abab86c_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console-operator@sha256:5e71e207d681b7b58fc6c5ea938413f656896d195d9648b6e536632a2b64169b_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-console-operator@sha256:5e71e207d681b7b58fc6c5ea938413f656896d195d9648b6e536632a2b64169b_amd64" + }, + "product_reference": "openshift4/ose-console-operator@sha256:5e71e207d681b7b58fc6c5ea938413f656896d195d9648b6e536632a2b64169b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console-operator@sha256:61a7fca1d8bbd7971336d19f8ddc4698598797cdb93fa8e50b0dd9575805a4dd_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-console-operator@sha256:61a7fca1d8bbd7971336d19f8ddc4698598797cdb93fa8e50b0dd9575805a4dd_ppc64le" + }, + "product_reference": "openshift4/ose-console-operator@sha256:61a7fca1d8bbd7971336d19f8ddc4698598797cdb93fa8e50b0dd9575805a4dd_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console@sha256:67108e481bbb2758129c038df604901a1d7adf8679912dd807d65c3131fbe5d6_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-console@sha256:67108e481bbb2758129c038df604901a1d7adf8679912dd807d65c3131fbe5d6_amd64" + }, + "product_reference": "openshift4/ose-console@sha256:67108e481bbb2758129c038df604901a1d7adf8679912dd807d65c3131fbe5d6_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console@sha256:78cb3fc53ed6bc598736e3e4d701634abd4466a6534fc51f301ac34a60aa4c9c_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-console@sha256:78cb3fc53ed6bc598736e3e4d701634abd4466a6534fc51f301ac34a60aa4c9c_ppc64le" + }, + "product_reference": "openshift4/ose-console@sha256:78cb3fc53ed6bc598736e3e4d701634abd4466a6534fc51f301ac34a60aa4c9c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console@sha256:99b06eb6c548993b0e3801d27a0b9ef631a1eddbe8bc517da4d8e62d9f81db19_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-console@sha256:99b06eb6c548993b0e3801d27a0b9ef631a1eddbe8bc517da4d8e62d9f81db19_arm64" + }, + "product_reference": "openshift4/ose-console@sha256:99b06eb6c548993b0e3801d27a0b9ef631a1eddbe8bc517da4d8e62d9f81db19_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console@sha256:c1bd2f2038d7ecfa564b14566370ed3647d070b2f9bb67e326f39b0164434c5b_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-console@sha256:c1bd2f2038d7ecfa564b14566370ed3647d070b2f9bb67e326f39b0164434c5b_s390x" + }, + "product_reference": "openshift4/ose-console@sha256:c1bd2f2038d7ecfa564b14566370ed3647d070b2f9bb67e326f39b0164434c5b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:0b5e464340bcb322041deb873913fe8ff45265b97353529210014291e1e646a9_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-container-networking-plugins-rhel8@sha256:0b5e464340bcb322041deb873913fe8ff45265b97353529210014291e1e646a9_ppc64le" + }, + "product_reference": "openshift4/ose-container-networking-plugins-rhel8@sha256:0b5e464340bcb322041deb873913fe8ff45265b97353529210014291e1e646a9_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:4bb3c83fdb8e071b78e79e25220d0377e9ab3779d727a5f35e6904d8f760bf0a_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-container-networking-plugins-rhel8@sha256:4bb3c83fdb8e071b78e79e25220d0377e9ab3779d727a5f35e6904d8f760bf0a_arm64" + }, + "product_reference": "openshift4/ose-container-networking-plugins-rhel8@sha256:4bb3c83fdb8e071b78e79e25220d0377e9ab3779d727a5f35e6904d8f760bf0a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:834cb187f56cf4da481e69d43800fd0420fe06d79a70817cef99f9adb9fbed3e_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-container-networking-plugins-rhel8@sha256:834cb187f56cf4da481e69d43800fd0420fe06d79a70817cef99f9adb9fbed3e_amd64" + }, + "product_reference": "openshift4/ose-container-networking-plugins-rhel8@sha256:834cb187f56cf4da481e69d43800fd0420fe06d79a70817cef99f9adb9fbed3e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:add64a1587d55817e761887ea8a16a7a1a2467eb0f31e588f4c4fa37ab59a085_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-container-networking-plugins-rhel8@sha256:add64a1587d55817e761887ea8a16a7a1a2467eb0f31e588f4c4fa37ab59a085_s390x" + }, + "product_reference": "openshift4/ose-container-networking-plugins-rhel8@sha256:add64a1587d55817e761887ea8a16a7a1a2467eb0f31e588f4c4fa37ab59a085_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-coredns@sha256:1f4d3b99d61ea340c3ee9052c2ac73a15a29bb5641337830e41259cc62cf5381_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-coredns@sha256:1f4d3b99d61ea340c3ee9052c2ac73a15a29bb5641337830e41259cc62cf5381_amd64" + }, + "product_reference": "openshift4/ose-coredns@sha256:1f4d3b99d61ea340c3ee9052c2ac73a15a29bb5641337830e41259cc62cf5381_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-coredns@sha256:3bbf6fcac5d5410a1f9377e3285b24cf01aa39b40d6f892fc52d4b777918fec1_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-coredns@sha256:3bbf6fcac5d5410a1f9377e3285b24cf01aa39b40d6f892fc52d4b777918fec1_s390x" + }, + "product_reference": "openshift4/ose-coredns@sha256:3bbf6fcac5d5410a1f9377e3285b24cf01aa39b40d6f892fc52d4b777918fec1_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-coredns@sha256:8290812336a0b0d391d668c09f60b7bd66f0d5eec88ad00bffcaf70635b57c5b_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-coredns@sha256:8290812336a0b0d391d668c09f60b7bd66f0d5eec88ad00bffcaf70635b57c5b_arm64" + }, + "product_reference": "openshift4/ose-coredns@sha256:8290812336a0b0d391d668c09f60b7bd66f0d5eec88ad00bffcaf70635b57c5b_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-coredns@sha256:bd147a87261bda844a594492204682a633a86ba3890a08cff1e6c89c40eb0c24_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-coredns@sha256:bd147a87261bda844a594492204682a633a86ba3890a08cff1e6c89c40eb0c24_ppc64le" + }, + "product_reference": "openshift4/ose-coredns@sha256:bd147a87261bda844a594492204682a633a86ba3890a08cff1e6c89c40eb0c24_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:0e906218ce7ce1e8f0dfeb2c0ad663bb485b09e35a039203af7c1e05006e7b8e_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-driver-manila-rhel8-operator@sha256:0e906218ce7ce1e8f0dfeb2c0ad663bb485b09e35a039203af7c1e05006e7b8e_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:0e906218ce7ce1e8f0dfeb2c0ad663bb485b09e35a039203af7c1e05006e7b8e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:c6a39dcabeaa5e0953ae13a92ec2ba566f100d599ce5b32eecc6eb1420614b5b_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-driver-manila-rhel8-operator@sha256:c6a39dcabeaa5e0953ae13a92ec2ba566f100d599ce5b32eecc6eb1420614b5b_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:c6a39dcabeaa5e0953ae13a92ec2ba566f100d599ce5b32eecc6eb1420614b5b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:5a5d6e0db2a267f309e90b45660b99aa88eb6eea7f0a49f3a4b0ed26df88c417_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-driver-manila-rhel8@sha256:5a5d6e0db2a267f309e90b45660b99aa88eb6eea7f0a49f3a4b0ed26df88c417_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-manila-rhel8@sha256:5a5d6e0db2a267f309e90b45660b99aa88eb6eea7f0a49f3a4b0ed26df88c417_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:dadde7981282ddab54a790d4b6a30fd7590f1006f83173fd3e3a72ad39b37638_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-driver-manila-rhel8@sha256:dadde7981282ddab54a790d4b6a30fd7590f1006f83173fd3e3a72ad39b37638_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-manila-rhel8@sha256:dadde7981282ddab54a790d4b6a30fd7590f1006f83173fd3e3a72ad39b37638_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-nfs-rhel8@sha256:4276877cd2e99260461e4bc01672b67cab72bba292f27087b93556bf1e76a643_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-driver-nfs-rhel8@sha256:4276877cd2e99260461e4bc01672b67cab72bba292f27087b93556bf1e76a643_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-nfs-rhel8@sha256:4276877cd2e99260461e4bc01672b67cab72bba292f27087b93556bf1e76a643_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-nfs-rhel8@sha256:e55613bef2d1f71e6724305479f73a10485bf10d8e5c055b371ff4f67f8d54ca_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-driver-nfs-rhel8@sha256:e55613bef2d1f71e6724305479f73a10485bf10d8e5c055b371ff4f67f8d54ca_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-nfs-rhel8@sha256:e55613bef2d1f71e6724305479f73a10485bf10d8e5c055b371ff4f67f8d54ca_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:1baab217d030ce975f489c6347c27d36692d66af462133184937d460d7871840_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:1baab217d030ce975f489c6347c27d36692d66af462133184937d460d7871840_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:1baab217d030ce975f489c6347c27d36692d66af462133184937d460d7871840_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:46c8a38bc99d20d75efa9849092b0112de91e035d85d0ce7c7847d012eac185a_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:46c8a38bc99d20d75efa9849092b0112de91e035d85d0ce7c7847d012eac185a_arm64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:46c8a38bc99d20d75efa9849092b0112de91e035d85d0ce7c7847d012eac185a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ca1994f18be73728a608f5af20be37ae7efb564855c9ac5514219bf019a0764a_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ca1994f18be73728a608f5af20be37ae7efb564855c9ac5514219bf019a0764a_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ca1994f18be73728a608f5af20be37ae7efb564855c9ac5514219bf019a0764a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:efa1f853668fcc3c2eb9ea5b627d9976e4b15c3a07dd7c5b3d657e9bdbd09bc1_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:efa1f853668fcc3c2eb9ea5b627d9976e4b15c3a07dd7c5b3d657e9bdbd09bc1_s390x" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:efa1f853668fcc3c2eb9ea5b627d9976e4b15c3a07dd7c5b3d657e9bdbd09bc1_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:0ee08f4af2b6f7ed675c533b70e9cd59bc009c2dd99f533cbbc27f450fb121fb_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-driver-shared-resource-rhel8@sha256:0ee08f4af2b6f7ed675c533b70e9cd59bc009c2dd99f533cbbc27f450fb121fb_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:0ee08f4af2b6f7ed675c533b70e9cd59bc009c2dd99f533cbbc27f450fb121fb_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:25d2ca587944e6754a33e83e46530da52238def232b301496d881851414110ea_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-driver-shared-resource-rhel8@sha256:25d2ca587944e6754a33e83e46530da52238def232b301496d881851414110ea_s390x" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:25d2ca587944e6754a33e83e46530da52238def232b301496d881851414110ea_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:9dcb3c7168663fba535cf1c6df43eeda36f86a713e32aa72f9492ee0b440466d_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-driver-shared-resource-rhel8@sha256:9dcb3c7168663fba535cf1c6df43eeda36f86a713e32aa72f9492ee0b440466d_arm64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:9dcb3c7168663fba535cf1c6df43eeda36f86a713e32aa72f9492ee0b440466d_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:bd22d37a9641c00785211e10843b81f7a7a7d89aaac7c56ae500ede670eae125_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-driver-shared-resource-rhel8@sha256:bd22d37a9641c00785211e10843b81f7a7a7d89aaac7c56ae500ede670eae125_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:bd22d37a9641c00785211e10843b81f7a7a7d89aaac7c56ae500ede670eae125_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:219651e24f5e6d5a998f38abc1910d3d742d1573d0211cdd8a2fa295a6c61fb9_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:219651e24f5e6d5a998f38abc1910d3d742d1573d0211cdd8a2fa295a6c61fb9_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:219651e24f5e6d5a998f38abc1910d3d742d1573d0211cdd8a2fa295a6c61fb9_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:a4955b2531a0df2d4e63487ae4283a6cdb1bc226e7bbf19214e277fa9cc2de59_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:a4955b2531a0df2d4e63487ae4283a6cdb1bc226e7bbf19214e277fa9cc2de59_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:a4955b2531a0df2d4e63487ae4283a6cdb1bc226e7bbf19214e277fa9cc2de59_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:d820823520af62c64df5e7f1b406f7a968120febb15890eb75ca24ca6b992597_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:d820823520af62c64df5e7f1b406f7a968120febb15890eb75ca24ca6b992597_s390x" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:d820823520af62c64df5e7f1b406f7a968120febb15890eb75ca24ca6b992597_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:e596cdf5056f574485009dff7254501f6b159178eacc9a2db2b606165f9e4204_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:e596cdf5056f574485009dff7254501f6b159178eacc9a2db2b606165f9e4204_arm64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:e596cdf5056f574485009dff7254501f6b159178eacc9a2db2b606165f9e4204_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:611c7ed340ec53125e70077e17c88dc152faf09ae0c194cf7808b710d1770562_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-attacher-rhel8@sha256:611c7ed340ec53125e70077e17c88dc152faf09ae0c194cf7808b710d1770562_s390x" + }, + "product_reference": "openshift4/ose-csi-external-attacher-rhel8@sha256:611c7ed340ec53125e70077e17c88dc152faf09ae0c194cf7808b710d1770562_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:63750ca4603ff8908c211b52b1d174a0e6ee4c1cfa84889b9c1d9fe849ee9055_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-attacher-rhel8@sha256:63750ca4603ff8908c211b52b1d174a0e6ee4c1cfa84889b9c1d9fe849ee9055_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-attacher-rhel8@sha256:63750ca4603ff8908c211b52b1d174a0e6ee4c1cfa84889b9c1d9fe849ee9055_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:e2ccd6102b16d7a3635b0f3db33aec3921ffd66fa84741be27f0237c6c58aa85_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-attacher-rhel8@sha256:e2ccd6102b16d7a3635b0f3db33aec3921ffd66fa84741be27f0237c6c58aa85_arm64" + }, + "product_reference": "openshift4/ose-csi-external-attacher-rhel8@sha256:e2ccd6102b16d7a3635b0f3db33aec3921ffd66fa84741be27f0237c6c58aa85_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:e465d3e1f3432674188a64e90b360518cc1a4b8dbd67f77adfb9127550de410c_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-attacher-rhel8@sha256:e465d3e1f3432674188a64e90b360518cc1a4b8dbd67f77adfb9127550de410c_amd64" + }, + "product_reference": "openshift4/ose-csi-external-attacher-rhel8@sha256:e465d3e1f3432674188a64e90b360518cc1a4b8dbd67f77adfb9127550de410c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher@sha256:611c7ed340ec53125e70077e17c88dc152faf09ae0c194cf7808b710d1770562_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-attacher@sha256:611c7ed340ec53125e70077e17c88dc152faf09ae0c194cf7808b710d1770562_s390x" + }, + "product_reference": "openshift4/ose-csi-external-attacher@sha256:611c7ed340ec53125e70077e17c88dc152faf09ae0c194cf7808b710d1770562_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher@sha256:63750ca4603ff8908c211b52b1d174a0e6ee4c1cfa84889b9c1d9fe849ee9055_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-attacher@sha256:63750ca4603ff8908c211b52b1d174a0e6ee4c1cfa84889b9c1d9fe849ee9055_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-attacher@sha256:63750ca4603ff8908c211b52b1d174a0e6ee4c1cfa84889b9c1d9fe849ee9055_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher@sha256:e2ccd6102b16d7a3635b0f3db33aec3921ffd66fa84741be27f0237c6c58aa85_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-attacher@sha256:e2ccd6102b16d7a3635b0f3db33aec3921ffd66fa84741be27f0237c6c58aa85_arm64" + }, + "product_reference": "openshift4/ose-csi-external-attacher@sha256:e2ccd6102b16d7a3635b0f3db33aec3921ffd66fa84741be27f0237c6c58aa85_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher@sha256:e465d3e1f3432674188a64e90b360518cc1a4b8dbd67f77adfb9127550de410c_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-attacher@sha256:e465d3e1f3432674188a64e90b360518cc1a4b8dbd67f77adfb9127550de410c_amd64" + }, + "product_reference": "openshift4/ose-csi-external-attacher@sha256:e465d3e1f3432674188a64e90b360518cc1a4b8dbd67f77adfb9127550de410c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:314f89fa0adb7fec7870544e4b3ddd2c8290869cc0f50ccb67045a6485d7bbde_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-provisioner-rhel8@sha256:314f89fa0adb7fec7870544e4b3ddd2c8290869cc0f50ccb67045a6485d7bbde_s390x" + }, + "product_reference": "openshift4/ose-csi-external-provisioner-rhel8@sha256:314f89fa0adb7fec7870544e4b3ddd2c8290869cc0f50ccb67045a6485d7bbde_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:624c7c71a9b16c51dec9f6a4349277095600c5f556247f5850f77a157955df90_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-provisioner-rhel8@sha256:624c7c71a9b16c51dec9f6a4349277095600c5f556247f5850f77a157955df90_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-provisioner-rhel8@sha256:624c7c71a9b16c51dec9f6a4349277095600c5f556247f5850f77a157955df90_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:988f996e1e3ddae212561dbb17518c8625acec621e4862768f6f5fc0418356d3_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-provisioner-rhel8@sha256:988f996e1e3ddae212561dbb17518c8625acec621e4862768f6f5fc0418356d3_arm64" + }, + "product_reference": "openshift4/ose-csi-external-provisioner-rhel8@sha256:988f996e1e3ddae212561dbb17518c8625acec621e4862768f6f5fc0418356d3_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:d9ebb52e0b1861ee635f3447245950b8df0e04732df681b14ed2d6cedf8d68a5_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-provisioner-rhel8@sha256:d9ebb52e0b1861ee635f3447245950b8df0e04732df681b14ed2d6cedf8d68a5_amd64" + }, + "product_reference": "openshift4/ose-csi-external-provisioner-rhel8@sha256:d9ebb52e0b1861ee635f3447245950b8df0e04732df681b14ed2d6cedf8d68a5_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner@sha256:314f89fa0adb7fec7870544e4b3ddd2c8290869cc0f50ccb67045a6485d7bbde_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-provisioner@sha256:314f89fa0adb7fec7870544e4b3ddd2c8290869cc0f50ccb67045a6485d7bbde_s390x" + }, + "product_reference": "openshift4/ose-csi-external-provisioner@sha256:314f89fa0adb7fec7870544e4b3ddd2c8290869cc0f50ccb67045a6485d7bbde_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner@sha256:624c7c71a9b16c51dec9f6a4349277095600c5f556247f5850f77a157955df90_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-provisioner@sha256:624c7c71a9b16c51dec9f6a4349277095600c5f556247f5850f77a157955df90_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-provisioner@sha256:624c7c71a9b16c51dec9f6a4349277095600c5f556247f5850f77a157955df90_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner@sha256:988f996e1e3ddae212561dbb17518c8625acec621e4862768f6f5fc0418356d3_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-provisioner@sha256:988f996e1e3ddae212561dbb17518c8625acec621e4862768f6f5fc0418356d3_arm64" + }, + "product_reference": "openshift4/ose-csi-external-provisioner@sha256:988f996e1e3ddae212561dbb17518c8625acec621e4862768f6f5fc0418356d3_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner@sha256:d9ebb52e0b1861ee635f3447245950b8df0e04732df681b14ed2d6cedf8d68a5_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-provisioner@sha256:d9ebb52e0b1861ee635f3447245950b8df0e04732df681b14ed2d6cedf8d68a5_amd64" + }, + "product_reference": "openshift4/ose-csi-external-provisioner@sha256:d9ebb52e0b1861ee635f3447245950b8df0e04732df681b14ed2d6cedf8d68a5_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:239fa2640fc0781be819e9488e44421f49985986e109ccabf902e0fec9e2686c_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-resizer-rhel8@sha256:239fa2640fc0781be819e9488e44421f49985986e109ccabf902e0fec9e2686c_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-resizer-rhel8@sha256:239fa2640fc0781be819e9488e44421f49985986e109ccabf902e0fec9e2686c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:3428c46b1df2760f792e8e72d0ff590850071eb7b321df2986d0f4d888314289_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-resizer-rhel8@sha256:3428c46b1df2760f792e8e72d0ff590850071eb7b321df2986d0f4d888314289_s390x" + }, + "product_reference": "openshift4/ose-csi-external-resizer-rhel8@sha256:3428c46b1df2760f792e8e72d0ff590850071eb7b321df2986d0f4d888314289_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:5d891b3c11e1f29ca9c04f372978026550665bb929b207251ecc7e73a0f91ca0_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-resizer-rhel8@sha256:5d891b3c11e1f29ca9c04f372978026550665bb929b207251ecc7e73a0f91ca0_arm64" + }, + "product_reference": "openshift4/ose-csi-external-resizer-rhel8@sha256:5d891b3c11e1f29ca9c04f372978026550665bb929b207251ecc7e73a0f91ca0_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:d8ae7124f6e30da188f7a3caff4fd054bc0032417562b203ecec03b20e027081_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-resizer-rhel8@sha256:d8ae7124f6e30da188f7a3caff4fd054bc0032417562b203ecec03b20e027081_amd64" + }, + "product_reference": "openshift4/ose-csi-external-resizer-rhel8@sha256:d8ae7124f6e30da188f7a3caff4fd054bc0032417562b203ecec03b20e027081_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer@sha256:239fa2640fc0781be819e9488e44421f49985986e109ccabf902e0fec9e2686c_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-resizer@sha256:239fa2640fc0781be819e9488e44421f49985986e109ccabf902e0fec9e2686c_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-resizer@sha256:239fa2640fc0781be819e9488e44421f49985986e109ccabf902e0fec9e2686c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer@sha256:3428c46b1df2760f792e8e72d0ff590850071eb7b321df2986d0f4d888314289_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-resizer@sha256:3428c46b1df2760f792e8e72d0ff590850071eb7b321df2986d0f4d888314289_s390x" + }, + "product_reference": "openshift4/ose-csi-external-resizer@sha256:3428c46b1df2760f792e8e72d0ff590850071eb7b321df2986d0f4d888314289_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer@sha256:5d891b3c11e1f29ca9c04f372978026550665bb929b207251ecc7e73a0f91ca0_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-resizer@sha256:5d891b3c11e1f29ca9c04f372978026550665bb929b207251ecc7e73a0f91ca0_arm64" + }, + "product_reference": "openshift4/ose-csi-external-resizer@sha256:5d891b3c11e1f29ca9c04f372978026550665bb929b207251ecc7e73a0f91ca0_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer@sha256:d8ae7124f6e30da188f7a3caff4fd054bc0032417562b203ecec03b20e027081_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-resizer@sha256:d8ae7124f6e30da188f7a3caff4fd054bc0032417562b203ecec03b20e027081_amd64" + }, + "product_reference": "openshift4/ose-csi-external-resizer@sha256:d8ae7124f6e30da188f7a3caff4fd054bc0032417562b203ecec03b20e027081_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:1fd8a6f961dbf805212f508c1285f60c9a9a79a3f87c5a8e56d4dfe84a927125_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-snapshotter-rhel8@sha256:1fd8a6f961dbf805212f508c1285f60c9a9a79a3f87c5a8e56d4dfe84a927125_arm64" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:1fd8a6f961dbf805212f508c1285f60c9a9a79a3f87c5a8e56d4dfe84a927125_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:63d714b7c2b8f1c46bb6568047796a480d47c0b13454696ec4e05cd2bafd6b38_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-snapshotter-rhel8@sha256:63d714b7c2b8f1c46bb6568047796a480d47c0b13454696ec4e05cd2bafd6b38_amd64" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:63d714b7c2b8f1c46bb6568047796a480d47c0b13454696ec4e05cd2bafd6b38_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:c2eb5d0dc8c88a157ff226960723c3b8626e300127205e87b3a945e2e0041a5e_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-snapshotter-rhel8@sha256:c2eb5d0dc8c88a157ff226960723c3b8626e300127205e87b3a945e2e0041a5e_s390x" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:c2eb5d0dc8c88a157ff226960723c3b8626e300127205e87b3a945e2e0041a5e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:e168bf8e14343e2b44e19274a3d46d20ad9113737c5150ba87eb7fbbddedc708_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-snapshotter-rhel8@sha256:e168bf8e14343e2b44e19274a3d46d20ad9113737c5150ba87eb7fbbddedc708_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:e168bf8e14343e2b44e19274a3d46d20ad9113737c5150ba87eb7fbbddedc708_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:1fd8a6f961dbf805212f508c1285f60c9a9a79a3f87c5a8e56d4dfe84a927125_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-snapshotter@sha256:1fd8a6f961dbf805212f508c1285f60c9a9a79a3f87c5a8e56d4dfe84a927125_arm64" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter@sha256:1fd8a6f961dbf805212f508c1285f60c9a9a79a3f87c5a8e56d4dfe84a927125_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:63d714b7c2b8f1c46bb6568047796a480d47c0b13454696ec4e05cd2bafd6b38_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-snapshotter@sha256:63d714b7c2b8f1c46bb6568047796a480d47c0b13454696ec4e05cd2bafd6b38_amd64" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter@sha256:63d714b7c2b8f1c46bb6568047796a480d47c0b13454696ec4e05cd2bafd6b38_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:c2eb5d0dc8c88a157ff226960723c3b8626e300127205e87b3a945e2e0041a5e_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-snapshotter@sha256:c2eb5d0dc8c88a157ff226960723c3b8626e300127205e87b3a945e2e0041a5e_s390x" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter@sha256:c2eb5d0dc8c88a157ff226960723c3b8626e300127205e87b3a945e2e0041a5e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:e168bf8e14343e2b44e19274a3d46d20ad9113737c5150ba87eb7fbbddedc708_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-external-snapshotter@sha256:e168bf8e14343e2b44e19274a3d46d20ad9113737c5150ba87eb7fbbddedc708_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter@sha256:e168bf8e14343e2b44e19274a3d46d20ad9113737c5150ba87eb7fbbddedc708_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:589f1014c64d7970a0b728e37f95f4172011c44cb8ec04744bc7cbd5a9848d8a_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-livenessprobe-rhel8@sha256:589f1014c64d7970a0b728e37f95f4172011c44cb8ec04744bc7cbd5a9848d8a_arm64" + }, + "product_reference": "openshift4/ose-csi-livenessprobe-rhel8@sha256:589f1014c64d7970a0b728e37f95f4172011c44cb8ec04744bc7cbd5a9848d8a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:5ac485766b7757dfff33edcb25d84773cf21dc24fe894a376e8cd145df0a6749_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-livenessprobe-rhel8@sha256:5ac485766b7757dfff33edcb25d84773cf21dc24fe894a376e8cd145df0a6749_ppc64le" + }, + "product_reference": "openshift4/ose-csi-livenessprobe-rhel8@sha256:5ac485766b7757dfff33edcb25d84773cf21dc24fe894a376e8cd145df0a6749_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:6c47f77fd4fb1c95c2e89952e307e8f529966fabe21664349eb66f5cc22cc72e_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-livenessprobe-rhel8@sha256:6c47f77fd4fb1c95c2e89952e307e8f529966fabe21664349eb66f5cc22cc72e_s390x" + }, + "product_reference": "openshift4/ose-csi-livenessprobe-rhel8@sha256:6c47f77fd4fb1c95c2e89952e307e8f529966fabe21664349eb66f5cc22cc72e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:adb731237c8d264dc0f5cef796cc955d3766cebc1e712b58616eef6ea970b18a_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-livenessprobe-rhel8@sha256:adb731237c8d264dc0f5cef796cc955d3766cebc1e712b58616eef6ea970b18a_amd64" + }, + "product_reference": "openshift4/ose-csi-livenessprobe-rhel8@sha256:adb731237c8d264dc0f5cef796cc955d3766cebc1e712b58616eef6ea970b18a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe@sha256:589f1014c64d7970a0b728e37f95f4172011c44cb8ec04744bc7cbd5a9848d8a_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-livenessprobe@sha256:589f1014c64d7970a0b728e37f95f4172011c44cb8ec04744bc7cbd5a9848d8a_arm64" + }, + "product_reference": "openshift4/ose-csi-livenessprobe@sha256:589f1014c64d7970a0b728e37f95f4172011c44cb8ec04744bc7cbd5a9848d8a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe@sha256:5ac485766b7757dfff33edcb25d84773cf21dc24fe894a376e8cd145df0a6749_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-livenessprobe@sha256:5ac485766b7757dfff33edcb25d84773cf21dc24fe894a376e8cd145df0a6749_ppc64le" + }, + "product_reference": "openshift4/ose-csi-livenessprobe@sha256:5ac485766b7757dfff33edcb25d84773cf21dc24fe894a376e8cd145df0a6749_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe@sha256:6c47f77fd4fb1c95c2e89952e307e8f529966fabe21664349eb66f5cc22cc72e_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-livenessprobe@sha256:6c47f77fd4fb1c95c2e89952e307e8f529966fabe21664349eb66f5cc22cc72e_s390x" + }, + "product_reference": "openshift4/ose-csi-livenessprobe@sha256:6c47f77fd4fb1c95c2e89952e307e8f529966fabe21664349eb66f5cc22cc72e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe@sha256:adb731237c8d264dc0f5cef796cc955d3766cebc1e712b58616eef6ea970b18a_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-livenessprobe@sha256:adb731237c8d264dc0f5cef796cc955d3766cebc1e712b58616eef6ea970b18a_amd64" + }, + "product_reference": "openshift4/ose-csi-livenessprobe@sha256:adb731237c8d264dc0f5cef796cc955d3766cebc1e712b58616eef6ea970b18a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:2d409fcab38b3a7cfefdcbb5dc21d9f5cc7d198256cfa16911f00732c71e8128_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-node-driver-registrar-rhel8@sha256:2d409fcab38b3a7cfefdcbb5dc21d9f5cc7d198256cfa16911f00732c71e8128_s390x" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:2d409fcab38b3a7cfefdcbb5dc21d9f5cc7d198256cfa16911f00732c71e8128_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:436e7091d0e52ba8ad46d1f1ed992bf8330ed4a42aedb0dd1287a6c6fc927475_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-node-driver-registrar-rhel8@sha256:436e7091d0e52ba8ad46d1f1ed992bf8330ed4a42aedb0dd1287a6c6fc927475_ppc64le" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:436e7091d0e52ba8ad46d1f1ed992bf8330ed4a42aedb0dd1287a6c6fc927475_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:71f9289320bd66c59a737051fb607a0a4647cb88eb91b99c320433fe86a7bab8_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-node-driver-registrar-rhel8@sha256:71f9289320bd66c59a737051fb607a0a4647cb88eb91b99c320433fe86a7bab8_amd64" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:71f9289320bd66c59a737051fb607a0a4647cb88eb91b99c320433fe86a7bab8_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:796968c0f22ae38d651ccb42bd9837b5420790daf4dfed6e07616b544e6e9deb_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-node-driver-registrar-rhel8@sha256:796968c0f22ae38d651ccb42bd9837b5420790daf4dfed6e07616b544e6e9deb_arm64" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:796968c0f22ae38d651ccb42bd9837b5420790daf4dfed6e07616b544e6e9deb_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:2d409fcab38b3a7cfefdcbb5dc21d9f5cc7d198256cfa16911f00732c71e8128_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-node-driver-registrar@sha256:2d409fcab38b3a7cfefdcbb5dc21d9f5cc7d198256cfa16911f00732c71e8128_s390x" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar@sha256:2d409fcab38b3a7cfefdcbb5dc21d9f5cc7d198256cfa16911f00732c71e8128_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:436e7091d0e52ba8ad46d1f1ed992bf8330ed4a42aedb0dd1287a6c6fc927475_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-node-driver-registrar@sha256:436e7091d0e52ba8ad46d1f1ed992bf8330ed4a42aedb0dd1287a6c6fc927475_ppc64le" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar@sha256:436e7091d0e52ba8ad46d1f1ed992bf8330ed4a42aedb0dd1287a6c6fc927475_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:71f9289320bd66c59a737051fb607a0a4647cb88eb91b99c320433fe86a7bab8_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-node-driver-registrar@sha256:71f9289320bd66c59a737051fb607a0a4647cb88eb91b99c320433fe86a7bab8_amd64" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar@sha256:71f9289320bd66c59a737051fb607a0a4647cb88eb91b99c320433fe86a7bab8_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:796968c0f22ae38d651ccb42bd9837b5420790daf4dfed6e07616b544e6e9deb_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-node-driver-registrar@sha256:796968c0f22ae38d651ccb42bd9837b5420790daf4dfed6e07616b544e6e9deb_arm64" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar@sha256:796968c0f22ae38d651ccb42bd9837b5420790daf4dfed6e07616b544e6e9deb_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:4c126a3e0e72b93a8f0b3fb57c8c120cfe8c65aee047f7e2ac3834abef433ab2_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-snapshot-controller-rhel8@sha256:4c126a3e0e72b93a8f0b3fb57c8c120cfe8c65aee047f7e2ac3834abef433ab2_ppc64le" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:4c126a3e0e72b93a8f0b3fb57c8c120cfe8c65aee047f7e2ac3834abef433ab2_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:82bffbad1dc1b266d9387d73065d85041b9db83078c7b8e321de1ee36e2e5ad5_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-snapshot-controller-rhel8@sha256:82bffbad1dc1b266d9387d73065d85041b9db83078c7b8e321de1ee36e2e5ad5_arm64" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:82bffbad1dc1b266d9387d73065d85041b9db83078c7b8e321de1ee36e2e5ad5_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:a5cd9ad70ba8256931e79f85b5164524ceebd953c001b265d0b9521652f302fd_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-snapshot-controller-rhel8@sha256:a5cd9ad70ba8256931e79f85b5164524ceebd953c001b265d0b9521652f302fd_amd64" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:a5cd9ad70ba8256931e79f85b5164524ceebd953c001b265d0b9521652f302fd_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:c8299417cb97c81ee356d135d99805ddc6a3c7596166189a3127da53865295cb_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-snapshot-controller-rhel8@sha256:c8299417cb97c81ee356d135d99805ddc6a3c7596166189a3127da53865295cb_s390x" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:c8299417cb97c81ee356d135d99805ddc6a3c7596166189a3127da53865295cb_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:4c126a3e0e72b93a8f0b3fb57c8c120cfe8c65aee047f7e2ac3834abef433ab2_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-snapshot-controller@sha256:4c126a3e0e72b93a8f0b3fb57c8c120cfe8c65aee047f7e2ac3834abef433ab2_ppc64le" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller@sha256:4c126a3e0e72b93a8f0b3fb57c8c120cfe8c65aee047f7e2ac3834abef433ab2_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:82bffbad1dc1b266d9387d73065d85041b9db83078c7b8e321de1ee36e2e5ad5_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-snapshot-controller@sha256:82bffbad1dc1b266d9387d73065d85041b9db83078c7b8e321de1ee36e2e5ad5_arm64" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller@sha256:82bffbad1dc1b266d9387d73065d85041b9db83078c7b8e321de1ee36e2e5ad5_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:a5cd9ad70ba8256931e79f85b5164524ceebd953c001b265d0b9521652f302fd_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-snapshot-controller@sha256:a5cd9ad70ba8256931e79f85b5164524ceebd953c001b265d0b9521652f302fd_amd64" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller@sha256:a5cd9ad70ba8256931e79f85b5164524ceebd953c001b265d0b9521652f302fd_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:c8299417cb97c81ee356d135d99805ddc6a3c7596166189a3127da53865295cb_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-snapshot-controller@sha256:c8299417cb97c81ee356d135d99805ddc6a3c7596166189a3127da53865295cb_s390x" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller@sha256:c8299417cb97c81ee356d135d99805ddc6a3c7596166189a3127da53865295cb_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:3a4632764a38d543fa8d69161bb00dfaec9761c2157cb2ff69cd4ddac4f7b43d_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:3a4632764a38d543fa8d69161bb00dfaec9761c2157cb2ff69cd4ddac4f7b43d_amd64" + }, + "product_reference": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:3a4632764a38d543fa8d69161bb00dfaec9761c2157cb2ff69cd4ddac4f7b43d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:6540fb9c32a07d49836d9c0995702ae9a2055d5459b785a2f88e5697300dee1d_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:6540fb9c32a07d49836d9c0995702ae9a2055d5459b785a2f88e5697300dee1d_s390x" + }, + "product_reference": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:6540fb9c32a07d49836d9c0995702ae9a2055d5459b785a2f88e5697300dee1d_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:cf4b02164152f5ec256d71f9f86284ea2dbfe219b17cf6c2f0ce0eb24a056a92_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:cf4b02164152f5ec256d71f9f86284ea2dbfe219b17cf6c2f0ce0eb24a056a92_arm64" + }, + "product_reference": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:cf4b02164152f5ec256d71f9f86284ea2dbfe219b17cf6c2f0ce0eb24a056a92_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:ee01a05a62315cb76c76040c512874f6a39934c0769bc926ebf38aa3bac57b2a_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:ee01a05a62315cb76c76040c512874f6a39934c0769bc926ebf38aa3bac57b2a_ppc64le" + }, + "product_reference": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:ee01a05a62315cb76c76040c512874f6a39934c0769bc926ebf38aa3bac57b2a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-deployer@sha256:762daec25ed98a7cf0aa6979a5e3244539bd01fb3d6f46bac39b8d5bbbf19f25_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-deployer@sha256:762daec25ed98a7cf0aa6979a5e3244539bd01fb3d6f46bac39b8d5bbbf19f25_s390x" + }, + "product_reference": "openshift4/ose-deployer@sha256:762daec25ed98a7cf0aa6979a5e3244539bd01fb3d6f46bac39b8d5bbbf19f25_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-deployer@sha256:79dff3367ec6f976aadbea61ec50be8403c8920e372caefe81589f0129b319ea_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-deployer@sha256:79dff3367ec6f976aadbea61ec50be8403c8920e372caefe81589f0129b319ea_ppc64le" + }, + "product_reference": "openshift4/ose-deployer@sha256:79dff3367ec6f976aadbea61ec50be8403c8920e372caefe81589f0129b319ea_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-deployer@sha256:b2efd69dffd2ce24700fab3d93969ed088a6b0b3bff67c62a9fdc6df8f75f4b4_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-deployer@sha256:b2efd69dffd2ce24700fab3d93969ed088a6b0b3bff67c62a9fdc6df8f75f4b4_amd64" + }, + "product_reference": "openshift4/ose-deployer@sha256:b2efd69dffd2ce24700fab3d93969ed088a6b0b3bff67c62a9fdc6df8f75f4b4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-deployer@sha256:cfc3c0478993aa0582c94af6ad9a724f14fe247f2e2e8f96dce4225db5a89318_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-deployer@sha256:cfc3c0478993aa0582c94af6ad9a724f14fe247f2e2e8f96dce4225db5a89318_arm64" + }, + "product_reference": "openshift4/ose-deployer@sha256:cfc3c0478993aa0582c94af6ad9a724f14fe247f2e2e8f96dce4225db5a89318_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-builder@sha256:07459f5b40aba4f4726076cf4df73699eb1b1bd1825a5b9adb95af1700f359d5_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-docker-builder@sha256:07459f5b40aba4f4726076cf4df73699eb1b1bd1825a5b9adb95af1700f359d5_amd64" + }, + "product_reference": "openshift4/ose-docker-builder@sha256:07459f5b40aba4f4726076cf4df73699eb1b1bd1825a5b9adb95af1700f359d5_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-builder@sha256:4264dd6e2e55c5e56ebb829d9cb161e31a75a516eadf93372621a289b8ccd070_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-docker-builder@sha256:4264dd6e2e55c5e56ebb829d9cb161e31a75a516eadf93372621a289b8ccd070_arm64" + }, + "product_reference": "openshift4/ose-docker-builder@sha256:4264dd6e2e55c5e56ebb829d9cb161e31a75a516eadf93372621a289b8ccd070_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-builder@sha256:9e2ba827279a79cd983501f3d0755d07d396e4c05f47c882ded51500d4885b76_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-docker-builder@sha256:9e2ba827279a79cd983501f3d0755d07d396e4c05f47c882ded51500d4885b76_s390x" + }, + "product_reference": "openshift4/ose-docker-builder@sha256:9e2ba827279a79cd983501f3d0755d07d396e4c05f47c882ded51500d4885b76_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-builder@sha256:ed5b9a4b9e8a6f70546dcb318529caf2cf7b49db970831abd54f03e015100752_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-docker-builder@sha256:ed5b9a4b9e8a6f70546dcb318529caf2cf7b49db970831abd54f03e015100752_ppc64le" + }, + "product_reference": "openshift4/ose-docker-builder@sha256:ed5b9a4b9e8a6f70546dcb318529caf2cf7b49db970831abd54f03e015100752_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-registry@sha256:421ca14bb7465dc679f27db95cf6a17214213c0718b9a49325194bc41f42f287_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-docker-registry@sha256:421ca14bb7465dc679f27db95cf6a17214213c0718b9a49325194bc41f42f287_arm64" + }, + "product_reference": "openshift4/ose-docker-registry@sha256:421ca14bb7465dc679f27db95cf6a17214213c0718b9a49325194bc41f42f287_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-registry@sha256:5f470c25d86de4b6ba361608835f75cb8773a040187cac1e54574f8eb5c4d776_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-docker-registry@sha256:5f470c25d86de4b6ba361608835f75cb8773a040187cac1e54574f8eb5c4d776_s390x" + }, + "product_reference": "openshift4/ose-docker-registry@sha256:5f470c25d86de4b6ba361608835f75cb8773a040187cac1e54574f8eb5c4d776_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-registry@sha256:9e33dddcaa6c2f0676a96dce7001dc99547994d4148ebbec0008bacb08a0c79c_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-docker-registry@sha256:9e33dddcaa6c2f0676a96dce7001dc99547994d4148ebbec0008bacb08a0c79c_ppc64le" + }, + "product_reference": "openshift4/ose-docker-registry@sha256:9e33dddcaa6c2f0676a96dce7001dc99547994d4148ebbec0008bacb08a0c79c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-registry@sha256:d89ce42899c02c1ad3054f594e5090472450d6ce791825c518bcf2841bc9f1bd_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-docker-registry@sha256:d89ce42899c02c1ad3054f594e5090472450d6ce791825c518bcf2841bc9f1bd_amd64" + }, + "product_reference": "openshift4/ose-docker-registry@sha256:d89ce42899c02c1ad3054f594e5090472450d6ce791825c518bcf2841bc9f1bd_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-etcd@sha256:490fe7aabd9fda7b4c40fa26a8fd8800ec376cdb5aeb88e29f1f45a4db2ca6ce_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-etcd@sha256:490fe7aabd9fda7b4c40fa26a8fd8800ec376cdb5aeb88e29f1f45a4db2ca6ce_ppc64le" + }, + "product_reference": "openshift4/ose-etcd@sha256:490fe7aabd9fda7b4c40fa26a8fd8800ec376cdb5aeb88e29f1f45a4db2ca6ce_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-etcd@sha256:4f21e374662d5956348c6084e1e346e2955548cfac1c1970da3ac0b66d3552dc_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-etcd@sha256:4f21e374662d5956348c6084e1e346e2955548cfac1c1970da3ac0b66d3552dc_arm64" + }, + "product_reference": "openshift4/ose-etcd@sha256:4f21e374662d5956348c6084e1e346e2955548cfac1c1970da3ac0b66d3552dc_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-etcd@sha256:9caed8691399dfdae0c8b47d7f67c59de36bc1890e79a48bdc9644f9f1430def_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-etcd@sha256:9caed8691399dfdae0c8b47d7f67c59de36bc1890e79a48bdc9644f9f1430def_s390x" + }, + "product_reference": "openshift4/ose-etcd@sha256:9caed8691399dfdae0c8b47d7f67c59de36bc1890e79a48bdc9644f9f1430def_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-etcd@sha256:cf2ad12790972756af88ab36f1588594e47b994ea63ddbd0adcc6613f5aa09a8_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-etcd@sha256:cf2ad12790972756af88ab36f1588594e47b994ea63ddbd0adcc6613f5aa09a8_amd64" + }, + "product_reference": "openshift4/ose-etcd@sha256:cf2ad12790972756af88ab36f1588594e47b994ea63ddbd0adcc6613f5aa09a8_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:32385556546b254ade518f4aafb1e1c6c0a8e0edf863384318d7251bdaa0560e_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:32385556546b254ade518f4aafb1e1c6c0a8e0edf863384318d7251bdaa0560e_amd64" + }, + "product_reference": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:32385556546b254ade518f4aafb1e1c6c0a8e0edf863384318d7251bdaa0560e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:b1e1d0e2ffcd56228436ea1a2c38d1aa2c1dc1bf5846123b62de57a8dafdc4a4_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:b1e1d0e2ffcd56228436ea1a2c38d1aa2c1dc1bf5846123b62de57a8dafdc4a4_ppc64le" + }, + "product_reference": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:b1e1d0e2ffcd56228436ea1a2c38d1aa2c1dc1bf5846123b62de57a8dafdc4a4_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:1d57e938a63f656cc5e4097309c2804fd298f19a719e20d93c7128900cba1366_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:1d57e938a63f656cc5e4097309c2804fd298f19a719e20d93c7128900cba1366_amd64" + }, + "product_reference": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:1d57e938a63f656cc5e4097309c2804fd298f19a719e20d93c7128900cba1366_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:9ac45a39075f3fb0518bcb96bb11b904672c3ea0e16fcb13071d8dfb3119ddf1_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:9ac45a39075f3fb0518bcb96bb11b904672c3ea0e16fcb13071d8dfb3119ddf1_ppc64le" + }, + "product_reference": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:9ac45a39075f3fb0518bcb96bb11b904672c3ea0e16fcb13071d8dfb3119ddf1_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:63cc071048d2bb1f87ecf50896812f90daf8503946ab9c4e59061021724053ba_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:63cc071048d2bb1f87ecf50896812f90daf8503946ab9c4e59061021724053ba_ppc64le" + }, + "product_reference": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:63cc071048d2bb1f87ecf50896812f90daf8503946ab9c4e59061021724053ba_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:90f3bbced92c43ab03f06c2443447fb36fda570be13db8c148be957a92587f5f_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:90f3bbced92c43ab03f06c2443447fb36fda570be13db8c148be957a92587f5f_amd64" + }, + "product_reference": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:90f3bbced92c43ab03f06c2443447fb36fda570be13db8c148be957a92587f5f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:0d5ffbc8f419135a97d9aed954e36826fa023a6189c2dd4bfa5eb1f8b2db43ed_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:0d5ffbc8f419135a97d9aed954e36826fa023a6189c2dd4bfa5eb1f8b2db43ed_ppc64le" + }, + "product_reference": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:0d5ffbc8f419135a97d9aed954e36826fa023a6189c2dd4bfa5eb1f8b2db43ed_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:5c8ac4cbf0bc5b3ee97c0c324ade9e1be0a3abea0687b125d4a4359a6837a0b3_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:5c8ac4cbf0bc5b3ee97c0c324ade9e1be0a3abea0687b125d4a4359a6837a0b3_amd64" + }, + "product_reference": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:5c8ac4cbf0bc5b3ee97c0c324ade9e1be0a3abea0687b125d4a4359a6837a0b3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-haproxy-router@sha256:3f62f8f805b24a03de3176db23281bbe5d7947d1c44db32a73c4124118c37304_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-haproxy-router@sha256:3f62f8f805b24a03de3176db23281bbe5d7947d1c44db32a73c4124118c37304_ppc64le" + }, + "product_reference": "openshift4/ose-haproxy-router@sha256:3f62f8f805b24a03de3176db23281bbe5d7947d1c44db32a73c4124118c37304_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-haproxy-router@sha256:5c943f736e9e186064470205427650bfc3ce06174ad426cecdd80b7aa158eda9_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-haproxy-router@sha256:5c943f736e9e186064470205427650bfc3ce06174ad426cecdd80b7aa158eda9_arm64" + }, + "product_reference": "openshift4/ose-haproxy-router@sha256:5c943f736e9e186064470205427650bfc3ce06174ad426cecdd80b7aa158eda9_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-haproxy-router@sha256:7e5e9986c8c7255a593c9abe16bd8705d866183647784768ac9c8797649abe0d_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-haproxy-router@sha256:7e5e9986c8c7255a593c9abe16bd8705d866183647784768ac9c8797649abe0d_s390x" + }, + "product_reference": "openshift4/ose-haproxy-router@sha256:7e5e9986c8c7255a593c9abe16bd8705d866183647784768ac9c8797649abe0d_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-haproxy-router@sha256:be2c55eb6bfe9e7d7a407179a0479619cbb321a4a0b801ee75bafa260c38155b_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-haproxy-router@sha256:be2c55eb6bfe9e7d7a407179a0479619cbb321a4a0b801ee75bafa260c38155b_amd64" + }, + "product_reference": "openshift4/ose-haproxy-router@sha256:be2c55eb6bfe9e7d7a407179a0479619cbb321a4a0b801ee75bafa260c38155b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hyperkube@sha256:1b902f64d75320d63da9c237d8859f99d039c73f9cfd796bc3e55800551464f8_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-hyperkube@sha256:1b902f64d75320d63da9c237d8859f99d039c73f9cfd796bc3e55800551464f8_amd64" + }, + "product_reference": "openshift4/ose-hyperkube@sha256:1b902f64d75320d63da9c237d8859f99d039c73f9cfd796bc3e55800551464f8_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hyperkube@sha256:963c7908ccb27a288eedf70736ee3688d7e373b359db8b5b540b7455dca85388_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-hyperkube@sha256:963c7908ccb27a288eedf70736ee3688d7e373b359db8b5b540b7455dca85388_ppc64le" + }, + "product_reference": "openshift4/ose-hyperkube@sha256:963c7908ccb27a288eedf70736ee3688d7e373b359db8b5b540b7455dca85388_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hyperkube@sha256:a7c4debda9d72ec21d7fe142b4ed43df9ab952c2a9ef618086273cbffd586fe2_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-hyperkube@sha256:a7c4debda9d72ec21d7fe142b4ed43df9ab952c2a9ef618086273cbffd586fe2_s390x" + }, + "product_reference": "openshift4/ose-hyperkube@sha256:a7c4debda9d72ec21d7fe142b4ed43df9ab952c2a9ef618086273cbffd586fe2_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hyperkube@sha256:ee5fc9c965caa46ea8dcd4ca667746ca2a6db982d64655df03eef319dc706146_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-hyperkube@sha256:ee5fc9c965caa46ea8dcd4ca667746ca2a6db982d64655df03eef319dc706146_arm64" + }, + "product_reference": "openshift4/ose-hyperkube@sha256:ee5fc9c965caa46ea8dcd4ca667746ca2a6db982d64655df03eef319dc706146_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hypershift-rhel8@sha256:17e33500316a2fc8cd95938bcca09ca4c0946c0f418ac903c5e05dd3c8f80fcc_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-hypershift-rhel8@sha256:17e33500316a2fc8cd95938bcca09ca4c0946c0f418ac903c5e05dd3c8f80fcc_ppc64le" + }, + "product_reference": "openshift4/ose-hypershift-rhel8@sha256:17e33500316a2fc8cd95938bcca09ca4c0946c0f418ac903c5e05dd3c8f80fcc_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hypershift-rhel8@sha256:214ce0ae868bed01c138b89b31535e9efe4ca769982583158e90bfae98b67ce4_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-hypershift-rhel8@sha256:214ce0ae868bed01c138b89b31535e9efe4ca769982583158e90bfae98b67ce4_s390x" + }, + "product_reference": "openshift4/ose-hypershift-rhel8@sha256:214ce0ae868bed01c138b89b31535e9efe4ca769982583158e90bfae98b67ce4_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hypershift-rhel8@sha256:7a1acf3d23d0dbd5c6d1426e55d381b3920b7bd4549536abb5697410e6e6e6da_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-hypershift-rhel8@sha256:7a1acf3d23d0dbd5c6d1426e55d381b3920b7bd4549536abb5697410e6e6e6da_amd64" + }, + "product_reference": "openshift4/ose-hypershift-rhel8@sha256:7a1acf3d23d0dbd5c6d1426e55d381b3920b7bd4549536abb5697410e6e6e6da_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hypershift-rhel8@sha256:e12454866f820da7067830a58cedf06491dcd4a3240da718f28b9c8e0099eb8c_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-hypershift-rhel8@sha256:e12454866f820da7067830a58cedf06491dcd4a3240da718f28b9c8e0099eb8c_arm64" + }, + "product_reference": "openshift4/ose-hypershift-rhel8@sha256:e12454866f820da7067830a58cedf06491dcd4a3240da718f28b9c8e0099eb8c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:2dffd149f7880393fa28a194cac2d06d5c6c684f880667dd8e8cf56bc4b7fdd3_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:2dffd149f7880393fa28a194cac2d06d5c6c684f880667dd8e8cf56bc4b7fdd3_ppc64le" + }, + "product_reference": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:2dffd149f7880393fa28a194cac2d06d5c6c684f880667dd8e8cf56bc4b7fdd3_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:e9279e80edc52e6fb7b24777726154c57963d01f8f48e6c2aae922eb892740b3_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:e9279e80edc52e6fb7b24777726154c57963d01f8f48e6c2aae922eb892740b3_amd64" + }, + "product_reference": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:e9279e80edc52e6fb7b24777726154c57963d01f8f48e6c2aae922eb892740b3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:0d4e04ed31fe1d483d2b07e12f6fb599cd50d7e2b2a285f8c997e0fa03293a5e_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:0d4e04ed31fe1d483d2b07e12f6fb599cd50d7e2b2a285f8c997e0fa03293a5e_ppc64le" + }, + "product_reference": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:0d4e04ed31fe1d483d2b07e12f6fb599cd50d7e2b2a285f8c997e0fa03293a5e_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:b46f2f27e401a1381a4b6df5969fae444bebc78e1ebb7b41e3ec8f5242de64d0_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:b46f2f27e401a1381a4b6df5969fae444bebc78e1ebb7b41e3ec8f5242de64d0_amd64" + }, + "product_reference": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:b46f2f27e401a1381a4b6df5969fae444bebc78e1ebb7b41e3ec8f5242de64d0_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:3c67d66294aa88897b22fe29f1fea02106af8a3c3a09dcddb66a4b2358d35634_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:3c67d66294aa88897b22fe29f1fea02106af8a3c3a09dcddb66a4b2358d35634_ppc64le" + }, + "product_reference": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:3c67d66294aa88897b22fe29f1fea02106af8a3c3a09dcddb66a4b2358d35634_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:efa66a01e054415734a2286641c51bdc74858cf3825237f7d6f1ff340577724c_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:efa66a01e054415734a2286641c51bdc74858cf3825237f7d6f1ff340577724c_amd64" + }, + "product_reference": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:efa66a01e054415734a2286641c51bdc74858cf3825237f7d6f1ff340577724c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:be107dfb73776289b85dd1f0ac18baeeb463a64cc60b2a8a4502657b5cf829fd_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:be107dfb73776289b85dd1f0ac18baeeb463a64cc60b2a8a4502657b5cf829fd_ppc64le" + }, + "product_reference": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:be107dfb73776289b85dd1f0ac18baeeb463a64cc60b2a8a4502657b5cf829fd_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:eac35be2d3b935ddcb9ad129637f853e5f2940a0c7dd564c855907c0502c6e33_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:eac35be2d3b935ddcb9ad129637f853e5f2940a0c7dd564c855907c0502c6e33_amd64" + }, + "product_reference": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:eac35be2d3b935ddcb9ad129637f853e5f2940a0c7dd564c855907c0502c6e33_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:3d5312bb1fdfec5dcc3752fab2f01bcb3e551d404c362bfe8a3e07b0012e18d4_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:3d5312bb1fdfec5dcc3752fab2f01bcb3e551d404c362bfe8a3e07b0012e18d4_amd64" + }, + "product_reference": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:3d5312bb1fdfec5dcc3752fab2f01bcb3e551d404c362bfe8a3e07b0012e18d4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:cb9324ed3663e5ab3693f603e611f194518d9c9d44ee0b28c0bd568aa0fa5a6b_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:cb9324ed3663e5ab3693f603e611f194518d9c9d44ee0b28c0bd568aa0fa5a6b_ppc64le" + }, + "product_reference": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:cb9324ed3663e5ab3693f603e611f194518d9c9d44ee0b28c0bd568aa0fa5a6b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-image-customization-controller-rhel8@sha256:197176795ba91704c4edd760e53cf2bce0336302bc3d4893988e3129a3797c0f_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-image-customization-controller-rhel8@sha256:197176795ba91704c4edd760e53cf2bce0336302bc3d4893988e3129a3797c0f_arm64" + }, + "product_reference": "openshift4/ose-image-customization-controller-rhel8@sha256:197176795ba91704c4edd760e53cf2bce0336302bc3d4893988e3129a3797c0f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-image-customization-controller-rhel8@sha256:974b603a03b18300d806c114097e000cba5cfa03ff14218d025d70613c724104_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-image-customization-controller-rhel8@sha256:974b603a03b18300d806c114097e000cba5cfa03ff14218d025d70613c724104_amd64" + }, + "product_reference": "openshift4/ose-image-customization-controller-rhel8@sha256:974b603a03b18300d806c114097e000cba5cfa03ff14218d025d70613c724104_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:0b3656e557cff8a66aaead30b4eff4c0a421697031400c4c14f9333c5295dd78_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-insights-rhel8-operator@sha256:0b3656e557cff8a66aaead30b4eff4c0a421697031400c4c14f9333c5295dd78_amd64" + }, + "product_reference": "openshift4/ose-insights-rhel8-operator@sha256:0b3656e557cff8a66aaead30b4eff4c0a421697031400c4c14f9333c5295dd78_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:14730a87d51d029db698bac984fbfacecb56ae7ff8e62ea459eca4bdc1cdb1d5_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-insights-rhel8-operator@sha256:14730a87d51d029db698bac984fbfacecb56ae7ff8e62ea459eca4bdc1cdb1d5_arm64" + }, + "product_reference": "openshift4/ose-insights-rhel8-operator@sha256:14730a87d51d029db698bac984fbfacecb56ae7ff8e62ea459eca4bdc1cdb1d5_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:6dfd76cd3e84ff3544ecc97cd526adf59a28df42e495e9a332375d1d655a101b_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-insights-rhel8-operator@sha256:6dfd76cd3e84ff3544ecc97cd526adf59a28df42e495e9a332375d1d655a101b_ppc64le" + }, + "product_reference": "openshift4/ose-insights-rhel8-operator@sha256:6dfd76cd3e84ff3544ecc97cd526adf59a28df42e495e9a332375d1d655a101b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:ad37fbb14b3494177c098fdf0f194f663679b2b2b0f2ac94a919a8a21d6aaf67_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-insights-rhel8-operator@sha256:ad37fbb14b3494177c098fdf0f194f663679b2b2b0f2ac94a919a8a21d6aaf67_s390x" + }, + "product_reference": "openshift4/ose-insights-rhel8-operator@sha256:ad37fbb14b3494177c098fdf0f194f663679b2b2b0f2ac94a919a8a21d6aaf67_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer-artifacts@sha256:34cd536e93dd439429aae758859a414e71246ce2bdf3a3bf728baabecdc0f253_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-installer-artifacts@sha256:34cd536e93dd439429aae758859a414e71246ce2bdf3a3bf728baabecdc0f253_ppc64le" + }, + "product_reference": "openshift4/ose-installer-artifacts@sha256:34cd536e93dd439429aae758859a414e71246ce2bdf3a3bf728baabecdc0f253_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer-artifacts@sha256:6c8cd7223c7e0c805e75fe847273ccfd618ef4d8abed4d77070d213febe15e6d_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-installer-artifacts@sha256:6c8cd7223c7e0c805e75fe847273ccfd618ef4d8abed4d77070d213febe15e6d_s390x" + }, + "product_reference": "openshift4/ose-installer-artifacts@sha256:6c8cd7223c7e0c805e75fe847273ccfd618ef4d8abed4d77070d213febe15e6d_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer-artifacts@sha256:788a8c8ac31584801c01a8a50fbda303193ca639c287da8fb7a2d04230c9dd82_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-installer-artifacts@sha256:788a8c8ac31584801c01a8a50fbda303193ca639c287da8fb7a2d04230c9dd82_amd64" + }, + "product_reference": "openshift4/ose-installer-artifacts@sha256:788a8c8ac31584801c01a8a50fbda303193ca639c287da8fb7a2d04230c9dd82_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer-artifacts@sha256:93b9c3a591a44de9f01e4613f805807741eb8ff309838b79455dc62d01a4c2f0_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-installer-artifacts@sha256:93b9c3a591a44de9f01e4613f805807741eb8ff309838b79455dc62d01a4c2f0_arm64" + }, + "product_reference": "openshift4/ose-installer-artifacts@sha256:93b9c3a591a44de9f01e4613f805807741eb8ff309838b79455dc62d01a4c2f0_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer@sha256:42943ec48cc4bfb8e76e23920afd52a62e6e6faa629c8e771db5d8697728a38a_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-installer@sha256:42943ec48cc4bfb8e76e23920afd52a62e6e6faa629c8e771db5d8697728a38a_amd64" + }, + "product_reference": "openshift4/ose-installer@sha256:42943ec48cc4bfb8e76e23920afd52a62e6e6faa629c8e771db5d8697728a38a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer@sha256:51c3b488479eb65e9123cc9c9ac2b09792c4a31192fb6f358ba23a35585f705e_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-installer@sha256:51c3b488479eb65e9123cc9c9ac2b09792c4a31192fb6f358ba23a35585f705e_arm64" + }, + "product_reference": "openshift4/ose-installer@sha256:51c3b488479eb65e9123cc9c9ac2b09792c4a31192fb6f358ba23a35585f705e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer@sha256:59356ffafcdea3b42d9a1823870206d5971f276273f4784518e4c526c1e9d423_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-installer@sha256:59356ffafcdea3b42d9a1823870206d5971f276273f4784518e4c526c1e9d423_ppc64le" + }, + "product_reference": "openshift4/ose-installer@sha256:59356ffafcdea3b42d9a1823870206d5971f276273f4784518e4c526c1e9d423_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer@sha256:5b584cf059b16bab08ecff6be6c0876cecd8f3b683f672852028a9a5d53f49ea_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-installer@sha256:5b584cf059b16bab08ecff6be6c0876cecd8f3b683f672852028a9a5d53f49ea_s390x" + }, + "product_reference": "openshift4/ose-installer@sha256:5b584cf059b16bab08ecff6be6c0876cecd8f3b683f672852028a9a5d53f49ea_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-agent-rhel8@sha256:8277a3b1e51d8f73210a4dcc86fddc24267491fb05915e44307068c1fe49eb44_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ironic-agent-rhel8@sha256:8277a3b1e51d8f73210a4dcc86fddc24267491fb05915e44307068c1fe49eb44_arm64" + }, + "product_reference": "openshift4/ose-ironic-agent-rhel8@sha256:8277a3b1e51d8f73210a4dcc86fddc24267491fb05915e44307068c1fe49eb44_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-agent-rhel8@sha256:962babc7fc1a79049724feac25e5c1075c3df4ebd60a3d4545987e0ff9a79646_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ironic-agent-rhel8@sha256:962babc7fc1a79049724feac25e5c1075c3df4ebd60a3d4545987e0ff9a79646_amd64" + }, + "product_reference": "openshift4/ose-ironic-agent-rhel8@sha256:962babc7fc1a79049724feac25e5c1075c3df4ebd60a3d4545987e0ff9a79646_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-machine-os-downloader-rhel8@sha256:a03ee05169a505a0a4384f35e3718766f9878194bc668aa104d0036233659ed0_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ironic-machine-os-downloader-rhel8@sha256:a03ee05169a505a0a4384f35e3718766f9878194bc668aa104d0036233659ed0_arm64" + }, + "product_reference": "openshift4/ose-ironic-machine-os-downloader-rhel8@sha256:a03ee05169a505a0a4384f35e3718766f9878194bc668aa104d0036233659ed0_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-machine-os-downloader-rhel8@sha256:dcfc1c01686b4db91733eae2cd75277e4e675d0df96388fa29acfdfe2e2d9410_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ironic-machine-os-downloader-rhel8@sha256:dcfc1c01686b4db91733eae2cd75277e4e675d0df96388fa29acfdfe2e2d9410_amd64" + }, + "product_reference": "openshift4/ose-ironic-machine-os-downloader-rhel8@sha256:dcfc1c01686b4db91733eae2cd75277e4e675d0df96388fa29acfdfe2e2d9410_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-rhel8@sha256:47b29ad02b589733df4fb0e87f3c1683abb7096e5963d032b39fa23781ce285f_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ironic-rhel8@sha256:47b29ad02b589733df4fb0e87f3c1683abb7096e5963d032b39fa23781ce285f_amd64" + }, + "product_reference": "openshift4/ose-ironic-rhel8@sha256:47b29ad02b589733df4fb0e87f3c1683abb7096e5963d032b39fa23781ce285f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-rhel8@sha256:6f50cd0adc0ec1a083dac27b75db123f1b51c11f66ce5a3d542e2968f46314a3_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ironic-rhel8@sha256:6f50cd0adc0ec1a083dac27b75db123f1b51c11f66ce5a3d542e2968f46314a3_arm64" + }, + "product_reference": "openshift4/ose-ironic-rhel8@sha256:6f50cd0adc0ec1a083dac27b75db123f1b51c11f66ce5a3d542e2968f46314a3_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-static-ip-manager-rhel8@sha256:204eadd9a588fdf093c5a32208d65736fe5881eabfeb969114325ff4a7a79b9c_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ironic-static-ip-manager-rhel8@sha256:204eadd9a588fdf093c5a32208d65736fe5881eabfeb969114325ff4a7a79b9c_arm64" + }, + "product_reference": "openshift4/ose-ironic-static-ip-manager-rhel8@sha256:204eadd9a588fdf093c5a32208d65736fe5881eabfeb969114325ff4a7a79b9c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-static-ip-manager-rhel8@sha256:c52253027cb34e1f1d368bb25a4553f2aa9eeecd6d4c4394d9fb1a8ede4c0cec_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ironic-static-ip-manager-rhel8@sha256:c52253027cb34e1f1d368bb25a4553f2aa9eeecd6d4c4394d9fb1a8ede4c0cec_amd64" + }, + "product_reference": "openshift4/ose-ironic-static-ip-manager-rhel8@sha256:c52253027cb34e1f1d368bb25a4553f2aa9eeecd6d4c4394d9fb1a8ede4c0cec_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:4dbf5c9e2eeddf9495cabd70dc7935dd4d371ad96836ca6cc4a260c433ff85bb_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-k8s-prometheus-adapter@sha256:4dbf5c9e2eeddf9495cabd70dc7935dd4d371ad96836ca6cc4a260c433ff85bb_arm64" + }, + "product_reference": "openshift4/ose-k8s-prometheus-adapter@sha256:4dbf5c9e2eeddf9495cabd70dc7935dd4d371ad96836ca6cc4a260c433ff85bb_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:5d590fdabaf472dd48cb1fed40ea38ac8f253602a287ec8c4cf8d07dc4f02103_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-k8s-prometheus-adapter@sha256:5d590fdabaf472dd48cb1fed40ea38ac8f253602a287ec8c4cf8d07dc4f02103_s390x" + }, + "product_reference": "openshift4/ose-k8s-prometheus-adapter@sha256:5d590fdabaf472dd48cb1fed40ea38ac8f253602a287ec8c4cf8d07dc4f02103_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:623f2f6ae62641453d05677753af9b16d37ad6e505b91eec855c92bf6c565079_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-k8s-prometheus-adapter@sha256:623f2f6ae62641453d05677753af9b16d37ad6e505b91eec855c92bf6c565079_ppc64le" + }, + "product_reference": "openshift4/ose-k8s-prometheus-adapter@sha256:623f2f6ae62641453d05677753af9b16d37ad6e505b91eec855c92bf6c565079_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:852f14b10f4e481189c3acacaa7afb6b27c3b0b0faeb1dfb12e4e2b05f29ac73_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-k8s-prometheus-adapter@sha256:852f14b10f4e481189c3acacaa7afb6b27c3b0b0faeb1dfb12e4e2b05f29ac73_amd64" + }, + "product_reference": "openshift4/ose-k8s-prometheus-adapter@sha256:852f14b10f4e481189c3acacaa7afb6b27c3b0b0faeb1dfb12e4e2b05f29ac73_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-keepalived-ipfailover@sha256:1c81be60a88562c35769103f625f1c360b66955df23aeda279c5921ff715214e_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-keepalived-ipfailover@sha256:1c81be60a88562c35769103f625f1c360b66955df23aeda279c5921ff715214e_arm64" + }, + "product_reference": "openshift4/ose-keepalived-ipfailover@sha256:1c81be60a88562c35769103f625f1c360b66955df23aeda279c5921ff715214e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-keepalived-ipfailover@sha256:1e4ad0e51c814acf099a85d45050e38d7858b44c5fa82d0417b3e56c1d98a2ad_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-keepalived-ipfailover@sha256:1e4ad0e51c814acf099a85d45050e38d7858b44c5fa82d0417b3e56c1d98a2ad_s390x" + }, + "product_reference": "openshift4/ose-keepalived-ipfailover@sha256:1e4ad0e51c814acf099a85d45050e38d7858b44c5fa82d0417b3e56c1d98a2ad_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-keepalived-ipfailover@sha256:2dce77ce57ff4eeade377924e266964a8a523914caaecc11466467a9284fdc98_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-keepalived-ipfailover@sha256:2dce77ce57ff4eeade377924e266964a8a523914caaecc11466467a9284fdc98_ppc64le" + }, + "product_reference": "openshift4/ose-keepalived-ipfailover@sha256:2dce77ce57ff4eeade377924e266964a8a523914caaecc11466467a9284fdc98_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-keepalived-ipfailover@sha256:9d47b9bf7b91d3002a0da2db8dbd960116be2e78b5322a369bf06cdacf320a04_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-keepalived-ipfailover@sha256:9d47b9bf7b91d3002a0da2db8dbd960116be2e78b5322a369bf06cdacf320a04_amd64" + }, + "product_reference": "openshift4/ose-keepalived-ipfailover@sha256:9d47b9bf7b91d3002a0da2db8dbd960116be2e78b5322a369bf06cdacf320a04_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-proxy@sha256:26e8794d63cfc435f4a6267b922867650ca6c37555b3d9f533d60b7ed65d8f86_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-kube-proxy@sha256:26e8794d63cfc435f4a6267b922867650ca6c37555b3d9f533d60b7ed65d8f86_amd64" + }, + "product_reference": "openshift4/ose-kube-proxy@sha256:26e8794d63cfc435f4a6267b922867650ca6c37555b3d9f533d60b7ed65d8f86_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-proxy@sha256:53d337a1363e120243cc75719a19863bdbc5f6151349d6ae9677422802e075d8_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-kube-proxy@sha256:53d337a1363e120243cc75719a19863bdbc5f6151349d6ae9677422802e075d8_ppc64le" + }, + "product_reference": "openshift4/ose-kube-proxy@sha256:53d337a1363e120243cc75719a19863bdbc5f6151349d6ae9677422802e075d8_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-proxy@sha256:c96199a55994907d0a742f3d4a4070af5ecc23c9b139a7dec0e0267ad9fa4048_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-kube-proxy@sha256:c96199a55994907d0a742f3d4a4070af5ecc23c9b139a7dec0e0267ad9fa4048_arm64" + }, + "product_reference": "openshift4/ose-kube-proxy@sha256:c96199a55994907d0a742f3d4a4070af5ecc23c9b139a7dec0e0267ad9fa4048_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-proxy@sha256:f537e8e11a88725859720302f562277a389eb89ef54af57e66cfddac58804bf0_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-kube-proxy@sha256:f537e8e11a88725859720302f562277a389eb89ef54af57e66cfddac58804bf0_s390x" + }, + "product_reference": "openshift4/ose-kube-proxy@sha256:f537e8e11a88725859720302f562277a389eb89ef54af57e66cfddac58804bf0_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:5667334a9d8b133fbe039d80b5f5cb314dc7ce1f70b20ca605af099caf705336_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-kube-rbac-proxy@sha256:5667334a9d8b133fbe039d80b5f5cb314dc7ce1f70b20ca605af099caf705336_amd64" + }, + "product_reference": "openshift4/ose-kube-rbac-proxy@sha256:5667334a9d8b133fbe039d80b5f5cb314dc7ce1f70b20ca605af099caf705336_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:7113035e86bfe4102aa82a38fef630cb7f0c1ac8b20eda9a410bbc31f8fe5851_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-kube-rbac-proxy@sha256:7113035e86bfe4102aa82a38fef630cb7f0c1ac8b20eda9a410bbc31f8fe5851_ppc64le" + }, + "product_reference": "openshift4/ose-kube-rbac-proxy@sha256:7113035e86bfe4102aa82a38fef630cb7f0c1ac8b20eda9a410bbc31f8fe5851_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:791916a6a568331e8f56c3e50f2cf8993df3d3cce01d9ada814b6cfdd823e10b_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-kube-rbac-proxy@sha256:791916a6a568331e8f56c3e50f2cf8993df3d3cce01d9ada814b6cfdd823e10b_arm64" + }, + "product_reference": "openshift4/ose-kube-rbac-proxy@sha256:791916a6a568331e8f56c3e50f2cf8993df3d3cce01d9ada814b6cfdd823e10b_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:ab291018d614bcc2e2b0a91dc08789b54fc0cac80101aaa249a75a506ca6bba2_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-kube-rbac-proxy@sha256:ab291018d614bcc2e2b0a91dc08789b54fc0cac80101aaa249a75a506ca6bba2_s390x" + }, + "product_reference": "openshift4/ose-kube-rbac-proxy@sha256:ab291018d614bcc2e2b0a91dc08789b54fc0cac80101aaa249a75a506ca6bba2_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-state-metrics@sha256:4315f6e4c3ba1f107d2fb8a10c8a72f32fe94fddb45e83ef87f30d0064ba733a_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-kube-state-metrics@sha256:4315f6e4c3ba1f107d2fb8a10c8a72f32fe94fddb45e83ef87f30d0064ba733a_s390x" + }, + "product_reference": "openshift4/ose-kube-state-metrics@sha256:4315f6e4c3ba1f107d2fb8a10c8a72f32fe94fddb45e83ef87f30d0064ba733a_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-state-metrics@sha256:7f72a94995fa41cb3108b5b9a5e015e0c5b23d28692cd8b7ba3f5b530e5465c0_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-kube-state-metrics@sha256:7f72a94995fa41cb3108b5b9a5e015e0c5b23d28692cd8b7ba3f5b530e5465c0_amd64" + }, + "product_reference": "openshift4/ose-kube-state-metrics@sha256:7f72a94995fa41cb3108b5b9a5e015e0c5b23d28692cd8b7ba3f5b530e5465c0_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-state-metrics@sha256:a84b8a205b8ffd69b8071e825d0f390a452df2ceb981eb1a92e8dc22e9f9061c_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-kube-state-metrics@sha256:a84b8a205b8ffd69b8071e825d0f390a452df2ceb981eb1a92e8dc22e9f9061c_arm64" + }, + "product_reference": "openshift4/ose-kube-state-metrics@sha256:a84b8a205b8ffd69b8071e825d0f390a452df2ceb981eb1a92e8dc22e9f9061c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-state-metrics@sha256:d54268395117262d6fbdb6fa4e1e06f7dba73b98fe174063155b39b20b3ebac4_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-kube-state-metrics@sha256:d54268395117262d6fbdb6fa4e1e06f7dba73b98fe174063155b39b20b3ebac4_ppc64le" + }, + "product_reference": "openshift4/ose-kube-state-metrics@sha256:d54268395117262d6fbdb6fa4e1e06f7dba73b98fe174063155b39b20b3ebac4_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:009f7c814e4aa3e79596058a6af4c07e5c06a54aa7606539f9aac6e0f6d60bd7_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-kube-storage-version-migrator-rhel8@sha256:009f7c814e4aa3e79596058a6af4c07e5c06a54aa7606539f9aac6e0f6d60bd7_s390x" + }, + "product_reference": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:009f7c814e4aa3e79596058a6af4c07e5c06a54aa7606539f9aac6e0f6d60bd7_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:6e63176996434ed43665e534798b798343458c827653e525ee3c5d0b2a7b6dcf_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-kube-storage-version-migrator-rhel8@sha256:6e63176996434ed43665e534798b798343458c827653e525ee3c5d0b2a7b6dcf_amd64" + }, + "product_reference": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:6e63176996434ed43665e534798b798343458c827653e525ee3c5d0b2a7b6dcf_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:bda88c4b5a60de18a715d15390bf080bc463d8bc4264e255aa55d7949ce50b39_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-kube-storage-version-migrator-rhel8@sha256:bda88c4b5a60de18a715d15390bf080bc463d8bc4264e255aa55d7949ce50b39_arm64" + }, + "product_reference": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:bda88c4b5a60de18a715d15390bf080bc463d8bc4264e255aa55d7949ce50b39_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:ce41ec58ed57b898dc40fbb40759666a0a0c5dff33a41f5595ecfef5e70705a0_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-kube-storage-version-migrator-rhel8@sha256:ce41ec58ed57b898dc40fbb40759666a0a0c5dff33a41f5595ecfef5e70705a0_ppc64le" + }, + "product_reference": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:ce41ec58ed57b898dc40fbb40759666a0a0c5dff33a41f5595ecfef5e70705a0_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:258f9eaf058b75264eb81dfe928c4617d193cfb045814d8ae4586b05c080bdaf_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-kuryr-cni-rhel8@sha256:258f9eaf058b75264eb81dfe928c4617d193cfb045814d8ae4586b05c080bdaf_ppc64le" + }, + "product_reference": "openshift4/ose-kuryr-cni-rhel8@sha256:258f9eaf058b75264eb81dfe928c4617d193cfb045814d8ae4586b05c080bdaf_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:f639d09e2bc8c9e5b0b74f0ac6ebf9715ce09ec914a1791bb27e22f1b5798e01_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-kuryr-cni-rhel8@sha256:f639d09e2bc8c9e5b0b74f0ac6ebf9715ce09ec914a1791bb27e22f1b5798e01_amd64" + }, + "product_reference": "openshift4/ose-kuryr-cni-rhel8@sha256:f639d09e2bc8c9e5b0b74f0ac6ebf9715ce09ec914a1791bb27e22f1b5798e01_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kuryr-controller-rhel8@sha256:5d3a7d2e18aa2f7af939820bc60c2e1ab00843a5383a0f499378585d250417db_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-kuryr-controller-rhel8@sha256:5d3a7d2e18aa2f7af939820bc60c2e1ab00843a5383a0f499378585d250417db_amd64" + }, + "product_reference": "openshift4/ose-kuryr-controller-rhel8@sha256:5d3a7d2e18aa2f7af939820bc60c2e1ab00843a5383a0f499378585d250417db_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kuryr-controller-rhel8@sha256:ddc09d9105b6e86baeb1024831ccd3a5635377276c4b3c010cd92508a7ddb415_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-kuryr-controller-rhel8@sha256:ddc09d9105b6e86baeb1024831ccd3a5635377276c4b3c010cd92508a7ddb415_ppc64le" + }, + "product_reference": "openshift4/ose-kuryr-controller-rhel8@sha256:ddc09d9105b6e86baeb1024831ccd3a5635377276c4b3c010cd92508a7ddb415_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:2c0a66866991ec5f6db1a32cfa64fc799de9f0d6a797921027ad540e8be261fe_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-libvirt-machine-controllers@sha256:2c0a66866991ec5f6db1a32cfa64fc799de9f0d6a797921027ad540e8be261fe_s390x" + }, + "product_reference": "openshift4/ose-libvirt-machine-controllers@sha256:2c0a66866991ec5f6db1a32cfa64fc799de9f0d6a797921027ad540e8be261fe_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:ad32dca5b1517b17ff39263561ffc747b2b84935ad9baf043d872b83ec697698_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-libvirt-machine-controllers@sha256:ad32dca5b1517b17ff39263561ffc747b2b84935ad9baf043d872b83ec697698_arm64" + }, + "product_reference": "openshift4/ose-libvirt-machine-controllers@sha256:ad32dca5b1517b17ff39263561ffc747b2b84935ad9baf043d872b83ec697698_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:e10301a4292be1a501e75066c2451d2dfc404f8f7e358e431f191b03c60d8d56_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-libvirt-machine-controllers@sha256:e10301a4292be1a501e75066c2451d2dfc404f8f7e358e431f191b03c60d8d56_amd64" + }, + "product_reference": "openshift4/ose-libvirt-machine-controllers@sha256:e10301a4292be1a501e75066c2451d2dfc404f8f7e358e431f191b03c60d8d56_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:f72cea91dd4fc7ac728ff6245d09be0bc4344999622ed57b30ef354587fc2cb8_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-libvirt-machine-controllers@sha256:f72cea91dd4fc7ac728ff6245d09be0bc4344999622ed57b30ef354587fc2cb8_ppc64le" + }, + "product_reference": "openshift4/ose-libvirt-machine-controllers@sha256:f72cea91dd4fc7ac728ff6245d09be0bc4344999622ed57b30ef354587fc2cb8_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-operator@sha256:1601b4d32aab33376fc4f30e1334c8a2d1b5c50608951c08dfd9ce7895ed7684_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-machine-api-operator@sha256:1601b4d32aab33376fc4f30e1334c8a2d1b5c50608951c08dfd9ce7895ed7684_amd64" + }, + "product_reference": "openshift4/ose-machine-api-operator@sha256:1601b4d32aab33376fc4f30e1334c8a2d1b5c50608951c08dfd9ce7895ed7684_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-operator@sha256:3c9a5840de0569e8be4524019a942abc661a79037c3f7400a58dbbd1cf2f64f7_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-machine-api-operator@sha256:3c9a5840de0569e8be4524019a942abc661a79037c3f7400a58dbbd1cf2f64f7_ppc64le" + }, + "product_reference": "openshift4/ose-machine-api-operator@sha256:3c9a5840de0569e8be4524019a942abc661a79037c3f7400a58dbbd1cf2f64f7_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-operator@sha256:99d5e481b7f7f4c0359fd18be0f3dfffb965b54e3271be002f71a765d66c07c2_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-machine-api-operator@sha256:99d5e481b7f7f4c0359fd18be0f3dfffb965b54e3271be002f71a765d66c07c2_s390x" + }, + "product_reference": "openshift4/ose-machine-api-operator@sha256:99d5e481b7f7f4c0359fd18be0f3dfffb965b54e3271be002f71a765d66c07c2_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-operator@sha256:e2d0e1103a72fdc69944d3f531510835b3ae7a5e79007f56bf27acb326a85369_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-machine-api-operator@sha256:e2d0e1103a72fdc69944d3f531510835b3ae7a5e79007f56bf27acb326a85369_arm64" + }, + "product_reference": "openshift4/ose-machine-api-operator@sha256:e2d0e1103a72fdc69944d3f531510835b3ae7a5e79007f56bf27acb326a85369_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:711f235b5079977bfaf114a0a05b9376e02ced5b2bd8a5982f277a014857cba2_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-machine-api-provider-aws-rhel8@sha256:711f235b5079977bfaf114a0a05b9376e02ced5b2bd8a5982f277a014857cba2_amd64" + }, + "product_reference": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:711f235b5079977bfaf114a0a05b9376e02ced5b2bd8a5982f277a014857cba2_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:afa82fba6d31ffd44065101b20d28941f2b2e4113b4326774aa67f77d5722eaf_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-machine-api-provider-aws-rhel8@sha256:afa82fba6d31ffd44065101b20d28941f2b2e4113b4326774aa67f77d5722eaf_arm64" + }, + "product_reference": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:afa82fba6d31ffd44065101b20d28941f2b2e4113b4326774aa67f77d5722eaf_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:3ded6aa404f3b8a5b3ff978f5c18e337a803638bec2f75f9c03bfa96b5af264e_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-machine-api-provider-azure-rhel8@sha256:3ded6aa404f3b8a5b3ff978f5c18e337a803638bec2f75f9c03bfa96b5af264e_amd64" + }, + "product_reference": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:3ded6aa404f3b8a5b3ff978f5c18e337a803638bec2f75f9c03bfa96b5af264e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:a53416a364adbfa3c997365d734bf4eac255dfb9315986ded7dd9343a7ebbc84_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-machine-api-provider-azure-rhel8@sha256:a53416a364adbfa3c997365d734bf4eac255dfb9315986ded7dd9343a7ebbc84_arm64" + }, + "product_reference": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:a53416a364adbfa3c997365d734bf4eac255dfb9315986ded7dd9343a7ebbc84_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:58056a98b0592cc1e32cd337c914043f4b1318fa28982f79d996c9371d64d47a_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-machine-api-provider-gcp-rhel8@sha256:58056a98b0592cc1e32cd337c914043f4b1318fa28982f79d996c9371d64d47a_ppc64le" + }, + "product_reference": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:58056a98b0592cc1e32cd337c914043f4b1318fa28982f79d996c9371d64d47a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:e6820a6f96f2df62203aa1f319c501db88e95921094feebe9c4e58d4e0e2e7b6_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-machine-api-provider-gcp-rhel8@sha256:e6820a6f96f2df62203aa1f319c501db88e95921094feebe9c4e58d4e0e2e7b6_amd64" + }, + "product_reference": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:e6820a6f96f2df62203aa1f319c501db88e95921094feebe9c4e58d4e0e2e7b6_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:0a249bb8c73210f5b2b76baad4f8fa23f3f2d0a8e4e33e67b68e775cf2e80c9e_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-machine-api-provider-openstack-rhel8@sha256:0a249bb8c73210f5b2b76baad4f8fa23f3f2d0a8e4e33e67b68e775cf2e80c9e_ppc64le" + }, + "product_reference": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:0a249bb8c73210f5b2b76baad4f8fa23f3f2d0a8e4e33e67b68e775cf2e80c9e_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:b53e5eeacfb0e1770ff5ab74eaacf6bd629e16afc366cf2e1ae981881b890af6_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-machine-api-provider-openstack-rhel8@sha256:b53e5eeacfb0e1770ff5ab74eaacf6bd629e16afc366cf2e1ae981881b890af6_amd64" + }, + "product_reference": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:b53e5eeacfb0e1770ff5ab74eaacf6bd629e16afc366cf2e1ae981881b890af6_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:e21b44e337034b43adcbe0949141e7788949ba2c4572c184585e56b4da99ba42_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-machine-api-provider-openstack-rhel8@sha256:e21b44e337034b43adcbe0949141e7788949ba2c4572c184585e56b4da99ba42_s390x" + }, + "product_reference": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:e21b44e337034b43adcbe0949141e7788949ba2c4572c184585e56b4da99ba42_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:f3ef246509e0c3035d4f8b159bee427f37336ba0bfd4bf90642044405eb39a73_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-machine-api-provider-openstack-rhel8@sha256:f3ef246509e0c3035d4f8b159bee427f37336ba0bfd4bf90642044405eb39a73_arm64" + }, + "product_reference": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:f3ef246509e0c3035d4f8b159bee427f37336ba0bfd4bf90642044405eb39a73_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-config-operator@sha256:385ddc1d2bdca256d1c31bca41810e3f609214994c350c571106310372bb3e84_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-machine-config-operator@sha256:385ddc1d2bdca256d1c31bca41810e3f609214994c350c571106310372bb3e84_amd64" + }, + "product_reference": "openshift4/ose-machine-config-operator@sha256:385ddc1d2bdca256d1c31bca41810e3f609214994c350c571106310372bb3e84_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-config-operator@sha256:a73ddfffc8b36d3b98eddb2916e8dd1d6357fa67c82cd960b541ee1c3c7ae1fe_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-machine-config-operator@sha256:a73ddfffc8b36d3b98eddb2916e8dd1d6357fa67c82cd960b541ee1c3c7ae1fe_arm64" + }, + "product_reference": "openshift4/ose-machine-config-operator@sha256:a73ddfffc8b36d3b98eddb2916e8dd1d6357fa67c82cd960b541ee1c3c7ae1fe_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-config-operator@sha256:d1437085ef51f5948227355bee3fc6594ebc7756bb6ac531a59bbfccd5d5edb3_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-machine-config-operator@sha256:d1437085ef51f5948227355bee3fc6594ebc7756bb6ac531a59bbfccd5d5edb3_s390x" + }, + "product_reference": "openshift4/ose-machine-config-operator@sha256:d1437085ef51f5948227355bee3fc6594ebc7756bb6ac531a59bbfccd5d5edb3_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-config-operator@sha256:f8e359afd49386d57018091c538309c672906222efdb4847e11104b949e43dc8_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-machine-config-operator@sha256:f8e359afd49386d57018091c538309c672906222efdb4847e11104b949e43dc8_ppc64le" + }, + "product_reference": "openshift4/ose-machine-config-operator@sha256:f8e359afd49386d57018091c538309c672906222efdb4847e11104b949e43dc8_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:20bf02d10455a24003f326c6b54167c567d100e86aa5f215e76888355becdab4_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-machine-os-images-rhel8@sha256:20bf02d10455a24003f326c6b54167c567d100e86aa5f215e76888355becdab4_amd64" + }, + "product_reference": "openshift4/ose-machine-os-images-rhel8@sha256:20bf02d10455a24003f326c6b54167c567d100e86aa5f215e76888355becdab4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:d29ea83742fbe540811a2762ae25586164d59a78fb80495ad3c04c174ad9b5d3_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-machine-os-images-rhel8@sha256:d29ea83742fbe540811a2762ae25586164d59a78fb80495ad3c04c174ad9b5d3_arm64" + }, + "product_reference": "openshift4/ose-machine-os-images-rhel8@sha256:d29ea83742fbe540811a2762ae25586164d59a78fb80495ad3c04c174ad9b5d3_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-admission-controller@sha256:161ab6507025ed44bf8436bd47eee7d317c7d66427730952f152cfd207ed67d2_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-multus-admission-controller@sha256:161ab6507025ed44bf8436bd47eee7d317c7d66427730952f152cfd207ed67d2_s390x" + }, + "product_reference": "openshift4/ose-multus-admission-controller@sha256:161ab6507025ed44bf8436bd47eee7d317c7d66427730952f152cfd207ed67d2_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-admission-controller@sha256:4799f1e13dd040700a86b1743329a5f18e8a437a2309e2c46cb6f7852b45b47c_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-multus-admission-controller@sha256:4799f1e13dd040700a86b1743329a5f18e8a437a2309e2c46cb6f7852b45b47c_ppc64le" + }, + "product_reference": "openshift4/ose-multus-admission-controller@sha256:4799f1e13dd040700a86b1743329a5f18e8a437a2309e2c46cb6f7852b45b47c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-admission-controller@sha256:6ae290c4d3fe0da5cd887a4b174e1bc4ba175b244560584ba5bc09c75a3c819b_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-multus-admission-controller@sha256:6ae290c4d3fe0da5cd887a4b174e1bc4ba175b244560584ba5bc09c75a3c819b_amd64" + }, + "product_reference": "openshift4/ose-multus-admission-controller@sha256:6ae290c4d3fe0da5cd887a4b174e1bc4ba175b244560584ba5bc09c75a3c819b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-admission-controller@sha256:b36d60ba5f9a73b19a05789d144cef83abc5c87404e4cb15ee13a85f9f95c470_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-multus-admission-controller@sha256:b36d60ba5f9a73b19a05789d144cef83abc5c87404e4cb15ee13a85f9f95c470_arm64" + }, + "product_reference": "openshift4/ose-multus-admission-controller@sha256:b36d60ba5f9a73b19a05789d144cef83abc5c87404e4cb15ee13a85f9f95c470_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-cni@sha256:00277eba91acd62556a2cbdf3964db9aa5f05f58def87fe5cceea726134c49ed_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-multus-cni@sha256:00277eba91acd62556a2cbdf3964db9aa5f05f58def87fe5cceea726134c49ed_s390x" + }, + "product_reference": "openshift4/ose-multus-cni@sha256:00277eba91acd62556a2cbdf3964db9aa5f05f58def87fe5cceea726134c49ed_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-cni@sha256:329f2260fb84f81417ddc72f61211bad8a49e6c7060aa2ff469b1b7972a56a6b_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-multus-cni@sha256:329f2260fb84f81417ddc72f61211bad8a49e6c7060aa2ff469b1b7972a56a6b_ppc64le" + }, + "product_reference": "openshift4/ose-multus-cni@sha256:329f2260fb84f81417ddc72f61211bad8a49e6c7060aa2ff469b1b7972a56a6b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-cni@sha256:39961db381a37135fa39eccd377c9f6fabfa83d41f3b0b27c0ee7dbfabf21cc7_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-multus-cni@sha256:39961db381a37135fa39eccd377c9f6fabfa83d41f3b0b27c0ee7dbfabf21cc7_arm64" + }, + "product_reference": "openshift4/ose-multus-cni@sha256:39961db381a37135fa39eccd377c9f6fabfa83d41f3b0b27c0ee7dbfabf21cc7_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-cni@sha256:cbd1317bdf1c8606ffb0175f9d96e1d7ff5e8eeab2369475c62ddbfa8917e14f_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-multus-cni@sha256:cbd1317bdf1c8606ffb0175f9d96e1d7ff5e8eeab2369475c62ddbfa8917e14f_amd64" + }, + "product_reference": "openshift4/ose-multus-cni@sha256:cbd1317bdf1c8606ffb0175f9d96e1d7ff5e8eeab2369475c62ddbfa8917e14f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:33177c32a8179f1bc2d2685715f219c9f8663e571ad512d4682e700a5a371746_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-multus-networkpolicy-rhel8@sha256:33177c32a8179f1bc2d2685715f219c9f8663e571ad512d4682e700a5a371746_arm64" + }, + "product_reference": "openshift4/ose-multus-networkpolicy-rhel8@sha256:33177c32a8179f1bc2d2685715f219c9f8663e571ad512d4682e700a5a371746_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:400633a9d2f854e1cd338f56a8800874495dc9022b6348506cce42433ef48121_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-multus-networkpolicy-rhel8@sha256:400633a9d2f854e1cd338f56a8800874495dc9022b6348506cce42433ef48121_s390x" + }, + "product_reference": "openshift4/ose-multus-networkpolicy-rhel8@sha256:400633a9d2f854e1cd338f56a8800874495dc9022b6348506cce42433ef48121_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:f84f64ddd91acb0d8777bd980aa1f9207b895990416c6383bd6e8e02d95e72ac_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-multus-networkpolicy-rhel8@sha256:f84f64ddd91acb0d8777bd980aa1f9207b895990416c6383bd6e8e02d95e72ac_ppc64le" + }, + "product_reference": "openshift4/ose-multus-networkpolicy-rhel8@sha256:f84f64ddd91acb0d8777bd980aa1f9207b895990416c6383bd6e8e02d95e72ac_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:fb0b6eeba907426a1ee3ddbf6a56138175dac373e09556f762e05ac0687c52d9_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-multus-networkpolicy-rhel8@sha256:fb0b6eeba907426a1ee3ddbf6a56138175dac373e09556f762e05ac0687c52d9_amd64" + }, + "product_reference": "openshift4/ose-multus-networkpolicy-rhel8@sha256:fb0b6eeba907426a1ee3ddbf6a56138175dac373e09556f762e05ac0687c52d9_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:0450b7bb50619c24754aa24327277417c00450d427f4f730e900ac724a80edbd_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-multus-route-override-cni-rhel8@sha256:0450b7bb50619c24754aa24327277417c00450d427f4f730e900ac724a80edbd_arm64" + }, + "product_reference": "openshift4/ose-multus-route-override-cni-rhel8@sha256:0450b7bb50619c24754aa24327277417c00450d427f4f730e900ac724a80edbd_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:7088d33c0adf03148ad4309dd75d45bb92667e7c91bb9efdd834af304dffc969_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-multus-route-override-cni-rhel8@sha256:7088d33c0adf03148ad4309dd75d45bb92667e7c91bb9efdd834af304dffc969_amd64" + }, + "product_reference": "openshift4/ose-multus-route-override-cni-rhel8@sha256:7088d33c0adf03148ad4309dd75d45bb92667e7c91bb9efdd834af304dffc969_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:74078de9b8d68a19a72d4c36b89786aae3d43f4de16bf21abac65bd27bfc72fa_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-multus-route-override-cni-rhel8@sha256:74078de9b8d68a19a72d4c36b89786aae3d43f4de16bf21abac65bd27bfc72fa_s390x" + }, + "product_reference": "openshift4/ose-multus-route-override-cni-rhel8@sha256:74078de9b8d68a19a72d4c36b89786aae3d43f4de16bf21abac65bd27bfc72fa_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:cf0e94e151e1732cde03ae8b9603abcaf7cadf8f712a58e7c5f06814b0f9d0d2_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-multus-route-override-cni-rhel8@sha256:cf0e94e151e1732cde03ae8b9603abcaf7cadf8f712a58e7c5f06814b0f9d0d2_ppc64le" + }, + "product_reference": "openshift4/ose-multus-route-override-cni-rhel8@sha256:cf0e94e151e1732cde03ae8b9603abcaf7cadf8f712a58e7c5f06814b0f9d0d2_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:02e07c7a1f22c4822d6b60645a92df9c554af16a876d87a6ae4b3f599e17b5db_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:02e07c7a1f22c4822d6b60645a92df9c554af16a876d87a6ae4b3f599e17b5db_arm64" + }, + "product_reference": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:02e07c7a1f22c4822d6b60645a92df9c554af16a876d87a6ae4b3f599e17b5db_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:24c815d116cef1b1dbef79fa9f018d0cabe8069f74623b68d9db26c032e65180_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:24c815d116cef1b1dbef79fa9f018d0cabe8069f74623b68d9db26c032e65180_ppc64le" + }, + "product_reference": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:24c815d116cef1b1dbef79fa9f018d0cabe8069f74623b68d9db26c032e65180_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:c293d566a0b17295d8bc006d8791526e46a8f77b3ca7a7e1b4725817b37c9599_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:c293d566a0b17295d8bc006d8791526e46a8f77b3ca7a7e1b4725817b37c9599_s390x" + }, + "product_reference": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:c293d566a0b17295d8bc006d8791526e46a8f77b3ca7a7e1b4725817b37c9599_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:e6de8683dab39223e3e104a5f1f610e4db4775b8c8624db0861e1d0aeddd3b47_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:e6de8683dab39223e3e104a5f1f610e4db4775b8c8624db0861e1d0aeddd3b47_amd64" + }, + "product_reference": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:e6de8683dab39223e3e104a5f1f610e4db4775b8c8624db0861e1d0aeddd3b47_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-must-gather@sha256:1eba606251ec78d195daaa1beabbed327ef78ca803e0123a1a2df9e063ea68ed_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-must-gather@sha256:1eba606251ec78d195daaa1beabbed327ef78ca803e0123a1a2df9e063ea68ed_ppc64le" + }, + "product_reference": "openshift4/ose-must-gather@sha256:1eba606251ec78d195daaa1beabbed327ef78ca803e0123a1a2df9e063ea68ed_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-must-gather@sha256:5392dc381f3d77dab07d557e0de39edf711b1e4dd6d9778062ea8ea275f170b4_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-must-gather@sha256:5392dc381f3d77dab07d557e0de39edf711b1e4dd6d9778062ea8ea275f170b4_arm64" + }, + "product_reference": "openshift4/ose-must-gather@sha256:5392dc381f3d77dab07d557e0de39edf711b1e4dd6d9778062ea8ea275f170b4_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-must-gather@sha256:8ecb7408971c4416adea1b2056bab48c96072036336810c4bbd5f60b9c91eeb4_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-must-gather@sha256:8ecb7408971c4416adea1b2056bab48c96072036336810c4bbd5f60b9c91eeb4_s390x" + }, + "product_reference": "openshift4/ose-must-gather@sha256:8ecb7408971c4416adea1b2056bab48c96072036336810c4bbd5f60b9c91eeb4_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-must-gather@sha256:f0b9542544618e80debeb6a9ea26ea458288a3a4b2cb9ba794bcf0a630bf74e1_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-must-gather@sha256:f0b9542544618e80debeb6a9ea26ea458288a3a4b2cb9ba794bcf0a630bf74e1_amd64" + }, + "product_reference": "openshift4/ose-must-gather@sha256:f0b9542544618e80debeb6a9ea26ea458288a3a4b2cb9ba794bcf0a630bf74e1_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:42f7f5aea6b65632631d3c5306d321b016fc1a6ad71ff888d62c3d38924e45cc_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-network-interface-bond-cni-rhel8@sha256:42f7f5aea6b65632631d3c5306d321b016fc1a6ad71ff888d62c3d38924e45cc_ppc64le" + }, + "product_reference": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:42f7f5aea6b65632631d3c5306d321b016fc1a6ad71ff888d62c3d38924e45cc_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:7566039fffd9341c7845c14d09d6ba1a27464c9faefa0871f358081e06555b8a_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-network-interface-bond-cni-rhel8@sha256:7566039fffd9341c7845c14d09d6ba1a27464c9faefa0871f358081e06555b8a_s390x" + }, + "product_reference": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:7566039fffd9341c7845c14d09d6ba1a27464c9faefa0871f358081e06555b8a_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:ba427e0b17dcec6969683313bdeeb2c0cf99cf5a5fed12385496ac0b6bb0e455_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-network-interface-bond-cni-rhel8@sha256:ba427e0b17dcec6969683313bdeeb2c0cf99cf5a5fed12385496ac0b6bb0e455_amd64" + }, + "product_reference": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:ba427e0b17dcec6969683313bdeeb2c0cf99cf5a5fed12385496ac0b6bb0e455_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:d432e9d0c833dc587aa83d5118e7566d4250cff4e296acfc009bce4b11d1d1ff_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-network-interface-bond-cni-rhel8@sha256:d432e9d0c833dc587aa83d5118e7566d4250cff4e296acfc009bce4b11d1d1ff_arm64" + }, + "product_reference": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:d432e9d0c833dc587aa83d5118e7566d4250cff4e296acfc009bce4b11d1d1ff_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:5cfb09a421267f37bdf03f34ed8ad7a46b06300c5ba166710e8cf8ec45dc67c4_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-network-metrics-daemon-rhel8@sha256:5cfb09a421267f37bdf03f34ed8ad7a46b06300c5ba166710e8cf8ec45dc67c4_s390x" + }, + "product_reference": "openshift4/ose-network-metrics-daemon-rhel8@sha256:5cfb09a421267f37bdf03f34ed8ad7a46b06300c5ba166710e8cf8ec45dc67c4_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:64c611ce95e342642a6e6bf179f462172fefcb4a535c3704792f2a04503346fa_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-network-metrics-daemon-rhel8@sha256:64c611ce95e342642a6e6bf179f462172fefcb4a535c3704792f2a04503346fa_amd64" + }, + "product_reference": "openshift4/ose-network-metrics-daemon-rhel8@sha256:64c611ce95e342642a6e6bf179f462172fefcb4a535c3704792f2a04503346fa_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:8b40237a9f506c04077888b30357e59a158a490a9ebae1ca3af1fb24c6de68f5_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-network-metrics-daemon-rhel8@sha256:8b40237a9f506c04077888b30357e59a158a490a9ebae1ca3af1fb24c6de68f5_arm64" + }, + "product_reference": "openshift4/ose-network-metrics-daemon-rhel8@sha256:8b40237a9f506c04077888b30357e59a158a490a9ebae1ca3af1fb24c6de68f5_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:ffbc53afd8947494de2409cb8b81590e57e87c29274680635a7bb755d34cc19a_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-network-metrics-daemon-rhel8@sha256:ffbc53afd8947494de2409cb8b81590e57e87c29274680635a7bb755d34cc19a_ppc64le" + }, + "product_reference": "openshift4/ose-network-metrics-daemon-rhel8@sha256:ffbc53afd8947494de2409cb8b81590e57e87c29274680635a7bb755d34cc19a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-nutanix-machine-controllers-rhel8@sha256:45f34209120de3a962222b237848fe328743157e8ffeef1b688d67d09524df80_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-nutanix-machine-controllers-rhel8@sha256:45f34209120de3a962222b237848fe328743157e8ffeef1b688d67d09524df80_amd64" + }, + "product_reference": "openshift4/ose-nutanix-machine-controllers-rhel8@sha256:45f34209120de3a962222b237848fe328743157e8ffeef1b688d67d09524df80_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:94eab870ac578c4db1df9047af4e5c1d23a4b46fa7b2d4d826c72e7ae7935ddf_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-oauth-apiserver-rhel8@sha256:94eab870ac578c4db1df9047af4e5c1d23a4b46fa7b2d4d826c72e7ae7935ddf_amd64" + }, + "product_reference": "openshift4/ose-oauth-apiserver-rhel8@sha256:94eab870ac578c4db1df9047af4e5c1d23a4b46fa7b2d4d826c72e7ae7935ddf_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:b9284a10d4486e3ceee49cdcd35f4ec07f4bda167a91229c80efb849caaeaa29_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-oauth-apiserver-rhel8@sha256:b9284a10d4486e3ceee49cdcd35f4ec07f4bda167a91229c80efb849caaeaa29_s390x" + }, + "product_reference": "openshift4/ose-oauth-apiserver-rhel8@sha256:b9284a10d4486e3ceee49cdcd35f4ec07f4bda167a91229c80efb849caaeaa29_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:bf497f535517fc84027efa8abd545c03f0e6288c890d6e78b5ddd91e61e5f846_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-oauth-apiserver-rhel8@sha256:bf497f535517fc84027efa8abd545c03f0e6288c890d6e78b5ddd91e61e5f846_arm64" + }, + "product_reference": "openshift4/ose-oauth-apiserver-rhel8@sha256:bf497f535517fc84027efa8abd545c03f0e6288c890d6e78b5ddd91e61e5f846_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:fb1c86ba181adec57d7d0549efb05fe43ccd01b7e99cc27c3e437886c96957cd_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-oauth-apiserver-rhel8@sha256:fb1c86ba181adec57d7d0549efb05fe43ccd01b7e99cc27c3e437886c96957cd_ppc64le" + }, + "product_reference": "openshift4/ose-oauth-apiserver-rhel8@sha256:fb1c86ba181adec57d7d0549efb05fe43ccd01b7e99cc27c3e437886c96957cd_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-proxy@sha256:2719b27e2e9c3da3a0021afe4ec9a54778292a2053bfd0070b90f74548dd4d9b_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-oauth-proxy@sha256:2719b27e2e9c3da3a0021afe4ec9a54778292a2053bfd0070b90f74548dd4d9b_s390x" + }, + "product_reference": "openshift4/ose-oauth-proxy@sha256:2719b27e2e9c3da3a0021afe4ec9a54778292a2053bfd0070b90f74548dd4d9b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-proxy@sha256:a03f2511bb142530528a9dc0647d149f337cc00e00188f34065d8aad5983f239_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-oauth-proxy@sha256:a03f2511bb142530528a9dc0647d149f337cc00e00188f34065d8aad5983f239_arm64" + }, + "product_reference": "openshift4/ose-oauth-proxy@sha256:a03f2511bb142530528a9dc0647d149f337cc00e00188f34065d8aad5983f239_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-proxy@sha256:dc3dc816fae35f3270b5e91745f9fc3c8603450abd478526591b298f6a22088c_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-oauth-proxy@sha256:dc3dc816fae35f3270b5e91745f9fc3c8603450abd478526591b298f6a22088c_ppc64le" + }, + "product_reference": "openshift4/ose-oauth-proxy@sha256:dc3dc816fae35f3270b5e91745f9fc3c8603450abd478526591b298f6a22088c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-proxy@sha256:dfc2f8fb7e35499cb6a9dee42fed7ab68986e49878daadb4b61525c79850d525_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-oauth-proxy@sha256:dfc2f8fb7e35499cb6a9dee42fed7ab68986e49878daadb4b61525c79850d525_amd64" + }, + "product_reference": "openshift4/ose-oauth-proxy@sha256:dfc2f8fb7e35499cb6a9dee42fed7ab68986e49878daadb4b61525c79850d525_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:02abd083b9c3cb965b824cb50c3f7ed0e6d490ce4714545efcf3aab9b2c8f4d7_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-oauth-server-rhel8@sha256:02abd083b9c3cb965b824cb50c3f7ed0e6d490ce4714545efcf3aab9b2c8f4d7_ppc64le" + }, + "product_reference": "openshift4/ose-oauth-server-rhel8@sha256:02abd083b9c3cb965b824cb50c3f7ed0e6d490ce4714545efcf3aab9b2c8f4d7_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:18c50a4120b4bf9538afa156b9ea954bfdccc363f45b2106aa7d96d9bd8e4183_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-oauth-server-rhel8@sha256:18c50a4120b4bf9538afa156b9ea954bfdccc363f45b2106aa7d96d9bd8e4183_amd64" + }, + "product_reference": "openshift4/ose-oauth-server-rhel8@sha256:18c50a4120b4bf9538afa156b9ea954bfdccc363f45b2106aa7d96d9bd8e4183_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:48fc366ada529c7e34028427e9f376914e56bcebf721da59e64c8f0d2c0c0fc4_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-oauth-server-rhel8@sha256:48fc366ada529c7e34028427e9f376914e56bcebf721da59e64c8f0d2c0c0fc4_s390x" + }, + "product_reference": "openshift4/ose-oauth-server-rhel8@sha256:48fc366ada529c7e34028427e9f376914e56bcebf721da59e64c8f0d2c0c0fc4_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:b52ce9f187dc8eb76689fc78ab46c116d7671cf4fe0a582f3fe3502afa8746d0_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-oauth-server-rhel8@sha256:b52ce9f187dc8eb76689fc78ab46c116d7671cf4fe0a582f3fe3502afa8746d0_arm64" + }, + "product_reference": "openshift4/ose-oauth-server-rhel8@sha256:b52ce9f187dc8eb76689fc78ab46c116d7671cf4fe0a582f3fe3502afa8746d0_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:4b54e5b0a90dcb4d2eb2da8684781649500e4a3389f3a1963a9b56b63b4c0f61_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openshift-apiserver-rhel8@sha256:4b54e5b0a90dcb4d2eb2da8684781649500e4a3389f3a1963a9b56b63b4c0f61_ppc64le" + }, + "product_reference": "openshift4/ose-openshift-apiserver-rhel8@sha256:4b54e5b0a90dcb4d2eb2da8684781649500e4a3389f3a1963a9b56b63b4c0f61_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:a6f056621aee18c167691b6ffc137b2c6c913c5ba62ae4871400eac8ff7cac28_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openshift-apiserver-rhel8@sha256:a6f056621aee18c167691b6ffc137b2c6c913c5ba62ae4871400eac8ff7cac28_arm64" + }, + "product_reference": "openshift4/ose-openshift-apiserver-rhel8@sha256:a6f056621aee18c167691b6ffc137b2c6c913c5ba62ae4871400eac8ff7cac28_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:ae86c44e76be9a3078258ceffd1606bdaf459979d9887e8ef053ddc926d2c94c_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openshift-apiserver-rhel8@sha256:ae86c44e76be9a3078258ceffd1606bdaf459979d9887e8ef053ddc926d2c94c_amd64" + }, + "product_reference": "openshift4/ose-openshift-apiserver-rhel8@sha256:ae86c44e76be9a3078258ceffd1606bdaf459979d9887e8ef053ddc926d2c94c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:f0c8fe083c6097d7cf8b9df741700acc4765311f8df97844b92286db80f5a51a_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openshift-apiserver-rhel8@sha256:f0c8fe083c6097d7cf8b9df741700acc4765311f8df97844b92286db80f5a51a_s390x" + }, + "product_reference": "openshift4/ose-openshift-apiserver-rhel8@sha256:f0c8fe083c6097d7cf8b9df741700acc4765311f8df97844b92286db80f5a51a_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:58a728d3108b1bbf89316a27a283e27f7d54919c15adec9028cd81bf1dd7127e_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openshift-controller-manager-rhel8@sha256:58a728d3108b1bbf89316a27a283e27f7d54919c15adec9028cd81bf1dd7127e_amd64" + }, + "product_reference": "openshift4/ose-openshift-controller-manager-rhel8@sha256:58a728d3108b1bbf89316a27a283e27f7d54919c15adec9028cd81bf1dd7127e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:afaf6a56af16b3318c5487a1efc5b5e15a2685ff855fe29e8931f39f9d69ff3e_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openshift-controller-manager-rhel8@sha256:afaf6a56af16b3318c5487a1efc5b5e15a2685ff855fe29e8931f39f9d69ff3e_s390x" + }, + "product_reference": "openshift4/ose-openshift-controller-manager-rhel8@sha256:afaf6a56af16b3318c5487a1efc5b5e15a2685ff855fe29e8931f39f9d69ff3e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:b44b056aa72264b0551a9a880568fc07ef44b159d57a0c9085af9cd5552b7b46_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openshift-controller-manager-rhel8@sha256:b44b056aa72264b0551a9a880568fc07ef44b159d57a0c9085af9cd5552b7b46_arm64" + }, + "product_reference": "openshift4/ose-openshift-controller-manager-rhel8@sha256:b44b056aa72264b0551a9a880568fc07ef44b159d57a0c9085af9cd5552b7b46_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:fb3a8662eb0cc938fa52f31053c7588adab2967ae0a66af93903491281c2f4b3_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openshift-controller-manager-rhel8@sha256:fb3a8662eb0cc938fa52f31053c7588adab2967ae0a66af93903491281c2f4b3_ppc64le" + }, + "product_reference": "openshift4/ose-openshift-controller-manager-rhel8@sha256:fb3a8662eb0cc938fa52f31053c7588adab2967ae0a66af93903491281c2f4b3_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:58d4f874ac25bf3559e9b7cdb3ea3ce1397491cf1053d0382f354b763b7a896b_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openshift-state-metrics-rhel8@sha256:58d4f874ac25bf3559e9b7cdb3ea3ce1397491cf1053d0382f354b763b7a896b_ppc64le" + }, + "product_reference": "openshift4/ose-openshift-state-metrics-rhel8@sha256:58d4f874ac25bf3559e9b7cdb3ea3ce1397491cf1053d0382f354b763b7a896b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:c11ddd72c67bb6b849ba398ba82a2bb738b9dbd8fcf185c874913408d0fa50ba_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openshift-state-metrics-rhel8@sha256:c11ddd72c67bb6b849ba398ba82a2bb738b9dbd8fcf185c874913408d0fa50ba_arm64" + }, + "product_reference": "openshift4/ose-openshift-state-metrics-rhel8@sha256:c11ddd72c67bb6b849ba398ba82a2bb738b9dbd8fcf185c874913408d0fa50ba_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:c2dc24d90fed7771e6a66aec921741e0c9af41670558c17397b72bc572f8f570_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openshift-state-metrics-rhel8@sha256:c2dc24d90fed7771e6a66aec921741e0c9af41670558c17397b72bc572f8f570_amd64" + }, + "product_reference": "openshift4/ose-openshift-state-metrics-rhel8@sha256:c2dc24d90fed7771e6a66aec921741e0c9af41670558c17397b72bc572f8f570_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:d96d85ca2158ab36ed4e9dd546796aa31f6864b782eea14213a5f0ce58575b63_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openshift-state-metrics-rhel8@sha256:d96d85ca2158ab36ed4e9dd546796aa31f6864b782eea14213a5f0ce58575b63_s390x" + }, + "product_reference": "openshift4/ose-openshift-state-metrics-rhel8@sha256:d96d85ca2158ab36ed4e9dd546796aa31f6864b782eea14213a5f0ce58575b63_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:6dde875a01d7299226050a81897ff5675267e2050b0f29aaf1e8c1b5e5ab6640_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:6dde875a01d7299226050a81897ff5675267e2050b0f29aaf1e8c1b5e5ab6640_s390x" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:6dde875a01d7299226050a81897ff5675267e2050b0f29aaf1e8c1b5e5ab6640_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:7df9f51e98f1bfce29ac901905aafbe287e5fe8052ccb6d10b1f29276b34e587_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:7df9f51e98f1bfce29ac901905aafbe287e5fe8052ccb6d10b1f29276b34e587_ppc64le" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:7df9f51e98f1bfce29ac901905aafbe287e5fe8052ccb6d10b1f29276b34e587_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8dc289c4cead803cb5b10fd1bef238fff7f1cec85b0760a9faf8e24d5573ecda_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8dc289c4cead803cb5b10fd1bef238fff7f1cec85b0760a9faf8e24d5573ecda_amd64" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8dc289c4cead803cb5b10fd1bef238fff7f1cec85b0760a9faf8e24d5573ecda_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:e7d348586919e182bd86ea8b401e0089e9f7208e375c812285d617fce47ce5b2_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:e7d348586919e182bd86ea8b401e0089e9f7208e375c812285d617fce47ce5b2_arm64" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:e7d348586919e182bd86ea8b401e0089e9f7208e375c812285d617fce47ce5b2_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:9925738fa0ab23d098ab0697e6ff58440d86ae7fb0f616d4ce2f6d3af7a87c95_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:9925738fa0ab23d098ab0697e6ff58440d86ae7fb0f616d4ce2f6d3af7a87c95_ppc64le" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:9925738fa0ab23d098ab0697e6ff58440d86ae7fb0f616d4ce2f6d3af7a87c95_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:b6b6d1685f38fb7db7ce1de0db1a98a5afe70f9898a44166806c9c3907937c36_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:b6b6d1685f38fb7db7ce1de0db1a98a5afe70f9898a44166806c9c3907937c36_s390x" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:b6b6d1685f38fb7db7ce1de0db1a98a5afe70f9898a44166806c9c3907937c36_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:f1cbf151c38b580c2928d6e88e0aff573bea556b76dcd71438d5eb4899e6dff7_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:f1cbf151c38b580c2928d6e88e0aff573bea556b76dcd71438d5eb4899e6dff7_amd64" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:f1cbf151c38b580c2928d6e88e0aff573bea556b76dcd71438d5eb4899e6dff7_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:fa2b92e7d9279ee411a751e40fa63d1a092df6a8524a1c3b1abe86318c46506e_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:fa2b92e7d9279ee411a751e40fa63d1a092df6a8524a1c3b1abe86318c46506e_arm64" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:fa2b92e7d9279ee411a751e40fa63d1a092df6a8524a1c3b1abe86318c46506e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:32dc5696b5b1ebdee5cd3fb75d509cdea2096d3b0fd4cd2cce606a8ed5200d6c_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:32dc5696b5b1ebdee5cd3fb75d509cdea2096d3b0fd4cd2cce606a8ed5200d6c_ppc64le" + }, + "product_reference": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:32dc5696b5b1ebdee5cd3fb75d509cdea2096d3b0fd4cd2cce606a8ed5200d6c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:36bbf817e401f7bd39f87b16ed5b1cb15a0b1af1535e667798b58b6d9cc61037_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:36bbf817e401f7bd39f87b16ed5b1cb15a0b1af1535e667798b58b6d9cc61037_arm64" + }, + "product_reference": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:36bbf817e401f7bd39f87b16ed5b1cb15a0b1af1535e667798b58b6d9cc61037_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:90f46e8a9d40426b3f9679e4a92ccc7ef4028ddacd665193ac47be247c58b359_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:90f46e8a9d40426b3f9679e4a92ccc7ef4028ddacd665193ac47be247c58b359_amd64" + }, + "product_reference": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:90f46e8a9d40426b3f9679e4a92ccc7ef4028ddacd665193ac47be247c58b359_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:fef30609b36e3fe6ecb4903782c925f151750b45c1448874701348e6ea76a769_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:fef30609b36e3fe6ecb4903782c925f151750b45c1448874701348e6ea76a769_s390x" + }, + "product_reference": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:fef30609b36e3fe6ecb4903782c925f151750b45c1448874701348e6ea76a769_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-machine-controllers@sha256:05158560873d9651bf36b4e3a6cf8ece4c2743fb14550a2795cf3c7c22194938_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openstack-machine-controllers@sha256:05158560873d9651bf36b4e3a6cf8ece4c2743fb14550a2795cf3c7c22194938_amd64" + }, + "product_reference": "openshift4/ose-openstack-machine-controllers@sha256:05158560873d9651bf36b4e3a6cf8ece4c2743fb14550a2795cf3c7c22194938_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-machine-controllers@sha256:10883fe76385f7cac30b7de03f4c6344efa07f04d70d5b75e32041168d4a4bc9_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openstack-machine-controllers@sha256:10883fe76385f7cac30b7de03f4c6344efa07f04d70d5b75e32041168d4a4bc9_arm64" + }, + "product_reference": "openshift4/ose-openstack-machine-controllers@sha256:10883fe76385f7cac30b7de03f4c6344efa07f04d70d5b75e32041168d4a4bc9_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-machine-controllers@sha256:6ffa1dc622cf8605f921600cb958a8f5e4d87c4635829b0304ccf1cde85c4ccc_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openstack-machine-controllers@sha256:6ffa1dc622cf8605f921600cb958a8f5e4d87c4635829b0304ccf1cde85c4ccc_s390x" + }, + "product_reference": "openshift4/ose-openstack-machine-controllers@sha256:6ffa1dc622cf8605f921600cb958a8f5e4d87c4635829b0304ccf1cde85c4ccc_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-machine-controllers@sha256:ace85d15574114a2e7f343767c70102922b65178de1c2edae41ac2cdc6dc38a3_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-openstack-machine-controllers@sha256:ace85d15574114a2e7f343767c70102922b65178de1c2edae41ac2cdc6dc38a3_ppc64le" + }, + "product_reference": "openshift4/ose-openstack-machine-controllers@sha256:ace85d15574114a2e7f343767c70102922b65178de1c2edae41ac2cdc6dc38a3_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:222e3b732ec87d23db39d35395f1062b2d9d22c6e624b057c76e3b6d3a138c89_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-operator-lifecycle-manager@sha256:222e3b732ec87d23db39d35395f1062b2d9d22c6e624b057c76e3b6d3a138c89_s390x" + }, + "product_reference": "openshift4/ose-operator-lifecycle-manager@sha256:222e3b732ec87d23db39d35395f1062b2d9d22c6e624b057c76e3b6d3a138c89_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:23542d21cc7707ecb11ec2a8150842466ea60efc7703262072a2b37493006396_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-operator-lifecycle-manager@sha256:23542d21cc7707ecb11ec2a8150842466ea60efc7703262072a2b37493006396_amd64" + }, + "product_reference": "openshift4/ose-operator-lifecycle-manager@sha256:23542d21cc7707ecb11ec2a8150842466ea60efc7703262072a2b37493006396_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:b5d3fc53f4d47a51f4fcfca50f38ddb71eb4938cf8bf3b829a843f6484ae45f1_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-operator-lifecycle-manager@sha256:b5d3fc53f4d47a51f4fcfca50f38ddb71eb4938cf8bf3b829a843f6484ae45f1_ppc64le" + }, + "product_reference": "openshift4/ose-operator-lifecycle-manager@sha256:b5d3fc53f4d47a51f4fcfca50f38ddb71eb4938cf8bf3b829a843f6484ae45f1_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:bd8d4e46044c5a6ffb8fe6f95e1fdfaa77a0a751ebb68085ced7c762acda69f0_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-operator-lifecycle-manager@sha256:bd8d4e46044c5a6ffb8fe6f95e1fdfaa77a0a751ebb68085ced7c762acda69f0_arm64" + }, + "product_reference": "openshift4/ose-operator-lifecycle-manager@sha256:bd8d4e46044c5a6ffb8fe6f95e1fdfaa77a0a751ebb68085ced7c762acda69f0_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-marketplace@sha256:abbb65e48e1b8acf1f4254da501c762b68c684b2b352c97ba0ad7261e74b8b13_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-operator-marketplace@sha256:abbb65e48e1b8acf1f4254da501c762b68c684b2b352c97ba0ad7261e74b8b13_ppc64le" + }, + "product_reference": "openshift4/ose-operator-marketplace@sha256:abbb65e48e1b8acf1f4254da501c762b68c684b2b352c97ba0ad7261e74b8b13_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-marketplace@sha256:c1d8521a5594ed38f44a6ff51d666e1990190e60315adf42545679bdcd74f93f_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-operator-marketplace@sha256:c1d8521a5594ed38f44a6ff51d666e1990190e60315adf42545679bdcd74f93f_amd64" + }, + "product_reference": "openshift4/ose-operator-marketplace@sha256:c1d8521a5594ed38f44a6ff51d666e1990190e60315adf42545679bdcd74f93f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-marketplace@sha256:d4036baa7bd568287442e831dc941cacbd8bcd4f618b128dc1bed1b06cc0bfef_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-operator-marketplace@sha256:d4036baa7bd568287442e831dc941cacbd8bcd4f618b128dc1bed1b06cc0bfef_arm64" + }, + "product_reference": "openshift4/ose-operator-marketplace@sha256:d4036baa7bd568287442e831dc941cacbd8bcd4f618b128dc1bed1b06cc0bfef_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-marketplace@sha256:e8b893a023283b8403f488036df317f2fdb2c90436e76d7bc2ea4f23bd7fa63e_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-operator-marketplace@sha256:e8b893a023283b8403f488036df317f2fdb2c90436e76d7bc2ea4f23bd7fa63e_s390x" + }, + "product_reference": "openshift4/ose-operator-marketplace@sha256:e8b893a023283b8403f488036df317f2fdb2c90436e76d7bc2ea4f23bd7fa63e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-registry@sha256:274e1ca723bef3990c1429f1216a9f1f47241aba62d494f278666610d4857252_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-operator-registry@sha256:274e1ca723bef3990c1429f1216a9f1f47241aba62d494f278666610d4857252_ppc64le" + }, + "product_reference": "openshift4/ose-operator-registry@sha256:274e1ca723bef3990c1429f1216a9f1f47241aba62d494f278666610d4857252_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-registry@sha256:3d3a8232ceba35b67a2b6c71de9869dc2a849a17f2ad9894a43cbd4d5a719ea7_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-operator-registry@sha256:3d3a8232ceba35b67a2b6c71de9869dc2a849a17f2ad9894a43cbd4d5a719ea7_arm64" + }, + "product_reference": "openshift4/ose-operator-registry@sha256:3d3a8232ceba35b67a2b6c71de9869dc2a849a17f2ad9894a43cbd4d5a719ea7_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-registry@sha256:63b582fe9b2d22348d2937eb689e8b73eb885f6b285bb9388a8e176ffc7e135a_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-operator-registry@sha256:63b582fe9b2d22348d2937eb689e8b73eb885f6b285bb9388a8e176ffc7e135a_amd64" + }, + "product_reference": "openshift4/ose-operator-registry@sha256:63b582fe9b2d22348d2937eb689e8b73eb885f6b285bb9388a8e176ffc7e135a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-registry@sha256:f8674b95808167eaa4d9250d0eab999a05396cafe41d3839a005ccc0b0685866_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-operator-registry@sha256:f8674b95808167eaa4d9250d0eab999a05396cafe41d3839a005ccc0b0685866_s390x" + }, + "product_reference": "openshift4/ose-operator-registry@sha256:f8674b95808167eaa4d9250d0eab999a05396cafe41d3839a005ccc0b0685866_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:333bd5b75f8fd14ed1e82508d2ba3245f7f65505084023db3bbd5aa1e837f228_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ovirt-machine-controllers-rhel8@sha256:333bd5b75f8fd14ed1e82508d2ba3245f7f65505084023db3bbd5aa1e837f228_arm64" + }, + "product_reference": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:333bd5b75f8fd14ed1e82508d2ba3245f7f65505084023db3bbd5aa1e837f228_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:33c528230c7c4dd32a5df559a715a72db91e398441e76c8ee9ad69c61ec0f51e_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ovirt-machine-controllers-rhel8@sha256:33c528230c7c4dd32a5df559a715a72db91e398441e76c8ee9ad69c61ec0f51e_ppc64le" + }, + "product_reference": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:33c528230c7c4dd32a5df559a715a72db91e398441e76c8ee9ad69c61ec0f51e_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:5e09979198e0185691a4bd70dffa44079e54593b186cf0242446eda96fad0fd9_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ovirt-machine-controllers-rhel8@sha256:5e09979198e0185691a4bd70dffa44079e54593b186cf0242446eda96fad0fd9_s390x" + }, + "product_reference": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:5e09979198e0185691a4bd70dffa44079e54593b186cf0242446eda96fad0fd9_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:6e203d4456a8c4ee7bd85b570e3299a9d09f695faf7e3039963487d1a9e61d06_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ovirt-machine-controllers-rhel8@sha256:6e203d4456a8c4ee7bd85b570e3299a9d09f695faf7e3039963487d1a9e61d06_amd64" + }, + "product_reference": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:6e203d4456a8c4ee7bd85b570e3299a9d09f695faf7e3039963487d1a9e61d06_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes@sha256:478707a2f0ffd68611e9cb24b13733b06deef6966c8475ad77814f0da8914d11_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ovn-kubernetes@sha256:478707a2f0ffd68611e9cb24b13733b06deef6966c8475ad77814f0da8914d11_s390x" + }, + "product_reference": "openshift4/ose-ovn-kubernetes@sha256:478707a2f0ffd68611e9cb24b13733b06deef6966c8475ad77814f0da8914d11_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes@sha256:61ca3dc092b03d4e4f9b54704377c6422ae033163d72f9eed7033d544adf583d_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ovn-kubernetes@sha256:61ca3dc092b03d4e4f9b54704377c6422ae033163d72f9eed7033d544adf583d_ppc64le" + }, + "product_reference": "openshift4/ose-ovn-kubernetes@sha256:61ca3dc092b03d4e4f9b54704377c6422ae033163d72f9eed7033d544adf583d_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes@sha256:a7407403e02bdb7f583f8da452f3e560d96c3ab0f51827f82916e38e9ddea8c3_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ovn-kubernetes@sha256:a7407403e02bdb7f583f8da452f3e560d96c3ab0f51827f82916e38e9ddea8c3_arm64" + }, + "product_reference": "openshift4/ose-ovn-kubernetes@sha256:a7407403e02bdb7f583f8da452f3e560d96c3ab0f51827f82916e38e9ddea8c3_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes@sha256:c5ef8149d360b27e6237d6a837adf2ee69f094058077cedafa9b6ab9601ea1bb_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-ovn-kubernetes@sha256:c5ef8149d360b27e6237d6a837adf2ee69f094058077cedafa9b6ab9601ea1bb_amd64" + }, + "product_reference": "openshift4/ose-ovn-kubernetes@sha256:c5ef8149d360b27e6237d6a837adf2ee69f094058077cedafa9b6ab9601ea1bb_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-pod@sha256:32f057e51d39a50582e0a63945bda5d68a28748a0a5930e9b4d1a41420d120d4_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-pod@sha256:32f057e51d39a50582e0a63945bda5d68a28748a0a5930e9b4d1a41420d120d4_amd64" + }, + "product_reference": "openshift4/ose-pod@sha256:32f057e51d39a50582e0a63945bda5d68a28748a0a5930e9b4d1a41420d120d4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-pod@sha256:5517c382be67cfbecf691a82c1799a676386ef2b4c9a567edb234ca2081c417b_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-pod@sha256:5517c382be67cfbecf691a82c1799a676386ef2b4c9a567edb234ca2081c417b_s390x" + }, + "product_reference": "openshift4/ose-pod@sha256:5517c382be67cfbecf691a82c1799a676386ef2b4c9a567edb234ca2081c417b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-pod@sha256:990f6b8be9a6023055c735d0a40ccc6d46f2ce9282ba2f85cb5058b38ff0dd3c_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-pod@sha256:990f6b8be9a6023055c735d0a40ccc6d46f2ce9282ba2f85cb5058b38ff0dd3c_arm64" + }, + "product_reference": "openshift4/ose-pod@sha256:990f6b8be9a6023055c735d0a40ccc6d46f2ce9282ba2f85cb5058b38ff0dd3c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-pod@sha256:bc7c2e4da93a0c3344ce9b9930975a5c88b313d8144a99fefd9af9f61ecb807e_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-pod@sha256:bc7c2e4da93a0c3344ce9b9930975a5c88b313d8144a99fefd9af9f61ecb807e_ppc64le" + }, + "product_reference": "openshift4/ose-pod@sha256:bc7c2e4da93a0c3344ce9b9930975a5c88b313d8144a99fefd9af9f61ecb807e_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:28b56c1e8a1e207e0edd4cd0b3262c1fc3bb6bb17b5a05090631be67543fc2eb_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:28b56c1e8a1e207e0edd4cd0b3262c1fc3bb6bb17b5a05090631be67543fc2eb_amd64" + }, + "product_reference": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:28b56c1e8a1e207e0edd4cd0b3262c1fc3bb6bb17b5a05090631be67543fc2eb_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:ea45fa997afd5834fd86aa2e9e561b272c0442b61cb3fa25588805e8d1995947_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:ea45fa997afd5834fd86aa2e9e561b272c0442b61cb3fa25588805e8d1995947_ppc64le" + }, + "product_reference": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:ea45fa997afd5834fd86aa2e9e561b272c0442b61cb3fa25588805e8d1995947_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:140f3457caea88c63ccefbb79d1d71c7ce0143d985b1e2b34a0f312f5f8a0ff8_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-powervs-machine-controllers-rhel8@sha256:140f3457caea88c63ccefbb79d1d71c7ce0143d985b1e2b34a0f312f5f8a0ff8_ppc64le" + }, + "product_reference": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:140f3457caea88c63ccefbb79d1d71c7ce0143d985b1e2b34a0f312f5f8a0ff8_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:75bd5d831d017c6ca4bbf04366c4208d54774cf6a249c68c627701042efefe9e_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-powervs-machine-controllers-rhel8@sha256:75bd5d831d017c6ca4bbf04366c4208d54774cf6a249c68c627701042efefe9e_amd64" + }, + "product_reference": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:75bd5d831d017c6ca4bbf04366c4208d54774cf6a249c68c627701042efefe9e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prom-label-proxy@sha256:0de446079ef6b4bc93067bc8f9b3155b9b8b36b8487704d7b9596e088105a1c4_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prom-label-proxy@sha256:0de446079ef6b4bc93067bc8f9b3155b9b8b36b8487704d7b9596e088105a1c4_ppc64le" + }, + "product_reference": "openshift4/ose-prom-label-proxy@sha256:0de446079ef6b4bc93067bc8f9b3155b9b8b36b8487704d7b9596e088105a1c4_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prom-label-proxy@sha256:303da9b802eff64ddb960d8ad5a24d4a4c18caf9d079916af81aaafd82b7bf5d_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prom-label-proxy@sha256:303da9b802eff64ddb960d8ad5a24d4a4c18caf9d079916af81aaafd82b7bf5d_arm64" + }, + "product_reference": "openshift4/ose-prom-label-proxy@sha256:303da9b802eff64ddb960d8ad5a24d4a4c18caf9d079916af81aaafd82b7bf5d_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prom-label-proxy@sha256:b23eb335ed46152c3dd6d2ed0eef907c8ffb72a0e46804937873dadedaf9d65f_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prom-label-proxy@sha256:b23eb335ed46152c3dd6d2ed0eef907c8ffb72a0e46804937873dadedaf9d65f_s390x" + }, + "product_reference": "openshift4/ose-prom-label-proxy@sha256:b23eb335ed46152c3dd6d2ed0eef907c8ffb72a0e46804937873dadedaf9d65f_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prom-label-proxy@sha256:dfa23f7198ed5c4f6058d7b53c39ae99c9a56d3b4af31bc85eb36717dd6cc237_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prom-label-proxy@sha256:dfa23f7198ed5c4f6058d7b53c39ae99c9a56d3b4af31bc85eb36717dd6cc237_amd64" + }, + "product_reference": "openshift4/ose-prom-label-proxy@sha256:dfa23f7198ed5c4f6058d7b53c39ae99c9a56d3b4af31bc85eb36717dd6cc237_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:42072b9385ea90eec98425587df9d5305b77527d253e756674fd04fbab7d9ae9_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prometheus-alertmanager@sha256:42072b9385ea90eec98425587df9d5305b77527d253e756674fd04fbab7d9ae9_s390x" + }, + "product_reference": "openshift4/ose-prometheus-alertmanager@sha256:42072b9385ea90eec98425587df9d5305b77527d253e756674fd04fbab7d9ae9_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:55bd99d1a45fa9d09fe87e6758daff67f0bd670bfaff760799623c0907a2d3ce_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prometheus-alertmanager@sha256:55bd99d1a45fa9d09fe87e6758daff67f0bd670bfaff760799623c0907a2d3ce_ppc64le" + }, + "product_reference": "openshift4/ose-prometheus-alertmanager@sha256:55bd99d1a45fa9d09fe87e6758daff67f0bd670bfaff760799623c0907a2d3ce_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:df3d691a760d1890133a84c633f156c311e8115e5cfe21763257d1cd9a564843_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prometheus-alertmanager@sha256:df3d691a760d1890133a84c633f156c311e8115e5cfe21763257d1cd9a564843_arm64" + }, + "product_reference": "openshift4/ose-prometheus-alertmanager@sha256:df3d691a760d1890133a84c633f156c311e8115e5cfe21763257d1cd9a564843_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:ecf612c8d80313689f85da76e8daf55c8445951765acc6c34fbe5c2d5e8f405a_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prometheus-alertmanager@sha256:ecf612c8d80313689f85da76e8daf55c8445951765acc6c34fbe5c2d5e8f405a_amd64" + }, + "product_reference": "openshift4/ose-prometheus-alertmanager@sha256:ecf612c8d80313689f85da76e8daf55c8445951765acc6c34fbe5c2d5e8f405a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:50de38992a708118447b504a039fb49fe39516c736161d088206a70c3f07f3ef_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prometheus-config-reloader@sha256:50de38992a708118447b504a039fb49fe39516c736161d088206a70c3f07f3ef_s390x" + }, + "product_reference": "openshift4/ose-prometheus-config-reloader@sha256:50de38992a708118447b504a039fb49fe39516c736161d088206a70c3f07f3ef_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:65d8fe202935aed88f4fb2ee14c217a4cc03ed7643ead1fd452f16c8ef025f9e_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prometheus-config-reloader@sha256:65d8fe202935aed88f4fb2ee14c217a4cc03ed7643ead1fd452f16c8ef025f9e_amd64" + }, + "product_reference": "openshift4/ose-prometheus-config-reloader@sha256:65d8fe202935aed88f4fb2ee14c217a4cc03ed7643ead1fd452f16c8ef025f9e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:cab5c6e7de1e4cb18072411eaa830627c6129c31ef8e99639e0c0c3ca6cf3d49_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prometheus-config-reloader@sha256:cab5c6e7de1e4cb18072411eaa830627c6129c31ef8e99639e0c0c3ca6cf3d49_arm64" + }, + "product_reference": "openshift4/ose-prometheus-config-reloader@sha256:cab5c6e7de1e4cb18072411eaa830627c6129c31ef8e99639e0c0c3ca6cf3d49_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:f769151134f5fea91e38d645a8037e5fdc7a4194f96e8bc91292b43662c577ab_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prometheus-config-reloader@sha256:f769151134f5fea91e38d645a8037e5fdc7a4194f96e8bc91292b43662c577ab_ppc64le" + }, + "product_reference": "openshift4/ose-prometheus-config-reloader@sha256:f769151134f5fea91e38d645a8037e5fdc7a4194f96e8bc91292b43662c577ab_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:55116ec694a8ce10cfe70873397edcb1b96829ce63e4f5c70d62ee3d9d1b0a21_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prometheus-node-exporter@sha256:55116ec694a8ce10cfe70873397edcb1b96829ce63e4f5c70d62ee3d9d1b0a21_s390x" + }, + "product_reference": "openshift4/ose-prometheus-node-exporter@sha256:55116ec694a8ce10cfe70873397edcb1b96829ce63e4f5c70d62ee3d9d1b0a21_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:7d4e4618699b662f796f8480c1e10c0644d269af26ae7b85791e3adaf13bf89c_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prometheus-node-exporter@sha256:7d4e4618699b662f796f8480c1e10c0644d269af26ae7b85791e3adaf13bf89c_ppc64le" + }, + "product_reference": "openshift4/ose-prometheus-node-exporter@sha256:7d4e4618699b662f796f8480c1e10c0644d269af26ae7b85791e3adaf13bf89c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:9c7b76ba18236eb95e49c2a9c02751085bc791a856ee96b131b408f848a614c5_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prometheus-node-exporter@sha256:9c7b76ba18236eb95e49c2a9c02751085bc791a856ee96b131b408f848a614c5_arm64" + }, + "product_reference": "openshift4/ose-prometheus-node-exporter@sha256:9c7b76ba18236eb95e49c2a9c02751085bc791a856ee96b131b408f848a614c5_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:b8e537d0fa58fd642fe1ca0e9d017f3977681f0dac580605c4c117a7094b0035_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prometheus-node-exporter@sha256:b8e537d0fa58fd642fe1ca0e9d017f3977681f0dac580605c4c117a7094b0035_amd64" + }, + "product_reference": "openshift4/ose-prometheus-node-exporter@sha256:b8e537d0fa58fd642fe1ca0e9d017f3977681f0dac580605c4c117a7094b0035_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:20a1195243df9bc0023c97d22cc79857361786b7bf9db9db2b968a352776270d_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:20a1195243df9bc0023c97d22cc79857361786b7bf9db9db2b968a352776270d_s390x" + }, + "product_reference": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:20a1195243df9bc0023c97d22cc79857361786b7bf9db9db2b968a352776270d_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:43eeefa4008192eb92f62f55151d0c560f23e235fafc70d9133ae62bd4bc8532_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:43eeefa4008192eb92f62f55151d0c560f23e235fafc70d9133ae62bd4bc8532_ppc64le" + }, + "product_reference": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:43eeefa4008192eb92f62f55151d0c560f23e235fafc70d9133ae62bd4bc8532_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:8e54e195ef09a8b2be93a440b661867d462e42023a28ceae2a7ea7482b7099f5_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:8e54e195ef09a8b2be93a440b661867d462e42023a28ceae2a7ea7482b7099f5_arm64" + }, + "product_reference": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:8e54e195ef09a8b2be93a440b661867d462e42023a28ceae2a7ea7482b7099f5_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:b61172786994c5220ad3da42c16ec98087a8ed6ed6f0a0aedbce04d1cb96a67a_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:b61172786994c5220ad3da42c16ec98087a8ed6ed6f0a0aedbce04d1cb96a67a_amd64" + }, + "product_reference": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:b61172786994c5220ad3da42c16ec98087a8ed6ed6f0a0aedbce04d1cb96a67a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator@sha256:0541cf41623e64ebbc4b5abf8f32778608da003026b2d53faf153bc50ddd6730_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prometheus-operator@sha256:0541cf41623e64ebbc4b5abf8f32778608da003026b2d53faf153bc50ddd6730_amd64" + }, + "product_reference": "openshift4/ose-prometheus-operator@sha256:0541cf41623e64ebbc4b5abf8f32778608da003026b2d53faf153bc50ddd6730_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator@sha256:32e28f0358b0f04d19981559c34c3da19b9e4de820964647387c510a6eb7bdcf_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prometheus-operator@sha256:32e28f0358b0f04d19981559c34c3da19b9e4de820964647387c510a6eb7bdcf_ppc64le" + }, + "product_reference": "openshift4/ose-prometheus-operator@sha256:32e28f0358b0f04d19981559c34c3da19b9e4de820964647387c510a6eb7bdcf_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator@sha256:64fd381410b8a024bea05dae6666b22e48e8e86a74854ea6a6e0cb4dd98970ac_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prometheus-operator@sha256:64fd381410b8a024bea05dae6666b22e48e8e86a74854ea6a6e0cb4dd98970ac_arm64" + }, + "product_reference": "openshift4/ose-prometheus-operator@sha256:64fd381410b8a024bea05dae6666b22e48e8e86a74854ea6a6e0cb4dd98970ac_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator@sha256:924325a95729c6a960110a2335c6d2a5d1826a8df84964322afb20b271cf2dd2_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prometheus-operator@sha256:924325a95729c6a960110a2335c6d2a5d1826a8df84964322afb20b271cf2dd2_s390x" + }, + "product_reference": "openshift4/ose-prometheus-operator@sha256:924325a95729c6a960110a2335c6d2a5d1826a8df84964322afb20b271cf2dd2_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus@sha256:163a4a70248f4c668abcc092df52091f987322d1c37867f9da6a957b166ab498_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prometheus@sha256:163a4a70248f4c668abcc092df52091f987322d1c37867f9da6a957b166ab498_ppc64le" + }, + "product_reference": "openshift4/ose-prometheus@sha256:163a4a70248f4c668abcc092df52091f987322d1c37867f9da6a957b166ab498_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus@sha256:47ec6a4a18dd6baeafbdf4ca1f9761d20ca9e10c00873484ca11aeac511c9348_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prometheus@sha256:47ec6a4a18dd6baeafbdf4ca1f9761d20ca9e10c00873484ca11aeac511c9348_arm64" + }, + "product_reference": "openshift4/ose-prometheus@sha256:47ec6a4a18dd6baeafbdf4ca1f9761d20ca9e10c00873484ca11aeac511c9348_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus@sha256:5017e62d8268a7d4817afb2855e06fcbd564296b1798c4d7c2e1ed5307064a02_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prometheus@sha256:5017e62d8268a7d4817afb2855e06fcbd564296b1798c4d7c2e1ed5307064a02_amd64" + }, + "product_reference": "openshift4/ose-prometheus@sha256:5017e62d8268a7d4817afb2855e06fcbd564296b1798c4d7c2e1ed5307064a02_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus@sha256:e54f73320c2890b45d88ea0b67496ce542e4edc3972e0fe38ed2dbc6e976c0ca_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-prometheus@sha256:e54f73320c2890b45d88ea0b67496ce542e4edc3972e0fe38ed2dbc6e976c0ca_s390x" + }, + "product_reference": "openshift4/ose-prometheus@sha256:e54f73320c2890b45d88ea0b67496ce542e4edc3972e0fe38ed2dbc6e976c0ca_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sdn-rhel8@sha256:6ecccdbd3402e27799f6b304e1fe2aab1d3eca3cbe079c0872fdbe572222bc83_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-sdn-rhel8@sha256:6ecccdbd3402e27799f6b304e1fe2aab1d3eca3cbe079c0872fdbe572222bc83_ppc64le" + }, + "product_reference": "openshift4/ose-sdn-rhel8@sha256:6ecccdbd3402e27799f6b304e1fe2aab1d3eca3cbe079c0872fdbe572222bc83_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sdn-rhel8@sha256:874b6c9f54151304602a75fe54ed8828a01ca9e0c5f32df097bcebe844bbc2c5_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-sdn-rhel8@sha256:874b6c9f54151304602a75fe54ed8828a01ca9e0c5f32df097bcebe844bbc2c5_amd64" + }, + "product_reference": "openshift4/ose-sdn-rhel8@sha256:874b6c9f54151304602a75fe54ed8828a01ca9e0c5f32df097bcebe844bbc2c5_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sdn-rhel8@sha256:d49ee687d486bfbc7b0d79e90c601917b6f768b6939535e8a4493cee8c35488d_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-sdn-rhel8@sha256:d49ee687d486bfbc7b0d79e90c601917b6f768b6939535e8a4493cee8c35488d_s390x" + }, + "product_reference": "openshift4/ose-sdn-rhel8@sha256:d49ee687d486bfbc7b0d79e90c601917b6f768b6939535e8a4493cee8c35488d_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sdn-rhel8@sha256:f74b9b84dec998913a1af4cb43ee1dbec28f307bd3d2b1bbe4a3a416c0141df6_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-sdn-rhel8@sha256:f74b9b84dec998913a1af4cb43ee1dbec28f307bd3d2b1bbe4a3a416c0141df6_arm64" + }, + "product_reference": "openshift4/ose-sdn-rhel8@sha256:f74b9b84dec998913a1af4cb43ee1dbec28f307bd3d2b1bbe4a3a416c0141df6_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-service-ca-operator@sha256:0c4dc8b732da5242876711232b6d0d9401c482f7e0448ffca6b9d31e63485ff7_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-service-ca-operator@sha256:0c4dc8b732da5242876711232b6d0d9401c482f7e0448ffca6b9d31e63485ff7_ppc64le" + }, + "product_reference": "openshift4/ose-service-ca-operator@sha256:0c4dc8b732da5242876711232b6d0d9401c482f7e0448ffca6b9d31e63485ff7_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-service-ca-operator@sha256:0fda41a9cf68eae9ad28ba7965ba350fbdf8f7707e9bfa8ddd72585bf0122a9e_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-service-ca-operator@sha256:0fda41a9cf68eae9ad28ba7965ba350fbdf8f7707e9bfa8ddd72585bf0122a9e_amd64" + }, + "product_reference": "openshift4/ose-service-ca-operator@sha256:0fda41a9cf68eae9ad28ba7965ba350fbdf8f7707e9bfa8ddd72585bf0122a9e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-service-ca-operator@sha256:54dbaf4f9dcd737bb4cc8a6174942f4bd2f2c860d31c7f4b3fd9db1efed5f535_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-service-ca-operator@sha256:54dbaf4f9dcd737bb4cc8a6174942f4bd2f2c860d31c7f4b3fd9db1efed5f535_arm64" + }, + "product_reference": "openshift4/ose-service-ca-operator@sha256:54dbaf4f9dcd737bb4cc8a6174942f4bd2f2c860d31c7f4b3fd9db1efed5f535_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-service-ca-operator@sha256:addc0492b7c2137f2b5f65da31872db7b720da85687e476805ad1bd9fe0037fb_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-service-ca-operator@sha256:addc0492b7c2137f2b5f65da31872db7b720da85687e476805ad1bd9fe0037fb_s390x" + }, + "product_reference": "openshift4/ose-service-ca-operator@sha256:addc0492b7c2137f2b5f65da31872db7b720da85687e476805ad1bd9fe0037fb_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-telemeter@sha256:0daffdf77db3de8454fb6de6648a08b7e3e1d51b74dbe031cf36587d187ef9fb_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-telemeter@sha256:0daffdf77db3de8454fb6de6648a08b7e3e1d51b74dbe031cf36587d187ef9fb_ppc64le" + }, + "product_reference": "openshift4/ose-telemeter@sha256:0daffdf77db3de8454fb6de6648a08b7e3e1d51b74dbe031cf36587d187ef9fb_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-telemeter@sha256:3988814296fcf02c64238d5c89c5a662839681b8e0f47176ba2d1fbfea4af10a_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-telemeter@sha256:3988814296fcf02c64238d5c89c5a662839681b8e0f47176ba2d1fbfea4af10a_arm64" + }, + "product_reference": "openshift4/ose-telemeter@sha256:3988814296fcf02c64238d5c89c5a662839681b8e0f47176ba2d1fbfea4af10a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-telemeter@sha256:8e7f60476faf0cb4c64db727747bf01ab54e919991d2dd1f44874f7b0a13a056_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-telemeter@sha256:8e7f60476faf0cb4c64db727747bf01ab54e919991d2dd1f44874f7b0a13a056_s390x" + }, + "product_reference": "openshift4/ose-telemeter@sha256:8e7f60476faf0cb4c64db727747bf01ab54e919991d2dd1f44874f7b0a13a056_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-telemeter@sha256:a2ab9310527d134d553d3fd4eee9fae4697f3a159c51433922bcccd864a4c018_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-telemeter@sha256:a2ab9310527d134d553d3fd4eee9fae4697f3a159c51433922bcccd864a4c018_amd64" + }, + "product_reference": "openshift4/ose-telemeter@sha256:a2ab9310527d134d553d3fd4eee9fae4697f3a159c51433922bcccd864a4c018_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tests@sha256:35293f5212b21adbe6a58fb4d530c658bd3df0138ff36ab0eb8cb78519e6da06_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-tests@sha256:35293f5212b21adbe6a58fb4d530c658bd3df0138ff36ab0eb8cb78519e6da06_s390x" + }, + "product_reference": "openshift4/ose-tests@sha256:35293f5212b21adbe6a58fb4d530c658bd3df0138ff36ab0eb8cb78519e6da06_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tests@sha256:4d1cd2c0bb7ef45db9aaea8190aa3144f0931a74e380a8f4135c87eec6ef9b50_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-tests@sha256:4d1cd2c0bb7ef45db9aaea8190aa3144f0931a74e380a8f4135c87eec6ef9b50_arm64" + }, + "product_reference": "openshift4/ose-tests@sha256:4d1cd2c0bb7ef45db9aaea8190aa3144f0931a74e380a8f4135c87eec6ef9b50_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tests@sha256:7f41a060de6f843f5ba99558fa5495cd00a3c5586be9b9d517c107d02eebf4f8_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-tests@sha256:7f41a060de6f843f5ba99558fa5495cd00a3c5586be9b9d517c107d02eebf4f8_ppc64le" + }, + "product_reference": "openshift4/ose-tests@sha256:7f41a060de6f843f5ba99558fa5495cd00a3c5586be9b9d517c107d02eebf4f8_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tests@sha256:ae9d39df5899132339bdf9e68f5ff61db7851cd264d624446575573b8b504653_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-tests@sha256:ae9d39df5899132339bdf9e68f5ff61db7851cd264d624446575573b8b504653_amd64" + }, + "product_reference": "openshift4/ose-tests@sha256:ae9d39df5899132339bdf9e68f5ff61db7851cd264d624446575573b8b504653_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-thanos-rhel8@sha256:29a81637a4af4e33198948659e174271a0737ce872cc79615dc6d09de29c95c8_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-thanos-rhel8@sha256:29a81637a4af4e33198948659e174271a0737ce872cc79615dc6d09de29c95c8_s390x" + }, + "product_reference": "openshift4/ose-thanos-rhel8@sha256:29a81637a4af4e33198948659e174271a0737ce872cc79615dc6d09de29c95c8_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-thanos-rhel8@sha256:a1f3ef5b146a4e9079f89ce9046d5a9cc006ecc41965f663760093fe95c7a050_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-thanos-rhel8@sha256:a1f3ef5b146a4e9079f89ce9046d5a9cc006ecc41965f663760093fe95c7a050_amd64" + }, + "product_reference": "openshift4/ose-thanos-rhel8@sha256:a1f3ef5b146a4e9079f89ce9046d5a9cc006ecc41965f663760093fe95c7a050_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-thanos-rhel8@sha256:b290faaa6b927c0000825c6aa213403822b023d309bd1437eb40bb0b45d68587_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-thanos-rhel8@sha256:b290faaa6b927c0000825c6aa213403822b023d309bd1437eb40bb0b45d68587_arm64" + }, + "product_reference": "openshift4/ose-thanos-rhel8@sha256:b290faaa6b927c0000825c6aa213403822b023d309bd1437eb40bb0b45d68587_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-thanos-rhel8@sha256:e313ab21e7f6a5805c3d98723397ac215dc0e6ea15f7c9387056553ec85da441_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-thanos-rhel8@sha256:e313ab21e7f6a5805c3d98723397ac215dc0e6ea15f7c9387056553ec85da441_ppc64le" + }, + "product_reference": "openshift4/ose-thanos-rhel8@sha256:e313ab21e7f6a5805c3d98723397ac215dc0e6ea15f7c9387056553ec85da441_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tools-rhel8@sha256:5d124449226d2ae886712a0a5f8f83904313c98506b67104ede87c0d57975514_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-tools-rhel8@sha256:5d124449226d2ae886712a0a5f8f83904313c98506b67104ede87c0d57975514_amd64" + }, + "product_reference": "openshift4/ose-tools-rhel8@sha256:5d124449226d2ae886712a0a5f8f83904313c98506b67104ede87c0d57975514_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tools-rhel8@sha256:71d302aa86876906fe20659b215610d26fa00189b4a4ea5d3d979895429073e8_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-tools-rhel8@sha256:71d302aa86876906fe20659b215610d26fa00189b4a4ea5d3d979895429073e8_arm64" + }, + "product_reference": "openshift4/ose-tools-rhel8@sha256:71d302aa86876906fe20659b215610d26fa00189b4a4ea5d3d979895429073e8_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tools-rhel8@sha256:84073969d6e26bda378886c20e7344af063d66ad6d5f480955351e3fe700106f_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-tools-rhel8@sha256:84073969d6e26bda378886c20e7344af063d66ad6d5f480955351e3fe700106f_ppc64le" + }, + "product_reference": "openshift4/ose-tools-rhel8@sha256:84073969d6e26bda378886c20e7344af063d66ad6d5f480955351e3fe700106f_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tools-rhel8@sha256:99ed0a48c28ee460a66934ffe7033b7aa1d60a7a650782a4987fb06ff4a39ae1_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-tools-rhel8@sha256:99ed0a48c28ee460a66934ffe7033b7aa1d60a7a650782a4987fb06ff4a39ae1_s390x" + }, + "product_reference": "openshift4/ose-tools-rhel8@sha256:99ed0a48c28ee460a66934ffe7033b7aa1d60a7a650782a4987fb06ff4a39ae1_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:f74510df36e96c36dd59e6e6fe7bab83cb58599c5d52ce4000d2770606e95e28_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:f74510df36e96c36dd59e6e6fe7bab83cb58599c5d52ce4000d2770606e95e28_amd64" + }, + "product_reference": "openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:f74510df36e96c36dd59e6e6fe7bab83cb58599c5d52ce4000d2770606e95e28_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:510d47db1c673fcb39438ebcd64fd4b71588a3a0e48eb1eb901ba36d81c15252_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:510d47db1c673fcb39438ebcd64fd4b71588a3a0e48eb1eb901ba36d81c15252_amd64" + }, + "product_reference": "openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:510d47db1c673fcb39438ebcd64fd4b71588a3a0e48eb1eb901ba36d81c15252_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:4c65aab94a13313f83920d0f5591686a39a2c1c44c5bf218b0f11bc13e91ef1b_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:4c65aab94a13313f83920d0f5591686a39a2c1c44c5bf218b0f11bc13e91ef1b_amd64" + }, + "product_reference": "openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:4c65aab94a13313f83920d0f5591686a39a2c1c44c5bf218b0f11bc13e91ef1b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:e21c5fd821adf3f668e9c1a38f749f6bf71602aad2d30f89972de89e4c987207_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:e21c5fd821adf3f668e9c1a38f749f6bf71602aad2d30f89972de89e4c987207_amd64" + }, + "product_reference": "openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:e21c5fd821adf3f668e9c1a38f749f6bf71602aad2d30f89972de89e4c987207_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:f74510df36e96c36dd59e6e6fe7bab83cb58599c5d52ce4000d2770606e95e28_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:f74510df36e96c36dd59e6e6fe7bab83cb58599c5d52ce4000d2770606e95e28_amd64" + }, + "product_reference": "openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:f74510df36e96c36dd59e6e6fe7bab83cb58599c5d52ce4000d2770606e95e28_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vsphere-csi-driver-rhel8@sha256:510d47db1c673fcb39438ebcd64fd4b71588a3a0e48eb1eb901ba36d81c15252_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-vsphere-csi-driver-rhel8@sha256:510d47db1c673fcb39438ebcd64fd4b71588a3a0e48eb1eb901ba36d81c15252_amd64" + }, + "product_reference": "openshift4/ose-vsphere-csi-driver-rhel8@sha256:510d47db1c673fcb39438ebcd64fd4b71588a3a0e48eb1eb901ba36d81c15252_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:cce18b1b2294560d7c38526cc81df1bb90963a0d2656a31e46d5c05d5be3d233_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:cce18b1b2294560d7c38526cc81df1bb90963a0d2656a31e46d5c05d5be3d233_amd64" + }, + "product_reference": "openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:cce18b1b2294560d7c38526cc81df1bb90963a0d2656a31e46d5c05d5be3d233_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vsphere-problem-detector-rhel8@sha256:8e375a1a054dd3060efe36ea5bbc1ec2fdae7c1dfbd8dd736bcb9fd3fef004b9_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ose-vsphere-problem-detector-rhel8@sha256:8e375a1a054dd3060efe36ea5bbc1ec2fdae7c1dfbd8dd736bcb9fd3fef004b9_amd64" + }, + "product_reference": "openshift4/ose-vsphere-problem-detector-rhel8@sha256:8e375a1a054dd3060efe36ea5bbc1ec2fdae7c1dfbd8dd736bcb9fd3fef004b9_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:a8efd9cf0bf92a5e58b584de1ff6fc87c9b4abc01230fd43b5ad1e3c8d8e3bfd_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ovirt-csi-driver-rhel7@sha256:a8efd9cf0bf92a5e58b584de1ff6fc87c9b4abc01230fd43b5ad1e3c8d8e3bfd_ppc64le" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel7@sha256:a8efd9cf0bf92a5e58b584de1ff6fc87c9b4abc01230fd43b5ad1e3c8d8e3bfd_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:d3566cd8ade5d9607ac44a45988d3a57eba2be8dade4e6397f11dd8365b3949e_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ovirt-csi-driver-rhel7@sha256:d3566cd8ade5d9607ac44a45988d3a57eba2be8dade4e6397f11dd8365b3949e_s390x" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel7@sha256:d3566cd8ade5d9607ac44a45988d3a57eba2be8dade4e6397f11dd8365b3949e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:d6e6ae3222ae2d86bf634c2cff2f53a5c279329bf22c02208cce319be6d6c661_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ovirt-csi-driver-rhel7@sha256:d6e6ae3222ae2d86bf634c2cff2f53a5c279329bf22c02208cce319be6d6c661_amd64" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel7@sha256:d6e6ae3222ae2d86bf634c2cff2f53a5c279329bf22c02208cce319be6d6c661_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:ede1b872a9561069ecfa18c4f93ea4d419d986ce857ccf53c9226053b511d0c9_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ovirt-csi-driver-rhel7@sha256:ede1b872a9561069ecfa18c4f93ea4d419d986ce857ccf53c9226053b511d0c9_arm64" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel7@sha256:ede1b872a9561069ecfa18c4f93ea4d419d986ce857ccf53c9226053b511d0c9_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:1da2594228aa0a8a382925208fcd0e5dc61cb04c0bef9dc89f973e55a1d0c6be_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ovirt-csi-driver-rhel8-operator@sha256:1da2594228aa0a8a382925208fcd0e5dc61cb04c0bef9dc89f973e55a1d0c6be_amd64" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:1da2594228aa0a8a382925208fcd0e5dc61cb04c0bef9dc89f973e55a1d0c6be_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:a6c57b4946a89505293ed5909db6df7e2ce5e9270fe6da553024ab2961a6694b_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ovirt-csi-driver-rhel8-operator@sha256:a6c57b4946a89505293ed5909db6df7e2ce5e9270fe6da553024ab2961a6694b_s390x" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:a6c57b4946a89505293ed5909db6df7e2ce5e9270fe6da553024ab2961a6694b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:acf65da60288d0ad94e095829dcd392fa48f91941ae6bae3bdad186485e01518_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ovirt-csi-driver-rhel8-operator@sha256:acf65da60288d0ad94e095829dcd392fa48f91941ae6bae3bdad186485e01518_arm64" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:acf65da60288d0ad94e095829dcd392fa48f91941ae6bae3bdad186485e01518_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:e4deac18608ea3a3eca50acb6d09633fdfd3d7cea955d6ec488918ff1cda4ada_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ovirt-csi-driver-rhel8-operator@sha256:e4deac18608ea3a3eca50acb6d09633fdfd3d7cea955d6ec488918ff1cda4ada_ppc64le" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:e4deac18608ea3a3eca50acb6d09633fdfd3d7cea955d6ec488918ff1cda4ada_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:a8efd9cf0bf92a5e58b584de1ff6fc87c9b4abc01230fd43b5ad1e3c8d8e3bfd_ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ovirt-csi-driver-rhel8@sha256:a8efd9cf0bf92a5e58b584de1ff6fc87c9b4abc01230fd43b5ad1e3c8d8e3bfd_ppc64le" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8@sha256:a8efd9cf0bf92a5e58b584de1ff6fc87c9b4abc01230fd43b5ad1e3c8d8e3bfd_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:d3566cd8ade5d9607ac44a45988d3a57eba2be8dade4e6397f11dd8365b3949e_s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ovirt-csi-driver-rhel8@sha256:d3566cd8ade5d9607ac44a45988d3a57eba2be8dade4e6397f11dd8365b3949e_s390x" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8@sha256:d3566cd8ade5d9607ac44a45988d3a57eba2be8dade4e6397f11dd8365b3949e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:d6e6ae3222ae2d86bf634c2cff2f53a5c279329bf22c02208cce319be6d6c661_amd64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ovirt-csi-driver-rhel8@sha256:d6e6ae3222ae2d86bf634c2cff2f53a5c279329bf22c02208cce319be6d6c661_amd64" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8@sha256:d6e6ae3222ae2d86bf634c2cff2f53a5c279329bf22c02208cce319be6d6c661_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:ede1b872a9561069ecfa18c4f93ea4d419d986ce857ccf53c9226053b511d0c9_arm64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:openshift4/ovirt-csi-driver-rhel8@sha256:ede1b872a9561069ecfa18c4f93ea4d419d986ce857ccf53c9226053b511d0c9_arm64" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8@sha256:ede1b872a9561069ecfa18c4f93ea4d419d986ce857ccf53c9226053b511d0c9_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:perf-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "perf-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:perf-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "perf-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:perf-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "perf-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:perf-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "perf-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:perf-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:perf-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:perf-debuginfo-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:perf-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:python3-perf-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "python3-perf-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:python3-perf-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "python3-perf-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:python3-perf-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "python3-perf-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:python3-perf-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "python3-perf-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.11", + "product_id": "8Base-RHOSE-4.11:python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:bpftool-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "bpftool-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:bpftool-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "bpftool-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:bpftool-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "bpftool-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:bpftool-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "bpftool-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "bpftool-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "containers-common-2:1-36.rhaos4.12.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:containers-common-2:1-36.rhaos4.12.el8.aarch64" + }, + "product_reference": "containers-common-2:1-36.rhaos4.12.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "containers-common-2:1-36.rhaos4.12.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:containers-common-2:1-36.rhaos4.12.el8.ppc64le" + }, + "product_reference": "containers-common-2:1-36.rhaos4.12.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "containers-common-2:1-36.rhaos4.12.el8.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:containers-common-2:1-36.rhaos4.12.el8.s390x" + }, + "product_reference": "containers-common-2:1-36.rhaos4.12.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "containers-common-2:1-36.rhaos4.12.el8.src as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:containers-common-2:1-36.rhaos4.12.el8.src" + }, + "product_reference": "containers-common-2:1-36.rhaos4.12.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "containers-common-2:1-36.rhaos4.12.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:containers-common-2:1-36.rhaos4.12.el8.x86_64" + }, + "product_reference": "containers-common-2:1-36.rhaos4.12.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kata-containers-0:3.0.2-9.rhaos4.12.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kata-containers-0:3.0.2-9.rhaos4.12.el8.aarch64" + }, + "product_reference": "kata-containers-0:3.0.2-9.rhaos4.12.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kata-containers-0:3.0.2-9.rhaos4.12.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kata-containers-0:3.0.2-9.rhaos4.12.el8.ppc64le" + }, + "product_reference": "kata-containers-0:3.0.2-9.rhaos4.12.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kata-containers-0:3.0.2-9.rhaos4.12.el8.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kata-containers-0:3.0.2-9.rhaos4.12.el8.s390x" + }, + "product_reference": "kata-containers-0:3.0.2-9.rhaos4.12.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kata-containers-0:3.0.2-9.rhaos4.12.el8.src as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kata-containers-0:3.0.2-9.rhaos4.12.el8.src" + }, + "product_reference": "kata-containers-0:3.0.2-9.rhaos4.12.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kata-containers-0:3.0.2-9.rhaos4.12.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kata-containers-0:3.0.2-9.rhaos4.12.el8.x86_64" + }, + "product_reference": "kata-containers-0:3.0.2-9.rhaos4.12.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:4.18.0-372.76.1.el8_6.src as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-0:4.18.0-372.76.1.el8_6.src" + }, + "product_reference": "kernel-0:4.18.0-372.76.1.el8_6.src", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-core-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-core-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-core-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-core-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-core-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-core-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-core-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-core-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-core-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-core-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-core-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-core-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-cross-headers-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-cross-headers-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-cross-headers-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-cross-headers-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-cross-headers-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-debug-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-debug-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-debug-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-debug-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-core-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-core-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-core-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-core-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-debug-core-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-debug-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-devel-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-devel-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-devel-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-devel-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-debug-devel-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-modules-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-modules-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-modules-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-modules-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-debug-modules-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-debug-modules-extra-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-debug-modules-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debuginfo-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-common-aarch64-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debuginfo-common-aarch64-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-debuginfo-common-aarch64-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-common-ppc64le-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debuginfo-common-ppc64le-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-debuginfo-common-ppc64le-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-common-s390x-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debuginfo-common-s390x-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-debuginfo-common-s390x-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-common-x86_64-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-debuginfo-common-x86_64-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-debuginfo-common-x86_64-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-devel-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-devel-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-devel-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-devel-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-devel-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-devel-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-devel-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-devel-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-doc-0:4.18.0-372.76.1.el8_6.noarch as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-doc-0:4.18.0-372.76.1.el8_6.noarch" + }, + "product_reference": "kernel-doc-0:4.18.0-372.76.1.el8_6.noarch", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-headers-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-headers-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-headers-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-headers-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-headers-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-headers-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-headers-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-headers-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-headers-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-headers-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-headers-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-headers-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-ipaclones-internal-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-ipaclones-internal-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-ipaclones-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-ipaclones-internal-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-ipaclones-internal-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-ipaclones-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-modules-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-modules-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-modules-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-modules-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-modules-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-modules-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-modules-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-modules-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-modules-extra-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-modules-extra-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-modules-extra-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-modules-extra-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-modules-extra-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-modules-internal-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-modules-internal-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-modules-internal-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-modules-internal-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-modules-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-0:4.18.0-372.76.1.rt7.235.el8_6.src as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-rt-0:4.18.0-372.76.1.rt7.235.el8_6.src" + }, + "product_reference": "kernel-rt-0:4.18.0-372.76.1.rt7.235.el8_6.src", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-rt-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-core-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-rt-core-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-core-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-rt-debug-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-debug-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-core-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-rt-debug-core-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-debug-core-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-debuginfo-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-rt-debug-debuginfo-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-debug-debuginfo-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-devel-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-rt-debug-devel-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-debug-devel-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-kvm-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-rt-debug-kvm-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-debug-kvm-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-modules-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-rt-debug-modules-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-debug-modules-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-modules-extra-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-rt-debug-modules-extra-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-debug-modules-extra-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-modules-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-rt-debug-modules-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-debug-modules-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debuginfo-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-rt-debuginfo-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-debuginfo-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debuginfo-common-x86_64-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-rt-debuginfo-common-x86_64-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-debuginfo-common-x86_64-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-devel-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-rt-devel-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-devel-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-kvm-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-rt-kvm-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-kvm-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-modules-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-rt-modules-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-modules-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-modules-extra-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-rt-modules-extra-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-modules-extra-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-modules-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-rt-modules-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-modules-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-selftests-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-rt-selftests-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64" + }, + "product_reference": "kernel-rt-selftests-internal-0:4.18.0-372.76.1.rt7.235.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-selftests-internal-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-tools-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-tools-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-tools-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-tools-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-tools-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-tools-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-tools-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-tools-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-tools-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-tools-libs-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-tools-libs-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-tools-libs-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-tools-libs-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "kernel-tools-libs-devel-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-zfcpdump-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-zfcpdump-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-core-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-zfcpdump-core-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-zfcpdump-core-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-debuginfo-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-zfcpdump-debuginfo-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-zfcpdump-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-devel-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-zfcpdump-devel-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-zfcpdump-devel-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-modules-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-zfcpdump-modules-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-zfcpdump-modules-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-modules-extra-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-zfcpdump-modules-extra-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-zfcpdump-modules-extra-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-modules-internal-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:kernel-zfcpdump-modules-internal-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "kernel-zfcpdump-modules-internal-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.src as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.src" + }, + "product_reference": "openshift-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.aarch64" + }, + "product_reference": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.ppc64le" + }, + "product_reference": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.s390x" + }, + "product_reference": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.src as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.src" + }, + "product_reference": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.x86_64" + }, + "product_reference": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-redistributable-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift-clients-redistributable-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.x86_64" + }, + "product_reference": "openshift-clients-redistributable-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.aarch64" + }, + "product_reference": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.ppc64le" + }, + "product_reference": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.s390x" + }, + "product_reference": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.x86_64" + }, + "product_reference": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:2b1111df93ac6bbd3e41f062b93f5447a5b1211b0520cf0efcd1459bbc07313e_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/cloud-network-config-controller-rhel8@sha256:2b1111df93ac6bbd3e41f062b93f5447a5b1211b0520cf0efcd1459bbc07313e_ppc64le" + }, + "product_reference": "openshift4/cloud-network-config-controller-rhel8@sha256:2b1111df93ac6bbd3e41f062b93f5447a5b1211b0520cf0efcd1459bbc07313e_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:649ca238e1bfd44616251260bda84947d1276ef571028ee9d667c737cedb0abf_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/cloud-network-config-controller-rhel8@sha256:649ca238e1bfd44616251260bda84947d1276ef571028ee9d667c737cedb0abf_amd64" + }, + "product_reference": "openshift4/cloud-network-config-controller-rhel8@sha256:649ca238e1bfd44616251260bda84947d1276ef571028ee9d667c737cedb0abf_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:c260314ce32117ef2b47da987465797573efa7a947bb7c3370e74c619fa708db_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/cloud-network-config-controller-rhel8@sha256:c260314ce32117ef2b47da987465797573efa7a947bb7c3370e74c619fa708db_s390x" + }, + "product_reference": "openshift4/cloud-network-config-controller-rhel8@sha256:c260314ce32117ef2b47da987465797573efa7a947bb7c3370e74c619fa708db_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:e008378300c11c1c8b5fab48d13911aadbed115ad304fff265c737e234cebf63_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/cloud-network-config-controller-rhel8@sha256:e008378300c11c1c8b5fab48d13911aadbed115ad304fff265c737e234cebf63_arm64" + }, + "product_reference": "openshift4/cloud-network-config-controller-rhel8@sha256:e008378300c11c1c8b5fab48d13911aadbed115ad304fff265c737e234cebf63_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/cnf-tests-rhel8@sha256:29579a785974ff1130882f04495f90ba8423ea0fb17bf445b82dd919b19c515d_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/cnf-tests-rhel8@sha256:29579a785974ff1130882f04495f90ba8423ea0fb17bf445b82dd919b19c515d_amd64" + }, + "product_reference": "openshift4/cnf-tests-rhel8@sha256:29579a785974ff1130882f04495f90ba8423ea0fb17bf445b82dd919b19c515d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/dpdk-base-rhel8@sha256:3faf3d37e7fb8125bf5c49a93cac0e69dd2dbcafcfa27939e706f1d969caa8e7_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/dpdk-base-rhel8@sha256:3faf3d37e7fb8125bf5c49a93cac0e69dd2dbcafcfa27939e706f1d969caa8e7_amd64" + }, + "product_reference": "openshift4/dpdk-base-rhel8@sha256:3faf3d37e7fb8125bf5c49a93cac0e69dd2dbcafcfa27939e706f1d969caa8e7_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/egress-router-cni-rhel8@sha256:635b15478f717a49ad336ecb4ac7b2974bd31784aadfd6aaea89ee515c64c271_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/egress-router-cni-rhel8@sha256:635b15478f717a49ad336ecb4ac7b2974bd31784aadfd6aaea89ee515c64c271_amd64" + }, + "product_reference": "openshift4/egress-router-cni-rhel8@sha256:635b15478f717a49ad336ecb4ac7b2974bd31784aadfd6aaea89ee515c64c271_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/egress-router-cni-rhel8@sha256:7bba84f766c22241fb45a02f7934a9a2f34766c678e2beff7bcdf30b4353a534_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/egress-router-cni-rhel8@sha256:7bba84f766c22241fb45a02f7934a9a2f34766c678e2beff7bcdf30b4353a534_s390x" + }, + "product_reference": "openshift4/egress-router-cni-rhel8@sha256:7bba84f766c22241fb45a02f7934a9a2f34766c678e2beff7bcdf30b4353a534_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/egress-router-cni-rhel8@sha256:8971938b624483a0845cbda355b6e55e26bb95f87f1e6c252b3fa36c68df7ea1_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/egress-router-cni-rhel8@sha256:8971938b624483a0845cbda355b6e55e26bb95f87f1e6c252b3fa36c68df7ea1_arm64" + }, + "product_reference": "openshift4/egress-router-cni-rhel8@sha256:8971938b624483a0845cbda355b6e55e26bb95f87f1e6c252b3fa36c68df7ea1_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/egress-router-cni-rhel8@sha256:bc95f121c003db4cdaa0425f4fd3d91ef9e079d8c67217d811dbe33a83748470_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/egress-router-cni-rhel8@sha256:bc95f121c003db4cdaa0425f4fd3d91ef9e079d8c67217d811dbe33a83748470_ppc64le" + }, + "product_reference": "openshift4/egress-router-cni-rhel8@sha256:bc95f121c003db4cdaa0425f4fd3d91ef9e079d8c67217d811dbe33a83748470_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:0157ec50af67bb54ed0581b32550124741015eb654ac302aca8f9ca70307e8a5_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/kubevirt-csi-driver-rhel8@sha256:0157ec50af67bb54ed0581b32550124741015eb654ac302aca8f9ca70307e8a5_ppc64le" + }, + "product_reference": "openshift4/kubevirt-csi-driver-rhel8@sha256:0157ec50af67bb54ed0581b32550124741015eb654ac302aca8f9ca70307e8a5_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:3d92ea9f6af0f7c6d9e0754e66226351de3cba5fef5c05d93e7349ddf4cfc02d_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/kubevirt-csi-driver-rhel8@sha256:3d92ea9f6af0f7c6d9e0754e66226351de3cba5fef5c05d93e7349ddf4cfc02d_arm64" + }, + "product_reference": "openshift4/kubevirt-csi-driver-rhel8@sha256:3d92ea9f6af0f7c6d9e0754e66226351de3cba5fef5c05d93e7349ddf4cfc02d_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:58c546b1a68f4bf8467a7bec9820ceaaf1ccaf7f1d243639c240ee10d23ea43a_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/kubevirt-csi-driver-rhel8@sha256:58c546b1a68f4bf8467a7bec9820ceaaf1ccaf7f1d243639c240ee10d23ea43a_amd64" + }, + "product_reference": "openshift4/kubevirt-csi-driver-rhel8@sha256:58c546b1a68f4bf8467a7bec9820ceaaf1ccaf7f1d243639c240ee10d23ea43a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:7c249c78a9308ac9ab8d61d0598e9c834f4d11ae4895ab3143b76fdba5837259_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/kubevirt-csi-driver-rhel8@sha256:7c249c78a9308ac9ab8d61d0598e9c834f4d11ae4895ab3143b76fdba5837259_s390x" + }, + "product_reference": "openshift4/kubevirt-csi-driver-rhel8@sha256:7c249c78a9308ac9ab8d61d0598e9c834f4d11ae4895ab3143b76fdba5837259_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/network-tools-rhel8@sha256:1f64e67093165f8c485e15772909898238331c952596b698bc49d39cf01d03c1_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/network-tools-rhel8@sha256:1f64e67093165f8c485e15772909898238331c952596b698bc49d39cf01d03c1_amd64" + }, + "product_reference": "openshift4/network-tools-rhel8@sha256:1f64e67093165f8c485e15772909898238331c952596b698bc49d39cf01d03c1_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/network-tools-rhel8@sha256:9084cd8e37eaf09291d2b427645e5cd40618e50b821f371a2803abc7de6ec8f0_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/network-tools-rhel8@sha256:9084cd8e37eaf09291d2b427645e5cd40618e50b821f371a2803abc7de6ec8f0_ppc64le" + }, + "product_reference": "openshift4/network-tools-rhel8@sha256:9084cd8e37eaf09291d2b427645e5cd40618e50b821f371a2803abc7de6ec8f0_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/network-tools-rhel8@sha256:c97ddb479618fd7ac247b4aa5f2fde5937fcf4bfd2f61736f2334f73ff4e2cf8_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/network-tools-rhel8@sha256:c97ddb479618fd7ac247b4aa5f2fde5937fcf4bfd2f61736f2334f73ff4e2cf8_arm64" + }, + "product_reference": "openshift4/network-tools-rhel8@sha256:c97ddb479618fd7ac247b4aa5f2fde5937fcf4bfd2f61736f2334f73ff4e2cf8_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/network-tools-rhel8@sha256:f562b928112e0d7b1cfc02be3aa2d8fa75a9b14d5a336f1eedce5cddd9d8119b_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/network-tools-rhel8@sha256:f562b928112e0d7b1cfc02be3aa2d8fa75a9b14d5a336f1eedce5cddd9d8119b_s390x" + }, + "product_reference": "openshift4/network-tools-rhel8@sha256:f562b928112e0d7b1cfc02be3aa2d8fa75a9b14d5a336f1eedce5cddd9d8119b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/noderesourcetopology-scheduler-container-rhel8@sha256:245a7c990bcb554ded0f4832957db51d0439311bd85b5c89943e33001e29a2fe_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/noderesourcetopology-scheduler-container-rhel8@sha256:245a7c990bcb554ded0f4832957db51d0439311bd85b5c89943e33001e29a2fe_amd64" + }, + "product_reference": "openshift4/noderesourcetopology-scheduler-container-rhel8@sha256:245a7c990bcb554ded0f4832957db51d0439311bd85b5c89943e33001e29a2fe_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/numaresources-operator-bundle@sha256:d058f59dbc21e6b015de06bad2d42e2cec078cbbc80a76fe2f914d641caaef7b_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/numaresources-operator-bundle@sha256:d058f59dbc21e6b015de06bad2d42e2cec078cbbc80a76fe2f914d641caaef7b_amd64" + }, + "product_reference": "openshift4/numaresources-operator-bundle@sha256:d058f59dbc21e6b015de06bad2d42e2cec078cbbc80a76fe2f914d641caaef7b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/numaresources-rhel8-operator@sha256:9ae57e31edf4e0a10768d52c7a0cce4f38ce16a0e75785e356ae0c00b73b200c_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/numaresources-rhel8-operator@sha256:9ae57e31edf4e0a10768d52c7a0cce4f38ce16a0e75785e356ae0c00b73b200c_amd64" + }, + "product_reference": "openshift4/numaresources-rhel8-operator@sha256:9ae57e31edf4e0a10768d52c7a0cce4f38ce16a0e75785e356ae0c00b73b200c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/oc-mirror-plugin-rhel8@sha256:d91a6410a01c652620de1bc0162b525379026dd88a3054a546fc4721bd890f7c_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/oc-mirror-plugin-rhel8@sha256:d91a6410a01c652620de1bc0162b525379026dd88a3054a546fc4721bd890f7c_amd64" + }, + "product_reference": "openshift4/oc-mirror-plugin-rhel8@sha256:d91a6410a01c652620de1bc0162b525379026dd88a3054a546fc4721bd890f7c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:7bdd4492ce1d348342bae28c248182ecb3548d3528250dee53903a399c2f9a6a_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/openshift-route-controller-manager-rhel8@sha256:7bdd4492ce1d348342bae28c248182ecb3548d3528250dee53903a399c2f9a6a_arm64" + }, + "product_reference": "openshift4/openshift-route-controller-manager-rhel8@sha256:7bdd4492ce1d348342bae28c248182ecb3548d3528250dee53903a399c2f9a6a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:b579bc8e5c3452d2c3efee591240d7ae8e783225d6169caf4227923a82896d7c_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/openshift-route-controller-manager-rhel8@sha256:b579bc8e5c3452d2c3efee591240d7ae8e783225d6169caf4227923a82896d7c_ppc64le" + }, + "product_reference": "openshift4/openshift-route-controller-manager-rhel8@sha256:b579bc8e5c3452d2c3efee591240d7ae8e783225d6169caf4227923a82896d7c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:d4480a2e94452006b35ed51c75b070783571bfefd49cc128cc794d2fa9b49e7e_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/openshift-route-controller-manager-rhel8@sha256:d4480a2e94452006b35ed51c75b070783571bfefd49cc128cc794d2fa9b49e7e_amd64" + }, + "product_reference": "openshift4/openshift-route-controller-manager-rhel8@sha256:d4480a2e94452006b35ed51c75b070783571bfefd49cc128cc794d2fa9b49e7e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:ebc90db39a8c83316048ed114d6e50c25464fb5b8db9a9fb2cdc9db03a79aece_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/openshift-route-controller-manager-rhel8@sha256:ebc90db39a8c83316048ed114d6e50c25464fb5b8db9a9fb2cdc9db03a79aece_s390x" + }, + "product_reference": "openshift4/openshift-route-controller-manager-rhel8@sha256:ebc90db39a8c83316048ed114d6e50c25464fb5b8db9a9fb2cdc9db03a79aece_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:7a185558386a23e058ee84020eecb813c16b4f414af7c52f5ade555b8e5d2708_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-agent-installer-api-server-rhel8@sha256:7a185558386a23e058ee84020eecb813c16b4f414af7c52f5ade555b8e5d2708_ppc64le" + }, + "product_reference": "openshift4/ose-agent-installer-api-server-rhel8@sha256:7a185558386a23e058ee84020eecb813c16b4f414af7c52f5ade555b8e5d2708_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:8fd0a72a8fa225ed311a74fde3bd02d81dacf5d9c4dbba8048c5b0b5e6adc4ad_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-agent-installer-api-server-rhel8@sha256:8fd0a72a8fa225ed311a74fde3bd02d81dacf5d9c4dbba8048c5b0b5e6adc4ad_s390x" + }, + "product_reference": "openshift4/ose-agent-installer-api-server-rhel8@sha256:8fd0a72a8fa225ed311a74fde3bd02d81dacf5d9c4dbba8048c5b0b5e6adc4ad_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:c6eafdf4d4ec4e558fef4d561de92a8fdd7eb800047580c3edd5f4a497407b95_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-agent-installer-api-server-rhel8@sha256:c6eafdf4d4ec4e558fef4d561de92a8fdd7eb800047580c3edd5f4a497407b95_amd64" + }, + "product_reference": "openshift4/ose-agent-installer-api-server-rhel8@sha256:c6eafdf4d4ec4e558fef4d561de92a8fdd7eb800047580c3edd5f4a497407b95_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:db3d5b39c0eb45a29b3fbbccd50e43b1b6cb5ea6c6262f6d43c3d7f5d8f2362c_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-agent-installer-api-server-rhel8@sha256:db3d5b39c0eb45a29b3fbbccd50e43b1b6cb5ea6c6262f6d43c3d7f5d8f2362c_arm64" + }, + "product_reference": "openshift4/ose-agent-installer-api-server-rhel8@sha256:db3d5b39c0eb45a29b3fbbccd50e43b1b6cb5ea6c6262f6d43c3d7f5d8f2362c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:01ef876b469d69385e30adcc512359b24a3da4205b25e7cc59b11430c59a3cbd_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-agent-installer-csr-approver-rhel8@sha256:01ef876b469d69385e30adcc512359b24a3da4205b25e7cc59b11430c59a3cbd_amd64" + }, + "product_reference": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:01ef876b469d69385e30adcc512359b24a3da4205b25e7cc59b11430c59a3cbd_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:6eba8ff772806f7ec148c6b0c1294c0502e72e9233143a2e713db87cb1bae84e_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-agent-installer-csr-approver-rhel8@sha256:6eba8ff772806f7ec148c6b0c1294c0502e72e9233143a2e713db87cb1bae84e_s390x" + }, + "product_reference": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:6eba8ff772806f7ec148c6b0c1294c0502e72e9233143a2e713db87cb1bae84e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:bb77a72d815a26c990d1252a722da735681fd33b342efaa6446db4cf3f9c18b7_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-agent-installer-csr-approver-rhel8@sha256:bb77a72d815a26c990d1252a722da735681fd33b342efaa6446db4cf3f9c18b7_ppc64le" + }, + "product_reference": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:bb77a72d815a26c990d1252a722da735681fd33b342efaa6446db4cf3f9c18b7_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:cf816b940b2a618a437fc17a8f126cf10052abae3c4d6d2d14fc191d3cba8bf6_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-agent-installer-csr-approver-rhel8@sha256:cf816b940b2a618a437fc17a8f126cf10052abae3c4d6d2d14fc191d3cba8bf6_arm64" + }, + "product_reference": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:cf816b940b2a618a437fc17a8f126cf10052abae3c4d6d2d14fc191d3cba8bf6_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:1c0b9eff1f835ecdd4e6e59c46527f2723f78267c54a6a0b079f01438dbeb986_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-agent-installer-node-agent-rhel8@sha256:1c0b9eff1f835ecdd4e6e59c46527f2723f78267c54a6a0b079f01438dbeb986_amd64" + }, + "product_reference": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:1c0b9eff1f835ecdd4e6e59c46527f2723f78267c54a6a0b079f01438dbeb986_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:6970a9e9c14ea8fd45095fa28ec3c9929c310e05710d502785a209318a22a9a6_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-agent-installer-node-agent-rhel8@sha256:6970a9e9c14ea8fd45095fa28ec3c9929c310e05710d502785a209318a22a9a6_ppc64le" + }, + "product_reference": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:6970a9e9c14ea8fd45095fa28ec3c9929c310e05710d502785a209318a22a9a6_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:9157b840c6fa43eefeb9dbe7936a9716478536d4a7e29c9d06ed3c10b20a843a_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-agent-installer-node-agent-rhel8@sha256:9157b840c6fa43eefeb9dbe7936a9716478536d4a7e29c9d06ed3c10b20a843a_s390x" + }, + "product_reference": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:9157b840c6fa43eefeb9dbe7936a9716478536d4a7e29c9d06ed3c10b20a843a_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:fbdbfe2bdccab0e8d9a616b295ec735ace270aaf409a2833db2a53e10dcca3a7_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-agent-installer-node-agent-rhel8@sha256:fbdbfe2bdccab0e8d9a616b295ec735ace270aaf409a2833db2a53e10dcca3a7_arm64" + }, + "product_reference": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:fbdbfe2bdccab0e8d9a616b295ec735ace270aaf409a2833db2a53e10dcca3a7_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:39d1e8f6647f37e0db7c633a64ced4ee6ef382a7575efc0b2f1161181b2f5256_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-agent-installer-orchestrator-rhel8@sha256:39d1e8f6647f37e0db7c633a64ced4ee6ef382a7575efc0b2f1161181b2f5256_arm64" + }, + "product_reference": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:39d1e8f6647f37e0db7c633a64ced4ee6ef382a7575efc0b2f1161181b2f5256_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:4e3ecb8f00d51bb0a6f23f93c90902b8a8ebc288d0ddd77ec3c13010beb55f16_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-agent-installer-orchestrator-rhel8@sha256:4e3ecb8f00d51bb0a6f23f93c90902b8a8ebc288d0ddd77ec3c13010beb55f16_amd64" + }, + "product_reference": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:4e3ecb8f00d51bb0a6f23f93c90902b8a8ebc288d0ddd77ec3c13010beb55f16_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:7d4c8c20850cd2df6061a3097aa69afb9244bfd096c75c8c4133bd9921447558_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-agent-installer-orchestrator-rhel8@sha256:7d4c8c20850cd2df6061a3097aa69afb9244bfd096c75c8c4133bd9921447558_s390x" + }, + "product_reference": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:7d4c8c20850cd2df6061a3097aa69afb9244bfd096c75c8c4133bd9921447558_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:b767d7b76a42c053a7bd9e0e1843a9acd42168c8d7e13684cf271f409c9f98ec_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-agent-installer-orchestrator-rhel8@sha256:b767d7b76a42c053a7bd9e0e1843a9acd42168c8d7e13684cf271f409c9f98ec_ppc64le" + }, + "product_reference": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:b767d7b76a42c053a7bd9e0e1843a9acd42168c8d7e13684cf271f409c9f98ec_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:6ded2e469992886c4e03db988c8dce6189bcf9779a4a2f6cf0800eb99d5b3882_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:6ded2e469992886c4e03db988c8dce6189bcf9779a4a2f6cf0800eb99d5b3882_amd64" + }, + "product_reference": "openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:6ded2e469992886c4e03db988c8dce6189bcf9779a4a2f6cf0800eb99d5b3882_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:14e9d1873e0a5804203f3074599288b972f1579b7f6cc7f801db89bf8ba64c13_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:14e9d1873e0a5804203f3074599288b972f1579b7f6cc7f801db89bf8ba64c13_amd64" + }, + "product_reference": "openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:14e9d1873e0a5804203f3074599288b972f1579b7f6cc7f801db89bf8ba64c13_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:37e29bee03ab75f37128c0758368a720efd1db5002879da56479af9bc743723d_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:37e29bee03ab75f37128c0758368a720efd1db5002879da56479af9bc743723d_amd64" + }, + "product_reference": "openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:37e29bee03ab75f37128c0758368a720efd1db5002879da56479af9bc743723d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-alibaba-machine-controllers-rhel8@sha256:8907608ba0b7d81c62120ad980d65e24721f7dc647adee9ede686b9a70d405dd_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-alibaba-machine-controllers-rhel8@sha256:8907608ba0b7d81c62120ad980d65e24721f7dc647adee9ede686b9a70d405dd_amd64" + }, + "product_reference": "openshift4/ose-alibaba-machine-controllers-rhel8@sha256:8907608ba0b7d81c62120ad980d65e24721f7dc647adee9ede686b9a70d405dd_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:1361528309b6b4e35f8b65a823d81d873ff1e06767edf99208d8e9b9d12d59c5_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-apiserver-network-proxy-rhel8@sha256:1361528309b6b4e35f8b65a823d81d873ff1e06767edf99208d8e9b9d12d59c5_ppc64le" + }, + "product_reference": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:1361528309b6b4e35f8b65a823d81d873ff1e06767edf99208d8e9b9d12d59c5_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:54e58cd0696c85ed8eb475e616fdc25a62a82ada6f7a32713aa11a5d4eea5b97_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-apiserver-network-proxy-rhel8@sha256:54e58cd0696c85ed8eb475e616fdc25a62a82ada6f7a32713aa11a5d4eea5b97_arm64" + }, + "product_reference": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:54e58cd0696c85ed8eb475e616fdc25a62a82ada6f7a32713aa11a5d4eea5b97_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:871ca896efbb11faa656dd8f6f50dd52e31ed8941fc5720eb1821fed774a29bb_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-apiserver-network-proxy-rhel8@sha256:871ca896efbb11faa656dd8f6f50dd52e31ed8941fc5720eb1821fed774a29bb_s390x" + }, + "product_reference": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:871ca896efbb11faa656dd8f6f50dd52e31ed8941fc5720eb1821fed774a29bb_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:b5dccb56576641cd17f693419af111f3af8509d7ebe1042ae56ef57cf72f5e21_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-apiserver-network-proxy-rhel8@sha256:b5dccb56576641cd17f693419af111f3af8509d7ebe1042ae56ef57cf72f5e21_amd64" + }, + "product_reference": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:b5dccb56576641cd17f693419af111f3af8509d7ebe1042ae56ef57cf72f5e21_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:df486a6f5474816da74a11dd16f085f43b7c53cec92e0e401ada20e5176e7173_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:df486a6f5474816da74a11dd16f085f43b7c53cec92e0e401ada20e5176e7173_arm64" + }, + "product_reference": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:df486a6f5474816da74a11dd16f085f43b7c53cec92e0e401ada20e5176e7173_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:f2cbc92e8dd1225db67b70428cf7b28840866618222dab20b069003e1cf02319_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:f2cbc92e8dd1225db67b70428cf7b28840866618222dab20b069003e1cf02319_amd64" + }, + "product_reference": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:f2cbc92e8dd1225db67b70428cf7b28840866618222dab20b069003e1cf02319_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:8a87747aff91bb55cf63d17a39408244aa59fc962245ba73fa27d359a6236412_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:8a87747aff91bb55cf63d17a39408244aa59fc962245ba73fa27d359a6236412_amd64" + }, + "product_reference": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:8a87747aff91bb55cf63d17a39408244aa59fc962245ba73fa27d359a6236412_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:96e42f1d2bb0c9e9c5ef013df354d50a5204431cb09e0481eaad8c20a0f6644d_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:96e42f1d2bb0c9e9c5ef013df354d50a5204431cb09e0481eaad8c20a0f6644d_arm64" + }, + "product_reference": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:96e42f1d2bb0c9e9c5ef013df354d50a5204431cb09e0481eaad8c20a0f6644d_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:162f6586b3431cd0405e52c0bf3854d170188016ba049c8ce941a57f5522797f_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:162f6586b3431cd0405e52c0bf3854d170188016ba049c8ce941a57f5522797f_arm64" + }, + "product_reference": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:162f6586b3431cd0405e52c0bf3854d170188016ba049c8ce941a57f5522797f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:f3f76b2fc49367f6554cb0e2e99e1108c5b86eded0d7830fac6aca37520fbeeb_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:f3f76b2fc49367f6554cb0e2e99e1108c5b86eded0d7830fac6aca37520fbeeb_amd64" + }, + "product_reference": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:f3f76b2fc49367f6554cb0e2e99e1108c5b86eded0d7830fac6aca37520fbeeb_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:b67aaaef473bc939d688779fd377eb64b952944a7b224317e333ea5bcfc18fef_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:b67aaaef473bc939d688779fd377eb64b952944a7b224317e333ea5bcfc18fef_arm64" + }, + "product_reference": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:b67aaaef473bc939d688779fd377eb64b952944a7b224317e333ea5bcfc18fef_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:ee0ff51b2862a794cfcdf027cd82a9b11928a2aa0fa533290045e7ffe4a6edfc_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:ee0ff51b2862a794cfcdf027cd82a9b11928a2aa0fa533290045e7ffe4a6edfc_amd64" + }, + "product_reference": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:ee0ff51b2862a794cfcdf027cd82a9b11928a2aa0fa533290045e7ffe4a6edfc_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:240c123d6b4355e4f005b9cf1dee470a49f55b6edc716713e0bab5b7c83eab5e_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:240c123d6b4355e4f005b9cf1dee470a49f55b6edc716713e0bab5b7c83eab5e_amd64" + }, + "product_reference": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:240c123d6b4355e4f005b9cf1dee470a49f55b6edc716713e0bab5b7c83eab5e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:665523f7dd47276f05deff8b46a3623680fa53e576d2b9660183d9414fa4b4ed_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:665523f7dd47276f05deff8b46a3623680fa53e576d2b9660183d9414fa4b4ed_arm64" + }, + "product_reference": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:665523f7dd47276f05deff8b46a3623680fa53e576d2b9660183d9414fa4b4ed_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:48beb1180b3880600fe513d75d7730f39ddf31b47987bd1d1db9dbccd123a96d_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:48beb1180b3880600fe513d75d7730f39ddf31b47987bd1d1db9dbccd123a96d_amd64" + }, + "product_reference": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:48beb1180b3880600fe513d75d7730f39ddf31b47987bd1d1db9dbccd123a96d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:a737fa208e74f3ace18d469b17579413d8440806564997dfdb3224cda2f6b077_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:a737fa208e74f3ace18d469b17579413d8440806564997dfdb3224cda2f6b077_arm64" + }, + "product_reference": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:a737fa208e74f3ace18d469b17579413d8440806564997dfdb3224cda2f6b077_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:0b0fdcdf41d03cdd8e6a8d1f91a28aed6112cdade69f4625f0df5ca8d8db8032_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-azure-cloud-node-manager-rhel8@sha256:0b0fdcdf41d03cdd8e6a8d1f91a28aed6112cdade69f4625f0df5ca8d8db8032_amd64" + }, + "product_reference": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:0b0fdcdf41d03cdd8e6a8d1f91a28aed6112cdade69f4625f0df5ca8d8db8032_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:a4b03252f4870c68dd23f46e3fe96d33d5131fbe23c6bb096c738110dd7d5684_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-azure-cloud-node-manager-rhel8@sha256:a4b03252f4870c68dd23f46e3fe96d33d5131fbe23c6bb096c738110dd7d5684_arm64" + }, + "product_reference": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:a4b03252f4870c68dd23f46e3fe96d33d5131fbe23c6bb096c738110dd7d5684_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:50f3753e60c65e1107831e33931b7ab5f764a40f7c7e53098dd087872ba6c590_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:50f3753e60c65e1107831e33931b7ab5f764a40f7c7e53098dd087872ba6c590_arm64" + }, + "product_reference": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:50f3753e60c65e1107831e33931b7ab5f764a40f7c7e53098dd087872ba6c590_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:e5b0fb95336faf5912bbffbe388159e4b8c296068d9f10a7d2745306648df6a3_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:e5b0fb95336faf5912bbffbe388159e4b8c296068d9f10a7d2745306648df6a3_amd64" + }, + "product_reference": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:e5b0fb95336faf5912bbffbe388159e4b8c296068d9f10a7d2745306648df6a3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:15687de76f3d5b2364d51898b882e7b778dbb571ac623a75f0b5a9d027c8cd02_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:15687de76f3d5b2364d51898b882e7b778dbb571ac623a75f0b5a9d027c8cd02_arm64" + }, + "product_reference": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:15687de76f3d5b2364d51898b882e7b778dbb571ac623a75f0b5a9d027c8cd02_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:b050e9eed11c56150db9c50a71892223489561510bda8a9f9b6a72fa9a4b6724_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:b050e9eed11c56150db9c50a71892223489561510bda8a9f9b6a72fa9a4b6724_amd64" + }, + "product_reference": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:b050e9eed11c56150db9c50a71892223489561510bda8a9f9b6a72fa9a4b6724_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:73c2c087338aead3095cc0fccebdc7432e76cd066924b5a0cac274c2b1479cdc_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-azure-disk-csi-driver-rhel8@sha256:73c2c087338aead3095cc0fccebdc7432e76cd066924b5a0cac274c2b1479cdc_amd64" + }, + "product_reference": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:73c2c087338aead3095cc0fccebdc7432e76cd066924b5a0cac274c2b1479cdc_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:ecf8575605978484db9d4757928be2898fa75c5a128e8f5d847bf07e21e08bff_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-azure-disk-csi-driver-rhel8@sha256:ecf8575605978484db9d4757928be2898fa75c5a128e8f5d847bf07e21e08bff_arm64" + }, + "product_reference": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:ecf8575605978484db9d4757928be2898fa75c5a128e8f5d847bf07e21e08bff_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:5ccc50dfaa08d4decc4364e2c602a51e9adca59e2159b726aaaa27eef304a26e_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:5ccc50dfaa08d4decc4364e2c602a51e9adca59e2159b726aaaa27eef304a26e_amd64" + }, + "product_reference": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:5ccc50dfaa08d4decc4364e2c602a51e9adca59e2159b726aaaa27eef304a26e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:d8100a572fa9a27aa843bb7911f61333356b383bac17133613e6d97e712a510f_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:d8100a572fa9a27aa843bb7911f61333356b383bac17133613e6d97e712a510f_arm64" + }, + "product_reference": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:d8100a572fa9a27aa843bb7911f61333356b383bac17133613e6d97e712a510f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:7b54bedfbbadaac0c69eb0aa0150441b2d18ca2623be63b109ba5ac989bb4a36_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-azure-file-csi-driver-rhel8@sha256:7b54bedfbbadaac0c69eb0aa0150441b2d18ca2623be63b109ba5ac989bb4a36_arm64" + }, + "product_reference": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:7b54bedfbbadaac0c69eb0aa0150441b2d18ca2623be63b109ba5ac989bb4a36_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:feaac95d8ca7df82dfac97fd007724e7c7b789bcaba5a31caf3be8150b08d1c0_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-azure-file-csi-driver-rhel8@sha256:feaac95d8ca7df82dfac97fd007724e7c7b789bcaba5a31caf3be8150b08d1c0_amd64" + }, + "product_reference": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:feaac95d8ca7df82dfac97fd007724e7c7b789bcaba5a31caf3be8150b08d1c0_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:3addf5dae382b1ac2c7e8c535e9e67a19dbb4a91c8975f65de6ee5fe89b1bc65_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-baremetal-installer-rhel8@sha256:3addf5dae382b1ac2c7e8c535e9e67a19dbb4a91c8975f65de6ee5fe89b1bc65_ppc64le" + }, + "product_reference": "openshift4/ose-baremetal-installer-rhel8@sha256:3addf5dae382b1ac2c7e8c535e9e67a19dbb4a91c8975f65de6ee5fe89b1bc65_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:46efa303c777a8956d31db5515b4b5aa55b019c86e28e49c333edd869a50b3a3_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-baremetal-installer-rhel8@sha256:46efa303c777a8956d31db5515b4b5aa55b019c86e28e49c333edd869a50b3a3_arm64" + }, + "product_reference": "openshift4/ose-baremetal-installer-rhel8@sha256:46efa303c777a8956d31db5515b4b5aa55b019c86e28e49c333edd869a50b3a3_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:a3df169b4fe732b72ab3cce2ad03a60a2aa15d4757bac14a88551c0962ec7d6a_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-baremetal-installer-rhel8@sha256:a3df169b4fe732b72ab3cce2ad03a60a2aa15d4757bac14a88551c0962ec7d6a_amd64" + }, + "product_reference": "openshift4/ose-baremetal-installer-rhel8@sha256:a3df169b4fe732b72ab3cce2ad03a60a2aa15d4757bac14a88551c0962ec7d6a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:b66ad3f6a8d52d7ad1e29d3cc034b66398c5e84bd9b29a4da87e352196cd43c0_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-baremetal-installer-rhel8@sha256:b66ad3f6a8d52d7ad1e29d3cc034b66398c5e84bd9b29a4da87e352196cd43c0_s390x" + }, + "product_reference": "openshift4/ose-baremetal-installer-rhel8@sha256:b66ad3f6a8d52d7ad1e29d3cc034b66398c5e84bd9b29a4da87e352196cd43c0_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:0d72bb0a5c4f3c205c658376246b1a1a8b57233cd0ff3771e59d5995ea97ad3c_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-baremetal-machine-controllers@sha256:0d72bb0a5c4f3c205c658376246b1a1a8b57233cd0ff3771e59d5995ea97ad3c_arm64" + }, + "product_reference": "openshift4/ose-baremetal-machine-controllers@sha256:0d72bb0a5c4f3c205c658376246b1a1a8b57233cd0ff3771e59d5995ea97ad3c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:622bfb8dcf923c0c74f4955a53aa3cf9c93eea62b3fce1bfa3897cfef44201bc_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-baremetal-machine-controllers@sha256:622bfb8dcf923c0c74f4955a53aa3cf9c93eea62b3fce1bfa3897cfef44201bc_amd64" + }, + "product_reference": "openshift4/ose-baremetal-machine-controllers@sha256:622bfb8dcf923c0c74f4955a53aa3cf9c93eea62b3fce1bfa3897cfef44201bc_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:c7f636735291dee99e8ddc293c977f54b96bef8b8f172b828d94da64336b7af1_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-baremetal-machine-controllers@sha256:c7f636735291dee99e8ddc293c977f54b96bef8b8f172b828d94da64336b7af1_s390x" + }, + "product_reference": "openshift4/ose-baremetal-machine-controllers@sha256:c7f636735291dee99e8ddc293c977f54b96bef8b8f172b828d94da64336b7af1_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:d084b839165cc77bdb0a8f527c5955c76f4b8172b8c84967b220055d6dc004c3_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-baremetal-machine-controllers@sha256:d084b839165cc77bdb0a8f527c5955c76f4b8172b8c84967b220055d6dc004c3_ppc64le" + }, + "product_reference": "openshift4/ose-baremetal-machine-controllers@sha256:d084b839165cc77bdb0a8f527c5955c76f4b8172b8c84967b220055d6dc004c3_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:3b76ef57b2ead6815535a7afee1fb4ee60ce9299bb3bb9e8cd78a093dfd46abe_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-baremetal-rhel8-operator@sha256:3b76ef57b2ead6815535a7afee1fb4ee60ce9299bb3bb9e8cd78a093dfd46abe_ppc64le" + }, + "product_reference": "openshift4/ose-baremetal-rhel8-operator@sha256:3b76ef57b2ead6815535a7afee1fb4ee60ce9299bb3bb9e8cd78a093dfd46abe_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:4591c42cb99e183672fce17f78abce878a087a77f7a66ae3ccbe26a1423d9cb0_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-baremetal-rhel8-operator@sha256:4591c42cb99e183672fce17f78abce878a087a77f7a66ae3ccbe26a1423d9cb0_arm64" + }, + "product_reference": "openshift4/ose-baremetal-rhel8-operator@sha256:4591c42cb99e183672fce17f78abce878a087a77f7a66ae3ccbe26a1423d9cb0_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:d246f57bf33f4735857c4123e0c7da2fbf936ee154dcdf365238c8e0264372fd_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-baremetal-rhel8-operator@sha256:d246f57bf33f4735857c4123e0c7da2fbf936ee154dcdf365238c8e0264372fd_amd64" + }, + "product_reference": "openshift4/ose-baremetal-rhel8-operator@sha256:d246f57bf33f4735857c4123e0c7da2fbf936ee154dcdf365238c8e0264372fd_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:da8e61f66027ef8e4df4eeac7498bda37d5d287bec5cb0aeefca07b93bfeddd4_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-baremetal-rhel8-operator@sha256:da8e61f66027ef8e4df4eeac7498bda37d5d287bec5cb0aeefca07b93bfeddd4_s390x" + }, + "product_reference": "openshift4/ose-baremetal-rhel8-operator@sha256:da8e61f66027ef8e4df4eeac7498bda37d5d287bec5cb0aeefca07b93bfeddd4_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:5d5d87517a35e917b70febf53dbb4ee3a0e8ada7c1e5343da763124f05be8fb2_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-baremetal-runtimecfg-rhel8@sha256:5d5d87517a35e917b70febf53dbb4ee3a0e8ada7c1e5343da763124f05be8fb2_arm64" + }, + "product_reference": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:5d5d87517a35e917b70febf53dbb4ee3a0e8ada7c1e5343da763124f05be8fb2_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:6cc70343312731cf9629ec5dd5828f51c08f2d2349322ee982f838783315b3f0_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-baremetal-runtimecfg-rhel8@sha256:6cc70343312731cf9629ec5dd5828f51c08f2d2349322ee982f838783315b3f0_s390x" + }, + "product_reference": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:6cc70343312731cf9629ec5dd5828f51c08f2d2349322ee982f838783315b3f0_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:e0f2585d21971ef1243e9e132d489a1c2b3b966db288aeb814f56146445f49e1_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-baremetal-runtimecfg-rhel8@sha256:e0f2585d21971ef1243e9e132d489a1c2b3b966db288aeb814f56146445f49e1_amd64" + }, + "product_reference": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:e0f2585d21971ef1243e9e132d489a1c2b3b966db288aeb814f56146445f49e1_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:f29d64826eda342be56a52b015db525c81508f169788116f6557261ec7f5c3f2_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-baremetal-runtimecfg-rhel8@sha256:f29d64826eda342be56a52b015db525c81508f169788116f6557261ec7f5c3f2_ppc64le" + }, + "product_reference": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:f29d64826eda342be56a52b015db525c81508f169788116f6557261ec7f5c3f2_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli-artifacts@sha256:225114bc1ecfebd3f0f7b8b6d1504dc567ff6c2c30ba641ba51931214722c9bc_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cli-artifacts@sha256:225114bc1ecfebd3f0f7b8b6d1504dc567ff6c2c30ba641ba51931214722c9bc_arm64" + }, + "product_reference": "openshift4/ose-cli-artifacts@sha256:225114bc1ecfebd3f0f7b8b6d1504dc567ff6c2c30ba641ba51931214722c9bc_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli-artifacts@sha256:5ce88becef9c8cb4f93f38f328917aa4c3da84a519b85f3caba0fb068eba811b_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cli-artifacts@sha256:5ce88becef9c8cb4f93f38f328917aa4c3da84a519b85f3caba0fb068eba811b_amd64" + }, + "product_reference": "openshift4/ose-cli-artifacts@sha256:5ce88becef9c8cb4f93f38f328917aa4c3da84a519b85f3caba0fb068eba811b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli-artifacts@sha256:808d087477654c817f3811a4bb8f2fcaee1d325e132d3ca1b68cae5e1b13f9f2_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cli-artifacts@sha256:808d087477654c817f3811a4bb8f2fcaee1d325e132d3ca1b68cae5e1b13f9f2_s390x" + }, + "product_reference": "openshift4/ose-cli-artifacts@sha256:808d087477654c817f3811a4bb8f2fcaee1d325e132d3ca1b68cae5e1b13f9f2_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli-artifacts@sha256:fe8bb0ec1ade53949459f38e2e9715b4664d385ae45b881382ad2b948d7e7932_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cli-artifacts@sha256:fe8bb0ec1ade53949459f38e2e9715b4664d385ae45b881382ad2b948d7e7932_ppc64le" + }, + "product_reference": "openshift4/ose-cli-artifacts@sha256:fe8bb0ec1ade53949459f38e2e9715b4664d385ae45b881382ad2b948d7e7932_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli@sha256:43113eab474bcc822a7f0c56559d69ebd78e4a1a4333aa80c39fc32cb779d83e_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cli@sha256:43113eab474bcc822a7f0c56559d69ebd78e4a1a4333aa80c39fc32cb779d83e_ppc64le" + }, + "product_reference": "openshift4/ose-cli@sha256:43113eab474bcc822a7f0c56559d69ebd78e4a1a4333aa80c39fc32cb779d83e_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli@sha256:6f4a704690fc58d675b68d0496fa21e4374591caddf52d42338bd8bbe0c4b21f_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cli@sha256:6f4a704690fc58d675b68d0496fa21e4374591caddf52d42338bd8bbe0c4b21f_s390x" + }, + "product_reference": "openshift4/ose-cli@sha256:6f4a704690fc58d675b68d0496fa21e4374591caddf52d42338bd8bbe0c4b21f_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli@sha256:8b0f375da38dac07bc3ee571cb17a67f96524c96abc842de24ace111cfa9ac6c_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cli@sha256:8b0f375da38dac07bc3ee571cb17a67f96524c96abc842de24ace111cfa9ac6c_amd64" + }, + "product_reference": "openshift4/ose-cli@sha256:8b0f375da38dac07bc3ee571cb17a67f96524c96abc842de24ace111cfa9ac6c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli@sha256:97367c9aec06d29ac7963a66c19e69f3c38b94cc7f9c4bb62ea6f3e9b76d614d_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cli@sha256:97367c9aec06d29ac7963a66c19e69f3c38b94cc7f9c4bb62ea6f3e9b76d614d_arm64" + }, + "product_reference": "openshift4/ose-cli@sha256:97367c9aec06d29ac7963a66c19e69f3c38b94cc7f9c4bb62ea6f3e9b76d614d_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-credential-operator@sha256:3f8e06d9e7a309c81e8888698db8cb0188b447fd4014fb8a7c88db0501299598_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cloud-credential-operator@sha256:3f8e06d9e7a309c81e8888698db8cb0188b447fd4014fb8a7c88db0501299598_amd64" + }, + "product_reference": "openshift4/ose-cloud-credential-operator@sha256:3f8e06d9e7a309c81e8888698db8cb0188b447fd4014fb8a7c88db0501299598_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-credential-operator@sha256:6c71c6c4ab31989ec858ee8cc788d7de4502d621b9d947a3ecbfebfe147b79a2_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cloud-credential-operator@sha256:6c71c6c4ab31989ec858ee8cc788d7de4502d621b9d947a3ecbfebfe147b79a2_arm64" + }, + "product_reference": "openshift4/ose-cloud-credential-operator@sha256:6c71c6c4ab31989ec858ee8cc788d7de4502d621b9d947a3ecbfebfe147b79a2_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-credential-operator@sha256:cebdd612a4255035d4736359ae721ec2a62979f6016a2231b223be375a0626ea_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cloud-credential-operator@sha256:cebdd612a4255035d4736359ae721ec2a62979f6016a2231b223be375a0626ea_s390x" + }, + "product_reference": "openshift4/ose-cloud-credential-operator@sha256:cebdd612a4255035d4736359ae721ec2a62979f6016a2231b223be375a0626ea_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-credential-operator@sha256:f9584be302b8f169ff8ecf3c4a3e2262254377a418c5f9420858b8e04032861e_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cloud-credential-operator@sha256:f9584be302b8f169ff8ecf3c4a3e2262254377a418c5f9420858b8e04032861e_ppc64le" + }, + "product_reference": "openshift4/ose-cloud-credential-operator@sha256:f9584be302b8f169ff8ecf3c4a3e2262254377a418c5f9420858b8e04032861e_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:248c2f5a75955704574852201fda7f6ee260426454f92a98452188dfe2482fed_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-api-rhel8@sha256:248c2f5a75955704574852201fda7f6ee260426454f92a98452188dfe2482fed_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-api-rhel8@sha256:248c2f5a75955704574852201fda7f6ee260426454f92a98452188dfe2482fed_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:29d4d6bcd23266b0aa8005755e1d80f80bd0583c636be314ac1d34221bf93901_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-api-rhel8@sha256:29d4d6bcd23266b0aa8005755e1d80f80bd0583c636be314ac1d34221bf93901_amd64" + }, + "product_reference": "openshift4/ose-cluster-api-rhel8@sha256:29d4d6bcd23266b0aa8005755e1d80f80bd0583c636be314ac1d34221bf93901_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:493ea732784a8e8b536d489d18dc2b6c09993e388a8038e674ebc56fab8001a3_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-api-rhel8@sha256:493ea732784a8e8b536d489d18dc2b6c09993e388a8038e674ebc56fab8001a3_s390x" + }, + "product_reference": "openshift4/ose-cluster-api-rhel8@sha256:493ea732784a8e8b536d489d18dc2b6c09993e388a8038e674ebc56fab8001a3_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:51dac3be87753581055f8ec8e74d36322594b7705e9a447d51fe701b17065129_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-api-rhel8@sha256:51dac3be87753581055f8ec8e74d36322594b7705e9a447d51fe701b17065129_arm64" + }, + "product_reference": "openshift4/ose-cluster-api-rhel8@sha256:51dac3be87753581055f8ec8e74d36322594b7705e9a447d51fe701b17065129_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:5d2965d5f7ecf84c2ab112fbb8daf6c439a80757818c4a5bf86b6abdb2c862ba_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-authentication-operator@sha256:5d2965d5f7ecf84c2ab112fbb8daf6c439a80757818c4a5bf86b6abdb2c862ba_amd64" + }, + "product_reference": "openshift4/ose-cluster-authentication-operator@sha256:5d2965d5f7ecf84c2ab112fbb8daf6c439a80757818c4a5bf86b6abdb2c862ba_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:7185e6ede555e1c034681eb34ed1d81af53085f39abe9a5c83330c57730ea81f_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-authentication-operator@sha256:7185e6ede555e1c034681eb34ed1d81af53085f39abe9a5c83330c57730ea81f_arm64" + }, + "product_reference": "openshift4/ose-cluster-authentication-operator@sha256:7185e6ede555e1c034681eb34ed1d81af53085f39abe9a5c83330c57730ea81f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:a0be97d1a90948718f6106e6cfd35f06d290617e87bb97cf08701766e4a0c6b9_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-authentication-operator@sha256:a0be97d1a90948718f6106e6cfd35f06d290617e87bb97cf08701766e4a0c6b9_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-authentication-operator@sha256:a0be97d1a90948718f6106e6cfd35f06d290617e87bb97cf08701766e4a0c6b9_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:a43488ea65e07cc000148f7f79ad92fbddec6e8f0fa05c9e343543a8dde6e96d_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-authentication-operator@sha256:a43488ea65e07cc000148f7f79ad92fbddec6e8f0fa05c9e343543a8dde6e96d_s390x" + }, + "product_reference": "openshift4/ose-cluster-authentication-operator@sha256:a43488ea65e07cc000148f7f79ad92fbddec6e8f0fa05c9e343543a8dde6e96d_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:32715d0b266f83654aca787705c1600b479dba2e21565219b176d3b62e5a6f39_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-autoscaler-operator@sha256:32715d0b266f83654aca787705c1600b479dba2e21565219b176d3b62e5a6f39_s390x" + }, + "product_reference": "openshift4/ose-cluster-autoscaler-operator@sha256:32715d0b266f83654aca787705c1600b479dba2e21565219b176d3b62e5a6f39_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:9175273696b0b1b3b1f4400fa37d1de39db9872f4f21e83e2962d9531d50cc43_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-autoscaler-operator@sha256:9175273696b0b1b3b1f4400fa37d1de39db9872f4f21e83e2962d9531d50cc43_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-autoscaler-operator@sha256:9175273696b0b1b3b1f4400fa37d1de39db9872f4f21e83e2962d9531d50cc43_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:aec25d64232c5c66e28cbb24dacb0d5238cd068890daa7b4bc47b3a51700cb5c_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-autoscaler-operator@sha256:aec25d64232c5c66e28cbb24dacb0d5238cd068890daa7b4bc47b3a51700cb5c_arm64" + }, + "product_reference": "openshift4/ose-cluster-autoscaler-operator@sha256:aec25d64232c5c66e28cbb24dacb0d5238cd068890daa7b4bc47b3a51700cb5c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:e4e67534d645d58efaafb2d8e2d7700eebbcb5cf59868207a59772c96477e924_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-autoscaler-operator@sha256:e4e67534d645d58efaafb2d8e2d7700eebbcb5cf59868207a59772c96477e924_amd64" + }, + "product_reference": "openshift4/ose-cluster-autoscaler-operator@sha256:e4e67534d645d58efaafb2d8e2d7700eebbcb5cf59868207a59772c96477e924_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler@sha256:671501a957e5c80d1f36e7683d25c995f3c4df566dadd5d9d4e8dce969f6a419_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-autoscaler@sha256:671501a957e5c80d1f36e7683d25c995f3c4df566dadd5d9d4e8dce969f6a419_arm64" + }, + "product_reference": "openshift4/ose-cluster-autoscaler@sha256:671501a957e5c80d1f36e7683d25c995f3c4df566dadd5d9d4e8dce969f6a419_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler@sha256:97ba72dadbb7d3aa990673b4b07ce5ab3360fab362b53c7e08c58c70fdba7b68_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-autoscaler@sha256:97ba72dadbb7d3aa990673b4b07ce5ab3360fab362b53c7e08c58c70fdba7b68_s390x" + }, + "product_reference": "openshift4/ose-cluster-autoscaler@sha256:97ba72dadbb7d3aa990673b4b07ce5ab3360fab362b53c7e08c58c70fdba7b68_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler@sha256:c1278df4c729ba55dcf5025273c88dd7bf3b102e800628c455179b058397b62d_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-autoscaler@sha256:c1278df4c729ba55dcf5025273c88dd7bf3b102e800628c455179b058397b62d_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-autoscaler@sha256:c1278df4c729ba55dcf5025273c88dd7bf3b102e800628c455179b058397b62d_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler@sha256:cd7271e0ac4bb38373a5f38e40517eb1acb88943520f48ef90ca23fd4e2780c7_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-autoscaler@sha256:cd7271e0ac4bb38373a5f38e40517eb1acb88943520f48ef90ca23fd4e2780c7_amd64" + }, + "product_reference": "openshift4/ose-cluster-autoscaler@sha256:cd7271e0ac4bb38373a5f38e40517eb1acb88943520f48ef90ca23fd4e2780c7_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:44dc6b915f3877babf491500a695d5825595602e482516c2001ce2736dec83a9_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-baremetal-operator-rhel8@sha256:44dc6b915f3877babf491500a695d5825595602e482516c2001ce2736dec83a9_amd64" + }, + "product_reference": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:44dc6b915f3877babf491500a695d5825595602e482516c2001ce2736dec83a9_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:8f814ab792211561e5428ee9ed1a6d549dcd11936318a02dfa5de44c3fcde7e5_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-baremetal-operator-rhel8@sha256:8f814ab792211561e5428ee9ed1a6d549dcd11936318a02dfa5de44c3fcde7e5_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:8f814ab792211561e5428ee9ed1a6d549dcd11936318a02dfa5de44c3fcde7e5_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b6156485ec624c96af9f8b79c844a022bb4b0692bba2f83e560fb76cf3983a30_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b6156485ec624c96af9f8b79c844a022bb4b0692bba2f83e560fb76cf3983a30_s390x" + }, + "product_reference": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:b6156485ec624c96af9f8b79c844a022bb4b0692bba2f83e560fb76cf3983a30_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:cf2cab12a02bd093f978627195e53f87a0e49949441be8448761963b3233ef54_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-baremetal-operator-rhel8@sha256:cf2cab12a02bd093f978627195e53f87a0e49949441be8448761963b3233ef54_arm64" + }, + "product_reference": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:cf2cab12a02bd093f978627195e53f87a0e49949441be8448761963b3233ef54_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-bootstrap@sha256:45418e3b7db480d018718cbb86bab6bd038dc5018b326c67606db7f02689a71d_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-bootstrap@sha256:45418e3b7db480d018718cbb86bab6bd038dc5018b326c67606db7f02689a71d_s390x" + }, + "product_reference": "openshift4/ose-cluster-bootstrap@sha256:45418e3b7db480d018718cbb86bab6bd038dc5018b326c67606db7f02689a71d_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-bootstrap@sha256:86d2daee5d1bfc6600b18c609d8ad4f6b6e28162d52f0b5553955243c390597d_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-bootstrap@sha256:86d2daee5d1bfc6600b18c609d8ad4f6b6e28162d52f0b5553955243c390597d_arm64" + }, + "product_reference": "openshift4/ose-cluster-bootstrap@sha256:86d2daee5d1bfc6600b18c609d8ad4f6b6e28162d52f0b5553955243c390597d_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-bootstrap@sha256:cc2ce011e39fb054bcdbe8b9dbb4e3eda5a0d6b9db038f97fea9c0458b7f5018_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-bootstrap@sha256:cc2ce011e39fb054bcdbe8b9dbb4e3eda5a0d6b9db038f97fea9c0458b7f5018_amd64" + }, + "product_reference": "openshift4/ose-cluster-bootstrap@sha256:cc2ce011e39fb054bcdbe8b9dbb4e3eda5a0d6b9db038f97fea9c0458b7f5018_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-bootstrap@sha256:f82367ed2da650a2fdb588361bb95a46fc1c3fcdec2c8034f04d72e4e509bd71_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-bootstrap@sha256:f82367ed2da650a2fdb588361bb95a46fc1c3fcdec2c8034f04d72e4e509bd71_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-bootstrap@sha256:f82367ed2da650a2fdb588361bb95a46fc1c3fcdec2c8034f04d72e4e509bd71_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:3e00ce36373a3a7f196292c20b29381a90f06f0ffdf4237666e42842282e5121_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-capi-operator-container-rhel8@sha256:3e00ce36373a3a7f196292c20b29381a90f06f0ffdf4237666e42842282e5121_arm64" + }, + "product_reference": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:3e00ce36373a3a7f196292c20b29381a90f06f0ffdf4237666e42842282e5121_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:8127f7872e14051ab13f4c8ed8895bcd798083a15905f37014d8c8feae28c8c9_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-capi-operator-container-rhel8@sha256:8127f7872e14051ab13f4c8ed8895bcd798083a15905f37014d8c8feae28c8c9_amd64" + }, + "product_reference": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:8127f7872e14051ab13f4c8ed8895bcd798083a15905f37014d8c8feae28c8c9_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:93c2b63bf4252ee924d85d6b5cea1c80c8eddab51fbacfcfd261458f9082114c_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-capi-operator-container-rhel8@sha256:93c2b63bf4252ee924d85d6b5cea1c80c8eddab51fbacfcfd261458f9082114c_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:93c2b63bf4252ee924d85d6b5cea1c80c8eddab51fbacfcfd261458f9082114c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:f808f22660249946c8ee1f2061cdb8f41374061fa75cffcce700c3548f4c56e8_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-capi-operator-container-rhel8@sha256:f808f22660249946c8ee1f2061cdb8f41374061fa75cffcce700c3548f4c56e8_s390x" + }, + "product_reference": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:f808f22660249946c8ee1f2061cdb8f41374061fa75cffcce700c3548f4c56e8_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:3e00ce36373a3a7f196292c20b29381a90f06f0ffdf4237666e42842282e5121_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-capi-rhel8-operator@sha256:3e00ce36373a3a7f196292c20b29381a90f06f0ffdf4237666e42842282e5121_arm64" + }, + "product_reference": "openshift4/ose-cluster-capi-rhel8-operator@sha256:3e00ce36373a3a7f196292c20b29381a90f06f0ffdf4237666e42842282e5121_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:8127f7872e14051ab13f4c8ed8895bcd798083a15905f37014d8c8feae28c8c9_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-capi-rhel8-operator@sha256:8127f7872e14051ab13f4c8ed8895bcd798083a15905f37014d8c8feae28c8c9_amd64" + }, + "product_reference": "openshift4/ose-cluster-capi-rhel8-operator@sha256:8127f7872e14051ab13f4c8ed8895bcd798083a15905f37014d8c8feae28c8c9_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:93c2b63bf4252ee924d85d6b5cea1c80c8eddab51fbacfcfd261458f9082114c_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-capi-rhel8-operator@sha256:93c2b63bf4252ee924d85d6b5cea1c80c8eddab51fbacfcfd261458f9082114c_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-capi-rhel8-operator@sha256:93c2b63bf4252ee924d85d6b5cea1c80c8eddab51fbacfcfd261458f9082114c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:f808f22660249946c8ee1f2061cdb8f41374061fa75cffcce700c3548f4c56e8_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-capi-rhel8-operator@sha256:f808f22660249946c8ee1f2061cdb8f41374061fa75cffcce700c3548f4c56e8_s390x" + }, + "product_reference": "openshift4/ose-cluster-capi-rhel8-operator@sha256:f808f22660249946c8ee1f2061cdb8f41374061fa75cffcce700c3548f4c56e8_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:175dddb8051b56d3650a65cc6fe48982aecfbc0c4f8c5b6458c219466ce4b2ef_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:175dddb8051b56d3650a65cc6fe48982aecfbc0c4f8c5b6458c219466ce4b2ef_s390x" + }, + "product_reference": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:175dddb8051b56d3650a65cc6fe48982aecfbc0c4f8c5b6458c219466ce4b2ef_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:49a62784773a65af9ea0456c3314634c9915389ba0917d4a7295d537a10bc046_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:49a62784773a65af9ea0456c3314634c9915389ba0917d4a7295d537a10bc046_amd64" + }, + "product_reference": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:49a62784773a65af9ea0456c3314634c9915389ba0917d4a7295d537a10bc046_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:a2649f5b3d8be53559ada9a81d411651f4da8b170b44edb5c49ece87c987e64e_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:a2649f5b3d8be53559ada9a81d411651f4da8b170b44edb5c49ece87c987e64e_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:a2649f5b3d8be53559ada9a81d411651f4da8b170b44edb5c49ece87c987e64e_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:d203c155bfb40e81e5a61127def21901f8e2f4c5e627e7e6cecc543e5fe1eaf2_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:d203c155bfb40e81e5a61127def21901f8e2f4c5e627e7e6cecc543e5fe1eaf2_arm64" + }, + "product_reference": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:d203c155bfb40e81e5a61127def21901f8e2f4c5e627e7e6cecc543e5fe1eaf2_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-config-operator@sha256:5484489869aa0cf06c2e19ba99619618517f12dce16969a580adde8ec269207f_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-config-operator@sha256:5484489869aa0cf06c2e19ba99619618517f12dce16969a580adde8ec269207f_s390x" + }, + "product_reference": "openshift4/ose-cluster-config-operator@sha256:5484489869aa0cf06c2e19ba99619618517f12dce16969a580adde8ec269207f_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-config-operator@sha256:aa8a4fac40be091c0e3c347cfc72e97d55e0b40fc660950115fe90f4e6dccc6c_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-config-operator@sha256:aa8a4fac40be091c0e3c347cfc72e97d55e0b40fc660950115fe90f4e6dccc6c_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-config-operator@sha256:aa8a4fac40be091c0e3c347cfc72e97d55e0b40fc660950115fe90f4e6dccc6c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-config-operator@sha256:b6860c083abc57f2cd34fc72a1a664b280d810fbc0dc607735fbe0423952248e_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-config-operator@sha256:b6860c083abc57f2cd34fc72a1a664b280d810fbc0dc607735fbe0423952248e_amd64" + }, + "product_reference": "openshift4/ose-cluster-config-operator@sha256:b6860c083abc57f2cd34fc72a1a664b280d810fbc0dc607735fbe0423952248e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-config-operator@sha256:e379782ce2a9eb55180bb50ca43701cc359a53be5068ceaf4e27d52736cc8006_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-config-operator@sha256:e379782ce2a9eb55180bb50ca43701cc359a53be5068ceaf4e27d52736cc8006_arm64" + }, + "product_reference": "openshift4/ose-cluster-config-operator@sha256:e379782ce2a9eb55180bb50ca43701cc359a53be5068ceaf4e27d52736cc8006_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:4925ff2abbf9b1604820ee74cb3cccbec956b026e50ddb8737471e2dd7e4c0b1_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:4925ff2abbf9b1604820ee74cb3cccbec956b026e50ddb8737471e2dd7e4c0b1_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:4925ff2abbf9b1604820ee74cb3cccbec956b026e50ddb8737471e2dd7e4c0b1_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:587b202b0230a3922af9a0eceb4e29b0d311dcd98308ec7dc9825fb4d506209e_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:587b202b0230a3922af9a0eceb4e29b0d311dcd98308ec7dc9825fb4d506209e_arm64" + }, + "product_reference": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:587b202b0230a3922af9a0eceb4e29b0d311dcd98308ec7dc9825fb4d506209e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:63495e807c7e9daed59813ef93a8e9ed12581f07c038804687275f266442f7a7_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:63495e807c7e9daed59813ef93a8e9ed12581f07c038804687275f266442f7a7_s390x" + }, + "product_reference": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:63495e807c7e9daed59813ef93a8e9ed12581f07c038804687275f266442f7a7_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:c1ee427ccfee1cd7972be723c3ec48011b1023d7d4c19f14d23adca6598354f9_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:c1ee427ccfee1cd7972be723c3ec48011b1023d7d4c19f14d23adca6598354f9_amd64" + }, + "product_reference": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:c1ee427ccfee1cd7972be723c3ec48011b1023d7d4c19f14d23adca6598354f9_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:2ce4df12392de8d977b8a82de120be0829bd3673df1215bc61e173cc127f9c3a_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:2ce4df12392de8d977b8a82de120be0829bd3673df1215bc61e173cc127f9c3a_amd64" + }, + "product_reference": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:2ce4df12392de8d977b8a82de120be0829bd3673df1215bc61e173cc127f9c3a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:6fc5d8db05cfddf32043d2d98bba1c1aab5e28dcd62595ffb340159742dca116_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:6fc5d8db05cfddf32043d2d98bba1c1aab5e28dcd62595ffb340159742dca116_arm64" + }, + "product_reference": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:6fc5d8db05cfddf32043d2d98bba1c1aab5e28dcd62595ffb340159742dca116_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:8993aeb8f7ab396bebc1479411fc69e8e1635f743ce421dcfcd59ffc719113c3_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:8993aeb8f7ab396bebc1479411fc69e8e1635f743ce421dcfcd59ffc719113c3_s390x" + }, + "product_reference": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:8993aeb8f7ab396bebc1479411fc69e8e1635f743ce421dcfcd59ffc719113c3_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:e9a73c457440ee3d5a096778ba7bbed5a89a64480dfededd69de46d65043c622_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:e9a73c457440ee3d5a096778ba7bbed5a89a64480dfededd69de46d65043c622_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:e9a73c457440ee3d5a096778ba7bbed5a89a64480dfededd69de46d65043c622_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-dns-operator@sha256:3176495701cf56e0019cb5bbf3ad73f995058851311d46d18defe67cdbe9cab9_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-dns-operator@sha256:3176495701cf56e0019cb5bbf3ad73f995058851311d46d18defe67cdbe9cab9_arm64" + }, + "product_reference": "openshift4/ose-cluster-dns-operator@sha256:3176495701cf56e0019cb5bbf3ad73f995058851311d46d18defe67cdbe9cab9_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-dns-operator@sha256:5b1bce1ed7f22901621190f77cb1f743fb962a0e696fbf775faf360975c1ba27_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-dns-operator@sha256:5b1bce1ed7f22901621190f77cb1f743fb962a0e696fbf775faf360975c1ba27_amd64" + }, + "product_reference": "openshift4/ose-cluster-dns-operator@sha256:5b1bce1ed7f22901621190f77cb1f743fb962a0e696fbf775faf360975c1ba27_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-dns-operator@sha256:738e522a858d1f002eac70bb1cdb18f887f59509d07a6769acd784dcc7b998d6_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-dns-operator@sha256:738e522a858d1f002eac70bb1cdb18f887f59509d07a6769acd784dcc7b998d6_s390x" + }, + "product_reference": "openshift4/ose-cluster-dns-operator@sha256:738e522a858d1f002eac70bb1cdb18f887f59509d07a6769acd784dcc7b998d6_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-dns-operator@sha256:a93be3227aace29f3cd70edd496032d7c3910802e5af6139a70d0223c4f72f22_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-dns-operator@sha256:a93be3227aace29f3cd70edd496032d7c3910802e5af6139a70d0223c4f72f22_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-dns-operator@sha256:a93be3227aace29f3cd70edd496032d7c3910802e5af6139a70d0223c4f72f22_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:37a874b2f606872fa1394032e3a51be17ee65b373e44aef29a7291f732fff2a3_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-etcd-rhel8-operator@sha256:37a874b2f606872fa1394032e3a51be17ee65b373e44aef29a7291f732fff2a3_amd64" + }, + "product_reference": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:37a874b2f606872fa1394032e3a51be17ee65b373e44aef29a7291f732fff2a3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:667de1afbe71fac08a64d7ba1ac5769b604ce6ef8044e763bd4bf9e33b9854ad_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-etcd-rhel8-operator@sha256:667de1afbe71fac08a64d7ba1ac5769b604ce6ef8044e763bd4bf9e33b9854ad_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:667de1afbe71fac08a64d7ba1ac5769b604ce6ef8044e763bd4bf9e33b9854ad_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:b5c90fc1f90cbe6395910e55119f15a13b7f306897a45e654badacc2919735ff_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-etcd-rhel8-operator@sha256:b5c90fc1f90cbe6395910e55119f15a13b7f306897a45e654badacc2919735ff_arm64" + }, + "product_reference": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:b5c90fc1f90cbe6395910e55119f15a13b7f306897a45e654badacc2919735ff_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:e7678cfaabe7a4dcc24cd4446f86b47e03b99b6ec492a5f268f3336009ad36a2_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-etcd-rhel8-operator@sha256:e7678cfaabe7a4dcc24cd4446f86b47e03b99b6ec492a5f268f3336009ad36a2_s390x" + }, + "product_reference": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:e7678cfaabe7a4dcc24cd4446f86b47e03b99b6ec492a5f268f3336009ad36a2_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:211a04041570c2fe8a689ebc67199c7a62db65adf09790307de414b66a52ec43_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-image-registry-operator@sha256:211a04041570c2fe8a689ebc67199c7a62db65adf09790307de414b66a52ec43_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-image-registry-operator@sha256:211a04041570c2fe8a689ebc67199c7a62db65adf09790307de414b66a52ec43_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:9453c58ec3eb2eb11af896ce6abdfb7e1ca25ce8a89c309804f7f2cc6f6cec56_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-image-registry-operator@sha256:9453c58ec3eb2eb11af896ce6abdfb7e1ca25ce8a89c309804f7f2cc6f6cec56_amd64" + }, + "product_reference": "openshift4/ose-cluster-image-registry-operator@sha256:9453c58ec3eb2eb11af896ce6abdfb7e1ca25ce8a89c309804f7f2cc6f6cec56_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:98ae59335b38b61564c783ed67fe918fe062e54c02f1a869b947a88815475c29_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-image-registry-operator@sha256:98ae59335b38b61564c783ed67fe918fe062e54c02f1a869b947a88815475c29_s390x" + }, + "product_reference": "openshift4/ose-cluster-image-registry-operator@sha256:98ae59335b38b61564c783ed67fe918fe062e54c02f1a869b947a88815475c29_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:f27a5f014318c884ac9aa75f8d850327c059575863b2ece6b85036df2218d231_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-image-registry-operator@sha256:f27a5f014318c884ac9aa75f8d850327c059575863b2ece6b85036df2218d231_arm64" + }, + "product_reference": "openshift4/ose-cluster-image-registry-operator@sha256:f27a5f014318c884ac9aa75f8d850327c059575863b2ece6b85036df2218d231_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:766a26e691376cc10f662bfc96119e802601c235409e292eb47fca106a98f7b6_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-ingress-operator@sha256:766a26e691376cc10f662bfc96119e802601c235409e292eb47fca106a98f7b6_s390x" + }, + "product_reference": "openshift4/ose-cluster-ingress-operator@sha256:766a26e691376cc10f662bfc96119e802601c235409e292eb47fca106a98f7b6_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:d5f3324ac388f2411825811be33082bc56593b2f59c19eee360ee8d1952bca47_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-ingress-operator@sha256:d5f3324ac388f2411825811be33082bc56593b2f59c19eee360ee8d1952bca47_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-ingress-operator@sha256:d5f3324ac388f2411825811be33082bc56593b2f59c19eee360ee8d1952bca47_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:e8f88a3512a4e277bf16fc0b752418271561ecaa4420b81c9d033259e5f93628_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-ingress-operator@sha256:e8f88a3512a4e277bf16fc0b752418271561ecaa4420b81c9d033259e5f93628_amd64" + }, + "product_reference": "openshift4/ose-cluster-ingress-operator@sha256:e8f88a3512a4e277bf16fc0b752418271561ecaa4420b81c9d033259e5f93628_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:fe9322dff2debc9e36814e22880fb6e7491d012c9029513bf56fc6364ad10cb0_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-ingress-operator@sha256:fe9322dff2debc9e36814e22880fb6e7491d012c9029513bf56fc6364ad10cb0_arm64" + }, + "product_reference": "openshift4/ose-cluster-ingress-operator@sha256:fe9322dff2debc9e36814e22880fb6e7491d012c9029513bf56fc6364ad10cb0_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:6b70c5cbcf6db5f14891f9baefd983381d3ef96ea6056672bb5f49efc904b70b_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-kube-apiserver-operator@sha256:6b70c5cbcf6db5f14891f9baefd983381d3ef96ea6056672bb5f49efc904b70b_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-kube-apiserver-operator@sha256:6b70c5cbcf6db5f14891f9baefd983381d3ef96ea6056672bb5f49efc904b70b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:81623c1733070756c7f31d60ab33eadfa0bd182ae4efc4badee6eb06de1352cd_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-kube-apiserver-operator@sha256:81623c1733070756c7f31d60ab33eadfa0bd182ae4efc4badee6eb06de1352cd_amd64" + }, + "product_reference": "openshift4/ose-cluster-kube-apiserver-operator@sha256:81623c1733070756c7f31d60ab33eadfa0bd182ae4efc4badee6eb06de1352cd_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:949000a13493b8439941eefb34091d5c75cd8f5e1264c194280cbec6ea92b446_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-kube-apiserver-operator@sha256:949000a13493b8439941eefb34091d5c75cd8f5e1264c194280cbec6ea92b446_arm64" + }, + "product_reference": "openshift4/ose-cluster-kube-apiserver-operator@sha256:949000a13493b8439941eefb34091d5c75cd8f5e1264c194280cbec6ea92b446_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:e0e96ef103e9fd70a4ba6564c065d050cc702bdd55c4b5b4f65c3482aad4f600_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-kube-apiserver-operator@sha256:e0e96ef103e9fd70a4ba6564c065d050cc702bdd55c4b5b4f65c3482aad4f600_s390x" + }, + "product_reference": "openshift4/ose-cluster-kube-apiserver-operator@sha256:e0e96ef103e9fd70a4ba6564c065d050cc702bdd55c4b5b4f65c3482aad4f600_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:08d0db37be90b58b72a90a28bcdd98831e2aa400d6581aaa5eb0976009d0b1fc_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:08d0db37be90b58b72a90a28bcdd98831e2aa400d6581aaa5eb0976009d0b1fc_arm64" + }, + "product_reference": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:08d0db37be90b58b72a90a28bcdd98831e2aa400d6581aaa5eb0976009d0b1fc_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:0ab248e98b698339995e4d9e3de9f70757be7cb4aad2b23f1fcb41e4d99cc3df_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:0ab248e98b698339995e4d9e3de9f70757be7cb4aad2b23f1fcb41e4d99cc3df_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:0ab248e98b698339995e4d9e3de9f70757be7cb4aad2b23f1fcb41e4d99cc3df_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:3b761c7d65f05343b28730d56431ffa25da000abc003c0b76796513b2f9d4f47_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:3b761c7d65f05343b28730d56431ffa25da000abc003c0b76796513b2f9d4f47_s390x" + }, + "product_reference": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:3b761c7d65f05343b28730d56431ffa25da000abc003c0b76796513b2f9d4f47_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:ec4db6aaba39db7d1a400579ec28f4ea854c9d9097ff0af31c88b272f90ca05d_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:ec4db6aaba39db7d1a400579ec28f4ea854c9d9097ff0af31c88b272f90ca05d_amd64" + }, + "product_reference": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:ec4db6aaba39db7d1a400579ec28f4ea854c9d9097ff0af31c88b272f90ca05d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:2581a5220945271e1b8af6676d208a53ccdadef405a698fbbedbd39d1513b50d_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-kube-controller-manager-operator@sha256:2581a5220945271e1b8af6676d208a53ccdadef405a698fbbedbd39d1513b50d_s390x" + }, + "product_reference": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:2581a5220945271e1b8af6676d208a53ccdadef405a698fbbedbd39d1513b50d_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:36e2eeb6ab9a03e4d6df8382cf1582fa6f9fb440c2e82eb877c354c102659065_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-kube-controller-manager-operator@sha256:36e2eeb6ab9a03e4d6df8382cf1582fa6f9fb440c2e82eb877c354c102659065_amd64" + }, + "product_reference": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:36e2eeb6ab9a03e4d6df8382cf1582fa6f9fb440c2e82eb877c354c102659065_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:7a7552b4b24923e2b0e26346207bf177e7cedfcbb9dccfaa2a9d7b57aa7043c1_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-kube-controller-manager-operator@sha256:7a7552b4b24923e2b0e26346207bf177e7cedfcbb9dccfaa2a9d7b57aa7043c1_arm64" + }, + "product_reference": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:7a7552b4b24923e2b0e26346207bf177e7cedfcbb9dccfaa2a9d7b57aa7043c1_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:9af737a9bb19a25fad020acf13d778c93d02ba22170b10925af5ac11f28b3e14_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-kube-controller-manager-operator@sha256:9af737a9bb19a25fad020acf13d778c93d02ba22170b10925af5ac11f28b3e14_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:9af737a9bb19a25fad020acf13d778c93d02ba22170b10925af5ac11f28b3e14_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:1d13151f8ea8c1f117e1c042a7a47fa4e18b12dec456028a75758813c0afeac4_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-kube-scheduler-operator@sha256:1d13151f8ea8c1f117e1c042a7a47fa4e18b12dec456028a75758813c0afeac4_amd64" + }, + "product_reference": "openshift4/ose-cluster-kube-scheduler-operator@sha256:1d13151f8ea8c1f117e1c042a7a47fa4e18b12dec456028a75758813c0afeac4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:92dca2936b8daa34464e70c975143c322919fa027b95b09f9d15a8713b51d76c_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-kube-scheduler-operator@sha256:92dca2936b8daa34464e70c975143c322919fa027b95b09f9d15a8713b51d76c_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-kube-scheduler-operator@sha256:92dca2936b8daa34464e70c975143c322919fa027b95b09f9d15a8713b51d76c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:b24027ca21ab5ba968e19386d817f0eae48e82e0c66e38dda10ef406f7e32ca5_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-kube-scheduler-operator@sha256:b24027ca21ab5ba968e19386d817f0eae48e82e0c66e38dda10ef406f7e32ca5_arm64" + }, + "product_reference": "openshift4/ose-cluster-kube-scheduler-operator@sha256:b24027ca21ab5ba968e19386d817f0eae48e82e0c66e38dda10ef406f7e32ca5_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:d39278ccffa106b8657d61062d676a23e64477455482c6bd28af0a397d8f007a_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-kube-scheduler-operator@sha256:d39278ccffa106b8657d61062d676a23e64477455482c6bd28af0a397d8f007a_s390x" + }, + "product_reference": "openshift4/ose-cluster-kube-scheduler-operator@sha256:d39278ccffa106b8657d61062d676a23e64477455482c6bd28af0a397d8f007a_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:3220a5cf366b861a836b0c5f5bed03b54ab44986b500e58f44a0131fb7dfc31f_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:3220a5cf366b861a836b0c5f5bed03b54ab44986b500e58f44a0131fb7dfc31f_s390x" + }, + "product_reference": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:3220a5cf366b861a836b0c5f5bed03b54ab44986b500e58f44a0131fb7dfc31f_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:32fc5ee7e20dfa94da33c2a2eb77dca371664e36053307f02f1c8284c9d5ea98_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:32fc5ee7e20dfa94da33c2a2eb77dca371664e36053307f02f1c8284c9d5ea98_arm64" + }, + "product_reference": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:32fc5ee7e20dfa94da33c2a2eb77dca371664e36053307f02f1c8284c9d5ea98_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:7f646a12e7203c6b26f50d4e8f7b5f7047b181b05113af47c0f8fd20cdb407db_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:7f646a12e7203c6b26f50d4e8f7b5f7047b181b05113af47c0f8fd20cdb407db_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:7f646a12e7203c6b26f50d4e8f7b5f7047b181b05113af47c0f8fd20cdb407db_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:cc4631021dd1b52d209bffbc6b27e8a0589e7bdcb048b12bc69e4c28c9447c61_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:cc4631021dd1b52d209bffbc6b27e8a0589e7bdcb048b12bc69e4c28c9447c61_amd64" + }, + "product_reference": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:cc4631021dd1b52d209bffbc6b27e8a0589e7bdcb048b12bc69e4c28c9447c61_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-machine-approver@sha256:0c39d5b2659009dc2f019378ea73d0416394793778f139973f00f786bf7e9d91_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-machine-approver@sha256:0c39d5b2659009dc2f019378ea73d0416394793778f139973f00f786bf7e9d91_s390x" + }, + "product_reference": "openshift4/ose-cluster-machine-approver@sha256:0c39d5b2659009dc2f019378ea73d0416394793778f139973f00f786bf7e9d91_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-machine-approver@sha256:3d39350b2552c9266cecc4fe99628b3df4d85068e5e723a73362700d36f00f19_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-machine-approver@sha256:3d39350b2552c9266cecc4fe99628b3df4d85068e5e723a73362700d36f00f19_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-machine-approver@sha256:3d39350b2552c9266cecc4fe99628b3df4d85068e5e723a73362700d36f00f19_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-machine-approver@sha256:41567c8fa1f5c2668ee4dd5d1ace21f0d6c1c0e285aef52fff50407943a7efca_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-machine-approver@sha256:41567c8fa1f5c2668ee4dd5d1ace21f0d6c1c0e285aef52fff50407943a7efca_amd64" + }, + "product_reference": "openshift4/ose-cluster-machine-approver@sha256:41567c8fa1f5c2668ee4dd5d1ace21f0d6c1c0e285aef52fff50407943a7efca_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-machine-approver@sha256:c7b5aa3fde316fc138c5ad05ec9025c0f9f69ce75d0d0e375258544b3561d5e9_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-machine-approver@sha256:c7b5aa3fde316fc138c5ad05ec9025c0f9f69ce75d0d0e375258544b3561d5e9_arm64" + }, + "product_reference": "openshift4/ose-cluster-machine-approver@sha256:c7b5aa3fde316fc138c5ad05ec9025c0f9f69ce75d0d0e375258544b3561d5e9_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:21d849967925c10fe8797113837eb13217657d9ecffe6e618ed5dfa01e0b2bda_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-monitoring-operator@sha256:21d849967925c10fe8797113837eb13217657d9ecffe6e618ed5dfa01e0b2bda_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-monitoring-operator@sha256:21d849967925c10fe8797113837eb13217657d9ecffe6e618ed5dfa01e0b2bda_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:3f578c07616d5c00ceea6ab7138ee3add35ccf4d9b117e13ae538deee195bd27_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-monitoring-operator@sha256:3f578c07616d5c00ceea6ab7138ee3add35ccf4d9b117e13ae538deee195bd27_amd64" + }, + "product_reference": "openshift4/ose-cluster-monitoring-operator@sha256:3f578c07616d5c00ceea6ab7138ee3add35ccf4d9b117e13ae538deee195bd27_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:4a386d2801f7349c42d69ec67fff3545882274de80f8e1cdab2139f85b8e47f8_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-monitoring-operator@sha256:4a386d2801f7349c42d69ec67fff3545882274de80f8e1cdab2139f85b8e47f8_arm64" + }, + "product_reference": "openshift4/ose-cluster-monitoring-operator@sha256:4a386d2801f7349c42d69ec67fff3545882274de80f8e1cdab2139f85b8e47f8_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:fd3858691452d8c78a2829ffd1c6ddca1e935d445d24172204e08fe0b5bc555b_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-monitoring-operator@sha256:fd3858691452d8c78a2829ffd1c6ddca1e935d445d24172204e08fe0b5bc555b_s390x" + }, + "product_reference": "openshift4/ose-cluster-monitoring-operator@sha256:fd3858691452d8c78a2829ffd1c6ddca1e935d445d24172204e08fe0b5bc555b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-network-operator@sha256:8f867f67340e0fa38b7ef0c6b26d581d0781b2df13670918545c926354e0eb30_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-network-operator@sha256:8f867f67340e0fa38b7ef0c6b26d581d0781b2df13670918545c926354e0eb30_arm64" + }, + "product_reference": "openshift4/ose-cluster-network-operator@sha256:8f867f67340e0fa38b7ef0c6b26d581d0781b2df13670918545c926354e0eb30_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-network-operator@sha256:c33f10c72c62176c9fd800ae0431463f8d7bb716c1a74b6befb9b51af511fdb8_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-network-operator@sha256:c33f10c72c62176c9fd800ae0431463f8d7bb716c1a74b6befb9b51af511fdb8_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-network-operator@sha256:c33f10c72c62176c9fd800ae0431463f8d7bb716c1a74b6befb9b51af511fdb8_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-network-operator@sha256:efb8be0610a0761b9a6d074b704d85b1434cb7c507e42cf5379ef98d00fe0066_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-network-operator@sha256:efb8be0610a0761b9a6d074b704d85b1434cb7c507e42cf5379ef98d00fe0066_amd64" + }, + "product_reference": "openshift4/ose-cluster-network-operator@sha256:efb8be0610a0761b9a6d074b704d85b1434cb7c507e42cf5379ef98d00fe0066_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-network-operator@sha256:fde0430d195dc1ca305735f5518e626e7741fbb3b7931cbf5f073e305b78c3dc_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-network-operator@sha256:fde0430d195dc1ca305735f5518e626e7741fbb3b7931cbf5f073e305b78c3dc_s390x" + }, + "product_reference": "openshift4/ose-cluster-network-operator@sha256:fde0430d195dc1ca305735f5518e626e7741fbb3b7931cbf5f073e305b78c3dc_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:329d633c3926d5835e879e87b32a4a71714d9c6c3422c47e364837d91e017bf1_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-node-tuning-operator@sha256:329d633c3926d5835e879e87b32a4a71714d9c6c3422c47e364837d91e017bf1_amd64" + }, + "product_reference": "openshift4/ose-cluster-node-tuning-operator@sha256:329d633c3926d5835e879e87b32a4a71714d9c6c3422c47e364837d91e017bf1_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:4425ebabcd5ec1afbcada6d86e3885b3430d3a7841ccd7660874cd4efae8af49_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-node-tuning-operator@sha256:4425ebabcd5ec1afbcada6d86e3885b3430d3a7841ccd7660874cd4efae8af49_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-node-tuning-operator@sha256:4425ebabcd5ec1afbcada6d86e3885b3430d3a7841ccd7660874cd4efae8af49_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:5fd18165d193dbdc396748927cfaa669495e9d71424167b50e8d546a0dc96382_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-node-tuning-operator@sha256:5fd18165d193dbdc396748927cfaa669495e9d71424167b50e8d546a0dc96382_s390x" + }, + "product_reference": "openshift4/ose-cluster-node-tuning-operator@sha256:5fd18165d193dbdc396748927cfaa669495e9d71424167b50e8d546a0dc96382_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:a89cdd1e1a358a4893af9825c55c272278bba193b3bec7b79a24b05e198236c1_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-node-tuning-operator@sha256:a89cdd1e1a358a4893af9825c55c272278bba193b3bec7b79a24b05e198236c1_arm64" + }, + "product_reference": "openshift4/ose-cluster-node-tuning-operator@sha256:a89cdd1e1a358a4893af9825c55c272278bba193b3bec7b79a24b05e198236c1_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:307a4b5811ccef0f93195ba34eb7e739a6401ce0a9b07494961afc96051a3bb6_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-openshift-apiserver-operator@sha256:307a4b5811ccef0f93195ba34eb7e739a6401ce0a9b07494961afc96051a3bb6_s390x" + }, + "product_reference": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:307a4b5811ccef0f93195ba34eb7e739a6401ce0a9b07494961afc96051a3bb6_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:978c9fa7f39b7e7c710ceb833f185e0417038ce6c1231bc0cdb0efb83b053d4f_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-openshift-apiserver-operator@sha256:978c9fa7f39b7e7c710ceb833f185e0417038ce6c1231bc0cdb0efb83b053d4f_amd64" + }, + "product_reference": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:978c9fa7f39b7e7c710ceb833f185e0417038ce6c1231bc0cdb0efb83b053d4f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:d18356d3cf413bc42f002b777ff5e8339ee78ad46693880cf3c8fb4f1ca1c656_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-openshift-apiserver-operator@sha256:d18356d3cf413bc42f002b777ff5e8339ee78ad46693880cf3c8fb4f1ca1c656_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:d18356d3cf413bc42f002b777ff5e8339ee78ad46693880cf3c8fb4f1ca1c656_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:f6ba4e6ea73901e3c8c17d8beb7f810ac9a09a6da79dec7435e7f684ee44bb3e_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-openshift-apiserver-operator@sha256:f6ba4e6ea73901e3c8c17d8beb7f810ac9a09a6da79dec7435e7f684ee44bb3e_arm64" + }, + "product_reference": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:f6ba4e6ea73901e3c8c17d8beb7f810ac9a09a6da79dec7435e7f684ee44bb3e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:08f02b754fcf15db68506a6b6e9831a9f3e8ba3489b5e993b230432ad6c3cfef_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-openshift-controller-manager-operator@sha256:08f02b754fcf15db68506a6b6e9831a9f3e8ba3489b5e993b230432ad6c3cfef_amd64" + }, + "product_reference": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:08f02b754fcf15db68506a6b6e9831a9f3e8ba3489b5e993b230432ad6c3cfef_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:3761739dab73a0e305386637ce5ca21936c67712a5ab3d61122f030903f97c54_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-openshift-controller-manager-operator@sha256:3761739dab73a0e305386637ce5ca21936c67712a5ab3d61122f030903f97c54_s390x" + }, + "product_reference": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:3761739dab73a0e305386637ce5ca21936c67712a5ab3d61122f030903f97c54_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:9103cc85003d1a3abb81d4e5d0c54d4e975ce161249154dbfc7524d0528d27bf_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-openshift-controller-manager-operator@sha256:9103cc85003d1a3abb81d4e5d0c54d4e975ce161249154dbfc7524d0528d27bf_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:9103cc85003d1a3abb81d4e5d0c54d4e975ce161249154dbfc7524d0528d27bf_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:c2758df51e6020abb5cd68accaf248fc1c448213b7184b037b82fe709a2352fa_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-openshift-controller-manager-operator@sha256:c2758df51e6020abb5cd68accaf248fc1c448213b7184b037b82fe709a2352fa_arm64" + }, + "product_reference": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:c2758df51e6020abb5cd68accaf248fc1c448213b7184b037b82fe709a2352fa_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:2cd82f530d622ebca9b1f40f16562f9a73d1bcb19d4a316b6ea41cfc26f805b6_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:2cd82f530d622ebca9b1f40f16562f9a73d1bcb19d4a316b6ea41cfc26f805b6_arm64" + }, + "product_reference": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:2cd82f530d622ebca9b1f40f16562f9a73d1bcb19d4a316b6ea41cfc26f805b6_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:5e0ce696af72c78af11e06c78337069b9db795af33b8d884616bd4276a5bad83_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:5e0ce696af72c78af11e06c78337069b9db795af33b8d884616bd4276a5bad83_amd64" + }, + "product_reference": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:5e0ce696af72c78af11e06c78337069b9db795af33b8d884616bd4276a5bad83_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:d9660e480f0bba042c7a17c57bc6e832cbb78a48c08b89d7412c8863baae680f_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:d9660e480f0bba042c7a17c57bc6e832cbb78a48c08b89d7412c8863baae680f_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:d9660e480f0bba042c7a17c57bc6e832cbb78a48c08b89d7412c8863baae680f_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:eaf0c38a7d4c72718aaea31bd37ffb3a8919898dbc42f8b596c89b89d03a6f4b_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:eaf0c38a7d4c72718aaea31bd37ffb3a8919898dbc42f8b596c89b89d03a6f4b_s390x" + }, + "product_reference": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:eaf0c38a7d4c72718aaea31bd37ffb3a8919898dbc42f8b596c89b89d03a6f4b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:1b0abf9d621f756e507f55ae65665597d6ae40d4a323fe7b593d8c33aca3fe16_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-policy-controller-rhel8@sha256:1b0abf9d621f756e507f55ae65665597d6ae40d4a323fe7b593d8c33aca3fe16_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-policy-controller-rhel8@sha256:1b0abf9d621f756e507f55ae65665597d6ae40d4a323fe7b593d8c33aca3fe16_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:89bf12b9ed7881dc60f02ee53f6828c7932c266aeb4ea1136efa7ca58a85a48a_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-policy-controller-rhel8@sha256:89bf12b9ed7881dc60f02ee53f6828c7932c266aeb4ea1136efa7ca58a85a48a_s390x" + }, + "product_reference": "openshift4/ose-cluster-policy-controller-rhel8@sha256:89bf12b9ed7881dc60f02ee53f6828c7932c266aeb4ea1136efa7ca58a85a48a_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:9a1928f849245f705651f068a8d5e6ffc908f7aa26c79171c964913f5f3705e1_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-policy-controller-rhel8@sha256:9a1928f849245f705651f068a8d5e6ffc908f7aa26c79171c964913f5f3705e1_amd64" + }, + "product_reference": "openshift4/ose-cluster-policy-controller-rhel8@sha256:9a1928f849245f705651f068a8d5e6ffc908f7aa26c79171c964913f5f3705e1_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:ce5a6c4ba1ab7262ae5a48e10bb7943168469422552e9ffade6829cd8588e5d0_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-policy-controller-rhel8@sha256:ce5a6c4ba1ab7262ae5a48e10bb7943168469422552e9ffade6829cd8588e5d0_arm64" + }, + "product_reference": "openshift4/ose-cluster-policy-controller-rhel8@sha256:ce5a6c4ba1ab7262ae5a48e10bb7943168469422552e9ffade6829cd8588e5d0_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-samples-operator@sha256:4947b7c491146ea72499268c431e1ffe5edb22de99318a9beeb71780f149c468_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-samples-operator@sha256:4947b7c491146ea72499268c431e1ffe5edb22de99318a9beeb71780f149c468_amd64" + }, + "product_reference": "openshift4/ose-cluster-samples-operator@sha256:4947b7c491146ea72499268c431e1ffe5edb22de99318a9beeb71780f149c468_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-samples-operator@sha256:62b16e9d2486fc0cd6697103a7be9d58ca8927d78162d574ba8cdf3822b935d3_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-samples-operator@sha256:62b16e9d2486fc0cd6697103a7be9d58ca8927d78162d574ba8cdf3822b935d3_arm64" + }, + "product_reference": "openshift4/ose-cluster-samples-operator@sha256:62b16e9d2486fc0cd6697103a7be9d58ca8927d78162d574ba8cdf3822b935d3_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-samples-operator@sha256:9103c0d7785fa4a664e5f5cd41d56f5db7fb4f85768a3f70538c81b8a4c0bee4_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-samples-operator@sha256:9103c0d7785fa4a664e5f5cd41d56f5db7fb4f85768a3f70538c81b8a4c0bee4_s390x" + }, + "product_reference": "openshift4/ose-cluster-samples-operator@sha256:9103c0d7785fa4a664e5f5cd41d56f5db7fb4f85768a3f70538c81b8a4c0bee4_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-samples-operator@sha256:dcc12de8f96538aa3043a6e4dec37139a7bf8bae9b37e1378c79af8d4436a0f5_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-samples-operator@sha256:dcc12de8f96538aa3043a6e4dec37139a7bf8bae9b37e1378c79af8d4436a0f5_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-samples-operator@sha256:dcc12de8f96538aa3043a6e4dec37139a7bf8bae9b37e1378c79af8d4436a0f5_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-storage-operator@sha256:046cb7e04810fd07df5787972c4e33a98b29f721e10d79d65229fd2176f2efd3_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-storage-operator@sha256:046cb7e04810fd07df5787972c4e33a98b29f721e10d79d65229fd2176f2efd3_s390x" + }, + "product_reference": "openshift4/ose-cluster-storage-operator@sha256:046cb7e04810fd07df5787972c4e33a98b29f721e10d79d65229fd2176f2efd3_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-storage-operator@sha256:5e15c7eb8ba9ffacc4b0075a1430dd495fb118020f91bc90529cd61f6d5aa76a_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-storage-operator@sha256:5e15c7eb8ba9ffacc4b0075a1430dd495fb118020f91bc90529cd61f6d5aa76a_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-storage-operator@sha256:5e15c7eb8ba9ffacc4b0075a1430dd495fb118020f91bc90529cd61f6d5aa76a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-storage-operator@sha256:5f139751bc998bf4320ee2d3698fecb335f42f6ed79165cad9df9b28644e8748_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-storage-operator@sha256:5f139751bc998bf4320ee2d3698fecb335f42f6ed79165cad9df9b28644e8748_arm64" + }, + "product_reference": "openshift4/ose-cluster-storage-operator@sha256:5f139751bc998bf4320ee2d3698fecb335f42f6ed79165cad9df9b28644e8748_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-storage-operator@sha256:e6cc7d6b93dfc77ce48540088d93d6ee6ebfe278074ee8c378838fb8c7a625c5_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-storage-operator@sha256:e6cc7d6b93dfc77ce48540088d93d6ee6ebfe278074ee8c378838fb8c7a625c5_amd64" + }, + "product_reference": "openshift4/ose-cluster-storage-operator@sha256:e6cc7d6b93dfc77ce48540088d93d6ee6ebfe278074ee8c378838fb8c7a625c5_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-version-operator@sha256:4aa3e6094eed56ec359f4e6585e4e2f594070425a134c86770e013d94c7ea288_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-version-operator@sha256:4aa3e6094eed56ec359f4e6585e4e2f594070425a134c86770e013d94c7ea288_amd64" + }, + "product_reference": "openshift4/ose-cluster-version-operator@sha256:4aa3e6094eed56ec359f4e6585e4e2f594070425a134c86770e013d94c7ea288_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-version-operator@sha256:51ea1bd97c6d3aed567ea030ddc24753bfafb711f0d6de2994e4117cd6cfaeab_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-version-operator@sha256:51ea1bd97c6d3aed567ea030ddc24753bfafb711f0d6de2994e4117cd6cfaeab_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-version-operator@sha256:51ea1bd97c6d3aed567ea030ddc24753bfafb711f0d6de2994e4117cd6cfaeab_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-version-operator@sha256:97f6c8906d908bc068cb1ba3d0aed9d7b72d7c319d28af505793b4feece2c93c_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-version-operator@sha256:97f6c8906d908bc068cb1ba3d0aed9d7b72d7c319d28af505793b4feece2c93c_arm64" + }, + "product_reference": "openshift4/ose-cluster-version-operator@sha256:97f6c8906d908bc068cb1ba3d0aed9d7b72d7c319d28af505793b4feece2c93c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-version-operator@sha256:b69575b074f3e7feed8e574de3f2cb349bdace61ab80759579b8da1ca6d79258_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-cluster-version-operator@sha256:b69575b074f3e7feed8e574de3f2cb349bdace61ab80759579b8da1ca6d79258_s390x" + }, + "product_reference": "openshift4/ose-cluster-version-operator@sha256:b69575b074f3e7feed8e574de3f2cb349bdace61ab80759579b8da1ca6d79258_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-configmap-reloader@sha256:4a248f7257c298e0db7606a6d4ada2306250ea5b69a0ac4de3946f84e0905086_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-configmap-reloader@sha256:4a248f7257c298e0db7606a6d4ada2306250ea5b69a0ac4de3946f84e0905086_arm64" + }, + "product_reference": "openshift4/ose-configmap-reloader@sha256:4a248f7257c298e0db7606a6d4ada2306250ea5b69a0ac4de3946f84e0905086_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-configmap-reloader@sha256:a726bf98e43c8ecdb1331b61e206dc077eb6e21fd851e7a20f0a781ed3333e44_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-configmap-reloader@sha256:a726bf98e43c8ecdb1331b61e206dc077eb6e21fd851e7a20f0a781ed3333e44_ppc64le" + }, + "product_reference": "openshift4/ose-configmap-reloader@sha256:a726bf98e43c8ecdb1331b61e206dc077eb6e21fd851e7a20f0a781ed3333e44_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-configmap-reloader@sha256:e3de66159778780aa3035207da2d2e7262fd8e272327f0211f8200725caf65e3_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-configmap-reloader@sha256:e3de66159778780aa3035207da2d2e7262fd8e272327f0211f8200725caf65e3_s390x" + }, + "product_reference": "openshift4/ose-configmap-reloader@sha256:e3de66159778780aa3035207da2d2e7262fd8e272327f0211f8200725caf65e3_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-configmap-reloader@sha256:e714f1a8bcdada6e626a2e3059bca19d8fec58117792a1a1802e924bf64a60da_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-configmap-reloader@sha256:e714f1a8bcdada6e626a2e3059bca19d8fec58117792a1a1802e924bf64a60da_amd64" + }, + "product_reference": "openshift4/ose-configmap-reloader@sha256:e714f1a8bcdada6e626a2e3059bca19d8fec58117792a1a1802e924bf64a60da_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console-operator@sha256:1672e09a543b953b5f504596f55f04b32a8b6cfd047347243fe0c950cd0195a1_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-console-operator@sha256:1672e09a543b953b5f504596f55f04b32a8b6cfd047347243fe0c950cd0195a1_s390x" + }, + "product_reference": "openshift4/ose-console-operator@sha256:1672e09a543b953b5f504596f55f04b32a8b6cfd047347243fe0c950cd0195a1_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console-operator@sha256:233e90dab4968e5b352ae5e562027df627446fca16961fddcc37a96b2abc765c_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-console-operator@sha256:233e90dab4968e5b352ae5e562027df627446fca16961fddcc37a96b2abc765c_ppc64le" + }, + "product_reference": "openshift4/ose-console-operator@sha256:233e90dab4968e5b352ae5e562027df627446fca16961fddcc37a96b2abc765c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console-operator@sha256:73d07323be282333041414bb6c8321782e1f2ee38424fc3ba9dc0dd361096ecc_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-console-operator@sha256:73d07323be282333041414bb6c8321782e1f2ee38424fc3ba9dc0dd361096ecc_amd64" + }, + "product_reference": "openshift4/ose-console-operator@sha256:73d07323be282333041414bb6c8321782e1f2ee38424fc3ba9dc0dd361096ecc_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console-operator@sha256:a28885cb6cda9b80ad64522308e380710f4ea1e63bacbbd7037701db9ea3e650_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-console-operator@sha256:a28885cb6cda9b80ad64522308e380710f4ea1e63bacbbd7037701db9ea3e650_arm64" + }, + "product_reference": "openshift4/ose-console-operator@sha256:a28885cb6cda9b80ad64522308e380710f4ea1e63bacbbd7037701db9ea3e650_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console@sha256:287af3d2e491af37392fe639ff3e1c5866afc2a00e1ef627c22c00c581c865d5_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-console@sha256:287af3d2e491af37392fe639ff3e1c5866afc2a00e1ef627c22c00c581c865d5_s390x" + }, + "product_reference": "openshift4/ose-console@sha256:287af3d2e491af37392fe639ff3e1c5866afc2a00e1ef627c22c00c581c865d5_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console@sha256:42bb1c4937dd72f548255c24f94eca8134bf0147e54d996c2fd1b74018d46680_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-console@sha256:42bb1c4937dd72f548255c24f94eca8134bf0147e54d996c2fd1b74018d46680_amd64" + }, + "product_reference": "openshift4/ose-console@sha256:42bb1c4937dd72f548255c24f94eca8134bf0147e54d996c2fd1b74018d46680_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console@sha256:aa74373188549d9f348d516c91f81a376e5cc05c63d72dcd8235707da258189a_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-console@sha256:aa74373188549d9f348d516c91f81a376e5cc05c63d72dcd8235707da258189a_ppc64le" + }, + "product_reference": "openshift4/ose-console@sha256:aa74373188549d9f348d516c91f81a376e5cc05c63d72dcd8235707da258189a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console@sha256:c51ae46d8f9540e6ba6f15ca3cf0824089ae3a81d3cc4cf26cc00109632f22d1_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-console@sha256:c51ae46d8f9540e6ba6f15ca3cf0824089ae3a81d3cc4cf26cc00109632f22d1_arm64" + }, + "product_reference": "openshift4/ose-console@sha256:c51ae46d8f9540e6ba6f15ca3cf0824089ae3a81d3cc4cf26cc00109632f22d1_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:3c89f2516f80925c45fbbc88a8b8e3811c7fb24e363a7be2418c03fd6e5a23a9_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-container-networking-plugins-rhel8@sha256:3c89f2516f80925c45fbbc88a8b8e3811c7fb24e363a7be2418c03fd6e5a23a9_arm64" + }, + "product_reference": "openshift4/ose-container-networking-plugins-rhel8@sha256:3c89f2516f80925c45fbbc88a8b8e3811c7fb24e363a7be2418c03fd6e5a23a9_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:403e11296e5f9b4cf98c9434ab5209c114039d1c25638efa02e30c0a6511dcdd_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-container-networking-plugins-rhel8@sha256:403e11296e5f9b4cf98c9434ab5209c114039d1c25638efa02e30c0a6511dcdd_ppc64le" + }, + "product_reference": "openshift4/ose-container-networking-plugins-rhel8@sha256:403e11296e5f9b4cf98c9434ab5209c114039d1c25638efa02e30c0a6511dcdd_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:939cb36adc721074dd40d5fa3b6757513f73c10f846e500f7ddbed9b3c20e686_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-container-networking-plugins-rhel8@sha256:939cb36adc721074dd40d5fa3b6757513f73c10f846e500f7ddbed9b3c20e686_amd64" + }, + "product_reference": "openshift4/ose-container-networking-plugins-rhel8@sha256:939cb36adc721074dd40d5fa3b6757513f73c10f846e500f7ddbed9b3c20e686_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:e9bfc536d4eb7ce20a0ac6ab5e77fb363ffe75fb2bac3d3d36b4b0c8d4ff4d1b_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-container-networking-plugins-rhel8@sha256:e9bfc536d4eb7ce20a0ac6ab5e77fb363ffe75fb2bac3d3d36b4b0c8d4ff4d1b_s390x" + }, + "product_reference": "openshift4/ose-container-networking-plugins-rhel8@sha256:e9bfc536d4eb7ce20a0ac6ab5e77fb363ffe75fb2bac3d3d36b4b0c8d4ff4d1b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-coredns@sha256:035a73154570a2cd74a3674c50f8c8395378a3620bd45e20e6618ef116bd9a18_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-coredns@sha256:035a73154570a2cd74a3674c50f8c8395378a3620bd45e20e6618ef116bd9a18_amd64" + }, + "product_reference": "openshift4/ose-coredns@sha256:035a73154570a2cd74a3674c50f8c8395378a3620bd45e20e6618ef116bd9a18_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-coredns@sha256:2890b81758f128fd77057ad30a84d1d4732d963d7774d384e4aae23ca47bcf07_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-coredns@sha256:2890b81758f128fd77057ad30a84d1d4732d963d7774d384e4aae23ca47bcf07_arm64" + }, + "product_reference": "openshift4/ose-coredns@sha256:2890b81758f128fd77057ad30a84d1d4732d963d7774d384e4aae23ca47bcf07_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-coredns@sha256:47014e84d6796691bf2901917512efba2865b2b54599533402d38b0344370079_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-coredns@sha256:47014e84d6796691bf2901917512efba2865b2b54599533402d38b0344370079_ppc64le" + }, + "product_reference": "openshift4/ose-coredns@sha256:47014e84d6796691bf2901917512efba2865b2b54599533402d38b0344370079_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-coredns@sha256:e097676ad57a54917307d1fa9693ffc81b735556639d9584271d0768e312336d_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-coredns@sha256:e097676ad57a54917307d1fa9693ffc81b735556639d9584271d0768e312336d_s390x" + }, + "product_reference": "openshift4/ose-coredns@sha256:e097676ad57a54917307d1fa9693ffc81b735556639d9584271d0768e312336d_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:5103feb9bd89693c0532433f825b14e8fd31c38444bd745aa9f5d05938e26280_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-driver-manila-rhel8-operator@sha256:5103feb9bd89693c0532433f825b14e8fd31c38444bd745aa9f5d05938e26280_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:5103feb9bd89693c0532433f825b14e8fd31c38444bd745aa9f5d05938e26280_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:adaaaf424e192fb55a7888fa682a01a29c7e8d5f92e2eee6ce22a14384650c74_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-driver-manila-rhel8-operator@sha256:adaaaf424e192fb55a7888fa682a01a29c7e8d5f92e2eee6ce22a14384650c74_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:adaaaf424e192fb55a7888fa682a01a29c7e8d5f92e2eee6ce22a14384650c74_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:2771ac02036ba7d180680bd7c9c9d456bde85b4bd1bf8f4d715d36f72991db33_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-driver-manila-rhel8@sha256:2771ac02036ba7d180680bd7c9c9d456bde85b4bd1bf8f4d715d36f72991db33_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-manila-rhel8@sha256:2771ac02036ba7d180680bd7c9c9d456bde85b4bd1bf8f4d715d36f72991db33_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:6b8f7430610adfa57c52f3fc45fc82fb0c5fd595d9870c950363ad7306bb93df_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-driver-manila-rhel8@sha256:6b8f7430610adfa57c52f3fc45fc82fb0c5fd595d9870c950363ad7306bb93df_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-manila-rhel8@sha256:6b8f7430610adfa57c52f3fc45fc82fb0c5fd595d9870c950363ad7306bb93df_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-nfs-rhel8@sha256:185a3dd62ad8fbd0fc0bd59e53800aa0feb971bb440c9d532381ca31504c6dca_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-driver-nfs-rhel8@sha256:185a3dd62ad8fbd0fc0bd59e53800aa0feb971bb440c9d532381ca31504c6dca_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-nfs-rhel8@sha256:185a3dd62ad8fbd0fc0bd59e53800aa0feb971bb440c9d532381ca31504c6dca_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-nfs-rhel8@sha256:6477d64965d43b0d5fc1bce3b1ec18b0c35ffca6e1f5cebaba139a2919e3041a_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-driver-nfs-rhel8@sha256:6477d64965d43b0d5fc1bce3b1ec18b0c35ffca6e1f5cebaba139a2919e3041a_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-nfs-rhel8@sha256:6477d64965d43b0d5fc1bce3b1ec18b0c35ffca6e1f5cebaba139a2919e3041a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:661c9b3d09ef68a7f2de7cbbd643a350310e17ca78f8b8c55972d62d020e12f7_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:661c9b3d09ef68a7f2de7cbbd643a350310e17ca78f8b8c55972d62d020e12f7_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:661c9b3d09ef68a7f2de7cbbd643a350310e17ca78f8b8c55972d62d020e12f7_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:9870b21b0e109dad78de9f99a43323c90640510cbd6bc24acbc080b49436d759_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:9870b21b0e109dad78de9f99a43323c90640510cbd6bc24acbc080b49436d759_s390x" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:9870b21b0e109dad78de9f99a43323c90640510cbd6bc24acbc080b49436d759_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:dee3fd61db4349a4a7ab21d7692aba3105ffa428f6f4479eb4e0a79f8b85be5b_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:dee3fd61db4349a4a7ab21d7692aba3105ffa428f6f4479eb4e0a79f8b85be5b_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:dee3fd61db4349a4a7ab21d7692aba3105ffa428f6f4479eb4e0a79f8b85be5b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:f7308b096f72a0af75c38c2a43295432a94f079d8ebccb59b46844a95e4df8d5_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:f7308b096f72a0af75c38c2a43295432a94f079d8ebccb59b46844a95e4df8d5_arm64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:f7308b096f72a0af75c38c2a43295432a94f079d8ebccb59b46844a95e4df8d5_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:61ca87e9bedccbb12d640f8e0de16c0f407af5ec3dde34ab485b8904941f0aa0_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-driver-shared-resource-rhel8@sha256:61ca87e9bedccbb12d640f8e0de16c0f407af5ec3dde34ab485b8904941f0aa0_s390x" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:61ca87e9bedccbb12d640f8e0de16c0f407af5ec3dde34ab485b8904941f0aa0_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:77a49f891119fe926b33b792a8f04b13a1b139e557cd63d38a9ef597ca7f6564_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-driver-shared-resource-rhel8@sha256:77a49f891119fe926b33b792a8f04b13a1b139e557cd63d38a9ef597ca7f6564_arm64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:77a49f891119fe926b33b792a8f04b13a1b139e557cd63d38a9ef597ca7f6564_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:d06c33f5a3207290f01a0e9ffa0dc0276e37c2c42d39205cd231d23685cf559f_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-driver-shared-resource-rhel8@sha256:d06c33f5a3207290f01a0e9ffa0dc0276e37c2c42d39205cd231d23685cf559f_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:d06c33f5a3207290f01a0e9ffa0dc0276e37c2c42d39205cd231d23685cf559f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:e71a9244f6c1e93cacf1dd98def6254b4f623526ab71b9ff346ba2242407cd60_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-driver-shared-resource-rhel8@sha256:e71a9244f6c1e93cacf1dd98def6254b4f623526ab71b9ff346ba2242407cd60_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:e71a9244f6c1e93cacf1dd98def6254b4f623526ab71b9ff346ba2242407cd60_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:14538fa09fbddeeeba83d5bdef88f078105ddf71b62bf38a7a805ffad271dee3_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:14538fa09fbddeeeba83d5bdef88f078105ddf71b62bf38a7a805ffad271dee3_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:14538fa09fbddeeeba83d5bdef88f078105ddf71b62bf38a7a805ffad271dee3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:32ccc163238554f55bfa03d3225dc04a646b322969bcf716bdd9b2ed35a1026c_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:32ccc163238554f55bfa03d3225dc04a646b322969bcf716bdd9b2ed35a1026c_arm64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:32ccc163238554f55bfa03d3225dc04a646b322969bcf716bdd9b2ed35a1026c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:62d8596c07d1e95cbe463f7732b20a75b85b692f93ec1bd10b8942a1b13d7df7_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:62d8596c07d1e95cbe463f7732b20a75b85b692f93ec1bd10b8942a1b13d7df7_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:62d8596c07d1e95cbe463f7732b20a75b85b692f93ec1bd10b8942a1b13d7df7_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:dbd3500e17a1009bc84e33e422b8b56809a9ae4099c90634620669e456c9f473_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:dbd3500e17a1009bc84e33e422b8b56809a9ae4099c90634620669e456c9f473_s390x" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:dbd3500e17a1009bc84e33e422b8b56809a9ae4099c90634620669e456c9f473_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:99d0b058e9d12771815da2ec01641987e5787b0ad03bdeceeedb1527acea6d84_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-attacher-rhel8@sha256:99d0b058e9d12771815da2ec01641987e5787b0ad03bdeceeedb1527acea6d84_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-attacher-rhel8@sha256:99d0b058e9d12771815da2ec01641987e5787b0ad03bdeceeedb1527acea6d84_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:bd892f004d727ee5137316e8b88ccb4a3aee945579ee3e5442c69a808557b74c_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-attacher-rhel8@sha256:bd892f004d727ee5137316e8b88ccb4a3aee945579ee3e5442c69a808557b74c_arm64" + }, + "product_reference": "openshift4/ose-csi-external-attacher-rhel8@sha256:bd892f004d727ee5137316e8b88ccb4a3aee945579ee3e5442c69a808557b74c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:ce600885810ccb3da00476fe9ae16be8861bfff9f4b521a6e15797b24d0210f3_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-attacher-rhel8@sha256:ce600885810ccb3da00476fe9ae16be8861bfff9f4b521a6e15797b24d0210f3_amd64" + }, + "product_reference": "openshift4/ose-csi-external-attacher-rhel8@sha256:ce600885810ccb3da00476fe9ae16be8861bfff9f4b521a6e15797b24d0210f3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:daf7a036bccab186e58e710f6e059d6f2296abfb5c74d6ac5493470b08d33178_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-attacher-rhel8@sha256:daf7a036bccab186e58e710f6e059d6f2296abfb5c74d6ac5493470b08d33178_s390x" + }, + "product_reference": "openshift4/ose-csi-external-attacher-rhel8@sha256:daf7a036bccab186e58e710f6e059d6f2296abfb5c74d6ac5493470b08d33178_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher@sha256:99d0b058e9d12771815da2ec01641987e5787b0ad03bdeceeedb1527acea6d84_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-attacher@sha256:99d0b058e9d12771815da2ec01641987e5787b0ad03bdeceeedb1527acea6d84_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-attacher@sha256:99d0b058e9d12771815da2ec01641987e5787b0ad03bdeceeedb1527acea6d84_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher@sha256:bd892f004d727ee5137316e8b88ccb4a3aee945579ee3e5442c69a808557b74c_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-attacher@sha256:bd892f004d727ee5137316e8b88ccb4a3aee945579ee3e5442c69a808557b74c_arm64" + }, + "product_reference": "openshift4/ose-csi-external-attacher@sha256:bd892f004d727ee5137316e8b88ccb4a3aee945579ee3e5442c69a808557b74c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher@sha256:ce600885810ccb3da00476fe9ae16be8861bfff9f4b521a6e15797b24d0210f3_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-attacher@sha256:ce600885810ccb3da00476fe9ae16be8861bfff9f4b521a6e15797b24d0210f3_amd64" + }, + "product_reference": "openshift4/ose-csi-external-attacher@sha256:ce600885810ccb3da00476fe9ae16be8861bfff9f4b521a6e15797b24d0210f3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher@sha256:daf7a036bccab186e58e710f6e059d6f2296abfb5c74d6ac5493470b08d33178_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-attacher@sha256:daf7a036bccab186e58e710f6e059d6f2296abfb5c74d6ac5493470b08d33178_s390x" + }, + "product_reference": "openshift4/ose-csi-external-attacher@sha256:daf7a036bccab186e58e710f6e059d6f2296abfb5c74d6ac5493470b08d33178_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:48c44045d753346f59214118d45719348f24d3a777a3345a591fe2f2cc25f1a2_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-provisioner-rhel8@sha256:48c44045d753346f59214118d45719348f24d3a777a3345a591fe2f2cc25f1a2_arm64" + }, + "product_reference": "openshift4/ose-csi-external-provisioner-rhel8@sha256:48c44045d753346f59214118d45719348f24d3a777a3345a591fe2f2cc25f1a2_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:4b418371b6225c4ee0eca87cb212ea342b8eb58d3b0af936d238e27b63f6a0a2_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-provisioner-rhel8@sha256:4b418371b6225c4ee0eca87cb212ea342b8eb58d3b0af936d238e27b63f6a0a2_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-provisioner-rhel8@sha256:4b418371b6225c4ee0eca87cb212ea342b8eb58d3b0af936d238e27b63f6a0a2_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:6c368cb4dce9683129608792113e29b6d00f402e7972beea0fd44042a8699b70_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-provisioner-rhel8@sha256:6c368cb4dce9683129608792113e29b6d00f402e7972beea0fd44042a8699b70_amd64" + }, + "product_reference": "openshift4/ose-csi-external-provisioner-rhel8@sha256:6c368cb4dce9683129608792113e29b6d00f402e7972beea0fd44042a8699b70_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:9a8d0600ec01c7b423200e4a9354c6f0717d691a0378a4324f2a18575e61f472_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-provisioner-rhel8@sha256:9a8d0600ec01c7b423200e4a9354c6f0717d691a0378a4324f2a18575e61f472_s390x" + }, + "product_reference": "openshift4/ose-csi-external-provisioner-rhel8@sha256:9a8d0600ec01c7b423200e4a9354c6f0717d691a0378a4324f2a18575e61f472_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner@sha256:48c44045d753346f59214118d45719348f24d3a777a3345a591fe2f2cc25f1a2_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-provisioner@sha256:48c44045d753346f59214118d45719348f24d3a777a3345a591fe2f2cc25f1a2_arm64" + }, + "product_reference": "openshift4/ose-csi-external-provisioner@sha256:48c44045d753346f59214118d45719348f24d3a777a3345a591fe2f2cc25f1a2_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner@sha256:4b418371b6225c4ee0eca87cb212ea342b8eb58d3b0af936d238e27b63f6a0a2_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-provisioner@sha256:4b418371b6225c4ee0eca87cb212ea342b8eb58d3b0af936d238e27b63f6a0a2_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-provisioner@sha256:4b418371b6225c4ee0eca87cb212ea342b8eb58d3b0af936d238e27b63f6a0a2_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner@sha256:6c368cb4dce9683129608792113e29b6d00f402e7972beea0fd44042a8699b70_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-provisioner@sha256:6c368cb4dce9683129608792113e29b6d00f402e7972beea0fd44042a8699b70_amd64" + }, + "product_reference": "openshift4/ose-csi-external-provisioner@sha256:6c368cb4dce9683129608792113e29b6d00f402e7972beea0fd44042a8699b70_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner@sha256:9a8d0600ec01c7b423200e4a9354c6f0717d691a0378a4324f2a18575e61f472_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-provisioner@sha256:9a8d0600ec01c7b423200e4a9354c6f0717d691a0378a4324f2a18575e61f472_s390x" + }, + "product_reference": "openshift4/ose-csi-external-provisioner@sha256:9a8d0600ec01c7b423200e4a9354c6f0717d691a0378a4324f2a18575e61f472_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:306a711cd1578d40342293b178cdd0bdfe29426e1476b0a16c93b8795727e08b_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-resizer-rhel8@sha256:306a711cd1578d40342293b178cdd0bdfe29426e1476b0a16c93b8795727e08b_amd64" + }, + "product_reference": "openshift4/ose-csi-external-resizer-rhel8@sha256:306a711cd1578d40342293b178cdd0bdfe29426e1476b0a16c93b8795727e08b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:50dc4d1009f8abbf149787bf653bacf20ad2901d99883f7955630fc5cd344f8c_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-resizer-rhel8@sha256:50dc4d1009f8abbf149787bf653bacf20ad2901d99883f7955630fc5cd344f8c_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-resizer-rhel8@sha256:50dc4d1009f8abbf149787bf653bacf20ad2901d99883f7955630fc5cd344f8c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:d6088accc453eef8b327eded0126370118d4acd50eecc471011a7576e955fd77_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-resizer-rhel8@sha256:d6088accc453eef8b327eded0126370118d4acd50eecc471011a7576e955fd77_arm64" + }, + "product_reference": "openshift4/ose-csi-external-resizer-rhel8@sha256:d6088accc453eef8b327eded0126370118d4acd50eecc471011a7576e955fd77_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:ecb5acb698487c97763cc5f1b586a72a61e7aa831036ed6839122798f87761df_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-resizer-rhel8@sha256:ecb5acb698487c97763cc5f1b586a72a61e7aa831036ed6839122798f87761df_s390x" + }, + "product_reference": "openshift4/ose-csi-external-resizer-rhel8@sha256:ecb5acb698487c97763cc5f1b586a72a61e7aa831036ed6839122798f87761df_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer@sha256:306a711cd1578d40342293b178cdd0bdfe29426e1476b0a16c93b8795727e08b_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-resizer@sha256:306a711cd1578d40342293b178cdd0bdfe29426e1476b0a16c93b8795727e08b_amd64" + }, + "product_reference": "openshift4/ose-csi-external-resizer@sha256:306a711cd1578d40342293b178cdd0bdfe29426e1476b0a16c93b8795727e08b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer@sha256:50dc4d1009f8abbf149787bf653bacf20ad2901d99883f7955630fc5cd344f8c_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-resizer@sha256:50dc4d1009f8abbf149787bf653bacf20ad2901d99883f7955630fc5cd344f8c_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-resizer@sha256:50dc4d1009f8abbf149787bf653bacf20ad2901d99883f7955630fc5cd344f8c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer@sha256:d6088accc453eef8b327eded0126370118d4acd50eecc471011a7576e955fd77_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-resizer@sha256:d6088accc453eef8b327eded0126370118d4acd50eecc471011a7576e955fd77_arm64" + }, + "product_reference": "openshift4/ose-csi-external-resizer@sha256:d6088accc453eef8b327eded0126370118d4acd50eecc471011a7576e955fd77_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer@sha256:ecb5acb698487c97763cc5f1b586a72a61e7aa831036ed6839122798f87761df_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-resizer@sha256:ecb5acb698487c97763cc5f1b586a72a61e7aa831036ed6839122798f87761df_s390x" + }, + "product_reference": "openshift4/ose-csi-external-resizer@sha256:ecb5acb698487c97763cc5f1b586a72a61e7aa831036ed6839122798f87761df_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:68ccc2241fcf26d7d57b6e36e20ef544b264cd5486c8b913de6cf5dbc094412a_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-snapshotter-rhel8@sha256:68ccc2241fcf26d7d57b6e36e20ef544b264cd5486c8b913de6cf5dbc094412a_arm64" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:68ccc2241fcf26d7d57b6e36e20ef544b264cd5486c8b913de6cf5dbc094412a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:909446e6aca76f6477fc7cee55fa00b3bdc201b0cc1550efd7446bed26f2602e_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-snapshotter-rhel8@sha256:909446e6aca76f6477fc7cee55fa00b3bdc201b0cc1550efd7446bed26f2602e_s390x" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:909446e6aca76f6477fc7cee55fa00b3bdc201b0cc1550efd7446bed26f2602e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:c4d49ae6ec1c9bf0aefbb9f615041feef2ca254bbab9d6f3b2a6cc613fa6bcf7_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-snapshotter-rhel8@sha256:c4d49ae6ec1c9bf0aefbb9f615041feef2ca254bbab9d6f3b2a6cc613fa6bcf7_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:c4d49ae6ec1c9bf0aefbb9f615041feef2ca254bbab9d6f3b2a6cc613fa6bcf7_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:d25c98827218b96860e1c8722b17da1d1b2ecf1bb99e00cfcc208ce4780fa949_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-snapshotter-rhel8@sha256:d25c98827218b96860e1c8722b17da1d1b2ecf1bb99e00cfcc208ce4780fa949_amd64" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:d25c98827218b96860e1c8722b17da1d1b2ecf1bb99e00cfcc208ce4780fa949_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:68ccc2241fcf26d7d57b6e36e20ef544b264cd5486c8b913de6cf5dbc094412a_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-snapshotter@sha256:68ccc2241fcf26d7d57b6e36e20ef544b264cd5486c8b913de6cf5dbc094412a_arm64" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter@sha256:68ccc2241fcf26d7d57b6e36e20ef544b264cd5486c8b913de6cf5dbc094412a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:909446e6aca76f6477fc7cee55fa00b3bdc201b0cc1550efd7446bed26f2602e_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-snapshotter@sha256:909446e6aca76f6477fc7cee55fa00b3bdc201b0cc1550efd7446bed26f2602e_s390x" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter@sha256:909446e6aca76f6477fc7cee55fa00b3bdc201b0cc1550efd7446bed26f2602e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:c4d49ae6ec1c9bf0aefbb9f615041feef2ca254bbab9d6f3b2a6cc613fa6bcf7_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-snapshotter@sha256:c4d49ae6ec1c9bf0aefbb9f615041feef2ca254bbab9d6f3b2a6cc613fa6bcf7_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter@sha256:c4d49ae6ec1c9bf0aefbb9f615041feef2ca254bbab9d6f3b2a6cc613fa6bcf7_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:d25c98827218b96860e1c8722b17da1d1b2ecf1bb99e00cfcc208ce4780fa949_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-external-snapshotter@sha256:d25c98827218b96860e1c8722b17da1d1b2ecf1bb99e00cfcc208ce4780fa949_amd64" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter@sha256:d25c98827218b96860e1c8722b17da1d1b2ecf1bb99e00cfcc208ce4780fa949_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:5d0461ba4b9695e52318f6f6a49e44fbd2a7ac0e3829d148e3e38ccebdcc056c_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-livenessprobe-rhel8@sha256:5d0461ba4b9695e52318f6f6a49e44fbd2a7ac0e3829d148e3e38ccebdcc056c_ppc64le" + }, + "product_reference": "openshift4/ose-csi-livenessprobe-rhel8@sha256:5d0461ba4b9695e52318f6f6a49e44fbd2a7ac0e3829d148e3e38ccebdcc056c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:92deb685e9b5555c68495b9317aaa51973eec12d4cb66040ed7c14fa65712598_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-livenessprobe-rhel8@sha256:92deb685e9b5555c68495b9317aaa51973eec12d4cb66040ed7c14fa65712598_s390x" + }, + "product_reference": "openshift4/ose-csi-livenessprobe-rhel8@sha256:92deb685e9b5555c68495b9317aaa51973eec12d4cb66040ed7c14fa65712598_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:a7b1692c644cdd144d8e8b4a17997604781441aee4dd0641932cf42c7686bb25_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-livenessprobe-rhel8@sha256:a7b1692c644cdd144d8e8b4a17997604781441aee4dd0641932cf42c7686bb25_amd64" + }, + "product_reference": "openshift4/ose-csi-livenessprobe-rhel8@sha256:a7b1692c644cdd144d8e8b4a17997604781441aee4dd0641932cf42c7686bb25_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:d18d0e38e1ab7f62287ba18f6c54e8b2c9380784471bf9ab8fa9bb12a20ed545_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-livenessprobe-rhel8@sha256:d18d0e38e1ab7f62287ba18f6c54e8b2c9380784471bf9ab8fa9bb12a20ed545_arm64" + }, + "product_reference": "openshift4/ose-csi-livenessprobe-rhel8@sha256:d18d0e38e1ab7f62287ba18f6c54e8b2c9380784471bf9ab8fa9bb12a20ed545_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe@sha256:5d0461ba4b9695e52318f6f6a49e44fbd2a7ac0e3829d148e3e38ccebdcc056c_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-livenessprobe@sha256:5d0461ba4b9695e52318f6f6a49e44fbd2a7ac0e3829d148e3e38ccebdcc056c_ppc64le" + }, + "product_reference": "openshift4/ose-csi-livenessprobe@sha256:5d0461ba4b9695e52318f6f6a49e44fbd2a7ac0e3829d148e3e38ccebdcc056c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe@sha256:92deb685e9b5555c68495b9317aaa51973eec12d4cb66040ed7c14fa65712598_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-livenessprobe@sha256:92deb685e9b5555c68495b9317aaa51973eec12d4cb66040ed7c14fa65712598_s390x" + }, + "product_reference": "openshift4/ose-csi-livenessprobe@sha256:92deb685e9b5555c68495b9317aaa51973eec12d4cb66040ed7c14fa65712598_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe@sha256:a7b1692c644cdd144d8e8b4a17997604781441aee4dd0641932cf42c7686bb25_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-livenessprobe@sha256:a7b1692c644cdd144d8e8b4a17997604781441aee4dd0641932cf42c7686bb25_amd64" + }, + "product_reference": "openshift4/ose-csi-livenessprobe@sha256:a7b1692c644cdd144d8e8b4a17997604781441aee4dd0641932cf42c7686bb25_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe@sha256:d18d0e38e1ab7f62287ba18f6c54e8b2c9380784471bf9ab8fa9bb12a20ed545_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-livenessprobe@sha256:d18d0e38e1ab7f62287ba18f6c54e8b2c9380784471bf9ab8fa9bb12a20ed545_arm64" + }, + "product_reference": "openshift4/ose-csi-livenessprobe@sha256:d18d0e38e1ab7f62287ba18f6c54e8b2c9380784471bf9ab8fa9bb12a20ed545_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:2b11dd89e9c30e695710601a853b1c6e1ac7da3ce0ab0c96c589764d03b22c6a_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-node-driver-registrar-rhel8@sha256:2b11dd89e9c30e695710601a853b1c6e1ac7da3ce0ab0c96c589764d03b22c6a_amd64" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:2b11dd89e9c30e695710601a853b1c6e1ac7da3ce0ab0c96c589764d03b22c6a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:62df93e1bf2d32a0e86b021753f33ef79cc20267c8eb2a775d14e46f4292ea73_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-node-driver-registrar-rhel8@sha256:62df93e1bf2d32a0e86b021753f33ef79cc20267c8eb2a775d14e46f4292ea73_arm64" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:62df93e1bf2d32a0e86b021753f33ef79cc20267c8eb2a775d14e46f4292ea73_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6b9e824b66643afe0c1730b8ee5b456a3ab1d28d51a4daa72d9a9d8bda69a28b_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6b9e824b66643afe0c1730b8ee5b456a3ab1d28d51a4daa72d9a9d8bda69a28b_s390x" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:6b9e824b66643afe0c1730b8ee5b456a3ab1d28d51a4daa72d9a9d8bda69a28b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:ab397e4f8711744b361a200a9bdcca82e3fcd2e43c2f2f80009fd8efa327b5df_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-node-driver-registrar-rhel8@sha256:ab397e4f8711744b361a200a9bdcca82e3fcd2e43c2f2f80009fd8efa327b5df_ppc64le" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:ab397e4f8711744b361a200a9bdcca82e3fcd2e43c2f2f80009fd8efa327b5df_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:2b11dd89e9c30e695710601a853b1c6e1ac7da3ce0ab0c96c589764d03b22c6a_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-node-driver-registrar@sha256:2b11dd89e9c30e695710601a853b1c6e1ac7da3ce0ab0c96c589764d03b22c6a_amd64" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar@sha256:2b11dd89e9c30e695710601a853b1c6e1ac7da3ce0ab0c96c589764d03b22c6a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:62df93e1bf2d32a0e86b021753f33ef79cc20267c8eb2a775d14e46f4292ea73_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-node-driver-registrar@sha256:62df93e1bf2d32a0e86b021753f33ef79cc20267c8eb2a775d14e46f4292ea73_arm64" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar@sha256:62df93e1bf2d32a0e86b021753f33ef79cc20267c8eb2a775d14e46f4292ea73_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:6b9e824b66643afe0c1730b8ee5b456a3ab1d28d51a4daa72d9a9d8bda69a28b_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-node-driver-registrar@sha256:6b9e824b66643afe0c1730b8ee5b456a3ab1d28d51a4daa72d9a9d8bda69a28b_s390x" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar@sha256:6b9e824b66643afe0c1730b8ee5b456a3ab1d28d51a4daa72d9a9d8bda69a28b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:ab397e4f8711744b361a200a9bdcca82e3fcd2e43c2f2f80009fd8efa327b5df_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-node-driver-registrar@sha256:ab397e4f8711744b361a200a9bdcca82e3fcd2e43c2f2f80009fd8efa327b5df_ppc64le" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar@sha256:ab397e4f8711744b361a200a9bdcca82e3fcd2e43c2f2f80009fd8efa327b5df_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:162eab862188bab6b657d80181a28a3e36e93221ca0fc2b5840fc8ad0458ad64_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-snapshot-controller-rhel8@sha256:162eab862188bab6b657d80181a28a3e36e93221ca0fc2b5840fc8ad0458ad64_arm64" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:162eab862188bab6b657d80181a28a3e36e93221ca0fc2b5840fc8ad0458ad64_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:7c96a3187d805fe374cd4ce3c7e8af1ffd9a08f477192ce7faea41de21049e58_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-snapshot-controller-rhel8@sha256:7c96a3187d805fe374cd4ce3c7e8af1ffd9a08f477192ce7faea41de21049e58_ppc64le" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:7c96a3187d805fe374cd4ce3c7e8af1ffd9a08f477192ce7faea41de21049e58_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:80540cbd5cc7c2dc4d96173afede65b5f84ed1003949eaa22a8a5d68f568ba4f_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-snapshot-controller-rhel8@sha256:80540cbd5cc7c2dc4d96173afede65b5f84ed1003949eaa22a8a5d68f568ba4f_amd64" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:80540cbd5cc7c2dc4d96173afede65b5f84ed1003949eaa22a8a5d68f568ba4f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:b3dadce83e92251c76172eade1751f52ae1547ac960ef318b21123aa083ba4c0_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-snapshot-controller-rhel8@sha256:b3dadce83e92251c76172eade1751f52ae1547ac960ef318b21123aa083ba4c0_s390x" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:b3dadce83e92251c76172eade1751f52ae1547ac960ef318b21123aa083ba4c0_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:162eab862188bab6b657d80181a28a3e36e93221ca0fc2b5840fc8ad0458ad64_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-snapshot-controller@sha256:162eab862188bab6b657d80181a28a3e36e93221ca0fc2b5840fc8ad0458ad64_arm64" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller@sha256:162eab862188bab6b657d80181a28a3e36e93221ca0fc2b5840fc8ad0458ad64_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:7c96a3187d805fe374cd4ce3c7e8af1ffd9a08f477192ce7faea41de21049e58_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-snapshot-controller@sha256:7c96a3187d805fe374cd4ce3c7e8af1ffd9a08f477192ce7faea41de21049e58_ppc64le" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller@sha256:7c96a3187d805fe374cd4ce3c7e8af1ffd9a08f477192ce7faea41de21049e58_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:80540cbd5cc7c2dc4d96173afede65b5f84ed1003949eaa22a8a5d68f568ba4f_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-snapshot-controller@sha256:80540cbd5cc7c2dc4d96173afede65b5f84ed1003949eaa22a8a5d68f568ba4f_amd64" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller@sha256:80540cbd5cc7c2dc4d96173afede65b5f84ed1003949eaa22a8a5d68f568ba4f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:b3dadce83e92251c76172eade1751f52ae1547ac960ef318b21123aa083ba4c0_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-snapshot-controller@sha256:b3dadce83e92251c76172eade1751f52ae1547ac960ef318b21123aa083ba4c0_s390x" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller@sha256:b3dadce83e92251c76172eade1751f52ae1547ac960ef318b21123aa083ba4c0_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:059542cfffed229d23dfaca710959f9a8ced4709e94a5176d7641623fda20fc4_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:059542cfffed229d23dfaca710959f9a8ced4709e94a5176d7641623fda20fc4_arm64" + }, + "product_reference": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:059542cfffed229d23dfaca710959f9a8ced4709e94a5176d7641623fda20fc4_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:4dc4591022cb5c3ed314da52deb9eb29e43e9b08fee5c10f20bbfaa0bad0acb9_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:4dc4591022cb5c3ed314da52deb9eb29e43e9b08fee5c10f20bbfaa0bad0acb9_s390x" + }, + "product_reference": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:4dc4591022cb5c3ed314da52deb9eb29e43e9b08fee5c10f20bbfaa0bad0acb9_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:a459101f3ddc74f87724093ba8445ab6e48282298384f30ab9ee37f67c8a726f_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:a459101f3ddc74f87724093ba8445ab6e48282298384f30ab9ee37f67c8a726f_ppc64le" + }, + "product_reference": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:a459101f3ddc74f87724093ba8445ab6e48282298384f30ab9ee37f67c8a726f_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:eb8e3af5c96159797039e3f171a6509a1c80a1196b53b6aef312ccfe5f5a7f07_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:eb8e3af5c96159797039e3f171a6509a1c80a1196b53b6aef312ccfe5f5a7f07_amd64" + }, + "product_reference": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:eb8e3af5c96159797039e3f171a6509a1c80a1196b53b6aef312ccfe5f5a7f07_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-deployer@sha256:08e752da2a8fb58ba7045a9b0a75c11f42bef8ebf8b9a3b69a523e258ff9209c_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-deployer@sha256:08e752da2a8fb58ba7045a9b0a75c11f42bef8ebf8b9a3b69a523e258ff9209c_amd64" + }, + "product_reference": "openshift4/ose-deployer@sha256:08e752da2a8fb58ba7045a9b0a75c11f42bef8ebf8b9a3b69a523e258ff9209c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-deployer@sha256:3977f6c493991fb580aab043956feec94266e42b6c43475cde3e119a33f990ca_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-deployer@sha256:3977f6c493991fb580aab043956feec94266e42b6c43475cde3e119a33f990ca_ppc64le" + }, + "product_reference": "openshift4/ose-deployer@sha256:3977f6c493991fb580aab043956feec94266e42b6c43475cde3e119a33f990ca_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-deployer@sha256:7d37579fb09e36aa450866fa8c5f9e9cb331cf5c6ec01bf4ea9c6ec393f84a12_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-deployer@sha256:7d37579fb09e36aa450866fa8c5f9e9cb331cf5c6ec01bf4ea9c6ec393f84a12_arm64" + }, + "product_reference": "openshift4/ose-deployer@sha256:7d37579fb09e36aa450866fa8c5f9e9cb331cf5c6ec01bf4ea9c6ec393f84a12_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-deployer@sha256:e1c7f57c8358b75c3ffc8989be080256ea33a67de8710f04c42e3799d00feb72_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-deployer@sha256:e1c7f57c8358b75c3ffc8989be080256ea33a67de8710f04c42e3799d00feb72_s390x" + }, + "product_reference": "openshift4/ose-deployer@sha256:e1c7f57c8358b75c3ffc8989be080256ea33a67de8710f04c42e3799d00feb72_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-builder@sha256:1faddea6a8d9f87ea715c2c5c4b0e3f08753e6e39d8dfcd44f13e073e37ceacb_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-docker-builder@sha256:1faddea6a8d9f87ea715c2c5c4b0e3f08753e6e39d8dfcd44f13e073e37ceacb_ppc64le" + }, + "product_reference": "openshift4/ose-docker-builder@sha256:1faddea6a8d9f87ea715c2c5c4b0e3f08753e6e39d8dfcd44f13e073e37ceacb_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-builder@sha256:53c435df3b0e7f7a8c9f7607b559a1629761d67b6b0130ec5e99482eec9dc215_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-docker-builder@sha256:53c435df3b0e7f7a8c9f7607b559a1629761d67b6b0130ec5e99482eec9dc215_arm64" + }, + "product_reference": "openshift4/ose-docker-builder@sha256:53c435df3b0e7f7a8c9f7607b559a1629761d67b6b0130ec5e99482eec9dc215_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-builder@sha256:d18b9770a7b93b9592afa5991c65b6ab8d7152476d381a0feefd809a7dc38ef5_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-docker-builder@sha256:d18b9770a7b93b9592afa5991c65b6ab8d7152476d381a0feefd809a7dc38ef5_s390x" + }, + "product_reference": "openshift4/ose-docker-builder@sha256:d18b9770a7b93b9592afa5991c65b6ab8d7152476d381a0feefd809a7dc38ef5_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-builder@sha256:e8f08646b267cfda9f372edc336b11ce0b30db93bc1e29179c9e24b4c08740b8_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-docker-builder@sha256:e8f08646b267cfda9f372edc336b11ce0b30db93bc1e29179c9e24b4c08740b8_amd64" + }, + "product_reference": "openshift4/ose-docker-builder@sha256:e8f08646b267cfda9f372edc336b11ce0b30db93bc1e29179c9e24b4c08740b8_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-registry@sha256:0640aaf138152fd5237fd79d952bae75525a3c562b6c2095b81483596bcae019_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-docker-registry@sha256:0640aaf138152fd5237fd79d952bae75525a3c562b6c2095b81483596bcae019_arm64" + }, + "product_reference": "openshift4/ose-docker-registry@sha256:0640aaf138152fd5237fd79d952bae75525a3c562b6c2095b81483596bcae019_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-registry@sha256:39d85dc2793c901e13b20bf0224ae54d4b23c272e54c02742cd0b8541e4e7fac_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-docker-registry@sha256:39d85dc2793c901e13b20bf0224ae54d4b23c272e54c02742cd0b8541e4e7fac_s390x" + }, + "product_reference": "openshift4/ose-docker-registry@sha256:39d85dc2793c901e13b20bf0224ae54d4b23c272e54c02742cd0b8541e4e7fac_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-registry@sha256:858cff8f44049b60f3f196efecf59b58354dae2f7c012072ca9ddffb5df3d4ca_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-docker-registry@sha256:858cff8f44049b60f3f196efecf59b58354dae2f7c012072ca9ddffb5df3d4ca_amd64" + }, + "product_reference": "openshift4/ose-docker-registry@sha256:858cff8f44049b60f3f196efecf59b58354dae2f7c012072ca9ddffb5df3d4ca_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-registry@sha256:bcb99efe6b5411d470527e3f0a1e6bae35776e08622500ff8211ed6d7c2b30c8_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-docker-registry@sha256:bcb99efe6b5411d470527e3f0a1e6bae35776e08622500ff8211ed6d7c2b30c8_ppc64le" + }, + "product_reference": "openshift4/ose-docker-registry@sha256:bcb99efe6b5411d470527e3f0a1e6bae35776e08622500ff8211ed6d7c2b30c8_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-etcd@sha256:09ad16e769ae8555411a8528548e050f077e51d83907541a3fe11f1c6aa56b35_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-etcd@sha256:09ad16e769ae8555411a8528548e050f077e51d83907541a3fe11f1c6aa56b35_arm64" + }, + "product_reference": "openshift4/ose-etcd@sha256:09ad16e769ae8555411a8528548e050f077e51d83907541a3fe11f1c6aa56b35_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-etcd@sha256:a37e5fcb058911022fbc3e6589c1b7414d746decffb3ba2788249e011190cca1_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-etcd@sha256:a37e5fcb058911022fbc3e6589c1b7414d746decffb3ba2788249e011190cca1_amd64" + }, + "product_reference": "openshift4/ose-etcd@sha256:a37e5fcb058911022fbc3e6589c1b7414d746decffb3ba2788249e011190cca1_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-etcd@sha256:c54a9325dabbf0d766c713013a013ea714bd01792dfa7335221dbf97ea1ff6a2_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-etcd@sha256:c54a9325dabbf0d766c713013a013ea714bd01792dfa7335221dbf97ea1ff6a2_s390x" + }, + "product_reference": "openshift4/ose-etcd@sha256:c54a9325dabbf0d766c713013a013ea714bd01792dfa7335221dbf97ea1ff6a2_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-etcd@sha256:d707650d52688cc79980ee19c8accc44aa1859c7b23909bfb681184b422ebbe7_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-etcd@sha256:d707650d52688cc79980ee19c8accc44aa1859c7b23909bfb681184b422ebbe7_ppc64le" + }, + "product_reference": "openshift4/ose-etcd@sha256:d707650d52688cc79980ee19c8accc44aa1859c7b23909bfb681184b422ebbe7_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:364432001e37c49ce6ef07cd95d355d4f1472775d25f1f6d282deec09fa9e7f0_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:364432001e37c49ce6ef07cd95d355d4f1472775d25f1f6d282deec09fa9e7f0_ppc64le" + }, + "product_reference": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:364432001e37c49ce6ef07cd95d355d4f1472775d25f1f6d282deec09fa9e7f0_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:d69c2ef0c865918756f342d4a875033fe56ba55a2b682a81dbf5de8bbe4d772b_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:d69c2ef0c865918756f342d4a875033fe56ba55a2b682a81dbf5de8bbe4d772b_amd64" + }, + "product_reference": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:d69c2ef0c865918756f342d4a875033fe56ba55a2b682a81dbf5de8bbe4d772b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:9483af7706a1e7fb49bc5f00709a5fd56ca5e1887a0735faf67877317fbe0db7_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:9483af7706a1e7fb49bc5f00709a5fd56ca5e1887a0735faf67877317fbe0db7_amd64" + }, + "product_reference": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:9483af7706a1e7fb49bc5f00709a5fd56ca5e1887a0735faf67877317fbe0db7_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:f577985a7d1f854978dfda92d7790fd3f68eedcb09dc09c9f4731bd7c27daffb_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:f577985a7d1f854978dfda92d7790fd3f68eedcb09dc09c9f4731bd7c27daffb_ppc64le" + }, + "product_reference": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:f577985a7d1f854978dfda92d7790fd3f68eedcb09dc09c9f4731bd7c27daffb_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:5d4780aba5f5481eb1b5a46efe46ee34b49d8ecb1ce20ed9391342e2920fec12_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:5d4780aba5f5481eb1b5a46efe46ee34b49d8ecb1ce20ed9391342e2920fec12_amd64" + }, + "product_reference": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:5d4780aba5f5481eb1b5a46efe46ee34b49d8ecb1ce20ed9391342e2920fec12_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:c99b5703ebb11752c880af1b5ceacd654fd0a1e783bb148dd10582283c5ef366_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:c99b5703ebb11752c880af1b5ceacd654fd0a1e783bb148dd10582283c5ef366_ppc64le" + }, + "product_reference": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:c99b5703ebb11752c880af1b5ceacd654fd0a1e783bb148dd10582283c5ef366_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:27f3ebabd8dd2e866fbf2403e850d6fd9cbd79fe0f77d6c99aa06453bcdc4812_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:27f3ebabd8dd2e866fbf2403e850d6fd9cbd79fe0f77d6c99aa06453bcdc4812_amd64" + }, + "product_reference": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:27f3ebabd8dd2e866fbf2403e850d6fd9cbd79fe0f77d6c99aa06453bcdc4812_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:5a25e75195a5736de688d33999cf8d1f08905265368f2e87ee40ae7c89961f4c_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:5a25e75195a5736de688d33999cf8d1f08905265368f2e87ee40ae7c89961f4c_ppc64le" + }, + "product_reference": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:5a25e75195a5736de688d33999cf8d1f08905265368f2e87ee40ae7c89961f4c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-haproxy-router@sha256:3557db7c1c263782bebd8fc09e5540b25d466309bedb415b5cae148d4cd5ef1f_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-haproxy-router@sha256:3557db7c1c263782bebd8fc09e5540b25d466309bedb415b5cae148d4cd5ef1f_ppc64le" + }, + "product_reference": "openshift4/ose-haproxy-router@sha256:3557db7c1c263782bebd8fc09e5540b25d466309bedb415b5cae148d4cd5ef1f_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-haproxy-router@sha256:61512f7c5c24b3bedf2f078dc8e4edd317ea03ce1990dbc49f3179703e0f6608_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-haproxy-router@sha256:61512f7c5c24b3bedf2f078dc8e4edd317ea03ce1990dbc49f3179703e0f6608_arm64" + }, + "product_reference": "openshift4/ose-haproxy-router@sha256:61512f7c5c24b3bedf2f078dc8e4edd317ea03ce1990dbc49f3179703e0f6608_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-haproxy-router@sha256:6c585332eaab98a09f17432265592e47304dcebe45d37541b00eedadf08707a9_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-haproxy-router@sha256:6c585332eaab98a09f17432265592e47304dcebe45d37541b00eedadf08707a9_amd64" + }, + "product_reference": "openshift4/ose-haproxy-router@sha256:6c585332eaab98a09f17432265592e47304dcebe45d37541b00eedadf08707a9_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-haproxy-router@sha256:acafb1718e39720cd8ff6192904fb604f2e449bc4cb4c4d4cc52947230f351f2_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-haproxy-router@sha256:acafb1718e39720cd8ff6192904fb604f2e449bc4cb4c4d4cc52947230f351f2_s390x" + }, + "product_reference": "openshift4/ose-haproxy-router@sha256:acafb1718e39720cd8ff6192904fb604f2e449bc4cb4c4d4cc52947230f351f2_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hyperkube@sha256:6f57bc5bf8618511a849f4655f4502eb262962e9e8f545e71c3fa5b23075abca_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-hyperkube@sha256:6f57bc5bf8618511a849f4655f4502eb262962e9e8f545e71c3fa5b23075abca_arm64" + }, + "product_reference": "openshift4/ose-hyperkube@sha256:6f57bc5bf8618511a849f4655f4502eb262962e9e8f545e71c3fa5b23075abca_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hyperkube@sha256:c11117311902f2ddeb41829f1cfa43afd89c9fc2c2de1b18f878c1bb8008157f_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-hyperkube@sha256:c11117311902f2ddeb41829f1cfa43afd89c9fc2c2de1b18f878c1bb8008157f_ppc64le" + }, + "product_reference": "openshift4/ose-hyperkube@sha256:c11117311902f2ddeb41829f1cfa43afd89c9fc2c2de1b18f878c1bb8008157f_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hyperkube@sha256:e48844a02b2685b8bd9f1e5c7c0f0f5521620ee82054e86702434567c881b454_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-hyperkube@sha256:e48844a02b2685b8bd9f1e5c7c0f0f5521620ee82054e86702434567c881b454_amd64" + }, + "product_reference": "openshift4/ose-hyperkube@sha256:e48844a02b2685b8bd9f1e5c7c0f0f5521620ee82054e86702434567c881b454_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hyperkube@sha256:fdff05ca1ae2369ef40723af0ba6c8a3f03df8613ab37a818cc80a8f5ad996b7_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-hyperkube@sha256:fdff05ca1ae2369ef40723af0ba6c8a3f03df8613ab37a818cc80a8f5ad996b7_s390x" + }, + "product_reference": "openshift4/ose-hyperkube@sha256:fdff05ca1ae2369ef40723af0ba6c8a3f03df8613ab37a818cc80a8f5ad996b7_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hypershift-rhel8@sha256:1d8fb2a65636be72daa4952bfbfe1a333f5d06c6ad4d8ae90d33de7676a1d827_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-hypershift-rhel8@sha256:1d8fb2a65636be72daa4952bfbfe1a333f5d06c6ad4d8ae90d33de7676a1d827_s390x" + }, + "product_reference": "openshift4/ose-hypershift-rhel8@sha256:1d8fb2a65636be72daa4952bfbfe1a333f5d06c6ad4d8ae90d33de7676a1d827_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hypershift-rhel8@sha256:67557eeb6590a5e7e614726a7e0e1091b367d766981a153f578bae611d2d5cef_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-hypershift-rhel8@sha256:67557eeb6590a5e7e614726a7e0e1091b367d766981a153f578bae611d2d5cef_amd64" + }, + "product_reference": "openshift4/ose-hypershift-rhel8@sha256:67557eeb6590a5e7e614726a7e0e1091b367d766981a153f578bae611d2d5cef_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hypershift-rhel8@sha256:8824b08450531d02f28983cdf38bbf1ca5aaaee0aead79f82aeb0b054c9c932c_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-hypershift-rhel8@sha256:8824b08450531d02f28983cdf38bbf1ca5aaaee0aead79f82aeb0b054c9c932c_ppc64le" + }, + "product_reference": "openshift4/ose-hypershift-rhel8@sha256:8824b08450531d02f28983cdf38bbf1ca5aaaee0aead79f82aeb0b054c9c932c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hypershift-rhel8@sha256:fca6dc942d60172dd85e244a46cf342c0532c87f89732ae599be6771efb0bd32_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-hypershift-rhel8@sha256:fca6dc942d60172dd85e244a46cf342c0532c87f89732ae599be6771efb0bd32_arm64" + }, + "product_reference": "openshift4/ose-hypershift-rhel8@sha256:fca6dc942d60172dd85e244a46cf342c0532c87f89732ae599be6771efb0bd32_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:ed002cebd55aa75f937566befb5cdb8d56e63aab8f31bce99730ecf20cc34b1d_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:ed002cebd55aa75f937566befb5cdb8d56e63aab8f31bce99730ecf20cc34b1d_amd64" + }, + "product_reference": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:ed002cebd55aa75f937566befb5cdb8d56e63aab8f31bce99730ecf20cc34b1d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:24f96458798b4157a2a98100f264b2ff1eb7a565d6005ed93db9e88cfa20c9d9_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:24f96458798b4157a2a98100f264b2ff1eb7a565d6005ed93db9e88cfa20c9d9_amd64" + }, + "product_reference": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:24f96458798b4157a2a98100f264b2ff1eb7a565d6005ed93db9e88cfa20c9d9_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:0e4342242c4292f44fa8fadec25d2bd4d85a82436e6d690b3b77aca301dd282c_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:0e4342242c4292f44fa8fadec25d2bd4d85a82436e6d690b3b77aca301dd282c_amd64" + }, + "product_reference": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:0e4342242c4292f44fa8fadec25d2bd4d85a82436e6d690b3b77aca301dd282c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:c7a9c116cb9ddffdb8a846e9119479be4235d8aed72c56768c9b6c2ace662383_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:c7a9c116cb9ddffdb8a846e9119479be4235d8aed72c56768c9b6c2ace662383_amd64" + }, + "product_reference": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:c7a9c116cb9ddffdb8a846e9119479be4235d8aed72c56768c9b6c2ace662383_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2ff93e2d1880a46075eb77a889897190d401f659d6bbcee0215094a0184cde79_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2ff93e2d1880a46075eb77a889897190d401f659d6bbcee0215094a0184cde79_amd64" + }, + "product_reference": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:2ff93e2d1880a46075eb77a889897190d401f659d6bbcee0215094a0184cde79_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:a14467cbc387c9335944c956c93a73ca9c2ed131375058a01988aa7b9ced6832_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:a14467cbc387c9335944c956c93a73ca9c2ed131375058a01988aa7b9ced6832_ppc64le" + }, + "product_reference": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:a14467cbc387c9335944c956c93a73ca9c2ed131375058a01988aa7b9ced6832_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:2f682dfb5cceeb556c5fc75fc82b744dea367db07c5922e3987557ec2725d3ea_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:2f682dfb5cceeb556c5fc75fc82b744dea367db07c5922e3987557ec2725d3ea_amd64" + }, + "product_reference": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:2f682dfb5cceeb556c5fc75fc82b744dea367db07c5922e3987557ec2725d3ea_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-image-customization-controller-rhel8@sha256:125debe4fb4d1ea42fb6157c161c11b944b1521f0d762b656e60b8c5c101f6fe_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-image-customization-controller-rhel8@sha256:125debe4fb4d1ea42fb6157c161c11b944b1521f0d762b656e60b8c5c101f6fe_arm64" + }, + "product_reference": "openshift4/ose-image-customization-controller-rhel8@sha256:125debe4fb4d1ea42fb6157c161c11b944b1521f0d762b656e60b8c5c101f6fe_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-image-customization-controller-rhel8@sha256:e5921c06dcdd3753397c2d6893ecc7abd615c562db40322e47590ad660eb3e00_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-image-customization-controller-rhel8@sha256:e5921c06dcdd3753397c2d6893ecc7abd615c562db40322e47590ad660eb3e00_amd64" + }, + "product_reference": "openshift4/ose-image-customization-controller-rhel8@sha256:e5921c06dcdd3753397c2d6893ecc7abd615c562db40322e47590ad660eb3e00_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:6e84bcbf586464e849fb3b022ed760bc767e78f0f1e6ab8a0dcab3b1af015469_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-insights-rhel8-operator@sha256:6e84bcbf586464e849fb3b022ed760bc767e78f0f1e6ab8a0dcab3b1af015469_s390x" + }, + "product_reference": "openshift4/ose-insights-rhel8-operator@sha256:6e84bcbf586464e849fb3b022ed760bc767e78f0f1e6ab8a0dcab3b1af015469_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:771bfdf95fa439978b16148a91ea92dd1b0aca7a25c8bc262374bafd172f210c_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-insights-rhel8-operator@sha256:771bfdf95fa439978b16148a91ea92dd1b0aca7a25c8bc262374bafd172f210c_ppc64le" + }, + "product_reference": "openshift4/ose-insights-rhel8-operator@sha256:771bfdf95fa439978b16148a91ea92dd1b0aca7a25c8bc262374bafd172f210c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:83b1e0bbec77ec6064c1f076d727b17119b4d768b8b7218f3aba18ae64668f57_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-insights-rhel8-operator@sha256:83b1e0bbec77ec6064c1f076d727b17119b4d768b8b7218f3aba18ae64668f57_amd64" + }, + "product_reference": "openshift4/ose-insights-rhel8-operator@sha256:83b1e0bbec77ec6064c1f076d727b17119b4d768b8b7218f3aba18ae64668f57_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:db02240dc42221cb6c4581de64ee4cec1595601687114e287fcb3cca828c6584_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-insights-rhel8-operator@sha256:db02240dc42221cb6c4581de64ee4cec1595601687114e287fcb3cca828c6584_arm64" + }, + "product_reference": "openshift4/ose-insights-rhel8-operator@sha256:db02240dc42221cb6c4581de64ee4cec1595601687114e287fcb3cca828c6584_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer-artifacts@sha256:3ffd4a1b460ddada69c2fa058af32b0f1179343e834a765557ec14b37bbd2b0b_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-installer-artifacts@sha256:3ffd4a1b460ddada69c2fa058af32b0f1179343e834a765557ec14b37bbd2b0b_ppc64le" + }, + "product_reference": "openshift4/ose-installer-artifacts@sha256:3ffd4a1b460ddada69c2fa058af32b0f1179343e834a765557ec14b37bbd2b0b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer-artifacts@sha256:627636e052e6d36c1aeab38d5a198763eaa2a9e8b0eb2263873219a452c5c3dd_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-installer-artifacts@sha256:627636e052e6d36c1aeab38d5a198763eaa2a9e8b0eb2263873219a452c5c3dd_s390x" + }, + "product_reference": "openshift4/ose-installer-artifacts@sha256:627636e052e6d36c1aeab38d5a198763eaa2a9e8b0eb2263873219a452c5c3dd_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer-artifacts@sha256:cf3f4f43177db53794e070caa36e10146da368643be5ecbbfdc0bfc7cad9bc3e_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-installer-artifacts@sha256:cf3f4f43177db53794e070caa36e10146da368643be5ecbbfdc0bfc7cad9bc3e_amd64" + }, + "product_reference": "openshift4/ose-installer-artifacts@sha256:cf3f4f43177db53794e070caa36e10146da368643be5ecbbfdc0bfc7cad9bc3e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer-artifacts@sha256:d9c5b90903b52de1497c142035b480fceefd8ac7866d3c0046f5ffcad42fad1a_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-installer-artifacts@sha256:d9c5b90903b52de1497c142035b480fceefd8ac7866d3c0046f5ffcad42fad1a_arm64" + }, + "product_reference": "openshift4/ose-installer-artifacts@sha256:d9c5b90903b52de1497c142035b480fceefd8ac7866d3c0046f5ffcad42fad1a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer@sha256:2affe95bac92f414157c7436195d471a67653dbd8a15a6ba078ce0400b19e3a7_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-installer@sha256:2affe95bac92f414157c7436195d471a67653dbd8a15a6ba078ce0400b19e3a7_s390x" + }, + "product_reference": "openshift4/ose-installer@sha256:2affe95bac92f414157c7436195d471a67653dbd8a15a6ba078ce0400b19e3a7_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer@sha256:367011acf2376b3aa1f63244728aa2f12220424ad0dfae63b17be0161723b7b1_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-installer@sha256:367011acf2376b3aa1f63244728aa2f12220424ad0dfae63b17be0161723b7b1_ppc64le" + }, + "product_reference": "openshift4/ose-installer@sha256:367011acf2376b3aa1f63244728aa2f12220424ad0dfae63b17be0161723b7b1_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer@sha256:c2a7a81089733938f90aee97e35694a31b934d274ea1f3d348e7f820503e165d_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-installer@sha256:c2a7a81089733938f90aee97e35694a31b934d274ea1f3d348e7f820503e165d_arm64" + }, + "product_reference": "openshift4/ose-installer@sha256:c2a7a81089733938f90aee97e35694a31b934d274ea1f3d348e7f820503e165d_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer@sha256:d2e01df2322e8bdae3613cb17a1a2d9ba675a6ca07f365e472159bfb88cc3e63_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-installer@sha256:d2e01df2322e8bdae3613cb17a1a2d9ba675a6ca07f365e472159bfb88cc3e63_amd64" + }, + "product_reference": "openshift4/ose-installer@sha256:d2e01df2322e8bdae3613cb17a1a2d9ba675a6ca07f365e472159bfb88cc3e63_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:3cade03b16237889606ab1e3b1b7fc12d160cacc36ae3df2de05d281bccc7f20_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-k8s-prometheus-adapter@sha256:3cade03b16237889606ab1e3b1b7fc12d160cacc36ae3df2de05d281bccc7f20_amd64" + }, + "product_reference": "openshift4/ose-k8s-prometheus-adapter@sha256:3cade03b16237889606ab1e3b1b7fc12d160cacc36ae3df2de05d281bccc7f20_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:7d1a74a29fda9f0d106f30453c15f3d5485d9e6fc3552c736e18484603094629_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-k8s-prometheus-adapter@sha256:7d1a74a29fda9f0d106f30453c15f3d5485d9e6fc3552c736e18484603094629_arm64" + }, + "product_reference": "openshift4/ose-k8s-prometheus-adapter@sha256:7d1a74a29fda9f0d106f30453c15f3d5485d9e6fc3552c736e18484603094629_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:889de52bdf76278993115cc3d01d998573d9a9472bea3e9b4ca967304234a1c7_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-k8s-prometheus-adapter@sha256:889de52bdf76278993115cc3d01d998573d9a9472bea3e9b4ca967304234a1c7_ppc64le" + }, + "product_reference": "openshift4/ose-k8s-prometheus-adapter@sha256:889de52bdf76278993115cc3d01d998573d9a9472bea3e9b4ca967304234a1c7_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:f13d3b58d8a81afe40d1b759547e345bef7cb1e5b0d7ecefdfb78d12a6a24bd4_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-k8s-prometheus-adapter@sha256:f13d3b58d8a81afe40d1b759547e345bef7cb1e5b0d7ecefdfb78d12a6a24bd4_s390x" + }, + "product_reference": "openshift4/ose-k8s-prometheus-adapter@sha256:f13d3b58d8a81afe40d1b759547e345bef7cb1e5b0d7ecefdfb78d12a6a24bd4_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-proxy@sha256:3ce8887b98c8d55615d830f1335ee102876fb58a0dfc3526e56c44fee409eefc_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-kube-proxy@sha256:3ce8887b98c8d55615d830f1335ee102876fb58a0dfc3526e56c44fee409eefc_s390x" + }, + "product_reference": "openshift4/ose-kube-proxy@sha256:3ce8887b98c8d55615d830f1335ee102876fb58a0dfc3526e56c44fee409eefc_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-proxy@sha256:4138f44446e6cff843860ec7a452e8b812c761f2854b5784560b472465fec496_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-kube-proxy@sha256:4138f44446e6cff843860ec7a452e8b812c761f2854b5784560b472465fec496_amd64" + }, + "product_reference": "openshift4/ose-kube-proxy@sha256:4138f44446e6cff843860ec7a452e8b812c761f2854b5784560b472465fec496_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-proxy@sha256:d62151d53d7c0034849052b8a03c1e2710f8ac7396c110c69f8807e757005b6b_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-kube-proxy@sha256:d62151d53d7c0034849052b8a03c1e2710f8ac7396c110c69f8807e757005b6b_ppc64le" + }, + "product_reference": "openshift4/ose-kube-proxy@sha256:d62151d53d7c0034849052b8a03c1e2710f8ac7396c110c69f8807e757005b6b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-proxy@sha256:f29dc1c36654f29d960786f749d7e5182c7681dc70111679fc934d4340df6269_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-kube-proxy@sha256:f29dc1c36654f29d960786f749d7e5182c7681dc70111679fc934d4340df6269_arm64" + }, + "product_reference": "openshift4/ose-kube-proxy@sha256:f29dc1c36654f29d960786f749d7e5182c7681dc70111679fc934d4340df6269_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:22ffff36477cbc38da7ed0af6d2ee070eb9c2d290239366147efb33fd40e9b69_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-kube-rbac-proxy@sha256:22ffff36477cbc38da7ed0af6d2ee070eb9c2d290239366147efb33fd40e9b69_s390x" + }, + "product_reference": "openshift4/ose-kube-rbac-proxy@sha256:22ffff36477cbc38da7ed0af6d2ee070eb9c2d290239366147efb33fd40e9b69_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:89935c004304e76232cbfd42d85cd1cf68218753ac47bb607885def38522b33e_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-kube-rbac-proxy@sha256:89935c004304e76232cbfd42d85cd1cf68218753ac47bb607885def38522b33e_ppc64le" + }, + "product_reference": "openshift4/ose-kube-rbac-proxy@sha256:89935c004304e76232cbfd42d85cd1cf68218753ac47bb607885def38522b33e_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:bda0bdf5c4318d708df42eb0d34a54e5f0e6a5dff7a54353d89defa6c7f00d83_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-kube-rbac-proxy@sha256:bda0bdf5c4318d708df42eb0d34a54e5f0e6a5dff7a54353d89defa6c7f00d83_arm64" + }, + "product_reference": "openshift4/ose-kube-rbac-proxy@sha256:bda0bdf5c4318d708df42eb0d34a54e5f0e6a5dff7a54353d89defa6c7f00d83_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:d63bf13113fa7224bdeb21f4b07d53dce96f9fcc955048b870a97e7c1d054e11_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-kube-rbac-proxy@sha256:d63bf13113fa7224bdeb21f4b07d53dce96f9fcc955048b870a97e7c1d054e11_amd64" + }, + "product_reference": "openshift4/ose-kube-rbac-proxy@sha256:d63bf13113fa7224bdeb21f4b07d53dce96f9fcc955048b870a97e7c1d054e11_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-state-metrics@sha256:1aa7ce45a2d0808f4ab524b93b70f5f627fdfb1feb98e4fd8f846cf6159cb13b_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-kube-state-metrics@sha256:1aa7ce45a2d0808f4ab524b93b70f5f627fdfb1feb98e4fd8f846cf6159cb13b_ppc64le" + }, + "product_reference": "openshift4/ose-kube-state-metrics@sha256:1aa7ce45a2d0808f4ab524b93b70f5f627fdfb1feb98e4fd8f846cf6159cb13b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-state-metrics@sha256:7a7a6fd07ff27961d6fcffd2c0110d414b1410ba02ae147e830325314ce08253_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-kube-state-metrics@sha256:7a7a6fd07ff27961d6fcffd2c0110d414b1410ba02ae147e830325314ce08253_s390x" + }, + "product_reference": "openshift4/ose-kube-state-metrics@sha256:7a7a6fd07ff27961d6fcffd2c0110d414b1410ba02ae147e830325314ce08253_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-state-metrics@sha256:bb0303469ff9ac257efe236775f5c746458e3d55126666de80e460e451dfa383_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-kube-state-metrics@sha256:bb0303469ff9ac257efe236775f5c746458e3d55126666de80e460e451dfa383_amd64" + }, + "product_reference": "openshift4/ose-kube-state-metrics@sha256:bb0303469ff9ac257efe236775f5c746458e3d55126666de80e460e451dfa383_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-state-metrics@sha256:bee92b773f7079adc5ce7e98d7fc8596d57a12421baa5a5dcfcb4a37621bfdea_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-kube-state-metrics@sha256:bee92b773f7079adc5ce7e98d7fc8596d57a12421baa5a5dcfcb4a37621bfdea_arm64" + }, + "product_reference": "openshift4/ose-kube-state-metrics@sha256:bee92b773f7079adc5ce7e98d7fc8596d57a12421baa5a5dcfcb4a37621bfdea_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:3b9c21fce6180f0f0c894e2240d819e1162c1a67d1de3031c1b3ae010052db5a_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-kube-storage-version-migrator-rhel8@sha256:3b9c21fce6180f0f0c894e2240d819e1162c1a67d1de3031c1b3ae010052db5a_s390x" + }, + "product_reference": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:3b9c21fce6180f0f0c894e2240d819e1162c1a67d1de3031c1b3ae010052db5a_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:4ae688391bcb77f2cbb91e85f551bcea67425ef990d28a6f7d9bbbf0bcf88880_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-kube-storage-version-migrator-rhel8@sha256:4ae688391bcb77f2cbb91e85f551bcea67425ef990d28a6f7d9bbbf0bcf88880_arm64" + }, + "product_reference": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:4ae688391bcb77f2cbb91e85f551bcea67425ef990d28a6f7d9bbbf0bcf88880_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:56976be04e4573759d1d21570479256bc3f16fcd318b777f548bb398b79cb849_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-kube-storage-version-migrator-rhel8@sha256:56976be04e4573759d1d21570479256bc3f16fcd318b777f548bb398b79cb849_amd64" + }, + "product_reference": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:56976be04e4573759d1d21570479256bc3f16fcd318b777f548bb398b79cb849_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:fe7e2db95379f6b6cf19e0f060124130ff4a8a204eb19bc2e1e6222244f10e06_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-kube-storage-version-migrator-rhel8@sha256:fe7e2db95379f6b6cf19e0f060124130ff4a8a204eb19bc2e1e6222244f10e06_ppc64le" + }, + "product_reference": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:fe7e2db95379f6b6cf19e0f060124130ff4a8a204eb19bc2e1e6222244f10e06_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:0f0fbfc1d5d16c5a4e66578d106f76d3d0d8cac6db5dd17ce853446f8c92f247_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:0f0fbfc1d5d16c5a4e66578d106f76d3d0d8cac6db5dd17ce853446f8c92f247_ppc64le" + }, + "product_reference": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:0f0fbfc1d5d16c5a4e66578d106f76d3d0d8cac6db5dd17ce853446f8c92f247_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:a798d0f1b55d7d4cc74a1cddcea1d3c6f734eef9c478854e1f45e39ce33c4223_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:a798d0f1b55d7d4cc74a1cddcea1d3c6f734eef9c478854e1f45e39ce33c4223_s390x" + }, + "product_reference": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:a798d0f1b55d7d4cc74a1cddcea1d3c6f734eef9c478854e1f45e39ce33c4223_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:cb49feebf2be187e5f91e48c57c9854020da00f8bf0877d791f1c0f35628b07e_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:cb49feebf2be187e5f91e48c57c9854020da00f8bf0877d791f1c0f35628b07e_arm64" + }, + "product_reference": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:cb49feebf2be187e5f91e48c57c9854020da00f8bf0877d791f1c0f35628b07e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:d3e0c66fe9509d928816fb77f097455ac3ad32ff9bebf766e1dd78da66241581_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:d3e0c66fe9509d928816fb77f097455ac3ad32ff9bebf766e1dd78da66241581_amd64" + }, + "product_reference": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:d3e0c66fe9509d928816fb77f097455ac3ad32ff9bebf766e1dd78da66241581_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:020a4e781e2e14fada0293855b788ab25c01a3de4b56a287329642abb7b9adde_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-kuryr-cni-rhel8@sha256:020a4e781e2e14fada0293855b788ab25c01a3de4b56a287329642abb7b9adde_amd64" + }, + "product_reference": "openshift4/ose-kuryr-cni-rhel8@sha256:020a4e781e2e14fada0293855b788ab25c01a3de4b56a287329642abb7b9adde_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:f67df32a33dbecd0c8397606415a428afa9ef65d4f25a24e7ff97ff90214d803_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-kuryr-cni-rhel8@sha256:f67df32a33dbecd0c8397606415a428afa9ef65d4f25a24e7ff97ff90214d803_ppc64le" + }, + "product_reference": "openshift4/ose-kuryr-cni-rhel8@sha256:f67df32a33dbecd0c8397606415a428afa9ef65d4f25a24e7ff97ff90214d803_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:579827bf1d6efeb2375ef7835b77ec751faa7ae35ef3cd272f5d04e39fd5f653_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-libvirt-machine-controllers@sha256:579827bf1d6efeb2375ef7835b77ec751faa7ae35ef3cd272f5d04e39fd5f653_ppc64le" + }, + "product_reference": "openshift4/ose-libvirt-machine-controllers@sha256:579827bf1d6efeb2375ef7835b77ec751faa7ae35ef3cd272f5d04e39fd5f653_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:7d5f6a770bc97e13eb2e1188dbfb8b4e522ad5ef667784ce361055bc4e00d529_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-libvirt-machine-controllers@sha256:7d5f6a770bc97e13eb2e1188dbfb8b4e522ad5ef667784ce361055bc4e00d529_amd64" + }, + "product_reference": "openshift4/ose-libvirt-machine-controllers@sha256:7d5f6a770bc97e13eb2e1188dbfb8b4e522ad5ef667784ce361055bc4e00d529_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:c522c54c2388c7903314c4f0dd174d81afdba8936bd1236b72cefeb5c0b9ef1e_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-libvirt-machine-controllers@sha256:c522c54c2388c7903314c4f0dd174d81afdba8936bd1236b72cefeb5c0b9ef1e_s390x" + }, + "product_reference": "openshift4/ose-libvirt-machine-controllers@sha256:c522c54c2388c7903314c4f0dd174d81afdba8936bd1236b72cefeb5c0b9ef1e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:cda667f8012a9dec78e291ddc14375d645c23be38159f0b9b7488abef1648d80_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-libvirt-machine-controllers@sha256:cda667f8012a9dec78e291ddc14375d645c23be38159f0b9b7488abef1648d80_arm64" + }, + "product_reference": "openshift4/ose-libvirt-machine-controllers@sha256:cda667f8012a9dec78e291ddc14375d645c23be38159f0b9b7488abef1648d80_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-operator@sha256:4dd43648b788fcf9c81048238b160cc3606c9d3b8cb3b2aa13cddbb859509731_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-machine-api-operator@sha256:4dd43648b788fcf9c81048238b160cc3606c9d3b8cb3b2aa13cddbb859509731_ppc64le" + }, + "product_reference": "openshift4/ose-machine-api-operator@sha256:4dd43648b788fcf9c81048238b160cc3606c9d3b8cb3b2aa13cddbb859509731_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-operator@sha256:5430f425fff28b53918e881f29c8e6e329b5b75d018d6185279b5f7f809dcc84_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-machine-api-operator@sha256:5430f425fff28b53918e881f29c8e6e329b5b75d018d6185279b5f7f809dcc84_arm64" + }, + "product_reference": "openshift4/ose-machine-api-operator@sha256:5430f425fff28b53918e881f29c8e6e329b5b75d018d6185279b5f7f809dcc84_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-operator@sha256:e09d9bf09c9b3e0f6692110d8f538105b62d86f555be538ba0643662756c2994_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-machine-api-operator@sha256:e09d9bf09c9b3e0f6692110d8f538105b62d86f555be538ba0643662756c2994_amd64" + }, + "product_reference": "openshift4/ose-machine-api-operator@sha256:e09d9bf09c9b3e0f6692110d8f538105b62d86f555be538ba0643662756c2994_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-operator@sha256:f92ebea2d687a86b94db442f71c2f9d2854c12e59b7d2a9098bb3f84770e098c_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-machine-api-operator@sha256:f92ebea2d687a86b94db442f71c2f9d2854c12e59b7d2a9098bb3f84770e098c_s390x" + }, + "product_reference": "openshift4/ose-machine-api-operator@sha256:f92ebea2d687a86b94db442f71c2f9d2854c12e59b7d2a9098bb3f84770e098c_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:34e330d81f8b7d0effe073de732e6664718d047fbd0df6045f87f4453d7b5d0b_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-machine-api-provider-aws-rhel8@sha256:34e330d81f8b7d0effe073de732e6664718d047fbd0df6045f87f4453d7b5d0b_amd64" + }, + "product_reference": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:34e330d81f8b7d0effe073de732e6664718d047fbd0df6045f87f4453d7b5d0b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:873875706f3a6d48f30416a08f0a2a6d484f9184ebd8c31975011ff641d69f76_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-machine-api-provider-aws-rhel8@sha256:873875706f3a6d48f30416a08f0a2a6d484f9184ebd8c31975011ff641d69f76_arm64" + }, + "product_reference": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:873875706f3a6d48f30416a08f0a2a6d484f9184ebd8c31975011ff641d69f76_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:9030fe39393f4d786f902d83a7ae943f714aa5c728d5fca7084d9b188ac39a91_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-machine-api-provider-azure-rhel8@sha256:9030fe39393f4d786f902d83a7ae943f714aa5c728d5fca7084d9b188ac39a91_amd64" + }, + "product_reference": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:9030fe39393f4d786f902d83a7ae943f714aa5c728d5fca7084d9b188ac39a91_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:cfe59c54195440edf7e3e4c2f564200fc3dd21ee6cc71c19efe1acfb8e5300de_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-machine-api-provider-azure-rhel8@sha256:cfe59c54195440edf7e3e4c2f564200fc3dd21ee6cc71c19efe1acfb8e5300de_arm64" + }, + "product_reference": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:cfe59c54195440edf7e3e4c2f564200fc3dd21ee6cc71c19efe1acfb8e5300de_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:5dd1e59057a825cf3cc412b5cb007b9ea141c15d2c3e46bd90768051210bfd01_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-machine-api-provider-gcp-rhel8@sha256:5dd1e59057a825cf3cc412b5cb007b9ea141c15d2c3e46bd90768051210bfd01_ppc64le" + }, + "product_reference": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:5dd1e59057a825cf3cc412b5cb007b9ea141c15d2c3e46bd90768051210bfd01_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:9258e6325f84f30bc0720cc09b4b26e1167754ad024d0968359d673fed8c473c_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-machine-api-provider-gcp-rhel8@sha256:9258e6325f84f30bc0720cc09b4b26e1167754ad024d0968359d673fed8c473c_amd64" + }, + "product_reference": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:9258e6325f84f30bc0720cc09b4b26e1167754ad024d0968359d673fed8c473c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:5ba3cd1ce0e206a27919df15c3fba53c16fb4711ca8ef9209b7e726f509dd57b_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-machine-api-provider-openstack-rhel8@sha256:5ba3cd1ce0e206a27919df15c3fba53c16fb4711ca8ef9209b7e726f509dd57b_amd64" + }, + "product_reference": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:5ba3cd1ce0e206a27919df15c3fba53c16fb4711ca8ef9209b7e726f509dd57b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:83a96e31a692090c01a9218f5b794bbf2cc23cc3ee8d4b7f7c278c9a799cad45_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-machine-api-provider-openstack-rhel8@sha256:83a96e31a692090c01a9218f5b794bbf2cc23cc3ee8d4b7f7c278c9a799cad45_s390x" + }, + "product_reference": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:83a96e31a692090c01a9218f5b794bbf2cc23cc3ee8d4b7f7c278c9a799cad45_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:e963efb9c505968d2f845eabe1c9693a3b2634c2c9c7fd66f56a1db01c049aad_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-machine-api-provider-openstack-rhel8@sha256:e963efb9c505968d2f845eabe1c9693a3b2634c2c9c7fd66f56a1db01c049aad_ppc64le" + }, + "product_reference": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:e963efb9c505968d2f845eabe1c9693a3b2634c2c9c7fd66f56a1db01c049aad_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:ec36acaf546616c13efbfde39f447431d5909c93096918cae996e901eec162d3_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-machine-api-provider-openstack-rhel8@sha256:ec36acaf546616c13efbfde39f447431d5909c93096918cae996e901eec162d3_arm64" + }, + "product_reference": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:ec36acaf546616c13efbfde39f447431d5909c93096918cae996e901eec162d3_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-config-operator@sha256:023de09782684c9e4085f288e5e50d9009a3364af50f24b3cf4b9281d9c8a305_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-machine-config-operator@sha256:023de09782684c9e4085f288e5e50d9009a3364af50f24b3cf4b9281d9c8a305_amd64" + }, + "product_reference": "openshift4/ose-machine-config-operator@sha256:023de09782684c9e4085f288e5e50d9009a3364af50f24b3cf4b9281d9c8a305_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-config-operator@sha256:4cc939b03ce317e156bce02e187763f5dd9aeddf0f277c7eb11b284d548360d7_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-machine-config-operator@sha256:4cc939b03ce317e156bce02e187763f5dd9aeddf0f277c7eb11b284d548360d7_s390x" + }, + "product_reference": "openshift4/ose-machine-config-operator@sha256:4cc939b03ce317e156bce02e187763f5dd9aeddf0f277c7eb11b284d548360d7_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-config-operator@sha256:958cba50190ec4ea2458d8be997c5ca3e32647431ec6ab5e2ec91a4a542fa6dc_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-machine-config-operator@sha256:958cba50190ec4ea2458d8be997c5ca3e32647431ec6ab5e2ec91a4a542fa6dc_arm64" + }, + "product_reference": "openshift4/ose-machine-config-operator@sha256:958cba50190ec4ea2458d8be997c5ca3e32647431ec6ab5e2ec91a4a542fa6dc_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-config-operator@sha256:d7b19225d13a05d77feca6fb2d92ca148eb0cd7bd89f8ce7afda2e2eb170e56a_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-machine-config-operator@sha256:d7b19225d13a05d77feca6fb2d92ca148eb0cd7bd89f8ce7afda2e2eb170e56a_ppc64le" + }, + "product_reference": "openshift4/ose-machine-config-operator@sha256:d7b19225d13a05d77feca6fb2d92ca148eb0cd7bd89f8ce7afda2e2eb170e56a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:60d89f58d2624a407dae492777cd348db913ddfdf317a69e7e7c46fae9fed4a1_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-machine-os-images-rhel8@sha256:60d89f58d2624a407dae492777cd348db913ddfdf317a69e7e7c46fae9fed4a1_ppc64le" + }, + "product_reference": "openshift4/ose-machine-os-images-rhel8@sha256:60d89f58d2624a407dae492777cd348db913ddfdf317a69e7e7c46fae9fed4a1_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:c88533a77815c337a4f75214a702e58713f546ecb1149eea801db3327bfe9d2d_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-machine-os-images-rhel8@sha256:c88533a77815c337a4f75214a702e58713f546ecb1149eea801db3327bfe9d2d_amd64" + }, + "product_reference": "openshift4/ose-machine-os-images-rhel8@sha256:c88533a77815c337a4f75214a702e58713f546ecb1149eea801db3327bfe9d2d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:d6e1154937e13deacc97f7d9aad996140afa71446cf39193eaaf6d0f4647eb67_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-machine-os-images-rhel8@sha256:d6e1154937e13deacc97f7d9aad996140afa71446cf39193eaaf6d0f4647eb67_arm64" + }, + "product_reference": "openshift4/ose-machine-os-images-rhel8@sha256:d6e1154937e13deacc97f7d9aad996140afa71446cf39193eaaf6d0f4647eb67_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-admission-controller@sha256:256c52deaac198a61196ded32f655add51b408f0e5e1e89cb67486a9f02bdb8f_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-multus-admission-controller@sha256:256c52deaac198a61196ded32f655add51b408f0e5e1e89cb67486a9f02bdb8f_arm64" + }, + "product_reference": "openshift4/ose-multus-admission-controller@sha256:256c52deaac198a61196ded32f655add51b408f0e5e1e89cb67486a9f02bdb8f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-admission-controller@sha256:3d60dd36b862af9a3c8d62bb1440f6e81083f0b0bbe6342c91187eff1f1c739c_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-multus-admission-controller@sha256:3d60dd36b862af9a3c8d62bb1440f6e81083f0b0bbe6342c91187eff1f1c739c_s390x" + }, + "product_reference": "openshift4/ose-multus-admission-controller@sha256:3d60dd36b862af9a3c8d62bb1440f6e81083f0b0bbe6342c91187eff1f1c739c_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-admission-controller@sha256:48241dcf52ef68fa33b22e0a1e886d2946d79ca84c934200c412b265167d3765_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-multus-admission-controller@sha256:48241dcf52ef68fa33b22e0a1e886d2946d79ca84c934200c412b265167d3765_ppc64le" + }, + "product_reference": "openshift4/ose-multus-admission-controller@sha256:48241dcf52ef68fa33b22e0a1e886d2946d79ca84c934200c412b265167d3765_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-admission-controller@sha256:cbb8149c53d980a42ceeac230337ad9083aa47b5693d430f0103c217fa1335da_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-multus-admission-controller@sha256:cbb8149c53d980a42ceeac230337ad9083aa47b5693d430f0103c217fa1335da_amd64" + }, + "product_reference": "openshift4/ose-multus-admission-controller@sha256:cbb8149c53d980a42ceeac230337ad9083aa47b5693d430f0103c217fa1335da_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-cni@sha256:283cd7ed969078b7cd3d0927f3bfb4d1c170f35741201a3dc78d519d8ed3a76c_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-multus-cni@sha256:283cd7ed969078b7cd3d0927f3bfb4d1c170f35741201a3dc78d519d8ed3a76c_ppc64le" + }, + "product_reference": "openshift4/ose-multus-cni@sha256:283cd7ed969078b7cd3d0927f3bfb4d1c170f35741201a3dc78d519d8ed3a76c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-cni@sha256:45ea113e84062f05be5c762e147d14ffc92f6d1da5c8c936f2fe9e8c9358b0a5_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-multus-cni@sha256:45ea113e84062f05be5c762e147d14ffc92f6d1da5c8c936f2fe9e8c9358b0a5_amd64" + }, + "product_reference": "openshift4/ose-multus-cni@sha256:45ea113e84062f05be5c762e147d14ffc92f6d1da5c8c936f2fe9e8c9358b0a5_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-cni@sha256:54ba207f99fc4c0d8713eedfa5e13808d7212cf859210f011d3166818fda5aa2_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-multus-cni@sha256:54ba207f99fc4c0d8713eedfa5e13808d7212cf859210f011d3166818fda5aa2_arm64" + }, + "product_reference": "openshift4/ose-multus-cni@sha256:54ba207f99fc4c0d8713eedfa5e13808d7212cf859210f011d3166818fda5aa2_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-cni@sha256:f061b72454d6296be5f3cd8d970af253dd9fd5c42c2428da6c056f6b286a9a5c_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-multus-cni@sha256:f061b72454d6296be5f3cd8d970af253dd9fd5c42c2428da6c056f6b286a9a5c_s390x" + }, + "product_reference": "openshift4/ose-multus-cni@sha256:f061b72454d6296be5f3cd8d970af253dd9fd5c42c2428da6c056f6b286a9a5c_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:26ab9e7846e081799f4e55049999a35582a4ebf44babcb82656a26a8bed0085a_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-multus-networkpolicy-rhel8@sha256:26ab9e7846e081799f4e55049999a35582a4ebf44babcb82656a26a8bed0085a_arm64" + }, + "product_reference": "openshift4/ose-multus-networkpolicy-rhel8@sha256:26ab9e7846e081799f4e55049999a35582a4ebf44babcb82656a26a8bed0085a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:28354eb69e0d4199946d43dcd85f1ee7b47c1b2f1c2edeb38f240443bf871286_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-multus-networkpolicy-rhel8@sha256:28354eb69e0d4199946d43dcd85f1ee7b47c1b2f1c2edeb38f240443bf871286_amd64" + }, + "product_reference": "openshift4/ose-multus-networkpolicy-rhel8@sha256:28354eb69e0d4199946d43dcd85f1ee7b47c1b2f1c2edeb38f240443bf871286_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:651c1caeb43d293c18f6523a4ca6068753e44937be335bc8f3ac694a4a67a216_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-multus-networkpolicy-rhel8@sha256:651c1caeb43d293c18f6523a4ca6068753e44937be335bc8f3ac694a4a67a216_s390x" + }, + "product_reference": "openshift4/ose-multus-networkpolicy-rhel8@sha256:651c1caeb43d293c18f6523a4ca6068753e44937be335bc8f3ac694a4a67a216_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:d857e8bd0a769d084d6a2ecc0367ce1d8316bf4c8400f9ec3cc8ca190d38b204_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-multus-networkpolicy-rhel8@sha256:d857e8bd0a769d084d6a2ecc0367ce1d8316bf4c8400f9ec3cc8ca190d38b204_ppc64le" + }, + "product_reference": "openshift4/ose-multus-networkpolicy-rhel8@sha256:d857e8bd0a769d084d6a2ecc0367ce1d8316bf4c8400f9ec3cc8ca190d38b204_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:26226f692e7739d467531206b37a7b1253eb89d1b28cda11feafbe207759cdf6_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-multus-route-override-cni-rhel8@sha256:26226f692e7739d467531206b37a7b1253eb89d1b28cda11feafbe207759cdf6_s390x" + }, + "product_reference": "openshift4/ose-multus-route-override-cni-rhel8@sha256:26226f692e7739d467531206b37a7b1253eb89d1b28cda11feafbe207759cdf6_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:727f57b36ddae3e8aaaaba96e5025bb1c3b4eca496d38c73e80f174b5521e232_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-multus-route-override-cni-rhel8@sha256:727f57b36ddae3e8aaaaba96e5025bb1c3b4eca496d38c73e80f174b5521e232_amd64" + }, + "product_reference": "openshift4/ose-multus-route-override-cni-rhel8@sha256:727f57b36ddae3e8aaaaba96e5025bb1c3b4eca496d38c73e80f174b5521e232_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:7d73a39f218f5a0b70940d55af74c1a3e4855d7e55786d23fb8bf8a44494c8eb_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-multus-route-override-cni-rhel8@sha256:7d73a39f218f5a0b70940d55af74c1a3e4855d7e55786d23fb8bf8a44494c8eb_arm64" + }, + "product_reference": "openshift4/ose-multus-route-override-cni-rhel8@sha256:7d73a39f218f5a0b70940d55af74c1a3e4855d7e55786d23fb8bf8a44494c8eb_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:bd3ce9ffdc1f6489697b8174442438e9b6464a02b72e9ed8610c088cc08acf00_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-multus-route-override-cni-rhel8@sha256:bd3ce9ffdc1f6489697b8174442438e9b6464a02b72e9ed8610c088cc08acf00_ppc64le" + }, + "product_reference": "openshift4/ose-multus-route-override-cni-rhel8@sha256:bd3ce9ffdc1f6489697b8174442438e9b6464a02b72e9ed8610c088cc08acf00_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:3268d73007c705974d5a459eaa8271073f98192a7e119f3d50c647f3a060f98c_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:3268d73007c705974d5a459eaa8271073f98192a7e119f3d50c647f3a060f98c_ppc64le" + }, + "product_reference": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:3268d73007c705974d5a459eaa8271073f98192a7e119f3d50c647f3a060f98c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:b51aebcf7f779fbb270ac77d31ba3e7d318a7ce84d719792bda75a0b761a91a1_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:b51aebcf7f779fbb270ac77d31ba3e7d318a7ce84d719792bda75a0b761a91a1_s390x" + }, + "product_reference": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:b51aebcf7f779fbb270ac77d31ba3e7d318a7ce84d719792bda75a0b761a91a1_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ba07702bf7218465eaea5d516ee0a5ff50bfd6ee95b84024ace47742c0aabd03_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ba07702bf7218465eaea5d516ee0a5ff50bfd6ee95b84024ace47742c0aabd03_amd64" + }, + "product_reference": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ba07702bf7218465eaea5d516ee0a5ff50bfd6ee95b84024ace47742c0aabd03_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:e8fbb67fe36081acd706711ffc7ab9144d0f9800c5a96dd8f8416d0271d5ff24_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:e8fbb67fe36081acd706711ffc7ab9144d0f9800c5a96dd8f8416d0271d5ff24_arm64" + }, + "product_reference": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:e8fbb67fe36081acd706711ffc7ab9144d0f9800c5a96dd8f8416d0271d5ff24_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-must-gather@sha256:711b043c73359e9a30b3dc0446e984684c73f061d5e2cfd936844ce5cb94c203_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-must-gather@sha256:711b043c73359e9a30b3dc0446e984684c73f061d5e2cfd936844ce5cb94c203_s390x" + }, + "product_reference": "openshift4/ose-must-gather@sha256:711b043c73359e9a30b3dc0446e984684c73f061d5e2cfd936844ce5cb94c203_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-must-gather@sha256:9792bae1ec1404e9f3609c1dfac3a2759347d54f3055be205a0ae66e81b935f2_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-must-gather@sha256:9792bae1ec1404e9f3609c1dfac3a2759347d54f3055be205a0ae66e81b935f2_amd64" + }, + "product_reference": "openshift4/ose-must-gather@sha256:9792bae1ec1404e9f3609c1dfac3a2759347d54f3055be205a0ae66e81b935f2_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-must-gather@sha256:c5fe8ae3b4e9798601e0e55242b090d0ce20da26ce90a41f7ae481f958a20296_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-must-gather@sha256:c5fe8ae3b4e9798601e0e55242b090d0ce20da26ce90a41f7ae481f958a20296_arm64" + }, + "product_reference": "openshift4/ose-must-gather@sha256:c5fe8ae3b4e9798601e0e55242b090d0ce20da26ce90a41f7ae481f958a20296_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-must-gather@sha256:fc08971945c26d737bacbc104ba66500b8bbed12306f81a5e414df5defbb73e1_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-must-gather@sha256:fc08971945c26d737bacbc104ba66500b8bbed12306f81a5e414df5defbb73e1_ppc64le" + }, + "product_reference": "openshift4/ose-must-gather@sha256:fc08971945c26d737bacbc104ba66500b8bbed12306f81a5e414df5defbb73e1_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:0954c2804ff01962d1032eff573cfda8a3692fd596e26bcbc39c026ed40cd579_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-network-interface-bond-cni-rhel8@sha256:0954c2804ff01962d1032eff573cfda8a3692fd596e26bcbc39c026ed40cd579_amd64" + }, + "product_reference": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:0954c2804ff01962d1032eff573cfda8a3692fd596e26bcbc39c026ed40cd579_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:452a04253666110ea2104e67d9bf6f49bac2624da0791cc33b9a9c66d836e174_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-network-interface-bond-cni-rhel8@sha256:452a04253666110ea2104e67d9bf6f49bac2624da0791cc33b9a9c66d836e174_ppc64le" + }, + "product_reference": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:452a04253666110ea2104e67d9bf6f49bac2624da0791cc33b9a9c66d836e174_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:ea267cf3aa096128263037d2a0cb72dd2d6629bd279c5c093efb1d722679b0d3_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-network-interface-bond-cni-rhel8@sha256:ea267cf3aa096128263037d2a0cb72dd2d6629bd279c5c093efb1d722679b0d3_s390x" + }, + "product_reference": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:ea267cf3aa096128263037d2a0cb72dd2d6629bd279c5c093efb1d722679b0d3_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:edb0194db6fec827a50992ffaf2804a96234c3b5dee7aada757f6f6982052435_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-network-interface-bond-cni-rhel8@sha256:edb0194db6fec827a50992ffaf2804a96234c3b5dee7aada757f6f6982052435_arm64" + }, + "product_reference": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:edb0194db6fec827a50992ffaf2804a96234c3b5dee7aada757f6f6982052435_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:3086f431a5a1407d7e2db928d6ae722831d891d422516105e039bbfa071e2eb8_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-network-metrics-daemon-rhel8@sha256:3086f431a5a1407d7e2db928d6ae722831d891d422516105e039bbfa071e2eb8_arm64" + }, + "product_reference": "openshift4/ose-network-metrics-daemon-rhel8@sha256:3086f431a5a1407d7e2db928d6ae722831d891d422516105e039bbfa071e2eb8_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:5f62a8ce4c7825514b238d75c78eba71a82a7be7b25a353a98a0731f2f4e1d65_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-network-metrics-daemon-rhel8@sha256:5f62a8ce4c7825514b238d75c78eba71a82a7be7b25a353a98a0731f2f4e1d65_ppc64le" + }, + "product_reference": "openshift4/ose-network-metrics-daemon-rhel8@sha256:5f62a8ce4c7825514b238d75c78eba71a82a7be7b25a353a98a0731f2f4e1d65_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:614cde9798e0ac6993148a2ee4ee6638c3c0e6f81a33230416905dd23f80bee5_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-network-metrics-daemon-rhel8@sha256:614cde9798e0ac6993148a2ee4ee6638c3c0e6f81a33230416905dd23f80bee5_s390x" + }, + "product_reference": "openshift4/ose-network-metrics-daemon-rhel8@sha256:614cde9798e0ac6993148a2ee4ee6638c3c0e6f81a33230416905dd23f80bee5_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:e4a27fb36df4af0ad7f798eb3912c46abfdb3221a60484b6e1222181a3c48e88_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-network-metrics-daemon-rhel8@sha256:e4a27fb36df4af0ad7f798eb3912c46abfdb3221a60484b6e1222181a3c48e88_amd64" + }, + "product_reference": "openshift4/ose-network-metrics-daemon-rhel8@sha256:e4a27fb36df4af0ad7f798eb3912c46abfdb3221a60484b6e1222181a3c48e88_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-nutanix-machine-controllers-rhel8@sha256:686a23af32a538e01c81aca4408ba36839489afc7d2c9438471177a5986fdf80_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-nutanix-machine-controllers-rhel8@sha256:686a23af32a538e01c81aca4408ba36839489afc7d2c9438471177a5986fdf80_amd64" + }, + "product_reference": "openshift4/ose-nutanix-machine-controllers-rhel8@sha256:686a23af32a538e01c81aca4408ba36839489afc7d2c9438471177a5986fdf80_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:4282b28c75925e2bdcbe652804454ffec089f88aec48a055c80df61ea7b8b0d6_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-oauth-apiserver-rhel8@sha256:4282b28c75925e2bdcbe652804454ffec089f88aec48a055c80df61ea7b8b0d6_arm64" + }, + "product_reference": "openshift4/ose-oauth-apiserver-rhel8@sha256:4282b28c75925e2bdcbe652804454ffec089f88aec48a055c80df61ea7b8b0d6_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:57a62eb18f4e137d660ea4bd86cce49bfb5fa71f7657e1ed86d3684c9713c9a0_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-oauth-apiserver-rhel8@sha256:57a62eb18f4e137d660ea4bd86cce49bfb5fa71f7657e1ed86d3684c9713c9a0_amd64" + }, + "product_reference": "openshift4/ose-oauth-apiserver-rhel8@sha256:57a62eb18f4e137d660ea4bd86cce49bfb5fa71f7657e1ed86d3684c9713c9a0_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:605ec639af9715ecfdbfcb0bac99f13e5fea20834089e6d466bdf49bd93cbf80_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-oauth-apiserver-rhel8@sha256:605ec639af9715ecfdbfcb0bac99f13e5fea20834089e6d466bdf49bd93cbf80_ppc64le" + }, + "product_reference": "openshift4/ose-oauth-apiserver-rhel8@sha256:605ec639af9715ecfdbfcb0bac99f13e5fea20834089e6d466bdf49bd93cbf80_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:63220f68d13bbf8400728710e9b7dd0a1412d0b892adb9c4b55ed4dd46f74da3_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-oauth-apiserver-rhel8@sha256:63220f68d13bbf8400728710e9b7dd0a1412d0b892adb9c4b55ed4dd46f74da3_s390x" + }, + "product_reference": "openshift4/ose-oauth-apiserver-rhel8@sha256:63220f68d13bbf8400728710e9b7dd0a1412d0b892adb9c4b55ed4dd46f74da3_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-proxy@sha256:1b57acea5df0b02e573943ad54c463ffff134e2827920395c2ca11827847fe48_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-oauth-proxy@sha256:1b57acea5df0b02e573943ad54c463ffff134e2827920395c2ca11827847fe48_arm64" + }, + "product_reference": "openshift4/ose-oauth-proxy@sha256:1b57acea5df0b02e573943ad54c463ffff134e2827920395c2ca11827847fe48_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-proxy@sha256:65fb864fd15cd1f3e7bd36dfdae4770c4b2b57a927eab53cfd5c002a2d2e801d_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-oauth-proxy@sha256:65fb864fd15cd1f3e7bd36dfdae4770c4b2b57a927eab53cfd5c002a2d2e801d_ppc64le" + }, + "product_reference": "openshift4/ose-oauth-proxy@sha256:65fb864fd15cd1f3e7bd36dfdae4770c4b2b57a927eab53cfd5c002a2d2e801d_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-proxy@sha256:79d463ab3045a0973203cd0fc5384c9e6bc9c640296b4b7da91f348da4345090_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-oauth-proxy@sha256:79d463ab3045a0973203cd0fc5384c9e6bc9c640296b4b7da91f348da4345090_s390x" + }, + "product_reference": "openshift4/ose-oauth-proxy@sha256:79d463ab3045a0973203cd0fc5384c9e6bc9c640296b4b7da91f348da4345090_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-proxy@sha256:8cee1c6d7316b2108cc2d0272ebf2932ee999c9eb05d5c6e296df362da58e9ce_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-oauth-proxy@sha256:8cee1c6d7316b2108cc2d0272ebf2932ee999c9eb05d5c6e296df362da58e9ce_amd64" + }, + "product_reference": "openshift4/ose-oauth-proxy@sha256:8cee1c6d7316b2108cc2d0272ebf2932ee999c9eb05d5c6e296df362da58e9ce_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:0f093ecfcca4307cbdf811b18ce179215f57d3a2187860854558630a5c139e10_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-oauth-server-rhel8@sha256:0f093ecfcca4307cbdf811b18ce179215f57d3a2187860854558630a5c139e10_s390x" + }, + "product_reference": "openshift4/ose-oauth-server-rhel8@sha256:0f093ecfcca4307cbdf811b18ce179215f57d3a2187860854558630a5c139e10_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:2c2f61cc9312510bf66beb7dcbfaa91b9ec01cc77d9952b44d342e542b342988_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-oauth-server-rhel8@sha256:2c2f61cc9312510bf66beb7dcbfaa91b9ec01cc77d9952b44d342e542b342988_ppc64le" + }, + "product_reference": "openshift4/ose-oauth-server-rhel8@sha256:2c2f61cc9312510bf66beb7dcbfaa91b9ec01cc77d9952b44d342e542b342988_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:9537687c58119643783c34c756a4bce2bdae65123e6c23c10dcad62648173d60_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-oauth-server-rhel8@sha256:9537687c58119643783c34c756a4bce2bdae65123e6c23c10dcad62648173d60_arm64" + }, + "product_reference": "openshift4/ose-oauth-server-rhel8@sha256:9537687c58119643783c34c756a4bce2bdae65123e6c23c10dcad62648173d60_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:ee7d5356d6118514b1c7905233a4bae0bb692c0b3c92afcef6cb8aa26e66f6f9_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-oauth-server-rhel8@sha256:ee7d5356d6118514b1c7905233a4bae0bb692c0b3c92afcef6cb8aa26e66f6f9_amd64" + }, + "product_reference": "openshift4/ose-oauth-server-rhel8@sha256:ee7d5356d6118514b1c7905233a4bae0bb692c0b3c92afcef6cb8aa26e66f6f9_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:47d2ae718f9227962ccd5b7fe0ffa7bff6accb67eb2882be0ebb6016d45e4e30_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-olm-rukpak-rhel8@sha256:47d2ae718f9227962ccd5b7fe0ffa7bff6accb67eb2882be0ebb6016d45e4e30_amd64" + }, + "product_reference": "openshift4/ose-olm-rukpak-rhel8@sha256:47d2ae718f9227962ccd5b7fe0ffa7bff6accb67eb2882be0ebb6016d45e4e30_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:5790ad0aa01cc634bab95cbf7daf5c925025ec140ed4443d7d2f5aef52953da0_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-olm-rukpak-rhel8@sha256:5790ad0aa01cc634bab95cbf7daf5c925025ec140ed4443d7d2f5aef52953da0_arm64" + }, + "product_reference": "openshift4/ose-olm-rukpak-rhel8@sha256:5790ad0aa01cc634bab95cbf7daf5c925025ec140ed4443d7d2f5aef52953da0_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:8bbf5047f795d0af8a281df49834cd7fd67b390ab6271b47715fc989a1171b21_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-olm-rukpak-rhel8@sha256:8bbf5047f795d0af8a281df49834cd7fd67b390ab6271b47715fc989a1171b21_ppc64le" + }, + "product_reference": "openshift4/ose-olm-rukpak-rhel8@sha256:8bbf5047f795d0af8a281df49834cd7fd67b390ab6271b47715fc989a1171b21_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:8f5b5f187c2f7dc109dcaf33923ab1a07f46e0b99f5ff17b5dfe9d3261b6b040_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-olm-rukpak-rhel8@sha256:8f5b5f187c2f7dc109dcaf33923ab1a07f46e0b99f5ff17b5dfe9d3261b6b040_s390x" + }, + "product_reference": "openshift4/ose-olm-rukpak-rhel8@sha256:8f5b5f187c2f7dc109dcaf33923ab1a07f46e0b99f5ff17b5dfe9d3261b6b040_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:1cd9c91d14779dd36bbafab58c1ac8c4b5b0fddd4c6d7e5dc9a642b718c930ac_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openshift-apiserver-rhel8@sha256:1cd9c91d14779dd36bbafab58c1ac8c4b5b0fddd4c6d7e5dc9a642b718c930ac_ppc64le" + }, + "product_reference": "openshift4/ose-openshift-apiserver-rhel8@sha256:1cd9c91d14779dd36bbafab58c1ac8c4b5b0fddd4c6d7e5dc9a642b718c930ac_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:b5bd7edaf08ad5c508b7af6200579c94627ed83260fdec10ea91ccb20fd23d36_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openshift-apiserver-rhel8@sha256:b5bd7edaf08ad5c508b7af6200579c94627ed83260fdec10ea91ccb20fd23d36_arm64" + }, + "product_reference": "openshift4/ose-openshift-apiserver-rhel8@sha256:b5bd7edaf08ad5c508b7af6200579c94627ed83260fdec10ea91ccb20fd23d36_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:b9bcd062a2491648f723222a2b394f71fdf99e94ddf417ceed43e357b725f64e_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openshift-apiserver-rhel8@sha256:b9bcd062a2491648f723222a2b394f71fdf99e94ddf417ceed43e357b725f64e_s390x" + }, + "product_reference": "openshift4/ose-openshift-apiserver-rhel8@sha256:b9bcd062a2491648f723222a2b394f71fdf99e94ddf417ceed43e357b725f64e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:f35676a8b5d5a9853e2635529968310650a9e3f4e7b97853833da831317398c6_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openshift-apiserver-rhel8@sha256:f35676a8b5d5a9853e2635529968310650a9e3f4e7b97853833da831317398c6_amd64" + }, + "product_reference": "openshift4/ose-openshift-apiserver-rhel8@sha256:f35676a8b5d5a9853e2635529968310650a9e3f4e7b97853833da831317398c6_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:0596ed8a5f42d1f4f616036310a997c2d4cedd74036506dc00281a0a10a1d3b7_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openshift-controller-manager-rhel8@sha256:0596ed8a5f42d1f4f616036310a997c2d4cedd74036506dc00281a0a10a1d3b7_ppc64le" + }, + "product_reference": "openshift4/ose-openshift-controller-manager-rhel8@sha256:0596ed8a5f42d1f4f616036310a997c2d4cedd74036506dc00281a0a10a1d3b7_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:54090024d9a8331850855aebe73c7dbbbed5ea57ed2784b136f60a1f7a7f8572_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openshift-controller-manager-rhel8@sha256:54090024d9a8331850855aebe73c7dbbbed5ea57ed2784b136f60a1f7a7f8572_s390x" + }, + "product_reference": "openshift4/ose-openshift-controller-manager-rhel8@sha256:54090024d9a8331850855aebe73c7dbbbed5ea57ed2784b136f60a1f7a7f8572_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:547a5ca42dd1d4d1cba262c8c650cb12102daa4e9bea8a0e29782350360f7449_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openshift-controller-manager-rhel8@sha256:547a5ca42dd1d4d1cba262c8c650cb12102daa4e9bea8a0e29782350360f7449_amd64" + }, + "product_reference": "openshift4/ose-openshift-controller-manager-rhel8@sha256:547a5ca42dd1d4d1cba262c8c650cb12102daa4e9bea8a0e29782350360f7449_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:ddecba471411ff6899d6a0c353935d54aa904ce291c2e46093f2368b1023850f_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openshift-controller-manager-rhel8@sha256:ddecba471411ff6899d6a0c353935d54aa904ce291c2e46093f2368b1023850f_arm64" + }, + "product_reference": "openshift4/ose-openshift-controller-manager-rhel8@sha256:ddecba471411ff6899d6a0c353935d54aa904ce291c2e46093f2368b1023850f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:176663735e848f45ecc60003c12c3cba6f0b61bca022bbac1b008023e2ad8c96_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openshift-state-metrics-rhel8@sha256:176663735e848f45ecc60003c12c3cba6f0b61bca022bbac1b008023e2ad8c96_ppc64le" + }, + "product_reference": "openshift4/ose-openshift-state-metrics-rhel8@sha256:176663735e848f45ecc60003c12c3cba6f0b61bca022bbac1b008023e2ad8c96_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:285ee1721726c5c7f97254c94e8911e9ea639d41fadfdf28f1c9960067cfc333_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openshift-state-metrics-rhel8@sha256:285ee1721726c5c7f97254c94e8911e9ea639d41fadfdf28f1c9960067cfc333_s390x" + }, + "product_reference": "openshift4/ose-openshift-state-metrics-rhel8@sha256:285ee1721726c5c7f97254c94e8911e9ea639d41fadfdf28f1c9960067cfc333_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:5501a4680652bbd1aafd6435771725f6462bd2061f4ebe82a22a66f630bc6f72_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openshift-state-metrics-rhel8@sha256:5501a4680652bbd1aafd6435771725f6462bd2061f4ebe82a22a66f630bc6f72_amd64" + }, + "product_reference": "openshift4/ose-openshift-state-metrics-rhel8@sha256:5501a4680652bbd1aafd6435771725f6462bd2061f4ebe82a22a66f630bc6f72_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:cb030363a17d426dccd5b61302e56fd9a29d725e2b6d2b003ac44e131b57dd57_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openshift-state-metrics-rhel8@sha256:cb030363a17d426dccd5b61302e56fd9a29d725e2b6d2b003ac44e131b57dd57_arm64" + }, + "product_reference": "openshift4/ose-openshift-state-metrics-rhel8@sha256:cb030363a17d426dccd5b61302e56fd9a29d725e2b6d2b003ac44e131b57dd57_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:acbcc491dba91cdb81591aecd65d8fc2b68c682db044ad65bf0dfb8027f48d49_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:acbcc491dba91cdb81591aecd65d8fc2b68c682db044ad65bf0dfb8027f48d49_s390x" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:acbcc491dba91cdb81591aecd65d8fc2b68c682db044ad65bf0dfb8027f48d49_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:cec416406223284ce91d8c71c496df2b7d4faf85c395e52c02e3d29aa5331519_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:cec416406223284ce91d8c71c496df2b7d4faf85c395e52c02e3d29aa5331519_amd64" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:cec416406223284ce91d8c71c496df2b7d4faf85c395e52c02e3d29aa5331519_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:db26900414e5b67d753bc55a3547938a594c160cdf4ba7bf41a0e690cc025279_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:db26900414e5b67d753bc55a3547938a594c160cdf4ba7bf41a0e690cc025279_arm64" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:db26900414e5b67d753bc55a3547938a594c160cdf4ba7bf41a0e690cc025279_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:ef59ec1357a96f5a88df8275486cf616b73b442f8c770f290452bf6e079f28c6_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:ef59ec1357a96f5a88df8275486cf616b73b442f8c770f290452bf6e079f28c6_ppc64le" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:ef59ec1357a96f5a88df8275486cf616b73b442f8c770f290452bf6e079f28c6_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:00c4ead2a686cf3365fece66426b19a0f948c186d583d9ad6b0069315fe06a88_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:00c4ead2a686cf3365fece66426b19a0f948c186d583d9ad6b0069315fe06a88_arm64" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:00c4ead2a686cf3365fece66426b19a0f948c186d583d9ad6b0069315fe06a88_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:06116ed8c86faba3798a4cccda27e5bc55f4595b3ea215a788ded647a37b2a59_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:06116ed8c86faba3798a4cccda27e5bc55f4595b3ea215a788ded647a37b2a59_amd64" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:06116ed8c86faba3798a4cccda27e5bc55f4595b3ea215a788ded647a37b2a59_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:5562a894e36ba3b0b375cc13eaf4f9bc98c9dacb21e0d79f5bc45884ade49f60_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:5562a894e36ba3b0b375cc13eaf4f9bc98c9dacb21e0d79f5bc45884ade49f60_s390x" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:5562a894e36ba3b0b375cc13eaf4f9bc98c9dacb21e0d79f5bc45884ade49f60_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:d01c48d138fbd57cfacf78538e576a40213f235672b583483102a20907b22ef2_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:d01c48d138fbd57cfacf78538e576a40213f235672b583483102a20907b22ef2_ppc64le" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:d01c48d138fbd57cfacf78538e576a40213f235672b583483102a20907b22ef2_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:8ea560b854253f4079af13824edf37ca022569ca578e185ea6a9d8ec9fbdfbf8_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:8ea560b854253f4079af13824edf37ca022569ca578e185ea6a9d8ec9fbdfbf8_amd64" + }, + "product_reference": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:8ea560b854253f4079af13824edf37ca022569ca578e185ea6a9d8ec9fbdfbf8_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:a51eaf7f64f370a4151586719eda87cceb09aef30480df4349e9f2c822be5d54_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:a51eaf7f64f370a4151586719eda87cceb09aef30480df4349e9f2c822be5d54_arm64" + }, + "product_reference": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:a51eaf7f64f370a4151586719eda87cceb09aef30480df4349e9f2c822be5d54_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:b3784190afaa937e9185f7ed2c62cac554b2d632b1aeafdda01cbb966b28a078_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:b3784190afaa937e9185f7ed2c62cac554b2d632b1aeafdda01cbb966b28a078_ppc64le" + }, + "product_reference": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:b3784190afaa937e9185f7ed2c62cac554b2d632b1aeafdda01cbb966b28a078_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:bda631d016d5dfe1e304d6d9f8cf061f3e17df482c6f6d6f819e4a971be9075a_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:bda631d016d5dfe1e304d6d9f8cf061f3e17df482c6f6d6f819e4a971be9075a_s390x" + }, + "product_reference": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:bda631d016d5dfe1e304d6d9f8cf061f3e17df482c6f6d6f819e4a971be9075a_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-machine-controllers@sha256:0516ff48c31b625cec42de54f4d0cc8f7bf265aa6161ec4d1409d09d7c5acaca_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openstack-machine-controllers@sha256:0516ff48c31b625cec42de54f4d0cc8f7bf265aa6161ec4d1409d09d7c5acaca_ppc64le" + }, + "product_reference": "openshift4/ose-openstack-machine-controllers@sha256:0516ff48c31b625cec42de54f4d0cc8f7bf265aa6161ec4d1409d09d7c5acaca_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-machine-controllers@sha256:165b3ad9ce0808e8c1f88f15f356ccc48bd1389e084601b819f12bbd87a0f351_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openstack-machine-controllers@sha256:165b3ad9ce0808e8c1f88f15f356ccc48bd1389e084601b819f12bbd87a0f351_s390x" + }, + "product_reference": "openshift4/ose-openstack-machine-controllers@sha256:165b3ad9ce0808e8c1f88f15f356ccc48bd1389e084601b819f12bbd87a0f351_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-machine-controllers@sha256:1ac497a32f3fbb2a7ac3a67d1ed497d6791b1ba2dc1459ae523545d5edd21958_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openstack-machine-controllers@sha256:1ac497a32f3fbb2a7ac3a67d1ed497d6791b1ba2dc1459ae523545d5edd21958_amd64" + }, + "product_reference": "openshift4/ose-openstack-machine-controllers@sha256:1ac497a32f3fbb2a7ac3a67d1ed497d6791b1ba2dc1459ae523545d5edd21958_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-machine-controllers@sha256:d12a530941d42dcd477b64775734249f3b34ac7df09a5f15be0161e5e54f7259_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-openstack-machine-controllers@sha256:d12a530941d42dcd477b64775734249f3b34ac7df09a5f15be0161e5e54f7259_arm64" + }, + "product_reference": "openshift4/ose-openstack-machine-controllers@sha256:d12a530941d42dcd477b64775734249f3b34ac7df09a5f15be0161e5e54f7259_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:234ef18b957d34833ef76e8582625106ada227972e10e034f276df4a0c4be1f1_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-operator-lifecycle-manager@sha256:234ef18b957d34833ef76e8582625106ada227972e10e034f276df4a0c4be1f1_s390x" + }, + "product_reference": "openshift4/ose-operator-lifecycle-manager@sha256:234ef18b957d34833ef76e8582625106ada227972e10e034f276df4a0c4be1f1_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:57765470ed8540b907d4db2fb0787194cb42dba702e75f4a287b61942d2c169f_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-operator-lifecycle-manager@sha256:57765470ed8540b907d4db2fb0787194cb42dba702e75f4a287b61942d2c169f_arm64" + }, + "product_reference": "openshift4/ose-operator-lifecycle-manager@sha256:57765470ed8540b907d4db2fb0787194cb42dba702e75f4a287b61942d2c169f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:83d99d0d3f2eb03051836540eed478873914336a04d6bfe3acf74e39ff2d8835_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-operator-lifecycle-manager@sha256:83d99d0d3f2eb03051836540eed478873914336a04d6bfe3acf74e39ff2d8835_amd64" + }, + "product_reference": "openshift4/ose-operator-lifecycle-manager@sha256:83d99d0d3f2eb03051836540eed478873914336a04d6bfe3acf74e39ff2d8835_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:cfcb333cba92b4e6ec92edb9ccb1c989e4afdfd841b6db6e44c4498ab84db5f5_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-operator-lifecycle-manager@sha256:cfcb333cba92b4e6ec92edb9ccb1c989e4afdfd841b6db6e44c4498ab84db5f5_ppc64le" + }, + "product_reference": "openshift4/ose-operator-lifecycle-manager@sha256:cfcb333cba92b4e6ec92edb9ccb1c989e4afdfd841b6db6e44c4498ab84db5f5_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-marketplace@sha256:3c79ff9ea3c9c95f38f013ead1844aa7c1dc7fcdb89d3273fb514f6af875e2bc_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-operator-marketplace@sha256:3c79ff9ea3c9c95f38f013ead1844aa7c1dc7fcdb89d3273fb514f6af875e2bc_arm64" + }, + "product_reference": "openshift4/ose-operator-marketplace@sha256:3c79ff9ea3c9c95f38f013ead1844aa7c1dc7fcdb89d3273fb514f6af875e2bc_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-marketplace@sha256:6bb7198211d11a8dfeee451da4e183de86d9de052c8fe75ca6dbce9b3c72e2ec_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-operator-marketplace@sha256:6bb7198211d11a8dfeee451da4e183de86d9de052c8fe75ca6dbce9b3c72e2ec_amd64" + }, + "product_reference": "openshift4/ose-operator-marketplace@sha256:6bb7198211d11a8dfeee451da4e183de86d9de052c8fe75ca6dbce9b3c72e2ec_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-marketplace@sha256:a9274c7a888ed16768be8732d312ec61ec6a4937bca99cb1f28c9b07d1b6ff34_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-operator-marketplace@sha256:a9274c7a888ed16768be8732d312ec61ec6a4937bca99cb1f28c9b07d1b6ff34_s390x" + }, + "product_reference": "openshift4/ose-operator-marketplace@sha256:a9274c7a888ed16768be8732d312ec61ec6a4937bca99cb1f28c9b07d1b6ff34_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-marketplace@sha256:c9e5b33f9a352d4dc6bb089365d7d55a17dd5a8dc4118c03154112db5e97afe9_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-operator-marketplace@sha256:c9e5b33f9a352d4dc6bb089365d7d55a17dd5a8dc4118c03154112db5e97afe9_ppc64le" + }, + "product_reference": "openshift4/ose-operator-marketplace@sha256:c9e5b33f9a352d4dc6bb089365d7d55a17dd5a8dc4118c03154112db5e97afe9_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-registry@sha256:08f7c5b85534f1f8e8cc1a08f9271bb4dbc4e85118f11a4073c1d05da2a7ae65_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-operator-registry@sha256:08f7c5b85534f1f8e8cc1a08f9271bb4dbc4e85118f11a4073c1d05da2a7ae65_arm64" + }, + "product_reference": "openshift4/ose-operator-registry@sha256:08f7c5b85534f1f8e8cc1a08f9271bb4dbc4e85118f11a4073c1d05da2a7ae65_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-registry@sha256:12be41c0b4f2154bb7452feffa32e483bca4bcb1cee0daf3cec5bc346c56e851_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-operator-registry@sha256:12be41c0b4f2154bb7452feffa32e483bca4bcb1cee0daf3cec5bc346c56e851_s390x" + }, + "product_reference": "openshift4/ose-operator-registry@sha256:12be41c0b4f2154bb7452feffa32e483bca4bcb1cee0daf3cec5bc346c56e851_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-registry@sha256:375d8b238fcc0596bfffe007e5abd1918a250aff8ff5ff643de2600beda78c61_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-operator-registry@sha256:375d8b238fcc0596bfffe007e5abd1918a250aff8ff5ff643de2600beda78c61_amd64" + }, + "product_reference": "openshift4/ose-operator-registry@sha256:375d8b238fcc0596bfffe007e5abd1918a250aff8ff5ff643de2600beda78c61_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-registry@sha256:6a916a8dfc27687ea5192612d4472cb4cbc593188524e4e3280bb814afd0c1ed_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-operator-registry@sha256:6a916a8dfc27687ea5192612d4472cb4cbc593188524e4e3280bb814afd0c1ed_ppc64le" + }, + "product_reference": "openshift4/ose-operator-registry@sha256:6a916a8dfc27687ea5192612d4472cb4cbc593188524e4e3280bb814afd0c1ed_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:971ebc204aad0b8b6c0cb6384f0e2f8977351547c1ffc58964ddc9337fea1ec7_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-ovirt-machine-controllers-rhel8@sha256:971ebc204aad0b8b6c0cb6384f0e2f8977351547c1ffc58964ddc9337fea1ec7_amd64" + }, + "product_reference": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:971ebc204aad0b8b6c0cb6384f0e2f8977351547c1ffc58964ddc9337fea1ec7_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:b195ba89be79385fd9d0b7cb71f5d366adfb219e88c990f11b0fc13a3110b980_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-ovirt-machine-controllers-rhel8@sha256:b195ba89be79385fd9d0b7cb71f5d366adfb219e88c990f11b0fc13a3110b980_s390x" + }, + "product_reference": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:b195ba89be79385fd9d0b7cb71f5d366adfb219e88c990f11b0fc13a3110b980_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:e0cba078ef9710f176a480e905b0fa60ad8431552c04266a11b18d2234a7518e_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-ovirt-machine-controllers-rhel8@sha256:e0cba078ef9710f176a480e905b0fa60ad8431552c04266a11b18d2234a7518e_arm64" + }, + "product_reference": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:e0cba078ef9710f176a480e905b0fa60ad8431552c04266a11b18d2234a7518e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:eaf9bd8606b6fc13576a6900fd694e70ce89a71bec6bec0209ef5e86f61c4781_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-ovirt-machine-controllers-rhel8@sha256:eaf9bd8606b6fc13576a6900fd694e70ce89a71bec6bec0209ef5e86f61c4781_ppc64le" + }, + "product_reference": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:eaf9bd8606b6fc13576a6900fd694e70ce89a71bec6bec0209ef5e86f61c4781_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:1a15e3bab3f54df3800646c76d3262d375f2b201a9cd0150cdfd28014c78cff1_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:1a15e3bab3f54df3800646c76d3262d375f2b201a9cd0150cdfd28014c78cff1_amd64" + }, + "product_reference": "openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:1a15e3bab3f54df3800646c76d3262d375f2b201a9cd0150cdfd28014c78cff1_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:a2b88db9146dc87d77a1b142f9eb3021b9787754a7e33ecbb249185ff7105eb1_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:a2b88db9146dc87d77a1b142f9eb3021b9787754a7e33ecbb249185ff7105eb1_s390x" + }, + "product_reference": "openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:a2b88db9146dc87d77a1b142f9eb3021b9787754a7e33ecbb249185ff7105eb1_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:a971c4f324433cb68f3e03d79c5263e5f68541aec302c7addb4d32c48f62306a_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:a971c4f324433cb68f3e03d79c5263e5f68541aec302c7addb4d32c48f62306a_arm64" + }, + "product_reference": "openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:a971c4f324433cb68f3e03d79c5263e5f68541aec302c7addb4d32c48f62306a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:b6382cb66c2460fa54b8bc493f62e736de0d7d76a203d317710706c162f6053d_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:b6382cb66c2460fa54b8bc493f62e736de0d7d76a203d317710706c162f6053d_ppc64le" + }, + "product_reference": "openshift4/ose-ovn-kubernetes-microshift-rhel8@sha256:b6382cb66c2460fa54b8bc493f62e736de0d7d76a203d317710706c162f6053d_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes@sha256:469fc5673e5ba6d0214d34df5cee2b939a0618fef919f884eb96a665b3c1ccb9_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-ovn-kubernetes@sha256:469fc5673e5ba6d0214d34df5cee2b939a0618fef919f884eb96a665b3c1ccb9_s390x" + }, + "product_reference": "openshift4/ose-ovn-kubernetes@sha256:469fc5673e5ba6d0214d34df5cee2b939a0618fef919f884eb96a665b3c1ccb9_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes@sha256:9808a0f0a7a834e421d43b2377c302e1ed993ba1bf551470041460a95cdedb3c_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-ovn-kubernetes@sha256:9808a0f0a7a834e421d43b2377c302e1ed993ba1bf551470041460a95cdedb3c_ppc64le" + }, + "product_reference": "openshift4/ose-ovn-kubernetes@sha256:9808a0f0a7a834e421d43b2377c302e1ed993ba1bf551470041460a95cdedb3c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes@sha256:b32c1441a0e9aeeea446443b12fab8c17ad0e844f184c37d0e360eb267b997e3_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-ovn-kubernetes@sha256:b32c1441a0e9aeeea446443b12fab8c17ad0e844f184c37d0e360eb267b997e3_amd64" + }, + "product_reference": "openshift4/ose-ovn-kubernetes@sha256:b32c1441a0e9aeeea446443b12fab8c17ad0e844f184c37d0e360eb267b997e3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes@sha256:b624451fed998bafdb84c4874f6608d10fb4598c754a9d6547856066442f7c42_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-ovn-kubernetes@sha256:b624451fed998bafdb84c4874f6608d10fb4598c754a9d6547856066442f7c42_arm64" + }, + "product_reference": "openshift4/ose-ovn-kubernetes@sha256:b624451fed998bafdb84c4874f6608d10fb4598c754a9d6547856066442f7c42_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-pod@sha256:48dcdc1b5b07dfdd165c55b010035b181dcba6e7bd2ce39e5d514f9debce3e65_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-pod@sha256:48dcdc1b5b07dfdd165c55b010035b181dcba6e7bd2ce39e5d514f9debce3e65_s390x" + }, + "product_reference": "openshift4/ose-pod@sha256:48dcdc1b5b07dfdd165c55b010035b181dcba6e7bd2ce39e5d514f9debce3e65_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-pod@sha256:a22242a5bfaa74c4140c6cdb9b319528cb03b2adb0a4ac03a7c4b6159733c963_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-pod@sha256:a22242a5bfaa74c4140c6cdb9b319528cb03b2adb0a4ac03a7c4b6159733c963_amd64" + }, + "product_reference": "openshift4/ose-pod@sha256:a22242a5bfaa74c4140c6cdb9b319528cb03b2adb0a4ac03a7c4b6159733c963_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-pod@sha256:cb9c45323348966520fc2d23a7e34b3e8667bd9cf1cb6be45cd65add4dffa962_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-pod@sha256:cb9c45323348966520fc2d23a7e34b3e8667bd9cf1cb6be45cd65add4dffa962_ppc64le" + }, + "product_reference": "openshift4/ose-pod@sha256:cb9c45323348966520fc2d23a7e34b3e8667bd9cf1cb6be45cd65add4dffa962_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-pod@sha256:eac3534dc06e38ab6d60ed43bb0fb8b12716bdfa9cefcb2585a1b992e43a946b_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-pod@sha256:eac3534dc06e38ab6d60ed43bb0fb8b12716bdfa9cefcb2585a1b992e43a946b_arm64" + }, + "product_reference": "openshift4/ose-pod@sha256:eac3534dc06e38ab6d60ed43bb0fb8b12716bdfa9cefcb2585a1b992e43a946b_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:523a17fcd2f438d37179c5dd622e43e7d7331d832ab9248c91b60ab8163a5bff_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:523a17fcd2f438d37179c5dd622e43e7d7331d832ab9248c91b60ab8163a5bff_ppc64le" + }, + "product_reference": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:523a17fcd2f438d37179c5dd622e43e7d7331d832ab9248c91b60ab8163a5bff_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:be9cbf1fc8149788450b5d2bffb1bbd0952b32936c9e4237d3d561da66ec8a22_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:be9cbf1fc8149788450b5d2bffb1bbd0952b32936c9e4237d3d561da66ec8a22_amd64" + }, + "product_reference": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:be9cbf1fc8149788450b5d2bffb1bbd0952b32936c9e4237d3d561da66ec8a22_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:d31af5c8da41b0dbfa67ed401a48c8e9f0717287f57569cb400795736a0ee87d_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-powervs-block-csi-driver-rhel8@sha256:d31af5c8da41b0dbfa67ed401a48c8e9f0717287f57569cb400795736a0ee87d_ppc64le" + }, + "product_reference": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:d31af5c8da41b0dbfa67ed401a48c8e9f0717287f57569cb400795736a0ee87d_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:f775acbd3df9a70214f093b7437b61690eca98e29114caab53c532b026fc2b29_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-powervs-block-csi-driver-rhel8@sha256:f775acbd3df9a70214f093b7437b61690eca98e29114caab53c532b026fc2b29_amd64" + }, + "product_reference": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:f775acbd3df9a70214f093b7437b61690eca98e29114caab53c532b026fc2b29_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:262dcdf860ccfee39ec21dd652bef2e9d61378596b43c09296e3b3672c5cfd0f_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:262dcdf860ccfee39ec21dd652bef2e9d61378596b43c09296e3b3672c5cfd0f_amd64" + }, + "product_reference": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:262dcdf860ccfee39ec21dd652bef2e9d61378596b43c09296e3b3672c5cfd0f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:874b484d4dd058cc92f48d714ff3b38760dfb1b5be55f7f71302ea91776c8ca7_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:874b484d4dd058cc92f48d714ff3b38760dfb1b5be55f7f71302ea91776c8ca7_ppc64le" + }, + "product_reference": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:874b484d4dd058cc92f48d714ff3b38760dfb1b5be55f7f71302ea91776c8ca7_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:8a47d88ac250177db8ab024e7e7fcfb5fb69e8edcf5477bbae7e87ec6af06ccb_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-powervs-machine-controllers-rhel8@sha256:8a47d88ac250177db8ab024e7e7fcfb5fb69e8edcf5477bbae7e87ec6af06ccb_ppc64le" + }, + "product_reference": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:8a47d88ac250177db8ab024e7e7fcfb5fb69e8edcf5477bbae7e87ec6af06ccb_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:937907d4bba40db25d4c7d5b33a70d468385c0c4f5c9a4687d16ebb1ff8e3563_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-powervs-machine-controllers-rhel8@sha256:937907d4bba40db25d4c7d5b33a70d468385c0c4f5c9a4687d16ebb1ff8e3563_amd64" + }, + "product_reference": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:937907d4bba40db25d4c7d5b33a70d468385c0c4f5c9a4687d16ebb1ff8e3563_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prom-label-proxy@sha256:1b3f8f2ef367bac9537d8973362530b3789b9083a4fd16c0ce8ea167c37206f2_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prom-label-proxy@sha256:1b3f8f2ef367bac9537d8973362530b3789b9083a4fd16c0ce8ea167c37206f2_s390x" + }, + "product_reference": "openshift4/ose-prom-label-proxy@sha256:1b3f8f2ef367bac9537d8973362530b3789b9083a4fd16c0ce8ea167c37206f2_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prom-label-proxy@sha256:4626710ac6a341bf707b2d5be57607ebc39ddd9d300ca9496e40fcfc75f20f3e_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prom-label-proxy@sha256:4626710ac6a341bf707b2d5be57607ebc39ddd9d300ca9496e40fcfc75f20f3e_amd64" + }, + "product_reference": "openshift4/ose-prom-label-proxy@sha256:4626710ac6a341bf707b2d5be57607ebc39ddd9d300ca9496e40fcfc75f20f3e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prom-label-proxy@sha256:99bf96ddd153b44d1dd78d73b4d2341d67d1c4b27f9612a5aadbbc4c0a76c3ec_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prom-label-proxy@sha256:99bf96ddd153b44d1dd78d73b4d2341d67d1c4b27f9612a5aadbbc4c0a76c3ec_arm64" + }, + "product_reference": "openshift4/ose-prom-label-proxy@sha256:99bf96ddd153b44d1dd78d73b4d2341d67d1c4b27f9612a5aadbbc4c0a76c3ec_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prom-label-proxy@sha256:c0863df57c72cad15d3c55f4c8009b8e0bd77d1dec484ba4bc2eb147b06dce7c_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prom-label-proxy@sha256:c0863df57c72cad15d3c55f4c8009b8e0bd77d1dec484ba4bc2eb147b06dce7c_ppc64le" + }, + "product_reference": "openshift4/ose-prom-label-proxy@sha256:c0863df57c72cad15d3c55f4c8009b8e0bd77d1dec484ba4bc2eb147b06dce7c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:738076ced738ea22a37704ba3e0dab4925ea85c0c16e41d33556818977358f50_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prometheus-alertmanager@sha256:738076ced738ea22a37704ba3e0dab4925ea85c0c16e41d33556818977358f50_amd64" + }, + "product_reference": "openshift4/ose-prometheus-alertmanager@sha256:738076ced738ea22a37704ba3e0dab4925ea85c0c16e41d33556818977358f50_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:a686c76b6e4954946802586f549a51049c9d5a80c89cac6bb3e1b0658141f761_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prometheus-alertmanager@sha256:a686c76b6e4954946802586f549a51049c9d5a80c89cac6bb3e1b0658141f761_s390x" + }, + "product_reference": "openshift4/ose-prometheus-alertmanager@sha256:a686c76b6e4954946802586f549a51049c9d5a80c89cac6bb3e1b0658141f761_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:b6078bb529f8f567cda76abf7e7bc7702702575feaa1a7bc831edeb781e11804_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prometheus-alertmanager@sha256:b6078bb529f8f567cda76abf7e7bc7702702575feaa1a7bc831edeb781e11804_ppc64le" + }, + "product_reference": "openshift4/ose-prometheus-alertmanager@sha256:b6078bb529f8f567cda76abf7e7bc7702702575feaa1a7bc831edeb781e11804_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:d650b3f7aea9e194463b16314cbe254d2868f3304e8e19ac4c183fede0f8a7de_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prometheus-alertmanager@sha256:d650b3f7aea9e194463b16314cbe254d2868f3304e8e19ac4c183fede0f8a7de_arm64" + }, + "product_reference": "openshift4/ose-prometheus-alertmanager@sha256:d650b3f7aea9e194463b16314cbe254d2868f3304e8e19ac4c183fede0f8a7de_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:0312da93b6349a3866b185bf2d8085f5a98f8d109d5f127833928540e8e47714_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prometheus-config-reloader@sha256:0312da93b6349a3866b185bf2d8085f5a98f8d109d5f127833928540e8e47714_s390x" + }, + "product_reference": "openshift4/ose-prometheus-config-reloader@sha256:0312da93b6349a3866b185bf2d8085f5a98f8d109d5f127833928540e8e47714_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:0ec75acfa72e45060e974ecd83f6cf6483bba42e4948f69882e1b8dd803c5765_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prometheus-config-reloader@sha256:0ec75acfa72e45060e974ecd83f6cf6483bba42e4948f69882e1b8dd803c5765_arm64" + }, + "product_reference": "openshift4/ose-prometheus-config-reloader@sha256:0ec75acfa72e45060e974ecd83f6cf6483bba42e4948f69882e1b8dd803c5765_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:338020fbd51d6ff25335b90171ac12542840fee6c9f7b77b1c91ba8af883c8dc_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prometheus-config-reloader@sha256:338020fbd51d6ff25335b90171ac12542840fee6c9f7b77b1c91ba8af883c8dc_ppc64le" + }, + "product_reference": "openshift4/ose-prometheus-config-reloader@sha256:338020fbd51d6ff25335b90171ac12542840fee6c9f7b77b1c91ba8af883c8dc_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:3cfeba7a98901ea510f476268f0fc520f73329d6bac8939070f20cab36c235dc_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prometheus-config-reloader@sha256:3cfeba7a98901ea510f476268f0fc520f73329d6bac8939070f20cab36c235dc_amd64" + }, + "product_reference": "openshift4/ose-prometheus-config-reloader@sha256:3cfeba7a98901ea510f476268f0fc520f73329d6bac8939070f20cab36c235dc_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:0ffbe781c9401b58689afb90fc6fd618f97bc465d0feffbda9e0e75a268aec2f_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prometheus-node-exporter@sha256:0ffbe781c9401b58689afb90fc6fd618f97bc465d0feffbda9e0e75a268aec2f_amd64" + }, + "product_reference": "openshift4/ose-prometheus-node-exporter@sha256:0ffbe781c9401b58689afb90fc6fd618f97bc465d0feffbda9e0e75a268aec2f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:48475f6274b4af88e4a6855a1b345e22b796a637bf0c69ec4525a9666ec3d6f4_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prometheus-node-exporter@sha256:48475f6274b4af88e4a6855a1b345e22b796a637bf0c69ec4525a9666ec3d6f4_ppc64le" + }, + "product_reference": "openshift4/ose-prometheus-node-exporter@sha256:48475f6274b4af88e4a6855a1b345e22b796a637bf0c69ec4525a9666ec3d6f4_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:95fc8451451ac02b8047421c679c0d9cbcf2038cbf416c40ee3d14a4a780274c_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prometheus-node-exporter@sha256:95fc8451451ac02b8047421c679c0d9cbcf2038cbf416c40ee3d14a4a780274c_arm64" + }, + "product_reference": "openshift4/ose-prometheus-node-exporter@sha256:95fc8451451ac02b8047421c679c0d9cbcf2038cbf416c40ee3d14a4a780274c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:d015209351f7cb7d9e532974388f2991b6cdf516ea3709d67b1ad6b196ea3635_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prometheus-node-exporter@sha256:d015209351f7cb7d9e532974388f2991b6cdf516ea3709d67b1ad6b196ea3635_s390x" + }, + "product_reference": "openshift4/ose-prometheus-node-exporter@sha256:d015209351f7cb7d9e532974388f2991b6cdf516ea3709d67b1ad6b196ea3635_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:0dd241ec102dfa39ca43dfbdca2ceeb7b90dba47d43306044c2c61a15d55d6dc_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:0dd241ec102dfa39ca43dfbdca2ceeb7b90dba47d43306044c2c61a15d55d6dc_ppc64le" + }, + "product_reference": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:0dd241ec102dfa39ca43dfbdca2ceeb7b90dba47d43306044c2c61a15d55d6dc_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:42c6e229368d5f5ad26f57fd45f5e34258d661b2a11cc1494f4a7985a1b8892f_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:42c6e229368d5f5ad26f57fd45f5e34258d661b2a11cc1494f4a7985a1b8892f_s390x" + }, + "product_reference": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:42c6e229368d5f5ad26f57fd45f5e34258d661b2a11cc1494f4a7985a1b8892f_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:742862a04b084b7a42cf3148d2a28e0fcef5027a3313af72e7894e51f27e7c47_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:742862a04b084b7a42cf3148d2a28e0fcef5027a3313af72e7894e51f27e7c47_arm64" + }, + "product_reference": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:742862a04b084b7a42cf3148d2a28e0fcef5027a3313af72e7894e51f27e7c47_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:7812668217067f9038cc63d1542d3363ccacc30bf9047e2fcb9446136f48ca01_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:7812668217067f9038cc63d1542d3363ccacc30bf9047e2fcb9446136f48ca01_amd64" + }, + "product_reference": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:7812668217067f9038cc63d1542d3363ccacc30bf9047e2fcb9446136f48ca01_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator@sha256:5e1abdb3bffdec2fdc9815efaaf75f94a9e27aa0dcad527d0dd9d918d9f49e9c_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prometheus-operator@sha256:5e1abdb3bffdec2fdc9815efaaf75f94a9e27aa0dcad527d0dd9d918d9f49e9c_arm64" + }, + "product_reference": "openshift4/ose-prometheus-operator@sha256:5e1abdb3bffdec2fdc9815efaaf75f94a9e27aa0dcad527d0dd9d918d9f49e9c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator@sha256:794d100ab1ef39ad81a3643a016897e94bec577db28aed901a356ecf0b961712_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prometheus-operator@sha256:794d100ab1ef39ad81a3643a016897e94bec577db28aed901a356ecf0b961712_s390x" + }, + "product_reference": "openshift4/ose-prometheus-operator@sha256:794d100ab1ef39ad81a3643a016897e94bec577db28aed901a356ecf0b961712_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator@sha256:da1701a4c82c370c2d514bb6dc11cfbd77e190573f45e4a9e15f7e1fd548e3ea_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prometheus-operator@sha256:da1701a4c82c370c2d514bb6dc11cfbd77e190573f45e4a9e15f7e1fd548e3ea_amd64" + }, + "product_reference": "openshift4/ose-prometheus-operator@sha256:da1701a4c82c370c2d514bb6dc11cfbd77e190573f45e4a9e15f7e1fd548e3ea_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator@sha256:e5cbae5f7c798ca6c7c70df60b4c40fab62a17d082d4d4ad822699e77e3a5b57_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prometheus-operator@sha256:e5cbae5f7c798ca6c7c70df60b4c40fab62a17d082d4d4ad822699e77e3a5b57_ppc64le" + }, + "product_reference": "openshift4/ose-prometheus-operator@sha256:e5cbae5f7c798ca6c7c70df60b4c40fab62a17d082d4d4ad822699e77e3a5b57_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus@sha256:0b46d8da151f36576aadfb0e1855b2f8d4d7b5e897ea406b8943df1afe4f24c7_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prometheus@sha256:0b46d8da151f36576aadfb0e1855b2f8d4d7b5e897ea406b8943df1afe4f24c7_ppc64le" + }, + "product_reference": "openshift4/ose-prometheus@sha256:0b46d8da151f36576aadfb0e1855b2f8d4d7b5e897ea406b8943df1afe4f24c7_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus@sha256:7328754aa41c200b916f1248afaae56fdfa68de60a88b203ff38a40f8aa2892a_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prometheus@sha256:7328754aa41c200b916f1248afaae56fdfa68de60a88b203ff38a40f8aa2892a_arm64" + }, + "product_reference": "openshift4/ose-prometheus@sha256:7328754aa41c200b916f1248afaae56fdfa68de60a88b203ff38a40f8aa2892a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus@sha256:d5fd66adfe48e5dc5efd1732c209d732d15e17037162f6cc13502106899bd45f_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prometheus@sha256:d5fd66adfe48e5dc5efd1732c209d732d15e17037162f6cc13502106899bd45f_s390x" + }, + "product_reference": "openshift4/ose-prometheus@sha256:d5fd66adfe48e5dc5efd1732c209d732d15e17037162f6cc13502106899bd45f_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus@sha256:fa95237ef8610b026a5a449655c0618c79f666501265dd75d07724c3427a71a1_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-prometheus@sha256:fa95237ef8610b026a5a449655c0618c79f666501265dd75d07724c3427a71a1_amd64" + }, + "product_reference": "openshift4/ose-prometheus@sha256:fa95237ef8610b026a5a449655c0618c79f666501265dd75d07724c3427a71a1_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sdn-rhel8@sha256:32110324b2db9e58dafba6cca000d37349ac6a371205696a0f1a7e4c4a8fdbfd_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-sdn-rhel8@sha256:32110324b2db9e58dafba6cca000d37349ac6a371205696a0f1a7e4c4a8fdbfd_arm64" + }, + "product_reference": "openshift4/ose-sdn-rhel8@sha256:32110324b2db9e58dafba6cca000d37349ac6a371205696a0f1a7e4c4a8fdbfd_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sdn-rhel8@sha256:8936aad2d0ada59936894bbf928188d26d0b8f278e1b758b6cbfad5cdffc2493_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-sdn-rhel8@sha256:8936aad2d0ada59936894bbf928188d26d0b8f278e1b758b6cbfad5cdffc2493_ppc64le" + }, + "product_reference": "openshift4/ose-sdn-rhel8@sha256:8936aad2d0ada59936894bbf928188d26d0b8f278e1b758b6cbfad5cdffc2493_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sdn-rhel8@sha256:b6fe9c78a0e5c3f19e3b8fdd0990d73c784ce8ca44bab49f97b1b5a5ce99351c_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-sdn-rhel8@sha256:b6fe9c78a0e5c3f19e3b8fdd0990d73c784ce8ca44bab49f97b1b5a5ce99351c_amd64" + }, + "product_reference": "openshift4/ose-sdn-rhel8@sha256:b6fe9c78a0e5c3f19e3b8fdd0990d73c784ce8ca44bab49f97b1b5a5ce99351c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sdn-rhel8@sha256:e52144bb930104749c0777d0a7c7e6151e96f122092d0ec2617f26f2091bc1bd_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-sdn-rhel8@sha256:e52144bb930104749c0777d0a7c7e6151e96f122092d0ec2617f26f2091bc1bd_s390x" + }, + "product_reference": "openshift4/ose-sdn-rhel8@sha256:e52144bb930104749c0777d0a7c7e6151e96f122092d0ec2617f26f2091bc1bd_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-service-ca-operator@sha256:48b0b57b95977ce807caf93a314dd586140dc62bd6eee6a232282e8b7ca827a1_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-service-ca-operator@sha256:48b0b57b95977ce807caf93a314dd586140dc62bd6eee6a232282e8b7ca827a1_s390x" + }, + "product_reference": "openshift4/ose-service-ca-operator@sha256:48b0b57b95977ce807caf93a314dd586140dc62bd6eee6a232282e8b7ca827a1_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-service-ca-operator@sha256:7fd54b30665bbcd606860df7182b5e021d3e4cf5cee1f9332a1b0c31b5a71f8e_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-service-ca-operator@sha256:7fd54b30665bbcd606860df7182b5e021d3e4cf5cee1f9332a1b0c31b5a71f8e_arm64" + }, + "product_reference": "openshift4/ose-service-ca-operator@sha256:7fd54b30665bbcd606860df7182b5e021d3e4cf5cee1f9332a1b0c31b5a71f8e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-service-ca-operator@sha256:81ca4f326c4c3a9ab82eacdee46941ca454a617eaa27a7015bb6f77707b83502_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-service-ca-operator@sha256:81ca4f326c4c3a9ab82eacdee46941ca454a617eaa27a7015bb6f77707b83502_amd64" + }, + "product_reference": "openshift4/ose-service-ca-operator@sha256:81ca4f326c4c3a9ab82eacdee46941ca454a617eaa27a7015bb6f77707b83502_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-service-ca-operator@sha256:fa071f8535f2f7f457ac340ef9a81933e3f1794d5b7cc26e50b2546a35199967_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-service-ca-operator@sha256:fa071f8535f2f7f457ac340ef9a81933e3f1794d5b7cc26e50b2546a35199967_ppc64le" + }, + "product_reference": "openshift4/ose-service-ca-operator@sha256:fa071f8535f2f7f457ac340ef9a81933e3f1794d5b7cc26e50b2546a35199967_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-telemeter@sha256:2ceadad432a3e941cab5a20b766e3750ea703110baa0c22c5da474c1cedb3f20_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-telemeter@sha256:2ceadad432a3e941cab5a20b766e3750ea703110baa0c22c5da474c1cedb3f20_s390x" + }, + "product_reference": "openshift4/ose-telemeter@sha256:2ceadad432a3e941cab5a20b766e3750ea703110baa0c22c5da474c1cedb3f20_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-telemeter@sha256:aff12125a58587f77abc574ea05378525d562683e705eddb891cf0037ed41ba6_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-telemeter@sha256:aff12125a58587f77abc574ea05378525d562683e705eddb891cf0037ed41ba6_amd64" + }, + "product_reference": "openshift4/ose-telemeter@sha256:aff12125a58587f77abc574ea05378525d562683e705eddb891cf0037ed41ba6_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-telemeter@sha256:cb4962bdad9367199f07dddf4ecf6a6544a4384f5ee33cb4032d81235e867c24_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-telemeter@sha256:cb4962bdad9367199f07dddf4ecf6a6544a4384f5ee33cb4032d81235e867c24_arm64" + }, + "product_reference": "openshift4/ose-telemeter@sha256:cb4962bdad9367199f07dddf4ecf6a6544a4384f5ee33cb4032d81235e867c24_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-telemeter@sha256:fa62c10128a5e8bf64a3568c3e1eade34194e49ce444ab21c1eaba7cbce5584c_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-telemeter@sha256:fa62c10128a5e8bf64a3568c3e1eade34194e49ce444ab21c1eaba7cbce5584c_ppc64le" + }, + "product_reference": "openshift4/ose-telemeter@sha256:fa62c10128a5e8bf64a3568c3e1eade34194e49ce444ab21c1eaba7cbce5584c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tests@sha256:0cf78044518b80cb0b6b89b6164a86284bb541e5561e5ab2d32f2b731c0ec279_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-tests@sha256:0cf78044518b80cb0b6b89b6164a86284bb541e5561e5ab2d32f2b731c0ec279_s390x" + }, + "product_reference": "openshift4/ose-tests@sha256:0cf78044518b80cb0b6b89b6164a86284bb541e5561e5ab2d32f2b731c0ec279_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tests@sha256:76dc220d82121dad69317ecf8b9c0b42ad133b683bd0cceff3c678b3a8367682_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-tests@sha256:76dc220d82121dad69317ecf8b9c0b42ad133b683bd0cceff3c678b3a8367682_ppc64le" + }, + "product_reference": "openshift4/ose-tests@sha256:76dc220d82121dad69317ecf8b9c0b42ad133b683bd0cceff3c678b3a8367682_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tests@sha256:b421c5b14a5da4e153ff815a8e674d4a4b8c784df4a321484b4e7fd9ad7868a3_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-tests@sha256:b421c5b14a5da4e153ff815a8e674d4a4b8c784df4a321484b4e7fd9ad7868a3_amd64" + }, + "product_reference": "openshift4/ose-tests@sha256:b421c5b14a5da4e153ff815a8e674d4a4b8c784df4a321484b4e7fd9ad7868a3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tests@sha256:edeb8dc1a6e1bd702e52c49b2d8da66552144812e4e1bc1652401e3cacb58245_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-tests@sha256:edeb8dc1a6e1bd702e52c49b2d8da66552144812e4e1bc1652401e3cacb58245_arm64" + }, + "product_reference": "openshift4/ose-tests@sha256:edeb8dc1a6e1bd702e52c49b2d8da66552144812e4e1bc1652401e3cacb58245_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-thanos-rhel8@sha256:0db3558499ceb55d4f27fce750dfdd56f9047f03e7b335f682a854caa912f0b3_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-thanos-rhel8@sha256:0db3558499ceb55d4f27fce750dfdd56f9047f03e7b335f682a854caa912f0b3_s390x" + }, + "product_reference": "openshift4/ose-thanos-rhel8@sha256:0db3558499ceb55d4f27fce750dfdd56f9047f03e7b335f682a854caa912f0b3_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-thanos-rhel8@sha256:26e4a9884b5b90b3a810071cb568013d1f93acf70d62442f095b0c6ff4b41757_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-thanos-rhel8@sha256:26e4a9884b5b90b3a810071cb568013d1f93acf70d62442f095b0c6ff4b41757_ppc64le" + }, + "product_reference": "openshift4/ose-thanos-rhel8@sha256:26e4a9884b5b90b3a810071cb568013d1f93acf70d62442f095b0c6ff4b41757_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-thanos-rhel8@sha256:a2a0a1b4f08e2c5b3e5c1fe527400315e6532063af6c6e2dce7a0eac79a1d1bf_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-thanos-rhel8@sha256:a2a0a1b4f08e2c5b3e5c1fe527400315e6532063af6c6e2dce7a0eac79a1d1bf_amd64" + }, + "product_reference": "openshift4/ose-thanos-rhel8@sha256:a2a0a1b4f08e2c5b3e5c1fe527400315e6532063af6c6e2dce7a0eac79a1d1bf_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-thanos-rhel8@sha256:b167ab08fd708667280233fc88ece58420628b801c6a74db12fd2734e4f39091_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-thanos-rhel8@sha256:b167ab08fd708667280233fc88ece58420628b801c6a74db12fd2734e4f39091_arm64" + }, + "product_reference": "openshift4/ose-thanos-rhel8@sha256:b167ab08fd708667280233fc88ece58420628b801c6a74db12fd2734e4f39091_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tools-rhel8@sha256:0019db0992fd34e8718ff979f41dffa08430c5fdbfe2c144444bd06a83547515_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-tools-rhel8@sha256:0019db0992fd34e8718ff979f41dffa08430c5fdbfe2c144444bd06a83547515_arm64" + }, + "product_reference": "openshift4/ose-tools-rhel8@sha256:0019db0992fd34e8718ff979f41dffa08430c5fdbfe2c144444bd06a83547515_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tools-rhel8@sha256:1ed490ba52f4aa30a072b2dca994c0626c1a7dc4392cdc4bec90e2b36fdf23ba_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-tools-rhel8@sha256:1ed490ba52f4aa30a072b2dca994c0626c1a7dc4392cdc4bec90e2b36fdf23ba_ppc64le" + }, + "product_reference": "openshift4/ose-tools-rhel8@sha256:1ed490ba52f4aa30a072b2dca994c0626c1a7dc4392cdc4bec90e2b36fdf23ba_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tools-rhel8@sha256:56672fe19e4d976326687bab8d371461077b8b8e3e48b4e75b0caa403a374e60_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-tools-rhel8@sha256:56672fe19e4d976326687bab8d371461077b8b8e3e48b4e75b0caa403a374e60_s390x" + }, + "product_reference": "openshift4/ose-tools-rhel8@sha256:56672fe19e4d976326687bab8d371461077b8b8e3e48b4e75b0caa403a374e60_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tools-rhel8@sha256:7a2ed3f78e6da4346b729ee7823c25966f92b0767870d48e9a7b194ef08fabb9_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-tools-rhel8@sha256:7a2ed3f78e6da4346b729ee7823c25966f92b0767870d48e9a7b194ef08fabb9_amd64" + }, + "product_reference": "openshift4/ose-tools-rhel8@sha256:7a2ed3f78e6da4346b729ee7823c25966f92b0767870d48e9a7b194ef08fabb9_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:b21f7d1930270a5ce696fdd39c19d92b93cd7e6a406b70770bfff67e2c6f8893_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:b21f7d1930270a5ce696fdd39c19d92b93cd7e6a406b70770bfff67e2c6f8893_amd64" + }, + "product_reference": "openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:b21f7d1930270a5ce696fdd39c19d92b93cd7e6a406b70770bfff67e2c6f8893_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:c6343a07e1d4eadc18a52d8f5f7748109d58ba0a31b05db050ec7625cabe5c99_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:c6343a07e1d4eadc18a52d8f5f7748109d58ba0a31b05db050ec7625cabe5c99_amd64" + }, + "product_reference": "openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:c6343a07e1d4eadc18a52d8f5f7748109d58ba0a31b05db050ec7625cabe5c99_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:c77369e7356e414a862ae6ede69169ebab5dc2498c3669af5e622933557f2cbc_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:c77369e7356e414a862ae6ede69169ebab5dc2498c3669af5e622933557f2cbc_amd64" + }, + "product_reference": "openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:c77369e7356e414a862ae6ede69169ebab5dc2498c3669af5e622933557f2cbc_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:58517cd3e3956a7099f3ba528b6f7be1ea78ffff6fc9456f92de90d1a964f35d_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:58517cd3e3956a7099f3ba528b6f7be1ea78ffff6fc9456f92de90d1a964f35d_amd64" + }, + "product_reference": "openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:58517cd3e3956a7099f3ba528b6f7be1ea78ffff6fc9456f92de90d1a964f35d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:b21f7d1930270a5ce696fdd39c19d92b93cd7e6a406b70770bfff67e2c6f8893_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:b21f7d1930270a5ce696fdd39c19d92b93cd7e6a406b70770bfff67e2c6f8893_amd64" + }, + "product_reference": "openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:b21f7d1930270a5ce696fdd39c19d92b93cd7e6a406b70770bfff67e2c6f8893_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vsphere-csi-driver-rhel8@sha256:c6343a07e1d4eadc18a52d8f5f7748109d58ba0a31b05db050ec7625cabe5c99_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-vsphere-csi-driver-rhel8@sha256:c6343a07e1d4eadc18a52d8f5f7748109d58ba0a31b05db050ec7625cabe5c99_amd64" + }, + "product_reference": "openshift4/ose-vsphere-csi-driver-rhel8@sha256:c6343a07e1d4eadc18a52d8f5f7748109d58ba0a31b05db050ec7625cabe5c99_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:3009c165a58ee3178607aaaf7c01b7038629618932306c6db4644411c864dec0_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:3009c165a58ee3178607aaaf7c01b7038629618932306c6db4644411c864dec0_amd64" + }, + "product_reference": "openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:3009c165a58ee3178607aaaf7c01b7038629618932306c6db4644411c864dec0_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vsphere-problem-detector-rhel8@sha256:0123b94a59276a78fc2745cef46b93140810af26fb47aeabb13fa5860d40e239_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ose-vsphere-problem-detector-rhel8@sha256:0123b94a59276a78fc2745cef46b93140810af26fb47aeabb13fa5860d40e239_amd64" + }, + "product_reference": "openshift4/ose-vsphere-problem-detector-rhel8@sha256:0123b94a59276a78fc2745cef46b93140810af26fb47aeabb13fa5860d40e239_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:38e6a3da706bbeb9cd5c9976fb0c8adb4f7603f7caa9e71a124e9a911a9b724e_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ovirt-csi-driver-rhel7@sha256:38e6a3da706bbeb9cd5c9976fb0c8adb4f7603f7caa9e71a124e9a911a9b724e_arm64" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel7@sha256:38e6a3da706bbeb9cd5c9976fb0c8adb4f7603f7caa9e71a124e9a911a9b724e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:6ce6a28be84e62aa8e0b947a1ea90c5ce8cd2e31e3a4087f23682aa992073fd9_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ovirt-csi-driver-rhel7@sha256:6ce6a28be84e62aa8e0b947a1ea90c5ce8cd2e31e3a4087f23682aa992073fd9_ppc64le" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel7@sha256:6ce6a28be84e62aa8e0b947a1ea90c5ce8cd2e31e3a4087f23682aa992073fd9_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:b084fad68cc27c5c1f758e598e75edabd52bf8dac10fab6524e7e03d92c5e9e9_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ovirt-csi-driver-rhel7@sha256:b084fad68cc27c5c1f758e598e75edabd52bf8dac10fab6524e7e03d92c5e9e9_s390x" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel7@sha256:b084fad68cc27c5c1f758e598e75edabd52bf8dac10fab6524e7e03d92c5e9e9_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:c7e5a5e8d553b22c260d311ae4585669e92ea9236559c59ca56ac016ff089cc4_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ovirt-csi-driver-rhel7@sha256:c7e5a5e8d553b22c260d311ae4585669e92ea9236559c59ca56ac016ff089cc4_amd64" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel7@sha256:c7e5a5e8d553b22c260d311ae4585669e92ea9236559c59ca56ac016ff089cc4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:37c6086aeb87d91e26a5bc166cf5fea440e5b5f865097db182a5fbf7fffe2220_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ovirt-csi-driver-rhel8-operator@sha256:37c6086aeb87d91e26a5bc166cf5fea440e5b5f865097db182a5fbf7fffe2220_s390x" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:37c6086aeb87d91e26a5bc166cf5fea440e5b5f865097db182a5fbf7fffe2220_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:63db9ccfe905f1286c9888984848bb166ecd4dbf4b12e708fcbcda41af57d7b2_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ovirt-csi-driver-rhel8-operator@sha256:63db9ccfe905f1286c9888984848bb166ecd4dbf4b12e708fcbcda41af57d7b2_amd64" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:63db9ccfe905f1286c9888984848bb166ecd4dbf4b12e708fcbcda41af57d7b2_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:9dc87c548bf2d0d06de65b487a9a0c957d4f947dea7413ccca34dc486fff6b44_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ovirt-csi-driver-rhel8-operator@sha256:9dc87c548bf2d0d06de65b487a9a0c957d4f947dea7413ccca34dc486fff6b44_ppc64le" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:9dc87c548bf2d0d06de65b487a9a0c957d4f947dea7413ccca34dc486fff6b44_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:beb7777da67bb50962ac498b3bf79479164a0019e9c1ed5110a842fafad4f8ba_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ovirt-csi-driver-rhel8-operator@sha256:beb7777da67bb50962ac498b3bf79479164a0019e9c1ed5110a842fafad4f8ba_arm64" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:beb7777da67bb50962ac498b3bf79479164a0019e9c1ed5110a842fafad4f8ba_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:38e6a3da706bbeb9cd5c9976fb0c8adb4f7603f7caa9e71a124e9a911a9b724e_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ovirt-csi-driver-rhel8@sha256:38e6a3da706bbeb9cd5c9976fb0c8adb4f7603f7caa9e71a124e9a911a9b724e_arm64" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8@sha256:38e6a3da706bbeb9cd5c9976fb0c8adb4f7603f7caa9e71a124e9a911a9b724e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:6ce6a28be84e62aa8e0b947a1ea90c5ce8cd2e31e3a4087f23682aa992073fd9_ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ovirt-csi-driver-rhel8@sha256:6ce6a28be84e62aa8e0b947a1ea90c5ce8cd2e31e3a4087f23682aa992073fd9_ppc64le" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8@sha256:6ce6a28be84e62aa8e0b947a1ea90c5ce8cd2e31e3a4087f23682aa992073fd9_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:b084fad68cc27c5c1f758e598e75edabd52bf8dac10fab6524e7e03d92c5e9e9_s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ovirt-csi-driver-rhel8@sha256:b084fad68cc27c5c1f758e598e75edabd52bf8dac10fab6524e7e03d92c5e9e9_s390x" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8@sha256:b084fad68cc27c5c1f758e598e75edabd52bf8dac10fab6524e7e03d92c5e9e9_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:c7e5a5e8d553b22c260d311ae4585669e92ea9236559c59ca56ac016ff089cc4_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/ovirt-csi-driver-rhel8@sha256:c7e5a5e8d553b22c260d311ae4585669e92ea9236559c59ca56ac016ff089cc4_amd64" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8@sha256:c7e5a5e8d553b22c260d311ae4585669e92ea9236559c59ca56ac016ff089cc4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/performance-addon-operator-must-gather-rhel8@sha256:76501b6f85aac090077094f0d4a2da4475b788b1fb7698b6ec33f17e1b2eb898_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:openshift4/performance-addon-operator-must-gather-rhel8@sha256:76501b6f85aac090077094f0d4a2da4475b788b1fb7698b6ec33f17e1b2eb898_amd64" + }, + "product_reference": "openshift4/performance-addon-operator-must-gather-rhel8@sha256:76501b6f85aac090077094f0d4a2da4475b788b1fb7698b6ec33f17e1b2eb898_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:perf-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "perf-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:perf-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "perf-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:perf-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "perf-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:perf-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "perf-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:perf-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:perf-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:perf-debuginfo-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:perf-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "perf-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:python3-perf-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "python3-perf-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:python3-perf-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "python3-perf-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:python3-perf-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "python3-perf-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:python3-perf-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "python3-perf-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64" + }, + "product_reference": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le" + }, + "product_reference": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.s390x" + }, + "product_reference": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "8Base-RHOSE-4.12:python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64" + }, + "product_reference": "python3-perf-debuginfo-0:4.18.0-372.76.1.el8_6.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.aarch64" + }, + "product_reference": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.ppc64le" + }, + "product_reference": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.s390x" + }, + "product_reference": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.src as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.src" + }, + "product_reference": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.x86_64" + }, + "product_reference": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el8.aarch64" + }, + "product_reference": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el8.ppc64le" + }, + "product_reference": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el8.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el8.s390x" + }, + "product_reference": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el8.x86_64" + }, + "product_reference": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el8.aarch64" + }, + "product_reference": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el8.ppc64le" + }, + "product_reference": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el8.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el8.s390x" + }, + "product_reference": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el8.x86_64" + }, + "product_reference": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.aarch64" + }, + "product_reference": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.ppc64le" + }, + "product_reference": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.s390x" + }, + "product_reference": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.src as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.src" + }, + "product_reference": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.x86_64" + }, + "product_reference": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-redistributable-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift-clients-redistributable-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.x86_64" + }, + "product_reference": "openshift-clients-redistributable-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-tech-preview/metallb-rhel8@sha256:1ea923a6908e58ba3ca77c2f08cc7a50df4dce9341055f1aa007b5f33a172f00_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift-tech-preview/metallb-rhel8@sha256:1ea923a6908e58ba3ca77c2f08cc7a50df4dce9341055f1aa007b5f33a172f00_s390x" + }, + "product_reference": "openshift-tech-preview/metallb-rhel8@sha256:1ea923a6908e58ba3ca77c2f08cc7a50df4dce9341055f1aa007b5f33a172f00_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-tech-preview/metallb-rhel8@sha256:5ea1a8f197e9c3b8cc11583b49a0c57f5679a57597e689101551d511b1cbd567_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift-tech-preview/metallb-rhel8@sha256:5ea1a8f197e9c3b8cc11583b49a0c57f5679a57597e689101551d511b1cbd567_ppc64le" + }, + "product_reference": "openshift-tech-preview/metallb-rhel8@sha256:5ea1a8f197e9c3b8cc11583b49a0c57f5679a57597e689101551d511b1cbd567_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-tech-preview/metallb-rhel8@sha256:a1cdafb7a4f5b399ba3a2bbbd97f6ec55fa58d0b0bcff73645a6939710218e79_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift-tech-preview/metallb-rhel8@sha256:a1cdafb7a4f5b399ba3a2bbbd97f6ec55fa58d0b0bcff73645a6939710218e79_arm64" + }, + "product_reference": "openshift-tech-preview/metallb-rhel8@sha256:a1cdafb7a4f5b399ba3a2bbbd97f6ec55fa58d0b0bcff73645a6939710218e79_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-tech-preview/metallb-rhel8@sha256:dad9b83e0fb1c1ac802cb2f95932e227467e6cc3c630c569a2f46f2d4c6b8cda_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift-tech-preview/metallb-rhel8@sha256:dad9b83e0fb1c1ac802cb2f95932e227467e6cc3c630c569a2f46f2d4c6b8cda_amd64" + }, + "product_reference": "openshift-tech-preview/metallb-rhel8@sha256:dad9b83e0fb1c1ac802cb2f95932e227467e6cc3c630c569a2f46f2d4c6b8cda_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:26dcbe829d899b9a44447c327f48987f45f8eec1fea43a71c0a11a66b30a1a37_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/cloud-network-config-controller-rhel8@sha256:26dcbe829d899b9a44447c327f48987f45f8eec1fea43a71c0a11a66b30a1a37_ppc64le" + }, + "product_reference": "openshift4/cloud-network-config-controller-rhel8@sha256:26dcbe829d899b9a44447c327f48987f45f8eec1fea43a71c0a11a66b30a1a37_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:6c02366c9fb06aa24fcafa97f66f35099bd8a7c80a6e1ec59035a88be1b9fd5c_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/cloud-network-config-controller-rhel8@sha256:6c02366c9fb06aa24fcafa97f66f35099bd8a7c80a6e1ec59035a88be1b9fd5c_s390x" + }, + "product_reference": "openshift4/cloud-network-config-controller-rhel8@sha256:6c02366c9fb06aa24fcafa97f66f35099bd8a7c80a6e1ec59035a88be1b9fd5c_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:8875ec444265a8c7338c7829377c7eed7676b450cb2825a523cac32bc2a171b8_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/cloud-network-config-controller-rhel8@sha256:8875ec444265a8c7338c7829377c7eed7676b450cb2825a523cac32bc2a171b8_amd64" + }, + "product_reference": "openshift4/cloud-network-config-controller-rhel8@sha256:8875ec444265a8c7338c7829377c7eed7676b450cb2825a523cac32bc2a171b8_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:a020614c27920ad9880e10c0bc558389182f84e0b55cf144a42f947961b8f2af_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/cloud-network-config-controller-rhel8@sha256:a020614c27920ad9880e10c0bc558389182f84e0b55cf144a42f947961b8f2af_arm64" + }, + "product_reference": "openshift4/cloud-network-config-controller-rhel8@sha256:a020614c27920ad9880e10c0bc558389182f84e0b55cf144a42f947961b8f2af_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/dpu-network-rhel8-operator@sha256:4c57f4732767082e523289b14aff8b13565e4af01036e1c50f128064fd84adbf_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/dpu-network-rhel8-operator@sha256:4c57f4732767082e523289b14aff8b13565e4af01036e1c50f128064fd84adbf_amd64" + }, + "product_reference": "openshift4/dpu-network-rhel8-operator@sha256:4c57f4732767082e523289b14aff8b13565e4af01036e1c50f128064fd84adbf_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/dpu-network-rhel8-operator@sha256:6d3659fad8fc7f49e44a5d1577789dfb373670fa2fe8ebadc04870a81a04fe53_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/dpu-network-rhel8-operator@sha256:6d3659fad8fc7f49e44a5d1577789dfb373670fa2fe8ebadc04870a81a04fe53_arm64" + }, + "product_reference": "openshift4/dpu-network-rhel8-operator@sha256:6d3659fad8fc7f49e44a5d1577789dfb373670fa2fe8ebadc04870a81a04fe53_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/egress-router-cni-rhel8@sha256:27a6118e14c5a83e39d916859945b5a84bb83522404904696946f44ad6977a66_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/egress-router-cni-rhel8@sha256:27a6118e14c5a83e39d916859945b5a84bb83522404904696946f44ad6977a66_amd64" + }, + "product_reference": "openshift4/egress-router-cni-rhel8@sha256:27a6118e14c5a83e39d916859945b5a84bb83522404904696946f44ad6977a66_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/egress-router-cni-rhel8@sha256:2e4351145ce1d199647ee9ac36c5dbc72d87e66b7d9c3b7a38265edaf2f8dfb8_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/egress-router-cni-rhel8@sha256:2e4351145ce1d199647ee9ac36c5dbc72d87e66b7d9c3b7a38265edaf2f8dfb8_s390x" + }, + "product_reference": "openshift4/egress-router-cni-rhel8@sha256:2e4351145ce1d199647ee9ac36c5dbc72d87e66b7d9c3b7a38265edaf2f8dfb8_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/egress-router-cni-rhel8@sha256:420b337875b50415a090ccfc4c040e9cc85f20ef517edd6f6ebbd26db52287eb_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/egress-router-cni-rhel8@sha256:420b337875b50415a090ccfc4c040e9cc85f20ef517edd6f6ebbd26db52287eb_arm64" + }, + "product_reference": "openshift4/egress-router-cni-rhel8@sha256:420b337875b50415a090ccfc4c040e9cc85f20ef517edd6f6ebbd26db52287eb_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/egress-router-cni-rhel8@sha256:b38a3e591a1f3a321f408610a97868d1dbba0ce3494da79897485cc67d70d269_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/egress-router-cni-rhel8@sha256:b38a3e591a1f3a321f408610a97868d1dbba0ce3494da79897485cc67d70d269_ppc64le" + }, + "product_reference": "openshift4/egress-router-cni-rhel8@sha256:b38a3e591a1f3a321f408610a97868d1dbba0ce3494da79897485cc67d70d269_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/frr-rhel8@sha256:00d2a90cb8ec02add70b819e4521569b80e8778780887f2063c1fdeff05cb3c7_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/frr-rhel8@sha256:00d2a90cb8ec02add70b819e4521569b80e8778780887f2063c1fdeff05cb3c7_amd64" + }, + "product_reference": "openshift4/frr-rhel8@sha256:00d2a90cb8ec02add70b819e4521569b80e8778780887f2063c1fdeff05cb3c7_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/frr-rhel8@sha256:0170422d58598b741a42ef990412a5cda856b045176a752b5914fbe025ac17b9_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/frr-rhel8@sha256:0170422d58598b741a42ef990412a5cda856b045176a752b5914fbe025ac17b9_arm64" + }, + "product_reference": "openshift4/frr-rhel8@sha256:0170422d58598b741a42ef990412a5cda856b045176a752b5914fbe025ac17b9_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/frr-rhel8@sha256:655785d4b563319c3504bc047607d8e51e18b2f40024082e75b60a5212fa7977_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/frr-rhel8@sha256:655785d4b563319c3504bc047607d8e51e18b2f40024082e75b60a5212fa7977_s390x" + }, + "product_reference": "openshift4/frr-rhel8@sha256:655785d4b563319c3504bc047607d8e51e18b2f40024082e75b60a5212fa7977_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/frr-rhel8@sha256:6e8cd5cbac26007bf42c86773b841257be5f533aa0eb501fb4eeef45a0f27363_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/frr-rhel8@sha256:6e8cd5cbac26007bf42c86773b841257be5f533aa0eb501fb4eeef45a0f27363_ppc64le" + }, + "product_reference": "openshift4/frr-rhel8@sha256:6e8cd5cbac26007bf42c86773b841257be5f533aa0eb501fb4eeef45a0f27363_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ingress-node-firewall-rhel8-operator@sha256:23c2ab3fefc76154846642bc7f687e540a82aa9df7725f590cee4a667f999aee_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ingress-node-firewall-rhel8-operator@sha256:23c2ab3fefc76154846642bc7f687e540a82aa9df7725f590cee4a667f999aee_amd64" + }, + "product_reference": "openshift4/ingress-node-firewall-rhel8-operator@sha256:23c2ab3fefc76154846642bc7f687e540a82aa9df7725f590cee4a667f999aee_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ingress-node-firewall-rhel8-operator@sha256:2aea4ffb73a90eaecac491d20cb8b047095c8d80a4826faf4e0db8fc56cfad65_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ingress-node-firewall-rhel8-operator@sha256:2aea4ffb73a90eaecac491d20cb8b047095c8d80a4826faf4e0db8fc56cfad65_arm64" + }, + "product_reference": "openshift4/ingress-node-firewall-rhel8-operator@sha256:2aea4ffb73a90eaecac491d20cb8b047095c8d80a4826faf4e0db8fc56cfad65_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ingress-node-firewall-rhel8-operator@sha256:ef2fb3e4f30fec8c4e4c186cbcbb49ff7b56d4226d58edbdf15e5642bc434c72_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ingress-node-firewall-rhel8-operator@sha256:ef2fb3e4f30fec8c4e4c186cbcbb49ff7b56d4226d58edbdf15e5642bc434c72_s390x" + }, + "product_reference": "openshift4/ingress-node-firewall-rhel8-operator@sha256:ef2fb3e4f30fec8c4e4c186cbcbb49ff7b56d4226d58edbdf15e5642bc434c72_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ingress-node-firewall-rhel8-operator@sha256:f5cd1f4cbbaae11b48f040e2435fc01d4a66c17bc185b73eb57f5a0ebfc0dd5c_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ingress-node-firewall-rhel8-operator@sha256:f5cd1f4cbbaae11b48f040e2435fc01d4a66c17bc185b73eb57f5a0ebfc0dd5c_ppc64le" + }, + "product_reference": "openshift4/ingress-node-firewall-rhel8-operator@sha256:f5cd1f4cbbaae11b48f040e2435fc01d4a66c17bc185b73eb57f5a0ebfc0dd5c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ingress-node-firewall@sha256:2bb2a303e2b8543d45a5f5475826c04ce8a6819de5390bc3f8bcc600c07fc71e_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ingress-node-firewall@sha256:2bb2a303e2b8543d45a5f5475826c04ce8a6819de5390bc3f8bcc600c07fc71e_amd64" + }, + "product_reference": "openshift4/ingress-node-firewall@sha256:2bb2a303e2b8543d45a5f5475826c04ce8a6819de5390bc3f8bcc600c07fc71e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ingress-node-firewall@sha256:84938ed1f7e65a6602eeb6635d438c75c6cb190cd4b0d174129243e917275d44_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ingress-node-firewall@sha256:84938ed1f7e65a6602eeb6635d438c75c6cb190cd4b0d174129243e917275d44_ppc64le" + }, + "product_reference": "openshift4/ingress-node-firewall@sha256:84938ed1f7e65a6602eeb6635d438c75c6cb190cd4b0d174129243e917275d44_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ingress-node-firewall@sha256:aac652852848988e4f6b2a93e4e167ce03262209e30fdfbcd9e615fb60d1b597_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ingress-node-firewall@sha256:aac652852848988e4f6b2a93e4e167ce03262209e30fdfbcd9e615fb60d1b597_s390x" + }, + "product_reference": "openshift4/ingress-node-firewall@sha256:aac652852848988e4f6b2a93e4e167ce03262209e30fdfbcd9e615fb60d1b597_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ingress-node-firewall@sha256:f7c3afb7f1233ff7732febafac2cba8a2092da4e1cb186f9c0c4225df71a7371_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ingress-node-firewall@sha256:f7c3afb7f1233ff7732febafac2cba8a2092da4e1cb186f9c0c4225df71a7371_arm64" + }, + "product_reference": "openshift4/ingress-node-firewall@sha256:f7c3afb7f1233ff7732febafac2cba8a2092da4e1cb186f9c0c4225df71a7371_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/kubernetes-nmstate-rhel8-operator@sha256:0b9c891ea13e156fe5158b9180e2f5579fe8106d5b21cbfa0747587e76ff4d95_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/kubernetes-nmstate-rhel8-operator@sha256:0b9c891ea13e156fe5158b9180e2f5579fe8106d5b21cbfa0747587e76ff4d95_amd64" + }, + "product_reference": "openshift4/kubernetes-nmstate-rhel8-operator@sha256:0b9c891ea13e156fe5158b9180e2f5579fe8106d5b21cbfa0747587e76ff4d95_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/kubernetes-nmstate-rhel8-operator@sha256:193af3dfd0ac76f70e4953173eb0d5c509e54d218abae84e9d8d2e3766da239b_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/kubernetes-nmstate-rhel8-operator@sha256:193af3dfd0ac76f70e4953173eb0d5c509e54d218abae84e9d8d2e3766da239b_arm64" + }, + "product_reference": "openshift4/kubernetes-nmstate-rhel8-operator@sha256:193af3dfd0ac76f70e4953173eb0d5c509e54d218abae84e9d8d2e3766da239b_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/kubernetes-nmstate-rhel8-operator@sha256:810db57ee8a3abaea97e040d1f8f6638633d80e99e521eb63cadee789b034af8_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/kubernetes-nmstate-rhel8-operator@sha256:810db57ee8a3abaea97e040d1f8f6638633d80e99e521eb63cadee789b034af8_s390x" + }, + "product_reference": "openshift4/kubernetes-nmstate-rhel8-operator@sha256:810db57ee8a3abaea97e040d1f8f6638633d80e99e521eb63cadee789b034af8_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/kubernetes-nmstate-rhel8-operator@sha256:8f6e33f585bb8ae3ca50b0db1c3b9b7a4b37fc761894aec20d9e53f2be2ae77b_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/kubernetes-nmstate-rhel8-operator@sha256:8f6e33f585bb8ae3ca50b0db1c3b9b7a4b37fc761894aec20d9e53f2be2ae77b_ppc64le" + }, + "product_reference": "openshift4/kubernetes-nmstate-rhel8-operator@sha256:8f6e33f585bb8ae3ca50b0db1c3b9b7a4b37fc761894aec20d9e53f2be2ae77b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:4b9cd657512d54a0b7ae7b8d2d304a55307aede8b5edbfbdc947f108e6723f36_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/kubevirt-csi-driver-rhel8@sha256:4b9cd657512d54a0b7ae7b8d2d304a55307aede8b5edbfbdc947f108e6723f36_ppc64le" + }, + "product_reference": "openshift4/kubevirt-csi-driver-rhel8@sha256:4b9cd657512d54a0b7ae7b8d2d304a55307aede8b5edbfbdc947f108e6723f36_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:9164a7c997831df4292d6d31be1b69f08f78d7c9133caec5adf10265386329a2_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/kubevirt-csi-driver-rhel8@sha256:9164a7c997831df4292d6d31be1b69f08f78d7c9133caec5adf10265386329a2_arm64" + }, + "product_reference": "openshift4/kubevirt-csi-driver-rhel8@sha256:9164a7c997831df4292d6d31be1b69f08f78d7c9133caec5adf10265386329a2_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:bd9e43d47e77fde8c2a5cd3a0fd5fe0aea34a7ee75ccd63499914ffe7e49ce14_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/kubevirt-csi-driver-rhel8@sha256:bd9e43d47e77fde8c2a5cd3a0fd5fe0aea34a7ee75ccd63499914ffe7e49ce14_s390x" + }, + "product_reference": "openshift4/kubevirt-csi-driver-rhel8@sha256:bd9e43d47e77fde8c2a5cd3a0fd5fe0aea34a7ee75ccd63499914ffe7e49ce14_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:eca55e61186531ba0bfa837257961cba9e328a490864db612aa97b788023121e_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/kubevirt-csi-driver-rhel8@sha256:eca55e61186531ba0bfa837257961cba9e328a490864db612aa97b788023121e_amd64" + }, + "product_reference": "openshift4/kubevirt-csi-driver-rhel8@sha256:eca55e61186531ba0bfa837257961cba9e328a490864db612aa97b788023121e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/metallb-rhel8-operator@sha256:67a802fa4be2a9d8cfd661d36c8e9f88b07a68f318f2c878b741bae30b78241a_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/metallb-rhel8-operator@sha256:67a802fa4be2a9d8cfd661d36c8e9f88b07a68f318f2c878b741bae30b78241a_s390x" + }, + "product_reference": "openshift4/metallb-rhel8-operator@sha256:67a802fa4be2a9d8cfd661d36c8e9f88b07a68f318f2c878b741bae30b78241a_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/metallb-rhel8-operator@sha256:c8a44e11f061e541610603bf51b3930d6611ba366768c1f3d8dfecd237cfc97c_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/metallb-rhel8-operator@sha256:c8a44e11f061e541610603bf51b3930d6611ba366768c1f3d8dfecd237cfc97c_amd64" + }, + "product_reference": "openshift4/metallb-rhel8-operator@sha256:c8a44e11f061e541610603bf51b3930d6611ba366768c1f3d8dfecd237cfc97c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/metallb-rhel8-operator@sha256:de57b91ac601a39a99f3f67276f09fc03c19ffb2e8a4c316cd4925628261b566_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/metallb-rhel8-operator@sha256:de57b91ac601a39a99f3f67276f09fc03c19ffb2e8a4c316cd4925628261b566_ppc64le" + }, + "product_reference": "openshift4/metallb-rhel8-operator@sha256:de57b91ac601a39a99f3f67276f09fc03c19ffb2e8a4c316cd4925628261b566_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/metallb-rhel8-operator@sha256:ecfafbad777f3c53ed067e3909b6d543d235d660e228e0f9a59ea9b0e8cd3949_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/metallb-rhel8-operator@sha256:ecfafbad777f3c53ed067e3909b6d543d235d660e228e0f9a59ea9b0e8cd3949_arm64" + }, + "product_reference": "openshift4/metallb-rhel8-operator@sha256:ecfafbad777f3c53ed067e3909b6d543d235d660e228e0f9a59ea9b0e8cd3949_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/metallb-rhel8@sha256:1ea923a6908e58ba3ca77c2f08cc7a50df4dce9341055f1aa007b5f33a172f00_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/metallb-rhel8@sha256:1ea923a6908e58ba3ca77c2f08cc7a50df4dce9341055f1aa007b5f33a172f00_s390x" + }, + "product_reference": "openshift4/metallb-rhel8@sha256:1ea923a6908e58ba3ca77c2f08cc7a50df4dce9341055f1aa007b5f33a172f00_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/metallb-rhel8@sha256:5ea1a8f197e9c3b8cc11583b49a0c57f5679a57597e689101551d511b1cbd567_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/metallb-rhel8@sha256:5ea1a8f197e9c3b8cc11583b49a0c57f5679a57597e689101551d511b1cbd567_ppc64le" + }, + "product_reference": "openshift4/metallb-rhel8@sha256:5ea1a8f197e9c3b8cc11583b49a0c57f5679a57597e689101551d511b1cbd567_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/metallb-rhel8@sha256:a1cdafb7a4f5b399ba3a2bbbd97f6ec55fa58d0b0bcff73645a6939710218e79_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/metallb-rhel8@sha256:a1cdafb7a4f5b399ba3a2bbbd97f6ec55fa58d0b0bcff73645a6939710218e79_arm64" + }, + "product_reference": "openshift4/metallb-rhel8@sha256:a1cdafb7a4f5b399ba3a2bbbd97f6ec55fa58d0b0bcff73645a6939710218e79_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/metallb-rhel8@sha256:dad9b83e0fb1c1ac802cb2f95932e227467e6cc3c630c569a2f46f2d4c6b8cda_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/metallb-rhel8@sha256:dad9b83e0fb1c1ac802cb2f95932e227467e6cc3c630c569a2f46f2d4c6b8cda_amd64" + }, + "product_reference": "openshift4/metallb-rhel8@sha256:dad9b83e0fb1c1ac802cb2f95932e227467e6cc3c630c569a2f46f2d4c6b8cda_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/network-tools-rhel8@sha256:643f10b40b9102997f1e6871f16fe073b4b91b41ff95475028db677e78d76b32_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/network-tools-rhel8@sha256:643f10b40b9102997f1e6871f16fe073b4b91b41ff95475028db677e78d76b32_ppc64le" + }, + "product_reference": "openshift4/network-tools-rhel8@sha256:643f10b40b9102997f1e6871f16fe073b4b91b41ff95475028db677e78d76b32_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/network-tools-rhel8@sha256:cf9d5a65a3ff55ae35fcfc0476e85574c369e73de0dbdc037092925299888758_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/network-tools-rhel8@sha256:cf9d5a65a3ff55ae35fcfc0476e85574c369e73de0dbdc037092925299888758_s390x" + }, + "product_reference": "openshift4/network-tools-rhel8@sha256:cf9d5a65a3ff55ae35fcfc0476e85574c369e73de0dbdc037092925299888758_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/network-tools-rhel8@sha256:cfe00fa37cb2eb4604b436b58ba85c5c32e30cb2486d743d959411a21f841e99_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/network-tools-rhel8@sha256:cfe00fa37cb2eb4604b436b58ba85c5c32e30cb2486d743d959411a21f841e99_amd64" + }, + "product_reference": "openshift4/network-tools-rhel8@sha256:cfe00fa37cb2eb4604b436b58ba85c5c32e30cb2486d743d959411a21f841e99_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/network-tools-rhel8@sha256:d04a94d55c3c2394f8425d0dcdb92aa70b4dccaadca82cec27b926545b3f6f19_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/network-tools-rhel8@sha256:d04a94d55c3c2394f8425d0dcdb92aa70b4dccaadca82cec27b926545b3f6f19_arm64" + }, + "product_reference": "openshift4/network-tools-rhel8@sha256:d04a94d55c3c2394f8425d0dcdb92aa70b4dccaadca82cec27b926545b3f6f19_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/oc-mirror-plugin-rhel8@sha256:ca34cb26c9a6f95196e87e5df0e1d585d709bf325462777166fc2646c7ce152e_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/oc-mirror-plugin-rhel8@sha256:ca34cb26c9a6f95196e87e5df0e1d585d709bf325462777166fc2646c7ce152e_amd64" + }, + "product_reference": "openshift4/oc-mirror-plugin-rhel8@sha256:ca34cb26c9a6f95196e87e5df0e1d585d709bf325462777166fc2646c7ce152e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:9b05a3e28d3a7d4d343e298fd902d10bda4861a11244b499d545d426b44b15d9_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/openshift-route-controller-manager-rhel8@sha256:9b05a3e28d3a7d4d343e298fd902d10bda4861a11244b499d545d426b44b15d9_amd64" + }, + "product_reference": "openshift4/openshift-route-controller-manager-rhel8@sha256:9b05a3e28d3a7d4d343e298fd902d10bda4861a11244b499d545d426b44b15d9_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:a71541cf58dfc5b7de21a04b576e435fd811b1aa869313d1687eaba82a5af01f_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/openshift-route-controller-manager-rhel8@sha256:a71541cf58dfc5b7de21a04b576e435fd811b1aa869313d1687eaba82a5af01f_arm64" + }, + "product_reference": "openshift4/openshift-route-controller-manager-rhel8@sha256:a71541cf58dfc5b7de21a04b576e435fd811b1aa869313d1687eaba82a5af01f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:aea0a528d84325e25f35adebb3a24ce9fc6640468e271cf256cd88ab3aa3e057_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/openshift-route-controller-manager-rhel8@sha256:aea0a528d84325e25f35adebb3a24ce9fc6640468e271cf256cd88ab3aa3e057_s390x" + }, + "product_reference": "openshift4/openshift-route-controller-manager-rhel8@sha256:aea0a528d84325e25f35adebb3a24ce9fc6640468e271cf256cd88ab3aa3e057_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:be0d525a9ae4e0ecb6857857f7472817bffc9e6d2502c50cd4bcb494a38e77ee_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/openshift-route-controller-manager-rhel8@sha256:be0d525a9ae4e0ecb6857857f7472817bffc9e6d2502c50cd4bcb494a38e77ee_ppc64le" + }, + "product_reference": "openshift4/openshift-route-controller-manager-rhel8@sha256:be0d525a9ae4e0ecb6857857f7472817bffc9e6d2502c50cd4bcb494a38e77ee_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:37fe0b45509528dd14fa7c2e5c95a984ad34b3cc1d95191f732971a916a03437_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-agent-installer-api-server-rhel8@sha256:37fe0b45509528dd14fa7c2e5c95a984ad34b3cc1d95191f732971a916a03437_arm64" + }, + "product_reference": "openshift4/ose-agent-installer-api-server-rhel8@sha256:37fe0b45509528dd14fa7c2e5c95a984ad34b3cc1d95191f732971a916a03437_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:4f5f696c13e636289e6dd98c716a49efccfb8abf5029b5aacac868c387931d49_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-agent-installer-api-server-rhel8@sha256:4f5f696c13e636289e6dd98c716a49efccfb8abf5029b5aacac868c387931d49_amd64" + }, + "product_reference": "openshift4/ose-agent-installer-api-server-rhel8@sha256:4f5f696c13e636289e6dd98c716a49efccfb8abf5029b5aacac868c387931d49_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:a7cbdfe16fdc4d7b2d5a22ffcb34704d95b63bbe0433f2744bf967e39c19741d_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-agent-installer-api-server-rhel8@sha256:a7cbdfe16fdc4d7b2d5a22ffcb34704d95b63bbe0433f2744bf967e39c19741d_s390x" + }, + "product_reference": "openshift4/ose-agent-installer-api-server-rhel8@sha256:a7cbdfe16fdc4d7b2d5a22ffcb34704d95b63bbe0433f2744bf967e39c19741d_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:d96d106dc2bb9f085033d06700b646161f1c76164d2966fceef9f4c3895412b4_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-agent-installer-api-server-rhel8@sha256:d96d106dc2bb9f085033d06700b646161f1c76164d2966fceef9f4c3895412b4_ppc64le" + }, + "product_reference": "openshift4/ose-agent-installer-api-server-rhel8@sha256:d96d106dc2bb9f085033d06700b646161f1c76164d2966fceef9f4c3895412b4_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:0f3cd269bf48ac59c5181eb128e51622201021899c989de10006acbbc614dfba_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-agent-installer-csr-approver-rhel8@sha256:0f3cd269bf48ac59c5181eb128e51622201021899c989de10006acbbc614dfba_amd64" + }, + "product_reference": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:0f3cd269bf48ac59c5181eb128e51622201021899c989de10006acbbc614dfba_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:21cbdc97072203e781dbd3f6ab31afc8631419919e4df27cb64bdf62f3ec5e19_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-agent-installer-csr-approver-rhel8@sha256:21cbdc97072203e781dbd3f6ab31afc8631419919e4df27cb64bdf62f3ec5e19_arm64" + }, + "product_reference": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:21cbdc97072203e781dbd3f6ab31afc8631419919e4df27cb64bdf62f3ec5e19_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:222f83402a30bf95a85b31d2a548fdb4b1e188f0ee355a8251f19bfe481b2f86_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-agent-installer-csr-approver-rhel8@sha256:222f83402a30bf95a85b31d2a548fdb4b1e188f0ee355a8251f19bfe481b2f86_ppc64le" + }, + "product_reference": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:222f83402a30bf95a85b31d2a548fdb4b1e188f0ee355a8251f19bfe481b2f86_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:4e14b6797bdb5652ead47397210968ac65e7883d7d5c780f462fa48bb139c7fd_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-agent-installer-csr-approver-rhel8@sha256:4e14b6797bdb5652ead47397210968ac65e7883d7d5c780f462fa48bb139c7fd_s390x" + }, + "product_reference": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:4e14b6797bdb5652ead47397210968ac65e7883d7d5c780f462fa48bb139c7fd_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:20a4085d55f9be18a35d863b8db780726ed2f4fae9866502f22f63ac0f0b00b2_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-agent-installer-node-agent-rhel8@sha256:20a4085d55f9be18a35d863b8db780726ed2f4fae9866502f22f63ac0f0b00b2_amd64" + }, + "product_reference": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:20a4085d55f9be18a35d863b8db780726ed2f4fae9866502f22f63ac0f0b00b2_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:3b660e759586fc1455d3205ad6bd77aae313cc54d0cc27c2cb94fa5606d2016a_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-agent-installer-node-agent-rhel8@sha256:3b660e759586fc1455d3205ad6bd77aae313cc54d0cc27c2cb94fa5606d2016a_ppc64le" + }, + "product_reference": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:3b660e759586fc1455d3205ad6bd77aae313cc54d0cc27c2cb94fa5606d2016a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:8be9a563421a37812a6fd6df53c0aafb0d85f332a0391e28ba55f53f46caad06_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-agent-installer-node-agent-rhel8@sha256:8be9a563421a37812a6fd6df53c0aafb0d85f332a0391e28ba55f53f46caad06_s390x" + }, + "product_reference": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:8be9a563421a37812a6fd6df53c0aafb0d85f332a0391e28ba55f53f46caad06_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:e4e89d791ceb38e82e2799091edb4a4729f37701a528b9e45ebf0d5183e6af23_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-agent-installer-node-agent-rhel8@sha256:e4e89d791ceb38e82e2799091edb4a4729f37701a528b9e45ebf0d5183e6af23_arm64" + }, + "product_reference": "openshift4/ose-agent-installer-node-agent-rhel8@sha256:e4e89d791ceb38e82e2799091edb4a4729f37701a528b9e45ebf0d5183e6af23_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:155422d2fa453adf2e26aaad2483b80e29f8b5802c62e19c5d787f2f43db2301_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-agent-installer-orchestrator-rhel8@sha256:155422d2fa453adf2e26aaad2483b80e29f8b5802c62e19c5d787f2f43db2301_ppc64le" + }, + "product_reference": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:155422d2fa453adf2e26aaad2483b80e29f8b5802c62e19c5d787f2f43db2301_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:88a759d43c08fd7c6a2d4f80261d4a57bb0b7f08300333adb16aea1851fed615_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-agent-installer-orchestrator-rhel8@sha256:88a759d43c08fd7c6a2d4f80261d4a57bb0b7f08300333adb16aea1851fed615_s390x" + }, + "product_reference": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:88a759d43c08fd7c6a2d4f80261d4a57bb0b7f08300333adb16aea1851fed615_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:8b973cc301c2ab95c669fc3b7db8d9e54447833de41a90d6a2524a8a014998de_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-agent-installer-orchestrator-rhel8@sha256:8b973cc301c2ab95c669fc3b7db8d9e54447833de41a90d6a2524a8a014998de_arm64" + }, + "product_reference": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:8b973cc301c2ab95c669fc3b7db8d9e54447833de41a90d6a2524a8a014998de_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:e4752226cbe17a78f076f1820b780473134cf62c4b0ffa4a16152afb757c969f_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-agent-installer-orchestrator-rhel8@sha256:e4752226cbe17a78f076f1820b780473134cf62c4b0ffa4a16152afb757c969f_amd64" + }, + "product_reference": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:e4752226cbe17a78f076f1820b780473134cf62c4b0ffa4a16152afb757c969f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:426e8b3d621360d5a85681fee7f82e2b987f5f35cf8a41676662fa5ad9aabe09_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:426e8b3d621360d5a85681fee7f82e2b987f5f35cf8a41676662fa5ad9aabe09_amd64" + }, + "product_reference": "openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:426e8b3d621360d5a85681fee7f82e2b987f5f35cf8a41676662fa5ad9aabe09_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:570cc25a8df905dc780d40ce460a86b0bc1f2f14765d64abee6d81496390cb19_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:570cc25a8df905dc780d40ce460a86b0bc1f2f14765d64abee6d81496390cb19_amd64" + }, + "product_reference": "openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:570cc25a8df905dc780d40ce460a86b0bc1f2f14765d64abee6d81496390cb19_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:ab98e5b94031fe86daf9588d4d4f786342b40e4e7db8da0ec3644dc5b3863247_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:ab98e5b94031fe86daf9588d4d4f786342b40e4e7db8da0ec3644dc5b3863247_amd64" + }, + "product_reference": "openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:ab98e5b94031fe86daf9588d4d4f786342b40e4e7db8da0ec3644dc5b3863247_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-alibaba-machine-controllers-rhel8@sha256:4fb53890e71308fb5a6e58735ab695af2d465f425257b005f13ce8fe51c4b155_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-alibaba-machine-controllers-rhel8@sha256:4fb53890e71308fb5a6e58735ab695af2d465f425257b005f13ce8fe51c4b155_amd64" + }, + "product_reference": "openshift4/ose-alibaba-machine-controllers-rhel8@sha256:4fb53890e71308fb5a6e58735ab695af2d465f425257b005f13ce8fe51c4b155_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ansible-operator@sha256:0a78ecd4cdad87e8a31cfbb2e951e973f052505b86e035b6fec926b26abe8767_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ansible-operator@sha256:0a78ecd4cdad87e8a31cfbb2e951e973f052505b86e035b6fec926b26abe8767_amd64" + }, + "product_reference": "openshift4/ose-ansible-operator@sha256:0a78ecd4cdad87e8a31cfbb2e951e973f052505b86e035b6fec926b26abe8767_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ansible-operator@sha256:4ca5fe22a10929b0a4ce6b3f5d22b8ed4e6c7da2e8be4b4a6731db8735a3eb66_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ansible-operator@sha256:4ca5fe22a10929b0a4ce6b3f5d22b8ed4e6c7da2e8be4b4a6731db8735a3eb66_s390x" + }, + "product_reference": "openshift4/ose-ansible-operator@sha256:4ca5fe22a10929b0a4ce6b3f5d22b8ed4e6c7da2e8be4b4a6731db8735a3eb66_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ansible-operator@sha256:b9bdd60e2586824a089c06d2e4b376f377625b63db18894b46bad16477bab251_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ansible-operator@sha256:b9bdd60e2586824a089c06d2e4b376f377625b63db18894b46bad16477bab251_ppc64le" + }, + "product_reference": "openshift4/ose-ansible-operator@sha256:b9bdd60e2586824a089c06d2e4b376f377625b63db18894b46bad16477bab251_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ansible-operator@sha256:ccd2806a5f1e06ed26cb7e148b8eebbbb1b3f135e1c5432fe1be4eb1bb0a8345_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ansible-operator@sha256:ccd2806a5f1e06ed26cb7e148b8eebbbb1b3f135e1c5432fe1be4eb1bb0a8345_arm64" + }, + "product_reference": "openshift4/ose-ansible-operator@sha256:ccd2806a5f1e06ed26cb7e148b8eebbbb1b3f135e1c5432fe1be4eb1bb0a8345_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:68b532dbf340b48d882dbea3aeb63d4db7b19d6909da114f2db96cb31bf220f4_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-apiserver-network-proxy-rhel8@sha256:68b532dbf340b48d882dbea3aeb63d4db7b19d6909da114f2db96cb31bf220f4_s390x" + }, + "product_reference": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:68b532dbf340b48d882dbea3aeb63d4db7b19d6909da114f2db96cb31bf220f4_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:bd4d5c196d024afb565a6b3fe21b117900de99def884d56b5ac9a9241a4b6b79_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-apiserver-network-proxy-rhel8@sha256:bd4d5c196d024afb565a6b3fe21b117900de99def884d56b5ac9a9241a4b6b79_arm64" + }, + "product_reference": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:bd4d5c196d024afb565a6b3fe21b117900de99def884d56b5ac9a9241a4b6b79_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:d96539b2ec9d0b20848daf690bf99aefc04faf67a42cdbde5602015c65ad807d_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-apiserver-network-proxy-rhel8@sha256:d96539b2ec9d0b20848daf690bf99aefc04faf67a42cdbde5602015c65ad807d_ppc64le" + }, + "product_reference": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:d96539b2ec9d0b20848daf690bf99aefc04faf67a42cdbde5602015c65ad807d_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:eb92459027316745074608c08405463bbfe872d51735012af7bbae11122c52da_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-apiserver-network-proxy-rhel8@sha256:eb92459027316745074608c08405463bbfe872d51735012af7bbae11122c52da_amd64" + }, + "product_reference": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:eb92459027316745074608c08405463bbfe872d51735012af7bbae11122c52da_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:54ec2c3470b6694ef34583caabc3454eb33ec63af2ab3ed249812bdde9587ee8_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:54ec2c3470b6694ef34583caabc3454eb33ec63af2ab3ed249812bdde9587ee8_arm64" + }, + "product_reference": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:54ec2c3470b6694ef34583caabc3454eb33ec63af2ab3ed249812bdde9587ee8_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:cab68619b21252fe6781e0553622176094371b5d92f97be5c67b7cc3877935fa_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:cab68619b21252fe6781e0553622176094371b5d92f97be5c67b7cc3877935fa_amd64" + }, + "product_reference": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:cab68619b21252fe6781e0553622176094371b5d92f97be5c67b7cc3877935fa_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:317df115901c80f9251dc188b98ec93e759f616454ac55c3989dd9696434df8a_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:317df115901c80f9251dc188b98ec93e759f616454ac55c3989dd9696434df8a_amd64" + }, + "product_reference": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:317df115901c80f9251dc188b98ec93e759f616454ac55c3989dd9696434df8a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:aefb6ad87542a9ba21818d1ea612f64b87e78fb38aecaaefb45b9bedb7100d52_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:aefb6ad87542a9ba21818d1ea612f64b87e78fb38aecaaefb45b9bedb7100d52_arm64" + }, + "product_reference": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:aefb6ad87542a9ba21818d1ea612f64b87e78fb38aecaaefb45b9bedb7100d52_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:3bff4a20235245f5874233c60a608b34e3cd5107f53a035160f81db55a059531_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:3bff4a20235245f5874233c60a608b34e3cd5107f53a035160f81db55a059531_arm64" + }, + "product_reference": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:3bff4a20235245f5874233c60a608b34e3cd5107f53a035160f81db55a059531_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:9e6c9b916f4b925974f074786247ec750a026189cc8ed15c3c38a4af1f3d941e_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:9e6c9b916f4b925974f074786247ec750a026189cc8ed15c3c38a4af1f3d941e_amd64" + }, + "product_reference": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:9e6c9b916f4b925974f074786247ec750a026189cc8ed15c3c38a4af1f3d941e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:b61b70b15770bb118e4b6c0a5bd40e7dd4bd687ca46aee04fbc9ab214cd76234_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:b61b70b15770bb118e4b6c0a5bd40e7dd4bd687ca46aee04fbc9ab214cd76234_arm64" + }, + "product_reference": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:b61b70b15770bb118e4b6c0a5bd40e7dd4bd687ca46aee04fbc9ab214cd76234_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:c995a608af9f4e023790f4ecddafa346ca4ebc9a6feb7231ae4e9587af56a159_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:c995a608af9f4e023790f4ecddafa346ca4ebc9a6feb7231ae4e9587af56a159_amd64" + }, + "product_reference": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:c995a608af9f4e023790f4ecddafa346ca4ebc9a6feb7231ae4e9587af56a159_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:4902726608bbf110aceac78d8386a2613ceaff86d0a8f1dc3011afe307d64415_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:4902726608bbf110aceac78d8386a2613ceaff86d0a8f1dc3011afe307d64415_amd64" + }, + "product_reference": "openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:4902726608bbf110aceac78d8386a2613ceaff86d0a8f1dc3011afe307d64415_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:ea22e5a0f5f1a7d6da42fedb587c413210b372685c46a577a575d9c1b54de167_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:ea22e5a0f5f1a7d6da42fedb587c413210b372685c46a577a575d9c1b54de167_arm64" + }, + "product_reference": "openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:ea22e5a0f5f1a7d6da42fedb587c413210b372685c46a577a575d9c1b54de167_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:25a57edcf261d5078c915cd68145a378adb967fe3e7f85518896fa8b3c788063_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:25a57edcf261d5078c915cd68145a378adb967fe3e7f85518896fa8b3c788063_arm64" + }, + "product_reference": "openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:25a57edcf261d5078c915cd68145a378adb967fe3e7f85518896fa8b3c788063_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:f4877510f6984358914ec9cde3dce4825ba4bed920e28b94a72daa15875c6c8b_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:f4877510f6984358914ec9cde3dce4825ba4bed920e28b94a72daa15875c6c8b_amd64" + }, + "product_reference": "openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:f4877510f6984358914ec9cde3dce4825ba4bed920e28b94a72daa15875c6c8b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:2cbe53cb0efda37046ae029ae92ebc217880d3e828af68c0bc4b0f625f4de754_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:2cbe53cb0efda37046ae029ae92ebc217880d3e828af68c0bc4b0f625f4de754_arm64" + }, + "product_reference": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:2cbe53cb0efda37046ae029ae92ebc217880d3e828af68c0bc4b0f625f4de754_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:e3fc40b5c7f7e15afa6b15ca38fd6f44c128dbd61d2204911a74cc7fe3773f78_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:e3fc40b5c7f7e15afa6b15ca38fd6f44c128dbd61d2204911a74cc7fe3773f78_amd64" + }, + "product_reference": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:e3fc40b5c7f7e15afa6b15ca38fd6f44c128dbd61d2204911a74cc7fe3773f78_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:8f4c0c942512325c013f04e00a1f7fc2c4ea15077427a1c9dc19212f6d53fd70_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:8f4c0c942512325c013f04e00a1f7fc2c4ea15077427a1c9dc19212f6d53fd70_arm64" + }, + "product_reference": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:8f4c0c942512325c013f04e00a1f7fc2c4ea15077427a1c9dc19212f6d53fd70_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:988624fb51299e0bfd6966a49be75c340d9dbe25ce8082b5a624fd2f4176978d_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:988624fb51299e0bfd6966a49be75c340d9dbe25ce8082b5a624fd2f4176978d_amd64" + }, + "product_reference": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:988624fb51299e0bfd6966a49be75c340d9dbe25ce8082b5a624fd2f4176978d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:0594cd79a24dc448e1e5c2500590e04714828190e418f7b527a27f706b30038f_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-azure-cloud-node-manager-rhel8@sha256:0594cd79a24dc448e1e5c2500590e04714828190e418f7b527a27f706b30038f_arm64" + }, + "product_reference": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:0594cd79a24dc448e1e5c2500590e04714828190e418f7b527a27f706b30038f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:d2f7346b0b3ed6182cb025a7c3a84911065832cfd77c9d9eaa60715dae384371_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-azure-cloud-node-manager-rhel8@sha256:d2f7346b0b3ed6182cb025a7c3a84911065832cfd77c9d9eaa60715dae384371_amd64" + }, + "product_reference": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:d2f7346b0b3ed6182cb025a7c3a84911065832cfd77c9d9eaa60715dae384371_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:4ebdb694aa60efaccf96a1571849b3b21fc977acfcb8ec563a07e9524c2ca5f3_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:4ebdb694aa60efaccf96a1571849b3b21fc977acfcb8ec563a07e9524c2ca5f3_amd64" + }, + "product_reference": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:4ebdb694aa60efaccf96a1571849b3b21fc977acfcb8ec563a07e9524c2ca5f3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:c2852a8d400227b7817d16ceacf43386915aafed056deaf5b9d252702994dd7c_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:c2852a8d400227b7817d16ceacf43386915aafed056deaf5b9d252702994dd7c_arm64" + }, + "product_reference": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:c2852a8d400227b7817d16ceacf43386915aafed056deaf5b9d252702994dd7c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:3842f3c942d2119b19a25fa3bbcec8e868783755aedd3bc90bb7a851b205b034_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:3842f3c942d2119b19a25fa3bbcec8e868783755aedd3bc90bb7a851b205b034_amd64" + }, + "product_reference": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:3842f3c942d2119b19a25fa3bbcec8e868783755aedd3bc90bb7a851b205b034_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:c84268d96d7a2bc99b043a3f64234c30e82e545e09c12f527365a5c342e6d4c4_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:c84268d96d7a2bc99b043a3f64234c30e82e545e09c12f527365a5c342e6d4c4_arm64" + }, + "product_reference": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:c84268d96d7a2bc99b043a3f64234c30e82e545e09c12f527365a5c342e6d4c4_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:050e1b210999df3414626bdb707732f773dd94b54e856bc5027b262abd616a52_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-azure-disk-csi-driver-rhel8@sha256:050e1b210999df3414626bdb707732f773dd94b54e856bc5027b262abd616a52_amd64" + }, + "product_reference": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:050e1b210999df3414626bdb707732f773dd94b54e856bc5027b262abd616a52_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:b429b013b81eace6fc156e26f69a5fc42d3c0361b4fdbd7acc1d9675f8cb8d99_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-azure-disk-csi-driver-rhel8@sha256:b429b013b81eace6fc156e26f69a5fc42d3c0361b4fdbd7acc1d9675f8cb8d99_arm64" + }, + "product_reference": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:b429b013b81eace6fc156e26f69a5fc42d3c0361b4fdbd7acc1d9675f8cb8d99_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:41ca92157b948bb9a2e4a03c13161d753648102a4ca29e33933638c45b6cdb81_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:41ca92157b948bb9a2e4a03c13161d753648102a4ca29e33933638c45b6cdb81_amd64" + }, + "product_reference": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:41ca92157b948bb9a2e4a03c13161d753648102a4ca29e33933638c45b6cdb81_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:bdce4bb5456665292fea6fe19723ea87bcd25eb9cc1b3de370b1df146868696f_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:bdce4bb5456665292fea6fe19723ea87bcd25eb9cc1b3de370b1df146868696f_arm64" + }, + "product_reference": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:bdce4bb5456665292fea6fe19723ea87bcd25eb9cc1b3de370b1df146868696f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:3d51266d91c90a6befa056a8a06b8fbe8562cb62875751214d4e3922666d6298_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-azure-file-csi-driver-rhel8@sha256:3d51266d91c90a6befa056a8a06b8fbe8562cb62875751214d4e3922666d6298_amd64" + }, + "product_reference": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:3d51266d91c90a6befa056a8a06b8fbe8562cb62875751214d4e3922666d6298_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:ca85ff8e568d0bfc264645fa3b00621643bc28a7a86a227d410e9b12233d0502_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-azure-file-csi-driver-rhel8@sha256:ca85ff8e568d0bfc264645fa3b00621643bc28a7a86a227d410e9b12233d0502_arm64" + }, + "product_reference": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:ca85ff8e568d0bfc264645fa3b00621643bc28a7a86a227d410e9b12233d0502_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:6ebf740ea6f5e050bc6dc85729e9e1a1ceb1083c67028a669185cd15cfda4294_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-baremetal-installer-rhel8@sha256:6ebf740ea6f5e050bc6dc85729e9e1a1ceb1083c67028a669185cd15cfda4294_s390x" + }, + "product_reference": "openshift4/ose-baremetal-installer-rhel8@sha256:6ebf740ea6f5e050bc6dc85729e9e1a1ceb1083c67028a669185cd15cfda4294_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:77bac2dbb7811be6ee8ae0d21d1d4df1608b50b003ea4833d8262a04dc7f2117_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-baremetal-installer-rhel8@sha256:77bac2dbb7811be6ee8ae0d21d1d4df1608b50b003ea4833d8262a04dc7f2117_amd64" + }, + "product_reference": "openshift4/ose-baremetal-installer-rhel8@sha256:77bac2dbb7811be6ee8ae0d21d1d4df1608b50b003ea4833d8262a04dc7f2117_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:cf5b57032a32676b8b85f2dfc494dad7b3057d4a56b3cd6a7a472431976c90f4_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-baremetal-installer-rhel8@sha256:cf5b57032a32676b8b85f2dfc494dad7b3057d4a56b3cd6a7a472431976c90f4_ppc64le" + }, + "product_reference": "openshift4/ose-baremetal-installer-rhel8@sha256:cf5b57032a32676b8b85f2dfc494dad7b3057d4a56b3cd6a7a472431976c90f4_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:f8cd4b3e935ff74a6f48e7938c0ba9ca272bd69a3b0f655c03c5a9263951196b_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-baremetal-installer-rhel8@sha256:f8cd4b3e935ff74a6f48e7938c0ba9ca272bd69a3b0f655c03c5a9263951196b_arm64" + }, + "product_reference": "openshift4/ose-baremetal-installer-rhel8@sha256:f8cd4b3e935ff74a6f48e7938c0ba9ca272bd69a3b0f655c03c5a9263951196b_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:30d2c027f13e64590b41d39058f2e8e7afc05c6fd42cfaa1dacbbbef3704e937_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-baremetal-machine-controllers@sha256:30d2c027f13e64590b41d39058f2e8e7afc05c6fd42cfaa1dacbbbef3704e937_ppc64le" + }, + "product_reference": "openshift4/ose-baremetal-machine-controllers@sha256:30d2c027f13e64590b41d39058f2e8e7afc05c6fd42cfaa1dacbbbef3704e937_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:47a854d36f2d563e009efaf67eef629405af99b4c17820e59783292de16a0844_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-baremetal-machine-controllers@sha256:47a854d36f2d563e009efaf67eef629405af99b4c17820e59783292de16a0844_arm64" + }, + "product_reference": "openshift4/ose-baremetal-machine-controllers@sha256:47a854d36f2d563e009efaf67eef629405af99b4c17820e59783292de16a0844_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:4eb599f8f6d200e1a2ac03092ba1bfe1aea5fb85b1624ce9e2d4ae462728bef5_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-baremetal-machine-controllers@sha256:4eb599f8f6d200e1a2ac03092ba1bfe1aea5fb85b1624ce9e2d4ae462728bef5_s390x" + }, + "product_reference": "openshift4/ose-baremetal-machine-controllers@sha256:4eb599f8f6d200e1a2ac03092ba1bfe1aea5fb85b1624ce9e2d4ae462728bef5_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:aa4a46585e7d33ce98409c91306a426e083e524b1fd35fea1eb8c96a2383e8b4_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-baremetal-machine-controllers@sha256:aa4a46585e7d33ce98409c91306a426e083e524b1fd35fea1eb8c96a2383e8b4_amd64" + }, + "product_reference": "openshift4/ose-baremetal-machine-controllers@sha256:aa4a46585e7d33ce98409c91306a426e083e524b1fd35fea1eb8c96a2383e8b4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:58dfeb945422145c665981f13cb020e5fc4db1f91a43792b74a6fe21ae850062_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-baremetal-rhel8-operator@sha256:58dfeb945422145c665981f13cb020e5fc4db1f91a43792b74a6fe21ae850062_ppc64le" + }, + "product_reference": "openshift4/ose-baremetal-rhel8-operator@sha256:58dfeb945422145c665981f13cb020e5fc4db1f91a43792b74a6fe21ae850062_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:916a0b98711b2dea7e4127e0abebfcb9021a0cee239a0a64aa6128171cb65d5d_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-baremetal-rhel8-operator@sha256:916a0b98711b2dea7e4127e0abebfcb9021a0cee239a0a64aa6128171cb65d5d_amd64" + }, + "product_reference": "openshift4/ose-baremetal-rhel8-operator@sha256:916a0b98711b2dea7e4127e0abebfcb9021a0cee239a0a64aa6128171cb65d5d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:beef7193039b8f2e3e908241502c4b863260399039d19559c1a2c4381c291884_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-baremetal-rhel8-operator@sha256:beef7193039b8f2e3e908241502c4b863260399039d19559c1a2c4381c291884_arm64" + }, + "product_reference": "openshift4/ose-baremetal-rhel8-operator@sha256:beef7193039b8f2e3e908241502c4b863260399039d19559c1a2c4381c291884_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:d8d3b3ed25dfab506bf5919af1aa80c62de17cb99c4fa8942ac58b9604981c93_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-baremetal-rhel8-operator@sha256:d8d3b3ed25dfab506bf5919af1aa80c62de17cb99c4fa8942ac58b9604981c93_s390x" + }, + "product_reference": "openshift4/ose-baremetal-rhel8-operator@sha256:d8d3b3ed25dfab506bf5919af1aa80c62de17cb99c4fa8942ac58b9604981c93_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:143ec07a0f518d041353ae6e9f4f30063b90421c472f8581219477120e738322_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-baremetal-runtimecfg-rhel8@sha256:143ec07a0f518d041353ae6e9f4f30063b90421c472f8581219477120e738322_s390x" + }, + "product_reference": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:143ec07a0f518d041353ae6e9f4f30063b90421c472f8581219477120e738322_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:4194402aeb31a1bf5f275b6e3c04b9115b06d9c952330232cbe960058159a530_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-baremetal-runtimecfg-rhel8@sha256:4194402aeb31a1bf5f275b6e3c04b9115b06d9c952330232cbe960058159a530_amd64" + }, + "product_reference": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:4194402aeb31a1bf5f275b6e3c04b9115b06d9c952330232cbe960058159a530_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:6f6e43d71339a93ecdcd821ce929de35bfac6180ce599af76d0183765293a9f5_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-baremetal-runtimecfg-rhel8@sha256:6f6e43d71339a93ecdcd821ce929de35bfac6180ce599af76d0183765293a9f5_ppc64le" + }, + "product_reference": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:6f6e43d71339a93ecdcd821ce929de35bfac6180ce599af76d0183765293a9f5_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:c35325e766863da87ec778ad6c6f131ea47ff33e78a11ed49a19425057e6828a_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-baremetal-runtimecfg-rhel8@sha256:c35325e766863da87ec778ad6c6f131ea47ff33e78a11ed49a19425057e6828a_arm64" + }, + "product_reference": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:c35325e766863da87ec778ad6c6f131ea47ff33e78a11ed49a19425057e6828a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli-artifacts@sha256:027b96f66d36787b7759e73e4fd92737cbc1bf68be7d49dabdfb4d7488de2081_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cli-artifacts@sha256:027b96f66d36787b7759e73e4fd92737cbc1bf68be7d49dabdfb4d7488de2081_s390x" + }, + "product_reference": "openshift4/ose-cli-artifacts@sha256:027b96f66d36787b7759e73e4fd92737cbc1bf68be7d49dabdfb4d7488de2081_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli-artifacts@sha256:6fc8eb541635820be86a532975025a5c7c5b382aec563fc9588c2625e2ed2af7_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cli-artifacts@sha256:6fc8eb541635820be86a532975025a5c7c5b382aec563fc9588c2625e2ed2af7_amd64" + }, + "product_reference": "openshift4/ose-cli-artifacts@sha256:6fc8eb541635820be86a532975025a5c7c5b382aec563fc9588c2625e2ed2af7_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli-artifacts@sha256:7530aa8d291e6144a48222ae6449f3df1990698fd86845bab71a22987889c062_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cli-artifacts@sha256:7530aa8d291e6144a48222ae6449f3df1990698fd86845bab71a22987889c062_ppc64le" + }, + "product_reference": "openshift4/ose-cli-artifacts@sha256:7530aa8d291e6144a48222ae6449f3df1990698fd86845bab71a22987889c062_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli-artifacts@sha256:ded9013e6dc157068f91f9c40a266b1a579ce05a9263ca254afd2e69fa3c362f_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cli-artifacts@sha256:ded9013e6dc157068f91f9c40a266b1a579ce05a9263ca254afd2e69fa3c362f_arm64" + }, + "product_reference": "openshift4/ose-cli-artifacts@sha256:ded9013e6dc157068f91f9c40a266b1a579ce05a9263ca254afd2e69fa3c362f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli@sha256:446551f05447182b41d0fd1eca6bcf0e08c81d0d5749c4e002791b6d40f50d66_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cli@sha256:446551f05447182b41d0fd1eca6bcf0e08c81d0d5749c4e002791b6d40f50d66_amd64" + }, + "product_reference": "openshift4/ose-cli@sha256:446551f05447182b41d0fd1eca6bcf0e08c81d0d5749c4e002791b6d40f50d66_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli@sha256:65838e98f993363e2ca0ebbf2e10756e9e4f947ed7c1dde00c9de32585979a7d_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cli@sha256:65838e98f993363e2ca0ebbf2e10756e9e4f947ed7c1dde00c9de32585979a7d_ppc64le" + }, + "product_reference": "openshift4/ose-cli@sha256:65838e98f993363e2ca0ebbf2e10756e9e4f947ed7c1dde00c9de32585979a7d_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli@sha256:a862e13524203cc066637dd02dee1c0f80de6109d0b206e07c03ac67c5e95019_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cli@sha256:a862e13524203cc066637dd02dee1c0f80de6109d0b206e07c03ac67c5e95019_s390x" + }, + "product_reference": "openshift4/ose-cli@sha256:a862e13524203cc066637dd02dee1c0f80de6109d0b206e07c03ac67c5e95019_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli@sha256:b00cec03b9c1f75d5e5af2b159c930dac5059873e599f467d27e556317b0d73b_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cli@sha256:b00cec03b9c1f75d5e5af2b159c930dac5059873e599f467d27e556317b0d73b_arm64" + }, + "product_reference": "openshift4/ose-cli@sha256:b00cec03b9c1f75d5e5af2b159c930dac5059873e599f467d27e556317b0d73b_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-credential-operator@sha256:55eade1d682f5151d98d1f3feaa8b3b0b90fbd102356aad7f7c9f92bb0fe66f6_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cloud-credential-operator@sha256:55eade1d682f5151d98d1f3feaa8b3b0b90fbd102356aad7f7c9f92bb0fe66f6_amd64" + }, + "product_reference": "openshift4/ose-cloud-credential-operator@sha256:55eade1d682f5151d98d1f3feaa8b3b0b90fbd102356aad7f7c9f92bb0fe66f6_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-credential-operator@sha256:8a6d4ddad57c6a1d7eb7cd372a51a80de6b7769f2b1737aee2da8f65d79d619b_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cloud-credential-operator@sha256:8a6d4ddad57c6a1d7eb7cd372a51a80de6b7769f2b1737aee2da8f65d79d619b_arm64" + }, + "product_reference": "openshift4/ose-cloud-credential-operator@sha256:8a6d4ddad57c6a1d7eb7cd372a51a80de6b7769f2b1737aee2da8f65d79d619b_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-credential-operator@sha256:b014c2a64e305b192b7d1a8c04832e1a2b6b7cd4450a2763497470a5646305c2_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cloud-credential-operator@sha256:b014c2a64e305b192b7d1a8c04832e1a2b6b7cd4450a2763497470a5646305c2_s390x" + }, + "product_reference": "openshift4/ose-cloud-credential-operator@sha256:b014c2a64e305b192b7d1a8c04832e1a2b6b7cd4450a2763497470a5646305c2_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-credential-operator@sha256:f1b4cbd037ab4f5ef039d7d7460974e32aeb8e663fd5805e494b09a71dec1bfb_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cloud-credential-operator@sha256:f1b4cbd037ab4f5ef039d7d7460974e32aeb8e663fd5805e494b09a71dec1bfb_ppc64le" + }, + "product_reference": "openshift4/ose-cloud-credential-operator@sha256:f1b4cbd037ab4f5ef039d7d7460974e32aeb8e663fd5805e494b09a71dec1bfb_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-event-proxy-rhel8@sha256:1f0552e4f75903ba5491959f0cb7f61a93c6068113183c1d5b1a14cf6b4dafdb_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cloud-event-proxy-rhel8@sha256:1f0552e4f75903ba5491959f0cb7f61a93c6068113183c1d5b1a14cf6b4dafdb_arm64" + }, + "product_reference": "openshift4/ose-cloud-event-proxy-rhel8@sha256:1f0552e4f75903ba5491959f0cb7f61a93c6068113183c1d5b1a14cf6b4dafdb_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-event-proxy-rhel8@sha256:b794c9ca44d41e728cef1600c4385c67bec5455ac1580a247a4d8c2868f7c468_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cloud-event-proxy-rhel8@sha256:b794c9ca44d41e728cef1600c4385c67bec5455ac1580a247a4d8c2868f7c468_ppc64le" + }, + "product_reference": "openshift4/ose-cloud-event-proxy-rhel8@sha256:b794c9ca44d41e728cef1600c4385c67bec5455ac1580a247a4d8c2868f7c468_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-event-proxy-rhel8@sha256:bd81d3742aa3b19363b7b715c86e7f587abd9af2b0b516145b041d9ae553e493_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cloud-event-proxy-rhel8@sha256:bd81d3742aa3b19363b7b715c86e7f587abd9af2b0b516145b041d9ae553e493_amd64" + }, + "product_reference": "openshift4/ose-cloud-event-proxy-rhel8@sha256:bd81d3742aa3b19363b7b715c86e7f587abd9af2b0b516145b041d9ae553e493_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-event-proxy@sha256:1f0552e4f75903ba5491959f0cb7f61a93c6068113183c1d5b1a14cf6b4dafdb_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cloud-event-proxy@sha256:1f0552e4f75903ba5491959f0cb7f61a93c6068113183c1d5b1a14cf6b4dafdb_arm64" + }, + "product_reference": "openshift4/ose-cloud-event-proxy@sha256:1f0552e4f75903ba5491959f0cb7f61a93c6068113183c1d5b1a14cf6b4dafdb_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-event-proxy@sha256:b794c9ca44d41e728cef1600c4385c67bec5455ac1580a247a4d8c2868f7c468_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cloud-event-proxy@sha256:b794c9ca44d41e728cef1600c4385c67bec5455ac1580a247a4d8c2868f7c468_ppc64le" + }, + "product_reference": "openshift4/ose-cloud-event-proxy@sha256:b794c9ca44d41e728cef1600c4385c67bec5455ac1580a247a4d8c2868f7c468_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-event-proxy@sha256:bd81d3742aa3b19363b7b715c86e7f587abd9af2b0b516145b041d9ae553e493_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cloud-event-proxy@sha256:bd81d3742aa3b19363b7b715c86e7f587abd9af2b0b516145b041d9ae553e493_amd64" + }, + "product_reference": "openshift4/ose-cloud-event-proxy@sha256:bd81d3742aa3b19363b7b715c86e7f587abd9af2b0b516145b041d9ae553e493_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:0f30e02a6839cd789867eca773370f8b5b52eecceb0ade49e869728ce8e5d62b_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-api-rhel8@sha256:0f30e02a6839cd789867eca773370f8b5b52eecceb0ade49e869728ce8e5d62b_s390x" + }, + "product_reference": "openshift4/ose-cluster-api-rhel8@sha256:0f30e02a6839cd789867eca773370f8b5b52eecceb0ade49e869728ce8e5d62b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:17f727de972f15c0fb59566766951d3238041916a52d599cd1b1d2692d546a79_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-api-rhel8@sha256:17f727de972f15c0fb59566766951d3238041916a52d599cd1b1d2692d546a79_amd64" + }, + "product_reference": "openshift4/ose-cluster-api-rhel8@sha256:17f727de972f15c0fb59566766951d3238041916a52d599cd1b1d2692d546a79_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:1a80a2790192dad8798365e8e0835352324b580278a54fa8eb1eac3a3e119fbb_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-api-rhel8@sha256:1a80a2790192dad8798365e8e0835352324b580278a54fa8eb1eac3a3e119fbb_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-api-rhel8@sha256:1a80a2790192dad8798365e8e0835352324b580278a54fa8eb1eac3a3e119fbb_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:638afaea970f7445facc9ef9e916a2517d0df4d3bc4651519cd3fcc24b0f8d46_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-api-rhel8@sha256:638afaea970f7445facc9ef9e916a2517d0df4d3bc4651519cd3fcc24b0f8d46_arm64" + }, + "product_reference": "openshift4/ose-cluster-api-rhel8@sha256:638afaea970f7445facc9ef9e916a2517d0df4d3bc4651519cd3fcc24b0f8d46_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:294c1949c6c52157c75a408de3ee6c3f299f7d5362af9ff7eb747c8bd39f41a2_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-authentication-operator@sha256:294c1949c6c52157c75a408de3ee6c3f299f7d5362af9ff7eb747c8bd39f41a2_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-authentication-operator@sha256:294c1949c6c52157c75a408de3ee6c3f299f7d5362af9ff7eb747c8bd39f41a2_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:486917bf93e61a63cd5645c43f5f45d6d523dff5034ddd5987cc022f97ddd5ad_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-authentication-operator@sha256:486917bf93e61a63cd5645c43f5f45d6d523dff5034ddd5987cc022f97ddd5ad_s390x" + }, + "product_reference": "openshift4/ose-cluster-authentication-operator@sha256:486917bf93e61a63cd5645c43f5f45d6d523dff5034ddd5987cc022f97ddd5ad_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:49790e22908f17302971a895160221505300b70274c0bfe31c3e6a316cd758bf_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-authentication-operator@sha256:49790e22908f17302971a895160221505300b70274c0bfe31c3e6a316cd758bf_arm64" + }, + "product_reference": "openshift4/ose-cluster-authentication-operator@sha256:49790e22908f17302971a895160221505300b70274c0bfe31c3e6a316cd758bf_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:ead675012e3f1611068de15c88757df12bb02bcdbaabc70aa4c290e204edb9bc_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-authentication-operator@sha256:ead675012e3f1611068de15c88757df12bb02bcdbaabc70aa4c290e204edb9bc_amd64" + }, + "product_reference": "openshift4/ose-cluster-authentication-operator@sha256:ead675012e3f1611068de15c88757df12bb02bcdbaabc70aa4c290e204edb9bc_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:3e629c3741ee818ea2b711b7d05bff818364ce75e8a01ae2b6e99d764de277e8_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-autoscaler-operator@sha256:3e629c3741ee818ea2b711b7d05bff818364ce75e8a01ae2b6e99d764de277e8_amd64" + }, + "product_reference": "openshift4/ose-cluster-autoscaler-operator@sha256:3e629c3741ee818ea2b711b7d05bff818364ce75e8a01ae2b6e99d764de277e8_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:440a5fcfb3e22f4becac5cbbff62f9f0d1c15d5e3fe3099a108e90668cf34662_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-autoscaler-operator@sha256:440a5fcfb3e22f4becac5cbbff62f9f0d1c15d5e3fe3099a108e90668cf34662_s390x" + }, + "product_reference": "openshift4/ose-cluster-autoscaler-operator@sha256:440a5fcfb3e22f4becac5cbbff62f9f0d1c15d5e3fe3099a108e90668cf34662_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:def4bd464f93f925a31495c503e7cecf45b206031ec13129f6fb948f080b7d5c_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-autoscaler-operator@sha256:def4bd464f93f925a31495c503e7cecf45b206031ec13129f6fb948f080b7d5c_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-autoscaler-operator@sha256:def4bd464f93f925a31495c503e7cecf45b206031ec13129f6fb948f080b7d5c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:e6f286a7385d754b17182a093107b96745bb6a54119cdb1a82d0b372494cd2f6_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-autoscaler-operator@sha256:e6f286a7385d754b17182a093107b96745bb6a54119cdb1a82d0b372494cd2f6_arm64" + }, + "product_reference": "openshift4/ose-cluster-autoscaler-operator@sha256:e6f286a7385d754b17182a093107b96745bb6a54119cdb1a82d0b372494cd2f6_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler@sha256:2dc14a680564a0d36bd6e98debbe4a48c19bbce7ce46e03eccee31d690a9e4df_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-autoscaler@sha256:2dc14a680564a0d36bd6e98debbe4a48c19bbce7ce46e03eccee31d690a9e4df_arm64" + }, + "product_reference": "openshift4/ose-cluster-autoscaler@sha256:2dc14a680564a0d36bd6e98debbe4a48c19bbce7ce46e03eccee31d690a9e4df_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler@sha256:6c0194408a4a4d2d3f693514b0c45ae3348560cee8eeb5e3c503773aad3e188d_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-autoscaler@sha256:6c0194408a4a4d2d3f693514b0c45ae3348560cee8eeb5e3c503773aad3e188d_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-autoscaler@sha256:6c0194408a4a4d2d3f693514b0c45ae3348560cee8eeb5e3c503773aad3e188d_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler@sha256:95738d8ce821197376ab0941d6954da11d6fb9384c0a27a7ab41e557264a7765_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-autoscaler@sha256:95738d8ce821197376ab0941d6954da11d6fb9384c0a27a7ab41e557264a7765_amd64" + }, + "product_reference": "openshift4/ose-cluster-autoscaler@sha256:95738d8ce821197376ab0941d6954da11d6fb9384c0a27a7ab41e557264a7765_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler@sha256:d8c08bef1975fb9907a02b124422e2bc40b035c481d97a121c20ada0be2e2014_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-autoscaler@sha256:d8c08bef1975fb9907a02b124422e2bc40b035c481d97a121c20ada0be2e2014_s390x" + }, + "product_reference": "openshift4/ose-cluster-autoscaler@sha256:d8c08bef1975fb9907a02b124422e2bc40b035c481d97a121c20ada0be2e2014_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:112040105eeccf56698dc9726e2e5236d1150e47b8a9d8c598b0efd1d59cffbb_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-baremetal-operator-rhel8@sha256:112040105eeccf56698dc9726e2e5236d1150e47b8a9d8c598b0efd1d59cffbb_arm64" + }, + "product_reference": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:112040105eeccf56698dc9726e2e5236d1150e47b8a9d8c598b0efd1d59cffbb_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:3cc0fcc7fdd00b1db62f98a02bb12bd9c17821695a28d429a04e46a8d4151fca_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-baremetal-operator-rhel8@sha256:3cc0fcc7fdd00b1db62f98a02bb12bd9c17821695a28d429a04e46a8d4151fca_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:3cc0fcc7fdd00b1db62f98a02bb12bd9c17821695a28d429a04e46a8d4151fca_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:6b5cff688492c22d5bfb71093a8c7dbf9a1446731466bca65f3bcb993d25a10a_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-baremetal-operator-rhel8@sha256:6b5cff688492c22d5bfb71093a8c7dbf9a1446731466bca65f3bcb993d25a10a_amd64" + }, + "product_reference": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:6b5cff688492c22d5bfb71093a8c7dbf9a1446731466bca65f3bcb993d25a10a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:83879b0ad3c87dae3b5fc75113f426b641ed158ee395367db104e3fabbb6ca10_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-baremetal-operator-rhel8@sha256:83879b0ad3c87dae3b5fc75113f426b641ed158ee395367db104e3fabbb6ca10_s390x" + }, + "product_reference": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:83879b0ad3c87dae3b5fc75113f426b641ed158ee395367db104e3fabbb6ca10_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-bootstrap@sha256:07c27970cbb870fb1caf134bf4f70b87968d4ac6211457f98d7d49ffbff771cc_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-bootstrap@sha256:07c27970cbb870fb1caf134bf4f70b87968d4ac6211457f98d7d49ffbff771cc_s390x" + }, + "product_reference": "openshift4/ose-cluster-bootstrap@sha256:07c27970cbb870fb1caf134bf4f70b87968d4ac6211457f98d7d49ffbff771cc_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-bootstrap@sha256:10ed24b3907ffd3b18dfdbccce8b0c466d865fb1aa9983bb4b71844981d870fc_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-bootstrap@sha256:10ed24b3907ffd3b18dfdbccce8b0c466d865fb1aa9983bb4b71844981d870fc_amd64" + }, + "product_reference": "openshift4/ose-cluster-bootstrap@sha256:10ed24b3907ffd3b18dfdbccce8b0c466d865fb1aa9983bb4b71844981d870fc_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-bootstrap@sha256:4c6c33c3c92c797dd6ca86dadb70fec4269aed7547a38036c7d73bf62326648c_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-bootstrap@sha256:4c6c33c3c92c797dd6ca86dadb70fec4269aed7547a38036c7d73bf62326648c_arm64" + }, + "product_reference": "openshift4/ose-cluster-bootstrap@sha256:4c6c33c3c92c797dd6ca86dadb70fec4269aed7547a38036c7d73bf62326648c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-bootstrap@sha256:9b7a71132627013ab5b1f07fa8f489a46e7acf41cb67811d26b8a59164d32a9d_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-bootstrap@sha256:9b7a71132627013ab5b1f07fa8f489a46e7acf41cb67811d26b8a59164d32a9d_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-bootstrap@sha256:9b7a71132627013ab5b1f07fa8f489a46e7acf41cb67811d26b8a59164d32a9d_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capacity@sha256:37385b219716e2c6a28112622385750d07a2529e438aef0bc0f2d08065fbe67a_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-capacity@sha256:37385b219716e2c6a28112622385750d07a2529e438aef0bc0f2d08065fbe67a_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-capacity@sha256:37385b219716e2c6a28112622385750d07a2529e438aef0bc0f2d08065fbe67a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capacity@sha256:43d462f963db83b18e7123af8af6c43fafc39bd5caca40981208b4c13cf1ca97_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-capacity@sha256:43d462f963db83b18e7123af8af6c43fafc39bd5caca40981208b4c13cf1ca97_arm64" + }, + "product_reference": "openshift4/ose-cluster-capacity@sha256:43d462f963db83b18e7123af8af6c43fafc39bd5caca40981208b4c13cf1ca97_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capacity@sha256:c38e9343ac169aa7ffcf732b359661a76d23a6104fa2c928704f1d2b6044bb13_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-capacity@sha256:c38e9343ac169aa7ffcf732b359661a76d23a6104fa2c928704f1d2b6044bb13_s390x" + }, + "product_reference": "openshift4/ose-cluster-capacity@sha256:c38e9343ac169aa7ffcf732b359661a76d23a6104fa2c928704f1d2b6044bb13_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capacity@sha256:cbe8bd7f34ac3aa47c87dd4e2473077bfd686ae38422144ee88c9cebed8e522e_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-capacity@sha256:cbe8bd7f34ac3aa47c87dd4e2473077bfd686ae38422144ee88c9cebed8e522e_amd64" + }, + "product_reference": "openshift4/ose-cluster-capacity@sha256:cbe8bd7f34ac3aa47c87dd4e2473077bfd686ae38422144ee88c9cebed8e522e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:21c2dff143d8acf2a3689f1f213ff4b937cd6756952b94d1adb89ad254fcb6c9_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-capi-operator-container-rhel8@sha256:21c2dff143d8acf2a3689f1f213ff4b937cd6756952b94d1adb89ad254fcb6c9_arm64" + }, + "product_reference": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:21c2dff143d8acf2a3689f1f213ff4b937cd6756952b94d1adb89ad254fcb6c9_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:56a33c16884413966be882256377493fbc39ed6f4c64b2163379fa1ab12cd8f2_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-capi-operator-container-rhel8@sha256:56a33c16884413966be882256377493fbc39ed6f4c64b2163379fa1ab12cd8f2_amd64" + }, + "product_reference": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:56a33c16884413966be882256377493fbc39ed6f4c64b2163379fa1ab12cd8f2_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:8844fda4a11a6faf9decb32cacdfac8e3bec27f598da2d3ff4f0d7e9a70a74c3_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-capi-operator-container-rhel8@sha256:8844fda4a11a6faf9decb32cacdfac8e3bec27f598da2d3ff4f0d7e9a70a74c3_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:8844fda4a11a6faf9decb32cacdfac8e3bec27f598da2d3ff4f0d7e9a70a74c3_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:f0ba72150cca5e3f4e12e558942dae23724c91fa2a2bdf7dbfb5e37797e69745_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-capi-operator-container-rhel8@sha256:f0ba72150cca5e3f4e12e558942dae23724c91fa2a2bdf7dbfb5e37797e69745_s390x" + }, + "product_reference": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:f0ba72150cca5e3f4e12e558942dae23724c91fa2a2bdf7dbfb5e37797e69745_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:21c2dff143d8acf2a3689f1f213ff4b937cd6756952b94d1adb89ad254fcb6c9_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-capi-rhel8-operator@sha256:21c2dff143d8acf2a3689f1f213ff4b937cd6756952b94d1adb89ad254fcb6c9_arm64" + }, + "product_reference": "openshift4/ose-cluster-capi-rhel8-operator@sha256:21c2dff143d8acf2a3689f1f213ff4b937cd6756952b94d1adb89ad254fcb6c9_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:56a33c16884413966be882256377493fbc39ed6f4c64b2163379fa1ab12cd8f2_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-capi-rhel8-operator@sha256:56a33c16884413966be882256377493fbc39ed6f4c64b2163379fa1ab12cd8f2_amd64" + }, + "product_reference": "openshift4/ose-cluster-capi-rhel8-operator@sha256:56a33c16884413966be882256377493fbc39ed6f4c64b2163379fa1ab12cd8f2_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:8844fda4a11a6faf9decb32cacdfac8e3bec27f598da2d3ff4f0d7e9a70a74c3_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-capi-rhel8-operator@sha256:8844fda4a11a6faf9decb32cacdfac8e3bec27f598da2d3ff4f0d7e9a70a74c3_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-capi-rhel8-operator@sha256:8844fda4a11a6faf9decb32cacdfac8e3bec27f598da2d3ff4f0d7e9a70a74c3_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:f0ba72150cca5e3f4e12e558942dae23724c91fa2a2bdf7dbfb5e37797e69745_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-capi-rhel8-operator@sha256:f0ba72150cca5e3f4e12e558942dae23724c91fa2a2bdf7dbfb5e37797e69745_s390x" + }, + "product_reference": "openshift4/ose-cluster-capi-rhel8-operator@sha256:f0ba72150cca5e3f4e12e558942dae23724c91fa2a2bdf7dbfb5e37797e69745_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:6bbf2134594bcd72018cb73c82bf10eb25f84b46b549b74403e736e092b2f462_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:6bbf2134594bcd72018cb73c82bf10eb25f84b46b549b74403e736e092b2f462_arm64" + }, + "product_reference": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:6bbf2134594bcd72018cb73c82bf10eb25f84b46b549b74403e736e092b2f462_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:b41d8c46231cea80254599c55e4a1f2bbadab0ac9f140699cd1852c4097b9ce8_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:b41d8c46231cea80254599c55e4a1f2bbadab0ac9f140699cd1852c4097b9ce8_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:b41d8c46231cea80254599c55e4a1f2bbadab0ac9f140699cd1852c4097b9ce8_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:c202fb62ebf840595d4133a935745315dedede79d6341646f7a77b4596b2b949_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:c202fb62ebf840595d4133a935745315dedede79d6341646f7a77b4596b2b949_s390x" + }, + "product_reference": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:c202fb62ebf840595d4133a935745315dedede79d6341646f7a77b4596b2b949_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:c49e95f65456f8711d490630aa320135e58ff8da07ae09bafec3f184834e229f_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:c49e95f65456f8711d490630aa320135e58ff8da07ae09bafec3f184834e229f_amd64" + }, + "product_reference": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:c49e95f65456f8711d490630aa320135e58ff8da07ae09bafec3f184834e229f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-config-operator@sha256:5fe8f38d034bae59535eb45ecdf5c0cc394facd3b77a1690a54f59adfc2ecd33_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-config-operator@sha256:5fe8f38d034bae59535eb45ecdf5c0cc394facd3b77a1690a54f59adfc2ecd33_amd64" + }, + "product_reference": "openshift4/ose-cluster-config-operator@sha256:5fe8f38d034bae59535eb45ecdf5c0cc394facd3b77a1690a54f59adfc2ecd33_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-config-operator@sha256:61522e9f12375d3641e7adc96dcb5d351a7543eefa144c47123a493d9e96202c_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-config-operator@sha256:61522e9f12375d3641e7adc96dcb5d351a7543eefa144c47123a493d9e96202c_s390x" + }, + "product_reference": "openshift4/ose-cluster-config-operator@sha256:61522e9f12375d3641e7adc96dcb5d351a7543eefa144c47123a493d9e96202c_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-config-operator@sha256:8063f82eda65c2e21dba00ccd0562d121674744d61b00af18a705086c369b379_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-config-operator@sha256:8063f82eda65c2e21dba00ccd0562d121674744d61b00af18a705086c369b379_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-config-operator@sha256:8063f82eda65c2e21dba00ccd0562d121674744d61b00af18a705086c369b379_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-config-operator@sha256:98e0dfdfa80dd5acc1231b68e07c64bd51c9f5275b5dc9bb1095c34d89bb2aee_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-config-operator@sha256:98e0dfdfa80dd5acc1231b68e07c64bd51c9f5275b5dc9bb1095c34d89bb2aee_arm64" + }, + "product_reference": "openshift4/ose-cluster-config-operator@sha256:98e0dfdfa80dd5acc1231b68e07c64bd51c9f5275b5dc9bb1095c34d89bb2aee_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:0c8234ae5dded79eaeaf996f634cab62343bf67c36455bd713f13fa8fc2bcc12_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:0c8234ae5dded79eaeaf996f634cab62343bf67c36455bd713f13fa8fc2bcc12_s390x" + }, + "product_reference": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:0c8234ae5dded79eaeaf996f634cab62343bf67c36455bd713f13fa8fc2bcc12_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:435fe4cd5bea13097af172fbdca16d043205831fe8d75278b7133e0f0bd47ef3_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:435fe4cd5bea13097af172fbdca16d043205831fe8d75278b7133e0f0bd47ef3_arm64" + }, + "product_reference": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:435fe4cd5bea13097af172fbdca16d043205831fe8d75278b7133e0f0bd47ef3_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:5c95bafb1fbf1ecd14778ed8030f6953a587fe6a392995e740dd1522c6ce6f31_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:5c95bafb1fbf1ecd14778ed8030f6953a587fe6a392995e740dd1522c6ce6f31_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:5c95bafb1fbf1ecd14778ed8030f6953a587fe6a392995e740dd1522c6ce6f31_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:bc54e9a24bda612cab2cafd4318c7e4cdf185814072d825978b48f0f73a11bae_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:bc54e9a24bda612cab2cafd4318c7e4cdf185814072d825978b48f0f73a11bae_amd64" + }, + "product_reference": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:bc54e9a24bda612cab2cafd4318c7e4cdf185814072d825978b48f0f73a11bae_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:67273aa5705c9948c7477f0c15e484d1799a160f77fa330703c6653f66a4b00f_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:67273aa5705c9948c7477f0c15e484d1799a160f77fa330703c6653f66a4b00f_s390x" + }, + "product_reference": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:67273aa5705c9948c7477f0c15e484d1799a160f77fa330703c6653f66a4b00f_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:69311229a85fe8b1540e53f465072218d079cac10e6db3d762a8ded0a739318d_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:69311229a85fe8b1540e53f465072218d079cac10e6db3d762a8ded0a739318d_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:69311229a85fe8b1540e53f465072218d079cac10e6db3d762a8ded0a739318d_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:d99e28970a8a7a6c33a071823876f9de53dbe15948c17d30944be99860ceca88_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:d99e28970a8a7a6c33a071823876f9de53dbe15948c17d30944be99860ceca88_amd64" + }, + "product_reference": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:d99e28970a8a7a6c33a071823876f9de53dbe15948c17d30944be99860ceca88_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:e75cbaa1be6bd19d2f28216046fbbf52046977276657a1624d3d203ae3bd60a3_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:e75cbaa1be6bd19d2f28216046fbbf52046977276657a1624d3d203ae3bd60a3_arm64" + }, + "product_reference": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:e75cbaa1be6bd19d2f28216046fbbf52046977276657a1624d3d203ae3bd60a3_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-dns-operator@sha256:067ca55e88f9b0d0d62f20ea993dacaf3da602dc7b2ce4f6878fe8de1d6003e2_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-dns-operator@sha256:067ca55e88f9b0d0d62f20ea993dacaf3da602dc7b2ce4f6878fe8de1d6003e2_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-dns-operator@sha256:067ca55e88f9b0d0d62f20ea993dacaf3da602dc7b2ce4f6878fe8de1d6003e2_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-dns-operator@sha256:c5ee2da7449347359dc56de8eb82e6fdcd2dfe768ce4c9390902107ecfb514cf_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-dns-operator@sha256:c5ee2da7449347359dc56de8eb82e6fdcd2dfe768ce4c9390902107ecfb514cf_s390x" + }, + "product_reference": "openshift4/ose-cluster-dns-operator@sha256:c5ee2da7449347359dc56de8eb82e6fdcd2dfe768ce4c9390902107ecfb514cf_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-dns-operator@sha256:d77e8939ce84dba0971977842b22771cbd7cffbb4dbc537a14d8a38d5a1817fe_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-dns-operator@sha256:d77e8939ce84dba0971977842b22771cbd7cffbb4dbc537a14d8a38d5a1817fe_amd64" + }, + "product_reference": "openshift4/ose-cluster-dns-operator@sha256:d77e8939ce84dba0971977842b22771cbd7cffbb4dbc537a14d8a38d5a1817fe_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-dns-operator@sha256:fa4354560a7001b84fbfe12eb310c0fcd934750c39177a9012e975cc5ff14f1d_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-dns-operator@sha256:fa4354560a7001b84fbfe12eb310c0fcd934750c39177a9012e975cc5ff14f1d_arm64" + }, + "product_reference": "openshift4/ose-cluster-dns-operator@sha256:fa4354560a7001b84fbfe12eb310c0fcd934750c39177a9012e975cc5ff14f1d_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:09f45bf3d3d9add9900881288524d65b1c32a59cd4213ac217f8a8265072d84e_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-etcd-rhel8-operator@sha256:09f45bf3d3d9add9900881288524d65b1c32a59cd4213ac217f8a8265072d84e_amd64" + }, + "product_reference": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:09f45bf3d3d9add9900881288524d65b1c32a59cd4213ac217f8a8265072d84e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:2bc2729b0b6ac902d45c9a83cc185701bea293b889b05e561306df8a00b040c2_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-etcd-rhel8-operator@sha256:2bc2729b0b6ac902d45c9a83cc185701bea293b889b05e561306df8a00b040c2_s390x" + }, + "product_reference": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:2bc2729b0b6ac902d45c9a83cc185701bea293b889b05e561306df8a00b040c2_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:d697eb5053337c5a4aa683e2352d0852f12270196441fc442cd954c8b2e67a3c_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-etcd-rhel8-operator@sha256:d697eb5053337c5a4aa683e2352d0852f12270196441fc442cd954c8b2e67a3c_arm64" + }, + "product_reference": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:d697eb5053337c5a4aa683e2352d0852f12270196441fc442cd954c8b2e67a3c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:dd0502e537f2fbb71edd59ededcb03dd30dc78fc82e46b7ad1bffd990db8ffd2_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-etcd-rhel8-operator@sha256:dd0502e537f2fbb71edd59ededcb03dd30dc78fc82e46b7ad1bffd990db8ffd2_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:dd0502e537f2fbb71edd59ededcb03dd30dc78fc82e46b7ad1bffd990db8ffd2_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:35c5cccafe6b7a0f927ee40b48b9637f1334ddfed84a5d6151d0b330481caf06_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-image-registry-operator@sha256:35c5cccafe6b7a0f927ee40b48b9637f1334ddfed84a5d6151d0b330481caf06_s390x" + }, + "product_reference": "openshift4/ose-cluster-image-registry-operator@sha256:35c5cccafe6b7a0f927ee40b48b9637f1334ddfed84a5d6151d0b330481caf06_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:54cf29edb9fc36d5ee62034bb68a33a0e9852058a6d258743a491a4c17e87b65_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-image-registry-operator@sha256:54cf29edb9fc36d5ee62034bb68a33a0e9852058a6d258743a491a4c17e87b65_arm64" + }, + "product_reference": "openshift4/ose-cluster-image-registry-operator@sha256:54cf29edb9fc36d5ee62034bb68a33a0e9852058a6d258743a491a4c17e87b65_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:7bf8d9404c2c6c29a5079138b33c415bca91b54cf3b7a90c54a0624997b64a4c_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-image-registry-operator@sha256:7bf8d9404c2c6c29a5079138b33c415bca91b54cf3b7a90c54a0624997b64a4c_amd64" + }, + "product_reference": "openshift4/ose-cluster-image-registry-operator@sha256:7bf8d9404c2c6c29a5079138b33c415bca91b54cf3b7a90c54a0624997b64a4c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:96f7ff276f8467613d88883531cde22f40dbe21e8c61baf62e54be7b8b51ae06_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-image-registry-operator@sha256:96f7ff276f8467613d88883531cde22f40dbe21e8c61baf62e54be7b8b51ae06_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-image-registry-operator@sha256:96f7ff276f8467613d88883531cde22f40dbe21e8c61baf62e54be7b8b51ae06_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:475bb44133a5b12838b029d80049b4493764e73adfec70308023a2147f5ee2f1_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-ingress-operator@sha256:475bb44133a5b12838b029d80049b4493764e73adfec70308023a2147f5ee2f1_amd64" + }, + "product_reference": "openshift4/ose-cluster-ingress-operator@sha256:475bb44133a5b12838b029d80049b4493764e73adfec70308023a2147f5ee2f1_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:4d00c1d765e743d3667e39fa4b378eff7710ecd48e9ac70a50c76a6accf60a38_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-ingress-operator@sha256:4d00c1d765e743d3667e39fa4b378eff7710ecd48e9ac70a50c76a6accf60a38_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-ingress-operator@sha256:4d00c1d765e743d3667e39fa4b378eff7710ecd48e9ac70a50c76a6accf60a38_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:bd755c7e3ffeebb7c37f5b122ef645141100a1b0fd0203eb8480504893293de2_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-ingress-operator@sha256:bd755c7e3ffeebb7c37f5b122ef645141100a1b0fd0203eb8480504893293de2_arm64" + }, + "product_reference": "openshift4/ose-cluster-ingress-operator@sha256:bd755c7e3ffeebb7c37f5b122ef645141100a1b0fd0203eb8480504893293de2_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:d262d5eede9e5bca16a1bbfacba164c886fc53904858ea7b349513ca70816ae1_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-ingress-operator@sha256:d262d5eede9e5bca16a1bbfacba164c886fc53904858ea7b349513ca70816ae1_s390x" + }, + "product_reference": "openshift4/ose-cluster-ingress-operator@sha256:d262d5eede9e5bca16a1bbfacba164c886fc53904858ea7b349513ca70816ae1_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:54502e8f49cf1c0f6a0de0714081c8dda6e7b3d4bbd80a96bebfe1d1f3932a03_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-apiserver-operator@sha256:54502e8f49cf1c0f6a0de0714081c8dda6e7b3d4bbd80a96bebfe1d1f3932a03_amd64" + }, + "product_reference": "openshift4/ose-cluster-kube-apiserver-operator@sha256:54502e8f49cf1c0f6a0de0714081c8dda6e7b3d4bbd80a96bebfe1d1f3932a03_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:a62ea9e7dea3fb40f0ce6193b647e8c4bb98baa171c3d3bf0a12517dd98d1397_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-apiserver-operator@sha256:a62ea9e7dea3fb40f0ce6193b647e8c4bb98baa171c3d3bf0a12517dd98d1397_s390x" + }, + "product_reference": "openshift4/ose-cluster-kube-apiserver-operator@sha256:a62ea9e7dea3fb40f0ce6193b647e8c4bb98baa171c3d3bf0a12517dd98d1397_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:bb95275993577726866f1196c4a7dffeefeb48084cfa17e107ab670d2e9704bc_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-apiserver-operator@sha256:bb95275993577726866f1196c4a7dffeefeb48084cfa17e107ab670d2e9704bc_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-kube-apiserver-operator@sha256:bb95275993577726866f1196c4a7dffeefeb48084cfa17e107ab670d2e9704bc_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:f28becbd042cddc1e6b7720b4d3a6b31999435b18309e0c10fb3593015b7f3ff_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-apiserver-operator@sha256:f28becbd042cddc1e6b7720b4d3a6b31999435b18309e0c10fb3593015b7f3ff_arm64" + }, + "product_reference": "openshift4/ose-cluster-kube-apiserver-operator@sha256:f28becbd042cddc1e6b7720b4d3a6b31999435b18309e0c10fb3593015b7f3ff_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:067091f643d0a3d6f37f1d12ab2a62991ef6f1694b452ba647d5be35ffa99e02_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:067091f643d0a3d6f37f1d12ab2a62991ef6f1694b452ba647d5be35ffa99e02_amd64" + }, + "product_reference": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:067091f643d0a3d6f37f1d12ab2a62991ef6f1694b452ba647d5be35ffa99e02_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:299ec13270705011997b72afe65bb182b35dc4a51782d7dc91af5da0e8b4f2eb_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:299ec13270705011997b72afe65bb182b35dc4a51782d7dc91af5da0e8b4f2eb_s390x" + }, + "product_reference": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:299ec13270705011997b72afe65bb182b35dc4a51782d7dc91af5da0e8b4f2eb_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:350ae2268aae4e1ce35ba8672ece57613f1ceb417727d57c5d485cf55070e7f0_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:350ae2268aae4e1ce35ba8672ece57613f1ceb417727d57c5d485cf55070e7f0_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:350ae2268aae4e1ce35ba8672ece57613f1ceb417727d57c5d485cf55070e7f0_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b60b2d4912dd843ab77009b4a34bb23ffd531bbde7b2e25aa94fe9e7ff616a4d_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b60b2d4912dd843ab77009b4a34bb23ffd531bbde7b2e25aa94fe9e7ff616a4d_arm64" + }, + "product_reference": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:b60b2d4912dd843ab77009b4a34bb23ffd531bbde7b2e25aa94fe9e7ff616a4d_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:564975a069879766b69f108f23999427e200d556d0bd2113a0fd3d26f77600d9_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-controller-manager-operator@sha256:564975a069879766b69f108f23999427e200d556d0bd2113a0fd3d26f77600d9_s390x" + }, + "product_reference": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:564975a069879766b69f108f23999427e200d556d0bd2113a0fd3d26f77600d9_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:850b2f1da0f9bdc162eab87c91ce8f0a6e77cedb279b886650b13143634d85cc_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-controller-manager-operator@sha256:850b2f1da0f9bdc162eab87c91ce8f0a6e77cedb279b886650b13143634d85cc_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:850b2f1da0f9bdc162eab87c91ce8f0a6e77cedb279b886650b13143634d85cc_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:b2107515c36330ef4010632eb7769fb362939d3e13a2e13ae58afbb0f8dbb89e_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-controller-manager-operator@sha256:b2107515c36330ef4010632eb7769fb362939d3e13a2e13ae58afbb0f8dbb89e_arm64" + }, + "product_reference": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:b2107515c36330ef4010632eb7769fb362939d3e13a2e13ae58afbb0f8dbb89e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:e4b066d11f7c7918c94fe9f10154bce5af628fa3f0b4e2404f02dcb9f754f0dc_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-controller-manager-operator@sha256:e4b066d11f7c7918c94fe9f10154bce5af628fa3f0b4e2404f02dcb9f754f0dc_amd64" + }, + "product_reference": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:e4b066d11f7c7918c94fe9f10154bce5af628fa3f0b4e2404f02dcb9f754f0dc_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-descheduler-operator@sha256:110f47992edd56ec24fe067c8d45bd1267d89e57039a221318f8da290131b4c0_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-descheduler-operator@sha256:110f47992edd56ec24fe067c8d45bd1267d89e57039a221318f8da290131b4c0_arm64" + }, + "product_reference": "openshift4/ose-cluster-kube-descheduler-operator@sha256:110f47992edd56ec24fe067c8d45bd1267d89e57039a221318f8da290131b4c0_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-descheduler-operator@sha256:375a0ec754193142d4ab78d0ea8c4b4815ce6869b05378b4f7dd611dc4b3a93b_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-descheduler-operator@sha256:375a0ec754193142d4ab78d0ea8c4b4815ce6869b05378b4f7dd611dc4b3a93b_s390x" + }, + "product_reference": "openshift4/ose-cluster-kube-descheduler-operator@sha256:375a0ec754193142d4ab78d0ea8c4b4815ce6869b05378b4f7dd611dc4b3a93b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-descheduler-operator@sha256:4b828313acd198d2b20c0b56bf2ae2b20c6e0d9352b300a15142b25c79303f22_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-descheduler-operator@sha256:4b828313acd198d2b20c0b56bf2ae2b20c6e0d9352b300a15142b25c79303f22_amd64" + }, + "product_reference": "openshift4/ose-cluster-kube-descheduler-operator@sha256:4b828313acd198d2b20c0b56bf2ae2b20c6e0d9352b300a15142b25c79303f22_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-descheduler-operator@sha256:a861507aa4fbf67528ccb1cea0b9e813c07a8529ed7e2d3e6dc0d2da235786a1_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-descheduler-operator@sha256:a861507aa4fbf67528ccb1cea0b9e813c07a8529ed7e2d3e6dc0d2da235786a1_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-kube-descheduler-operator@sha256:a861507aa4fbf67528ccb1cea0b9e813c07a8529ed7e2d3e6dc0d2da235786a1_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:110f47992edd56ec24fe067c8d45bd1267d89e57039a221318f8da290131b4c0_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:110f47992edd56ec24fe067c8d45bd1267d89e57039a221318f8da290131b4c0_arm64" + }, + "product_reference": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:110f47992edd56ec24fe067c8d45bd1267d89e57039a221318f8da290131b4c0_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:375a0ec754193142d4ab78d0ea8c4b4815ce6869b05378b4f7dd611dc4b3a93b_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:375a0ec754193142d4ab78d0ea8c4b4815ce6869b05378b4f7dd611dc4b3a93b_s390x" + }, + "product_reference": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:375a0ec754193142d4ab78d0ea8c4b4815ce6869b05378b4f7dd611dc4b3a93b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:4b828313acd198d2b20c0b56bf2ae2b20c6e0d9352b300a15142b25c79303f22_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:4b828313acd198d2b20c0b56bf2ae2b20c6e0d9352b300a15142b25c79303f22_amd64" + }, + "product_reference": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:4b828313acd198d2b20c0b56bf2ae2b20c6e0d9352b300a15142b25c79303f22_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:a861507aa4fbf67528ccb1cea0b9e813c07a8529ed7e2d3e6dc0d2da235786a1_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:a861507aa4fbf67528ccb1cea0b9e813c07a8529ed7e2d3e6dc0d2da235786a1_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:a861507aa4fbf67528ccb1cea0b9e813c07a8529ed7e2d3e6dc0d2da235786a1_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:0919d5e7ed996b9d9f7b4ef272c9ba00015fa21c855924b55b924740c30ec342_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-scheduler-operator@sha256:0919d5e7ed996b9d9f7b4ef272c9ba00015fa21c855924b55b924740c30ec342_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-kube-scheduler-operator@sha256:0919d5e7ed996b9d9f7b4ef272c9ba00015fa21c855924b55b924740c30ec342_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:6bd4a93307ab0883f78ed6bd6ff99710aad27b5d3671c873174c8746cded31c0_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-scheduler-operator@sha256:6bd4a93307ab0883f78ed6bd6ff99710aad27b5d3671c873174c8746cded31c0_s390x" + }, + "product_reference": "openshift4/ose-cluster-kube-scheduler-operator@sha256:6bd4a93307ab0883f78ed6bd6ff99710aad27b5d3671c873174c8746cded31c0_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:74197645436e316602179d21048254571d5f0d603f7c8019da69293081219b63_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-scheduler-operator@sha256:74197645436e316602179d21048254571d5f0d603f7c8019da69293081219b63_amd64" + }, + "product_reference": "openshift4/ose-cluster-kube-scheduler-operator@sha256:74197645436e316602179d21048254571d5f0d603f7c8019da69293081219b63_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:aa72cbdf3d3f2551663b9d2cb5e1244a92e2fc03e4285849f9fd84cbc7f20386_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-scheduler-operator@sha256:aa72cbdf3d3f2551663b9d2cb5e1244a92e2fc03e4285849f9fd84cbc7f20386_arm64" + }, + "product_reference": "openshift4/ose-cluster-kube-scheduler-operator@sha256:aa72cbdf3d3f2551663b9d2cb5e1244a92e2fc03e4285849f9fd84cbc7f20386_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2b69a2deef0934596aa8f411ef125e7ab318d48564d16737a93c98794edf7725_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2b69a2deef0934596aa8f411ef125e7ab318d48564d16737a93c98794edf7725_s390x" + }, + "product_reference": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:2b69a2deef0934596aa8f411ef125e7ab318d48564d16737a93c98794edf7725_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:404e672a0aa7b486d0e5e2a9fd171908c6d3cc42b3fb96342af63d60ad94f4a5_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:404e672a0aa7b486d0e5e2a9fd171908c6d3cc42b3fb96342af63d60ad94f4a5_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:404e672a0aa7b486d0e5e2a9fd171908c6d3cc42b3fb96342af63d60ad94f4a5_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:47c05bea0abfcf1ec7ee324b14300ef2c3a2c5639051f1e85e1e542f691aac1c_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:47c05bea0abfcf1ec7ee324b14300ef2c3a2c5639051f1e85e1e542f691aac1c_amd64" + }, + "product_reference": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:47c05bea0abfcf1ec7ee324b14300ef2c3a2c5639051f1e85e1e542f691aac1c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:f96d028eaafc20f8d99d6665758eb7b2fe061f35e94281f9259c50e5026b4a7b_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:f96d028eaafc20f8d99d6665758eb7b2fe061f35e94281f9259c50e5026b4a7b_arm64" + }, + "product_reference": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:f96d028eaafc20f8d99d6665758eb7b2fe061f35e94281f9259c50e5026b4a7b_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-machine-approver@sha256:19d38da20f35fdedfcd77996fc9fabece705f5a0383999944a417ea298f8562a_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-machine-approver@sha256:19d38da20f35fdedfcd77996fc9fabece705f5a0383999944a417ea298f8562a_s390x" + }, + "product_reference": "openshift4/ose-cluster-machine-approver@sha256:19d38da20f35fdedfcd77996fc9fabece705f5a0383999944a417ea298f8562a_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-machine-approver@sha256:635fb68d1c9d6bb11ca3442b6efc131eb316c3a5be42cbc9bfe3ef5debbf00f6_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-machine-approver@sha256:635fb68d1c9d6bb11ca3442b6efc131eb316c3a5be42cbc9bfe3ef5debbf00f6_amd64" + }, + "product_reference": "openshift4/ose-cluster-machine-approver@sha256:635fb68d1c9d6bb11ca3442b6efc131eb316c3a5be42cbc9bfe3ef5debbf00f6_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-machine-approver@sha256:c3f706e9a355640d2ce739c1d806c7e583cd9ab0af24ffb833101f69f5edbcfa_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-machine-approver@sha256:c3f706e9a355640d2ce739c1d806c7e583cd9ab0af24ffb833101f69f5edbcfa_arm64" + }, + "product_reference": "openshift4/ose-cluster-machine-approver@sha256:c3f706e9a355640d2ce739c1d806c7e583cd9ab0af24ffb833101f69f5edbcfa_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-machine-approver@sha256:d403066e9593492cb061d9a0260d633d66e5d470a27769394713f729f180da4f_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-machine-approver@sha256:d403066e9593492cb061d9a0260d633d66e5d470a27769394713f729f180da4f_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-machine-approver@sha256:d403066e9593492cb061d9a0260d633d66e5d470a27769394713f729f180da4f_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:32b7de4a97caa977da482e63eb9107fe3ab00f4774e09de90e4ab66a4e1fd2a7_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-monitoring-operator@sha256:32b7de4a97caa977da482e63eb9107fe3ab00f4774e09de90e4ab66a4e1fd2a7_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-monitoring-operator@sha256:32b7de4a97caa977da482e63eb9107fe3ab00f4774e09de90e4ab66a4e1fd2a7_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:a5a923f5dd108f06f72f6896d9461b38108aff1df9031db50aec9795922c108c_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-monitoring-operator@sha256:a5a923f5dd108f06f72f6896d9461b38108aff1df9031db50aec9795922c108c_arm64" + }, + "product_reference": "openshift4/ose-cluster-monitoring-operator@sha256:a5a923f5dd108f06f72f6896d9461b38108aff1df9031db50aec9795922c108c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:b1abbdc37969c2f80b9f426fcdeeec3e3dc2558be2efb713c512f4d5a22c0784_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-monitoring-operator@sha256:b1abbdc37969c2f80b9f426fcdeeec3e3dc2558be2efb713c512f4d5a22c0784_s390x" + }, + "product_reference": "openshift4/ose-cluster-monitoring-operator@sha256:b1abbdc37969c2f80b9f426fcdeeec3e3dc2558be2efb713c512f4d5a22c0784_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:e459968519db479f28c0775b131d7ffa9eeafcb6bc483c5f65af47814d97a5ac_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-monitoring-operator@sha256:e459968519db479f28c0775b131d7ffa9eeafcb6bc483c5f65af47814d97a5ac_amd64" + }, + "product_reference": "openshift4/ose-cluster-monitoring-operator@sha256:e459968519db479f28c0775b131d7ffa9eeafcb6bc483c5f65af47814d97a5ac_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-network-operator@sha256:0f04018e4db49a191749245c7c1cdffe70bcfe3436120703d55211acc216a707_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-network-operator@sha256:0f04018e4db49a191749245c7c1cdffe70bcfe3436120703d55211acc216a707_arm64" + }, + "product_reference": "openshift4/ose-cluster-network-operator@sha256:0f04018e4db49a191749245c7c1cdffe70bcfe3436120703d55211acc216a707_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-network-operator@sha256:787112a0d569e89d167d330f33acd5ce8b4687289dca93fc0b0bb19f4ef578c2_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-network-operator@sha256:787112a0d569e89d167d330f33acd5ce8b4687289dca93fc0b0bb19f4ef578c2_amd64" + }, + "product_reference": "openshift4/ose-cluster-network-operator@sha256:787112a0d569e89d167d330f33acd5ce8b4687289dca93fc0b0bb19f4ef578c2_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-network-operator@sha256:98bb814f4ab66020c01dd8d4d01d61681bb4d54831b8e2c003dc12cbed79e8ea_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-network-operator@sha256:98bb814f4ab66020c01dd8d4d01d61681bb4d54831b8e2c003dc12cbed79e8ea_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-network-operator@sha256:98bb814f4ab66020c01dd8d4d01d61681bb4d54831b8e2c003dc12cbed79e8ea_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-network-operator@sha256:b64ddd506e8fd2967b23a4eea9e1df457b9d1543ac076fbaae33b998337d8e07_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-network-operator@sha256:b64ddd506e8fd2967b23a4eea9e1df457b9d1543ac076fbaae33b998337d8e07_s390x" + }, + "product_reference": "openshift4/ose-cluster-network-operator@sha256:b64ddd506e8fd2967b23a4eea9e1df457b9d1543ac076fbaae33b998337d8e07_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-nfd-operator@sha256:0af4fd0d72782504a2e62bc0ce9e877c35bacc4b2d99bd8cb17ddc16c4755ee7_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-nfd-operator@sha256:0af4fd0d72782504a2e62bc0ce9e877c35bacc4b2d99bd8cb17ddc16c4755ee7_amd64" + }, + "product_reference": "openshift4/ose-cluster-nfd-operator@sha256:0af4fd0d72782504a2e62bc0ce9e877c35bacc4b2d99bd8cb17ddc16c4755ee7_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-nfd-operator@sha256:12daaed1d90ca668046444bd34f0526b0f6025ceb1c80c8fc72ff33c8d147224_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-nfd-operator@sha256:12daaed1d90ca668046444bd34f0526b0f6025ceb1c80c8fc72ff33c8d147224_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-nfd-operator@sha256:12daaed1d90ca668046444bd34f0526b0f6025ceb1c80c8fc72ff33c8d147224_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-nfd-operator@sha256:d24cc2e52f0410d0f0e92e208a35aa2a0a28c9585b0153a005b92d3164ccd141_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-nfd-operator@sha256:d24cc2e52f0410d0f0e92e208a35aa2a0a28c9585b0153a005b92d3164ccd141_s390x" + }, + "product_reference": "openshift4/ose-cluster-nfd-operator@sha256:d24cc2e52f0410d0f0e92e208a35aa2a0a28c9585b0153a005b92d3164ccd141_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-nfd-operator@sha256:e285b2dcba5f362fbbea4dbf6095bf3d101c69715a4a07251f28b67432f31b89_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-nfd-operator@sha256:e285b2dcba5f362fbbea4dbf6095bf3d101c69715a4a07251f28b67432f31b89_arm64" + }, + "product_reference": "openshift4/ose-cluster-nfd-operator@sha256:e285b2dcba5f362fbbea4dbf6095bf3d101c69715a4a07251f28b67432f31b89_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:15022db823c57765aaf9c1adeda36fb4611e52970dbaa9e9c68c42a9056035a5_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-node-tuning-operator@sha256:15022db823c57765aaf9c1adeda36fb4611e52970dbaa9e9c68c42a9056035a5_amd64" + }, + "product_reference": "openshift4/ose-cluster-node-tuning-operator@sha256:15022db823c57765aaf9c1adeda36fb4611e52970dbaa9e9c68c42a9056035a5_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:3300a6c39e2947a6cf6f8e66609065466476058e45ff5bd59b93a27b8ef2d4c3_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-node-tuning-operator@sha256:3300a6c39e2947a6cf6f8e66609065466476058e45ff5bd59b93a27b8ef2d4c3_arm64" + }, + "product_reference": "openshift4/ose-cluster-node-tuning-operator@sha256:3300a6c39e2947a6cf6f8e66609065466476058e45ff5bd59b93a27b8ef2d4c3_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:c54a1955cad304382bb7ed8214616a7189c24e9f64a665c7beb65e03385da475_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-node-tuning-operator@sha256:c54a1955cad304382bb7ed8214616a7189c24e9f64a665c7beb65e03385da475_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-node-tuning-operator@sha256:c54a1955cad304382bb7ed8214616a7189c24e9f64a665c7beb65e03385da475_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:c583300ab56f68dc65544897674505674b940cb82b338304aa9a96bfa2a34245_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-node-tuning-operator@sha256:c583300ab56f68dc65544897674505674b940cb82b338304aa9a96bfa2a34245_s390x" + }, + "product_reference": "openshift4/ose-cluster-node-tuning-operator@sha256:c583300ab56f68dc65544897674505674b940cb82b338304aa9a96bfa2a34245_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:22f6ad573a79f6f5753035c4d051b49610114294debc0dbde6cd19137965906a_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-openshift-apiserver-operator@sha256:22f6ad573a79f6f5753035c4d051b49610114294debc0dbde6cd19137965906a_arm64" + }, + "product_reference": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:22f6ad573a79f6f5753035c4d051b49610114294debc0dbde6cd19137965906a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:451793dbbeb5c344182f9ef593ce7dfb2c10a2a3699f17ec84a8822a203c75d2_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-openshift-apiserver-operator@sha256:451793dbbeb5c344182f9ef593ce7dfb2c10a2a3699f17ec84a8822a203c75d2_s390x" + }, + "product_reference": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:451793dbbeb5c344182f9ef593ce7dfb2c10a2a3699f17ec84a8822a203c75d2_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:df170c2c78674a8f5eb1974b21878e9ce45dd0d507447bd39efcc12f1900e93a_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-openshift-apiserver-operator@sha256:df170c2c78674a8f5eb1974b21878e9ce45dd0d507447bd39efcc12f1900e93a_amd64" + }, + "product_reference": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:df170c2c78674a8f5eb1974b21878e9ce45dd0d507447bd39efcc12f1900e93a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:f52a3a2234e47ee7ca8e7392ccdb026890b4364abfb066b90cb4c64839b7e13e_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-openshift-apiserver-operator@sha256:f52a3a2234e47ee7ca8e7392ccdb026890b4364abfb066b90cb4c64839b7e13e_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:f52a3a2234e47ee7ca8e7392ccdb026890b4364abfb066b90cb4c64839b7e13e_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:95b515b84abff5b0bfe666f1e4cf0509452832f8b52727d634e53feb8e5df9ae_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-openshift-controller-manager-operator@sha256:95b515b84abff5b0bfe666f1e4cf0509452832f8b52727d634e53feb8e5df9ae_amd64" + }, + "product_reference": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:95b515b84abff5b0bfe666f1e4cf0509452832f8b52727d634e53feb8e5df9ae_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:a9c2799e64edae252fdeaa5105a23405f76634db4a845a235b0f4139c49cfcd1_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-openshift-controller-manager-operator@sha256:a9c2799e64edae252fdeaa5105a23405f76634db4a845a235b0f4139c49cfcd1_s390x" + }, + "product_reference": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:a9c2799e64edae252fdeaa5105a23405f76634db4a845a235b0f4139c49cfcd1_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ddc07cce7824fdc307217a3c9dc089d06f31f2fb3200ddd9ba32f98680861380_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ddc07cce7824fdc307217a3c9dc089d06f31f2fb3200ddd9ba32f98680861380_arm64" + }, + "product_reference": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ddc07cce7824fdc307217a3c9dc089d06f31f2fb3200ddd9ba32f98680861380_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ef2fa28a9419e57f5497f3e85636f72e85e3868322dbcee4f52d659c7867f647_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ef2fa28a9419e57f5497f3e85636f72e85e3868322dbcee4f52d659c7867f647_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:ef2fa28a9419e57f5497f3e85636f72e85e3868322dbcee4f52d659c7867f647_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:48d226c3e54e211e9e45ef5c4cda3bf122e5495032f6037f8fbf338536ddd10b_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:48d226c3e54e211e9e45ef5c4cda3bf122e5495032f6037f8fbf338536ddd10b_amd64" + }, + "product_reference": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:48d226c3e54e211e9e45ef5c4cda3bf122e5495032f6037f8fbf338536ddd10b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:5cc3e3c047777ad8cd5240b11f5fddb8eaad1b26fe2d2bad4c14a09ee6867a76_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:5cc3e3c047777ad8cd5240b11f5fddb8eaad1b26fe2d2bad4c14a09ee6867a76_s390x" + }, + "product_reference": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:5cc3e3c047777ad8cd5240b11f5fddb8eaad1b26fe2d2bad4c14a09ee6867a76_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:686fa7af33c3f044398207f90d881c5bd2e388f20751cdb1a986345f53b92b57_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:686fa7af33c3f044398207f90d881c5bd2e388f20751cdb1a986345f53b92b57_arm64" + }, + "product_reference": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:686fa7af33c3f044398207f90d881c5bd2e388f20751cdb1a986345f53b92b57_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:f59eb3ae10ca3ead4fc6a6bab82f86deb411dbd478946af2eb7d872b2760bc34_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:f59eb3ae10ca3ead4fc6a6bab82f86deb411dbd478946af2eb7d872b2760bc34_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:f59eb3ae10ca3ead4fc6a6bab82f86deb411dbd478946af2eb7d872b2760bc34_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:05e1af0fe93e4adae09c6db0e8b426df778a50c506436662902d8a5faef286e8_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-policy-controller-rhel8@sha256:05e1af0fe93e4adae09c6db0e8b426df778a50c506436662902d8a5faef286e8_amd64" + }, + "product_reference": "openshift4/ose-cluster-policy-controller-rhel8@sha256:05e1af0fe93e4adae09c6db0e8b426df778a50c506436662902d8a5faef286e8_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:5a2ed72a6eb9158257b0c1a6c29e59f9ab65b814bb154bc0ae4acb4bfdb9085a_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-policy-controller-rhel8@sha256:5a2ed72a6eb9158257b0c1a6c29e59f9ab65b814bb154bc0ae4acb4bfdb9085a_s390x" + }, + "product_reference": "openshift4/ose-cluster-policy-controller-rhel8@sha256:5a2ed72a6eb9158257b0c1a6c29e59f9ab65b814bb154bc0ae4acb4bfdb9085a_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:afd4242578c2148463a99daca7b22ff540adb3eaec754279da791d681be72e42_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-policy-controller-rhel8@sha256:afd4242578c2148463a99daca7b22ff540adb3eaec754279da791d681be72e42_arm64" + }, + "product_reference": "openshift4/ose-cluster-policy-controller-rhel8@sha256:afd4242578c2148463a99daca7b22ff540adb3eaec754279da791d681be72e42_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:b745d554f22062fe21d36dea67346adea95ac71b2d31e230d828500e854a235c_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-policy-controller-rhel8@sha256:b745d554f22062fe21d36dea67346adea95ac71b2d31e230d828500e854a235c_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-policy-controller-rhel8@sha256:b745d554f22062fe21d36dea67346adea95ac71b2d31e230d828500e854a235c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-samples-operator@sha256:53a2f0582f5c83a0209e34de59ae93cd181cfade32d69ce38e2a329bbea8d566_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-samples-operator@sha256:53a2f0582f5c83a0209e34de59ae93cd181cfade32d69ce38e2a329bbea8d566_arm64" + }, + "product_reference": "openshift4/ose-cluster-samples-operator@sha256:53a2f0582f5c83a0209e34de59ae93cd181cfade32d69ce38e2a329bbea8d566_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-samples-operator@sha256:9cb3e0e61b33ee945e81495147c381fa296e8f06f6dd918f54a0cf5a9f2c3b5c_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-samples-operator@sha256:9cb3e0e61b33ee945e81495147c381fa296e8f06f6dd918f54a0cf5a9f2c3b5c_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-samples-operator@sha256:9cb3e0e61b33ee945e81495147c381fa296e8f06f6dd918f54a0cf5a9f2c3b5c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-samples-operator@sha256:b92368cb5ce01b36f7e09ecaa936385c9ec5b15a9ac0e2e77985be74fe4b2b16_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-samples-operator@sha256:b92368cb5ce01b36f7e09ecaa936385c9ec5b15a9ac0e2e77985be74fe4b2b16_s390x" + }, + "product_reference": "openshift4/ose-cluster-samples-operator@sha256:b92368cb5ce01b36f7e09ecaa936385c9ec5b15a9ac0e2e77985be74fe4b2b16_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-samples-operator@sha256:fa34ea8c1b3a0f57659bc98fafa5ee46734b265c27fdd8b793250a4dd3271d5c_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-samples-operator@sha256:fa34ea8c1b3a0f57659bc98fafa5ee46734b265c27fdd8b793250a4dd3271d5c_amd64" + }, + "product_reference": "openshift4/ose-cluster-samples-operator@sha256:fa34ea8c1b3a0f57659bc98fafa5ee46734b265c27fdd8b793250a4dd3271d5c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-storage-operator@sha256:8db34a90344599058b8872d2ac0c88e21595312a9b214cab3437c102b1e05ab8_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-storage-operator@sha256:8db34a90344599058b8872d2ac0c88e21595312a9b214cab3437c102b1e05ab8_s390x" + }, + "product_reference": "openshift4/ose-cluster-storage-operator@sha256:8db34a90344599058b8872d2ac0c88e21595312a9b214cab3437c102b1e05ab8_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-storage-operator@sha256:8f553ce7c4d4ff0b36e14fdaf8f117cf161d3d7b0f1919467caaed53d46e2f25_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-storage-operator@sha256:8f553ce7c4d4ff0b36e14fdaf8f117cf161d3d7b0f1919467caaed53d46e2f25_amd64" + }, + "product_reference": "openshift4/ose-cluster-storage-operator@sha256:8f553ce7c4d4ff0b36e14fdaf8f117cf161d3d7b0f1919467caaed53d46e2f25_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-storage-operator@sha256:a58897504ce4316f7f1671088e93e5fb2441685b8fafee298643ff0e3764e5a2_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-storage-operator@sha256:a58897504ce4316f7f1671088e93e5fb2441685b8fafee298643ff0e3764e5a2_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-storage-operator@sha256:a58897504ce4316f7f1671088e93e5fb2441685b8fafee298643ff0e3764e5a2_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-storage-operator@sha256:a90180731c4378bee6aa37b516384b6dc0eb49fc79b53573335b8398db924276_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-storage-operator@sha256:a90180731c4378bee6aa37b516384b6dc0eb49fc79b53573335b8398db924276_arm64" + }, + "product_reference": "openshift4/ose-cluster-storage-operator@sha256:a90180731c4378bee6aa37b516384b6dc0eb49fc79b53573335b8398db924276_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-version-operator@sha256:10e9f018f1f5f6d375648abe77667dff4b7b4b4a1dfa3c2f1c31a62fcc9d6e80_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-version-operator@sha256:10e9f018f1f5f6d375648abe77667dff4b7b4b4a1dfa3c2f1c31a62fcc9d6e80_arm64" + }, + "product_reference": "openshift4/ose-cluster-version-operator@sha256:10e9f018f1f5f6d375648abe77667dff4b7b4b4a1dfa3c2f1c31a62fcc9d6e80_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-version-operator@sha256:51ff5c5072574d8dcc23fa9fa61c2d4e7a498477c0684268bed951676b0f0f41_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-version-operator@sha256:51ff5c5072574d8dcc23fa9fa61c2d4e7a498477c0684268bed951676b0f0f41_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-version-operator@sha256:51ff5c5072574d8dcc23fa9fa61c2d4e7a498477c0684268bed951676b0f0f41_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-version-operator@sha256:888f307aec51a560eeef3f100e718c3ef81728d65a70ed62a8bd13356dbf0965_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-version-operator@sha256:888f307aec51a560eeef3f100e718c3ef81728d65a70ed62a8bd13356dbf0965_s390x" + }, + "product_reference": "openshift4/ose-cluster-version-operator@sha256:888f307aec51a560eeef3f100e718c3ef81728d65a70ed62a8bd13356dbf0965_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-version-operator@sha256:be789154e9b207645873c0e3c650d419679743f2145bca93d774f27c64e44d6f_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-cluster-version-operator@sha256:be789154e9b207645873c0e3c650d419679743f2145bca93d774f27c64e44d6f_amd64" + }, + "product_reference": "openshift4/ose-cluster-version-operator@sha256:be789154e9b207645873c0e3c650d419679743f2145bca93d774f27c64e44d6f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:31a9534f3d11283630ffc83b4c8460f6f3d8f8f6b1694019e0c1eb5de455abc7_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:31a9534f3d11283630ffc83b4c8460f6f3d8f8f6b1694019e0c1eb5de455abc7_s390x" + }, + "product_reference": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:31a9534f3d11283630ffc83b4c8460f6f3d8f8f6b1694019e0c1eb5de455abc7_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d130f6fb427deee9d0afef7caa8c1bf038d97fe2eb7741810d68aeeb678a99cc_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d130f6fb427deee9d0afef7caa8c1bf038d97fe2eb7741810d68aeeb678a99cc_ppc64le" + }, + "product_reference": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d130f6fb427deee9d0afef7caa8c1bf038d97fe2eb7741810d68aeeb678a99cc_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d68e358e7779826845424d1b3320e3019bbf8776e9edceba139ab32afc077490_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d68e358e7779826845424d1b3320e3019bbf8776e9edceba139ab32afc077490_amd64" + }, + "product_reference": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d68e358e7779826845424d1b3320e3019bbf8776e9edceba139ab32afc077490_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:e9b02218f1b0cf9e9c99bc1deb64ba1337144af832c285c6208c940dc6eaea14_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:e9b02218f1b0cf9e9c99bc1deb64ba1337144af832c285c6208c940dc6eaea14_arm64" + }, + "product_reference": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:e9b02218f1b0cf9e9c99bc1deb64ba1337144af832c285c6208c940dc6eaea14_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-clusterresourceoverride-rhel8@sha256:5986bb8251af335d11c4745d39c9511b21f8dd68c62d7b22b98889054610b39c_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-clusterresourceoverride-rhel8@sha256:5986bb8251af335d11c4745d39c9511b21f8dd68c62d7b22b98889054610b39c_arm64" + }, + "product_reference": "openshift4/ose-clusterresourceoverride-rhel8@sha256:5986bb8251af335d11c4745d39c9511b21f8dd68c62d7b22b98889054610b39c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-clusterresourceoverride-rhel8@sha256:5f9556621dba860b6cc3aadcd29ca3864984aa6f28d5541126214ab1f890066e_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-clusterresourceoverride-rhel8@sha256:5f9556621dba860b6cc3aadcd29ca3864984aa6f28d5541126214ab1f890066e_s390x" + }, + "product_reference": "openshift4/ose-clusterresourceoverride-rhel8@sha256:5f9556621dba860b6cc3aadcd29ca3864984aa6f28d5541126214ab1f890066e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-clusterresourceoverride-rhel8@sha256:991e6b322f683e04750483abaec501e427534b513fb562a90253280b292d7370_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-clusterresourceoverride-rhel8@sha256:991e6b322f683e04750483abaec501e427534b513fb562a90253280b292d7370_amd64" + }, + "product_reference": "openshift4/ose-clusterresourceoverride-rhel8@sha256:991e6b322f683e04750483abaec501e427534b513fb562a90253280b292d7370_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-clusterresourceoverride-rhel8@sha256:9de4e437c8bf883491be7cfc157329f2315e4fd37efe1bff56f9f50c6c8452f7_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-clusterresourceoverride-rhel8@sha256:9de4e437c8bf883491be7cfc157329f2315e4fd37efe1bff56f9f50c6c8452f7_ppc64le" + }, + "product_reference": "openshift4/ose-clusterresourceoverride-rhel8@sha256:9de4e437c8bf883491be7cfc157329f2315e4fd37efe1bff56f9f50c6c8452f7_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-configmap-reloader@sha256:0dbd26f158ebe4b0629777d5495c4eaa3c4b1712c24a1fad5bea67ca0985753f_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-configmap-reloader@sha256:0dbd26f158ebe4b0629777d5495c4eaa3c4b1712c24a1fad5bea67ca0985753f_s390x" + }, + "product_reference": "openshift4/ose-configmap-reloader@sha256:0dbd26f158ebe4b0629777d5495c4eaa3c4b1712c24a1fad5bea67ca0985753f_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-configmap-reloader@sha256:41d71be7aaf5403c8098e5a23e0d657b29ea8a12f37225c89499fd965b623f0c_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-configmap-reloader@sha256:41d71be7aaf5403c8098e5a23e0d657b29ea8a12f37225c89499fd965b623f0c_arm64" + }, + "product_reference": "openshift4/ose-configmap-reloader@sha256:41d71be7aaf5403c8098e5a23e0d657b29ea8a12f37225c89499fd965b623f0c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-configmap-reloader@sha256:6a9c14dd9b72739f642e5e7b27e0534cdb2435b908ed3c15e09b081d1b30803f_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-configmap-reloader@sha256:6a9c14dd9b72739f642e5e7b27e0534cdb2435b908ed3c15e09b081d1b30803f_amd64" + }, + "product_reference": "openshift4/ose-configmap-reloader@sha256:6a9c14dd9b72739f642e5e7b27e0534cdb2435b908ed3c15e09b081d1b30803f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-configmap-reloader@sha256:e7e1b8f0e8c3fa36da1f0131f907f8432732e6f008416286e0826dd01a8fe255_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-configmap-reloader@sha256:e7e1b8f0e8c3fa36da1f0131f907f8432732e6f008416286e0826dd01a8fe255_ppc64le" + }, + "product_reference": "openshift4/ose-configmap-reloader@sha256:e7e1b8f0e8c3fa36da1f0131f907f8432732e6f008416286e0826dd01a8fe255_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console-operator@sha256:04331a97456ac54ddb7cb8eaf3daef682a0d63377e84d5ff21b930f9b846bec6_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-console-operator@sha256:04331a97456ac54ddb7cb8eaf3daef682a0d63377e84d5ff21b930f9b846bec6_amd64" + }, + "product_reference": "openshift4/ose-console-operator@sha256:04331a97456ac54ddb7cb8eaf3daef682a0d63377e84d5ff21b930f9b846bec6_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console-operator@sha256:130823130867699b85b4d2b60cb5a3e707dac1ebf8a21599693467665ae1f777_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-console-operator@sha256:130823130867699b85b4d2b60cb5a3e707dac1ebf8a21599693467665ae1f777_arm64" + }, + "product_reference": "openshift4/ose-console-operator@sha256:130823130867699b85b4d2b60cb5a3e707dac1ebf8a21599693467665ae1f777_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console-operator@sha256:1e0f0cd66eefe7c82f670a7d0dcdfcf229d50090c8d5ab64a3c300a326fcf9d4_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-console-operator@sha256:1e0f0cd66eefe7c82f670a7d0dcdfcf229d50090c8d5ab64a3c300a326fcf9d4_s390x" + }, + "product_reference": "openshift4/ose-console-operator@sha256:1e0f0cd66eefe7c82f670a7d0dcdfcf229d50090c8d5ab64a3c300a326fcf9d4_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console-operator@sha256:2df3080c7cfa0ca26091f8522c5bb82e62e758e14ee5db9c85e28ba71e27fdf8_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-console-operator@sha256:2df3080c7cfa0ca26091f8522c5bb82e62e758e14ee5db9c85e28ba71e27fdf8_ppc64le" + }, + "product_reference": "openshift4/ose-console-operator@sha256:2df3080c7cfa0ca26091f8522c5bb82e62e758e14ee5db9c85e28ba71e27fdf8_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console@sha256:048d32789d06cbe687049c3d9478370c483ce33979d9d4a81a2ee8713b2f84d3_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-console@sha256:048d32789d06cbe687049c3d9478370c483ce33979d9d4a81a2ee8713b2f84d3_ppc64le" + }, + "product_reference": "openshift4/ose-console@sha256:048d32789d06cbe687049c3d9478370c483ce33979d9d4a81a2ee8713b2f84d3_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console@sha256:1bb1fa963906ac2841351e2e0da9aa7365314d85121fbd7bbb9582a0e3ca9522_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-console@sha256:1bb1fa963906ac2841351e2e0da9aa7365314d85121fbd7bbb9582a0e3ca9522_amd64" + }, + "product_reference": "openshift4/ose-console@sha256:1bb1fa963906ac2841351e2e0da9aa7365314d85121fbd7bbb9582a0e3ca9522_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console@sha256:48eb48de671cdfb012368e58261aa1d9be73569f36ca93e0a5d5b98363380c96_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-console@sha256:48eb48de671cdfb012368e58261aa1d9be73569f36ca93e0a5d5b98363380c96_arm64" + }, + "product_reference": "openshift4/ose-console@sha256:48eb48de671cdfb012368e58261aa1d9be73569f36ca93e0a5d5b98363380c96_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console@sha256:f37e087e801ac0647492e8972aed5db9ae12bf83c5d0523e64469951be81ef07_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-console@sha256:f37e087e801ac0647492e8972aed5db9ae12bf83c5d0523e64469951be81ef07_s390x" + }, + "product_reference": "openshift4/ose-console@sha256:f37e087e801ac0647492e8972aed5db9ae12bf83c5d0523e64469951be81ef07_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:3c23c49605e129f64225dbbabd0283e0726c43e64855333ca7a1655613bf1adc_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-container-networking-plugins-rhel8@sha256:3c23c49605e129f64225dbbabd0283e0726c43e64855333ca7a1655613bf1adc_s390x" + }, + "product_reference": "openshift4/ose-container-networking-plugins-rhel8@sha256:3c23c49605e129f64225dbbabd0283e0726c43e64855333ca7a1655613bf1adc_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:707add7d50beb4acfc4a20f7e50b4bb0293fc0933080ab7a377f7117722826fb_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-container-networking-plugins-rhel8@sha256:707add7d50beb4acfc4a20f7e50b4bb0293fc0933080ab7a377f7117722826fb_arm64" + }, + "product_reference": "openshift4/ose-container-networking-plugins-rhel8@sha256:707add7d50beb4acfc4a20f7e50b4bb0293fc0933080ab7a377f7117722826fb_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:9ac3be786051f2b4aebbd788ba23eecfeba9bda1b5a3942f03b9da44d1dc4573_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-container-networking-plugins-rhel8@sha256:9ac3be786051f2b4aebbd788ba23eecfeba9bda1b5a3942f03b9da44d1dc4573_amd64" + }, + "product_reference": "openshift4/ose-container-networking-plugins-rhel8@sha256:9ac3be786051f2b4aebbd788ba23eecfeba9bda1b5a3942f03b9da44d1dc4573_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:ed59513687763264e47f67172a93f83d3df14ea4df6cf575086ce9044a375770_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-container-networking-plugins-rhel8@sha256:ed59513687763264e47f67172a93f83d3df14ea4df6cf575086ce9044a375770_ppc64le" + }, + "product_reference": "openshift4/ose-container-networking-plugins-rhel8@sha256:ed59513687763264e47f67172a93f83d3df14ea4df6cf575086ce9044a375770_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-coredns@sha256:0b19ac90453c9df9263c17b665602e3cfd519676922cd42ebee26ad16391d87f_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-coredns@sha256:0b19ac90453c9df9263c17b665602e3cfd519676922cd42ebee26ad16391d87f_amd64" + }, + "product_reference": "openshift4/ose-coredns@sha256:0b19ac90453c9df9263c17b665602e3cfd519676922cd42ebee26ad16391d87f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-coredns@sha256:5815330b8dad3dbf99aecd4b9703f714ad25239006a50784569f44276bc8c7b0_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-coredns@sha256:5815330b8dad3dbf99aecd4b9703f714ad25239006a50784569f44276bc8c7b0_s390x" + }, + "product_reference": "openshift4/ose-coredns@sha256:5815330b8dad3dbf99aecd4b9703f714ad25239006a50784569f44276bc8c7b0_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-coredns@sha256:6094b07f2fc4bd91f6a7a0eb20d6ee8968a2718ea119df162dfe9d91d60df500_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-coredns@sha256:6094b07f2fc4bd91f6a7a0eb20d6ee8968a2718ea119df162dfe9d91d60df500_ppc64le" + }, + "product_reference": "openshift4/ose-coredns@sha256:6094b07f2fc4bd91f6a7a0eb20d6ee8968a2718ea119df162dfe9d91d60df500_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-coredns@sha256:d12af59b428a1890a8ed2dd80ef01ce98ceb925183f065cc57f6e75b3d4b3dae_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-coredns@sha256:d12af59b428a1890a8ed2dd80ef01ce98ceb925183f065cc57f6e75b3d4b3dae_arm64" + }, + "product_reference": "openshift4/ose-coredns@sha256:d12af59b428a1890a8ed2dd80ef01ce98ceb925183f065cc57f6e75b3d4b3dae_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:09ae0dd1228badd5ddaf9a6d1f88695c9d22bc917d33e19e04cc4c5dc109c69c_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-driver-manila-rhel8-operator@sha256:09ae0dd1228badd5ddaf9a6d1f88695c9d22bc917d33e19e04cc4c5dc109c69c_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:09ae0dd1228badd5ddaf9a6d1f88695c9d22bc917d33e19e04cc4c5dc109c69c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:d4120bc7d66a301843d107b00f02805f3a6b1f77900f91e2a530eca811072b22_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-driver-manila-rhel8-operator@sha256:d4120bc7d66a301843d107b00f02805f3a6b1f77900f91e2a530eca811072b22_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:d4120bc7d66a301843d107b00f02805f3a6b1f77900f91e2a530eca811072b22_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:144ab2ee435dca16f9922e7f77da49205b882f59a350268e574c6462214ae242_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-driver-manila-rhel8@sha256:144ab2ee435dca16f9922e7f77da49205b882f59a350268e574c6462214ae242_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-manila-rhel8@sha256:144ab2ee435dca16f9922e7f77da49205b882f59a350268e574c6462214ae242_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:bd257f865da81194913f3857328c14af43e81439af593bfcfcf8f9924fc71aa4_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-driver-manila-rhel8@sha256:bd257f865da81194913f3857328c14af43e81439af593bfcfcf8f9924fc71aa4_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-manila-rhel8@sha256:bd257f865da81194913f3857328c14af43e81439af593bfcfcf8f9924fc71aa4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-nfs-rhel8@sha256:01e82ae76616ed87afbea5e9eed5961454819e0f5f1921fce2362c9081705acc_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-driver-nfs-rhel8@sha256:01e82ae76616ed87afbea5e9eed5961454819e0f5f1921fce2362c9081705acc_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-nfs-rhel8@sha256:01e82ae76616ed87afbea5e9eed5961454819e0f5f1921fce2362c9081705acc_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-nfs-rhel8@sha256:bb89688954a61cfe63a6d4ca65902ebe6a42a8cb676cc240c6da423df0fdc29d_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-driver-nfs-rhel8@sha256:bb89688954a61cfe63a6d4ca65902ebe6a42a8cb676cc240c6da423df0fdc29d_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-nfs-rhel8@sha256:bb89688954a61cfe63a6d4ca65902ebe6a42a8cb676cc240c6da423df0fdc29d_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:0303c44ecef5d2ea83e87b6c1274d4d73dc68203e380e691ee2a0f97b69e1242_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:0303c44ecef5d2ea83e87b6c1274d4d73dc68203e380e691ee2a0f97b69e1242_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:0303c44ecef5d2ea83e87b6c1274d4d73dc68203e380e691ee2a0f97b69e1242_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:41c3a01dbfbb7d01b9e9d6defea92e1c92ac6fd38005966249ecc39c632bfa9f_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:41c3a01dbfbb7d01b9e9d6defea92e1c92ac6fd38005966249ecc39c632bfa9f_s390x" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:41c3a01dbfbb7d01b9e9d6defea92e1c92ac6fd38005966249ecc39c632bfa9f_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:5fc572219938ed89003e4a21897a448dae71bc410c7fa123754afd8b83d9a429_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:5fc572219938ed89003e4a21897a448dae71bc410c7fa123754afd8b83d9a429_arm64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:5fc572219938ed89003e4a21897a448dae71bc410c7fa123754afd8b83d9a429_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c4345c6b7089c330348debf5bb87d82cb6cc4f24f56d5ce2a7681de63f0b52c2_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c4345c6b7089c330348debf5bb87d82cb6cc4f24f56d5ce2a7681de63f0b52c2_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:c4345c6b7089c330348debf5bb87d82cb6cc4f24f56d5ce2a7681de63f0b52c2_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:09ccedec19457d859856db1d0c3b9a619561e16421fd73b7f7e022f27242d368_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:09ccedec19457d859856db1d0c3b9a619561e16421fd73b7f7e022f27242d368_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:09ccedec19457d859856db1d0c3b9a619561e16421fd73b7f7e022f27242d368_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:57c6120b1def06be6d64030bbc7c63afc9db12a975885329d0f5967aea03554a_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:57c6120b1def06be6d64030bbc7c63afc9db12a975885329d0f5967aea03554a_arm64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:57c6120b1def06be6d64030bbc7c63afc9db12a975885329d0f5967aea03554a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:81efea3b7f8c728e313dedc8576d236fe9c6bcccfd9b27be1ff8b0bbe86da5b0_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:81efea3b7f8c728e313dedc8576d236fe9c6bcccfd9b27be1ff8b0bbe86da5b0_s390x" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:81efea3b7f8c728e313dedc8576d236fe9c6bcccfd9b27be1ff8b0bbe86da5b0_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ce892df69586f02fca48d7d4d8dbb018e06b54f69e62114c7466850c4a809c21_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ce892df69586f02fca48d7d4d8dbb018e06b54f69e62114c7466850c4a809c21_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:ce892df69586f02fca48d7d4d8dbb018e06b54f69e62114c7466850c4a809c21_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:1300f74056d65f6ab5a38eefd1ea209f180cbea9719ba2be0ffd3cc0e5d46127_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-driver-shared-resource-rhel8@sha256:1300f74056d65f6ab5a38eefd1ea209f180cbea9719ba2be0ffd3cc0e5d46127_s390x" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:1300f74056d65f6ab5a38eefd1ea209f180cbea9719ba2be0ffd3cc0e5d46127_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:8bdfb639060db65a26ee18df1af7062a3f3d649a0253919d48ace45788d22005_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-driver-shared-resource-rhel8@sha256:8bdfb639060db65a26ee18df1af7062a3f3d649a0253919d48ace45788d22005_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:8bdfb639060db65a26ee18df1af7062a3f3d649a0253919d48ace45788d22005_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ab496696109de6ce2b3e97e36a0ec8f2ae88a79ce93cb8aaa03c2ac9a28172c9_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ab496696109de6ce2b3e97e36a0ec8f2ae88a79ce93cb8aaa03c2ac9a28172c9_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:ab496696109de6ce2b3e97e36a0ec8f2ae88a79ce93cb8aaa03c2ac9a28172c9_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:fe9069025728092dec4f905f2ec524015ae7442a32a18f37109cebfd305f08b9_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-driver-shared-resource-rhel8@sha256:fe9069025728092dec4f905f2ec524015ae7442a32a18f37109cebfd305f08b9_arm64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:fe9069025728092dec4f905f2ec524015ae7442a32a18f37109cebfd305f08b9_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:8938d99833efaf889412877e38fadb753aba8ab91b1d27a19319e3eb11fa1ad3_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:8938d99833efaf889412877e38fadb753aba8ab91b1d27a19319e3eb11fa1ad3_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:8938d99833efaf889412877e38fadb753aba8ab91b1d27a19319e3eb11fa1ad3_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:96d19a21ad73a19a0b965ef6543c534e146dda286fe8c1618e0fb4b1e383b13e_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:96d19a21ad73a19a0b965ef6543c534e146dda286fe8c1618e0fb4b1e383b13e_arm64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:96d19a21ad73a19a0b965ef6543c534e146dda286fe8c1618e0fb4b1e383b13e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:eb9e1e483983f73659b8bfc7600324e386665f4da3217eb19ec0b6d82cc42e7f_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:eb9e1e483983f73659b8bfc7600324e386665f4da3217eb19ec0b6d82cc42e7f_s390x" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:eb9e1e483983f73659b8bfc7600324e386665f4da3217eb19ec0b6d82cc42e7f_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:fcf02486f1289b21bfdbee730d38bf7feb0b63e975c6464ea83648086bd522d1_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:fcf02486f1289b21bfdbee730d38bf7feb0b63e975c6464ea83648086bd522d1_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:fcf02486f1289b21bfdbee730d38bf7feb0b63e975c6464ea83648086bd522d1_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:1eee173bc3467f8bb98d646c86e7477f686e7b49c04d3d897978a808969ca737_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-attacher-rhel8@sha256:1eee173bc3467f8bb98d646c86e7477f686e7b49c04d3d897978a808969ca737_arm64" + }, + "product_reference": "openshift4/ose-csi-external-attacher-rhel8@sha256:1eee173bc3467f8bb98d646c86e7477f686e7b49c04d3d897978a808969ca737_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:426b3af5d2112ef68163ba7122196756931ed8beb62f4eeece0ebdddf4aafe02_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-attacher-rhel8@sha256:426b3af5d2112ef68163ba7122196756931ed8beb62f4eeece0ebdddf4aafe02_s390x" + }, + "product_reference": "openshift4/ose-csi-external-attacher-rhel8@sha256:426b3af5d2112ef68163ba7122196756931ed8beb62f4eeece0ebdddf4aafe02_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:5fe4d3f0d6c72404945abbf054ce31f2164a273b5895d801bf5e466b489ef89a_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-attacher-rhel8@sha256:5fe4d3f0d6c72404945abbf054ce31f2164a273b5895d801bf5e466b489ef89a_amd64" + }, + "product_reference": "openshift4/ose-csi-external-attacher-rhel8@sha256:5fe4d3f0d6c72404945abbf054ce31f2164a273b5895d801bf5e466b489ef89a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:d399e902524c2cf10f87d0578a828e301c44e581d9d732bca045ef4f51047fcd_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-attacher-rhel8@sha256:d399e902524c2cf10f87d0578a828e301c44e581d9d732bca045ef4f51047fcd_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-attacher-rhel8@sha256:d399e902524c2cf10f87d0578a828e301c44e581d9d732bca045ef4f51047fcd_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher@sha256:1eee173bc3467f8bb98d646c86e7477f686e7b49c04d3d897978a808969ca737_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-attacher@sha256:1eee173bc3467f8bb98d646c86e7477f686e7b49c04d3d897978a808969ca737_arm64" + }, + "product_reference": "openshift4/ose-csi-external-attacher@sha256:1eee173bc3467f8bb98d646c86e7477f686e7b49c04d3d897978a808969ca737_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher@sha256:426b3af5d2112ef68163ba7122196756931ed8beb62f4eeece0ebdddf4aafe02_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-attacher@sha256:426b3af5d2112ef68163ba7122196756931ed8beb62f4eeece0ebdddf4aafe02_s390x" + }, + "product_reference": "openshift4/ose-csi-external-attacher@sha256:426b3af5d2112ef68163ba7122196756931ed8beb62f4eeece0ebdddf4aafe02_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher@sha256:5fe4d3f0d6c72404945abbf054ce31f2164a273b5895d801bf5e466b489ef89a_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-attacher@sha256:5fe4d3f0d6c72404945abbf054ce31f2164a273b5895d801bf5e466b489ef89a_amd64" + }, + "product_reference": "openshift4/ose-csi-external-attacher@sha256:5fe4d3f0d6c72404945abbf054ce31f2164a273b5895d801bf5e466b489ef89a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher@sha256:d399e902524c2cf10f87d0578a828e301c44e581d9d732bca045ef4f51047fcd_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-attacher@sha256:d399e902524c2cf10f87d0578a828e301c44e581d9d732bca045ef4f51047fcd_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-attacher@sha256:d399e902524c2cf10f87d0578a828e301c44e581d9d732bca045ef4f51047fcd_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:6d0f7c864a7e03ac0f71f31c5e464fb51e58adfb9fbe6dd4e87c3dc8936b750c_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-provisioner-rhel8@sha256:6d0f7c864a7e03ac0f71f31c5e464fb51e58adfb9fbe6dd4e87c3dc8936b750c_s390x" + }, + "product_reference": "openshift4/ose-csi-external-provisioner-rhel8@sha256:6d0f7c864a7e03ac0f71f31c5e464fb51e58adfb9fbe6dd4e87c3dc8936b750c_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:9b87df1e857d952e79859d03d215cdd5894ebe792e160eadef791609b343621d_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-provisioner-rhel8@sha256:9b87df1e857d952e79859d03d215cdd5894ebe792e160eadef791609b343621d_amd64" + }, + "product_reference": "openshift4/ose-csi-external-provisioner-rhel8@sha256:9b87df1e857d952e79859d03d215cdd5894ebe792e160eadef791609b343621d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:b6285e5952fd10b6a5044a7215ba1d7ee39bdba0688fa91f1efffe97e77ae452_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-provisioner-rhel8@sha256:b6285e5952fd10b6a5044a7215ba1d7ee39bdba0688fa91f1efffe97e77ae452_arm64" + }, + "product_reference": "openshift4/ose-csi-external-provisioner-rhel8@sha256:b6285e5952fd10b6a5044a7215ba1d7ee39bdba0688fa91f1efffe97e77ae452_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:e5bafcd6ece5c8540487a7202b0da48be5deac30ceef2c4a08707b66b59e5396_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-provisioner-rhel8@sha256:e5bafcd6ece5c8540487a7202b0da48be5deac30ceef2c4a08707b66b59e5396_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-provisioner-rhel8@sha256:e5bafcd6ece5c8540487a7202b0da48be5deac30ceef2c4a08707b66b59e5396_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner@sha256:6d0f7c864a7e03ac0f71f31c5e464fb51e58adfb9fbe6dd4e87c3dc8936b750c_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-provisioner@sha256:6d0f7c864a7e03ac0f71f31c5e464fb51e58adfb9fbe6dd4e87c3dc8936b750c_s390x" + }, + "product_reference": "openshift4/ose-csi-external-provisioner@sha256:6d0f7c864a7e03ac0f71f31c5e464fb51e58adfb9fbe6dd4e87c3dc8936b750c_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner@sha256:9b87df1e857d952e79859d03d215cdd5894ebe792e160eadef791609b343621d_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-provisioner@sha256:9b87df1e857d952e79859d03d215cdd5894ebe792e160eadef791609b343621d_amd64" + }, + "product_reference": "openshift4/ose-csi-external-provisioner@sha256:9b87df1e857d952e79859d03d215cdd5894ebe792e160eadef791609b343621d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner@sha256:b6285e5952fd10b6a5044a7215ba1d7ee39bdba0688fa91f1efffe97e77ae452_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-provisioner@sha256:b6285e5952fd10b6a5044a7215ba1d7ee39bdba0688fa91f1efffe97e77ae452_arm64" + }, + "product_reference": "openshift4/ose-csi-external-provisioner@sha256:b6285e5952fd10b6a5044a7215ba1d7ee39bdba0688fa91f1efffe97e77ae452_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner@sha256:e5bafcd6ece5c8540487a7202b0da48be5deac30ceef2c4a08707b66b59e5396_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-provisioner@sha256:e5bafcd6ece5c8540487a7202b0da48be5deac30ceef2c4a08707b66b59e5396_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-provisioner@sha256:e5bafcd6ece5c8540487a7202b0da48be5deac30ceef2c4a08707b66b59e5396_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:030fe6ccc6c63626f92991019636910bbb6c9a49614aa08b72edd928522ffc78_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-resizer-rhel8@sha256:030fe6ccc6c63626f92991019636910bbb6c9a49614aa08b72edd928522ffc78_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-resizer-rhel8@sha256:030fe6ccc6c63626f92991019636910bbb6c9a49614aa08b72edd928522ffc78_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:39197437c329800697824d7d88ca3d659c9034e50d4fc00eb60363b4bae36fec_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-resizer-rhel8@sha256:39197437c329800697824d7d88ca3d659c9034e50d4fc00eb60363b4bae36fec_arm64" + }, + "product_reference": "openshift4/ose-csi-external-resizer-rhel8@sha256:39197437c329800697824d7d88ca3d659c9034e50d4fc00eb60363b4bae36fec_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:56f2e647023600d1477fcb61ae4e463ac005271bfdde91e0ae5cb6b16818d597_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-resizer-rhel8@sha256:56f2e647023600d1477fcb61ae4e463ac005271bfdde91e0ae5cb6b16818d597_amd64" + }, + "product_reference": "openshift4/ose-csi-external-resizer-rhel8@sha256:56f2e647023600d1477fcb61ae4e463ac005271bfdde91e0ae5cb6b16818d597_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:b1e65e2a060ea92bb897623d57b49031d15a29880c0bcf48ce3fb6b89ad96bb5_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-resizer-rhel8@sha256:b1e65e2a060ea92bb897623d57b49031d15a29880c0bcf48ce3fb6b89ad96bb5_s390x" + }, + "product_reference": "openshift4/ose-csi-external-resizer-rhel8@sha256:b1e65e2a060ea92bb897623d57b49031d15a29880c0bcf48ce3fb6b89ad96bb5_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer@sha256:030fe6ccc6c63626f92991019636910bbb6c9a49614aa08b72edd928522ffc78_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-resizer@sha256:030fe6ccc6c63626f92991019636910bbb6c9a49614aa08b72edd928522ffc78_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-resizer@sha256:030fe6ccc6c63626f92991019636910bbb6c9a49614aa08b72edd928522ffc78_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer@sha256:39197437c329800697824d7d88ca3d659c9034e50d4fc00eb60363b4bae36fec_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-resizer@sha256:39197437c329800697824d7d88ca3d659c9034e50d4fc00eb60363b4bae36fec_arm64" + }, + "product_reference": "openshift4/ose-csi-external-resizer@sha256:39197437c329800697824d7d88ca3d659c9034e50d4fc00eb60363b4bae36fec_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer@sha256:56f2e647023600d1477fcb61ae4e463ac005271bfdde91e0ae5cb6b16818d597_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-resizer@sha256:56f2e647023600d1477fcb61ae4e463ac005271bfdde91e0ae5cb6b16818d597_amd64" + }, + "product_reference": "openshift4/ose-csi-external-resizer@sha256:56f2e647023600d1477fcb61ae4e463ac005271bfdde91e0ae5cb6b16818d597_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer@sha256:b1e65e2a060ea92bb897623d57b49031d15a29880c0bcf48ce3fb6b89ad96bb5_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-resizer@sha256:b1e65e2a060ea92bb897623d57b49031d15a29880c0bcf48ce3fb6b89ad96bb5_s390x" + }, + "product_reference": "openshift4/ose-csi-external-resizer@sha256:b1e65e2a060ea92bb897623d57b49031d15a29880c0bcf48ce3fb6b89ad96bb5_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:7214718a98c75c482bfb51fb51519f27de1a8b7205be51fe0f9395e873c469fc_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-snapshotter-rhel8@sha256:7214718a98c75c482bfb51fb51519f27de1a8b7205be51fe0f9395e873c469fc_amd64" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:7214718a98c75c482bfb51fb51519f27de1a8b7205be51fe0f9395e873c469fc_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:7adc1a312b517979a699c5610d07fe5fd874be7c004f495914aa01ed655a62c3_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-snapshotter-rhel8@sha256:7adc1a312b517979a699c5610d07fe5fd874be7c004f495914aa01ed655a62c3_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:7adc1a312b517979a699c5610d07fe5fd874be7c004f495914aa01ed655a62c3_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:dac8dfea9879fd973477c2ec2698bd5a6e9b5ac2410a87727b3dd0f9cf264b8e_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-snapshotter-rhel8@sha256:dac8dfea9879fd973477c2ec2698bd5a6e9b5ac2410a87727b3dd0f9cf264b8e_arm64" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:dac8dfea9879fd973477c2ec2698bd5a6e9b5ac2410a87727b3dd0f9cf264b8e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:f01f610914f105661403199cdc5a620cf9135ce5d0346bedd65279eaa983a749_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-snapshotter-rhel8@sha256:f01f610914f105661403199cdc5a620cf9135ce5d0346bedd65279eaa983a749_s390x" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:f01f610914f105661403199cdc5a620cf9135ce5d0346bedd65279eaa983a749_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:7214718a98c75c482bfb51fb51519f27de1a8b7205be51fe0f9395e873c469fc_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-snapshotter@sha256:7214718a98c75c482bfb51fb51519f27de1a8b7205be51fe0f9395e873c469fc_amd64" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter@sha256:7214718a98c75c482bfb51fb51519f27de1a8b7205be51fe0f9395e873c469fc_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:7adc1a312b517979a699c5610d07fe5fd874be7c004f495914aa01ed655a62c3_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-snapshotter@sha256:7adc1a312b517979a699c5610d07fe5fd874be7c004f495914aa01ed655a62c3_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter@sha256:7adc1a312b517979a699c5610d07fe5fd874be7c004f495914aa01ed655a62c3_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:dac8dfea9879fd973477c2ec2698bd5a6e9b5ac2410a87727b3dd0f9cf264b8e_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-snapshotter@sha256:dac8dfea9879fd973477c2ec2698bd5a6e9b5ac2410a87727b3dd0f9cf264b8e_arm64" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter@sha256:dac8dfea9879fd973477c2ec2698bd5a6e9b5ac2410a87727b3dd0f9cf264b8e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:f01f610914f105661403199cdc5a620cf9135ce5d0346bedd65279eaa983a749_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-external-snapshotter@sha256:f01f610914f105661403199cdc5a620cf9135ce5d0346bedd65279eaa983a749_s390x" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter@sha256:f01f610914f105661403199cdc5a620cf9135ce5d0346bedd65279eaa983a749_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:633056d9aafec226ca9543b6ec8155fc82b0abbafd1122743e94268bd2d9830a_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-livenessprobe-rhel8@sha256:633056d9aafec226ca9543b6ec8155fc82b0abbafd1122743e94268bd2d9830a_ppc64le" + }, + "product_reference": "openshift4/ose-csi-livenessprobe-rhel8@sha256:633056d9aafec226ca9543b6ec8155fc82b0abbafd1122743e94268bd2d9830a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:67a8cb4abf11705474b35a3b8c148b799086280bca3b20067af9ac2ed1ca1207_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-livenessprobe-rhel8@sha256:67a8cb4abf11705474b35a3b8c148b799086280bca3b20067af9ac2ed1ca1207_amd64" + }, + "product_reference": "openshift4/ose-csi-livenessprobe-rhel8@sha256:67a8cb4abf11705474b35a3b8c148b799086280bca3b20067af9ac2ed1ca1207_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:d7f93da502bb316c64d69003582dcaad19ad7a38d9f06df51d065e87d16a6a6a_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-livenessprobe-rhel8@sha256:d7f93da502bb316c64d69003582dcaad19ad7a38d9f06df51d065e87d16a6a6a_s390x" + }, + "product_reference": "openshift4/ose-csi-livenessprobe-rhel8@sha256:d7f93da502bb316c64d69003582dcaad19ad7a38d9f06df51d065e87d16a6a6a_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:e453ee3d03d6e69d5526aabb1bb5cb359ab037934b2f51a962a06a57543400fa_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-livenessprobe-rhel8@sha256:e453ee3d03d6e69d5526aabb1bb5cb359ab037934b2f51a962a06a57543400fa_arm64" + }, + "product_reference": "openshift4/ose-csi-livenessprobe-rhel8@sha256:e453ee3d03d6e69d5526aabb1bb5cb359ab037934b2f51a962a06a57543400fa_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe@sha256:633056d9aafec226ca9543b6ec8155fc82b0abbafd1122743e94268bd2d9830a_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-livenessprobe@sha256:633056d9aafec226ca9543b6ec8155fc82b0abbafd1122743e94268bd2d9830a_ppc64le" + }, + "product_reference": "openshift4/ose-csi-livenessprobe@sha256:633056d9aafec226ca9543b6ec8155fc82b0abbafd1122743e94268bd2d9830a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe@sha256:67a8cb4abf11705474b35a3b8c148b799086280bca3b20067af9ac2ed1ca1207_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-livenessprobe@sha256:67a8cb4abf11705474b35a3b8c148b799086280bca3b20067af9ac2ed1ca1207_amd64" + }, + "product_reference": "openshift4/ose-csi-livenessprobe@sha256:67a8cb4abf11705474b35a3b8c148b799086280bca3b20067af9ac2ed1ca1207_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe@sha256:d7f93da502bb316c64d69003582dcaad19ad7a38d9f06df51d065e87d16a6a6a_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-livenessprobe@sha256:d7f93da502bb316c64d69003582dcaad19ad7a38d9f06df51d065e87d16a6a6a_s390x" + }, + "product_reference": "openshift4/ose-csi-livenessprobe@sha256:d7f93da502bb316c64d69003582dcaad19ad7a38d9f06df51d065e87d16a6a6a_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe@sha256:e453ee3d03d6e69d5526aabb1bb5cb359ab037934b2f51a962a06a57543400fa_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-livenessprobe@sha256:e453ee3d03d6e69d5526aabb1bb5cb359ab037934b2f51a962a06a57543400fa_arm64" + }, + "product_reference": "openshift4/ose-csi-livenessprobe@sha256:e453ee3d03d6e69d5526aabb1bb5cb359ab037934b2f51a962a06a57543400fa_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:380f0b41ba4c1070d06fa1cb14084b72bafca1b8b627a818fa51304c816321e4_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-node-driver-registrar-rhel8@sha256:380f0b41ba4c1070d06fa1cb14084b72bafca1b8b627a818fa51304c816321e4_ppc64le" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:380f0b41ba4c1070d06fa1cb14084b72bafca1b8b627a818fa51304c816321e4_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:4ad32e081790e4c572128001c77c5cee595f01346fa292e61a0fd8e6d4b594d7_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-node-driver-registrar-rhel8@sha256:4ad32e081790e4c572128001c77c5cee595f01346fa292e61a0fd8e6d4b594d7_arm64" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:4ad32e081790e4c572128001c77c5cee595f01346fa292e61a0fd8e6d4b594d7_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:cf5f3f6f9871c9b3046518a06409ea151e6842ec17468a85d2e34ad083686ef9_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-node-driver-registrar-rhel8@sha256:cf5f3f6f9871c9b3046518a06409ea151e6842ec17468a85d2e34ad083686ef9_amd64" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:cf5f3f6f9871c9b3046518a06409ea151e6842ec17468a85d2e34ad083686ef9_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:d391eb25bec87867022fd4ce92fa92e92f8569df20466e596ecac0cfb55d4253_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-node-driver-registrar-rhel8@sha256:d391eb25bec87867022fd4ce92fa92e92f8569df20466e596ecac0cfb55d4253_s390x" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:d391eb25bec87867022fd4ce92fa92e92f8569df20466e596ecac0cfb55d4253_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:380f0b41ba4c1070d06fa1cb14084b72bafca1b8b627a818fa51304c816321e4_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-node-driver-registrar@sha256:380f0b41ba4c1070d06fa1cb14084b72bafca1b8b627a818fa51304c816321e4_ppc64le" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar@sha256:380f0b41ba4c1070d06fa1cb14084b72bafca1b8b627a818fa51304c816321e4_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:4ad32e081790e4c572128001c77c5cee595f01346fa292e61a0fd8e6d4b594d7_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-node-driver-registrar@sha256:4ad32e081790e4c572128001c77c5cee595f01346fa292e61a0fd8e6d4b594d7_arm64" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar@sha256:4ad32e081790e4c572128001c77c5cee595f01346fa292e61a0fd8e6d4b594d7_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:cf5f3f6f9871c9b3046518a06409ea151e6842ec17468a85d2e34ad083686ef9_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-node-driver-registrar@sha256:cf5f3f6f9871c9b3046518a06409ea151e6842ec17468a85d2e34ad083686ef9_amd64" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar@sha256:cf5f3f6f9871c9b3046518a06409ea151e6842ec17468a85d2e34ad083686ef9_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:d391eb25bec87867022fd4ce92fa92e92f8569df20466e596ecac0cfb55d4253_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-node-driver-registrar@sha256:d391eb25bec87867022fd4ce92fa92e92f8569df20466e596ecac0cfb55d4253_s390x" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar@sha256:d391eb25bec87867022fd4ce92fa92e92f8569df20466e596ecac0cfb55d4253_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:53cca5100a2e7907213304643fc6125ab1e9f6d9f125f9fd9d1cd27ab57a6895_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-snapshot-controller-rhel8@sha256:53cca5100a2e7907213304643fc6125ab1e9f6d9f125f9fd9d1cd27ab57a6895_ppc64le" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:53cca5100a2e7907213304643fc6125ab1e9f6d9f125f9fd9d1cd27ab57a6895_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:892f32652bced869c32405627348d9ed1cdf5bccc8977cb62ced7df6ce85d40d_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-snapshot-controller-rhel8@sha256:892f32652bced869c32405627348d9ed1cdf5bccc8977cb62ced7df6ce85d40d_amd64" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:892f32652bced869c32405627348d9ed1cdf5bccc8977cb62ced7df6ce85d40d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:8cefe183679352b2044ea6fc0428c42394694d00df9ba5915892bb17ace5df23_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-snapshot-controller-rhel8@sha256:8cefe183679352b2044ea6fc0428c42394694d00df9ba5915892bb17ace5df23_s390x" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:8cefe183679352b2044ea6fc0428c42394694d00df9ba5915892bb17ace5df23_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:b9777398ee7f6f56697d6e492209f9dd80e4321f1a3b625fda334e309dbe47d7_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-snapshot-controller-rhel8@sha256:b9777398ee7f6f56697d6e492209f9dd80e4321f1a3b625fda334e309dbe47d7_arm64" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:b9777398ee7f6f56697d6e492209f9dd80e4321f1a3b625fda334e309dbe47d7_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:53cca5100a2e7907213304643fc6125ab1e9f6d9f125f9fd9d1cd27ab57a6895_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-snapshot-controller@sha256:53cca5100a2e7907213304643fc6125ab1e9f6d9f125f9fd9d1cd27ab57a6895_ppc64le" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller@sha256:53cca5100a2e7907213304643fc6125ab1e9f6d9f125f9fd9d1cd27ab57a6895_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:892f32652bced869c32405627348d9ed1cdf5bccc8977cb62ced7df6ce85d40d_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-snapshot-controller@sha256:892f32652bced869c32405627348d9ed1cdf5bccc8977cb62ced7df6ce85d40d_amd64" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller@sha256:892f32652bced869c32405627348d9ed1cdf5bccc8977cb62ced7df6ce85d40d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:8cefe183679352b2044ea6fc0428c42394694d00df9ba5915892bb17ace5df23_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-snapshot-controller@sha256:8cefe183679352b2044ea6fc0428c42394694d00df9ba5915892bb17ace5df23_s390x" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller@sha256:8cefe183679352b2044ea6fc0428c42394694d00df9ba5915892bb17ace5df23_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:b9777398ee7f6f56697d6e492209f9dd80e4321f1a3b625fda334e309dbe47d7_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-snapshot-controller@sha256:b9777398ee7f6f56697d6e492209f9dd80e4321f1a3b625fda334e309dbe47d7_arm64" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller@sha256:b9777398ee7f6f56697d6e492209f9dd80e4321f1a3b625fda334e309dbe47d7_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:247edb9b906e812ba18c2ffd94730cb438b30b970396edb32c5c6ee4f81675c3_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:247edb9b906e812ba18c2ffd94730cb438b30b970396edb32c5c6ee4f81675c3_amd64" + }, + "product_reference": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:247edb9b906e812ba18c2ffd94730cb438b30b970396edb32c5c6ee4f81675c3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:31e4bfc95427bbb22e7991c5e5a35db45222a1bab7f264a0d9e076e1676f450f_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:31e4bfc95427bbb22e7991c5e5a35db45222a1bab7f264a0d9e076e1676f450f_ppc64le" + }, + "product_reference": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:31e4bfc95427bbb22e7991c5e5a35db45222a1bab7f264a0d9e076e1676f450f_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:95d8ab2ab9ff10bd26ef809ec0c0d82bfb649c54a7916f2b6e80a8cb2e7d55e3_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:95d8ab2ab9ff10bd26ef809ec0c0d82bfb649c54a7916f2b6e80a8cb2e7d55e3_s390x" + }, + "product_reference": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:95d8ab2ab9ff10bd26ef809ec0c0d82bfb649c54a7916f2b6e80a8cb2e7d55e3_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:a6d34452cac272e45e8d3fd6d78a9e40e5df467cf647c477bc637ea81e30462b_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:a6d34452cac272e45e8d3fd6d78a9e40e5df467cf647c477bc637ea81e30462b_arm64" + }, + "product_reference": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:a6d34452cac272e45e8d3fd6d78a9e40e5df467cf647c477bc637ea81e30462b_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-deployer@sha256:2cd31ab30d42fc1f6cf2cb4e6ec29cee871513e3c04660ca333b8270091ebd52_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-deployer@sha256:2cd31ab30d42fc1f6cf2cb4e6ec29cee871513e3c04660ca333b8270091ebd52_s390x" + }, + "product_reference": "openshift4/ose-deployer@sha256:2cd31ab30d42fc1f6cf2cb4e6ec29cee871513e3c04660ca333b8270091ebd52_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-deployer@sha256:352b1c393c6d84d19eb1a8b01f449294ce7f0e519393f0eb869094a7ae9792d4_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-deployer@sha256:352b1c393c6d84d19eb1a8b01f449294ce7f0e519393f0eb869094a7ae9792d4_amd64" + }, + "product_reference": "openshift4/ose-deployer@sha256:352b1c393c6d84d19eb1a8b01f449294ce7f0e519393f0eb869094a7ae9792d4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-deployer@sha256:7f329713672558726c6a85d3528a9f53c659de22a616976842a415a06aba2468_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-deployer@sha256:7f329713672558726c6a85d3528a9f53c659de22a616976842a415a06aba2468_ppc64le" + }, + "product_reference": "openshift4/ose-deployer@sha256:7f329713672558726c6a85d3528a9f53c659de22a616976842a415a06aba2468_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-deployer@sha256:84a711fda48a0b60e9b244cdbcdeb9ef3e30017b735f749d67276c05993d19f0_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-deployer@sha256:84a711fda48a0b60e9b244cdbcdeb9ef3e30017b735f749d67276c05993d19f0_arm64" + }, + "product_reference": "openshift4/ose-deployer@sha256:84a711fda48a0b60e9b244cdbcdeb9ef3e30017b735f749d67276c05993d19f0_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-descheduler@sha256:3ecc0eeec64dba93f317d030b446e2c742518e034b82c555d4a7b997d008a13f_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-descheduler@sha256:3ecc0eeec64dba93f317d030b446e2c742518e034b82c555d4a7b997d008a13f_arm64" + }, + "product_reference": "openshift4/ose-descheduler@sha256:3ecc0eeec64dba93f317d030b446e2c742518e034b82c555d4a7b997d008a13f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-descheduler@sha256:527e22dbdf9e8195f1f7a481b1ef5135e41610fde5c025b3c48c18d537c7b6c9_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-descheduler@sha256:527e22dbdf9e8195f1f7a481b1ef5135e41610fde5c025b3c48c18d537c7b6c9_s390x" + }, + "product_reference": "openshift4/ose-descheduler@sha256:527e22dbdf9e8195f1f7a481b1ef5135e41610fde5c025b3c48c18d537c7b6c9_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-descheduler@sha256:786cab5554b522a05d97b18cbe2749103b39bf309ac37399d1fcf518a02f73f4_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-descheduler@sha256:786cab5554b522a05d97b18cbe2749103b39bf309ac37399d1fcf518a02f73f4_amd64" + }, + "product_reference": "openshift4/ose-descheduler@sha256:786cab5554b522a05d97b18cbe2749103b39bf309ac37399d1fcf518a02f73f4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-descheduler@sha256:92fdd8f1e3b95565ae598fd32842d0f7b3d32c731873f47774c9d61d379be373_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-descheduler@sha256:92fdd8f1e3b95565ae598fd32842d0f7b3d32c731873f47774c9d61d379be373_ppc64le" + }, + "product_reference": "openshift4/ose-descheduler@sha256:92fdd8f1e3b95565ae598fd32842d0f7b3d32c731873f47774c9d61d379be373_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-builder@sha256:378556fb4aec475312895ad04ce406d446975b4001b2857b63a3a932f68dbc9f_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-docker-builder@sha256:378556fb4aec475312895ad04ce406d446975b4001b2857b63a3a932f68dbc9f_s390x" + }, + "product_reference": "openshift4/ose-docker-builder@sha256:378556fb4aec475312895ad04ce406d446975b4001b2857b63a3a932f68dbc9f_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-builder@sha256:5722df6e139d0ee70e108e548fdcb7ca4ff5f31779e4a742f04b78cb86d9d453_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-docker-builder@sha256:5722df6e139d0ee70e108e548fdcb7ca4ff5f31779e4a742f04b78cb86d9d453_amd64" + }, + "product_reference": "openshift4/ose-docker-builder@sha256:5722df6e139d0ee70e108e548fdcb7ca4ff5f31779e4a742f04b78cb86d9d453_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-builder@sha256:8eeba0e02eaa8f32095a3c52a252ad2008f586e0f776f9421eeca3a376b2d63d_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-docker-builder@sha256:8eeba0e02eaa8f32095a3c52a252ad2008f586e0f776f9421eeca3a376b2d63d_ppc64le" + }, + "product_reference": "openshift4/ose-docker-builder@sha256:8eeba0e02eaa8f32095a3c52a252ad2008f586e0f776f9421eeca3a376b2d63d_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-builder@sha256:90a182d7e5b3f9a477b3d6dd4ed0717dc68c2632a3b4c44d614d99888c568d76_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-docker-builder@sha256:90a182d7e5b3f9a477b3d6dd4ed0717dc68c2632a3b4c44d614d99888c568d76_arm64" + }, + "product_reference": "openshift4/ose-docker-builder@sha256:90a182d7e5b3f9a477b3d6dd4ed0717dc68c2632a3b4c44d614d99888c568d76_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-registry@sha256:533186afada2d72717007f0dc32da1092bb9a16c7d78d0577fd837b3a59ed9d7_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-docker-registry@sha256:533186afada2d72717007f0dc32da1092bb9a16c7d78d0577fd837b3a59ed9d7_s390x" + }, + "product_reference": "openshift4/ose-docker-registry@sha256:533186afada2d72717007f0dc32da1092bb9a16c7d78d0577fd837b3a59ed9d7_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-registry@sha256:58bcbecdba33b73aa769af45599eb9096e402387e820a5e41297c98334f3cdfd_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-docker-registry@sha256:58bcbecdba33b73aa769af45599eb9096e402387e820a5e41297c98334f3cdfd_amd64" + }, + "product_reference": "openshift4/ose-docker-registry@sha256:58bcbecdba33b73aa769af45599eb9096e402387e820a5e41297c98334f3cdfd_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-registry@sha256:61fd41e9e99b775681d95dbff819034874a8e7fe669dd10fc0cd4cb0a123ca3f_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-docker-registry@sha256:61fd41e9e99b775681d95dbff819034874a8e7fe669dd10fc0cd4cb0a123ca3f_ppc64le" + }, + "product_reference": "openshift4/ose-docker-registry@sha256:61fd41e9e99b775681d95dbff819034874a8e7fe669dd10fc0cd4cb0a123ca3f_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-registry@sha256:a0d9932a75b79cf79c1f06f884c686f5031b13a68fcd5bf0fc2ab506bc9ebbcd_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-docker-registry@sha256:a0d9932a75b79cf79c1f06f884c686f5031b13a68fcd5bf0fc2ab506bc9ebbcd_arm64" + }, + "product_reference": "openshift4/ose-docker-registry@sha256:a0d9932a75b79cf79c1f06f884c686f5031b13a68fcd5bf0fc2ab506bc9ebbcd_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-egress-dns-proxy@sha256:6e6a079733dc2836180518de07c6996cd10cef4f375b2f43ebf5af9ab51ca25c_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-egress-dns-proxy@sha256:6e6a079733dc2836180518de07c6996cd10cef4f375b2f43ebf5af9ab51ca25c_amd64" + }, + "product_reference": "openshift4/ose-egress-dns-proxy@sha256:6e6a079733dc2836180518de07c6996cd10cef4f375b2f43ebf5af9ab51ca25c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-egress-dns-proxy@sha256:788588e4da19baf7315e1fdc8a2b990b1b089964c3cc5f76e2c03889a0cd142b_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-egress-dns-proxy@sha256:788588e4da19baf7315e1fdc8a2b990b1b089964c3cc5f76e2c03889a0cd142b_ppc64le" + }, + "product_reference": "openshift4/ose-egress-dns-proxy@sha256:788588e4da19baf7315e1fdc8a2b990b1b089964c3cc5f76e2c03889a0cd142b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-egress-dns-proxy@sha256:8ba7a8401a376c7aff19662d9b99625d0d7754fe0413c917d523ccc54d81a87e_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-egress-dns-proxy@sha256:8ba7a8401a376c7aff19662d9b99625d0d7754fe0413c917d523ccc54d81a87e_s390x" + }, + "product_reference": "openshift4/ose-egress-dns-proxy@sha256:8ba7a8401a376c7aff19662d9b99625d0d7754fe0413c917d523ccc54d81a87e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-egress-dns-proxy@sha256:ad0ae9be4463d99801a778142cc267f40216a13bdc3a04be69dab38d85deafc3_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-egress-dns-proxy@sha256:ad0ae9be4463d99801a778142cc267f40216a13bdc3a04be69dab38d85deafc3_arm64" + }, + "product_reference": "openshift4/ose-egress-dns-proxy@sha256:ad0ae9be4463d99801a778142cc267f40216a13bdc3a04be69dab38d85deafc3_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-egress-http-proxy@sha256:51e5ed9f64ce7254360305abe492b85b4ea083cc8dd559e2b5c7a4a09cef8661_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-egress-http-proxy@sha256:51e5ed9f64ce7254360305abe492b85b4ea083cc8dd559e2b5c7a4a09cef8661_amd64" + }, + "product_reference": "openshift4/ose-egress-http-proxy@sha256:51e5ed9f64ce7254360305abe492b85b4ea083cc8dd559e2b5c7a4a09cef8661_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-egress-http-proxy@sha256:5a950aca0be41fefab1477a8cd396db312730ffdb6d456d347d4084c07090ca3_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-egress-http-proxy@sha256:5a950aca0be41fefab1477a8cd396db312730ffdb6d456d347d4084c07090ca3_ppc64le" + }, + "product_reference": "openshift4/ose-egress-http-proxy@sha256:5a950aca0be41fefab1477a8cd396db312730ffdb6d456d347d4084c07090ca3_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-egress-http-proxy@sha256:de2886f7fb6e15377067a6677aaa9704944877fbe3b328dd9f91f57bb204fef6_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-egress-http-proxy@sha256:de2886f7fb6e15377067a6677aaa9704944877fbe3b328dd9f91f57bb204fef6_s390x" + }, + "product_reference": "openshift4/ose-egress-http-proxy@sha256:de2886f7fb6e15377067a6677aaa9704944877fbe3b328dd9f91f57bb204fef6_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-egress-http-proxy@sha256:e3a2d5a38d5593f7900117781013777f35eff526d566c508211a7f63dc45291d_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-egress-http-proxy@sha256:e3a2d5a38d5593f7900117781013777f35eff526d566c508211a7f63dc45291d_arm64" + }, + "product_reference": "openshift4/ose-egress-http-proxy@sha256:e3a2d5a38d5593f7900117781013777f35eff526d566c508211a7f63dc45291d_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-egress-router@sha256:18e7bd90690fb8bd59a58bc585b37030f66452d0bfe73619971feac85486447c_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-egress-router@sha256:18e7bd90690fb8bd59a58bc585b37030f66452d0bfe73619971feac85486447c_amd64" + }, + "product_reference": "openshift4/ose-egress-router@sha256:18e7bd90690fb8bd59a58bc585b37030f66452d0bfe73619971feac85486447c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-egress-router@sha256:899e8d9922ef9388625db9e2e4856f668b0d4014a6897cc80e5bc4130a66f325_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-egress-router@sha256:899e8d9922ef9388625db9e2e4856f668b0d4014a6897cc80e5bc4130a66f325_ppc64le" + }, + "product_reference": "openshift4/ose-egress-router@sha256:899e8d9922ef9388625db9e2e4856f668b0d4014a6897cc80e5bc4130a66f325_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-egress-router@sha256:d01fa67ae2d284711e39c6eb524ed49119a25d47db78af2e37f351d165b07bf7_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-egress-router@sha256:d01fa67ae2d284711e39c6eb524ed49119a25d47db78af2e37f351d165b07bf7_s390x" + }, + "product_reference": "openshift4/ose-egress-router@sha256:d01fa67ae2d284711e39c6eb524ed49119a25d47db78af2e37f351d165b07bf7_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-egress-router@sha256:df428c921ae12d030a3ab7fe8508a202d1b1366545aa4705d455396ea5cfc631_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-egress-router@sha256:df428c921ae12d030a3ab7fe8508a202d1b1366545aa4705d455396ea5cfc631_arm64" + }, + "product_reference": "openshift4/ose-egress-router@sha256:df428c921ae12d030a3ab7fe8508a202d1b1366545aa4705d455396ea5cfc631_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:1be6ddbbb1fc9659a9c9b6ffb290c488d949986577d205335601277116211111_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:1be6ddbbb1fc9659a9c9b6ffb290c488d949986577d205335601277116211111_ppc64le" + }, + "product_reference": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:1be6ddbbb1fc9659a9c9b6ffb290c488d949986577d205335601277116211111_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:5900e0b313b36564c2524e27f6af144903c1d855492866314a26f0e27cfb4cfe_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:5900e0b313b36564c2524e27f6af144903c1d855492866314a26f0e27cfb4cfe_amd64" + }, + "product_reference": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:5900e0b313b36564c2524e27f6af144903c1d855492866314a26f0e27cfb4cfe_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:b9d740ac001db9e7b6d209c3d3494c1dcf1d77595283d54a7291fe4c9fc43da2_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:b9d740ac001db9e7b6d209c3d3494c1dcf1d77595283d54a7291fe4c9fc43da2_arm64" + }, + "product_reference": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:b9d740ac001db9e7b6d209c3d3494c1dcf1d77595283d54a7291fe4c9fc43da2_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:b1a75b2f4b8b96a20a8c39dbbd254cfc8617300aebf16ca25fc66f2036c5bfff_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:b1a75b2f4b8b96a20a8c39dbbd254cfc8617300aebf16ca25fc66f2036c5bfff_arm64" + }, + "product_reference": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:b1a75b2f4b8b96a20a8c39dbbd254cfc8617300aebf16ca25fc66f2036c5bfff_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:b61d501cf7b52bbb83bb045e30ff0a2357cc8ff98d3eb1b29b54ff6f13edd713_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:b61d501cf7b52bbb83bb045e30ff0a2357cc8ff98d3eb1b29b54ff6f13edd713_amd64" + }, + "product_reference": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:b61d501cf7b52bbb83bb045e30ff0a2357cc8ff98d3eb1b29b54ff6f13edd713_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:fcff6dc9ce0a22d020a6992ab54bf578a345925e2385f5b5fd4c94ef1ac6cfb7_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:fcff6dc9ce0a22d020a6992ab54bf578a345925e2385f5b5fd4c94ef1ac6cfb7_ppc64le" + }, + "product_reference": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:fcff6dc9ce0a22d020a6992ab54bf578a345925e2385f5b5fd4c94ef1ac6cfb7_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:2388004d85a80b5209d4e61696d6f61e9b907fd687ea6b2df0ea891f2c3f87a1_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:2388004d85a80b5209d4e61696d6f61e9b907fd687ea6b2df0ea891f2c3f87a1_arm64" + }, + "product_reference": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:2388004d85a80b5209d4e61696d6f61e9b907fd687ea6b2df0ea891f2c3f87a1_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:2c5e50e2d27b3264be154a02d1a2334c086280c231de4996dad66cbbf10a4c98_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:2c5e50e2d27b3264be154a02d1a2334c086280c231de4996dad66cbbf10a4c98_ppc64le" + }, + "product_reference": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:2c5e50e2d27b3264be154a02d1a2334c086280c231de4996dad66cbbf10a4c98_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:aa4e5b41f60cc33157aa554aec2c81b7495f0d66ec76d90107fec9e039118f00_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:aa4e5b41f60cc33157aa554aec2c81b7495f0d66ec76d90107fec9e039118f00_amd64" + }, + "product_reference": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:aa4e5b41f60cc33157aa554aec2c81b7495f0d66ec76d90107fec9e039118f00_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d775abcce8f3ea93015a34a8c198776ee6d5579531808ded540e36ba388005e_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d775abcce8f3ea93015a34a8c198776ee6d5579531808ded540e36ba388005e_amd64" + }, + "product_reference": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:8d775abcce8f3ea93015a34a8c198776ee6d5579531808ded540e36ba388005e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:df7fbde123362168429f59d2064ff50235d242b39db41547117c05814672ac57_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:df7fbde123362168429f59d2064ff50235d242b39db41547117c05814672ac57_ppc64le" + }, + "product_reference": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:df7fbde123362168429f59d2064ff50235d242b39db41547117c05814672ac57_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:ebcbeb0ea85ace38326301d82560fa5b41d4ecb8fdd2ddd89646eaef67db1e03_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:ebcbeb0ea85ace38326301d82560fa5b41d4ecb8fdd2ddd89646eaef67db1e03_arm64" + }, + "product_reference": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:ebcbeb0ea85ace38326301d82560fa5b41d4ecb8fdd2ddd89646eaef67db1e03_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:9b82f49d4bfd3469701dff127112f17cc322781654ea2d9cf9a7d9b3bdb86fda_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:9b82f49d4bfd3469701dff127112f17cc322781654ea2d9cf9a7d9b3bdb86fda_arm64" + }, + "product_reference": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:9b82f49d4bfd3469701dff127112f17cc322781654ea2d9cf9a7d9b3bdb86fda_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:b7cd31a3f78b8ee67c6d312e0958381e03d23b7c2d622f6754c0beff2a2a9dd8_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:b7cd31a3f78b8ee67c6d312e0958381e03d23b7c2d622f6754c0beff2a2a9dd8_amd64" + }, + "product_reference": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:b7cd31a3f78b8ee67c6d312e0958381e03d23b7c2d622f6754c0beff2a2a9dd8_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:d8f0ea6e8c0de45ce5d0a3d81d990602a131ee9c2cbeab70c1c3a9b6483b53ba_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:d8f0ea6e8c0de45ce5d0a3d81d990602a131ee9c2cbeab70c1c3a9b6483b53ba_ppc64le" + }, + "product_reference": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:d8f0ea6e8c0de45ce5d0a3d81d990602a131ee9c2cbeab70c1c3a9b6483b53ba_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:157b66d060c178934df8394baaabc4c91c40621a225ffc4b0234c38de1bf4fc6_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:157b66d060c178934df8394baaabc4c91c40621a225ffc4b0234c38de1bf4fc6_ppc64le" + }, + "product_reference": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:157b66d060c178934df8394baaabc4c91c40621a225ffc4b0234c38de1bf4fc6_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:8d9ab23b111f23ab81c64a9dddac027939f321ae24a9fd9b11aac7eebb72572c_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:8d9ab23b111f23ab81c64a9dddac027939f321ae24a9fd9b11aac7eebb72572c_arm64" + }, + "product_reference": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:8d9ab23b111f23ab81c64a9dddac027939f321ae24a9fd9b11aac7eebb72572c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:c8ebd20d3f252d907a51c2acfe3cf57b23c960e0c78219f2ea612d6c72078649_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:c8ebd20d3f252d907a51c2acfe3cf57b23c960e0c78219f2ea612d6c72078649_amd64" + }, + "product_reference": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:c8ebd20d3f252d907a51c2acfe3cf57b23c960e0c78219f2ea612d6c72078649_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-haproxy-router@sha256:7e2b961bbb2a6369aebf066166fca967876a10aa716c46050b268a3c3da9a0c1_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-haproxy-router@sha256:7e2b961bbb2a6369aebf066166fca967876a10aa716c46050b268a3c3da9a0c1_arm64" + }, + "product_reference": "openshift4/ose-haproxy-router@sha256:7e2b961bbb2a6369aebf066166fca967876a10aa716c46050b268a3c3da9a0c1_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-haproxy-router@sha256:86975a8f6381a2972def33ce51a193fc20ab6fe95701dfb475c53137d4a9b747_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-haproxy-router@sha256:86975a8f6381a2972def33ce51a193fc20ab6fe95701dfb475c53137d4a9b747_amd64" + }, + "product_reference": "openshift4/ose-haproxy-router@sha256:86975a8f6381a2972def33ce51a193fc20ab6fe95701dfb475c53137d4a9b747_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-haproxy-router@sha256:a5f2417a4256f2bcf4b11a610cbc45dc97d632a22de4b4b6fde65bc5c6768ab4_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-haproxy-router@sha256:a5f2417a4256f2bcf4b11a610cbc45dc97d632a22de4b4b6fde65bc5c6768ab4_s390x" + }, + "product_reference": "openshift4/ose-haproxy-router@sha256:a5f2417a4256f2bcf4b11a610cbc45dc97d632a22de4b4b6fde65bc5c6768ab4_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-haproxy-router@sha256:a8086128ed7c71e887e0edd7b18d99490b2cefd27a5edd963d810e75b40abaa0_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-haproxy-router@sha256:a8086128ed7c71e887e0edd7b18d99490b2cefd27a5edd963d810e75b40abaa0_ppc64le" + }, + "product_reference": "openshift4/ose-haproxy-router@sha256:a8086128ed7c71e887e0edd7b18d99490b2cefd27a5edd963d810e75b40abaa0_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-helm-operator@sha256:3019e28f57bb88d095e0033d1c22c543d4b5a133ce1cf8a50ed94355220284f1_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-helm-operator@sha256:3019e28f57bb88d095e0033d1c22c543d4b5a133ce1cf8a50ed94355220284f1_arm64" + }, + "product_reference": "openshift4/ose-helm-operator@sha256:3019e28f57bb88d095e0033d1c22c543d4b5a133ce1cf8a50ed94355220284f1_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-helm-operator@sha256:35a5f927a34d0e90790780047d1b6c12d372acb77a72990d94ce2a84206932f3_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-helm-operator@sha256:35a5f927a34d0e90790780047d1b6c12d372acb77a72990d94ce2a84206932f3_s390x" + }, + "product_reference": "openshift4/ose-helm-operator@sha256:35a5f927a34d0e90790780047d1b6c12d372acb77a72990d94ce2a84206932f3_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-helm-operator@sha256:bb7b172916bdf8266e0e9ebba8ffe6a7b5b59fe52dce5badeef7549ea53e7fda_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-helm-operator@sha256:bb7b172916bdf8266e0e9ebba8ffe6a7b5b59fe52dce5badeef7549ea53e7fda_amd64" + }, + "product_reference": "openshift4/ose-helm-operator@sha256:bb7b172916bdf8266e0e9ebba8ffe6a7b5b59fe52dce5badeef7549ea53e7fda_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-helm-operator@sha256:f6ff3a2a34d4ea9cdf6bb19ad978d3db8d611d8b045fae12215ca764370835aa_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-helm-operator@sha256:f6ff3a2a34d4ea9cdf6bb19ad978d3db8d611d8b045fae12215ca764370835aa_ppc64le" + }, + "product_reference": "openshift4/ose-helm-operator@sha256:f6ff3a2a34d4ea9cdf6bb19ad978d3db8d611d8b045fae12215ca764370835aa_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hyperkube@sha256:350c3b7553fc291bd08564cd917affacb13fbbbe1b35d6a171b649675563fa8b_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-hyperkube@sha256:350c3b7553fc291bd08564cd917affacb13fbbbe1b35d6a171b649675563fa8b_s390x" + }, + "product_reference": "openshift4/ose-hyperkube@sha256:350c3b7553fc291bd08564cd917affacb13fbbbe1b35d6a171b649675563fa8b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hyperkube@sha256:6d3c10dcc202d5743372ff7d4d5b40b6cf5c020a1c84160d4b8699b77c5b2ab5_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-hyperkube@sha256:6d3c10dcc202d5743372ff7d4d5b40b6cf5c020a1c84160d4b8699b77c5b2ab5_amd64" + }, + "product_reference": "openshift4/ose-hyperkube@sha256:6d3c10dcc202d5743372ff7d4d5b40b6cf5c020a1c84160d4b8699b77c5b2ab5_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hyperkube@sha256:e1feb9a41929a73433999265b6d50eb58db009892b6783a37cbdaddab56f8af3_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-hyperkube@sha256:e1feb9a41929a73433999265b6d50eb58db009892b6783a37cbdaddab56f8af3_ppc64le" + }, + "product_reference": "openshift4/ose-hyperkube@sha256:e1feb9a41929a73433999265b6d50eb58db009892b6783a37cbdaddab56f8af3_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hyperkube@sha256:f52915447833ac31c63e7606a638097238499d616f7ae8bec013abf0bfbd0b0c_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-hyperkube@sha256:f52915447833ac31c63e7606a638097238499d616f7ae8bec013abf0bfbd0b0c_arm64" + }, + "product_reference": "openshift4/ose-hyperkube@sha256:f52915447833ac31c63e7606a638097238499d616f7ae8bec013abf0bfbd0b0c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hypershift-rhel8@sha256:3310b16dc513d9fe72af416abff6ed34eb5f7d6916fd172204f31aaa4de15984_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-hypershift-rhel8@sha256:3310b16dc513d9fe72af416abff6ed34eb5f7d6916fd172204f31aaa4de15984_s390x" + }, + "product_reference": "openshift4/ose-hypershift-rhel8@sha256:3310b16dc513d9fe72af416abff6ed34eb5f7d6916fd172204f31aaa4de15984_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hypershift-rhel8@sha256:4b7edfbadedef79262fd3efe744314d460a4a6e47f4539d3e48ed6805e6764a9_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-hypershift-rhel8@sha256:4b7edfbadedef79262fd3efe744314d460a4a6e47f4539d3e48ed6805e6764a9_amd64" + }, + "product_reference": "openshift4/ose-hypershift-rhel8@sha256:4b7edfbadedef79262fd3efe744314d460a4a6e47f4539d3e48ed6805e6764a9_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hypershift-rhel8@sha256:86278e5e80752471a512bcff8f4572d1b9f930c1a603fe07fd460d497755a39e_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-hypershift-rhel8@sha256:86278e5e80752471a512bcff8f4572d1b9f930c1a603fe07fd460d497755a39e_ppc64le" + }, + "product_reference": "openshift4/ose-hypershift-rhel8@sha256:86278e5e80752471a512bcff8f4572d1b9f930c1a603fe07fd460d497755a39e_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hypershift-rhel8@sha256:f611575364152a61764176c1e1cb903d84bf1b8b9f53fc4dcaedc772292992c4_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-hypershift-rhel8@sha256:f611575364152a61764176c1e1cb903d84bf1b8b9f53fc4dcaedc772292992c4_arm64" + }, + "product_reference": "openshift4/ose-hypershift-rhel8@sha256:f611575364152a61764176c1e1cb903d84bf1b8b9f53fc4dcaedc772292992c4_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:c9324b86a24545244af4fe815ee59ca4a7abc4a2acb4b31f9315f31d5b7c2dde_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:c9324b86a24545244af4fe815ee59ca4a7abc4a2acb4b31f9315f31d5b7c2dde_s390x" + }, + "product_reference": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:c9324b86a24545244af4fe815ee59ca4a7abc4a2acb4b31f9315f31d5b7c2dde_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f41901c4f9fcff3ccd4bc9dd9ac21e69abc41837da0dc65db8e62053173237d1_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f41901c4f9fcff3ccd4bc9dd9ac21e69abc41837da0dc65db8e62053173237d1_amd64" + }, + "product_reference": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:f41901c4f9fcff3ccd4bc9dd9ac21e69abc41837da0dc65db8e62053173237d1_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:494f06b8f8e9ee4d0ca4fbbb04ffd68c55d806ff2ca75f847cded65142b09cd4_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:494f06b8f8e9ee4d0ca4fbbb04ffd68c55d806ff2ca75f847cded65142b09cd4_amd64" + }, + "product_reference": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:494f06b8f8e9ee4d0ca4fbbb04ffd68c55d806ff2ca75f847cded65142b09cd4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59d821d7aa2aa6934236018ba10e428151941688d6d399857aeaff1e8e65d8d9_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59d821d7aa2aa6934236018ba10e428151941688d6d399857aeaff1e8e65d8d9_s390x" + }, + "product_reference": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:59d821d7aa2aa6934236018ba10e428151941688d6d399857aeaff1e8e65d8d9_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:73954ff5524d316f14ad6b4bd9da79f039aca68edd3e83f92bb2cb2f796020df_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:73954ff5524d316f14ad6b4bd9da79f039aca68edd3e83f92bb2cb2f796020df_amd64" + }, + "product_reference": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:73954ff5524d316f14ad6b4bd9da79f039aca68edd3e83f92bb2cb2f796020df_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:d9f8f6942468cbf4e038a65b2a738b080596e9aad9fab1e8c1de5a28e2d92f92_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:d9f8f6942468cbf4e038a65b2a738b080596e9aad9fab1e8c1de5a28e2d92f92_s390x" + }, + "product_reference": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:d9f8f6942468cbf4e038a65b2a738b080596e9aad9fab1e8c1de5a28e2d92f92_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5782c742606c236ca29cd363fc8a115ab3f884d290ea14e3ed635a5f89db3db0_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5782c742606c236ca29cd363fc8a115ab3f884d290ea14e3ed635a5f89db3db0_amd64" + }, + "product_reference": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5782c742606c236ca29cd363fc8a115ab3f884d290ea14e3ed635a5f89db3db0_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:87e816d1a986f07b216271ab18127463ccc719d4f4e0a9b86a5e3a59e58cc59c_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:87e816d1a986f07b216271ab18127463ccc719d4f4e0a9b86a5e3a59e58cc59c_s390x" + }, + "product_reference": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:87e816d1a986f07b216271ab18127463ccc719d4f4e0a9b86a5e3a59e58cc59c_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:14769db016adcfdeda227b2dfdd5c52e020e95892dbb4a01e1a557194ee0db13_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:14769db016adcfdeda227b2dfdd5c52e020e95892dbb4a01e1a557194ee0db13_amd64" + }, + "product_reference": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:14769db016adcfdeda227b2dfdd5c52e020e95892dbb4a01e1a557194ee0db13_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:f720aaa947dbae3b9cdf8d66728898469764415ef9899bd0ae0ae240ae82e34a_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:f720aaa947dbae3b9cdf8d66728898469764415ef9899bd0ae0ae240ae82e34a_ppc64le" + }, + "product_reference": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:f720aaa947dbae3b9cdf8d66728898469764415ef9899bd0ae0ae240ae82e34a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:fbc637b28185318bdb47597e469385007f450c0da8b9d25a83d61070cd92b2da_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:fbc637b28185318bdb47597e469385007f450c0da8b9d25a83d61070cd92b2da_s390x" + }, + "product_reference": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:fbc637b28185318bdb47597e469385007f450c0da8b9d25a83d61070cd92b2da_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:46e06cf31e510d50e39ca3b4d6745293951ec3d8bb2cae68b0967199d4998be2_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:46e06cf31e510d50e39ca3b4d6745293951ec3d8bb2cae68b0967199d4998be2_s390x" + }, + "product_reference": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:46e06cf31e510d50e39ca3b4d6745293951ec3d8bb2cae68b0967199d4998be2_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:e78a620f99894a262eaeb062e9d2b0568408322be0172718bfb4178f451d4551_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:e78a620f99894a262eaeb062e9d2b0568408322be0172718bfb4178f451d4551_amd64" + }, + "product_reference": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:e78a620f99894a262eaeb062e9d2b0568408322be0172718bfb4178f451d4551_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-image-customization-controller-rhel8@sha256:53f141cc1913e2b29a6221c2f813547ff7ed2be65174eb1ad35fbdf737a07945_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-image-customization-controller-rhel8@sha256:53f141cc1913e2b29a6221c2f813547ff7ed2be65174eb1ad35fbdf737a07945_amd64" + }, + "product_reference": "openshift4/ose-image-customization-controller-rhel8@sha256:53f141cc1913e2b29a6221c2f813547ff7ed2be65174eb1ad35fbdf737a07945_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-image-customization-controller-rhel8@sha256:85d570722128db222dba2154273f840f0da2d4ab9591a73fb3cca6b88b5334ca_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-image-customization-controller-rhel8@sha256:85d570722128db222dba2154273f840f0da2d4ab9591a73fb3cca6b88b5334ca_arm64" + }, + "product_reference": "openshift4/ose-image-customization-controller-rhel8@sha256:85d570722128db222dba2154273f840f0da2d4ab9591a73fb3cca6b88b5334ca_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:0ecdc32995df2101e04d0c03645318ee4a244c9d08d2693c20d18c79b885a492_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-insights-rhel8-operator@sha256:0ecdc32995df2101e04d0c03645318ee4a244c9d08d2693c20d18c79b885a492_ppc64le" + }, + "product_reference": "openshift4/ose-insights-rhel8-operator@sha256:0ecdc32995df2101e04d0c03645318ee4a244c9d08d2693c20d18c79b885a492_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:17c9277696b9b2f3ae7d0d2be78e11132228a90650ff59563d31316c18df368f_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-insights-rhel8-operator@sha256:17c9277696b9b2f3ae7d0d2be78e11132228a90650ff59563d31316c18df368f_arm64" + }, + "product_reference": "openshift4/ose-insights-rhel8-operator@sha256:17c9277696b9b2f3ae7d0d2be78e11132228a90650ff59563d31316c18df368f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:a2c54c24b0ce54245032c6ad4f452dac9be3ce2afce471227fa936f121db94cc_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-insights-rhel8-operator@sha256:a2c54c24b0ce54245032c6ad4f452dac9be3ce2afce471227fa936f121db94cc_s390x" + }, + "product_reference": "openshift4/ose-insights-rhel8-operator@sha256:a2c54c24b0ce54245032c6ad4f452dac9be3ce2afce471227fa936f121db94cc_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:ff1be97363a6a55e5812023f240eca3ef2c78179de13f91df83d57d11db62985_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-insights-rhel8-operator@sha256:ff1be97363a6a55e5812023f240eca3ef2c78179de13f91df83d57d11db62985_amd64" + }, + "product_reference": "openshift4/ose-insights-rhel8-operator@sha256:ff1be97363a6a55e5812023f240eca3ef2c78179de13f91df83d57d11db62985_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer-artifacts@sha256:47a5f1b10b02efbb8ce1846376065e2896ab250e97f5f5ddbae8296567100625_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-installer-artifacts@sha256:47a5f1b10b02efbb8ce1846376065e2896ab250e97f5f5ddbae8296567100625_amd64" + }, + "product_reference": "openshift4/ose-installer-artifacts@sha256:47a5f1b10b02efbb8ce1846376065e2896ab250e97f5f5ddbae8296567100625_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer-artifacts@sha256:8911d7dd6779ac680a13873c6a430370b1794c4cd0247d1a5f715ba615ddc384_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-installer-artifacts@sha256:8911d7dd6779ac680a13873c6a430370b1794c4cd0247d1a5f715ba615ddc384_ppc64le" + }, + "product_reference": "openshift4/ose-installer-artifacts@sha256:8911d7dd6779ac680a13873c6a430370b1794c4cd0247d1a5f715ba615ddc384_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer-artifacts@sha256:d90dabedfcca2efbd8bc64c99a216e51f2fae51d356d28203247ef913b7c1375_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-installer-artifacts@sha256:d90dabedfcca2efbd8bc64c99a216e51f2fae51d356d28203247ef913b7c1375_s390x" + }, + "product_reference": "openshift4/ose-installer-artifacts@sha256:d90dabedfcca2efbd8bc64c99a216e51f2fae51d356d28203247ef913b7c1375_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer-artifacts@sha256:f7a11196682d52aa4b27399f10937a5151aafc5a4e1f5a060cc77e8d21f87e8f_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-installer-artifacts@sha256:f7a11196682d52aa4b27399f10937a5151aafc5a4e1f5a060cc77e8d21f87e8f_arm64" + }, + "product_reference": "openshift4/ose-installer-artifacts@sha256:f7a11196682d52aa4b27399f10937a5151aafc5a4e1f5a060cc77e8d21f87e8f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer@sha256:1e533460d8e4ccd145594bd21f0d8bf15d5252357460372b6ee3711765a5bda1_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-installer@sha256:1e533460d8e4ccd145594bd21f0d8bf15d5252357460372b6ee3711765a5bda1_ppc64le" + }, + "product_reference": "openshift4/ose-installer@sha256:1e533460d8e4ccd145594bd21f0d8bf15d5252357460372b6ee3711765a5bda1_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer@sha256:3f9a5ceddbcac909679ae2f80ea7d0dfcda4038049a6b167cde48d817572d3cd_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-installer@sha256:3f9a5ceddbcac909679ae2f80ea7d0dfcda4038049a6b167cde48d817572d3cd_arm64" + }, + "product_reference": "openshift4/ose-installer@sha256:3f9a5ceddbcac909679ae2f80ea7d0dfcda4038049a6b167cde48d817572d3cd_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer@sha256:bbd01a126f1a5d81d18e8bafc8d52b2c2f3ce6e39a41ba985087cdf010355d67_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-installer@sha256:bbd01a126f1a5d81d18e8bafc8d52b2c2f3ce6e39a41ba985087cdf010355d67_s390x" + }, + "product_reference": "openshift4/ose-installer@sha256:bbd01a126f1a5d81d18e8bafc8d52b2c2f3ce6e39a41ba985087cdf010355d67_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer@sha256:f30113a4f73b57dee88c7474454300b67d65dac4d1f26a806a77ed3f21fbe7b8_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-installer@sha256:f30113a4f73b57dee88c7474454300b67d65dac4d1f26a806a77ed3f21fbe7b8_amd64" + }, + "product_reference": "openshift4/ose-installer@sha256:f30113a4f73b57dee88c7474454300b67d65dac4d1f26a806a77ed3f21fbe7b8_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:34040ba54b9179ca2fd9d7e9048a9d1b32f0229f80a2097449f73d8a4d99357c_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-k8s-prometheus-adapter@sha256:34040ba54b9179ca2fd9d7e9048a9d1b32f0229f80a2097449f73d8a4d99357c_arm64" + }, + "product_reference": "openshift4/ose-k8s-prometheus-adapter@sha256:34040ba54b9179ca2fd9d7e9048a9d1b32f0229f80a2097449f73d8a4d99357c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:bf0dea8039df1fcbcf4a7cd0c8ad91b96d2244e4c398729abd3d2969791f0911_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-k8s-prometheus-adapter@sha256:bf0dea8039df1fcbcf4a7cd0c8ad91b96d2244e4c398729abd3d2969791f0911_ppc64le" + }, + "product_reference": "openshift4/ose-k8s-prometheus-adapter@sha256:bf0dea8039df1fcbcf4a7cd0c8ad91b96d2244e4c398729abd3d2969791f0911_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:db36e947344c6818265bc108b51ac1fe9712a65608479ab4d6abd7ff4a042504_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-k8s-prometheus-adapter@sha256:db36e947344c6818265bc108b51ac1fe9712a65608479ab4d6abd7ff4a042504_amd64" + }, + "product_reference": "openshift4/ose-k8s-prometheus-adapter@sha256:db36e947344c6818265bc108b51ac1fe9712a65608479ab4d6abd7ff4a042504_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:f608f41a72528a83e21f677e4be0dc1f63e9f599d7a309ab72615eddc949cdce_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-k8s-prometheus-adapter@sha256:f608f41a72528a83e21f677e4be0dc1f63e9f599d7a309ab72615eddc949cdce_s390x" + }, + "product_reference": "openshift4/ose-k8s-prometheus-adapter@sha256:f608f41a72528a83e21f677e4be0dc1f63e9f599d7a309ab72615eddc949cdce_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-proxy@sha256:222b069c4c4018f6811f6533675c810564d0e7a0823b89ff7c7e538ce214cac8_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kube-proxy@sha256:222b069c4c4018f6811f6533675c810564d0e7a0823b89ff7c7e538ce214cac8_arm64" + }, + "product_reference": "openshift4/ose-kube-proxy@sha256:222b069c4c4018f6811f6533675c810564d0e7a0823b89ff7c7e538ce214cac8_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-proxy@sha256:6a9e84e85140adc494a8e75206357b0cf3c17bf1f1421a1e547949b74709a4bd_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kube-proxy@sha256:6a9e84e85140adc494a8e75206357b0cf3c17bf1f1421a1e547949b74709a4bd_ppc64le" + }, + "product_reference": "openshift4/ose-kube-proxy@sha256:6a9e84e85140adc494a8e75206357b0cf3c17bf1f1421a1e547949b74709a4bd_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-proxy@sha256:e8a6d318d7beb500a5d1eb3f60707fef948d5c3ce461401bb23765ca891d833f_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kube-proxy@sha256:e8a6d318d7beb500a5d1eb3f60707fef948d5c3ce461401bb23765ca891d833f_s390x" + }, + "product_reference": "openshift4/ose-kube-proxy@sha256:e8a6d318d7beb500a5d1eb3f60707fef948d5c3ce461401bb23765ca891d833f_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-proxy@sha256:f939e8148abe338faba1e938f98c7923a62f7196dc24fc1355b9ce57d5083ad3_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kube-proxy@sha256:f939e8148abe338faba1e938f98c7923a62f7196dc24fc1355b9ce57d5083ad3_amd64" + }, + "product_reference": "openshift4/ose-kube-proxy@sha256:f939e8148abe338faba1e938f98c7923a62f7196dc24fc1355b9ce57d5083ad3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:019f9feeecae727639759f27a7c62ba4adbfdea95436aeb35a4c3ac080d609ba_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kube-rbac-proxy@sha256:019f9feeecae727639759f27a7c62ba4adbfdea95436aeb35a4c3ac080d609ba_amd64" + }, + "product_reference": "openshift4/ose-kube-rbac-proxy@sha256:019f9feeecae727639759f27a7c62ba4adbfdea95436aeb35a4c3ac080d609ba_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:02a7568ff7f926c3a6895e6ae837ea83f07fcc0eee23ebae53ec037fd3b30744_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kube-rbac-proxy@sha256:02a7568ff7f926c3a6895e6ae837ea83f07fcc0eee23ebae53ec037fd3b30744_s390x" + }, + "product_reference": "openshift4/ose-kube-rbac-proxy@sha256:02a7568ff7f926c3a6895e6ae837ea83f07fcc0eee23ebae53ec037fd3b30744_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:054951845849727ca5f2a58aaaf4e30c4777e1acd96214f67a6766e88b98f143_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kube-rbac-proxy@sha256:054951845849727ca5f2a58aaaf4e30c4777e1acd96214f67a6766e88b98f143_arm64" + }, + "product_reference": "openshift4/ose-kube-rbac-proxy@sha256:054951845849727ca5f2a58aaaf4e30c4777e1acd96214f67a6766e88b98f143_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:d6d5ed9c09ffd80a4b120b22d940ba7d29561c906b9c497d2f00351ad41cd7ca_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kube-rbac-proxy@sha256:d6d5ed9c09ffd80a4b120b22d940ba7d29561c906b9c497d2f00351ad41cd7ca_ppc64le" + }, + "product_reference": "openshift4/ose-kube-rbac-proxy@sha256:d6d5ed9c09ffd80a4b120b22d940ba7d29561c906b9c497d2f00351ad41cd7ca_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-state-metrics@sha256:13093dc7590b12c5a301cf09cdaf4f98399a1427a428780795c8a3ae03bb044f_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kube-state-metrics@sha256:13093dc7590b12c5a301cf09cdaf4f98399a1427a428780795c8a3ae03bb044f_amd64" + }, + "product_reference": "openshift4/ose-kube-state-metrics@sha256:13093dc7590b12c5a301cf09cdaf4f98399a1427a428780795c8a3ae03bb044f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-state-metrics@sha256:138e5bad7fa2dc3bd386231d54816b003f438950c55e0812e08f4d13a2433440_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kube-state-metrics@sha256:138e5bad7fa2dc3bd386231d54816b003f438950c55e0812e08f4d13a2433440_arm64" + }, + "product_reference": "openshift4/ose-kube-state-metrics@sha256:138e5bad7fa2dc3bd386231d54816b003f438950c55e0812e08f4d13a2433440_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-state-metrics@sha256:460dc136d67324476584186b90274a567afe2e57c42ae810fa19f185cba076ec_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kube-state-metrics@sha256:460dc136d67324476584186b90274a567afe2e57c42ae810fa19f185cba076ec_ppc64le" + }, + "product_reference": "openshift4/ose-kube-state-metrics@sha256:460dc136d67324476584186b90274a567afe2e57c42ae810fa19f185cba076ec_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-state-metrics@sha256:4874f8387f0f13127c72011c03d85316e27775cbb91010de5d841350601a5bb7_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kube-state-metrics@sha256:4874f8387f0f13127c72011c03d85316e27775cbb91010de5d841350601a5bb7_s390x" + }, + "product_reference": "openshift4/ose-kube-state-metrics@sha256:4874f8387f0f13127c72011c03d85316e27775cbb91010de5d841350601a5bb7_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:5166f3d5072802208f2dded23be7c51586f5823359747df272b8ba6de51c3017_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kube-storage-version-migrator-rhel8@sha256:5166f3d5072802208f2dded23be7c51586f5823359747df272b8ba6de51c3017_ppc64le" + }, + "product_reference": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:5166f3d5072802208f2dded23be7c51586f5823359747df272b8ba6de51c3017_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:a26a6277132d7a0cd6536f724be37aed52032657e7f30b9f1b8d65690d997fc9_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kube-storage-version-migrator-rhel8@sha256:a26a6277132d7a0cd6536f724be37aed52032657e7f30b9f1b8d65690d997fc9_arm64" + }, + "product_reference": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:a26a6277132d7a0cd6536f724be37aed52032657e7f30b9f1b8d65690d997fc9_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:a8d829b56f04161a18d527c9d4d00f61240cd7cf83d4dc476b45879bc4f4d8e4_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kube-storage-version-migrator-rhel8@sha256:a8d829b56f04161a18d527c9d4d00f61240cd7cf83d4dc476b45879bc4f4d8e4_amd64" + }, + "product_reference": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:a8d829b56f04161a18d527c9d4d00f61240cd7cf83d4dc476b45879bc4f4d8e4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:df5478192dad7caa5dfa5ab41bb93364815266665e65ae128f60f21ed530986c_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kube-storage-version-migrator-rhel8@sha256:df5478192dad7caa5dfa5ab41bb93364815266665e65ae128f60f21ed530986c_s390x" + }, + "product_reference": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:df5478192dad7caa5dfa5ab41bb93364815266665e65ae128f60f21ed530986c_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:49002f025bc069b341c4bba76844db11ac9c963b3669717c81d3a5734c5feae6_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:49002f025bc069b341c4bba76844db11ac9c963b3669717c81d3a5734c5feae6_arm64" + }, + "product_reference": "openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:49002f025bc069b341c4bba76844db11ac9c963b3669717c81d3a5734c5feae6_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:5607e281ade26e3b5f63b54323b6c613bd7177d8e62a8923692c5f56d5adb19f_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:5607e281ade26e3b5f63b54323b6c613bd7177d8e62a8923692c5f56d5adb19f_s390x" + }, + "product_reference": "openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:5607e281ade26e3b5f63b54323b6c613bd7177d8e62a8923692c5f56d5adb19f_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:7795d7c909c98f3ba635db85c931aaca9856909e9562c4989fd035e408b06cc4_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:7795d7c909c98f3ba635db85c931aaca9856909e9562c4989fd035e408b06cc4_amd64" + }, + "product_reference": "openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:7795d7c909c98f3ba635db85c931aaca9856909e9562c4989fd035e408b06cc4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:79757eb52872ded0daee72b36a9e7df618f3db67a43fd37b4039058c09995ec9_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:79757eb52872ded0daee72b36a9e7df618f3db67a43fd37b4039058c09995ec9_ppc64le" + }, + "product_reference": "openshift4/ose-kubernetes-nmstate-handler-rhel8@sha256:79757eb52872ded0daee72b36a9e7df618f3db67a43fd37b4039058c09995ec9_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:5e23dadcc20dc2f4477130eeb8a9a768b2695614892bbefd99eb64603187ba6a_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:5e23dadcc20dc2f4477130eeb8a9a768b2695614892bbefd99eb64603187ba6a_ppc64le" + }, + "product_reference": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:5e23dadcc20dc2f4477130eeb8a9a768b2695614892bbefd99eb64603187ba6a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:807fc056e123047b25b96e8c284723255c4a1cd70a46569ae175be3b7b43d7ce_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:807fc056e123047b25b96e8c284723255c4a1cd70a46569ae175be3b7b43d7ce_amd64" + }, + "product_reference": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:807fc056e123047b25b96e8c284723255c4a1cd70a46569ae175be3b7b43d7ce_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:b9e66480c004b2c5406de3b6d9e7332f88758fbeedd783a176c93a968c61c201_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:b9e66480c004b2c5406de3b6d9e7332f88758fbeedd783a176c93a968c61c201_s390x" + }, + "product_reference": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:b9e66480c004b2c5406de3b6d9e7332f88758fbeedd783a176c93a968c61c201_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:d1aa4fa2ee846a453ddcae553e0488470cc845b3c53fc2cf659db7b404a72670_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:d1aa4fa2ee846a453ddcae553e0488470cc845b3c53fc2cf659db7b404a72670_arm64" + }, + "product_reference": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:d1aa4fa2ee846a453ddcae553e0488470cc845b3c53fc2cf659db7b404a72670_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:c9074d2f4302ee98c46433bf09c7ee122ecbe4c0af50170673a980db04ad9ba3_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kuryr-cni-rhel8@sha256:c9074d2f4302ee98c46433bf09c7ee122ecbe4c0af50170673a980db04ad9ba3_amd64" + }, + "product_reference": "openshift4/ose-kuryr-cni-rhel8@sha256:c9074d2f4302ee98c46433bf09c7ee122ecbe4c0af50170673a980db04ad9ba3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:d52151ff0e30cfac3d140ded2bd993667f6fdc404f528ff735007a13866dc38c_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-kuryr-cni-rhel8@sha256:d52151ff0e30cfac3d140ded2bd993667f6fdc404f528ff735007a13866dc38c_ppc64le" + }, + "product_reference": "openshift4/ose-kuryr-cni-rhel8@sha256:d52151ff0e30cfac3d140ded2bd993667f6fdc404f528ff735007a13866dc38c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:07dbc62bba5868c989320290fae2cd107d3bff87eae10e6e38741e9e834335e9_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-libvirt-machine-controllers@sha256:07dbc62bba5868c989320290fae2cd107d3bff87eae10e6e38741e9e834335e9_arm64" + }, + "product_reference": "openshift4/ose-libvirt-machine-controllers@sha256:07dbc62bba5868c989320290fae2cd107d3bff87eae10e6e38741e9e834335e9_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:0b44961bb9803fb3923c5f196cfe0a5272086c6913eec97df1117e18dbdc22e8_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-libvirt-machine-controllers@sha256:0b44961bb9803fb3923c5f196cfe0a5272086c6913eec97df1117e18dbdc22e8_ppc64le" + }, + "product_reference": "openshift4/ose-libvirt-machine-controllers@sha256:0b44961bb9803fb3923c5f196cfe0a5272086c6913eec97df1117e18dbdc22e8_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:2b2ab64533358bceb510e5b52d49fb96b90f8656270537ecc39f02863475ce87_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-libvirt-machine-controllers@sha256:2b2ab64533358bceb510e5b52d49fb96b90f8656270537ecc39f02863475ce87_s390x" + }, + "product_reference": "openshift4/ose-libvirt-machine-controllers@sha256:2b2ab64533358bceb510e5b52d49fb96b90f8656270537ecc39f02863475ce87_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:b8d552193f5e76e93e564d94a305facba17a37fcb85b83bba1c4fdb8fd4117ad_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-libvirt-machine-controllers@sha256:b8d552193f5e76e93e564d94a305facba17a37fcb85b83bba1c4fdb8fd4117ad_amd64" + }, + "product_reference": "openshift4/ose-libvirt-machine-controllers@sha256:b8d552193f5e76e93e564d94a305facba17a37fcb85b83bba1c4fdb8fd4117ad_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-local-storage-diskmaker@sha256:0943f880a0b6f5f30348da6fb09b75b771bb8b734edd8f554370a94739a28bf0_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-local-storage-diskmaker@sha256:0943f880a0b6f5f30348da6fb09b75b771bb8b734edd8f554370a94739a28bf0_ppc64le" + }, + "product_reference": "openshift4/ose-local-storage-diskmaker@sha256:0943f880a0b6f5f30348da6fb09b75b771bb8b734edd8f554370a94739a28bf0_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-local-storage-diskmaker@sha256:2d75f4492de03cd38f86a916c857b3ccfa3bf42ddf3305379ede5c00a6e35640_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-local-storage-diskmaker@sha256:2d75f4492de03cd38f86a916c857b3ccfa3bf42ddf3305379ede5c00a6e35640_arm64" + }, + "product_reference": "openshift4/ose-local-storage-diskmaker@sha256:2d75f4492de03cd38f86a916c857b3ccfa3bf42ddf3305379ede5c00a6e35640_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-local-storage-diskmaker@sha256:4c45813adbe93ab958fcb5b284dca6be3246d141dc319af32cd3fa6229956cf3_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-local-storage-diskmaker@sha256:4c45813adbe93ab958fcb5b284dca6be3246d141dc319af32cd3fa6229956cf3_s390x" + }, + "product_reference": "openshift4/ose-local-storage-diskmaker@sha256:4c45813adbe93ab958fcb5b284dca6be3246d141dc319af32cd3fa6229956cf3_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-local-storage-diskmaker@sha256:eaf9e9954ebe8db1e0ff118eb27e718d461306f2abd76e964d4141c0a73a5c2f_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-local-storage-diskmaker@sha256:eaf9e9954ebe8db1e0ff118eb27e718d461306f2abd76e964d4141c0a73a5c2f_amd64" + }, + "product_reference": "openshift4/ose-local-storage-diskmaker@sha256:eaf9e9954ebe8db1e0ff118eb27e718d461306f2abd76e964d4141c0a73a5c2f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-local-storage-mustgather-rhel8@sha256:36e226018b729d091d18bda697a1f61d07bc0de2d071bc2afc9dc28aeac136c7_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-local-storage-mustgather-rhel8@sha256:36e226018b729d091d18bda697a1f61d07bc0de2d071bc2afc9dc28aeac136c7_arm64" + }, + "product_reference": "openshift4/ose-local-storage-mustgather-rhel8@sha256:36e226018b729d091d18bda697a1f61d07bc0de2d071bc2afc9dc28aeac136c7_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-local-storage-mustgather-rhel8@sha256:3ad9fdceb6a31af84101a83dd09e0125c81a3be4c44e1bee8d9e00ed12e744b9_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-local-storage-mustgather-rhel8@sha256:3ad9fdceb6a31af84101a83dd09e0125c81a3be4c44e1bee8d9e00ed12e744b9_s390x" + }, + "product_reference": "openshift4/ose-local-storage-mustgather-rhel8@sha256:3ad9fdceb6a31af84101a83dd09e0125c81a3be4c44e1bee8d9e00ed12e744b9_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-local-storage-mustgather-rhel8@sha256:3b9dec60f12ae6fb249cb48fc5c2e7ea753b6a7de647a42e39fe10af8a5d1d78_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-local-storage-mustgather-rhel8@sha256:3b9dec60f12ae6fb249cb48fc5c2e7ea753b6a7de647a42e39fe10af8a5d1d78_ppc64le" + }, + "product_reference": "openshift4/ose-local-storage-mustgather-rhel8@sha256:3b9dec60f12ae6fb249cb48fc5c2e7ea753b6a7de647a42e39fe10af8a5d1d78_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-local-storage-mustgather-rhel8@sha256:8c787c6916fc351bc9f50eadf71f3fd4e29f01816839fafaf0b0cc2784e2f06b_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-local-storage-mustgather-rhel8@sha256:8c787c6916fc351bc9f50eadf71f3fd4e29f01816839fafaf0b0cc2784e2f06b_amd64" + }, + "product_reference": "openshift4/ose-local-storage-mustgather-rhel8@sha256:8c787c6916fc351bc9f50eadf71f3fd4e29f01816839fafaf0b0cc2784e2f06b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-local-storage-operator@sha256:05cdaeb001da623de78225705582a2dd849e9f2e18cf11f38fad27b1bd33ccdf_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-local-storage-operator@sha256:05cdaeb001da623de78225705582a2dd849e9f2e18cf11f38fad27b1bd33ccdf_amd64" + }, + "product_reference": "openshift4/ose-local-storage-operator@sha256:05cdaeb001da623de78225705582a2dd849e9f2e18cf11f38fad27b1bd33ccdf_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-local-storage-operator@sha256:1bdebfc18def3143aa2fc8e939d718245b2add95a2d796ef87502fa732239259_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-local-storage-operator@sha256:1bdebfc18def3143aa2fc8e939d718245b2add95a2d796ef87502fa732239259_arm64" + }, + "product_reference": "openshift4/ose-local-storage-operator@sha256:1bdebfc18def3143aa2fc8e939d718245b2add95a2d796ef87502fa732239259_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-local-storage-operator@sha256:b318d3db35bc55e1d2f1a48a6bc14fb56fcfb9f03bf85e6af8803928c4f004e2_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-local-storage-operator@sha256:b318d3db35bc55e1d2f1a48a6bc14fb56fcfb9f03bf85e6af8803928c4f004e2_ppc64le" + }, + "product_reference": "openshift4/ose-local-storage-operator@sha256:b318d3db35bc55e1d2f1a48a6bc14fb56fcfb9f03bf85e6af8803928c4f004e2_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-local-storage-operator@sha256:f0d80c23dd2eda2eac2f26ad43b028af31e97fd3f4c11e91d465f20fb0c0e51e_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-local-storage-operator@sha256:f0d80c23dd2eda2eac2f26ad43b028af31e97fd3f4c11e91d465f20fb0c0e51e_s390x" + }, + "product_reference": "openshift4/ose-local-storage-operator@sha256:f0d80c23dd2eda2eac2f26ad43b028af31e97fd3f4c11e91d465f20fb0c0e51e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-operator@sha256:30b0d4e46d49461e1e29f0e514dbc2b644650de79941a1bf274da59a33ff5ef4_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-machine-api-operator@sha256:30b0d4e46d49461e1e29f0e514dbc2b644650de79941a1bf274da59a33ff5ef4_arm64" + }, + "product_reference": "openshift4/ose-machine-api-operator@sha256:30b0d4e46d49461e1e29f0e514dbc2b644650de79941a1bf274da59a33ff5ef4_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-operator@sha256:3171c76d235d38397dcdf5788822134138d7ccb87b98d69b88f8c8aec6b9e70e_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-machine-api-operator@sha256:3171c76d235d38397dcdf5788822134138d7ccb87b98d69b88f8c8aec6b9e70e_amd64" + }, + "product_reference": "openshift4/ose-machine-api-operator@sha256:3171c76d235d38397dcdf5788822134138d7ccb87b98d69b88f8c8aec6b9e70e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-operator@sha256:b5d621bcfe98246092e9649d76eaa7e880178bde7a52168a75de7c6895c7e422_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-machine-api-operator@sha256:b5d621bcfe98246092e9649d76eaa7e880178bde7a52168a75de7c6895c7e422_s390x" + }, + "product_reference": "openshift4/ose-machine-api-operator@sha256:b5d621bcfe98246092e9649d76eaa7e880178bde7a52168a75de7c6895c7e422_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-operator@sha256:ba9032e90874993a981d6d831c963d5697356bb8875669322530b66471a4fd44_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-machine-api-operator@sha256:ba9032e90874993a981d6d831c963d5697356bb8875669322530b66471a4fd44_ppc64le" + }, + "product_reference": "openshift4/ose-machine-api-operator@sha256:ba9032e90874993a981d6d831c963d5697356bb8875669322530b66471a4fd44_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:2c25f133c08d668210d9fa2cbad5f2f002efdde25c65894f0ee70cfe9a698cd0_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-machine-api-provider-aws-rhel8@sha256:2c25f133c08d668210d9fa2cbad5f2f002efdde25c65894f0ee70cfe9a698cd0_arm64" + }, + "product_reference": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:2c25f133c08d668210d9fa2cbad5f2f002efdde25c65894f0ee70cfe9a698cd0_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:644d37d744d28e40e4b2002085a41a0cbaea7cf197861d73fb904945400831d7_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-machine-api-provider-aws-rhel8@sha256:644d37d744d28e40e4b2002085a41a0cbaea7cf197861d73fb904945400831d7_amd64" + }, + "product_reference": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:644d37d744d28e40e4b2002085a41a0cbaea7cf197861d73fb904945400831d7_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:1cd22fbd130eb41a462452b7ce102eab91d8ec8d929599082ae099a2915767d7_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-machine-api-provider-azure-rhel8@sha256:1cd22fbd130eb41a462452b7ce102eab91d8ec8d929599082ae099a2915767d7_arm64" + }, + "product_reference": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:1cd22fbd130eb41a462452b7ce102eab91d8ec8d929599082ae099a2915767d7_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:cc5ab2ae7e0dfd048ad48360f8eb5f2c7da05b1a7f2c625c127b37ef62d2a2f5_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-machine-api-provider-azure-rhel8@sha256:cc5ab2ae7e0dfd048ad48360f8eb5f2c7da05b1a7f2c625c127b37ef62d2a2f5_amd64" + }, + "product_reference": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:cc5ab2ae7e0dfd048ad48360f8eb5f2c7da05b1a7f2c625c127b37ef62d2a2f5_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:2d1af774642cf3fd8a78fae25ad5bce5590b1969efd64ddb7048417ae885142a_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-machine-api-provider-gcp-rhel8@sha256:2d1af774642cf3fd8a78fae25ad5bce5590b1969efd64ddb7048417ae885142a_ppc64le" + }, + "product_reference": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:2d1af774642cf3fd8a78fae25ad5bce5590b1969efd64ddb7048417ae885142a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:2fe0564efb1344b8eb067d1d75a19a4a5de0df7735baba100e689c2ec38b175a_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-machine-api-provider-gcp-rhel8@sha256:2fe0564efb1344b8eb067d1d75a19a4a5de0df7735baba100e689c2ec38b175a_arm64" + }, + "product_reference": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:2fe0564efb1344b8eb067d1d75a19a4a5de0df7735baba100e689c2ec38b175a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:ea302039dde95174f6837d29048cb922c8ee0d28137e0a7583b8133dc4315027_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-machine-api-provider-gcp-rhel8@sha256:ea302039dde95174f6837d29048cb922c8ee0d28137e0a7583b8133dc4315027_amd64" + }, + "product_reference": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:ea302039dde95174f6837d29048cb922c8ee0d28137e0a7583b8133dc4315027_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:068efa8d1fad3c64c3b4647cfd12d6a0599468883bc574450bc2a0555da20751_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-machine-api-provider-openstack-rhel8@sha256:068efa8d1fad3c64c3b4647cfd12d6a0599468883bc574450bc2a0555da20751_s390x" + }, + "product_reference": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:068efa8d1fad3c64c3b4647cfd12d6a0599468883bc574450bc2a0555da20751_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:8cc9ac97492a19e269491f60b1c35a5c8b8bfd0e3bb35b7e70b584547f9ef1d7_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-machine-api-provider-openstack-rhel8@sha256:8cc9ac97492a19e269491f60b1c35a5c8b8bfd0e3bb35b7e70b584547f9ef1d7_ppc64le" + }, + "product_reference": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:8cc9ac97492a19e269491f60b1c35a5c8b8bfd0e3bb35b7e70b584547f9ef1d7_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:aa8f9c3d428013f08f6a89d4df2b24788aa4949b02d00fa9b7783cdd185b353b_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-machine-api-provider-openstack-rhel8@sha256:aa8f9c3d428013f08f6a89d4df2b24788aa4949b02d00fa9b7783cdd185b353b_amd64" + }, + "product_reference": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:aa8f9c3d428013f08f6a89d4df2b24788aa4949b02d00fa9b7783cdd185b353b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:c303d144fd8059b2a1da3c4b1e98674b7e315a099c572f3d5f4ded7893c693e5_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-machine-api-provider-openstack-rhel8@sha256:c303d144fd8059b2a1da3c4b1e98674b7e315a099c572f3d5f4ded7893c693e5_arm64" + }, + "product_reference": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:c303d144fd8059b2a1da3c4b1e98674b7e315a099c572f3d5f4ded7893c693e5_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-config-operator@sha256:0c452c53747d7ac6051cd29cf1d09372d57d8091d73be2784fd7e8597a9cb441_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-machine-config-operator@sha256:0c452c53747d7ac6051cd29cf1d09372d57d8091d73be2784fd7e8597a9cb441_amd64" + }, + "product_reference": "openshift4/ose-machine-config-operator@sha256:0c452c53747d7ac6051cd29cf1d09372d57d8091d73be2784fd7e8597a9cb441_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-config-operator@sha256:3dd0b8b606d3e72151b2b378b89a0c30bc345c53cd8169fd77b3060ea29762fa_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-machine-config-operator@sha256:3dd0b8b606d3e72151b2b378b89a0c30bc345c53cd8169fd77b3060ea29762fa_arm64" + }, + "product_reference": "openshift4/ose-machine-config-operator@sha256:3dd0b8b606d3e72151b2b378b89a0c30bc345c53cd8169fd77b3060ea29762fa_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-config-operator@sha256:87bad609876c80831f223ac40bd1aa4b8e70a559070f9821280286c121a0aadd_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-machine-config-operator@sha256:87bad609876c80831f223ac40bd1aa4b8e70a559070f9821280286c121a0aadd_ppc64le" + }, + "product_reference": "openshift4/ose-machine-config-operator@sha256:87bad609876c80831f223ac40bd1aa4b8e70a559070f9821280286c121a0aadd_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-config-operator@sha256:d1882e735eb54357f0dad9a0cf3e64bc7e64fd000cd9d668e24dff5089b694b2_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-machine-config-operator@sha256:d1882e735eb54357f0dad9a0cf3e64bc7e64fd000cd9d668e24dff5089b694b2_s390x" + }, + "product_reference": "openshift4/ose-machine-config-operator@sha256:d1882e735eb54357f0dad9a0cf3e64bc7e64fd000cd9d668e24dff5089b694b2_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:117a199f5ab35c67f10539938b05af432a365a63b4117b47d1eaf4b003e445f9_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-machine-os-images-rhel8@sha256:117a199f5ab35c67f10539938b05af432a365a63b4117b47d1eaf4b003e445f9_ppc64le" + }, + "product_reference": "openshift4/ose-machine-os-images-rhel8@sha256:117a199f5ab35c67f10539938b05af432a365a63b4117b47d1eaf4b003e445f9_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:d40d92287a561e10641cdb03dff45f365f67f3265e304512057ca129e215baa8_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-machine-os-images-rhel8@sha256:d40d92287a561e10641cdb03dff45f365f67f3265e304512057ca129e215baa8_amd64" + }, + "product_reference": "openshift4/ose-machine-os-images-rhel8@sha256:d40d92287a561e10641cdb03dff45f365f67f3265e304512057ca129e215baa8_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:e0e39d6672994d66c187c7e3352a21ac04f3b4e1c7e91d4b364999896aa4a81e_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-machine-os-images-rhel8@sha256:e0e39d6672994d66c187c7e3352a21ac04f3b4e1c7e91d4b364999896aa4a81e_arm64" + }, + "product_reference": "openshift4/ose-machine-os-images-rhel8@sha256:e0e39d6672994d66c187c7e3352a21ac04f3b4e1c7e91d4b364999896aa4a81e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-admission-controller@sha256:57c34966eef6996bc3bce0c802bce98b0cfb8190cf62ededb76fae22755794ec_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-multus-admission-controller@sha256:57c34966eef6996bc3bce0c802bce98b0cfb8190cf62ededb76fae22755794ec_amd64" + }, + "product_reference": "openshift4/ose-multus-admission-controller@sha256:57c34966eef6996bc3bce0c802bce98b0cfb8190cf62ededb76fae22755794ec_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-admission-controller@sha256:6af823c2a6a84bdaa54ae00e161ff174ebb0dabf46e5aa202b5fbced7911fc0e_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-multus-admission-controller@sha256:6af823c2a6a84bdaa54ae00e161ff174ebb0dabf46e5aa202b5fbced7911fc0e_arm64" + }, + "product_reference": "openshift4/ose-multus-admission-controller@sha256:6af823c2a6a84bdaa54ae00e161ff174ebb0dabf46e5aa202b5fbced7911fc0e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-admission-controller@sha256:bd96c7861e7e085e5806b000b98ad032ce4ab0536fcaf8782a3aaa1a0dbc3236_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-multus-admission-controller@sha256:bd96c7861e7e085e5806b000b98ad032ce4ab0536fcaf8782a3aaa1a0dbc3236_s390x" + }, + "product_reference": "openshift4/ose-multus-admission-controller@sha256:bd96c7861e7e085e5806b000b98ad032ce4ab0536fcaf8782a3aaa1a0dbc3236_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-admission-controller@sha256:c2f171b699fdcd27def853913855888662325150d67d851d94cc4e4445c880d5_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-multus-admission-controller@sha256:c2f171b699fdcd27def853913855888662325150d67d851d94cc4e4445c880d5_ppc64le" + }, + "product_reference": "openshift4/ose-multus-admission-controller@sha256:c2f171b699fdcd27def853913855888662325150d67d851d94cc4e4445c880d5_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-cni@sha256:18381cebd457426ebb77b83a0badb2a60e46324b652024f608abbde76c872218_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-multus-cni@sha256:18381cebd457426ebb77b83a0badb2a60e46324b652024f608abbde76c872218_ppc64le" + }, + "product_reference": "openshift4/ose-multus-cni@sha256:18381cebd457426ebb77b83a0badb2a60e46324b652024f608abbde76c872218_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-cni@sha256:50f163024ff709109236d042867f123b44b9e60c705ea57e3ecd091f6b07a0d8_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-multus-cni@sha256:50f163024ff709109236d042867f123b44b9e60c705ea57e3ecd091f6b07a0d8_arm64" + }, + "product_reference": "openshift4/ose-multus-cni@sha256:50f163024ff709109236d042867f123b44b9e60c705ea57e3ecd091f6b07a0d8_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-cni@sha256:69a0c8a5df71ddaf139c5e1ffcae9a5ac3a14864bea2a40f405d3ca42a7b97f2_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-multus-cni@sha256:69a0c8a5df71ddaf139c5e1ffcae9a5ac3a14864bea2a40f405d3ca42a7b97f2_s390x" + }, + "product_reference": "openshift4/ose-multus-cni@sha256:69a0c8a5df71ddaf139c5e1ffcae9a5ac3a14864bea2a40f405d3ca42a7b97f2_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-cni@sha256:ce444a53ac886a494e18865e6f0cc89a016aae49c2d15add670c5070deac3109_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-multus-cni@sha256:ce444a53ac886a494e18865e6f0cc89a016aae49c2d15add670c5070deac3109_amd64" + }, + "product_reference": "openshift4/ose-multus-cni@sha256:ce444a53ac886a494e18865e6f0cc89a016aae49c2d15add670c5070deac3109_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:6e69c3e00d81f8000cf1f2ecd7521523dd79234179fe34d091ecc6e84f9c774b_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-multus-networkpolicy-rhel8@sha256:6e69c3e00d81f8000cf1f2ecd7521523dd79234179fe34d091ecc6e84f9c774b_s390x" + }, + "product_reference": "openshift4/ose-multus-networkpolicy-rhel8@sha256:6e69c3e00d81f8000cf1f2ecd7521523dd79234179fe34d091ecc6e84f9c774b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:9a01336379bc0d1e11d27dde55e8456a34c478b7a5c027c48e55433852117589_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-multus-networkpolicy-rhel8@sha256:9a01336379bc0d1e11d27dde55e8456a34c478b7a5c027c48e55433852117589_amd64" + }, + "product_reference": "openshift4/ose-multus-networkpolicy-rhel8@sha256:9a01336379bc0d1e11d27dde55e8456a34c478b7a5c027c48e55433852117589_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:9e151f1ce48f2e5b1ef7caeff556d487707417f86fa820e0c0c99bfff80cfb62_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-multus-networkpolicy-rhel8@sha256:9e151f1ce48f2e5b1ef7caeff556d487707417f86fa820e0c0c99bfff80cfb62_arm64" + }, + "product_reference": "openshift4/ose-multus-networkpolicy-rhel8@sha256:9e151f1ce48f2e5b1ef7caeff556d487707417f86fa820e0c0c99bfff80cfb62_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:e14c8bcd48a1cf94aa8e3e9c71633107b66ba3326df72274e1fbc7b46e5b51a4_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-multus-networkpolicy-rhel8@sha256:e14c8bcd48a1cf94aa8e3e9c71633107b66ba3326df72274e1fbc7b46e5b51a4_ppc64le" + }, + "product_reference": "openshift4/ose-multus-networkpolicy-rhel8@sha256:e14c8bcd48a1cf94aa8e3e9c71633107b66ba3326df72274e1fbc7b46e5b51a4_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:18e20e7bb238852b5dd3b7a688f9d76e076ec793de3cc352870f81410460d462_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-multus-route-override-cni-rhel8@sha256:18e20e7bb238852b5dd3b7a688f9d76e076ec793de3cc352870f81410460d462_s390x" + }, + "product_reference": "openshift4/ose-multus-route-override-cni-rhel8@sha256:18e20e7bb238852b5dd3b7a688f9d76e076ec793de3cc352870f81410460d462_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:50d1ce5bcd21a346070f161dda18c3e2fff2253c8492b1dc2daf542a2b6dbf47_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-multus-route-override-cni-rhel8@sha256:50d1ce5bcd21a346070f161dda18c3e2fff2253c8492b1dc2daf542a2b6dbf47_amd64" + }, + "product_reference": "openshift4/ose-multus-route-override-cni-rhel8@sha256:50d1ce5bcd21a346070f161dda18c3e2fff2253c8492b1dc2daf542a2b6dbf47_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:75ac430e16c79bb256bcabb2ce1ff167ab6b497f7b799598caf44b678e686020_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-multus-route-override-cni-rhel8@sha256:75ac430e16c79bb256bcabb2ce1ff167ab6b497f7b799598caf44b678e686020_ppc64le" + }, + "product_reference": "openshift4/ose-multus-route-override-cni-rhel8@sha256:75ac430e16c79bb256bcabb2ce1ff167ab6b497f7b799598caf44b678e686020_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:8bec662ad3c6bd298ae1c9d0223dcbd0b41146956a866d1b13ef9187f5efdd05_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-multus-route-override-cni-rhel8@sha256:8bec662ad3c6bd298ae1c9d0223dcbd0b41146956a866d1b13ef9187f5efdd05_arm64" + }, + "product_reference": "openshift4/ose-multus-route-override-cni-rhel8@sha256:8bec662ad3c6bd298ae1c9d0223dcbd0b41146956a866d1b13ef9187f5efdd05_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:3eb79ca0574a2141229f2f54ede83f3a3aab825104faf0384830a48566276383_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:3eb79ca0574a2141229f2f54ede83f3a3aab825104faf0384830a48566276383_arm64" + }, + "product_reference": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:3eb79ca0574a2141229f2f54ede83f3a3aab825104faf0384830a48566276383_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:6117505f5ae0eade409c09da7e0424f532913551e58363b8068676f3a6f89a9a_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:6117505f5ae0eade409c09da7e0424f532913551e58363b8068676f3a6f89a9a_ppc64le" + }, + "product_reference": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:6117505f5ae0eade409c09da7e0424f532913551e58363b8068676f3a6f89a9a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:69d88a79e75140d1dfa3719058a3ad2c6a5304c633c5fd85e252e4b131a52802_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:69d88a79e75140d1dfa3719058a3ad2c6a5304c633c5fd85e252e4b131a52802_s390x" + }, + "product_reference": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:69d88a79e75140d1dfa3719058a3ad2c6a5304c633c5fd85e252e4b131a52802_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:6f1009fbe5c923a38e4390f63c04b37503e0d15042005a2144bb7b210d50c6cc_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:6f1009fbe5c923a38e4390f63c04b37503e0d15042005a2144bb7b210d50c6cc_amd64" + }, + "product_reference": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:6f1009fbe5c923a38e4390f63c04b37503e0d15042005a2144bb7b210d50c6cc_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-must-gather@sha256:3f8e07c1c87061d13ebf3678ebf5d592ebd06588218821d3fec77b4216891956_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-must-gather@sha256:3f8e07c1c87061d13ebf3678ebf5d592ebd06588218821d3fec77b4216891956_s390x" + }, + "product_reference": "openshift4/ose-must-gather@sha256:3f8e07c1c87061d13ebf3678ebf5d592ebd06588218821d3fec77b4216891956_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-must-gather@sha256:4189a2ca25ba5d2c45e7a8560cc1f0df3a526addd7aebef60202e587951e74f7_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-must-gather@sha256:4189a2ca25ba5d2c45e7a8560cc1f0df3a526addd7aebef60202e587951e74f7_ppc64le" + }, + "product_reference": "openshift4/ose-must-gather@sha256:4189a2ca25ba5d2c45e7a8560cc1f0df3a526addd7aebef60202e587951e74f7_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-must-gather@sha256:a856e306bfd05f956e4947151a76eb5ca73801117e015fbe5b73dd1a734ceb33_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-must-gather@sha256:a856e306bfd05f956e4947151a76eb5ca73801117e015fbe5b73dd1a734ceb33_amd64" + }, + "product_reference": "openshift4/ose-must-gather@sha256:a856e306bfd05f956e4947151a76eb5ca73801117e015fbe5b73dd1a734ceb33_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-must-gather@sha256:e0c9129aad44a89d337340ff1c0a509444e570eb0355630fca43823017d2ed23_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-must-gather@sha256:e0c9129aad44a89d337340ff1c0a509444e570eb0355630fca43823017d2ed23_arm64" + }, + "product_reference": "openshift4/ose-must-gather@sha256:e0c9129aad44a89d337340ff1c0a509444e570eb0355630fca43823017d2ed23_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:13e3d0ab5a7460795a098b16e6b1dfb73a81888ed9f74f0a26cd7d8bd1040b0d_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-network-interface-bond-cni-rhel8@sha256:13e3d0ab5a7460795a098b16e6b1dfb73a81888ed9f74f0a26cd7d8bd1040b0d_ppc64le" + }, + "product_reference": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:13e3d0ab5a7460795a098b16e6b1dfb73a81888ed9f74f0a26cd7d8bd1040b0d_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:3456bd0afb32f2d96d94b92592797425c1a780853fa4b0ec8dd474cd941cdd7a_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-network-interface-bond-cni-rhel8@sha256:3456bd0afb32f2d96d94b92592797425c1a780853fa4b0ec8dd474cd941cdd7a_amd64" + }, + "product_reference": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:3456bd0afb32f2d96d94b92592797425c1a780853fa4b0ec8dd474cd941cdd7a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:ee47b3b0d6eb98bd7cd3a513c1ce93f52e8abed97225e030ccce9e9920f7eb0b_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-network-interface-bond-cni-rhel8@sha256:ee47b3b0d6eb98bd7cd3a513c1ce93f52e8abed97225e030ccce9e9920f7eb0b_arm64" + }, + "product_reference": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:ee47b3b0d6eb98bd7cd3a513c1ce93f52e8abed97225e030ccce9e9920f7eb0b_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:f365123798eb2ea5f145fe94eb3394eb02aacf5a9ce84c8d2558bd06003223bf_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-network-interface-bond-cni-rhel8@sha256:f365123798eb2ea5f145fe94eb3394eb02aacf5a9ce84c8d2558bd06003223bf_s390x" + }, + "product_reference": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:f365123798eb2ea5f145fe94eb3394eb02aacf5a9ce84c8d2558bd06003223bf_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:469ec69a5e1a554640e4e5306bd417cbadfc22a3f7c32f91bc5fccdaa4bf3303_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-network-metrics-daemon-rhel8@sha256:469ec69a5e1a554640e4e5306bd417cbadfc22a3f7c32f91bc5fccdaa4bf3303_amd64" + }, + "product_reference": "openshift4/ose-network-metrics-daemon-rhel8@sha256:469ec69a5e1a554640e4e5306bd417cbadfc22a3f7c32f91bc5fccdaa4bf3303_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:68b2bf249273ad87af7102f6b8220ded465482a596230cb9fa039bab74eb3475_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-network-metrics-daemon-rhel8@sha256:68b2bf249273ad87af7102f6b8220ded465482a596230cb9fa039bab74eb3475_ppc64le" + }, + "product_reference": "openshift4/ose-network-metrics-daemon-rhel8@sha256:68b2bf249273ad87af7102f6b8220ded465482a596230cb9fa039bab74eb3475_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:7413946b2e9ed5d7d0b0bd1cd171ea428b2c08fa5917d6050d3dc0b9a0522f1d_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-network-metrics-daemon-rhel8@sha256:7413946b2e9ed5d7d0b0bd1cd171ea428b2c08fa5917d6050d3dc0b9a0522f1d_s390x" + }, + "product_reference": "openshift4/ose-network-metrics-daemon-rhel8@sha256:7413946b2e9ed5d7d0b0bd1cd171ea428b2c08fa5917d6050d3dc0b9a0522f1d_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:767f626b8c94ad6eb5dfd7f55c18cb4d1a7e53e6768e86f63de80c69cf3bf7db_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-network-metrics-daemon-rhel8@sha256:767f626b8c94ad6eb5dfd7f55c18cb4d1a7e53e6768e86f63de80c69cf3bf7db_arm64" + }, + "product_reference": "openshift4/ose-network-metrics-daemon-rhel8@sha256:767f626b8c94ad6eb5dfd7f55c18cb4d1a7e53e6768e86f63de80c69cf3bf7db_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-node-feature-discovery@sha256:19e215c87dbcd160906db9518f6994bcfe07ca8fa2b994bde1d34053f44a4d1e_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-node-feature-discovery@sha256:19e215c87dbcd160906db9518f6994bcfe07ca8fa2b994bde1d34053f44a4d1e_arm64" + }, + "product_reference": "openshift4/ose-node-feature-discovery@sha256:19e215c87dbcd160906db9518f6994bcfe07ca8fa2b994bde1d34053f44a4d1e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-node-feature-discovery@sha256:517d75599e24165059187f4216c5299d59841359766d929a316d23a2f8b04ee8_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-node-feature-discovery@sha256:517d75599e24165059187f4216c5299d59841359766d929a316d23a2f8b04ee8_ppc64le" + }, + "product_reference": "openshift4/ose-node-feature-discovery@sha256:517d75599e24165059187f4216c5299d59841359766d929a316d23a2f8b04ee8_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-node-feature-discovery@sha256:a0f622158b2810ced7211c40a873901ec3bef0676f3bf482b402dbe621bd3b34_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-node-feature-discovery@sha256:a0f622158b2810ced7211c40a873901ec3bef0676f3bf482b402dbe621bd3b34_amd64" + }, + "product_reference": "openshift4/ose-node-feature-discovery@sha256:a0f622158b2810ced7211c40a873901ec3bef0676f3bf482b402dbe621bd3b34_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-node-feature-discovery@sha256:c8bf2216110c4cf793547ac96f9811c9c3c3622601e33f0feaa45c08e752a0bf_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-node-feature-discovery@sha256:c8bf2216110c4cf793547ac96f9811c9c3c3622601e33f0feaa45c08e752a0bf_s390x" + }, + "product_reference": "openshift4/ose-node-feature-discovery@sha256:c8bf2216110c4cf793547ac96f9811c9c3c3622601e33f0feaa45c08e752a0bf_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-node-problem-detector-rhel8@sha256:18aa7061df5d769b5246c128cc605bfd79fd556c9dcb34800df8dc144d3323cc_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-node-problem-detector-rhel8@sha256:18aa7061df5d769b5246c128cc605bfd79fd556c9dcb34800df8dc144d3323cc_s390x" + }, + "product_reference": "openshift4/ose-node-problem-detector-rhel8@sha256:18aa7061df5d769b5246c128cc605bfd79fd556c9dcb34800df8dc144d3323cc_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-node-problem-detector-rhel8@sha256:56f5288e84ec70e7b15c0d96421954539202b8df353a5b38c0d017e655f60dcf_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-node-problem-detector-rhel8@sha256:56f5288e84ec70e7b15c0d96421954539202b8df353a5b38c0d017e655f60dcf_amd64" + }, + "product_reference": "openshift4/ose-node-problem-detector-rhel8@sha256:56f5288e84ec70e7b15c0d96421954539202b8df353a5b38c0d017e655f60dcf_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-node-problem-detector-rhel8@sha256:a89bc703dd46910d733946bbee872812a1e6457d3357958e2aef09ee55050a0c_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-node-problem-detector-rhel8@sha256:a89bc703dd46910d733946bbee872812a1e6457d3357958e2aef09ee55050a0c_arm64" + }, + "product_reference": "openshift4/ose-node-problem-detector-rhel8@sha256:a89bc703dd46910d733946bbee872812a1e6457d3357958e2aef09ee55050a0c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-node-problem-detector-rhel8@sha256:ac23ce0179a7f71f19e56aaa4d7dc48ee26702e9ad2b1055695812dee12c7888_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-node-problem-detector-rhel8@sha256:ac23ce0179a7f71f19e56aaa4d7dc48ee26702e9ad2b1055695812dee12c7888_ppc64le" + }, + "product_reference": "openshift4/ose-node-problem-detector-rhel8@sha256:ac23ce0179a7f71f19e56aaa4d7dc48ee26702e9ad2b1055695812dee12c7888_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:03a6fee3cb68bed260c4ccc6f9f6c8c863d7d6c3d9a6d569b0ce07a26f8a6e16_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:03a6fee3cb68bed260c4ccc6f9f6c8c863d7d6c3d9a6d569b0ce07a26f8a6e16_amd64" + }, + "product_reference": "openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:03a6fee3cb68bed260c4ccc6f9f6c8c863d7d6c3d9a6d569b0ce07a26f8a6e16_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-nutanix-machine-controllers-rhel8@sha256:a6613ac90381edc961862ac123b621caddab7352f7658724a5d37ad57316b85e_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-nutanix-machine-controllers-rhel8@sha256:a6613ac90381edc961862ac123b621caddab7352f7658724a5d37ad57316b85e_amd64" + }, + "product_reference": "openshift4/ose-nutanix-machine-controllers-rhel8@sha256:a6613ac90381edc961862ac123b621caddab7352f7658724a5d37ad57316b85e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:5431e62ef7d91b8e0013161d0950a3b84fa9562a876fb63821825a47a292e71e_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-oauth-apiserver-rhel8@sha256:5431e62ef7d91b8e0013161d0950a3b84fa9562a876fb63821825a47a292e71e_amd64" + }, + "product_reference": "openshift4/ose-oauth-apiserver-rhel8@sha256:5431e62ef7d91b8e0013161d0950a3b84fa9562a876fb63821825a47a292e71e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:59849ca328260174c6d30b142ab09a2559ed1423e40f7dbf17aedb40c46accdf_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-oauth-apiserver-rhel8@sha256:59849ca328260174c6d30b142ab09a2559ed1423e40f7dbf17aedb40c46accdf_arm64" + }, + "product_reference": "openshift4/ose-oauth-apiserver-rhel8@sha256:59849ca328260174c6d30b142ab09a2559ed1423e40f7dbf17aedb40c46accdf_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:6114bbdda79096a66945a0d8fe7f736c612f9f9e23cd3a8987997ac726e196d3_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-oauth-apiserver-rhel8@sha256:6114bbdda79096a66945a0d8fe7f736c612f9f9e23cd3a8987997ac726e196d3_ppc64le" + }, + "product_reference": "openshift4/ose-oauth-apiserver-rhel8@sha256:6114bbdda79096a66945a0d8fe7f736c612f9f9e23cd3a8987997ac726e196d3_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:b5498cfc68a848617754a063e6c7df20be39476a555cf5a96c4e3ab87da8187d_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-oauth-apiserver-rhel8@sha256:b5498cfc68a848617754a063e6c7df20be39476a555cf5a96c4e3ab87da8187d_s390x" + }, + "product_reference": "openshift4/ose-oauth-apiserver-rhel8@sha256:b5498cfc68a848617754a063e6c7df20be39476a555cf5a96c4e3ab87da8187d_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-proxy@sha256:772a136bdce458b8cfae62d7d6cdbd4a5f3bcf247354d6c321980e1aa936a533_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-oauth-proxy@sha256:772a136bdce458b8cfae62d7d6cdbd4a5f3bcf247354d6c321980e1aa936a533_amd64" + }, + "product_reference": "openshift4/ose-oauth-proxy@sha256:772a136bdce458b8cfae62d7d6cdbd4a5f3bcf247354d6c321980e1aa936a533_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-proxy@sha256:77c2b01cc9e7331b065800a856fa206b0aa281be9c74dfed6f406514be63164a_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-oauth-proxy@sha256:77c2b01cc9e7331b065800a856fa206b0aa281be9c74dfed6f406514be63164a_arm64" + }, + "product_reference": "openshift4/ose-oauth-proxy@sha256:77c2b01cc9e7331b065800a856fa206b0aa281be9c74dfed6f406514be63164a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-proxy@sha256:bfa5ea9e3de0c4496fe0724a8e350713a2ea74f7033c2d2105d6b06ac7c48096_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-oauth-proxy@sha256:bfa5ea9e3de0c4496fe0724a8e350713a2ea74f7033c2d2105d6b06ac7c48096_s390x" + }, + "product_reference": "openshift4/ose-oauth-proxy@sha256:bfa5ea9e3de0c4496fe0724a8e350713a2ea74f7033c2d2105d6b06ac7c48096_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-proxy@sha256:c46a9c8259b346063cb0637e26a43cf415ddbbbd50a89319a7f572c46a01b51b_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-oauth-proxy@sha256:c46a9c8259b346063cb0637e26a43cf415ddbbbd50a89319a7f572c46a01b51b_ppc64le" + }, + "product_reference": "openshift4/ose-oauth-proxy@sha256:c46a9c8259b346063cb0637e26a43cf415ddbbbd50a89319a7f572c46a01b51b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:42ed8862237fe6c511e160eb4e2cc646c71b308f9d2519c3f2c038818eb5013a_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-oauth-server-rhel8@sha256:42ed8862237fe6c511e160eb4e2cc646c71b308f9d2519c3f2c038818eb5013a_s390x" + }, + "product_reference": "openshift4/ose-oauth-server-rhel8@sha256:42ed8862237fe6c511e160eb4e2cc646c71b308f9d2519c3f2c038818eb5013a_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:b306224d1c3d13564bc2f68cb1025245cad4223d24b08bb937d34072cbd8522f_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-oauth-server-rhel8@sha256:b306224d1c3d13564bc2f68cb1025245cad4223d24b08bb937d34072cbd8522f_amd64" + }, + "product_reference": "openshift4/ose-oauth-server-rhel8@sha256:b306224d1c3d13564bc2f68cb1025245cad4223d24b08bb937d34072cbd8522f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:b9915a1f02d013a8aa2a285f1e94e8bc78451ae66b74c342c1c58008faf42294_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-oauth-server-rhel8@sha256:b9915a1f02d013a8aa2a285f1e94e8bc78451ae66b74c342c1c58008faf42294_ppc64le" + }, + "product_reference": "openshift4/ose-oauth-server-rhel8@sha256:b9915a1f02d013a8aa2a285f1e94e8bc78451ae66b74c342c1c58008faf42294_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:d9aecacd0fc49283bff4677b843b7ab80917eb414ba32dcb9e28456290327f5a_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-oauth-server-rhel8@sha256:d9aecacd0fc49283bff4677b843b7ab80917eb414ba32dcb9e28456290327f5a_arm64" + }, + "product_reference": "openshift4/ose-oauth-server-rhel8@sha256:d9aecacd0fc49283bff4677b843b7ab80917eb414ba32dcb9e28456290327f5a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:1a2a07b20cd995edf673d8c729840f5e42ae9a206564586d78762679b05f4520_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-olm-rukpak-rhel8@sha256:1a2a07b20cd995edf673d8c729840f5e42ae9a206564586d78762679b05f4520_arm64" + }, + "product_reference": "openshift4/ose-olm-rukpak-rhel8@sha256:1a2a07b20cd995edf673d8c729840f5e42ae9a206564586d78762679b05f4520_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:bbe08b75dd1918e1662123f6bce057dab2e7873dd7369d68895b437928d186f5_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-olm-rukpak-rhel8@sha256:bbe08b75dd1918e1662123f6bce057dab2e7873dd7369d68895b437928d186f5_amd64" + }, + "product_reference": "openshift4/ose-olm-rukpak-rhel8@sha256:bbe08b75dd1918e1662123f6bce057dab2e7873dd7369d68895b437928d186f5_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:e12aebe890c2946bd9041cc75799038613f8a0e2e7bd56c4595837adef6a6b45_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-olm-rukpak-rhel8@sha256:e12aebe890c2946bd9041cc75799038613f8a0e2e7bd56c4595837adef6a6b45_ppc64le" + }, + "product_reference": "openshift4/ose-olm-rukpak-rhel8@sha256:e12aebe890c2946bd9041cc75799038613f8a0e2e7bd56c4595837adef6a6b45_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:edc41036cae04aeff271e115299329b8189f77e3629e0572b3f1d516d8676990_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-olm-rukpak-rhel8@sha256:edc41036cae04aeff271e115299329b8189f77e3629e0572b3f1d516d8676990_s390x" + }, + "product_reference": "openshift4/ose-olm-rukpak-rhel8@sha256:edc41036cae04aeff271e115299329b8189f77e3629e0572b3f1d516d8676990_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:37a9d0020d04bddd01d11fb0ffdcadd3e940054c3f99576e85b9c3ae8606779f_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openshift-apiserver-rhel8@sha256:37a9d0020d04bddd01d11fb0ffdcadd3e940054c3f99576e85b9c3ae8606779f_amd64" + }, + "product_reference": "openshift4/ose-openshift-apiserver-rhel8@sha256:37a9d0020d04bddd01d11fb0ffdcadd3e940054c3f99576e85b9c3ae8606779f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:8c568f5dd900a437bbecc831164fca8361c483d309a91cc91dba1a30e2e43c83_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openshift-apiserver-rhel8@sha256:8c568f5dd900a437bbecc831164fca8361c483d309a91cc91dba1a30e2e43c83_arm64" + }, + "product_reference": "openshift4/ose-openshift-apiserver-rhel8@sha256:8c568f5dd900a437bbecc831164fca8361c483d309a91cc91dba1a30e2e43c83_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:99557f89b55429cfd9c337d1b8a4d73bbbeea1e13596c2024accc2bb0851fb1a_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openshift-apiserver-rhel8@sha256:99557f89b55429cfd9c337d1b8a4d73bbbeea1e13596c2024accc2bb0851fb1a_s390x" + }, + "product_reference": "openshift4/ose-openshift-apiserver-rhel8@sha256:99557f89b55429cfd9c337d1b8a4d73bbbeea1e13596c2024accc2bb0851fb1a_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:b23f04d68e643fc7659566aebda8eec46aee97aa51a86a3333d475ea01600cd8_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openshift-apiserver-rhel8@sha256:b23f04d68e643fc7659566aebda8eec46aee97aa51a86a3333d475ea01600cd8_ppc64le" + }, + "product_reference": "openshift4/ose-openshift-apiserver-rhel8@sha256:b23f04d68e643fc7659566aebda8eec46aee97aa51a86a3333d475ea01600cd8_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:094b4da21d89fadb2a2bbed715b29a06633b11289e9fee76b2ecf5051947c2d2_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openshift-controller-manager-rhel8@sha256:094b4da21d89fadb2a2bbed715b29a06633b11289e9fee76b2ecf5051947c2d2_ppc64le" + }, + "product_reference": "openshift4/ose-openshift-controller-manager-rhel8@sha256:094b4da21d89fadb2a2bbed715b29a06633b11289e9fee76b2ecf5051947c2d2_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:2fffb0c87b2ebe3e426792646e16da574eb11bcfb1cf473cad77f140e109583d_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openshift-controller-manager-rhel8@sha256:2fffb0c87b2ebe3e426792646e16da574eb11bcfb1cf473cad77f140e109583d_amd64" + }, + "product_reference": "openshift4/ose-openshift-controller-manager-rhel8@sha256:2fffb0c87b2ebe3e426792646e16da574eb11bcfb1cf473cad77f140e109583d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:8cfcca1bcb414cae5c24e0c75d676513b69745c3ef107e11d3e94f8475e6742f_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openshift-controller-manager-rhel8@sha256:8cfcca1bcb414cae5c24e0c75d676513b69745c3ef107e11d3e94f8475e6742f_s390x" + }, + "product_reference": "openshift4/ose-openshift-controller-manager-rhel8@sha256:8cfcca1bcb414cae5c24e0c75d676513b69745c3ef107e11d3e94f8475e6742f_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:8ec042092a150ce3ef6793f8e3da9813a74c08c75535f372fbd5b5e7fc4268b9_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openshift-controller-manager-rhel8@sha256:8ec042092a150ce3ef6793f8e3da9813a74c08c75535f372fbd5b5e7fc4268b9_arm64" + }, + "product_reference": "openshift4/ose-openshift-controller-manager-rhel8@sha256:8ec042092a150ce3ef6793f8e3da9813a74c08c75535f372fbd5b5e7fc4268b9_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:5a4c4e5438e76b6373cee7269fdd299654a7def772f1499fc82a734cb722c148_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:5a4c4e5438e76b6373cee7269fdd299654a7def772f1499fc82a734cb722c148_amd64" + }, + "product_reference": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:5a4c4e5438e76b6373cee7269fdd299654a7def772f1499fc82a734cb722c148_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:61b6d453f5cbb9a51362259f8c4d152bf5474cc2f8e6c8b96cab38e8f163f51c_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:61b6d453f5cbb9a51362259f8c4d152bf5474cc2f8e6c8b96cab38e8f163f51c_ppc64le" + }, + "product_reference": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:61b6d453f5cbb9a51362259f8c4d152bf5474cc2f8e6c8b96cab38e8f163f51c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:8dd8c5c726c4f7db2d64701cad69fbc2629c66a7a02344152264e7783e10932c_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:8dd8c5c726c4f7db2d64701cad69fbc2629c66a7a02344152264e7783e10932c_s390x" + }, + "product_reference": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:8dd8c5c726c4f7db2d64701cad69fbc2629c66a7a02344152264e7783e10932c_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:f66d1ea0a1e4416daa31f5bc50c388c95cb018945425f8bda58f6ef975a3b4a1_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:f66d1ea0a1e4416daa31f5bc50c388c95cb018945425f8bda58f6ef975a3b4a1_arm64" + }, + "product_reference": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:f66d1ea0a1e4416daa31f5bc50c388c95cb018945425f8bda58f6ef975a3b4a1_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:222696e88002a623021d9609a001ad8a2b8f595a81cf16a0b9f1c5c1e5b5d8e9_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openshift-state-metrics-rhel8@sha256:222696e88002a623021d9609a001ad8a2b8f595a81cf16a0b9f1c5c1e5b5d8e9_amd64" + }, + "product_reference": "openshift4/ose-openshift-state-metrics-rhel8@sha256:222696e88002a623021d9609a001ad8a2b8f595a81cf16a0b9f1c5c1e5b5d8e9_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:3114d84ed30b6e6c0400d561f4ee4a78c7f627ce5031b663804516d2b1146b1e_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openshift-state-metrics-rhel8@sha256:3114d84ed30b6e6c0400d561f4ee4a78c7f627ce5031b663804516d2b1146b1e_ppc64le" + }, + "product_reference": "openshift4/ose-openshift-state-metrics-rhel8@sha256:3114d84ed30b6e6c0400d561f4ee4a78c7f627ce5031b663804516d2b1146b1e_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:58cdc58c255acbfd5ba37cb3cb083da36f428538685552c72567a7ba79ce179b_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openshift-state-metrics-rhel8@sha256:58cdc58c255acbfd5ba37cb3cb083da36f428538685552c72567a7ba79ce179b_arm64" + }, + "product_reference": "openshift4/ose-openshift-state-metrics-rhel8@sha256:58cdc58c255acbfd5ba37cb3cb083da36f428538685552c72567a7ba79ce179b_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:d927591fbea0921b7e8b4e2e30253f3087da83e51b8ba98d0ae15875348de3f0_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openshift-state-metrics-rhel8@sha256:d927591fbea0921b7e8b4e2e30253f3087da83e51b8ba98d0ae15875348de3f0_s390x" + }, + "product_reference": "openshift4/ose-openshift-state-metrics-rhel8@sha256:d927591fbea0921b7e8b4e2e30253f3087da83e51b8ba98d0ae15875348de3f0_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:18d747b0fc53b24f29343bb4429f6cec796e1a0b20e342b423b7fc9b8cdf26c8_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:18d747b0fc53b24f29343bb4429f6cec796e1a0b20e342b423b7fc9b8cdf26c8_ppc64le" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:18d747b0fc53b24f29343bb4429f6cec796e1a0b20e342b423b7fc9b8cdf26c8_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:4ed779b9e0173f5fe76aa2cd70ae7cc029ef2a537f443a8fe754c773e199fb86_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:4ed779b9e0173f5fe76aa2cd70ae7cc029ef2a537f443a8fe754c773e199fb86_s390x" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:4ed779b9e0173f5fe76aa2cd70ae7cc029ef2a537f443a8fe754c773e199fb86_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b70784f31fb36900986e7c428c52dd414aa13fb76f652812bf40607de7eeee7c_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b70784f31fb36900986e7c428c52dd414aa13fb76f652812bf40607de7eeee7c_arm64" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b70784f31fb36900986e7c428c52dd414aa13fb76f652812bf40607de7eeee7c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:fcdd1f2701b1dae0b0e98a1acb70bbfa71f0b4243b97e65d9fa1f5af4eef1d06_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:fcdd1f2701b1dae0b0e98a1acb70bbfa71f0b4243b97e65d9fa1f5af4eef1d06_amd64" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:fcdd1f2701b1dae0b0e98a1acb70bbfa71f0b4243b97e65d9fa1f5af4eef1d06_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:55a440c8b19e107aaa3d00bbb81ce5bf4ddf6d1f136c8ac1fe232f887bb8aa38_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:55a440c8b19e107aaa3d00bbb81ce5bf4ddf6d1f136c8ac1fe232f887bb8aa38_ppc64le" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:55a440c8b19e107aaa3d00bbb81ce5bf4ddf6d1f136c8ac1fe232f887bb8aa38_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:b7b229f28ce2646bc63cf02fa435aae4681c380f0b67cc0958707b1433b01260_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:b7b229f28ce2646bc63cf02fa435aae4681c380f0b67cc0958707b1433b01260_arm64" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:b7b229f28ce2646bc63cf02fa435aae4681c380f0b67cc0958707b1433b01260_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:e6e70fb43dc2cf322deb926487042cb4fadb21dae12d91f80862e9dfc6b64718_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:e6e70fb43dc2cf322deb926487042cb4fadb21dae12d91f80862e9dfc6b64718_s390x" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:e6e70fb43dc2cf322deb926487042cb4fadb21dae12d91f80862e9dfc6b64718_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:f2868a8dbca9568f6a43263c28c03344dfbfc0e0f3998f3ad70d49fb662fd956_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:f2868a8dbca9568f6a43263c28c03344dfbfc0e0f3998f3ad70d49fb662fd956_amd64" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:f2868a8dbca9568f6a43263c28c03344dfbfc0e0f3998f3ad70d49fb662fd956_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:04efdcd8012cb2870d6fa6ef805a1997205a6d6d585bd639bad5f0d9570e4422_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:04efdcd8012cb2870d6fa6ef805a1997205a6d6d585bd639bad5f0d9570e4422_arm64" + }, + "product_reference": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:04efdcd8012cb2870d6fa6ef805a1997205a6d6d585bd639bad5f0d9570e4422_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:2da96d45168a35ad9bfa31e8a72d0ac117e3cfbe46ca870ea38e0669fce63153_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:2da96d45168a35ad9bfa31e8a72d0ac117e3cfbe46ca870ea38e0669fce63153_amd64" + }, + "product_reference": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:2da96d45168a35ad9bfa31e8a72d0ac117e3cfbe46ca870ea38e0669fce63153_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:6573c675392317da43e87fd3bf58de2b0b494f58a013226304f969dec01c35ce_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:6573c675392317da43e87fd3bf58de2b0b494f58a013226304f969dec01c35ce_s390x" + }, + "product_reference": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:6573c675392317da43e87fd3bf58de2b0b494f58a013226304f969dec01c35ce_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:ccb2b086869c4af6a3c618ad6478a018c2a03a5553969e763cc3925b5cea4994_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:ccb2b086869c4af6a3c618ad6478a018c2a03a5553969e763cc3925b5cea4994_ppc64le" + }, + "product_reference": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:ccb2b086869c4af6a3c618ad6478a018c2a03a5553969e763cc3925b5cea4994_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:1bc37c010c1a028373997fe95f2b96c7f4a85c4edc3ed30129d5756a7fdb991c_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-operator-lifecycle-manager@sha256:1bc37c010c1a028373997fe95f2b96c7f4a85c4edc3ed30129d5756a7fdb991c_ppc64le" + }, + "product_reference": "openshift4/ose-operator-lifecycle-manager@sha256:1bc37c010c1a028373997fe95f2b96c7f4a85c4edc3ed30129d5756a7fdb991c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:504b0f2d12de6898356bf36b994e42c7ae75e9844ed647e95e618f3bc7ca1c9e_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-operator-lifecycle-manager@sha256:504b0f2d12de6898356bf36b994e42c7ae75e9844ed647e95e618f3bc7ca1c9e_arm64" + }, + "product_reference": "openshift4/ose-operator-lifecycle-manager@sha256:504b0f2d12de6898356bf36b994e42c7ae75e9844ed647e95e618f3bc7ca1c9e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:8c0cf405326c3c991e314faa727415c2e429c1b6e068dcad41a75c4afd6b2e73_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-operator-lifecycle-manager@sha256:8c0cf405326c3c991e314faa727415c2e429c1b6e068dcad41a75c4afd6b2e73_s390x" + }, + "product_reference": "openshift4/ose-operator-lifecycle-manager@sha256:8c0cf405326c3c991e314faa727415c2e429c1b6e068dcad41a75c4afd6b2e73_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:9534648cb84d81d9ffc640ea1a8076515358ac7ec81fe56a6eb3e9c5f7a73c4f_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-operator-lifecycle-manager@sha256:9534648cb84d81d9ffc640ea1a8076515358ac7ec81fe56a6eb3e9c5f7a73c4f_amd64" + }, + "product_reference": "openshift4/ose-operator-lifecycle-manager@sha256:9534648cb84d81d9ffc640ea1a8076515358ac7ec81fe56a6eb3e9c5f7a73c4f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-marketplace@sha256:7e3d4f18d60bd1a2b007fe7bfb5bbd05885f0e9815f97cad5c58f7b38bac0e9e_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-operator-marketplace@sha256:7e3d4f18d60bd1a2b007fe7bfb5bbd05885f0e9815f97cad5c58f7b38bac0e9e_s390x" + }, + "product_reference": "openshift4/ose-operator-marketplace@sha256:7e3d4f18d60bd1a2b007fe7bfb5bbd05885f0e9815f97cad5c58f7b38bac0e9e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-marketplace@sha256:a579f41fcf272cc60465ffce9dc95a6bba60cbeb16bab693dbf6996e39d1009a_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-operator-marketplace@sha256:a579f41fcf272cc60465ffce9dc95a6bba60cbeb16bab693dbf6996e39d1009a_amd64" + }, + "product_reference": "openshift4/ose-operator-marketplace@sha256:a579f41fcf272cc60465ffce9dc95a6bba60cbeb16bab693dbf6996e39d1009a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-marketplace@sha256:ec064ccf2d15b8075a606bd0f1d184a386217ad18d1b45e7edea1989477bab4c_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-operator-marketplace@sha256:ec064ccf2d15b8075a606bd0f1d184a386217ad18d1b45e7edea1989477bab4c_arm64" + }, + "product_reference": "openshift4/ose-operator-marketplace@sha256:ec064ccf2d15b8075a606bd0f1d184a386217ad18d1b45e7edea1989477bab4c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-marketplace@sha256:f3ee39163b292ca2fe1a533b50183aa69534616871f483b2bec2cc1488500bd8_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-operator-marketplace@sha256:f3ee39163b292ca2fe1a533b50183aa69534616871f483b2bec2cc1488500bd8_ppc64le" + }, + "product_reference": "openshift4/ose-operator-marketplace@sha256:f3ee39163b292ca2fe1a533b50183aa69534616871f483b2bec2cc1488500bd8_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-registry@sha256:561194147a7eb5d00677d55c04d25c583dd71469a91f1deea9a2d1488c0d9f6d_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-operator-registry@sha256:561194147a7eb5d00677d55c04d25c583dd71469a91f1deea9a2d1488c0d9f6d_amd64" + }, + "product_reference": "openshift4/ose-operator-registry@sha256:561194147a7eb5d00677d55c04d25c583dd71469a91f1deea9a2d1488c0d9f6d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-registry@sha256:94a5962c249dcff658b5ef724197b459fc2f85260078b2a5e1349fd76f42fb5d_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-operator-registry@sha256:94a5962c249dcff658b5ef724197b459fc2f85260078b2a5e1349fd76f42fb5d_s390x" + }, + "product_reference": "openshift4/ose-operator-registry@sha256:94a5962c249dcff658b5ef724197b459fc2f85260078b2a5e1349fd76f42fb5d_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-registry@sha256:ceb70e9059b4e8295243c7304cac2c6064fea218ab494a523a35b4297472d3fe_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-operator-registry@sha256:ceb70e9059b4e8295243c7304cac2c6064fea218ab494a523a35b4297472d3fe_ppc64le" + }, + "product_reference": "openshift4/ose-operator-registry@sha256:ceb70e9059b4e8295243c7304cac2c6064fea218ab494a523a35b4297472d3fe_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-registry@sha256:d15bb23ba551ffef2d52b04ddea2b2075dd1f2d8c94f29a6a51f452db4b631ed_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-operator-registry@sha256:d15bb23ba551ffef2d52b04ddea2b2075dd1f2d8c94f29a6a51f452db4b631ed_arm64" + }, + "product_reference": "openshift4/ose-operator-registry@sha256:d15bb23ba551ffef2d52b04ddea2b2075dd1f2d8c94f29a6a51f452db4b631ed_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-sdk-rhel8@sha256:120fd3d63fb4b19fe58d336984869ffba972c3b63513d215bec1efb770aca8ae_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-operator-sdk-rhel8@sha256:120fd3d63fb4b19fe58d336984869ffba972c3b63513d215bec1efb770aca8ae_arm64" + }, + "product_reference": "openshift4/ose-operator-sdk-rhel8@sha256:120fd3d63fb4b19fe58d336984869ffba972c3b63513d215bec1efb770aca8ae_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-sdk-rhel8@sha256:2595ab6a45f9e1fc27c48fe9f73a5119e2d40bccd54cdcd14005036af1abd8f6_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-operator-sdk-rhel8@sha256:2595ab6a45f9e1fc27c48fe9f73a5119e2d40bccd54cdcd14005036af1abd8f6_ppc64le" + }, + "product_reference": "openshift4/ose-operator-sdk-rhel8@sha256:2595ab6a45f9e1fc27c48fe9f73a5119e2d40bccd54cdcd14005036af1abd8f6_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-sdk-rhel8@sha256:807172a4bdc98fd0fb78ab537ddb55353266396ae9e6746b7e4f7e597fe86ad7_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-operator-sdk-rhel8@sha256:807172a4bdc98fd0fb78ab537ddb55353266396ae9e6746b7e4f7e597fe86ad7_s390x" + }, + "product_reference": "openshift4/ose-operator-sdk-rhel8@sha256:807172a4bdc98fd0fb78ab537ddb55353266396ae9e6746b7e4f7e597fe86ad7_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-sdk-rhel8@sha256:f6f195f361335efbcc9f39be7d785c92706676f4b4185464b5f62b9476021bc3_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-operator-sdk-rhel8@sha256:f6f195f361335efbcc9f39be7d785c92706676f4b4185464b5f62b9476021bc3_amd64" + }, + "product_reference": "openshift4/ose-operator-sdk-rhel8@sha256:f6f195f361335efbcc9f39be7d785c92706676f4b4185464b5f62b9476021bc3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:82d567c792ff4b2dbc05aed5392de6f57f502028c415cb6f9dce7be20316b46a_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ovirt-machine-controllers-rhel8@sha256:82d567c792ff4b2dbc05aed5392de6f57f502028c415cb6f9dce7be20316b46a_amd64" + }, + "product_reference": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:82d567c792ff4b2dbc05aed5392de6f57f502028c415cb6f9dce7be20316b46a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:bb3aa7b4e0c7eddc3433b14f63964e15e489408d42c5288ed9593dc1efa6da0a_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ovirt-machine-controllers-rhel8@sha256:bb3aa7b4e0c7eddc3433b14f63964e15e489408d42c5288ed9593dc1efa6da0a_ppc64le" + }, + "product_reference": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:bb3aa7b4e0c7eddc3433b14f63964e15e489408d42c5288ed9593dc1efa6da0a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:c0e2a218e94237defe69eeb99afe432604c658354679c4813654b51f84290183_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ovirt-machine-controllers-rhel8@sha256:c0e2a218e94237defe69eeb99afe432604c658354679c4813654b51f84290183_arm64" + }, + "product_reference": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:c0e2a218e94237defe69eeb99afe432604c658354679c4813654b51f84290183_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d81ade2dd910aca00613a0c08bb5533aed4de6c94c711872c6bce587db44498d_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d81ade2dd910aca00613a0c08bb5533aed4de6c94c711872c6bce587db44498d_s390x" + }, + "product_reference": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:d81ade2dd910aca00613a0c08bb5533aed4de6c94c711872c6bce587db44498d_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-pod@sha256:052586d30e457e1dda762799645137c0593c4a0c2de388acf1d5d7c83e2ab068_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-pod@sha256:052586d30e457e1dda762799645137c0593c4a0c2de388acf1d5d7c83e2ab068_amd64" + }, + "product_reference": "openshift4/ose-pod@sha256:052586d30e457e1dda762799645137c0593c4a0c2de388acf1d5d7c83e2ab068_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-pod@sha256:3c1fb55eaa133751e695f54e903c9f0565bba5f9eafec023ce865d6a525fcada_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-pod@sha256:3c1fb55eaa133751e695f54e903c9f0565bba5f9eafec023ce865d6a525fcada_s390x" + }, + "product_reference": "openshift4/ose-pod@sha256:3c1fb55eaa133751e695f54e903c9f0565bba5f9eafec023ce865d6a525fcada_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-pod@sha256:4606ba1d3a5b90d2e57aaad740967f7321ba7dad553093faba628b227b8764e2_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-pod@sha256:4606ba1d3a5b90d2e57aaad740967f7321ba7dad553093faba628b227b8764e2_arm64" + }, + "product_reference": "openshift4/ose-pod@sha256:4606ba1d3a5b90d2e57aaad740967f7321ba7dad553093faba628b227b8764e2_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-pod@sha256:ed8a5ad238ce429736c0ae3b9103fef46cd0cef2cfa4ddef12bc797ba32d4e7a_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-pod@sha256:ed8a5ad238ce429736c0ae3b9103fef46cd0cef2cfa4ddef12bc797ba32d4e7a_ppc64le" + }, + "product_reference": "openshift4/ose-pod@sha256:ed8a5ad238ce429736c0ae3b9103fef46cd0cef2cfa4ddef12bc797ba32d4e7a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:43eef2c6075275e841b30d89b79140c392b2fb5eaa717392118cfff1ccb30bc1_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:43eef2c6075275e841b30d89b79140c392b2fb5eaa717392118cfff1ccb30bc1_amd64" + }, + "product_reference": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:43eef2c6075275e841b30d89b79140c392b2fb5eaa717392118cfff1ccb30bc1_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:5adcbda53336c7dd32610b83aca742cc1b42dc64792db4997d3b16def03f243b_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:5adcbda53336c7dd32610b83aca742cc1b42dc64792db4997d3b16def03f243b_ppc64le" + }, + "product_reference": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:5adcbda53336c7dd32610b83aca742cc1b42dc64792db4997d3b16def03f243b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:427dde9a0b2c4dcc3d514f3916d8deb37b99c501393cae2714bc5ef41c3f905c_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-powervs-block-csi-driver-rhel8@sha256:427dde9a0b2c4dcc3d514f3916d8deb37b99c501393cae2714bc5ef41c3f905c_ppc64le" + }, + "product_reference": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:427dde9a0b2c4dcc3d514f3916d8deb37b99c501393cae2714bc5ef41c3f905c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:703e09fbb78181d2c0d56e85220ce7272fc769752a7d90ba3a9a1fbda3b17098_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-powervs-block-csi-driver-rhel8@sha256:703e09fbb78181d2c0d56e85220ce7272fc769752a7d90ba3a9a1fbda3b17098_amd64" + }, + "product_reference": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:703e09fbb78181d2c0d56e85220ce7272fc769752a7d90ba3a9a1fbda3b17098_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:215ace04a721e1046a711fe0353fbd271c8d0061e158eb715b2654005adbe431_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:215ace04a721e1046a711fe0353fbd271c8d0061e158eb715b2654005adbe431_amd64" + }, + "product_reference": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:215ace04a721e1046a711fe0353fbd271c8d0061e158eb715b2654005adbe431_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:979e46631d2863c8e5c0359c132ccf7a859cff33e12d977085f0b8a4e25f6be0_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:979e46631d2863c8e5c0359c132ccf7a859cff33e12d977085f0b8a4e25f6be0_ppc64le" + }, + "product_reference": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:979e46631d2863c8e5c0359c132ccf7a859cff33e12d977085f0b8a4e25f6be0_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:b1a054bc5044f37d42057b418f9392bab69db82a428a64922cd9dda9e9ded0ea_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-powervs-machine-controllers-rhel8@sha256:b1a054bc5044f37d42057b418f9392bab69db82a428a64922cd9dda9e9ded0ea_amd64" + }, + "product_reference": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:b1a054bc5044f37d42057b418f9392bab69db82a428a64922cd9dda9e9ded0ea_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:cd19eefb7b96920e9c0ed867169a4eb82c2d0b611077c18b6cb6fb5159b4d1c8_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-powervs-machine-controllers-rhel8@sha256:cd19eefb7b96920e9c0ed867169a4eb82c2d0b611077c18b6cb6fb5159b4d1c8_ppc64le" + }, + "product_reference": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:cd19eefb7b96920e9c0ed867169a4eb82c2d0b611077c18b6cb6fb5159b4d1c8_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prom-label-proxy@sha256:09214fe2dbcb65aabf82cdd5002d5bd77718070dc78d37184cd58dee27655a28_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prom-label-proxy@sha256:09214fe2dbcb65aabf82cdd5002d5bd77718070dc78d37184cd58dee27655a28_amd64" + }, + "product_reference": "openshift4/ose-prom-label-proxy@sha256:09214fe2dbcb65aabf82cdd5002d5bd77718070dc78d37184cd58dee27655a28_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prom-label-proxy@sha256:17991fec9b0b1b762ece36f084923ae44d76d54a1912134cc0b89d98143799d9_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prom-label-proxy@sha256:17991fec9b0b1b762ece36f084923ae44d76d54a1912134cc0b89d98143799d9_s390x" + }, + "product_reference": "openshift4/ose-prom-label-proxy@sha256:17991fec9b0b1b762ece36f084923ae44d76d54a1912134cc0b89d98143799d9_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prom-label-proxy@sha256:6a111969f32229263e0e1d4a23eb42c747e3310226d63c63a85702a5f66c4e8d_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prom-label-proxy@sha256:6a111969f32229263e0e1d4a23eb42c747e3310226d63c63a85702a5f66c4e8d_arm64" + }, + "product_reference": "openshift4/ose-prom-label-proxy@sha256:6a111969f32229263e0e1d4a23eb42c747e3310226d63c63a85702a5f66c4e8d_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prom-label-proxy@sha256:7dc5990d4010f4f53756256c058d5130148ea4c5a3f3c2a2a9740056970809db_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prom-label-proxy@sha256:7dc5990d4010f4f53756256c058d5130148ea4c5a3f3c2a2a9740056970809db_ppc64le" + }, + "product_reference": "openshift4/ose-prom-label-proxy@sha256:7dc5990d4010f4f53756256c058d5130148ea4c5a3f3c2a2a9740056970809db_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:003ac56ca597f66c86659f252a38ecfe76dfa8a477730e1296cc6daf12cede37_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prometheus-alertmanager@sha256:003ac56ca597f66c86659f252a38ecfe76dfa8a477730e1296cc6daf12cede37_ppc64le" + }, + "product_reference": "openshift4/ose-prometheus-alertmanager@sha256:003ac56ca597f66c86659f252a38ecfe76dfa8a477730e1296cc6daf12cede37_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:af5b105d3aaedffa5028273ba8a30bc2ac226e1442c9a5c2fce7c1342446fe05_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prometheus-alertmanager@sha256:af5b105d3aaedffa5028273ba8a30bc2ac226e1442c9a5c2fce7c1342446fe05_s390x" + }, + "product_reference": "openshift4/ose-prometheus-alertmanager@sha256:af5b105d3aaedffa5028273ba8a30bc2ac226e1442c9a5c2fce7c1342446fe05_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:b5f94b44220d8a693942d0c323823e03728a7c3939bbb5978cd0694a3674ea56_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prometheus-alertmanager@sha256:b5f94b44220d8a693942d0c323823e03728a7c3939bbb5978cd0694a3674ea56_arm64" + }, + "product_reference": "openshift4/ose-prometheus-alertmanager@sha256:b5f94b44220d8a693942d0c323823e03728a7c3939bbb5978cd0694a3674ea56_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:f573af6d2a6f3d5d23712675424f1f4dd3cbf5d7172b706e69152ce3941bc6b3_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prometheus-alertmanager@sha256:f573af6d2a6f3d5d23712675424f1f4dd3cbf5d7172b706e69152ce3941bc6b3_amd64" + }, + "product_reference": "openshift4/ose-prometheus-alertmanager@sha256:f573af6d2a6f3d5d23712675424f1f4dd3cbf5d7172b706e69152ce3941bc6b3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:1da4fc0ed2387280b075d64e8c9044ab705cb624dbfdbde39f7a8d3082404797_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prometheus-config-reloader@sha256:1da4fc0ed2387280b075d64e8c9044ab705cb624dbfdbde39f7a8d3082404797_arm64" + }, + "product_reference": "openshift4/ose-prometheus-config-reloader@sha256:1da4fc0ed2387280b075d64e8c9044ab705cb624dbfdbde39f7a8d3082404797_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:268b1e23967b11489e0484cf13273606d463359e033987ca91b4d25928508ee5_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prometheus-config-reloader@sha256:268b1e23967b11489e0484cf13273606d463359e033987ca91b4d25928508ee5_s390x" + }, + "product_reference": "openshift4/ose-prometheus-config-reloader@sha256:268b1e23967b11489e0484cf13273606d463359e033987ca91b4d25928508ee5_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:d50e3843e8fa12b41a6e8a6aea34ebc04592a3f20b12a06f40d2aacd8a646a19_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prometheus-config-reloader@sha256:d50e3843e8fa12b41a6e8a6aea34ebc04592a3f20b12a06f40d2aacd8a646a19_ppc64le" + }, + "product_reference": "openshift4/ose-prometheus-config-reloader@sha256:d50e3843e8fa12b41a6e8a6aea34ebc04592a3f20b12a06f40d2aacd8a646a19_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:df526d9f9dfc6c307bcf91cbbd6086bdcf08fe11ded4b4f379cd05b2614e43be_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prometheus-config-reloader@sha256:df526d9f9dfc6c307bcf91cbbd6086bdcf08fe11ded4b4f379cd05b2614e43be_amd64" + }, + "product_reference": "openshift4/ose-prometheus-config-reloader@sha256:df526d9f9dfc6c307bcf91cbbd6086bdcf08fe11ded4b4f379cd05b2614e43be_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:1dd319152215858cab857d4774e16845231cb6cd488077f1745dc654063cb545_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prometheus-node-exporter@sha256:1dd319152215858cab857d4774e16845231cb6cd488077f1745dc654063cb545_amd64" + }, + "product_reference": "openshift4/ose-prometheus-node-exporter@sha256:1dd319152215858cab857d4774e16845231cb6cd488077f1745dc654063cb545_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:880e4345660a7f4d393f72e9f382c4436789216c94d1c52df5beb82c5bc0bb3e_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prometheus-node-exporter@sha256:880e4345660a7f4d393f72e9f382c4436789216c94d1c52df5beb82c5bc0bb3e_arm64" + }, + "product_reference": "openshift4/ose-prometheus-node-exporter@sha256:880e4345660a7f4d393f72e9f382c4436789216c94d1c52df5beb82c5bc0bb3e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:8aa5468447aa8499cb8ba535aa29e4c789c24724d7982bce259474f0cb17f54a_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prometheus-node-exporter@sha256:8aa5468447aa8499cb8ba535aa29e4c789c24724d7982bce259474f0cb17f54a_ppc64le" + }, + "product_reference": "openshift4/ose-prometheus-node-exporter@sha256:8aa5468447aa8499cb8ba535aa29e4c789c24724d7982bce259474f0cb17f54a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:ae08d054d74a47fce9c0285eaa3f795ecdb3a74d63ffd6a62e4258d02d4112dd_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prometheus-node-exporter@sha256:ae08d054d74a47fce9c0285eaa3f795ecdb3a74d63ffd6a62e4258d02d4112dd_s390x" + }, + "product_reference": "openshift4/ose-prometheus-node-exporter@sha256:ae08d054d74a47fce9c0285eaa3f795ecdb3a74d63ffd6a62e4258d02d4112dd_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:697682edc92d58930f499a3b3e7a103fe1dc70d980b0ad30b015b0c811d4ee82_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:697682edc92d58930f499a3b3e7a103fe1dc70d980b0ad30b015b0c811d4ee82_ppc64le" + }, + "product_reference": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:697682edc92d58930f499a3b3e7a103fe1dc70d980b0ad30b015b0c811d4ee82_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:9326d706f188fba493d05b907aceeefc129f8c8ffc067be4bc9498f7fcd9b247_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:9326d706f188fba493d05b907aceeefc129f8c8ffc067be4bc9498f7fcd9b247_arm64" + }, + "product_reference": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:9326d706f188fba493d05b907aceeefc129f8c8ffc067be4bc9498f7fcd9b247_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:98d9cf23b398cd50ca8683b64d598713b2510825c8fb491f987e298f8945650f_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:98d9cf23b398cd50ca8683b64d598713b2510825c8fb491f987e298f8945650f_amd64" + }, + "product_reference": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:98d9cf23b398cd50ca8683b64d598713b2510825c8fb491f987e298f8945650f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:c0605a705e8769aaf3c2325282b12f4f86586a02158419f92f8455c76ed01cd6_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:c0605a705e8769aaf3c2325282b12f4f86586a02158419f92f8455c76ed01cd6_s390x" + }, + "product_reference": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:c0605a705e8769aaf3c2325282b12f4f86586a02158419f92f8455c76ed01cd6_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator@sha256:011d742fee9d1fd4cda91c1be9755be0b750ef804c970287bdc3e435e8d089c1_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prometheus-operator@sha256:011d742fee9d1fd4cda91c1be9755be0b750ef804c970287bdc3e435e8d089c1_s390x" + }, + "product_reference": "openshift4/ose-prometheus-operator@sha256:011d742fee9d1fd4cda91c1be9755be0b750ef804c970287bdc3e435e8d089c1_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator@sha256:1f6142104aea1227b378db8883a9f262f7e8e68f36f12321377d56a58c52c436_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prometheus-operator@sha256:1f6142104aea1227b378db8883a9f262f7e8e68f36f12321377d56a58c52c436_amd64" + }, + "product_reference": "openshift4/ose-prometheus-operator@sha256:1f6142104aea1227b378db8883a9f262f7e8e68f36f12321377d56a58c52c436_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator@sha256:4a60381d862a76004e0fe6a90d4f07eef6efecd200ad1fe9a8d44ac2dbf58fa1_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prometheus-operator@sha256:4a60381d862a76004e0fe6a90d4f07eef6efecd200ad1fe9a8d44ac2dbf58fa1_ppc64le" + }, + "product_reference": "openshift4/ose-prometheus-operator@sha256:4a60381d862a76004e0fe6a90d4f07eef6efecd200ad1fe9a8d44ac2dbf58fa1_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator@sha256:b0aac8d86cae3b3a968c982a726d92d244c10350f033a5e53b0a3e07f4eb6dae_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prometheus-operator@sha256:b0aac8d86cae3b3a968c982a726d92d244c10350f033a5e53b0a3e07f4eb6dae_arm64" + }, + "product_reference": "openshift4/ose-prometheus-operator@sha256:b0aac8d86cae3b3a968c982a726d92d244c10350f033a5e53b0a3e07f4eb6dae_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus@sha256:11a97afa055b4a80f1c2ef076b4cd92610317cb3a2e42faa7f3b7812abfd727a_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prometheus@sha256:11a97afa055b4a80f1c2ef076b4cd92610317cb3a2e42faa7f3b7812abfd727a_arm64" + }, + "product_reference": "openshift4/ose-prometheus@sha256:11a97afa055b4a80f1c2ef076b4cd92610317cb3a2e42faa7f3b7812abfd727a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus@sha256:24b1d1d005125f6bf49f3897e4e2b149346fb579857ddda222490c8599f359a2_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prometheus@sha256:24b1d1d005125f6bf49f3897e4e2b149346fb579857ddda222490c8599f359a2_ppc64le" + }, + "product_reference": "openshift4/ose-prometheus@sha256:24b1d1d005125f6bf49f3897e4e2b149346fb579857ddda222490c8599f359a2_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus@sha256:66f242e9716397c0b9b33174b71ca27bfbfada4a8f843bce83c88692032b5672_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prometheus@sha256:66f242e9716397c0b9b33174b71ca27bfbfada4a8f843bce83c88692032b5672_s390x" + }, + "product_reference": "openshift4/ose-prometheus@sha256:66f242e9716397c0b9b33174b71ca27bfbfada4a8f843bce83c88692032b5672_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus@sha256:8001c2fd6f19e95762d5db95761e8ba3c860737a2d181c9f1f062054d77827fa_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-prometheus@sha256:8001c2fd6f19e95762d5db95761e8ba3c860737a2d181c9f1f062054d77827fa_amd64" + }, + "product_reference": "openshift4/ose-prometheus@sha256:8001c2fd6f19e95762d5db95761e8ba3c860737a2d181c9f1f062054d77827fa_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ptp-operator@sha256:06589a4329529a8a3a33cd4fd472e09194e458800d7768c718d92c28b8434380_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ptp-operator@sha256:06589a4329529a8a3a33cd4fd472e09194e458800d7768c718d92c28b8434380_arm64" + }, + "product_reference": "openshift4/ose-ptp-operator@sha256:06589a4329529a8a3a33cd4fd472e09194e458800d7768c718d92c28b8434380_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ptp-operator@sha256:369d5bc04ed6d8aa934813a9695fe7b7f976b8061b1690712bece367b3d0e1ca_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ptp-operator@sha256:369d5bc04ed6d8aa934813a9695fe7b7f976b8061b1690712bece367b3d0e1ca_ppc64le" + }, + "product_reference": "openshift4/ose-ptp-operator@sha256:369d5bc04ed6d8aa934813a9695fe7b7f976b8061b1690712bece367b3d0e1ca_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ptp-operator@sha256:8025ab3d5508dc8ef7b70e8601f2faa48890dd1ee98a59d1a50e462c2e334595_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ptp-operator@sha256:8025ab3d5508dc8ef7b70e8601f2faa48890dd1ee98a59d1a50e462c2e334595_amd64" + }, + "product_reference": "openshift4/ose-ptp-operator@sha256:8025ab3d5508dc8ef7b70e8601f2faa48890dd1ee98a59d1a50e462c2e334595_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ptp@sha256:17f6aa98ce266c4d5f55f4625ab8006aa8ee4eddea63e013da9ce4a844bc9e0f_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ptp@sha256:17f6aa98ce266c4d5f55f4625ab8006aa8ee4eddea63e013da9ce4a844bc9e0f_arm64" + }, + "product_reference": "openshift4/ose-ptp@sha256:17f6aa98ce266c4d5f55f4625ab8006aa8ee4eddea63e013da9ce4a844bc9e0f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ptp@sha256:336d32282380765c821f9884f69ab5a3dddf1e860993a7dccdbd61401d5d82d1_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ptp@sha256:336d32282380765c821f9884f69ab5a3dddf1e860993a7dccdbd61401d5d82d1_amd64" + }, + "product_reference": "openshift4/ose-ptp@sha256:336d32282380765c821f9884f69ab5a3dddf1e860993a7dccdbd61401d5d82d1_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ptp@sha256:b52e23ea264b29101bf9ff5beb093badb6d929a2901a008eb1c6afb8b4a1f21c_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-ptp@sha256:b52e23ea264b29101bf9ff5beb093badb6d929a2901a008eb1c6afb8b4a1f21c_ppc64le" + }, + "product_reference": "openshift4/ose-ptp@sha256:b52e23ea264b29101bf9ff5beb093badb6d929a2901a008eb1c6afb8b4a1f21c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sdn-rhel8@sha256:1c83a867da3bae6ec076a3aa81981b290738dd92b5be163a60db4191b5da423d_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-sdn-rhel8@sha256:1c83a867da3bae6ec076a3aa81981b290738dd92b5be163a60db4191b5da423d_amd64" + }, + "product_reference": "openshift4/ose-sdn-rhel8@sha256:1c83a867da3bae6ec076a3aa81981b290738dd92b5be163a60db4191b5da423d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sdn-rhel8@sha256:2c3e11fa1b0598a7abc14cd66ffa75498615d04def63e70727f1af08e67621b1_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-sdn-rhel8@sha256:2c3e11fa1b0598a7abc14cd66ffa75498615d04def63e70727f1af08e67621b1_arm64" + }, + "product_reference": "openshift4/ose-sdn-rhel8@sha256:2c3e11fa1b0598a7abc14cd66ffa75498615d04def63e70727f1af08e67621b1_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sdn-rhel8@sha256:632ef152f1851b4716572273291e64d24447a67b081b6ce9f23ed427422307cd_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-sdn-rhel8@sha256:632ef152f1851b4716572273291e64d24447a67b081b6ce9f23ed427422307cd_ppc64le" + }, + "product_reference": "openshift4/ose-sdn-rhel8@sha256:632ef152f1851b4716572273291e64d24447a67b081b6ce9f23ed427422307cd_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sdn-rhel8@sha256:a4fb8c402efc847d9af7d86fa7b21fa0df6a394add8cc1cd8b096c6f5176aad3_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-sdn-rhel8@sha256:a4fb8c402efc847d9af7d86fa7b21fa0df6a394add8cc1cd8b096c6f5176aad3_s390x" + }, + "product_reference": "openshift4/ose-sdn-rhel8@sha256:a4fb8c402efc847d9af7d86fa7b21fa0df6a394add8cc1cd8b096c6f5176aad3_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-service-ca-operator@sha256:27f60fc9111585700940248a498a33186a063097cd90ea37199daabaf917c927_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-service-ca-operator@sha256:27f60fc9111585700940248a498a33186a063097cd90ea37199daabaf917c927_s390x" + }, + "product_reference": "openshift4/ose-service-ca-operator@sha256:27f60fc9111585700940248a498a33186a063097cd90ea37199daabaf917c927_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-service-ca-operator@sha256:84daeb8a1ee9ca43c43bc531a224023f0cd9c5217d036706cb7b0187f6c60231_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-service-ca-operator@sha256:84daeb8a1ee9ca43c43bc531a224023f0cd9c5217d036706cb7b0187f6c60231_amd64" + }, + "product_reference": "openshift4/ose-service-ca-operator@sha256:84daeb8a1ee9ca43c43bc531a224023f0cd9c5217d036706cb7b0187f6c60231_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-service-ca-operator@sha256:c3c55ee5f55186116fa05f7e9c115ee42a05a311b9ddd783d275aaa6bc9f4dbb_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-service-ca-operator@sha256:c3c55ee5f55186116fa05f7e9c115ee42a05a311b9ddd783d275aaa6bc9f4dbb_ppc64le" + }, + "product_reference": "openshift4/ose-service-ca-operator@sha256:c3c55ee5f55186116fa05f7e9c115ee42a05a311b9ddd783d275aaa6bc9f4dbb_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-service-ca-operator@sha256:cb2e368933eea20c369233b9d2237372f0628d269bd2ab74354b0ae3f8f95aae_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-service-ca-operator@sha256:cb2e368933eea20c369233b9d2237372f0628d269bd2ab74354b0ae3f8f95aae_arm64" + }, + "product_reference": "openshift4/ose-service-ca-operator@sha256:cb2e368933eea20c369233b9d2237372f0628d269bd2ab74354b0ae3f8f95aae_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-dp-admission-controller@sha256:48a16d032b6934270bc5082132ce61db965089cd449e27017403782d7ee756c4_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-sriov-dp-admission-controller@sha256:48a16d032b6934270bc5082132ce61db965089cd449e27017403782d7ee756c4_amd64" + }, + "product_reference": "openshift4/ose-sriov-dp-admission-controller@sha256:48a16d032b6934270bc5082132ce61db965089cd449e27017403782d7ee756c4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-dp-admission-controller@sha256:6d0db5138937a9a01a500f73bce00b5a11b3973aef124d713b6d1568bef1e54b_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-sriov-dp-admission-controller@sha256:6d0db5138937a9a01a500f73bce00b5a11b3973aef124d713b6d1568bef1e54b_ppc64le" + }, + "product_reference": "openshift4/ose-sriov-dp-admission-controller@sha256:6d0db5138937a9a01a500f73bce00b5a11b3973aef124d713b6d1568bef1e54b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-dp-admission-controller@sha256:85fceff968dc1b54edabce7a1a1cb04bde91f82302840923c2595d89041f3df7_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-sriov-dp-admission-controller@sha256:85fceff968dc1b54edabce7a1a1cb04bde91f82302840923c2595d89041f3df7_arm64" + }, + "product_reference": "openshift4/ose-sriov-dp-admission-controller@sha256:85fceff968dc1b54edabce7a1a1cb04bde91f82302840923c2595d89041f3df7_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-infiniband-cni@sha256:767bf9ece1744ff8a22445f82d1a48d72ad2b6a7588889c9970381fc41f28992_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-sriov-infiniband-cni@sha256:767bf9ece1744ff8a22445f82d1a48d72ad2b6a7588889c9970381fc41f28992_arm64" + }, + "product_reference": "openshift4/ose-sriov-infiniband-cni@sha256:767bf9ece1744ff8a22445f82d1a48d72ad2b6a7588889c9970381fc41f28992_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-infiniband-cni@sha256:8f33db44cfe95dc66ae9aefd391bcf36ad5d9344a9e3f5c1fedaf3ee2c519582_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-sriov-infiniband-cni@sha256:8f33db44cfe95dc66ae9aefd391bcf36ad5d9344a9e3f5c1fedaf3ee2c519582_ppc64le" + }, + "product_reference": "openshift4/ose-sriov-infiniband-cni@sha256:8f33db44cfe95dc66ae9aefd391bcf36ad5d9344a9e3f5c1fedaf3ee2c519582_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-infiniband-cni@sha256:ded85ecda6adb848777b08064c5a0ccc63535c1392ab5cdb66eee15200baa32d_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-sriov-infiniband-cni@sha256:ded85ecda6adb848777b08064c5a0ccc63535c1392ab5cdb66eee15200baa32d_amd64" + }, + "product_reference": "openshift4/ose-sriov-infiniband-cni@sha256:ded85ecda6adb848777b08064c5a0ccc63535c1392ab5cdb66eee15200baa32d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-network-config-daemon@sha256:523d18f994c0dca5d532c257cbd5d18a9888958f745028e0c9ffa0d9f888ee56_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-sriov-network-config-daemon@sha256:523d18f994c0dca5d532c257cbd5d18a9888958f745028e0c9ffa0d9f888ee56_arm64" + }, + "product_reference": "openshift4/ose-sriov-network-config-daemon@sha256:523d18f994c0dca5d532c257cbd5d18a9888958f745028e0c9ffa0d9f888ee56_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-network-config-daemon@sha256:afbbba806d6f69eda22743d97fc50c15a4dc848ee069d01de62a2f068b5f7f69_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-sriov-network-config-daemon@sha256:afbbba806d6f69eda22743d97fc50c15a4dc848ee069d01de62a2f068b5f7f69_amd64" + }, + "product_reference": "openshift4/ose-sriov-network-config-daemon@sha256:afbbba806d6f69eda22743d97fc50c15a4dc848ee069d01de62a2f068b5f7f69_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-network-config-daemon@sha256:f9d94678e2b311441e2e95680c09c7af1515153ae56d94036e937e68fd4aab9a_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-sriov-network-config-daemon@sha256:f9d94678e2b311441e2e95680c09c7af1515153ae56d94036e937e68fd4aab9a_ppc64le" + }, + "product_reference": "openshift4/ose-sriov-network-config-daemon@sha256:f9d94678e2b311441e2e95680c09c7af1515153ae56d94036e937e68fd4aab9a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-network-device-plugin@sha256:90311f2b4238f1d1dd971e147fd0e974c755583ddbd9869aee946edbba750281_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-sriov-network-device-plugin@sha256:90311f2b4238f1d1dd971e147fd0e974c755583ddbd9869aee946edbba750281_amd64" + }, + "product_reference": "openshift4/ose-sriov-network-device-plugin@sha256:90311f2b4238f1d1dd971e147fd0e974c755583ddbd9869aee946edbba750281_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-network-device-plugin@sha256:d207a94593aec1dcf51393db4fd1813e21c7ac9d828631230d9ae2c557336514_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-sriov-network-device-plugin@sha256:d207a94593aec1dcf51393db4fd1813e21c7ac9d828631230d9ae2c557336514_arm64" + }, + "product_reference": "openshift4/ose-sriov-network-device-plugin@sha256:d207a94593aec1dcf51393db4fd1813e21c7ac9d828631230d9ae2c557336514_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-network-device-plugin@sha256:fa37c9ce6e017a1c01964fdb25ea08b039aab0d60008fffd7fec3d46e1fbd7e5_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-sriov-network-device-plugin@sha256:fa37c9ce6e017a1c01964fdb25ea08b039aab0d60008fffd7fec3d46e1fbd7e5_ppc64le" + }, + "product_reference": "openshift4/ose-sriov-network-device-plugin@sha256:fa37c9ce6e017a1c01964fdb25ea08b039aab0d60008fffd7fec3d46e1fbd7e5_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-network-operator@sha256:5eb9a0742bfe48b1e3812d0e6419e9ed84a7aa0e083d91b60e254efe96dfd3e8_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-sriov-network-operator@sha256:5eb9a0742bfe48b1e3812d0e6419e9ed84a7aa0e083d91b60e254efe96dfd3e8_arm64" + }, + "product_reference": "openshift4/ose-sriov-network-operator@sha256:5eb9a0742bfe48b1e3812d0e6419e9ed84a7aa0e083d91b60e254efe96dfd3e8_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-network-operator@sha256:8da3c47a3c157e390befa1b9e7cd959f2e63a59e95af7ff336f822a37387f147_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-sriov-network-operator@sha256:8da3c47a3c157e390befa1b9e7cd959f2e63a59e95af7ff336f822a37387f147_amd64" + }, + "product_reference": "openshift4/ose-sriov-network-operator@sha256:8da3c47a3c157e390befa1b9e7cd959f2e63a59e95af7ff336f822a37387f147_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-network-operator@sha256:9464e9e3618c64c8dde89cc6f085b608e0cca8b65784596d16062831a89dbffb_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-sriov-network-operator@sha256:9464e9e3618c64c8dde89cc6f085b608e0cca8b65784596d16062831a89dbffb_ppc64le" + }, + "product_reference": "openshift4/ose-sriov-network-operator@sha256:9464e9e3618c64c8dde89cc6f085b608e0cca8b65784596d16062831a89dbffb_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-network-webhook@sha256:33bbf758e6e3ec8e209b78ee8bbf75473c8ccdfddc97aceeb84677db0ca9553f_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-sriov-network-webhook@sha256:33bbf758e6e3ec8e209b78ee8bbf75473c8ccdfddc97aceeb84677db0ca9553f_ppc64le" + }, + "product_reference": "openshift4/ose-sriov-network-webhook@sha256:33bbf758e6e3ec8e209b78ee8bbf75473c8ccdfddc97aceeb84677db0ca9553f_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-network-webhook@sha256:a8fdbb8e51c46f6acd0fdeca7a8903e1000af0b2f419ca4ef21157ab89d621aa_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-sriov-network-webhook@sha256:a8fdbb8e51c46f6acd0fdeca7a8903e1000af0b2f419ca4ef21157ab89d621aa_amd64" + }, + "product_reference": "openshift4/ose-sriov-network-webhook@sha256:a8fdbb8e51c46f6acd0fdeca7a8903e1000af0b2f419ca4ef21157ab89d621aa_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-network-webhook@sha256:c4f26e03c130218c56994a7e564bcd0ba35d7cc1149b1b4dcc3b5c39fc63dbd4_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-sriov-network-webhook@sha256:c4f26e03c130218c56994a7e564bcd0ba35d7cc1149b1b4dcc3b5c39fc63dbd4_arm64" + }, + "product_reference": "openshift4/ose-sriov-network-webhook@sha256:c4f26e03c130218c56994a7e564bcd0ba35d7cc1149b1b4dcc3b5c39fc63dbd4_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-telemeter@sha256:054e1ce9db5b7457d368a80d7d83cb03afa3aa26e2b1375d1820c1b6892665ac_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-telemeter@sha256:054e1ce9db5b7457d368a80d7d83cb03afa3aa26e2b1375d1820c1b6892665ac_ppc64le" + }, + "product_reference": "openshift4/ose-telemeter@sha256:054e1ce9db5b7457d368a80d7d83cb03afa3aa26e2b1375d1820c1b6892665ac_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-telemeter@sha256:4ed56bad7d4f65799c04e3845c0f5a276da75d5a46b7aa820c1c387711282a2e_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-telemeter@sha256:4ed56bad7d4f65799c04e3845c0f5a276da75d5a46b7aa820c1c387711282a2e_amd64" + }, + "product_reference": "openshift4/ose-telemeter@sha256:4ed56bad7d4f65799c04e3845c0f5a276da75d5a46b7aa820c1c387711282a2e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-telemeter@sha256:92f9cd3c89014104e1669d4eab0df5c91cf2963a57ff388712458ade94b585ee_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-telemeter@sha256:92f9cd3c89014104e1669d4eab0df5c91cf2963a57ff388712458ade94b585ee_arm64" + }, + "product_reference": "openshift4/ose-telemeter@sha256:92f9cd3c89014104e1669d4eab0df5c91cf2963a57ff388712458ade94b585ee_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-telemeter@sha256:bdc788771466a031d22dc00b062e60b3560b310c1895cc83feed0b5572c216e3_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-telemeter@sha256:bdc788771466a031d22dc00b062e60b3560b310c1895cc83feed0b5572c216e3_s390x" + }, + "product_reference": "openshift4/ose-telemeter@sha256:bdc788771466a031d22dc00b062e60b3560b310c1895cc83feed0b5572c216e3_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tests@sha256:56f48c5cb7e0fdac232341b2c622c149cf43631285f99566c1a7b6a15d379983_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-tests@sha256:56f48c5cb7e0fdac232341b2c622c149cf43631285f99566c1a7b6a15d379983_s390x" + }, + "product_reference": "openshift4/ose-tests@sha256:56f48c5cb7e0fdac232341b2c622c149cf43631285f99566c1a7b6a15d379983_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tests@sha256:dd21da02bf2e5fbfc86b8f27fd9e807d720ac22f7c20a17e8cb958f9caac3987_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-tests@sha256:dd21da02bf2e5fbfc86b8f27fd9e807d720ac22f7c20a17e8cb958f9caac3987_arm64" + }, + "product_reference": "openshift4/ose-tests@sha256:dd21da02bf2e5fbfc86b8f27fd9e807d720ac22f7c20a17e8cb958f9caac3987_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tests@sha256:dd263de439877b5e37c34feb7cef153a6b0b6eca85d737bd6df39da1fc6428eb_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-tests@sha256:dd263de439877b5e37c34feb7cef153a6b0b6eca85d737bd6df39da1fc6428eb_ppc64le" + }, + "product_reference": "openshift4/ose-tests@sha256:dd263de439877b5e37c34feb7cef153a6b0b6eca85d737bd6df39da1fc6428eb_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tests@sha256:e2e0de70c32b9ab8785afeaade76bc4e1532ae9c2a1287aff5ec9cd8f32eb0f3_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-tests@sha256:e2e0de70c32b9ab8785afeaade76bc4e1532ae9c2a1287aff5ec9cd8f32eb0f3_amd64" + }, + "product_reference": "openshift4/ose-tests@sha256:e2e0de70c32b9ab8785afeaade76bc4e1532ae9c2a1287aff5ec9cd8f32eb0f3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-thanos-rhel8@sha256:06ced9a033658c8144795686d9cf1c4503ddd2421832f3bd8b9b6abc6defbf00_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-thanos-rhel8@sha256:06ced9a033658c8144795686d9cf1c4503ddd2421832f3bd8b9b6abc6defbf00_ppc64le" + }, + "product_reference": "openshift4/ose-thanos-rhel8@sha256:06ced9a033658c8144795686d9cf1c4503ddd2421832f3bd8b9b6abc6defbf00_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-thanos-rhel8@sha256:09dfd7864503e3b617250536e1ce6166c4a2fa97572b8a947e9f1c6c3c81b0b9_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-thanos-rhel8@sha256:09dfd7864503e3b617250536e1ce6166c4a2fa97572b8a947e9f1c6c3c81b0b9_s390x" + }, + "product_reference": "openshift4/ose-thanos-rhel8@sha256:09dfd7864503e3b617250536e1ce6166c4a2fa97572b8a947e9f1c6c3c81b0b9_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-thanos-rhel8@sha256:165c5ca0fba1c6eabad77130514ac7ddddf60b9dd92cdd079e9c79596d1a1dc8_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-thanos-rhel8@sha256:165c5ca0fba1c6eabad77130514ac7ddddf60b9dd92cdd079e9c79596d1a1dc8_arm64" + }, + "product_reference": "openshift4/ose-thanos-rhel8@sha256:165c5ca0fba1c6eabad77130514ac7ddddf60b9dd92cdd079e9c79596d1a1dc8_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-thanos-rhel8@sha256:f9b5953801e1b0dc8255078668101232f326acc7ffd79a86e985c8bb06aa3807_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-thanos-rhel8@sha256:f9b5953801e1b0dc8255078668101232f326acc7ffd79a86e985c8bb06aa3807_amd64" + }, + "product_reference": "openshift4/ose-thanos-rhel8@sha256:f9b5953801e1b0dc8255078668101232f326acc7ffd79a86e985c8bb06aa3807_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tools-rhel8@sha256:420df61706385bf463a7096f95752687af5f4c1295821b08bbcec8be3cbf244a_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-tools-rhel8@sha256:420df61706385bf463a7096f95752687af5f4c1295821b08bbcec8be3cbf244a_amd64" + }, + "product_reference": "openshift4/ose-tools-rhel8@sha256:420df61706385bf463a7096f95752687af5f4c1295821b08bbcec8be3cbf244a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tools-rhel8@sha256:4ef65138abee38ab71c0d23eed8ff88dee8ee3780562189b3d9d2cc323b6d394_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-tools-rhel8@sha256:4ef65138abee38ab71c0d23eed8ff88dee8ee3780562189b3d9d2cc323b6d394_ppc64le" + }, + "product_reference": "openshift4/ose-tools-rhel8@sha256:4ef65138abee38ab71c0d23eed8ff88dee8ee3780562189b3d9d2cc323b6d394_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tools-rhel8@sha256:5ee9d6e4f9e67f2009f2b7a4c395c910fb7798c82939b67502e2c58a2203986b_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-tools-rhel8@sha256:5ee9d6e4f9e67f2009f2b7a4c395c910fb7798c82939b67502e2c58a2203986b_arm64" + }, + "product_reference": "openshift4/ose-tools-rhel8@sha256:5ee9d6e4f9e67f2009f2b7a4c395c910fb7798c82939b67502e2c58a2203986b_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tools-rhel8@sha256:f183fc32bc4d488c55d053c5a6c576cec35a3a7b42c7ff6549bda00b5767d324_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-tools-rhel8@sha256:f183fc32bc4d488c55d053c5a6c576cec35a3a7b42c7ff6549bda00b5767d324_s390x" + }, + "product_reference": "openshift4/ose-tools-rhel8@sha256:f183fc32bc4d488c55d053c5a6c576cec35a3a7b42c7ff6549bda00b5767d324_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:1dafc844953a5659832b5f70becd865a337602acfd6e75e6bb3b05878ec4849f_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:1dafc844953a5659832b5f70becd865a337602acfd6e75e6bb3b05878ec4849f_ppc64le" + }, + "product_reference": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:1dafc844953a5659832b5f70becd865a337602acfd6e75e6bb3b05878ec4849f_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:9380b581667dee61ca2895e6e970f01779fc333dbbcd6c98dd305d82cfa1567a_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:9380b581667dee61ca2895e6e970f01779fc333dbbcd6c98dd305d82cfa1567a_arm64" + }, + "product_reference": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:9380b581667dee61ca2895e6e970f01779fc333dbbcd6c98dd305d82cfa1567a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:be482022b3126bbd7dd0a54e7e33a64075e2a9abf4835ae89932358df2131482_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:be482022b3126bbd7dd0a54e7e33a64075e2a9abf4835ae89932358df2131482_amd64" + }, + "product_reference": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:be482022b3126bbd7dd0a54e7e33a64075e2a9abf4835ae89932358df2131482_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:c3cb969ccf77d3729507ec8d6fa5d42edaee8e7386690fb827d0a77bc03b5405_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:c3cb969ccf77d3729507ec8d6fa5d42edaee8e7386690fb827d0a77bc03b5405_s390x" + }, + "product_reference": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:c3cb969ccf77d3729507ec8d6fa5d42edaee8e7386690fb827d0a77bc03b5405_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:0be5e3279676335fff768ad7896f5dd2fd840c7b4f8d0468ea108040e80bbd9b_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:0be5e3279676335fff768ad7896f5dd2fd840c7b4f8d0468ea108040e80bbd9b_arm64" + }, + "product_reference": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:0be5e3279676335fff768ad7896f5dd2fd840c7b4f8d0468ea108040e80bbd9b_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:771dcd6f354135b6b682b495443890c55eccfed036e509b35dabb79c273ff260_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:771dcd6f354135b6b682b495443890c55eccfed036e509b35dabb79c273ff260_ppc64le" + }, + "product_reference": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:771dcd6f354135b6b682b495443890c55eccfed036e509b35dabb79c273ff260_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:88f8d319b810353f94381d8f3f0c3c72b254e22f209da6af4e23cb46ccd1105a_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:88f8d319b810353f94381d8f3f0c3c72b254e22f209da6af4e23cb46ccd1105a_amd64" + }, + "product_reference": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:88f8d319b810353f94381d8f3f0c3c72b254e22f209da6af4e23cb46ccd1105a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:d073e7e0ce29e7307e5865b4ccf812d4cf9b5d306b1bae154eb5b5cb886a5905_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:d073e7e0ce29e7307e5865b4ccf812d4cf9b5d306b1bae154eb5b5cb886a5905_s390x" + }, + "product_reference": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:d073e7e0ce29e7307e5865b4ccf812d4cf9b5d306b1bae154eb5b5cb886a5905_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:8425fb95200ae8abd5b581a9ddc2349ed3487955bbe3fcc97116c9c8bf0c0deb_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:8425fb95200ae8abd5b581a9ddc2349ed3487955bbe3fcc97116c9c8bf0c0deb_amd64" + }, + "product_reference": "openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:8425fb95200ae8abd5b581a9ddc2349ed3487955bbe3fcc97116c9c8bf0c0deb_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:106e2156ef2d93b5d01966d0d523ef7100ced62dfa3356d6e82b064b43b5b1fa_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:106e2156ef2d93b5d01966d0d523ef7100ced62dfa3356d6e82b064b43b5b1fa_amd64" + }, + "product_reference": "openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:106e2156ef2d93b5d01966d0d523ef7100ced62dfa3356d6e82b064b43b5b1fa_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:5c4767badafb5412e89a5d9939cad1f0817e0f8d7b69e2fa1f201e42549b82a7_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:5c4767badafb5412e89a5d9939cad1f0817e0f8d7b69e2fa1f201e42549b82a7_amd64" + }, + "product_reference": "openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:5c4767badafb5412e89a5d9939cad1f0817e0f8d7b69e2fa1f201e42549b82a7_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:49ee440e5b95faaa6252c65b55da7698821c7f734d287cbf27ca7c4ab32113c3_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:49ee440e5b95faaa6252c65b55da7698821c7f734d287cbf27ca7c4ab32113c3_amd64" + }, + "product_reference": "openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:49ee440e5b95faaa6252c65b55da7698821c7f734d287cbf27ca7c4ab32113c3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:8425fb95200ae8abd5b581a9ddc2349ed3487955bbe3fcc97116c9c8bf0c0deb_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:8425fb95200ae8abd5b581a9ddc2349ed3487955bbe3fcc97116c9c8bf0c0deb_amd64" + }, + "product_reference": "openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:8425fb95200ae8abd5b581a9ddc2349ed3487955bbe3fcc97116c9c8bf0c0deb_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vsphere-csi-driver-rhel8@sha256:106e2156ef2d93b5d01966d0d523ef7100ced62dfa3356d6e82b064b43b5b1fa_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-vsphere-csi-driver-rhel8@sha256:106e2156ef2d93b5d01966d0d523ef7100ced62dfa3356d6e82b064b43b5b1fa_amd64" + }, + "product_reference": "openshift4/ose-vsphere-csi-driver-rhel8@sha256:106e2156ef2d93b5d01966d0d523ef7100ced62dfa3356d6e82b064b43b5b1fa_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:5ca47e74b550fcb99b5615a282c49135995c573a946cb119bf43e2efc79a1864_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:5ca47e74b550fcb99b5615a282c49135995c573a946cb119bf43e2efc79a1864_amd64" + }, + "product_reference": "openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:5ca47e74b550fcb99b5615a282c49135995c573a946cb119bf43e2efc79a1864_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vsphere-problem-detector-rhel8@sha256:fa41aff671e90d9cef6eab3dad3b0c778d0e0b167b2cabaf1f1643477275a004_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ose-vsphere-problem-detector-rhel8@sha256:fa41aff671e90d9cef6eab3dad3b0c778d0e0b167b2cabaf1f1643477275a004_amd64" + }, + "product_reference": "openshift4/ose-vsphere-problem-detector-rhel8@sha256:fa41aff671e90d9cef6eab3dad3b0c778d0e0b167b2cabaf1f1643477275a004_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:34392271202d0fc04a4d2f992ca372e0fad8434adf544170af655e90f97af916_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ovirt-csi-driver-rhel7@sha256:34392271202d0fc04a4d2f992ca372e0fad8434adf544170af655e90f97af916_amd64" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel7@sha256:34392271202d0fc04a4d2f992ca372e0fad8434adf544170af655e90f97af916_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:529d98b67b8da7f4688f5168a9669b711c1edca21be230aa09c30aff6f2437de_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ovirt-csi-driver-rhel7@sha256:529d98b67b8da7f4688f5168a9669b711c1edca21be230aa09c30aff6f2437de_arm64" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel7@sha256:529d98b67b8da7f4688f5168a9669b711c1edca21be230aa09c30aff6f2437de_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:d145ae1e8dc0a7a6117d577361ccbd64ed9fd4b3fbc24d66b88143c180cf2151_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ovirt-csi-driver-rhel7@sha256:d145ae1e8dc0a7a6117d577361ccbd64ed9fd4b3fbc24d66b88143c180cf2151_s390x" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel7@sha256:d145ae1e8dc0a7a6117d577361ccbd64ed9fd4b3fbc24d66b88143c180cf2151_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:e3b36ad0253114373ac2528202557500d9e76a4e45af397b3e19ceda5761d4cb_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ovirt-csi-driver-rhel7@sha256:e3b36ad0253114373ac2528202557500d9e76a4e45af397b3e19ceda5761d4cb_ppc64le" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel7@sha256:e3b36ad0253114373ac2528202557500d9e76a4e45af397b3e19ceda5761d4cb_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:3185baa719237b4e0b10c839d4b6834b069d6279012e5264c81b2689fd8b48de_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ovirt-csi-driver-rhel8-operator@sha256:3185baa719237b4e0b10c839d4b6834b069d6279012e5264c81b2689fd8b48de_arm64" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:3185baa719237b4e0b10c839d4b6834b069d6279012e5264c81b2689fd8b48de_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:79e2bd45f3e5e18719fd3d4704f428129ad8adac5d4ecb31162cefd1cedfce8d_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ovirt-csi-driver-rhel8-operator@sha256:79e2bd45f3e5e18719fd3d4704f428129ad8adac5d4ecb31162cefd1cedfce8d_amd64" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:79e2bd45f3e5e18719fd3d4704f428129ad8adac5d4ecb31162cefd1cedfce8d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:df65525c96d32f50bc11cba1c92a6bb7f4a9c430522f9636bd49e1c2c31344b9_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ovirt-csi-driver-rhel8-operator@sha256:df65525c96d32f50bc11cba1c92a6bb7f4a9c430522f9636bd49e1c2c31344b9_s390x" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:df65525c96d32f50bc11cba1c92a6bb7f4a9c430522f9636bd49e1c2c31344b9_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:e2b3d056566dadb0a14ebe0f0e29b2baa3a89b9636e7da701bfd6cd0fc892126_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ovirt-csi-driver-rhel8-operator@sha256:e2b3d056566dadb0a14ebe0f0e29b2baa3a89b9636e7da701bfd6cd0fc892126_ppc64le" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:e2b3d056566dadb0a14ebe0f0e29b2baa3a89b9636e7da701bfd6cd0fc892126_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:34392271202d0fc04a4d2f992ca372e0fad8434adf544170af655e90f97af916_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ovirt-csi-driver-rhel8@sha256:34392271202d0fc04a4d2f992ca372e0fad8434adf544170af655e90f97af916_amd64" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8@sha256:34392271202d0fc04a4d2f992ca372e0fad8434adf544170af655e90f97af916_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:529d98b67b8da7f4688f5168a9669b711c1edca21be230aa09c30aff6f2437de_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ovirt-csi-driver-rhel8@sha256:529d98b67b8da7f4688f5168a9669b711c1edca21be230aa09c30aff6f2437de_arm64" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8@sha256:529d98b67b8da7f4688f5168a9669b711c1edca21be230aa09c30aff6f2437de_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:d145ae1e8dc0a7a6117d577361ccbd64ed9fd4b3fbc24d66b88143c180cf2151_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ovirt-csi-driver-rhel8@sha256:d145ae1e8dc0a7a6117d577361ccbd64ed9fd4b3fbc24d66b88143c180cf2151_s390x" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8@sha256:d145ae1e8dc0a7a6117d577361ccbd64ed9fd4b3fbc24d66b88143c180cf2151_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:e3b36ad0253114373ac2528202557500d9e76a4e45af397b3e19ceda5761d4cb_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ovirt-csi-driver-rhel8@sha256:e3b36ad0253114373ac2528202557500d9e76a4e45af397b3e19ceda5761d4cb_ppc64le" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8@sha256:e3b36ad0253114373ac2528202557500d9e76a4e45af397b3e19ceda5761d4cb_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ptp-must-gather-rhel8@sha256:2ce3cbe42e9f232c15e6e48b36584e79feeada3f9ab7d1b28aa22a805d423ad8_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ptp-must-gather-rhel8@sha256:2ce3cbe42e9f232c15e6e48b36584e79feeada3f9ab7d1b28aa22a805d423ad8_arm64" + }, + "product_reference": "openshift4/ptp-must-gather-rhel8@sha256:2ce3cbe42e9f232c15e6e48b36584e79feeada3f9ab7d1b28aa22a805d423ad8_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ptp-must-gather-rhel8@sha256:9d851e4f3a76fe40c7c504b2676af14cf3016033ad0ff79976e92f0163a8b8c9_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ptp-must-gather-rhel8@sha256:9d851e4f3a76fe40c7c504b2676af14cf3016033ad0ff79976e92f0163a8b8c9_amd64" + }, + "product_reference": "openshift4/ptp-must-gather-rhel8@sha256:9d851e4f3a76fe40c7c504b2676af14cf3016033ad0ff79976e92f0163a8b8c9_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ptp-must-gather-rhel8@sha256:ca96e492869a3c654b09ba879c0b273ae9324089bea02573a3087920a2a0c162_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "8Base-RHOSE-4.13:openshift4/ptp-must-gather-rhel8@sha256:ca96e492869a3c654b09ba879c0b273ae9324089bea02573a3087920a2a0c162_ppc64le" + }, + "product_reference": "openshift4/ptp-must-gather-rhel8@sha256:ca96e492869a3c654b09ba879c0b273ae9324089bea02573a3087920a2a0c162_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:buildah-1:1.29.1-10.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "buildah-1:1.29.1-10.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:buildah-1:1.29.1-10.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "buildah-1:1.29.1-10.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:buildah-1:1.29.1-10.1.rhaos4.14.el8.s390x" + }, + "product_reference": "buildah-1:1.29.1-10.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:buildah-1:1.29.1-10.1.rhaos4.14.el8.src" + }, + "product_reference": "buildah-1:1.29.1-10.1.rhaos4.14.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:buildah-1:1.29.1-10.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "buildah-1:1.29.1-10.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.s390x" + }, + "product_reference": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el8.s390x" + }, + "product_reference": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:buildah-tests-1:1.29.1-10.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:buildah-tests-1:1.29.1-10.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:buildah-tests-1:1.29.1-10.1.rhaos4.14.el8.s390x" + }, + "product_reference": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:buildah-tests-1:1.29.1-10.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.s390x" + }, + "product_reference": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "butane-0:0.19.0-1.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:butane-0:0.19.0-1.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "butane-0:0.19.0-1.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "butane-0:0.19.0-1.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:butane-0:0.19.0-1.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "butane-0:0.19.0-1.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "butane-0:0.19.0-1.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:butane-0:0.19.0-1.1.rhaos4.14.el8.s390x" + }, + "product_reference": "butane-0:0.19.0-1.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "butane-0:0.19.0-1.1.rhaos4.14.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:butane-0:0.19.0-1.1.rhaos4.14.el8.src" + }, + "product_reference": "butane-0:0.19.0-1.1.rhaos4.14.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "butane-0:0.19.0-1.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:butane-0:0.19.0-1.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "butane-0:0.19.0-1.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "butane-debuginfo-0:0.19.0-1.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:butane-debuginfo-0:0.19.0-1.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "butane-debuginfo-0:0.19.0-1.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "butane-debuginfo-0:0.19.0-1.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:butane-debuginfo-0:0.19.0-1.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "butane-debuginfo-0:0.19.0-1.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "butane-debuginfo-0:0.19.0-1.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:butane-debuginfo-0:0.19.0-1.1.rhaos4.14.el8.s390x" + }, + "product_reference": "butane-debuginfo-0:0.19.0-1.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "butane-debuginfo-0:0.19.0-1.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:butane-debuginfo-0:0.19.0-1.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "butane-debuginfo-0:0.19.0-1.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "butane-debugsource-0:0.19.0-1.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:butane-debugsource-0:0.19.0-1.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "butane-debugsource-0:0.19.0-1.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "butane-debugsource-0:0.19.0-1.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:butane-debugsource-0:0.19.0-1.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "butane-debugsource-0:0.19.0-1.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "butane-debugsource-0:0.19.0-1.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:butane-debugsource-0:0.19.0-1.1.rhaos4.14.el8.s390x" + }, + "product_reference": "butane-debugsource-0:0.19.0-1.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "butane-debugsource-0:0.19.0-1.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:butane-debugsource-0:0.19.0-1.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "butane-debugsource-0:0.19.0-1.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "butane-redistributable-0:0.19.0-1.1.rhaos4.14.el8.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:butane-redistributable-0:0.19.0-1.1.rhaos4.14.el8.noarch" + }, + "product_reference": "butane-redistributable-0:0.19.0-1.1.rhaos4.14.el8.noarch", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:conmon-3:2.1.7-3.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "conmon-3:2.1.7-3.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:conmon-3:2.1.7-3.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "conmon-3:2.1.7-3.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:conmon-3:2.1.7-3.1.rhaos4.14.el8.s390x" + }, + "product_reference": "conmon-3:2.1.7-3.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:conmon-3:2.1.7-3.1.rhaos4.14.el8.src" + }, + "product_reference": "conmon-3:2.1.7-3.1.rhaos4.14.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:conmon-3:2.1.7-3.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "conmon-3:2.1.7-3.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el8.s390x" + }, + "product_reference": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el8.s390x" + }, + "product_reference": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-selinux-3:2.221.0-1.rhaos4.14.el8.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:container-selinux-3:2.221.0-1.rhaos4.14.el8.noarch" + }, + "product_reference": "container-selinux-3:2.221.0-1.rhaos4.14.el8.noarch", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-selinux-3:2.221.0-1.rhaos4.14.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:container-selinux-3:2.221.0-1.rhaos4.14.el8.src" + }, + "product_reference": "container-selinux-3:2.221.0-1.rhaos4.14.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-selinux-3:2.223.0-1.rhaos4.14.el8.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:container-selinux-3:2.223.0-1.rhaos4.14.el8.noarch" + }, + "product_reference": "container-selinux-3:2.223.0-1.rhaos4.14.el8.noarch", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-selinux-3:2.223.0-1.rhaos4.14.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:container-selinux-3:2.223.0-1.rhaos4.14.el8.src" + }, + "product_reference": "container-selinux-3:2.223.0-1.rhaos4.14.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.s390x" + }, + "product_reference": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.src" + }, + "product_reference": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "containernetworking-plugins-0:1.0.1-11.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "containernetworking-plugins-debuginfo-0:1.0.1-11.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:containernetworking-plugins-debuginfo-0:1.0.1-11.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "containernetworking-plugins-debuginfo-0:1.0.1-11.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "containernetworking-plugins-debuginfo-0:1.0.1-11.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:containernetworking-plugins-debuginfo-0:1.0.1-11.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "containernetworking-plugins-debuginfo-0:1.0.1-11.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "containernetworking-plugins-debuginfo-0:1.0.1-11.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:containernetworking-plugins-debuginfo-0:1.0.1-11.1.rhaos4.14.el8.s390x" + }, + "product_reference": "containernetworking-plugins-debuginfo-0:1.0.1-11.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "containernetworking-plugins-debuginfo-0:1.0.1-11.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:containernetworking-plugins-debuginfo-0:1.0.1-11.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "containernetworking-plugins-debuginfo-0:1.0.1-11.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "containernetworking-plugins-debugsource-0:1.0.1-11.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:containernetworking-plugins-debugsource-0:1.0.1-11.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "containernetworking-plugins-debugsource-0:1.0.1-11.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "containernetworking-plugins-debugsource-0:1.0.1-11.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:containernetworking-plugins-debugsource-0:1.0.1-11.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "containernetworking-plugins-debugsource-0:1.0.1-11.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "containernetworking-plugins-debugsource-0:1.0.1-11.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:containernetworking-plugins-debugsource-0:1.0.1-11.1.rhaos4.14.el8.s390x" + }, + "product_reference": "containernetworking-plugins-debugsource-0:1.0.1-11.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "containernetworking-plugins-debugsource-0:1.0.1-11.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:containernetworking-plugins-debugsource-0:1.0.1-11.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "containernetworking-plugins-debugsource-0:1.0.1-11.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "containers-common-2:1-51.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:containers-common-2:1-51.rhaos4.14.el8.aarch64" + }, + "product_reference": "containers-common-2:1-51.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "containers-common-2:1-51.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:containers-common-2:1-51.rhaos4.14.el8.ppc64le" + }, + "product_reference": "containers-common-2:1-51.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "containers-common-2:1-51.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:containers-common-2:1-51.rhaos4.14.el8.s390x" + }, + "product_reference": "containers-common-2:1-51.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "containers-common-2:1-51.rhaos4.14.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:containers-common-2:1-51.rhaos4.14.el8.src" + }, + "product_reference": "containers-common-2:1-51.rhaos4.14.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "containers-common-2:1-51.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:containers-common-2:1-51.rhaos4.14.el8.x86_64" + }, + "product_reference": "containers-common-2:1-51.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-0:0.17.0-1.rhaos4.14.el8.aarch64" + }, + "product_reference": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-0:0.17.0-1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-0:0.17.0-1.rhaos4.14.el8.s390x" + }, + "product_reference": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-0:0.17.0-1.rhaos4.14.el8.src" + }, + "product_reference": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-0:0.17.0-1.rhaos4.14.el8.x86_64" + }, + "product_reference": "coreos-installer-0:0.17.0-1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el8.aarch64" + }, + "product_reference": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el8.s390x" + }, + "product_reference": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el8.x86_64" + }, + "product_reference": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el8.aarch64" + }, + "product_reference": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el8.s390x" + }, + "product_reference": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el8.x86_64" + }, + "product_reference": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el8.aarch64" + }, + "product_reference": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el8.s390x" + }, + "product_reference": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el8.x86_64" + }, + "product_reference": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el8.aarch64" + }, + "product_reference": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el8.s390x" + }, + "product_reference": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el8.x86_64" + }, + "product_reference": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el8.aarch64" + }, + "product_reference": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el8.s390x" + }, + "product_reference": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el8.x86_64" + }, + "product_reference": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.aarch64" + }, + "product_reference": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.ppc64le" + }, + "product_reference": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.s390x" + }, + "product_reference": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.src" + }, + "product_reference": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.x86_64" + }, + "product_reference": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.aarch64" + }, + "product_reference": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.ppc64le" + }, + "product_reference": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.s390x" + }, + "product_reference": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.src" + }, + "product_reference": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.x86_64" + }, + "product_reference": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.aarch64" + }, + "product_reference": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.ppc64le" + }, + "product_reference": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.s390x" + }, + "product_reference": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.x86_64" + }, + "product_reference": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.aarch64" + }, + "product_reference": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.ppc64le" + }, + "product_reference": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.s390x" + }, + "product_reference": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.x86_64" + }, + "product_reference": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.aarch64" + }, + "product_reference": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.ppc64le" + }, + "product_reference": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.s390x" + }, + "product_reference": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.x86_64" + }, + "product_reference": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.aarch64" + }, + "product_reference": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.ppc64le" + }, + "product_reference": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.s390x" + }, + "product_reference": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.x86_64" + }, + "product_reference": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-0:1.27.0-2.1.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-tools-0:1.27.0-2.1.el8.aarch64" + }, + "product_reference": "cri-tools-0:1.27.0-2.1.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-0:1.27.0-2.1.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-tools-0:1.27.0-2.1.el8.ppc64le" + }, + "product_reference": "cri-tools-0:1.27.0-2.1.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-0:1.27.0-2.1.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-tools-0:1.27.0-2.1.el8.s390x" + }, + "product_reference": "cri-tools-0:1.27.0-2.1.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-0:1.27.0-2.1.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-tools-0:1.27.0-2.1.el8.src" + }, + "product_reference": "cri-tools-0:1.27.0-2.1.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-0:1.27.0-2.1.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-tools-0:1.27.0-2.1.el8.x86_64" + }, + "product_reference": "cri-tools-0:1.27.0-2.1.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-debuginfo-0:1.27.0-2.1.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-tools-debuginfo-0:1.27.0-2.1.el8.aarch64" + }, + "product_reference": "cri-tools-debuginfo-0:1.27.0-2.1.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-debuginfo-0:1.27.0-2.1.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-tools-debuginfo-0:1.27.0-2.1.el8.ppc64le" + }, + "product_reference": "cri-tools-debuginfo-0:1.27.0-2.1.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-debuginfo-0:1.27.0-2.1.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-tools-debuginfo-0:1.27.0-2.1.el8.s390x" + }, + "product_reference": "cri-tools-debuginfo-0:1.27.0-2.1.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-debuginfo-0:1.27.0-2.1.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-tools-debuginfo-0:1.27.0-2.1.el8.x86_64" + }, + "product_reference": "cri-tools-debuginfo-0:1.27.0-2.1.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-debugsource-0:1.27.0-2.1.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-tools-debugsource-0:1.27.0-2.1.el8.aarch64" + }, + "product_reference": "cri-tools-debugsource-0:1.27.0-2.1.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-debugsource-0:1.27.0-2.1.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-tools-debugsource-0:1.27.0-2.1.el8.ppc64le" + }, + "product_reference": "cri-tools-debugsource-0:1.27.0-2.1.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-debugsource-0:1.27.0-2.1.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-tools-debugsource-0:1.27.0-2.1.el8.s390x" + }, + "product_reference": "cri-tools-debugsource-0:1.27.0-2.1.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-debugsource-0:1.27.0-2.1.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:cri-tools-debugsource-0:1.27.0-2.1.el8.x86_64" + }, + "product_reference": "cri-tools-debugsource-0:1.27.0-2.1.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-0:1.9.2-1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:crun-0:1.9.2-1.rhaos4.14.el8.aarch64" + }, + "product_reference": "crun-0:1.9.2-1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-0:1.9.2-1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:crun-0:1.9.2-1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "crun-0:1.9.2-1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-0:1.9.2-1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:crun-0:1.9.2-1.rhaos4.14.el8.s390x" + }, + "product_reference": "crun-0:1.9.2-1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-0:1.9.2-1.rhaos4.14.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:crun-0:1.9.2-1.rhaos4.14.el8.src" + }, + "product_reference": "crun-0:1.9.2-1.rhaos4.14.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-0:1.9.2-1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:crun-0:1.9.2-1.rhaos4.14.el8.x86_64" + }, + "product_reference": "crun-0:1.9.2-1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:crun-debuginfo-0:1.9.2-1.rhaos4.14.el8.aarch64" + }, + "product_reference": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:crun-debuginfo-0:1.9.2-1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:crun-debuginfo-0:1.9.2-1.rhaos4.14.el8.s390x" + }, + "product_reference": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:crun-debuginfo-0:1.9.2-1.rhaos4.14.el8.x86_64" + }, + "product_reference": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-debugsource-0:1.9.2-1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:crun-debugsource-0:1.9.2-1.rhaos4.14.el8.aarch64" + }, + "product_reference": "crun-debugsource-0:1.9.2-1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-debugsource-0:1.9.2-1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:crun-debugsource-0:1.9.2-1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "crun-debugsource-0:1.9.2-1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-debugsource-0:1.9.2-1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:crun-debugsource-0:1.9.2-1.rhaos4.14.el8.s390x" + }, + "product_reference": "crun-debugsource-0:1.9.2-1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-debugsource-0:1.9.2-1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:crun-debugsource-0:1.9.2-1.rhaos4.14.el8.x86_64" + }, + "product_reference": "crun-debugsource-0:1.9.2-1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-wasm-0:0.0-3.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:crun-wasm-0:0.0-3.rhaos4.14.el8.aarch64" + }, + "product_reference": "crun-wasm-0:0.0-3.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-wasm-0:0.0-3.rhaos4.14.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:crun-wasm-0:0.0-3.rhaos4.14.el8.src" + }, + "product_reference": "crun-wasm-0:0.0-3.rhaos4.14.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-wasm-0:0.0-3.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:crun-wasm-0:0.0-3.rhaos4.14.el8.x86_64" + }, + "product_reference": "crun-wasm-0:0.0-3.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.aarch64" + }, + "product_reference": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.ppc64le" + }, + "product_reference": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.s390x" + }, + "product_reference": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.src" + }, + "product_reference": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.x86_64" + }, + "product_reference": "golang-github-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "haproxy-0:2.6.13-1.rhaos4.14.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:haproxy-0:2.6.13-1.rhaos4.14.el8.src" + }, + "product_reference": "haproxy-0:2.6.13-1.rhaos4.14.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "haproxy-debugsource-0:2.6.13-1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:haproxy-debugsource-0:2.6.13-1.rhaos4.14.el8.aarch64" + }, + "product_reference": "haproxy-debugsource-0:2.6.13-1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "haproxy-debugsource-0:2.6.13-1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:haproxy-debugsource-0:2.6.13-1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "haproxy-debugsource-0:2.6.13-1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "haproxy-debugsource-0:2.6.13-1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:haproxy-debugsource-0:2.6.13-1.rhaos4.14.el8.s390x" + }, + "product_reference": "haproxy-debugsource-0:2.6.13-1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "haproxy-debugsource-0:2.6.13-1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:haproxy-debugsource-0:2.6.13-1.rhaos4.14.el8.x86_64" + }, + "product_reference": "haproxy-debugsource-0:2.6.13-1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "haproxy26-0:2.6.13-1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:haproxy26-0:2.6.13-1.rhaos4.14.el8.aarch64" + }, + "product_reference": "haproxy26-0:2.6.13-1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "haproxy26-0:2.6.13-1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:haproxy26-0:2.6.13-1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "haproxy26-0:2.6.13-1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "haproxy26-0:2.6.13-1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:haproxy26-0:2.6.13-1.rhaos4.14.el8.s390x" + }, + "product_reference": "haproxy26-0:2.6.13-1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "haproxy26-0:2.6.13-1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:haproxy26-0:2.6.13-1.rhaos4.14.el8.x86_64" + }, + "product_reference": "haproxy26-0:2.6.13-1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "haproxy26-debuginfo-0:2.6.13-1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:haproxy26-debuginfo-0:2.6.13-1.rhaos4.14.el8.aarch64" + }, + "product_reference": "haproxy26-debuginfo-0:2.6.13-1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "haproxy26-debuginfo-0:2.6.13-1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:haproxy26-debuginfo-0:2.6.13-1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "haproxy26-debuginfo-0:2.6.13-1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "haproxy26-debuginfo-0:2.6.13-1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:haproxy26-debuginfo-0:2.6.13-1.rhaos4.14.el8.s390x" + }, + "product_reference": "haproxy26-debuginfo-0:2.6.13-1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "haproxy26-debuginfo-0:2.6.13-1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:haproxy26-debuginfo-0:2.6.13-1.rhaos4.14.el8.x86_64" + }, + "product_reference": "haproxy26-debuginfo-0:2.6.13-1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-0:2.2.12-1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-0:2.2.12-1.rhaos4.14.el8.aarch64" + }, + "product_reference": "nmstate-0:2.2.12-1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-0:2.2.12-1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-0:2.2.12-1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "nmstate-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-0:2.2.12-1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-0:2.2.12-1.rhaos4.14.el8.s390x" + }, + "product_reference": "nmstate-0:2.2.12-1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-0:2.2.12-1.rhaos4.14.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-0:2.2.12-1.rhaos4.14.el8.src" + }, + "product_reference": "nmstate-0:2.2.12-1.rhaos4.14.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-0:2.2.12-1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-0:2.2.12-1.rhaos4.14.el8.x86_64" + }, + "product_reference": "nmstate-0:2.2.12-1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-debuginfo-0:2.2.12-1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-debuginfo-0:2.2.12-1.rhaos4.14.el8.aarch64" + }, + "product_reference": "nmstate-debuginfo-0:2.2.12-1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-debuginfo-0:2.2.12-1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-debuginfo-0:2.2.12-1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "nmstate-debuginfo-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-debuginfo-0:2.2.12-1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-debuginfo-0:2.2.12-1.rhaos4.14.el8.s390x" + }, + "product_reference": "nmstate-debuginfo-0:2.2.12-1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-debuginfo-0:2.2.12-1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-debuginfo-0:2.2.12-1.rhaos4.14.el8.x86_64" + }, + "product_reference": "nmstate-debuginfo-0:2.2.12-1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-debugsource-0:2.2.12-1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-debugsource-0:2.2.12-1.rhaos4.14.el8.aarch64" + }, + "product_reference": "nmstate-debugsource-0:2.2.12-1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-debugsource-0:2.2.12-1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-debugsource-0:2.2.12-1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "nmstate-debugsource-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-debugsource-0:2.2.12-1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-debugsource-0:2.2.12-1.rhaos4.14.el8.s390x" + }, + "product_reference": "nmstate-debugsource-0:2.2.12-1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-debugsource-0:2.2.12-1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-debugsource-0:2.2.12-1.rhaos4.14.el8.x86_64" + }, + "product_reference": "nmstate-debugsource-0:2.2.12-1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-devel-0:2.2.12-1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-devel-0:2.2.12-1.rhaos4.14.el8.aarch64" + }, + "product_reference": "nmstate-devel-0:2.2.12-1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-devel-0:2.2.12-1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-devel-0:2.2.12-1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "nmstate-devel-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-devel-0:2.2.12-1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-devel-0:2.2.12-1.rhaos4.14.el8.s390x" + }, + "product_reference": "nmstate-devel-0:2.2.12-1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-devel-0:2.2.12-1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-devel-0:2.2.12-1.rhaos4.14.el8.x86_64" + }, + "product_reference": "nmstate-devel-0:2.2.12-1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-libs-0:2.2.12-1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-libs-0:2.2.12-1.rhaos4.14.el8.aarch64" + }, + "product_reference": "nmstate-libs-0:2.2.12-1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-libs-0:2.2.12-1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-libs-0:2.2.12-1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "nmstate-libs-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-libs-0:2.2.12-1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-libs-0:2.2.12-1.rhaos4.14.el8.s390x" + }, + "product_reference": "nmstate-libs-0:2.2.12-1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-libs-0:2.2.12-1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-libs-0:2.2.12-1.rhaos4.14.el8.x86_64" + }, + "product_reference": "nmstate-libs-0:2.2.12-1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-libs-debuginfo-0:2.2.12-1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-libs-debuginfo-0:2.2.12-1.rhaos4.14.el8.aarch64" + }, + "product_reference": "nmstate-libs-debuginfo-0:2.2.12-1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-libs-debuginfo-0:2.2.12-1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-libs-debuginfo-0:2.2.12-1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "nmstate-libs-debuginfo-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-libs-debuginfo-0:2.2.12-1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-libs-debuginfo-0:2.2.12-1.rhaos4.14.el8.s390x" + }, + "product_reference": "nmstate-libs-debuginfo-0:2.2.12-1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-libs-debuginfo-0:2.2.12-1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-libs-debuginfo-0:2.2.12-1.rhaos4.14.el8.x86_64" + }, + "product_reference": "nmstate-libs-debuginfo-0:2.2.12-1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-static-0:2.2.12-1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-static-0:2.2.12-1.rhaos4.14.el8.aarch64" + }, + "product_reference": "nmstate-static-0:2.2.12-1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-static-0:2.2.12-1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-static-0:2.2.12-1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "nmstate-static-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-static-0:2.2.12-1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-static-0:2.2.12-1.rhaos4.14.el8.s390x" + }, + "product_reference": "nmstate-static-0:2.2.12-1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nmstate-static-0:2.2.12-1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:nmstate-static-0:2.2.12-1.rhaos4.14.el8.x86_64" + }, + "product_reference": "nmstate-static-0:2.2.12-1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.src" + }, + "product_reference": "openshift-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-ansible-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el8.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-ansible-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el8.noarch" + }, + "product_reference": "openshift-ansible-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el8.noarch", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-ansible-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-ansible-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el8.src" + }, + "product_reference": "openshift-ansible-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-ansible-test-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el8.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-ansible-test-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el8.noarch" + }, + "product_reference": "openshift-ansible-test-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el8.noarch", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.aarch64" + }, + "product_reference": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.ppc64le" + }, + "product_reference": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.s390x" + }, + "product_reference": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.src" + }, + "product_reference": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.x86_64" + }, + "product_reference": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.aarch64" + }, + "product_reference": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.ppc64le" + }, + "product_reference": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.s390x" + }, + "product_reference": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.src" + }, + "product_reference": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.x86_64" + }, + "product_reference": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-redistributable-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-clients-redistributable-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.x86_64" + }, + "product_reference": "openshift-clients-redistributable-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-redistributable-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-clients-redistributable-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.x86_64" + }, + "product_reference": "openshift-clients-redistributable-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.aarch64" + }, + "product_reference": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.ppc64le" + }, + "product_reference": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.s390x" + }, + "product_reference": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.x86_64" + }, + "product_reference": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-kuryr-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-kuryr-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.src" + }, + "product_reference": "openshift-kuryr-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-kuryr-cni-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-kuryr-cni-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.noarch" + }, + "product_reference": "openshift-kuryr-cni-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.noarch", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-kuryr-common-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-kuryr-common-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.noarch" + }, + "product_reference": "openshift-kuryr-common-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.noarch", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-kuryr-controller-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-kuryr-controller-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.noarch" + }, + "product_reference": "openshift-kuryr-controller-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.noarch", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.aarch64" + }, + "product_reference": "openshift-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.ppc64le" + }, + "product_reference": "openshift-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.s390x" + }, + "product_reference": "openshift-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.x86_64" + }, + "product_reference": "openshift-prometheus-promu-0:0.15.0-15.1.gitd5383c5.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-tech-preview/metallb-rhel8@sha256:1b2208cc474df254c487bcf0f6855b55d2a954fd60794107aebd625748ed978b_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-tech-preview/metallb-rhel8@sha256:1b2208cc474df254c487bcf0f6855b55d2a954fd60794107aebd625748ed978b_arm64" + }, + "product_reference": "openshift-tech-preview/metallb-rhel8@sha256:1b2208cc474df254c487bcf0f6855b55d2a954fd60794107aebd625748ed978b_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-tech-preview/metallb-rhel8@sha256:5b00d78c577a9c83945c127005e7d75d8e4e0ff83a2d600f9e4ad8821bd57048_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-tech-preview/metallb-rhel8@sha256:5b00d78c577a9c83945c127005e7d75d8e4e0ff83a2d600f9e4ad8821bd57048_s390x" + }, + "product_reference": "openshift-tech-preview/metallb-rhel8@sha256:5b00d78c577a9c83945c127005e7d75d8e4e0ff83a2d600f9e4ad8821bd57048_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-tech-preview/metallb-rhel8@sha256:b5c9f55e0c150ca192cfedbfafc74d7080261c5ea872f5438646e6bef4524afb_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-tech-preview/metallb-rhel8@sha256:b5c9f55e0c150ca192cfedbfafc74d7080261c5ea872f5438646e6bef4524afb_ppc64le" + }, + "product_reference": "openshift-tech-preview/metallb-rhel8@sha256:b5c9f55e0c150ca192cfedbfafc74d7080261c5ea872f5438646e6bef4524afb_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-tech-preview/metallb-rhel8@sha256:e71bef803bd0f6c70bc364ab12b142d0d49ce235a03191ad90434fadfcec6492_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift-tech-preview/metallb-rhel8@sha256:e71bef803bd0f6c70bc364ab12b142d0d49ce235a03191ad90434fadfcec6492_amd64" + }, + "product_reference": "openshift-tech-preview/metallb-rhel8@sha256:e71bef803bd0f6c70bc364ab12b142d0d49ce235a03191ad90434fadfcec6492_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4-aws-iso-0:4.14.0-202309272140.p0.gd2acdd5.assembly.stream.el8.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4-aws-iso-0:4.14.0-202309272140.p0.gd2acdd5.assembly.stream.el8.noarch" + }, + "product_reference": "openshift4-aws-iso-0:4.14.0-202309272140.p0.gd2acdd5.assembly.stream.el8.noarch", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4-aws-iso-0:4.14.0-202309272140.p0.gd2acdd5.assembly.stream.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4-aws-iso-0:4.14.0-202309272140.p0.gd2acdd5.assembly.stream.el8.src" + }, + "product_reference": "openshift4-aws-iso-0:4.14.0-202309272140.p0.gd2acdd5.assembly.stream.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/cloud-event-proxy-rhel8@sha256:06b6f28c571cc2013d62a385ea4abbb6b89467d76a2fb63f1409ba6d9b647156_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/cloud-event-proxy-rhel8@sha256:06b6f28c571cc2013d62a385ea4abbb6b89467d76a2fb63f1409ba6d9b647156_arm64" + }, + "product_reference": "openshift4/cloud-event-proxy-rhel8@sha256:06b6f28c571cc2013d62a385ea4abbb6b89467d76a2fb63f1409ba6d9b647156_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/cloud-event-proxy-rhel8@sha256:4ef634fb723c082c0dcf6070b203b8e03808c29757ee365e121722454d1d9278_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/cloud-event-proxy-rhel8@sha256:4ef634fb723c082c0dcf6070b203b8e03808c29757ee365e121722454d1d9278_amd64" + }, + "product_reference": "openshift4/cloud-event-proxy-rhel8@sha256:4ef634fb723c082c0dcf6070b203b8e03808c29757ee365e121722454d1d9278_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/cloud-event-proxy-rhel8@sha256:7ae73a264e1c8a47fdd7ad502281f3e833f876318d12855123ef2ae57a3b8c74_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/cloud-event-proxy-rhel8@sha256:7ae73a264e1c8a47fdd7ad502281f3e833f876318d12855123ef2ae57a3b8c74_ppc64le" + }, + "product_reference": "openshift4/cloud-event-proxy-rhel8@sha256:7ae73a264e1c8a47fdd7ad502281f3e833f876318d12855123ef2ae57a3b8c74_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:08a0823815c9c0918443585f70f415c466e809bc0ecbe368a7330e038a729032_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/cloud-network-config-controller-rhel8@sha256:08a0823815c9c0918443585f70f415c466e809bc0ecbe368a7330e038a729032_amd64" + }, + "product_reference": "openshift4/cloud-network-config-controller-rhel8@sha256:08a0823815c9c0918443585f70f415c466e809bc0ecbe368a7330e038a729032_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:539285dbea7b601e1be4f5531f4e9eb140945d4fd1f70f0350580b4f414c254c_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/cloud-network-config-controller-rhel8@sha256:539285dbea7b601e1be4f5531f4e9eb140945d4fd1f70f0350580b4f414c254c_ppc64le" + }, + "product_reference": "openshift4/cloud-network-config-controller-rhel8@sha256:539285dbea7b601e1be4f5531f4e9eb140945d4fd1f70f0350580b4f414c254c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:96ef562ba7f6216d8371d1fdf83fa7ebadf4d71bf2d4ec3fd3693a7c84f1b535_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/cloud-network-config-controller-rhel8@sha256:96ef562ba7f6216d8371d1fdf83fa7ebadf4d71bf2d4ec3fd3693a7c84f1b535_arm64" + }, + "product_reference": "openshift4/cloud-network-config-controller-rhel8@sha256:96ef562ba7f6216d8371d1fdf83fa7ebadf4d71bf2d4ec3fd3693a7c84f1b535_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/cloud-network-config-controller-rhel8@sha256:a31fbf509239ec5568b2abed523630ceef1adbe73264aa609c65835891830703_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/cloud-network-config-controller-rhel8@sha256:a31fbf509239ec5568b2abed523630ceef1adbe73264aa609c65835891830703_s390x" + }, + "product_reference": "openshift4/cloud-network-config-controller-rhel8@sha256:a31fbf509239ec5568b2abed523630ceef1adbe73264aa609c65835891830703_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/cnf-tests-rhel8@sha256:dc0a4ce29d0797974b9e2b82761e522c10b1d318db423c08a7d5f7c7a44d09f4_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/cnf-tests-rhel8@sha256:dc0a4ce29d0797974b9e2b82761e522c10b1d318db423c08a7d5f7c7a44d09f4_amd64" + }, + "product_reference": "openshift4/cnf-tests-rhel8@sha256:dc0a4ce29d0797974b9e2b82761e522c10b1d318db423c08a7d5f7c7a44d09f4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/dpdk-base-rhel8@sha256:7934f2caf7af7f09ecf808dc86d435e746df74d2de065fdebcd6825f64ccb748_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/dpdk-base-rhel8@sha256:7934f2caf7af7f09ecf808dc86d435e746df74d2de065fdebcd6825f64ccb748_amd64" + }, + "product_reference": "openshift4/dpdk-base-rhel8@sha256:7934f2caf7af7f09ecf808dc86d435e746df74d2de065fdebcd6825f64ccb748_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/egress-router-cni-rhel8@sha256:32783188764e70d52814676eee49081f8532d1a3e4a18ce4086520f658bbc6d7_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/egress-router-cni-rhel8@sha256:32783188764e70d52814676eee49081f8532d1a3e4a18ce4086520f658bbc6d7_ppc64le" + }, + "product_reference": "openshift4/egress-router-cni-rhel8@sha256:32783188764e70d52814676eee49081f8532d1a3e4a18ce4086520f658bbc6d7_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/egress-router-cni-rhel8@sha256:408e90fcf445b454be47150164a70291685bd1714b9419c47d2a9af93b5ba13c_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/egress-router-cni-rhel8@sha256:408e90fcf445b454be47150164a70291685bd1714b9419c47d2a9af93b5ba13c_amd64" + }, + "product_reference": "openshift4/egress-router-cni-rhel8@sha256:408e90fcf445b454be47150164a70291685bd1714b9419c47d2a9af93b5ba13c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/egress-router-cni-rhel8@sha256:7c00cfc2efb69c54009b7d81e104ff7eca34e4ee29717c310dad20d6ece64bd1_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/egress-router-cni-rhel8@sha256:7c00cfc2efb69c54009b7d81e104ff7eca34e4ee29717c310dad20d6ece64bd1_arm64" + }, + "product_reference": "openshift4/egress-router-cni-rhel8@sha256:7c00cfc2efb69c54009b7d81e104ff7eca34e4ee29717c310dad20d6ece64bd1_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/egress-router-cni-rhel8@sha256:9249417e4903e5675b461ae62a8196f30de98fce309d7913f54b3361443b561f_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/egress-router-cni-rhel8@sha256:9249417e4903e5675b461ae62a8196f30de98fce309d7913f54b3361443b561f_s390x" + }, + "product_reference": "openshift4/egress-router-cni-rhel8@sha256:9249417e4903e5675b461ae62a8196f30de98fce309d7913f54b3361443b561f_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:3a610bb24c321d85193ef685469dd3c4775eac2706238191d423d7aa7e0482eb_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/kubevirt-csi-driver-rhel8@sha256:3a610bb24c321d85193ef685469dd3c4775eac2706238191d423d7aa7e0482eb_s390x" + }, + "product_reference": "openshift4/kubevirt-csi-driver-rhel8@sha256:3a610bb24c321d85193ef685469dd3c4775eac2706238191d423d7aa7e0482eb_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:8ac51e2da226aae465a85e1412a31784a9c37746a99c09ed2aa7ae248b455c13_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/kubevirt-csi-driver-rhel8@sha256:8ac51e2da226aae465a85e1412a31784a9c37746a99c09ed2aa7ae248b455c13_ppc64le" + }, + "product_reference": "openshift4/kubevirt-csi-driver-rhel8@sha256:8ac51e2da226aae465a85e1412a31784a9c37746a99c09ed2aa7ae248b455c13_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:eee515d9ab53aaf552fc1c58b01c7380842d31280e94001d30d6af5016de2dda_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/kubevirt-csi-driver-rhel8@sha256:eee515d9ab53aaf552fc1c58b01c7380842d31280e94001d30d6af5016de2dda_arm64" + }, + "product_reference": "openshift4/kubevirt-csi-driver-rhel8@sha256:eee515d9ab53aaf552fc1c58b01c7380842d31280e94001d30d6af5016de2dda_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/kubevirt-csi-driver-rhel8@sha256:f0b1a53fc0ff4f8ce1df3de145cb99d86b45319956faaa278fd22ccb04def91b_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/kubevirt-csi-driver-rhel8@sha256:f0b1a53fc0ff4f8ce1df3de145cb99d86b45319956faaa278fd22ccb04def91b_amd64" + }, + "product_reference": "openshift4/kubevirt-csi-driver-rhel8@sha256:f0b1a53fc0ff4f8ce1df3de145cb99d86b45319956faaa278fd22ccb04def91b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/metallb-rhel8-operator@sha256:622c547380395c182a8fda35cda37c77103cbc98a89cda84953168d6b3de7ee5_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/metallb-rhel8-operator@sha256:622c547380395c182a8fda35cda37c77103cbc98a89cda84953168d6b3de7ee5_amd64" + }, + "product_reference": "openshift4/metallb-rhel8-operator@sha256:622c547380395c182a8fda35cda37c77103cbc98a89cda84953168d6b3de7ee5_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/metallb-rhel8-operator@sha256:963b8267a707efb1fcc5c69ee6ce5d1ed1bff20d421f7fdf9a459568fd72d0f4_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/metallb-rhel8-operator@sha256:963b8267a707efb1fcc5c69ee6ce5d1ed1bff20d421f7fdf9a459568fd72d0f4_s390x" + }, + "product_reference": "openshift4/metallb-rhel8-operator@sha256:963b8267a707efb1fcc5c69ee6ce5d1ed1bff20d421f7fdf9a459568fd72d0f4_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/metallb-rhel8-operator@sha256:a0ba015d7c1022ba4950ab49ee3315f8f18f703e7fc55ed5590e282a7b444c0f_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/metallb-rhel8-operator@sha256:a0ba015d7c1022ba4950ab49ee3315f8f18f703e7fc55ed5590e282a7b444c0f_arm64" + }, + "product_reference": "openshift4/metallb-rhel8-operator@sha256:a0ba015d7c1022ba4950ab49ee3315f8f18f703e7fc55ed5590e282a7b444c0f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/metallb-rhel8-operator@sha256:e8cdd92565af5602b592dff3e1d0260bd4775872eee7063aa3b854ab80cfea43_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/metallb-rhel8-operator@sha256:e8cdd92565af5602b592dff3e1d0260bd4775872eee7063aa3b854ab80cfea43_ppc64le" + }, + "product_reference": "openshift4/metallb-rhel8-operator@sha256:e8cdd92565af5602b592dff3e1d0260bd4775872eee7063aa3b854ab80cfea43_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/metallb-rhel8@sha256:1b2208cc474df254c487bcf0f6855b55d2a954fd60794107aebd625748ed978b_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/metallb-rhel8@sha256:1b2208cc474df254c487bcf0f6855b55d2a954fd60794107aebd625748ed978b_arm64" + }, + "product_reference": "openshift4/metallb-rhel8@sha256:1b2208cc474df254c487bcf0f6855b55d2a954fd60794107aebd625748ed978b_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/metallb-rhel8@sha256:5b00d78c577a9c83945c127005e7d75d8e4e0ff83a2d600f9e4ad8821bd57048_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/metallb-rhel8@sha256:5b00d78c577a9c83945c127005e7d75d8e4e0ff83a2d600f9e4ad8821bd57048_s390x" + }, + "product_reference": "openshift4/metallb-rhel8@sha256:5b00d78c577a9c83945c127005e7d75d8e4e0ff83a2d600f9e4ad8821bd57048_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/metallb-rhel8@sha256:b5c9f55e0c150ca192cfedbfafc74d7080261c5ea872f5438646e6bef4524afb_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/metallb-rhel8@sha256:b5c9f55e0c150ca192cfedbfafc74d7080261c5ea872f5438646e6bef4524afb_ppc64le" + }, + "product_reference": "openshift4/metallb-rhel8@sha256:b5c9f55e0c150ca192cfedbfafc74d7080261c5ea872f5438646e6bef4524afb_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/metallb-rhel8@sha256:e71bef803bd0f6c70bc364ab12b142d0d49ce235a03191ad90434fadfcec6492_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/metallb-rhel8@sha256:e71bef803bd0f6c70bc364ab12b142d0d49ce235a03191ad90434fadfcec6492_amd64" + }, + "product_reference": "openshift4/metallb-rhel8@sha256:e71bef803bd0f6c70bc364ab12b142d0d49ce235a03191ad90434fadfcec6492_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/network-tools-rhel8@sha256:6d341f6db73574674fd169151c6f477b7e0c48bd3ab98d5ddac4ee4e08dc66a2_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/network-tools-rhel8@sha256:6d341f6db73574674fd169151c6f477b7e0c48bd3ab98d5ddac4ee4e08dc66a2_ppc64le" + }, + "product_reference": "openshift4/network-tools-rhel8@sha256:6d341f6db73574674fd169151c6f477b7e0c48bd3ab98d5ddac4ee4e08dc66a2_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/network-tools-rhel8@sha256:79964d3ba7032b35274eca07195b49c155730e6e590793433b3b2eb040c78006_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/network-tools-rhel8@sha256:79964d3ba7032b35274eca07195b49c155730e6e590793433b3b2eb040c78006_s390x" + }, + "product_reference": "openshift4/network-tools-rhel8@sha256:79964d3ba7032b35274eca07195b49c155730e6e590793433b3b2eb040c78006_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/network-tools-rhel8@sha256:debe75005d51d1c53fff23ccdb782089b93ec700b291f994f1100c4ee64b1de4_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/network-tools-rhel8@sha256:debe75005d51d1c53fff23ccdb782089b93ec700b291f994f1100c4ee64b1de4_arm64" + }, + "product_reference": "openshift4/network-tools-rhel8@sha256:debe75005d51d1c53fff23ccdb782089b93ec700b291f994f1100c4ee64b1de4_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/network-tools-rhel8@sha256:ff966c6c5d54ed45564a36e13d3f75548c89575ece5bc9a6d8226d7c01933716_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/network-tools-rhel8@sha256:ff966c6c5d54ed45564a36e13d3f75548c89575ece5bc9a6d8226d7c01933716_amd64" + }, + "product_reference": "openshift4/network-tools-rhel8@sha256:ff966c6c5d54ed45564a36e13d3f75548c89575ece5bc9a6d8226d7c01933716_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/nmstate-console-plugin-rhel8@sha256:0ce257dbc4cd8b2606edfdfbbe65ad3eded479802b9fb728e7ffa05158102664_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/nmstate-console-plugin-rhel8@sha256:0ce257dbc4cd8b2606edfdfbbe65ad3eded479802b9fb728e7ffa05158102664_s390x" + }, + "product_reference": "openshift4/nmstate-console-plugin-rhel8@sha256:0ce257dbc4cd8b2606edfdfbbe65ad3eded479802b9fb728e7ffa05158102664_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/nmstate-console-plugin-rhel8@sha256:5787e424475a5346fa90877509f736385cf9d5a2cc610a2918a65e27815ed471_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/nmstate-console-plugin-rhel8@sha256:5787e424475a5346fa90877509f736385cf9d5a2cc610a2918a65e27815ed471_amd64" + }, + "product_reference": "openshift4/nmstate-console-plugin-rhel8@sha256:5787e424475a5346fa90877509f736385cf9d5a2cc610a2918a65e27815ed471_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/nmstate-console-plugin-rhel8@sha256:7d984cf32266eb68b030fabf31247597120e93199c56f12efe7c100eaeaa246c_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/nmstate-console-plugin-rhel8@sha256:7d984cf32266eb68b030fabf31247597120e93199c56f12efe7c100eaeaa246c_ppc64le" + }, + "product_reference": "openshift4/nmstate-console-plugin-rhel8@sha256:7d984cf32266eb68b030fabf31247597120e93199c56f12efe7c100eaeaa246c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/nmstate-console-plugin-rhel8@sha256:adb0aa23fb49f66f69b44d64122abd2850661425f7fb62081950177998447f01_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/nmstate-console-plugin-rhel8@sha256:adb0aa23fb49f66f69b44d64122abd2850661425f7fb62081950177998447f01_arm64" + }, + "product_reference": "openshift4/nmstate-console-plugin-rhel8@sha256:adb0aa23fb49f66f69b44d64122abd2850661425f7fb62081950177998447f01_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/oc-mirror-plugin-rhel8@sha256:2c92b9af4618d77ad5fa2765d0067ea1fb8178db227d588b412908843a257fdc_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/oc-mirror-plugin-rhel8@sha256:2c92b9af4618d77ad5fa2765d0067ea1fb8178db227d588b412908843a257fdc_amd64" + }, + "product_reference": "openshift4/oc-mirror-plugin-rhel8@sha256:2c92b9af4618d77ad5fa2765d0067ea1fb8178db227d588b412908843a257fdc_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/oc-mirror-plugin-rhel8@sha256:4a8d44503de543516043a6a1fd03fe583cd647dec5cac74c6db5cd979a003a71_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/oc-mirror-plugin-rhel8@sha256:4a8d44503de543516043a6a1fd03fe583cd647dec5cac74c6db5cd979a003a71_s390x" + }, + "product_reference": "openshift4/oc-mirror-plugin-rhel8@sha256:4a8d44503de543516043a6a1fd03fe583cd647dec5cac74c6db5cd979a003a71_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/oc-mirror-plugin-rhel8@sha256:bb4fd225f4ff65391b4e68ebddf1099900a0f0bbab44bc96c5eb505942aab80d_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/oc-mirror-plugin-rhel8@sha256:bb4fd225f4ff65391b4e68ebddf1099900a0f0bbab44bc96c5eb505942aab80d_ppc64le" + }, + "product_reference": "openshift4/oc-mirror-plugin-rhel8@sha256:bb4fd225f4ff65391b4e68ebddf1099900a0f0bbab44bc96c5eb505942aab80d_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/oc-mirror-plugin-rhel8@sha256:e18288ecbc016b0945e12ff3b5b0488ca3af1af1db0c2b0c8f5c5fc15449d334_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/oc-mirror-plugin-rhel8@sha256:e18288ecbc016b0945e12ff3b5b0488ca3af1af1db0c2b0c8f5c5fc15449d334_arm64" + }, + "product_reference": "openshift4/oc-mirror-plugin-rhel8@sha256:e18288ecbc016b0945e12ff3b5b0488ca3af1af1db0c2b0c8f5c5fc15449d334_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:12fe69f184e4f6fa1df681137698459fbdb1110ae24f021f6a24f131f1f41355_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/openshift-route-controller-manager-rhel8@sha256:12fe69f184e4f6fa1df681137698459fbdb1110ae24f021f6a24f131f1f41355_ppc64le" + }, + "product_reference": "openshift4/openshift-route-controller-manager-rhel8@sha256:12fe69f184e4f6fa1df681137698459fbdb1110ae24f021f6a24f131f1f41355_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:2d16043315d333d0fb07013a725e119d89028aa4a366326ceae92b56b644b699_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/openshift-route-controller-manager-rhel8@sha256:2d16043315d333d0fb07013a725e119d89028aa4a366326ceae92b56b644b699_s390x" + }, + "product_reference": "openshift4/openshift-route-controller-manager-rhel8@sha256:2d16043315d333d0fb07013a725e119d89028aa4a366326ceae92b56b644b699_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:7251ed222e73f80e271b09d01acdb93695893b6319335942e50611f734e385ae_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/openshift-route-controller-manager-rhel8@sha256:7251ed222e73f80e271b09d01acdb93695893b6319335942e50611f734e385ae_arm64" + }, + "product_reference": "openshift4/openshift-route-controller-manager-rhel8@sha256:7251ed222e73f80e271b09d01acdb93695893b6319335942e50611f734e385ae_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/openshift-route-controller-manager-rhel8@sha256:a66a7ff72db57bf541a891826608d560e17d4065e99e98a6edc431bc2b081ba1_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/openshift-route-controller-manager-rhel8@sha256:a66a7ff72db57bf541a891826608d560e17d4065e99e98a6edc431bc2b081ba1_amd64" + }, + "product_reference": "openshift4/openshift-route-controller-manager-rhel8@sha256:a66a7ff72db57bf541a891826608d560e17d4065e99e98a6edc431bc2b081ba1_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:1fa39a0d145051a36ebca280fe08387145e20cda9d0433372a2f1fa64ffa8cc9_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-agent-installer-api-server-rhel8@sha256:1fa39a0d145051a36ebca280fe08387145e20cda9d0433372a2f1fa64ffa8cc9_s390x" + }, + "product_reference": "openshift4/ose-agent-installer-api-server-rhel8@sha256:1fa39a0d145051a36ebca280fe08387145e20cda9d0433372a2f1fa64ffa8cc9_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:62a3000f321297b3259c1e79496ff8b41decd2b90147d027c148192fd9720432_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-agent-installer-api-server-rhel8@sha256:62a3000f321297b3259c1e79496ff8b41decd2b90147d027c148192fd9720432_ppc64le" + }, + "product_reference": "openshift4/ose-agent-installer-api-server-rhel8@sha256:62a3000f321297b3259c1e79496ff8b41decd2b90147d027c148192fd9720432_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:ccec14572b7faefe8af5927b6a6c95b2391f3c2344e1781b3fb603707acb197e_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-agent-installer-api-server-rhel8@sha256:ccec14572b7faefe8af5927b6a6c95b2391f3c2344e1781b3fb603707acb197e_arm64" + }, + "product_reference": "openshift4/ose-agent-installer-api-server-rhel8@sha256:ccec14572b7faefe8af5927b6a6c95b2391f3c2344e1781b3fb603707acb197e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-api-server-rhel8@sha256:d28c9adc6863eb1d3983d15f5da41a91d39bc7c5493092006f95d7acd2463fe6_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-agent-installer-api-server-rhel8@sha256:d28c9adc6863eb1d3983d15f5da41a91d39bc7c5493092006f95d7acd2463fe6_amd64" + }, + "product_reference": "openshift4/ose-agent-installer-api-server-rhel8@sha256:d28c9adc6863eb1d3983d15f5da41a91d39bc7c5493092006f95d7acd2463fe6_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:23f4a1f57138d322cf26b2dbbb1d6d1d069604cb813804db7eebbecd09e2ae36_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-agent-installer-csr-approver-rhel8@sha256:23f4a1f57138d322cf26b2dbbb1d6d1d069604cb813804db7eebbecd09e2ae36_ppc64le" + }, + "product_reference": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:23f4a1f57138d322cf26b2dbbb1d6d1d069604cb813804db7eebbecd09e2ae36_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:447dd1a4f159937f4f7baddb8e526a8cdd830bf67d02024290096ea6e8094b5b_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-agent-installer-csr-approver-rhel8@sha256:447dd1a4f159937f4f7baddb8e526a8cdd830bf67d02024290096ea6e8094b5b_s390x" + }, + "product_reference": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:447dd1a4f159937f4f7baddb8e526a8cdd830bf67d02024290096ea6e8094b5b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:dee94a75ff1f297b7189f58a8e5f8c97aa4564b47720a20ff589801051c0db8a_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-agent-installer-csr-approver-rhel8@sha256:dee94a75ff1f297b7189f58a8e5f8c97aa4564b47720a20ff589801051c0db8a_amd64" + }, + "product_reference": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:dee94a75ff1f297b7189f58a8e5f8c97aa4564b47720a20ff589801051c0db8a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:e439f6561dfe415508bc15e9121226737b6fa0bf243f1b21780f543d0e12d15b_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-agent-installer-csr-approver-rhel8@sha256:e439f6561dfe415508bc15e9121226737b6fa0bf243f1b21780f543d0e12d15b_arm64" + }, + "product_reference": "openshift4/ose-agent-installer-csr-approver-rhel8@sha256:e439f6561dfe415508bc15e9121226737b6fa0bf243f1b21780f543d0e12d15b_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:08130baef144314cda06f7c8891b2243b1b3952eebe01c2353ee35baa6c7fbee_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-agent-installer-orchestrator-rhel8@sha256:08130baef144314cda06f7c8891b2243b1b3952eebe01c2353ee35baa6c7fbee_ppc64le" + }, + "product_reference": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:08130baef144314cda06f7c8891b2243b1b3952eebe01c2353ee35baa6c7fbee_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:578faa9608909b0392b21afc58b462c1c729697641925e551a4c500d02bcdef4_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-agent-installer-orchestrator-rhel8@sha256:578faa9608909b0392b21afc58b462c1c729697641925e551a4c500d02bcdef4_s390x" + }, + "product_reference": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:578faa9608909b0392b21afc58b462c1c729697641925e551a4c500d02bcdef4_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:ccd30bffd8f7fda739de94323fb6bebedc7b5bb381cda0ff07a8ea674adaabe9_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-agent-installer-orchestrator-rhel8@sha256:ccd30bffd8f7fda739de94323fb6bebedc7b5bb381cda0ff07a8ea674adaabe9_amd64" + }, + "product_reference": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:ccd30bffd8f7fda739de94323fb6bebedc7b5bb381cda0ff07a8ea674adaabe9_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:dac23e99d08b9a8eec870a800355eb9fcc724578a9caa4975553b013ac3760cc_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-agent-installer-orchestrator-rhel8@sha256:dac23e99d08b9a8eec870a800355eb9fcc724578a9caa4975553b013ac3760cc_arm64" + }, + "product_reference": "openshift4/ose-agent-installer-orchestrator-rhel8@sha256:dac23e99d08b9a8eec870a800355eb9fcc724578a9caa4975553b013ac3760cc_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-utils-rhel8@sha256:98324be7ab3593a7727f9473c24c61aff1c6d0c1c9ce46a022042b78a3e97770_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-agent-installer-utils-rhel8@sha256:98324be7ab3593a7727f9473c24c61aff1c6d0c1c9ce46a022042b78a3e97770_s390x" + }, + "product_reference": "openshift4/ose-agent-installer-utils-rhel8@sha256:98324be7ab3593a7727f9473c24c61aff1c6d0c1c9ce46a022042b78a3e97770_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-utils-rhel8@sha256:a2004defb9deefb4c0be479b80ad84a939dd6ec33ff56707915fa0dcf72d2adb_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-agent-installer-utils-rhel8@sha256:a2004defb9deefb4c0be479b80ad84a939dd6ec33ff56707915fa0dcf72d2adb_amd64" + }, + "product_reference": "openshift4/ose-agent-installer-utils-rhel8@sha256:a2004defb9deefb4c0be479b80ad84a939dd6ec33ff56707915fa0dcf72d2adb_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-utils-rhel8@sha256:f7bd6a15ae395e0dc0bb957618f352f16c2b95b6fe8f6f1fbe664b6c9f9a5510_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-agent-installer-utils-rhel8@sha256:f7bd6a15ae395e0dc0bb957618f352f16c2b95b6fe8f6f1fbe664b6c9f9a5510_ppc64le" + }, + "product_reference": "openshift4/ose-agent-installer-utils-rhel8@sha256:f7bd6a15ae395e0dc0bb957618f352f16c2b95b6fe8f6f1fbe664b6c9f9a5510_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-agent-installer-utils-rhel8@sha256:f7f21d54bca4f0faa4fe80aba2bf0b62967557e7befb27928a0bc56e9e56211f_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-agent-installer-utils-rhel8@sha256:f7f21d54bca4f0faa4fe80aba2bf0b62967557e7befb27928a0bc56e9e56211f_arm64" + }, + "product_reference": "openshift4/ose-agent-installer-utils-rhel8@sha256:f7f21d54bca4f0faa4fe80aba2bf0b62967557e7befb27928a0bc56e9e56211f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:87d89f34acb414806c54e1581cea55296786246e0b6aa76ecc6604f8b2cd5884_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:87d89f34acb414806c54e1581cea55296786246e0b6aa76ecc6604f8b2cd5884_amd64" + }, + "product_reference": "openshift4/ose-alibaba-cloud-controller-manager-rhel8@sha256:87d89f34acb414806c54e1581cea55296786246e0b6aa76ecc6604f8b2cd5884_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:c37b3d675bfe3b02ea6cfa1862db40b175ce248a528456c9780932629bfe7de7_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:c37b3d675bfe3b02ea6cfa1862db40b175ce248a528456c9780932629bfe7de7_amd64" + }, + "product_reference": "openshift4/ose-alibaba-cloud-csi-driver-container-rhel8@sha256:c37b3d675bfe3b02ea6cfa1862db40b175ce248a528456c9780932629bfe7de7_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:6454f60bd6bbd488b3e915f152199bfdd370a489e162cc4d90c8a9a8b2580ae2_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:6454f60bd6bbd488b3e915f152199bfdd370a489e162cc4d90c8a9a8b2580ae2_amd64" + }, + "product_reference": "openshift4/ose-alibaba-disk-csi-driver-operator-container-rhel8@sha256:6454f60bd6bbd488b3e915f152199bfdd370a489e162cc4d90c8a9a8b2580ae2_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-alibaba-machine-controllers-rhel8@sha256:098d7b28c70c04aaded59f23bf814adf931abee591caab97873bbf1964aa7550_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-alibaba-machine-controllers-rhel8@sha256:098d7b28c70c04aaded59f23bf814adf931abee591caab97873bbf1964aa7550_amd64" + }, + "product_reference": "openshift4/ose-alibaba-machine-controllers-rhel8@sha256:098d7b28c70c04aaded59f23bf814adf931abee591caab97873bbf1964aa7550_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ansible-operator@sha256:128eb819cfda3ecf00fb1b6f1c617e0ab3a9b89839c5955d4d9ec50fe5c9350b_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-ansible-operator@sha256:128eb819cfda3ecf00fb1b6f1c617e0ab3a9b89839c5955d4d9ec50fe5c9350b_s390x" + }, + "product_reference": "openshift4/ose-ansible-operator@sha256:128eb819cfda3ecf00fb1b6f1c617e0ab3a9b89839c5955d4d9ec50fe5c9350b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ansible-operator@sha256:21f7c549e00ee5a5335e3b84b31d335ca2fbc426765ab81607b1d5defe235682_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-ansible-operator@sha256:21f7c549e00ee5a5335e3b84b31d335ca2fbc426765ab81607b1d5defe235682_ppc64le" + }, + "product_reference": "openshift4/ose-ansible-operator@sha256:21f7c549e00ee5a5335e3b84b31d335ca2fbc426765ab81607b1d5defe235682_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ansible-operator@sha256:57b0a07d7ef87f6e9416bf92c223d2847f4d40bec9c2cf970012a56975fd5fd5_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-ansible-operator@sha256:57b0a07d7ef87f6e9416bf92c223d2847f4d40bec9c2cf970012a56975fd5fd5_arm64" + }, + "product_reference": "openshift4/ose-ansible-operator@sha256:57b0a07d7ef87f6e9416bf92c223d2847f4d40bec9c2cf970012a56975fd5fd5_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ansible-operator@sha256:bd42eb29510c8135c68f46e4f35240223941026ad7e9c0364cf4e3cb13c753c8_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-ansible-operator@sha256:bd42eb29510c8135c68f46e4f35240223941026ad7e9c0364cf4e3cb13c753c8_amd64" + }, + "product_reference": "openshift4/ose-ansible-operator@sha256:bd42eb29510c8135c68f46e4f35240223941026ad7e9c0364cf4e3cb13c753c8_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:4578779fb7c024bdc50789f3a6d6ce924919e0d16657ef61567f458db4f73b20_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-apiserver-network-proxy-rhel8@sha256:4578779fb7c024bdc50789f3a6d6ce924919e0d16657ef61567f458db4f73b20_arm64" + }, + "product_reference": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:4578779fb7c024bdc50789f3a6d6ce924919e0d16657ef61567f458db4f73b20_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:763c00fceac320967491c29fd1a7cc159e0e8ac6339c625342d691c281cc0de0_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-apiserver-network-proxy-rhel8@sha256:763c00fceac320967491c29fd1a7cc159e0e8ac6339c625342d691c281cc0de0_amd64" + }, + "product_reference": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:763c00fceac320967491c29fd1a7cc159e0e8ac6339c625342d691c281cc0de0_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:7927c70eab7a7b6e6db148117b2d57de2409624e46a6096605e1416e2bb4b9a1_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-apiserver-network-proxy-rhel8@sha256:7927c70eab7a7b6e6db148117b2d57de2409624e46a6096605e1416e2bb4b9a1_ppc64le" + }, + "product_reference": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:7927c70eab7a7b6e6db148117b2d57de2409624e46a6096605e1416e2bb4b9a1_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:eef7741b8de1b9e6fc1c8425241e94a4db7f119518a9e6fc917ac9ee887a6034_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-apiserver-network-proxy-rhel8@sha256:eef7741b8de1b9e6fc1c8425241e94a4db7f119518a9e6fc917ac9ee887a6034_s390x" + }, + "product_reference": "openshift4/ose-apiserver-network-proxy-rhel8@sha256:eef7741b8de1b9e6fc1c8425241e94a4db7f119518a9e6fc917ac9ee887a6034_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:032150a13e64820e3b411c574f132e2aa5f11479cfe7599fa78832f5ac8ed515_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:032150a13e64820e3b411c574f132e2aa5f11479cfe7599fa78832f5ac8ed515_arm64" + }, + "product_reference": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:032150a13e64820e3b411c574f132e2aa5f11479cfe7599fa78832f5ac8ed515_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:55771d63bbeda7eb965dc389b9487e83c437d3ae82881eadc1b5c6f803a6ef39_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:55771d63bbeda7eb965dc389b9487e83c437d3ae82881eadc1b5c6f803a6ef39_amd64" + }, + "product_reference": "openshift4/ose-aws-cloud-controller-manager-rhel8@sha256:55771d63bbeda7eb965dc389b9487e83c437d3ae82881eadc1b5c6f803a6ef39_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:0fa2c82280e9a9fdc1857537aadb453f5dc7165f4cef50ddc33bd5377cdd5967_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:0fa2c82280e9a9fdc1857537aadb453f5dc7165f4cef50ddc33bd5377cdd5967_amd64" + }, + "product_reference": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:0fa2c82280e9a9fdc1857537aadb453f5dc7165f4cef50ddc33bd5377cdd5967_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:d6ab444f86caff2b4671ef94735a4825caace99f7343f53f75a8dd6878e8a332_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:d6ab444f86caff2b4671ef94735a4825caace99f7343f53f75a8dd6878e8a332_arm64" + }, + "product_reference": "openshift4/ose-aws-cluster-api-controllers-rhel8@sha256:d6ab444f86caff2b4671ef94735a4825caace99f7343f53f75a8dd6878e8a332_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:3c3bae5ad9edf5a36574a9fb911308be09da47cb14e040b315d0eaf9cd5d8b8a_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:3c3bae5ad9edf5a36574a9fb911308be09da47cb14e040b315d0eaf9cd5d8b8a_amd64" + }, + "product_reference": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:3c3bae5ad9edf5a36574a9fb911308be09da47cb14e040b315d0eaf9cd5d8b8a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:431a02b72ff7f4545565437d8d6de5b2c602a97d323cb1f18e563cf4a3c524c3_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:431a02b72ff7f4545565437d8d6de5b2c602a97d323cb1f18e563cf4a3c524c3_arm64" + }, + "product_reference": "openshift4/ose-aws-ebs-csi-driver-rhel8-operator@sha256:431a02b72ff7f4545565437d8d6de5b2c602a97d323cb1f18e563cf4a3c524c3_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:0f429130969f055755a8e5088ad024f6d1739b01dd2a6fb8f70ca2fac70eb9f2_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:0f429130969f055755a8e5088ad024f6d1739b01dd2a6fb8f70ca2fac70eb9f2_amd64" + }, + "product_reference": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:0f429130969f055755a8e5088ad024f6d1739b01dd2a6fb8f70ca2fac70eb9f2_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:30700ead43f0f6f12299866530152100e1084a4bff11839630572500f1751cd8_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:30700ead43f0f6f12299866530152100e1084a4bff11839630572500f1751cd8_arm64" + }, + "product_reference": "openshift4/ose-aws-ebs-csi-driver-rhel8@sha256:30700ead43f0f6f12299866530152100e1084a4bff11839630572500f1751cd8_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:9f14894fb17ff69fefa5e8e44afb806a41c9db13f7275ed359a48fa7064e6adc_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:9f14894fb17ff69fefa5e8e44afb806a41c9db13f7275ed359a48fa7064e6adc_amd64" + }, + "product_reference": "openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:9f14894fb17ff69fefa5e8e44afb806a41c9db13f7275ed359a48fa7064e6adc_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:d313ee9ae6d4a7d0863101e5cbc5140f7d4777eb7e0e3d4bccab7bd4ef9d1e8c_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:d313ee9ae6d4a7d0863101e5cbc5140f7d4777eb7e0e3d4bccab7bd4ef9d1e8c_arm64" + }, + "product_reference": "openshift4/ose-aws-efs-csi-driver-container-rhel8@sha256:d313ee9ae6d4a7d0863101e5cbc5140f7d4777eb7e0e3d4bccab7bd4ef9d1e8c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:3e6573e509108ee5b88bdd3d8e8e3f01f9d0ca4783df60031c244d5e1e3097a3_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:3e6573e509108ee5b88bdd3d8e8e3f01f9d0ca4783df60031c244d5e1e3097a3_amd64" + }, + "product_reference": "openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:3e6573e509108ee5b88bdd3d8e8e3f01f9d0ca4783df60031c244d5e1e3097a3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:6f1c9c31224cc0f6e3a40cbf0535ecb3e3a322a18535fd5ecc19b4063c6c95f0_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:6f1c9c31224cc0f6e3a40cbf0535ecb3e3a322a18535fd5ecc19b4063c6c95f0_arm64" + }, + "product_reference": "openshift4/ose-aws-efs-csi-driver-rhel8-operator@sha256:6f1c9c31224cc0f6e3a40cbf0535ecb3e3a322a18535fd5ecc19b4063c6c95f0_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:1edbd96f70f64135d6ea8bbbfa8afe73b8fdb10062c88167aef825d19caa881a_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:1edbd96f70f64135d6ea8bbbfa8afe73b8fdb10062c88167aef825d19caa881a_amd64" + }, + "product_reference": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:1edbd96f70f64135d6ea8bbbfa8afe73b8fdb10062c88167aef825d19caa881a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:46380fa54203c25657865d68347dfeb721ea029b083d10798e2a9104c25007af_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:46380fa54203c25657865d68347dfeb721ea029b083d10798e2a9104c25007af_amd64" + }, + "product_reference": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:46380fa54203c25657865d68347dfeb721ea029b083d10798e2a9104c25007af_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:9312a415e259dbbb21002f0eb40de6a921cdb52901517f8bed34140d474ab2c6_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:9312a415e259dbbb21002f0eb40de6a921cdb52901517f8bed34140d474ab2c6_arm64" + }, + "product_reference": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:9312a415e259dbbb21002f0eb40de6a921cdb52901517f8bed34140d474ab2c6_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:d2b9f1ca058a89a649ddad44b251f35fda5b52b725c496d769a71e46dab73170_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:d2b9f1ca058a89a649ddad44b251f35fda5b52b725c496d769a71e46dab73170_arm64" + }, + "product_reference": "openshift4/ose-aws-pod-identity-webhook-rhel8@sha256:d2b9f1ca058a89a649ddad44b251f35fda5b52b725c496d769a71e46dab73170_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:39c238c58cb24a0a8a374be59bf4bd581cbd449a9211e8e2f927c21c485a3927_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:39c238c58cb24a0a8a374be59bf4bd581cbd449a9211e8e2f927c21c485a3927_amd64" + }, + "product_reference": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:39c238c58cb24a0a8a374be59bf4bd581cbd449a9211e8e2f927c21c485a3927_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:3f0abfa288fd897afeed7bc96f85e8039c663a919d5a06dabe42540db038dffb_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:3f0abfa288fd897afeed7bc96f85e8039c663a919d5a06dabe42540db038dffb_arm64" + }, + "product_reference": "openshift4/ose-azure-cloud-controller-manager-rhel8@sha256:3f0abfa288fd897afeed7bc96f85e8039c663a919d5a06dabe42540db038dffb_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:0f94c814cbe4169f8a33449d129c109e37935ab0ea6079b645b04307deb8aa46_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-azure-cloud-node-manager-rhel8@sha256:0f94c814cbe4169f8a33449d129c109e37935ab0ea6079b645b04307deb8aa46_amd64" + }, + "product_reference": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:0f94c814cbe4169f8a33449d129c109e37935ab0ea6079b645b04307deb8aa46_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:11dc42445089e055e0d71263385b9cac46bcfb210d7c23e5db300759eca6a1e0_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-azure-cloud-node-manager-rhel8@sha256:11dc42445089e055e0d71263385b9cac46bcfb210d7c23e5db300759eca6a1e0_arm64" + }, + "product_reference": "openshift4/ose-azure-cloud-node-manager-rhel8@sha256:11dc42445089e055e0d71263385b9cac46bcfb210d7c23e5db300759eca6a1e0_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:9c2910512345424e5e2cb17245bf65c3ac63971177c9cd1b8ed4564f1944cfb0_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:9c2910512345424e5e2cb17245bf65c3ac63971177c9cd1b8ed4564f1944cfb0_amd64" + }, + "product_reference": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:9c2910512345424e5e2cb17245bf65c3ac63971177c9cd1b8ed4564f1944cfb0_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:d0567f3bfaa94c1abbc1e8e68fe42f433aa68e08d70428f130b1e1013044c520_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:d0567f3bfaa94c1abbc1e8e68fe42f433aa68e08d70428f130b1e1013044c520_arm64" + }, + "product_reference": "openshift4/ose-azure-cluster-api-controllers-rhel8@sha256:d0567f3bfaa94c1abbc1e8e68fe42f433aa68e08d70428f130b1e1013044c520_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:548380aa00d3936ef553ffb8f63d54513a3a0b9f112bacf7a3b01aa7f290d1bb_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:548380aa00d3936ef553ffb8f63d54513a3a0b9f112bacf7a3b01aa7f290d1bb_arm64" + }, + "product_reference": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:548380aa00d3936ef553ffb8f63d54513a3a0b9f112bacf7a3b01aa7f290d1bb_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:754a360fbe2dc74d1e28315346912af6f4e990544ae8c958ed15dd5f6c55902e_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:754a360fbe2dc74d1e28315346912af6f4e990544ae8c958ed15dd5f6c55902e_amd64" + }, + "product_reference": "openshift4/ose-azure-disk-csi-driver-rhel8-operator@sha256:754a360fbe2dc74d1e28315346912af6f4e990544ae8c958ed15dd5f6c55902e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:3903372cd26751d2bd7a5a3904046ec20b3cee327c6e1e6b9a84a988e70eb4ea_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-azure-disk-csi-driver-rhel8@sha256:3903372cd26751d2bd7a5a3904046ec20b3cee327c6e1e6b9a84a988e70eb4ea_arm64" + }, + "product_reference": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:3903372cd26751d2bd7a5a3904046ec20b3cee327c6e1e6b9a84a988e70eb4ea_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:bea39a7dcb076922022aa176ec869a3b04d473617e22316d3ba63b314457eaa5_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-azure-disk-csi-driver-rhel8@sha256:bea39a7dcb076922022aa176ec869a3b04d473617e22316d3ba63b314457eaa5_amd64" + }, + "product_reference": "openshift4/ose-azure-disk-csi-driver-rhel8@sha256:bea39a7dcb076922022aa176ec869a3b04d473617e22316d3ba63b314457eaa5_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:7699dacbe9201d9109acfc01ca9689fdb5619286dbc95c0130c717ed8c9fb9a1_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:7699dacbe9201d9109acfc01ca9689fdb5619286dbc95c0130c717ed8c9fb9a1_amd64" + }, + "product_reference": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:7699dacbe9201d9109acfc01ca9689fdb5619286dbc95c0130c717ed8c9fb9a1_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:921a3c9166e5ea1d12542d5182fe2aa9e8cbc5240c8d634dd0fc3cb204cc9053_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:921a3c9166e5ea1d12542d5182fe2aa9e8cbc5240c8d634dd0fc3cb204cc9053_arm64" + }, + "product_reference": "openshift4/ose-azure-file-csi-driver-operator-rhel8@sha256:921a3c9166e5ea1d12542d5182fe2aa9e8cbc5240c8d634dd0fc3cb204cc9053_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:c552af9896d31fc0828175b6cf4796551c0c848db2c1b742e73c2e94c6b3b2ee_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-azure-file-csi-driver-rhel8@sha256:c552af9896d31fc0828175b6cf4796551c0c848db2c1b742e73c2e94c6b3b2ee_amd64" + }, + "product_reference": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:c552af9896d31fc0828175b6cf4796551c0c848db2c1b742e73c2e94c6b3b2ee_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:c94b3054514be12aeaa2c31d146e2ed496eb1b1b09697580feab74d31d361bfb_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-azure-file-csi-driver-rhel8@sha256:c94b3054514be12aeaa2c31d146e2ed496eb1b1b09697580feab74d31d361bfb_arm64" + }, + "product_reference": "openshift4/ose-azure-file-csi-driver-rhel8@sha256:c94b3054514be12aeaa2c31d146e2ed496eb1b1b09697580feab74d31d361bfb_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:66a7dc3df3b76d60940555e8f70f6bd3c26b2242634e9449b85872604ffbb099_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:66a7dc3df3b76d60940555e8f70f6bd3c26b2242634e9449b85872604ffbb099_arm64" + }, + "product_reference": "openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:66a7dc3df3b76d60940555e8f70f6bd3c26b2242634e9449b85872604ffbb099_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:b977c5338565731020bad68d4c0282640a9ca7f778ec3d6f498f0b2498f57d33_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:b977c5338565731020bad68d4c0282640a9ca7f778ec3d6f498f0b2498f57d33_amd64" + }, + "product_reference": "openshift4/ose-azure-workload-identity-webhook-rhel8@sha256:b977c5338565731020bad68d4c0282640a9ca7f778ec3d6f498f0b2498f57d33_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:287cce61a10c422fcda5bf4f3300d8816661dbb1435be59daeb6ec8713911f32_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-baremetal-installer-rhel8@sha256:287cce61a10c422fcda5bf4f3300d8816661dbb1435be59daeb6ec8713911f32_amd64" + }, + "product_reference": "openshift4/ose-baremetal-installer-rhel8@sha256:287cce61a10c422fcda5bf4f3300d8816661dbb1435be59daeb6ec8713911f32_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:32889e3e6c7e74ff6a9a19a58b5a4d0f04b24081dcd7b69a3f9a4cbf9f0e88b1_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-baremetal-installer-rhel8@sha256:32889e3e6c7e74ff6a9a19a58b5a4d0f04b24081dcd7b69a3f9a4cbf9f0e88b1_arm64" + }, + "product_reference": "openshift4/ose-baremetal-installer-rhel8@sha256:32889e3e6c7e74ff6a9a19a58b5a4d0f04b24081dcd7b69a3f9a4cbf9f0e88b1_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:36d605454000950d070dfa1580c59b389357b5485068b3c3f71b4b56b8131059_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-baremetal-installer-rhel8@sha256:36d605454000950d070dfa1580c59b389357b5485068b3c3f71b4b56b8131059_arm64" + }, + "product_reference": "openshift4/ose-baremetal-installer-rhel8@sha256:36d605454000950d070dfa1580c59b389357b5485068b3c3f71b4b56b8131059_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:6179b5f651be72065de051bf59af1169ead6194077c26bc8b0faf5554c878c20_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-baremetal-installer-rhel8@sha256:6179b5f651be72065de051bf59af1169ead6194077c26bc8b0faf5554c878c20_s390x" + }, + "product_reference": "openshift4/ose-baremetal-installer-rhel8@sha256:6179b5f651be72065de051bf59af1169ead6194077c26bc8b0faf5554c878c20_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:784175e0ab5456487635167044940297359fd6554fa1ffa38126926cd83fc483_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-baremetal-installer-rhel8@sha256:784175e0ab5456487635167044940297359fd6554fa1ffa38126926cd83fc483_amd64" + }, + "product_reference": "openshift4/ose-baremetal-installer-rhel8@sha256:784175e0ab5456487635167044940297359fd6554fa1ffa38126926cd83fc483_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:7d2e13a2934ea3e20cfac8b58e51514d0411b1023e36d9a4c03d198bc34666e5_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-baremetal-installer-rhel8@sha256:7d2e13a2934ea3e20cfac8b58e51514d0411b1023e36d9a4c03d198bc34666e5_s390x" + }, + "product_reference": "openshift4/ose-baremetal-installer-rhel8@sha256:7d2e13a2934ea3e20cfac8b58e51514d0411b1023e36d9a4c03d198bc34666e5_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:cc4d3838ef3c4b9a5d5ffa05ae829c1de7022c8cc16f9d785a161b9c90b8dd49_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-baremetal-installer-rhel8@sha256:cc4d3838ef3c4b9a5d5ffa05ae829c1de7022c8cc16f9d785a161b9c90b8dd49_ppc64le" + }, + "product_reference": "openshift4/ose-baremetal-installer-rhel8@sha256:cc4d3838ef3c4b9a5d5ffa05ae829c1de7022c8cc16f9d785a161b9c90b8dd49_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-installer-rhel8@sha256:dff96696b5e2c0962587f5bc475610a6666da9ad60a5b5e1fb76d4ba6afa3606_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-baremetal-installer-rhel8@sha256:dff96696b5e2c0962587f5bc475610a6666da9ad60a5b5e1fb76d4ba6afa3606_ppc64le" + }, + "product_reference": "openshift4/ose-baremetal-installer-rhel8@sha256:dff96696b5e2c0962587f5bc475610a6666da9ad60a5b5e1fb76d4ba6afa3606_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:0f534bb347007f16fab31abf3dd4235ba9d99aa85cbc03777f625f467d58bb4b_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-baremetal-machine-controllers@sha256:0f534bb347007f16fab31abf3dd4235ba9d99aa85cbc03777f625f467d58bb4b_s390x" + }, + "product_reference": "openshift4/ose-baremetal-machine-controllers@sha256:0f534bb347007f16fab31abf3dd4235ba9d99aa85cbc03777f625f467d58bb4b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:7866193b499bda81d4eef57040f9602dff9a6fbff32d2e04dd3d11c734b6edbb_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-baremetal-machine-controllers@sha256:7866193b499bda81d4eef57040f9602dff9a6fbff32d2e04dd3d11c734b6edbb_arm64" + }, + "product_reference": "openshift4/ose-baremetal-machine-controllers@sha256:7866193b499bda81d4eef57040f9602dff9a6fbff32d2e04dd3d11c734b6edbb_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:a157c044df6855e8a2e16f595895963f5abe9ea6234be3b1f2126a122b252ea1_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-baremetal-machine-controllers@sha256:a157c044df6855e8a2e16f595895963f5abe9ea6234be3b1f2126a122b252ea1_amd64" + }, + "product_reference": "openshift4/ose-baremetal-machine-controllers@sha256:a157c044df6855e8a2e16f595895963f5abe9ea6234be3b1f2126a122b252ea1_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-machine-controllers@sha256:eed0396001ad3daf71bad03831af0fbbbb29e29fa41f35c617b0837e85213699_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-baremetal-machine-controllers@sha256:eed0396001ad3daf71bad03831af0fbbbb29e29fa41f35c617b0837e85213699_ppc64le" + }, + "product_reference": "openshift4/ose-baremetal-machine-controllers@sha256:eed0396001ad3daf71bad03831af0fbbbb29e29fa41f35c617b0837e85213699_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:06e28fc52efd536d41a18592cea229486064160b16a61af20c733e82de6494e0_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-baremetal-rhel8-operator@sha256:06e28fc52efd536d41a18592cea229486064160b16a61af20c733e82de6494e0_amd64" + }, + "product_reference": "openshift4/ose-baremetal-rhel8-operator@sha256:06e28fc52efd536d41a18592cea229486064160b16a61af20c733e82de6494e0_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:659a392d0e6419d3bede4ed7ff2178a173d7371a6bc3b291dd21d16b74519d10_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-baremetal-rhel8-operator@sha256:659a392d0e6419d3bede4ed7ff2178a173d7371a6bc3b291dd21d16b74519d10_arm64" + }, + "product_reference": "openshift4/ose-baremetal-rhel8-operator@sha256:659a392d0e6419d3bede4ed7ff2178a173d7371a6bc3b291dd21d16b74519d10_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:db5f09d0b04c0efe014741f339c4687c2547b53f8c0fc33ca96d32b23ae0071b_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-baremetal-rhel8-operator@sha256:db5f09d0b04c0efe014741f339c4687c2547b53f8c0fc33ca96d32b23ae0071b_ppc64le" + }, + "product_reference": "openshift4/ose-baremetal-rhel8-operator@sha256:db5f09d0b04c0efe014741f339c4687c2547b53f8c0fc33ca96d32b23ae0071b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-rhel8-operator@sha256:ea96cb40b6680dab55d616a81b971cad7fdb003bf711e980f2720faa9e1b583b_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-baremetal-rhel8-operator@sha256:ea96cb40b6680dab55d616a81b971cad7fdb003bf711e980f2720faa9e1b583b_s390x" + }, + "product_reference": "openshift4/ose-baremetal-rhel8-operator@sha256:ea96cb40b6680dab55d616a81b971cad7fdb003bf711e980f2720faa9e1b583b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:41f5127bd9aed01479be58002a2393bf1159c9b83d6c34b1756fdec8bb93da27_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-baremetal-runtimecfg-rhel8@sha256:41f5127bd9aed01479be58002a2393bf1159c9b83d6c34b1756fdec8bb93da27_ppc64le" + }, + "product_reference": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:41f5127bd9aed01479be58002a2393bf1159c9b83d6c34b1756fdec8bb93da27_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:91c19715989d048d83940e0072766a6acaf00a2be8d0a4bbf056ded26c6eba44_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-baremetal-runtimecfg-rhel8@sha256:91c19715989d048d83940e0072766a6acaf00a2be8d0a4bbf056ded26c6eba44_s390x" + }, + "product_reference": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:91c19715989d048d83940e0072766a6acaf00a2be8d0a4bbf056ded26c6eba44_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:fa64eb5bd891c83fc493930c7ebf1e1c8f5d7099ead756a6d9c61bd044547b6c_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-baremetal-runtimecfg-rhel8@sha256:fa64eb5bd891c83fc493930c7ebf1e1c8f5d7099ead756a6d9c61bd044547b6c_arm64" + }, + "product_reference": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:fa64eb5bd891c83fc493930c7ebf1e1c8f5d7099ead756a6d9c61bd044547b6c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:fc4e6fe57f5d1ddbd816449e9b73ccc326d133de76bfd6d6683cf3a21a43a135_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-baremetal-runtimecfg-rhel8@sha256:fc4e6fe57f5d1ddbd816449e9b73ccc326d133de76bfd6d6683cf3a21a43a135_amd64" + }, + "product_reference": "openshift4/ose-baremetal-runtimecfg-rhel8@sha256:fc4e6fe57f5d1ddbd816449e9b73ccc326d133de76bfd6d6683cf3a21a43a135_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli-artifacts@sha256:3234c3a74c66af9c0b42781194198450c308f5370e9915dd320244b5e3f2e670_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cli-artifacts@sha256:3234c3a74c66af9c0b42781194198450c308f5370e9915dd320244b5e3f2e670_ppc64le" + }, + "product_reference": "openshift4/ose-cli-artifacts@sha256:3234c3a74c66af9c0b42781194198450c308f5370e9915dd320244b5e3f2e670_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli-artifacts@sha256:3251d8d0a7c4fe3b6e7d3d139b120242caf092e70470b25bf3a911c7aa3889ce_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cli-artifacts@sha256:3251d8d0a7c4fe3b6e7d3d139b120242caf092e70470b25bf3a911c7aa3889ce_amd64" + }, + "product_reference": "openshift4/ose-cli-artifacts@sha256:3251d8d0a7c4fe3b6e7d3d139b120242caf092e70470b25bf3a911c7aa3889ce_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli-artifacts@sha256:6ee85d1090673a1422c6f73fdb402807780bb5fec28d494ec15cba621540b700_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cli-artifacts@sha256:6ee85d1090673a1422c6f73fdb402807780bb5fec28d494ec15cba621540b700_arm64" + }, + "product_reference": "openshift4/ose-cli-artifacts@sha256:6ee85d1090673a1422c6f73fdb402807780bb5fec28d494ec15cba621540b700_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli-artifacts@sha256:e6887e59e38d5dd1b5ea2b67c84d75ec8a6601f76d8d888fc4ced22ffa9cb9ba_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cli-artifacts@sha256:e6887e59e38d5dd1b5ea2b67c84d75ec8a6601f76d8d888fc4ced22ffa9cb9ba_s390x" + }, + "product_reference": "openshift4/ose-cli-artifacts@sha256:e6887e59e38d5dd1b5ea2b67c84d75ec8a6601f76d8d888fc4ced22ffa9cb9ba_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli@sha256:75271af6ac62c1c3f7e5db8f96d31e30ef958fa506c1d60635660c6fcbcc7b00_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cli@sha256:75271af6ac62c1c3f7e5db8f96d31e30ef958fa506c1d60635660c6fcbcc7b00_arm64" + }, + "product_reference": "openshift4/ose-cli@sha256:75271af6ac62c1c3f7e5db8f96d31e30ef958fa506c1d60635660c6fcbcc7b00_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli@sha256:c71eb3e75314855836d713cfa80401369439032924cd42cb927247349d51165a_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cli@sha256:c71eb3e75314855836d713cfa80401369439032924cd42cb927247349d51165a_s390x" + }, + "product_reference": "openshift4/ose-cli@sha256:c71eb3e75314855836d713cfa80401369439032924cd42cb927247349d51165a_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli@sha256:f8d661f777edee03a91ded5c33510523fa9838f1f609ff282a5bd53f451c86cb_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cli@sha256:f8d661f777edee03a91ded5c33510523fa9838f1f609ff282a5bd53f451c86cb_amd64" + }, + "product_reference": "openshift4/ose-cli@sha256:f8d661f777edee03a91ded5c33510523fa9838f1f609ff282a5bd53f451c86cb_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cli@sha256:fd6f4e622a0a37f6c831f0fe7a07203bcd702ebeae2d47c1c317c70e7bd1d68a_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cli@sha256:fd6f4e622a0a37f6c831f0fe7a07203bcd702ebeae2d47c1c317c70e7bd1d68a_ppc64le" + }, + "product_reference": "openshift4/ose-cli@sha256:fd6f4e622a0a37f6c831f0fe7a07203bcd702ebeae2d47c1c317c70e7bd1d68a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-credential-operator@sha256:32fbec48a7eef1f6c44f60c05708fb766f324e2ee658307dacee1022fe29bedc_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cloud-credential-operator@sha256:32fbec48a7eef1f6c44f60c05708fb766f324e2ee658307dacee1022fe29bedc_amd64" + }, + "product_reference": "openshift4/ose-cloud-credential-operator@sha256:32fbec48a7eef1f6c44f60c05708fb766f324e2ee658307dacee1022fe29bedc_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-credential-operator@sha256:7d7e38b628c7e4fa63b133e63e417be1fd0afac7862151df6333e85979a8c78e_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cloud-credential-operator@sha256:7d7e38b628c7e4fa63b133e63e417be1fd0afac7862151df6333e85979a8c78e_ppc64le" + }, + "product_reference": "openshift4/ose-cloud-credential-operator@sha256:7d7e38b628c7e4fa63b133e63e417be1fd0afac7862151df6333e85979a8c78e_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-credential-operator@sha256:7e58c3d61bd38143c86a6a19acfdd1de851de2c1dfc6d0240c9492db1328c09e_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cloud-credential-operator@sha256:7e58c3d61bd38143c86a6a19acfdd1de851de2c1dfc6d0240c9492db1328c09e_s390x" + }, + "product_reference": "openshift4/ose-cloud-credential-operator@sha256:7e58c3d61bd38143c86a6a19acfdd1de851de2c1dfc6d0240c9492db1328c09e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-credential-operator@sha256:f7b9c671b078ea17f5e92176fdafb600c5f51ce44a2d7afb4298c093ec7a726a_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cloud-credential-operator@sha256:f7b9c671b078ea17f5e92176fdafb600c5f51ce44a2d7afb4298c093ec7a726a_arm64" + }, + "product_reference": "openshift4/ose-cloud-credential-operator@sha256:f7b9c671b078ea17f5e92176fdafb600c5f51ce44a2d7afb4298c093ec7a726a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-event-proxy-rhel8@sha256:06b6f28c571cc2013d62a385ea4abbb6b89467d76a2fb63f1409ba6d9b647156_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cloud-event-proxy-rhel8@sha256:06b6f28c571cc2013d62a385ea4abbb6b89467d76a2fb63f1409ba6d9b647156_arm64" + }, + "product_reference": "openshift4/ose-cloud-event-proxy-rhel8@sha256:06b6f28c571cc2013d62a385ea4abbb6b89467d76a2fb63f1409ba6d9b647156_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-event-proxy-rhel8@sha256:4ef634fb723c082c0dcf6070b203b8e03808c29757ee365e121722454d1d9278_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cloud-event-proxy-rhel8@sha256:4ef634fb723c082c0dcf6070b203b8e03808c29757ee365e121722454d1d9278_amd64" + }, + "product_reference": "openshift4/ose-cloud-event-proxy-rhel8@sha256:4ef634fb723c082c0dcf6070b203b8e03808c29757ee365e121722454d1d9278_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cloud-event-proxy-rhel8@sha256:7ae73a264e1c8a47fdd7ad502281f3e833f876318d12855123ef2ae57a3b8c74_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cloud-event-proxy-rhel8@sha256:7ae73a264e1c8a47fdd7ad502281f3e833f876318d12855123ef2ae57a3b8c74_ppc64le" + }, + "product_reference": "openshift4/ose-cloud-event-proxy-rhel8@sha256:7ae73a264e1c8a47fdd7ad502281f3e833f876318d12855123ef2ae57a3b8c74_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:273025f1780c189fb9e36928b7820abbf599cc7bd4f727afc58ee71c817e5491_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-api-rhel8@sha256:273025f1780c189fb9e36928b7820abbf599cc7bd4f727afc58ee71c817e5491_s390x" + }, + "product_reference": "openshift4/ose-cluster-api-rhel8@sha256:273025f1780c189fb9e36928b7820abbf599cc7bd4f727afc58ee71c817e5491_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:7c0acac220837c61c10da400975e2e74143c47517e303cb9690fbab89c4c59f5_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-api-rhel8@sha256:7c0acac220837c61c10da400975e2e74143c47517e303cb9690fbab89c4c59f5_arm64" + }, + "product_reference": "openshift4/ose-cluster-api-rhel8@sha256:7c0acac220837c61c10da400975e2e74143c47517e303cb9690fbab89c4c59f5_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:b691ac002a11eea64558da7c40f217b47d44a4cfdbfeaaab2dc05b519ea7b879_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-api-rhel8@sha256:b691ac002a11eea64558da7c40f217b47d44a4cfdbfeaaab2dc05b519ea7b879_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-api-rhel8@sha256:b691ac002a11eea64558da7c40f217b47d44a4cfdbfeaaab2dc05b519ea7b879_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-api-rhel8@sha256:d5df1f49288de56b5743b2f97215c0f111fa904a17e6ecdf9d9066dc97d00134_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-api-rhel8@sha256:d5df1f49288de56b5743b2f97215c0f111fa904a17e6ecdf9d9066dc97d00134_amd64" + }, + "product_reference": "openshift4/ose-cluster-api-rhel8@sha256:d5df1f49288de56b5743b2f97215c0f111fa904a17e6ecdf9d9066dc97d00134_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:374833a8af79806a2f3b1b65f4ed5bb75e6ff07d5b0bba9302d2c796da027c96_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-authentication-operator@sha256:374833a8af79806a2f3b1b65f4ed5bb75e6ff07d5b0bba9302d2c796da027c96_arm64" + }, + "product_reference": "openshift4/ose-cluster-authentication-operator@sha256:374833a8af79806a2f3b1b65f4ed5bb75e6ff07d5b0bba9302d2c796da027c96_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:6696e816a0eae384b8064c8fc42607f7a5fc6dfc928fec248fc0481bb07351a2_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-authentication-operator@sha256:6696e816a0eae384b8064c8fc42607f7a5fc6dfc928fec248fc0481bb07351a2_s390x" + }, + "product_reference": "openshift4/ose-cluster-authentication-operator@sha256:6696e816a0eae384b8064c8fc42607f7a5fc6dfc928fec248fc0481bb07351a2_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:669ee7b2ad4c82503ff12128140b03c212c718deacbcd1752174010181ac16ec_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-authentication-operator@sha256:669ee7b2ad4c82503ff12128140b03c212c718deacbcd1752174010181ac16ec_amd64" + }, + "product_reference": "openshift4/ose-cluster-authentication-operator@sha256:669ee7b2ad4c82503ff12128140b03c212c718deacbcd1752174010181ac16ec_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-authentication-operator@sha256:72691469a03972b6a5cce9a77bec8c8d2fbabc7526ea2c70d19b694e0ecca4fd_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-authentication-operator@sha256:72691469a03972b6a5cce9a77bec8c8d2fbabc7526ea2c70d19b694e0ecca4fd_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-authentication-operator@sha256:72691469a03972b6a5cce9a77bec8c8d2fbabc7526ea2c70d19b694e0ecca4fd_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:00752e1ed3a2507b43687466ed26c037ada6fd87ba0e1a5c48406a92ffacbf6d_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-autoscaler-operator@sha256:00752e1ed3a2507b43687466ed26c037ada6fd87ba0e1a5c48406a92ffacbf6d_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-autoscaler-operator@sha256:00752e1ed3a2507b43687466ed26c037ada6fd87ba0e1a5c48406a92ffacbf6d_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:1fa331512719dcc98aa3ad80ef0de7b192a7bc69e661aef3baa1e57ac506e895_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-autoscaler-operator@sha256:1fa331512719dcc98aa3ad80ef0de7b192a7bc69e661aef3baa1e57ac506e895_arm64" + }, + "product_reference": "openshift4/ose-cluster-autoscaler-operator@sha256:1fa331512719dcc98aa3ad80ef0de7b192a7bc69e661aef3baa1e57ac506e895_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:235dd912aff440004cbfd1f4b473fc10486c5b1bf8ef2f02b99de718ac2579e2_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-autoscaler-operator@sha256:235dd912aff440004cbfd1f4b473fc10486c5b1bf8ef2f02b99de718ac2579e2_s390x" + }, + "product_reference": "openshift4/ose-cluster-autoscaler-operator@sha256:235dd912aff440004cbfd1f4b473fc10486c5b1bf8ef2f02b99de718ac2579e2_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler-operator@sha256:4643d47a91e88359656bcaae541633e20e3e1d9f0a260223652b15d50dc02a20_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-autoscaler-operator@sha256:4643d47a91e88359656bcaae541633e20e3e1d9f0a260223652b15d50dc02a20_amd64" + }, + "product_reference": "openshift4/ose-cluster-autoscaler-operator@sha256:4643d47a91e88359656bcaae541633e20e3e1d9f0a260223652b15d50dc02a20_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler@sha256:28e7387625dda9bc870f93b4ec55ac00e8c2a4bcd9709890a8ed4e5a2a62202c_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-autoscaler@sha256:28e7387625dda9bc870f93b4ec55ac00e8c2a4bcd9709890a8ed4e5a2a62202c_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-autoscaler@sha256:28e7387625dda9bc870f93b4ec55ac00e8c2a4bcd9709890a8ed4e5a2a62202c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler@sha256:6fd6e5f0a4e8e59dce22021dce5e59b6f431352969b4212f893404688af44289_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-autoscaler@sha256:6fd6e5f0a4e8e59dce22021dce5e59b6f431352969b4212f893404688af44289_s390x" + }, + "product_reference": "openshift4/ose-cluster-autoscaler@sha256:6fd6e5f0a4e8e59dce22021dce5e59b6f431352969b4212f893404688af44289_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler@sha256:afb65724a2e614297d084adc026c408b5eff09fe6dda99ddf22cbad137f25706_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-autoscaler@sha256:afb65724a2e614297d084adc026c408b5eff09fe6dda99ddf22cbad137f25706_amd64" + }, + "product_reference": "openshift4/ose-cluster-autoscaler@sha256:afb65724a2e614297d084adc026c408b5eff09fe6dda99ddf22cbad137f25706_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-autoscaler@sha256:cdff8a804a597b05da76c4feaac1dc7d47eead212eb81d987d4d6cb7604053b8_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-autoscaler@sha256:cdff8a804a597b05da76c4feaac1dc7d47eead212eb81d987d4d6cb7604053b8_arm64" + }, + "product_reference": "openshift4/ose-cluster-autoscaler@sha256:cdff8a804a597b05da76c4feaac1dc7d47eead212eb81d987d4d6cb7604053b8_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:2384785766cd12daa4a09c8ae7d003a9f3619c04b6951babf0c3bbd717520af1_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-baremetal-operator-rhel8@sha256:2384785766cd12daa4a09c8ae7d003a9f3619c04b6951babf0c3bbd717520af1_arm64" + }, + "product_reference": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:2384785766cd12daa4a09c8ae7d003a9f3619c04b6951babf0c3bbd717520af1_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:4186de1eb63b4d7076d8d2e11e09cd46dd3c719acf6bc39f21d51d7af6d9ce89_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-baremetal-operator-rhel8@sha256:4186de1eb63b4d7076d8d2e11e09cd46dd3c719acf6bc39f21d51d7af6d9ce89_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:4186de1eb63b4d7076d8d2e11e09cd46dd3c719acf6bc39f21d51d7af6d9ce89_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:8c1ef66f555633522772e5e22a8a936e0b575b36696ce175e6dc4dfc8fffb690_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-baremetal-operator-rhel8@sha256:8c1ef66f555633522772e5e22a8a936e0b575b36696ce175e6dc4dfc8fffb690_s390x" + }, + "product_reference": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:8c1ef66f555633522772e5e22a8a936e0b575b36696ce175e6dc4dfc8fffb690_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:d483973f0ad91eba4bcef4407ed96aa4b75a6a87ae71b6761b3c0e582a124792_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-baremetal-operator-rhel8@sha256:d483973f0ad91eba4bcef4407ed96aa4b75a6a87ae71b6761b3c0e582a124792_amd64" + }, + "product_reference": "openshift4/ose-cluster-baremetal-operator-rhel8@sha256:d483973f0ad91eba4bcef4407ed96aa4b75a6a87ae71b6761b3c0e582a124792_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-bootstrap@sha256:80ad252b86219621f54a88624113e39b6d5e912018b6a7d3ed66f2916d26a48b_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-bootstrap@sha256:80ad252b86219621f54a88624113e39b6d5e912018b6a7d3ed66f2916d26a48b_arm64" + }, + "product_reference": "openshift4/ose-cluster-bootstrap@sha256:80ad252b86219621f54a88624113e39b6d5e912018b6a7d3ed66f2916d26a48b_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-bootstrap@sha256:cad859a718839c3817075b63983821cf87ebfa8c50e8b44a6897902f6d98630a_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-bootstrap@sha256:cad859a718839c3817075b63983821cf87ebfa8c50e8b44a6897902f6d98630a_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-bootstrap@sha256:cad859a718839c3817075b63983821cf87ebfa8c50e8b44a6897902f6d98630a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-bootstrap@sha256:cf317200a3ee01d1ec383a086c90a04464fa8611f018290a1ec6c8f9467ace14_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-bootstrap@sha256:cf317200a3ee01d1ec383a086c90a04464fa8611f018290a1ec6c8f9467ace14_s390x" + }, + "product_reference": "openshift4/ose-cluster-bootstrap@sha256:cf317200a3ee01d1ec383a086c90a04464fa8611f018290a1ec6c8f9467ace14_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-bootstrap@sha256:efdcbc8488ad60c10960ecc55a1d1a44829e4170374908ad1783f26054ce85de_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-bootstrap@sha256:efdcbc8488ad60c10960ecc55a1d1a44829e4170374908ad1783f26054ce85de_amd64" + }, + "product_reference": "openshift4/ose-cluster-bootstrap@sha256:efdcbc8488ad60c10960ecc55a1d1a44829e4170374908ad1783f26054ce85de_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capacity@sha256:090f008f846a90f0e5069786a36fc06e1eb0fa14ae71a34bcab35e95aed5b526_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-capacity@sha256:090f008f846a90f0e5069786a36fc06e1eb0fa14ae71a34bcab35e95aed5b526_amd64" + }, + "product_reference": "openshift4/ose-cluster-capacity@sha256:090f008f846a90f0e5069786a36fc06e1eb0fa14ae71a34bcab35e95aed5b526_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capacity@sha256:3f19384299a1e529076f4eb5de4811c9e4c8fcd276d390972093e73df6a80c1e_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-capacity@sha256:3f19384299a1e529076f4eb5de4811c9e4c8fcd276d390972093e73df6a80c1e_arm64" + }, + "product_reference": "openshift4/ose-cluster-capacity@sha256:3f19384299a1e529076f4eb5de4811c9e4c8fcd276d390972093e73df6a80c1e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capacity@sha256:635cd63d2d67291bde65fda9aa31fd40faef9b3617bc97d28fee05731c4451e5_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-capacity@sha256:635cd63d2d67291bde65fda9aa31fd40faef9b3617bc97d28fee05731c4451e5_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-capacity@sha256:635cd63d2d67291bde65fda9aa31fd40faef9b3617bc97d28fee05731c4451e5_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capacity@sha256:f84c113cfa58debda4327692446f407ed259a00170125ef8761168bff9251c31_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-capacity@sha256:f84c113cfa58debda4327692446f407ed259a00170125ef8761168bff9251c31_s390x" + }, + "product_reference": "openshift4/ose-cluster-capacity@sha256:f84c113cfa58debda4327692446f407ed259a00170125ef8761168bff9251c31_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:186430d1c3e27ab0943682aec3670a323ca90ee9e34f3e002142c23c58fb079d_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-capi-operator-container-rhel8@sha256:186430d1c3e27ab0943682aec3670a323ca90ee9e34f3e002142c23c58fb079d_s390x" + }, + "product_reference": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:186430d1c3e27ab0943682aec3670a323ca90ee9e34f3e002142c23c58fb079d_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:8b6f707529c9b114fee768a00016eeb0a3d702f79e4f567f7ee5a4a768748348_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-capi-operator-container-rhel8@sha256:8b6f707529c9b114fee768a00016eeb0a3d702f79e4f567f7ee5a4a768748348_amd64" + }, + "product_reference": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:8b6f707529c9b114fee768a00016eeb0a3d702f79e4f567f7ee5a4a768748348_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:9574932d864518c0c05a44193f829a0865691f053fcdbfa50e329ed83ee6e6bb_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-capi-operator-container-rhel8@sha256:9574932d864518c0c05a44193f829a0865691f053fcdbfa50e329ed83ee6e6bb_arm64" + }, + "product_reference": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:9574932d864518c0c05a44193f829a0865691f053fcdbfa50e329ed83ee6e6bb_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:b07b51ba7f71f8b0729a19fd2433dd832dc8481b6b61d47e9af67f6b3cc54f4c_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-capi-operator-container-rhel8@sha256:b07b51ba7f71f8b0729a19fd2433dd832dc8481b6b61d47e9af67f6b3cc54f4c_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-capi-operator-container-rhel8@sha256:b07b51ba7f71f8b0729a19fd2433dd832dc8481b6b61d47e9af67f6b3cc54f4c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:186430d1c3e27ab0943682aec3670a323ca90ee9e34f3e002142c23c58fb079d_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-capi-rhel8-operator@sha256:186430d1c3e27ab0943682aec3670a323ca90ee9e34f3e002142c23c58fb079d_s390x" + }, + "product_reference": "openshift4/ose-cluster-capi-rhel8-operator@sha256:186430d1c3e27ab0943682aec3670a323ca90ee9e34f3e002142c23c58fb079d_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:8b6f707529c9b114fee768a00016eeb0a3d702f79e4f567f7ee5a4a768748348_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-capi-rhel8-operator@sha256:8b6f707529c9b114fee768a00016eeb0a3d702f79e4f567f7ee5a4a768748348_amd64" + }, + "product_reference": "openshift4/ose-cluster-capi-rhel8-operator@sha256:8b6f707529c9b114fee768a00016eeb0a3d702f79e4f567f7ee5a4a768748348_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:9574932d864518c0c05a44193f829a0865691f053fcdbfa50e329ed83ee6e6bb_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-capi-rhel8-operator@sha256:9574932d864518c0c05a44193f829a0865691f053fcdbfa50e329ed83ee6e6bb_arm64" + }, + "product_reference": "openshift4/ose-cluster-capi-rhel8-operator@sha256:9574932d864518c0c05a44193f829a0865691f053fcdbfa50e329ed83ee6e6bb_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-capi-rhel8-operator@sha256:b07b51ba7f71f8b0729a19fd2433dd832dc8481b6b61d47e9af67f6b3cc54f4c_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-capi-rhel8-operator@sha256:b07b51ba7f71f8b0729a19fd2433dd832dc8481b6b61d47e9af67f6b3cc54f4c_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-capi-rhel8-operator@sha256:b07b51ba7f71f8b0729a19fd2433dd832dc8481b6b61d47e9af67f6b3cc54f4c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:0e658c3294cf71923a137e4abe9f31cfeef1b1ced1b33749d5437445d346cdfb_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:0e658c3294cf71923a137e4abe9f31cfeef1b1ced1b33749d5437445d346cdfb_s390x" + }, + "product_reference": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:0e658c3294cf71923a137e4abe9f31cfeef1b1ced1b33749d5437445d346cdfb_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:25be594a674121d6699525b93fe5af76b5085850f981af19e3d3a7a45a715030_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:25be594a674121d6699525b93fe5af76b5085850f981af19e3d3a7a45a715030_arm64" + }, + "product_reference": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:25be594a674121d6699525b93fe5af76b5085850f981af19e3d3a7a45a715030_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:3c07ff5a35f16ed7dc73b69a5a75ff21aa13663b78bd97f79ca49dba961b59d2_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:3c07ff5a35f16ed7dc73b69a5a75ff21aa13663b78bd97f79ca49dba961b59d2_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:3c07ff5a35f16ed7dc73b69a5a75ff21aa13663b78bd97f79ca49dba961b59d2_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:f44bfc6deae3721a7b57d765efdcfe5bc5c5934f478085f5aaf75d539f9f00de_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:f44bfc6deae3721a7b57d765efdcfe5bc5c5934f478085f5aaf75d539f9f00de_amd64" + }, + "product_reference": "openshift4/ose-cluster-cloud-controller-manager-operator-rhel8@sha256:f44bfc6deae3721a7b57d765efdcfe5bc5c5934f478085f5aaf75d539f9f00de_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-config-operator@sha256:1007335eb50c0bdd7e0cb0d2250f438801b26791c66cf5f34c0852fde21a4ec6_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-config-operator@sha256:1007335eb50c0bdd7e0cb0d2250f438801b26791c66cf5f34c0852fde21a4ec6_s390x" + }, + "product_reference": "openshift4/ose-cluster-config-operator@sha256:1007335eb50c0bdd7e0cb0d2250f438801b26791c66cf5f34c0852fde21a4ec6_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-config-operator@sha256:2e702cc326f405246f39f5b6da33133e024e5b3ce85d24d6b946d3ad207f34ce_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-config-operator@sha256:2e702cc326f405246f39f5b6da33133e024e5b3ce85d24d6b946d3ad207f34ce_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-config-operator@sha256:2e702cc326f405246f39f5b6da33133e024e5b3ce85d24d6b946d3ad207f34ce_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-config-operator@sha256:8e5cb6963ea25d64183f401a8d972051481b6f522051904b0571d6db851fa3f0_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-config-operator@sha256:8e5cb6963ea25d64183f401a8d972051481b6f522051904b0571d6db851fa3f0_arm64" + }, + "product_reference": "openshift4/ose-cluster-config-operator@sha256:8e5cb6963ea25d64183f401a8d972051481b6f522051904b0571d6db851fa3f0_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-config-operator@sha256:d5f9eb32fa7893dc0cc26a6d576d2aa46771099f7273c5a79a51bbdab89cbb58_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-config-operator@sha256:d5f9eb32fa7893dc0cc26a6d576d2aa46771099f7273c5a79a51bbdab89cbb58_amd64" + }, + "product_reference": "openshift4/ose-cluster-config-operator@sha256:d5f9eb32fa7893dc0cc26a6d576d2aa46771099f7273c5a79a51bbdab89cbb58_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:187aab59700d1d8e6877b446227acdece094f874b591b52c87c373ac43dc4f9b_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:187aab59700d1d8e6877b446227acdece094f874b591b52c87c373ac43dc4f9b_amd64" + }, + "product_reference": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:187aab59700d1d8e6877b446227acdece094f874b591b52c87c373ac43dc4f9b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:34fb5e57cd1f09b04873786f9e273ec94120d759ec7d79980b831fa271b5a653_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:34fb5e57cd1f09b04873786f9e273ec94120d759ec7d79980b831fa271b5a653_s390x" + }, + "product_reference": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:34fb5e57cd1f09b04873786f9e273ec94120d759ec7d79980b831fa271b5a653_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:daaa40689e29db55556af2ef5aab34cba00ea0e02f8f124b4d4eec93265fbada_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:daaa40689e29db55556af2ef5aab34cba00ea0e02f8f124b4d4eec93265fbada_arm64" + }, + "product_reference": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:daaa40689e29db55556af2ef5aab34cba00ea0e02f8f124b4d4eec93265fbada_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:fb4649afa63f583204d10091bc8a4f129ce6f7db26d33ee169234f11a3acc484_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:fb4649afa63f583204d10091bc8a4f129ce6f7db26d33ee169234f11a3acc484_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-control-plane-machine-set-operator-rhel8@sha256:fb4649afa63f583204d10091bc8a4f129ce6f7db26d33ee169234f11a3acc484_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:45ad3eaf40fb50f8fdc5a2923a63dc3eec7e34e83aa979a1262f694e8bcacc31_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:45ad3eaf40fb50f8fdc5a2923a63dc3eec7e34e83aa979a1262f694e8bcacc31_amd64" + }, + "product_reference": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:45ad3eaf40fb50f8fdc5a2923a63dc3eec7e34e83aa979a1262f694e8bcacc31_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:571cb24f2d21fdfb4dff128dee5498fbd13b7b00564b535fdb95761e6763ccc9_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:571cb24f2d21fdfb4dff128dee5498fbd13b7b00564b535fdb95761e6763ccc9_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:571cb24f2d21fdfb4dff128dee5498fbd13b7b00564b535fdb95761e6763ccc9_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:75b557cb8df5c28865436d705f501e12a197c815c046b3669d722e83d2abf0d4_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:75b557cb8df5c28865436d705f501e12a197c815c046b3669d722e83d2abf0d4_arm64" + }, + "product_reference": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:75b557cb8df5c28865436d705f501e12a197c815c046b3669d722e83d2abf0d4_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:9e3a06432af7224c9c4cd25a98b47cb99b1ea05417d1ff62377c2b205b01bf7d_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:9e3a06432af7224c9c4cd25a98b47cb99b1ea05417d1ff62377c2b205b01bf7d_s390x" + }, + "product_reference": "openshift4/ose-cluster-csi-snapshot-controller-rhel8-operator@sha256:9e3a06432af7224c9c4cd25a98b47cb99b1ea05417d1ff62377c2b205b01bf7d_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-dns-operator@sha256:19efeb229aca92ef2cfa95ea0250aaef92ab6c664e9b5230b75817790523a404_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-dns-operator@sha256:19efeb229aca92ef2cfa95ea0250aaef92ab6c664e9b5230b75817790523a404_arm64" + }, + "product_reference": "openshift4/ose-cluster-dns-operator@sha256:19efeb229aca92ef2cfa95ea0250aaef92ab6c664e9b5230b75817790523a404_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-dns-operator@sha256:2c0ea3b004d02d1b07506d7b8791df9468921011173ed8e500fde107efc6ee95_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-dns-operator@sha256:2c0ea3b004d02d1b07506d7b8791df9468921011173ed8e500fde107efc6ee95_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-dns-operator@sha256:2c0ea3b004d02d1b07506d7b8791df9468921011173ed8e500fde107efc6ee95_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-dns-operator@sha256:6f7b8e7b724b174b5bbf7c5cf09a2f9768aede00eda815b611d9122de29f3e1e_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-dns-operator@sha256:6f7b8e7b724b174b5bbf7c5cf09a2f9768aede00eda815b611d9122de29f3e1e_s390x" + }, + "product_reference": "openshift4/ose-cluster-dns-operator@sha256:6f7b8e7b724b174b5bbf7c5cf09a2f9768aede00eda815b611d9122de29f3e1e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-dns-operator@sha256:aa8ff0a93c4e90359fe4950fa5b0bc266bbff18e2788a20fd156048c34a572b7_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-dns-operator@sha256:aa8ff0a93c4e90359fe4950fa5b0bc266bbff18e2788a20fd156048c34a572b7_amd64" + }, + "product_reference": "openshift4/ose-cluster-dns-operator@sha256:aa8ff0a93c4e90359fe4950fa5b0bc266bbff18e2788a20fd156048c34a572b7_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:0f2f02a2d80b3ae229ae0d85cafb37c34717fe3627c13b3baeba05bca118b26d_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-etcd-rhel8-operator@sha256:0f2f02a2d80b3ae229ae0d85cafb37c34717fe3627c13b3baeba05bca118b26d_amd64" + }, + "product_reference": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:0f2f02a2d80b3ae229ae0d85cafb37c34717fe3627c13b3baeba05bca118b26d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:22e503752dfe1211287d0e76ce1180ef73505af18899e87ad73d05c1992b026c_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-etcd-rhel8-operator@sha256:22e503752dfe1211287d0e76ce1180ef73505af18899e87ad73d05c1992b026c_s390x" + }, + "product_reference": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:22e503752dfe1211287d0e76ce1180ef73505af18899e87ad73d05c1992b026c_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:58f2369af42352c8fa2b731fbf55343ed160c881673e2501fab2b1176a9b32ec_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-etcd-rhel8-operator@sha256:58f2369af42352c8fa2b731fbf55343ed160c881673e2501fab2b1176a9b32ec_arm64" + }, + "product_reference": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:58f2369af42352c8fa2b731fbf55343ed160c881673e2501fab2b1176a9b32ec_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:68cffb4387c4d114894666c98db66b8febd2b80812c1773c2ed3cad7f9bd1756_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-etcd-rhel8-operator@sha256:68cffb4387c4d114894666c98db66b8febd2b80812c1773c2ed3cad7f9bd1756_amd64" + }, + "product_reference": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:68cffb4387c4d114894666c98db66b8febd2b80812c1773c2ed3cad7f9bd1756_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:7563982709083c57d961909542b534ca62e3430e99f75bc439f9d14339b3d7b2_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-etcd-rhel8-operator@sha256:7563982709083c57d961909542b534ca62e3430e99f75bc439f9d14339b3d7b2_arm64" + }, + "product_reference": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:7563982709083c57d961909542b534ca62e3430e99f75bc439f9d14339b3d7b2_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:9e6202f41a928101f291e6defbc722aed841d81cd95cd36bff8cf486ba217ede_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-etcd-rhel8-operator@sha256:9e6202f41a928101f291e6defbc722aed841d81cd95cd36bff8cf486ba217ede_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:9e6202f41a928101f291e6defbc722aed841d81cd95cd36bff8cf486ba217ede_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:cc062bdd692eb4933b7496412d5122fa6d185295ad65cb18d9fb06a417ddf33a_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-etcd-rhel8-operator@sha256:cc062bdd692eb4933b7496412d5122fa6d185295ad65cb18d9fb06a417ddf33a_s390x" + }, + "product_reference": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:cc062bdd692eb4933b7496412d5122fa6d185295ad65cb18d9fb06a417ddf33a_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:ffd89303a3766bc4aeb2bc18b3d81249f59e5eec9cc7ee0bf1cff446d162515e_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-etcd-rhel8-operator@sha256:ffd89303a3766bc4aeb2bc18b3d81249f59e5eec9cc7ee0bf1cff446d162515e_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-etcd-rhel8-operator@sha256:ffd89303a3766bc4aeb2bc18b3d81249f59e5eec9cc7ee0bf1cff446d162515e_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:62ec9d4f168d1c73b8c654d00a5bc0fe374e566c48d2fa45087c735a5f5fd0c5_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-image-registry-operator@sha256:62ec9d4f168d1c73b8c654d00a5bc0fe374e566c48d2fa45087c735a5f5fd0c5_s390x" + }, + "product_reference": "openshift4/ose-cluster-image-registry-operator@sha256:62ec9d4f168d1c73b8c654d00a5bc0fe374e566c48d2fa45087c735a5f5fd0c5_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:6d4761c212283b5119660e2e64d1d9ab8423911ba16571e414d28ea03f9c49d1_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-image-registry-operator@sha256:6d4761c212283b5119660e2e64d1d9ab8423911ba16571e414d28ea03f9c49d1_arm64" + }, + "product_reference": "openshift4/ose-cluster-image-registry-operator@sha256:6d4761c212283b5119660e2e64d1d9ab8423911ba16571e414d28ea03f9c49d1_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:86530da857aae0dd9224718006f4fd03c3118b633f6a71c7eb0b2667ae02337b_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-image-registry-operator@sha256:86530da857aae0dd9224718006f4fd03c3118b633f6a71c7eb0b2667ae02337b_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-image-registry-operator@sha256:86530da857aae0dd9224718006f4fd03c3118b633f6a71c7eb0b2667ae02337b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-image-registry-operator@sha256:b2ef5eaec1882e69cb1e7c5bd72cebec461d4ce0e709719ea07d2e5861de8e63_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-image-registry-operator@sha256:b2ef5eaec1882e69cb1e7c5bd72cebec461d4ce0e709719ea07d2e5861de8e63_amd64" + }, + "product_reference": "openshift4/ose-cluster-image-registry-operator@sha256:b2ef5eaec1882e69cb1e7c5bd72cebec461d4ce0e709719ea07d2e5861de8e63_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:2598dc215e83c1caf3b1cc7c4c1293f60f088e5459102fc9ac7cd9b06caf51c0_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-ingress-operator@sha256:2598dc215e83c1caf3b1cc7c4c1293f60f088e5459102fc9ac7cd9b06caf51c0_arm64" + }, + "product_reference": "openshift4/ose-cluster-ingress-operator@sha256:2598dc215e83c1caf3b1cc7c4c1293f60f088e5459102fc9ac7cd9b06caf51c0_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:7a15fe732d5432418170d6fedb8ac0d65e5d32e4db9bfc8fd21c1b02338cd649_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-ingress-operator@sha256:7a15fe732d5432418170d6fedb8ac0d65e5d32e4db9bfc8fd21c1b02338cd649_amd64" + }, + "product_reference": "openshift4/ose-cluster-ingress-operator@sha256:7a15fe732d5432418170d6fedb8ac0d65e5d32e4db9bfc8fd21c1b02338cd649_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:e1be115b194b860d32c7e6cb9d80914f777885e757532d40396283e8d11c8038_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-ingress-operator@sha256:e1be115b194b860d32c7e6cb9d80914f777885e757532d40396283e8d11c8038_s390x" + }, + "product_reference": "openshift4/ose-cluster-ingress-operator@sha256:e1be115b194b860d32c7e6cb9d80914f777885e757532d40396283e8d11c8038_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-ingress-operator@sha256:f42c8b6110a73f81df8cc3d533d1819caf9839f4f09acf6b3152462d9809f230_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-ingress-operator@sha256:f42c8b6110a73f81df8cc3d533d1819caf9839f4f09acf6b3152462d9809f230_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-ingress-operator@sha256:f42c8b6110a73f81df8cc3d533d1819caf9839f4f09acf6b3152462d9809f230_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:285f1babaefbf3da891d950525115d44723afe4e511fb532f303409d1328cb7d_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-apiserver-operator@sha256:285f1babaefbf3da891d950525115d44723afe4e511fb532f303409d1328cb7d_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-kube-apiserver-operator@sha256:285f1babaefbf3da891d950525115d44723afe4e511fb532f303409d1328cb7d_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:41524356aa6f8986d2d488673c9983fe4853cd9818b337de6002e7df7b8be838_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-apiserver-operator@sha256:41524356aa6f8986d2d488673c9983fe4853cd9818b337de6002e7df7b8be838_amd64" + }, + "product_reference": "openshift4/ose-cluster-kube-apiserver-operator@sha256:41524356aa6f8986d2d488673c9983fe4853cd9818b337de6002e7df7b8be838_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:6af22ea8306cc2ed2b4d637bbfc3543c3f83b480fed1bfa1e030724f2a230cb1_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-apiserver-operator@sha256:6af22ea8306cc2ed2b4d637bbfc3543c3f83b480fed1bfa1e030724f2a230cb1_s390x" + }, + "product_reference": "openshift4/ose-cluster-kube-apiserver-operator@sha256:6af22ea8306cc2ed2b4d637bbfc3543c3f83b480fed1bfa1e030724f2a230cb1_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-apiserver-operator@sha256:e046be2e1a61b2091f79e555c50c0a9e7e1893e0766d2397df619d0264551cd8_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-apiserver-operator@sha256:e046be2e1a61b2091f79e555c50c0a9e7e1893e0766d2397df619d0264551cd8_arm64" + }, + "product_reference": "openshift4/ose-cluster-kube-apiserver-operator@sha256:e046be2e1a61b2091f79e555c50c0a9e7e1893e0766d2397df619d0264551cd8_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:5eb521836145e2dcb596bfb3e07bdcc11dc802b181619328ed4977d8bb1645ff_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:5eb521836145e2dcb596bfb3e07bdcc11dc802b181619328ed4977d8bb1645ff_amd64" + }, + "product_reference": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:5eb521836145e2dcb596bfb3e07bdcc11dc802b181619328ed4977d8bb1645ff_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:632694647328881d00d9ef596fb196ecc1b01c3a2233313017883b3407118816_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:632694647328881d00d9ef596fb196ecc1b01c3a2233313017883b3407118816_arm64" + }, + "product_reference": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:632694647328881d00d9ef596fb196ecc1b01c3a2233313017883b3407118816_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:81b74238dc7307c96772ecd141cd520a5677216a976f525774e4dbf98e4a2022_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:81b74238dc7307c96772ecd141cd520a5677216a976f525774e4dbf98e4a2022_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:81b74238dc7307c96772ecd141cd520a5677216a976f525774e4dbf98e4a2022_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:d342102cda0fc60cef956af30ac5406f0522654ac47f09c262ec5969fb0d27cf_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:d342102cda0fc60cef956af30ac5406f0522654ac47f09c262ec5969fb0d27cf_s390x" + }, + "product_reference": "openshift4/ose-cluster-kube-cluster-api-rhel8-operator@sha256:d342102cda0fc60cef956af30ac5406f0522654ac47f09c262ec5969fb0d27cf_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:114928facd3db6e3110e585c66139971ca1025eafd7fc8aa57cba096e991377f_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-controller-manager-operator@sha256:114928facd3db6e3110e585c66139971ca1025eafd7fc8aa57cba096e991377f_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:114928facd3db6e3110e585c66139971ca1025eafd7fc8aa57cba096e991377f_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:2e5e69fd26323f8e1add4592edb3cef8eec90cab690cbc76ad6c163741789bbd_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-controller-manager-operator@sha256:2e5e69fd26323f8e1add4592edb3cef8eec90cab690cbc76ad6c163741789bbd_arm64" + }, + "product_reference": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:2e5e69fd26323f8e1add4592edb3cef8eec90cab690cbc76ad6c163741789bbd_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:3680c4443f2a83c7ec558e37f93b386d9318f9fbede21b893a3a023528fe7512_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-controller-manager-operator@sha256:3680c4443f2a83c7ec558e37f93b386d9318f9fbede21b893a3a023528fe7512_s390x" + }, + "product_reference": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:3680c4443f2a83c7ec558e37f93b386d9318f9fbede21b893a3a023528fe7512_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:51c3f251ca26c820d0603fbc842180296f52d678ee42d829d9a1127bc456df19_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-controller-manager-operator@sha256:51c3f251ca26c820d0603fbc842180296f52d678ee42d829d9a1127bc456df19_amd64" + }, + "product_reference": "openshift4/ose-cluster-kube-controller-manager-operator@sha256:51c3f251ca26c820d0603fbc842180296f52d678ee42d829d9a1127bc456df19_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-descheduler-operator@sha256:1669dd442554c92e9c71143d90a676959fb12705bff2ef3aaec819785b6df76f_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-descheduler-operator@sha256:1669dd442554c92e9c71143d90a676959fb12705bff2ef3aaec819785b6df76f_s390x" + }, + "product_reference": "openshift4/ose-cluster-kube-descheduler-operator@sha256:1669dd442554c92e9c71143d90a676959fb12705bff2ef3aaec819785b6df76f_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-descheduler-operator@sha256:8626dc3e14019a3a725caabdd48a2093bf8eb77d611906740e8b632ebdee8bb1_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-descheduler-operator@sha256:8626dc3e14019a3a725caabdd48a2093bf8eb77d611906740e8b632ebdee8bb1_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-kube-descheduler-operator@sha256:8626dc3e14019a3a725caabdd48a2093bf8eb77d611906740e8b632ebdee8bb1_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-descheduler-operator@sha256:a1d6f2793d636515d41971711137bbc17f87e33a873fbf82a2fb03ae307a46b4_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-descheduler-operator@sha256:a1d6f2793d636515d41971711137bbc17f87e33a873fbf82a2fb03ae307a46b4_amd64" + }, + "product_reference": "openshift4/ose-cluster-kube-descheduler-operator@sha256:a1d6f2793d636515d41971711137bbc17f87e33a873fbf82a2fb03ae307a46b4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-descheduler-operator@sha256:f3bd65e7b9b05bd5bd82f3a84059ec0b3eab3f0f8069b56e028d13d2c80d6a59_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-descheduler-operator@sha256:f3bd65e7b9b05bd5bd82f3a84059ec0b3eab3f0f8069b56e028d13d2c80d6a59_arm64" + }, + "product_reference": "openshift4/ose-cluster-kube-descheduler-operator@sha256:f3bd65e7b9b05bd5bd82f3a84059ec0b3eab3f0f8069b56e028d13d2c80d6a59_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:1669dd442554c92e9c71143d90a676959fb12705bff2ef3aaec819785b6df76f_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:1669dd442554c92e9c71143d90a676959fb12705bff2ef3aaec819785b6df76f_s390x" + }, + "product_reference": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:1669dd442554c92e9c71143d90a676959fb12705bff2ef3aaec819785b6df76f_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:8626dc3e14019a3a725caabdd48a2093bf8eb77d611906740e8b632ebdee8bb1_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:8626dc3e14019a3a725caabdd48a2093bf8eb77d611906740e8b632ebdee8bb1_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:8626dc3e14019a3a725caabdd48a2093bf8eb77d611906740e8b632ebdee8bb1_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:a1d6f2793d636515d41971711137bbc17f87e33a873fbf82a2fb03ae307a46b4_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:a1d6f2793d636515d41971711137bbc17f87e33a873fbf82a2fb03ae307a46b4_amd64" + }, + "product_reference": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:a1d6f2793d636515d41971711137bbc17f87e33a873fbf82a2fb03ae307a46b4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:f3bd65e7b9b05bd5bd82f3a84059ec0b3eab3f0f8069b56e028d13d2c80d6a59_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:f3bd65e7b9b05bd5bd82f3a84059ec0b3eab3f0f8069b56e028d13d2c80d6a59_arm64" + }, + "product_reference": "openshift4/ose-cluster-kube-descheduler-rhel8-operator@sha256:f3bd65e7b9b05bd5bd82f3a84059ec0b3eab3f0f8069b56e028d13d2c80d6a59_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:0c89eed7f0552a6bb731ef975287eb45735301ee41a78d2e4dccf99abd8372de_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-scheduler-operator@sha256:0c89eed7f0552a6bb731ef975287eb45735301ee41a78d2e4dccf99abd8372de_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-kube-scheduler-operator@sha256:0c89eed7f0552a6bb731ef975287eb45735301ee41a78d2e4dccf99abd8372de_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:2d34d4e0d265bcd3ac18465178e81bd3b4f2d0a0f0ded99f3507ca40f6503b5c_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-scheduler-operator@sha256:2d34d4e0d265bcd3ac18465178e81bd3b4f2d0a0f0ded99f3507ca40f6503b5c_s390x" + }, + "product_reference": "openshift4/ose-cluster-kube-scheduler-operator@sha256:2d34d4e0d265bcd3ac18465178e81bd3b4f2d0a0f0ded99f3507ca40f6503b5c_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:c1eb7e9080327eae78ac1dfedb4ae82ab8bcfad901b9f2cc911299743165fec8_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-scheduler-operator@sha256:c1eb7e9080327eae78ac1dfedb4ae82ab8bcfad901b9f2cc911299743165fec8_amd64" + }, + "product_reference": "openshift4/ose-cluster-kube-scheduler-operator@sha256:c1eb7e9080327eae78ac1dfedb4ae82ab8bcfad901b9f2cc911299743165fec8_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-scheduler-operator@sha256:c6897bc2793adcbbf241b9bb0291f71e9d1c010d1afa095e694d9d216f7ff2a3_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-scheduler-operator@sha256:c6897bc2793adcbbf241b9bb0291f71e9d1c010d1afa095e694d9d216f7ff2a3_arm64" + }, + "product_reference": "openshift4/ose-cluster-kube-scheduler-operator@sha256:c6897bc2793adcbbf241b9bb0291f71e9d1c010d1afa095e694d9d216f7ff2a3_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:0ef1705a6bce3b88ed42265b48aa3258a621ec73f9c56347c97423568e2fd363_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:0ef1705a6bce3b88ed42265b48aa3258a621ec73f9c56347c97423568e2fd363_s390x" + }, + "product_reference": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:0ef1705a6bce3b88ed42265b48aa3258a621ec73f9c56347c97423568e2fd363_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:12a07b34fd2fd554f73db16d1572977640ea911d39fb44bea5650b220291ba77_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:12a07b34fd2fd554f73db16d1572977640ea911d39fb44bea5650b220291ba77_arm64" + }, + "product_reference": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:12a07b34fd2fd554f73db16d1572977640ea911d39fb44bea5650b220291ba77_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:49c2e4521f006fbadb1d96e5caaff31a463d1b746f5b49e0c146f94330bc3c4a_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:49c2e4521f006fbadb1d96e5caaff31a463d1b746f5b49e0c146f94330bc3c4a_amd64" + }, + "product_reference": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:49c2e4521f006fbadb1d96e5caaff31a463d1b746f5b49e0c146f94330bc3c4a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:c6f1ef4d1b0fe089e3d1f06ef489bef704055a3da3ac023da141c4a2ff267d37_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:c6f1ef4d1b0fe089e3d1f06ef489bef704055a3da3ac023da141c4a2ff267d37_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-kube-storage-version-migrator-rhel8-operator@sha256:c6f1ef4d1b0fe089e3d1f06ef489bef704055a3da3ac023da141c4a2ff267d37_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-machine-approver@sha256:0dffd73b3c3154c66f8ed30e420312379cd118258ceef8b7f4dec7241f7a8590_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-machine-approver@sha256:0dffd73b3c3154c66f8ed30e420312379cd118258ceef8b7f4dec7241f7a8590_amd64" + }, + "product_reference": "openshift4/ose-cluster-machine-approver@sha256:0dffd73b3c3154c66f8ed30e420312379cd118258ceef8b7f4dec7241f7a8590_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-machine-approver@sha256:bae6e2d67930636195ea3d5ae74bed73e2e87f33c6d3de95d3d55852bc051c7c_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-machine-approver@sha256:bae6e2d67930636195ea3d5ae74bed73e2e87f33c6d3de95d3d55852bc051c7c_s390x" + }, + "product_reference": "openshift4/ose-cluster-machine-approver@sha256:bae6e2d67930636195ea3d5ae74bed73e2e87f33c6d3de95d3d55852bc051c7c_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-machine-approver@sha256:bcb768ad0621338fa1efb3e3ea6f33c5707fff9a79bef96f8c1e0d051b9ae27c_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-machine-approver@sha256:bcb768ad0621338fa1efb3e3ea6f33c5707fff9a79bef96f8c1e0d051b9ae27c_arm64" + }, + "product_reference": "openshift4/ose-cluster-machine-approver@sha256:bcb768ad0621338fa1efb3e3ea6f33c5707fff9a79bef96f8c1e0d051b9ae27c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-machine-approver@sha256:f273739a29594a693a4ed26cd506ba79cce68387ae89620a577f0f97d5f2aea9_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-machine-approver@sha256:f273739a29594a693a4ed26cd506ba79cce68387ae89620a577f0f97d5f2aea9_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-machine-approver@sha256:f273739a29594a693a4ed26cd506ba79cce68387ae89620a577f0f97d5f2aea9_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:12cbf97240f7d3903de177c03adf888604c7c8deace205493cc59043c9b65280_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-monitoring-operator@sha256:12cbf97240f7d3903de177c03adf888604c7c8deace205493cc59043c9b65280_arm64" + }, + "product_reference": "openshift4/ose-cluster-monitoring-operator@sha256:12cbf97240f7d3903de177c03adf888604c7c8deace205493cc59043c9b65280_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:1556e2ac5158eaa5b31eca00997dcc0cb3ad01e69ab1dd96c7d3dc123dbeab13_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-monitoring-operator@sha256:1556e2ac5158eaa5b31eca00997dcc0cb3ad01e69ab1dd96c7d3dc123dbeab13_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-monitoring-operator@sha256:1556e2ac5158eaa5b31eca00997dcc0cb3ad01e69ab1dd96c7d3dc123dbeab13_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:3d096e082dc5241bddd6c495b2a634334831287b9b472a52389c9d287c682ff5_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-monitoring-operator@sha256:3d096e082dc5241bddd6c495b2a634334831287b9b472a52389c9d287c682ff5_amd64" + }, + "product_reference": "openshift4/ose-cluster-monitoring-operator@sha256:3d096e082dc5241bddd6c495b2a634334831287b9b472a52389c9d287c682ff5_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:8ba2b1b0e1348610a2e8925e1c78e893bd662bebc0dc4214782371cb132ac3d5_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-monitoring-operator@sha256:8ba2b1b0e1348610a2e8925e1c78e893bd662bebc0dc4214782371cb132ac3d5_arm64" + }, + "product_reference": "openshift4/ose-cluster-monitoring-operator@sha256:8ba2b1b0e1348610a2e8925e1c78e893bd662bebc0dc4214782371cb132ac3d5_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:b98c0be1d6fe084bc6e2d8f28592701d61335ad55079788114651faa44a154d2_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-monitoring-operator@sha256:b98c0be1d6fe084bc6e2d8f28592701d61335ad55079788114651faa44a154d2_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-monitoring-operator@sha256:b98c0be1d6fe084bc6e2d8f28592701d61335ad55079788114651faa44a154d2_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:e93685e86925b78fb9a346843e7cf9d60b336aadbf4e4f05f85d2655c40f7d40_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-monitoring-operator@sha256:e93685e86925b78fb9a346843e7cf9d60b336aadbf4e4f05f85d2655c40f7d40_s390x" + }, + "product_reference": "openshift4/ose-cluster-monitoring-operator@sha256:e93685e86925b78fb9a346843e7cf9d60b336aadbf4e4f05f85d2655c40f7d40_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:f459787d6aee8828626489e48ff8b2ab829cd18a616e165ba69ef90646073319_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-monitoring-operator@sha256:f459787d6aee8828626489e48ff8b2ab829cd18a616e165ba69ef90646073319_amd64" + }, + "product_reference": "openshift4/ose-cluster-monitoring-operator@sha256:f459787d6aee8828626489e48ff8b2ab829cd18a616e165ba69ef90646073319_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-monitoring-operator@sha256:faa7ded3f5ad71545ab11707594dd1d171fbb1491886a9705d2702c8f00934d6_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-monitoring-operator@sha256:faa7ded3f5ad71545ab11707594dd1d171fbb1491886a9705d2702c8f00934d6_s390x" + }, + "product_reference": "openshift4/ose-cluster-monitoring-operator@sha256:faa7ded3f5ad71545ab11707594dd1d171fbb1491886a9705d2702c8f00934d6_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-network-operator@sha256:35b609888e706c6667ac24551daadccb0bdaeebafae1ed44940bd03b603beeaf_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-network-operator@sha256:35b609888e706c6667ac24551daadccb0bdaeebafae1ed44940bd03b603beeaf_arm64" + }, + "product_reference": "openshift4/ose-cluster-network-operator@sha256:35b609888e706c6667ac24551daadccb0bdaeebafae1ed44940bd03b603beeaf_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-network-operator@sha256:3f8f6dca69ee76d1ced7691e01ceb4d54ba15feb146c2358185347fad873c0fe_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-network-operator@sha256:3f8f6dca69ee76d1ced7691e01ceb4d54ba15feb146c2358185347fad873c0fe_s390x" + }, + "product_reference": "openshift4/ose-cluster-network-operator@sha256:3f8f6dca69ee76d1ced7691e01ceb4d54ba15feb146c2358185347fad873c0fe_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-network-operator@sha256:a40fc8163c3b84cdf8f7053d88ad8e61435d591595af68a335e4a11a544271ca_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-network-operator@sha256:a40fc8163c3b84cdf8f7053d88ad8e61435d591595af68a335e4a11a544271ca_amd64" + }, + "product_reference": "openshift4/ose-cluster-network-operator@sha256:a40fc8163c3b84cdf8f7053d88ad8e61435d591595af68a335e4a11a544271ca_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-network-operator@sha256:e237d42730688ab0067ee1fbcfa2c408bed1051eb5a6f784cd497edc9d0eff77_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-network-operator@sha256:e237d42730688ab0067ee1fbcfa2c408bed1051eb5a6f784cd497edc9d0eff77_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-network-operator@sha256:e237d42730688ab0067ee1fbcfa2c408bed1051eb5a6f784cd497edc9d0eff77_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-nfd-operator@sha256:3419747a45619ae6a3f52b077967d4d2057fda3cff75d15ff6eb248bb950a90b_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-nfd-operator@sha256:3419747a45619ae6a3f52b077967d4d2057fda3cff75d15ff6eb248bb950a90b_arm64" + }, + "product_reference": "openshift4/ose-cluster-nfd-operator@sha256:3419747a45619ae6a3f52b077967d4d2057fda3cff75d15ff6eb248bb950a90b_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-nfd-operator@sha256:6af2ebc4bb484c04a42e8c8cc572592169a711613fd9930a0516c59bb3530452_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-nfd-operator@sha256:6af2ebc4bb484c04a42e8c8cc572592169a711613fd9930a0516c59bb3530452_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-nfd-operator@sha256:6af2ebc4bb484c04a42e8c8cc572592169a711613fd9930a0516c59bb3530452_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-nfd-operator@sha256:83a94a4def24df37cbfcf9af683a31ac9a117fe1ef5bfb0d03996cf59c6584e7_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-nfd-operator@sha256:83a94a4def24df37cbfcf9af683a31ac9a117fe1ef5bfb0d03996cf59c6584e7_s390x" + }, + "product_reference": "openshift4/ose-cluster-nfd-operator@sha256:83a94a4def24df37cbfcf9af683a31ac9a117fe1ef5bfb0d03996cf59c6584e7_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-nfd-operator@sha256:9ea73326a4112b0f11503aa9720d929f00e80bc2ca8703eeee2d573f2cfbfeb7_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-nfd-operator@sha256:9ea73326a4112b0f11503aa9720d929f00e80bc2ca8703eeee2d573f2cfbfeb7_amd64" + }, + "product_reference": "openshift4/ose-cluster-nfd-operator@sha256:9ea73326a4112b0f11503aa9720d929f00e80bc2ca8703eeee2d573f2cfbfeb7_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-olm-operator-rhel8@sha256:10c9275bf75149c5b2f1738d58a6c0be436a2467606764428521472a6ed4355d_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-olm-operator-rhel8@sha256:10c9275bf75149c5b2f1738d58a6c0be436a2467606764428521472a6ed4355d_s390x" + }, + "product_reference": "openshift4/ose-cluster-olm-operator-rhel8@sha256:10c9275bf75149c5b2f1738d58a6c0be436a2467606764428521472a6ed4355d_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-olm-operator-rhel8@sha256:228c8ce521b4d9c49399b4d5c74c7f337b9d3fa146f3290e15e8f88045304323_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-olm-operator-rhel8@sha256:228c8ce521b4d9c49399b4d5c74c7f337b9d3fa146f3290e15e8f88045304323_arm64" + }, + "product_reference": "openshift4/ose-cluster-olm-operator-rhel8@sha256:228c8ce521b4d9c49399b4d5c74c7f337b9d3fa146f3290e15e8f88045304323_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-olm-operator-rhel8@sha256:5c9a84af3b139f914e604b86b5c729f7d987af46e23da9507a5e179f195c0a4b_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-olm-operator-rhel8@sha256:5c9a84af3b139f914e604b86b5c729f7d987af46e23da9507a5e179f195c0a4b_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-olm-operator-rhel8@sha256:5c9a84af3b139f914e604b86b5c729f7d987af46e23da9507a5e179f195c0a4b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-olm-operator-rhel8@sha256:e34579428e471435a590aa0e390f709093b0e4c08c4e730b5342da2d699f2588_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-olm-operator-rhel8@sha256:e34579428e471435a590aa0e390f709093b0e4c08c4e730b5342da2d699f2588_amd64" + }, + "product_reference": "openshift4/ose-cluster-olm-operator-rhel8@sha256:e34579428e471435a590aa0e390f709093b0e4c08c4e730b5342da2d699f2588_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:033ccaaeb959c1be8cd9039031377fd2d303e0a16ba1e5158a14b65066a9554f_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-openshift-apiserver-operator@sha256:033ccaaeb959c1be8cd9039031377fd2d303e0a16ba1e5158a14b65066a9554f_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:033ccaaeb959c1be8cd9039031377fd2d303e0a16ba1e5158a14b65066a9554f_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:0d65b370c3d27f44f6e78ca118ff5ea9582e5e0542588614c6bb1de6b0d75409_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-openshift-apiserver-operator@sha256:0d65b370c3d27f44f6e78ca118ff5ea9582e5e0542588614c6bb1de6b0d75409_arm64" + }, + "product_reference": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:0d65b370c3d27f44f6e78ca118ff5ea9582e5e0542588614c6bb1de6b0d75409_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:10036fd11dfc2060079ef45714a1e0100e105d93651ff2dbaa485405aaf27040_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-openshift-apiserver-operator@sha256:10036fd11dfc2060079ef45714a1e0100e105d93651ff2dbaa485405aaf27040_s390x" + }, + "product_reference": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:10036fd11dfc2060079ef45714a1e0100e105d93651ff2dbaa485405aaf27040_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:cc15f335b57ec310ca545f0d315fb4b7e28dd5b4b6cb82ef22b71615b523b3bb_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-openshift-apiserver-operator@sha256:cc15f335b57ec310ca545f0d315fb4b7e28dd5b4b6cb82ef22b71615b523b3bb_amd64" + }, + "product_reference": "openshift4/ose-cluster-openshift-apiserver-operator@sha256:cc15f335b57ec310ca545f0d315fb4b7e28dd5b4b6cb82ef22b71615b523b3bb_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:06631f37592d53d7d7fe49335a2d48c0b7ae6ce9df04aa93514018ca0ca21924_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-openshift-controller-manager-operator@sha256:06631f37592d53d7d7fe49335a2d48c0b7ae6ce9df04aa93514018ca0ca21924_s390x" + }, + "product_reference": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:06631f37592d53d7d7fe49335a2d48c0b7ae6ce9df04aa93514018ca0ca21924_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:5c5e7671c3b07fa841ccb766b078975e356fdfcf285e19a084bf3eb00b62208f_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-openshift-controller-manager-operator@sha256:5c5e7671c3b07fa841ccb766b078975e356fdfcf285e19a084bf3eb00b62208f_arm64" + }, + "product_reference": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:5c5e7671c3b07fa841ccb766b078975e356fdfcf285e19a084bf3eb00b62208f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:bf491188b92d3aa5d3f5c1af4a08ea5f405e850bcc0062e683f5f5dbb7811f0b_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-openshift-controller-manager-operator@sha256:bf491188b92d3aa5d3f5c1af4a08ea5f405e850bcc0062e683f5f5dbb7811f0b_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:bf491188b92d3aa5d3f5c1af4a08ea5f405e850bcc0062e683f5f5dbb7811f0b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:fe95daa51e0bbf3d8cbcdc91c403257ba874960d9f9bc463cf388051d1e8fc02_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-openshift-controller-manager-operator@sha256:fe95daa51e0bbf3d8cbcdc91c403257ba874960d9f9bc463cf388051d1e8fc02_amd64" + }, + "product_reference": "openshift4/ose-cluster-openshift-controller-manager-operator@sha256:fe95daa51e0bbf3d8cbcdc91c403257ba874960d9f9bc463cf388051d1e8fc02_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:03786ea6a7232f86ef17d483890d2337b58022f1aa2c63ae1f3488aa0b6348fe_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:03786ea6a7232f86ef17d483890d2337b58022f1aa2c63ae1f3488aa0b6348fe_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:03786ea6a7232f86ef17d483890d2337b58022f1aa2c63ae1f3488aa0b6348fe_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:0dffff573d7505bfa80dab0e094440854fa328f4bffb4f1e385f23d2c13ba508_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:0dffff573d7505bfa80dab0e094440854fa328f4bffb4f1e385f23d2c13ba508_arm64" + }, + "product_reference": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:0dffff573d7505bfa80dab0e094440854fa328f4bffb4f1e385f23d2c13ba508_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:349506f89a1095ddaed9307450b8713437afd0c70693ffac86772bc2c7fdc061_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:349506f89a1095ddaed9307450b8713437afd0c70693ffac86772bc2c7fdc061_s390x" + }, + "product_reference": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:349506f89a1095ddaed9307450b8713437afd0c70693ffac86772bc2c7fdc061_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:ac0d0aefd380764a0a000acd25844af672cf0fd228885db639cc61bd07160106_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:ac0d0aefd380764a0a000acd25844af672cf0fd228885db639cc61bd07160106_amd64" + }, + "product_reference": "openshift4/ose-cluster-platform-operators-manager-rhel8@sha256:ac0d0aefd380764a0a000acd25844af672cf0fd228885db639cc61bd07160106_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:253efe343b45ea868ee4fa74119ad7263e7a39edcf7414694775bb58b0665d5c_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-policy-controller-rhel8@sha256:253efe343b45ea868ee4fa74119ad7263e7a39edcf7414694775bb58b0665d5c_s390x" + }, + "product_reference": "openshift4/ose-cluster-policy-controller-rhel8@sha256:253efe343b45ea868ee4fa74119ad7263e7a39edcf7414694775bb58b0665d5c_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:4a462caaebfc64039a99b6d6d13c9150b7be7f9c9b7b35c09988f63b54b34ac7_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-policy-controller-rhel8@sha256:4a462caaebfc64039a99b6d6d13c9150b7be7f9c9b7b35c09988f63b54b34ac7_arm64" + }, + "product_reference": "openshift4/ose-cluster-policy-controller-rhel8@sha256:4a462caaebfc64039a99b6d6d13c9150b7be7f9c9b7b35c09988f63b54b34ac7_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:4e7fa2d7f74161c1180172db75256f0a0d5314db0202ae0488dca5475a30133c_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-policy-controller-rhel8@sha256:4e7fa2d7f74161c1180172db75256f0a0d5314db0202ae0488dca5475a30133c_amd64" + }, + "product_reference": "openshift4/ose-cluster-policy-controller-rhel8@sha256:4e7fa2d7f74161c1180172db75256f0a0d5314db0202ae0488dca5475a30133c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-policy-controller-rhel8@sha256:f2ab65db7422ec98daed9cd25ae49fa4ed59c5da9b9d2885741cd1c402a0c305_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-policy-controller-rhel8@sha256:f2ab65db7422ec98daed9cd25ae49fa4ed59c5da9b9d2885741cd1c402a0c305_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-policy-controller-rhel8@sha256:f2ab65db7422ec98daed9cd25ae49fa4ed59c5da9b9d2885741cd1c402a0c305_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-samples-operator@sha256:32ffde926f19675f1d4c8d6172e77e17a62fa535ad53e08984cf6256e6ad8ab4_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-samples-operator@sha256:32ffde926f19675f1d4c8d6172e77e17a62fa535ad53e08984cf6256e6ad8ab4_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-samples-operator@sha256:32ffde926f19675f1d4c8d6172e77e17a62fa535ad53e08984cf6256e6ad8ab4_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-samples-operator@sha256:68a7f6a75355e6841838e22292f5d9002ad3a4453e515851ac15c91963060ba8_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-samples-operator@sha256:68a7f6a75355e6841838e22292f5d9002ad3a4453e515851ac15c91963060ba8_s390x" + }, + "product_reference": "openshift4/ose-cluster-samples-operator@sha256:68a7f6a75355e6841838e22292f5d9002ad3a4453e515851ac15c91963060ba8_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-samples-operator@sha256:79e7080ff928c8337b481c5b536439d4feb56951b988fe747a88d1d6f75fd826_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-samples-operator@sha256:79e7080ff928c8337b481c5b536439d4feb56951b988fe747a88d1d6f75fd826_arm64" + }, + "product_reference": "openshift4/ose-cluster-samples-operator@sha256:79e7080ff928c8337b481c5b536439d4feb56951b988fe747a88d1d6f75fd826_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-samples-operator@sha256:c3127e82da4260dbd0196c79ba0dc4fb1ae283ced0253102341b32e81d813036_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-samples-operator@sha256:c3127e82da4260dbd0196c79ba0dc4fb1ae283ced0253102341b32e81d813036_amd64" + }, + "product_reference": "openshift4/ose-cluster-samples-operator@sha256:c3127e82da4260dbd0196c79ba0dc4fb1ae283ced0253102341b32e81d813036_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-storage-operator@sha256:1e4d1586bd0963118301b1d3b1d052ccf32c55beaef3c90148af9be294a705eb_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-storage-operator@sha256:1e4d1586bd0963118301b1d3b1d052ccf32c55beaef3c90148af9be294a705eb_amd64" + }, + "product_reference": "openshift4/ose-cluster-storage-operator@sha256:1e4d1586bd0963118301b1d3b1d052ccf32c55beaef3c90148af9be294a705eb_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-storage-operator@sha256:4b3cf22cb3931fe266f4835a67688b824117b037d7085373771e5d7211a36025_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-storage-operator@sha256:4b3cf22cb3931fe266f4835a67688b824117b037d7085373771e5d7211a36025_s390x" + }, + "product_reference": "openshift4/ose-cluster-storage-operator@sha256:4b3cf22cb3931fe266f4835a67688b824117b037d7085373771e5d7211a36025_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-storage-operator@sha256:7335afce818f8d4fa331e74695b56afae64df65915599b5496827579fba27f31_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-storage-operator@sha256:7335afce818f8d4fa331e74695b56afae64df65915599b5496827579fba27f31_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-storage-operator@sha256:7335afce818f8d4fa331e74695b56afae64df65915599b5496827579fba27f31_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-storage-operator@sha256:f45da9ae06f203ca16ef6afc4e8ff9b882be4583376b61b240a09af729f0dfe9_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-storage-operator@sha256:f45da9ae06f203ca16ef6afc4e8ff9b882be4583376b61b240a09af729f0dfe9_arm64" + }, + "product_reference": "openshift4/ose-cluster-storage-operator@sha256:f45da9ae06f203ca16ef6afc4e8ff9b882be4583376b61b240a09af729f0dfe9_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-update-keys@sha256:28fa3d35c05d3c7905361fae76f2410c971cbb80f67af080c02ccae1cece8472_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-update-keys@sha256:28fa3d35c05d3c7905361fae76f2410c971cbb80f67af080c02ccae1cece8472_arm64" + }, + "product_reference": "openshift4/ose-cluster-update-keys@sha256:28fa3d35c05d3c7905361fae76f2410c971cbb80f67af080c02ccae1cece8472_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-update-keys@sha256:63c36f42c64daafbd766d5494dcfcb4720083429747d1ffafafba51aa8ef28d3_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-update-keys@sha256:63c36f42c64daafbd766d5494dcfcb4720083429747d1ffafafba51aa8ef28d3_amd64" + }, + "product_reference": "openshift4/ose-cluster-update-keys@sha256:63c36f42c64daafbd766d5494dcfcb4720083429747d1ffafafba51aa8ef28d3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-update-keys@sha256:84da43189dbcc5e5971fecb6449efd69ac504ef1f26ad3ffe7427372a1190c0f_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-update-keys@sha256:84da43189dbcc5e5971fecb6449efd69ac504ef1f26ad3ffe7427372a1190c0f_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-update-keys@sha256:84da43189dbcc5e5971fecb6449efd69ac504ef1f26ad3ffe7427372a1190c0f_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-update-keys@sha256:ddd24d600f02abffe2b46d450be203d0d32518c9627b4187292b5d8bd2583c61_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-update-keys@sha256:ddd24d600f02abffe2b46d450be203d0d32518c9627b4187292b5d8bd2583c61_s390x" + }, + "product_reference": "openshift4/ose-cluster-update-keys@sha256:ddd24d600f02abffe2b46d450be203d0d32518c9627b4187292b5d8bd2583c61_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-version-operator@sha256:076afa34ba9734a1e3a97c82dab1999e8388e1d036695adc45e33b53845266c0_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-version-operator@sha256:076afa34ba9734a1e3a97c82dab1999e8388e1d036695adc45e33b53845266c0_s390x" + }, + "product_reference": "openshift4/ose-cluster-version-operator@sha256:076afa34ba9734a1e3a97c82dab1999e8388e1d036695adc45e33b53845266c0_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-version-operator@sha256:7d1144a87eb5639bf8c66ddb376488283d9fc69f26ab1e192afc965b955fe921_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-version-operator@sha256:7d1144a87eb5639bf8c66ddb376488283d9fc69f26ab1e192afc965b955fe921_arm64" + }, + "product_reference": "openshift4/ose-cluster-version-operator@sha256:7d1144a87eb5639bf8c66ddb376488283d9fc69f26ab1e192afc965b955fe921_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-version-operator@sha256:b302356aede012c25117023961f124951a04c4b5a2c4c77ea73bd7126045b580_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-version-operator@sha256:b302356aede012c25117023961f124951a04c4b5a2c4c77ea73bd7126045b580_amd64" + }, + "product_reference": "openshift4/ose-cluster-version-operator@sha256:b302356aede012c25117023961f124951a04c4b5a2c4c77ea73bd7126045b580_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-version-operator@sha256:c5469ffc4c9062c690eb6ccfaec797381bbd92d697764ecea7762f856c26a8f5_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-cluster-version-operator@sha256:c5469ffc4c9062c690eb6ccfaec797381bbd92d697764ecea7762f856c26a8f5_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-version-operator@sha256:c5469ffc4c9062c690eb6ccfaec797381bbd92d697764ecea7762f856c26a8f5_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:776393c9e4c6970e1e3b453fc2ef7753e0cb8a3ae6ca175b2e9ce923bc255bca_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:776393c9e4c6970e1e3b453fc2ef7753e0cb8a3ae6ca175b2e9ce923bc255bca_arm64" + }, + "product_reference": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:776393c9e4c6970e1e3b453fc2ef7753e0cb8a3ae6ca175b2e9ce923bc255bca_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:9d2915d5cef825da124e121b9a89665f3c0f7e9a102a1740e377ec2a27b174f0_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:9d2915d5cef825da124e121b9a89665f3c0f7e9a102a1740e377ec2a27b174f0_ppc64le" + }, + "product_reference": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:9d2915d5cef825da124e121b9a89665f3c0f7e9a102a1740e377ec2a27b174f0_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:b522da40066a38358ae80ba851d33c8044d332cab5678ef6d73b6cfcbf97d091_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:b522da40066a38358ae80ba851d33c8044d332cab5678ef6d73b6cfcbf97d091_s390x" + }, + "product_reference": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:b522da40066a38358ae80ba851d33c8044d332cab5678ef6d73b6cfcbf97d091_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d2e7eab9980af0427a5ee96a50fa236ac22a7ab50b2359b64b323422c66d135f_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d2e7eab9980af0427a5ee96a50fa236ac22a7ab50b2359b64b323422c66d135f_amd64" + }, + "product_reference": "openshift4/ose-clusterresourceoverride-rhel8-operator@sha256:d2e7eab9980af0427a5ee96a50fa236ac22a7ab50b2359b64b323422c66d135f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-clusterresourceoverride-rhel8@sha256:57184f1a0de2ade1e8f20e92147ed766dd13660ebaf42fdbc81d0f67a9c33cb8_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-clusterresourceoverride-rhel8@sha256:57184f1a0de2ade1e8f20e92147ed766dd13660ebaf42fdbc81d0f67a9c33cb8_s390x" + }, + "product_reference": "openshift4/ose-clusterresourceoverride-rhel8@sha256:57184f1a0de2ade1e8f20e92147ed766dd13660ebaf42fdbc81d0f67a9c33cb8_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-clusterresourceoverride-rhel8@sha256:8e649308b1da9278a8c7769e9a52862387d2d5a3828a60aee3b212cf8b503d77_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-clusterresourceoverride-rhel8@sha256:8e649308b1da9278a8c7769e9a52862387d2d5a3828a60aee3b212cf8b503d77_arm64" + }, + "product_reference": "openshift4/ose-clusterresourceoverride-rhel8@sha256:8e649308b1da9278a8c7769e9a52862387d2d5a3828a60aee3b212cf8b503d77_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-clusterresourceoverride-rhel8@sha256:94ce5869e449e2ab1ab8dfe666bae7883a0b56e1205dd76539a43cfc24f3005e_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-clusterresourceoverride-rhel8@sha256:94ce5869e449e2ab1ab8dfe666bae7883a0b56e1205dd76539a43cfc24f3005e_amd64" + }, + "product_reference": "openshift4/ose-clusterresourceoverride-rhel8@sha256:94ce5869e449e2ab1ab8dfe666bae7883a0b56e1205dd76539a43cfc24f3005e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-clusterresourceoverride-rhel8@sha256:a077745b0737fbb440d2158920e7722f3245ff9c4200b67325307ed4a9c7dc04_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-clusterresourceoverride-rhel8@sha256:a077745b0737fbb440d2158920e7722f3245ff9c4200b67325307ed4a9c7dc04_ppc64le" + }, + "product_reference": "openshift4/ose-clusterresourceoverride-rhel8@sha256:a077745b0737fbb440d2158920e7722f3245ff9c4200b67325307ed4a9c7dc04_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-configmap-reloader@sha256:0511b6d7e132f10f0732bf97eeffad89d800f7bd6723acf3c28ebdb54e539e76_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-configmap-reloader@sha256:0511b6d7e132f10f0732bf97eeffad89d800f7bd6723acf3c28ebdb54e539e76_amd64" + }, + "product_reference": "openshift4/ose-configmap-reloader@sha256:0511b6d7e132f10f0732bf97eeffad89d800f7bd6723acf3c28ebdb54e539e76_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-configmap-reloader@sha256:07b7169a29eb0aad3384dacc003f56b8dca07e2efd8adfe1335edcb50e9600d3_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-configmap-reloader@sha256:07b7169a29eb0aad3384dacc003f56b8dca07e2efd8adfe1335edcb50e9600d3_arm64" + }, + "product_reference": "openshift4/ose-configmap-reloader@sha256:07b7169a29eb0aad3384dacc003f56b8dca07e2efd8adfe1335edcb50e9600d3_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-configmap-reloader@sha256:2318fae31b17006a669da9c4a7aea1208a789f7ddd3465f15555599f34667fa6_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-configmap-reloader@sha256:2318fae31b17006a669da9c4a7aea1208a789f7ddd3465f15555599f34667fa6_ppc64le" + }, + "product_reference": "openshift4/ose-configmap-reloader@sha256:2318fae31b17006a669da9c4a7aea1208a789f7ddd3465f15555599f34667fa6_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-configmap-reloader@sha256:5a84de6cc2c8c8ffa7250f44aba6de54a2b2dc4b36655a83e7ece6800f7ffaa4_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-configmap-reloader@sha256:5a84de6cc2c8c8ffa7250f44aba6de54a2b2dc4b36655a83e7ece6800f7ffaa4_s390x" + }, + "product_reference": "openshift4/ose-configmap-reloader@sha256:5a84de6cc2c8c8ffa7250f44aba6de54a2b2dc4b36655a83e7ece6800f7ffaa4_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console-operator@sha256:89265b21b153806e2028b8cca870614f575d3cc089f64d8412410e0233b30d01_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-console-operator@sha256:89265b21b153806e2028b8cca870614f575d3cc089f64d8412410e0233b30d01_s390x" + }, + "product_reference": "openshift4/ose-console-operator@sha256:89265b21b153806e2028b8cca870614f575d3cc089f64d8412410e0233b30d01_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console-operator@sha256:ae06d61f228bcfd7fb6ccf6017da73e3c91e6125ad3aa965b59f3e1fe9ddbf0f_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-console-operator@sha256:ae06d61f228bcfd7fb6ccf6017da73e3c91e6125ad3aa965b59f3e1fe9ddbf0f_arm64" + }, + "product_reference": "openshift4/ose-console-operator@sha256:ae06d61f228bcfd7fb6ccf6017da73e3c91e6125ad3aa965b59f3e1fe9ddbf0f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console-operator@sha256:e1ea789ea8ab04565f8f76c441acf5e0108a84df36863dadc88666a0ec685237_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-console-operator@sha256:e1ea789ea8ab04565f8f76c441acf5e0108a84df36863dadc88666a0ec685237_ppc64le" + }, + "product_reference": "openshift4/ose-console-operator@sha256:e1ea789ea8ab04565f8f76c441acf5e0108a84df36863dadc88666a0ec685237_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console-operator@sha256:e7acc4accb633302cad48c17c1dbb07f09a5de370df1be94f8f4f3527f685fa8_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-console-operator@sha256:e7acc4accb633302cad48c17c1dbb07f09a5de370df1be94f8f4f3527f685fa8_amd64" + }, + "product_reference": "openshift4/ose-console-operator@sha256:e7acc4accb633302cad48c17c1dbb07f09a5de370df1be94f8f4f3527f685fa8_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console@sha256:0009c2c68fc28070147403fe282488b300fbdfa4589cab50822c20515951d117_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-console@sha256:0009c2c68fc28070147403fe282488b300fbdfa4589cab50822c20515951d117_ppc64le" + }, + "product_reference": "openshift4/ose-console@sha256:0009c2c68fc28070147403fe282488b300fbdfa4589cab50822c20515951d117_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console@sha256:079a8d5464451a6e6122b3c4804d561e8319cb755feebd32bfbe2525b0efaad6_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-console@sha256:079a8d5464451a6e6122b3c4804d561e8319cb755feebd32bfbe2525b0efaad6_s390x" + }, + "product_reference": "openshift4/ose-console@sha256:079a8d5464451a6e6122b3c4804d561e8319cb755feebd32bfbe2525b0efaad6_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console@sha256:3d4201fb5296b3b549e5aff57dafa4d7ab1d6b8e9e8c6939cbae50c838552c04_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-console@sha256:3d4201fb5296b3b549e5aff57dafa4d7ab1d6b8e9e8c6939cbae50c838552c04_amd64" + }, + "product_reference": "openshift4/ose-console@sha256:3d4201fb5296b3b549e5aff57dafa4d7ab1d6b8e9e8c6939cbae50c838552c04_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console@sha256:51ec12e4dee718f3e9c925f01176b9e81696e0c3358e3b573f12bc9e3a5ac07c_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-console@sha256:51ec12e4dee718f3e9c925f01176b9e81696e0c3358e3b573f12bc9e3a5ac07c_ppc64le" + }, + "product_reference": "openshift4/ose-console@sha256:51ec12e4dee718f3e9c925f01176b9e81696e0c3358e3b573f12bc9e3a5ac07c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console@sha256:5ab1254cac9d0cb03ba2ca2f6dcc9bd701ffac0ab2e00ddf515fd414203754d7_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-console@sha256:5ab1254cac9d0cb03ba2ca2f6dcc9bd701ffac0ab2e00ddf515fd414203754d7_amd64" + }, + "product_reference": "openshift4/ose-console@sha256:5ab1254cac9d0cb03ba2ca2f6dcc9bd701ffac0ab2e00ddf515fd414203754d7_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console@sha256:b2ddee1ad616ac00d6b81a5c5b55108cc8f465f696081b01201c0e7638e2b149_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-console@sha256:b2ddee1ad616ac00d6b81a5c5b55108cc8f465f696081b01201c0e7638e2b149_arm64" + }, + "product_reference": "openshift4/ose-console@sha256:b2ddee1ad616ac00d6b81a5c5b55108cc8f465f696081b01201c0e7638e2b149_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console@sha256:c10561d95ba2e669c4e1b9519ab951f4dd079a4cf9681138ddaadd10f283ea5e_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-console@sha256:c10561d95ba2e669c4e1b9519ab951f4dd079a4cf9681138ddaadd10f283ea5e_arm64" + }, + "product_reference": "openshift4/ose-console@sha256:c10561d95ba2e669c4e1b9519ab951f4dd079a4cf9681138ddaadd10f283ea5e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-console@sha256:c1106ad6e2d3c8da039807b39021c0666ccb1d4c13b798d7c61debfbe5c0ac24_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-console@sha256:c1106ad6e2d3c8da039807b39021c0666ccb1d4c13b798d7c61debfbe5c0ac24_s390x" + }, + "product_reference": "openshift4/ose-console@sha256:c1106ad6e2d3c8da039807b39021c0666ccb1d4c13b798d7c61debfbe5c0ac24_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:0c751c2ad31d7927996ddd5eedb4e7dc5ea1dae8e0dea63d391cf62e26335263_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-container-networking-plugins-rhel8@sha256:0c751c2ad31d7927996ddd5eedb4e7dc5ea1dae8e0dea63d391cf62e26335263_s390x" + }, + "product_reference": "openshift4/ose-container-networking-plugins-rhel8@sha256:0c751c2ad31d7927996ddd5eedb4e7dc5ea1dae8e0dea63d391cf62e26335263_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:27693100ca36957063756521caa9007b3b11193a4ed23985263569e6ab1d531b_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-container-networking-plugins-rhel8@sha256:27693100ca36957063756521caa9007b3b11193a4ed23985263569e6ab1d531b_s390x" + }, + "product_reference": "openshift4/ose-container-networking-plugins-rhel8@sha256:27693100ca36957063756521caa9007b3b11193a4ed23985263569e6ab1d531b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:6825e9af741f952625fdb29be751c0d68892b4a6322146179bab4a0b51c7dd20_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-container-networking-plugins-rhel8@sha256:6825e9af741f952625fdb29be751c0d68892b4a6322146179bab4a0b51c7dd20_amd64" + }, + "product_reference": "openshift4/ose-container-networking-plugins-rhel8@sha256:6825e9af741f952625fdb29be751c0d68892b4a6322146179bab4a0b51c7dd20_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:94bb78f9612529cafc144ec2f37780e8124b7cad4dd3a0d03d4b2cd39f0744b2_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-container-networking-plugins-rhel8@sha256:94bb78f9612529cafc144ec2f37780e8124b7cad4dd3a0d03d4b2cd39f0744b2_ppc64le" + }, + "product_reference": "openshift4/ose-container-networking-plugins-rhel8@sha256:94bb78f9612529cafc144ec2f37780e8124b7cad4dd3a0d03d4b2cd39f0744b2_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:b3654ab2f770cf120df8ba5d7c9692fe008c278be451243fc6ae9e7502a4011c_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-container-networking-plugins-rhel8@sha256:b3654ab2f770cf120df8ba5d7c9692fe008c278be451243fc6ae9e7502a4011c_ppc64le" + }, + "product_reference": "openshift4/ose-container-networking-plugins-rhel8@sha256:b3654ab2f770cf120df8ba5d7c9692fe008c278be451243fc6ae9e7502a4011c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:b70e33031bc4a6d8ca90993ad20eba0e53aef31fc71890e1fda6ab0006bc2e46_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-container-networking-plugins-rhel8@sha256:b70e33031bc4a6d8ca90993ad20eba0e53aef31fc71890e1fda6ab0006bc2e46_amd64" + }, + "product_reference": "openshift4/ose-container-networking-plugins-rhel8@sha256:b70e33031bc4a6d8ca90993ad20eba0e53aef31fc71890e1fda6ab0006bc2e46_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:c2017633e954d9ea31cda0ebaf0b7b9a7d104822d9c9f05bfd787c390a8bff92_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-container-networking-plugins-rhel8@sha256:c2017633e954d9ea31cda0ebaf0b7b9a7d104822d9c9f05bfd787c390a8bff92_arm64" + }, + "product_reference": "openshift4/ose-container-networking-plugins-rhel8@sha256:c2017633e954d9ea31cda0ebaf0b7b9a7d104822d9c9f05bfd787c390a8bff92_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-container-networking-plugins-rhel8@sha256:d03fdd71c8baa0c0cef357e035c8fd9925e7eaf0a8220e0e886a394a79106d54_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-container-networking-plugins-rhel8@sha256:d03fdd71c8baa0c0cef357e035c8fd9925e7eaf0a8220e0e886a394a79106d54_arm64" + }, + "product_reference": "openshift4/ose-container-networking-plugins-rhel8@sha256:d03fdd71c8baa0c0cef357e035c8fd9925e7eaf0a8220e0e886a394a79106d54_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-coredns@sha256:279eba7bf5df77fbf8f7b85e7e0ab58a7f84deca11e5534d94b05ac990ea7b8e_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-coredns@sha256:279eba7bf5df77fbf8f7b85e7e0ab58a7f84deca11e5534d94b05ac990ea7b8e_amd64" + }, + "product_reference": "openshift4/ose-coredns@sha256:279eba7bf5df77fbf8f7b85e7e0ab58a7f84deca11e5534d94b05ac990ea7b8e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-coredns@sha256:88342cf82d69ef588bc8b2ad2ab5ecac01d13ddd2948b292f5513afab4a61973_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-coredns@sha256:88342cf82d69ef588bc8b2ad2ab5ecac01d13ddd2948b292f5513afab4a61973_s390x" + }, + "product_reference": "openshift4/ose-coredns@sha256:88342cf82d69ef588bc8b2ad2ab5ecac01d13ddd2948b292f5513afab4a61973_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-coredns@sha256:9e5cbe6f45cf4e625f7d493343c081a63934a62bda3b3028945566966cc66dca_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-coredns@sha256:9e5cbe6f45cf4e625f7d493343c081a63934a62bda3b3028945566966cc66dca_ppc64le" + }, + "product_reference": "openshift4/ose-coredns@sha256:9e5cbe6f45cf4e625f7d493343c081a63934a62bda3b3028945566966cc66dca_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-coredns@sha256:d7b7c80b95b62c6eca376ee17743afaaf06605a2ee1bbd3aebe84fd45791d827_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-coredns@sha256:d7b7c80b95b62c6eca376ee17743afaaf06605a2ee1bbd3aebe84fd45791d827_arm64" + }, + "product_reference": "openshift4/ose-coredns@sha256:d7b7c80b95b62c6eca376ee17743afaaf06605a2ee1bbd3aebe84fd45791d827_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:2829e0d889dd01d5c3e749f56f05b0b9f2d0ff6cf50c737cf3dee3de0b6ee9aa_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-manila-rhel8-operator@sha256:2829e0d889dd01d5c3e749f56f05b0b9f2d0ff6cf50c737cf3dee3de0b6ee9aa_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:2829e0d889dd01d5c3e749f56f05b0b9f2d0ff6cf50c737cf3dee3de0b6ee9aa_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:587172fe198d5ce607340126a8849704666b1b419615da7d91e452d8a92f0ae4_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-manila-rhel8-operator@sha256:587172fe198d5ce607340126a8849704666b1b419615da7d91e452d8a92f0ae4_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:587172fe198d5ce607340126a8849704666b1b419615da7d91e452d8a92f0ae4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:7fc196b0745e2eaa599c8054a9d282a60ffc0454a6565a6ae0eee9e69e9707c9_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-manila-rhel8-operator@sha256:7fc196b0745e2eaa599c8054a9d282a60ffc0454a6565a6ae0eee9e69e9707c9_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:7fc196b0745e2eaa599c8054a9d282a60ffc0454a6565a6ae0eee9e69e9707c9_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:da27695997faf380b606e0d988e063dbb015d50982ed012e949c2bfff2c9abe9_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-manila-rhel8-operator@sha256:da27695997faf380b606e0d988e063dbb015d50982ed012e949c2bfff2c9abe9_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-manila-rhel8-operator@sha256:da27695997faf380b606e0d988e063dbb015d50982ed012e949c2bfff2c9abe9_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:6a4105fe6895e0286fbddb1259efba92296971c70da74355e4766dce058f77c0_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-manila-rhel8@sha256:6a4105fe6895e0286fbddb1259efba92296971c70da74355e4766dce058f77c0_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-manila-rhel8@sha256:6a4105fe6895e0286fbddb1259efba92296971c70da74355e4766dce058f77c0_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:8edbf045ddd5e2f17049b217ed296aa63bbfcedfdca64106338b2af2b3b595a2_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-manila-rhel8@sha256:8edbf045ddd5e2f17049b217ed296aa63bbfcedfdca64106338b2af2b3b595a2_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-manila-rhel8@sha256:8edbf045ddd5e2f17049b217ed296aa63bbfcedfdca64106338b2af2b3b595a2_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:96617cd2be060ef87018f3112f4ee65e0d5e57c1878d4e39c9b1b192c18bf00a_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-manila-rhel8@sha256:96617cd2be060ef87018f3112f4ee65e0d5e57c1878d4e39c9b1b192c18bf00a_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-manila-rhel8@sha256:96617cd2be060ef87018f3112f4ee65e0d5e57c1878d4e39c9b1b192c18bf00a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-manila-rhel8@sha256:f34a7c77610729f15842702cad3ec6143bcffaf6ff499309c8012fc3f06e7e77_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-manila-rhel8@sha256:f34a7c77610729f15842702cad3ec6143bcffaf6ff499309c8012fc3f06e7e77_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-manila-rhel8@sha256:f34a7c77610729f15842702cad3ec6143bcffaf6ff499309c8012fc3f06e7e77_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-nfs-rhel8@sha256:0905798d79289f1ca8a0821511a67257b8e6ab67ae43021a8754f23344ee6967_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-nfs-rhel8@sha256:0905798d79289f1ca8a0821511a67257b8e6ab67ae43021a8754f23344ee6967_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-nfs-rhel8@sha256:0905798d79289f1ca8a0821511a67257b8e6ab67ae43021a8754f23344ee6967_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-nfs-rhel8@sha256:14b289e90b0413ea4aa479c73c3ff7955756b42310e3ccad2d4b12156568f4fd_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-nfs-rhel8@sha256:14b289e90b0413ea4aa479c73c3ff7955756b42310e3ccad2d4b12156568f4fd_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-nfs-rhel8@sha256:14b289e90b0413ea4aa479c73c3ff7955756b42310e3ccad2d4b12156568f4fd_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:06ccb469cc00c704a508b3f80299b4f1379d9c2190c2d3e4d01d6130ebc0d577_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:06ccb469cc00c704a508b3f80299b4f1379d9c2190c2d3e4d01d6130ebc0d577_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:06ccb469cc00c704a508b3f80299b4f1379d9c2190c2d3e4d01d6130ebc0d577_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:73e9fd5e908411353410684e0ea12bd842b43ddb93a8b052602b0d81103344fb_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:73e9fd5e908411353410684e0ea12bd842b43ddb93a8b052602b0d81103344fb_arm64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:73e9fd5e908411353410684e0ea12bd842b43ddb93a8b052602b0d81103344fb_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:7ca74b384584bb9a62b6f4f1ea69863503d76c3811066b5a8ce0053789223a5e_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:7ca74b384584bb9a62b6f4f1ea69863503d76c3811066b5a8ce0053789223a5e_s390x" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:7ca74b384584bb9a62b6f4f1ea69863503d76c3811066b5a8ce0053789223a5e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:b338f859150f7bb3a76230885dd5ebad3e42f6f84d4159c4f74fea795265987d_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:b338f859150f7bb3a76230885dd5ebad3e42f6f84d4159c4f74fea795265987d_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-mustgather-rhel8@sha256:b338f859150f7bb3a76230885dd5ebad3e42f6f84d4159c4f74fea795265987d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:13b0aeb65343b2c89b857644d0937f4369dcf031794e83cc6eac05b97e0c6ba8_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:13b0aeb65343b2c89b857644d0937f4369dcf031794e83cc6eac05b97e0c6ba8_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:13b0aeb65343b2c89b857644d0937f4369dcf031794e83cc6eac05b97e0c6ba8_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:22b4c859f9799a20be5ab0f1427a76335e1cfc38a53e0884488527f1152648d4_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:22b4c859f9799a20be5ab0f1427a76335e1cfc38a53e0884488527f1152648d4_s390x" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:22b4c859f9799a20be5ab0f1427a76335e1cfc38a53e0884488527f1152648d4_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:3eb7d0e1b236f2796d8cb73ee299013e41f719febbfca27468863dbc6c4963e2_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:3eb7d0e1b236f2796d8cb73ee299013e41f719febbfca27468863dbc6c4963e2_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:3eb7d0e1b236f2796d8cb73ee299013e41f719febbfca27468863dbc6c4963e2_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:4554571f17d39e6be3f6f6b5f308e1938ee2cc1c1aaea045b1cc21202c176560_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:4554571f17d39e6be3f6f6b5f308e1938ee2cc1c1aaea045b1cc21202c176560_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:4554571f17d39e6be3f6f6b5f308e1938ee2cc1c1aaea045b1cc21202c176560_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:765713aa23e515c8fbb62168a170b97676395b2ccaa453ab1ba4f0592e54ba1f_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:765713aa23e515c8fbb62168a170b97676395b2ccaa453ab1ba4f0592e54ba1f_arm64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:765713aa23e515c8fbb62168a170b97676395b2ccaa453ab1ba4f0592e54ba1f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:88b195cca5b8bf890339e1e8099452825d32f275d22be06f82b8d6a7cc61e2be_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:88b195cca5b8bf890339e1e8099452825d32f275d22be06f82b8d6a7cc61e2be_arm64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:88b195cca5b8bf890339e1e8099452825d32f275d22be06f82b8d6a7cc61e2be_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:f5827fd44208d5f72d8cfd1d1bce591f2d363178cca2425bf772c46f8cfdae91_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:f5827fd44208d5f72d8cfd1d1bce591f2d363178cca2425bf772c46f8cfdae91_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:f5827fd44208d5f72d8cfd1d1bce591f2d363178cca2425bf772c46f8cfdae91_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:f692c54c87fc6f5e8a3211775b78c3082468e5e775a39889170b9f1b0b1efc2a_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:f692c54c87fc6f5e8a3211775b78c3082468e5e775a39889170b9f1b0b1efc2a_s390x" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-operator-rhel8@sha256:f692c54c87fc6f5e8a3211775b78c3082468e5e775a39889170b9f1b0b1efc2a_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:0ba098f1536322f94fae0b2261e7d5120a42bb7f48014dadebc6cc4caecf21ab_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-rhel8@sha256:0ba098f1536322f94fae0b2261e7d5120a42bb7f48014dadebc6cc4caecf21ab_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:0ba098f1536322f94fae0b2261e7d5120a42bb7f48014dadebc6cc4caecf21ab_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:16dadeb693ac3636963f434725c3d4636b9939b74a7cbba8ebee2dbb49c979ab_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-rhel8@sha256:16dadeb693ac3636963f434725c3d4636b9939b74a7cbba8ebee2dbb49c979ab_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:16dadeb693ac3636963f434725c3d4636b9939b74a7cbba8ebee2dbb49c979ab_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:316f8b055e1db6cb49c8b51f6f739f3c10db58d65aeced241f61bf98e926192e_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-rhel8@sha256:316f8b055e1db6cb49c8b51f6f739f3c10db58d65aeced241f61bf98e926192e_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:316f8b055e1db6cb49c8b51f6f739f3c10db58d65aeced241f61bf98e926192e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:633d381d7143b3d24b2cecbe294802dddb5113c7be56b5eee9dffd6fe50b3151_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-rhel8@sha256:633d381d7143b3d24b2cecbe294802dddb5113c7be56b5eee9dffd6fe50b3151_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:633d381d7143b3d24b2cecbe294802dddb5113c7be56b5eee9dffd6fe50b3151_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:6c0072fae031243a068ea2a0e13f0a809a471076c579bb4d629f06f8e9306556_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-rhel8@sha256:6c0072fae031243a068ea2a0e13f0a809a471076c579bb4d629f06f8e9306556_s390x" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:6c0072fae031243a068ea2a0e13f0a809a471076c579bb4d629f06f8e9306556_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:9121f84fe1515c3208c3a00f9dc4e1edc786cb3beda5a6c756922b81f7582e80_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-rhel8@sha256:9121f84fe1515c3208c3a00f9dc4e1edc786cb3beda5a6c756922b81f7582e80_arm64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:9121f84fe1515c3208c3a00f9dc4e1edc786cb3beda5a6c756922b81f7582e80_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:99e5a299867c6c5f7fd8b11c0672e729c2af66296b940a129958650200cc1c21_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-rhel8@sha256:99e5a299867c6c5f7fd8b11c0672e729c2af66296b940a129958650200cc1c21_s390x" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:99e5a299867c6c5f7fd8b11c0672e729c2af66296b940a129958650200cc1c21_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:aa002291d955bd448036dad60e28748d893b97c80e6c6b612153aec2a5feba07_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-rhel8@sha256:aa002291d955bd448036dad60e28748d893b97c80e6c6b612153aec2a5feba07_arm64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-rhel8@sha256:aa002291d955bd448036dad60e28748d893b97c80e6c6b612153aec2a5feba07_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:1fad0bbcb5085ad03e2682d80aa7294cf337b75e1cc99f00d9bca9d799c44a2c_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:1fad0bbcb5085ad03e2682d80aa7294cf337b75e1cc99f00d9bca9d799c44a2c_s390x" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:1fad0bbcb5085ad03e2682d80aa7294cf337b75e1cc99f00d9bca9d799c44a2c_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:28cc16e08dd3f481c144c1dfd3944ddcb0adea61d7255f8b70320570e761c8ad_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:28cc16e08dd3f481c144c1dfd3944ddcb0adea61d7255f8b70320570e761c8ad_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:28cc16e08dd3f481c144c1dfd3944ddcb0adea61d7255f8b70320570e761c8ad_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:3fcf193673324d2a957c926bd4d93d3e6f912a5bded15223cc91ba8c00ce66dc_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:3fcf193673324d2a957c926bd4d93d3e6f912a5bded15223cc91ba8c00ce66dc_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:3fcf193673324d2a957c926bd4d93d3e6f912a5bded15223cc91ba8c00ce66dc_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:5933992632df59ac14d4a06415008dcb0371b16bf7ec77d819b76565941b21da_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:5933992632df59ac14d4a06415008dcb0371b16bf7ec77d819b76565941b21da_arm64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:5933992632df59ac14d4a06415008dcb0371b16bf7ec77d819b76565941b21da_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:63784fb04c329c4f870791c57978f8d842cdcf41e42a6d367fd924cd6fd54044_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:63784fb04c329c4f870791c57978f8d842cdcf41e42a6d367fd924cd6fd54044_ppc64le" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:63784fb04c329c4f870791c57978f8d842cdcf41e42a6d367fd924cd6fd54044_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:65fbc660587774fb9be07f684913f7580e918b09836af324d0b778f79fd1ae03_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:65fbc660587774fb9be07f684913f7580e918b09836af324d0b778f79fd1ae03_s390x" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:65fbc660587774fb9be07f684913f7580e918b09836af324d0b778f79fd1ae03_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:83469a38dcf61eb8f1830dea9db3ecdbac002e592c9456917663df84212d2531_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:83469a38dcf61eb8f1830dea9db3ecdbac002e592c9456917663df84212d2531_arm64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:83469a38dcf61eb8f1830dea9db3ecdbac002e592c9456917663df84212d2531_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:f4049ae8ef0d9979372d2c304e0c71904f41e82bac13d00da39a48626a53c7b4_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:f4049ae8ef0d9979372d2c304e0c71904f41e82bac13d00da39a48626a53c7b4_amd64" + }, + "product_reference": "openshift4/ose-csi-driver-shared-resource-webhook-rhel8@sha256:f4049ae8ef0d9979372d2c304e0c71904f41e82bac13d00da39a48626a53c7b4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:0ea8aab9536fd78a8eca9460f7fb7cddc4c2ae5508fbdaf4ff9ec2a77db153ed_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-attacher-rhel8@sha256:0ea8aab9536fd78a8eca9460f7fb7cddc4c2ae5508fbdaf4ff9ec2a77db153ed_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-attacher-rhel8@sha256:0ea8aab9536fd78a8eca9460f7fb7cddc4c2ae5508fbdaf4ff9ec2a77db153ed_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:6be4035c126471459ab61cd132eacad3840c534e351d8f5e8548a65633d11165_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-attacher-rhel8@sha256:6be4035c126471459ab61cd132eacad3840c534e351d8f5e8548a65633d11165_arm64" + }, + "product_reference": "openshift4/ose-csi-external-attacher-rhel8@sha256:6be4035c126471459ab61cd132eacad3840c534e351d8f5e8548a65633d11165_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:8db32d8ff6a4e4e06b699babe65721d26d015f9bf72134d0f6e6c1be90bc67d0_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-attacher-rhel8@sha256:8db32d8ff6a4e4e06b699babe65721d26d015f9bf72134d0f6e6c1be90bc67d0_amd64" + }, + "product_reference": "openshift4/ose-csi-external-attacher-rhel8@sha256:8db32d8ff6a4e4e06b699babe65721d26d015f9bf72134d0f6e6c1be90bc67d0_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher-rhel8@sha256:9ca553e4684fe2a8ac9d168681840fcdaa5a4975e57da1fda739e75a17a261e9_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-attacher-rhel8@sha256:9ca553e4684fe2a8ac9d168681840fcdaa5a4975e57da1fda739e75a17a261e9_s390x" + }, + "product_reference": "openshift4/ose-csi-external-attacher-rhel8@sha256:9ca553e4684fe2a8ac9d168681840fcdaa5a4975e57da1fda739e75a17a261e9_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher@sha256:0ea8aab9536fd78a8eca9460f7fb7cddc4c2ae5508fbdaf4ff9ec2a77db153ed_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-attacher@sha256:0ea8aab9536fd78a8eca9460f7fb7cddc4c2ae5508fbdaf4ff9ec2a77db153ed_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-attacher@sha256:0ea8aab9536fd78a8eca9460f7fb7cddc4c2ae5508fbdaf4ff9ec2a77db153ed_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher@sha256:6be4035c126471459ab61cd132eacad3840c534e351d8f5e8548a65633d11165_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-attacher@sha256:6be4035c126471459ab61cd132eacad3840c534e351d8f5e8548a65633d11165_arm64" + }, + "product_reference": "openshift4/ose-csi-external-attacher@sha256:6be4035c126471459ab61cd132eacad3840c534e351d8f5e8548a65633d11165_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher@sha256:8db32d8ff6a4e4e06b699babe65721d26d015f9bf72134d0f6e6c1be90bc67d0_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-attacher@sha256:8db32d8ff6a4e4e06b699babe65721d26d015f9bf72134d0f6e6c1be90bc67d0_amd64" + }, + "product_reference": "openshift4/ose-csi-external-attacher@sha256:8db32d8ff6a4e4e06b699babe65721d26d015f9bf72134d0f6e6c1be90bc67d0_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-attacher@sha256:9ca553e4684fe2a8ac9d168681840fcdaa5a4975e57da1fda739e75a17a261e9_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-attacher@sha256:9ca553e4684fe2a8ac9d168681840fcdaa5a4975e57da1fda739e75a17a261e9_s390x" + }, + "product_reference": "openshift4/ose-csi-external-attacher@sha256:9ca553e4684fe2a8ac9d168681840fcdaa5a4975e57da1fda739e75a17a261e9_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:40fe6eefb14f53aa5c362fcb58c3e55f036b705048dd4da26545e7d574f14e24_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-provisioner-rhel8@sha256:40fe6eefb14f53aa5c362fcb58c3e55f036b705048dd4da26545e7d574f14e24_s390x" + }, + "product_reference": "openshift4/ose-csi-external-provisioner-rhel8@sha256:40fe6eefb14f53aa5c362fcb58c3e55f036b705048dd4da26545e7d574f14e24_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:4da0dc3b1692a896d5a59a44ed151f11379996ecf8ea9480435eea9682507afb_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-provisioner-rhel8@sha256:4da0dc3b1692a896d5a59a44ed151f11379996ecf8ea9480435eea9682507afb_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-provisioner-rhel8@sha256:4da0dc3b1692a896d5a59a44ed151f11379996ecf8ea9480435eea9682507afb_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:cd736da2e2978ac42c0d105094a479b450b0c7639fb70ae1f97cf33c5bb6a439_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-provisioner-rhel8@sha256:cd736da2e2978ac42c0d105094a479b450b0c7639fb70ae1f97cf33c5bb6a439_amd64" + }, + "product_reference": "openshift4/ose-csi-external-provisioner-rhel8@sha256:cd736da2e2978ac42c0d105094a479b450b0c7639fb70ae1f97cf33c5bb6a439_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner-rhel8@sha256:cf26b5aa2f5313284a58d7ce9f1675731ba36cb59b390ecef06d846f41781cee_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-provisioner-rhel8@sha256:cf26b5aa2f5313284a58d7ce9f1675731ba36cb59b390ecef06d846f41781cee_arm64" + }, + "product_reference": "openshift4/ose-csi-external-provisioner-rhel8@sha256:cf26b5aa2f5313284a58d7ce9f1675731ba36cb59b390ecef06d846f41781cee_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner@sha256:40fe6eefb14f53aa5c362fcb58c3e55f036b705048dd4da26545e7d574f14e24_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-provisioner@sha256:40fe6eefb14f53aa5c362fcb58c3e55f036b705048dd4da26545e7d574f14e24_s390x" + }, + "product_reference": "openshift4/ose-csi-external-provisioner@sha256:40fe6eefb14f53aa5c362fcb58c3e55f036b705048dd4da26545e7d574f14e24_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner@sha256:4da0dc3b1692a896d5a59a44ed151f11379996ecf8ea9480435eea9682507afb_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-provisioner@sha256:4da0dc3b1692a896d5a59a44ed151f11379996ecf8ea9480435eea9682507afb_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-provisioner@sha256:4da0dc3b1692a896d5a59a44ed151f11379996ecf8ea9480435eea9682507afb_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner@sha256:cd736da2e2978ac42c0d105094a479b450b0c7639fb70ae1f97cf33c5bb6a439_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-provisioner@sha256:cd736da2e2978ac42c0d105094a479b450b0c7639fb70ae1f97cf33c5bb6a439_amd64" + }, + "product_reference": "openshift4/ose-csi-external-provisioner@sha256:cd736da2e2978ac42c0d105094a479b450b0c7639fb70ae1f97cf33c5bb6a439_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-provisioner@sha256:cf26b5aa2f5313284a58d7ce9f1675731ba36cb59b390ecef06d846f41781cee_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-provisioner@sha256:cf26b5aa2f5313284a58d7ce9f1675731ba36cb59b390ecef06d846f41781cee_arm64" + }, + "product_reference": "openshift4/ose-csi-external-provisioner@sha256:cf26b5aa2f5313284a58d7ce9f1675731ba36cb59b390ecef06d846f41781cee_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:524c5f7edaa4624bf6206dad2c845a51f725afc575b88f75d7054b7b98637922_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-resizer-rhel8@sha256:524c5f7edaa4624bf6206dad2c845a51f725afc575b88f75d7054b7b98637922_arm64" + }, + "product_reference": "openshift4/ose-csi-external-resizer-rhel8@sha256:524c5f7edaa4624bf6206dad2c845a51f725afc575b88f75d7054b7b98637922_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:6667e8fcac9cbf49514de0c06d462307e525888cf6ea632c1b26a9d1d1b46534_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-resizer-rhel8@sha256:6667e8fcac9cbf49514de0c06d462307e525888cf6ea632c1b26a9d1d1b46534_s390x" + }, + "product_reference": "openshift4/ose-csi-external-resizer-rhel8@sha256:6667e8fcac9cbf49514de0c06d462307e525888cf6ea632c1b26a9d1d1b46534_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:9c33f451bb385818b27c32562901756f8104cdc4f937184cb157d793039ebecf_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-resizer-rhel8@sha256:9c33f451bb385818b27c32562901756f8104cdc4f937184cb157d793039ebecf_amd64" + }, + "product_reference": "openshift4/ose-csi-external-resizer-rhel8@sha256:9c33f451bb385818b27c32562901756f8104cdc4f937184cb157d793039ebecf_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer-rhel8@sha256:dcf4b0aee536487f72e58386fd1212f03dbf1bbd1120de7e79e02adac91b4046_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-resizer-rhel8@sha256:dcf4b0aee536487f72e58386fd1212f03dbf1bbd1120de7e79e02adac91b4046_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-resizer-rhel8@sha256:dcf4b0aee536487f72e58386fd1212f03dbf1bbd1120de7e79e02adac91b4046_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer@sha256:524c5f7edaa4624bf6206dad2c845a51f725afc575b88f75d7054b7b98637922_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-resizer@sha256:524c5f7edaa4624bf6206dad2c845a51f725afc575b88f75d7054b7b98637922_arm64" + }, + "product_reference": "openshift4/ose-csi-external-resizer@sha256:524c5f7edaa4624bf6206dad2c845a51f725afc575b88f75d7054b7b98637922_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer@sha256:6667e8fcac9cbf49514de0c06d462307e525888cf6ea632c1b26a9d1d1b46534_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-resizer@sha256:6667e8fcac9cbf49514de0c06d462307e525888cf6ea632c1b26a9d1d1b46534_s390x" + }, + "product_reference": "openshift4/ose-csi-external-resizer@sha256:6667e8fcac9cbf49514de0c06d462307e525888cf6ea632c1b26a9d1d1b46534_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer@sha256:9c33f451bb385818b27c32562901756f8104cdc4f937184cb157d793039ebecf_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-resizer@sha256:9c33f451bb385818b27c32562901756f8104cdc4f937184cb157d793039ebecf_amd64" + }, + "product_reference": "openshift4/ose-csi-external-resizer@sha256:9c33f451bb385818b27c32562901756f8104cdc4f937184cb157d793039ebecf_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-resizer@sha256:dcf4b0aee536487f72e58386fd1212f03dbf1bbd1120de7e79e02adac91b4046_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-resizer@sha256:dcf4b0aee536487f72e58386fd1212f03dbf1bbd1120de7e79e02adac91b4046_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-resizer@sha256:dcf4b0aee536487f72e58386fd1212f03dbf1bbd1120de7e79e02adac91b4046_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:6228bf99e3b83a5442d40e4e888fa69ea6ed6e99d1fd59a6b9fd8e12243dfb4f_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-snapshotter-rhel8@sha256:6228bf99e3b83a5442d40e4e888fa69ea6ed6e99d1fd59a6b9fd8e12243dfb4f_amd64" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:6228bf99e3b83a5442d40e4e888fa69ea6ed6e99d1fd59a6b9fd8e12243dfb4f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:99beccbeef478abcf3e344535670822646fcd5e116306039de2d11ddc98e8923_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-snapshotter-rhel8@sha256:99beccbeef478abcf3e344535670822646fcd5e116306039de2d11ddc98e8923_arm64" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:99beccbeef478abcf3e344535670822646fcd5e116306039de2d11ddc98e8923_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:bb46854a38d1d8cdfe2a487928bb157bd33180637588bde32c28d796df4ea447_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-snapshotter-rhel8@sha256:bb46854a38d1d8cdfe2a487928bb157bd33180637588bde32c28d796df4ea447_s390x" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:bb46854a38d1d8cdfe2a487928bb157bd33180637588bde32c28d796df4ea447_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:deda99d0309a722172e066ce34074cc74570e968df60f9d85789c7b4d710c6ac_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-snapshotter-rhel8@sha256:deda99d0309a722172e066ce34074cc74570e968df60f9d85789c7b4d710c6ac_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter-rhel8@sha256:deda99d0309a722172e066ce34074cc74570e968df60f9d85789c7b4d710c6ac_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:6228bf99e3b83a5442d40e4e888fa69ea6ed6e99d1fd59a6b9fd8e12243dfb4f_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-snapshotter@sha256:6228bf99e3b83a5442d40e4e888fa69ea6ed6e99d1fd59a6b9fd8e12243dfb4f_amd64" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter@sha256:6228bf99e3b83a5442d40e4e888fa69ea6ed6e99d1fd59a6b9fd8e12243dfb4f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:99beccbeef478abcf3e344535670822646fcd5e116306039de2d11ddc98e8923_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-snapshotter@sha256:99beccbeef478abcf3e344535670822646fcd5e116306039de2d11ddc98e8923_arm64" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter@sha256:99beccbeef478abcf3e344535670822646fcd5e116306039de2d11ddc98e8923_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:bb46854a38d1d8cdfe2a487928bb157bd33180637588bde32c28d796df4ea447_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-snapshotter@sha256:bb46854a38d1d8cdfe2a487928bb157bd33180637588bde32c28d796df4ea447_s390x" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter@sha256:bb46854a38d1d8cdfe2a487928bb157bd33180637588bde32c28d796df4ea447_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-external-snapshotter@sha256:deda99d0309a722172e066ce34074cc74570e968df60f9d85789c7b4d710c6ac_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-external-snapshotter@sha256:deda99d0309a722172e066ce34074cc74570e968df60f9d85789c7b4d710c6ac_ppc64le" + }, + "product_reference": "openshift4/ose-csi-external-snapshotter@sha256:deda99d0309a722172e066ce34074cc74570e968df60f9d85789c7b4d710c6ac_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:1dd5f3ae658c876e550a3ceaac7b0428aa44520d751d0211a059f59d7304a3de_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-livenessprobe-rhel8@sha256:1dd5f3ae658c876e550a3ceaac7b0428aa44520d751d0211a059f59d7304a3de_ppc64le" + }, + "product_reference": "openshift4/ose-csi-livenessprobe-rhel8@sha256:1dd5f3ae658c876e550a3ceaac7b0428aa44520d751d0211a059f59d7304a3de_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:2af149306a5152120c17d34420baa15f7960ab09a1fea89a4828f67950b8d459_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-livenessprobe-rhel8@sha256:2af149306a5152120c17d34420baa15f7960ab09a1fea89a4828f67950b8d459_s390x" + }, + "product_reference": "openshift4/ose-csi-livenessprobe-rhel8@sha256:2af149306a5152120c17d34420baa15f7960ab09a1fea89a4828f67950b8d459_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:5adfc446b10b66b4ce79622d05c82e1285e0c77cb9ffff3ec1e0602194e12635_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-livenessprobe-rhel8@sha256:5adfc446b10b66b4ce79622d05c82e1285e0c77cb9ffff3ec1e0602194e12635_arm64" + }, + "product_reference": "openshift4/ose-csi-livenessprobe-rhel8@sha256:5adfc446b10b66b4ce79622d05c82e1285e0c77cb9ffff3ec1e0602194e12635_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe-rhel8@sha256:7944a1c63ce9585b1eede1ef616bc693a6b04d51527fadc2198ff2618c336270_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-livenessprobe-rhel8@sha256:7944a1c63ce9585b1eede1ef616bc693a6b04d51527fadc2198ff2618c336270_amd64" + }, + "product_reference": "openshift4/ose-csi-livenessprobe-rhel8@sha256:7944a1c63ce9585b1eede1ef616bc693a6b04d51527fadc2198ff2618c336270_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe@sha256:1dd5f3ae658c876e550a3ceaac7b0428aa44520d751d0211a059f59d7304a3de_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-livenessprobe@sha256:1dd5f3ae658c876e550a3ceaac7b0428aa44520d751d0211a059f59d7304a3de_ppc64le" + }, + "product_reference": "openshift4/ose-csi-livenessprobe@sha256:1dd5f3ae658c876e550a3ceaac7b0428aa44520d751d0211a059f59d7304a3de_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe@sha256:2af149306a5152120c17d34420baa15f7960ab09a1fea89a4828f67950b8d459_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-livenessprobe@sha256:2af149306a5152120c17d34420baa15f7960ab09a1fea89a4828f67950b8d459_s390x" + }, + "product_reference": "openshift4/ose-csi-livenessprobe@sha256:2af149306a5152120c17d34420baa15f7960ab09a1fea89a4828f67950b8d459_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe@sha256:5adfc446b10b66b4ce79622d05c82e1285e0c77cb9ffff3ec1e0602194e12635_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-livenessprobe@sha256:5adfc446b10b66b4ce79622d05c82e1285e0c77cb9ffff3ec1e0602194e12635_arm64" + }, + "product_reference": "openshift4/ose-csi-livenessprobe@sha256:5adfc446b10b66b4ce79622d05c82e1285e0c77cb9ffff3ec1e0602194e12635_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-livenessprobe@sha256:7944a1c63ce9585b1eede1ef616bc693a6b04d51527fadc2198ff2618c336270_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-livenessprobe@sha256:7944a1c63ce9585b1eede1ef616bc693a6b04d51527fadc2198ff2618c336270_amd64" + }, + "product_reference": "openshift4/ose-csi-livenessprobe@sha256:7944a1c63ce9585b1eede1ef616bc693a6b04d51527fadc2198ff2618c336270_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:2d98dbf066484c51ef9d7c53f6c9cb3eb0ebbb41af3b0660190402a9998c1704_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-node-driver-registrar-rhel8@sha256:2d98dbf066484c51ef9d7c53f6c9cb3eb0ebbb41af3b0660190402a9998c1704_amd64" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:2d98dbf066484c51ef9d7c53f6c9cb3eb0ebbb41af3b0660190402a9998c1704_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:5e7ee82dfea19647210d87bf856dad6504a5572da6f619553833d46e32575d60_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-node-driver-registrar-rhel8@sha256:5e7ee82dfea19647210d87bf856dad6504a5572da6f619553833d46e32575d60_arm64" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:5e7ee82dfea19647210d87bf856dad6504a5572da6f619553833d46e32575d60_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:8dc68d9251f181e5a80c4113de27a207cd5f70fa696b62780869bcd3bd865ff6_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-node-driver-registrar-rhel8@sha256:8dc68d9251f181e5a80c4113de27a207cd5f70fa696b62780869bcd3bd865ff6_ppc64le" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:8dc68d9251f181e5a80c4113de27a207cd5f70fa696b62780869bcd3bd865ff6_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:b003e5890e472ef194a40d3036f5f5d817dae7da8756a2e197afcf98ac9cf897_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-node-driver-registrar-rhel8@sha256:b003e5890e472ef194a40d3036f5f5d817dae7da8756a2e197afcf98ac9cf897_s390x" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar-rhel8@sha256:b003e5890e472ef194a40d3036f5f5d817dae7da8756a2e197afcf98ac9cf897_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:2d98dbf066484c51ef9d7c53f6c9cb3eb0ebbb41af3b0660190402a9998c1704_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-node-driver-registrar@sha256:2d98dbf066484c51ef9d7c53f6c9cb3eb0ebbb41af3b0660190402a9998c1704_amd64" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar@sha256:2d98dbf066484c51ef9d7c53f6c9cb3eb0ebbb41af3b0660190402a9998c1704_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:5e7ee82dfea19647210d87bf856dad6504a5572da6f619553833d46e32575d60_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-node-driver-registrar@sha256:5e7ee82dfea19647210d87bf856dad6504a5572da6f619553833d46e32575d60_arm64" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar@sha256:5e7ee82dfea19647210d87bf856dad6504a5572da6f619553833d46e32575d60_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:8dc68d9251f181e5a80c4113de27a207cd5f70fa696b62780869bcd3bd865ff6_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-node-driver-registrar@sha256:8dc68d9251f181e5a80c4113de27a207cd5f70fa696b62780869bcd3bd865ff6_ppc64le" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar@sha256:8dc68d9251f181e5a80c4113de27a207cd5f70fa696b62780869bcd3bd865ff6_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-node-driver-registrar@sha256:b003e5890e472ef194a40d3036f5f5d817dae7da8756a2e197afcf98ac9cf897_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-node-driver-registrar@sha256:b003e5890e472ef194a40d3036f5f5d817dae7da8756a2e197afcf98ac9cf897_s390x" + }, + "product_reference": "openshift4/ose-csi-node-driver-registrar@sha256:b003e5890e472ef194a40d3036f5f5d817dae7da8756a2e197afcf98ac9cf897_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:9917d3ae82bc2084a5b6612f1446927529032625c3bee5f8adbeb65eea988cea_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-snapshot-controller-rhel8@sha256:9917d3ae82bc2084a5b6612f1446927529032625c3bee5f8adbeb65eea988cea_ppc64le" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:9917d3ae82bc2084a5b6612f1446927529032625c3bee5f8adbeb65eea988cea_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:a47bcd1ba4587d1a032cf8f4aed1441cc427d9c935c34634c43a12e4e5aa1e8a_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-snapshot-controller-rhel8@sha256:a47bcd1ba4587d1a032cf8f4aed1441cc427d9c935c34634c43a12e4e5aa1e8a_amd64" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:a47bcd1ba4587d1a032cf8f4aed1441cc427d9c935c34634c43a12e4e5aa1e8a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:c69db300ab492c864cfd577e392a6d283b25255d07f6c3b11d605051379afafa_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-snapshot-controller-rhel8@sha256:c69db300ab492c864cfd577e392a6d283b25255d07f6c3b11d605051379afafa_arm64" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:c69db300ab492c864cfd577e392a6d283b25255d07f6c3b11d605051379afafa_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:ce092427c9bd954478271a50a67fe154f39a0f2d07d53ed0e51e958b9ed7971c_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-snapshot-controller-rhel8@sha256:ce092427c9bd954478271a50a67fe154f39a0f2d07d53ed0e51e958b9ed7971c_s390x" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller-rhel8@sha256:ce092427c9bd954478271a50a67fe154f39a0f2d07d53ed0e51e958b9ed7971c_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:9917d3ae82bc2084a5b6612f1446927529032625c3bee5f8adbeb65eea988cea_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-snapshot-controller@sha256:9917d3ae82bc2084a5b6612f1446927529032625c3bee5f8adbeb65eea988cea_ppc64le" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller@sha256:9917d3ae82bc2084a5b6612f1446927529032625c3bee5f8adbeb65eea988cea_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:a47bcd1ba4587d1a032cf8f4aed1441cc427d9c935c34634c43a12e4e5aa1e8a_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-snapshot-controller@sha256:a47bcd1ba4587d1a032cf8f4aed1441cc427d9c935c34634c43a12e4e5aa1e8a_amd64" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller@sha256:a47bcd1ba4587d1a032cf8f4aed1441cc427d9c935c34634c43a12e4e5aa1e8a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:c69db300ab492c864cfd577e392a6d283b25255d07f6c3b11d605051379afafa_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-snapshot-controller@sha256:c69db300ab492c864cfd577e392a6d283b25255d07f6c3b11d605051379afafa_arm64" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller@sha256:c69db300ab492c864cfd577e392a6d283b25255d07f6c3b11d605051379afafa_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-controller@sha256:ce092427c9bd954478271a50a67fe154f39a0f2d07d53ed0e51e958b9ed7971c_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-snapshot-controller@sha256:ce092427c9bd954478271a50a67fe154f39a0f2d07d53ed0e51e958b9ed7971c_s390x" + }, + "product_reference": "openshift4/ose-csi-snapshot-controller@sha256:ce092427c9bd954478271a50a67fe154f39a0f2d07d53ed0e51e958b9ed7971c_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:0f1be2cc6c90306c02d100e49ea7b7b5296195f1be758c22d4e80067fe582bb6_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:0f1be2cc6c90306c02d100e49ea7b7b5296195f1be758c22d4e80067fe582bb6_ppc64le" + }, + "product_reference": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:0f1be2cc6c90306c02d100e49ea7b7b5296195f1be758c22d4e80067fe582bb6_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:163d49f79fe30ede56e7fe429a9b9748c277a4f9ec89aaaacdbaae693e128c99_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:163d49f79fe30ede56e7fe429a9b9748c277a4f9ec89aaaacdbaae693e128c99_s390x" + }, + "product_reference": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:163d49f79fe30ede56e7fe429a9b9748c277a4f9ec89aaaacdbaae693e128c99_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:2e932cd684ed6acc376615603cc8a84b58185056303c53690833fefbc9cf2fdd_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:2e932cd684ed6acc376615603cc8a84b58185056303c53690833fefbc9cf2fdd_arm64" + }, + "product_reference": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:2e932cd684ed6acc376615603cc8a84b58185056303c53690833fefbc9cf2fdd_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:87e7f594576488fd00bd9eacbf5a4cc12a30954c0a7bb43d4b3259cb40476ef5_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:87e7f594576488fd00bd9eacbf5a4cc12a30954c0a7bb43d4b3259cb40476ef5_amd64" + }, + "product_reference": "openshift4/ose-csi-snapshot-validation-webhook-rhel8@sha256:87e7f594576488fd00bd9eacbf5a4cc12a30954c0a7bb43d4b3259cb40476ef5_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-deployer@sha256:2fef367abdb4445172aaceb535cb3ea02a1dae4684ebf3287d769b0cafdbe906_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-deployer@sha256:2fef367abdb4445172aaceb535cb3ea02a1dae4684ebf3287d769b0cafdbe906_ppc64le" + }, + "product_reference": "openshift4/ose-deployer@sha256:2fef367abdb4445172aaceb535cb3ea02a1dae4684ebf3287d769b0cafdbe906_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-deployer@sha256:b4c14ff159d813c6254deffaf6d06a3ac6521e2198e076323785b5f69bffffae_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-deployer@sha256:b4c14ff159d813c6254deffaf6d06a3ac6521e2198e076323785b5f69bffffae_s390x" + }, + "product_reference": "openshift4/ose-deployer@sha256:b4c14ff159d813c6254deffaf6d06a3ac6521e2198e076323785b5f69bffffae_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-deployer@sha256:bac9d84bce5a1a5c3153051738a3bb623b8d38e646a722f17add4ec0ed30b80b_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-deployer@sha256:bac9d84bce5a1a5c3153051738a3bb623b8d38e646a722f17add4ec0ed30b80b_amd64" + }, + "product_reference": "openshift4/ose-deployer@sha256:bac9d84bce5a1a5c3153051738a3bb623b8d38e646a722f17add4ec0ed30b80b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-deployer@sha256:f0b1ac989e9981a52111de6b04a7eee7063246f1aceeae4207d1572b89b9a682_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-deployer@sha256:f0b1ac989e9981a52111de6b04a7eee7063246f1aceeae4207d1572b89b9a682_arm64" + }, + "product_reference": "openshift4/ose-deployer@sha256:f0b1ac989e9981a52111de6b04a7eee7063246f1aceeae4207d1572b89b9a682_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-descheduler@sha256:154283c5dfb10e351f72657fa68cbe9ad10b3995ac9927a528b6cd763ed7db1d_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-descheduler@sha256:154283c5dfb10e351f72657fa68cbe9ad10b3995ac9927a528b6cd763ed7db1d_arm64" + }, + "product_reference": "openshift4/ose-descheduler@sha256:154283c5dfb10e351f72657fa68cbe9ad10b3995ac9927a528b6cd763ed7db1d_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-descheduler@sha256:1e891b0db385b0f52b7e7646fba180c1a72f21c2656153144d7213e866d1f8c8_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-descheduler@sha256:1e891b0db385b0f52b7e7646fba180c1a72f21c2656153144d7213e866d1f8c8_amd64" + }, + "product_reference": "openshift4/ose-descheduler@sha256:1e891b0db385b0f52b7e7646fba180c1a72f21c2656153144d7213e866d1f8c8_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-descheduler@sha256:9e804b7daed1fcc3c8a03af2d285315e8b2c7bf0e363cc4f3ab8b34d1e92089e_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-descheduler@sha256:9e804b7daed1fcc3c8a03af2d285315e8b2c7bf0e363cc4f3ab8b34d1e92089e_s390x" + }, + "product_reference": "openshift4/ose-descheduler@sha256:9e804b7daed1fcc3c8a03af2d285315e8b2c7bf0e363cc4f3ab8b34d1e92089e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-descheduler@sha256:cb4d977ee401020b27f6bf7973117d8fed7527cb7bea01cff40e158697edefe5_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-descheduler@sha256:cb4d977ee401020b27f6bf7973117d8fed7527cb7bea01cff40e158697edefe5_ppc64le" + }, + "product_reference": "openshift4/ose-descheduler@sha256:cb4d977ee401020b27f6bf7973117d8fed7527cb7bea01cff40e158697edefe5_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-builder@sha256:712a11a83a2a2c49767418794ba45d07a5cd347cd2d32fce7cb4dc7bdaa8a248_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-docker-builder@sha256:712a11a83a2a2c49767418794ba45d07a5cd347cd2d32fce7cb4dc7bdaa8a248_ppc64le" + }, + "product_reference": "openshift4/ose-docker-builder@sha256:712a11a83a2a2c49767418794ba45d07a5cd347cd2d32fce7cb4dc7bdaa8a248_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-builder@sha256:bb707bee6b69b08f309ad3845795edb9a857c32ef9852c46e4068a44d8f4f0de_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-docker-builder@sha256:bb707bee6b69b08f309ad3845795edb9a857c32ef9852c46e4068a44d8f4f0de_arm64" + }, + "product_reference": "openshift4/ose-docker-builder@sha256:bb707bee6b69b08f309ad3845795edb9a857c32ef9852c46e4068a44d8f4f0de_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-builder@sha256:e89066c3eea77d62d83c6a18b60feb0c3438091d884b6a1bcb60ce3f29567ff9_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-docker-builder@sha256:e89066c3eea77d62d83c6a18b60feb0c3438091d884b6a1bcb60ce3f29567ff9_amd64" + }, + "product_reference": "openshift4/ose-docker-builder@sha256:e89066c3eea77d62d83c6a18b60feb0c3438091d884b6a1bcb60ce3f29567ff9_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-builder@sha256:eee6a8305bf7afe20592627deb33e5c3be6f1d24f6d1b551eb987d1d4627f0c3_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-docker-builder@sha256:eee6a8305bf7afe20592627deb33e5c3be6f1d24f6d1b551eb987d1d4627f0c3_s390x" + }, + "product_reference": "openshift4/ose-docker-builder@sha256:eee6a8305bf7afe20592627deb33e5c3be6f1d24f6d1b551eb987d1d4627f0c3_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-registry@sha256:067fb89783dbfe45b5f7fbed6c3513c37d1e4ab32e253fcec0894875874d28e9_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-docker-registry@sha256:067fb89783dbfe45b5f7fbed6c3513c37d1e4ab32e253fcec0894875874d28e9_arm64" + }, + "product_reference": "openshift4/ose-docker-registry@sha256:067fb89783dbfe45b5f7fbed6c3513c37d1e4ab32e253fcec0894875874d28e9_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-registry@sha256:18e062ec797b5d4fcdb53d1b68d82fa7a3d4bfc54d3a9568479254302a553ab3_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-docker-registry@sha256:18e062ec797b5d4fcdb53d1b68d82fa7a3d4bfc54d3a9568479254302a553ab3_amd64" + }, + "product_reference": "openshift4/ose-docker-registry@sha256:18e062ec797b5d4fcdb53d1b68d82fa7a3d4bfc54d3a9568479254302a553ab3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-registry@sha256:552429c6e5be60bcf742285dfad3f0522a5f86775eea39aa4fce2020177b4479_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-docker-registry@sha256:552429c6e5be60bcf742285dfad3f0522a5f86775eea39aa4fce2020177b4479_s390x" + }, + "product_reference": "openshift4/ose-docker-registry@sha256:552429c6e5be60bcf742285dfad3f0522a5f86775eea39aa4fce2020177b4479_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-registry@sha256:61219818469dde63708d0e8c287abe4747de5382fbc57e53cd8a82f935ce3914_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-docker-registry@sha256:61219818469dde63708d0e8c287abe4747de5382fbc57e53cd8a82f935ce3914_ppc64le" + }, + "product_reference": "openshift4/ose-docker-registry@sha256:61219818469dde63708d0e8c287abe4747de5382fbc57e53cd8a82f935ce3914_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-registry@sha256:8328a8e40208fcb3fc3e678540728c99592e00964e2f5292344869905b96f2ac_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-docker-registry@sha256:8328a8e40208fcb3fc3e678540728c99592e00964e2f5292344869905b96f2ac_arm64" + }, + "product_reference": "openshift4/ose-docker-registry@sha256:8328a8e40208fcb3fc3e678540728c99592e00964e2f5292344869905b96f2ac_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-registry@sha256:a172c79e68f96fda7805585c69696b3584677ec2658841301b74c536848b8979_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-docker-registry@sha256:a172c79e68f96fda7805585c69696b3584677ec2658841301b74c536848b8979_amd64" + }, + "product_reference": "openshift4/ose-docker-registry@sha256:a172c79e68f96fda7805585c69696b3584677ec2658841301b74c536848b8979_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-registry@sha256:c50a291182e7f9e0cf59e871c410586152576468e9eb9bbbb47732de3d77151d_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-docker-registry@sha256:c50a291182e7f9e0cf59e871c410586152576468e9eb9bbbb47732de3d77151d_s390x" + }, + "product_reference": "openshift4/ose-docker-registry@sha256:c50a291182e7f9e0cf59e871c410586152576468e9eb9bbbb47732de3d77151d_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-docker-registry@sha256:debe7b0543b2035cdf60e8e95c8190a2708c707541ccdb5fa2c8f58e0952856e_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-docker-registry@sha256:debe7b0543b2035cdf60e8e95c8190a2708c707541ccdb5fa2c8f58e0952856e_ppc64le" + }, + "product_reference": "openshift4/ose-docker-registry@sha256:debe7b0543b2035cdf60e8e95c8190a2708c707541ccdb5fa2c8f58e0952856e_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-egress-dns-proxy@sha256:43e07a5d4da8403ed0263c31a0b837c7d1b4ab3270bf8411b5e5f46c46ddcec1_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-egress-dns-proxy@sha256:43e07a5d4da8403ed0263c31a0b837c7d1b4ab3270bf8411b5e5f46c46ddcec1_amd64" + }, + "product_reference": "openshift4/ose-egress-dns-proxy@sha256:43e07a5d4da8403ed0263c31a0b837c7d1b4ab3270bf8411b5e5f46c46ddcec1_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-egress-dns-proxy@sha256:7a427738011c2a5ef37aaa712ae0661dc287c4983ed663692b1fd448d2011cab_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-egress-dns-proxy@sha256:7a427738011c2a5ef37aaa712ae0661dc287c4983ed663692b1fd448d2011cab_ppc64le" + }, + "product_reference": "openshift4/ose-egress-dns-proxy@sha256:7a427738011c2a5ef37aaa712ae0661dc287c4983ed663692b1fd448d2011cab_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-egress-dns-proxy@sha256:a8bdd097fb2acf4ad478345eeb45ca471fdcefa49c283efb707a1525145fb24d_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-egress-dns-proxy@sha256:a8bdd097fb2acf4ad478345eeb45ca471fdcefa49c283efb707a1525145fb24d_s390x" + }, + "product_reference": "openshift4/ose-egress-dns-proxy@sha256:a8bdd097fb2acf4ad478345eeb45ca471fdcefa49c283efb707a1525145fb24d_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-egress-dns-proxy@sha256:c491704ba166cdcf7e216895e7cef6c54fcac349f0482b8b0102a3b57aca086b_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-egress-dns-proxy@sha256:c491704ba166cdcf7e216895e7cef6c54fcac349f0482b8b0102a3b57aca086b_arm64" + }, + "product_reference": "openshift4/ose-egress-dns-proxy@sha256:c491704ba166cdcf7e216895e7cef6c54fcac349f0482b8b0102a3b57aca086b_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-egress-http-proxy@sha256:46c2b25998599654ad9a25407f55e4112ba8d3b5823654f28a1ae59cbbb1129f_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-egress-http-proxy@sha256:46c2b25998599654ad9a25407f55e4112ba8d3b5823654f28a1ae59cbbb1129f_s390x" + }, + "product_reference": "openshift4/ose-egress-http-proxy@sha256:46c2b25998599654ad9a25407f55e4112ba8d3b5823654f28a1ae59cbbb1129f_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-egress-http-proxy@sha256:4cc982d52f80b2a86d8ad7ff52555a214063e4de723db82603ecc6419602ca52_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-egress-http-proxy@sha256:4cc982d52f80b2a86d8ad7ff52555a214063e4de723db82603ecc6419602ca52_ppc64le" + }, + "product_reference": "openshift4/ose-egress-http-proxy@sha256:4cc982d52f80b2a86d8ad7ff52555a214063e4de723db82603ecc6419602ca52_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-egress-http-proxy@sha256:ab11a583762aae8858f566e43e420a2c2062a02468ee8f6044b8aae10fa86ca5_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-egress-http-proxy@sha256:ab11a583762aae8858f566e43e420a2c2062a02468ee8f6044b8aae10fa86ca5_arm64" + }, + "product_reference": "openshift4/ose-egress-http-proxy@sha256:ab11a583762aae8858f566e43e420a2c2062a02468ee8f6044b8aae10fa86ca5_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-egress-http-proxy@sha256:bfef29aaf3e7e26bccbf580ff9707afcd29a9e2c55097a9d4a80d833de5cfb77_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-egress-http-proxy@sha256:bfef29aaf3e7e26bccbf580ff9707afcd29a9e2c55097a9d4a80d833de5cfb77_amd64" + }, + "product_reference": "openshift4/ose-egress-http-proxy@sha256:bfef29aaf3e7e26bccbf580ff9707afcd29a9e2c55097a9d4a80d833de5cfb77_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-egress-router@sha256:07adf8306ed605da349d45194280613ba44098bf65d0b6a59df6bbdb6eecb8f5_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-egress-router@sha256:07adf8306ed605da349d45194280613ba44098bf65d0b6a59df6bbdb6eecb8f5_ppc64le" + }, + "product_reference": "openshift4/ose-egress-router@sha256:07adf8306ed605da349d45194280613ba44098bf65d0b6a59df6bbdb6eecb8f5_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-egress-router@sha256:d11dc1c62ac15f02e39bc1cbbda3f8656a5e95b7e984b0629f0554877aa813c3_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-egress-router@sha256:d11dc1c62ac15f02e39bc1cbbda3f8656a5e95b7e984b0629f0554877aa813c3_amd64" + }, + "product_reference": "openshift4/ose-egress-router@sha256:d11dc1c62ac15f02e39bc1cbbda3f8656a5e95b7e984b0629f0554877aa813c3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-egress-router@sha256:e6faf497d38a0ce0e60b14c81715301957971adb24b39a3a4da0d0d2dc729438_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-egress-router@sha256:e6faf497d38a0ce0e60b14c81715301957971adb24b39a3a4da0d0d2dc729438_arm64" + }, + "product_reference": "openshift4/ose-egress-router@sha256:e6faf497d38a0ce0e60b14c81715301957971adb24b39a3a4da0d0d2dc729438_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-egress-router@sha256:edb7053aa1d56cd325d5c6177d9bb476fce7a75d1c40566f1a5ea4af83ffa204_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-egress-router@sha256:edb7053aa1d56cd325d5c6177d9bb476fce7a75d1c40566f1a5ea4af83ffa204_s390x" + }, + "product_reference": "openshift4/ose-egress-router@sha256:edb7053aa1d56cd325d5c6177d9bb476fce7a75d1c40566f1a5ea4af83ffa204_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:50e5731fbbd51b3f480b74218957c753ac323b38d8f4e0450b6662520015439e_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:50e5731fbbd51b3f480b74218957c753ac323b38d8f4e0450b6662520015439e_amd64" + }, + "product_reference": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:50e5731fbbd51b3f480b74218957c753ac323b38d8f4e0450b6662520015439e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:aa83f4c78c5da25374ef5cd9fbc49b786dcf27a85b394376fcf093cf4ddb1dcc_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:aa83f4c78c5da25374ef5cd9fbc49b786dcf27a85b394376fcf093cf4ddb1dcc_arm64" + }, + "product_reference": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:aa83f4c78c5da25374ef5cd9fbc49b786dcf27a85b394376fcf093cf4ddb1dcc_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:c50b10122611f12652d328d24dde422da6a98e23bd285d59d7482aa38b4c448e_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:c50b10122611f12652d328d24dde422da6a98e23bd285d59d7482aa38b4c448e_ppc64le" + }, + "product_reference": "openshift4/ose-gcp-cloud-controller-manager-rhel8@sha256:c50b10122611f12652d328d24dde422da6a98e23bd285d59d7482aa38b4c448e_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:044ce9c6e7c68c047c1f6d19d82d56652d6c35649c3d190f891c3ce64eca295a_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:044ce9c6e7c68c047c1f6d19d82d56652d6c35649c3d190f891c3ce64eca295a_ppc64le" + }, + "product_reference": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:044ce9c6e7c68c047c1f6d19d82d56652d6c35649c3d190f891c3ce64eca295a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:2c0c43f99032b1387374fb456a0e5628c66db17a1a1c5d9793c3e72395685431_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:2c0c43f99032b1387374fb456a0e5628c66db17a1a1c5d9793c3e72395685431_amd64" + }, + "product_reference": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:2c0c43f99032b1387374fb456a0e5628c66db17a1a1c5d9793c3e72395685431_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:46de5c63eb0d8545b1d5962e02f54643751d2130c336da676348a591c53e5751_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:46de5c63eb0d8545b1d5962e02f54643751d2130c336da676348a591c53e5751_ppc64le" + }, + "product_reference": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:46de5c63eb0d8545b1d5962e02f54643751d2130c336da676348a591c53e5751_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:8dc562a0fdd1f4248feffc1e754745ced95d5aec6a943168e7345ca7a1f0a6d4_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:8dc562a0fdd1f4248feffc1e754745ced95d5aec6a943168e7345ca7a1f0a6d4_amd64" + }, + "product_reference": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:8dc562a0fdd1f4248feffc1e754745ced95d5aec6a943168e7345ca7a1f0a6d4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:bace4fc8f73798419d557c81ed1e90873170fe62d2edf611299b83c355ecf06c_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:bace4fc8f73798419d557c81ed1e90873170fe62d2edf611299b83c355ecf06c_arm64" + }, + "product_reference": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:bace4fc8f73798419d557c81ed1e90873170fe62d2edf611299b83c355ecf06c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:d2ea5df36ba0430d00b34b09b6e94d69161885364bc958ec3953e499d8c4a2bb_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:d2ea5df36ba0430d00b34b09b6e94d69161885364bc958ec3953e499d8c4a2bb_arm64" + }, + "product_reference": "openshift4/ose-gcp-cluster-api-controllers-rhel8@sha256:d2ea5df36ba0430d00b34b09b6e94d69161885364bc958ec3953e499d8c4a2bb_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:0083db645ed823cde46239b53962b215c8399cb4d90c88819477be37caff244a_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:0083db645ed823cde46239b53962b215c8399cb4d90c88819477be37caff244a_amd64" + }, + "product_reference": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:0083db645ed823cde46239b53962b215c8399cb4d90c88819477be37caff244a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:2eba1411b633cde80af25b5a667b1cd7adccf52e9e031d08d347ae37305ca769_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:2eba1411b633cde80af25b5a667b1cd7adccf52e9e031d08d347ae37305ca769_arm64" + }, + "product_reference": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:2eba1411b633cde80af25b5a667b1cd7adccf52e9e031d08d347ae37305ca769_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c11500541af9da29d269a5504c13f74abd706972dc6c2143a1e7b0c81e5954c9_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c11500541af9da29d269a5504c13f74abd706972dc6c2143a1e7b0c81e5954c9_ppc64le" + }, + "product_reference": "openshift4/ose-gcp-filestore-csi-driver-rhel8-operator@sha256:c11500541af9da29d269a5504c13f74abd706972dc6c2143a1e7b0c81e5954c9_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:1cf5a7172b91efc40cefec328e506ff96a432cd7758f8f749623be5712f48aed_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:1cf5a7172b91efc40cefec328e506ff96a432cd7758f8f749623be5712f48aed_ppc64le" + }, + "product_reference": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:1cf5a7172b91efc40cefec328e506ff96a432cd7758f8f749623be5712f48aed_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:513c5e19c31f061bba341b8c0c9927cb21d0ada6d93821d97127cd7376614979_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:513c5e19c31f061bba341b8c0c9927cb21d0ada6d93821d97127cd7376614979_arm64" + }, + "product_reference": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:513c5e19c31f061bba341b8c0c9927cb21d0ada6d93821d97127cd7376614979_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:6f1383fd32dad80234a9c462c6f0fbed072bb92554a54bf5344581d705d3c6a9_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:6f1383fd32dad80234a9c462c6f0fbed072bb92554a54bf5344581d705d3c6a9_amd64" + }, + "product_reference": "openshift4/ose-gcp-filestore-csi-driver-rhel8@sha256:6f1383fd32dad80234a9c462c6f0fbed072bb92554a54bf5344581d705d3c6a9_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:93d4660e89ce5d22316a775d6e3bc5be6c2cd8b51f5d338d4368bf0aedd0dc2f_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:93d4660e89ce5d22316a775d6e3bc5be6c2cd8b51f5d338d4368bf0aedd0dc2f_amd64" + }, + "product_reference": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:93d4660e89ce5d22316a775d6e3bc5be6c2cd8b51f5d338d4368bf0aedd0dc2f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:dd4e7a19a1b8bf8e9a5b62187820944cb150197f3127370bab7e58595a330879_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:dd4e7a19a1b8bf8e9a5b62187820944cb150197f3127370bab7e58595a330879_arm64" + }, + "product_reference": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:dd4e7a19a1b8bf8e9a5b62187820944cb150197f3127370bab7e58595a330879_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:e3345dffaf38f69b5944c113549eebf1f32492ce781bdb92723aa16a73c43743_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:e3345dffaf38f69b5944c113549eebf1f32492ce781bdb92723aa16a73c43743_ppc64le" + }, + "product_reference": "openshift4/ose-gcp-pd-csi-driver-operator-rhel8@sha256:e3345dffaf38f69b5944c113549eebf1f32492ce781bdb92723aa16a73c43743_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:20520d0a4325275e148f927020acda36d8546d779e18a461eaf35573826b2e25_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:20520d0a4325275e148f927020acda36d8546d779e18a461eaf35573826b2e25_ppc64le" + }, + "product_reference": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:20520d0a4325275e148f927020acda36d8546d779e18a461eaf35573826b2e25_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:41ec574d2184d85966a3fce6b32850aa24a5b83394ced6d5c49dc61e53dbfef7_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:41ec574d2184d85966a3fce6b32850aa24a5b83394ced6d5c49dc61e53dbfef7_arm64" + }, + "product_reference": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:41ec574d2184d85966a3fce6b32850aa24a5b83394ced6d5c49dc61e53dbfef7_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:83a1765ae5e391192a2b11be5880ec8888ad73e900f4ecbc134e355ec2dca523_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:83a1765ae5e391192a2b11be5880ec8888ad73e900f4ecbc134e355ec2dca523_amd64" + }, + "product_reference": "openshift4/ose-gcp-pd-csi-driver-rhel8@sha256:83a1765ae5e391192a2b11be5880ec8888ad73e900f4ecbc134e355ec2dca523_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-haproxy-router@sha256:29c1c4ba207986035e35197f15cd452682ed91ecfc796cbaf4bbb3bf8b83c2fe_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-haproxy-router@sha256:29c1c4ba207986035e35197f15cd452682ed91ecfc796cbaf4bbb3bf8b83c2fe_arm64" + }, + "product_reference": "openshift4/ose-haproxy-router@sha256:29c1c4ba207986035e35197f15cd452682ed91ecfc796cbaf4bbb3bf8b83c2fe_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-haproxy-router@sha256:907629a8a52b152986c59424f49d332bef956282471d5f5704b0341792e7d0a5_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-haproxy-router@sha256:907629a8a52b152986c59424f49d332bef956282471d5f5704b0341792e7d0a5_amd64" + }, + "product_reference": "openshift4/ose-haproxy-router@sha256:907629a8a52b152986c59424f49d332bef956282471d5f5704b0341792e7d0a5_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-haproxy-router@sha256:d44e84ac2d0605700f304d02bca5368428c2776bc1a7408417a581d1ef74f997_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-haproxy-router@sha256:d44e84ac2d0605700f304d02bca5368428c2776bc1a7408417a581d1ef74f997_ppc64le" + }, + "product_reference": "openshift4/ose-haproxy-router@sha256:d44e84ac2d0605700f304d02bca5368428c2776bc1a7408417a581d1ef74f997_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-haproxy-router@sha256:fec3cbbd3087e92817f2b473f23d57571263563bc8601dd13264c80388c29155_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-haproxy-router@sha256:fec3cbbd3087e92817f2b473f23d57571263563bc8601dd13264c80388c29155_s390x" + }, + "product_reference": "openshift4/ose-haproxy-router@sha256:fec3cbbd3087e92817f2b473f23d57571263563bc8601dd13264c80388c29155_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-helm-operator@sha256:1d8227eaf7cd79d910ba9e738186e5f8c6e1dffa13a623f83eb87c1f4e6d4267_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-helm-operator@sha256:1d8227eaf7cd79d910ba9e738186e5f8c6e1dffa13a623f83eb87c1f4e6d4267_amd64" + }, + "product_reference": "openshift4/ose-helm-operator@sha256:1d8227eaf7cd79d910ba9e738186e5f8c6e1dffa13a623f83eb87c1f4e6d4267_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-helm-operator@sha256:21b5682918c84ca89f149fd44155d4de0d01586a0209d898483fc486d6374e72_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-helm-operator@sha256:21b5682918c84ca89f149fd44155d4de0d01586a0209d898483fc486d6374e72_ppc64le" + }, + "product_reference": "openshift4/ose-helm-operator@sha256:21b5682918c84ca89f149fd44155d4de0d01586a0209d898483fc486d6374e72_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-helm-operator@sha256:8a00e9a8a24e9d3ee9f240699ad6119f40f825353d1df672d86e6dbb93b0d7e9_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-helm-operator@sha256:8a00e9a8a24e9d3ee9f240699ad6119f40f825353d1df672d86e6dbb93b0d7e9_s390x" + }, + "product_reference": "openshift4/ose-helm-operator@sha256:8a00e9a8a24e9d3ee9f240699ad6119f40f825353d1df672d86e6dbb93b0d7e9_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-helm-operator@sha256:ed3ee9562e6be9f5357b4e53b45dfd0fadd0fd6d75ac1ed73c5110f44b161a75_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-helm-operator@sha256:ed3ee9562e6be9f5357b4e53b45dfd0fadd0fd6d75ac1ed73c5110f44b161a75_arm64" + }, + "product_reference": "openshift4/ose-helm-operator@sha256:ed3ee9562e6be9f5357b4e53b45dfd0fadd0fd6d75ac1ed73c5110f44b161a75_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hypershift-rhel8@sha256:2f0689d3588c92aca7c8b93e5a5b28c0540d1379f96bf141f6bf1649bb98ebad_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-hypershift-rhel8@sha256:2f0689d3588c92aca7c8b93e5a5b28c0540d1379f96bf141f6bf1649bb98ebad_ppc64le" + }, + "product_reference": "openshift4/ose-hypershift-rhel8@sha256:2f0689d3588c92aca7c8b93e5a5b28c0540d1379f96bf141f6bf1649bb98ebad_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hypershift-rhel8@sha256:5b4c3f29e079e84065f8aeb4b730a85789b80599227b1267829137970d1d11a2_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-hypershift-rhel8@sha256:5b4c3f29e079e84065f8aeb4b730a85789b80599227b1267829137970d1d11a2_ppc64le" + }, + "product_reference": "openshift4/ose-hypershift-rhel8@sha256:5b4c3f29e079e84065f8aeb4b730a85789b80599227b1267829137970d1d11a2_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hypershift-rhel8@sha256:85624b5af827a0f5ef5971084593c7d949c90e2be3c62b26907354c7b6bbe58b_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-hypershift-rhel8@sha256:85624b5af827a0f5ef5971084593c7d949c90e2be3c62b26907354c7b6bbe58b_s390x" + }, + "product_reference": "openshift4/ose-hypershift-rhel8@sha256:85624b5af827a0f5ef5971084593c7d949c90e2be3c62b26907354c7b6bbe58b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hypershift-rhel8@sha256:880b1d19e32f3f3c2aa31d8009e364c09292cb5ac01bf8b52ff4648f23bd6ce6_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-hypershift-rhel8@sha256:880b1d19e32f3f3c2aa31d8009e364c09292cb5ac01bf8b52ff4648f23bd6ce6_s390x" + }, + "product_reference": "openshift4/ose-hypershift-rhel8@sha256:880b1d19e32f3f3c2aa31d8009e364c09292cb5ac01bf8b52ff4648f23bd6ce6_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hypershift-rhel8@sha256:9e7e6a0cd25210bbf5dd6d941be8d11ecec285a292f90ba037ceb6a5ed64e15a_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-hypershift-rhel8@sha256:9e7e6a0cd25210bbf5dd6d941be8d11ecec285a292f90ba037ceb6a5ed64e15a_arm64" + }, + "product_reference": "openshift4/ose-hypershift-rhel8@sha256:9e7e6a0cd25210bbf5dd6d941be8d11ecec285a292f90ba037ceb6a5ed64e15a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hypershift-rhel8@sha256:c72bfdaa67c81420fdd0f728055cb389b42ff4b229e7369f285ee3690a320658_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-hypershift-rhel8@sha256:c72bfdaa67c81420fdd0f728055cb389b42ff4b229e7369f285ee3690a320658_amd64" + }, + "product_reference": "openshift4/ose-hypershift-rhel8@sha256:c72bfdaa67c81420fdd0f728055cb389b42ff4b229e7369f285ee3690a320658_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hypershift-rhel8@sha256:d8313cdf16700dc5ac690c577fe7c78b14c0a24f999733d06bf9bae2a5072dee_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-hypershift-rhel8@sha256:d8313cdf16700dc5ac690c577fe7c78b14c0a24f999733d06bf9bae2a5072dee_amd64" + }, + "product_reference": "openshift4/ose-hypershift-rhel8@sha256:d8313cdf16700dc5ac690c577fe7c78b14c0a24f999733d06bf9bae2a5072dee_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hypershift-rhel8@sha256:f1f4a81a7cbfcecffae4ce3b938ccfa471e2164598195c105d8eb3459a60db7d_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-hypershift-rhel8@sha256:f1f4a81a7cbfcecffae4ce3b938ccfa471e2164598195c105d8eb3459a60db7d_arm64" + }, + "product_reference": "openshift4/ose-hypershift-rhel8@sha256:f1f4a81a7cbfcecffae4ce3b938ccfa471e2164598195c105d8eb3459a60db7d_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:4b5331b365d68d312fc038e23a539cf62578300f46fd8a6b706bea9634cd38f5_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:4b5331b365d68d312fc038e23a539cf62578300f46fd8a6b706bea9634cd38f5_amd64" + }, + "product_reference": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:4b5331b365d68d312fc038e23a539cf62578300f46fd8a6b706bea9634cd38f5_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:89789441c2f7f176205813d344bb2c949e9dfe024b8c11ff1108f2db49ef74b8_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:89789441c2f7f176205813d344bb2c949e9dfe024b8c11ff1108f2db49ef74b8_s390x" + }, + "product_reference": "openshift4/ose-ibm-cloud-controller-manager-rhel8@sha256:89789441c2f7f176205813d344bb2c949e9dfe024b8c11ff1108f2db49ef74b8_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:652f5afd8c515133edbc61bb8e7134d9240463e7b1ecc4bde903a29d6da0b108_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:652f5afd8c515133edbc61bb8e7134d9240463e7b1ecc4bde903a29d6da0b108_amd64" + }, + "product_reference": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:652f5afd8c515133edbc61bb8e7134d9240463e7b1ecc4bde903a29d6da0b108_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:6949ddff5fcf482fcb040bb6960fcafd5ff259aa0b9a7ef11537038cbc96e6f8_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:6949ddff5fcf482fcb040bb6960fcafd5ff259aa0b9a7ef11537038cbc96e6f8_s390x" + }, + "product_reference": "openshift4/ose-ibm-vpc-block-csi-driver-operator-rhel8@sha256:6949ddff5fcf482fcb040bb6960fcafd5ff259aa0b9a7ef11537038cbc96e6f8_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:4690a68d0eeebc7b8fe74d6e75c6d97c15e99d8b4f318d1be5ace6ab67255a6c_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:4690a68d0eeebc7b8fe74d6e75c6d97c15e99d8b4f318d1be5ace6ab67255a6c_amd64" + }, + "product_reference": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:4690a68d0eeebc7b8fe74d6e75c6d97c15e99d8b4f318d1be5ace6ab67255a6c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:e6321a29e175c86897014b4ed3fd2416e4fe34ad97bfa46756c01796a7bfed7d_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:e6321a29e175c86897014b4ed3fd2416e4fe34ad97bfa46756c01796a7bfed7d_s390x" + }, + "product_reference": "openshift4/ose-ibm-vpc-block-csi-driver-rhel8@sha256:e6321a29e175c86897014b4ed3fd2416e4fe34ad97bfa46756c01796a7bfed7d_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5147b4749e65650ba695d1b9b385135cee815cac8d44a403911f48370c01da28_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5147b4749e65650ba695d1b9b385135cee815cac8d44a403911f48370c01da28_s390x" + }, + "product_reference": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:5147b4749e65650ba695d1b9b385135cee815cac8d44a403911f48370c01da28_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:cc139e5a6ab9288ef7f7073a775d14fc52c35c19946c652bd19ebf4774c9ddb5_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:cc139e5a6ab9288ef7f7073a775d14fc52c35c19946c652bd19ebf4774c9ddb5_amd64" + }, + "product_reference": "openshift4/ose-ibm-vpc-node-label-updater-rhel8@sha256:cc139e5a6ab9288ef7f7073a775d14fc52c35c19946c652bd19ebf4774c9ddb5_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:019862ab06dec2182b6def5830a661b085c336e46ee20b7b632124abb6c370f3_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:019862ab06dec2182b6def5830a661b085c336e46ee20b7b632124abb6c370f3_amd64" + }, + "product_reference": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:019862ab06dec2182b6def5830a661b085c336e46ee20b7b632124abb6c370f3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:202bc47c10e460a87420f1789c750441f6a4c3b40c3018b542ca0650c5a2629a_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:202bc47c10e460a87420f1789c750441f6a4c3b40c3018b542ca0650c5a2629a_ppc64le" + }, + "product_reference": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:202bc47c10e460a87420f1789c750441f6a4c3b40c3018b542ca0650c5a2629a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:31f4f65f43d79661c5d678bc65c3278cdb46090f5ff188bd13721ae7ebb293e4_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:31f4f65f43d79661c5d678bc65c3278cdb46090f5ff188bd13721ae7ebb293e4_s390x" + }, + "product_reference": "openshift4/ose-ibmcloud-cluster-api-controllers-rhel8@sha256:31f4f65f43d79661c5d678bc65c3278cdb46090f5ff188bd13721ae7ebb293e4_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:9a3e467e21b2484cc8b4c71ea268a17853ef3285639d50b585adc2e465a004c8_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:9a3e467e21b2484cc8b4c71ea268a17853ef3285639d50b585adc2e465a004c8_s390x" + }, + "product_reference": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:9a3e467e21b2484cc8b4c71ea268a17853ef3285639d50b585adc2e465a004c8_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:a31ac264570aeaaa2d0fa1435a04e2b24206670c9f678ca5591858969b681ad5_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:a31ac264570aeaaa2d0fa1435a04e2b24206670c9f678ca5591858969b681ad5_amd64" + }, + "product_reference": "openshift4/ose-ibmcloud-machine-controllers-rhel8@sha256:a31ac264570aeaaa2d0fa1435a04e2b24206670c9f678ca5591858969b681ad5_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-image-customization-controller-rhel8@sha256:1a4aeb6fdd985c67bde1f2f38473ca7192522dae091633ab99c0927614932bb4_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-image-customization-controller-rhel8@sha256:1a4aeb6fdd985c67bde1f2f38473ca7192522dae091633ab99c0927614932bb4_amd64" + }, + "product_reference": "openshift4/ose-image-customization-controller-rhel8@sha256:1a4aeb6fdd985c67bde1f2f38473ca7192522dae091633ab99c0927614932bb4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-image-customization-controller-rhel8@sha256:6902c381b09b730c0b5a8cc1cfa55d3235461de19a37cbba43f40b363e263fd3_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-image-customization-controller-rhel8@sha256:6902c381b09b730c0b5a8cc1cfa55d3235461de19a37cbba43f40b363e263fd3_arm64" + }, + "product_reference": "openshift4/ose-image-customization-controller-rhel8@sha256:6902c381b09b730c0b5a8cc1cfa55d3235461de19a37cbba43f40b363e263fd3_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:226ba452c2ae62e9e277a10396d54528aba32a93d6aaa78c075a35647735bd20_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-insights-rhel8-operator@sha256:226ba452c2ae62e9e277a10396d54528aba32a93d6aaa78c075a35647735bd20_ppc64le" + }, + "product_reference": "openshift4/ose-insights-rhel8-operator@sha256:226ba452c2ae62e9e277a10396d54528aba32a93d6aaa78c075a35647735bd20_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:5c6f510117a72da85068dfae558bc3986174f8d1ee4798fe0d34c3416f12aa8d_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-insights-rhel8-operator@sha256:5c6f510117a72da85068dfae558bc3986174f8d1ee4798fe0d34c3416f12aa8d_amd64" + }, + "product_reference": "openshift4/ose-insights-rhel8-operator@sha256:5c6f510117a72da85068dfae558bc3986174f8d1ee4798fe0d34c3416f12aa8d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:5dac532f2df3f391be76f2ae0fba5e3c19ed0e0debfc031cff5f9747ddb2e251_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-insights-rhel8-operator@sha256:5dac532f2df3f391be76f2ae0fba5e3c19ed0e0debfc031cff5f9747ddb2e251_s390x" + }, + "product_reference": "openshift4/ose-insights-rhel8-operator@sha256:5dac532f2df3f391be76f2ae0fba5e3c19ed0e0debfc031cff5f9747ddb2e251_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-insights-rhel8-operator@sha256:e2279482e0eb8ef09c4e64e8f351f9f402389d218688787485467606f721a6cf_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-insights-rhel8-operator@sha256:e2279482e0eb8ef09c4e64e8f351f9f402389d218688787485467606f721a6cf_arm64" + }, + "product_reference": "openshift4/ose-insights-rhel8-operator@sha256:e2279482e0eb8ef09c4e64e8f351f9f402389d218688787485467606f721a6cf_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer-artifacts@sha256:2ba28613e4ce09e52a73019289f9307e32c10e75d662015b4f06cfe92e15ac32_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-installer-artifacts@sha256:2ba28613e4ce09e52a73019289f9307e32c10e75d662015b4f06cfe92e15ac32_arm64" + }, + "product_reference": "openshift4/ose-installer-artifacts@sha256:2ba28613e4ce09e52a73019289f9307e32c10e75d662015b4f06cfe92e15ac32_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer-artifacts@sha256:42730209d74d5323e5ff055dcfb3cafdc47ff052611a4a23833c32c5380f04c0_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-installer-artifacts@sha256:42730209d74d5323e5ff055dcfb3cafdc47ff052611a4a23833c32c5380f04c0_s390x" + }, + "product_reference": "openshift4/ose-installer-artifacts@sha256:42730209d74d5323e5ff055dcfb3cafdc47ff052611a4a23833c32c5380f04c0_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer-artifacts@sha256:577c0df8d45246f563b4a098fcd6b91e27fb26eded8e61e03aa9e9ed048c2228_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-installer-artifacts@sha256:577c0df8d45246f563b4a098fcd6b91e27fb26eded8e61e03aa9e9ed048c2228_ppc64le" + }, + "product_reference": "openshift4/ose-installer-artifacts@sha256:577c0df8d45246f563b4a098fcd6b91e27fb26eded8e61e03aa9e9ed048c2228_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer-artifacts@sha256:8fb0b3359284fb55d427ec98ff1dd035d572c04513636ad46705b039b792b5e2_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-installer-artifacts@sha256:8fb0b3359284fb55d427ec98ff1dd035d572c04513636ad46705b039b792b5e2_s390x" + }, + "product_reference": "openshift4/ose-installer-artifacts@sha256:8fb0b3359284fb55d427ec98ff1dd035d572c04513636ad46705b039b792b5e2_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer-artifacts@sha256:b3842492d5d24584162742c037199a02e51cc1112b020b193db458fd7552e95f_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-installer-artifacts@sha256:b3842492d5d24584162742c037199a02e51cc1112b020b193db458fd7552e95f_amd64" + }, + "product_reference": "openshift4/ose-installer-artifacts@sha256:b3842492d5d24584162742c037199a02e51cc1112b020b193db458fd7552e95f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer-artifacts@sha256:cb4c932666c2de9a20821217155ed80db762935a2445a824ec8c7e9d194477f5_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-installer-artifacts@sha256:cb4c932666c2de9a20821217155ed80db762935a2445a824ec8c7e9d194477f5_arm64" + }, + "product_reference": "openshift4/ose-installer-artifacts@sha256:cb4c932666c2de9a20821217155ed80db762935a2445a824ec8c7e9d194477f5_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer-artifacts@sha256:cf0933b0ac2c241dc3e758cd29907b22ca7b59843eab8b4a43679d2eb09ac7c6_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-installer-artifacts@sha256:cf0933b0ac2c241dc3e758cd29907b22ca7b59843eab8b4a43679d2eb09ac7c6_amd64" + }, + "product_reference": "openshift4/ose-installer-artifacts@sha256:cf0933b0ac2c241dc3e758cd29907b22ca7b59843eab8b4a43679d2eb09ac7c6_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer-artifacts@sha256:f809be309b72b77bb74b47fb5a2eda22f8c0c70059f1327af7eb7c8c70de2cc9_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-installer-artifacts@sha256:f809be309b72b77bb74b47fb5a2eda22f8c0c70059f1327af7eb7c8c70de2cc9_ppc64le" + }, + "product_reference": "openshift4/ose-installer-artifacts@sha256:f809be309b72b77bb74b47fb5a2eda22f8c0c70059f1327af7eb7c8c70de2cc9_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer@sha256:51e15c80513f99d613d0e885e7d63620e01e5eb3bde2c59d121ed74601144cb2_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-installer@sha256:51e15c80513f99d613d0e885e7d63620e01e5eb3bde2c59d121ed74601144cb2_ppc64le" + }, + "product_reference": "openshift4/ose-installer@sha256:51e15c80513f99d613d0e885e7d63620e01e5eb3bde2c59d121ed74601144cb2_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer@sha256:572225d6c93a3bfd13c0950315160ef4de8063ca7c4cc4639424afe0997b7aa6_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-installer@sha256:572225d6c93a3bfd13c0950315160ef4de8063ca7c4cc4639424afe0997b7aa6_arm64" + }, + "product_reference": "openshift4/ose-installer@sha256:572225d6c93a3bfd13c0950315160ef4de8063ca7c4cc4639424afe0997b7aa6_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer@sha256:73f68bdeac71d38038056f74d6ded38b50965cd6da73e3a853a1fecaf2aa2659_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-installer@sha256:73f68bdeac71d38038056f74d6ded38b50965cd6da73e3a853a1fecaf2aa2659_arm64" + }, + "product_reference": "openshift4/ose-installer@sha256:73f68bdeac71d38038056f74d6ded38b50965cd6da73e3a853a1fecaf2aa2659_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer@sha256:7663173c9782a29e9f8c931d971bcd5e3e63e223d6019c30f6fcc65d613d55fb_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-installer@sha256:7663173c9782a29e9f8c931d971bcd5e3e63e223d6019c30f6fcc65d613d55fb_amd64" + }, + "product_reference": "openshift4/ose-installer@sha256:7663173c9782a29e9f8c931d971bcd5e3e63e223d6019c30f6fcc65d613d55fb_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer@sha256:a841ffade54d12c732da650480b1c3a7a768f964ab1f09b14c5ec7f8a110f35c_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-installer@sha256:a841ffade54d12c732da650480b1c3a7a768f964ab1f09b14c5ec7f8a110f35c_ppc64le" + }, + "product_reference": "openshift4/ose-installer@sha256:a841ffade54d12c732da650480b1c3a7a768f964ab1f09b14c5ec7f8a110f35c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer@sha256:b4a52c0d96ba6a977816f280748bda13c499a3acb4e3be68e9e9df3443fc4a83_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-installer@sha256:b4a52c0d96ba6a977816f280748bda13c499a3acb4e3be68e9e9df3443fc4a83_s390x" + }, + "product_reference": "openshift4/ose-installer@sha256:b4a52c0d96ba6a977816f280748bda13c499a3acb4e3be68e9e9df3443fc4a83_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer@sha256:f83a341bbbba4e364ea69b06791f0da6790bf368c5642c8cf59d603fe0845e8e_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-installer@sha256:f83a341bbbba4e364ea69b06791f0da6790bf368c5642c8cf59d603fe0845e8e_amd64" + }, + "product_reference": "openshift4/ose-installer@sha256:f83a341bbbba4e364ea69b06791f0da6790bf368c5642c8cf59d603fe0845e8e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-installer@sha256:fc2c9209767d19f3e19fe34bea88a75f4c076b210549b59faa28759947eb4921_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-installer@sha256:fc2c9209767d19f3e19fe34bea88a75f4c076b210549b59faa28759947eb4921_s390x" + }, + "product_reference": "openshift4/ose-installer@sha256:fc2c9209767d19f3e19fe34bea88a75f4c076b210549b59faa28759947eb4921_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:000d0f80b646e8131f035ab46205d62d0b86fdd92478c462955be44f0d411cb0_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-k8s-prometheus-adapter@sha256:000d0f80b646e8131f035ab46205d62d0b86fdd92478c462955be44f0d411cb0_arm64" + }, + "product_reference": "openshift4/ose-k8s-prometheus-adapter@sha256:000d0f80b646e8131f035ab46205d62d0b86fdd92478c462955be44f0d411cb0_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:026cffc5f057d30eafb7f0e75b29f5c17a4290dc38737531ec0e70f703420bc3_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-k8s-prometheus-adapter@sha256:026cffc5f057d30eafb7f0e75b29f5c17a4290dc38737531ec0e70f703420bc3_s390x" + }, + "product_reference": "openshift4/ose-k8s-prometheus-adapter@sha256:026cffc5f057d30eafb7f0e75b29f5c17a4290dc38737531ec0e70f703420bc3_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:4f13f6a4c91fb05fdd1f0fb63605d114a87f27aafe0c1b12028e7f92e830c567_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-k8s-prometheus-adapter@sha256:4f13f6a4c91fb05fdd1f0fb63605d114a87f27aafe0c1b12028e7f92e830c567_amd64" + }, + "product_reference": "openshift4/ose-k8s-prometheus-adapter@sha256:4f13f6a4c91fb05fdd1f0fb63605d114a87f27aafe0c1b12028e7f92e830c567_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:8af5bbd5348beb02c1dd565e4e000782c2f0ee68c6c0289f342620acf51fb175_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-k8s-prometheus-adapter@sha256:8af5bbd5348beb02c1dd565e4e000782c2f0ee68c6c0289f342620acf51fb175_arm64" + }, + "product_reference": "openshift4/ose-k8s-prometheus-adapter@sha256:8af5bbd5348beb02c1dd565e4e000782c2f0ee68c6c0289f342620acf51fb175_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:8d6c8bab298e28f98d7e9bbb7b427801d536250264c8bbe03ac585b7808803df_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-k8s-prometheus-adapter@sha256:8d6c8bab298e28f98d7e9bbb7b427801d536250264c8bbe03ac585b7808803df_ppc64le" + }, + "product_reference": "openshift4/ose-k8s-prometheus-adapter@sha256:8d6c8bab298e28f98d7e9bbb7b427801d536250264c8bbe03ac585b7808803df_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:ad20f8b12a690cb73a544dc35174340c7b896ec3b9ca94fd864ef884f23dc86d_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-k8s-prometheus-adapter@sha256:ad20f8b12a690cb73a544dc35174340c7b896ec3b9ca94fd864ef884f23dc86d_amd64" + }, + "product_reference": "openshift4/ose-k8s-prometheus-adapter@sha256:ad20f8b12a690cb73a544dc35174340c7b896ec3b9ca94fd864ef884f23dc86d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:cb54dbcc43d5874beb7ad3c176690abbe97b8da5f6b7cedd0611a672031530bb_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-k8s-prometheus-adapter@sha256:cb54dbcc43d5874beb7ad3c176690abbe97b8da5f6b7cedd0611a672031530bb_s390x" + }, + "product_reference": "openshift4/ose-k8s-prometheus-adapter@sha256:cb54dbcc43d5874beb7ad3c176690abbe97b8da5f6b7cedd0611a672031530bb_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-k8s-prometheus-adapter@sha256:f70fa7d2a167ed4358b7050c41a07d3ffcce1fe64aa64060029d581330df532f_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-k8s-prometheus-adapter@sha256:f70fa7d2a167ed4358b7050c41a07d3ffcce1fe64aa64060029d581330df532f_ppc64le" + }, + "product_reference": "openshift4/ose-k8s-prometheus-adapter@sha256:f70fa7d2a167ed4358b7050c41a07d3ffcce1fe64aa64060029d581330df532f_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-keepalived-ipfailover@sha256:bfd3afb2be6afdc5dd449f0e1755dac36db0c9b15052bcef56ee29d23279baa4_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-keepalived-ipfailover@sha256:bfd3afb2be6afdc5dd449f0e1755dac36db0c9b15052bcef56ee29d23279baa4_ppc64le" + }, + "product_reference": "openshift4/ose-keepalived-ipfailover@sha256:bfd3afb2be6afdc5dd449f0e1755dac36db0c9b15052bcef56ee29d23279baa4_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-keepalived-ipfailover@sha256:cc0901cb2e99c7ce55a6493802adb5ed4dc3f1b69372c62003ae32dcd3f10dea_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-keepalived-ipfailover@sha256:cc0901cb2e99c7ce55a6493802adb5ed4dc3f1b69372c62003ae32dcd3f10dea_arm64" + }, + "product_reference": "openshift4/ose-keepalived-ipfailover@sha256:cc0901cb2e99c7ce55a6493802adb5ed4dc3f1b69372c62003ae32dcd3f10dea_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-keepalived-ipfailover@sha256:d1960508c9de731e1ed37584ece15359663af32ddd91bdaa5820eced0ef69533_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-keepalived-ipfailover@sha256:d1960508c9de731e1ed37584ece15359663af32ddd91bdaa5820eced0ef69533_amd64" + }, + "product_reference": "openshift4/ose-keepalived-ipfailover@sha256:d1960508c9de731e1ed37584ece15359663af32ddd91bdaa5820eced0ef69533_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-keepalived-ipfailover@sha256:e47d267d7adc1b1a3432a5a3c151a40e78f624d321c80fe49f490141057794e1_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-keepalived-ipfailover@sha256:e47d267d7adc1b1a3432a5a3c151a40e78f624d321c80fe49f490141057794e1_s390x" + }, + "product_reference": "openshift4/ose-keepalived-ipfailover@sha256:e47d267d7adc1b1a3432a5a3c151a40e78f624d321c80fe49f490141057794e1_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-proxy@sha256:83298106c728b3df96c6ad749dd3e64b8bf2cb2cab719cb1b7f80d22a8349b71_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kube-proxy@sha256:83298106c728b3df96c6ad749dd3e64b8bf2cb2cab719cb1b7f80d22a8349b71_ppc64le" + }, + "product_reference": "openshift4/ose-kube-proxy@sha256:83298106c728b3df96c6ad749dd3e64b8bf2cb2cab719cb1b7f80d22a8349b71_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-proxy@sha256:84ddecf942b9dfb1f1cb3a41b8524d311045a1917e3c841ef14cf5a7e6e0b525_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kube-proxy@sha256:84ddecf942b9dfb1f1cb3a41b8524d311045a1917e3c841ef14cf5a7e6e0b525_arm64" + }, + "product_reference": "openshift4/ose-kube-proxy@sha256:84ddecf942b9dfb1f1cb3a41b8524d311045a1917e3c841ef14cf5a7e6e0b525_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-proxy@sha256:b594fa0b4e901d2ec4c703506e33286d984381c3cf87069ab8bb8fbf038132f6_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kube-proxy@sha256:b594fa0b4e901d2ec4c703506e33286d984381c3cf87069ab8bb8fbf038132f6_amd64" + }, + "product_reference": "openshift4/ose-kube-proxy@sha256:b594fa0b4e901d2ec4c703506e33286d984381c3cf87069ab8bb8fbf038132f6_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-proxy@sha256:c2c67de4ec964cd32fa9a3b3582023702cd34d3e7ef5f76d1ee9a55c41710a38_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kube-proxy@sha256:c2c67de4ec964cd32fa9a3b3582023702cd34d3e7ef5f76d1ee9a55c41710a38_s390x" + }, + "product_reference": "openshift4/ose-kube-proxy@sha256:c2c67de4ec964cd32fa9a3b3582023702cd34d3e7ef5f76d1ee9a55c41710a38_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:2e6592663beb61bd88767aa0401d287ca94e556ec13c2f39cd7a18a63ba3bd93_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kube-rbac-proxy@sha256:2e6592663beb61bd88767aa0401d287ca94e556ec13c2f39cd7a18a63ba3bd93_s390x" + }, + "product_reference": "openshift4/ose-kube-rbac-proxy@sha256:2e6592663beb61bd88767aa0401d287ca94e556ec13c2f39cd7a18a63ba3bd93_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:33b6b35bf8f6e5fac41c4228bf1a41dd4a536e070db450c7b0f9c5c755c25702_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kube-rbac-proxy@sha256:33b6b35bf8f6e5fac41c4228bf1a41dd4a536e070db450c7b0f9c5c755c25702_arm64" + }, + "product_reference": "openshift4/ose-kube-rbac-proxy@sha256:33b6b35bf8f6e5fac41c4228bf1a41dd4a536e070db450c7b0f9c5c755c25702_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:a9c04bf904a518c41ac41e141daa9f700a16c433503c0006e6a5c1cc04be2f6e_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kube-rbac-proxy@sha256:a9c04bf904a518c41ac41e141daa9f700a16c433503c0006e6a5c1cc04be2f6e_ppc64le" + }, + "product_reference": "openshift4/ose-kube-rbac-proxy@sha256:a9c04bf904a518c41ac41e141daa9f700a16c433503c0006e6a5c1cc04be2f6e_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-rbac-proxy@sha256:d0d6b78f89181d2178776187d3ee733589eb48d06e112e509c7a37388fcd765d_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kube-rbac-proxy@sha256:d0d6b78f89181d2178776187d3ee733589eb48d06e112e509c7a37388fcd765d_amd64" + }, + "product_reference": "openshift4/ose-kube-rbac-proxy@sha256:d0d6b78f89181d2178776187d3ee733589eb48d06e112e509c7a37388fcd765d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-state-metrics@sha256:16b6ed331d12382ab09a5a9f699e80350ce5350bfd631bac0cb9bc0813a3117c_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kube-state-metrics@sha256:16b6ed331d12382ab09a5a9f699e80350ce5350bfd631bac0cb9bc0813a3117c_ppc64le" + }, + "product_reference": "openshift4/ose-kube-state-metrics@sha256:16b6ed331d12382ab09a5a9f699e80350ce5350bfd631bac0cb9bc0813a3117c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-state-metrics@sha256:54b25a9d7f9f8668a0ad625015fa422a1c3bf39156331f65b0c9d872645c4b85_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kube-state-metrics@sha256:54b25a9d7f9f8668a0ad625015fa422a1c3bf39156331f65b0c9d872645c4b85_arm64" + }, + "product_reference": "openshift4/ose-kube-state-metrics@sha256:54b25a9d7f9f8668a0ad625015fa422a1c3bf39156331f65b0c9d872645c4b85_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-state-metrics@sha256:b3c9f43f0b49de6510db260a8af6370f88b125346e4c7480cbeca778474e3f53_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kube-state-metrics@sha256:b3c9f43f0b49de6510db260a8af6370f88b125346e4c7480cbeca778474e3f53_amd64" + }, + "product_reference": "openshift4/ose-kube-state-metrics@sha256:b3c9f43f0b49de6510db260a8af6370f88b125346e4c7480cbeca778474e3f53_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-state-metrics@sha256:fd18796ff53c50220899c8e80c25f8c1a1be60322bc471f4b00344e44e754606_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kube-state-metrics@sha256:fd18796ff53c50220899c8e80c25f8c1a1be60322bc471f4b00344e44e754606_s390x" + }, + "product_reference": "openshift4/ose-kube-state-metrics@sha256:fd18796ff53c50220899c8e80c25f8c1a1be60322bc471f4b00344e44e754606_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:219bcf8b1f7c711c01af84e4e039766f0d1a9ad56462e84ff39aa686ee6ca6bc_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kube-storage-version-migrator-rhel8@sha256:219bcf8b1f7c711c01af84e4e039766f0d1a9ad56462e84ff39aa686ee6ca6bc_s390x" + }, + "product_reference": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:219bcf8b1f7c711c01af84e4e039766f0d1a9ad56462e84ff39aa686ee6ca6bc_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:27836a540c3f054cd39a03328a18a270e595bc672f457e5cd60d54fb8469679c_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kube-storage-version-migrator-rhel8@sha256:27836a540c3f054cd39a03328a18a270e595bc672f457e5cd60d54fb8469679c_ppc64le" + }, + "product_reference": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:27836a540c3f054cd39a03328a18a270e595bc672f457e5cd60d54fb8469679c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:87c34362fea2eae0af074052733f65bfb2b42a83984a5525c38dabcc4378aa10_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kube-storage-version-migrator-rhel8@sha256:87c34362fea2eae0af074052733f65bfb2b42a83984a5525c38dabcc4378aa10_amd64" + }, + "product_reference": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:87c34362fea2eae0af074052733f65bfb2b42a83984a5525c38dabcc4378aa10_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:c961a8cff523a0012d6994434ee6667ab27cda0887e7ee97d1cc9c6e8b80c5f8_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kube-storage-version-migrator-rhel8@sha256:c961a8cff523a0012d6994434ee6667ab27cda0887e7ee97d1cc9c6e8b80c5f8_arm64" + }, + "product_reference": "openshift4/ose-kube-storage-version-migrator-rhel8@sha256:c961a8cff523a0012d6994434ee6667ab27cda0887e7ee97d1cc9c6e8b80c5f8_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:821f045d61db0ecdc75c681bd9025535ebd6ccae5863de3f995c999f200cbeb5_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:821f045d61db0ecdc75c681bd9025535ebd6ccae5863de3f995c999f200cbeb5_amd64" + }, + "product_reference": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:821f045d61db0ecdc75c681bd9025535ebd6ccae5863de3f995c999f200cbeb5_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:8bd35a6883ca9d8fdf27932c0cc724666a288706711a4e42c9c8bcb323697c4d_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:8bd35a6883ca9d8fdf27932c0cc724666a288706711a4e42c9c8bcb323697c4d_s390x" + }, + "product_reference": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:8bd35a6883ca9d8fdf27932c0cc724666a288706711a4e42c9c8bcb323697c4d_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:9c00cff1cb283ef7ee9f69ea5959c9a58e20587c9d9a414a176a6e6f7dccc02a_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:9c00cff1cb283ef7ee9f69ea5959c9a58e20587c9d9a414a176a6e6f7dccc02a_arm64" + }, + "product_reference": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:9c00cff1cb283ef7ee9f69ea5959c9a58e20587c9d9a414a176a6e6f7dccc02a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:c55de9c1005c98d18e9603590dee24ec170316e20018ba86ac45d1e68f7dc0da_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:c55de9c1005c98d18e9603590dee24ec170316e20018ba86ac45d1e68f7dc0da_ppc64le" + }, + "product_reference": "openshift4/ose-kubevirt-cloud-controller-manager-rhel8@sha256:c55de9c1005c98d18e9603590dee24ec170316e20018ba86ac45d1e68f7dc0da_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:1f2e4115210f4e01cbabf2f5d3000211a36339d1c061b24851a2ac0d97f00001_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kuryr-cni-rhel8@sha256:1f2e4115210f4e01cbabf2f5d3000211a36339d1c061b24851a2ac0d97f00001_amd64" + }, + "product_reference": "openshift4/ose-kuryr-cni-rhel8@sha256:1f2e4115210f4e01cbabf2f5d3000211a36339d1c061b24851a2ac0d97f00001_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:3ed8f193cd5d3f52c5eeb66df9c44f3f68cdb90adb346d726daf4fbc7ad072bb_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kuryr-cni-rhel8@sha256:3ed8f193cd5d3f52c5eeb66df9c44f3f68cdb90adb346d726daf4fbc7ad072bb_amd64" + }, + "product_reference": "openshift4/ose-kuryr-cni-rhel8@sha256:3ed8f193cd5d3f52c5eeb66df9c44f3f68cdb90adb346d726daf4fbc7ad072bb_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:701f2d6a3b79e51640f4ab8a612918e49249851be47e3db7afdfbb45611c3847_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kuryr-cni-rhel8@sha256:701f2d6a3b79e51640f4ab8a612918e49249851be47e3db7afdfbb45611c3847_ppc64le" + }, + "product_reference": "openshift4/ose-kuryr-cni-rhel8@sha256:701f2d6a3b79e51640f4ab8a612918e49249851be47e3db7afdfbb45611c3847_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kuryr-cni-rhel8@sha256:de869399e58a54bc76ca46b4431d7d310e4279b5f01ae19890064451d0b9468b_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kuryr-cni-rhel8@sha256:de869399e58a54bc76ca46b4431d7d310e4279b5f01ae19890064451d0b9468b_ppc64le" + }, + "product_reference": "openshift4/ose-kuryr-cni-rhel8@sha256:de869399e58a54bc76ca46b4431d7d310e4279b5f01ae19890064451d0b9468b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kuryr-controller-rhel8@sha256:1f8ffb6009d50dfa5101abf26a80f0f8be44529f314d6bfe0ea03512926d058b_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kuryr-controller-rhel8@sha256:1f8ffb6009d50dfa5101abf26a80f0f8be44529f314d6bfe0ea03512926d058b_amd64" + }, + "product_reference": "openshift4/ose-kuryr-controller-rhel8@sha256:1f8ffb6009d50dfa5101abf26a80f0f8be44529f314d6bfe0ea03512926d058b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kuryr-controller-rhel8@sha256:6c190d0d37ec5a822954509689e9aa8a5d4a98e6a2885923da1822523e2cfb2e_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kuryr-controller-rhel8@sha256:6c190d0d37ec5a822954509689e9aa8a5d4a98e6a2885923da1822523e2cfb2e_ppc64le" + }, + "product_reference": "openshift4/ose-kuryr-controller-rhel8@sha256:6c190d0d37ec5a822954509689e9aa8a5d4a98e6a2885923da1822523e2cfb2e_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kuryr-controller-rhel8@sha256:d3ea21d9577fc16cabaa64ef3ed0c588be63df58dee8e34075163431ea218dc4_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kuryr-controller-rhel8@sha256:d3ea21d9577fc16cabaa64ef3ed0c588be63df58dee8e34075163431ea218dc4_ppc64le" + }, + "product_reference": "openshift4/ose-kuryr-controller-rhel8@sha256:d3ea21d9577fc16cabaa64ef3ed0c588be63df58dee8e34075163431ea218dc4_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-kuryr-controller-rhel8@sha256:f071028a08a53496aa23ae7f6d1739f821d2589d684078dc835b0d9d59662ff7_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-kuryr-controller-rhel8@sha256:f071028a08a53496aa23ae7f6d1739f821d2589d684078dc835b0d9d59662ff7_amd64" + }, + "product_reference": "openshift4/ose-kuryr-controller-rhel8@sha256:f071028a08a53496aa23ae7f6d1739f821d2589d684078dc835b0d9d59662ff7_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:8044893ef7232fc1570058611a03b73fb56d5c414605e6771926adaddf38c265_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-libvirt-machine-controllers@sha256:8044893ef7232fc1570058611a03b73fb56d5c414605e6771926adaddf38c265_ppc64le" + }, + "product_reference": "openshift4/ose-libvirt-machine-controllers@sha256:8044893ef7232fc1570058611a03b73fb56d5c414605e6771926adaddf38c265_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:eedf948465e68c745ab844c20b123ee6317fa987f4fd4e74111d46389e3edaa1_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-libvirt-machine-controllers@sha256:eedf948465e68c745ab844c20b123ee6317fa987f4fd4e74111d46389e3edaa1_arm64" + }, + "product_reference": "openshift4/ose-libvirt-machine-controllers@sha256:eedf948465e68c745ab844c20b123ee6317fa987f4fd4e74111d46389e3edaa1_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:f3595e63a3c3838e637c33d005e4da2a5d7c60dbcfe6529074b784407288e0ba_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-libvirt-machine-controllers@sha256:f3595e63a3c3838e637c33d005e4da2a5d7c60dbcfe6529074b784407288e0ba_s390x" + }, + "product_reference": "openshift4/ose-libvirt-machine-controllers@sha256:f3595e63a3c3838e637c33d005e4da2a5d7c60dbcfe6529074b784407288e0ba_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-libvirt-machine-controllers@sha256:fcea138ef5f072f4bc249c122ef7bd6c217c52cf25cf23306f2539cd57c4ad1c_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-libvirt-machine-controllers@sha256:fcea138ef5f072f4bc249c122ef7bd6c217c52cf25cf23306f2539cd57c4ad1c_amd64" + }, + "product_reference": "openshift4/ose-libvirt-machine-controllers@sha256:fcea138ef5f072f4bc249c122ef7bd6c217c52cf25cf23306f2539cd57c4ad1c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-local-storage-diskmaker@sha256:73b998f500367b30fe97b879b2f5cb8f3039b62512b6a019f15d1aa1102a58e2_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-local-storage-diskmaker@sha256:73b998f500367b30fe97b879b2f5cb8f3039b62512b6a019f15d1aa1102a58e2_s390x" + }, + "product_reference": "openshift4/ose-local-storage-diskmaker@sha256:73b998f500367b30fe97b879b2f5cb8f3039b62512b6a019f15d1aa1102a58e2_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-local-storage-diskmaker@sha256:7a254684bf57d8d6c89e7bcda7a18d416ffc6c3faca5894c54ad98eefd553a82_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-local-storage-diskmaker@sha256:7a254684bf57d8d6c89e7bcda7a18d416ffc6c3faca5894c54ad98eefd553a82_ppc64le" + }, + "product_reference": "openshift4/ose-local-storage-diskmaker@sha256:7a254684bf57d8d6c89e7bcda7a18d416ffc6c3faca5894c54ad98eefd553a82_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-local-storage-diskmaker@sha256:95dcbca8e66386855535982a924da3193e4c0d4067eb7dd6faf8238a1559bce7_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-local-storage-diskmaker@sha256:95dcbca8e66386855535982a924da3193e4c0d4067eb7dd6faf8238a1559bce7_arm64" + }, + "product_reference": "openshift4/ose-local-storage-diskmaker@sha256:95dcbca8e66386855535982a924da3193e4c0d4067eb7dd6faf8238a1559bce7_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-local-storage-diskmaker@sha256:a9ecf4d7201b47461e602a4d0218f055da05260eb251c6db7d8ce358f4838a00_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-local-storage-diskmaker@sha256:a9ecf4d7201b47461e602a4d0218f055da05260eb251c6db7d8ce358f4838a00_amd64" + }, + "product_reference": "openshift4/ose-local-storage-diskmaker@sha256:a9ecf4d7201b47461e602a4d0218f055da05260eb251c6db7d8ce358f4838a00_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-local-storage-mustgather-rhel8@sha256:2230caaf1b244ddf733352f7d10c6350dae94e52f0146076cfd740365252ab0b_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-local-storage-mustgather-rhel8@sha256:2230caaf1b244ddf733352f7d10c6350dae94e52f0146076cfd740365252ab0b_s390x" + }, + "product_reference": "openshift4/ose-local-storage-mustgather-rhel8@sha256:2230caaf1b244ddf733352f7d10c6350dae94e52f0146076cfd740365252ab0b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-local-storage-mustgather-rhel8@sha256:8751e2f0025e2401b110f1ac951050643648ae09871e65d283dfcf1c19e518f2_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-local-storage-mustgather-rhel8@sha256:8751e2f0025e2401b110f1ac951050643648ae09871e65d283dfcf1c19e518f2_ppc64le" + }, + "product_reference": "openshift4/ose-local-storage-mustgather-rhel8@sha256:8751e2f0025e2401b110f1ac951050643648ae09871e65d283dfcf1c19e518f2_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-local-storage-mustgather-rhel8@sha256:c2003db896a308fef6f6e328c222b0f8096ca4ae4410c09080fe9c8ff186369e_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-local-storage-mustgather-rhel8@sha256:c2003db896a308fef6f6e328c222b0f8096ca4ae4410c09080fe9c8ff186369e_arm64" + }, + "product_reference": "openshift4/ose-local-storage-mustgather-rhel8@sha256:c2003db896a308fef6f6e328c222b0f8096ca4ae4410c09080fe9c8ff186369e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-local-storage-mustgather-rhel8@sha256:f29be1cdd75ca13b290099283306c19c2d3c0ac1ccc915a9af26224b745ecea9_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-local-storage-mustgather-rhel8@sha256:f29be1cdd75ca13b290099283306c19c2d3c0ac1ccc915a9af26224b745ecea9_amd64" + }, + "product_reference": "openshift4/ose-local-storage-mustgather-rhel8@sha256:f29be1cdd75ca13b290099283306c19c2d3c0ac1ccc915a9af26224b745ecea9_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-local-storage-operator@sha256:2744170ff5e60cfde5476eac6653dbb97b4f17050329eabd8cc9ad2f283df993_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-local-storage-operator@sha256:2744170ff5e60cfde5476eac6653dbb97b4f17050329eabd8cc9ad2f283df993_amd64" + }, + "product_reference": "openshift4/ose-local-storage-operator@sha256:2744170ff5e60cfde5476eac6653dbb97b4f17050329eabd8cc9ad2f283df993_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-local-storage-operator@sha256:2984b6fd260b19c843f34df39e78bd4a75414a0190931e25294383a2c230681a_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-local-storage-operator@sha256:2984b6fd260b19c843f34df39e78bd4a75414a0190931e25294383a2c230681a_s390x" + }, + "product_reference": "openshift4/ose-local-storage-operator@sha256:2984b6fd260b19c843f34df39e78bd4a75414a0190931e25294383a2c230681a_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-local-storage-operator@sha256:387419bd5f6f7462d99001a355bc5a0340b20855715bfdac842ef1f08212126e_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-local-storage-operator@sha256:387419bd5f6f7462d99001a355bc5a0340b20855715bfdac842ef1f08212126e_arm64" + }, + "product_reference": "openshift4/ose-local-storage-operator@sha256:387419bd5f6f7462d99001a355bc5a0340b20855715bfdac842ef1f08212126e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-local-storage-operator@sha256:ec05e95625aa246b4c2659634f2d32070072f5d6cd629c1ddc4971632736b9d6_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-local-storage-operator@sha256:ec05e95625aa246b4c2659634f2d32070072f5d6cd629c1ddc4971632736b9d6_ppc64le" + }, + "product_reference": "openshift4/ose-local-storage-operator@sha256:ec05e95625aa246b4c2659634f2d32070072f5d6cd629c1ddc4971632736b9d6_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-operator@sha256:359dc7145f1376e40218cc3b0577900175d650015450ba538a710c9f7a8f7982_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-api-operator@sha256:359dc7145f1376e40218cc3b0577900175d650015450ba538a710c9f7a8f7982_amd64" + }, + "product_reference": "openshift4/ose-machine-api-operator@sha256:359dc7145f1376e40218cc3b0577900175d650015450ba538a710c9f7a8f7982_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-operator@sha256:394b3ae29f2e6efa670d17d59a514f542296b153955d4050cf82e7d7b5fd5367_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-api-operator@sha256:394b3ae29f2e6efa670d17d59a514f542296b153955d4050cf82e7d7b5fd5367_s390x" + }, + "product_reference": "openshift4/ose-machine-api-operator@sha256:394b3ae29f2e6efa670d17d59a514f542296b153955d4050cf82e7d7b5fd5367_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-operator@sha256:45734564b9e0eb27d84444d4d8566b1515a662cdcaa5552fd0e5d2e00f77d6aa_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-api-operator@sha256:45734564b9e0eb27d84444d4d8566b1515a662cdcaa5552fd0e5d2e00f77d6aa_arm64" + }, + "product_reference": "openshift4/ose-machine-api-operator@sha256:45734564b9e0eb27d84444d4d8566b1515a662cdcaa5552fd0e5d2e00f77d6aa_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-operator@sha256:755d0f794c440d32afd60ce2bd4983c9cf3363becae6e611fc6784e448ac1328_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-api-operator@sha256:755d0f794c440d32afd60ce2bd4983c9cf3363becae6e611fc6784e448ac1328_s390x" + }, + "product_reference": "openshift4/ose-machine-api-operator@sha256:755d0f794c440d32afd60ce2bd4983c9cf3363becae6e611fc6784e448ac1328_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-operator@sha256:9bb21adaaced20b9b5693244238c69e9ed33ae469a1cdcc2c6a46329b9f3cbd8_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-api-operator@sha256:9bb21adaaced20b9b5693244238c69e9ed33ae469a1cdcc2c6a46329b9f3cbd8_ppc64le" + }, + "product_reference": "openshift4/ose-machine-api-operator@sha256:9bb21adaaced20b9b5693244238c69e9ed33ae469a1cdcc2c6a46329b9f3cbd8_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-operator@sha256:a9ec8ccc5d32336980b9e92814ec451c4851b4532b4700c1e640141f8bd49183_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-api-operator@sha256:a9ec8ccc5d32336980b9e92814ec451c4851b4532b4700c1e640141f8bd49183_arm64" + }, + "product_reference": "openshift4/ose-machine-api-operator@sha256:a9ec8ccc5d32336980b9e92814ec451c4851b4532b4700c1e640141f8bd49183_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-operator@sha256:cd2d2851edb4c9666a0eb032e07bf2cb07723a72ae35cf109ee5a307aca6daf8_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-api-operator@sha256:cd2d2851edb4c9666a0eb032e07bf2cb07723a72ae35cf109ee5a307aca6daf8_ppc64le" + }, + "product_reference": "openshift4/ose-machine-api-operator@sha256:cd2d2851edb4c9666a0eb032e07bf2cb07723a72ae35cf109ee5a307aca6daf8_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-operator@sha256:eece8800b4cf063e1203132c9dba9364d904bc427228164e3088453d7ae7efae_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-api-operator@sha256:eece8800b4cf063e1203132c9dba9364d904bc427228164e3088453d7ae7efae_amd64" + }, + "product_reference": "openshift4/ose-machine-api-operator@sha256:eece8800b4cf063e1203132c9dba9364d904bc427228164e3088453d7ae7efae_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:03c956a29d8e1366e89a46f401209fe311ba2f94302036e64ceab1d80ddd9e2b_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-api-provider-aws-rhel8@sha256:03c956a29d8e1366e89a46f401209fe311ba2f94302036e64ceab1d80ddd9e2b_arm64" + }, + "product_reference": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:03c956a29d8e1366e89a46f401209fe311ba2f94302036e64ceab1d80ddd9e2b_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:4a1656b8e8fa0fbfef20d1ad2bb3165d9dce44aa14c745bbc79293de7acb57eb_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-api-provider-aws-rhel8@sha256:4a1656b8e8fa0fbfef20d1ad2bb3165d9dce44aa14c745bbc79293de7acb57eb_amd64" + }, + "product_reference": "openshift4/ose-machine-api-provider-aws-rhel8@sha256:4a1656b8e8fa0fbfef20d1ad2bb3165d9dce44aa14c745bbc79293de7acb57eb_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:008129ab8f9985cd17446e2f7a27951bda1f8ffebbe677ab6aac7697b11138a9_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-api-provider-azure-rhel8@sha256:008129ab8f9985cd17446e2f7a27951bda1f8ffebbe677ab6aac7697b11138a9_arm64" + }, + "product_reference": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:008129ab8f9985cd17446e2f7a27951bda1f8ffebbe677ab6aac7697b11138a9_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:fba2f328877bd58d00d1b65f2443aba783f9b812de06c16aeb999b539e4e2008_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-api-provider-azure-rhel8@sha256:fba2f328877bd58d00d1b65f2443aba783f9b812de06c16aeb999b539e4e2008_amd64" + }, + "product_reference": "openshift4/ose-machine-api-provider-azure-rhel8@sha256:fba2f328877bd58d00d1b65f2443aba783f9b812de06c16aeb999b539e4e2008_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:4a909f3e3d340aeb32ab926a7c9ef48d7b0285165bc074b3241bf5754eb8df7e_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-api-provider-gcp-rhel8@sha256:4a909f3e3d340aeb32ab926a7c9ef48d7b0285165bc074b3241bf5754eb8df7e_ppc64le" + }, + "product_reference": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:4a909f3e3d340aeb32ab926a7c9ef48d7b0285165bc074b3241bf5754eb8df7e_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:4b7863bbadb12e971260e4cc13837abb1c4e75911d9ce298c5315b94a804e186_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-api-provider-gcp-rhel8@sha256:4b7863bbadb12e971260e4cc13837abb1c4e75911d9ce298c5315b94a804e186_arm64" + }, + "product_reference": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:4b7863bbadb12e971260e4cc13837abb1c4e75911d9ce298c5315b94a804e186_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:9c9fd2e5aeebfd10289db5a2e11c367e723452d44c4e7930bf389c77d6eca405_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-api-provider-gcp-rhel8@sha256:9c9fd2e5aeebfd10289db5a2e11c367e723452d44c4e7930bf389c77d6eca405_amd64" + }, + "product_reference": "openshift4/ose-machine-api-provider-gcp-rhel8@sha256:9c9fd2e5aeebfd10289db5a2e11c367e723452d44c4e7930bf389c77d6eca405_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:587ca7a55dcbb4d9ac3b3fe4665430ded6f77f97e4287728195fc0c195a9a878_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-api-provider-openstack-rhel8@sha256:587ca7a55dcbb4d9ac3b3fe4665430ded6f77f97e4287728195fc0c195a9a878_s390x" + }, + "product_reference": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:587ca7a55dcbb4d9ac3b3fe4665430ded6f77f97e4287728195fc0c195a9a878_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:691690fd73e23aa1305c51ab100a042df245281845d6a1e185145784507d2f71_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-api-provider-openstack-rhel8@sha256:691690fd73e23aa1305c51ab100a042df245281845d6a1e185145784507d2f71_arm64" + }, + "product_reference": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:691690fd73e23aa1305c51ab100a042df245281845d6a1e185145784507d2f71_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:d160bb82f5e1a0249a815cf0bac74ecda37b262356cde2a4087b65d61515434c_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-api-provider-openstack-rhel8@sha256:d160bb82f5e1a0249a815cf0bac74ecda37b262356cde2a4087b65d61515434c_ppc64le" + }, + "product_reference": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:d160bb82f5e1a0249a815cf0bac74ecda37b262356cde2a4087b65d61515434c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:dba5e91a3ec753983442bd22f1435d99d506954dbf615e7fbd97f3772222561d_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-api-provider-openstack-rhel8@sha256:dba5e91a3ec753983442bd22f1435d99d506954dbf615e7fbd97f3772222561d_amd64" + }, + "product_reference": "openshift4/ose-machine-api-provider-openstack-rhel8@sha256:dba5e91a3ec753983442bd22f1435d99d506954dbf615e7fbd97f3772222561d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-config-operator@sha256:3688380a41a2ecd293ee096ee6e394bbe6d4ba9115016b11c67b6ec3d7a28ac2_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-config-operator@sha256:3688380a41a2ecd293ee096ee6e394bbe6d4ba9115016b11c67b6ec3d7a28ac2_arm64" + }, + "product_reference": "openshift4/ose-machine-config-operator@sha256:3688380a41a2ecd293ee096ee6e394bbe6d4ba9115016b11c67b6ec3d7a28ac2_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-config-operator@sha256:4944575ec284d508b3c5950a2246e614e5f1364add2e412507da7eb73da45bc4_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-config-operator@sha256:4944575ec284d508b3c5950a2246e614e5f1364add2e412507da7eb73da45bc4_amd64" + }, + "product_reference": "openshift4/ose-machine-config-operator@sha256:4944575ec284d508b3c5950a2246e614e5f1364add2e412507da7eb73da45bc4_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-config-operator@sha256:684d8cae61c32c141ea526b843342260ce05f3d6852714ff3f9054a60fd98201_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-config-operator@sha256:684d8cae61c32c141ea526b843342260ce05f3d6852714ff3f9054a60fd98201_s390x" + }, + "product_reference": "openshift4/ose-machine-config-operator@sha256:684d8cae61c32c141ea526b843342260ce05f3d6852714ff3f9054a60fd98201_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-config-operator@sha256:d46c1390ff5ec2467181d9d1642a391edfb6df680eb5dccf189740706671d85a_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-config-operator@sha256:d46c1390ff5ec2467181d9d1642a391edfb6df680eb5dccf189740706671d85a_ppc64le" + }, + "product_reference": "openshift4/ose-machine-config-operator@sha256:d46c1390ff5ec2467181d9d1642a391edfb6df680eb5dccf189740706671d85a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:27039fbb5a6823be034a46c591754f601ced02600227ec9e827bc8d4ffe991ee_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-os-images-rhel8@sha256:27039fbb5a6823be034a46c591754f601ced02600227ec9e827bc8d4ffe991ee_ppc64le" + }, + "product_reference": "openshift4/ose-machine-os-images-rhel8@sha256:27039fbb5a6823be034a46c591754f601ced02600227ec9e827bc8d4ffe991ee_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:4a6ae78ff8ff20c9a8fe02cf06402627b5579af1c2ab2e0805ef35309e22aa16_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-os-images-rhel8@sha256:4a6ae78ff8ff20c9a8fe02cf06402627b5579af1c2ab2e0805ef35309e22aa16_amd64" + }, + "product_reference": "openshift4/ose-machine-os-images-rhel8@sha256:4a6ae78ff8ff20c9a8fe02cf06402627b5579af1c2ab2e0805ef35309e22aa16_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:69f23e8a3b24f38f3c57b1fc1084b42b03100dc71e626369a3992a4b47a6b5de_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-os-images-rhel8@sha256:69f23e8a3b24f38f3c57b1fc1084b42b03100dc71e626369a3992a4b47a6b5de_amd64" + }, + "product_reference": "openshift4/ose-machine-os-images-rhel8@sha256:69f23e8a3b24f38f3c57b1fc1084b42b03100dc71e626369a3992a4b47a6b5de_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:94fc38b0cf16a58add83fcabd48a19307d39522d00f40751c53c8a0be7eec344_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-os-images-rhel8@sha256:94fc38b0cf16a58add83fcabd48a19307d39522d00f40751c53c8a0be7eec344_arm64" + }, + "product_reference": "openshift4/ose-machine-os-images-rhel8@sha256:94fc38b0cf16a58add83fcabd48a19307d39522d00f40751c53c8a0be7eec344_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:b9ffb98f6eeb3b2a491a515ccdec0edd1bcd34e171f0282ad2364d6abfc65a8b_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-os-images-rhel8@sha256:b9ffb98f6eeb3b2a491a515ccdec0edd1bcd34e171f0282ad2364d6abfc65a8b_ppc64le" + }, + "product_reference": "openshift4/ose-machine-os-images-rhel8@sha256:b9ffb98f6eeb3b2a491a515ccdec0edd1bcd34e171f0282ad2364d6abfc65a8b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-machine-os-images-rhel8@sha256:c5d1c78280f88bd8989dace00be9b0b4cdf0c03f6159b7e367241afc6e6f2be9_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-machine-os-images-rhel8@sha256:c5d1c78280f88bd8989dace00be9b0b4cdf0c03f6159b7e367241afc6e6f2be9_arm64" + }, + "product_reference": "openshift4/ose-machine-os-images-rhel8@sha256:c5d1c78280f88bd8989dace00be9b0b4cdf0c03f6159b7e367241afc6e6f2be9_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-monitoring-plugin-rhel8@sha256:5b00d4acc8aa27be7b4e731d8215a313a9395a553030dfaa3eb35aea154abbf3_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-monitoring-plugin-rhel8@sha256:5b00d4acc8aa27be7b4e731d8215a313a9395a553030dfaa3eb35aea154abbf3_s390x" + }, + "product_reference": "openshift4/ose-monitoring-plugin-rhel8@sha256:5b00d4acc8aa27be7b4e731d8215a313a9395a553030dfaa3eb35aea154abbf3_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-monitoring-plugin-rhel8@sha256:a19a419b9c063b094ffd5429da46a14932725d2b369f33cde7c5e86c8a6eddc9_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-monitoring-plugin-rhel8@sha256:a19a419b9c063b094ffd5429da46a14932725d2b369f33cde7c5e86c8a6eddc9_ppc64le" + }, + "product_reference": "openshift4/ose-monitoring-plugin-rhel8@sha256:a19a419b9c063b094ffd5429da46a14932725d2b369f33cde7c5e86c8a6eddc9_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-monitoring-plugin-rhel8@sha256:c2f0ebc6a0b1cbf8a4f51036c7559c33b3fe803e482bf1423dd6909a3d60e0c2_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-monitoring-plugin-rhel8@sha256:c2f0ebc6a0b1cbf8a4f51036c7559c33b3fe803e482bf1423dd6909a3d60e0c2_arm64" + }, + "product_reference": "openshift4/ose-monitoring-plugin-rhel8@sha256:c2f0ebc6a0b1cbf8a4f51036c7559c33b3fe803e482bf1423dd6909a3d60e0c2_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-monitoring-plugin-rhel8@sha256:eef95d7fa962e8b5dc8ae7286304cbe578e20ff8cfde9e8127cda6ac0f3b8538_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-monitoring-plugin-rhel8@sha256:eef95d7fa962e8b5dc8ae7286304cbe578e20ff8cfde9e8127cda6ac0f3b8538_amd64" + }, + "product_reference": "openshift4/ose-monitoring-plugin-rhel8@sha256:eef95d7fa962e8b5dc8ae7286304cbe578e20ff8cfde9e8127cda6ac0f3b8538_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-admission-controller@sha256:21b41656a1266536672e669c4bc3b493c5ec6264b82e9f76d1f990e5fe3c73f8_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-multus-admission-controller@sha256:21b41656a1266536672e669c4bc3b493c5ec6264b82e9f76d1f990e5fe3c73f8_arm64" + }, + "product_reference": "openshift4/ose-multus-admission-controller@sha256:21b41656a1266536672e669c4bc3b493c5ec6264b82e9f76d1f990e5fe3c73f8_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-admission-controller@sha256:26c0d623ad84619ffb13c856148a2d64338955208aa94b1bbfa78c75f6b2b9aa_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-multus-admission-controller@sha256:26c0d623ad84619ffb13c856148a2d64338955208aa94b1bbfa78c75f6b2b9aa_ppc64le" + }, + "product_reference": "openshift4/ose-multus-admission-controller@sha256:26c0d623ad84619ffb13c856148a2d64338955208aa94b1bbfa78c75f6b2b9aa_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-admission-controller@sha256:47ef762644ebc59350db0faae4db22dabead71f419ccf83b9f361420d75b0ed7_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-multus-admission-controller@sha256:47ef762644ebc59350db0faae4db22dabead71f419ccf83b9f361420d75b0ed7_amd64" + }, + "product_reference": "openshift4/ose-multus-admission-controller@sha256:47ef762644ebc59350db0faae4db22dabead71f419ccf83b9f361420d75b0ed7_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-admission-controller@sha256:ab8f39b660364c79990d3e666b37f5800c34d49be69c266e91120de448d76674_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-multus-admission-controller@sha256:ab8f39b660364c79990d3e666b37f5800c34d49be69c266e91120de448d76674_s390x" + }, + "product_reference": "openshift4/ose-multus-admission-controller@sha256:ab8f39b660364c79990d3e666b37f5800c34d49be69c266e91120de448d76674_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-cni@sha256:25eaf1ae453b8374eb1464e3ce53161dcfa7bbf4f1c92e0855d7fab5a7397b0e_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-multus-cni@sha256:25eaf1ae453b8374eb1464e3ce53161dcfa7bbf4f1c92e0855d7fab5a7397b0e_amd64" + }, + "product_reference": "openshift4/ose-multus-cni@sha256:25eaf1ae453b8374eb1464e3ce53161dcfa7bbf4f1c92e0855d7fab5a7397b0e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-cni@sha256:b7bfb9d813ea6e3da2c2d7eabaa6ed944f68f53f87b10605b4236ab386976dd4_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-multus-cni@sha256:b7bfb9d813ea6e3da2c2d7eabaa6ed944f68f53f87b10605b4236ab386976dd4_s390x" + }, + "product_reference": "openshift4/ose-multus-cni@sha256:b7bfb9d813ea6e3da2c2d7eabaa6ed944f68f53f87b10605b4236ab386976dd4_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-cni@sha256:b7c4588dc7fd561c850a9c330358d3dc1f6eaa4488df11c8a61bb5df15536e16_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-multus-cni@sha256:b7c4588dc7fd561c850a9c330358d3dc1f6eaa4488df11c8a61bb5df15536e16_ppc64le" + }, + "product_reference": "openshift4/ose-multus-cni@sha256:b7c4588dc7fd561c850a9c330358d3dc1f6eaa4488df11c8a61bb5df15536e16_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-cni@sha256:c193de4be6b8146a47353ba01fc115813795fcebced322e65e8a65dba977746f_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-multus-cni@sha256:c193de4be6b8146a47353ba01fc115813795fcebced322e65e8a65dba977746f_arm64" + }, + "product_reference": "openshift4/ose-multus-cni@sha256:c193de4be6b8146a47353ba01fc115813795fcebced322e65e8a65dba977746f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:26559d1fa110081ec584e744a915964a73175abbd43cb155987788e9af1dc6a5_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-multus-networkpolicy-rhel8@sha256:26559d1fa110081ec584e744a915964a73175abbd43cb155987788e9af1dc6a5_amd64" + }, + "product_reference": "openshift4/ose-multus-networkpolicy-rhel8@sha256:26559d1fa110081ec584e744a915964a73175abbd43cb155987788e9af1dc6a5_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:2efe60b6cf737a9485dcc8ee0d6c0c59c86d3ea1c2d212a78e85459696a558a1_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-multus-networkpolicy-rhel8@sha256:2efe60b6cf737a9485dcc8ee0d6c0c59c86d3ea1c2d212a78e85459696a558a1_arm64" + }, + "product_reference": "openshift4/ose-multus-networkpolicy-rhel8@sha256:2efe60b6cf737a9485dcc8ee0d6c0c59c86d3ea1c2d212a78e85459696a558a1_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:55bddd1c8143c09757c180554f96a5183d2960210d57152c130bbdeb53c6835a_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-multus-networkpolicy-rhel8@sha256:55bddd1c8143c09757c180554f96a5183d2960210d57152c130bbdeb53c6835a_ppc64le" + }, + "product_reference": "openshift4/ose-multus-networkpolicy-rhel8@sha256:55bddd1c8143c09757c180554f96a5183d2960210d57152c130bbdeb53c6835a_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:5d1bdf6977b4d9b06bc630862f04d1573c32a1b4aab200cea76417436eca0d40_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-multus-networkpolicy-rhel8@sha256:5d1bdf6977b4d9b06bc630862f04d1573c32a1b4aab200cea76417436eca0d40_s390x" + }, + "product_reference": "openshift4/ose-multus-networkpolicy-rhel8@sha256:5d1bdf6977b4d9b06bc630862f04d1573c32a1b4aab200cea76417436eca0d40_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:6da272e9b3f8ac035999d475a01475f419de101233627eff9fb1fc79708fb389_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-multus-networkpolicy-rhel8@sha256:6da272e9b3f8ac035999d475a01475f419de101233627eff9fb1fc79708fb389_s390x" + }, + "product_reference": "openshift4/ose-multus-networkpolicy-rhel8@sha256:6da272e9b3f8ac035999d475a01475f419de101233627eff9fb1fc79708fb389_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:74a2cfe9cf3eeef58476a02e27d56e616db61a2d019a275171ab24d070c0fbf1_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-multus-networkpolicy-rhel8@sha256:74a2cfe9cf3eeef58476a02e27d56e616db61a2d019a275171ab24d070c0fbf1_amd64" + }, + "product_reference": "openshift4/ose-multus-networkpolicy-rhel8@sha256:74a2cfe9cf3eeef58476a02e27d56e616db61a2d019a275171ab24d070c0fbf1_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:8412447454b801bc73d7a993b787c989d8ecc1812c3a4fc506e044dd190c7e50_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-multus-networkpolicy-rhel8@sha256:8412447454b801bc73d7a993b787c989d8ecc1812c3a4fc506e044dd190c7e50_arm64" + }, + "product_reference": "openshift4/ose-multus-networkpolicy-rhel8@sha256:8412447454b801bc73d7a993b787c989d8ecc1812c3a4fc506e044dd190c7e50_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-networkpolicy-rhel8@sha256:8d657db2d316d170aa58e1895369bb4d0a1995018fa31e8eda90db8129d3a7e3_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-multus-networkpolicy-rhel8@sha256:8d657db2d316d170aa58e1895369bb4d0a1995018fa31e8eda90db8129d3a7e3_ppc64le" + }, + "product_reference": "openshift4/ose-multus-networkpolicy-rhel8@sha256:8d657db2d316d170aa58e1895369bb4d0a1995018fa31e8eda90db8129d3a7e3_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:167bccbff750c1b34fbe7367f49f39efcc57dbd836e728a829c85609d61bd5cc_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-multus-route-override-cni-rhel8@sha256:167bccbff750c1b34fbe7367f49f39efcc57dbd836e728a829c85609d61bd5cc_ppc64le" + }, + "product_reference": "openshift4/ose-multus-route-override-cni-rhel8@sha256:167bccbff750c1b34fbe7367f49f39efcc57dbd836e728a829c85609d61bd5cc_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:1fce85c04616391ce416e6f52ae6343fd28449ac96bb08a73932e9a14b2f507c_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-multus-route-override-cni-rhel8@sha256:1fce85c04616391ce416e6f52ae6343fd28449ac96bb08a73932e9a14b2f507c_s390x" + }, + "product_reference": "openshift4/ose-multus-route-override-cni-rhel8@sha256:1fce85c04616391ce416e6f52ae6343fd28449ac96bb08a73932e9a14b2f507c_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:b4cdd0e77a6e0cded703addf8f40293fa6bbbe7bcf02cc87e2eabea2c6ce1221_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-multus-route-override-cni-rhel8@sha256:b4cdd0e77a6e0cded703addf8f40293fa6bbbe7bcf02cc87e2eabea2c6ce1221_amd64" + }, + "product_reference": "openshift4/ose-multus-route-override-cni-rhel8@sha256:b4cdd0e77a6e0cded703addf8f40293fa6bbbe7bcf02cc87e2eabea2c6ce1221_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-route-override-cni-rhel8@sha256:c9181cd852d44f5c2092df6d9a581f5908e3f21bc48d1b874ec07e4cbe546242_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-multus-route-override-cni-rhel8@sha256:c9181cd852d44f5c2092df6d9a581f5908e3f21bc48d1b874ec07e4cbe546242_arm64" + }, + "product_reference": "openshift4/ose-multus-route-override-cni-rhel8@sha256:c9181cd852d44f5c2092df6d9a581f5908e3f21bc48d1b874ec07e4cbe546242_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:04ae36738e54eea826a195785023bd62584cd73c57e7cf8582f14f4cee211c7e_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:04ae36738e54eea826a195785023bd62584cd73c57e7cf8582f14f4cee211c7e_s390x" + }, + "product_reference": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:04ae36738e54eea826a195785023bd62584cd73c57e7cf8582f14f4cee211c7e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:28975999f00a6cf667a304e66dda420a9255f21b44c8011487ec9bdff0007de6_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:28975999f00a6cf667a304e66dda420a9255f21b44c8011487ec9bdff0007de6_arm64" + }, + "product_reference": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:28975999f00a6cf667a304e66dda420a9255f21b44c8011487ec9bdff0007de6_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:99bd30c0eb8bafcccdbe110f492832386d5ebec96b1c4300fc9599888820ee4e_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:99bd30c0eb8bafcccdbe110f492832386d5ebec96b1c4300fc9599888820ee4e_ppc64le" + }, + "product_reference": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:99bd30c0eb8bafcccdbe110f492832386d5ebec96b1c4300fc9599888820ee4e_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ba04ae3e4a2edb6105fde74f4c6e5a654b9fbfa7345b0559bbcef0e6fedc548e_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ba04ae3e4a2edb6105fde74f4c6e5a654b9fbfa7345b0559bbcef0e6fedc548e_amd64" + }, + "product_reference": "openshift4/ose-multus-whereabouts-ipam-cni-rhel8@sha256:ba04ae3e4a2edb6105fde74f4c6e5a654b9fbfa7345b0559bbcef0e6fedc548e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-must-gather@sha256:66c97688016bb1ea003321b214f3dd742473863caedac0370dc848b3f377c635_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-must-gather@sha256:66c97688016bb1ea003321b214f3dd742473863caedac0370dc848b3f377c635_amd64" + }, + "product_reference": "openshift4/ose-must-gather@sha256:66c97688016bb1ea003321b214f3dd742473863caedac0370dc848b3f377c635_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-must-gather@sha256:6af389fa78ac1b941bce8fe971cf76a8a2e80ba0ac8c0ab607b32a2639e31e22_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-must-gather@sha256:6af389fa78ac1b941bce8fe971cf76a8a2e80ba0ac8c0ab607b32a2639e31e22_arm64" + }, + "product_reference": "openshift4/ose-must-gather@sha256:6af389fa78ac1b941bce8fe971cf76a8a2e80ba0ac8c0ab607b32a2639e31e22_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-must-gather@sha256:710bfc5a7fffed40723911c858a9969f4e3b60553af7bab5046bf9fd7b9e63e6_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-must-gather@sha256:710bfc5a7fffed40723911c858a9969f4e3b60553af7bab5046bf9fd7b9e63e6_ppc64le" + }, + "product_reference": "openshift4/ose-must-gather@sha256:710bfc5a7fffed40723911c858a9969f4e3b60553af7bab5046bf9fd7b9e63e6_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-must-gather@sha256:82239eb071f3215d5241545a510d95b1284666aca0610cb550fa494d620a91db_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-must-gather@sha256:82239eb071f3215d5241545a510d95b1284666aca0610cb550fa494d620a91db_s390x" + }, + "product_reference": "openshift4/ose-must-gather@sha256:82239eb071f3215d5241545a510d95b1284666aca0610cb550fa494d620a91db_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:212d41b0fe5118d5f1c7c30e8a4016fcb2cf8473935c7b1e7cdd96b9fb39e89e_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-network-interface-bond-cni-rhel8@sha256:212d41b0fe5118d5f1c7c30e8a4016fcb2cf8473935c7b1e7cdd96b9fb39e89e_s390x" + }, + "product_reference": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:212d41b0fe5118d5f1c7c30e8a4016fcb2cf8473935c7b1e7cdd96b9fb39e89e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:27b031e7106c04e0272cd0c20c4d184b0b83a952efe64808c74d701407bb5c33_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-network-interface-bond-cni-rhel8@sha256:27b031e7106c04e0272cd0c20c4d184b0b83a952efe64808c74d701407bb5c33_amd64" + }, + "product_reference": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:27b031e7106c04e0272cd0c20c4d184b0b83a952efe64808c74d701407bb5c33_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:b9231c133401ffb459b517ce67f0f57680fdacf8dee7d6415e2499b2548349a2_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-network-interface-bond-cni-rhel8@sha256:b9231c133401ffb459b517ce67f0f57680fdacf8dee7d6415e2499b2548349a2_arm64" + }, + "product_reference": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:b9231c133401ffb459b517ce67f0f57680fdacf8dee7d6415e2499b2548349a2_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:d8b698cc027e5a1faf09cac0684fcdc7b7e08bb531520a2e200a50935143bba7_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-network-interface-bond-cni-rhel8@sha256:d8b698cc027e5a1faf09cac0684fcdc7b7e08bb531520a2e200a50935143bba7_ppc64le" + }, + "product_reference": "openshift4/ose-network-interface-bond-cni-rhel8@sha256:d8b698cc027e5a1faf09cac0684fcdc7b7e08bb531520a2e200a50935143bba7_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:0ad1d9feb1c5c9eb26d49fa2c2be59518b7d8ad7d6eaf31a43302f67bcf4c9bd_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-network-metrics-daemon-rhel8@sha256:0ad1d9feb1c5c9eb26d49fa2c2be59518b7d8ad7d6eaf31a43302f67bcf4c9bd_s390x" + }, + "product_reference": "openshift4/ose-network-metrics-daemon-rhel8@sha256:0ad1d9feb1c5c9eb26d49fa2c2be59518b7d8ad7d6eaf31a43302f67bcf4c9bd_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:2bbde5d22844f79ee08069be9d12ad61d8365b872e10bbd99d1d7a25b3c143c5_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-network-metrics-daemon-rhel8@sha256:2bbde5d22844f79ee08069be9d12ad61d8365b872e10bbd99d1d7a25b3c143c5_s390x" + }, + "product_reference": "openshift4/ose-network-metrics-daemon-rhel8@sha256:2bbde5d22844f79ee08069be9d12ad61d8365b872e10bbd99d1d7a25b3c143c5_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:6ff789875d553ba1aa167b0c0268d31f1d7f6bb5fc1ed9ee4e99b3bbcf6a2b79_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-network-metrics-daemon-rhel8@sha256:6ff789875d553ba1aa167b0c0268d31f1d7f6bb5fc1ed9ee4e99b3bbcf6a2b79_ppc64le" + }, + "product_reference": "openshift4/ose-network-metrics-daemon-rhel8@sha256:6ff789875d553ba1aa167b0c0268d31f1d7f6bb5fc1ed9ee4e99b3bbcf6a2b79_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:927258c693f361224a019d437db3c80edf648cf0c1153be42554de1b4cea8b87_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-network-metrics-daemon-rhel8@sha256:927258c693f361224a019d437db3c80edf648cf0c1153be42554de1b4cea8b87_amd64" + }, + "product_reference": "openshift4/ose-network-metrics-daemon-rhel8@sha256:927258c693f361224a019d437db3c80edf648cf0c1153be42554de1b4cea8b87_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:dcb2e4d0536ebead329ab0ce74a6612b41dee10dbf1e2d6409446ad8bcadb78d_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-network-metrics-daemon-rhel8@sha256:dcb2e4d0536ebead329ab0ce74a6612b41dee10dbf1e2d6409446ad8bcadb78d_amd64" + }, + "product_reference": "openshift4/ose-network-metrics-daemon-rhel8@sha256:dcb2e4d0536ebead329ab0ce74a6612b41dee10dbf1e2d6409446ad8bcadb78d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:e3076414f3fe0659c7e7655892438b93a6acb429ca2a71669e005dc690e86300_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-network-metrics-daemon-rhel8@sha256:e3076414f3fe0659c7e7655892438b93a6acb429ca2a71669e005dc690e86300_arm64" + }, + "product_reference": "openshift4/ose-network-metrics-daemon-rhel8@sha256:e3076414f3fe0659c7e7655892438b93a6acb429ca2a71669e005dc690e86300_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:ee2f18f9f8ff9ebdd0813e5f8afe6a49207c0ae66b9e799fba69b4dcaf237297_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-network-metrics-daemon-rhel8@sha256:ee2f18f9f8ff9ebdd0813e5f8afe6a49207c0ae66b9e799fba69b4dcaf237297_ppc64le" + }, + "product_reference": "openshift4/ose-network-metrics-daemon-rhel8@sha256:ee2f18f9f8ff9ebdd0813e5f8afe6a49207c0ae66b9e799fba69b4dcaf237297_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-network-metrics-daemon-rhel8@sha256:facd71815f28f6514fc981ac60d60461024e573a7705c9cd1bb3786dd8cd6c95_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-network-metrics-daemon-rhel8@sha256:facd71815f28f6514fc981ac60d60461024e573a7705c9cd1bb3786dd8cd6c95_arm64" + }, + "product_reference": "openshift4/ose-network-metrics-daemon-rhel8@sha256:facd71815f28f6514fc981ac60d60461024e573a7705c9cd1bb3786dd8cd6c95_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-node-feature-discovery@sha256:0075c2c6827aa2cdf0ee085ef9b062df4580a2c8b45e7cdbcf5d9c4f077c5424_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-node-feature-discovery@sha256:0075c2c6827aa2cdf0ee085ef9b062df4580a2c8b45e7cdbcf5d9c4f077c5424_ppc64le" + }, + "product_reference": "openshift4/ose-node-feature-discovery@sha256:0075c2c6827aa2cdf0ee085ef9b062df4580a2c8b45e7cdbcf5d9c4f077c5424_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-node-feature-discovery@sha256:021df48bb7c613b839958b5d6305ebd52857bcdc53b45b13c7e70b027448da35_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-node-feature-discovery@sha256:021df48bb7c613b839958b5d6305ebd52857bcdc53b45b13c7e70b027448da35_arm64" + }, + "product_reference": "openshift4/ose-node-feature-discovery@sha256:021df48bb7c613b839958b5d6305ebd52857bcdc53b45b13c7e70b027448da35_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-node-feature-discovery@sha256:1fd0391d7b24a525e3ac1611b62d0d41b61249e2e9a9102a7a35df3b90452262_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-node-feature-discovery@sha256:1fd0391d7b24a525e3ac1611b62d0d41b61249e2e9a9102a7a35df3b90452262_amd64" + }, + "product_reference": "openshift4/ose-node-feature-discovery@sha256:1fd0391d7b24a525e3ac1611b62d0d41b61249e2e9a9102a7a35df3b90452262_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-node-feature-discovery@sha256:db46199874d977479dd808b7b4355b79ffc44108c0b05b44e5edc34549027723_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-node-feature-discovery@sha256:db46199874d977479dd808b7b4355b79ffc44108c0b05b44e5edc34549027723_s390x" + }, + "product_reference": "openshift4/ose-node-feature-discovery@sha256:db46199874d977479dd808b7b4355b79ffc44108c0b05b44e5edc34549027723_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-node-problem-detector-rhel8@sha256:29dea91e42796fd91071f4985754556ae8f25c33901deb640385b86a2fe30151_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-node-problem-detector-rhel8@sha256:29dea91e42796fd91071f4985754556ae8f25c33901deb640385b86a2fe30151_s390x" + }, + "product_reference": "openshift4/ose-node-problem-detector-rhel8@sha256:29dea91e42796fd91071f4985754556ae8f25c33901deb640385b86a2fe30151_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-node-problem-detector-rhel8@sha256:51cdb3175e2410b824138d866779ce10cbfb1766f8e956a9f5e78e87716404f1_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-node-problem-detector-rhel8@sha256:51cdb3175e2410b824138d866779ce10cbfb1766f8e956a9f5e78e87716404f1_amd64" + }, + "product_reference": "openshift4/ose-node-problem-detector-rhel8@sha256:51cdb3175e2410b824138d866779ce10cbfb1766f8e956a9f5e78e87716404f1_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-node-problem-detector-rhel8@sha256:c5f8bb7bea48601a7027dfef6b3834ccaaa32f5c0d888ed809c9e11c33c1c174_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-node-problem-detector-rhel8@sha256:c5f8bb7bea48601a7027dfef6b3834ccaaa32f5c0d888ed809c9e11c33c1c174_ppc64le" + }, + "product_reference": "openshift4/ose-node-problem-detector-rhel8@sha256:c5f8bb7bea48601a7027dfef6b3834ccaaa32f5c0d888ed809c9e11c33c1c174_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-node-problem-detector-rhel8@sha256:cd75ba5acf30ff7de85caca4522cb9c47b8ec1a971a45ebae0c425add51fe14e_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-node-problem-detector-rhel8@sha256:cd75ba5acf30ff7de85caca4522cb9c47b8ec1a971a45ebae0c425add51fe14e_arm64" + }, + "product_reference": "openshift4/ose-node-problem-detector-rhel8@sha256:cd75ba5acf30ff7de85caca4522cb9c47b8ec1a971a45ebae0c425add51fe14e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:e8a797e9c7b2ae730ce2ef1c8aee459eeac515e283da61de7d4856c5772dea34_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:e8a797e9c7b2ae730ce2ef1c8aee459eeac515e283da61de7d4856c5772dea34_amd64" + }, + "product_reference": "openshift4/ose-nutanix-cloud-controller-manager-rhel8@sha256:e8a797e9c7b2ae730ce2ef1c8aee459eeac515e283da61de7d4856c5772dea34_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-nutanix-machine-controllers-rhel8@sha256:65772d8620107110301a37fe727f6ecbd4228ec9e5e5de54cf0628e449e2431c_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-nutanix-machine-controllers-rhel8@sha256:65772d8620107110301a37fe727f6ecbd4228ec9e5e5de54cf0628e449e2431c_amd64" + }, + "product_reference": "openshift4/ose-nutanix-machine-controllers-rhel8@sha256:65772d8620107110301a37fe727f6ecbd4228ec9e5e5de54cf0628e449e2431c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:4a00ea2a8734b1aa917b3b63da79ddb2fa8ef043ebe2cacb2d1d6454e18c5e70_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-oauth-apiserver-rhel8@sha256:4a00ea2a8734b1aa917b3b63da79ddb2fa8ef043ebe2cacb2d1d6454e18c5e70_s390x" + }, + "product_reference": "openshift4/ose-oauth-apiserver-rhel8@sha256:4a00ea2a8734b1aa917b3b63da79ddb2fa8ef043ebe2cacb2d1d6454e18c5e70_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:5048857b1a19acd5653c398ff76eea37e2b78266c3a85000b8aee44cd0145887_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-oauth-apiserver-rhel8@sha256:5048857b1a19acd5653c398ff76eea37e2b78266c3a85000b8aee44cd0145887_arm64" + }, + "product_reference": "openshift4/ose-oauth-apiserver-rhel8@sha256:5048857b1a19acd5653c398ff76eea37e2b78266c3a85000b8aee44cd0145887_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:c058d224b3469bf97194156675cb889b32023daadb5705243c61a53abc830c88_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-oauth-apiserver-rhel8@sha256:c058d224b3469bf97194156675cb889b32023daadb5705243c61a53abc830c88_amd64" + }, + "product_reference": "openshift4/ose-oauth-apiserver-rhel8@sha256:c058d224b3469bf97194156675cb889b32023daadb5705243c61a53abc830c88_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-apiserver-rhel8@sha256:f7a5f4c5f35b5694ee860c647107131b42b8d959803ae4425e473e128230f43c_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-oauth-apiserver-rhel8@sha256:f7a5f4c5f35b5694ee860c647107131b42b8d959803ae4425e473e128230f43c_ppc64le" + }, + "product_reference": "openshift4/ose-oauth-apiserver-rhel8@sha256:f7a5f4c5f35b5694ee860c647107131b42b8d959803ae4425e473e128230f43c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-proxy@sha256:13d156235fd69183a23f8936330c7180d92b535e2e8abda4623a3820d4e33915_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-oauth-proxy@sha256:13d156235fd69183a23f8936330c7180d92b535e2e8abda4623a3820d4e33915_s390x" + }, + "product_reference": "openshift4/ose-oauth-proxy@sha256:13d156235fd69183a23f8936330c7180d92b535e2e8abda4623a3820d4e33915_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-proxy@sha256:68d106c82e09c17fee89f7a41565796fa74fb9b81214bfc7f33da5b96ae96de8_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-oauth-proxy@sha256:68d106c82e09c17fee89f7a41565796fa74fb9b81214bfc7f33da5b96ae96de8_ppc64le" + }, + "product_reference": "openshift4/ose-oauth-proxy@sha256:68d106c82e09c17fee89f7a41565796fa74fb9b81214bfc7f33da5b96ae96de8_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-proxy@sha256:b85d14fab34e13b5aaac1b97cf413357afcd639fe7e3ae624b1fe82d86050ba8_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-oauth-proxy@sha256:b85d14fab34e13b5aaac1b97cf413357afcd639fe7e3ae624b1fe82d86050ba8_arm64" + }, + "product_reference": "openshift4/ose-oauth-proxy@sha256:b85d14fab34e13b5aaac1b97cf413357afcd639fe7e3ae624b1fe82d86050ba8_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-proxy@sha256:fd83ede5b14b89d73053f6828ba54e9edaab130b9297707141f4022a7e4aa55b_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-oauth-proxy@sha256:fd83ede5b14b89d73053f6828ba54e9edaab130b9297707141f4022a7e4aa55b_amd64" + }, + "product_reference": "openshift4/ose-oauth-proxy@sha256:fd83ede5b14b89d73053f6828ba54e9edaab130b9297707141f4022a7e4aa55b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:60ebf2880f4ebd96c22bcdeb50e9ec991c70ac5b37c14128df53cc528dd15249_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-oauth-server-rhel8@sha256:60ebf2880f4ebd96c22bcdeb50e9ec991c70ac5b37c14128df53cc528dd15249_amd64" + }, + "product_reference": "openshift4/ose-oauth-server-rhel8@sha256:60ebf2880f4ebd96c22bcdeb50e9ec991c70ac5b37c14128df53cc528dd15249_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:94f04a4025dfb3d7738d037293683264466d48169a1b65c92f5e84cd72009f33_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-oauth-server-rhel8@sha256:94f04a4025dfb3d7738d037293683264466d48169a1b65c92f5e84cd72009f33_arm64" + }, + "product_reference": "openshift4/ose-oauth-server-rhel8@sha256:94f04a4025dfb3d7738d037293683264466d48169a1b65c92f5e84cd72009f33_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:e1e452691851a5812c57c207fa8b41cfe6578a91f3fab61f17a59a0b54c9d01f_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-oauth-server-rhel8@sha256:e1e452691851a5812c57c207fa8b41cfe6578a91f3fab61f17a59a0b54c9d01f_ppc64le" + }, + "product_reference": "openshift4/ose-oauth-server-rhel8@sha256:e1e452691851a5812c57c207fa8b41cfe6578a91f3fab61f17a59a0b54c9d01f_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-oauth-server-rhel8@sha256:e209d08f079d1c88ddaafc7255f9297db767b86870d54e44bcc1cdf47ad839a6_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-oauth-server-rhel8@sha256:e209d08f079d1c88ddaafc7255f9297db767b86870d54e44bcc1cdf47ad839a6_s390x" + }, + "product_reference": "openshift4/ose-oauth-server-rhel8@sha256:e209d08f079d1c88ddaafc7255f9297db767b86870d54e44bcc1cdf47ad839a6_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-olm-catalogd-rhel8@sha256:0b95de280c51c3f8829f4a4f2c4ad5867fff22645beb7386baaa1ad45b98cd25_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-olm-catalogd-rhel8@sha256:0b95de280c51c3f8829f4a4f2c4ad5867fff22645beb7386baaa1ad45b98cd25_arm64" + }, + "product_reference": "openshift4/ose-olm-catalogd-rhel8@sha256:0b95de280c51c3f8829f4a4f2c4ad5867fff22645beb7386baaa1ad45b98cd25_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-olm-catalogd-rhel8@sha256:7eb406180e223f0abfe4d5a908369e97efa3478a9ea67dc9771b5357f6f2c6a3_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-olm-catalogd-rhel8@sha256:7eb406180e223f0abfe4d5a908369e97efa3478a9ea67dc9771b5357f6f2c6a3_ppc64le" + }, + "product_reference": "openshift4/ose-olm-catalogd-rhel8@sha256:7eb406180e223f0abfe4d5a908369e97efa3478a9ea67dc9771b5357f6f2c6a3_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-olm-catalogd-rhel8@sha256:84b9469554233d4f1f96a747a016c47215a058c9d4908205fb0b58de56c62c90_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-olm-catalogd-rhel8@sha256:84b9469554233d4f1f96a747a016c47215a058c9d4908205fb0b58de56c62c90_amd64" + }, + "product_reference": "openshift4/ose-olm-catalogd-rhel8@sha256:84b9469554233d4f1f96a747a016c47215a058c9d4908205fb0b58de56c62c90_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-olm-catalogd-rhel8@sha256:ea8bdcfe35fb056e7d6265ebbd14a3e6b36fef7117abc065386e0607cc9fcd14_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-olm-catalogd-rhel8@sha256:ea8bdcfe35fb056e7d6265ebbd14a3e6b36fef7117abc065386e0607cc9fcd14_s390x" + }, + "product_reference": "openshift4/ose-olm-catalogd-rhel8@sha256:ea8bdcfe35fb056e7d6265ebbd14a3e6b36fef7117abc065386e0607cc9fcd14_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-olm-operator-controller-rhel8@sha256:5d6a0fb529bd83ad2eccad57f7a29e11213e630a6c067cacacf67721905e7ba0_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-olm-operator-controller-rhel8@sha256:5d6a0fb529bd83ad2eccad57f7a29e11213e630a6c067cacacf67721905e7ba0_amd64" + }, + "product_reference": "openshift4/ose-olm-operator-controller-rhel8@sha256:5d6a0fb529bd83ad2eccad57f7a29e11213e630a6c067cacacf67721905e7ba0_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-olm-operator-controller-rhel8@sha256:90292249212d2e3ea4a91cfd07743ceb1a19c263a5d54918d9bd324b8c0c7ff4_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-olm-operator-controller-rhel8@sha256:90292249212d2e3ea4a91cfd07743ceb1a19c263a5d54918d9bd324b8c0c7ff4_s390x" + }, + "product_reference": "openshift4/ose-olm-operator-controller-rhel8@sha256:90292249212d2e3ea4a91cfd07743ceb1a19c263a5d54918d9bd324b8c0c7ff4_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-olm-operator-controller-rhel8@sha256:ab3a63e935f1b2d8e9d28c75409020d8e895f040521f78103561488424f85eda_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-olm-operator-controller-rhel8@sha256:ab3a63e935f1b2d8e9d28c75409020d8e895f040521f78103561488424f85eda_ppc64le" + }, + "product_reference": "openshift4/ose-olm-operator-controller-rhel8@sha256:ab3a63e935f1b2d8e9d28c75409020d8e895f040521f78103561488424f85eda_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-olm-operator-controller-rhel8@sha256:d4d199277ffb3157076ae7be4f79559ed0840844f0d78241c17c21817a7e57a5_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-olm-operator-controller-rhel8@sha256:d4d199277ffb3157076ae7be4f79559ed0840844f0d78241c17c21817a7e57a5_arm64" + }, + "product_reference": "openshift4/ose-olm-operator-controller-rhel8@sha256:d4d199277ffb3157076ae7be4f79559ed0840844f0d78241c17c21817a7e57a5_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:9b4f383127275cb65198c9399c7371e5df31086ebf6d91b8272bf41cb5c260d9_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-olm-rukpak-rhel8@sha256:9b4f383127275cb65198c9399c7371e5df31086ebf6d91b8272bf41cb5c260d9_ppc64le" + }, + "product_reference": "openshift4/ose-olm-rukpak-rhel8@sha256:9b4f383127275cb65198c9399c7371e5df31086ebf6d91b8272bf41cb5c260d9_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:9f41dace212c50437a056e7d94aadcd33c497f294f229563bf63c0149ab74316_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-olm-rukpak-rhel8@sha256:9f41dace212c50437a056e7d94aadcd33c497f294f229563bf63c0149ab74316_s390x" + }, + "product_reference": "openshift4/ose-olm-rukpak-rhel8@sha256:9f41dace212c50437a056e7d94aadcd33c497f294f229563bf63c0149ab74316_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:ca8e4beb03a8ed741bbd16e2b8d7e304ff19b9f0346a75d3ce7d64884025cc8e_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-olm-rukpak-rhel8@sha256:ca8e4beb03a8ed741bbd16e2b8d7e304ff19b9f0346a75d3ce7d64884025cc8e_amd64" + }, + "product_reference": "openshift4/ose-olm-rukpak-rhel8@sha256:ca8e4beb03a8ed741bbd16e2b8d7e304ff19b9f0346a75d3ce7d64884025cc8e_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-olm-rukpak-rhel8@sha256:eeba7c43f4fe8056133f755d8dec9889ddd5ae389c08a4018bb46d1239f49437_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-olm-rukpak-rhel8@sha256:eeba7c43f4fe8056133f755d8dec9889ddd5ae389c08a4018bb46d1239f49437_arm64" + }, + "product_reference": "openshift4/ose-olm-rukpak-rhel8@sha256:eeba7c43f4fe8056133f755d8dec9889ddd5ae389c08a4018bb46d1239f49437_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:16ce1012f0b86fb0716150918f6de91ce40c936d9ac43d19bd4cf6ebf6edca3d_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openshift-apiserver-rhel8@sha256:16ce1012f0b86fb0716150918f6de91ce40c936d9ac43d19bd4cf6ebf6edca3d_amd64" + }, + "product_reference": "openshift4/ose-openshift-apiserver-rhel8@sha256:16ce1012f0b86fb0716150918f6de91ce40c936d9ac43d19bd4cf6ebf6edca3d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:2676d215de4fa031a7a03c9a8681ed0fee873656391cd73371e569c9f0e3389f_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openshift-apiserver-rhel8@sha256:2676d215de4fa031a7a03c9a8681ed0fee873656391cd73371e569c9f0e3389f_ppc64le" + }, + "product_reference": "openshift4/ose-openshift-apiserver-rhel8@sha256:2676d215de4fa031a7a03c9a8681ed0fee873656391cd73371e569c9f0e3389f_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:31336303b00e5cc8d8bff1064b6be37d2892b16d012da30e23160d9aa6182060_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openshift-apiserver-rhel8@sha256:31336303b00e5cc8d8bff1064b6be37d2892b16d012da30e23160d9aa6182060_arm64" + }, + "product_reference": "openshift4/ose-openshift-apiserver-rhel8@sha256:31336303b00e5cc8d8bff1064b6be37d2892b16d012da30e23160d9aa6182060_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:73b5d3d85ca87f9dfde2e961cbebb79d67884cf07480135bff5df24d43aa13af_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openshift-apiserver-rhel8@sha256:73b5d3d85ca87f9dfde2e961cbebb79d67884cf07480135bff5df24d43aa13af_s390x" + }, + "product_reference": "openshift4/ose-openshift-apiserver-rhel8@sha256:73b5d3d85ca87f9dfde2e961cbebb79d67884cf07480135bff5df24d43aa13af_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:9b66eae476027e62a1d7c44b0eb8c1e2eebcd98207e8cef7932a5c541bc04109_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openshift-apiserver-rhel8@sha256:9b66eae476027e62a1d7c44b0eb8c1e2eebcd98207e8cef7932a5c541bc04109_amd64" + }, + "product_reference": "openshift4/ose-openshift-apiserver-rhel8@sha256:9b66eae476027e62a1d7c44b0eb8c1e2eebcd98207e8cef7932a5c541bc04109_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:b7c44f2e2856baeee6e1ba17327f52e6530c3ab7e354c710df2dd36b2a7852a5_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openshift-apiserver-rhel8@sha256:b7c44f2e2856baeee6e1ba17327f52e6530c3ab7e354c710df2dd36b2a7852a5_s390x" + }, + "product_reference": "openshift4/ose-openshift-apiserver-rhel8@sha256:b7c44f2e2856baeee6e1ba17327f52e6530c3ab7e354c710df2dd36b2a7852a5_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:b957d2faeb4c2b83b9a265d64b984c6a525d4111aa6a96911fc3c36e9ab4f47d_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openshift-apiserver-rhel8@sha256:b957d2faeb4c2b83b9a265d64b984c6a525d4111aa6a96911fc3c36e9ab4f47d_ppc64le" + }, + "product_reference": "openshift4/ose-openshift-apiserver-rhel8@sha256:b957d2faeb4c2b83b9a265d64b984c6a525d4111aa6a96911fc3c36e9ab4f47d_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-apiserver-rhel8@sha256:eb1a36b4a6897262631d6013ccd3fc2c1c7c16efc6e73dabbbd8fd71ff9e954e_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openshift-apiserver-rhel8@sha256:eb1a36b4a6897262631d6013ccd3fc2c1c7c16efc6e73dabbbd8fd71ff9e954e_arm64" + }, + "product_reference": "openshift4/ose-openshift-apiserver-rhel8@sha256:eb1a36b4a6897262631d6013ccd3fc2c1c7c16efc6e73dabbbd8fd71ff9e954e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:7f3a2e4651f4052a7386f71bb38361973b05c5b786c56353ab43fbd7538f697f_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openshift-controller-manager-rhel8@sha256:7f3a2e4651f4052a7386f71bb38361973b05c5b786c56353ab43fbd7538f697f_ppc64le" + }, + "product_reference": "openshift4/ose-openshift-controller-manager-rhel8@sha256:7f3a2e4651f4052a7386f71bb38361973b05c5b786c56353ab43fbd7538f697f_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:9459bcba37483a999cca593b6cd4d46a6c2eedd8ec6b37cd51d0816591c176ab_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openshift-controller-manager-rhel8@sha256:9459bcba37483a999cca593b6cd4d46a6c2eedd8ec6b37cd51d0816591c176ab_amd64" + }, + "product_reference": "openshift4/ose-openshift-controller-manager-rhel8@sha256:9459bcba37483a999cca593b6cd4d46a6c2eedd8ec6b37cd51d0816591c176ab_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:9771fa0fcaaaf09954762f39697d41518346211f2fef8e5e740235811075e7c8_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openshift-controller-manager-rhel8@sha256:9771fa0fcaaaf09954762f39697d41518346211f2fef8e5e740235811075e7c8_arm64" + }, + "product_reference": "openshift4/ose-openshift-controller-manager-rhel8@sha256:9771fa0fcaaaf09954762f39697d41518346211f2fef8e5e740235811075e7c8_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-controller-manager-rhel8@sha256:c396fe90b9e031a41cfb7c7f8bfadc49f21e32a0f2a79113cf0048e392024d21_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openshift-controller-manager-rhel8@sha256:c396fe90b9e031a41cfb7c7f8bfadc49f21e32a0f2a79113cf0048e392024d21_s390x" + }, + "product_reference": "openshift4/ose-openshift-controller-manager-rhel8@sha256:c396fe90b9e031a41cfb7c7f8bfadc49f21e32a0f2a79113cf0048e392024d21_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:0a6ba836f37d836976b9b556e61a3032a9f69de5fec680f36b74a7dd08a9bc60_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:0a6ba836f37d836976b9b556e61a3032a9f69de5fec680f36b74a7dd08a9bc60_ppc64le" + }, + "product_reference": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:0a6ba836f37d836976b9b556e61a3032a9f69de5fec680f36b74a7dd08a9bc60_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:1598bd06c87aac127c2239e7d3ce0722c146f3b212f2fff63e9a2498a37cb5d2_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:1598bd06c87aac127c2239e7d3ce0722c146f3b212f2fff63e9a2498a37cb5d2_arm64" + }, + "product_reference": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:1598bd06c87aac127c2239e7d3ce0722c146f3b212f2fff63e9a2498a37cb5d2_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:1b6ef6e93b3b02dffde51cc1262f2d0a914423faf85496c6c2489fe3c13e9e16_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:1b6ef6e93b3b02dffde51cc1262f2d0a914423faf85496c6c2489fe3c13e9e16_amd64" + }, + "product_reference": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:1b6ef6e93b3b02dffde51cc1262f2d0a914423faf85496c6c2489fe3c13e9e16_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:748ad752ec740b2bce29c71cd9063e05b95e580561426d951d5948d0d710ea17_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:748ad752ec740b2bce29c71cd9063e05b95e580561426d951d5948d0d710ea17_s390x" + }, + "product_reference": "openshift4/ose-openshift-proxy-pull-test-rhel8@sha256:748ad752ec740b2bce29c71cd9063e05b95e580561426d951d5948d0d710ea17_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:12242c6fca5b99a967d99447d6d3fb0fdcc0a42fcb7731bc8b1b0e43f05d4940_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openshift-state-metrics-rhel8@sha256:12242c6fca5b99a967d99447d6d3fb0fdcc0a42fcb7731bc8b1b0e43f05d4940_ppc64le" + }, + "product_reference": "openshift4/ose-openshift-state-metrics-rhel8@sha256:12242c6fca5b99a967d99447d6d3fb0fdcc0a42fcb7731bc8b1b0e43f05d4940_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:701cc7a9c541930681f954fffc5fc1ec1f38d8102a691e2ed73cc4f615ee7985_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openshift-state-metrics-rhel8@sha256:701cc7a9c541930681f954fffc5fc1ec1f38d8102a691e2ed73cc4f615ee7985_s390x" + }, + "product_reference": "openshift4/ose-openshift-state-metrics-rhel8@sha256:701cc7a9c541930681f954fffc5fc1ec1f38d8102a691e2ed73cc4f615ee7985_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:8dd805285bb46e58fda281f5965e62d871f74358e08a73bbede40c1988d9de11_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openshift-state-metrics-rhel8@sha256:8dd805285bb46e58fda281f5965e62d871f74358e08a73bbede40c1988d9de11_arm64" + }, + "product_reference": "openshift4/ose-openshift-state-metrics-rhel8@sha256:8dd805285bb46e58fda281f5965e62d871f74358e08a73bbede40c1988d9de11_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openshift-state-metrics-rhel8@sha256:ae2cd801fc4aab9ada6d05f5966d6571bc695c682010fd11c69797541a823fa1_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openshift-state-metrics-rhel8@sha256:ae2cd801fc4aab9ada6d05f5966d6571bc695c682010fd11c69797541a823fa1_amd64" + }, + "product_reference": "openshift4/ose-openshift-state-metrics-rhel8@sha256:ae2cd801fc4aab9ada6d05f5966d6571bc695c682010fd11c69797541a823fa1_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:27466f8887e35f8f50acf3ad366341b76650aaa5dc0583b3df7eac47fa674297_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:27466f8887e35f8f50acf3ad366341b76650aaa5dc0583b3df7eac47fa674297_ppc64le" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:27466f8887e35f8f50acf3ad366341b76650aaa5dc0583b3df7eac47fa674297_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8df6040633c5fc3f9cbefe36521ed343aebd8b381b66b90e32979a5774ed69e3_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8df6040633c5fc3f9cbefe36521ed343aebd8b381b66b90e32979a5774ed69e3_s390x" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:8df6040633c5fc3f9cbefe36521ed343aebd8b381b66b90e32979a5774ed69e3_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b12d41e3ab2655148115e3d009240753d382aff2d38be25bebaea06310d9c0fa_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b12d41e3ab2655148115e3d009240753d382aff2d38be25bebaea06310d9c0fa_arm64" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b12d41e3ab2655148115e3d009240753d382aff2d38be25bebaea06310d9c0fa_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b338c0458f28994c52c1ce0a9d886a5b75811db3ff440bae417e1e7931e79441_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b338c0458f28994c52c1ce0a9d886a5b75811db3ff440bae417e1e7931e79441_amd64" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8-operator@sha256:b338c0458f28994c52c1ce0a9d886a5b75811db3ff440bae417e1e7931e79441_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:111210b581f621282ee24e70ac1090eb1693595dc62594dd88efc0d4324d39a9_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:111210b581f621282ee24e70ac1090eb1693595dc62594dd88efc0d4324d39a9_s390x" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:111210b581f621282ee24e70ac1090eb1693595dc62594dd88efc0d4324d39a9_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:28db9204190b8596270079bc3760fe4210b716c2ed815dff1d3fe1c4fb527f4d_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:28db9204190b8596270079bc3760fe4210b716c2ed815dff1d3fe1c4fb527f4d_amd64" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:28db9204190b8596270079bc3760fe4210b716c2ed815dff1d3fe1c4fb527f4d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:2a3b0436d7dd8b82027048ea274911f56992b00e8d31d2633ddf2864de5d88f3_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:2a3b0436d7dd8b82027048ea274911f56992b00e8d31d2633ddf2864de5d88f3_amd64" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:2a3b0436d7dd8b82027048ea274911f56992b00e8d31d2633ddf2864de5d88f3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:3aa0f022e8f26349884e12895cc488f56c2d19b094f9cf787253b7caf2f0c963_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:3aa0f022e8f26349884e12895cc488f56c2d19b094f9cf787253b7caf2f0c963_ppc64le" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:3aa0f022e8f26349884e12895cc488f56c2d19b094f9cf787253b7caf2f0c963_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:938e90d52b7f40d755e0638592a03d2ec46c35dece02110f3e2c9921cf2b5879_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:938e90d52b7f40d755e0638592a03d2ec46c35dece02110f3e2c9921cf2b5879_arm64" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:938e90d52b7f40d755e0638592a03d2ec46c35dece02110f3e2c9921cf2b5879_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:ad6aa19e94e248df631b60ae1ca3e5f0bac7aa757c9ba7747359fc06f7701d9a_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:ad6aa19e94e248df631b60ae1ca3e5f0bac7aa757c9ba7747359fc06f7701d9a_s390x" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:ad6aa19e94e248df631b60ae1ca3e5f0bac7aa757c9ba7747359fc06f7701d9a_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:b6e66b78e7b641908eaca5b11f80fe39d7c620d4525143790c864a785bfdae4f_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:b6e66b78e7b641908eaca5b11f80fe39d7c620d4525143790c864a785bfdae4f_ppc64le" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:b6e66b78e7b641908eaca5b11f80fe39d7c620d4525143790c864a785bfdae4f_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:c6ce3ba8929588c8aedb7f3ce5e727c9c02cc080cc9a9b49ae91023abd44e3c5_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:c6ce3ba8929588c8aedb7f3ce5e727c9c02cc080cc9a9b49ae91023abd44e3c5_arm64" + }, + "product_reference": "openshift4/ose-openstack-cinder-csi-driver-rhel8@sha256:c6ce3ba8929588c8aedb7f3ce5e727c9c02cc080cc9a9b49ae91023abd44e3c5_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:0f859da06c1b69faa86a183b8d07aab692d10e8852db6c9302a934fe063b1fdf_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:0f859da06c1b69faa86a183b8d07aab692d10e8852db6c9302a934fe063b1fdf_amd64" + }, + "product_reference": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:0f859da06c1b69faa86a183b8d07aab692d10e8852db6c9302a934fe063b1fdf_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:1d7519691fb8f7761927f58cc3c192452418e914584ede9999be84c66877bdb9_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:1d7519691fb8f7761927f58cc3c192452418e914584ede9999be84c66877bdb9_s390x" + }, + "product_reference": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:1d7519691fb8f7761927f58cc3c192452418e914584ede9999be84c66877bdb9_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:5322398f762d3c02d5faeba33f2a5d2b5fac259fbbf742634ca5ba15a31740c9_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:5322398f762d3c02d5faeba33f2a5d2b5fac259fbbf742634ca5ba15a31740c9_arm64" + }, + "product_reference": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:5322398f762d3c02d5faeba33f2a5d2b5fac259fbbf742634ca5ba15a31740c9_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7fd0efecdc77c70010ebfabfdffc47df617184eaf02503c631003ce6719862e0_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7fd0efecdc77c70010ebfabfdffc47df617184eaf02503c631003ce6719862e0_ppc64le" + }, + "product_reference": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:7fd0efecdc77c70010ebfabfdffc47df617184eaf02503c631003ce6719862e0_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:889d1bdbbb797cc3b25965b0a8a99d7a6dcb595a58c74f238f69a1c58fe92980_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:889d1bdbbb797cc3b25965b0a8a99d7a6dcb595a58c74f238f69a1c58fe92980_s390x" + }, + "product_reference": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:889d1bdbbb797cc3b25965b0a8a99d7a6dcb595a58c74f238f69a1c58fe92980_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:9f2a9a1e4d64ed3d90bc49207d2a62a08678f6e5103cb43ee6efeae51caf0e9d_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:9f2a9a1e4d64ed3d90bc49207d2a62a08678f6e5103cb43ee6efeae51caf0e9d_arm64" + }, + "product_reference": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:9f2a9a1e4d64ed3d90bc49207d2a62a08678f6e5103cb43ee6efeae51caf0e9d_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:b7e493abd5a12b988d1586b433ffecebc5af52bc5357a2d6be2307d45527519d_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:b7e493abd5a12b988d1586b433ffecebc5af52bc5357a2d6be2307d45527519d_amd64" + }, + "product_reference": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:b7e493abd5a12b988d1586b433ffecebc5af52bc5357a2d6be2307d45527519d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:d4071d55a0b0e8c541b83ea45f6027dca5a3d702ba73f748e4255109e2f363a4_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:d4071d55a0b0e8c541b83ea45f6027dca5a3d702ba73f748e4255109e2f363a4_ppc64le" + }, + "product_reference": "openshift4/ose-openstack-cloud-controller-manager-rhel8@sha256:d4071d55a0b0e8c541b83ea45f6027dca5a3d702ba73f748e4255109e2f363a4_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:0b329092cabb78ee4f48d6612a97dfce721dbafc2552a372c66466b6b649afcc_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-operator-lifecycle-manager@sha256:0b329092cabb78ee4f48d6612a97dfce721dbafc2552a372c66466b6b649afcc_arm64" + }, + "product_reference": "openshift4/ose-operator-lifecycle-manager@sha256:0b329092cabb78ee4f48d6612a97dfce721dbafc2552a372c66466b6b649afcc_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:0dfaccb9700fdecdd77b7d773c68e3eab2cc804668d63b5c62999d0ad354895d_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-operator-lifecycle-manager@sha256:0dfaccb9700fdecdd77b7d773c68e3eab2cc804668d63b5c62999d0ad354895d_amd64" + }, + "product_reference": "openshift4/ose-operator-lifecycle-manager@sha256:0dfaccb9700fdecdd77b7d773c68e3eab2cc804668d63b5c62999d0ad354895d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:c4ee940cc84b828ea7228cc6cd1c2597da2b7f125ca4e1bd1e836da004ce76e4_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-operator-lifecycle-manager@sha256:c4ee940cc84b828ea7228cc6cd1c2597da2b7f125ca4e1bd1e836da004ce76e4_s390x" + }, + "product_reference": "openshift4/ose-operator-lifecycle-manager@sha256:c4ee940cc84b828ea7228cc6cd1c2597da2b7f125ca4e1bd1e836da004ce76e4_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-lifecycle-manager@sha256:c5073f836ce31a7fc47838ba9c3737ff469af3b18de2b5917e48b65fff5dca86_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-operator-lifecycle-manager@sha256:c5073f836ce31a7fc47838ba9c3737ff469af3b18de2b5917e48b65fff5dca86_ppc64le" + }, + "product_reference": "openshift4/ose-operator-lifecycle-manager@sha256:c5073f836ce31a7fc47838ba9c3737ff469af3b18de2b5917e48b65fff5dca86_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-marketplace@sha256:0bf0ec1080549cd86633006168f38fa18b7b8b4997540eff01aaa976afc2e4d7_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-operator-marketplace@sha256:0bf0ec1080549cd86633006168f38fa18b7b8b4997540eff01aaa976afc2e4d7_s390x" + }, + "product_reference": "openshift4/ose-operator-marketplace@sha256:0bf0ec1080549cd86633006168f38fa18b7b8b4997540eff01aaa976afc2e4d7_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-marketplace@sha256:8f5217a2a558beb11788218cc2e4e5d7b18da31451c4d45ba94252ddc0bb3db1_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-operator-marketplace@sha256:8f5217a2a558beb11788218cc2e4e5d7b18da31451c4d45ba94252ddc0bb3db1_amd64" + }, + "product_reference": "openshift4/ose-operator-marketplace@sha256:8f5217a2a558beb11788218cc2e4e5d7b18da31451c4d45ba94252ddc0bb3db1_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-marketplace@sha256:a58cb4f1439b89cb6ab54d57a49be3c504f41367da413d6f346ea42fb960273b_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-operator-marketplace@sha256:a58cb4f1439b89cb6ab54d57a49be3c504f41367da413d6f346ea42fb960273b_ppc64le" + }, + "product_reference": "openshift4/ose-operator-marketplace@sha256:a58cb4f1439b89cb6ab54d57a49be3c504f41367da413d6f346ea42fb960273b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-marketplace@sha256:c3d3d766ecf8db57608d05b7ab6d4812297aef311ad094639e1a3cf85d32338d_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-operator-marketplace@sha256:c3d3d766ecf8db57608d05b7ab6d4812297aef311ad094639e1a3cf85d32338d_arm64" + }, + "product_reference": "openshift4/ose-operator-marketplace@sha256:c3d3d766ecf8db57608d05b7ab6d4812297aef311ad094639e1a3cf85d32338d_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-registry@sha256:81d3d8079e16386df593f4a93e9e0e937fa1a58c4d593803eaf0ee6abe07edc2_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-operator-registry@sha256:81d3d8079e16386df593f4a93e9e0e937fa1a58c4d593803eaf0ee6abe07edc2_arm64" + }, + "product_reference": "openshift4/ose-operator-registry@sha256:81d3d8079e16386df593f4a93e9e0e937fa1a58c4d593803eaf0ee6abe07edc2_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-registry@sha256:c1d9e51b966568703fde0fff786b5eb2145b2859c4c67fbc0729ef9c211e0fe6_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-operator-registry@sha256:c1d9e51b966568703fde0fff786b5eb2145b2859c4c67fbc0729ef9c211e0fe6_amd64" + }, + "product_reference": "openshift4/ose-operator-registry@sha256:c1d9e51b966568703fde0fff786b5eb2145b2859c4c67fbc0729ef9c211e0fe6_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-registry@sha256:d8e1a5d8cf42dd864e693dc2768fd608134ab7181882dc0613ff2a2e163afb80_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-operator-registry@sha256:d8e1a5d8cf42dd864e693dc2768fd608134ab7181882dc0613ff2a2e163afb80_s390x" + }, + "product_reference": "openshift4/ose-operator-registry@sha256:d8e1a5d8cf42dd864e693dc2768fd608134ab7181882dc0613ff2a2e163afb80_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-registry@sha256:ee62f0d060e04c6a0a15df1943bbf2a21d8ac74419f7336dd69d9056bf54f1ad_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-operator-registry@sha256:ee62f0d060e04c6a0a15df1943bbf2a21d8ac74419f7336dd69d9056bf54f1ad_ppc64le" + }, + "product_reference": "openshift4/ose-operator-registry@sha256:ee62f0d060e04c6a0a15df1943bbf2a21d8ac74419f7336dd69d9056bf54f1ad_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-sdk-rhel8@sha256:18a82f86d5e71a948adb10ce6060556a1462689b6e364adbe1130226efcc3a0e_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-operator-sdk-rhel8@sha256:18a82f86d5e71a948adb10ce6060556a1462689b6e364adbe1130226efcc3a0e_s390x" + }, + "product_reference": "openshift4/ose-operator-sdk-rhel8@sha256:18a82f86d5e71a948adb10ce6060556a1462689b6e364adbe1130226efcc3a0e_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-sdk-rhel8@sha256:ab2d7239b190801d901ba8fdb8118dd007612855dcae204f357d979a855330b5_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-operator-sdk-rhel8@sha256:ab2d7239b190801d901ba8fdb8118dd007612855dcae204f357d979a855330b5_arm64" + }, + "product_reference": "openshift4/ose-operator-sdk-rhel8@sha256:ab2d7239b190801d901ba8fdb8118dd007612855dcae204f357d979a855330b5_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-sdk-rhel8@sha256:bb494bb7457579c9e3e864c3f14d4f9c98f2e54f601a960f1ccd8f91b2a876f2_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-operator-sdk-rhel8@sha256:bb494bb7457579c9e3e864c3f14d4f9c98f2e54f601a960f1ccd8f91b2a876f2_amd64" + }, + "product_reference": "openshift4/ose-operator-sdk-rhel8@sha256:bb494bb7457579c9e3e864c3f14d4f9c98f2e54f601a960f1ccd8f91b2a876f2_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-operator-sdk-rhel8@sha256:f15ff70b467add1407f38987563352baf9ac653af68789c98b282f8ee32986b7_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-operator-sdk-rhel8@sha256:f15ff70b467add1407f38987563352baf9ac653af68789c98b282f8ee32986b7_ppc64le" + }, + "product_reference": "openshift4/ose-operator-sdk-rhel8@sha256:f15ff70b467add1407f38987563352baf9ac653af68789c98b282f8ee32986b7_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:08c5aa4b2df30aefd10b5dd18d24d7249aeb74112b9f5afc48126bb5bd6df4b3_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-ovirt-machine-controllers-rhel8@sha256:08c5aa4b2df30aefd10b5dd18d24d7249aeb74112b9f5afc48126bb5bd6df4b3_arm64" + }, + "product_reference": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:08c5aa4b2df30aefd10b5dd18d24d7249aeb74112b9f5afc48126bb5bd6df4b3_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:29d0441d8cefd87fc5a6099e053e983aade44590c26f8daccf914b778f786850_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-ovirt-machine-controllers-rhel8@sha256:29d0441d8cefd87fc5a6099e053e983aade44590c26f8daccf914b778f786850_amd64" + }, + "product_reference": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:29d0441d8cefd87fc5a6099e053e983aade44590c26f8daccf914b778f786850_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:7998978dc4ab0fd2d1bb94f5f9a34ac54d6a2ab3f4680dfa40c66b9f2b3af3db_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-ovirt-machine-controllers-rhel8@sha256:7998978dc4ab0fd2d1bb94f5f9a34ac54d6a2ab3f4680dfa40c66b9f2b3af3db_s390x" + }, + "product_reference": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:7998978dc4ab0fd2d1bb94f5f9a34ac54d6a2ab3f4680dfa40c66b9f2b3af3db_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:8aab016c1d338b1f1fda97e163e34179e8eb67308b3f7b608e561e691f22d1f1_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-ovirt-machine-controllers-rhel8@sha256:8aab016c1d338b1f1fda97e163e34179e8eb67308b3f7b608e561e691f22d1f1_ppc64le" + }, + "product_reference": "openshift4/ose-ovirt-machine-controllers-rhel8@sha256:8aab016c1d338b1f1fda97e163e34179e8eb67308b3f7b608e561e691f22d1f1_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-pod@sha256:31c81ece0f0bd7e43130db7f43943250e9b9f915d3cfed45fe6a524f839dde32_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-pod@sha256:31c81ece0f0bd7e43130db7f43943250e9b9f915d3cfed45fe6a524f839dde32_ppc64le" + }, + "product_reference": "openshift4/ose-pod@sha256:31c81ece0f0bd7e43130db7f43943250e9b9f915d3cfed45fe6a524f839dde32_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-pod@sha256:372ce069203ba79dea544e5cb4363d66b968e7e2e94e8eeef6dc76755edcfa3a_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-pod@sha256:372ce069203ba79dea544e5cb4363d66b968e7e2e94e8eeef6dc76755edcfa3a_s390x" + }, + "product_reference": "openshift4/ose-pod@sha256:372ce069203ba79dea544e5cb4363d66b968e7e2e94e8eeef6dc76755edcfa3a_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-pod@sha256:44cf90fa2c8a7fcf25cda5280b6aabac79e66f434e33f5341fe868db3d0c779c_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-pod@sha256:44cf90fa2c8a7fcf25cda5280b6aabac79e66f434e33f5341fe868db3d0c779c_amd64" + }, + "product_reference": "openshift4/ose-pod@sha256:44cf90fa2c8a7fcf25cda5280b6aabac79e66f434e33f5341fe868db3d0c779c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-pod@sha256:6023ecae84621e486a0cd91862cee8dfe1a7e0d2bbcbe237f7a6171396468ac6_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-pod@sha256:6023ecae84621e486a0cd91862cee8dfe1a7e0d2bbcbe237f7a6171396468ac6_arm64" + }, + "product_reference": "openshift4/ose-pod@sha256:6023ecae84621e486a0cd91862cee8dfe1a7e0d2bbcbe237f7a6171396468ac6_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-pod@sha256:868c1db9bc24abeef9ce6c53f3f23c89a21ab9fac8bcf999e7e80a30791ac79c_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-pod@sha256:868c1db9bc24abeef9ce6c53f3f23c89a21ab9fac8bcf999e7e80a30791ac79c_s390x" + }, + "product_reference": "openshift4/ose-pod@sha256:868c1db9bc24abeef9ce6c53f3f23c89a21ab9fac8bcf999e7e80a30791ac79c_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-pod@sha256:8c253241e494712e094b61609b27485f3496955898ce810a41de4040b58accf1_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-pod@sha256:8c253241e494712e094b61609b27485f3496955898ce810a41de4040b58accf1_ppc64le" + }, + "product_reference": "openshift4/ose-pod@sha256:8c253241e494712e094b61609b27485f3496955898ce810a41de4040b58accf1_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-pod@sha256:9900bb051e5469eaf260dbfbeaa0965d6584d3a0e64f21ea065035de749412e0_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-pod@sha256:9900bb051e5469eaf260dbfbeaa0965d6584d3a0e64f21ea065035de749412e0_arm64" + }, + "product_reference": "openshift4/ose-pod@sha256:9900bb051e5469eaf260dbfbeaa0965d6584d3a0e64f21ea065035de749412e0_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-pod@sha256:9f8da234bf7b882f744d4cb7f2f06900e270541e3b55f9d1407018f5cacdf700_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-pod@sha256:9f8da234bf7b882f744d4cb7f2f06900e270541e3b55f9d1407018f5cacdf700_amd64" + }, + "product_reference": "openshift4/ose-pod@sha256:9f8da234bf7b882f744d4cb7f2f06900e270541e3b55f9d1407018f5cacdf700_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:67faf4afa21e27f619537813ee660671a182d8ae91b8a5396c6c29ce139b4540_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:67faf4afa21e27f619537813ee660671a182d8ae91b8a5396c6c29ce139b4540_ppc64le" + }, + "product_reference": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:67faf4afa21e27f619537813ee660671a182d8ae91b8a5396c6c29ce139b4540_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:be5e2ea03898d3e470cbf376153bdacdb94f05e4ff13a70486adadd320dbd293_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:be5e2ea03898d3e470cbf376153bdacdb94f05e4ff13a70486adadd320dbd293_amd64" + }, + "product_reference": "openshift4/ose-powervs-block-csi-driver-operator-rhel8@sha256:be5e2ea03898d3e470cbf376153bdacdb94f05e4ff13a70486adadd320dbd293_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:95837b9c424c438e1ea30f516cba64188bcbdc2a05e7a4129a09c49db9827f11_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-powervs-block-csi-driver-rhel8@sha256:95837b9c424c438e1ea30f516cba64188bcbdc2a05e7a4129a09c49db9827f11_ppc64le" + }, + "product_reference": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:95837b9c424c438e1ea30f516cba64188bcbdc2a05e7a4129a09c49db9827f11_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:f0b637b0e6e3a8af6868a63293e82c4f2cbcc03c718f3b5c628652e5ac7dcf13_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-powervs-block-csi-driver-rhel8@sha256:f0b637b0e6e3a8af6868a63293e82c4f2cbcc03c718f3b5c628652e5ac7dcf13_amd64" + }, + "product_reference": "openshift4/ose-powervs-block-csi-driver-rhel8@sha256:f0b637b0e6e3a8af6868a63293e82c4f2cbcc03c718f3b5c628652e5ac7dcf13_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:3b4cacab255f36f481e7ad7b215b563bcef9172de4461d78b8fd9edb7d0e7551_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:3b4cacab255f36f481e7ad7b215b563bcef9172de4461d78b8fd9edb7d0e7551_ppc64le" + }, + "product_reference": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:3b4cacab255f36f481e7ad7b215b563bcef9172de4461d78b8fd9edb7d0e7551_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:f3658b355807eb8a2dc0b49f4d1b15620ead5227b7b727c700d289948d8aa043_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:f3658b355807eb8a2dc0b49f4d1b15620ead5227b7b727c700d289948d8aa043_amd64" + }, + "product_reference": "openshift4/ose-powervs-cloud-controller-manager-rhel8@sha256:f3658b355807eb8a2dc0b49f4d1b15620ead5227b7b727c700d289948d8aa043_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:8379fa5f888b0b4db0b8e0f0e7a1e4eaa623f49567307e7bf004dab75e45be0b_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-powervs-machine-controllers-rhel8@sha256:8379fa5f888b0b4db0b8e0f0e7a1e4eaa623f49567307e7bf004dab75e45be0b_ppc64le" + }, + "product_reference": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:8379fa5f888b0b4db0b8e0f0e7a1e4eaa623f49567307e7bf004dab75e45be0b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:ac075d42a132a92cb3d004503bdca19a19fad3c37c62d5a24e112e184497bfc1_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-powervs-machine-controllers-rhel8@sha256:ac075d42a132a92cb3d004503bdca19a19fad3c37c62d5a24e112e184497bfc1_amd64" + }, + "product_reference": "openshift4/ose-powervs-machine-controllers-rhel8@sha256:ac075d42a132a92cb3d004503bdca19a19fad3c37c62d5a24e112e184497bfc1_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prom-label-proxy@sha256:87055d425bac37089f206fb29b447f2d71a7bb2f9deeb05c9485d069251a26dd_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prom-label-proxy@sha256:87055d425bac37089f206fb29b447f2d71a7bb2f9deeb05c9485d069251a26dd_arm64" + }, + "product_reference": "openshift4/ose-prom-label-proxy@sha256:87055d425bac37089f206fb29b447f2d71a7bb2f9deeb05c9485d069251a26dd_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prom-label-proxy@sha256:92c75d4e7d346b496e2d1517858deba7b27aa9b0bb3c55b2e27f88a247f53111_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prom-label-proxy@sha256:92c75d4e7d346b496e2d1517858deba7b27aa9b0bb3c55b2e27f88a247f53111_s390x" + }, + "product_reference": "openshift4/ose-prom-label-proxy@sha256:92c75d4e7d346b496e2d1517858deba7b27aa9b0bb3c55b2e27f88a247f53111_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prom-label-proxy@sha256:ac1c4e24efe545010e0f05db87c43998a5f9b60965c4e0e53defffe6e5c804dd_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prom-label-proxy@sha256:ac1c4e24efe545010e0f05db87c43998a5f9b60965c4e0e53defffe6e5c804dd_amd64" + }, + "product_reference": "openshift4/ose-prom-label-proxy@sha256:ac1c4e24efe545010e0f05db87c43998a5f9b60965c4e0e53defffe6e5c804dd_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prom-label-proxy@sha256:ed0680d1612eca2411734c30718870b371e9f6c1233a06ada3a7d32decd8462d_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prom-label-proxy@sha256:ed0680d1612eca2411734c30718870b371e9f6c1233a06ada3a7d32decd8462d_ppc64le" + }, + "product_reference": "openshift4/ose-prom-label-proxy@sha256:ed0680d1612eca2411734c30718870b371e9f6c1233a06ada3a7d32decd8462d_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:52501be1cb7cdebca0ddd8a68556af6943589032c2469a72d634a48a2b52b3f3_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prometheus-alertmanager@sha256:52501be1cb7cdebca0ddd8a68556af6943589032c2469a72d634a48a2b52b3f3_ppc64le" + }, + "product_reference": "openshift4/ose-prometheus-alertmanager@sha256:52501be1cb7cdebca0ddd8a68556af6943589032c2469a72d634a48a2b52b3f3_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:65d75bce1c6800f8fbaf58af58204d4eb52eb2a035b85cf1b56f564da6790e3f_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prometheus-alertmanager@sha256:65d75bce1c6800f8fbaf58af58204d4eb52eb2a035b85cf1b56f564da6790e3f_amd64" + }, + "product_reference": "openshift4/ose-prometheus-alertmanager@sha256:65d75bce1c6800f8fbaf58af58204d4eb52eb2a035b85cf1b56f564da6790e3f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:8ed337ce46ecf57e430e689a4f0102afa1fc5c72735bb05f7e0050b599ca1af0_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prometheus-alertmanager@sha256:8ed337ce46ecf57e430e689a4f0102afa1fc5c72735bb05f7e0050b599ca1af0_arm64" + }, + "product_reference": "openshift4/ose-prometheus-alertmanager@sha256:8ed337ce46ecf57e430e689a4f0102afa1fc5c72735bb05f7e0050b599ca1af0_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-alertmanager@sha256:c1c500118c8a13b07034cb625171f88686e2e466b699107ea6d1cb5ada959b2b_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prometheus-alertmanager@sha256:c1c500118c8a13b07034cb625171f88686e2e466b699107ea6d1cb5ada959b2b_s390x" + }, + "product_reference": "openshift4/ose-prometheus-alertmanager@sha256:c1c500118c8a13b07034cb625171f88686e2e466b699107ea6d1cb5ada959b2b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:3457403fc9175b2264f1d8d760a55c5a07d716db4fc750fc81f22f91509fd884_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prometheus-config-reloader@sha256:3457403fc9175b2264f1d8d760a55c5a07d716db4fc750fc81f22f91509fd884_amd64" + }, + "product_reference": "openshift4/ose-prometheus-config-reloader@sha256:3457403fc9175b2264f1d8d760a55c5a07d716db4fc750fc81f22f91509fd884_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:cefd2a94ad74cdea2c2fb722a62fbb4bd376211f6304238766be5b1e94a3d00c_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prometheus-config-reloader@sha256:cefd2a94ad74cdea2c2fb722a62fbb4bd376211f6304238766be5b1e94a3d00c_ppc64le" + }, + "product_reference": "openshift4/ose-prometheus-config-reloader@sha256:cefd2a94ad74cdea2c2fb722a62fbb4bd376211f6304238766be5b1e94a3d00c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:f7ae68e6d4ee0be44e3a9b0af3954bfd431dfb90cffb92f9dca33c578e4ec090_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prometheus-config-reloader@sha256:f7ae68e6d4ee0be44e3a9b0af3954bfd431dfb90cffb92f9dca33c578e4ec090_s390x" + }, + "product_reference": "openshift4/ose-prometheus-config-reloader@sha256:f7ae68e6d4ee0be44e3a9b0af3954bfd431dfb90cffb92f9dca33c578e4ec090_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-config-reloader@sha256:fad612252efa75542063a3eab216ac7ba3895d29ac3ac404a3b212fde37b3973_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prometheus-config-reloader@sha256:fad612252efa75542063a3eab216ac7ba3895d29ac3ac404a3b212fde37b3973_arm64" + }, + "product_reference": "openshift4/ose-prometheus-config-reloader@sha256:fad612252efa75542063a3eab216ac7ba3895d29ac3ac404a3b212fde37b3973_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:0afc0b8adb940899e070fdcc69ea5a575daf6a2fd93247fde1ee241c4c654989_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prometheus-node-exporter@sha256:0afc0b8adb940899e070fdcc69ea5a575daf6a2fd93247fde1ee241c4c654989_s390x" + }, + "product_reference": "openshift4/ose-prometheus-node-exporter@sha256:0afc0b8adb940899e070fdcc69ea5a575daf6a2fd93247fde1ee241c4c654989_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:1c0d9b9e7ceef2d9e2f87a5036abad40d4fc8059bbf75a2d2b7297c94147c73d_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prometheus-node-exporter@sha256:1c0d9b9e7ceef2d9e2f87a5036abad40d4fc8059bbf75a2d2b7297c94147c73d_arm64" + }, + "product_reference": "openshift4/ose-prometheus-node-exporter@sha256:1c0d9b9e7ceef2d9e2f87a5036abad40d4fc8059bbf75a2d2b7297c94147c73d_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:3af482102939c075786952b5ae8126481b6d790ee6537db997ea1d4a922384d2_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prometheus-node-exporter@sha256:3af482102939c075786952b5ae8126481b6d790ee6537db997ea1d4a922384d2_amd64" + }, + "product_reference": "openshift4/ose-prometheus-node-exporter@sha256:3af482102939c075786952b5ae8126481b6d790ee6537db997ea1d4a922384d2_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-node-exporter@sha256:f29d1e8e9f68738ec1cc01913047e8fd727d75625eabfc517d69af446563b91f_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prometheus-node-exporter@sha256:f29d1e8e9f68738ec1cc01913047e8fd727d75625eabfc517d69af446563b91f_ppc64le" + }, + "product_reference": "openshift4/ose-prometheus-node-exporter@sha256:f29d1e8e9f68738ec1cc01913047e8fd727d75625eabfc517d69af446563b91f_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:29ac1cae07354973773737bef59d6b8bdcc93b8e1cdf0d68009e96a05fb1e019_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:29ac1cae07354973773737bef59d6b8bdcc93b8e1cdf0d68009e96a05fb1e019_s390x" + }, + "product_reference": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:29ac1cae07354973773737bef59d6b8bdcc93b8e1cdf0d68009e96a05fb1e019_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:69a41649c2a3dcf19bef360ad5127f874a7ed70941e55a8fa0d15e1cc418cb9a_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:69a41649c2a3dcf19bef360ad5127f874a7ed70941e55a8fa0d15e1cc418cb9a_amd64" + }, + "product_reference": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:69a41649c2a3dcf19bef360ad5127f874a7ed70941e55a8fa0d15e1cc418cb9a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d13b62b51c32e048ae00787fc6d2792d0417c1302688dfacd7ea92582af8dda9_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d13b62b51c32e048ae00787fc6d2792d0417c1302688dfacd7ea92582af8dda9_arm64" + }, + "product_reference": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:d13b62b51c32e048ae00787fc6d2792d0417c1302688dfacd7ea92582af8dda9_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:ddb059de6158518777fd18c54cd30c240c46fb31569fb8c9c75181df297b0438_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:ddb059de6158518777fd18c54cd30c240c46fb31569fb8c9c75181df297b0438_ppc64le" + }, + "product_reference": "openshift4/ose-prometheus-operator-admission-webhook-rhel8@sha256:ddb059de6158518777fd18c54cd30c240c46fb31569fb8c9c75181df297b0438_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator@sha256:049107ea9a1548aa889c97fce0306282bf294d219c7d572c6d82eb6b914ab68c_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prometheus-operator@sha256:049107ea9a1548aa889c97fce0306282bf294d219c7d572c6d82eb6b914ab68c_arm64" + }, + "product_reference": "openshift4/ose-prometheus-operator@sha256:049107ea9a1548aa889c97fce0306282bf294d219c7d572c6d82eb6b914ab68c_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator@sha256:107443a5f49450693c1b7fd46aa8ad9b4dc67c66af20d007e514dbce1e7be13c_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prometheus-operator@sha256:107443a5f49450693c1b7fd46aa8ad9b4dc67c66af20d007e514dbce1e7be13c_ppc64le" + }, + "product_reference": "openshift4/ose-prometheus-operator@sha256:107443a5f49450693c1b7fd46aa8ad9b4dc67c66af20d007e514dbce1e7be13c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator@sha256:3798bb3ed7fff79d6b4c2b087881bfe52600dfe79bef62e9d407aa4c20b428ea_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prometheus-operator@sha256:3798bb3ed7fff79d6b4c2b087881bfe52600dfe79bef62e9d407aa4c20b428ea_amd64" + }, + "product_reference": "openshift4/ose-prometheus-operator@sha256:3798bb3ed7fff79d6b4c2b087881bfe52600dfe79bef62e9d407aa4c20b428ea_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus-operator@sha256:6a83222175b6d5d18954087c50cca29bc1645186146b828ccb8f61aecd3d2b94_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prometheus-operator@sha256:6a83222175b6d5d18954087c50cca29bc1645186146b828ccb8f61aecd3d2b94_s390x" + }, + "product_reference": "openshift4/ose-prometheus-operator@sha256:6a83222175b6d5d18954087c50cca29bc1645186146b828ccb8f61aecd3d2b94_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus@sha256:3d8347181e89255765158bb0340f8e503aa6eb19a387fe5a45b634becbf28209_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prometheus@sha256:3d8347181e89255765158bb0340f8e503aa6eb19a387fe5a45b634becbf28209_s390x" + }, + "product_reference": "openshift4/ose-prometheus@sha256:3d8347181e89255765158bb0340f8e503aa6eb19a387fe5a45b634becbf28209_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus@sha256:ad8630b87e5201b632dd730c8717bc71b513a592d782ad558120f81831e58f91_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prometheus@sha256:ad8630b87e5201b632dd730c8717bc71b513a592d782ad558120f81831e58f91_amd64" + }, + "product_reference": "openshift4/ose-prometheus@sha256:ad8630b87e5201b632dd730c8717bc71b513a592d782ad558120f81831e58f91_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus@sha256:c8d4bab93df6d86282e0c4dbd55cb1e9846996d324cb09fd5ad3aa6c2492af71_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prometheus@sha256:c8d4bab93df6d86282e0c4dbd55cb1e9846996d324cb09fd5ad3aa6c2492af71_arm64" + }, + "product_reference": "openshift4/ose-prometheus@sha256:c8d4bab93df6d86282e0c4dbd55cb1e9846996d324cb09fd5ad3aa6c2492af71_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-prometheus@sha256:d50a4373035df9c5c7ce46bf5212296ac0c8aa3dc847b9211ebcc05c78790f20_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-prometheus@sha256:d50a4373035df9c5c7ce46bf5212296ac0c8aa3dc847b9211ebcc05c78790f20_ppc64le" + }, + "product_reference": "openshift4/ose-prometheus@sha256:d50a4373035df9c5c7ce46bf5212296ac0c8aa3dc847b9211ebcc05c78790f20_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ptp-operator@sha256:670f6ccae405f8aed5bd041fde0f8b325650fcb9698536551c08a6f0dd0dd539_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-ptp-operator@sha256:670f6ccae405f8aed5bd041fde0f8b325650fcb9698536551c08a6f0dd0dd539_amd64" + }, + "product_reference": "openshift4/ose-ptp-operator@sha256:670f6ccae405f8aed5bd041fde0f8b325650fcb9698536551c08a6f0dd0dd539_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ptp-operator@sha256:9088b0f0efb2f0f1d84e1839434a8eac6d6c22d86e6a3db34941ae86a9d34cdc_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-ptp-operator@sha256:9088b0f0efb2f0f1d84e1839434a8eac6d6c22d86e6a3db34941ae86a9d34cdc_arm64" + }, + "product_reference": "openshift4/ose-ptp-operator@sha256:9088b0f0efb2f0f1d84e1839434a8eac6d6c22d86e6a3db34941ae86a9d34cdc_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ptp-operator@sha256:dc6ce4dd58c199422cd46d63ee97670eb45841e570653c92e2fba82ec96084aa_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-ptp-operator@sha256:dc6ce4dd58c199422cd46d63ee97670eb45841e570653c92e2fba82ec96084aa_ppc64le" + }, + "product_reference": "openshift4/ose-ptp-operator@sha256:dc6ce4dd58c199422cd46d63ee97670eb45841e570653c92e2fba82ec96084aa_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sdn-rhel8@sha256:635fbdae6255ec7b873593fa39dd93274e2de5589219f726a5921aca28371ae8_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-sdn-rhel8@sha256:635fbdae6255ec7b873593fa39dd93274e2de5589219f726a5921aca28371ae8_s390x" + }, + "product_reference": "openshift4/ose-sdn-rhel8@sha256:635fbdae6255ec7b873593fa39dd93274e2de5589219f726a5921aca28371ae8_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sdn-rhel8@sha256:7310091e3e98525a3a191c8a41e9d5942b0a3085afb42e7d8ebf79042573dc30_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-sdn-rhel8@sha256:7310091e3e98525a3a191c8a41e9d5942b0a3085afb42e7d8ebf79042573dc30_ppc64le" + }, + "product_reference": "openshift4/ose-sdn-rhel8@sha256:7310091e3e98525a3a191c8a41e9d5942b0a3085afb42e7d8ebf79042573dc30_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sdn-rhel8@sha256:bd3abeb97524e69baae59593554cb94a3ab626d591948cef905499788a807598_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-sdn-rhel8@sha256:bd3abeb97524e69baae59593554cb94a3ab626d591948cef905499788a807598_amd64" + }, + "product_reference": "openshift4/ose-sdn-rhel8@sha256:bd3abeb97524e69baae59593554cb94a3ab626d591948cef905499788a807598_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sdn-rhel8@sha256:e791a33fb049dff3b574ad144429c2cc19b0e57e5c7b3b95470c665a369e0e2f_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-sdn-rhel8@sha256:e791a33fb049dff3b574ad144429c2cc19b0e57e5c7b3b95470c665a369e0e2f_arm64" + }, + "product_reference": "openshift4/ose-sdn-rhel8@sha256:e791a33fb049dff3b574ad144429c2cc19b0e57e5c7b3b95470c665a369e0e2f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:601ffdf03790309f80b1b8103bec40d686c043bfe239427589ae6e64bd76a92b_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:601ffdf03790309f80b1b8103bec40d686c043bfe239427589ae6e64bd76a92b_arm64" + }, + "product_reference": "openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:601ffdf03790309f80b1b8103bec40d686c043bfe239427589ae6e64bd76a92b_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:60f658bcbd5f08cb0f54e4988c585ee42ebf071b552ffa3ac5e9a8b9c8c5dab4_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:60f658bcbd5f08cb0f54e4988c585ee42ebf071b552ffa3ac5e9a8b9c8c5dab4_s390x" + }, + "product_reference": "openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:60f658bcbd5f08cb0f54e4988c585ee42ebf071b552ffa3ac5e9a8b9c8c5dab4_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6d8673302864326b0461d0956421e6ef37031a6a9de40164dcf248da43d9d9ed_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6d8673302864326b0461d0956421e6ef37031a6a9de40164dcf248da43d9d9ed_amd64" + }, + "product_reference": "openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:6d8673302864326b0461d0956421e6ef37031a6a9de40164dcf248da43d9d9ed_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:edb1820295cc044ad849d1262d9bf5666383ad5eefceee671cde072a8f40c7eb_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:edb1820295cc044ad849d1262d9bf5666383ad5eefceee671cde072a8f40c7eb_ppc64le" + }, + "product_reference": "openshift4/ose-secrets-store-csi-driver-rhel8-operator@sha256:edb1820295cc044ad849d1262d9bf5666383ad5eefceee671cde072a8f40c7eb_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-secrets-store-csi-driver-rhel8@sha256:0295d2cb56f08e961ee9fc5f082a65a75eb157305dd6ea83c3024359ab17c0f8_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-secrets-store-csi-driver-rhel8@sha256:0295d2cb56f08e961ee9fc5f082a65a75eb157305dd6ea83c3024359ab17c0f8_s390x" + }, + "product_reference": "openshift4/ose-secrets-store-csi-driver-rhel8@sha256:0295d2cb56f08e961ee9fc5f082a65a75eb157305dd6ea83c3024359ab17c0f8_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-secrets-store-csi-driver-rhel8@sha256:2974267de53eda5485870b248d1c204f7cb29dcc88bed02f568922155c8fc093_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-secrets-store-csi-driver-rhel8@sha256:2974267de53eda5485870b248d1c204f7cb29dcc88bed02f568922155c8fc093_ppc64le" + }, + "product_reference": "openshift4/ose-secrets-store-csi-driver-rhel8@sha256:2974267de53eda5485870b248d1c204f7cb29dcc88bed02f568922155c8fc093_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-secrets-store-csi-driver-rhel8@sha256:3461f5c28830fa0bf34b96054aa2030476292fd7f8ed01128c4408865e9d5a1e_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-secrets-store-csi-driver-rhel8@sha256:3461f5c28830fa0bf34b96054aa2030476292fd7f8ed01128c4408865e9d5a1e_arm64" + }, + "product_reference": "openshift4/ose-secrets-store-csi-driver-rhel8@sha256:3461f5c28830fa0bf34b96054aa2030476292fd7f8ed01128c4408865e9d5a1e_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-secrets-store-csi-driver-rhel8@sha256:99d449a47ce0b0dcb326d0393273e08bd1ff36f46d90993408bc7c4043a28954_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-secrets-store-csi-driver-rhel8@sha256:99d449a47ce0b0dcb326d0393273e08bd1ff36f46d90993408bc7c4043a28954_amd64" + }, + "product_reference": "openshift4/ose-secrets-store-csi-driver-rhel8@sha256:99d449a47ce0b0dcb326d0393273e08bd1ff36f46d90993408bc7c4043a28954_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:10c01d85b0c92baf04fdbb2f962d32eb8be9f63378516948a99a3de56d897ee1_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:10c01d85b0c92baf04fdbb2f962d32eb8be9f63378516948a99a3de56d897ee1_arm64" + }, + "product_reference": "openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:10c01d85b0c92baf04fdbb2f962d32eb8be9f63378516948a99a3de56d897ee1_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:aa5014aacef767ab7dc963afce78089cea19015c7175a67cfdea42bbd3fdab25_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:aa5014aacef767ab7dc963afce78089cea19015c7175a67cfdea42bbd3fdab25_ppc64le" + }, + "product_reference": "openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:aa5014aacef767ab7dc963afce78089cea19015c7175a67cfdea42bbd3fdab25_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:bc86899f4cc73ea62314c07e7a8d89a24a95d7f46ce73df196717e5a9d78985c_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:bc86899f4cc73ea62314c07e7a8d89a24a95d7f46ce73df196717e5a9d78985c_amd64" + }, + "product_reference": "openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:bc86899f4cc73ea62314c07e7a8d89a24a95d7f46ce73df196717e5a9d78985c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:ea707960c23790ea78578dc245f655f76edeaadb4e1032dc59a151df5edd6286_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:ea707960c23790ea78578dc245f655f76edeaadb4e1032dc59a151df5edd6286_s390x" + }, + "product_reference": "openshift4/ose-secrets-store-csi-mustgather-rhel8@sha256:ea707960c23790ea78578dc245f655f76edeaadb4e1032dc59a151df5edd6286_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-service-ca-operator@sha256:753e1cdee8fe91d302378a5086f63b0456e2ca6623db27980da19fb87404ba1d_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-service-ca-operator@sha256:753e1cdee8fe91d302378a5086f63b0456e2ca6623db27980da19fb87404ba1d_amd64" + }, + "product_reference": "openshift4/ose-service-ca-operator@sha256:753e1cdee8fe91d302378a5086f63b0456e2ca6623db27980da19fb87404ba1d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-service-ca-operator@sha256:95ac59984a73d14dd5e3fc7ae86243d00b70e66a40a656d3ff61091372943c73_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-service-ca-operator@sha256:95ac59984a73d14dd5e3fc7ae86243d00b70e66a40a656d3ff61091372943c73_s390x" + }, + "product_reference": "openshift4/ose-service-ca-operator@sha256:95ac59984a73d14dd5e3fc7ae86243d00b70e66a40a656d3ff61091372943c73_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-service-ca-operator@sha256:bec96068926cabcdbf70890f9b0cd0ff5fe269b7cfe539a027a73dd81c863d85_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-service-ca-operator@sha256:bec96068926cabcdbf70890f9b0cd0ff5fe269b7cfe539a027a73dd81c863d85_amd64" + }, + "product_reference": "openshift4/ose-service-ca-operator@sha256:bec96068926cabcdbf70890f9b0cd0ff5fe269b7cfe539a027a73dd81c863d85_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-service-ca-operator@sha256:dc539ba93e46d99388f387b7f9cf08052a56bb0c3189fb09818ecec06b1fc934_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-service-ca-operator@sha256:dc539ba93e46d99388f387b7f9cf08052a56bb0c3189fb09818ecec06b1fc934_arm64" + }, + "product_reference": "openshift4/ose-service-ca-operator@sha256:dc539ba93e46d99388f387b7f9cf08052a56bb0c3189fb09818ecec06b1fc934_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-service-ca-operator@sha256:e7982196e5a92913140684eccc03e107f660d31d3a5ef78c457945f6af50e810_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-service-ca-operator@sha256:e7982196e5a92913140684eccc03e107f660d31d3a5ef78c457945f6af50e810_ppc64le" + }, + "product_reference": "openshift4/ose-service-ca-operator@sha256:e7982196e5a92913140684eccc03e107f660d31d3a5ef78c457945f6af50e810_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-service-ca-operator@sha256:e7db74b33067c574dcf89c8458913ad2a8236c164c6bae54c345efdb42a61883_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-service-ca-operator@sha256:e7db74b33067c574dcf89c8458913ad2a8236c164c6bae54c345efdb42a61883_s390x" + }, + "product_reference": "openshift4/ose-service-ca-operator@sha256:e7db74b33067c574dcf89c8458913ad2a8236c164c6bae54c345efdb42a61883_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-service-ca-operator@sha256:e9c6b11129df5681f78abbf3c26db395c369dc8e804b8bfc663afce6950c601c_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-service-ca-operator@sha256:e9c6b11129df5681f78abbf3c26db395c369dc8e804b8bfc663afce6950c601c_ppc64le" + }, + "product_reference": "openshift4/ose-service-ca-operator@sha256:e9c6b11129df5681f78abbf3c26db395c369dc8e804b8bfc663afce6950c601c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-service-ca-operator@sha256:eff5ca45d4e3c577ddcb3243ef18777661e68bab32ad1e428cc5ca409373f06a_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-service-ca-operator@sha256:eff5ca45d4e3c577ddcb3243ef18777661e68bab32ad1e428cc5ca409373f06a_arm64" + }, + "product_reference": "openshift4/ose-service-ca-operator@sha256:eff5ca45d4e3c577ddcb3243ef18777661e68bab32ad1e428cc5ca409373f06a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-dp-admission-controller@sha256:3386f515a458af352c69b038df5d06293f6cfc118039a762a4e1af1d26caa7ec_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-sriov-dp-admission-controller@sha256:3386f515a458af352c69b038df5d06293f6cfc118039a762a4e1af1d26caa7ec_amd64" + }, + "product_reference": "openshift4/ose-sriov-dp-admission-controller@sha256:3386f515a458af352c69b038df5d06293f6cfc118039a762a4e1af1d26caa7ec_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-dp-admission-controller@sha256:765e2921209f84c518e66c2f4acc79b26c6dfbd66c4649a81c1ffa61fd241b82_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-sriov-dp-admission-controller@sha256:765e2921209f84c518e66c2f4acc79b26c6dfbd66c4649a81c1ffa61fd241b82_ppc64le" + }, + "product_reference": "openshift4/ose-sriov-dp-admission-controller@sha256:765e2921209f84c518e66c2f4acc79b26c6dfbd66c4649a81c1ffa61fd241b82_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-dp-admission-controller@sha256:bfb60d5eeb96897feb559f53c154a1f80eec13dba4912ccee16d81a1257dee37_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-sriov-dp-admission-controller@sha256:bfb60d5eeb96897feb559f53c154a1f80eec13dba4912ccee16d81a1257dee37_arm64" + }, + "product_reference": "openshift4/ose-sriov-dp-admission-controller@sha256:bfb60d5eeb96897feb559f53c154a1f80eec13dba4912ccee16d81a1257dee37_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-infiniband-cni@sha256:52437211a40396949fc7ef1bca2fa9adbc75163a624e380d73485016dcda0843_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-sriov-infiniband-cni@sha256:52437211a40396949fc7ef1bca2fa9adbc75163a624e380d73485016dcda0843_ppc64le" + }, + "product_reference": "openshift4/ose-sriov-infiniband-cni@sha256:52437211a40396949fc7ef1bca2fa9adbc75163a624e380d73485016dcda0843_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-infiniband-cni@sha256:9b1da59d314e383a338ac2f632f1000f3cb085622b7a929c5a1217f4c6afa516_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-sriov-infiniband-cni@sha256:9b1da59d314e383a338ac2f632f1000f3cb085622b7a929c5a1217f4c6afa516_arm64" + }, + "product_reference": "openshift4/ose-sriov-infiniband-cni@sha256:9b1da59d314e383a338ac2f632f1000f3cb085622b7a929c5a1217f4c6afa516_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-infiniband-cni@sha256:c3180eabf33225fae4ee2cc585d8d6cb12ff7c8d1f0121a3c1e77653838a21cb_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-sriov-infiniband-cni@sha256:c3180eabf33225fae4ee2cc585d8d6cb12ff7c8d1f0121a3c1e77653838a21cb_amd64" + }, + "product_reference": "openshift4/ose-sriov-infiniband-cni@sha256:c3180eabf33225fae4ee2cc585d8d6cb12ff7c8d1f0121a3c1e77653838a21cb_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-network-config-daemon@sha256:107ff7faf7a5ec8be028cc3cd7a97861b16052db17fbd1e65ef04cb47caef840_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-sriov-network-config-daemon@sha256:107ff7faf7a5ec8be028cc3cd7a97861b16052db17fbd1e65ef04cb47caef840_arm64" + }, + "product_reference": "openshift4/ose-sriov-network-config-daemon@sha256:107ff7faf7a5ec8be028cc3cd7a97861b16052db17fbd1e65ef04cb47caef840_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-network-config-daemon@sha256:5dba5112afabecb1544c482de2684a14a969ee0e788f418227588818f18edaec_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-sriov-network-config-daemon@sha256:5dba5112afabecb1544c482de2684a14a969ee0e788f418227588818f18edaec_amd64" + }, + "product_reference": "openshift4/ose-sriov-network-config-daemon@sha256:5dba5112afabecb1544c482de2684a14a969ee0e788f418227588818f18edaec_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-network-config-daemon@sha256:bebf0b9bd274e5e5a3d6cc41b60da6f89e51fc04b35748a40d3117cbc11565d7_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-sriov-network-config-daemon@sha256:bebf0b9bd274e5e5a3d6cc41b60da6f89e51fc04b35748a40d3117cbc11565d7_ppc64le" + }, + "product_reference": "openshift4/ose-sriov-network-config-daemon@sha256:bebf0b9bd274e5e5a3d6cc41b60da6f89e51fc04b35748a40d3117cbc11565d7_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-network-device-plugin@sha256:74e1ef85ae629f623c345935bf6996a31ef2504df68558ea59049b873d9f2431_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-sriov-network-device-plugin@sha256:74e1ef85ae629f623c345935bf6996a31ef2504df68558ea59049b873d9f2431_amd64" + }, + "product_reference": "openshift4/ose-sriov-network-device-plugin@sha256:74e1ef85ae629f623c345935bf6996a31ef2504df68558ea59049b873d9f2431_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-network-device-plugin@sha256:e5d21b534f03da02551498eb3eeaffde7517a6a5acefdde25e883318f2ea031f_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-sriov-network-device-plugin@sha256:e5d21b534f03da02551498eb3eeaffde7517a6a5acefdde25e883318f2ea031f_arm64" + }, + "product_reference": "openshift4/ose-sriov-network-device-plugin@sha256:e5d21b534f03da02551498eb3eeaffde7517a6a5acefdde25e883318f2ea031f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-network-device-plugin@sha256:f8a9c482b1be4c65f9299066ba0c4e2a8351109a3434a3a1bdcc0e967a95fea5_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-sriov-network-device-plugin@sha256:f8a9c482b1be4c65f9299066ba0c4e2a8351109a3434a3a1bdcc0e967a95fea5_ppc64le" + }, + "product_reference": "openshift4/ose-sriov-network-device-plugin@sha256:f8a9c482b1be4c65f9299066ba0c4e2a8351109a3434a3a1bdcc0e967a95fea5_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-network-operator@sha256:73daa89c56101f859a022c2b9e8a328a83fddcaffad7f2651de4601869559c5c_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-sriov-network-operator@sha256:73daa89c56101f859a022c2b9e8a328a83fddcaffad7f2651de4601869559c5c_ppc64le" + }, + "product_reference": "openshift4/ose-sriov-network-operator@sha256:73daa89c56101f859a022c2b9e8a328a83fddcaffad7f2651de4601869559c5c_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-network-operator@sha256:c7a82735ca99ff96f0c38da5704919558b0ef481cae0f040cdebc3b839aed5ca_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-sriov-network-operator@sha256:c7a82735ca99ff96f0c38da5704919558b0ef481cae0f040cdebc3b839aed5ca_arm64" + }, + "product_reference": "openshift4/ose-sriov-network-operator@sha256:c7a82735ca99ff96f0c38da5704919558b0ef481cae0f040cdebc3b839aed5ca_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-network-operator@sha256:d1cb0496ea1c8068e106918b3f16c1781b12fdda9c58baf20c454f1679c2460b_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-sriov-network-operator@sha256:d1cb0496ea1c8068e106918b3f16c1781b12fdda9c58baf20c454f1679c2460b_amd64" + }, + "product_reference": "openshift4/ose-sriov-network-operator@sha256:d1cb0496ea1c8068e106918b3f16c1781b12fdda9c58baf20c454f1679c2460b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-network-webhook@sha256:1e952168974ddf41ae0ce5f42335e4afdde8652f0ded1dd6d1fe1ea9fbbc63ef_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-sriov-network-webhook@sha256:1e952168974ddf41ae0ce5f42335e4afdde8652f0ded1dd6d1fe1ea9fbbc63ef_ppc64le" + }, + "product_reference": "openshift4/ose-sriov-network-webhook@sha256:1e952168974ddf41ae0ce5f42335e4afdde8652f0ded1dd6d1fe1ea9fbbc63ef_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-network-webhook@sha256:cfa61b09f9263736ccc6b6371be9bf5b748ce3c17c4a620a375a156bc981e74f_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-sriov-network-webhook@sha256:cfa61b09f9263736ccc6b6371be9bf5b748ce3c17c4a620a375a156bc981e74f_amd64" + }, + "product_reference": "openshift4/ose-sriov-network-webhook@sha256:cfa61b09f9263736ccc6b6371be9bf5b748ce3c17c4a620a375a156bc981e74f_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-sriov-network-webhook@sha256:e99b7322d383c5650a6d4abfb29f352d6b03e3af850003a36d24c7e376ec9cb7_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-sriov-network-webhook@sha256:e99b7322d383c5650a6d4abfb29f352d6b03e3af850003a36d24c7e376ec9cb7_arm64" + }, + "product_reference": "openshift4/ose-sriov-network-webhook@sha256:e99b7322d383c5650a6d4abfb29f352d6b03e3af850003a36d24c7e376ec9cb7_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-telemeter@sha256:949d58b1196a0e01ab8e43f2737db6bb1c1f6aeb87ec7747326cf088fec0528f_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-telemeter@sha256:949d58b1196a0e01ab8e43f2737db6bb1c1f6aeb87ec7747326cf088fec0528f_arm64" + }, + "product_reference": "openshift4/ose-telemeter@sha256:949d58b1196a0e01ab8e43f2737db6bb1c1f6aeb87ec7747326cf088fec0528f_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-telemeter@sha256:e4065a257b39f7067b631aa413ff3b8dfd075bb58424ca23f1a3330eba5bdf71_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-telemeter@sha256:e4065a257b39f7067b631aa413ff3b8dfd075bb58424ca23f1a3330eba5bdf71_s390x" + }, + "product_reference": "openshift4/ose-telemeter@sha256:e4065a257b39f7067b631aa413ff3b8dfd075bb58424ca23f1a3330eba5bdf71_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-telemeter@sha256:ea36784d33dde192c25d6eac598a93ee0fb8c4b9fb355639eb285bce16bd3746_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-telemeter@sha256:ea36784d33dde192c25d6eac598a93ee0fb8c4b9fb355639eb285bce16bd3746_ppc64le" + }, + "product_reference": "openshift4/ose-telemeter@sha256:ea36784d33dde192c25d6eac598a93ee0fb8c4b9fb355639eb285bce16bd3746_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-telemeter@sha256:fa030aaa5c44208f6af1f810c023abeecc16b824341f5378b2d94b63860f4d6a_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-telemeter@sha256:fa030aaa5c44208f6af1f810c023abeecc16b824341f5378b2d94b63860f4d6a_amd64" + }, + "product_reference": "openshift4/ose-telemeter@sha256:fa030aaa5c44208f6af1f810c023abeecc16b824341f5378b2d94b63860f4d6a_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tests@sha256:066003b8d615e2883aab0550f347ee0e25cd7b8c7b24a80742272f4acb7e2968_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-tests@sha256:066003b8d615e2883aab0550f347ee0e25cd7b8c7b24a80742272f4acb7e2968_amd64" + }, + "product_reference": "openshift4/ose-tests@sha256:066003b8d615e2883aab0550f347ee0e25cd7b8c7b24a80742272f4acb7e2968_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tests@sha256:2708e7f8a0f469b413b91b6e4849828bd1506d651d28e4d60341ce3d70d0de20_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-tests@sha256:2708e7f8a0f469b413b91b6e4849828bd1506d651d28e4d60341ce3d70d0de20_ppc64le" + }, + "product_reference": "openshift4/ose-tests@sha256:2708e7f8a0f469b413b91b6e4849828bd1506d651d28e4d60341ce3d70d0de20_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tests@sha256:2dc438aadd6898347a48ddfc6e903da4482b58b39f627b09915b91833540b42b_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-tests@sha256:2dc438aadd6898347a48ddfc6e903da4482b58b39f627b09915b91833540b42b_arm64" + }, + "product_reference": "openshift4/ose-tests@sha256:2dc438aadd6898347a48ddfc6e903da4482b58b39f627b09915b91833540b42b_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tests@sha256:a0b903d89e329e98a4312495eae0ed2727a7af5100ef95eae31ad5a354a34e0b_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-tests@sha256:a0b903d89e329e98a4312495eae0ed2727a7af5100ef95eae31ad5a354a34e0b_s390x" + }, + "product_reference": "openshift4/ose-tests@sha256:a0b903d89e329e98a4312495eae0ed2727a7af5100ef95eae31ad5a354a34e0b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tests@sha256:a35516189492530b5a39e31673c0768f36742129aea8e76f0980c0e9cb4772cc_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-tests@sha256:a35516189492530b5a39e31673c0768f36742129aea8e76f0980c0e9cb4772cc_arm64" + }, + "product_reference": "openshift4/ose-tests@sha256:a35516189492530b5a39e31673c0768f36742129aea8e76f0980c0e9cb4772cc_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tests@sha256:b6d27bd057e3950fe1c720cfd0839ad0791a06c43c30d3643179439f1be109fe_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-tests@sha256:b6d27bd057e3950fe1c720cfd0839ad0791a06c43c30d3643179439f1be109fe_amd64" + }, + "product_reference": "openshift4/ose-tests@sha256:b6d27bd057e3950fe1c720cfd0839ad0791a06c43c30d3643179439f1be109fe_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tests@sha256:fcc56ab52423f7598dfc12edbbf2f2e64c96cd673b61c015409fdf28088307a6_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-tests@sha256:fcc56ab52423f7598dfc12edbbf2f2e64c96cd673b61c015409fdf28088307a6_ppc64le" + }, + "product_reference": "openshift4/ose-tests@sha256:fcc56ab52423f7598dfc12edbbf2f2e64c96cd673b61c015409fdf28088307a6_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tests@sha256:ff1fced76dfdc57bb4a243de22e7c27a76ee67651a4971e68b4424557a8e7c52_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-tests@sha256:ff1fced76dfdc57bb4a243de22e7c27a76ee67651a4971e68b4424557a8e7c52_s390x" + }, + "product_reference": "openshift4/ose-tests@sha256:ff1fced76dfdc57bb4a243de22e7c27a76ee67651a4971e68b4424557a8e7c52_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-thanos-rhel8@sha256:86ac89468afc7e23be34060842df3b63494c5ac2bc565df2975c0cae0d3e0ea3_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-thanos-rhel8@sha256:86ac89468afc7e23be34060842df3b63494c5ac2bc565df2975c0cae0d3e0ea3_ppc64le" + }, + "product_reference": "openshift4/ose-thanos-rhel8@sha256:86ac89468afc7e23be34060842df3b63494c5ac2bc565df2975c0cae0d3e0ea3_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-thanos-rhel8@sha256:a709158f8d2ae92a0b23a26329e9b3605098710ceb8cab991ddaa7369ca11c1a_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-thanos-rhel8@sha256:a709158f8d2ae92a0b23a26329e9b3605098710ceb8cab991ddaa7369ca11c1a_arm64" + }, + "product_reference": "openshift4/ose-thanos-rhel8@sha256:a709158f8d2ae92a0b23a26329e9b3605098710ceb8cab991ddaa7369ca11c1a_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-thanos-rhel8@sha256:e0545acb03f084d009d568efeb5f31bdac8aa39ad44013177758a307633d36b6_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-thanos-rhel8@sha256:e0545acb03f084d009d568efeb5f31bdac8aa39ad44013177758a307633d36b6_s390x" + }, + "product_reference": "openshift4/ose-thanos-rhel8@sha256:e0545acb03f084d009d568efeb5f31bdac8aa39ad44013177758a307633d36b6_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-thanos-rhel8@sha256:f3148358b0d2fbf0ef35400fb6900e774d42da7f5e2b54c186b9b7fc6bdad755_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-thanos-rhel8@sha256:f3148358b0d2fbf0ef35400fb6900e774d42da7f5e2b54c186b9b7fc6bdad755_amd64" + }, + "product_reference": "openshift4/ose-thanos-rhel8@sha256:f3148358b0d2fbf0ef35400fb6900e774d42da7f5e2b54c186b9b7fc6bdad755_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tools-rhel8@sha256:2b409b71a03e529e5b196cc188e825f55ba143067e94ee63cd681f53af971e0c_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-tools-rhel8@sha256:2b409b71a03e529e5b196cc188e825f55ba143067e94ee63cd681f53af971e0c_amd64" + }, + "product_reference": "openshift4/ose-tools-rhel8@sha256:2b409b71a03e529e5b196cc188e825f55ba143067e94ee63cd681f53af971e0c_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tools-rhel8@sha256:688edf27ce3ede2aced0282eb0e752b2569584f89d285a02d87bb3afac246352_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-tools-rhel8@sha256:688edf27ce3ede2aced0282eb0e752b2569584f89d285a02d87bb3afac246352_arm64" + }, + "product_reference": "openshift4/ose-tools-rhel8@sha256:688edf27ce3ede2aced0282eb0e752b2569584f89d285a02d87bb3afac246352_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tools-rhel8@sha256:89a5d80ac49d57d64fa4239d955a75379ca50bf567bec4ddc441ff8230c86463_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-tools-rhel8@sha256:89a5d80ac49d57d64fa4239d955a75379ca50bf567bec4ddc441ff8230c86463_ppc64le" + }, + "product_reference": "openshift4/ose-tools-rhel8@sha256:89a5d80ac49d57d64fa4239d955a75379ca50bf567bec4ddc441ff8230c86463_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-tools-rhel8@sha256:bf050429922e22d23448436c07122171cf52faddd6b2ba91a7baa74bf4733b98_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-tools-rhel8@sha256:bf050429922e22d23448436c07122171cf52faddd6b2ba91a7baa74bf4733b98_s390x" + }, + "product_reference": "openshift4/ose-tools-rhel8@sha256:bf050429922e22d23448436c07122171cf52faddd6b2ba91a7baa74bf4733b98_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:2fa0173440b6807c7d41110ede77319cc822548e76bcf65fec4d2c00667f8aa7_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:2fa0173440b6807c7d41110ede77319cc822548e76bcf65fec4d2c00667f8aa7_amd64" + }, + "product_reference": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:2fa0173440b6807c7d41110ede77319cc822548e76bcf65fec4d2c00667f8aa7_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:4f28adb5e6600727e0a85ff3c2be6fbea6db529585561be6967336c59bee5ff2_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:4f28adb5e6600727e0a85ff3c2be6fbea6db529585561be6967336c59bee5ff2_arm64" + }, + "product_reference": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:4f28adb5e6600727e0a85ff3c2be6fbea6db529585561be6967336c59bee5ff2_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b4e044ccf274e7cc3d4e4a92b32a2ba0b781b8f80756824f3be8e786e117b193_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b4e044ccf274e7cc3d4e4a92b32a2ba0b781b8f80756824f3be8e786e117b193_ppc64le" + }, + "product_reference": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:b4e044ccf274e7cc3d4e4a92b32a2ba0b781b8f80756824f3be8e786e117b193_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:bb21a417cbb88d6edde32db1b492a01beda4928e736c34753244e521833b2ad9_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:bb21a417cbb88d6edde32db1b492a01beda4928e736c34753244e521833b2ad9_s390x" + }, + "product_reference": "openshift4/ose-vertical-pod-autoscaler-rhel8-operator@sha256:bb21a417cbb88d6edde32db1b492a01beda4928e736c34753244e521833b2ad9_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:0a5abc6694b8d2c3efdc35323900a4b7c2ab0ff1608c2e4e986442287a45f984_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:0a5abc6694b8d2c3efdc35323900a4b7c2ab0ff1608c2e4e986442287a45f984_arm64" + }, + "product_reference": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:0a5abc6694b8d2c3efdc35323900a4b7c2ab0ff1608c2e4e986442287a45f984_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:21cf5fba6c92fd2acb12817553da75c3ff1ddac8bc137d50dd1914fd0b9ebf0b_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:21cf5fba6c92fd2acb12817553da75c3ff1ddac8bc137d50dd1914fd0b9ebf0b_s390x" + }, + "product_reference": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:21cf5fba6c92fd2acb12817553da75c3ff1ddac8bc137d50dd1914fd0b9ebf0b_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:48a0342845d32051e9a69d161947b6c9ac3c1848487bb236e1630cb250e43def_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:48a0342845d32051e9a69d161947b6c9ac3c1848487bb236e1630cb250e43def_ppc64le" + }, + "product_reference": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:48a0342845d32051e9a69d161947b6c9ac3c1848487bb236e1630cb250e43def_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:6595d5d2da9740645d7ca5fab806fa0f986cfa02388f32b6a41e0e0c3ed1abad_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:6595d5d2da9740645d7ca5fab806fa0f986cfa02388f32b6a41e0e0c3ed1abad_amd64" + }, + "product_reference": "openshift4/ose-vertical-pod-autoscaler-rhel8@sha256:6595d5d2da9740645d7ca5fab806fa0f986cfa02388f32b6a41e0e0c3ed1abad_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:ccab3186341e5fa883d6d15f077b29cbbbe4d22ee3c664414eccaebb9e1747b3_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:ccab3186341e5fa883d6d15f077b29cbbbe4d22ee3c664414eccaebb9e1747b3_amd64" + }, + "product_reference": "openshift4/ose-vmware-vsphere-csi-driver-operator-rhel8@sha256:ccab3186341e5fa883d6d15f077b29cbbbe4d22ee3c664414eccaebb9e1747b3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:6f494bc95a3fe64f99a4f41c43e58c840b0f8837cb31eb5c3e0a2db379490786_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:6f494bc95a3fe64f99a4f41c43e58c840b0f8837cb31eb5c3e0a2db379490786_amd64" + }, + "product_reference": "openshift4/ose-vmware-vsphere-csi-driver-rhel8@sha256:6f494bc95a3fe64f99a4f41c43e58c840b0f8837cb31eb5c3e0a2db379490786_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:9dd229dcbffb6ef5ae9575891a1d41a9f5873ce045f7decd94ac32a0b008d750_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:9dd229dcbffb6ef5ae9575891a1d41a9f5873ce045f7decd94ac32a0b008d750_amd64" + }, + "product_reference": "openshift4/ose-vsphere-cloud-controller-manager-rhel8@sha256:9dd229dcbffb6ef5ae9575891a1d41a9f5873ce045f7decd94ac32a0b008d750_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:b7b670940c6752741e457a87ae578de4d5df8ee63075da27d38d3b0891c02239_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:b7b670940c6752741e457a87ae578de4d5df8ee63075da27d38d3b0891c02239_amd64" + }, + "product_reference": "openshift4/ose-vsphere-cluster-api-controllers-rhel8@sha256:b7b670940c6752741e457a87ae578de4d5df8ee63075da27d38d3b0891c02239_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:ccab3186341e5fa883d6d15f077b29cbbbe4d22ee3c664414eccaebb9e1747b3_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:ccab3186341e5fa883d6d15f077b29cbbbe4d22ee3c664414eccaebb9e1747b3_amd64" + }, + "product_reference": "openshift4/ose-vsphere-csi-driver-operator-rhel8@sha256:ccab3186341e5fa883d6d15f077b29cbbbe4d22ee3c664414eccaebb9e1747b3_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vsphere-csi-driver-rhel8@sha256:6f494bc95a3fe64f99a4f41c43e58c840b0f8837cb31eb5c3e0a2db379490786_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-vsphere-csi-driver-rhel8@sha256:6f494bc95a3fe64f99a4f41c43e58c840b0f8837cb31eb5c3e0a2db379490786_amd64" + }, + "product_reference": "openshift4/ose-vsphere-csi-driver-rhel8@sha256:6f494bc95a3fe64f99a4f41c43e58c840b0f8837cb31eb5c3e0a2db379490786_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:83be3884c9a033c6d269960a4f0082349e0422847a4cb72c46497d95fa48c68b_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:83be3884c9a033c6d269960a4f0082349e0422847a4cb72c46497d95fa48c68b_amd64" + }, + "product_reference": "openshift4/ose-vsphere-csi-driver-syncer-rhel8@sha256:83be3884c9a033c6d269960a4f0082349e0422847a4cb72c46497d95fa48c68b_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-vsphere-problem-detector-rhel8@sha256:424190de8b1cce70617a788ed5d7d120d8dfffc2ee0348c1d1319d2ed2cc2625_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ose-vsphere-problem-detector-rhel8@sha256:424190de8b1cce70617a788ed5d7d120d8dfffc2ee0348c1d1319d2ed2cc2625_amd64" + }, + "product_reference": "openshift4/ose-vsphere-problem-detector-rhel8@sha256:424190de8b1cce70617a788ed5d7d120d8dfffc2ee0348c1d1319d2ed2cc2625_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:19372d4285403000a9cf62a0540910c512b5a77f8fcda3daca7f7abe7bb4068d_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ovirt-csi-driver-rhel7@sha256:19372d4285403000a9cf62a0540910c512b5a77f8fcda3daca7f7abe7bb4068d_s390x" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel7@sha256:19372d4285403000a9cf62a0540910c512b5a77f8fcda3daca7f7abe7bb4068d_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:393157ba40b435ebff66831298005fb6909025dc250b3e8d4a09c3473f0625b3_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ovirt-csi-driver-rhel7@sha256:393157ba40b435ebff66831298005fb6909025dc250b3e8d4a09c3473f0625b3_ppc64le" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel7@sha256:393157ba40b435ebff66831298005fb6909025dc250b3e8d4a09c3473f0625b3_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:f78fa9edbab247157d614d346907dca21bd20866c5477a89890fec500ad522dd_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ovirt-csi-driver-rhel7@sha256:f78fa9edbab247157d614d346907dca21bd20866c5477a89890fec500ad522dd_amd64" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel7@sha256:f78fa9edbab247157d614d346907dca21bd20866c5477a89890fec500ad522dd_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel7@sha256:f98466628d3f0649d5c2319325e5c80c9ab302fe64ec690ee94a33ae8ef86669_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ovirt-csi-driver-rhel7@sha256:f98466628d3f0649d5c2319325e5c80c9ab302fe64ec690ee94a33ae8ef86669_arm64" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel7@sha256:f98466628d3f0649d5c2319325e5c80c9ab302fe64ec690ee94a33ae8ef86669_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:11ab5f03e45099738c05e50067115157c601b427f09f459ad5db5cc79ff3cf7d_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ovirt-csi-driver-rhel8-operator@sha256:11ab5f03e45099738c05e50067115157c601b427f09f459ad5db5cc79ff3cf7d_amd64" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:11ab5f03e45099738c05e50067115157c601b427f09f459ad5db5cc79ff3cf7d_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:5a4bd8450f2ecb3b9273a9f941e2c532e6028afc70525b7b3c2215a46d23af8b_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ovirt-csi-driver-rhel8-operator@sha256:5a4bd8450f2ecb3b9273a9f941e2c532e6028afc70525b7b3c2215a46d23af8b_ppc64le" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:5a4bd8450f2ecb3b9273a9f941e2c532e6028afc70525b7b3c2215a46d23af8b_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:931c190bb6e84a0df69bf5531ee505559f244622022261bfc6e45a087b140c83_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ovirt-csi-driver-rhel8-operator@sha256:931c190bb6e84a0df69bf5531ee505559f244622022261bfc6e45a087b140c83_arm64" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:931c190bb6e84a0df69bf5531ee505559f244622022261bfc6e45a087b140c83_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:d66e2c603108e3db51809c9443ffd3aafc77616d7c0c6b4f69ef389304ef2ba2_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ovirt-csi-driver-rhel8-operator@sha256:d66e2c603108e3db51809c9443ffd3aafc77616d7c0c6b4f69ef389304ef2ba2_s390x" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8-operator@sha256:d66e2c603108e3db51809c9443ffd3aafc77616d7c0c6b4f69ef389304ef2ba2_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:19372d4285403000a9cf62a0540910c512b5a77f8fcda3daca7f7abe7bb4068d_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ovirt-csi-driver-rhel8@sha256:19372d4285403000a9cf62a0540910c512b5a77f8fcda3daca7f7abe7bb4068d_s390x" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8@sha256:19372d4285403000a9cf62a0540910c512b5a77f8fcda3daca7f7abe7bb4068d_s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:393157ba40b435ebff66831298005fb6909025dc250b3e8d4a09c3473f0625b3_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ovirt-csi-driver-rhel8@sha256:393157ba40b435ebff66831298005fb6909025dc250b3e8d4a09c3473f0625b3_ppc64le" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8@sha256:393157ba40b435ebff66831298005fb6909025dc250b3e8d4a09c3473f0625b3_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:f78fa9edbab247157d614d346907dca21bd20866c5477a89890fec500ad522dd_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ovirt-csi-driver-rhel8@sha256:f78fa9edbab247157d614d346907dca21bd20866c5477a89890fec500ad522dd_amd64" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8@sha256:f78fa9edbab247157d614d346907dca21bd20866c5477a89890fec500ad522dd_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ovirt-csi-driver-rhel8@sha256:f98466628d3f0649d5c2319325e5c80c9ab302fe64ec690ee94a33ae8ef86669_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ovirt-csi-driver-rhel8@sha256:f98466628d3f0649d5c2319325e5c80c9ab302fe64ec690ee94a33ae8ef86669_arm64" + }, + "product_reference": "openshift4/ovirt-csi-driver-rhel8@sha256:f98466628d3f0649d5c2319325e5c80c9ab302fe64ec690ee94a33ae8ef86669_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ptp-must-gather-rhel8@sha256:22d36a1d85496bdbb0941488b31597cbb66920f4a4bf7234d82da2030be0dbe9_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ptp-must-gather-rhel8@sha256:22d36a1d85496bdbb0941488b31597cbb66920f4a4bf7234d82da2030be0dbe9_ppc64le" + }, + "product_reference": "openshift4/ptp-must-gather-rhel8@sha256:22d36a1d85496bdbb0941488b31597cbb66920f4a4bf7234d82da2030be0dbe9_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ptp-must-gather-rhel8@sha256:23c7d6961ab10ff0ab4bdef05e46e97e96f6215ab5f7e2ee5d8119694025b1eb_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ptp-must-gather-rhel8@sha256:23c7d6961ab10ff0ab4bdef05e46e97e96f6215ab5f7e2ee5d8119694025b1eb_amd64" + }, + "product_reference": "openshift4/ptp-must-gather-rhel8@sha256:23c7d6961ab10ff0ab4bdef05e46e97e96f6215ab5f7e2ee5d8119694025b1eb_amd64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ptp-must-gather-rhel8@sha256:ddf5f9ef7413f945c498a98c8202fa71de19cb4501a67d0f7cc545e39b43f948_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:openshift4/ptp-must-gather-rhel8@sha256:ddf5f9ef7413f945c498a98c8202fa71de19cb4501a67d0f7cc545e39b43f948_arm64" + }, + "product_reference": "openshift4/ptp-must-gather-rhel8@sha256:ddf5f9ef7413f945c498a98c8202fa71de19cb4501a67d0f7cc545e39b43f948_arm64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-3:4.4.1-10.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-3:4.4.1-10.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "podman-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-3:4.4.1-10.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-3:4.4.1-10.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "podman-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-3:4.4.1-10.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-3:4.4.1-10.1.rhaos4.14.el8.s390x" + }, + "product_reference": "podman-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-3:4.4.1-10.1.rhaos4.14.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-3:4.4.1-10.1.rhaos4.14.el8.src" + }, + "product_reference": "podman-3:4.4.1-10.1.rhaos4.14.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-3:4.4.1-10.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-3:4.4.1-10.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "podman-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-catatonit-3:4.4.1-10.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-catatonit-3:4.4.1-10.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "podman-catatonit-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-catatonit-3:4.4.1-10.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-catatonit-3:4.4.1-10.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "podman-catatonit-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-catatonit-3:4.4.1-10.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-catatonit-3:4.4.1-10.1.rhaos4.14.el8.s390x" + }, + "product_reference": "podman-catatonit-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-catatonit-3:4.4.1-10.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-catatonit-3:4.4.1-10.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "podman-catatonit-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-catatonit-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-catatonit-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "podman-catatonit-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-catatonit-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-catatonit-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "podman-catatonit-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-catatonit-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-catatonit-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x" + }, + "product_reference": "podman-catatonit-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-catatonit-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-catatonit-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "podman-catatonit-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x" + }, + "product_reference": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-debugsource-3:4.4.1-10.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-debugsource-3:4.4.1-10.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-debugsource-3:4.4.1-10.1.rhaos4.14.el8.s390x" + }, + "product_reference": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-debugsource-3:4.4.1-10.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-docker-3:4.4.1-10.1.rhaos4.14.el8.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-docker-3:4.4.1-10.1.rhaos4.14.el8.noarch" + }, + "product_reference": "podman-docker-3:4.4.1-10.1.rhaos4.14.el8.noarch", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el8.s390x" + }, + "product_reference": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x" + }, + "product_reference": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-plugins-3:4.4.1-10.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-plugins-3:4.4.1-10.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-plugins-3:4.4.1-10.1.rhaos4.14.el8.s390x" + }, + "product_reference": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-plugins-3:4.4.1-10.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x" + }, + "product_reference": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-remote-3:4.4.1-10.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-remote-3:4.4.1-10.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "podman-remote-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-remote-3:4.4.1-10.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-remote-3:4.4.1-10.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "podman-remote-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-remote-3:4.4.1-10.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-remote-3:4.4.1-10.1.rhaos4.14.el8.s390x" + }, + "product_reference": "podman-remote-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-remote-3:4.4.1-10.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-remote-3:4.4.1-10.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "podman-remote-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x" + }, + "product_reference": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-tests-3:4.4.1-10.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-tests-3:4.4.1-10.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "podman-tests-3:4.4.1-10.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-tests-3:4.4.1-10.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-tests-3:4.4.1-10.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "podman-tests-3:4.4.1-10.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-tests-3:4.4.1-10.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-tests-3:4.4.1-10.1.rhaos4.14.el8.s390x" + }, + "product_reference": "podman-tests-3:4.4.1-10.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-tests-3:4.4.1-10.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:podman-tests-3:4.4.1-10.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "podman-tests-3:4.4.1-10.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-kuryr-kubernetes-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:python3-kuryr-kubernetes-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.noarch" + }, + "product_reference": "python3-kuryr-kubernetes-0:4.14.0-202309272140.p0.g8926a29.assembly.stream.el8.noarch", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-libnmstate-0:2.2.12-1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:python3-libnmstate-0:2.2.12-1.rhaos4.14.el8.aarch64" + }, + "product_reference": "python3-libnmstate-0:2.2.12-1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-libnmstate-0:2.2.12-1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:python3-libnmstate-0:2.2.12-1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "python3-libnmstate-0:2.2.12-1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-libnmstate-0:2.2.12-1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:python3-libnmstate-0:2.2.12-1.rhaos4.14.el8.s390x" + }, + "product_reference": "python3-libnmstate-0:2.2.12-1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-libnmstate-0:2.2.12-1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:python3-libnmstate-0:2.2.12-1.rhaos4.14.el8.x86_64" + }, + "product_reference": "python3-libnmstate-0:2.2.12-1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-4:1.1.9-2.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:runc-4:1.1.9-2.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "runc-4:1.1.9-2.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-4:1.1.9-2.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:runc-4:1.1.9-2.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "runc-4:1.1.9-2.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-4:1.1.9-2.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:runc-4:1.1.9-2.1.rhaos4.14.el8.s390x" + }, + "product_reference": "runc-4:1.1.9-2.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-4:1.1.9-2.1.rhaos4.14.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:runc-4:1.1.9-2.1.rhaos4.14.el8.src" + }, + "product_reference": "runc-4:1.1.9-2.1.rhaos4.14.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-4:1.1.9-2.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:runc-4:1.1.9-2.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "runc-4:1.1.9-2.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el8.s390x" + }, + "product_reference": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:runc-debugsource-4:1.1.9-2.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:runc-debugsource-4:1.1.9-2.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:runc-debugsource-4:1.1.9-2.1.rhaos4.14.el8.s390x" + }, + "product_reference": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:runc-debugsource-4:1.1.9-2.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:skopeo-2:1.11.2-10.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:skopeo-2:1.11.2-10.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:skopeo-2:1.11.2-10.1.rhaos4.14.el8.s390x" + }, + "product_reference": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:skopeo-2:1.11.2-10.1.rhaos4.14.el8.src" + }, + "product_reference": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.src", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:skopeo-2:1.11.2-10.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "skopeo-2:1.11.2-10.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el8.s390x" + }, + "product_reference": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el8.s390x" + }, + "product_reference": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el8.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:skopeo-tests-2:1.11.2-10.1.rhaos4.14.el8.aarch64" + }, + "product_reference": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el8.aarch64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el8.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:skopeo-tests-2:1.11.2-10.1.rhaos4.14.el8.ppc64le" + }, + "product_reference": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el8.ppc64le", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el8.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:skopeo-tests-2:1.11.2-10.1.rhaos4.14.el8.s390x" + }, + "product_reference": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el8.s390x", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el8.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "8Base-RHOSE-4.14:skopeo-tests-2:1.11.2-10.1.rhaos4.14.el8.x86_64" + }, + "product_reference": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el8.x86_64", + "relates_to_product_reference": "8Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhpam-7-tech-preview/rhpam-kogito-runtime-native-rhel8@sha256:f100720059d7a0d35ff776e5b928486708b420b7a70652e82b815e4dc654b1f5_amd64 as a component of Middleware Containers for OpenShift", + "product_id": "8Base-RHOSE-Middleware:rhpam-7-tech-preview/rhpam-kogito-runtime-native-rhel8@sha256:f100720059d7a0d35ff776e5b928486708b420b7a70652e82b815e4dc654b1f5_amd64" + }, + "product_reference": "rhpam-7-tech-preview/rhpam-kogito-runtime-native-rhel8@sha256:f100720059d7a0d35ff776e5b928486708b420b7a70652e82b815e4dc654b1f5_amd64", + "relates_to_product_reference": "8Base-RHOSE-Middleware" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhpam-7/rhpam-businesscentral-monitoring-rhel8@sha256:878b83b28bf3b7dcfcb710c70ff06268477dddfa6a3df21b7dbe52f53ca3ca40_amd64 as a component of Middleware Containers for OpenShift", + "product_id": "8Base-RHOSE-Middleware:rhpam-7/rhpam-businesscentral-monitoring-rhel8@sha256:878b83b28bf3b7dcfcb710c70ff06268477dddfa6a3df21b7dbe52f53ca3ca40_amd64" + }, + "product_reference": "rhpam-7/rhpam-businesscentral-monitoring-rhel8@sha256:878b83b28bf3b7dcfcb710c70ff06268477dddfa6a3df21b7dbe52f53ca3ca40_amd64", + "relates_to_product_reference": "8Base-RHOSE-Middleware" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhpam-7/rhpam-businesscentral-rhel8@sha256:52e746b99d6a15be91dc7c4e74fb0a58c27ca1d08151d456336e26b0cbcb54fe_amd64 as a component of Middleware Containers for OpenShift", + "product_id": "8Base-RHOSE-Middleware:rhpam-7/rhpam-businesscentral-rhel8@sha256:52e746b99d6a15be91dc7c4e74fb0a58c27ca1d08151d456336e26b0cbcb54fe_amd64" + }, + "product_reference": "rhpam-7/rhpam-businesscentral-rhel8@sha256:52e746b99d6a15be91dc7c4e74fb0a58c27ca1d08151d456336e26b0cbcb54fe_amd64", + "relates_to_product_reference": "8Base-RHOSE-Middleware" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhpam-7/rhpam-controller-rhel8@sha256:c570297daff9ae813db39b27b4604f56cfcfa32a27e81d339da06dd33c13254f_amd64 as a component of Middleware Containers for OpenShift", + "product_id": "8Base-RHOSE-Middleware:rhpam-7/rhpam-controller-rhel8@sha256:c570297daff9ae813db39b27b4604f56cfcfa32a27e81d339da06dd33c13254f_amd64" + }, + "product_reference": "rhpam-7/rhpam-controller-rhel8@sha256:c570297daff9ae813db39b27b4604f56cfcfa32a27e81d339da06dd33c13254f_amd64", + "relates_to_product_reference": "8Base-RHOSE-Middleware" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhpam-7/rhpam-dashbuilder-rhel8@sha256:b787d57beb85e6098033b8c26789d2cc7a29faf7463fa8607d962382752f0883_amd64 as a component of Middleware Containers for OpenShift", + "product_id": "8Base-RHOSE-Middleware:rhpam-7/rhpam-dashbuilder-rhel8@sha256:b787d57beb85e6098033b8c26789d2cc7a29faf7463fa8607d962382752f0883_amd64" + }, + "product_reference": "rhpam-7/rhpam-dashbuilder-rhel8@sha256:b787d57beb85e6098033b8c26789d2cc7a29faf7463fa8607d962382752f0883_amd64", + "relates_to_product_reference": "8Base-RHOSE-Middleware" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhpam-7/rhpam-kieserver-rhel8@sha256:62a457fc1595ed3e534ef9c792cb2bdf3c1712642d370b450a2f341bdd118eda_amd64 as a component of Middleware Containers for OpenShift", + "product_id": "8Base-RHOSE-Middleware:rhpam-7/rhpam-kieserver-rhel8@sha256:62a457fc1595ed3e534ef9c792cb2bdf3c1712642d370b450a2f341bdd118eda_amd64" + }, + "product_reference": "rhpam-7/rhpam-kieserver-rhel8@sha256:62a457fc1595ed3e534ef9c792cb2bdf3c1712642d370b450a2f341bdd118eda_amd64", + "relates_to_product_reference": "8Base-RHOSE-Middleware" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhpam-7/rhpam-kogito-builder-rhel8@sha256:2caadb26d1a4ed774bdfa67664d11210b02a143b741cd4068b1654d51ed80c61_amd64 as a component of Middleware Containers for OpenShift", + "product_id": "8Base-RHOSE-Middleware:rhpam-7/rhpam-kogito-builder-rhel8@sha256:2caadb26d1a4ed774bdfa67664d11210b02a143b741cd4068b1654d51ed80c61_amd64" + }, + "product_reference": "rhpam-7/rhpam-kogito-builder-rhel8@sha256:2caadb26d1a4ed774bdfa67664d11210b02a143b741cd4068b1654d51ed80c61_amd64", + "relates_to_product_reference": "8Base-RHOSE-Middleware" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhpam-7/rhpam-kogito-builder-rhel8@sha256:eeb33a9caf57c04f021eea1aba0c87f8d4e70c1a804fbe1c8adc68859e7c4424_ppc64le as a component of Middleware Containers for OpenShift", + "product_id": "8Base-RHOSE-Middleware:rhpam-7/rhpam-kogito-builder-rhel8@sha256:eeb33a9caf57c04f021eea1aba0c87f8d4e70c1a804fbe1c8adc68859e7c4424_ppc64le" + }, + "product_reference": "rhpam-7/rhpam-kogito-builder-rhel8@sha256:eeb33a9caf57c04f021eea1aba0c87f8d4e70c1a804fbe1c8adc68859e7c4424_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-Middleware" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhpam-7/rhpam-kogito-rhel8-operator-bundle@sha256:056cc42012b5da9581c8d6f347a1693d6d3d904f76954fc1aafe12a6601994aa_ppc64le as a component of Middleware Containers for OpenShift", + "product_id": "8Base-RHOSE-Middleware:rhpam-7/rhpam-kogito-rhel8-operator-bundle@sha256:056cc42012b5da9581c8d6f347a1693d6d3d904f76954fc1aafe12a6601994aa_ppc64le" + }, + "product_reference": "rhpam-7/rhpam-kogito-rhel8-operator-bundle@sha256:056cc42012b5da9581c8d6f347a1693d6d3d904f76954fc1aafe12a6601994aa_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-Middleware" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhpam-7/rhpam-kogito-rhel8-operator-bundle@sha256:4553c12fa6f1a41b098efb333ce15d062eeea289b2bed5b2fd3075f5d4bb8cc8_amd64 as a component of Middleware Containers for OpenShift", + "product_id": "8Base-RHOSE-Middleware:rhpam-7/rhpam-kogito-rhel8-operator-bundle@sha256:4553c12fa6f1a41b098efb333ce15d062eeea289b2bed5b2fd3075f5d4bb8cc8_amd64" + }, + "product_reference": "rhpam-7/rhpam-kogito-rhel8-operator-bundle@sha256:4553c12fa6f1a41b098efb333ce15d062eeea289b2bed5b2fd3075f5d4bb8cc8_amd64", + "relates_to_product_reference": "8Base-RHOSE-Middleware" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhpam-7/rhpam-kogito-rhel8-operator@sha256:52c4c3483cbcd0552730311a21cd4f32902de01b0efbaca2420a96dae6ad6b59_amd64 as a component of Middleware Containers for OpenShift", + "product_id": "8Base-RHOSE-Middleware:rhpam-7/rhpam-kogito-rhel8-operator@sha256:52c4c3483cbcd0552730311a21cd4f32902de01b0efbaca2420a96dae6ad6b59_amd64" + }, + "product_reference": "rhpam-7/rhpam-kogito-rhel8-operator@sha256:52c4c3483cbcd0552730311a21cd4f32902de01b0efbaca2420a96dae6ad6b59_amd64", + "relates_to_product_reference": "8Base-RHOSE-Middleware" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhpam-7/rhpam-kogito-rhel8-operator@sha256:6ea8b56d752f98a1dd48d8e91f00f49a8f40124b6ec4464209e2e8554de7c93e_ppc64le as a component of Middleware Containers for OpenShift", + "product_id": "8Base-RHOSE-Middleware:rhpam-7/rhpam-kogito-rhel8-operator@sha256:6ea8b56d752f98a1dd48d8e91f00f49a8f40124b6ec4464209e2e8554de7c93e_ppc64le" + }, + "product_reference": "rhpam-7/rhpam-kogito-rhel8-operator@sha256:6ea8b56d752f98a1dd48d8e91f00f49a8f40124b6ec4464209e2e8554de7c93e_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-Middleware" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhpam-7/rhpam-kogito-runtime-jvm-rhel8@sha256:cbddd58758ac980a75e007808225feb9e65c280bbdc4727330acfa639474b808_amd64 as a component of Middleware Containers for OpenShift", + "product_id": "8Base-RHOSE-Middleware:rhpam-7/rhpam-kogito-runtime-jvm-rhel8@sha256:cbddd58758ac980a75e007808225feb9e65c280bbdc4727330acfa639474b808_amd64" + }, + "product_reference": "rhpam-7/rhpam-kogito-runtime-jvm-rhel8@sha256:cbddd58758ac980a75e007808225feb9e65c280bbdc4727330acfa639474b808_amd64", + "relates_to_product_reference": "8Base-RHOSE-Middleware" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhpam-7/rhpam-kogito-runtime-jvm-rhel8@sha256:ccb049dd64523e98d0e7a0f7cf99e2171f17917532f4d10ab5893b24c1b19698_ppc64le as a component of Middleware Containers for OpenShift", + "product_id": "8Base-RHOSE-Middleware:rhpam-7/rhpam-kogito-runtime-jvm-rhel8@sha256:ccb049dd64523e98d0e7a0f7cf99e2171f17917532f4d10ab5893b24c1b19698_ppc64le" + }, + "product_reference": "rhpam-7/rhpam-kogito-runtime-jvm-rhel8@sha256:ccb049dd64523e98d0e7a0f7cf99e2171f17917532f4d10ab5893b24c1b19698_ppc64le", + "relates_to_product_reference": "8Base-RHOSE-Middleware" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhpam-7/rhpam-operator-bundle@sha256:d5d8ae9b97b00623af7c4c85a15966bf4de7bc53b767634d6e8e33ba4167d9d3_amd64 as a component of Middleware Containers for OpenShift", + "product_id": "8Base-RHOSE-Middleware:rhpam-7/rhpam-operator-bundle@sha256:d5d8ae9b97b00623af7c4c85a15966bf4de7bc53b767634d6e8e33ba4167d9d3_amd64" + }, + "product_reference": "rhpam-7/rhpam-operator-bundle@sha256:d5d8ae9b97b00623af7c4c85a15966bf4de7bc53b767634d6e8e33ba4167d9d3_amd64", + "relates_to_product_reference": "8Base-RHOSE-Middleware" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhpam-7/rhpam-process-migration-rhel8@sha256:193ff45f398332ecb2af83f7c6bd1e729ca64e5bbb757ce6623b75a448bfaf55_amd64 as a component of Middleware Containers for OpenShift", + "product_id": "8Base-RHOSE-Middleware:rhpam-7/rhpam-process-migration-rhel8@sha256:193ff45f398332ecb2af83f7c6bd1e729ca64e5bbb757ce6623b75a448bfaf55_amd64" + }, + "product_reference": "rhpam-7/rhpam-process-migration-rhel8@sha256:193ff45f398332ecb2af83f7c6bd1e729ca64e5bbb757ce6623b75a448bfaf55_amd64", + "relates_to_product_reference": "8Base-RHOSE-Middleware" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhpam-7/rhpam-rhel8-operator@sha256:a7a20aed601d9a2ff38788dc773f821c1f68132de83fb1c36cc534a4f0d3468c_amd64 as a component of Middleware Containers for OpenShift", + "product_id": "8Base-RHOSE-Middleware:rhpam-7/rhpam-rhel8-operator@sha256:a7a20aed601d9a2ff38788dc773f821c1f68132de83fb1c36cc534a4f0d3468c_amd64" + }, + "product_reference": "rhpam-7/rhpam-rhel8-operator@sha256:a7a20aed601d9a2ff38788dc773f821c1f68132de83fb1c36cc534a4f0d3468c_amd64", + "relates_to_product_reference": "8Base-RHOSE-Middleware" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhpam-7/rhpam-smartrouter-rhel8@sha256:91b1516edf464d7f67b9f97062629d0e1beb1c3023d94871db577c392a2df2a8_amd64 as a component of Middleware Containers for OpenShift", + "product_id": "8Base-RHOSE-Middleware:rhpam-7/rhpam-smartrouter-rhel8@sha256:91b1516edf464d7f67b9f97062629d0e1beb1c3023d94871db577c392a2df2a8_amd64" + }, + "product_reference": "rhpam-7/rhpam-smartrouter-rhel8@sha256:91b1516edf464d7f67b9f97062629d0e1beb1c3023d94871db577c392a2df2a8_amd64", + "relates_to_product_reference": "8Base-RHOSE-Middleware" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1-tech-preview/eventing-istio-controller-rhel8@sha256:07cd63dc28c59acdf8fffcacd5cee403275b66bb0b36baa94d45335a5ac5c141_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1-tech-preview/eventing-istio-controller-rhel8@sha256:07cd63dc28c59acdf8fffcacd5cee403275b66bb0b36baa94d45335a5ac5c141_s390x" + }, + "product_reference": "openshift-serverless-1-tech-preview/eventing-istio-controller-rhel8@sha256:07cd63dc28c59acdf8fffcacd5cee403275b66bb0b36baa94d45335a5ac5c141_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1-tech-preview/eventing-istio-controller-rhel8@sha256:8cb5769df87931ae625d20a0983a492a3dd7f6b12b38a4c4cb8e884cb60a4b2a_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1-tech-preview/eventing-istio-controller-rhel8@sha256:8cb5769df87931ae625d20a0983a492a3dd7f6b12b38a4c4cb8e884cb60a4b2a_ppc64le" + }, + "product_reference": "openshift-serverless-1-tech-preview/eventing-istio-controller-rhel8@sha256:8cb5769df87931ae625d20a0983a492a3dd7f6b12b38a4c4cb8e884cb60a4b2a_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1-tech-preview/eventing-istio-controller-rhel8@sha256:e0e773344db5018233bc9aa5954e6afe0403b2f356866efc7d4dcec60df9282b_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1-tech-preview/eventing-istio-controller-rhel8@sha256:e0e773344db5018233bc9aa5954e6afe0403b2f356866efc7d4dcec60df9282b_amd64" + }, + "product_reference": "openshift-serverless-1-tech-preview/eventing-istio-controller-rhel8@sha256:e0e773344db5018233bc9aa5954e6afe0403b2f356866efc7d4dcec60df9282b_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1-tech-preview/knative-client-plugin-event-sender-rhel8@sha256:3fe21a55517a7e94fc1ebe2cd7191a48c52b88b68f32a278200b4c9d47d51df7_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1-tech-preview/knative-client-plugin-event-sender-rhel8@sha256:3fe21a55517a7e94fc1ebe2cd7191a48c52b88b68f32a278200b4c9d47d51df7_s390x" + }, + "product_reference": "openshift-serverless-1-tech-preview/knative-client-plugin-event-sender-rhel8@sha256:3fe21a55517a7e94fc1ebe2cd7191a48c52b88b68f32a278200b4c9d47d51df7_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1-tech-preview/knative-client-plugin-event-sender-rhel8@sha256:47d979bf31c3293987b3e891a8053f31a93c65c119b9afe50873654c666b92db_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1-tech-preview/knative-client-plugin-event-sender-rhel8@sha256:47d979bf31c3293987b3e891a8053f31a93c65c119b9afe50873654c666b92db_amd64" + }, + "product_reference": "openshift-serverless-1-tech-preview/knative-client-plugin-event-sender-rhel8@sha256:47d979bf31c3293987b3e891a8053f31a93c65c119b9afe50873654c666b92db_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1-tech-preview/knative-client-plugin-event-sender-rhel8@sha256:dc2883e2c901540ee6e1e7247006e2260337cb7fe0477fc02cd029843f0e68a1_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1-tech-preview/knative-client-plugin-event-sender-rhel8@sha256:dc2883e2c901540ee6e1e7247006e2260337cb7fe0477fc02cd029843f0e68a1_ppc64le" + }, + "product_reference": "openshift-serverless-1-tech-preview/knative-client-plugin-event-sender-rhel8@sha256:dc2883e2c901540ee6e1e7247006e2260337cb7fe0477fc02cd029843f0e68a1_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1-tech-preview/logic-data-index-ephemeral-rhel8@sha256:1543654b069e9cd45b5a0d17c4c4d38c415ae3beebc3cdff45ac22596453e15b_arm64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1-tech-preview/logic-data-index-ephemeral-rhel8@sha256:1543654b069e9cd45b5a0d17c4c4d38c415ae3beebc3cdff45ac22596453e15b_arm64" + }, + "product_reference": "openshift-serverless-1-tech-preview/logic-data-index-ephemeral-rhel8@sha256:1543654b069e9cd45b5a0d17c4c4d38c415ae3beebc3cdff45ac22596453e15b_arm64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1-tech-preview/logic-data-index-ephemeral-rhel8@sha256:b86203254be737f9a700f29f85b56d43367442f5fe4a7b3bcefcb0e97d24f982_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1-tech-preview/logic-data-index-ephemeral-rhel8@sha256:b86203254be737f9a700f29f85b56d43367442f5fe4a7b3bcefcb0e97d24f982_ppc64le" + }, + "product_reference": "openshift-serverless-1-tech-preview/logic-data-index-ephemeral-rhel8@sha256:b86203254be737f9a700f29f85b56d43367442f5fe4a7b3bcefcb0e97d24f982_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1-tech-preview/logic-data-index-ephemeral-rhel8@sha256:d3e3c4777360289235620c308f57d95219ca66ccb5331a092b1e6bd0f0f90b6e_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1-tech-preview/logic-data-index-ephemeral-rhel8@sha256:d3e3c4777360289235620c308f57d95219ca66ccb5331a092b1e6bd0f0f90b6e_amd64" + }, + "product_reference": "openshift-serverless-1-tech-preview/logic-data-index-ephemeral-rhel8@sha256:d3e3c4777360289235620c308f57d95219ca66ccb5331a092b1e6bd0f0f90b6e_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1-tech-preview/logic-swf-builder-rhel8@sha256:9254aa62c43241dddd4a0c17dcec57e8521fa5583c70d11133ee5053bd8c6b30_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1-tech-preview/logic-swf-builder-rhel8@sha256:9254aa62c43241dddd4a0c17dcec57e8521fa5583c70d11133ee5053bd8c6b30_amd64" + }, + "product_reference": "openshift-serverless-1-tech-preview/logic-swf-builder-rhel8@sha256:9254aa62c43241dddd4a0c17dcec57e8521fa5583c70d11133ee5053bd8c6b30_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1-tech-preview/logic-swf-builder-rhel8@sha256:c2c18a5efff4a78203f38b8ca76671fc389c49237b1426d3c9a18e64708c756b_arm64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1-tech-preview/logic-swf-builder-rhel8@sha256:c2c18a5efff4a78203f38b8ca76671fc389c49237b1426d3c9a18e64708c756b_arm64" + }, + "product_reference": "openshift-serverless-1-tech-preview/logic-swf-builder-rhel8@sha256:c2c18a5efff4a78203f38b8ca76671fc389c49237b1426d3c9a18e64708c756b_arm64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1-tech-preview/logic-swf-builder-rhel8@sha256:fe8fe8c2cea0f2957fe7ab238c6cf6c86cb480f75fb632b9128a3c5775d3c9c1_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1-tech-preview/logic-swf-builder-rhel8@sha256:fe8fe8c2cea0f2957fe7ab238c6cf6c86cb480f75fb632b9128a3c5775d3c9c1_ppc64le" + }, + "product_reference": "openshift-serverless-1-tech-preview/logic-swf-builder-rhel8@sha256:fe8fe8c2cea0f2957fe7ab238c6cf6c86cb480f75fb632b9128a3c5775d3c9c1_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1-tech-preview/logic-swf-devmode-rhel8@sha256:248a55059ca855ffdce83ea755d7bccd0094ba7ede795ddb892f17a3d360f24a_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1-tech-preview/logic-swf-devmode-rhel8@sha256:248a55059ca855ffdce83ea755d7bccd0094ba7ede795ddb892f17a3d360f24a_ppc64le" + }, + "product_reference": "openshift-serverless-1-tech-preview/logic-swf-devmode-rhel8@sha256:248a55059ca855ffdce83ea755d7bccd0094ba7ede795ddb892f17a3d360f24a_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1-tech-preview/logic-swf-devmode-rhel8@sha256:38fe7d3ec137725d6d103603830866f3992608888692f981ca1e16aa03a97df3_arm64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1-tech-preview/logic-swf-devmode-rhel8@sha256:38fe7d3ec137725d6d103603830866f3992608888692f981ca1e16aa03a97df3_arm64" + }, + "product_reference": "openshift-serverless-1-tech-preview/logic-swf-devmode-rhel8@sha256:38fe7d3ec137725d6d103603830866f3992608888692f981ca1e16aa03a97df3_arm64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1-tech-preview/logic-swf-devmode-rhel8@sha256:f01f75bfd37282591cbc47907d1f5df57ccffa526a636b9e84b4b8f5f4b78997_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1-tech-preview/logic-swf-devmode-rhel8@sha256:f01f75bfd37282591cbc47907d1f5df57ccffa526a636b9e84b4b8f5f4b78997_amd64" + }, + "product_reference": "openshift-serverless-1-tech-preview/logic-swf-devmode-rhel8@sha256:f01f75bfd37282591cbc47907d1f5df57ccffa526a636b9e84b4b8f5f4b78997_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/client-kn-rhel8@sha256:04552463c9c9ed820a107d16739958aeae2c59e6cbf209673b083716e1831224_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/client-kn-rhel8@sha256:04552463c9c9ed820a107d16739958aeae2c59e6cbf209673b083716e1831224_amd64" + }, + "product_reference": "openshift-serverless-1/client-kn-rhel8@sha256:04552463c9c9ed820a107d16739958aeae2c59e6cbf209673b083716e1831224_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/client-kn-rhel8@sha256:632be306dc2cdb98c5025447ba6a04758d037ab55c9324f69f9718fe136c006c_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/client-kn-rhel8@sha256:632be306dc2cdb98c5025447ba6a04758d037ab55c9324f69f9718fe136c006c_s390x" + }, + "product_reference": "openshift-serverless-1/client-kn-rhel8@sha256:632be306dc2cdb98c5025447ba6a04758d037ab55c9324f69f9718fe136c006c_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/client-kn-rhel8@sha256:d12dc8841593e2c241d2d0239804292760f65517cb5743c24802e62c02d02abf_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/client-kn-rhel8@sha256:d12dc8841593e2c241d2d0239804292760f65517cb5743c24802e62c02d02abf_ppc64le" + }, + "product_reference": "openshift-serverless-1/client-kn-rhel8@sha256:d12dc8841593e2c241d2d0239804292760f65517cb5743c24802e62c02d02abf_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-apiserver-receive-adapter-rhel8@sha256:091f2f92aa0439f7c17d203189e65ab0752c12cd385f6e51b642fd2a595f5128_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-apiserver-receive-adapter-rhel8@sha256:091f2f92aa0439f7c17d203189e65ab0752c12cd385f6e51b642fd2a595f5128_ppc64le" + }, + "product_reference": "openshift-serverless-1/eventing-apiserver-receive-adapter-rhel8@sha256:091f2f92aa0439f7c17d203189e65ab0752c12cd385f6e51b642fd2a595f5128_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-apiserver-receive-adapter-rhel8@sha256:133ef116ff45e4f2997465501cec4a1646d04b7c846a6640bf1a84bf3de115c4_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-apiserver-receive-adapter-rhel8@sha256:133ef116ff45e4f2997465501cec4a1646d04b7c846a6640bf1a84bf3de115c4_s390x" + }, + "product_reference": "openshift-serverless-1/eventing-apiserver-receive-adapter-rhel8@sha256:133ef116ff45e4f2997465501cec4a1646d04b7c846a6640bf1a84bf3de115c4_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-apiserver-receive-adapter-rhel8@sha256:e1bb69c8055e32c298fb44dfd765a9735537406cbbf98c11ab051494e9bbaba3_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-apiserver-receive-adapter-rhel8@sha256:e1bb69c8055e32c298fb44dfd765a9735537406cbbf98c11ab051494e9bbaba3_amd64" + }, + "product_reference": "openshift-serverless-1/eventing-apiserver-receive-adapter-rhel8@sha256:e1bb69c8055e32c298fb44dfd765a9735537406cbbf98c11ab051494e9bbaba3_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-controller-rhel8@sha256:4cbea97b553d63340b3943b3f5d22e6582fe4b2f9aa21447d549806528b1f785_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-controller-rhel8@sha256:4cbea97b553d63340b3943b3f5d22e6582fe4b2f9aa21447d549806528b1f785_ppc64le" + }, + "product_reference": "openshift-serverless-1/eventing-controller-rhel8@sha256:4cbea97b553d63340b3943b3f5d22e6582fe4b2f9aa21447d549806528b1f785_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-controller-rhel8@sha256:7a189da6f0de2054ca1a56c4cb1979ab3985b68c0b81be677cd475bdee9929e4_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-controller-rhel8@sha256:7a189da6f0de2054ca1a56c4cb1979ab3985b68c0b81be677cd475bdee9929e4_amd64" + }, + "product_reference": "openshift-serverless-1/eventing-controller-rhel8@sha256:7a189da6f0de2054ca1a56c4cb1979ab3985b68c0b81be677cd475bdee9929e4_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-controller-rhel8@sha256:dbbfef23c109add5e192b2930941c156d0a6d2334650f144975e2d1031f8bcdf_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-controller-rhel8@sha256:dbbfef23c109add5e192b2930941c156d0a6d2334650f144975e2d1031f8bcdf_s390x" + }, + "product_reference": "openshift-serverless-1/eventing-controller-rhel8@sha256:dbbfef23c109add5e192b2930941c156d0a6d2334650f144975e2d1031f8bcdf_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-in-memory-channel-controller-rhel8@sha256:08c8f59d5c59885761d6004efdba303609210f7c595c28e8eb0bb0acca8e2313_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-in-memory-channel-controller-rhel8@sha256:08c8f59d5c59885761d6004efdba303609210f7c595c28e8eb0bb0acca8e2313_amd64" + }, + "product_reference": "openshift-serverless-1/eventing-in-memory-channel-controller-rhel8@sha256:08c8f59d5c59885761d6004efdba303609210f7c595c28e8eb0bb0acca8e2313_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-in-memory-channel-controller-rhel8@sha256:13506b369c0d8b7a141cfd44f97b08bfbb97d5fbc3a996ead0b73e886cfe3acf_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-in-memory-channel-controller-rhel8@sha256:13506b369c0d8b7a141cfd44f97b08bfbb97d5fbc3a996ead0b73e886cfe3acf_ppc64le" + }, + "product_reference": "openshift-serverless-1/eventing-in-memory-channel-controller-rhel8@sha256:13506b369c0d8b7a141cfd44f97b08bfbb97d5fbc3a996ead0b73e886cfe3acf_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-in-memory-channel-controller-rhel8@sha256:3efd01822c309d9204e2316874474b142f41704ab1f9e5d9c8a5a069f1bf040a_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-in-memory-channel-controller-rhel8@sha256:3efd01822c309d9204e2316874474b142f41704ab1f9e5d9c8a5a069f1bf040a_s390x" + }, + "product_reference": "openshift-serverless-1/eventing-in-memory-channel-controller-rhel8@sha256:3efd01822c309d9204e2316874474b142f41704ab1f9e5d9c8a5a069f1bf040a_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-in-memory-channel-dispatcher-rhel8@sha256:44aff1a5ab3171083d9c46d32425931367c720acb3733aeef4c0d5c1b5321b5d_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-in-memory-channel-dispatcher-rhel8@sha256:44aff1a5ab3171083d9c46d32425931367c720acb3733aeef4c0d5c1b5321b5d_ppc64le" + }, + "product_reference": "openshift-serverless-1/eventing-in-memory-channel-dispatcher-rhel8@sha256:44aff1a5ab3171083d9c46d32425931367c720acb3733aeef4c0d5c1b5321b5d_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-in-memory-channel-dispatcher-rhel8@sha256:dac1e99a50449415c2125440588975100692e76e38140a0cd002e996c8bc19d1_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-in-memory-channel-dispatcher-rhel8@sha256:dac1e99a50449415c2125440588975100692e76e38140a0cd002e996c8bc19d1_amd64" + }, + "product_reference": "openshift-serverless-1/eventing-in-memory-channel-dispatcher-rhel8@sha256:dac1e99a50449415c2125440588975100692e76e38140a0cd002e996c8bc19d1_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-in-memory-channel-dispatcher-rhel8@sha256:fe0033a3c0328aae5a30913490c67c7e4d1643fb6fdbfdc29d8dfa699ce0bb06_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-in-memory-channel-dispatcher-rhel8@sha256:fe0033a3c0328aae5a30913490c67c7e4d1643fb6fdbfdc29d8dfa699ce0bb06_s390x" + }, + "product_reference": "openshift-serverless-1/eventing-in-memory-channel-dispatcher-rhel8@sha256:fe0033a3c0328aae5a30913490c67c7e4d1643fb6fdbfdc29d8dfa699ce0bb06_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-kafka-broker-controller-rhel8@sha256:3ea33587afb65d36532542f985618432cf652894738b5844830478c06a167fcc_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-kafka-broker-controller-rhel8@sha256:3ea33587afb65d36532542f985618432cf652894738b5844830478c06a167fcc_amd64" + }, + "product_reference": "openshift-serverless-1/eventing-kafka-broker-controller-rhel8@sha256:3ea33587afb65d36532542f985618432cf652894738b5844830478c06a167fcc_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-kafka-broker-controller-rhel8@sha256:41207762bc2e8a96d9cc1f40e5be8d0785b92b9df1fae4c947fd5f58d39ce80f_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-kafka-broker-controller-rhel8@sha256:41207762bc2e8a96d9cc1f40e5be8d0785b92b9df1fae4c947fd5f58d39ce80f_s390x" + }, + "product_reference": "openshift-serverless-1/eventing-kafka-broker-controller-rhel8@sha256:41207762bc2e8a96d9cc1f40e5be8d0785b92b9df1fae4c947fd5f58d39ce80f_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-kafka-broker-controller-rhel8@sha256:c7858bd50cbf967e498e1b79a55f458688c6fd1f4cd55139ff047a750ed0530c_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-kafka-broker-controller-rhel8@sha256:c7858bd50cbf967e498e1b79a55f458688c6fd1f4cd55139ff047a750ed0530c_ppc64le" + }, + "product_reference": "openshift-serverless-1/eventing-kafka-broker-controller-rhel8@sha256:c7858bd50cbf967e498e1b79a55f458688c6fd1f4cd55139ff047a750ed0530c_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-kafka-broker-dispatcher-rhel8@sha256:16fb16da6f8b4456af5898879d63d449a5ae290e38c351ebd527fb5d40a0e2c7_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-kafka-broker-dispatcher-rhel8@sha256:16fb16da6f8b4456af5898879d63d449a5ae290e38c351ebd527fb5d40a0e2c7_s390x" + }, + "product_reference": "openshift-serverless-1/eventing-kafka-broker-dispatcher-rhel8@sha256:16fb16da6f8b4456af5898879d63d449a5ae290e38c351ebd527fb5d40a0e2c7_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-kafka-broker-dispatcher-rhel8@sha256:702f06a7db422c4679300f46b1f5db5f34c13c71f77960251497b9cd049e7792_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-kafka-broker-dispatcher-rhel8@sha256:702f06a7db422c4679300f46b1f5db5f34c13c71f77960251497b9cd049e7792_amd64" + }, + "product_reference": "openshift-serverless-1/eventing-kafka-broker-dispatcher-rhel8@sha256:702f06a7db422c4679300f46b1f5db5f34c13c71f77960251497b9cd049e7792_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-kafka-broker-dispatcher-rhel8@sha256:72906ac2612567fe3ea6ea02fc0f454ea01dabf51f4c9ba2fd8cc6d894c302b0_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-kafka-broker-dispatcher-rhel8@sha256:72906ac2612567fe3ea6ea02fc0f454ea01dabf51f4c9ba2fd8cc6d894c302b0_ppc64le" + }, + "product_reference": "openshift-serverless-1/eventing-kafka-broker-dispatcher-rhel8@sha256:72906ac2612567fe3ea6ea02fc0f454ea01dabf51f4c9ba2fd8cc6d894c302b0_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-kafka-broker-post-install-rhel8@sha256:4255a0d699e16b5a4e7e90e3ba5057ccdf259851fa8ade71ce8c2bc50864ec97_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-kafka-broker-post-install-rhel8@sha256:4255a0d699e16b5a4e7e90e3ba5057ccdf259851fa8ade71ce8c2bc50864ec97_amd64" + }, + "product_reference": "openshift-serverless-1/eventing-kafka-broker-post-install-rhel8@sha256:4255a0d699e16b5a4e7e90e3ba5057ccdf259851fa8ade71ce8c2bc50864ec97_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-kafka-broker-post-install-rhel8@sha256:dde479e0255b31c862c73ac7aa8faa7842c279e1be7519c207211fa8331ed4f9_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-kafka-broker-post-install-rhel8@sha256:dde479e0255b31c862c73ac7aa8faa7842c279e1be7519c207211fa8331ed4f9_s390x" + }, + "product_reference": "openshift-serverless-1/eventing-kafka-broker-post-install-rhel8@sha256:dde479e0255b31c862c73ac7aa8faa7842c279e1be7519c207211fa8331ed4f9_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-kafka-broker-post-install-rhel8@sha256:f515825c828638ca568343b2e996cc41e7044ff539e994d3cb37af0d247f0370_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-kafka-broker-post-install-rhel8@sha256:f515825c828638ca568343b2e996cc41e7044ff539e994d3cb37af0d247f0370_ppc64le" + }, + "product_reference": "openshift-serverless-1/eventing-kafka-broker-post-install-rhel8@sha256:f515825c828638ca568343b2e996cc41e7044ff539e994d3cb37af0d247f0370_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-kafka-broker-receiver-rhel8@sha256:5e65c080f6b6ad721723a617b8c99c3935d5d83b9da991b3a0e3910656468f56_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-kafka-broker-receiver-rhel8@sha256:5e65c080f6b6ad721723a617b8c99c3935d5d83b9da991b3a0e3910656468f56_ppc64le" + }, + "product_reference": "openshift-serverless-1/eventing-kafka-broker-receiver-rhel8@sha256:5e65c080f6b6ad721723a617b8c99c3935d5d83b9da991b3a0e3910656468f56_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-kafka-broker-receiver-rhel8@sha256:9dc02c49a4f4527142a2d688e4996d268062cdb82820a4b6c1611cf90f11d811_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-kafka-broker-receiver-rhel8@sha256:9dc02c49a4f4527142a2d688e4996d268062cdb82820a4b6c1611cf90f11d811_amd64" + }, + "product_reference": "openshift-serverless-1/eventing-kafka-broker-receiver-rhel8@sha256:9dc02c49a4f4527142a2d688e4996d268062cdb82820a4b6c1611cf90f11d811_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-kafka-broker-receiver-rhel8@sha256:ca5a592d80409f674590e3d19f8d10192e91fc5b80d26e46d269c5e77e00035a_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-kafka-broker-receiver-rhel8@sha256:ca5a592d80409f674590e3d19f8d10192e91fc5b80d26e46d269c5e77e00035a_s390x" + }, + "product_reference": "openshift-serverless-1/eventing-kafka-broker-receiver-rhel8@sha256:ca5a592d80409f674590e3d19f8d10192e91fc5b80d26e46d269c5e77e00035a_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-kafka-broker-webhook-rhel8@sha256:0c476f3dccf74f09594bddb820746326e0f944abc717877562cb6c16036ae74f_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-kafka-broker-webhook-rhel8@sha256:0c476f3dccf74f09594bddb820746326e0f944abc717877562cb6c16036ae74f_amd64" + }, + "product_reference": "openshift-serverless-1/eventing-kafka-broker-webhook-rhel8@sha256:0c476f3dccf74f09594bddb820746326e0f944abc717877562cb6c16036ae74f_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-kafka-broker-webhook-rhel8@sha256:aeab9f39b40ceba048451f9cf013063cd717911ff4001b13129e3ffc68b3f126_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-kafka-broker-webhook-rhel8@sha256:aeab9f39b40ceba048451f9cf013063cd717911ff4001b13129e3ffc68b3f126_ppc64le" + }, + "product_reference": "openshift-serverless-1/eventing-kafka-broker-webhook-rhel8@sha256:aeab9f39b40ceba048451f9cf013063cd717911ff4001b13129e3ffc68b3f126_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-kafka-broker-webhook-rhel8@sha256:f9203bdf2f0e22d88722f13aee39f5e57e22de223ff95b1df58454f3322db83f_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-kafka-broker-webhook-rhel8@sha256:f9203bdf2f0e22d88722f13aee39f5e57e22de223ff95b1df58454f3322db83f_s390x" + }, + "product_reference": "openshift-serverless-1/eventing-kafka-broker-webhook-rhel8@sha256:f9203bdf2f0e22d88722f13aee39f5e57e22de223ff95b1df58454f3322db83f_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-mtbroker-filter-rhel8@sha256:1fbaac91656cd8d788bacea7d3178def39c9d5a4ff98d9d2563f43f73907b7aa_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-mtbroker-filter-rhel8@sha256:1fbaac91656cd8d788bacea7d3178def39c9d5a4ff98d9d2563f43f73907b7aa_ppc64le" + }, + "product_reference": "openshift-serverless-1/eventing-mtbroker-filter-rhel8@sha256:1fbaac91656cd8d788bacea7d3178def39c9d5a4ff98d9d2563f43f73907b7aa_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-mtbroker-filter-rhel8@sha256:7b1ef1f93c7e3711a30168b742658951adbbfbbc49e89623d34f4d15677a51a0_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-mtbroker-filter-rhel8@sha256:7b1ef1f93c7e3711a30168b742658951adbbfbbc49e89623d34f4d15677a51a0_amd64" + }, + "product_reference": "openshift-serverless-1/eventing-mtbroker-filter-rhel8@sha256:7b1ef1f93c7e3711a30168b742658951adbbfbbc49e89623d34f4d15677a51a0_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-mtbroker-filter-rhel8@sha256:8a6326f00fa7ca21ae3ffc49ba06d244591d271718192fea0391ba1085f963de_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-mtbroker-filter-rhel8@sha256:8a6326f00fa7ca21ae3ffc49ba06d244591d271718192fea0391ba1085f963de_s390x" + }, + "product_reference": "openshift-serverless-1/eventing-mtbroker-filter-rhel8@sha256:8a6326f00fa7ca21ae3ffc49ba06d244591d271718192fea0391ba1085f963de_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-mtbroker-ingress-rhel8@sha256:4fab3f57eb15ea63271d90c96fac4bb5add49a9a01b5904bb7f3a07767ef6729_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-mtbroker-ingress-rhel8@sha256:4fab3f57eb15ea63271d90c96fac4bb5add49a9a01b5904bb7f3a07767ef6729_s390x" + }, + "product_reference": "openshift-serverless-1/eventing-mtbroker-ingress-rhel8@sha256:4fab3f57eb15ea63271d90c96fac4bb5add49a9a01b5904bb7f3a07767ef6729_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-mtbroker-ingress-rhel8@sha256:56a6f4dce87527c45581c82b4e0cf573528d667fcde6a64a25bea3297bcba7b5_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-mtbroker-ingress-rhel8@sha256:56a6f4dce87527c45581c82b4e0cf573528d667fcde6a64a25bea3297bcba7b5_ppc64le" + }, + "product_reference": "openshift-serverless-1/eventing-mtbroker-ingress-rhel8@sha256:56a6f4dce87527c45581c82b4e0cf573528d667fcde6a64a25bea3297bcba7b5_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-mtbroker-ingress-rhel8@sha256:6ecc1cb653580e91d2021eff5839733d2321e11fe88948c1a2ed1d9e113231b2_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-mtbroker-ingress-rhel8@sha256:6ecc1cb653580e91d2021eff5839733d2321e11fe88948c1a2ed1d9e113231b2_amd64" + }, + "product_reference": "openshift-serverless-1/eventing-mtbroker-ingress-rhel8@sha256:6ecc1cb653580e91d2021eff5839733d2321e11fe88948c1a2ed1d9e113231b2_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-mtchannel-broker-rhel8@sha256:1b85b5d8f4f55241ec0db018a1943910b85791fd3e68105c67288b1ebbdb3d45_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-mtchannel-broker-rhel8@sha256:1b85b5d8f4f55241ec0db018a1943910b85791fd3e68105c67288b1ebbdb3d45_s390x" + }, + "product_reference": "openshift-serverless-1/eventing-mtchannel-broker-rhel8@sha256:1b85b5d8f4f55241ec0db018a1943910b85791fd3e68105c67288b1ebbdb3d45_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-mtchannel-broker-rhel8@sha256:a105d049342c58d4f37a97a11e4b082b0451417dcfdab1cf1cf6414e5567cab9_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-mtchannel-broker-rhel8@sha256:a105d049342c58d4f37a97a11e4b082b0451417dcfdab1cf1cf6414e5567cab9_ppc64le" + }, + "product_reference": "openshift-serverless-1/eventing-mtchannel-broker-rhel8@sha256:a105d049342c58d4f37a97a11e4b082b0451417dcfdab1cf1cf6414e5567cab9_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-mtchannel-broker-rhel8@sha256:b9b0edd6a1808d025900a616552cad7d656783f37d80e83acbaab18b938e0db3_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-mtchannel-broker-rhel8@sha256:b9b0edd6a1808d025900a616552cad7d656783f37d80e83acbaab18b938e0db3_amd64" + }, + "product_reference": "openshift-serverless-1/eventing-mtchannel-broker-rhel8@sha256:b9b0edd6a1808d025900a616552cad7d656783f37d80e83acbaab18b938e0db3_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-mtping-rhel8@sha256:34692fee06034c1ee87fa0de14cbf46ba9d01b760d1a287dff48ffc745ec75a8_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-mtping-rhel8@sha256:34692fee06034c1ee87fa0de14cbf46ba9d01b760d1a287dff48ffc745ec75a8_ppc64le" + }, + "product_reference": "openshift-serverless-1/eventing-mtping-rhel8@sha256:34692fee06034c1ee87fa0de14cbf46ba9d01b760d1a287dff48ffc745ec75a8_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-mtping-rhel8@sha256:a97241ce8f13684c9200aeffb395d87fd20e4e7d3cb071f6376b05916459f2f3_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-mtping-rhel8@sha256:a97241ce8f13684c9200aeffb395d87fd20e4e7d3cb071f6376b05916459f2f3_s390x" + }, + "product_reference": "openshift-serverless-1/eventing-mtping-rhel8@sha256:a97241ce8f13684c9200aeffb395d87fd20e4e7d3cb071f6376b05916459f2f3_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-mtping-rhel8@sha256:dc69eeb47b11b0306066b1a994a8faab956043390fe461df6eef5a502b396c79_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-mtping-rhel8@sha256:dc69eeb47b11b0306066b1a994a8faab956043390fe461df6eef5a502b396c79_amd64" + }, + "product_reference": "openshift-serverless-1/eventing-mtping-rhel8@sha256:dc69eeb47b11b0306066b1a994a8faab956043390fe461df6eef5a502b396c79_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-storage-version-migration-rhel8@sha256:036974bc6a45dd3971233370d3d61159411bdd03460fe96afc9ddbe9f8c04a58_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-storage-version-migration-rhel8@sha256:036974bc6a45dd3971233370d3d61159411bdd03460fe96afc9ddbe9f8c04a58_s390x" + }, + "product_reference": "openshift-serverless-1/eventing-storage-version-migration-rhel8@sha256:036974bc6a45dd3971233370d3d61159411bdd03460fe96afc9ddbe9f8c04a58_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-storage-version-migration-rhel8@sha256:538312d7a0f39235541f16d4bbfc68e8a0f6defd8cebdb9335f74ac13cb53ed0_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-storage-version-migration-rhel8@sha256:538312d7a0f39235541f16d4bbfc68e8a0f6defd8cebdb9335f74ac13cb53ed0_amd64" + }, + "product_reference": "openshift-serverless-1/eventing-storage-version-migration-rhel8@sha256:538312d7a0f39235541f16d4bbfc68e8a0f6defd8cebdb9335f74ac13cb53ed0_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-storage-version-migration-rhel8@sha256:bf29f19349523b47485119c7bda8634bb4f1d1907fe86ef54880dcdb57cfe733_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-storage-version-migration-rhel8@sha256:bf29f19349523b47485119c7bda8634bb4f1d1907fe86ef54880dcdb57cfe733_ppc64le" + }, + "product_reference": "openshift-serverless-1/eventing-storage-version-migration-rhel8@sha256:bf29f19349523b47485119c7bda8634bb4f1d1907fe86ef54880dcdb57cfe733_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-webhook-rhel8@sha256:3e0afc59de7e91c6266657f6d9ce1de8405d56ab171a005a1e09159ce162b0d3_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-webhook-rhel8@sha256:3e0afc59de7e91c6266657f6d9ce1de8405d56ab171a005a1e09159ce162b0d3_s390x" + }, + "product_reference": "openshift-serverless-1/eventing-webhook-rhel8@sha256:3e0afc59de7e91c6266657f6d9ce1de8405d56ab171a005a1e09159ce162b0d3_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-webhook-rhel8@sha256:76b8bac332bd58bfb9765e04d9dcb0338254a61779d2d232ea5898244da359b2_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-webhook-rhel8@sha256:76b8bac332bd58bfb9765e04d9dcb0338254a61779d2d232ea5898244da359b2_amd64" + }, + "product_reference": "openshift-serverless-1/eventing-webhook-rhel8@sha256:76b8bac332bd58bfb9765e04d9dcb0338254a61779d2d232ea5898244da359b2_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/eventing-webhook-rhel8@sha256:86734f1f2a5dbd62e1937ae3fd04d3c088eeda74179b444259990ae6fcb665ce_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/eventing-webhook-rhel8@sha256:86734f1f2a5dbd62e1937ae3fd04d3c088eeda74179b444259990ae6fcb665ce_ppc64le" + }, + "product_reference": "openshift-serverless-1/eventing-webhook-rhel8@sha256:86734f1f2a5dbd62e1937ae3fd04d3c088eeda74179b444259990ae6fcb665ce_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/func-utils-rhel8@sha256:0b71060287485d5728b81c890fac97e6e1bc0b7fe73f488d446cd9ceefc072d6_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/func-utils-rhel8@sha256:0b71060287485d5728b81c890fac97e6e1bc0b7fe73f488d446cd9ceefc072d6_amd64" + }, + "product_reference": "openshift-serverless-1/func-utils-rhel8@sha256:0b71060287485d5728b81c890fac97e6e1bc0b7fe73f488d446cd9ceefc072d6_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/func-utils-rhel8@sha256:3f3928554beec420eceda412196f386a52ad30d190504b7cc811ef360370c777_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/func-utils-rhel8@sha256:3f3928554beec420eceda412196f386a52ad30d190504b7cc811ef360370c777_s390x" + }, + "product_reference": "openshift-serverless-1/func-utils-rhel8@sha256:3f3928554beec420eceda412196f386a52ad30d190504b7cc811ef360370c777_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/func-utils-rhel8@sha256:537ac0e39cd5898ba65b741707fb6e5981b42a426e970f35222fe166c45f6425_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/func-utils-rhel8@sha256:537ac0e39cd5898ba65b741707fb6e5981b42a426e970f35222fe166c45f6425_ppc64le" + }, + "product_reference": "openshift-serverless-1/func-utils-rhel8@sha256:537ac0e39cd5898ba65b741707fb6e5981b42a426e970f35222fe166c45f6425_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/ingress-rhel8-operator@sha256:143e80e240e30eefe8e5262529f3e43df7386aee2730d5bfe8af5d8cd3f730d1_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/ingress-rhel8-operator@sha256:143e80e240e30eefe8e5262529f3e43df7386aee2730d5bfe8af5d8cd3f730d1_ppc64le" + }, + "product_reference": "openshift-serverless-1/ingress-rhel8-operator@sha256:143e80e240e30eefe8e5262529f3e43df7386aee2730d5bfe8af5d8cd3f730d1_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/ingress-rhel8-operator@sha256:254e090465e5923939888ed4e5ed187981485f8868bc31cebc300412b62e8bd8_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/ingress-rhel8-operator@sha256:254e090465e5923939888ed4e5ed187981485f8868bc31cebc300412b62e8bd8_s390x" + }, + "product_reference": "openshift-serverless-1/ingress-rhel8-operator@sha256:254e090465e5923939888ed4e5ed187981485f8868bc31cebc300412b62e8bd8_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/ingress-rhel8-operator@sha256:f0025b73dc2af1ed481f9fc1a02f43c4b6827d04fbdca5380a1d2bae53747501_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/ingress-rhel8-operator@sha256:f0025b73dc2af1ed481f9fc1a02f43c4b6827d04fbdca5380a1d2bae53747501_amd64" + }, + "product_reference": "openshift-serverless-1/ingress-rhel8-operator@sha256:f0025b73dc2af1ed481f9fc1a02f43c4b6827d04fbdca5380a1d2bae53747501_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/kn-cli-artifacts-rhel8@sha256:1c31130fa638c0bf8294cda7d4029f3a4a8b6489c243f0ff245cdd1e976b182c_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/kn-cli-artifacts-rhel8@sha256:1c31130fa638c0bf8294cda7d4029f3a4a8b6489c243f0ff245cdd1e976b182c_amd64" + }, + "product_reference": "openshift-serverless-1/kn-cli-artifacts-rhel8@sha256:1c31130fa638c0bf8294cda7d4029f3a4a8b6489c243f0ff245cdd1e976b182c_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/kn-cli-artifacts-rhel8@sha256:95c47ca06184e042f65fe3fbcaa76425b0d092d5575bb1a5346d75274e9908f8_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/kn-cli-artifacts-rhel8@sha256:95c47ca06184e042f65fe3fbcaa76425b0d092d5575bb1a5346d75274e9908f8_ppc64le" + }, + "product_reference": "openshift-serverless-1/kn-cli-artifacts-rhel8@sha256:95c47ca06184e042f65fe3fbcaa76425b0d092d5575bb1a5346d75274e9908f8_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/kn-cli-artifacts-rhel8@sha256:d27a87311a9a5c6a57e70ed7d15973ee730ebf53ba418070a9b6c2e9e5ce6d2f_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/kn-cli-artifacts-rhel8@sha256:d27a87311a9a5c6a57e70ed7d15973ee730ebf53ba418070a9b6c2e9e5ce6d2f_s390x" + }, + "product_reference": "openshift-serverless-1/kn-cli-artifacts-rhel8@sha256:d27a87311a9a5c6a57e70ed7d15973ee730ebf53ba418070a9b6c2e9e5ce6d2f_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/knative-rhel8-operator@sha256:aa33810e0a45d2e97daf6880d259de78e2c7ef60576b8c5304deca8a91c9c0e6_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/knative-rhel8-operator@sha256:aa33810e0a45d2e97daf6880d259de78e2c7ef60576b8c5304deca8a91c9c0e6_s390x" + }, + "product_reference": "openshift-serverless-1/knative-rhel8-operator@sha256:aa33810e0a45d2e97daf6880d259de78e2c7ef60576b8c5304deca8a91c9c0e6_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/knative-rhel8-operator@sha256:dd91c9f5fe71a2aea6d8f3f2d20d4eac14dd7f5cfa984e53dcf9b87ced3e3f0f_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/knative-rhel8-operator@sha256:dd91c9f5fe71a2aea6d8f3f2d20d4eac14dd7f5cfa984e53dcf9b87ced3e3f0f_amd64" + }, + "product_reference": "openshift-serverless-1/knative-rhel8-operator@sha256:dd91c9f5fe71a2aea6d8f3f2d20d4eac14dd7f5cfa984e53dcf9b87ced3e3f0f_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/knative-rhel8-operator@sha256:ed3107ee9d67c218ba2ad65a877356dabbc6775302b542a1db2ebfed6be60bee_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/knative-rhel8-operator@sha256:ed3107ee9d67c218ba2ad65a877356dabbc6775302b542a1db2ebfed6be60bee_ppc64le" + }, + "product_reference": "openshift-serverless-1/knative-rhel8-operator@sha256:ed3107ee9d67c218ba2ad65a877356dabbc6775302b542a1db2ebfed6be60bee_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/kourier-control-rhel8@sha256:77d84a8e666045d96139a9c3ccd191fecb7e86718c084dbc8f532a4985393a8d_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/kourier-control-rhel8@sha256:77d84a8e666045d96139a9c3ccd191fecb7e86718c084dbc8f532a4985393a8d_s390x" + }, + "product_reference": "openshift-serverless-1/kourier-control-rhel8@sha256:77d84a8e666045d96139a9c3ccd191fecb7e86718c084dbc8f532a4985393a8d_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/kourier-control-rhel8@sha256:e94285c1cce41e495873ebec367d20db30c3b47c70b735236289925ad264bf89_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/kourier-control-rhel8@sha256:e94285c1cce41e495873ebec367d20db30c3b47c70b735236289925ad264bf89_ppc64le" + }, + "product_reference": "openshift-serverless-1/kourier-control-rhel8@sha256:e94285c1cce41e495873ebec367d20db30c3b47c70b735236289925ad264bf89_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/kourier-control-rhel8@sha256:f01738e575acc0167a2bc73a7cc521a90e1319c0c2bb13d17a8e6c29b3586d2f_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/kourier-control-rhel8@sha256:f01738e575acc0167a2bc73a7cc521a90e1319c0c2bb13d17a8e6c29b3586d2f_amd64" + }, + "product_reference": "openshift-serverless-1/kourier-control-rhel8@sha256:f01738e575acc0167a2bc73a7cc521a90e1319c0c2bb13d17a8e6c29b3586d2f_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/net-istio-controller-rhel8@sha256:7c78962f1e53096dc341b82f2fd0a628673a10f03bb709573d3e2571028f31d5_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/net-istio-controller-rhel8@sha256:7c78962f1e53096dc341b82f2fd0a628673a10f03bb709573d3e2571028f31d5_s390x" + }, + "product_reference": "openshift-serverless-1/net-istio-controller-rhel8@sha256:7c78962f1e53096dc341b82f2fd0a628673a10f03bb709573d3e2571028f31d5_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/net-istio-controller-rhel8@sha256:9a161c1fdc3d29d2879096196ec8d946567f4788f19519ba10a40f0d2a9adef6_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/net-istio-controller-rhel8@sha256:9a161c1fdc3d29d2879096196ec8d946567f4788f19519ba10a40f0d2a9adef6_ppc64le" + }, + "product_reference": "openshift-serverless-1/net-istio-controller-rhel8@sha256:9a161c1fdc3d29d2879096196ec8d946567f4788f19519ba10a40f0d2a9adef6_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/net-istio-controller-rhel8@sha256:cb311f25036afb3aea9695aa72b5867440c5266e05b8512c5aed4cdce82d22c1_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/net-istio-controller-rhel8@sha256:cb311f25036afb3aea9695aa72b5867440c5266e05b8512c5aed4cdce82d22c1_amd64" + }, + "product_reference": "openshift-serverless-1/net-istio-controller-rhel8@sha256:cb311f25036afb3aea9695aa72b5867440c5266e05b8512c5aed4cdce82d22c1_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/net-istio-webhook-rhel8@sha256:3a888047747246743505bafd08a70e081223225601d9a6cd94801b856ed2ba84_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/net-istio-webhook-rhel8@sha256:3a888047747246743505bafd08a70e081223225601d9a6cd94801b856ed2ba84_s390x" + }, + "product_reference": "openshift-serverless-1/net-istio-webhook-rhel8@sha256:3a888047747246743505bafd08a70e081223225601d9a6cd94801b856ed2ba84_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/net-istio-webhook-rhel8@sha256:65bec982ef0250c713c60c62311e290347cd9072ca82819882d91e4ed79f8d16_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/net-istio-webhook-rhel8@sha256:65bec982ef0250c713c60c62311e290347cd9072ca82819882d91e4ed79f8d16_amd64" + }, + "product_reference": "openshift-serverless-1/net-istio-webhook-rhel8@sha256:65bec982ef0250c713c60c62311e290347cd9072ca82819882d91e4ed79f8d16_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/net-istio-webhook-rhel8@sha256:aaa2e335310a473df6c381774490d2c6ad00e336883be018f41b70728433e61e_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/net-istio-webhook-rhel8@sha256:aaa2e335310a473df6c381774490d2c6ad00e336883be018f41b70728433e61e_ppc64le" + }, + "product_reference": "openshift-serverless-1/net-istio-webhook-rhel8@sha256:aaa2e335310a473df6c381774490d2c6ad00e336883be018f41b70728433e61e_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serverless-operator-bundle@sha256:51ac9aced282f62c8fb2d3696da3696b8496d8f877e9846fe3a4a743ccd63bea_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serverless-operator-bundle@sha256:51ac9aced282f62c8fb2d3696da3696b8496d8f877e9846fe3a4a743ccd63bea_amd64" + }, + "product_reference": "openshift-serverless-1/serverless-operator-bundle@sha256:51ac9aced282f62c8fb2d3696da3696b8496d8f877e9846fe3a4a743ccd63bea_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serverless-rhel8-operator@sha256:5ff5cf73f24c6fc856f961f3709e3c68d15c060179666a4760d083ccddce2139_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serverless-rhel8-operator@sha256:5ff5cf73f24c6fc856f961f3709e3c68d15c060179666a4760d083ccddce2139_ppc64le" + }, + "product_reference": "openshift-serverless-1/serverless-rhel8-operator@sha256:5ff5cf73f24c6fc856f961f3709e3c68d15c060179666a4760d083ccddce2139_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serverless-rhel8-operator@sha256:7fd10cd70e72c0be5ca76be3cacc4781868d525579b469cffac2e75a52235cb4_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serverless-rhel8-operator@sha256:7fd10cd70e72c0be5ca76be3cacc4781868d525579b469cffac2e75a52235cb4_amd64" + }, + "product_reference": "openshift-serverless-1/serverless-rhel8-operator@sha256:7fd10cd70e72c0be5ca76be3cacc4781868d525579b469cffac2e75a52235cb4_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serverless-rhel8-operator@sha256:8e558e1247c8278ea1bd67cf5e4814ca349acb43b649cf1f88835bfc16eb9301_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serverless-rhel8-operator@sha256:8e558e1247c8278ea1bd67cf5e4814ca349acb43b649cf1f88835bfc16eb9301_s390x" + }, + "product_reference": "openshift-serverless-1/serverless-rhel8-operator@sha256:8e558e1247c8278ea1bd67cf5e4814ca349acb43b649cf1f88835bfc16eb9301_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-activator-rhel8@sha256:273f4c0db2cc41c8f7090f4a1eb0afc34f35ffaab3c69176c9260c245fabe685_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-activator-rhel8@sha256:273f4c0db2cc41c8f7090f4a1eb0afc34f35ffaab3c69176c9260c245fabe685_ppc64le" + }, + "product_reference": "openshift-serverless-1/serving-activator-rhel8@sha256:273f4c0db2cc41c8f7090f4a1eb0afc34f35ffaab3c69176c9260c245fabe685_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-activator-rhel8@sha256:76b5520af6d5f8499ebd13b825fbf731588e67caf0c8e8512805c6df69be6f3a_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-activator-rhel8@sha256:76b5520af6d5f8499ebd13b825fbf731588e67caf0c8e8512805c6df69be6f3a_s390x" + }, + "product_reference": "openshift-serverless-1/serving-activator-rhel8@sha256:76b5520af6d5f8499ebd13b825fbf731588e67caf0c8e8512805c6df69be6f3a_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-activator-rhel8@sha256:917d5788257f3018bc70a8715e1aee3185fe93ee958deedbc3f13ffbb306c56f_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-activator-rhel8@sha256:917d5788257f3018bc70a8715e1aee3185fe93ee958deedbc3f13ffbb306c56f_amd64" + }, + "product_reference": "openshift-serverless-1/serving-activator-rhel8@sha256:917d5788257f3018bc70a8715e1aee3185fe93ee958deedbc3f13ffbb306c56f_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-autoscaler-hpa-rhel8@sha256:3fca9cbb23ac5feafb6d129b1258f8b4c4d982cf1a551ad88bd537874729ac44_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-autoscaler-hpa-rhel8@sha256:3fca9cbb23ac5feafb6d129b1258f8b4c4d982cf1a551ad88bd537874729ac44_ppc64le" + }, + "product_reference": "openshift-serverless-1/serving-autoscaler-hpa-rhel8@sha256:3fca9cbb23ac5feafb6d129b1258f8b4c4d982cf1a551ad88bd537874729ac44_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-autoscaler-hpa-rhel8@sha256:8a87b6f46cb87037d54fc1d24799617711a38ede3941f436f23014233f219c49_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-autoscaler-hpa-rhel8@sha256:8a87b6f46cb87037d54fc1d24799617711a38ede3941f436f23014233f219c49_amd64" + }, + "product_reference": "openshift-serverless-1/serving-autoscaler-hpa-rhel8@sha256:8a87b6f46cb87037d54fc1d24799617711a38ede3941f436f23014233f219c49_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-autoscaler-hpa-rhel8@sha256:ba07df7c30551999805eda6593ab82f5f965b05c829aa3dbf85b787e312dba5e_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-autoscaler-hpa-rhel8@sha256:ba07df7c30551999805eda6593ab82f5f965b05c829aa3dbf85b787e312dba5e_s390x" + }, + "product_reference": "openshift-serverless-1/serving-autoscaler-hpa-rhel8@sha256:ba07df7c30551999805eda6593ab82f5f965b05c829aa3dbf85b787e312dba5e_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-autoscaler-rhel8@sha256:078925d012bde32da462e97e8413782533b5fcd55d95b166fd708e0b4b3874cc_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-autoscaler-rhel8@sha256:078925d012bde32da462e97e8413782533b5fcd55d95b166fd708e0b4b3874cc_ppc64le" + }, + "product_reference": "openshift-serverless-1/serving-autoscaler-rhel8@sha256:078925d012bde32da462e97e8413782533b5fcd55d95b166fd708e0b4b3874cc_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-autoscaler-rhel8@sha256:4b810766ed033d023ce0f6b1689da91fd16433541e5c93074aee2a8fda8942ce_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-autoscaler-rhel8@sha256:4b810766ed033d023ce0f6b1689da91fd16433541e5c93074aee2a8fda8942ce_amd64" + }, + "product_reference": "openshift-serverless-1/serving-autoscaler-rhel8@sha256:4b810766ed033d023ce0f6b1689da91fd16433541e5c93074aee2a8fda8942ce_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-autoscaler-rhel8@sha256:81ec2edba91eba8bebd74ac7066cc12eb60da95289f88860e8b4549ccdf9ac8a_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-autoscaler-rhel8@sha256:81ec2edba91eba8bebd74ac7066cc12eb60da95289f88860e8b4549ccdf9ac8a_s390x" + }, + "product_reference": "openshift-serverless-1/serving-autoscaler-rhel8@sha256:81ec2edba91eba8bebd74ac7066cc12eb60da95289f88860e8b4549ccdf9ac8a_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-controller-rhel8@sha256:10eb6138e2e906ad8edcb691eb27b4b7caa9cfb33c8391bc2478b1a3c1e3a17f_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-controller-rhel8@sha256:10eb6138e2e906ad8edcb691eb27b4b7caa9cfb33c8391bc2478b1a3c1e3a17f_ppc64le" + }, + "product_reference": "openshift-serverless-1/serving-controller-rhel8@sha256:10eb6138e2e906ad8edcb691eb27b4b7caa9cfb33c8391bc2478b1a3c1e3a17f_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-controller-rhel8@sha256:40bffda2a73083dfb278186d23e980788d91ef1d02ab5d67ce9becb6bb15ee63_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-controller-rhel8@sha256:40bffda2a73083dfb278186d23e980788d91ef1d02ab5d67ce9becb6bb15ee63_s390x" + }, + "product_reference": "openshift-serverless-1/serving-controller-rhel8@sha256:40bffda2a73083dfb278186d23e980788d91ef1d02ab5d67ce9becb6bb15ee63_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-controller-rhel8@sha256:be4a2854ec292b9cf1d0ae8dbff765fe5d6d0fe73a526dbba6e9a256c60165ab_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-controller-rhel8@sha256:be4a2854ec292b9cf1d0ae8dbff765fe5d6d0fe73a526dbba6e9a256c60165ab_amd64" + }, + "product_reference": "openshift-serverless-1/serving-controller-rhel8@sha256:be4a2854ec292b9cf1d0ae8dbff765fe5d6d0fe73a526dbba6e9a256c60165ab_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-domain-mapping-rhel8@sha256:00325b9077cb6719dcaac55eb15f0822dfc00bbdcf8307c8e678ba79a17d4fb0_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-domain-mapping-rhel8@sha256:00325b9077cb6719dcaac55eb15f0822dfc00bbdcf8307c8e678ba79a17d4fb0_s390x" + }, + "product_reference": "openshift-serverless-1/serving-domain-mapping-rhel8@sha256:00325b9077cb6719dcaac55eb15f0822dfc00bbdcf8307c8e678ba79a17d4fb0_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-domain-mapping-rhel8@sha256:c788b9232e90fcb98c88d783655794bd7a44deb2b5323703f1a51acfba898d8c_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-domain-mapping-rhel8@sha256:c788b9232e90fcb98c88d783655794bd7a44deb2b5323703f1a51acfba898d8c_amd64" + }, + "product_reference": "openshift-serverless-1/serving-domain-mapping-rhel8@sha256:c788b9232e90fcb98c88d783655794bd7a44deb2b5323703f1a51acfba898d8c_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-domain-mapping-rhel8@sha256:fdc4600a1e8130b2d2e5bc2de95e93236ab930d27711805ab9610cdc2fd81964_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-domain-mapping-rhel8@sha256:fdc4600a1e8130b2d2e5bc2de95e93236ab930d27711805ab9610cdc2fd81964_ppc64le" + }, + "product_reference": "openshift-serverless-1/serving-domain-mapping-rhel8@sha256:fdc4600a1e8130b2d2e5bc2de95e93236ab930d27711805ab9610cdc2fd81964_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-domain-mapping-webhook-rhel8@sha256:7b1308defc8edabb10d8c6d1f6b4a05d2a1b4545a33af06943880e5824ed074c_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-domain-mapping-webhook-rhel8@sha256:7b1308defc8edabb10d8c6d1f6b4a05d2a1b4545a33af06943880e5824ed074c_amd64" + }, + "product_reference": "openshift-serverless-1/serving-domain-mapping-webhook-rhel8@sha256:7b1308defc8edabb10d8c6d1f6b4a05d2a1b4545a33af06943880e5824ed074c_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-domain-mapping-webhook-rhel8@sha256:b226a61fdffe6ab3e304715cd4193ccff122191934b937b484259906b9dddb5a_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-domain-mapping-webhook-rhel8@sha256:b226a61fdffe6ab3e304715cd4193ccff122191934b937b484259906b9dddb5a_ppc64le" + }, + "product_reference": "openshift-serverless-1/serving-domain-mapping-webhook-rhel8@sha256:b226a61fdffe6ab3e304715cd4193ccff122191934b937b484259906b9dddb5a_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-domain-mapping-webhook-rhel8@sha256:ef1c7a89eb10e51dfb677fd1a0a4e3475db5220b637b87def4a682d73e261078_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-domain-mapping-webhook-rhel8@sha256:ef1c7a89eb10e51dfb677fd1a0a4e3475db5220b637b87def4a682d73e261078_s390x" + }, + "product_reference": "openshift-serverless-1/serving-domain-mapping-webhook-rhel8@sha256:ef1c7a89eb10e51dfb677fd1a0a4e3475db5220b637b87def4a682d73e261078_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-queue-rhel8@sha256:16e45fe259a51fd8f73b9e42d8255b6dda4e2d3e00db52113308fbc99369adae_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-queue-rhel8@sha256:16e45fe259a51fd8f73b9e42d8255b6dda4e2d3e00db52113308fbc99369adae_ppc64le" + }, + "product_reference": "openshift-serverless-1/serving-queue-rhel8@sha256:16e45fe259a51fd8f73b9e42d8255b6dda4e2d3e00db52113308fbc99369adae_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-queue-rhel8@sha256:66199519e90664d1e9a25c29be90e0dafd36ff8fac174b5be3f7935cfdaed468_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-queue-rhel8@sha256:66199519e90664d1e9a25c29be90e0dafd36ff8fac174b5be3f7935cfdaed468_s390x" + }, + "product_reference": "openshift-serverless-1/serving-queue-rhel8@sha256:66199519e90664d1e9a25c29be90e0dafd36ff8fac174b5be3f7935cfdaed468_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-queue-rhel8@sha256:b209988ea641879624e144d51fba2a8de8592a72603d626952419c6ab5f7377e_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-queue-rhel8@sha256:b209988ea641879624e144d51fba2a8de8592a72603d626952419c6ab5f7377e_amd64" + }, + "product_reference": "openshift-serverless-1/serving-queue-rhel8@sha256:b209988ea641879624e144d51fba2a8de8592a72603d626952419c6ab5f7377e_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-storage-version-migration-rhel8@sha256:4886e839cf374e430b6aca4036696ab934db94c78acd86240cad458625b7ea84_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-storage-version-migration-rhel8@sha256:4886e839cf374e430b6aca4036696ab934db94c78acd86240cad458625b7ea84_amd64" + }, + "product_reference": "openshift-serverless-1/serving-storage-version-migration-rhel8@sha256:4886e839cf374e430b6aca4036696ab934db94c78acd86240cad458625b7ea84_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-storage-version-migration-rhel8@sha256:7584e95d66f6c81fdc127bfbd685da7cd6a66c4bac86395a637b21b00dbd15de_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-storage-version-migration-rhel8@sha256:7584e95d66f6c81fdc127bfbd685da7cd6a66c4bac86395a637b21b00dbd15de_ppc64le" + }, + "product_reference": "openshift-serverless-1/serving-storage-version-migration-rhel8@sha256:7584e95d66f6c81fdc127bfbd685da7cd6a66c4bac86395a637b21b00dbd15de_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-storage-version-migration-rhel8@sha256:c42257339c56ecf19990e9639c56c7179890b5b3d1937c1647fefccac657f903_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-storage-version-migration-rhel8@sha256:c42257339c56ecf19990e9639c56c7179890b5b3d1937c1647fefccac657f903_s390x" + }, + "product_reference": "openshift-serverless-1/serving-storage-version-migration-rhel8@sha256:c42257339c56ecf19990e9639c56c7179890b5b3d1937c1647fefccac657f903_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-webhook-rhel8@sha256:244b0506701fcd91d306ec282b83c1d36d7b3421ed73eb177d0a34be237bdccc_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-webhook-rhel8@sha256:244b0506701fcd91d306ec282b83c1d36d7b3421ed73eb177d0a34be237bdccc_amd64" + }, + "product_reference": "openshift-serverless-1/serving-webhook-rhel8@sha256:244b0506701fcd91d306ec282b83c1d36d7b3421ed73eb177d0a34be237bdccc_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-webhook-rhel8@sha256:b56a36112cd592bb1b28a290fc443faa1bcc997024e9d68a333f2b19af41c518_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-webhook-rhel8@sha256:b56a36112cd592bb1b28a290fc443faa1bcc997024e9d68a333f2b19af41c518_ppc64le" + }, + "product_reference": "openshift-serverless-1/serving-webhook-rhel8@sha256:b56a36112cd592bb1b28a290fc443faa1bcc997024e9d68a333f2b19af41c518_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/serving-webhook-rhel8@sha256:c9cf9b2ebec2d6c5bf3657666c709bed17b8e47237402012d73860ab07cff302_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/serving-webhook-rhel8@sha256:c9cf9b2ebec2d6c5bf3657666c709bed17b8e47237402012d73860ab07cff302_s390x" + }, + "product_reference": "openshift-serverless-1/serving-webhook-rhel8@sha256:c9cf9b2ebec2d6c5bf3657666c709bed17b8e47237402012d73860ab07cff302_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/svls-must-gather-rhel8@sha256:2cd50f474dafa4f24342a5c6ba46bdffadc2846ddd9e08b27e17afd576808d19_s390x as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/svls-must-gather-rhel8@sha256:2cd50f474dafa4f24342a5c6ba46bdffadc2846ddd9e08b27e17afd576808d19_s390x" + }, + "product_reference": "openshift-serverless-1/svls-must-gather-rhel8@sha256:2cd50f474dafa4f24342a5c6ba46bdffadc2846ddd9e08b27e17afd576808d19_s390x", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/svls-must-gather-rhel8@sha256:65e7dca03083226bfaee40bf5edcd433f0a15a3f226ee3b84a7924c56d15a979_amd64 as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/svls-must-gather-rhel8@sha256:65e7dca03083226bfaee40bf5edcd433f0a15a3f226ee3b84a7924c56d15a979_amd64" + }, + "product_reference": "openshift-serverless-1/svls-must-gather-rhel8@sha256:65e7dca03083226bfaee40bf5edcd433f0a15a3f226ee3b84a7924c56d15a979_amd64", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-serverless-1/svls-must-gather-rhel8@sha256:a959d8224e228b9140e79c5f9764e8318ce842f964346b3e94c33263ea48f943_ppc64le as a component of 8Base-Openshift-Serverless-1.30", + "product_id": "8Base-RHOSS-1.30:openshift-serverless-1/svls-must-gather-rhel8@sha256:a959d8224e228b9140e79c5f9764e8318ce842f964346b3e94c33263ea48f943_ppc64le" + }, + "product_reference": "openshift-serverless-1/svls-must-gather-rhel8@sha256:a959d8224e228b9140e79c5f9764e8318ce842f964346b3e94c33263ea48f943_ppc64le", + "relates_to_product_reference": "8Base-RHOSS-1.30" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/grafana-rhel8@sha256:2ac0267f703527a6af7cf822ac8dc33f8e27a8784c2091c6894ea9d4faeff290_s390x as a component of RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2:openshift-service-mesh/grafana-rhel8@sha256:2ac0267f703527a6af7cf822ac8dc33f8e27a8784c2091c6894ea9d4faeff290_s390x" + }, + "product_reference": "openshift-service-mesh/grafana-rhel8@sha256:2ac0267f703527a6af7cf822ac8dc33f8e27a8784c2091c6894ea9d4faeff290_s390x", + "relates_to_product_reference": "8Base-RHOSSM-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/grafana-rhel8@sha256:c9462389f5c148c9fa855aa54786ab28e0a522c2576e139f254c72f3135e824c_amd64 as a component of RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2:openshift-service-mesh/grafana-rhel8@sha256:c9462389f5c148c9fa855aa54786ab28e0a522c2576e139f254c72f3135e824c_amd64" + }, + "product_reference": "openshift-service-mesh/grafana-rhel8@sha256:c9462389f5c148c9fa855aa54786ab28e0a522c2576e139f254c72f3135e824c_amd64", + "relates_to_product_reference": "8Base-RHOSSM-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/grafana-rhel8@sha256:dcfa0e73a89d2ad273720c209dd94fe3b652c5606d196d4962a2f662ed834612_ppc64le as a component of RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2:openshift-service-mesh/grafana-rhel8@sha256:dcfa0e73a89d2ad273720c209dd94fe3b652c5606d196d4962a2f662ed834612_ppc64le" + }, + "product_reference": "openshift-service-mesh/grafana-rhel8@sha256:dcfa0e73a89d2ad273720c209dd94fe3b652c5606d196d4962a2f662ed834612_ppc64le", + "relates_to_product_reference": "8Base-RHOSSM-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/istio-cni-rhel8@sha256:a0f0fcdf2d1be20c4b483d338803b4f968ed6a51ee842bae3f2539aaea660b36_amd64 as a component of RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2:openshift-service-mesh/istio-cni-rhel8@sha256:a0f0fcdf2d1be20c4b483d338803b4f968ed6a51ee842bae3f2539aaea660b36_amd64" + }, + "product_reference": "openshift-service-mesh/istio-cni-rhel8@sha256:a0f0fcdf2d1be20c4b483d338803b4f968ed6a51ee842bae3f2539aaea660b36_amd64", + "relates_to_product_reference": "8Base-RHOSSM-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/istio-cni-rhel8@sha256:ef9adad3d6ccc52944aa6a7be7537a3fd2cef1984c09f4b57a32d5670903b679_ppc64le as a component of RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2:openshift-service-mesh/istio-cni-rhel8@sha256:ef9adad3d6ccc52944aa6a7be7537a3fd2cef1984c09f4b57a32d5670903b679_ppc64le" + }, + "product_reference": "openshift-service-mesh/istio-cni-rhel8@sha256:ef9adad3d6ccc52944aa6a7be7537a3fd2cef1984c09f4b57a32d5670903b679_ppc64le", + "relates_to_product_reference": "8Base-RHOSSM-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/istio-cni-rhel8@sha256:fcc2034b3448c92e1ac6c3848def79942238733d4acf03ae2e5a2b84be0c6545_s390x as a component of RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2:openshift-service-mesh/istio-cni-rhel8@sha256:fcc2034b3448c92e1ac6c3848def79942238733d4acf03ae2e5a2b84be0c6545_s390x" + }, + "product_reference": "openshift-service-mesh/istio-cni-rhel8@sha256:fcc2034b3448c92e1ac6c3848def79942238733d4acf03ae2e5a2b84be0c6545_s390x", + "relates_to_product_reference": "8Base-RHOSSM-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/istio-must-gather-rhel8@sha256:3061637ecdeac036dc9171f5b079daa0a4a193589161e90920c681abb27c5ce3_ppc64le as a component of RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2:openshift-service-mesh/istio-must-gather-rhel8@sha256:3061637ecdeac036dc9171f5b079daa0a4a193589161e90920c681abb27c5ce3_ppc64le" + }, + "product_reference": "openshift-service-mesh/istio-must-gather-rhel8@sha256:3061637ecdeac036dc9171f5b079daa0a4a193589161e90920c681abb27c5ce3_ppc64le", + "relates_to_product_reference": "8Base-RHOSSM-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/istio-must-gather-rhel8@sha256:7834412d7ae6f8d1b4610a373245a675904f141534211e56657f47be68ff35a2_s390x as a component of RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2:openshift-service-mesh/istio-must-gather-rhel8@sha256:7834412d7ae6f8d1b4610a373245a675904f141534211e56657f47be68ff35a2_s390x" + }, + "product_reference": "openshift-service-mesh/istio-must-gather-rhel8@sha256:7834412d7ae6f8d1b4610a373245a675904f141534211e56657f47be68ff35a2_s390x", + "relates_to_product_reference": "8Base-RHOSSM-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/istio-must-gather-rhel8@sha256:a3031870bd2199c28e754585b57363f953818bd20bf9ad04f5545e0eb4ae4793_amd64 as a component of RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2:openshift-service-mesh/istio-must-gather-rhel8@sha256:a3031870bd2199c28e754585b57363f953818bd20bf9ad04f5545e0eb4ae4793_amd64" + }, + "product_reference": "openshift-service-mesh/istio-must-gather-rhel8@sha256:a3031870bd2199c28e754585b57363f953818bd20bf9ad04f5545e0eb4ae4793_amd64", + "relates_to_product_reference": "8Base-RHOSSM-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/kiali-rhel8@sha256:081d9b91f85a9fa135ddaf993b67ba01282205b5e87d31cffa1a9e659a430a61_ppc64le as a component of RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2:openshift-service-mesh/kiali-rhel8@sha256:081d9b91f85a9fa135ddaf993b67ba01282205b5e87d31cffa1a9e659a430a61_ppc64le" + }, + "product_reference": "openshift-service-mesh/kiali-rhel8@sha256:081d9b91f85a9fa135ddaf993b67ba01282205b5e87d31cffa1a9e659a430a61_ppc64le", + "relates_to_product_reference": "8Base-RHOSSM-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/kiali-rhel8@sha256:63ce7982aa4fe759dbe7acc497105da41f6426268678df4c8407ef7da94f5965_amd64 as a component of RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2:openshift-service-mesh/kiali-rhel8@sha256:63ce7982aa4fe759dbe7acc497105da41f6426268678df4c8407ef7da94f5965_amd64" + }, + "product_reference": "openshift-service-mesh/kiali-rhel8@sha256:63ce7982aa4fe759dbe7acc497105da41f6426268678df4c8407ef7da94f5965_amd64", + "relates_to_product_reference": "8Base-RHOSSM-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/kiali-rhel8@sha256:b426bab535c9417d2ed4951153ef03c06d95060a3378f8621b5eb3436995aa8e_s390x as a component of RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2:openshift-service-mesh/kiali-rhel8@sha256:b426bab535c9417d2ed4951153ef03c06d95060a3378f8621b5eb3436995aa8e_s390x" + }, + "product_reference": "openshift-service-mesh/kiali-rhel8@sha256:b426bab535c9417d2ed4951153ef03c06d95060a3378f8621b5eb3436995aa8e_s390x", + "relates_to_product_reference": "8Base-RHOSSM-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/pilot-rhel8@sha256:6851a60e3242789f67637d596959580c96fcd5221d71ad83e21ead53f0ba9856_ppc64le as a component of RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2:openshift-service-mesh/pilot-rhel8@sha256:6851a60e3242789f67637d596959580c96fcd5221d71ad83e21ead53f0ba9856_ppc64le" + }, + "product_reference": "openshift-service-mesh/pilot-rhel8@sha256:6851a60e3242789f67637d596959580c96fcd5221d71ad83e21ead53f0ba9856_ppc64le", + "relates_to_product_reference": "8Base-RHOSSM-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/pilot-rhel8@sha256:818fc5474a2bea0400b6b022cca31f522ea05b58bfa57fca1f6cb20efeb140f7_amd64 as a component of RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2:openshift-service-mesh/pilot-rhel8@sha256:818fc5474a2bea0400b6b022cca31f522ea05b58bfa57fca1f6cb20efeb140f7_amd64" + }, + "product_reference": "openshift-service-mesh/pilot-rhel8@sha256:818fc5474a2bea0400b6b022cca31f522ea05b58bfa57fca1f6cb20efeb140f7_amd64", + "relates_to_product_reference": "8Base-RHOSSM-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/pilot-rhel8@sha256:b654048f91103418e1c503a9b45b9890c868892e746218fb26a6768a842a6310_s390x as a component of RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2:openshift-service-mesh/pilot-rhel8@sha256:b654048f91103418e1c503a9b45b9890c868892e746218fb26a6768a842a6310_s390x" + }, + "product_reference": "openshift-service-mesh/pilot-rhel8@sha256:b654048f91103418e1c503a9b45b9890c868892e746218fb26a6768a842a6310_s390x", + "relates_to_product_reference": "8Base-RHOSSM-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/prometheus-rhel8@sha256:681efb513c3eb27dce5e1225964fb1f076e7f5d5951ea0fcbf12ebe633df0602_s390x as a component of RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2:openshift-service-mesh/prometheus-rhel8@sha256:681efb513c3eb27dce5e1225964fb1f076e7f5d5951ea0fcbf12ebe633df0602_s390x" + }, + "product_reference": "openshift-service-mesh/prometheus-rhel8@sha256:681efb513c3eb27dce5e1225964fb1f076e7f5d5951ea0fcbf12ebe633df0602_s390x", + "relates_to_product_reference": "8Base-RHOSSM-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/prometheus-rhel8@sha256:b2e2fbd17082d59a1fbf9e55c04b767763d968747e232bfb4789376ed1bb08cc_ppc64le as a component of RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2:openshift-service-mesh/prometheus-rhel8@sha256:b2e2fbd17082d59a1fbf9e55c04b767763d968747e232bfb4789376ed1bb08cc_ppc64le" + }, + "product_reference": "openshift-service-mesh/prometheus-rhel8@sha256:b2e2fbd17082d59a1fbf9e55c04b767763d968747e232bfb4789376ed1bb08cc_ppc64le", + "relates_to_product_reference": "8Base-RHOSSM-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/prometheus-rhel8@sha256:dbcf658a5354b9b7d412826a77cfb0ce889c4704634f5d13325161021feff81e_amd64 as a component of RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2:openshift-service-mesh/prometheus-rhel8@sha256:dbcf658a5354b9b7d412826a77cfb0ce889c4704634f5d13325161021feff81e_amd64" + }, + "product_reference": "openshift-service-mesh/prometheus-rhel8@sha256:dbcf658a5354b9b7d412826a77cfb0ce889c4704634f5d13325161021feff81e_amd64", + "relates_to_product_reference": "8Base-RHOSSM-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/proxyv2-rhel8@sha256:208a5000e943fb68e2c2cfea0ac6223fdc6a43363b19fb3ac3e6c19326afa464_ppc64le as a component of RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2:openshift-service-mesh/proxyv2-rhel8@sha256:208a5000e943fb68e2c2cfea0ac6223fdc6a43363b19fb3ac3e6c19326afa464_ppc64le" + }, + "product_reference": "openshift-service-mesh/proxyv2-rhel8@sha256:208a5000e943fb68e2c2cfea0ac6223fdc6a43363b19fb3ac3e6c19326afa464_ppc64le", + "relates_to_product_reference": "8Base-RHOSSM-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/proxyv2-rhel8@sha256:4abe159e450801e062a3afceff661ab25dc57ea122ce58269b2f3566a55c8dc2_amd64 as a component of RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2:openshift-service-mesh/proxyv2-rhel8@sha256:4abe159e450801e062a3afceff661ab25dc57ea122ce58269b2f3566a55c8dc2_amd64" + }, + "product_reference": "openshift-service-mesh/proxyv2-rhel8@sha256:4abe159e450801e062a3afceff661ab25dc57ea122ce58269b2f3566a55c8dc2_amd64", + "relates_to_product_reference": "8Base-RHOSSM-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/proxyv2-rhel8@sha256:7cc28d4baf68ca0902d7dc44d9fc2a9ac626268fd4320d17caa3f22cc08618c1_s390x as a component of RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2:openshift-service-mesh/proxyv2-rhel8@sha256:7cc28d4baf68ca0902d7dc44d9fc2a9ac626268fd4320d17caa3f22cc08618c1_s390x" + }, + "product_reference": "openshift-service-mesh/proxyv2-rhel8@sha256:7cc28d4baf68ca0902d7dc44d9fc2a9ac626268fd4320d17caa3f22cc08618c1_s390x", + "relates_to_product_reference": "8Base-RHOSSM-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/ratelimit-rhel8@sha256:096bf95cdba671943bb9f7ec5f804201c1cf06607a164c7b76ef745c26c82d73_s390x as a component of RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2:openshift-service-mesh/ratelimit-rhel8@sha256:096bf95cdba671943bb9f7ec5f804201c1cf06607a164c7b76ef745c26c82d73_s390x" + }, + "product_reference": "openshift-service-mesh/ratelimit-rhel8@sha256:096bf95cdba671943bb9f7ec5f804201c1cf06607a164c7b76ef745c26c82d73_s390x", + "relates_to_product_reference": "8Base-RHOSSM-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/ratelimit-rhel8@sha256:8a5a8bc6a54cd64330926478ac29f568ac5c83cc9550852d439ccc4cbd0b5ab5_amd64 as a component of RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2:openshift-service-mesh/ratelimit-rhel8@sha256:8a5a8bc6a54cd64330926478ac29f568ac5c83cc9550852d439ccc4cbd0b5ab5_amd64" + }, + "product_reference": "openshift-service-mesh/ratelimit-rhel8@sha256:8a5a8bc6a54cd64330926478ac29f568ac5c83cc9550852d439ccc4cbd0b5ab5_amd64", + "relates_to_product_reference": "8Base-RHOSSM-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/ratelimit-rhel8@sha256:cc5d972cb2ba30e147c76202dc315a08bdba41906f808e95d8b134bfe446fc89_ppc64le as a component of RHOSSM 2.2 for RHEL 8", + "product_id": "8Base-RHOSSM-2.2:openshift-service-mesh/ratelimit-rhel8@sha256:cc5d972cb2ba30e147c76202dc315a08bdba41906f808e95d8b134bfe446fc89_ppc64le" + }, + "product_reference": "openshift-service-mesh/ratelimit-rhel8@sha256:cc5d972cb2ba30e147c76202dc315a08bdba41906f808e95d8b134bfe446fc89_ppc64le", + "relates_to_product_reference": "8Base-RHOSSM-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/kiali-rhel8-operator@sha256:29bbacd9971b9ccb2b64b1485ebcafeea7294b3518cb4c467c37452503e12a0d_amd64 as a component of RHOSSM 2.4 for RHEL 8", + "product_id": "8Base-RHOSSM-2.4:openshift-service-mesh/kiali-rhel8-operator@sha256:29bbacd9971b9ccb2b64b1485ebcafeea7294b3518cb4c467c37452503e12a0d_amd64" + }, + "product_reference": "openshift-service-mesh/kiali-rhel8-operator@sha256:29bbacd9971b9ccb2b64b1485ebcafeea7294b3518cb4c467c37452503e12a0d_amd64", + "relates_to_product_reference": "8Base-RHOSSM-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/kiali-rhel8-operator@sha256:2b06fd2dd516b04a5ef54744114db0e2dbd48741ae8a41eb647334bdd6eb6404_arm64 as a component of RHOSSM 2.4 for RHEL 8", + "product_id": "8Base-RHOSSM-2.4:openshift-service-mesh/kiali-rhel8-operator@sha256:2b06fd2dd516b04a5ef54744114db0e2dbd48741ae8a41eb647334bdd6eb6404_arm64" + }, + "product_reference": "openshift-service-mesh/kiali-rhel8-operator@sha256:2b06fd2dd516b04a5ef54744114db0e2dbd48741ae8a41eb647334bdd6eb6404_arm64", + "relates_to_product_reference": "8Base-RHOSSM-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/kiali-rhel8-operator@sha256:31e0a2e76216573ed7f27d218152911d3765a38c71e4834be276fe4d1944fe04_s390x as a component of RHOSSM 2.4 for RHEL 8", + "product_id": "8Base-RHOSSM-2.4:openshift-service-mesh/kiali-rhel8-operator@sha256:31e0a2e76216573ed7f27d218152911d3765a38c71e4834be276fe4d1944fe04_s390x" + }, + "product_reference": "openshift-service-mesh/kiali-rhel8-operator@sha256:31e0a2e76216573ed7f27d218152911d3765a38c71e4834be276fe4d1944fe04_s390x", + "relates_to_product_reference": "8Base-RHOSSM-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/kiali-rhel8-operator@sha256:6a073f75a99df21d3185900e1c9e44ea2a6f9995fc3bcc4c826c20884ba92748_ppc64le as a component of RHOSSM 2.4 for RHEL 8", + "product_id": "8Base-RHOSSM-2.4:openshift-service-mesh/kiali-rhel8-operator@sha256:6a073f75a99df21d3185900e1c9e44ea2a6f9995fc3bcc4c826c20884ba92748_ppc64le" + }, + "product_reference": "openshift-service-mesh/kiali-rhel8-operator@sha256:6a073f75a99df21d3185900e1c9e44ea2a6f9995fc3bcc4c826c20884ba92748_ppc64le", + "relates_to_product_reference": "8Base-RHOSSM-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/kiali-rhel8@sha256:14284b2fcd21b2aa7eab7269b1ae22d6efd9705267e455035eb129e66ea21a5c_arm64 as a component of RHOSSM 2.4 for RHEL 8", + "product_id": "8Base-RHOSSM-2.4:openshift-service-mesh/kiali-rhel8@sha256:14284b2fcd21b2aa7eab7269b1ae22d6efd9705267e455035eb129e66ea21a5c_arm64" + }, + "product_reference": "openshift-service-mesh/kiali-rhel8@sha256:14284b2fcd21b2aa7eab7269b1ae22d6efd9705267e455035eb129e66ea21a5c_arm64", + "relates_to_product_reference": "8Base-RHOSSM-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/kiali-rhel8@sha256:d9c8aa68fdbd3f1e163db6cacc9282fc7a91474cf855cc44679177bba68365f4_s390x as a component of RHOSSM 2.4 for RHEL 8", + "product_id": "8Base-RHOSSM-2.4:openshift-service-mesh/kiali-rhel8@sha256:d9c8aa68fdbd3f1e163db6cacc9282fc7a91474cf855cc44679177bba68365f4_s390x" + }, + "product_reference": "openshift-service-mesh/kiali-rhel8@sha256:d9c8aa68fdbd3f1e163db6cacc9282fc7a91474cf855cc44679177bba68365f4_s390x", + "relates_to_product_reference": "8Base-RHOSSM-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/kiali-rhel8@sha256:e533eeb5e448687b73754f82502a735a08f46b7260c62170ee88ea35907261fa_amd64 as a component of RHOSSM 2.4 for RHEL 8", + "product_id": "8Base-RHOSSM-2.4:openshift-service-mesh/kiali-rhel8@sha256:e533eeb5e448687b73754f82502a735a08f46b7260c62170ee88ea35907261fa_amd64" + }, + "product_reference": "openshift-service-mesh/kiali-rhel8@sha256:e533eeb5e448687b73754f82502a735a08f46b7260c62170ee88ea35907261fa_amd64", + "relates_to_product_reference": "8Base-RHOSSM-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-service-mesh/kiali-rhel8@sha256:e9478516ca737881e7616c1e009c1ffee5ef4d24f31b656a262510118d45633e_ppc64le as a component of RHOSSM 2.4 for RHEL 8", + "product_id": "8Base-RHOSSM-2.4:openshift-service-mesh/kiali-rhel8@sha256:e9478516ca737881e7616c1e009c1ffee5ef4d24f31b656a262510118d45633e_ppc64le" + }, + "product_reference": "openshift-service-mesh/kiali-rhel8@sha256:e9478516ca737881e7616c1e009c1ffee5ef4d24f31b656a262510118d45633e_ppc64le", + "relates_to_product_reference": "8Base-RHOSSM-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "run-once-duration-override-operator/run-once-duration-override-operator-bundle@sha256:5e2f382d233fab6817da02d17459b3e6e8c16f0be58270221b66d87ce3d09cc6_amd64 as a component of RODOO 1.0 for RHEL 8", + "product_id": "8Base-RODOO-1.0:run-once-duration-override-operator/run-once-duration-override-operator-bundle@sha256:5e2f382d233fab6817da02d17459b3e6e8c16f0be58270221b66d87ce3d09cc6_amd64" + }, + "product_reference": "run-once-duration-override-operator/run-once-duration-override-operator-bundle@sha256:5e2f382d233fab6817da02d17459b3e6e8c16f0be58270221b66d87ce3d09cc6_amd64", + "relates_to_product_reference": "8Base-RODOO-1.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "run-once-duration-override-operator/run-once-duration-override-operator-rhel8@sha256:a43806835a54ea3c712e1cbb96cd7ff2cd0434912ae1cbc11b4f54524c15c40b_amd64 as a component of RODOO 1.0 for RHEL 8", + "product_id": "8Base-RODOO-1.0:run-once-duration-override-operator/run-once-duration-override-operator-rhel8@sha256:a43806835a54ea3c712e1cbb96cd7ff2cd0434912ae1cbc11b4f54524c15c40b_amd64" + }, + "product_reference": "run-once-duration-override-operator/run-once-duration-override-operator-rhel8@sha256:a43806835a54ea3c712e1cbb96cd7ff2cd0434912ae1cbc11b4f54524c15c40b_amd64", + "relates_to_product_reference": "8Base-RODOO-1.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "run-once-duration-override-operator/run-once-duration-override-rhel8@sha256:70c5f120078cec9a22f2e754e5606ebe5d086e38aeb5fc9daac18fced6705f43_amd64 as a component of RODOO 1.0 for RHEL 8", + "product_id": "8Base-RODOO-1.0:run-once-duration-override-operator/run-once-duration-override-rhel8@sha256:70c5f120078cec9a22f2e754e5606ebe5d086e38aeb5fc9daac18fced6705f43_amd64" + }, + "product_reference": "run-once-duration-override-operator/run-once-duration-override-rhel8@sha256:70c5f120078cec9a22f2e754e5606ebe5d086e38aeb5fc9daac18fced6705f43_amd64", + "relates_to_product_reference": "8Base-RODOO-1.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "workload-availability/self-node-remediation-must-gather-rhel8@sha256:0abf7c74783c4c310937b63cf6f2965e8eb076007691176ee4d7e76b956257c2_amd64 as a component of Self Node Remediation 0.5 for RHEL 8", + "product_id": "8Base-SELF-NODE-REMEDIATION-0.5:workload-availability/self-node-remediation-must-gather-rhel8@sha256:0abf7c74783c4c310937b63cf6f2965e8eb076007691176ee4d7e76b956257c2_amd64" + }, + "product_reference": "workload-availability/self-node-remediation-must-gather-rhel8@sha256:0abf7c74783c4c310937b63cf6f2965e8eb076007691176ee4d7e76b956257c2_amd64", + "relates_to_product_reference": "8Base-SELF-NODE-REMEDIATION-0.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "workload-availability/self-node-remediation-operator-bundle@sha256:36561e5888cd34f8fb83ceff2910141fceaa6ea290bd246125930fe183e2ebc3_amd64 as a component of Self Node Remediation 0.5 for RHEL 8", + "product_id": "8Base-SELF-NODE-REMEDIATION-0.5:workload-availability/self-node-remediation-operator-bundle@sha256:36561e5888cd34f8fb83ceff2910141fceaa6ea290bd246125930fe183e2ebc3_amd64" + }, + "product_reference": "workload-availability/self-node-remediation-operator-bundle@sha256:36561e5888cd34f8fb83ceff2910141fceaa6ea290bd246125930fe183e2ebc3_amd64", + "relates_to_product_reference": "8Base-SELF-NODE-REMEDIATION-0.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "workload-availability/self-node-remediation-rhel8-operator@sha256:8f1d095530f102c6edbcb53a9c2685a043a9c9869b7ca6c1d254dd74ee17b0a3_amd64 as a component of Self Node Remediation 0.5 for RHEL 8", + "product_id": "8Base-SELF-NODE-REMEDIATION-0.5:workload-availability/self-node-remediation-rhel8-operator@sha256:8f1d095530f102c6edbcb53a9c2685a043a9c9869b7ca6c1d254dd74ee17b0a3_amd64" + }, + "product_reference": "workload-availability/self-node-remediation-rhel8-operator@sha256:8f1d095530f102c6edbcb53a9c2685a043a9c9869b7ca6c1d254dd74ee17b0a3_amd64", + "relates_to_product_reference": "8Base-SELF-NODE-REMEDIATION-0.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "workload-availability/self-node-remediation-operator-bundle@sha256:9e8bcbff46b97f3bc1071146b8db233abd1630016e6fc0efb679df8243c6fd03_amd64 as a component of Self Node Remediation 0.7 for RHEL 8", + "product_id": "8Base-SELF-NODE-REMEDIATION-0.7:workload-availability/self-node-remediation-operator-bundle@sha256:9e8bcbff46b97f3bc1071146b8db233abd1630016e6fc0efb679df8243c6fd03_amd64" + }, + "product_reference": "workload-availability/self-node-remediation-operator-bundle@sha256:9e8bcbff46b97f3bc1071146b8db233abd1630016e6fc0efb679df8243c6fd03_amd64", + "relates_to_product_reference": "8Base-SELF-NODE-REMEDIATION-0.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "workload-availability/self-node-remediation-rhel8-operator@sha256:9b305b10d6b92ddcdddd7ec63e347bdbfb4a87f629b6490de27380f5ed9e6640_amd64 as a component of Self Node Remediation 0.7 for RHEL 8", + "product_id": "8Base-SELF-NODE-REMEDIATION-0.7:workload-availability/self-node-remediation-rhel8-operator@sha256:9b305b10d6b92ddcdddd7ec63e347bdbfb4a87f629b6490de27380f5ed9e6640_amd64" + }, + "product_reference": "workload-availability/self-node-remediation-rhel8-operator@sha256:9b305b10d6b92ddcdddd7ec63e347bdbfb4a87f629b6490de27380f5ed9e6640_amd64", + "relates_to_product_reference": "8Base-SELF-NODE-REMEDIATION-0.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "stf/prometheus-webhook-snmp-rhel8@sha256:e261f596dc4f13cf45981d4415cb17d0314c66ad105b5aa31898f7364185233b_amd64 as a component of Service Telemetry Framework 1.5 for RHEL 8", + "product_id": "8Base-STF-1.5:stf/prometheus-webhook-snmp-rhel8@sha256:e261f596dc4f13cf45981d4415cb17d0314c66ad105b5aa31898f7364185233b_amd64" + }, + "product_reference": "stf/prometheus-webhook-snmp-rhel8@sha256:e261f596dc4f13cf45981d4415cb17d0314c66ad105b5aa31898f7364185233b_amd64", + "relates_to_product_reference": "8Base-STF-1.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "stf/service-telemetry-operator-bundle@sha256:583b8fc7bd18b79b146274c0b6ca0e8ebc14e7dfb389bd2a01fcf18744ab7d40_amd64 as a component of Service Telemetry Framework 1.5 for RHEL 8", + "product_id": "8Base-STF-1.5:stf/service-telemetry-operator-bundle@sha256:583b8fc7bd18b79b146274c0b6ca0e8ebc14e7dfb389bd2a01fcf18744ab7d40_amd64" + }, + "product_reference": "stf/service-telemetry-operator-bundle@sha256:583b8fc7bd18b79b146274c0b6ca0e8ebc14e7dfb389bd2a01fcf18744ab7d40_amd64", + "relates_to_product_reference": "8Base-STF-1.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "stf/service-telemetry-rhel8-operator@sha256:627b664de828007e469d329253e50ff91cea19ead36353d11d313b6692913d07_amd64 as a component of Service Telemetry Framework 1.5 for RHEL 8", + "product_id": "8Base-STF-1.5:stf/service-telemetry-rhel8-operator@sha256:627b664de828007e469d329253e50ff91cea19ead36353d11d313b6692913d07_amd64" + }, + "product_reference": "stf/service-telemetry-rhel8-operator@sha256:627b664de828007e469d329253e50ff91cea19ead36353d11d313b6692913d07_amd64", + "relates_to_product_reference": "8Base-STF-1.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "stf/sg-bridge-rhel8@sha256:1725eae2e4232e99412c73e6e4b6eabab8f8ce7f13e2106701974c5cfeeb5830_amd64 as a component of Service Telemetry Framework 1.5 for RHEL 8", + "product_id": "8Base-STF-1.5:stf/sg-bridge-rhel8@sha256:1725eae2e4232e99412c73e6e4b6eabab8f8ce7f13e2106701974c5cfeeb5830_amd64" + }, + "product_reference": "stf/sg-bridge-rhel8@sha256:1725eae2e4232e99412c73e6e4b6eabab8f8ce7f13e2106701974c5cfeeb5830_amd64", + "relates_to_product_reference": "8Base-STF-1.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "stf/sg-core-rhel8@sha256:d870784a543045e6b14519df1658864fa0ea22885465bd6630232aeaa1f9ee7e_amd64 as a component of Service Telemetry Framework 1.5 for RHEL 8", + "product_id": "8Base-STF-1.5:stf/sg-core-rhel8@sha256:d870784a543045e6b14519df1658864fa0ea22885465bd6630232aeaa1f9ee7e_amd64" + }, + "product_reference": "stf/sg-core-rhel8@sha256:d870784a543045e6b14519df1658864fa0ea22885465bd6630232aeaa1f9ee7e_amd64", + "relates_to_product_reference": "8Base-STF-1.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "stf/smart-gateway-operator-bundle@sha256:f8bb700696897363678fcd0ce466fd9e9ffcddad263476a42673d516724b9767_amd64 as a component of Service Telemetry Framework 1.5 for RHEL 8", + "product_id": "8Base-STF-1.5:stf/smart-gateway-operator-bundle@sha256:f8bb700696897363678fcd0ce466fd9e9ffcddad263476a42673d516724b9767_amd64" + }, + "product_reference": "stf/smart-gateway-operator-bundle@sha256:f8bb700696897363678fcd0ce466fd9e9ffcddad263476a42673d516724b9767_amd64", + "relates_to_product_reference": "8Base-STF-1.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "stf/smart-gateway-rhel8-operator@sha256:9c3256a9e48b535413e4a4633d1404adbea0239c644569032cd63f991c5051ec_amd64 as a component of Service Telemetry Framework 1.5 for RHEL 8", + "product_id": "8Base-STF-1.5:stf/smart-gateway-rhel8-operator@sha256:9c3256a9e48b535413e4a4633d1404adbea0239c644569032cd63f991c5051ec_amd64" + }, + "product_reference": "stf/smart-gateway-rhel8-operator@sha256:9c3256a9e48b535413e4a4633d1404adbea0239c644569032cd63f991c5051ec_amd64", + "relates_to_product_reference": "8Base-STF-1.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skupper-cli-0:1.4.3-4.el8.src as a component of 8Base-Service-Interconnect-1", + "product_id": "8Base-Service-Interconnect-1:skupper-cli-0:1.4.3-4.el8.src" + }, + "product_reference": "skupper-cli-0:1.4.3-4.el8.src", + "relates_to_product_reference": "8Base-Service-Interconnect-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skupper-cli-0:1.4.3-4.el8.x86_64 as a component of 8Base-Service-Interconnect-1", + "product_id": "8Base-Service-Interconnect-1:skupper-cli-0:1.4.3-4.el8.x86_64" + }, + "product_reference": "skupper-cli-0:1.4.3-4.el8.x86_64", + "relates_to_product_reference": "8Base-Service-Interconnect-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skupper-router-0:2.4.3-1.el8.src as a component of 8Base-Service-Interconnect-1", + "product_id": "8Base-Service-Interconnect-1:skupper-router-0:2.4.3-1.el8.src" + }, + "product_reference": "skupper-router-0:2.4.3-1.el8.src", + "relates_to_product_reference": "8Base-Service-Interconnect-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skupper-router-0:2.4.3-1.el8.x86_64 as a component of 8Base-Service-Interconnect-1", + "product_id": "8Base-Service-Interconnect-1:skupper-router-0:2.4.3-1.el8.x86_64" + }, + "product_reference": "skupper-router-0:2.4.3-1.el8.x86_64", + "relates_to_product_reference": "8Base-Service-Interconnect-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skupper-router-common-0:2.4.3-1.el8.noarch as a component of 8Base-Service-Interconnect-1", + "product_id": "8Base-Service-Interconnect-1:skupper-router-common-0:2.4.3-1.el8.noarch" + }, + "product_reference": "skupper-router-common-0:2.4.3-1.el8.noarch", + "relates_to_product_reference": "8Base-Service-Interconnect-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skupper-router-debuginfo-0:2.4.3-1.el8.x86_64 as a component of 8Base-Service-Interconnect-1", + "product_id": "8Base-Service-Interconnect-1:skupper-router-debuginfo-0:2.4.3-1.el8.x86_64" + }, + "product_reference": "skupper-router-debuginfo-0:2.4.3-1.el8.x86_64", + "relates_to_product_reference": "8Base-Service-Interconnect-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skupper-router-debugsource-0:2.4.3-1.el8.x86_64 as a component of 8Base-Service-Interconnect-1", + "product_id": "8Base-Service-Interconnect-1:skupper-router-debugsource-0:2.4.3-1.el8.x86_64" + }, + "product_reference": "skupper-router-debugsource-0:2.4.3-1.el8.x86_64", + "relates_to_product_reference": "8Base-Service-Interconnect-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skupper-router-docs-0:2.4.3-1.el8.noarch as a component of 8Base-Service-Interconnect-1", + "product_id": "8Base-Service-Interconnect-1:skupper-router-docs-0:2.4.3-1.el8.noarch" + }, + "product_reference": "skupper-router-docs-0:2.4.3-1.el8.noarch", + "relates_to_product_reference": "8Base-Service-Interconnect-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skupper-router-tools-0:2.4.3-1.el8.noarch as a component of 8Base-Service-Interconnect-1", + "product_id": "8Base-Service-Interconnect-1:skupper-router-tools-0:2.4.3-1.el8.noarch" + }, + "product_reference": "skupper-router-tools-0:2.4.3-1.el8.noarch", + "relates_to_product_reference": "8Base-Service-Interconnect-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "costmanagement/costmanagement-metrics-operator-bundle@sha256:afcee273a058fa1ac7643271ee775bdc1ca5d765f0ea36af3b3a6633d9fcbd73_amd64 as a component of Cost Management for RHEL 8", + "product_id": "8Base-costmanagement:costmanagement/costmanagement-metrics-operator-bundle@sha256:afcee273a058fa1ac7643271ee775bdc1ca5d765f0ea36af3b3a6633d9fcbd73_amd64" + }, + "product_reference": "costmanagement/costmanagement-metrics-operator-bundle@sha256:afcee273a058fa1ac7643271ee775bdc1ca5d765f0ea36af3b3a6633d9fcbd73_amd64", + "relates_to_product_reference": "8Base-costmanagement" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "costmanagement/costmanagement-metrics-rhel8-operator@sha256:d5f91b20b8f00e42bfe1f2a24910d3ea56a820bc5814307c0c7fc85dfb103e09_amd64 as a component of Cost Management for RHEL 8", + "product_id": "8Base-costmanagement:costmanagement/costmanagement-metrics-rhel8-operator@sha256:d5f91b20b8f00e42bfe1f2a24910d3ea56a820bc5814307c0c7fc85dfb103e09_amd64" + }, + "product_reference": "costmanagement/costmanagement-metrics-rhel8-operator@sha256:d5f91b20b8f00e42bfe1f2a24910d3ea56a820bc5814307c0c7fc85dfb103e09_amd64", + "relates_to_product_reference": "8Base-costmanagement" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/agent-service-rhel8@sha256:41ae6255dcf7ad8801dbf72a61f8f64d598f5874b2354accc6861d0603bdfe25_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/agent-service-rhel8@sha256:41ae6255dcf7ad8801dbf72a61f8f64d598f5874b2354accc6861d0603bdfe25_ppc64le" + }, + "product_reference": "multicluster-engine/agent-service-rhel8@sha256:41ae6255dcf7ad8801dbf72a61f8f64d598f5874b2354accc6861d0603bdfe25_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/agent-service-rhel8@sha256:a77b10111911aebbcbc8aefc27b151b7e5a277474c7e3071c7a312bc37cae914_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/agent-service-rhel8@sha256:a77b10111911aebbcbc8aefc27b151b7e5a277474c7e3071c7a312bc37cae914_amd64" + }, + "product_reference": "multicluster-engine/agent-service-rhel8@sha256:a77b10111911aebbcbc8aefc27b151b7e5a277474c7e3071c7a312bc37cae914_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/agent-service-rhel8@sha256:e4d2f2baebb2b65def3cd0570b7801c73e9b9e7fd6d42597458c0b68873a2879_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/agent-service-rhel8@sha256:e4d2f2baebb2b65def3cd0570b7801c73e9b9e7fd6d42597458c0b68873a2879_arm64" + }, + "product_reference": "multicluster-engine/agent-service-rhel8@sha256:e4d2f2baebb2b65def3cd0570b7801c73e9b9e7fd6d42597458c0b68873a2879_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/agent-service-rhel8@sha256:fe5cae48399563b7eb7cbd897869a999eb9ccd36da28f07c4cbfe874a9d8913f_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/agent-service-rhel8@sha256:fe5cae48399563b7eb7cbd897869a999eb9ccd36da28f07c4cbfe874a9d8913f_s390x" + }, + "product_reference": "multicluster-engine/agent-service-rhel8@sha256:fe5cae48399563b7eb7cbd897869a999eb9ccd36da28f07c4cbfe874a9d8913f_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:0b474adf2f6795b621d70c5a345930c52c6eacd11646a9984e21176feb97c3a1_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/apiserver-network-proxy-rhel8@sha256:0b474adf2f6795b621d70c5a345930c52c6eacd11646a9984e21176feb97c3a1_amd64" + }, + "product_reference": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:0b474adf2f6795b621d70c5a345930c52c6eacd11646a9984e21176feb97c3a1_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:13cc6b3b939bcd0c3bfb4ffbecc87bcb2354896da5138a6cc8660e54830206a5_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/apiserver-network-proxy-rhel8@sha256:13cc6b3b939bcd0c3bfb4ffbecc87bcb2354896da5138a6cc8660e54830206a5_ppc64le" + }, + "product_reference": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:13cc6b3b939bcd0c3bfb4ffbecc87bcb2354896da5138a6cc8660e54830206a5_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:1c497a7794e13760261ee52abc3c49d0f584e75e72ab6dbb0c407c0c3bb7a8f4_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/apiserver-network-proxy-rhel8@sha256:1c497a7794e13760261ee52abc3c49d0f584e75e72ab6dbb0c407c0c3bb7a8f4_arm64" + }, + "product_reference": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:1c497a7794e13760261ee52abc3c49d0f584e75e72ab6dbb0c407c0c3bb7a8f4_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:5178c528b0953ad89d279130f41ebe8fa06d505d9c946817869ece5a9077f7bc_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/apiserver-network-proxy-rhel8@sha256:5178c528b0953ad89d279130f41ebe8fa06d505d9c946817869ece5a9077f7bc_s390x" + }, + "product_reference": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:5178c528b0953ad89d279130f41ebe8fa06d505d9c946817869ece5a9077f7bc_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:3ab9697d0cac9495e52aaf5e89dae7e62817d96c79220809689bb04043a19905_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/assisted-image-service-rhel8@sha256:3ab9697d0cac9495e52aaf5e89dae7e62817d96c79220809689bb04043a19905_arm64" + }, + "product_reference": "multicluster-engine/assisted-image-service-rhel8@sha256:3ab9697d0cac9495e52aaf5e89dae7e62817d96c79220809689bb04043a19905_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:74ee62db42c41d4f1883481277fcd0e3738b5a4c07c7dabd5dac992efc1d043a_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/assisted-image-service-rhel8@sha256:74ee62db42c41d4f1883481277fcd0e3738b5a4c07c7dabd5dac992efc1d043a_s390x" + }, + "product_reference": "multicluster-engine/assisted-image-service-rhel8@sha256:74ee62db42c41d4f1883481277fcd0e3738b5a4c07c7dabd5dac992efc1d043a_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:7ddb10c1ef2e49abf596c521ce9a18f974d927b4a83896958a0590d2b9672bc4_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/assisted-image-service-rhel8@sha256:7ddb10c1ef2e49abf596c521ce9a18f974d927b4a83896958a0590d2b9672bc4_ppc64le" + }, + "product_reference": "multicluster-engine/assisted-image-service-rhel8@sha256:7ddb10c1ef2e49abf596c521ce9a18f974d927b4a83896958a0590d2b9672bc4_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:cc3875215b233b9b08d10e3dbc2189702949a7be146f7d58f61588b068301811_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/assisted-image-service-rhel8@sha256:cc3875215b233b9b08d10e3dbc2189702949a7be146f7d58f61588b068301811_amd64" + }, + "product_reference": "multicluster-engine/assisted-image-service-rhel8@sha256:cc3875215b233b9b08d10e3dbc2189702949a7be146f7d58f61588b068301811_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-agent-rhel8@sha256:9c088afd107df296a4865fa33448cd96a675b944168a02cdc07847f054ad82bd_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/assisted-installer-agent-rhel8@sha256:9c088afd107df296a4865fa33448cd96a675b944168a02cdc07847f054ad82bd_amd64" + }, + "product_reference": "multicluster-engine/assisted-installer-agent-rhel8@sha256:9c088afd107df296a4865fa33448cd96a675b944168a02cdc07847f054ad82bd_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-agent-rhel8@sha256:eee64a2c454d28bf2465cbaeb54778a4666cba45d3aadeb19eb4a2a126316536_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/assisted-installer-agent-rhel8@sha256:eee64a2c454d28bf2465cbaeb54778a4666cba45d3aadeb19eb4a2a126316536_arm64" + }, + "product_reference": "multicluster-engine/assisted-installer-agent-rhel8@sha256:eee64a2c454d28bf2465cbaeb54778a4666cba45d3aadeb19eb4a2a126316536_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:73af5120518876a9eb414678c5b8dd6bfd98046ef9f5973aa2876a480508d421_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/assisted-installer-reporter-rhel8@sha256:73af5120518876a9eb414678c5b8dd6bfd98046ef9f5973aa2876a480508d421_ppc64le" + }, + "product_reference": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:73af5120518876a9eb414678c5b8dd6bfd98046ef9f5973aa2876a480508d421_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:c1ced260adffac6d22ce06cc826ba4588f0923a0167391871662415fd238b89b_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/assisted-installer-reporter-rhel8@sha256:c1ced260adffac6d22ce06cc826ba4588f0923a0167391871662415fd238b89b_arm64" + }, + "product_reference": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:c1ced260adffac6d22ce06cc826ba4588f0923a0167391871662415fd238b89b_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:cad72ecc092c649e897c48b964e32777ef256bdaaac07d90bcda478f9136bc08_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/assisted-installer-reporter-rhel8@sha256:cad72ecc092c649e897c48b964e32777ef256bdaaac07d90bcda478f9136bc08_amd64" + }, + "product_reference": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:cad72ecc092c649e897c48b964e32777ef256bdaaac07d90bcda478f9136bc08_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-rhel8@sha256:1192df127493322bbc055859e8b157a3ebdb145079b463a69c86cef7935bb60b_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/assisted-installer-rhel8@sha256:1192df127493322bbc055859e8b157a3ebdb145079b463a69c86cef7935bb60b_arm64" + }, + "product_reference": "multicluster-engine/assisted-installer-rhel8@sha256:1192df127493322bbc055859e8b157a3ebdb145079b463a69c86cef7935bb60b_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-rhel8@sha256:39439025c6113fd48927d3442986213527d5f3bd84f3d5a794a4db1b593a4d33_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/assisted-installer-rhel8@sha256:39439025c6113fd48927d3442986213527d5f3bd84f3d5a794a4db1b593a4d33_ppc64le" + }, + "product_reference": "multicluster-engine/assisted-installer-rhel8@sha256:39439025c6113fd48927d3442986213527d5f3bd84f3d5a794a4db1b593a4d33_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-rhel8@sha256:99e9ed31dfaaa6c0cadbfc7ad377bcb42e8e1e43f5646a46e182a22055fc8f8d_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/assisted-installer-rhel8@sha256:99e9ed31dfaaa6c0cadbfc7ad377bcb42e8e1e43f5646a46e182a22055fc8f8d_amd64" + }, + "product_reference": "multicluster-engine/assisted-installer-rhel8@sha256:99e9ed31dfaaa6c0cadbfc7ad377bcb42e8e1e43f5646a46e182a22055fc8f8d_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:10ab26d7fe754d22e2f1d210a058b1d77719f0af3195e188124136652edfc1e9_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/aws-encryption-provider-rhel8@sha256:10ab26d7fe754d22e2f1d210a058b1d77719f0af3195e188124136652edfc1e9_ppc64le" + }, + "product_reference": "multicluster-engine/aws-encryption-provider-rhel8@sha256:10ab26d7fe754d22e2f1d210a058b1d77719f0af3195e188124136652edfc1e9_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:2f598aa58045c5acab400701e453d19a045b0efe432bce36e53ef11be22d2446_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/aws-encryption-provider-rhel8@sha256:2f598aa58045c5acab400701e453d19a045b0efe432bce36e53ef11be22d2446_amd64" + }, + "product_reference": "multicluster-engine/aws-encryption-provider-rhel8@sha256:2f598aa58045c5acab400701e453d19a045b0efe432bce36e53ef11be22d2446_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:6c1c16758e303952426bd5d434a1838270f6ebaec041e3dc769379a0d36a7115_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/aws-encryption-provider-rhel8@sha256:6c1c16758e303952426bd5d434a1838270f6ebaec041e3dc769379a0d36a7115_s390x" + }, + "product_reference": "multicluster-engine/aws-encryption-provider-rhel8@sha256:6c1c16758e303952426bd5d434a1838270f6ebaec041e3dc769379a0d36a7115_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:ff2bb5b6f1b5b91c958fdcb80a12710ea45b3edcf62be302fe895f85ed66aae0_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/aws-encryption-provider-rhel8@sha256:ff2bb5b6f1b5b91c958fdcb80a12710ea45b3edcf62be302fe895f85ed66aae0_arm64" + }, + "product_reference": "multicluster-engine/aws-encryption-provider-rhel8@sha256:ff2bb5b6f1b5b91c958fdcb80a12710ea45b3edcf62be302fe895f85ed66aae0_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/backplane-rhel8-operator@sha256:656660c28979a40abc61e4f24fcd9234b0aa503c49ee987a01ce0fa10622ddfd_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/backplane-rhel8-operator@sha256:656660c28979a40abc61e4f24fcd9234b0aa503c49ee987a01ce0fa10622ddfd_s390x" + }, + "product_reference": "multicluster-engine/backplane-rhel8-operator@sha256:656660c28979a40abc61e4f24fcd9234b0aa503c49ee987a01ce0fa10622ddfd_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/backplane-rhel8-operator@sha256:67e5b872516775d3df0393ccd49088e45bc3f5ac09a35887469476d581097900_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/backplane-rhel8-operator@sha256:67e5b872516775d3df0393ccd49088e45bc3f5ac09a35887469476d581097900_amd64" + }, + "product_reference": "multicluster-engine/backplane-rhel8-operator@sha256:67e5b872516775d3df0393ccd49088e45bc3f5ac09a35887469476d581097900_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/backplane-rhel8-operator@sha256:ad72ff95216c8c349357716e0aa467b6b960639e066678ed70b0ecd98207c794_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/backplane-rhel8-operator@sha256:ad72ff95216c8c349357716e0aa467b6b960639e066678ed70b0ecd98207c794_ppc64le" + }, + "product_reference": "multicluster-engine/backplane-rhel8-operator@sha256:ad72ff95216c8c349357716e0aa467b6b960639e066678ed70b0ecd98207c794_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/backplane-rhel8-operator@sha256:b49964f8fb3889c10d79c91253ae877e27bc1b9d69b75c9298fb8bf320d3fc2c_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/backplane-rhel8-operator@sha256:b49964f8fb3889c10d79c91253ae877e27bc1b9d69b75c9298fb8bf320d3fc2c_arm64" + }, + "product_reference": "multicluster-engine/backplane-rhel8-operator@sha256:b49964f8fb3889c10d79c91253ae877e27bc1b9d69b75c9298fb8bf320d3fc2c_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:4091ee0eb09fbb381799968fe7bb2469e7b962b7f1caa534cff3b8b11b14317d_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-api-provider-agent-rhel8@sha256:4091ee0eb09fbb381799968fe7bb2469e7b962b7f1caa534cff3b8b11b14317d_arm64" + }, + "product_reference": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:4091ee0eb09fbb381799968fe7bb2469e7b962b7f1caa534cff3b8b11b14317d_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:5967fbe0df939721d1866bbd16f63554e441530e913220a757b8018c5eedc539_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-api-provider-agent-rhel8@sha256:5967fbe0df939721d1866bbd16f63554e441530e913220a757b8018c5eedc539_s390x" + }, + "product_reference": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:5967fbe0df939721d1866bbd16f63554e441530e913220a757b8018c5eedc539_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:6a3496efda51a7dd044cc165b0ff9b7ff957386ec47a22dcc7fb58dea7f5467d_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-api-provider-agent-rhel8@sha256:6a3496efda51a7dd044cc165b0ff9b7ff957386ec47a22dcc7fb58dea7f5467d_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:6a3496efda51a7dd044cc165b0ff9b7ff957386ec47a22dcc7fb58dea7f5467d_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:82c9f4891a3df24631322cda48ed92676ea4dc43774c10638d3990f0a4657e89_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-api-provider-agent-rhel8@sha256:82c9f4891a3df24631322cda48ed92676ea4dc43774c10638d3990f0a4657e89_amd64" + }, + "product_reference": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:82c9f4891a3df24631322cda48ed92676ea4dc43774c10638d3990f0a4657e89_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:061589fb5e3aecda461370e0d49a221b88cbbc7a3302062f37a611a518c0b96d_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-api-provider-aws-rhel8@sha256:061589fb5e3aecda461370e0d49a221b88cbbc7a3302062f37a611a518c0b96d_arm64" + }, + "product_reference": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:061589fb5e3aecda461370e0d49a221b88cbbc7a3302062f37a611a518c0b96d_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:c7773dff5cdd908a48d19a8e5464aa9b57dd11afe5590ed96ddd6e01bce56d84_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-api-provider-aws-rhel8@sha256:c7773dff5cdd908a48d19a8e5464aa9b57dd11afe5590ed96ddd6e01bce56d84_amd64" + }, + "product_reference": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:c7773dff5cdd908a48d19a8e5464aa9b57dd11afe5590ed96ddd6e01bce56d84_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:d73bc8987e95753a9a2a94d1f47f4945106f58f679539d0d0aa7ff4a3cd2d61f_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-api-provider-aws-rhel8@sha256:d73bc8987e95753a9a2a94d1f47f4945106f58f679539d0d0aa7ff4a3cd2d61f_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:d73bc8987e95753a9a2a94d1f47f4945106f58f679539d0d0aa7ff4a3cd2d61f_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:ef344f4440a3b5548244c125e5af2dc5d0e42884614dd7f457301c88fb66e593_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-api-provider-aws-rhel8@sha256:ef344f4440a3b5548244c125e5af2dc5d0e42884614dd7f457301c88fb66e593_s390x" + }, + "product_reference": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:ef344f4440a3b5548244c125e5af2dc5d0e42884614dd7f457301c88fb66e593_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:0f5f542e1928b7c504b4c36f551aef5b88e7f29b807a9ef10a65b09d4db03a98_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-api-provider-azure-rhel8@sha256:0f5f542e1928b7c504b4c36f551aef5b88e7f29b807a9ef10a65b09d4db03a98_s390x" + }, + "product_reference": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:0f5f542e1928b7c504b4c36f551aef5b88e7f29b807a9ef10a65b09d4db03a98_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:119231d115fa3b9092c1e1f73883d040d4de6deb470bd64f14ce1fb01c082c2d_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-api-provider-azure-rhel8@sha256:119231d115fa3b9092c1e1f73883d040d4de6deb470bd64f14ce1fb01c082c2d_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:119231d115fa3b9092c1e1f73883d040d4de6deb470bd64f14ce1fb01c082c2d_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:13836dd13b474300322e6353eb68f6369bd845559cf3382ccd4b9e08bff660d3_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-api-provider-azure-rhel8@sha256:13836dd13b474300322e6353eb68f6369bd845559cf3382ccd4b9e08bff660d3_amd64" + }, + "product_reference": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:13836dd13b474300322e6353eb68f6369bd845559cf3382ccd4b9e08bff660d3_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:2756166537b1c7464b866f9fd403180c548529b9691d590beafe80d2039c9830_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-api-provider-azure-rhel8@sha256:2756166537b1c7464b866f9fd403180c548529b9691d590beafe80d2039c9830_arm64" + }, + "product_reference": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:2756166537b1c7464b866f9fd403180c548529b9691d590beafe80d2039c9830_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:3565db257d58587ade8b160f75daf59a64fad2f7accbd85e5a6e9f00731a802d_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:3565db257d58587ade8b160f75daf59a64fad2f7accbd85e5a6e9f00731a802d_s390x" + }, + "product_reference": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:3565db257d58587ade8b160f75daf59a64fad2f7accbd85e5a6e9f00731a802d_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:449096f14efebcde1aa8f2c82a8733cdfbb02ac4eece78068c8a366aa2be92ae_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:449096f14efebcde1aa8f2c82a8733cdfbb02ac4eece78068c8a366aa2be92ae_amd64" + }, + "product_reference": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:449096f14efebcde1aa8f2c82a8733cdfbb02ac4eece78068c8a366aa2be92ae_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:af50da05cc32ea1bb95d1349e29447ce5027d2a0f9d43b031e302f74920a6e14_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:af50da05cc32ea1bb95d1349e29447ce5027d2a0f9d43b031e302f74920a6e14_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:af50da05cc32ea1bb95d1349e29447ce5027d2a0f9d43b031e302f74920a6e14_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:c9ff9535d8bfb2e5a48afce08010df20a7a716eae2f7b9ffacf125d4d916050a_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:c9ff9535d8bfb2e5a48afce08010df20a7a716eae2f7b9ffacf125d4d916050a_arm64" + }, + "product_reference": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:c9ff9535d8bfb2e5a48afce08010df20a7a716eae2f7b9ffacf125d4d916050a_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-rhel8@sha256:88c8e428138bc1fca04091bb7d6db66b63bc31ac81cea9c329ef5366d84c4bf3_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-api-rhel8@sha256:88c8e428138bc1fca04091bb7d6db66b63bc31ac81cea9c329ef5366d84c4bf3_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-api-rhel8@sha256:88c8e428138bc1fca04091bb7d6db66b63bc31ac81cea9c329ef5366d84c4bf3_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-rhel8@sha256:a37f69d9f567ff839a23b8841c256d3a584817c37509c506447fb5dc02ba203a_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-api-rhel8@sha256:a37f69d9f567ff839a23b8841c256d3a584817c37509c506447fb5dc02ba203a_arm64" + }, + "product_reference": "multicluster-engine/cluster-api-rhel8@sha256:a37f69d9f567ff839a23b8841c256d3a584817c37509c506447fb5dc02ba203a_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-rhel8@sha256:b47cfd5236bbe1cf3d5416de92f614606feee351c65df6334f7c6ab8508532df_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-api-rhel8@sha256:b47cfd5236bbe1cf3d5416de92f614606feee351c65df6334f7c6ab8508532df_s390x" + }, + "product_reference": "multicluster-engine/cluster-api-rhel8@sha256:b47cfd5236bbe1cf3d5416de92f614606feee351c65df6334f7c6ab8508532df_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-rhel8@sha256:bfdbfb419a5c14710f6077c677742d567bd1dd17485568fb3b7159b608e32255_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-api-rhel8@sha256:bfdbfb419a5c14710f6077c677742d567bd1dd17485568fb3b7159b608e32255_amd64" + }, + "product_reference": "multicluster-engine/cluster-api-rhel8@sha256:bfdbfb419a5c14710f6077c677742d567bd1dd17485568fb3b7159b608e32255_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:1ed8f6239324f9467d51259493c3f995401f9f4af9d2a1528cf5c068738cfc98_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-curator-controller-rhel8@sha256:1ed8f6239324f9467d51259493c3f995401f9f4af9d2a1528cf5c068738cfc98_arm64" + }, + "product_reference": "multicluster-engine/cluster-curator-controller-rhel8@sha256:1ed8f6239324f9467d51259493c3f995401f9f4af9d2a1528cf5c068738cfc98_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:a8bca98e6f14bd8b01e52250355f2d91bbb2d0806988ddb2ddbb114d440a4c2a_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-curator-controller-rhel8@sha256:a8bca98e6f14bd8b01e52250355f2d91bbb2d0806988ddb2ddbb114d440a4c2a_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-curator-controller-rhel8@sha256:a8bca98e6f14bd8b01e52250355f2d91bbb2d0806988ddb2ddbb114d440a4c2a_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:d224cf1c09a31dec20f9a17ec8067f4630926f6dd42c7bf9abe7ba4a8e9c0cc7_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-curator-controller-rhel8@sha256:d224cf1c09a31dec20f9a17ec8067f4630926f6dd42c7bf9abe7ba4a8e9c0cc7_s390x" + }, + "product_reference": "multicluster-engine/cluster-curator-controller-rhel8@sha256:d224cf1c09a31dec20f9a17ec8067f4630926f6dd42c7bf9abe7ba4a8e9c0cc7_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:d24f84c8f3722ae89375c22522a00f8ee9d835d75dd60c35cfa25ed64da50db4_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-curator-controller-rhel8@sha256:d24f84c8f3722ae89375c22522a00f8ee9d835d75dd60c35cfa25ed64da50db4_amd64" + }, + "product_reference": "multicluster-engine/cluster-curator-controller-rhel8@sha256:d24f84c8f3722ae89375c22522a00f8ee9d835d75dd60c35cfa25ed64da50db4_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:38831cc00e0d94c56cba3db3f172afabecbc556ff39ee04b50021d223d936889_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-proxy-addon-rhel8@sha256:38831cc00e0d94c56cba3db3f172afabecbc556ff39ee04b50021d223d936889_s390x" + }, + "product_reference": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:38831cc00e0d94c56cba3db3f172afabecbc556ff39ee04b50021d223d936889_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:6fbf8902763010dff952fdf95d351631bdba55fd9fd439e006d092c12ab74c57_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-proxy-addon-rhel8@sha256:6fbf8902763010dff952fdf95d351631bdba55fd9fd439e006d092c12ab74c57_arm64" + }, + "product_reference": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:6fbf8902763010dff952fdf95d351631bdba55fd9fd439e006d092c12ab74c57_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:a2a96c3c2537d2f6fb1f40bac3241f779da1217796e72195ab1ca8e8cace9ccd_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-proxy-addon-rhel8@sha256:a2a96c3c2537d2f6fb1f40bac3241f779da1217796e72195ab1ca8e8cace9ccd_amd64" + }, + "product_reference": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:a2a96c3c2537d2f6fb1f40bac3241f779da1217796e72195ab1ca8e8cace9ccd_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:c1224e740b3195f1477b1f90f5392c9f4dcccd874b87d867ac790cd0848feef0_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-proxy-addon-rhel8@sha256:c1224e740b3195f1477b1f90f5392c9f4dcccd874b87d867ac790cd0848feef0_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:c1224e740b3195f1477b1f90f5392c9f4dcccd874b87d867ac790cd0848feef0_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:06cdc7482c0ad5c94d08a98c49e3e63c23bcb8b6d80f9953fbd3959676a1e344_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-proxy-rhel8@sha256:06cdc7482c0ad5c94d08a98c49e3e63c23bcb8b6d80f9953fbd3959676a1e344_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-proxy-rhel8@sha256:06cdc7482c0ad5c94d08a98c49e3e63c23bcb8b6d80f9953fbd3959676a1e344_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:a8cc2a8a191e381653850554d85f24a6eb4ceed521c9ea2210ba8b7ac446a46c_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-proxy-rhel8@sha256:a8cc2a8a191e381653850554d85f24a6eb4ceed521c9ea2210ba8b7ac446a46c_s390x" + }, + "product_reference": "multicluster-engine/cluster-proxy-rhel8@sha256:a8cc2a8a191e381653850554d85f24a6eb4ceed521c9ea2210ba8b7ac446a46c_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:bea2d41f5d2a9eceff7a2b44cc6e35d7a5cb5e0bf60b14497a83d2ac099f054a_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-proxy-rhel8@sha256:bea2d41f5d2a9eceff7a2b44cc6e35d7a5cb5e0bf60b14497a83d2ac099f054a_amd64" + }, + "product_reference": "multicluster-engine/cluster-proxy-rhel8@sha256:bea2d41f5d2a9eceff7a2b44cc6e35d7a5cb5e0bf60b14497a83d2ac099f054a_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:e42c22402d3d8e54519c941885931d9d97dfe252efae8d6f828a86a5e05f730e_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/cluster-proxy-rhel8@sha256:e42c22402d3d8e54519c941885931d9d97dfe252efae8d6f828a86a5e05f730e_arm64" + }, + "product_reference": "multicluster-engine/cluster-proxy-rhel8@sha256:e42c22402d3d8e54519c941885931d9d97dfe252efae8d6f828a86a5e05f730e_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:4037ac30d5cf038ed63edcaa6516bae41a391fbda7f048b6c12b878dc036c84d_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/clusterclaims-controller-rhel8@sha256:4037ac30d5cf038ed63edcaa6516bae41a391fbda7f048b6c12b878dc036c84d_amd64" + }, + "product_reference": "multicluster-engine/clusterclaims-controller-rhel8@sha256:4037ac30d5cf038ed63edcaa6516bae41a391fbda7f048b6c12b878dc036c84d_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:96eec68f9625768ee065b148ec81449edf904ad1d7f80cdc9d7b11a9ca89f8c7_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/clusterclaims-controller-rhel8@sha256:96eec68f9625768ee065b148ec81449edf904ad1d7f80cdc9d7b11a9ca89f8c7_s390x" + }, + "product_reference": "multicluster-engine/clusterclaims-controller-rhel8@sha256:96eec68f9625768ee065b148ec81449edf904ad1d7f80cdc9d7b11a9ca89f8c7_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:a8c676e879dba646a62937e9ee320baeb603015c245839cd233972c2dbcffa3c_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/clusterclaims-controller-rhel8@sha256:a8c676e879dba646a62937e9ee320baeb603015c245839cd233972c2dbcffa3c_arm64" + }, + "product_reference": "multicluster-engine/clusterclaims-controller-rhel8@sha256:a8c676e879dba646a62937e9ee320baeb603015c245839cd233972c2dbcffa3c_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:e365acb00bfd59b2e771a49744e48bd8eb1b98637cd0426cdf1370a8132c21d4_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/clusterclaims-controller-rhel8@sha256:e365acb00bfd59b2e771a49744e48bd8eb1b98637cd0426cdf1370a8132c21d4_ppc64le" + }, + "product_reference": "multicluster-engine/clusterclaims-controller-rhel8@sha256:e365acb00bfd59b2e771a49744e48bd8eb1b98637cd0426cdf1370a8132c21d4_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:0a8a9b20e47f462bd3c816d5aaa0f64222f7cb5b473fda4f9f4628439e4e8a9c_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:0a8a9b20e47f462bd3c816d5aaa0f64222f7cb5b473fda4f9f4628439e4e8a9c_s390x" + }, + "product_reference": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:0a8a9b20e47f462bd3c816d5aaa0f64222f7cb5b473fda4f9f4628439e4e8a9c_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:0c783133fac03d0afb7c7b03123d41cc727cf04fc7ae27e199c39a15518ef7d6_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:0c783133fac03d0afb7c7b03123d41cc727cf04fc7ae27e199c39a15518ef7d6_arm64" + }, + "product_reference": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:0c783133fac03d0afb7c7b03123d41cc727cf04fc7ae27e199c39a15518ef7d6_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:8843c243cd19c34366ed5fc5c1bcbc3f5a8a2fd8bdd8d4adce0ba01ad82fb9cb_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:8843c243cd19c34366ed5fc5c1bcbc3f5a8a2fd8bdd8d4adce0ba01ad82fb9cb_ppc64le" + }, + "product_reference": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:8843c243cd19c34366ed5fc5c1bcbc3f5a8a2fd8bdd8d4adce0ba01ad82fb9cb_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:da1669b171ae950c7018b69837b42edb7be1291373feca2137d99fd3022d9e9c_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:da1669b171ae950c7018b69837b42edb7be1291373feca2137d99fd3022d9e9c_amd64" + }, + "product_reference": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:da1669b171ae950c7018b69837b42edb7be1291373feca2137d99fd3022d9e9c_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/console-mce-rhel8@sha256:52b8ea8e91b71eed19cc521a0e67e6c2e3ba867026b57ee736e6d14388fba9ba_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/console-mce-rhel8@sha256:52b8ea8e91b71eed19cc521a0e67e6c2e3ba867026b57ee736e6d14388fba9ba_ppc64le" + }, + "product_reference": "multicluster-engine/console-mce-rhel8@sha256:52b8ea8e91b71eed19cc521a0e67e6c2e3ba867026b57ee736e6d14388fba9ba_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/console-mce-rhel8@sha256:6b5f443bfe61b3699a3035f566392b62b76556d60836c318cf2f2159c22bf461_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/console-mce-rhel8@sha256:6b5f443bfe61b3699a3035f566392b62b76556d60836c318cf2f2159c22bf461_amd64" + }, + "product_reference": "multicluster-engine/console-mce-rhel8@sha256:6b5f443bfe61b3699a3035f566392b62b76556d60836c318cf2f2159c22bf461_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/console-mce-rhel8@sha256:a3bc108ce725d7723a0ac9649a95596398a96ebc188dc05b507a58908a797924_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/console-mce-rhel8@sha256:a3bc108ce725d7723a0ac9649a95596398a96ebc188dc05b507a58908a797924_arm64" + }, + "product_reference": "multicluster-engine/console-mce-rhel8@sha256:a3bc108ce725d7723a0ac9649a95596398a96ebc188dc05b507a58908a797924_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/console-mce-rhel8@sha256:ffebafa92bc54bdcdda7bfffae465c47802be7f2a28c804f28e380952c25d60a_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/console-mce-rhel8@sha256:ffebafa92bc54bdcdda7bfffae465c47802be7f2a28c804f28e380952c25d60a_s390x" + }, + "product_reference": "multicluster-engine/console-mce-rhel8@sha256:ffebafa92bc54bdcdda7bfffae465c47802be7f2a28c804f28e380952c25d60a_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/discovery-rhel8@sha256:84cfe782bb80d055792114c8f983b01c37763c959ec92d7a1814b73c2414e412_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/discovery-rhel8@sha256:84cfe782bb80d055792114c8f983b01c37763c959ec92d7a1814b73c2414e412_amd64" + }, + "product_reference": "multicluster-engine/discovery-rhel8@sha256:84cfe782bb80d055792114c8f983b01c37763c959ec92d7a1814b73c2414e412_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/discovery-rhel8@sha256:88c01435b5371f5474f354611220461af6a8bc6de4a6c20a7163effc919b5fc4_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/discovery-rhel8@sha256:88c01435b5371f5474f354611220461af6a8bc6de4a6c20a7163effc919b5fc4_arm64" + }, + "product_reference": "multicluster-engine/discovery-rhel8@sha256:88c01435b5371f5474f354611220461af6a8bc6de4a6c20a7163effc919b5fc4_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/discovery-rhel8@sha256:f573e30a6d17654245f2063acd354d501e6a41ee8430a596724e27beb7c24127_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/discovery-rhel8@sha256:f573e30a6d17654245f2063acd354d501e6a41ee8430a596724e27beb7c24127_s390x" + }, + "product_reference": "multicluster-engine/discovery-rhel8@sha256:f573e30a6d17654245f2063acd354d501e6a41ee8430a596724e27beb7c24127_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/discovery-rhel8@sha256:ff2cb982527aa21822aa7032facbee981c906d06da75ba6d7c9bc00e4ebe46ff_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/discovery-rhel8@sha256:ff2cb982527aa21822aa7032facbee981c906d06da75ba6d7c9bc00e4ebe46ff_ppc64le" + }, + "product_reference": "multicluster-engine/discovery-rhel8@sha256:ff2cb982527aa21822aa7032facbee981c906d06da75ba6d7c9bc00e4ebe46ff_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hive-rhel8@sha256:34050abfd51da7d34f486407e680a438737a5a4f1553da3091e4e4e45705bf92_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/hive-rhel8@sha256:34050abfd51da7d34f486407e680a438737a5a4f1553da3091e4e4e45705bf92_arm64" + }, + "product_reference": "multicluster-engine/hive-rhel8@sha256:34050abfd51da7d34f486407e680a438737a5a4f1553da3091e4e4e45705bf92_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hive-rhel8@sha256:9b663a05d87daefe74645bd41dff9da17324ea5beacaa4ddbef47780234ce107_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/hive-rhel8@sha256:9b663a05d87daefe74645bd41dff9da17324ea5beacaa4ddbef47780234ce107_ppc64le" + }, + "product_reference": "multicluster-engine/hive-rhel8@sha256:9b663a05d87daefe74645bd41dff9da17324ea5beacaa4ddbef47780234ce107_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hive-rhel8@sha256:a5c94471bce33585a2b911c412e6c2f7ff95b4dcdd98d6c88ff8059e4613c658_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/hive-rhel8@sha256:a5c94471bce33585a2b911c412e6c2f7ff95b4dcdd98d6c88ff8059e4613c658_s390x" + }, + "product_reference": "multicluster-engine/hive-rhel8@sha256:a5c94471bce33585a2b911c412e6c2f7ff95b4dcdd98d6c88ff8059e4613c658_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hive-rhel8@sha256:d0d3e8624184787f7428f405c720a413bb2949371095f81da50c7883acf5478f_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/hive-rhel8@sha256:d0d3e8624184787f7428f405c720a413bb2949371095f81da50c7883acf5478f_amd64" + }, + "product_reference": "multicluster-engine/hive-rhel8@sha256:d0d3e8624184787f7428f405c720a413bb2949371095f81da50c7883acf5478f_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:2bd22d2dddd3495137b31fe5d6ab4dece39db118d359c917e7b4a07fc93538a3_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/hypershift-addon-rhel8-operator@sha256:2bd22d2dddd3495137b31fe5d6ab4dece39db118d359c917e7b4a07fc93538a3_ppc64le" + }, + "product_reference": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:2bd22d2dddd3495137b31fe5d6ab4dece39db118d359c917e7b4a07fc93538a3_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:3230b552869891bebb92b64554dcef1f4314237521b66bd45430c9ef1ea2151e_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/hypershift-addon-rhel8-operator@sha256:3230b552869891bebb92b64554dcef1f4314237521b66bd45430c9ef1ea2151e_arm64" + }, + "product_reference": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:3230b552869891bebb92b64554dcef1f4314237521b66bd45430c9ef1ea2151e_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:48cbe75e69b4fbc08815d57acaa0ca95e64b8d3fb3d464f0806c5cbda072d54e_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/hypershift-addon-rhel8-operator@sha256:48cbe75e69b4fbc08815d57acaa0ca95e64b8d3fb3d464f0806c5cbda072d54e_s390x" + }, + "product_reference": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:48cbe75e69b4fbc08815d57acaa0ca95e64b8d3fb3d464f0806c5cbda072d54e_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:77c8ef9f897576cf01a71a302ab4c8f48d430da0f886c3b85df71c6cec25b5bb_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/hypershift-addon-rhel8-operator@sha256:77c8ef9f897576cf01a71a302ab4c8f48d430da0f886c3b85df71c6cec25b5bb_amd64" + }, + "product_reference": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:77c8ef9f897576cf01a71a302ab4c8f48d430da0f886c3b85df71c6cec25b5bb_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-deployment-controller-rhel8@sha256:2cd2c968313550d8b59c790b954c3e2d44b6506af803e4260d468ef7d2cd9269_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/hypershift-deployment-controller-rhel8@sha256:2cd2c968313550d8b59c790b954c3e2d44b6506af803e4260d468ef7d2cd9269_s390x" + }, + "product_reference": "multicluster-engine/hypershift-deployment-controller-rhel8@sha256:2cd2c968313550d8b59c790b954c3e2d44b6506af803e4260d468ef7d2cd9269_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-deployment-controller-rhel8@sha256:9378ee57cfa430a8053b723107ffbb012253959c0b7bb613acf782e5d97ee037_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/hypershift-deployment-controller-rhel8@sha256:9378ee57cfa430a8053b723107ffbb012253959c0b7bb613acf782e5d97ee037_arm64" + }, + "product_reference": "multicluster-engine/hypershift-deployment-controller-rhel8@sha256:9378ee57cfa430a8053b723107ffbb012253959c0b7bb613acf782e5d97ee037_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-deployment-controller-rhel8@sha256:abe3b24e29bbd1d3653489de585b69f349ecc34289251f8fc5bcccfe31ca7043_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/hypershift-deployment-controller-rhel8@sha256:abe3b24e29bbd1d3653489de585b69f349ecc34289251f8fc5bcccfe31ca7043_ppc64le" + }, + "product_reference": "multicluster-engine/hypershift-deployment-controller-rhel8@sha256:abe3b24e29bbd1d3653489de585b69f349ecc34289251f8fc5bcccfe31ca7043_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-deployment-controller-rhel8@sha256:c7a1298a0779f9e8462d6a9274956e7b779a66964f8d021abea31c59ad16a872_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/hypershift-deployment-controller-rhel8@sha256:c7a1298a0779f9e8462d6a9274956e7b779a66964f8d021abea31c59ad16a872_amd64" + }, + "product_reference": "multicluster-engine/hypershift-deployment-controller-rhel8@sha256:c7a1298a0779f9e8462d6a9274956e7b779a66964f8d021abea31c59ad16a872_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:2b87a0af2b7380bcb64f661591a53019c74f2688d121aacfc7e6cfa4af2233a5_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/hypershift-rhel8-operator@sha256:2b87a0af2b7380bcb64f661591a53019c74f2688d121aacfc7e6cfa4af2233a5_arm64" + }, + "product_reference": "multicluster-engine/hypershift-rhel8-operator@sha256:2b87a0af2b7380bcb64f661591a53019c74f2688d121aacfc7e6cfa4af2233a5_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:5a56609626834e2013db384d548d6167417c45b8272f9347e1104ca53e3a0c1e_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/hypershift-rhel8-operator@sha256:5a56609626834e2013db384d548d6167417c45b8272f9347e1104ca53e3a0c1e_ppc64le" + }, + "product_reference": "multicluster-engine/hypershift-rhel8-operator@sha256:5a56609626834e2013db384d548d6167417c45b8272f9347e1104ca53e3a0c1e_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:906e21636563fdb4b08a9b27f8724051dc9ff3296ead000a646a657756729c01_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/hypershift-rhel8-operator@sha256:906e21636563fdb4b08a9b27f8724051dc9ff3296ead000a646a657756729c01_amd64" + }, + "product_reference": "multicluster-engine/hypershift-rhel8-operator@sha256:906e21636563fdb4b08a9b27f8724051dc9ff3296ead000a646a657756729c01_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:a779b2342a6ab6a6d19dced0e28332ce995cfa992274efa2abddca5d1f43095b_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/hypershift-rhel8-operator@sha256:a779b2342a6ab6a6d19dced0e28332ce995cfa992274efa2abddca5d1f43095b_s390x" + }, + "product_reference": "multicluster-engine/hypershift-rhel8-operator@sha256:a779b2342a6ab6a6d19dced0e28332ce995cfa992274efa2abddca5d1f43095b_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/klusterlet-operator-bundle@sha256:e9641814a6bda7f0c2bbc033674871f9dcae1d612b3df6cd1f96b511d9acd367_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/klusterlet-operator-bundle@sha256:e9641814a6bda7f0c2bbc033674871f9dcae1d612b3df6cd1f96b511d9acd367_amd64" + }, + "product_reference": "multicluster-engine/klusterlet-operator-bundle@sha256:e9641814a6bda7f0c2bbc033674871f9dcae1d612b3df6cd1f96b511d9acd367_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:0d626368fd40f439639a9c6b553f40e71f1b22cf303121ecc3ec091bc888071e_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/managed-serviceaccount-rhel8@sha256:0d626368fd40f439639a9c6b553f40e71f1b22cf303121ecc3ec091bc888071e_amd64" + }, + "product_reference": "multicluster-engine/managed-serviceaccount-rhel8@sha256:0d626368fd40f439639a9c6b553f40e71f1b22cf303121ecc3ec091bc888071e_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:514d2f20b198143d54bb902622d71fda8c8af1fcb90b6a4ed1fd856f73894bda_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/managed-serviceaccount-rhel8@sha256:514d2f20b198143d54bb902622d71fda8c8af1fcb90b6a4ed1fd856f73894bda_arm64" + }, + "product_reference": "multicluster-engine/managed-serviceaccount-rhel8@sha256:514d2f20b198143d54bb902622d71fda8c8af1fcb90b6a4ed1fd856f73894bda_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:9054fb2d0b79bea4c61795ef853685dac2c4d4f59f03d674ab416910ee452bd9_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/managed-serviceaccount-rhel8@sha256:9054fb2d0b79bea4c61795ef853685dac2c4d4f59f03d674ab416910ee452bd9_s390x" + }, + "product_reference": "multicluster-engine/managed-serviceaccount-rhel8@sha256:9054fb2d0b79bea4c61795ef853685dac2c4d4f59f03d674ab416910ee452bd9_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:f458bae6c5399eb3716398e7366e9a1810b201e0bb89a9c21ea30cc6a9b555b4_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/managed-serviceaccount-rhel8@sha256:f458bae6c5399eb3716398e7366e9a1810b201e0bb89a9c21ea30cc6a9b555b4_ppc64le" + }, + "product_reference": "multicluster-engine/managed-serviceaccount-rhel8@sha256:f458bae6c5399eb3716398e7366e9a1810b201e0bb89a9c21ea30cc6a9b555b4_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:48623726a8a560458bea6213355052a1901e6cbf0b7cad1ae10dd6cb3523d6f2_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/managedcluster-import-controller-rhel8@sha256:48623726a8a560458bea6213355052a1901e6cbf0b7cad1ae10dd6cb3523d6f2_ppc64le" + }, + "product_reference": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:48623726a8a560458bea6213355052a1901e6cbf0b7cad1ae10dd6cb3523d6f2_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:841c8229d748af903bf3562bc95e72ec6964cf5c225502826c49164ab95c5039_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/managedcluster-import-controller-rhel8@sha256:841c8229d748af903bf3562bc95e72ec6964cf5c225502826c49164ab95c5039_amd64" + }, + "product_reference": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:841c8229d748af903bf3562bc95e72ec6964cf5c225502826c49164ab95c5039_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:9c3921f6045c6ebade2711f8012aad1cf3744f1d83e6ac069011e6da2d07a175_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/managedcluster-import-controller-rhel8@sha256:9c3921f6045c6ebade2711f8012aad1cf3744f1d83e6ac069011e6da2d07a175_arm64" + }, + "product_reference": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:9c3921f6045c6ebade2711f8012aad1cf3744f1d83e6ac069011e6da2d07a175_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:fb25df455a49282672c4df1961167b04056c40218a0566db8f9106c670cf0bf5_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/managedcluster-import-controller-rhel8@sha256:fb25df455a49282672c4df1961167b04056c40218a0566db8f9106c670cf0bf5_s390x" + }, + "product_reference": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:fb25df455a49282672c4df1961167b04056c40218a0566db8f9106c670cf0bf5_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/mce-operator-bundle@sha256:011de123de5089c2678ca5ee697e5059908f3632d2dd2c4b24daa8c78e7c5e31_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/mce-operator-bundle@sha256:011de123de5089c2678ca5ee697e5059908f3632d2dd2c4b24daa8c78e7c5e31_ppc64le" + }, + "product_reference": "multicluster-engine/mce-operator-bundle@sha256:011de123de5089c2678ca5ee697e5059908f3632d2dd2c4b24daa8c78e7c5e31_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/mce-operator-bundle@sha256:1f33685a3eb1afe2c96c6fbc394c69efa7b67bb813a6c41449cbf06767333e0a_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/mce-operator-bundle@sha256:1f33685a3eb1afe2c96c6fbc394c69efa7b67bb813a6c41449cbf06767333e0a_amd64" + }, + "product_reference": "multicluster-engine/mce-operator-bundle@sha256:1f33685a3eb1afe2c96c6fbc394c69efa7b67bb813a6c41449cbf06767333e0a_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/mce-operator-bundle@sha256:5e4711dd2c70883ae2b8dedeee8fcd1cc03d20c3fe1e0467156a329ee31077cd_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/mce-operator-bundle@sha256:5e4711dd2c70883ae2b8dedeee8fcd1cc03d20c3fe1e0467156a329ee31077cd_s390x" + }, + "product_reference": "multicluster-engine/mce-operator-bundle@sha256:5e4711dd2c70883ae2b8dedeee8fcd1cc03d20c3fe1e0467156a329ee31077cd_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:80f1d2212e182e8a04dc66357cf0e5e5e29b6918907ee2aa7ee32dca0bc0703f_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/multicloud-manager-rhel8@sha256:80f1d2212e182e8a04dc66357cf0e5e5e29b6918907ee2aa7ee32dca0bc0703f_arm64" + }, + "product_reference": "multicluster-engine/multicloud-manager-rhel8@sha256:80f1d2212e182e8a04dc66357cf0e5e5e29b6918907ee2aa7ee32dca0bc0703f_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:d10968a0c91a14bd7ad66617046df4ab86663b66a4ddce7b360fa4db59abd80c_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/multicloud-manager-rhel8@sha256:d10968a0c91a14bd7ad66617046df4ab86663b66a4ddce7b360fa4db59abd80c_amd64" + }, + "product_reference": "multicluster-engine/multicloud-manager-rhel8@sha256:d10968a0c91a14bd7ad66617046df4ab86663b66a4ddce7b360fa4db59abd80c_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:e2a52d5d3ab3fd48deb265eee67a5af65c72fe0531a8cbfccace8350b19b484b_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/multicloud-manager-rhel8@sha256:e2a52d5d3ab3fd48deb265eee67a5af65c72fe0531a8cbfccace8350b19b484b_ppc64le" + }, + "product_reference": "multicluster-engine/multicloud-manager-rhel8@sha256:e2a52d5d3ab3fd48deb265eee67a5af65c72fe0531a8cbfccace8350b19b484b_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:f09a9243dc44b3149e8f8744cbb1db47e7914630efb8684b0c86d6fc2c8d7edc_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/multicloud-manager-rhel8@sha256:f09a9243dc44b3149e8f8744cbb1db47e7914630efb8684b0c86d6fc2c8d7edc_s390x" + }, + "product_reference": "multicluster-engine/multicloud-manager-rhel8@sha256:f09a9243dc44b3149e8f8744cbb1db47e7914630efb8684b0c86d6fc2c8d7edc_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:4091ee0eb09fbb381799968fe7bb2469e7b962b7f1caa534cff3b8b11b14317d_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:4091ee0eb09fbb381799968fe7bb2469e7b962b7f1caa534cff3b8b11b14317d_arm64" + }, + "product_reference": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:4091ee0eb09fbb381799968fe7bb2469e7b962b7f1caa534cff3b8b11b14317d_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:5967fbe0df939721d1866bbd16f63554e441530e913220a757b8018c5eedc539_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:5967fbe0df939721d1866bbd16f63554e441530e913220a757b8018c5eedc539_s390x" + }, + "product_reference": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:5967fbe0df939721d1866bbd16f63554e441530e913220a757b8018c5eedc539_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:6a3496efda51a7dd044cc165b0ff9b7ff957386ec47a22dcc7fb58dea7f5467d_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:6a3496efda51a7dd044cc165b0ff9b7ff957386ec47a22dcc7fb58dea7f5467d_ppc64le" + }, + "product_reference": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:6a3496efda51a7dd044cc165b0ff9b7ff957386ec47a22dcc7fb58dea7f5467d_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:82c9f4891a3df24631322cda48ed92676ea4dc43774c10638d3990f0a4657e89_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:82c9f4891a3df24631322cda48ed92676ea4dc43774c10638d3990f0a4657e89_amd64" + }, + "product_reference": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:82c9f4891a3df24631322cda48ed92676ea4dc43774c10638d3990f0a4657e89_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:52b8ea8e91b71eed19cc521a0e67e6c2e3ba867026b57ee736e6d14388fba9ba_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:52b8ea8e91b71eed19cc521a0e67e6c2e3ba867026b57ee736e6d14388fba9ba_ppc64le" + }, + "product_reference": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:52b8ea8e91b71eed19cc521a0e67e6c2e3ba867026b57ee736e6d14388fba9ba_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:6b5f443bfe61b3699a3035f566392b62b76556d60836c318cf2f2159c22bf461_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:6b5f443bfe61b3699a3035f566392b62b76556d60836c318cf2f2159c22bf461_amd64" + }, + "product_reference": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:6b5f443bfe61b3699a3035f566392b62b76556d60836c318cf2f2159c22bf461_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:a3bc108ce725d7723a0ac9649a95596398a96ebc188dc05b507a58908a797924_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:a3bc108ce725d7723a0ac9649a95596398a96ebc188dc05b507a58908a797924_arm64" + }, + "product_reference": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:a3bc108ce725d7723a0ac9649a95596398a96ebc188dc05b507a58908a797924_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:ffebafa92bc54bdcdda7bfffae465c47802be7f2a28c804f28e380952c25d60a_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:ffebafa92bc54bdcdda7bfffae465c47802be7f2a28c804f28e380952c25d60a_s390x" + }, + "product_reference": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:ffebafa92bc54bdcdda7bfffae465c47802be7f2a28c804f28e380952c25d60a_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:2bd22d2dddd3495137b31fe5d6ab4dece39db118d359c917e7b4a07fc93538a3_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:2bd22d2dddd3495137b31fe5d6ab4dece39db118d359c917e7b4a07fc93538a3_ppc64le" + }, + "product_reference": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:2bd22d2dddd3495137b31fe5d6ab4dece39db118d359c917e7b4a07fc93538a3_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:3230b552869891bebb92b64554dcef1f4314237521b66bd45430c9ef1ea2151e_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:3230b552869891bebb92b64554dcef1f4314237521b66bd45430c9ef1ea2151e_arm64" + }, + "product_reference": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:3230b552869891bebb92b64554dcef1f4314237521b66bd45430c9ef1ea2151e_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:48cbe75e69b4fbc08815d57acaa0ca95e64b8d3fb3d464f0806c5cbda072d54e_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:48cbe75e69b4fbc08815d57acaa0ca95e64b8d3fb3d464f0806c5cbda072d54e_s390x" + }, + "product_reference": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:48cbe75e69b4fbc08815d57acaa0ca95e64b8d3fb3d464f0806c5cbda072d54e_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:77c8ef9f897576cf01a71a302ab4c8f48d430da0f886c3b85df71c6cec25b5bb_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:77c8ef9f897576cf01a71a302ab4c8f48d430da0f886c3b85df71c6cec25b5bb_amd64" + }, + "product_reference": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:77c8ef9f897576cf01a71a302ab4c8f48d430da0f886c3b85df71c6cec25b5bb_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:2cd2c968313550d8b59c790b954c3e2d44b6506af803e4260d468ef7d2cd9269_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:2cd2c968313550d8b59c790b954c3e2d44b6506af803e4260d468ef7d2cd9269_s390x" + }, + "product_reference": "multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:2cd2c968313550d8b59c790b954c3e2d44b6506af803e4260d468ef7d2cd9269_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:9378ee57cfa430a8053b723107ffbb012253959c0b7bb613acf782e5d97ee037_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:9378ee57cfa430a8053b723107ffbb012253959c0b7bb613acf782e5d97ee037_arm64" + }, + "product_reference": "multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:9378ee57cfa430a8053b723107ffbb012253959c0b7bb613acf782e5d97ee037_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:abe3b24e29bbd1d3653489de585b69f349ecc34289251f8fc5bcccfe31ca7043_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:abe3b24e29bbd1d3653489de585b69f349ecc34289251f8fc5bcccfe31ca7043_ppc64le" + }, + "product_reference": "multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:abe3b24e29bbd1d3653489de585b69f349ecc34289251f8fc5bcccfe31ca7043_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:c7a1298a0779f9e8462d6a9274956e7b779a66964f8d021abea31c59ad16a872_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:c7a1298a0779f9e8462d6a9274956e7b779a66964f8d021abea31c59ad16a872_amd64" + }, + "product_reference": "multicluster-engine/multicluster-engine-hypershift-deployment-controller-rhel8@sha256:c7a1298a0779f9e8462d6a9274956e7b779a66964f8d021abea31c59ad16a872_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:0d626368fd40f439639a9c6b553f40e71f1b22cf303121ecc3ec091bc888071e_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:0d626368fd40f439639a9c6b553f40e71f1b22cf303121ecc3ec091bc888071e_amd64" + }, + "product_reference": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:0d626368fd40f439639a9c6b553f40e71f1b22cf303121ecc3ec091bc888071e_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:514d2f20b198143d54bb902622d71fda8c8af1fcb90b6a4ed1fd856f73894bda_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:514d2f20b198143d54bb902622d71fda8c8af1fcb90b6a4ed1fd856f73894bda_arm64" + }, + "product_reference": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:514d2f20b198143d54bb902622d71fda8c8af1fcb90b6a4ed1fd856f73894bda_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:9054fb2d0b79bea4c61795ef853685dac2c4d4f59f03d674ab416910ee452bd9_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:9054fb2d0b79bea4c61795ef853685dac2c4d4f59f03d674ab416910ee452bd9_s390x" + }, + "product_reference": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:9054fb2d0b79bea4c61795ef853685dac2c4d4f59f03d674ab416910ee452bd9_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:f458bae6c5399eb3716398e7366e9a1810b201e0bb89a9c21ea30cc6a9b555b4_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:f458bae6c5399eb3716398e7366e9a1810b201e0bb89a9c21ea30cc6a9b555b4_ppc64le" + }, + "product_reference": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:f458bae6c5399eb3716398e7366e9a1810b201e0bb89a9c21ea30cc6a9b555b4_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/must-gather-rhel8@sha256:02a8f2bf909ae85ce4a45deead724668412d35789a96dc1ea761f70ed67e8ddd_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/must-gather-rhel8@sha256:02a8f2bf909ae85ce4a45deead724668412d35789a96dc1ea761f70ed67e8ddd_ppc64le" + }, + "product_reference": "multicluster-engine/must-gather-rhel8@sha256:02a8f2bf909ae85ce4a45deead724668412d35789a96dc1ea761f70ed67e8ddd_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/must-gather-rhel8@sha256:820875caa436ff17f1a84fcb36f5756cbe7b5a4de865d1f359dbea4c27beb849_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/must-gather-rhel8@sha256:820875caa436ff17f1a84fcb36f5756cbe7b5a4de865d1f359dbea4c27beb849_arm64" + }, + "product_reference": "multicluster-engine/must-gather-rhel8@sha256:820875caa436ff17f1a84fcb36f5756cbe7b5a4de865d1f359dbea4c27beb849_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/must-gather-rhel8@sha256:aab9f0cebaa1c0db1e8bb574b9a12f87277442686080238e920508f27d02d4de_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/must-gather-rhel8@sha256:aab9f0cebaa1c0db1e8bb574b9a12f87277442686080238e920508f27d02d4de_s390x" + }, + "product_reference": "multicluster-engine/must-gather-rhel8@sha256:aab9f0cebaa1c0db1e8bb574b9a12f87277442686080238e920508f27d02d4de_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/must-gather-rhel8@sha256:fc4f34e7ba3d392641ffd30ea00ec8b4a7f2b7983688f66ad98c774efc313743_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/must-gather-rhel8@sha256:fc4f34e7ba3d392641ffd30ea00ec8b4a7f2b7983688f66ad98c774efc313743_amd64" + }, + "product_reference": "multicluster-engine/must-gather-rhel8@sha256:fc4f34e7ba3d392641ffd30ea00ec8b4a7f2b7983688f66ad98c774efc313743_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/placement-rhel8@sha256:13ff33badb0e2066b4ab82e012578541648112c2523839eaf4c81b2c491c30c6_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/placement-rhel8@sha256:13ff33badb0e2066b4ab82e012578541648112c2523839eaf4c81b2c491c30c6_amd64" + }, + "product_reference": "multicluster-engine/placement-rhel8@sha256:13ff33badb0e2066b4ab82e012578541648112c2523839eaf4c81b2c491c30c6_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/placement-rhel8@sha256:3804df1f9f330358c8a989c9a7cc93b2ebb29f93d52797047333a578c12bc5bd_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/placement-rhel8@sha256:3804df1f9f330358c8a989c9a7cc93b2ebb29f93d52797047333a578c12bc5bd_ppc64le" + }, + "product_reference": "multicluster-engine/placement-rhel8@sha256:3804df1f9f330358c8a989c9a7cc93b2ebb29f93d52797047333a578c12bc5bd_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/placement-rhel8@sha256:be1582b40b4b827f7292a6240e9390e97853a9995627207be9b74003b1eb787a_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/placement-rhel8@sha256:be1582b40b4b827f7292a6240e9390e97853a9995627207be9b74003b1eb787a_s390x" + }, + "product_reference": "multicluster-engine/placement-rhel8@sha256:be1582b40b4b827f7292a6240e9390e97853a9995627207be9b74003b1eb787a_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/placement-rhel8@sha256:f2943467eba0108beb2501f0cdd88b50855c5f958e586883c87026d33976351c_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/placement-rhel8@sha256:f2943467eba0108beb2501f0cdd88b50855c5f958e586883c87026d33976351c_arm64" + }, + "product_reference": "multicluster-engine/placement-rhel8@sha256:f2943467eba0108beb2501f0cdd88b50855c5f958e586883c87026d33976351c_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:52645339e18f528732950666a6b621e1fc834601ca36d8ef9c442c8e870d56f5_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/provider-credential-controller-rhel8@sha256:52645339e18f528732950666a6b621e1fc834601ca36d8ef9c442c8e870d56f5_ppc64le" + }, + "product_reference": "multicluster-engine/provider-credential-controller-rhel8@sha256:52645339e18f528732950666a6b621e1fc834601ca36d8ef9c442c8e870d56f5_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:6de9342efed99503848ebb2b43fc976bf6987ed1555d17aeb78948fa0a184bd4_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/provider-credential-controller-rhel8@sha256:6de9342efed99503848ebb2b43fc976bf6987ed1555d17aeb78948fa0a184bd4_amd64" + }, + "product_reference": "multicluster-engine/provider-credential-controller-rhel8@sha256:6de9342efed99503848ebb2b43fc976bf6987ed1555d17aeb78948fa0a184bd4_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:7a6ee6a9d4e47132decbfc5dc4ebb4dd18fca42d2161deb6aec67ed64e71b919_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/provider-credential-controller-rhel8@sha256:7a6ee6a9d4e47132decbfc5dc4ebb4dd18fca42d2161deb6aec67ed64e71b919_arm64" + }, + "product_reference": "multicluster-engine/provider-credential-controller-rhel8@sha256:7a6ee6a9d4e47132decbfc5dc4ebb4dd18fca42d2161deb6aec67ed64e71b919_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:e413f3fe6464555a96beec91d7679e27be8c97579add4aea0d75b439042d0c31_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/provider-credential-controller-rhel8@sha256:e413f3fe6464555a96beec91d7679e27be8c97579add4aea0d75b439042d0c31_s390x" + }, + "product_reference": "multicluster-engine/provider-credential-controller-rhel8@sha256:e413f3fe6464555a96beec91d7679e27be8c97579add4aea0d75b439042d0c31_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/registration-operator-rhel8@sha256:0c15d59d65cbea4d06e79fcd36cd647a648785ef78d8c343c99d60c68c800545_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/registration-operator-rhel8@sha256:0c15d59d65cbea4d06e79fcd36cd647a648785ef78d8c343c99d60c68c800545_s390x" + }, + "product_reference": "multicluster-engine/registration-operator-rhel8@sha256:0c15d59d65cbea4d06e79fcd36cd647a648785ef78d8c343c99d60c68c800545_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/registration-operator-rhel8@sha256:42fbc7d17ba6a719c0590200378b1462dba715cfafe2091200990a746c966d72_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/registration-operator-rhel8@sha256:42fbc7d17ba6a719c0590200378b1462dba715cfafe2091200990a746c966d72_arm64" + }, + "product_reference": "multicluster-engine/registration-operator-rhel8@sha256:42fbc7d17ba6a719c0590200378b1462dba715cfafe2091200990a746c966d72_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/registration-operator-rhel8@sha256:689bae570f5b636db94f54bc272213dc421c2c44d0886c7572f937bbf9b60d08_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/registration-operator-rhel8@sha256:689bae570f5b636db94f54bc272213dc421c2c44d0886c7572f937bbf9b60d08_amd64" + }, + "product_reference": "multicluster-engine/registration-operator-rhel8@sha256:689bae570f5b636db94f54bc272213dc421c2c44d0886c7572f937bbf9b60d08_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/registration-operator-rhel8@sha256:daf8b732403316c9bea81039a1f392f4cbbfd19b3ef46fe5880ac50a5f59a498_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/registration-operator-rhel8@sha256:daf8b732403316c9bea81039a1f392f4cbbfd19b3ef46fe5880ac50a5f59a498_ppc64le" + }, + "product_reference": "multicluster-engine/registration-operator-rhel8@sha256:daf8b732403316c9bea81039a1f392f4cbbfd19b3ef46fe5880ac50a5f59a498_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/registration-rhel8@sha256:932b5206b6d57dc6038a174f6b6fe557b296223769fe16e1f24084580ea68758_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/registration-rhel8@sha256:932b5206b6d57dc6038a174f6b6fe557b296223769fe16e1f24084580ea68758_s390x" + }, + "product_reference": "multicluster-engine/registration-rhel8@sha256:932b5206b6d57dc6038a174f6b6fe557b296223769fe16e1f24084580ea68758_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/registration-rhel8@sha256:c1e5401bc5ecd8b2cdf70c92d8c0e8e8d0ae0a4e6d8f1332721bc9cced3effcb_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/registration-rhel8@sha256:c1e5401bc5ecd8b2cdf70c92d8c0e8e8d0ae0a4e6d8f1332721bc9cced3effcb_amd64" + }, + "product_reference": "multicluster-engine/registration-rhel8@sha256:c1e5401bc5ecd8b2cdf70c92d8c0e8e8d0ae0a4e6d8f1332721bc9cced3effcb_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/registration-rhel8@sha256:cba077e67849656cd1943d30b8330184fed68bced32bc6f3b06e7998c3b5d3f8_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/registration-rhel8@sha256:cba077e67849656cd1943d30b8330184fed68bced32bc6f3b06e7998c3b5d3f8_arm64" + }, + "product_reference": "multicluster-engine/registration-rhel8@sha256:cba077e67849656cd1943d30b8330184fed68bced32bc6f3b06e7998c3b5d3f8_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/registration-rhel8@sha256:e8a478f9c5c65cca626e1ad81ee4d2189c2145cdcb40e8076dfd90ccfb5a47ca_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/registration-rhel8@sha256:e8a478f9c5c65cca626e1ad81ee4d2189c2145cdcb40e8076dfd90ccfb5a47ca_ppc64le" + }, + "product_reference": "multicluster-engine/registration-rhel8@sha256:e8a478f9c5c65cca626e1ad81ee4d2189c2145cdcb40e8076dfd90ccfb5a47ca_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/work-rhel8@sha256:1c45ef9d70be5eb145a19e2fceef3417c49dc1b68a3f617107303b91222193ad_amd64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/work-rhel8@sha256:1c45ef9d70be5eb145a19e2fceef3417c49dc1b68a3f617107303b91222193ad_amd64" + }, + "product_reference": "multicluster-engine/work-rhel8@sha256:1c45ef9d70be5eb145a19e2fceef3417c49dc1b68a3f617107303b91222193ad_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/work-rhel8@sha256:412ee16209aa5ea9864778eafdfe7e6736db3ca266257b950b79482d34cd7624_s390x as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/work-rhel8@sha256:412ee16209aa5ea9864778eafdfe7e6736db3ca266257b950b79482d34cd7624_s390x" + }, + "product_reference": "multicluster-engine/work-rhel8@sha256:412ee16209aa5ea9864778eafdfe7e6736db3ca266257b950b79482d34cd7624_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/work-rhel8@sha256:47796108fa4b69db58d3f95bae8916053fe5433b0582babdac08c5a0472e5843_ppc64le as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/work-rhel8@sha256:47796108fa4b69db58d3f95bae8916053fe5433b0582babdac08c5a0472e5843_ppc64le" + }, + "product_reference": "multicluster-engine/work-rhel8@sha256:47796108fa4b69db58d3f95bae8916053fe5433b0582babdac08c5a0472e5843_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/work-rhel8@sha256:fb0710da904c7945076f739c6fe9b47928eec1231da3877b52c23dc929e47d9b_arm64 as a component of multicluster engine for Kubernetes 2.1 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.1:multicluster-engine/work-rhel8@sha256:fb0710da904c7945076f739c6fe9b47928eec1231da3877b52c23dc929e47d9b_arm64" + }, + "product_reference": "multicluster-engine/work-rhel8@sha256:fb0710da904c7945076f739c6fe9b47928eec1231da3877b52c23dc929e47d9b_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/agent-service-rhel8@sha256:13ceb488e9022286773218de2d35eed798ae435975faaf7b394da3f6a44a655b_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/agent-service-rhel8@sha256:13ceb488e9022286773218de2d35eed798ae435975faaf7b394da3f6a44a655b_ppc64le" + }, + "product_reference": "multicluster-engine/agent-service-rhel8@sha256:13ceb488e9022286773218de2d35eed798ae435975faaf7b394da3f6a44a655b_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/agent-service-rhel8@sha256:301d15258f99bfe86cc0e0a780c13399eecf5d6e6264138fe12acba35edf0a13_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/agent-service-rhel8@sha256:301d15258f99bfe86cc0e0a780c13399eecf5d6e6264138fe12acba35edf0a13_amd64" + }, + "product_reference": "multicluster-engine/agent-service-rhel8@sha256:301d15258f99bfe86cc0e0a780c13399eecf5d6e6264138fe12acba35edf0a13_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/agent-service-rhel8@sha256:444adb203db753267008270647520b35c4b5191c626dcde98994d154fe6378b6_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/agent-service-rhel8@sha256:444adb203db753267008270647520b35c4b5191c626dcde98994d154fe6378b6_arm64" + }, + "product_reference": "multicluster-engine/agent-service-rhel8@sha256:444adb203db753267008270647520b35c4b5191c626dcde98994d154fe6378b6_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/agent-service-rhel8@sha256:45e1c82fa7539f32cdaa7eae2bbcbbffb1b9fa4d84c3a9a12538f5e5bb3add8e_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/agent-service-rhel8@sha256:45e1c82fa7539f32cdaa7eae2bbcbbffb1b9fa4d84c3a9a12538f5e5bb3add8e_s390x" + }, + "product_reference": "multicluster-engine/agent-service-rhel8@sha256:45e1c82fa7539f32cdaa7eae2bbcbbffb1b9fa4d84c3a9a12538f5e5bb3add8e_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:14c6a7954d75e2d0696fb708500bb0f2db970bedff1843ecdb559183bf079f87_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/apiserver-network-proxy-rhel8@sha256:14c6a7954d75e2d0696fb708500bb0f2db970bedff1843ecdb559183bf079f87_amd64" + }, + "product_reference": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:14c6a7954d75e2d0696fb708500bb0f2db970bedff1843ecdb559183bf079f87_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:2a3fa66f895963d60e39d6e97c3ae63898edff5de70d80fc02e7ab40d932f25f_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/apiserver-network-proxy-rhel8@sha256:2a3fa66f895963d60e39d6e97c3ae63898edff5de70d80fc02e7ab40d932f25f_s390x" + }, + "product_reference": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:2a3fa66f895963d60e39d6e97c3ae63898edff5de70d80fc02e7ab40d932f25f_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:d0e502cdb5f6eaed51e3d21288da0c29fda2d423774371bc2e6cbfc9d77ca902_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/apiserver-network-proxy-rhel8@sha256:d0e502cdb5f6eaed51e3d21288da0c29fda2d423774371bc2e6cbfc9d77ca902_arm64" + }, + "product_reference": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:d0e502cdb5f6eaed51e3d21288da0c29fda2d423774371bc2e6cbfc9d77ca902_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:dcef337b257e8748e65cf4ffb2f8181a8349dc44c4b03027f78e90cc7f822f39_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/apiserver-network-proxy-rhel8@sha256:dcef337b257e8748e65cf4ffb2f8181a8349dc44c4b03027f78e90cc7f822f39_ppc64le" + }, + "product_reference": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:dcef337b257e8748e65cf4ffb2f8181a8349dc44c4b03027f78e90cc7f822f39_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:2d3ec283ffee2f6f026698d0f1eceefd73c0b7ed6d357e178966fe77b6d1d50b_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/assisted-image-service-rhel8@sha256:2d3ec283ffee2f6f026698d0f1eceefd73c0b7ed6d357e178966fe77b6d1d50b_ppc64le" + }, + "product_reference": "multicluster-engine/assisted-image-service-rhel8@sha256:2d3ec283ffee2f6f026698d0f1eceefd73c0b7ed6d357e178966fe77b6d1d50b_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:5adaa639698a26676126cb55d9922c2864e3176e0afefcda6f93e251bff0ee9f_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/assisted-image-service-rhel8@sha256:5adaa639698a26676126cb55d9922c2864e3176e0afefcda6f93e251bff0ee9f_s390x" + }, + "product_reference": "multicluster-engine/assisted-image-service-rhel8@sha256:5adaa639698a26676126cb55d9922c2864e3176e0afefcda6f93e251bff0ee9f_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:a1d7888ec907404a0cd73ad74fcbe56c0992baa63463a27d5c757b9fbf5b12f7_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/assisted-image-service-rhel8@sha256:a1d7888ec907404a0cd73ad74fcbe56c0992baa63463a27d5c757b9fbf5b12f7_arm64" + }, + "product_reference": "multicluster-engine/assisted-image-service-rhel8@sha256:a1d7888ec907404a0cd73ad74fcbe56c0992baa63463a27d5c757b9fbf5b12f7_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:ad9ec504ca8cf5c26a269e3248edb446f3d85fb7a5ba791539647c30895f2b85_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/assisted-image-service-rhel8@sha256:ad9ec504ca8cf5c26a269e3248edb446f3d85fb7a5ba791539647c30895f2b85_amd64" + }, + "product_reference": "multicluster-engine/assisted-image-service-rhel8@sha256:ad9ec504ca8cf5c26a269e3248edb446f3d85fb7a5ba791539647c30895f2b85_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-agent-rhel8@sha256:5d4e73b96c960fe85a6333392f208ae296c709d20c1dafbd49ef590198d69026_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/assisted-installer-agent-rhel8@sha256:5d4e73b96c960fe85a6333392f208ae296c709d20c1dafbd49ef590198d69026_amd64" + }, + "product_reference": "multicluster-engine/assisted-installer-agent-rhel8@sha256:5d4e73b96c960fe85a6333392f208ae296c709d20c1dafbd49ef590198d69026_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-agent-rhel8@sha256:7f4ad3dda21ea85e7c7fb86801ecdf0bfd2616ce600f8e210f5b80e59f6e31ba_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/assisted-installer-agent-rhel8@sha256:7f4ad3dda21ea85e7c7fb86801ecdf0bfd2616ce600f8e210f5b80e59f6e31ba_arm64" + }, + "product_reference": "multicluster-engine/assisted-installer-agent-rhel8@sha256:7f4ad3dda21ea85e7c7fb86801ecdf0bfd2616ce600f8e210f5b80e59f6e31ba_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:4a742bcab0256c709aebdcb5b32a7213e8ff1ad1ca9cb6fd885fd99889ea7ddf_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/assisted-installer-reporter-rhel8@sha256:4a742bcab0256c709aebdcb5b32a7213e8ff1ad1ca9cb6fd885fd99889ea7ddf_ppc64le" + }, + "product_reference": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:4a742bcab0256c709aebdcb5b32a7213e8ff1ad1ca9cb6fd885fd99889ea7ddf_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:a4b2de8bfd2aab93784315ed9f7c416de86ccc2c996d8311130fcccc37ab9f18_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/assisted-installer-reporter-rhel8@sha256:a4b2de8bfd2aab93784315ed9f7c416de86ccc2c996d8311130fcccc37ab9f18_arm64" + }, + "product_reference": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:a4b2de8bfd2aab93784315ed9f7c416de86ccc2c996d8311130fcccc37ab9f18_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:d09a16c1e7eb6f4a547f35a98b0f8c6aaf777c54eea688cf17c52341f7073504_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/assisted-installer-reporter-rhel8@sha256:d09a16c1e7eb6f4a547f35a98b0f8c6aaf777c54eea688cf17c52341f7073504_amd64" + }, + "product_reference": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:d09a16c1e7eb6f4a547f35a98b0f8c6aaf777c54eea688cf17c52341f7073504_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-rhel8@sha256:3dc40ac18f2b151bc4a2cf8f6d71bc75a10d6e48cae31190ef1a7780e733a85e_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/assisted-installer-rhel8@sha256:3dc40ac18f2b151bc4a2cf8f6d71bc75a10d6e48cae31190ef1a7780e733a85e_amd64" + }, + "product_reference": "multicluster-engine/assisted-installer-rhel8@sha256:3dc40ac18f2b151bc4a2cf8f6d71bc75a10d6e48cae31190ef1a7780e733a85e_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-rhel8@sha256:7b1b5cd96995fcc52fcb90e0a8037f428360579fb9d6f3e198963fc5afe28199_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/assisted-installer-rhel8@sha256:7b1b5cd96995fcc52fcb90e0a8037f428360579fb9d6f3e198963fc5afe28199_arm64" + }, + "product_reference": "multicluster-engine/assisted-installer-rhel8@sha256:7b1b5cd96995fcc52fcb90e0a8037f428360579fb9d6f3e198963fc5afe28199_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-rhel8@sha256:d435b5da83e7d1655a3d45e5f0c5d0ee16b50f9bb3ce1f5767b98ad32123a528_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/assisted-installer-rhel8@sha256:d435b5da83e7d1655a3d45e5f0c5d0ee16b50f9bb3ce1f5767b98ad32123a528_ppc64le" + }, + "product_reference": "multicluster-engine/assisted-installer-rhel8@sha256:d435b5da83e7d1655a3d45e5f0c5d0ee16b50f9bb3ce1f5767b98ad32123a528_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:5bbe762813e6d3e6ce486e4ac79152f7fa025b6ae9b50f9d04662a3e43f547d8_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/aws-encryption-provider-rhel8@sha256:5bbe762813e6d3e6ce486e4ac79152f7fa025b6ae9b50f9d04662a3e43f547d8_arm64" + }, + "product_reference": "multicluster-engine/aws-encryption-provider-rhel8@sha256:5bbe762813e6d3e6ce486e4ac79152f7fa025b6ae9b50f9d04662a3e43f547d8_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:94de655701d4d5a151929e026c9a284b4964f95ec957d91d13f8f58f284f2a02_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/aws-encryption-provider-rhel8@sha256:94de655701d4d5a151929e026c9a284b4964f95ec957d91d13f8f58f284f2a02_amd64" + }, + "product_reference": "multicluster-engine/aws-encryption-provider-rhel8@sha256:94de655701d4d5a151929e026c9a284b4964f95ec957d91d13f8f58f284f2a02_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:b0ddf532be9bce73fdecd1939d0495b160ba5e76bdc915dc84fdbfd29223e9b5_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/aws-encryption-provider-rhel8@sha256:b0ddf532be9bce73fdecd1939d0495b160ba5e76bdc915dc84fdbfd29223e9b5_s390x" + }, + "product_reference": "multicluster-engine/aws-encryption-provider-rhel8@sha256:b0ddf532be9bce73fdecd1939d0495b160ba5e76bdc915dc84fdbfd29223e9b5_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:fc9799c161a7c3a0dea38e1137881c6e85695f968b3f2b69e2f2254db8a506a8_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/aws-encryption-provider-rhel8@sha256:fc9799c161a7c3a0dea38e1137881c6e85695f968b3f2b69e2f2254db8a506a8_ppc64le" + }, + "product_reference": "multicluster-engine/aws-encryption-provider-rhel8@sha256:fc9799c161a7c3a0dea38e1137881c6e85695f968b3f2b69e2f2254db8a506a8_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/backplane-rhel8-operator@sha256:346e75af2f8fbf6b1354832d53bcf7b4dfcf5a57f0a74f74b85cc653fb1c4eab_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/backplane-rhel8-operator@sha256:346e75af2f8fbf6b1354832d53bcf7b4dfcf5a57f0a74f74b85cc653fb1c4eab_ppc64le" + }, + "product_reference": "multicluster-engine/backplane-rhel8-operator@sha256:346e75af2f8fbf6b1354832d53bcf7b4dfcf5a57f0a74f74b85cc653fb1c4eab_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/backplane-rhel8-operator@sha256:65c7f69f5d1dd06da4a073d2878585f36c7f392516e045d4e756321e3da9c6b2_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/backplane-rhel8-operator@sha256:65c7f69f5d1dd06da4a073d2878585f36c7f392516e045d4e756321e3da9c6b2_s390x" + }, + "product_reference": "multicluster-engine/backplane-rhel8-operator@sha256:65c7f69f5d1dd06da4a073d2878585f36c7f392516e045d4e756321e3da9c6b2_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/backplane-rhel8-operator@sha256:65fb43b770b378a069cc4a085cfa831582d01776c6100b43b0032762fc6e007f_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/backplane-rhel8-operator@sha256:65fb43b770b378a069cc4a085cfa831582d01776c6100b43b0032762fc6e007f_arm64" + }, + "product_reference": "multicluster-engine/backplane-rhel8-operator@sha256:65fb43b770b378a069cc4a085cfa831582d01776c6100b43b0032762fc6e007f_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/backplane-rhel8-operator@sha256:adaede500462cb062df408292cf33bea8f75152f3538b4c5c2e33b29ff4d2f36_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/backplane-rhel8-operator@sha256:adaede500462cb062df408292cf33bea8f75152f3538b4c5c2e33b29ff4d2f36_amd64" + }, + "product_reference": "multicluster-engine/backplane-rhel8-operator@sha256:adaede500462cb062df408292cf33bea8f75152f3538b4c5c2e33b29ff4d2f36_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:18c5b6c1a503a44ab3efb19e0ffcb88fd42499e056e9e94883bad512f898ba20_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-api-provider-agent-rhel8@sha256:18c5b6c1a503a44ab3efb19e0ffcb88fd42499e056e9e94883bad512f898ba20_amd64" + }, + "product_reference": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:18c5b6c1a503a44ab3efb19e0ffcb88fd42499e056e9e94883bad512f898ba20_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:a8645dae7272a25d3f666d22b673688227a4723af7ff0d0bab1948cd927618a8_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-api-provider-agent-rhel8@sha256:a8645dae7272a25d3f666d22b673688227a4723af7ff0d0bab1948cd927618a8_s390x" + }, + "product_reference": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:a8645dae7272a25d3f666d22b673688227a4723af7ff0d0bab1948cd927618a8_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:d5cbc7dec099676a2893e4d750453d6620971f171a5b20ca3813a69a0b987dfc_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-api-provider-agent-rhel8@sha256:d5cbc7dec099676a2893e4d750453d6620971f171a5b20ca3813a69a0b987dfc_arm64" + }, + "product_reference": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:d5cbc7dec099676a2893e4d750453d6620971f171a5b20ca3813a69a0b987dfc_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:f39c140b644ceaa84993041f052cf1e3059fd05f3f66f125ffe5b9a97cb7b622_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-api-provider-agent-rhel8@sha256:f39c140b644ceaa84993041f052cf1e3059fd05f3f66f125ffe5b9a97cb7b622_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:f39c140b644ceaa84993041f052cf1e3059fd05f3f66f125ffe5b9a97cb7b622_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:05fade3aa91e21858e2dc611d123c3c7219cb3ee3dacc5f4c0af3077ce281553_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-api-provider-aws-rhel8@sha256:05fade3aa91e21858e2dc611d123c3c7219cb3ee3dacc5f4c0af3077ce281553_amd64" + }, + "product_reference": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:05fade3aa91e21858e2dc611d123c3c7219cb3ee3dacc5f4c0af3077ce281553_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:1322ba8da3b4c6aada47c74789e39b78eb51fb4b39b55829aa744f60733a572e_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-api-provider-aws-rhel8@sha256:1322ba8da3b4c6aada47c74789e39b78eb51fb4b39b55829aa744f60733a572e_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:1322ba8da3b4c6aada47c74789e39b78eb51fb4b39b55829aa744f60733a572e_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:75d9f33c8182bdc28f1422856c1f48ab648929b5366bc55671cb851e8b55088f_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-api-provider-aws-rhel8@sha256:75d9f33c8182bdc28f1422856c1f48ab648929b5366bc55671cb851e8b55088f_s390x" + }, + "product_reference": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:75d9f33c8182bdc28f1422856c1f48ab648929b5366bc55671cb851e8b55088f_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:95cdfc1ff2a7424b3ed2705f680008c4aa4c0b2f77faf788357b9c7923988238_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-api-provider-aws-rhel8@sha256:95cdfc1ff2a7424b3ed2705f680008c4aa4c0b2f77faf788357b9c7923988238_arm64" + }, + "product_reference": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:95cdfc1ff2a7424b3ed2705f680008c4aa4c0b2f77faf788357b9c7923988238_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:47a172abec88a6d80dc5f44ac27a860cfdb7cc5b0f9d814436b749c185115199_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-api-provider-azure-rhel8@sha256:47a172abec88a6d80dc5f44ac27a860cfdb7cc5b0f9d814436b749c185115199_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:47a172abec88a6d80dc5f44ac27a860cfdb7cc5b0f9d814436b749c185115199_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:51543e7a7b842bd5aac4b7a18ce5493b1c1b10fd4aa2f616f39b7d3e5f216888_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-api-provider-azure-rhel8@sha256:51543e7a7b842bd5aac4b7a18ce5493b1c1b10fd4aa2f616f39b7d3e5f216888_amd64" + }, + "product_reference": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:51543e7a7b842bd5aac4b7a18ce5493b1c1b10fd4aa2f616f39b7d3e5f216888_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:aaf876d4b2b92e454220cfb6c4a2765f65b85fa16d69fe008017b6096a925da2_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-api-provider-azure-rhel8@sha256:aaf876d4b2b92e454220cfb6c4a2765f65b85fa16d69fe008017b6096a925da2_arm64" + }, + "product_reference": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:aaf876d4b2b92e454220cfb6c4a2765f65b85fa16d69fe008017b6096a925da2_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:c2963d4acdcd7a7e19d231f302b9a438883b661f5299d9a58988d588ef09aff6_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-api-provider-azure-rhel8@sha256:c2963d4acdcd7a7e19d231f302b9a438883b661f5299d9a58988d588ef09aff6_s390x" + }, + "product_reference": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:c2963d4acdcd7a7e19d231f302b9a438883b661f5299d9a58988d588ef09aff6_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:38d3d68d7ec3bcfde0c7bcc26f29bdddcca462e001afc53a7c5879594f2bdab6_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:38d3d68d7ec3bcfde0c7bcc26f29bdddcca462e001afc53a7c5879594f2bdab6_arm64" + }, + "product_reference": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:38d3d68d7ec3bcfde0c7bcc26f29bdddcca462e001afc53a7c5879594f2bdab6_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:4a5663b97f02bd1d43717f34213664b8deb96457256f4a46b4763775f3bfb2a5_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:4a5663b97f02bd1d43717f34213664b8deb96457256f4a46b4763775f3bfb2a5_s390x" + }, + "product_reference": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:4a5663b97f02bd1d43717f34213664b8deb96457256f4a46b4763775f3bfb2a5_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:d44407afb70de690bd9a3735509dded01feca581b8c94596f9f7580eb9e7e872_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:d44407afb70de690bd9a3735509dded01feca581b8c94596f9f7580eb9e7e872_amd64" + }, + "product_reference": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:d44407afb70de690bd9a3735509dded01feca581b8c94596f9f7580eb9e7e872_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:eb3ff1229636b158692969fe66a4beb99193cc11b969c28c85e3f8d8122188c0_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:eb3ff1229636b158692969fe66a4beb99193cc11b969c28c85e3f8d8122188c0_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:eb3ff1229636b158692969fe66a4beb99193cc11b969c28c85e3f8d8122188c0_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-rhel8@sha256:1f8c9f64cf73726f05cef541afe4f977ef68a6119d35a50e019a0565154ac30c_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-api-rhel8@sha256:1f8c9f64cf73726f05cef541afe4f977ef68a6119d35a50e019a0565154ac30c_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-api-rhel8@sha256:1f8c9f64cf73726f05cef541afe4f977ef68a6119d35a50e019a0565154ac30c_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-rhel8@sha256:54dae953271f6bcd3ea7b6452b960c1d11ee87cedfb5292b65f356929b579bad_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-api-rhel8@sha256:54dae953271f6bcd3ea7b6452b960c1d11ee87cedfb5292b65f356929b579bad_amd64" + }, + "product_reference": "multicluster-engine/cluster-api-rhel8@sha256:54dae953271f6bcd3ea7b6452b960c1d11ee87cedfb5292b65f356929b579bad_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-rhel8@sha256:8fc6cc98bf2ff322c5dab7e7242a0b56137f6ca21033f6d726b77b452cd0ccf0_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-api-rhel8@sha256:8fc6cc98bf2ff322c5dab7e7242a0b56137f6ca21033f6d726b77b452cd0ccf0_arm64" + }, + "product_reference": "multicluster-engine/cluster-api-rhel8@sha256:8fc6cc98bf2ff322c5dab7e7242a0b56137f6ca21033f6d726b77b452cd0ccf0_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-rhel8@sha256:a26fc52c717987705005909ab2371925a3c7f2da1cbec99555ec6b5bf97c1798_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-api-rhel8@sha256:a26fc52c717987705005909ab2371925a3c7f2da1cbec99555ec6b5bf97c1798_s390x" + }, + "product_reference": "multicluster-engine/cluster-api-rhel8@sha256:a26fc52c717987705005909ab2371925a3c7f2da1cbec99555ec6b5bf97c1798_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:420aed032aa777b2f107947899f839c39dcb83001779d0a46abdaa1c694036af_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-curator-controller-rhel8@sha256:420aed032aa777b2f107947899f839c39dcb83001779d0a46abdaa1c694036af_amd64" + }, + "product_reference": "multicluster-engine/cluster-curator-controller-rhel8@sha256:420aed032aa777b2f107947899f839c39dcb83001779d0a46abdaa1c694036af_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:44c6ed8b8e28eef583f4e76c4da5aac6fc2d33d0aab932907054b1b8d71d3dd1_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-curator-controller-rhel8@sha256:44c6ed8b8e28eef583f4e76c4da5aac6fc2d33d0aab932907054b1b8d71d3dd1_arm64" + }, + "product_reference": "multicluster-engine/cluster-curator-controller-rhel8@sha256:44c6ed8b8e28eef583f4e76c4da5aac6fc2d33d0aab932907054b1b8d71d3dd1_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:95848d33a2d4b431107c5e7205e9b8a512904922a9834afdc5cbaf7fa9ee76ef_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-curator-controller-rhel8@sha256:95848d33a2d4b431107c5e7205e9b8a512904922a9834afdc5cbaf7fa9ee76ef_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-curator-controller-rhel8@sha256:95848d33a2d4b431107c5e7205e9b8a512904922a9834afdc5cbaf7fa9ee76ef_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:cea9577d6a0feb17a0b282ecf1d0ee017a56e4f2e3fa63f8c6a0cb3a780d3100_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-curator-controller-rhel8@sha256:cea9577d6a0feb17a0b282ecf1d0ee017a56e4f2e3fa63f8c6a0cb3a780d3100_s390x" + }, + "product_reference": "multicluster-engine/cluster-curator-controller-rhel8@sha256:cea9577d6a0feb17a0b282ecf1d0ee017a56e4f2e3fa63f8c6a0cb3a780d3100_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:0c2108e6664dece9014c7be844df5f7725926aaca33d28ed1b9c3a876c19fcfb_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-image-set-controller-rhel8@sha256:0c2108e6664dece9014c7be844df5f7725926aaca33d28ed1b9c3a876c19fcfb_amd64" + }, + "product_reference": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:0c2108e6664dece9014c7be844df5f7725926aaca33d28ed1b9c3a876c19fcfb_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:2c946689b21a8e7c3d1f3dee2fb070becb572954cb20a6e45aee9b132a6c973b_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-image-set-controller-rhel8@sha256:2c946689b21a8e7c3d1f3dee2fb070becb572954cb20a6e45aee9b132a6c973b_arm64" + }, + "product_reference": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:2c946689b21a8e7c3d1f3dee2fb070becb572954cb20a6e45aee9b132a6c973b_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:45981544df19e1839d9a5a638c3c298dc6f3be0aae4cf534b49afee082303b9a_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-image-set-controller-rhel8@sha256:45981544df19e1839d9a5a638c3c298dc6f3be0aae4cf534b49afee082303b9a_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:45981544df19e1839d9a5a638c3c298dc6f3be0aae4cf534b49afee082303b9a_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:c6cf9d0e14388b748791d1610efaa488c319cdb0852544723c51eaf8261aeeb8_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-image-set-controller-rhel8@sha256:c6cf9d0e14388b748791d1610efaa488c319cdb0852544723c51eaf8261aeeb8_s390x" + }, + "product_reference": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:c6cf9d0e14388b748791d1610efaa488c319cdb0852544723c51eaf8261aeeb8_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:649b3d0174a6cf195401d9f649b09169115228eeff6f0ebaacaa86dc746984a2_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-proxy-addon-rhel8@sha256:649b3d0174a6cf195401d9f649b09169115228eeff6f0ebaacaa86dc746984a2_amd64" + }, + "product_reference": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:649b3d0174a6cf195401d9f649b09169115228eeff6f0ebaacaa86dc746984a2_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:71c0034b4a40952491ce1835000365838822ed415c1238a7c6c82dcd0a1ec566_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-proxy-addon-rhel8@sha256:71c0034b4a40952491ce1835000365838822ed415c1238a7c6c82dcd0a1ec566_s390x" + }, + "product_reference": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:71c0034b4a40952491ce1835000365838822ed415c1238a7c6c82dcd0a1ec566_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:d40ad5fac0126a5ca31ab3461f6e9d02214deb66baea8fb7c384c2893af8d15b_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-proxy-addon-rhel8@sha256:d40ad5fac0126a5ca31ab3461f6e9d02214deb66baea8fb7c384c2893af8d15b_arm64" + }, + "product_reference": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:d40ad5fac0126a5ca31ab3461f6e9d02214deb66baea8fb7c384c2893af8d15b_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:fa430f3bb4ca57a9292615561cfc83c87137ad966bf45e19da0d8b0d9601776e_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-proxy-addon-rhel8@sha256:fa430f3bb4ca57a9292615561cfc83c87137ad966bf45e19da0d8b0d9601776e_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:fa430f3bb4ca57a9292615561cfc83c87137ad966bf45e19da0d8b0d9601776e_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:11984055ea5d9528d09f73f1710fac33b4f4944c1d526f6fd7917175346c26c7_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-proxy-rhel8@sha256:11984055ea5d9528d09f73f1710fac33b4f4944c1d526f6fd7917175346c26c7_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-proxy-rhel8@sha256:11984055ea5d9528d09f73f1710fac33b4f4944c1d526f6fd7917175346c26c7_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:8549714610d5acfa02e447172de901d16b9a417597ed8847a86e54c0343e66f8_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-proxy-rhel8@sha256:8549714610d5acfa02e447172de901d16b9a417597ed8847a86e54c0343e66f8_amd64" + }, + "product_reference": "multicluster-engine/cluster-proxy-rhel8@sha256:8549714610d5acfa02e447172de901d16b9a417597ed8847a86e54c0343e66f8_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:aeab55ae47246097d9862b9a531e9992e00972c1f46a46cefdb7d94bb25baf86_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-proxy-rhel8@sha256:aeab55ae47246097d9862b9a531e9992e00972c1f46a46cefdb7d94bb25baf86_s390x" + }, + "product_reference": "multicluster-engine/cluster-proxy-rhel8@sha256:aeab55ae47246097d9862b9a531e9992e00972c1f46a46cefdb7d94bb25baf86_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:ba982b491c35dd40aae02d5a75dd3f898249d8dc2eeceafa445b617b7e6867ea_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/cluster-proxy-rhel8@sha256:ba982b491c35dd40aae02d5a75dd3f898249d8dc2eeceafa445b617b7e6867ea_arm64" + }, + "product_reference": "multicluster-engine/cluster-proxy-rhel8@sha256:ba982b491c35dd40aae02d5a75dd3f898249d8dc2eeceafa445b617b7e6867ea_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:05f170a6a876b15b8ade349f1024f1ba24da091ce3a6037934cfcf3055a18586_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/clusterclaims-controller-rhel8@sha256:05f170a6a876b15b8ade349f1024f1ba24da091ce3a6037934cfcf3055a18586_amd64" + }, + "product_reference": "multicluster-engine/clusterclaims-controller-rhel8@sha256:05f170a6a876b15b8ade349f1024f1ba24da091ce3a6037934cfcf3055a18586_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:ae9c8267b416de8890df4e0fc77a0791b9ac4668fa01c11864b6195108365d83_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/clusterclaims-controller-rhel8@sha256:ae9c8267b416de8890df4e0fc77a0791b9ac4668fa01c11864b6195108365d83_s390x" + }, + "product_reference": "multicluster-engine/clusterclaims-controller-rhel8@sha256:ae9c8267b416de8890df4e0fc77a0791b9ac4668fa01c11864b6195108365d83_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:cc5e46b2b0dcbabca7d963e2cd79231966600e832ad042a977eb7e8e8046a42f_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/clusterclaims-controller-rhel8@sha256:cc5e46b2b0dcbabca7d963e2cd79231966600e832ad042a977eb7e8e8046a42f_arm64" + }, + "product_reference": "multicluster-engine/clusterclaims-controller-rhel8@sha256:cc5e46b2b0dcbabca7d963e2cd79231966600e832ad042a977eb7e8e8046a42f_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:d153eba1230b53540be1d8da5c07816cfbaf43a120f6fa58ae104b633637d435_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/clusterclaims-controller-rhel8@sha256:d153eba1230b53540be1d8da5c07816cfbaf43a120f6fa58ae104b633637d435_ppc64le" + }, + "product_reference": "multicluster-engine/clusterclaims-controller-rhel8@sha256:d153eba1230b53540be1d8da5c07816cfbaf43a120f6fa58ae104b633637d435_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:66179c37d6fb933e5215021278f4a65a4e4647b18697578227221ef64d08d4a2_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:66179c37d6fb933e5215021278f4a65a4e4647b18697578227221ef64d08d4a2_arm64" + }, + "product_reference": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:66179c37d6fb933e5215021278f4a65a4e4647b18697578227221ef64d08d4a2_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:6bdd476aa24ccacf2f3be3c5cd37600501a2379a4668045567d51ce88a839b65_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:6bdd476aa24ccacf2f3be3c5cd37600501a2379a4668045567d51ce88a839b65_s390x" + }, + "product_reference": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:6bdd476aa24ccacf2f3be3c5cd37600501a2379a4668045567d51ce88a839b65_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:c85388a1b41abb429354b989ce01a2065f840da88a38df5c4a6e0c904c03a6b5_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:c85388a1b41abb429354b989ce01a2065f840da88a38df5c4a6e0c904c03a6b5_ppc64le" + }, + "product_reference": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:c85388a1b41abb429354b989ce01a2065f840da88a38df5c4a6e0c904c03a6b5_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:f3d25bf5a3fb0fb8ddfc0ccd5fcd73f9fc533ea2fd7dbeaaa1e557b351421dcf_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:f3d25bf5a3fb0fb8ddfc0ccd5fcd73f9fc533ea2fd7dbeaaa1e557b351421dcf_amd64" + }, + "product_reference": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:f3d25bf5a3fb0fb8ddfc0ccd5fcd73f9fc533ea2fd7dbeaaa1e557b351421dcf_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/console-mce-rhel8@sha256:3e1c00734b635f973d978d0119ccbe944d9d37e63a185765a56db571fc90c7b0_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/console-mce-rhel8@sha256:3e1c00734b635f973d978d0119ccbe944d9d37e63a185765a56db571fc90c7b0_amd64" + }, + "product_reference": "multicluster-engine/console-mce-rhel8@sha256:3e1c00734b635f973d978d0119ccbe944d9d37e63a185765a56db571fc90c7b0_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/console-mce-rhel8@sha256:75ec5b31ec19c6f84ae0557eb16998e71bc85096b3b807d0329608362d8f3102_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/console-mce-rhel8@sha256:75ec5b31ec19c6f84ae0557eb16998e71bc85096b3b807d0329608362d8f3102_arm64" + }, + "product_reference": "multicluster-engine/console-mce-rhel8@sha256:75ec5b31ec19c6f84ae0557eb16998e71bc85096b3b807d0329608362d8f3102_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/console-mce-rhel8@sha256:7d4fa723f9fe34a4520ee6afcddf7586d3066cf64c1733cef5484baa071fba40_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/console-mce-rhel8@sha256:7d4fa723f9fe34a4520ee6afcddf7586d3066cf64c1733cef5484baa071fba40_ppc64le" + }, + "product_reference": "multicluster-engine/console-mce-rhel8@sha256:7d4fa723f9fe34a4520ee6afcddf7586d3066cf64c1733cef5484baa071fba40_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/console-mce-rhel8@sha256:8739fd1b941ccc676330dc8185382ed4bc46b20e55e09ba81b0c9ceb7676b51d_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/console-mce-rhel8@sha256:8739fd1b941ccc676330dc8185382ed4bc46b20e55e09ba81b0c9ceb7676b51d_s390x" + }, + "product_reference": "multicluster-engine/console-mce-rhel8@sha256:8739fd1b941ccc676330dc8185382ed4bc46b20e55e09ba81b0c9ceb7676b51d_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/discovery-rhel8@sha256:564609237b874dd21e9be0424863266f54e25f0f2fb47a4db19a8499283cf25c_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/discovery-rhel8@sha256:564609237b874dd21e9be0424863266f54e25f0f2fb47a4db19a8499283cf25c_arm64" + }, + "product_reference": "multicluster-engine/discovery-rhel8@sha256:564609237b874dd21e9be0424863266f54e25f0f2fb47a4db19a8499283cf25c_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/discovery-rhel8@sha256:bd95d4802f5f77ef3ef521a0824ae61b119bff52d413c89578cab0e53a8c7a38_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/discovery-rhel8@sha256:bd95d4802f5f77ef3ef521a0824ae61b119bff52d413c89578cab0e53a8c7a38_amd64" + }, + "product_reference": "multicluster-engine/discovery-rhel8@sha256:bd95d4802f5f77ef3ef521a0824ae61b119bff52d413c89578cab0e53a8c7a38_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/discovery-rhel8@sha256:c2e21b373c613e68070528232217914db185eff34cf84d5113d9265361b7d316_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/discovery-rhel8@sha256:c2e21b373c613e68070528232217914db185eff34cf84d5113d9265361b7d316_ppc64le" + }, + "product_reference": "multicluster-engine/discovery-rhel8@sha256:c2e21b373c613e68070528232217914db185eff34cf84d5113d9265361b7d316_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/discovery-rhel8@sha256:f68a57bf14a6698a512b65e46c2595bc1c201a2ce7872418f1b06cbcfe55795c_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/discovery-rhel8@sha256:f68a57bf14a6698a512b65e46c2595bc1c201a2ce7872418f1b06cbcfe55795c_s390x" + }, + "product_reference": "multicluster-engine/discovery-rhel8@sha256:f68a57bf14a6698a512b65e46c2595bc1c201a2ce7872418f1b06cbcfe55795c_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hive-rhel8@sha256:57fb135eb11cb93894d629213cede6c4a345fa2b19349b2b6eb66323ba8064ef_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/hive-rhel8@sha256:57fb135eb11cb93894d629213cede6c4a345fa2b19349b2b6eb66323ba8064ef_ppc64le" + }, + "product_reference": "multicluster-engine/hive-rhel8@sha256:57fb135eb11cb93894d629213cede6c4a345fa2b19349b2b6eb66323ba8064ef_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hive-rhel8@sha256:97409c4bf39293827ce3dadf2d0dcc1747f74cd0d5091019de636d0e06957bbb_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/hive-rhel8@sha256:97409c4bf39293827ce3dadf2d0dcc1747f74cd0d5091019de636d0e06957bbb_s390x" + }, + "product_reference": "multicluster-engine/hive-rhel8@sha256:97409c4bf39293827ce3dadf2d0dcc1747f74cd0d5091019de636d0e06957bbb_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hive-rhel8@sha256:f00ebe414e51c2e502c8e254af3c5ae7056a591a4f4da855817dd8e8ad862d83_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/hive-rhel8@sha256:f00ebe414e51c2e502c8e254af3c5ae7056a591a4f4da855817dd8e8ad862d83_amd64" + }, + "product_reference": "multicluster-engine/hive-rhel8@sha256:f00ebe414e51c2e502c8e254af3c5ae7056a591a4f4da855817dd8e8ad862d83_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hive-rhel8@sha256:fa0a2dc0421fd9825a5f64b059826091ade79b73e9523b322c35e7120188b0bb_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/hive-rhel8@sha256:fa0a2dc0421fd9825a5f64b059826091ade79b73e9523b322c35e7120188b0bb_arm64" + }, + "product_reference": "multicluster-engine/hive-rhel8@sha256:fa0a2dc0421fd9825a5f64b059826091ade79b73e9523b322c35e7120188b0bb_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:07ab7148d89dacea0dd1dfda3ee7fc08816d39b08eafe96580ded1c65d6607e8_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/hypershift-addon-rhel8-operator@sha256:07ab7148d89dacea0dd1dfda3ee7fc08816d39b08eafe96580ded1c65d6607e8_s390x" + }, + "product_reference": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:07ab7148d89dacea0dd1dfda3ee7fc08816d39b08eafe96580ded1c65d6607e8_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:9f46121efddfb4acc798adaccfa3ac9428858b43d8adea3efdbf5d7fad73eac3_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/hypershift-addon-rhel8-operator@sha256:9f46121efddfb4acc798adaccfa3ac9428858b43d8adea3efdbf5d7fad73eac3_arm64" + }, + "product_reference": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:9f46121efddfb4acc798adaccfa3ac9428858b43d8adea3efdbf5d7fad73eac3_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:cda585eca14419f3e8ad482e1a6eb021c0ae83c1fec284a7c10787ab13f2de08_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/hypershift-addon-rhel8-operator@sha256:cda585eca14419f3e8ad482e1a6eb021c0ae83c1fec284a7c10787ab13f2de08_amd64" + }, + "product_reference": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:cda585eca14419f3e8ad482e1a6eb021c0ae83c1fec284a7c10787ab13f2de08_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:d7aa0c96bb5d944cf925f4db924c8c10adee84519c45dffefc7898873743821f_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/hypershift-addon-rhel8-operator@sha256:d7aa0c96bb5d944cf925f4db924c8c10adee84519c45dffefc7898873743821f_ppc64le" + }, + "product_reference": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:d7aa0c96bb5d944cf925f4db924c8c10adee84519c45dffefc7898873743821f_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-cli-rhel8@sha256:55f1b4be1efe373833fc57f2cd731834924647973d12cf647984a1856c84b0a8_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/hypershift-cli-rhel8@sha256:55f1b4be1efe373833fc57f2cd731834924647973d12cf647984a1856c84b0a8_ppc64le" + }, + "product_reference": "multicluster-engine/hypershift-cli-rhel8@sha256:55f1b4be1efe373833fc57f2cd731834924647973d12cf647984a1856c84b0a8_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-cli-rhel8@sha256:5c9a19f8feccbacd1d097ac183ee3b4a06f9c277abf1421604c50a3618d00fb5_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/hypershift-cli-rhel8@sha256:5c9a19f8feccbacd1d097ac183ee3b4a06f9c277abf1421604c50a3618d00fb5_s390x" + }, + "product_reference": "multicluster-engine/hypershift-cli-rhel8@sha256:5c9a19f8feccbacd1d097ac183ee3b4a06f9c277abf1421604c50a3618d00fb5_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-cli-rhel8@sha256:92df9df5643072cbe36e075ac6a8d533b7c9736d38e978ab6d8d3207de985ee0_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/hypershift-cli-rhel8@sha256:92df9df5643072cbe36e075ac6a8d533b7c9736d38e978ab6d8d3207de985ee0_arm64" + }, + "product_reference": "multicluster-engine/hypershift-cli-rhel8@sha256:92df9df5643072cbe36e075ac6a8d533b7c9736d38e978ab6d8d3207de985ee0_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-cli-rhel8@sha256:dcbedf06462850300f71e119fd46b7feac182d069c58ab6594d8155c8302d566_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/hypershift-cli-rhel8@sha256:dcbedf06462850300f71e119fd46b7feac182d069c58ab6594d8155c8302d566_amd64" + }, + "product_reference": "multicluster-engine/hypershift-cli-rhel8@sha256:dcbedf06462850300f71e119fd46b7feac182d069c58ab6594d8155c8302d566_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:33c92a8f71f2075967fe9707cafac4705acfd3c7d3dbfc03d44a300d11f8b3c9_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/hypershift-rhel8-operator@sha256:33c92a8f71f2075967fe9707cafac4705acfd3c7d3dbfc03d44a300d11f8b3c9_amd64" + }, + "product_reference": "multicluster-engine/hypershift-rhel8-operator@sha256:33c92a8f71f2075967fe9707cafac4705acfd3c7d3dbfc03d44a300d11f8b3c9_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:9f37612352002537fa14edee1336b710e45786050edeb3c50525ed7123006a88_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/hypershift-rhel8-operator@sha256:9f37612352002537fa14edee1336b710e45786050edeb3c50525ed7123006a88_ppc64le" + }, + "product_reference": "multicluster-engine/hypershift-rhel8-operator@sha256:9f37612352002537fa14edee1336b710e45786050edeb3c50525ed7123006a88_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:bf86b86099bcfa86ab5fe1132498f8f314441408f75217df40a3f17ea7924034_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/hypershift-rhel8-operator@sha256:bf86b86099bcfa86ab5fe1132498f8f314441408f75217df40a3f17ea7924034_s390x" + }, + "product_reference": "multicluster-engine/hypershift-rhel8-operator@sha256:bf86b86099bcfa86ab5fe1132498f8f314441408f75217df40a3f17ea7924034_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:d22a94adcb4df407f1e918178c3aab659a7c40be4ae4d91abb4c8bf77cd50509_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/hypershift-rhel8-operator@sha256:d22a94adcb4df407f1e918178c3aab659a7c40be4ae4d91abb4c8bf77cd50509_arm64" + }, + "product_reference": "multicluster-engine/hypershift-rhel8-operator@sha256:d22a94adcb4df407f1e918178c3aab659a7c40be4ae4d91abb4c8bf77cd50509_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/klusterlet-operator-bundle@sha256:6090d7c88fb7dcc463f80e4a7c86102a411bf32160f6cbbfd55c7daea282bc92_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/klusterlet-operator-bundle@sha256:6090d7c88fb7dcc463f80e4a7c86102a411bf32160f6cbbfd55c7daea282bc92_amd64" + }, + "product_reference": "multicluster-engine/klusterlet-operator-bundle@sha256:6090d7c88fb7dcc463f80e4a7c86102a411bf32160f6cbbfd55c7daea282bc92_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:06291b0360950d5d9552246b4bd8e9c76e6d6701bafbdabeac40c97cd3691fc2_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/managed-serviceaccount-rhel8@sha256:06291b0360950d5d9552246b4bd8e9c76e6d6701bafbdabeac40c97cd3691fc2_s390x" + }, + "product_reference": "multicluster-engine/managed-serviceaccount-rhel8@sha256:06291b0360950d5d9552246b4bd8e9c76e6d6701bafbdabeac40c97cd3691fc2_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:1be91e48d39a89db42a7bcde18e1247e4143d242897b3ac8b0a4bf2980265179_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/managed-serviceaccount-rhel8@sha256:1be91e48d39a89db42a7bcde18e1247e4143d242897b3ac8b0a4bf2980265179_ppc64le" + }, + "product_reference": "multicluster-engine/managed-serviceaccount-rhel8@sha256:1be91e48d39a89db42a7bcde18e1247e4143d242897b3ac8b0a4bf2980265179_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:2105ee5d8e82a1a889551075886ba946f0a5e8186ceb356f5be53ca6cc9caa35_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/managed-serviceaccount-rhel8@sha256:2105ee5d8e82a1a889551075886ba946f0a5e8186ceb356f5be53ca6cc9caa35_arm64" + }, + "product_reference": "multicluster-engine/managed-serviceaccount-rhel8@sha256:2105ee5d8e82a1a889551075886ba946f0a5e8186ceb356f5be53ca6cc9caa35_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:6ab84dc7bcaf2a1b8c58f371547d47292895a5a192d83d52740201341791f2db_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/managed-serviceaccount-rhel8@sha256:6ab84dc7bcaf2a1b8c58f371547d47292895a5a192d83d52740201341791f2db_amd64" + }, + "product_reference": "multicluster-engine/managed-serviceaccount-rhel8@sha256:6ab84dc7bcaf2a1b8c58f371547d47292895a5a192d83d52740201341791f2db_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:5028187dd9145f91cbec4f3a37861abe0a493a1fb95f13506296cc9ff8faba7e_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/managedcluster-import-controller-rhel8@sha256:5028187dd9145f91cbec4f3a37861abe0a493a1fb95f13506296cc9ff8faba7e_arm64" + }, + "product_reference": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:5028187dd9145f91cbec4f3a37861abe0a493a1fb95f13506296cc9ff8faba7e_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:9961cd9e68650d1f430fbfd46db02baee530e7a4104e7b937d594929d31d9538_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/managedcluster-import-controller-rhel8@sha256:9961cd9e68650d1f430fbfd46db02baee530e7a4104e7b937d594929d31d9538_s390x" + }, + "product_reference": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:9961cd9e68650d1f430fbfd46db02baee530e7a4104e7b937d594929d31d9538_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:bbb2386f2ae82f9282877555161ddac8683f80bb95d07ab0333f3ed51f4da0fa_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/managedcluster-import-controller-rhel8@sha256:bbb2386f2ae82f9282877555161ddac8683f80bb95d07ab0333f3ed51f4da0fa_ppc64le" + }, + "product_reference": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:bbb2386f2ae82f9282877555161ddac8683f80bb95d07ab0333f3ed51f4da0fa_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:d5915b27cd5fdb13d56d00d4b94fb58203ba75849c3317a555e222b05239d5f5_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/managedcluster-import-controller-rhel8@sha256:d5915b27cd5fdb13d56d00d4b94fb58203ba75849c3317a555e222b05239d5f5_amd64" + }, + "product_reference": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:d5915b27cd5fdb13d56d00d4b94fb58203ba75849c3317a555e222b05239d5f5_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/mce-operator-bundle@sha256:529ddee9eafb42815b2cec46a3c11e88be6b29ff58142288d77f71557283b304_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/mce-operator-bundle@sha256:529ddee9eafb42815b2cec46a3c11e88be6b29ff58142288d77f71557283b304_s390x" + }, + "product_reference": "multicluster-engine/mce-operator-bundle@sha256:529ddee9eafb42815b2cec46a3c11e88be6b29ff58142288d77f71557283b304_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/mce-operator-bundle@sha256:b2822b32471c38c6384caeb3ea9f47e914d69a6aabd82e50739780a55b5a1110_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/mce-operator-bundle@sha256:b2822b32471c38c6384caeb3ea9f47e914d69a6aabd82e50739780a55b5a1110_amd64" + }, + "product_reference": "multicluster-engine/mce-operator-bundle@sha256:b2822b32471c38c6384caeb3ea9f47e914d69a6aabd82e50739780a55b5a1110_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/mce-operator-bundle@sha256:d54375f38b7d2901ec83e500c79fcf6e21a607bfb753e2ae6107c38f73d2fe9f_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/mce-operator-bundle@sha256:d54375f38b7d2901ec83e500c79fcf6e21a607bfb753e2ae6107c38f73d2fe9f_ppc64le" + }, + "product_reference": "multicluster-engine/mce-operator-bundle@sha256:d54375f38b7d2901ec83e500c79fcf6e21a607bfb753e2ae6107c38f73d2fe9f_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:280ee6148bc42ab88ff483a56be8ac7be390ce7fc2bfb3dfe99b080e292c9dee_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/multicloud-manager-rhel8@sha256:280ee6148bc42ab88ff483a56be8ac7be390ce7fc2bfb3dfe99b080e292c9dee_ppc64le" + }, + "product_reference": "multicluster-engine/multicloud-manager-rhel8@sha256:280ee6148bc42ab88ff483a56be8ac7be390ce7fc2bfb3dfe99b080e292c9dee_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:74837b37294468d77d9ae890c1cdf46f539a2a258553500a396de3b99237e253_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/multicloud-manager-rhel8@sha256:74837b37294468d77d9ae890c1cdf46f539a2a258553500a396de3b99237e253_amd64" + }, + "product_reference": "multicluster-engine/multicloud-manager-rhel8@sha256:74837b37294468d77d9ae890c1cdf46f539a2a258553500a396de3b99237e253_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:c266bdcb42da7bbd4c92e68f462ae42643f8937d4f432ff917e26abb7fbe7a82_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/multicloud-manager-rhel8@sha256:c266bdcb42da7bbd4c92e68f462ae42643f8937d4f432ff917e26abb7fbe7a82_arm64" + }, + "product_reference": "multicluster-engine/multicloud-manager-rhel8@sha256:c266bdcb42da7bbd4c92e68f462ae42643f8937d4f432ff917e26abb7fbe7a82_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:fd788e278c3f96ca45f0b6ef178de9d94c496390e39a89834f8d4747ac992c7b_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/multicloud-manager-rhel8@sha256:fd788e278c3f96ca45f0b6ef178de9d94c496390e39a89834f8d4747ac992c7b_s390x" + }, + "product_reference": "multicluster-engine/multicloud-manager-rhel8@sha256:fd788e278c3f96ca45f0b6ef178de9d94c496390e39a89834f8d4747ac992c7b_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:18c5b6c1a503a44ab3efb19e0ffcb88fd42499e056e9e94883bad512f898ba20_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:18c5b6c1a503a44ab3efb19e0ffcb88fd42499e056e9e94883bad512f898ba20_amd64" + }, + "product_reference": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:18c5b6c1a503a44ab3efb19e0ffcb88fd42499e056e9e94883bad512f898ba20_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:a8645dae7272a25d3f666d22b673688227a4723af7ff0d0bab1948cd927618a8_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:a8645dae7272a25d3f666d22b673688227a4723af7ff0d0bab1948cd927618a8_s390x" + }, + "product_reference": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:a8645dae7272a25d3f666d22b673688227a4723af7ff0d0bab1948cd927618a8_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:d5cbc7dec099676a2893e4d750453d6620971f171a5b20ca3813a69a0b987dfc_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:d5cbc7dec099676a2893e4d750453d6620971f171a5b20ca3813a69a0b987dfc_arm64" + }, + "product_reference": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:d5cbc7dec099676a2893e4d750453d6620971f171a5b20ca3813a69a0b987dfc_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:f39c140b644ceaa84993041f052cf1e3059fd05f3f66f125ffe5b9a97cb7b622_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:f39c140b644ceaa84993041f052cf1e3059fd05f3f66f125ffe5b9a97cb7b622_ppc64le" + }, + "product_reference": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:f39c140b644ceaa84993041f052cf1e3059fd05f3f66f125ffe5b9a97cb7b622_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:3e1c00734b635f973d978d0119ccbe944d9d37e63a185765a56db571fc90c7b0_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:3e1c00734b635f973d978d0119ccbe944d9d37e63a185765a56db571fc90c7b0_amd64" + }, + "product_reference": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:3e1c00734b635f973d978d0119ccbe944d9d37e63a185765a56db571fc90c7b0_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:75ec5b31ec19c6f84ae0557eb16998e71bc85096b3b807d0329608362d8f3102_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:75ec5b31ec19c6f84ae0557eb16998e71bc85096b3b807d0329608362d8f3102_arm64" + }, + "product_reference": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:75ec5b31ec19c6f84ae0557eb16998e71bc85096b3b807d0329608362d8f3102_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:7d4fa723f9fe34a4520ee6afcddf7586d3066cf64c1733cef5484baa071fba40_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:7d4fa723f9fe34a4520ee6afcddf7586d3066cf64c1733cef5484baa071fba40_ppc64le" + }, + "product_reference": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:7d4fa723f9fe34a4520ee6afcddf7586d3066cf64c1733cef5484baa071fba40_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:8739fd1b941ccc676330dc8185382ed4bc46b20e55e09ba81b0c9ceb7676b51d_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:8739fd1b941ccc676330dc8185382ed4bc46b20e55e09ba81b0c9ceb7676b51d_s390x" + }, + "product_reference": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:8739fd1b941ccc676330dc8185382ed4bc46b20e55e09ba81b0c9ceb7676b51d_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:07ab7148d89dacea0dd1dfda3ee7fc08816d39b08eafe96580ded1c65d6607e8_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:07ab7148d89dacea0dd1dfda3ee7fc08816d39b08eafe96580ded1c65d6607e8_s390x" + }, + "product_reference": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:07ab7148d89dacea0dd1dfda3ee7fc08816d39b08eafe96580ded1c65d6607e8_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:9f46121efddfb4acc798adaccfa3ac9428858b43d8adea3efdbf5d7fad73eac3_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:9f46121efddfb4acc798adaccfa3ac9428858b43d8adea3efdbf5d7fad73eac3_arm64" + }, + "product_reference": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:9f46121efddfb4acc798adaccfa3ac9428858b43d8adea3efdbf5d7fad73eac3_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:cda585eca14419f3e8ad482e1a6eb021c0ae83c1fec284a7c10787ab13f2de08_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:cda585eca14419f3e8ad482e1a6eb021c0ae83c1fec284a7c10787ab13f2de08_amd64" + }, + "product_reference": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:cda585eca14419f3e8ad482e1a6eb021c0ae83c1fec284a7c10787ab13f2de08_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:d7aa0c96bb5d944cf925f4db924c8c10adee84519c45dffefc7898873743821f_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:d7aa0c96bb5d944cf925f4db924c8c10adee84519c45dffefc7898873743821f_ppc64le" + }, + "product_reference": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:d7aa0c96bb5d944cf925f4db924c8c10adee84519c45dffefc7898873743821f_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:06291b0360950d5d9552246b4bd8e9c76e6d6701bafbdabeac40c97cd3691fc2_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:06291b0360950d5d9552246b4bd8e9c76e6d6701bafbdabeac40c97cd3691fc2_s390x" + }, + "product_reference": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:06291b0360950d5d9552246b4bd8e9c76e6d6701bafbdabeac40c97cd3691fc2_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:1be91e48d39a89db42a7bcde18e1247e4143d242897b3ac8b0a4bf2980265179_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:1be91e48d39a89db42a7bcde18e1247e4143d242897b3ac8b0a4bf2980265179_ppc64le" + }, + "product_reference": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:1be91e48d39a89db42a7bcde18e1247e4143d242897b3ac8b0a4bf2980265179_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:2105ee5d8e82a1a889551075886ba946f0a5e8186ceb356f5be53ca6cc9caa35_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:2105ee5d8e82a1a889551075886ba946f0a5e8186ceb356f5be53ca6cc9caa35_arm64" + }, + "product_reference": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:2105ee5d8e82a1a889551075886ba946f0a5e8186ceb356f5be53ca6cc9caa35_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:6ab84dc7bcaf2a1b8c58f371547d47292895a5a192d83d52740201341791f2db_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:6ab84dc7bcaf2a1b8c58f371547d47292895a5a192d83d52740201341791f2db_amd64" + }, + "product_reference": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:6ab84dc7bcaf2a1b8c58f371547d47292895a5a192d83d52740201341791f2db_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/must-gather-rhel8@sha256:7af7515cbcb9d0a9d0642ee0a4073a6fcc3ea4ed30b074cbf275498c2d38d030_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/must-gather-rhel8@sha256:7af7515cbcb9d0a9d0642ee0a4073a6fcc3ea4ed30b074cbf275498c2d38d030_amd64" + }, + "product_reference": "multicluster-engine/must-gather-rhel8@sha256:7af7515cbcb9d0a9d0642ee0a4073a6fcc3ea4ed30b074cbf275498c2d38d030_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/must-gather-rhel8@sha256:837a264de600671af8e6b329a0d1aedf76865d125678d1e1b9fe7f6212a8d2e9_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/must-gather-rhel8@sha256:837a264de600671af8e6b329a0d1aedf76865d125678d1e1b9fe7f6212a8d2e9_s390x" + }, + "product_reference": "multicluster-engine/must-gather-rhel8@sha256:837a264de600671af8e6b329a0d1aedf76865d125678d1e1b9fe7f6212a8d2e9_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/must-gather-rhel8@sha256:a4a9ccf8f597f6b1dcdbf29247b9440f3623e23cfe49411999ea684d11ca11aa_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/must-gather-rhel8@sha256:a4a9ccf8f597f6b1dcdbf29247b9440f3623e23cfe49411999ea684d11ca11aa_arm64" + }, + "product_reference": "multicluster-engine/must-gather-rhel8@sha256:a4a9ccf8f597f6b1dcdbf29247b9440f3623e23cfe49411999ea684d11ca11aa_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/must-gather-rhel8@sha256:c91154ced307f3421a95d55929a0b3f09b7ba6acb1a503d3b0931e5d57f5479e_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/must-gather-rhel8@sha256:c91154ced307f3421a95d55929a0b3f09b7ba6acb1a503d3b0931e5d57f5479e_ppc64le" + }, + "product_reference": "multicluster-engine/must-gather-rhel8@sha256:c91154ced307f3421a95d55929a0b3f09b7ba6acb1a503d3b0931e5d57f5479e_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/placement-rhel8@sha256:1d2e06b13bd0cdbd7b4f11e6a48276a466e90023372253639ad1859c58c9d18c_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/placement-rhel8@sha256:1d2e06b13bd0cdbd7b4f11e6a48276a466e90023372253639ad1859c58c9d18c_arm64" + }, + "product_reference": "multicluster-engine/placement-rhel8@sha256:1d2e06b13bd0cdbd7b4f11e6a48276a466e90023372253639ad1859c58c9d18c_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/placement-rhel8@sha256:6804525adea26731c11273197582172c30e51e54bca0be3791444b518014557f_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/placement-rhel8@sha256:6804525adea26731c11273197582172c30e51e54bca0be3791444b518014557f_ppc64le" + }, + "product_reference": "multicluster-engine/placement-rhel8@sha256:6804525adea26731c11273197582172c30e51e54bca0be3791444b518014557f_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/placement-rhel8@sha256:a5d1f477b81c23606e8f64abaa3c1fc2b433f68bdeb869850d015f2d63fc7c13_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/placement-rhel8@sha256:a5d1f477b81c23606e8f64abaa3c1fc2b433f68bdeb869850d015f2d63fc7c13_s390x" + }, + "product_reference": "multicluster-engine/placement-rhel8@sha256:a5d1f477b81c23606e8f64abaa3c1fc2b433f68bdeb869850d015f2d63fc7c13_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/placement-rhel8@sha256:fd382d8b4bdd3bde7935e5ad02b6cc36055891b01bb284a30dfe3de155b5a603_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/placement-rhel8@sha256:fd382d8b4bdd3bde7935e5ad02b6cc36055891b01bb284a30dfe3de155b5a603_amd64" + }, + "product_reference": "multicluster-engine/placement-rhel8@sha256:fd382d8b4bdd3bde7935e5ad02b6cc36055891b01bb284a30dfe3de155b5a603_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:20151e8fecc49374a948366083ec02e2efaba84a84a7d3af7757e7e8709ffbcd_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/provider-credential-controller-rhel8@sha256:20151e8fecc49374a948366083ec02e2efaba84a84a7d3af7757e7e8709ffbcd_ppc64le" + }, + "product_reference": "multicluster-engine/provider-credential-controller-rhel8@sha256:20151e8fecc49374a948366083ec02e2efaba84a84a7d3af7757e7e8709ffbcd_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:52b07f6cc6418fe26c63f8878fa842270a33f6dbc95385b3e6163786a1b67a16_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/provider-credential-controller-rhel8@sha256:52b07f6cc6418fe26c63f8878fa842270a33f6dbc95385b3e6163786a1b67a16_amd64" + }, + "product_reference": "multicluster-engine/provider-credential-controller-rhel8@sha256:52b07f6cc6418fe26c63f8878fa842270a33f6dbc95385b3e6163786a1b67a16_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:8536216f0f019a29af598f5788c193986c5cde4d3f55fcc9f59646a38be430c8_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/provider-credential-controller-rhel8@sha256:8536216f0f019a29af598f5788c193986c5cde4d3f55fcc9f59646a38be430c8_s390x" + }, + "product_reference": "multicluster-engine/provider-credential-controller-rhel8@sha256:8536216f0f019a29af598f5788c193986c5cde4d3f55fcc9f59646a38be430c8_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:e7dc21f124fba54882801cfbebc09fdc945d821e99aaed443aa179d6f6f1c9ab_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/provider-credential-controller-rhel8@sha256:e7dc21f124fba54882801cfbebc09fdc945d821e99aaed443aa179d6f6f1c9ab_arm64" + }, + "product_reference": "multicluster-engine/provider-credential-controller-rhel8@sha256:e7dc21f124fba54882801cfbebc09fdc945d821e99aaed443aa179d6f6f1c9ab_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/registration-operator-rhel8@sha256:4387e1f13d5ac8139fc6ec926b872b36335b5d422a886d9f129d9493292c560c_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/registration-operator-rhel8@sha256:4387e1f13d5ac8139fc6ec926b872b36335b5d422a886d9f129d9493292c560c_ppc64le" + }, + "product_reference": "multicluster-engine/registration-operator-rhel8@sha256:4387e1f13d5ac8139fc6ec926b872b36335b5d422a886d9f129d9493292c560c_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/registration-operator-rhel8@sha256:8d91147a2b462965ebaa22a219450ba4e88cfb8f1c9d5b7bf35c45c98aceafcb_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/registration-operator-rhel8@sha256:8d91147a2b462965ebaa22a219450ba4e88cfb8f1c9d5b7bf35c45c98aceafcb_arm64" + }, + "product_reference": "multicluster-engine/registration-operator-rhel8@sha256:8d91147a2b462965ebaa22a219450ba4e88cfb8f1c9d5b7bf35c45c98aceafcb_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/registration-operator-rhel8@sha256:c4adb05602711d00caa49eff2063843ebb1ead9de59bb0f8713d8505002b21e2_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/registration-operator-rhel8@sha256:c4adb05602711d00caa49eff2063843ebb1ead9de59bb0f8713d8505002b21e2_amd64" + }, + "product_reference": "multicluster-engine/registration-operator-rhel8@sha256:c4adb05602711d00caa49eff2063843ebb1ead9de59bb0f8713d8505002b21e2_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/registration-operator-rhel8@sha256:ef58d8acde73b203f92a8d09db4909ae0d29f4968911fad8bf2855ba6d24734a_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/registration-operator-rhel8@sha256:ef58d8acde73b203f92a8d09db4909ae0d29f4968911fad8bf2855ba6d24734a_s390x" + }, + "product_reference": "multicluster-engine/registration-operator-rhel8@sha256:ef58d8acde73b203f92a8d09db4909ae0d29f4968911fad8bf2855ba6d24734a_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/registration-rhel8@sha256:4d3be051fb0829f0a36616c70041ec8eab701ae327b2298244a3cccd729a7040_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/registration-rhel8@sha256:4d3be051fb0829f0a36616c70041ec8eab701ae327b2298244a3cccd729a7040_arm64" + }, + "product_reference": "multicluster-engine/registration-rhel8@sha256:4d3be051fb0829f0a36616c70041ec8eab701ae327b2298244a3cccd729a7040_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/registration-rhel8@sha256:53dd2682b25c39c5409c610d540bd4b6262aec171d27147703bd1b7f95e04915_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/registration-rhel8@sha256:53dd2682b25c39c5409c610d540bd4b6262aec171d27147703bd1b7f95e04915_s390x" + }, + "product_reference": "multicluster-engine/registration-rhel8@sha256:53dd2682b25c39c5409c610d540bd4b6262aec171d27147703bd1b7f95e04915_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/registration-rhel8@sha256:d8f7c496c4eb82a5cc011d96ee634d4d59ab722fe9e757dfad14e4028207e9dc_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/registration-rhel8@sha256:d8f7c496c4eb82a5cc011d96ee634d4d59ab722fe9e757dfad14e4028207e9dc_ppc64le" + }, + "product_reference": "multicluster-engine/registration-rhel8@sha256:d8f7c496c4eb82a5cc011d96ee634d4d59ab722fe9e757dfad14e4028207e9dc_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/registration-rhel8@sha256:f6e7d1c75af32e5f17ed381a72ca2175e592a0335cc0fdb5f93e88ec4131b3ef_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/registration-rhel8@sha256:f6e7d1c75af32e5f17ed381a72ca2175e592a0335cc0fdb5f93e88ec4131b3ef_amd64" + }, + "product_reference": "multicluster-engine/registration-rhel8@sha256:f6e7d1c75af32e5f17ed381a72ca2175e592a0335cc0fdb5f93e88ec4131b3ef_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/work-rhel8@sha256:599e0cd4f185adcd520da278bb548b7380020f92d9fbc7149a342fb34ef88f81_arm64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/work-rhel8@sha256:599e0cd4f185adcd520da278bb548b7380020f92d9fbc7149a342fb34ef88f81_arm64" + }, + "product_reference": "multicluster-engine/work-rhel8@sha256:599e0cd4f185adcd520da278bb548b7380020f92d9fbc7149a342fb34ef88f81_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/work-rhel8@sha256:63ce281389b1d6398188bb0baf2d64c02dd9472091a3d9767c3261289704e54d_amd64 as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/work-rhel8@sha256:63ce281389b1d6398188bb0baf2d64c02dd9472091a3d9767c3261289704e54d_amd64" + }, + "product_reference": "multicluster-engine/work-rhel8@sha256:63ce281389b1d6398188bb0baf2d64c02dd9472091a3d9767c3261289704e54d_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/work-rhel8@sha256:70d849a1d75a9fe97db7cdbd3281546f22aa3801cbc4fc96117a4a4ba441ac41_s390x as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/work-rhel8@sha256:70d849a1d75a9fe97db7cdbd3281546f22aa3801cbc4fc96117a4a4ba441ac41_s390x" + }, + "product_reference": "multicluster-engine/work-rhel8@sha256:70d849a1d75a9fe97db7cdbd3281546f22aa3801cbc4fc96117a4a4ba441ac41_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/work-rhel8@sha256:d051b848bdd49f506ad5f96c9dd21d1ef314c598cb35f113dc2ad23dc9c2ff52_ppc64le as a component of multicluster engine for Kubernetes 2.2 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.2:multicluster-engine/work-rhel8@sha256:d051b848bdd49f506ad5f96c9dd21d1ef314c598cb35f113dc2ad23dc9c2ff52_ppc64le" + }, + "product_reference": "multicluster-engine/work-rhel8@sha256:d051b848bdd49f506ad5f96c9dd21d1ef314c598cb35f113dc2ad23dc9c2ff52_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/addon-manager-rhel8@sha256:50cad933417e6636796fbad40c2ce2356d546a06ea6831a81857e5188223ad64_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/addon-manager-rhel8@sha256:50cad933417e6636796fbad40c2ce2356d546a06ea6831a81857e5188223ad64_amd64" + }, + "product_reference": "multicluster-engine/addon-manager-rhel8@sha256:50cad933417e6636796fbad40c2ce2356d546a06ea6831a81857e5188223ad64_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/addon-manager-rhel8@sha256:730b8af24bdd4d1a1ebdfbc78b95681ba406ce826a9dc6c987bf1de7747d31b2_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/addon-manager-rhel8@sha256:730b8af24bdd4d1a1ebdfbc78b95681ba406ce826a9dc6c987bf1de7747d31b2_ppc64le" + }, + "product_reference": "multicluster-engine/addon-manager-rhel8@sha256:730b8af24bdd4d1a1ebdfbc78b95681ba406ce826a9dc6c987bf1de7747d31b2_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/addon-manager-rhel8@sha256:bdf0b6e5e4fc8c88f16ab409325219c845d1c21a7473fa6943e733345faf8a93_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/addon-manager-rhel8@sha256:bdf0b6e5e4fc8c88f16ab409325219c845d1c21a7473fa6943e733345faf8a93_s390x" + }, + "product_reference": "multicluster-engine/addon-manager-rhel8@sha256:bdf0b6e5e4fc8c88f16ab409325219c845d1c21a7473fa6943e733345faf8a93_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/addon-manager-rhel8@sha256:f76dcedc1a8a5e44c022f86d4d425ddecf7265ca991fb8d91e0843c222f3683d_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/addon-manager-rhel8@sha256:f76dcedc1a8a5e44c022f86d4d425ddecf7265ca991fb8d91e0843c222f3683d_arm64" + }, + "product_reference": "multicluster-engine/addon-manager-rhel8@sha256:f76dcedc1a8a5e44c022f86d4d425ddecf7265ca991fb8d91e0843c222f3683d_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/agent-service-rhel8@sha256:0110d6aa2228b04270771da207d22fc1619abe2c69c5eaf3db8afa7ab989f082_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/agent-service-rhel8@sha256:0110d6aa2228b04270771da207d22fc1619abe2c69c5eaf3db8afa7ab989f082_s390x" + }, + "product_reference": "multicluster-engine/agent-service-rhel8@sha256:0110d6aa2228b04270771da207d22fc1619abe2c69c5eaf3db8afa7ab989f082_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/agent-service-rhel8@sha256:6dd6c5d41ce67926b4fab265258afad6cf313788bc66ba2e03c1d7312f2122e9_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/agent-service-rhel8@sha256:6dd6c5d41ce67926b4fab265258afad6cf313788bc66ba2e03c1d7312f2122e9_amd64" + }, + "product_reference": "multicluster-engine/agent-service-rhel8@sha256:6dd6c5d41ce67926b4fab265258afad6cf313788bc66ba2e03c1d7312f2122e9_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/agent-service-rhel8@sha256:74741601c7dbf528798340b4c0e12660c24625870ca9dec9db013dac8e4be600_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/agent-service-rhel8@sha256:74741601c7dbf528798340b4c0e12660c24625870ca9dec9db013dac8e4be600_ppc64le" + }, + "product_reference": "multicluster-engine/agent-service-rhel8@sha256:74741601c7dbf528798340b4c0e12660c24625870ca9dec9db013dac8e4be600_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/agent-service-rhel8@sha256:f756a04cc55a7c21ea1c4251e83e9d7a65a3501989bcd705395f5a19e0c47586_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/agent-service-rhel8@sha256:f756a04cc55a7c21ea1c4251e83e9d7a65a3501989bcd705395f5a19e0c47586_arm64" + }, + "product_reference": "multicluster-engine/agent-service-rhel8@sha256:f756a04cc55a7c21ea1c4251e83e9d7a65a3501989bcd705395f5a19e0c47586_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:6a66f0c16c0688e2ba9dbd6c7bc6953aa06267e6d31974398dd3a49ca2d8724a_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/apiserver-network-proxy-rhel8@sha256:6a66f0c16c0688e2ba9dbd6c7bc6953aa06267e6d31974398dd3a49ca2d8724a_ppc64le" + }, + "product_reference": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:6a66f0c16c0688e2ba9dbd6c7bc6953aa06267e6d31974398dd3a49ca2d8724a_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:83354fd2be20965f92188b485bbc8675b79133334eedc7b4c5b22cf6242081b7_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/apiserver-network-proxy-rhel8@sha256:83354fd2be20965f92188b485bbc8675b79133334eedc7b4c5b22cf6242081b7_amd64" + }, + "product_reference": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:83354fd2be20965f92188b485bbc8675b79133334eedc7b4c5b22cf6242081b7_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:b4f8fa2b6fb601cf5c88a480ed2f336e49e7b6b804f1223cf65b195d11d217ee_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/apiserver-network-proxy-rhel8@sha256:b4f8fa2b6fb601cf5c88a480ed2f336e49e7b6b804f1223cf65b195d11d217ee_arm64" + }, + "product_reference": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:b4f8fa2b6fb601cf5c88a480ed2f336e49e7b6b804f1223cf65b195d11d217ee_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:d740e67a764c1f17449889a3907c606118c833420a4ec562946068753939553e_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/apiserver-network-proxy-rhel8@sha256:d740e67a764c1f17449889a3907c606118c833420a4ec562946068753939553e_s390x" + }, + "product_reference": "multicluster-engine/apiserver-network-proxy-rhel8@sha256:d740e67a764c1f17449889a3907c606118c833420a4ec562946068753939553e_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:16d31314a4c46c4872edfd3e49aa2eb32ec6aa68788646701c6a2bfecfb03f3d_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/assisted-image-service-rhel8@sha256:16d31314a4c46c4872edfd3e49aa2eb32ec6aa68788646701c6a2bfecfb03f3d_amd64" + }, + "product_reference": "multicluster-engine/assisted-image-service-rhel8@sha256:16d31314a4c46c4872edfd3e49aa2eb32ec6aa68788646701c6a2bfecfb03f3d_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:292422be5e0ab3ef1fd5743e9bcec4350ac330defb99ae0b7cd3eb0d4ab8dca4_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/assisted-image-service-rhel8@sha256:292422be5e0ab3ef1fd5743e9bcec4350ac330defb99ae0b7cd3eb0d4ab8dca4_arm64" + }, + "product_reference": "multicluster-engine/assisted-image-service-rhel8@sha256:292422be5e0ab3ef1fd5743e9bcec4350ac330defb99ae0b7cd3eb0d4ab8dca4_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:4f2c40442aa58b5e844ffff411ead3740e60fdb467b7f24a6c675f1f649f7fd9_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/assisted-image-service-rhel8@sha256:4f2c40442aa58b5e844ffff411ead3740e60fdb467b7f24a6c675f1f649f7fd9_s390x" + }, + "product_reference": "multicluster-engine/assisted-image-service-rhel8@sha256:4f2c40442aa58b5e844ffff411ead3740e60fdb467b7f24a6c675f1f649f7fd9_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-image-service-rhel8@sha256:5550a048a3a947d5c6dde948aa14349fafb4e795a17f60671ed4e060eea84cea_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/assisted-image-service-rhel8@sha256:5550a048a3a947d5c6dde948aa14349fafb4e795a17f60671ed4e060eea84cea_ppc64le" + }, + "product_reference": "multicluster-engine/assisted-image-service-rhel8@sha256:5550a048a3a947d5c6dde948aa14349fafb4e795a17f60671ed4e060eea84cea_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-agent-rhel8@sha256:246e288b05a8ccd5bd89e2d58673993e879aa371a84ae1fa212c11938d949c18_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/assisted-installer-agent-rhel8@sha256:246e288b05a8ccd5bd89e2d58673993e879aa371a84ae1fa212c11938d949c18_arm64" + }, + "product_reference": "multicluster-engine/assisted-installer-agent-rhel8@sha256:246e288b05a8ccd5bd89e2d58673993e879aa371a84ae1fa212c11938d949c18_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-agent-rhel8@sha256:2a987bcd6adf5c52afdd56d79a28c5efb7349ccd83da2d5badd0e45a2896f078_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/assisted-installer-agent-rhel8@sha256:2a987bcd6adf5c52afdd56d79a28c5efb7349ccd83da2d5badd0e45a2896f078_s390x" + }, + "product_reference": "multicluster-engine/assisted-installer-agent-rhel8@sha256:2a987bcd6adf5c52afdd56d79a28c5efb7349ccd83da2d5badd0e45a2896f078_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-agent-rhel8@sha256:52bb6504a93c65a761700a787768797a04bb9f0199e20ab6eb3247b604347c35_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/assisted-installer-agent-rhel8@sha256:52bb6504a93c65a761700a787768797a04bb9f0199e20ab6eb3247b604347c35_amd64" + }, + "product_reference": "multicluster-engine/assisted-installer-agent-rhel8@sha256:52bb6504a93c65a761700a787768797a04bb9f0199e20ab6eb3247b604347c35_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-agent-rhel8@sha256:703c586bfcd91b783521d828a1e415ffd79d9ecbb319d9e8b8c2735025147eda_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/assisted-installer-agent-rhel8@sha256:703c586bfcd91b783521d828a1e415ffd79d9ecbb319d9e8b8c2735025147eda_ppc64le" + }, + "product_reference": "multicluster-engine/assisted-installer-agent-rhel8@sha256:703c586bfcd91b783521d828a1e415ffd79d9ecbb319d9e8b8c2735025147eda_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:327a162bc47703f4b9bd62849ee92db630b17770b554ca6a896efdd0b7f3a4a9_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/assisted-installer-reporter-rhel8@sha256:327a162bc47703f4b9bd62849ee92db630b17770b554ca6a896efdd0b7f3a4a9_s390x" + }, + "product_reference": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:327a162bc47703f4b9bd62849ee92db630b17770b554ca6a896efdd0b7f3a4a9_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:cb3f0e48c9abe3ac082a3ed0f8b4772db42b25b071dd25992726dede11801512_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/assisted-installer-reporter-rhel8@sha256:cb3f0e48c9abe3ac082a3ed0f8b4772db42b25b071dd25992726dede11801512_ppc64le" + }, + "product_reference": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:cb3f0e48c9abe3ac082a3ed0f8b4772db42b25b071dd25992726dede11801512_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:cdf55c7fdccf55e0630c8d3d45be6babad89986390341d211d128d8f4ef8d767_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/assisted-installer-reporter-rhel8@sha256:cdf55c7fdccf55e0630c8d3d45be6babad89986390341d211d128d8f4ef8d767_arm64" + }, + "product_reference": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:cdf55c7fdccf55e0630c8d3d45be6babad89986390341d211d128d8f4ef8d767_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:e4a81f4e68b52bea9e615e15037e2a486c21d08a6011ba7188999534ee88f6cd_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/assisted-installer-reporter-rhel8@sha256:e4a81f4e68b52bea9e615e15037e2a486c21d08a6011ba7188999534ee88f6cd_amd64" + }, + "product_reference": "multicluster-engine/assisted-installer-reporter-rhel8@sha256:e4a81f4e68b52bea9e615e15037e2a486c21d08a6011ba7188999534ee88f6cd_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-rhel8@sha256:3afb896280894beb97ecc70cecb60da8f4059601f00fa975fad9f67c9cbf9450_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/assisted-installer-rhel8@sha256:3afb896280894beb97ecc70cecb60da8f4059601f00fa975fad9f67c9cbf9450_arm64" + }, + "product_reference": "multicluster-engine/assisted-installer-rhel8@sha256:3afb896280894beb97ecc70cecb60da8f4059601f00fa975fad9f67c9cbf9450_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-rhel8@sha256:b013de5b2b48b8abe4bea8e696398d5a0ae2fc6a9bb3f3e82f413933ba70e764_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/assisted-installer-rhel8@sha256:b013de5b2b48b8abe4bea8e696398d5a0ae2fc6a9bb3f3e82f413933ba70e764_s390x" + }, + "product_reference": "multicluster-engine/assisted-installer-rhel8@sha256:b013de5b2b48b8abe4bea8e696398d5a0ae2fc6a9bb3f3e82f413933ba70e764_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-rhel8@sha256:c431a1b29e246382e2ab246289932719969befadb09493ddd0d654784bcf6317_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/assisted-installer-rhel8@sha256:c431a1b29e246382e2ab246289932719969befadb09493ddd0d654784bcf6317_ppc64le" + }, + "product_reference": "multicluster-engine/assisted-installer-rhel8@sha256:c431a1b29e246382e2ab246289932719969befadb09493ddd0d654784bcf6317_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/assisted-installer-rhel8@sha256:e22ef482c3b0b5ef3b32873b3e53743d1c24f5353f06a071848b74cc6e232fbd_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/assisted-installer-rhel8@sha256:e22ef482c3b0b5ef3b32873b3e53743d1c24f5353f06a071848b74cc6e232fbd_amd64" + }, + "product_reference": "multicluster-engine/assisted-installer-rhel8@sha256:e22ef482c3b0b5ef3b32873b3e53743d1c24f5353f06a071848b74cc6e232fbd_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:4884be49b5402618e23bd18b1d5d2bb90b2ecfed1681a590463437c84b65dba7_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/aws-encryption-provider-rhel8@sha256:4884be49b5402618e23bd18b1d5d2bb90b2ecfed1681a590463437c84b65dba7_ppc64le" + }, + "product_reference": "multicluster-engine/aws-encryption-provider-rhel8@sha256:4884be49b5402618e23bd18b1d5d2bb90b2ecfed1681a590463437c84b65dba7_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:ae6bd88c083e6e2ccbfe927a6f79068fbf9630f1b217352d29a588aa9e8bd0c7_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/aws-encryption-provider-rhel8@sha256:ae6bd88c083e6e2ccbfe927a6f79068fbf9630f1b217352d29a588aa9e8bd0c7_s390x" + }, + "product_reference": "multicluster-engine/aws-encryption-provider-rhel8@sha256:ae6bd88c083e6e2ccbfe927a6f79068fbf9630f1b217352d29a588aa9e8bd0c7_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:c54d8e74b8468c6c1b2dfbf924933b4324304102431e8319c33c943ce5714a0a_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/aws-encryption-provider-rhel8@sha256:c54d8e74b8468c6c1b2dfbf924933b4324304102431e8319c33c943ce5714a0a_amd64" + }, + "product_reference": "multicluster-engine/aws-encryption-provider-rhel8@sha256:c54d8e74b8468c6c1b2dfbf924933b4324304102431e8319c33c943ce5714a0a_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/aws-encryption-provider-rhel8@sha256:cf23e1048915774fe0ca1843335c4e3eed8a37fd516def47cbad8bfd88f65672_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/aws-encryption-provider-rhel8@sha256:cf23e1048915774fe0ca1843335c4e3eed8a37fd516def47cbad8bfd88f65672_arm64" + }, + "product_reference": "multicluster-engine/aws-encryption-provider-rhel8@sha256:cf23e1048915774fe0ca1843335c4e3eed8a37fd516def47cbad8bfd88f65672_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/backplane-rhel8-operator@sha256:1add29c07989c250a4a6c35445c7524ed74a142d2ba5457575055b77a2581f51_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/backplane-rhel8-operator@sha256:1add29c07989c250a4a6c35445c7524ed74a142d2ba5457575055b77a2581f51_ppc64le" + }, + "product_reference": "multicluster-engine/backplane-rhel8-operator@sha256:1add29c07989c250a4a6c35445c7524ed74a142d2ba5457575055b77a2581f51_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/backplane-rhel8-operator@sha256:401558fa766d90a9c43f7fbce1a9a9afa315341e06d93bc4ea03300099e36612_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/backplane-rhel8-operator@sha256:401558fa766d90a9c43f7fbce1a9a9afa315341e06d93bc4ea03300099e36612_arm64" + }, + "product_reference": "multicluster-engine/backplane-rhel8-operator@sha256:401558fa766d90a9c43f7fbce1a9a9afa315341e06d93bc4ea03300099e36612_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/backplane-rhel8-operator@sha256:5b74e83d82f67cf477a27ee9aab2c1669ab97bcbd9a4575f30181886e4f1341e_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/backplane-rhel8-operator@sha256:5b74e83d82f67cf477a27ee9aab2c1669ab97bcbd9a4575f30181886e4f1341e_s390x" + }, + "product_reference": "multicluster-engine/backplane-rhel8-operator@sha256:5b74e83d82f67cf477a27ee9aab2c1669ab97bcbd9a4575f30181886e4f1341e_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/backplane-rhel8-operator@sha256:a5b44837a8d24819f0b9c497fd8734a55dc36c5ce3972e8f530496503e6afc45_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/backplane-rhel8-operator@sha256:a5b44837a8d24819f0b9c497fd8734a55dc36c5ce3972e8f530496503e6afc45_amd64" + }, + "product_reference": "multicluster-engine/backplane-rhel8-operator@sha256:a5b44837a8d24819f0b9c497fd8734a55dc36c5ce3972e8f530496503e6afc45_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:054c686d0a22bf88c5ea9d3093d446212101142a83d055b5c2ef9ff9e0339f40_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-api-provider-agent-rhel8@sha256:054c686d0a22bf88c5ea9d3093d446212101142a83d055b5c2ef9ff9e0339f40_arm64" + }, + "product_reference": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:054c686d0a22bf88c5ea9d3093d446212101142a83d055b5c2ef9ff9e0339f40_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:6aa6df5b334170f4151aedd2d5e19fe5f0ee0e0c81a4c266690e4eeac98863ac_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-api-provider-agent-rhel8@sha256:6aa6df5b334170f4151aedd2d5e19fe5f0ee0e0c81a4c266690e4eeac98863ac_amd64" + }, + "product_reference": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:6aa6df5b334170f4151aedd2d5e19fe5f0ee0e0c81a4c266690e4eeac98863ac_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:7b0478b7d410bbe717cc91af37e7a5c575e81f3d440266b8d28f09a591d35f6e_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-api-provider-agent-rhel8@sha256:7b0478b7d410bbe717cc91af37e7a5c575e81f3d440266b8d28f09a591d35f6e_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:7b0478b7d410bbe717cc91af37e7a5c575e81f3d440266b8d28f09a591d35f6e_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:8288be44125f590ef2e066be0a6362e428884a7c5df118e86681090f47fe0504_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-api-provider-agent-rhel8@sha256:8288be44125f590ef2e066be0a6362e428884a7c5df118e86681090f47fe0504_s390x" + }, + "product_reference": "multicluster-engine/cluster-api-provider-agent-rhel8@sha256:8288be44125f590ef2e066be0a6362e428884a7c5df118e86681090f47fe0504_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:0472573539fd5a19f7e939292d72917c01a3c14e72a33e88e767f3348fb4020e_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-api-provider-aws-rhel8@sha256:0472573539fd5a19f7e939292d72917c01a3c14e72a33e88e767f3348fb4020e_arm64" + }, + "product_reference": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:0472573539fd5a19f7e939292d72917c01a3c14e72a33e88e767f3348fb4020e_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:356433998a796e23907f5d22bff7de0ef3d615b07b9b64a3f2f80b49ba3b991f_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-api-provider-aws-rhel8@sha256:356433998a796e23907f5d22bff7de0ef3d615b07b9b64a3f2f80b49ba3b991f_s390x" + }, + "product_reference": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:356433998a796e23907f5d22bff7de0ef3d615b07b9b64a3f2f80b49ba3b991f_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:571293b7441729770fbf581914544c70e10c706f10834f87cfd26b086745f28f_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-api-provider-aws-rhel8@sha256:571293b7441729770fbf581914544c70e10c706f10834f87cfd26b086745f28f_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:571293b7441729770fbf581914544c70e10c706f10834f87cfd26b086745f28f_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:b991d5afa5c302fc1853179b6fbac247a813dd1c60e45410a09f144203b36744_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-api-provider-aws-rhel8@sha256:b991d5afa5c302fc1853179b6fbac247a813dd1c60e45410a09f144203b36744_amd64" + }, + "product_reference": "multicluster-engine/cluster-api-provider-aws-rhel8@sha256:b991d5afa5c302fc1853179b6fbac247a813dd1c60e45410a09f144203b36744_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:5a79e9e99259d22709acd5403fa1f36bd469137803f21640fc5a5c7e25efcef5_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-api-provider-azure-rhel8@sha256:5a79e9e99259d22709acd5403fa1f36bd469137803f21640fc5a5c7e25efcef5_amd64" + }, + "product_reference": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:5a79e9e99259d22709acd5403fa1f36bd469137803f21640fc5a5c7e25efcef5_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:6997087b1c982b674c5fa5e438a571c1dce4601e3aa3d8142ecc5feea4f846a1_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-api-provider-azure-rhel8@sha256:6997087b1c982b674c5fa5e438a571c1dce4601e3aa3d8142ecc5feea4f846a1_arm64" + }, + "product_reference": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:6997087b1c982b674c5fa5e438a571c1dce4601e3aa3d8142ecc5feea4f846a1_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:a42cd6ecff85dc1fce2e59aaf89d5c937ba9f33c9ab2b9cd97f1b6f98132ebeb_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-api-provider-azure-rhel8@sha256:a42cd6ecff85dc1fce2e59aaf89d5c937ba9f33c9ab2b9cd97f1b6f98132ebeb_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:a42cd6ecff85dc1fce2e59aaf89d5c937ba9f33c9ab2b9cd97f1b6f98132ebeb_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:bef27790531e4936c7312449978d3dc586270aec7e0ec0a6e9d351f2538d2282_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-api-provider-azure-rhel8@sha256:bef27790531e4936c7312449978d3dc586270aec7e0ec0a6e9d351f2538d2282_s390x" + }, + "product_reference": "multicluster-engine/cluster-api-provider-azure-rhel8@sha256:bef27790531e4936c7312449978d3dc586270aec7e0ec0a6e9d351f2538d2282_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:0108c242c1b735ef8e3d64b3092b9967ccf433cc4e696fd6ad764987b78417fd_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:0108c242c1b735ef8e3d64b3092b9967ccf433cc4e696fd6ad764987b78417fd_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:0108c242c1b735ef8e3d64b3092b9967ccf433cc4e696fd6ad764987b78417fd_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:68b81f2b1d1a87a06eb5279a4dcfcbf5827a7b1c5b1734078f407a50483e0df9_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:68b81f2b1d1a87a06eb5279a4dcfcbf5827a7b1c5b1734078f407a50483e0df9_amd64" + }, + "product_reference": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:68b81f2b1d1a87a06eb5279a4dcfcbf5827a7b1c5b1734078f407a50483e0df9_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:bded18f726ffca3c45acfc1474da90808c6997a6231f47eb9b804f8420dd98d7_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:bded18f726ffca3c45acfc1474da90808c6997a6231f47eb9b804f8420dd98d7_s390x" + }, + "product_reference": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:bded18f726ffca3c45acfc1474da90808c6997a6231f47eb9b804f8420dd98d7_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:eb3abff61211c4c94dbaee9f91fcd443bb84a9db7e80c839de1e20baff6cb46e_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:eb3abff61211c4c94dbaee9f91fcd443bb84a9db7e80c839de1e20baff6cb46e_arm64" + }, + "product_reference": "multicluster-engine/cluster-api-provider-kubevirt-rhel8@sha256:eb3abff61211c4c94dbaee9f91fcd443bb84a9db7e80c839de1e20baff6cb46e_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-rhel8@sha256:1119d1989064c0686327c9457206da85c36393d3e910e6ad1431a8ca853f4bca_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-api-rhel8@sha256:1119d1989064c0686327c9457206da85c36393d3e910e6ad1431a8ca853f4bca_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-api-rhel8@sha256:1119d1989064c0686327c9457206da85c36393d3e910e6ad1431a8ca853f4bca_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-rhel8@sha256:2cf6980ef8da9881410ff93c70dfe3bf463bd2e065d0bfb432dff2a3c5c1735d_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-api-rhel8@sha256:2cf6980ef8da9881410ff93c70dfe3bf463bd2e065d0bfb432dff2a3c5c1735d_s390x" + }, + "product_reference": "multicluster-engine/cluster-api-rhel8@sha256:2cf6980ef8da9881410ff93c70dfe3bf463bd2e065d0bfb432dff2a3c5c1735d_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-rhel8@sha256:75bfc4d1c7e97eb385633effa24d34ea641d7aa28edd97fb1cfafb3f259fcd51_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-api-rhel8@sha256:75bfc4d1c7e97eb385633effa24d34ea641d7aa28edd97fb1cfafb3f259fcd51_amd64" + }, + "product_reference": "multicluster-engine/cluster-api-rhel8@sha256:75bfc4d1c7e97eb385633effa24d34ea641d7aa28edd97fb1cfafb3f259fcd51_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-api-rhel8@sha256:9539729907da9a5e0135c9269ee61328530a7b8659fb6b305339585a698cb4ba_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-api-rhel8@sha256:9539729907da9a5e0135c9269ee61328530a7b8659fb6b305339585a698cb4ba_arm64" + }, + "product_reference": "multicluster-engine/cluster-api-rhel8@sha256:9539729907da9a5e0135c9269ee61328530a7b8659fb6b305339585a698cb4ba_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:2fb3280f6302eadfd9937d9da6dc9aba702075a7b652c11a65b1a5d73ec6e918_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-curator-controller-rhel8@sha256:2fb3280f6302eadfd9937d9da6dc9aba702075a7b652c11a65b1a5d73ec6e918_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-curator-controller-rhel8@sha256:2fb3280f6302eadfd9937d9da6dc9aba702075a7b652c11a65b1a5d73ec6e918_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:658503cadaeea5d79763da3e5906cd85ea64af774ae92b46dab7e96abb2f9e3b_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-curator-controller-rhel8@sha256:658503cadaeea5d79763da3e5906cd85ea64af774ae92b46dab7e96abb2f9e3b_s390x" + }, + "product_reference": "multicluster-engine/cluster-curator-controller-rhel8@sha256:658503cadaeea5d79763da3e5906cd85ea64af774ae92b46dab7e96abb2f9e3b_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:8d3c03b33af3e088cae138f693d4eda498338ab25feda4d5930c98c9953e9265_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-curator-controller-rhel8@sha256:8d3c03b33af3e088cae138f693d4eda498338ab25feda4d5930c98c9953e9265_arm64" + }, + "product_reference": "multicluster-engine/cluster-curator-controller-rhel8@sha256:8d3c03b33af3e088cae138f693d4eda498338ab25feda4d5930c98c9953e9265_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-curator-controller-rhel8@sha256:cd5dea0821fb1808423519811a3faaffc0d3fe0eefea879f55c848999a7cc9e9_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-curator-controller-rhel8@sha256:cd5dea0821fb1808423519811a3faaffc0d3fe0eefea879f55c848999a7cc9e9_amd64" + }, + "product_reference": "multicluster-engine/cluster-curator-controller-rhel8@sha256:cd5dea0821fb1808423519811a3faaffc0d3fe0eefea879f55c848999a7cc9e9_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:3884284b178051e856224d5bf60b546dffbd626f02a9b67abb9504b8455585e5_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-image-set-controller-rhel8@sha256:3884284b178051e856224d5bf60b546dffbd626f02a9b67abb9504b8455585e5_arm64" + }, + "product_reference": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:3884284b178051e856224d5bf60b546dffbd626f02a9b67abb9504b8455585e5_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:3f29e96636ab32268bc9ceea352b50e6aaea22b572e794866f2d61b75e0d4a0d_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-image-set-controller-rhel8@sha256:3f29e96636ab32268bc9ceea352b50e6aaea22b572e794866f2d61b75e0d4a0d_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:3f29e96636ab32268bc9ceea352b50e6aaea22b572e794866f2d61b75e0d4a0d_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:46bce64a807b68bfa67a6e527ae4dd9062d0c57d26b1c586be77a5ae2e9152ee_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-image-set-controller-rhel8@sha256:46bce64a807b68bfa67a6e527ae4dd9062d0c57d26b1c586be77a5ae2e9152ee_amd64" + }, + "product_reference": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:46bce64a807b68bfa67a6e527ae4dd9062d0c57d26b1c586be77a5ae2e9152ee_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:920498f51d30b4e2292d30289b234c6aba84e914d8bfd8e79993c980e95c3621_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-image-set-controller-rhel8@sha256:920498f51d30b4e2292d30289b234c6aba84e914d8bfd8e79993c980e95c3621_s390x" + }, + "product_reference": "multicluster-engine/cluster-image-set-controller-rhel8@sha256:920498f51d30b4e2292d30289b234c6aba84e914d8bfd8e79993c980e95c3621_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:0f22c078d16ca3011d373abf33f0c78ee399c0d26da9acdd48e73a9683a11fd0_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-proxy-addon-rhel8@sha256:0f22c078d16ca3011d373abf33f0c78ee399c0d26da9acdd48e73a9683a11fd0_s390x" + }, + "product_reference": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:0f22c078d16ca3011d373abf33f0c78ee399c0d26da9acdd48e73a9683a11fd0_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:4a3c59e9ca92aab2fd025c0056bcae789fe04b917a9a0742fd59b220a05de323_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-proxy-addon-rhel8@sha256:4a3c59e9ca92aab2fd025c0056bcae789fe04b917a9a0742fd59b220a05de323_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:4a3c59e9ca92aab2fd025c0056bcae789fe04b917a9a0742fd59b220a05de323_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:627b0049a7385adadf5207ab7298077f2a5783a9590bc12b1953ba14b3e7ca72_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-proxy-addon-rhel8@sha256:627b0049a7385adadf5207ab7298077f2a5783a9590bc12b1953ba14b3e7ca72_amd64" + }, + "product_reference": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:627b0049a7385adadf5207ab7298077f2a5783a9590bc12b1953ba14b3e7ca72_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:bbd78159a13d1f217db9a3ce4f1793c6dfa833253f8759e6d1e5f94d6a44246a_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-proxy-addon-rhel8@sha256:bbd78159a13d1f217db9a3ce4f1793c6dfa833253f8759e6d1e5f94d6a44246a_arm64" + }, + "product_reference": "multicluster-engine/cluster-proxy-addon-rhel8@sha256:bbd78159a13d1f217db9a3ce4f1793c6dfa833253f8759e6d1e5f94d6a44246a_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:30ceaf457e742c74ff84b6e44bd69c011e967ef972aa8e499b3ba63336d43449_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-proxy-rhel8@sha256:30ceaf457e742c74ff84b6e44bd69c011e967ef972aa8e499b3ba63336d43449_arm64" + }, + "product_reference": "multicluster-engine/cluster-proxy-rhel8@sha256:30ceaf457e742c74ff84b6e44bd69c011e967ef972aa8e499b3ba63336d43449_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:9928fc0e552ce2c9ac06cfaa706fe78cfac8a1305ef35fe0b76e7960f268959c_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-proxy-rhel8@sha256:9928fc0e552ce2c9ac06cfaa706fe78cfac8a1305ef35fe0b76e7960f268959c_ppc64le" + }, + "product_reference": "multicluster-engine/cluster-proxy-rhel8@sha256:9928fc0e552ce2c9ac06cfaa706fe78cfac8a1305ef35fe0b76e7960f268959c_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:cd0cff8fcf84541306ff160060cb8482e157a7efc6aa502c32988c81c13c115b_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-proxy-rhel8@sha256:cd0cff8fcf84541306ff160060cb8482e157a7efc6aa502c32988c81c13c115b_amd64" + }, + "product_reference": "multicluster-engine/cluster-proxy-rhel8@sha256:cd0cff8fcf84541306ff160060cb8482e157a7efc6aa502c32988c81c13c115b_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/cluster-proxy-rhel8@sha256:ebdf4b8276177b7ed9c07358a67c35f1e061e3a589feb66a989965e0360947d0_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/cluster-proxy-rhel8@sha256:ebdf4b8276177b7ed9c07358a67c35f1e061e3a589feb66a989965e0360947d0_s390x" + }, + "product_reference": "multicluster-engine/cluster-proxy-rhel8@sha256:ebdf4b8276177b7ed9c07358a67c35f1e061e3a589feb66a989965e0360947d0_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:1335b6df5e07c65f936d4e458b218462f390fb99472f09b50999bd8ae1d2aa07_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/clusterclaims-controller-rhel8@sha256:1335b6df5e07c65f936d4e458b218462f390fb99472f09b50999bd8ae1d2aa07_arm64" + }, + "product_reference": "multicluster-engine/clusterclaims-controller-rhel8@sha256:1335b6df5e07c65f936d4e458b218462f390fb99472f09b50999bd8ae1d2aa07_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:1e1eb4017f6dccef77138b8bff782535bdc10ae29559d44bcd4d386d6f32b92f_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/clusterclaims-controller-rhel8@sha256:1e1eb4017f6dccef77138b8bff782535bdc10ae29559d44bcd4d386d6f32b92f_ppc64le" + }, + "product_reference": "multicluster-engine/clusterclaims-controller-rhel8@sha256:1e1eb4017f6dccef77138b8bff782535bdc10ae29559d44bcd4d386d6f32b92f_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:2e27ac1fe717737ef15ebc710e0c57728b4b5f61f5da92f183b8840b1f1b222a_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/clusterclaims-controller-rhel8@sha256:2e27ac1fe717737ef15ebc710e0c57728b4b5f61f5da92f183b8840b1f1b222a_amd64" + }, + "product_reference": "multicluster-engine/clusterclaims-controller-rhel8@sha256:2e27ac1fe717737ef15ebc710e0c57728b4b5f61f5da92f183b8840b1f1b222a_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/clusterclaims-controller-rhel8@sha256:7fe96a8daa3c58ad601c6b374f82f645baeb256008b2fe457cd74c49bacb7562_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/clusterclaims-controller-rhel8@sha256:7fe96a8daa3c58ad601c6b374f82f645baeb256008b2fe457cd74c49bacb7562_s390x" + }, + "product_reference": "multicluster-engine/clusterclaims-controller-rhel8@sha256:7fe96a8daa3c58ad601c6b374f82f645baeb256008b2fe457cd74c49bacb7562_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:41d92ba15e0655797f77d31567d2bee13d6aff135dc6f707b97c9ebd1b1f5ae0_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:41d92ba15e0655797f77d31567d2bee13d6aff135dc6f707b97c9ebd1b1f5ae0_ppc64le" + }, + "product_reference": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:41d92ba15e0655797f77d31567d2bee13d6aff135dc6f707b97c9ebd1b1f5ae0_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:4302d50fee31bb5c82b2aca83e17c81f41520ff23638ea07b1a6895d4010fa8e_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:4302d50fee31bb5c82b2aca83e17c81f41520ff23638ea07b1a6895d4010fa8e_amd64" + }, + "product_reference": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:4302d50fee31bb5c82b2aca83e17c81f41520ff23638ea07b1a6895d4010fa8e_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:6b43b10ce593a524476e992e18e3a86208ba11fed1074126d25f737e9e8cb0c6_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:6b43b10ce593a524476e992e18e3a86208ba11fed1074126d25f737e9e8cb0c6_s390x" + }, + "product_reference": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:6b43b10ce593a524476e992e18e3a86208ba11fed1074126d25f737e9e8cb0c6_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:6cd7df2f56225e373611f65c879798a31e07da75a9fb56d875490311b89eff6a_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:6cd7df2f56225e373611f65c879798a31e07da75a9fb56d875490311b89eff6a_arm64" + }, + "product_reference": "multicluster-engine/clusterlifecycle-state-metrics-rhel8@sha256:6cd7df2f56225e373611f65c879798a31e07da75a9fb56d875490311b89eff6a_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/console-mce-rhel8@sha256:1fbba225e966e3c1c16b641b7f37c499eb362dff580cda4a01425856eb03ff3a_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/console-mce-rhel8@sha256:1fbba225e966e3c1c16b641b7f37c499eb362dff580cda4a01425856eb03ff3a_arm64" + }, + "product_reference": "multicluster-engine/console-mce-rhel8@sha256:1fbba225e966e3c1c16b641b7f37c499eb362dff580cda4a01425856eb03ff3a_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/console-mce-rhel8@sha256:54cf697f751239fe433c0c07ed7c333e8eacb032bed6cb9ae4d3a1744ddd395b_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/console-mce-rhel8@sha256:54cf697f751239fe433c0c07ed7c333e8eacb032bed6cb9ae4d3a1744ddd395b_amd64" + }, + "product_reference": "multicluster-engine/console-mce-rhel8@sha256:54cf697f751239fe433c0c07ed7c333e8eacb032bed6cb9ae4d3a1744ddd395b_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/console-mce-rhel8@sha256:6e3cc2ab54ccb2a7fd0782d8b7cc62ea20bbb04a5c609b0304789c5d4aa0960b_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/console-mce-rhel8@sha256:6e3cc2ab54ccb2a7fd0782d8b7cc62ea20bbb04a5c609b0304789c5d4aa0960b_ppc64le" + }, + "product_reference": "multicluster-engine/console-mce-rhel8@sha256:6e3cc2ab54ccb2a7fd0782d8b7cc62ea20bbb04a5c609b0304789c5d4aa0960b_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/console-mce-rhel8@sha256:879f10141d56618573a79fec9d8b9b4fe3da00a3af509f499e7838d7e2570cfb_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/console-mce-rhel8@sha256:879f10141d56618573a79fec9d8b9b4fe3da00a3af509f499e7838d7e2570cfb_s390x" + }, + "product_reference": "multicluster-engine/console-mce-rhel8@sha256:879f10141d56618573a79fec9d8b9b4fe3da00a3af509f499e7838d7e2570cfb_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/discovery-rhel8@sha256:0ff23b4efe326461634460014e303ed41f374fe91e5a6d27d6b9605fa83df9c6_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/discovery-rhel8@sha256:0ff23b4efe326461634460014e303ed41f374fe91e5a6d27d6b9605fa83df9c6_amd64" + }, + "product_reference": "multicluster-engine/discovery-rhel8@sha256:0ff23b4efe326461634460014e303ed41f374fe91e5a6d27d6b9605fa83df9c6_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/discovery-rhel8@sha256:22704ba6cc5df920fe976e60bbfbd2f852eeda90ebaac3d3ba67d911d737637f_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/discovery-rhel8@sha256:22704ba6cc5df920fe976e60bbfbd2f852eeda90ebaac3d3ba67d911d737637f_ppc64le" + }, + "product_reference": "multicluster-engine/discovery-rhel8@sha256:22704ba6cc5df920fe976e60bbfbd2f852eeda90ebaac3d3ba67d911d737637f_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/discovery-rhel8@sha256:a59e01d260808f4549a63859ef49f51d6217ab6d65b5dd555c12047d230ae313_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/discovery-rhel8@sha256:a59e01d260808f4549a63859ef49f51d6217ab6d65b5dd555c12047d230ae313_arm64" + }, + "product_reference": "multicluster-engine/discovery-rhel8@sha256:a59e01d260808f4549a63859ef49f51d6217ab6d65b5dd555c12047d230ae313_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/discovery-rhel8@sha256:b1d4fc9f686f284af83a8c946d8eae146aecd102e6fb684773b08db641a6624f_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/discovery-rhel8@sha256:b1d4fc9f686f284af83a8c946d8eae146aecd102e6fb684773b08db641a6624f_s390x" + }, + "product_reference": "multicluster-engine/discovery-rhel8@sha256:b1d4fc9f686f284af83a8c946d8eae146aecd102e6fb684773b08db641a6624f_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hive-rhel8@sha256:17ae9414eb8215493d07e7d5cf755ce63531340bd5ad741411671db5e4475530_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/hive-rhel8@sha256:17ae9414eb8215493d07e7d5cf755ce63531340bd5ad741411671db5e4475530_amd64" + }, + "product_reference": "multicluster-engine/hive-rhel8@sha256:17ae9414eb8215493d07e7d5cf755ce63531340bd5ad741411671db5e4475530_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hive-rhel8@sha256:1f82e07a5e93c07b244b78d4899d06c38d20494eee0f874ad57b0370cdf74390_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/hive-rhel8@sha256:1f82e07a5e93c07b244b78d4899d06c38d20494eee0f874ad57b0370cdf74390_s390x" + }, + "product_reference": "multicluster-engine/hive-rhel8@sha256:1f82e07a5e93c07b244b78d4899d06c38d20494eee0f874ad57b0370cdf74390_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hive-rhel8@sha256:2a665de36107df7f84868130e21af37f08e842ca4e3f70aa0c5e43fa6a4b933c_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/hive-rhel8@sha256:2a665de36107df7f84868130e21af37f08e842ca4e3f70aa0c5e43fa6a4b933c_ppc64le" + }, + "product_reference": "multicluster-engine/hive-rhel8@sha256:2a665de36107df7f84868130e21af37f08e842ca4e3f70aa0c5e43fa6a4b933c_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hive-rhel8@sha256:d888f204da3b0ddd7eea7087ea1329dc0d1d9cd3f789cf7759686767fffae9d5_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/hive-rhel8@sha256:d888f204da3b0ddd7eea7087ea1329dc0d1d9cd3f789cf7759686767fffae9d5_arm64" + }, + "product_reference": "multicluster-engine/hive-rhel8@sha256:d888f204da3b0ddd7eea7087ea1329dc0d1d9cd3f789cf7759686767fffae9d5_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:31a5b5cc3f470435550e5a453d8f69b278ffd276d0c33c24a7a4012a513859df_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/hypershift-addon-rhel8-operator@sha256:31a5b5cc3f470435550e5a453d8f69b278ffd276d0c33c24a7a4012a513859df_ppc64le" + }, + "product_reference": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:31a5b5cc3f470435550e5a453d8f69b278ffd276d0c33c24a7a4012a513859df_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:351553c9c7819665b60d5c330aca3e02ae1a69bf0459f8970fa79fc92a3eec12_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/hypershift-addon-rhel8-operator@sha256:351553c9c7819665b60d5c330aca3e02ae1a69bf0459f8970fa79fc92a3eec12_arm64" + }, + "product_reference": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:351553c9c7819665b60d5c330aca3e02ae1a69bf0459f8970fa79fc92a3eec12_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:44ad5a101a03c382c88b8345db3f626e0728d4b320c6c821b243fd68e31da469_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/hypershift-addon-rhel8-operator@sha256:44ad5a101a03c382c88b8345db3f626e0728d4b320c6c821b243fd68e31da469_s390x" + }, + "product_reference": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:44ad5a101a03c382c88b8345db3f626e0728d4b320c6c821b243fd68e31da469_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:6948beef79528dbc7b6b1c95418b6960fb4b40926431c1cab0861d801229f5e1_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/hypershift-addon-rhel8-operator@sha256:6948beef79528dbc7b6b1c95418b6960fb4b40926431c1cab0861d801229f5e1_amd64" + }, + "product_reference": "multicluster-engine/hypershift-addon-rhel8-operator@sha256:6948beef79528dbc7b6b1c95418b6960fb4b40926431c1cab0861d801229f5e1_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-cli-rhel8@sha256:280b5ed5d502586d14b43658cdea8afb762f4361fe3a5dde965a76d27fea76ca_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/hypershift-cli-rhel8@sha256:280b5ed5d502586d14b43658cdea8afb762f4361fe3a5dde965a76d27fea76ca_s390x" + }, + "product_reference": "multicluster-engine/hypershift-cli-rhel8@sha256:280b5ed5d502586d14b43658cdea8afb762f4361fe3a5dde965a76d27fea76ca_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-cli-rhel8@sha256:70da610a75d47216590cff7c5ab3ee645bade26c45e75b82ba7ac13370ada5aa_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/hypershift-cli-rhel8@sha256:70da610a75d47216590cff7c5ab3ee645bade26c45e75b82ba7ac13370ada5aa_ppc64le" + }, + "product_reference": "multicluster-engine/hypershift-cli-rhel8@sha256:70da610a75d47216590cff7c5ab3ee645bade26c45e75b82ba7ac13370ada5aa_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-cli-rhel8@sha256:b156078fa98259e63b63e11cd977710ab77d088fb448780ff48083a6dd323ebc_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/hypershift-cli-rhel8@sha256:b156078fa98259e63b63e11cd977710ab77d088fb448780ff48083a6dd323ebc_amd64" + }, + "product_reference": "multicluster-engine/hypershift-cli-rhel8@sha256:b156078fa98259e63b63e11cd977710ab77d088fb448780ff48083a6dd323ebc_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-cli-rhel8@sha256:f4e2a5b4db804d03afc2c8b2cabee332684fa48b0459afc18ecb8783895a2592_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/hypershift-cli-rhel8@sha256:f4e2a5b4db804d03afc2c8b2cabee332684fa48b0459afc18ecb8783895a2592_arm64" + }, + "product_reference": "multicluster-engine/hypershift-cli-rhel8@sha256:f4e2a5b4db804d03afc2c8b2cabee332684fa48b0459afc18ecb8783895a2592_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:08e3891fc166ec041ec9b4bded9789a257b25a125195e9a43dfb38d4a2648259_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/hypershift-rhel8-operator@sha256:08e3891fc166ec041ec9b4bded9789a257b25a125195e9a43dfb38d4a2648259_amd64" + }, + "product_reference": "multicluster-engine/hypershift-rhel8-operator@sha256:08e3891fc166ec041ec9b4bded9789a257b25a125195e9a43dfb38d4a2648259_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:4e71ad3a84abfd8fd1c25a8f7ce214ad94e40089088f81931b1dcd9d892585a2_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/hypershift-rhel8-operator@sha256:4e71ad3a84abfd8fd1c25a8f7ce214ad94e40089088f81931b1dcd9d892585a2_s390x" + }, + "product_reference": "multicluster-engine/hypershift-rhel8-operator@sha256:4e71ad3a84abfd8fd1c25a8f7ce214ad94e40089088f81931b1dcd9d892585a2_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:970d55cfbdc630ac833ab753bdf8f10cf8c9614839905db0b93256dda4b14385_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/hypershift-rhel8-operator@sha256:970d55cfbdc630ac833ab753bdf8f10cf8c9614839905db0b93256dda4b14385_arm64" + }, + "product_reference": "multicluster-engine/hypershift-rhel8-operator@sha256:970d55cfbdc630ac833ab753bdf8f10cf8c9614839905db0b93256dda4b14385_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/hypershift-rhel8-operator@sha256:c39337c22ab08f70435e89ca431cb11a102bfccfa8329df2ded6e5010f9c5c5f_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/hypershift-rhel8-operator@sha256:c39337c22ab08f70435e89ca431cb11a102bfccfa8329df2ded6e5010f9c5c5f_ppc64le" + }, + "product_reference": "multicluster-engine/hypershift-rhel8-operator@sha256:c39337c22ab08f70435e89ca431cb11a102bfccfa8329df2ded6e5010f9c5c5f_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/klusterlet-operator-bundle@sha256:8e8a04f6c10e7002bd3ba88a58aa771d74fa63abc95c9a503cc9ccf34cc6530f_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/klusterlet-operator-bundle@sha256:8e8a04f6c10e7002bd3ba88a58aa771d74fa63abc95c9a503cc9ccf34cc6530f_amd64" + }, + "product_reference": "multicluster-engine/klusterlet-operator-bundle@sha256:8e8a04f6c10e7002bd3ba88a58aa771d74fa63abc95c9a503cc9ccf34cc6530f_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/kube-rbac-proxy-mce-rhel8@sha256:8853cd934a5a5f1da4dd7247a9e5694918961e7ba66e52c5fbcce957b670aec3_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/kube-rbac-proxy-mce-rhel8@sha256:8853cd934a5a5f1da4dd7247a9e5694918961e7ba66e52c5fbcce957b670aec3_amd64" + }, + "product_reference": "multicluster-engine/kube-rbac-proxy-mce-rhel8@sha256:8853cd934a5a5f1da4dd7247a9e5694918961e7ba66e52c5fbcce957b670aec3_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/kube-rbac-proxy-mce-rhel8@sha256:911bff3e3a641fc8b205eac42744cfd08e78ad5259b8f2fee54aaf80254b2549_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/kube-rbac-proxy-mce-rhel8@sha256:911bff3e3a641fc8b205eac42744cfd08e78ad5259b8f2fee54aaf80254b2549_s390x" + }, + "product_reference": "multicluster-engine/kube-rbac-proxy-mce-rhel8@sha256:911bff3e3a641fc8b205eac42744cfd08e78ad5259b8f2fee54aaf80254b2549_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/kube-rbac-proxy-mce-rhel8@sha256:b2a457cc02c43590ef24f633f06b0e5b56ae27f3ce00e78bb13e16a8d4f21a5a_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/kube-rbac-proxy-mce-rhel8@sha256:b2a457cc02c43590ef24f633f06b0e5b56ae27f3ce00e78bb13e16a8d4f21a5a_ppc64le" + }, + "product_reference": "multicluster-engine/kube-rbac-proxy-mce-rhel8@sha256:b2a457cc02c43590ef24f633f06b0e5b56ae27f3ce00e78bb13e16a8d4f21a5a_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/kube-rbac-proxy-mce-rhel8@sha256:f97af913307811a9e48abb280c84f0c0f0cbb8275c127825062a15c20ef28538_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/kube-rbac-proxy-mce-rhel8@sha256:f97af913307811a9e48abb280c84f0c0f0cbb8275c127825062a15c20ef28538_arm64" + }, + "product_reference": "multicluster-engine/kube-rbac-proxy-mce-rhel8@sha256:f97af913307811a9e48abb280c84f0c0f0cbb8275c127825062a15c20ef28538_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:34a8705f7a4b067ce03e1f23738ffc9cc0c860880c51b80d540d8059669b5df8_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/managed-serviceaccount-rhel8@sha256:34a8705f7a4b067ce03e1f23738ffc9cc0c860880c51b80d540d8059669b5df8_ppc64le" + }, + "product_reference": "multicluster-engine/managed-serviceaccount-rhel8@sha256:34a8705f7a4b067ce03e1f23738ffc9cc0c860880c51b80d540d8059669b5df8_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:5ea0b32eb67a710d1b9bb133579bfd16142b157f23a9d615e06a5dcd40f224d7_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/managed-serviceaccount-rhel8@sha256:5ea0b32eb67a710d1b9bb133579bfd16142b157f23a9d615e06a5dcd40f224d7_arm64" + }, + "product_reference": "multicluster-engine/managed-serviceaccount-rhel8@sha256:5ea0b32eb67a710d1b9bb133579bfd16142b157f23a9d615e06a5dcd40f224d7_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:5ee998c169cebe65dc6ffeb480170f9babdc38ac7756440ad7e48f26ea80f13a_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/managed-serviceaccount-rhel8@sha256:5ee998c169cebe65dc6ffeb480170f9babdc38ac7756440ad7e48f26ea80f13a_amd64" + }, + "product_reference": "multicluster-engine/managed-serviceaccount-rhel8@sha256:5ee998c169cebe65dc6ffeb480170f9babdc38ac7756440ad7e48f26ea80f13a_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/managed-serviceaccount-rhel8@sha256:9528777141349b0c173e0a80d5876ade9090b2760763d6d9abf24f9e771fc6f4_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/managed-serviceaccount-rhel8@sha256:9528777141349b0c173e0a80d5876ade9090b2760763d6d9abf24f9e771fc6f4_s390x" + }, + "product_reference": "multicluster-engine/managed-serviceaccount-rhel8@sha256:9528777141349b0c173e0a80d5876ade9090b2760763d6d9abf24f9e771fc6f4_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:1348528802346b4731c43f09cb3fd24816c569b372ab86e3c8c681a501ba0247_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/managedcluster-import-controller-rhel8@sha256:1348528802346b4731c43f09cb3fd24816c569b372ab86e3c8c681a501ba0247_amd64" + }, + "product_reference": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:1348528802346b4731c43f09cb3fd24816c569b372ab86e3c8c681a501ba0247_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:353f91d986eff3484d20263734d950f6bf62d4ebce2c2271dd1fc0d0f422f44d_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/managedcluster-import-controller-rhel8@sha256:353f91d986eff3484d20263734d950f6bf62d4ebce2c2271dd1fc0d0f422f44d_arm64" + }, + "product_reference": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:353f91d986eff3484d20263734d950f6bf62d4ebce2c2271dd1fc0d0f422f44d_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:6c7dad094381e68a78f6318b56d67586cf667aacac0a0823b8199974da17e7fc_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/managedcluster-import-controller-rhel8@sha256:6c7dad094381e68a78f6318b56d67586cf667aacac0a0823b8199974da17e7fc_ppc64le" + }, + "product_reference": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:6c7dad094381e68a78f6318b56d67586cf667aacac0a0823b8199974da17e7fc_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:7952fcbfdad7a3831647d665c194c3ea4b0dcd3fa2df5645b1cb5ee0d92fd927_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/managedcluster-import-controller-rhel8@sha256:7952fcbfdad7a3831647d665c194c3ea4b0dcd3fa2df5645b1cb5ee0d92fd927_s390x" + }, + "product_reference": "multicluster-engine/managedcluster-import-controller-rhel8@sha256:7952fcbfdad7a3831647d665c194c3ea4b0dcd3fa2df5645b1cb5ee0d92fd927_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/mce-operator-bundle@sha256:a1495277c868d68d624a4f2b3a8fe99859eaea4d1898bed0cf0ec7681a162250_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/mce-operator-bundle@sha256:a1495277c868d68d624a4f2b3a8fe99859eaea4d1898bed0cf0ec7681a162250_amd64" + }, + "product_reference": "multicluster-engine/mce-operator-bundle@sha256:a1495277c868d68d624a4f2b3a8fe99859eaea4d1898bed0cf0ec7681a162250_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/mce-operator-bundle@sha256:d5fb50ae999c6f334a41f25bbea3a62ccd416f92d9aea9fba4a4b36a471d7372_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/mce-operator-bundle@sha256:d5fb50ae999c6f334a41f25bbea3a62ccd416f92d9aea9fba4a4b36a471d7372_ppc64le" + }, + "product_reference": "multicluster-engine/mce-operator-bundle@sha256:d5fb50ae999c6f334a41f25bbea3a62ccd416f92d9aea9fba4a4b36a471d7372_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/mce-operator-bundle@sha256:e03c5e0eff302754f7ae755cffc1f762ecb2ef09760c54395183f944c0f2da3f_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/mce-operator-bundle@sha256:e03c5e0eff302754f7ae755cffc1f762ecb2ef09760c54395183f944c0f2da3f_s390x" + }, + "product_reference": "multicluster-engine/mce-operator-bundle@sha256:e03c5e0eff302754f7ae755cffc1f762ecb2ef09760c54395183f944c0f2da3f_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:2363df8e501f382fcac724fab7cb8c060441c209e6f26758c4a2e135174f9f7f_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/multicloud-manager-rhel8@sha256:2363df8e501f382fcac724fab7cb8c060441c209e6f26758c4a2e135174f9f7f_arm64" + }, + "product_reference": "multicluster-engine/multicloud-manager-rhel8@sha256:2363df8e501f382fcac724fab7cb8c060441c209e6f26758c4a2e135174f9f7f_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:78831fe1426ee9d0c0332b29378c1e9c454b851edf9ab3a1ed390c288162cb52_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/multicloud-manager-rhel8@sha256:78831fe1426ee9d0c0332b29378c1e9c454b851edf9ab3a1ed390c288162cb52_ppc64le" + }, + "product_reference": "multicluster-engine/multicloud-manager-rhel8@sha256:78831fe1426ee9d0c0332b29378c1e9c454b851edf9ab3a1ed390c288162cb52_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:ab869f59bb0ba570f18773d584de1cc1b66a286d463f5ff27ec09868a7f76ac4_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/multicloud-manager-rhel8@sha256:ab869f59bb0ba570f18773d584de1cc1b66a286d463f5ff27ec09868a7f76ac4_amd64" + }, + "product_reference": "multicluster-engine/multicloud-manager-rhel8@sha256:ab869f59bb0ba570f18773d584de1cc1b66a286d463f5ff27ec09868a7f76ac4_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicloud-manager-rhel8@sha256:afc23ad755a3ff6c0b41a954bd6e32c1eb268db0a06964da691275ff7670d5ea_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/multicloud-manager-rhel8@sha256:afc23ad755a3ff6c0b41a954bd6e32c1eb268db0a06964da691275ff7670d5ea_s390x" + }, + "product_reference": "multicluster-engine/multicloud-manager-rhel8@sha256:afc23ad755a3ff6c0b41a954bd6e32c1eb268db0a06964da691275ff7670d5ea_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:054c686d0a22bf88c5ea9d3093d446212101142a83d055b5c2ef9ff9e0339f40_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:054c686d0a22bf88c5ea9d3093d446212101142a83d055b5c2ef9ff9e0339f40_arm64" + }, + "product_reference": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:054c686d0a22bf88c5ea9d3093d446212101142a83d055b5c2ef9ff9e0339f40_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:6aa6df5b334170f4151aedd2d5e19fe5f0ee0e0c81a4c266690e4eeac98863ac_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:6aa6df5b334170f4151aedd2d5e19fe5f0ee0e0c81a4c266690e4eeac98863ac_amd64" + }, + "product_reference": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:6aa6df5b334170f4151aedd2d5e19fe5f0ee0e0c81a4c266690e4eeac98863ac_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:7b0478b7d410bbe717cc91af37e7a5c575e81f3d440266b8d28f09a591d35f6e_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:7b0478b7d410bbe717cc91af37e7a5c575e81f3d440266b8d28f09a591d35f6e_ppc64le" + }, + "product_reference": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:7b0478b7d410bbe717cc91af37e7a5c575e81f3d440266b8d28f09a591d35f6e_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:8288be44125f590ef2e066be0a6362e428884a7c5df118e86681090f47fe0504_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:8288be44125f590ef2e066be0a6362e428884a7c5df118e86681090f47fe0504_s390x" + }, + "product_reference": "multicluster-engine/multicluster-engine-cluster-api-provider-agent-rhel8@sha256:8288be44125f590ef2e066be0a6362e428884a7c5df118e86681090f47fe0504_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:1fbba225e966e3c1c16b641b7f37c499eb362dff580cda4a01425856eb03ff3a_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:1fbba225e966e3c1c16b641b7f37c499eb362dff580cda4a01425856eb03ff3a_arm64" + }, + "product_reference": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:1fbba225e966e3c1c16b641b7f37c499eb362dff580cda4a01425856eb03ff3a_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:54cf697f751239fe433c0c07ed7c333e8eacb032bed6cb9ae4d3a1744ddd395b_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:54cf697f751239fe433c0c07ed7c333e8eacb032bed6cb9ae4d3a1744ddd395b_amd64" + }, + "product_reference": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:54cf697f751239fe433c0c07ed7c333e8eacb032bed6cb9ae4d3a1744ddd395b_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:6e3cc2ab54ccb2a7fd0782d8b7cc62ea20bbb04a5c609b0304789c5d4aa0960b_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:6e3cc2ab54ccb2a7fd0782d8b7cc62ea20bbb04a5c609b0304789c5d4aa0960b_ppc64le" + }, + "product_reference": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:6e3cc2ab54ccb2a7fd0782d8b7cc62ea20bbb04a5c609b0304789c5d4aa0960b_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:879f10141d56618573a79fec9d8b9b4fe3da00a3af509f499e7838d7e2570cfb_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:879f10141d56618573a79fec9d8b9b4fe3da00a3af509f499e7838d7e2570cfb_s390x" + }, + "product_reference": "multicluster-engine/multicluster-engine-console-mce-rhel8@sha256:879f10141d56618573a79fec9d8b9b4fe3da00a3af509f499e7838d7e2570cfb_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:31a5b5cc3f470435550e5a453d8f69b278ffd276d0c33c24a7a4012a513859df_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:31a5b5cc3f470435550e5a453d8f69b278ffd276d0c33c24a7a4012a513859df_ppc64le" + }, + "product_reference": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:31a5b5cc3f470435550e5a453d8f69b278ffd276d0c33c24a7a4012a513859df_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:351553c9c7819665b60d5c330aca3e02ae1a69bf0459f8970fa79fc92a3eec12_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:351553c9c7819665b60d5c330aca3e02ae1a69bf0459f8970fa79fc92a3eec12_arm64" + }, + "product_reference": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:351553c9c7819665b60d5c330aca3e02ae1a69bf0459f8970fa79fc92a3eec12_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:44ad5a101a03c382c88b8345db3f626e0728d4b320c6c821b243fd68e31da469_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:44ad5a101a03c382c88b8345db3f626e0728d4b320c6c821b243fd68e31da469_s390x" + }, + "product_reference": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:44ad5a101a03c382c88b8345db3f626e0728d4b320c6c821b243fd68e31da469_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:6948beef79528dbc7b6b1c95418b6960fb4b40926431c1cab0861d801229f5e1_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:6948beef79528dbc7b6b1c95418b6960fb4b40926431c1cab0861d801229f5e1_amd64" + }, + "product_reference": "multicluster-engine/multicluster-engine-hypershift-addon-rhel8-operator@sha256:6948beef79528dbc7b6b1c95418b6960fb4b40926431c1cab0861d801229f5e1_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:34a8705f7a4b067ce03e1f23738ffc9cc0c860880c51b80d540d8059669b5df8_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:34a8705f7a4b067ce03e1f23738ffc9cc0c860880c51b80d540d8059669b5df8_ppc64le" + }, + "product_reference": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:34a8705f7a4b067ce03e1f23738ffc9cc0c860880c51b80d540d8059669b5df8_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:5ea0b32eb67a710d1b9bb133579bfd16142b157f23a9d615e06a5dcd40f224d7_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:5ea0b32eb67a710d1b9bb133579bfd16142b157f23a9d615e06a5dcd40f224d7_arm64" + }, + "product_reference": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:5ea0b32eb67a710d1b9bb133579bfd16142b157f23a9d615e06a5dcd40f224d7_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:5ee998c169cebe65dc6ffeb480170f9babdc38ac7756440ad7e48f26ea80f13a_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:5ee998c169cebe65dc6ffeb480170f9babdc38ac7756440ad7e48f26ea80f13a_amd64" + }, + "product_reference": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:5ee998c169cebe65dc6ffeb480170f9babdc38ac7756440ad7e48f26ea80f13a_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:9528777141349b0c173e0a80d5876ade9090b2760763d6d9abf24f9e771fc6f4_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:9528777141349b0c173e0a80d5876ade9090b2760763d6d9abf24f9e771fc6f4_s390x" + }, + "product_reference": "multicluster-engine/multicluster-engine-managed-serviceaccount-rhel8@sha256:9528777141349b0c173e0a80d5876ade9090b2760763d6d9abf24f9e771fc6f4_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/must-gather-rhel8@sha256:2cc54e2a2f556bf582aff10eae7df64a0c63567508f0f9754cc20205f9941c54_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/must-gather-rhel8@sha256:2cc54e2a2f556bf582aff10eae7df64a0c63567508f0f9754cc20205f9941c54_arm64" + }, + "product_reference": "multicluster-engine/must-gather-rhel8@sha256:2cc54e2a2f556bf582aff10eae7df64a0c63567508f0f9754cc20205f9941c54_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/must-gather-rhel8@sha256:3516fec07dfa2c3d298fececf3b3e13ad5a71e4c59f546487d484892d22a7bc1_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/must-gather-rhel8@sha256:3516fec07dfa2c3d298fececf3b3e13ad5a71e4c59f546487d484892d22a7bc1_s390x" + }, + "product_reference": "multicluster-engine/must-gather-rhel8@sha256:3516fec07dfa2c3d298fececf3b3e13ad5a71e4c59f546487d484892d22a7bc1_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/must-gather-rhel8@sha256:9f4b674f8fb14bfabcd289682550e8b67066607e26aa92fcc808baffe1bece7e_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/must-gather-rhel8@sha256:9f4b674f8fb14bfabcd289682550e8b67066607e26aa92fcc808baffe1bece7e_ppc64le" + }, + "product_reference": "multicluster-engine/must-gather-rhel8@sha256:9f4b674f8fb14bfabcd289682550e8b67066607e26aa92fcc808baffe1bece7e_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/must-gather-rhel8@sha256:e00d63127ba85c75766a508beb53d209029ff987c1096bf730537a696cccec96_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/must-gather-rhel8@sha256:e00d63127ba85c75766a508beb53d209029ff987c1096bf730537a696cccec96_amd64" + }, + "product_reference": "multicluster-engine/must-gather-rhel8@sha256:e00d63127ba85c75766a508beb53d209029ff987c1096bf730537a696cccec96_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/placement-rhel8@sha256:03bd7cac39ba01ad3eef1ed98e3af811d620247e4e5f7be577d4f5e94bc882ed_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/placement-rhel8@sha256:03bd7cac39ba01ad3eef1ed98e3af811d620247e4e5f7be577d4f5e94bc882ed_arm64" + }, + "product_reference": "multicluster-engine/placement-rhel8@sha256:03bd7cac39ba01ad3eef1ed98e3af811d620247e4e5f7be577d4f5e94bc882ed_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/placement-rhel8@sha256:9359cdef6ab04445ad4f29e9b573dcad0bdf8336b2010560a26baaec29f76ab8_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/placement-rhel8@sha256:9359cdef6ab04445ad4f29e9b573dcad0bdf8336b2010560a26baaec29f76ab8_ppc64le" + }, + "product_reference": "multicluster-engine/placement-rhel8@sha256:9359cdef6ab04445ad4f29e9b573dcad0bdf8336b2010560a26baaec29f76ab8_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/placement-rhel8@sha256:935ae8325af21c62576d8a3feea37cc9c920f69830eca12bb69956011b14cfe1_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/placement-rhel8@sha256:935ae8325af21c62576d8a3feea37cc9c920f69830eca12bb69956011b14cfe1_s390x" + }, + "product_reference": "multicluster-engine/placement-rhel8@sha256:935ae8325af21c62576d8a3feea37cc9c920f69830eca12bb69956011b14cfe1_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/placement-rhel8@sha256:eee3f786cd81e57ab39352116288c6f25e69b6a70422b934ce973eaa57c530c1_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/placement-rhel8@sha256:eee3f786cd81e57ab39352116288c6f25e69b6a70422b934ce973eaa57c530c1_amd64" + }, + "product_reference": "multicluster-engine/placement-rhel8@sha256:eee3f786cd81e57ab39352116288c6f25e69b6a70422b934ce973eaa57c530c1_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:6bce18f14067b04233b9ec969cab71f853ea256e3c47f1498cbf34715fe2c727_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/provider-credential-controller-rhel8@sha256:6bce18f14067b04233b9ec969cab71f853ea256e3c47f1498cbf34715fe2c727_s390x" + }, + "product_reference": "multicluster-engine/provider-credential-controller-rhel8@sha256:6bce18f14067b04233b9ec969cab71f853ea256e3c47f1498cbf34715fe2c727_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:947e3e38bb3660c356deb2577a82f39bfb7af0957b7ec608fcafbee1d2e8c68f_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/provider-credential-controller-rhel8@sha256:947e3e38bb3660c356deb2577a82f39bfb7af0957b7ec608fcafbee1d2e8c68f_amd64" + }, + "product_reference": "multicluster-engine/provider-credential-controller-rhel8@sha256:947e3e38bb3660c356deb2577a82f39bfb7af0957b7ec608fcafbee1d2e8c68f_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:c9be4ae3482a9dc8bf180f6fbd902ad613e82b963b864e8c4b59bbc10d563cd7_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/provider-credential-controller-rhel8@sha256:c9be4ae3482a9dc8bf180f6fbd902ad613e82b963b864e8c4b59bbc10d563cd7_ppc64le" + }, + "product_reference": "multicluster-engine/provider-credential-controller-rhel8@sha256:c9be4ae3482a9dc8bf180f6fbd902ad613e82b963b864e8c4b59bbc10d563cd7_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/provider-credential-controller-rhel8@sha256:f4c67a0da6c82a910471956c6c539e58f6137fe9b04410462b9dcc71fc7374b4_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/provider-credential-controller-rhel8@sha256:f4c67a0da6c82a910471956c6c539e58f6137fe9b04410462b9dcc71fc7374b4_arm64" + }, + "product_reference": "multicluster-engine/provider-credential-controller-rhel8@sha256:f4c67a0da6c82a910471956c6c539e58f6137fe9b04410462b9dcc71fc7374b4_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/registration-operator-rhel8@sha256:390c47baed2e7b2644a31125cc47ea4cc7cd7efa2becda86882fb509071b02b4_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/registration-operator-rhel8@sha256:390c47baed2e7b2644a31125cc47ea4cc7cd7efa2becda86882fb509071b02b4_ppc64le" + }, + "product_reference": "multicluster-engine/registration-operator-rhel8@sha256:390c47baed2e7b2644a31125cc47ea4cc7cd7efa2becda86882fb509071b02b4_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/registration-operator-rhel8@sha256:3af327313fd9f77ada1516cb8e5c237476efd08aa43cb2005d40a252c9bd83fe_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/registration-operator-rhel8@sha256:3af327313fd9f77ada1516cb8e5c237476efd08aa43cb2005d40a252c9bd83fe_s390x" + }, + "product_reference": "multicluster-engine/registration-operator-rhel8@sha256:3af327313fd9f77ada1516cb8e5c237476efd08aa43cb2005d40a252c9bd83fe_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/registration-operator-rhel8@sha256:62442255e121f82c6eb344c7f8daaacfc526a277bc83437cad21ec8241838ca9_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/registration-operator-rhel8@sha256:62442255e121f82c6eb344c7f8daaacfc526a277bc83437cad21ec8241838ca9_arm64" + }, + "product_reference": "multicluster-engine/registration-operator-rhel8@sha256:62442255e121f82c6eb344c7f8daaacfc526a277bc83437cad21ec8241838ca9_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/registration-operator-rhel8@sha256:da29f38170bda20809a8e0a425762b9af307bd4e0688d30482fe522d16aca869_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/registration-operator-rhel8@sha256:da29f38170bda20809a8e0a425762b9af307bd4e0688d30482fe522d16aca869_amd64" + }, + "product_reference": "multicluster-engine/registration-operator-rhel8@sha256:da29f38170bda20809a8e0a425762b9af307bd4e0688d30482fe522d16aca869_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/registration-rhel8@sha256:29bd20d4c5b6c207282ae3a425f5c4370f25e606ba902a85c27a287eb133b4a4_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/registration-rhel8@sha256:29bd20d4c5b6c207282ae3a425f5c4370f25e606ba902a85c27a287eb133b4a4_amd64" + }, + "product_reference": "multicluster-engine/registration-rhel8@sha256:29bd20d4c5b6c207282ae3a425f5c4370f25e606ba902a85c27a287eb133b4a4_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/registration-rhel8@sha256:5dd673221bdbdff42a494811a88665c846ab5be074961d18aa5131b27e4f717a_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/registration-rhel8@sha256:5dd673221bdbdff42a494811a88665c846ab5be074961d18aa5131b27e4f717a_arm64" + }, + "product_reference": "multicluster-engine/registration-rhel8@sha256:5dd673221bdbdff42a494811a88665c846ab5be074961d18aa5131b27e4f717a_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/registration-rhel8@sha256:625330be6319b0fbec5cc4054d75288ceba25508c51440bc88b54faeebdd27ab_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/registration-rhel8@sha256:625330be6319b0fbec5cc4054d75288ceba25508c51440bc88b54faeebdd27ab_s390x" + }, + "product_reference": "multicluster-engine/registration-rhel8@sha256:625330be6319b0fbec5cc4054d75288ceba25508c51440bc88b54faeebdd27ab_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/registration-rhel8@sha256:70304487c0f82628bcc67ffd48f8bafe12f47340bd5852f9bcc0a05e93a18994_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/registration-rhel8@sha256:70304487c0f82628bcc67ffd48f8bafe12f47340bd5852f9bcc0a05e93a18994_ppc64le" + }, + "product_reference": "multicluster-engine/registration-rhel8@sha256:70304487c0f82628bcc67ffd48f8bafe12f47340bd5852f9bcc0a05e93a18994_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/work-rhel8@sha256:63edddbe908660112c27fc294ca7d95bfada8db7350deed02edc705b630c6e60_arm64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/work-rhel8@sha256:63edddbe908660112c27fc294ca7d95bfada8db7350deed02edc705b630c6e60_arm64" + }, + "product_reference": "multicluster-engine/work-rhel8@sha256:63edddbe908660112c27fc294ca7d95bfada8db7350deed02edc705b630c6e60_arm64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/work-rhel8@sha256:6ac9797c8287580bc67fe2258f45816cba0b87b9d33b877d1b28c291d8f47199_s390x as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/work-rhel8@sha256:6ac9797c8287580bc67fe2258f45816cba0b87b9d33b877d1b28c291d8f47199_s390x" + }, + "product_reference": "multicluster-engine/work-rhel8@sha256:6ac9797c8287580bc67fe2258f45816cba0b87b9d33b877d1b28c291d8f47199_s390x", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/work-rhel8@sha256:a838889415c0b6674c207d1e617c8f8dc54ef9539a5b4efb4b680c4a1497c32e_amd64 as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/work-rhel8@sha256:a838889415c0b6674c207d1e617c8f8dc54ef9539a5b4efb4b680c4a1497c32e_amd64" + }, + "product_reference": "multicluster-engine/work-rhel8@sha256:a838889415c0b6674c207d1e617c8f8dc54ef9539a5b4efb4b680c4a1497c32e_amd64", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "multicluster-engine/work-rhel8@sha256:bceda760fbf7fef7c3d0a5544a1e81756ebe071094032b491bef3c913af70da5_ppc64le as a component of multicluster engine for Kubernetes 2.3 for RHEL 8", + "product_id": "8Base-multicluster-engine-2.3:multicluster-engine/work-rhel8@sha256:bceda760fbf7fef7c3d0a5544a1e81756ebe071094032b491bef3c913af70da5_ppc64le" + }, + "product_reference": "multicluster-engine/work-rhel8@sha256:bceda760fbf7fef7c3d0a5544a1e81756ebe071094032b491bef3c913af70da5_ppc64le", + "relates_to_product_reference": "8Base-multicluster-engine-2.3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.1.1.27-1.el8sat.src as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-0:3.1.1.27-1.el8sat.src" + }, + "product_reference": "foreman-0:3.1.1.27-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-cli-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-cli-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-debug-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-debug-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-ec2-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-gce-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-gce-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-gce-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-journald-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-journald-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-libvirt-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-openstack-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-ovirt-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-postgresql-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-service-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-service-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-telemetry-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-vmware-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.src as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:puppet-agent-0:7.26.0-3.el8sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64 as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:puppet-agent-0:7.26.0-3.el8sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.11.5.6-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:satellite-0:6.11.5.6-1.el8sat.noarch" + }, + "product_reference": "satellite-0:6.11.5.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.11.5.6-1.el8sat.src as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:satellite-0:6.11.5.6-1.el8sat.src" + }, + "product_reference": "satellite-0:6.11.5.6-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.11.5.6-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:satellite-capsule-0:6.11.5.6-1.el8sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.11.5.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.11.5.6-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:satellite-cli-0:6.11.5.6-1.el8sat.noarch" + }, + "product_reference": "satellite-cli-0:6.11.5.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.11.5.6-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:satellite-common-0:6.11.5.6-1.el8sat.noarch" + }, + "product_reference": "satellite-common-0:6.11.5.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.1.1.27-1.el8sat.src as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-0:3.1.1.27-1.el8sat.src" + }, + "product_reference": "foreman-0:3.1.1.27-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-cli-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-cli-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-debug-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-debug-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-ec2-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-gce-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-gce-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-gce-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-journald-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-journald-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-libvirt-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-openstack-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-ovirt-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-postgresql-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-service-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-service-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-telemetry-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-vmware-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.11.5.6-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:satellite-0:6.11.5.6-1.el8sat.noarch" + }, + "product_reference": "satellite-0:6.11.5.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.11.5.6-1.el8sat.src as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:satellite-0:6.11.5.6-1.el8sat.src" + }, + "product_reference": "satellite-0:6.11.5.6-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.11.5.6-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:satellite-capsule-0:6.11.5.6-1.el8sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.11.5.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.11.5.6-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:satellite-cli-0:6.11.5.6-1.el8sat.noarch" + }, + "product_reference": "satellite-cli-0:6.11.5.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.11.5.6-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:satellite-common-0:6.11.5.6-1.el8sat.noarch" + }, + "product_reference": "satellite-common-0:6.11.5.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.1.1.27-1.el8sat.src as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-0:3.1.1.27-1.el8sat.src" + }, + "product_reference": "foreman-0:3.1.1.27-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-cli-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-cli-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-debug-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-debug-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-ec2-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-gce-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-gce-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-gce-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-journald-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-journald-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-libvirt-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-openstack-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-ovirt-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-postgresql-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-service-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-service-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-telemetry-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-vmware-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.src as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:puppet-agent-0:7.26.0-3.el8sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64 as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:puppet-agent-0:7.26.0-3.el8sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-git-0:1.18.0-0.1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:rubygem-git-0:1.18.0-0.1.el8sat.noarch" + }, + "product_reference": "rubygem-git-0:1.18.0-0.1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-git-0:1.18.0-0.1.el8sat.src as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:rubygem-git-0:1.18.0-0.1.el8sat.src" + }, + "product_reference": "rubygem-git-0:1.18.0-0.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rchardet-0:1.8.0-0.1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:rubygem-rchardet-0:1.8.0-0.1.el8sat.noarch" + }, + "product_reference": "rubygem-rchardet-0:1.8.0-0.1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rchardet-0:1.8.0-0.1.el8sat.src as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:rubygem-rchardet-0:1.8.0-0.1.el8sat.src" + }, + "product_reference": "rubygem-rchardet-0:1.8.0-0.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-safemode-0:1.3.8-0.1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:rubygem-safemode-0:1.3.8-0.1.el8sat.noarch" + }, + "product_reference": "rubygem-safemode-0:1.3.8-0.1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-safemode-0:1.3.8-0.1.el8sat.src as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:rubygem-safemode-0:1.3.8-0.1.el8sat.src" + }, + "product_reference": "rubygem-safemode-0:1.3.8-0.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.11.5.6-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:satellite-0:6.11.5.6-1.el8sat.noarch" + }, + "product_reference": "satellite-0:6.11.5.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.11.5.6-1.el8sat.src as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:satellite-0:6.11.5.6-1.el8sat.src" + }, + "product_reference": "satellite-0:6.11.5.6-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.11.5.6-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:satellite-capsule-0:6.11.5.6-1.el8sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.11.5.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.11.5.6-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:satellite-cli-0:6.11.5.6-1.el8sat.noarch" + }, + "product_reference": "satellite-cli-0:6.11.5.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.11.5.6-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:satellite-common-0:6.11.5.6-1.el8sat.noarch" + }, + "product_reference": "satellite-common-0:6.11.5.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src" + }, + "product_reference": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64 as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64" + }, + "product_reference": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.3.0.23-1.el8sat.src as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-0:3.3.0.23-1.el8sat.src" + }, + "product_reference": "foreman-0:3.3.0.23-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-cli-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-cli-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-debug-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-debug-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-ec2-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-gce-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-gce-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-gce-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-journald-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-journald-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-libvirt-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-openstack-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-ovirt-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-postgresql-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-service-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-service-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-telemetry-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-vmware-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.src as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:puppet-agent-0:7.26.0-3.el8sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64 as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:puppet-agent-0:7.26.0-3.el8sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.12.5.2-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:satellite-0:6.12.5.2-1.el8sat.noarch" + }, + "product_reference": "satellite-0:6.12.5.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.12.5.2-1.el8sat.src as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:satellite-0:6.12.5.2-1.el8sat.src" + }, + "product_reference": "satellite-0:6.12.5.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.12.5.2-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:satellite-capsule-0:6.12.5.2-1.el8sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.12.5.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.12.5.2-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:satellite-cli-0:6.12.5.2-1.el8sat.noarch" + }, + "product_reference": "satellite-cli-0:6.12.5.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.12.5.2-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:satellite-common-0:6.12.5.2-1.el8sat.noarch" + }, + "product_reference": "satellite-common-0:6.12.5.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.3.0.23-1.el8sat.src as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-0:3.3.0.23-1.el8sat.src" + }, + "product_reference": "foreman-0:3.3.0.23-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-cli-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-cli-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-debug-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-debug-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-ec2-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-gce-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-gce-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-gce-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-journald-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-journald-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-libvirt-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-openstack-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-ovirt-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-postgresql-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-service-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-service-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-telemetry-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-vmware-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.12.5.2-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:satellite-0:6.12.5.2-1.el8sat.noarch" + }, + "product_reference": "satellite-0:6.12.5.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.12.5.2-1.el8sat.src as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:satellite-0:6.12.5.2-1.el8sat.src" + }, + "product_reference": "satellite-0:6.12.5.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.12.5.2-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:satellite-capsule-0:6.12.5.2-1.el8sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.12.5.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.12.5.2-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:satellite-cli-0:6.12.5.2-1.el8sat.noarch" + }, + "product_reference": "satellite-cli-0:6.12.5.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.12.5.2-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:satellite-common-0:6.12.5.2-1.el8sat.noarch" + }, + "product_reference": "satellite-common-0:6.12.5.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.3.0.23-1.el8sat.src as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-0:3.3.0.23-1.el8sat.src" + }, + "product_reference": "foreman-0:3.3.0.23-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-cli-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-cli-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-debug-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-debug-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-ec2-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-gce-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-gce-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-gce-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-journald-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-journald-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-libvirt-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-openstack-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-ovirt-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-postgresql-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-service-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-service-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-telemetry-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-vmware-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.src as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:puppet-agent-0:7.26.0-3.el8sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64 as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:puppet-agent-0:7.26.0-3.el8sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-git-0:1.18.0-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:rubygem-git-0:1.18.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-git-0:1.18.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-git-0:1.18.0-1.el8sat.src as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:rubygem-git-0:1.18.0-1.el8sat.src" + }, + "product_reference": "rubygem-git-0:1.18.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-safemode-0:1.3.8-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:rubygem-safemode-0:1.3.8-1.el8sat.noarch" + }, + "product_reference": "rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-safemode-0:1.3.8-1.el8sat.src as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:rubygem-safemode-0:1.3.8-1.el8sat.src" + }, + "product_reference": "rubygem-safemode-0:1.3.8-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.12.5.2-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:satellite-0:6.12.5.2-1.el8sat.noarch" + }, + "product_reference": "satellite-0:6.12.5.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.12.5.2-1.el8sat.src as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:satellite-0:6.12.5.2-1.el8sat.src" + }, + "product_reference": "satellite-0:6.12.5.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.12.5.2-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:satellite-capsule-0:6.12.5.2-1.el8sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.12.5.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.12.5.2-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:satellite-cli-0:6.12.5.2-1.el8sat.noarch" + }, + "product_reference": "satellite-cli-0:6.12.5.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.12.5.2-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:satellite-common-0:6.12.5.2-1.el8sat.noarch" + }, + "product_reference": "satellite-common-0:6.12.5.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src" + }, + "product_reference": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64 as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64" + }, + "product_reference": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.5.1.23-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-0:3.5.1.23-1.el8sat.src" + }, + "product_reference": "foreman-0:3.5.1.23-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-cli-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-cli-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-debug-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-debug-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-dynflow-sidekiq-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-ec2-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-installer-1:3.5.2.4-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-installer-1:3.5.2.4-1.el8sat.noarch" + }, + "product_reference": "foreman-installer-1:3.5.2.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-installer-1:3.5.2.4-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-installer-1:3.5.2.4-1.el8sat.src" + }, + "product_reference": "foreman-installer-1:3.5.2.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-installer-katello-1:3.5.2.4-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-installer-katello-1:3.5.2.4-1.el8sat.noarch" + }, + "product_reference": "foreman-installer-katello-1:3.5.2.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-journald-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-journald-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-libvirt-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-openstack-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-ovirt-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-postgresql-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-service-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-service-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-telemetry-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-vmware-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "pulpcore-selinux-0:1.3.3-1.el8pc.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:pulpcore-selinux-0:1.3.3-1.el8pc.src" + }, + "product_reference": "pulpcore-selinux-0:1.3.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "pulpcore-selinux-0:1.3.3-1.el8pc.x86_64 as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:pulpcore-selinux-0:1.3.3-1.el8pc.x86_64" + }, + "product_reference": "pulpcore-selinux-0:1.3.3-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:puppet-agent-0:7.26.0-3.el8sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64 as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:puppet-agent-0:7.26.0-3.el8sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-0:3.2.21-1.el8pc.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:python-django-0:3.2.21-1.el8pc.src" + }, + "product_reference": "python-django-0:3.2.21-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-gitpython-0:3.1.32-1.el8pc.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:python-gitpython-0:3.1.32-1.el8pc.src" + }, + "product_reference": "python-gitpython-0:3.1.32-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulpcore-0:3.21.18-1.el8pc.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:python-pulpcore-0:3.21.18-1.el8pc.src" + }, + "product_reference": "python-pulpcore-0:3.21.18-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-0:3.2.21-1.el8pc.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:python39-django-0:3.2.21-1.el8pc.noarch" + }, + "product_reference": "python39-django-0:3.2.21-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-gitpython-0:3.1.32-1.el8pc.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:python39-gitpython-0:3.1.32-1.el8pc.noarch" + }, + "product_reference": "python39-gitpython-0:3.1.32-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulpcore-0:3.21.18-1.el8pc.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:python39-pulpcore-0:3.21.18-1.el8pc.noarch" + }, + "product_reference": "python39-pulpcore-0:3.21.18-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_maintain-1:1.2.12-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:rubygem-foreman_maintain-1:1.2.12-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_maintain-1:1.2.12-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_maintain-1:1.2.12-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:rubygem-foreman_maintain-1:1.2.12-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_maintain-1:1.2.12-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.13.5-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:satellite-0:6.13.5-1.el8sat.noarch" + }, + "product_reference": "satellite-0:6.13.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.13.5-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:satellite-0:6.13.5-1.el8sat.src" + }, + "product_reference": "satellite-0:6.13.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.13.5-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:satellite-capsule-0:6.13.5-1.el8sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.13.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.13.5-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:satellite-cli-0:6.13.5-1.el8sat.noarch" + }, + "product_reference": "satellite-cli-0:6.13.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.13.5-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:satellite-common-0:6.13.5-1.el8sat.noarch" + }, + "product_reference": "satellite-common-0:6.13.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_maintain-1:1.2.12-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-maintenance:rubygem-foreman_maintain-1:1.2.12-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_maintain-1:1.2.12-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-maintenance" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_maintain-1:1.2.12-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-maintenance:rubygem-foreman_maintain-1:1.2.12-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_maintain-1:1.2.12-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13-maintenance" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.5.1.23-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-0:3.5.1.23-1.el8sat.src" + }, + "product_reference": "foreman-0:3.5.1.23-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-cli-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-cli-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-debug-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-debug-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-dynflow-sidekiq-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-ec2-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-journald-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-journald-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-libvirt-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-openstack-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-ovirt-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-postgresql-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-service-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-service-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-telemetry-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-vmware-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.13.5-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:satellite-0:6.13.5-1.el8sat.noarch" + }, + "product_reference": "satellite-0:6.13.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.13.5-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:satellite-0:6.13.5-1.el8sat.src" + }, + "product_reference": "satellite-0:6.13.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.13.5-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:satellite-capsule-0:6.13.5-1.el8sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.13.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.13.5-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:satellite-cli-0:6.13.5-1.el8sat.noarch" + }, + "product_reference": "satellite-cli-0:6.13.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.13.5-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:satellite-common-0:6.13.5-1.el8sat.noarch" + }, + "product_reference": "satellite-common-0:6.13.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.5.1.23-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-0:3.5.1.23-1.el8sat.src" + }, + "product_reference": "foreman-0:3.5.1.23-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-cli-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-cli-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-debug-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-debug-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-dynflow-sidekiq-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-ec2-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-installer-1:3.5.2.4-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-installer-1:3.5.2.4-1.el8sat.noarch" + }, + "product_reference": "foreman-installer-1:3.5.2.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-installer-1:3.5.2.4-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-installer-1:3.5.2.4-1.el8sat.src" + }, + "product_reference": "foreman-installer-1:3.5.2.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-installer-katello-1:3.5.2.4-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-installer-katello-1:3.5.2.4-1.el8sat.noarch" + }, + "product_reference": "foreman-installer-katello-1:3.5.2.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-journald-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-journald-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-libvirt-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-openstack-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-ovirt-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-postgresql-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-service-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-service-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-telemetry-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.5.1.23-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-vmware-0:3.5.1.23-1.el8sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.5.1.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "pulpcore-selinux-0:1.3.3-1.el8pc.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:pulpcore-selinux-0:1.3.3-1.el8pc.src" + }, + "product_reference": "pulpcore-selinux-0:1.3.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "pulpcore-selinux-0:1.3.3-1.el8pc.x86_64 as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:pulpcore-selinux-0:1.3.3-1.el8pc.x86_64" + }, + "product_reference": "pulpcore-selinux-0:1.3.3-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:puppet-agent-0:7.26.0-3.el8sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64 as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:puppet-agent-0:7.26.0-3.el8sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-0:3.2.21-1.el8pc.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:python-django-0:3.2.21-1.el8pc.src" + }, + "product_reference": "python-django-0:3.2.21-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-gitpython-0:3.1.32-1.el8pc.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:python-gitpython-0:3.1.32-1.el8pc.src" + }, + "product_reference": "python-gitpython-0:3.1.32-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulpcore-0:3.21.18-1.el8pc.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:python-pulpcore-0:3.21.18-1.el8pc.src" + }, + "product_reference": "python-pulpcore-0:3.21.18-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-0:3.2.21-1.el8pc.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:python39-django-0:3.2.21-1.el8pc.noarch" + }, + "product_reference": "python39-django-0:3.2.21-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-gitpython-0:3.1.32-1.el8pc.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:python39-gitpython-0:3.1.32-1.el8pc.noarch" + }, + "product_reference": "python39-gitpython-0:3.1.32-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulpcore-0:3.21.18-1.el8pc.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:python39-pulpcore-0:3.21.18-1.el8pc.noarch" + }, + "product_reference": "python39-pulpcore-0:3.21.18-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_maintain-1:1.2.12-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:rubygem-foreman_maintain-1:1.2.12-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_maintain-1:1.2.12-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_maintain-1:1.2.12-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:rubygem-foreman_maintain-1:1.2.12-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_maintain-1:1.2.12-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_rh_cloud-0:7.0.48-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:rubygem-foreman_rh_cloud-0:7.0.48-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_rh_cloud-0:7.0.48-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_rh_cloud-0:7.0.48-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:rubygem-foreman_rh_cloud-0:7.0.48-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_rh_cloud-0:7.0.48-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_theme_satellite-0:11.0.0.6-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:rubygem-foreman_theme_satellite-0:11.0.0.6-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_theme_satellite-0:11.0.0.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_theme_satellite-0:11.0.0.6-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:rubygem-foreman_theme_satellite-0:11.0.0.6-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_theme_satellite-0:11.0.0.6-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-git-0:1.18.0-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:rubygem-git-0:1.18.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-git-0:1.18.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-git-0:1.18.0-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:rubygem-git-0:1.18.0-1.el8sat.src" + }, + "product_reference": "rubygem-git-0:1.18.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-katello-0:4.7.0.33-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:rubygem-katello-0:4.7.0.33-1.el8sat.noarch" + }, + "product_reference": "rubygem-katello-0:4.7.0.33-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-katello-0:4.7.0.33-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:rubygem-katello-0:4.7.0.33-1.el8sat.src" + }, + "product_reference": "rubygem-katello-0:4.7.0.33-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.13.5-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:satellite-0:6.13.5-1.el8sat.noarch" + }, + "product_reference": "satellite-0:6.13.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.13.5-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:satellite-0:6.13.5-1.el8sat.src" + }, + "product_reference": "satellite-0:6.13.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.13.5-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:satellite-capsule-0:6.13.5-1.el8sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.13.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.13.5-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:satellite-cli-0:6.13.5-1.el8sat.noarch" + }, + "product_reference": "satellite-cli-0:6.13.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.13.5-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:satellite-common-0:6.13.5-1.el8sat.noarch" + }, + "product_reference": "satellite-common-0:6.13.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src" + }, + "product_reference": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64 as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64" + }, + "product_reference": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.noarch" + }, + "product_reference": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.src" + }, + "product_reference": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.src" + }, + "product_reference": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-lint-0:5.0.8-4.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ansible-lint-0:5.0.8-4.el8pc.noarch" + }, + "product_reference": "ansible-lint-0:5.0.8-4.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-lint-0:5.0.8-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ansible-lint-0:5.0.8-4.el8pc.src" + }, + "product_reference": "ansible-lint-0:5.0.8-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-runner-0:2.2.1-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ansible-runner-0:2.2.1-3.el8sat.noarch" + }, + "product_reference": "ansible-runner-0:2.2.1-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-runner-0:2.2.1-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ansible-runner-0:2.2.1-3.el8sat.src" + }, + "product_reference": "ansible-runner-0:2.2.1-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.noarch" + }, + "product_reference": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.src" + }, + "product_reference": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansiblerole-insights-client-0:1.7.1-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ansiblerole-insights-client-0:1.7.1-2.el8sat.noarch" + }, + "product_reference": "ansiblerole-insights-client-0:1.7.1-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansiblerole-insights-client-0:1.7.1-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ansiblerole-insights-client-0:1.7.1-2.el8sat.src" + }, + "product_reference": "ansiblerole-insights-client-0:1.7.1-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cjson-0:1.7.14-5.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:cjson-0:1.7.14-5.el8sat.src" + }, + "product_reference": "cjson-0:1.7.14-5.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cjson-0:1.7.14-5.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:cjson-0:1.7.14-5.el8sat.x86_64" + }, + "product_reference": "cjson-0:1.7.14-5.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cjson-debuginfo-0:1.7.14-5.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:cjson-debuginfo-0:1.7.14-5.el8sat.x86_64" + }, + "product_reference": "cjson-debuginfo-0:1.7.14-5.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cjson-debugsource-0:1.7.14-5.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:cjson-debugsource-0:1.7.14-5.el8sat.x86_64" + }, + "product_reference": "cjson-debugsource-0:1.7.14-5.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "createrepo_c-0:0.20.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:createrepo_c-0:0.20.1-1.el8pc.src" + }, + "product_reference": "createrepo_c-0:0.20.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "createrepo_c-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:createrepo_c-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "createrepo_c-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "createrepo_c-debugsource-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:createrepo_c-debugsource-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "createrepo_c-debugsource-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "createrepo_c-libs-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:createrepo_c-libs-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "createrepo_c-libs-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "createrepo_c-libs-debuginfo-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:createrepo_c-libs-debuginfo-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "createrepo_c-libs-debuginfo-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dynflow-utils-0:1.6.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:dynflow-utils-0:1.6.3-1.el8sat.src" + }, + "product_reference": "dynflow-utils-0:1.6.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dynflow-utils-0:1.6.3-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:dynflow-utils-0:1.6.3-1.el8sat.x86_64" + }, + "product_reference": "dynflow-utils-0:1.6.3-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.7.0.9-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-0:3.7.0.9-1.el8sat.src" + }, + "product_reference": "foreman-0:3.7.0.9-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-bootloaders-redhat-0:202102220000-1.el8sat.noarch" + }, + "product_reference": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-bootloaders-redhat-0:202102220000-1.el8sat.src" + }, + "product_reference": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-bootloaders-redhat-tftpboot-0:202102220000-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-bootloaders-redhat-tftpboot-0:202102220000-1.el8sat.noarch" + }, + "product_reference": "foreman-bootloaders-redhat-tftpboot-0:202102220000-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-cli-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-cli-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-debug-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-debug-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-discovery-image-1:4.1.0-10.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-discovery-image-1:4.1.0-10.el8sat.noarch" + }, + "product_reference": "foreman-discovery-image-1:4.1.0-10.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-discovery-image-1:4.1.0-10.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-discovery-image-1:4.1.0-10.el8sat.src" + }, + "product_reference": "foreman-discovery-image-1:4.1.0-10.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-discovery-image-service-0:1.0.0-4.1.el8sat.src" + }, + "product_reference": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-discovery-image-service-0:1.0.0-4.1.el8sat.x86_64" + }, + "product_reference": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-discovery-image-service-tui-0:1.0.0-4.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-discovery-image-service-tui-0:1.0.0-4.1.el8sat.x86_64" + }, + "product_reference": "foreman-discovery-image-service-tui-0:1.0.0-4.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-ec2-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-installer-1:3.7.0.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-installer-1:3.7.0.4-1.el8sat.noarch" + }, + "product_reference": "foreman-installer-1:3.7.0.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-installer-1:3.7.0.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-installer-1:3.7.0.4-1.el8sat.src" + }, + "product_reference": "foreman-installer-1:3.7.0.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-installer-katello-1:3.7.0.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-installer-katello-1:3.7.0.4-1.el8sat.noarch" + }, + "product_reference": "foreman-installer-katello-1:3.7.0.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-journald-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-journald-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-libvirt-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-openstack-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-ovirt-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-postgresql-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-proxy-0:3.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-proxy-0:3.7.0-1.el8sat.noarch" + }, + "product_reference": "foreman-proxy-0:3.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-proxy-0:3.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-proxy-0:3.7.0-1.el8sat.src" + }, + "product_reference": "foreman-proxy-0:3.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-proxy-content-0:4.9.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-proxy-content-0:4.9.0-1.el8sat.noarch" + }, + "product_reference": "foreman-proxy-content-0:4.9.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-proxy-journald-0:3.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-proxy-journald-0:3.7.0-1.el8sat.noarch" + }, + "product_reference": "foreman-proxy-journald-0:3.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-redis-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-redis-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-redis-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-service-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-service-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-telemetry-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-vmware-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-0:4.9.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:katello-0:4.9.0-1.el8sat.noarch" + }, + "product_reference": "katello-0:4.9.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-0:4.9.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:katello-0:4.9.0-1.el8sat.src" + }, + "product_reference": "katello-0:4.9.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-certs-tools-0:2.9.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:katello-certs-tools-0:2.9.0-2.el8sat.noarch" + }, + "product_reference": "katello-certs-tools-0:2.9.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-certs-tools-0:2.9.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:katello-certs-tools-0:2.9.0-2.el8sat.src" + }, + "product_reference": "katello-certs-tools-0:2.9.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-client-bootstrap-0:1.7.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:katello-client-bootstrap-0:1.7.9-1.el8sat.noarch" + }, + "product_reference": "katello-client-bootstrap-0:1.7.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-client-bootstrap-0:1.7.9-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:katello-client-bootstrap-0:1.7.9-1.el8sat.src" + }, + "product_reference": "katello-client-bootstrap-0:1.7.9-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-common-0:4.9.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:katello-common-0:4.9.0-1.el8sat.noarch" + }, + "product_reference": "katello-common-0:4.9.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-debug-0:4.9.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:katello-debug-0:4.9.0-1.el8sat.noarch" + }, + "product_reference": "katello-debug-0:4.9.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libcomps-0:0.1.18-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libcomps-0:0.1.18-4.el8pc.src" + }, + "product_reference": "libcomps-0:0.1.18-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libcomps-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libcomps-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "libcomps-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libcomps-debugsource-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libcomps-debugsource-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "libcomps-debugsource-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-cxx-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libdb-cxx-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-cxx-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-cxx-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libdb-cxx-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-cxx-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libdb-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-debugsource-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libdb-debugsource-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-debugsource-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-java-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libdb-java-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-java-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-sql-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libdb-sql-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-sql-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-sql-devel-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libdb-sql-devel-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-sql-devel-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-tcl-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libdb-tcl-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-tcl-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-utils-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libdb-utils-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-utils-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsodium-0:1.0.17-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libsodium-0:1.0.17-3.el8sat.src" + }, + "product_reference": "libsodium-0:1.0.17-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsodium-0:1.0.17-3.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libsodium-0:1.0.17-3.el8sat.x86_64" + }, + "product_reference": "libsodium-0:1.0.17-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsodium-debuginfo-0:1.0.17-3.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libsodium-debuginfo-0:1.0.17-3.el8sat.x86_64" + }, + "product_reference": "libsodium-debuginfo-0:1.0.17-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsodium-debugsource-0:1.0.17-3.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libsodium-debugsource-0:1.0.17-3.el8sat.x86_64" + }, + "product_reference": "libsodium-debugsource-0:1.0.17-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsolv-0:0.7.22-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libsolv-0:0.7.22-4.el8pc.src" + }, + "product_reference": "libsolv-0:0.7.22-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsolv-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libsolv-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "libsolv-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsolv-debuginfo-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libsolv-debuginfo-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "libsolv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsolv-debugsource-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libsolv-debugsource-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "libsolv-debugsource-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsolv-demo-debuginfo-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libsolv-demo-debuginfo-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "libsolv-demo-debuginfo-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsolv-tools-debuginfo-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libsolv-tools-debuginfo-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "libsolv-tools-debuginfo-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libwebsockets-0:2.4.2-2.el8.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libwebsockets-0:2.4.2-2.el8.src" + }, + "product_reference": "libwebsockets-0:2.4.2-2.el8.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libwebsockets-0:2.4.2-2.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libwebsockets-0:2.4.2-2.el8.x86_64" + }, + "product_reference": "libwebsockets-0:2.4.2-2.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libwebsockets-debuginfo-0:2.4.2-2.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libwebsockets-debuginfo-0:2.4.2-2.el8.x86_64" + }, + "product_reference": "libwebsockets-debuginfo-0:2.4.2-2.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libwebsockets-debugsource-0:2.4.2-2.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libwebsockets-debugsource-0:2.4.2-2.el8.x86_64" + }, + "product_reference": "libwebsockets-debugsource-0:2.4.2-2.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libwebsockets-tests-debuginfo-0:2.4.2-2.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libwebsockets-tests-debuginfo-0:2.4.2-2.el8.x86_64" + }, + "product_reference": "libwebsockets-tests-debuginfo-0:2.4.2-2.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mosquitto-0:2.0.14-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:mosquitto-0:2.0.14-1.el8sat.src" + }, + "product_reference": "mosquitto-0:2.0.14-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mosquitto-0:2.0.14-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:mosquitto-0:2.0.14-1.el8sat.x86_64" + }, + "product_reference": "mosquitto-0:2.0.14-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mosquitto-debuginfo-0:2.0.14-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:mosquitto-debuginfo-0:2.0.14-1.el8sat.x86_64" + }, + "product_reference": "mosquitto-debuginfo-0:2.0.14-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mosquitto-debugsource-0:2.0.14-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:mosquitto-debugsource-0:2.0.14-1.el8sat.x86_64" + }, + "product_reference": "mosquitto-debugsource-0:2.0.14-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "pulpcore-selinux-0:1.3.3-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:pulpcore-selinux-0:1.3.3-1.el8pc.src" + }, + "product_reference": "pulpcore-selinux-0:1.3.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "pulpcore-selinux-0:1.3.3-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:pulpcore-selinux-0:1.3.3-1.el8pc.x86_64" + }, + "product_reference": "pulpcore-selinux-0:1.3.3-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:puppet-agent-0:7.26.0-3.el8sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:puppet-agent-0:7.26.0-3.el8sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-oauth-0:0.5.10-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:puppet-agent-oauth-0:0.5.10-1.el8sat.noarch" + }, + "product_reference": "puppet-agent-oauth-0:0.5.10-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-oauth-0:0.5.10-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:puppet-agent-oauth-0:0.5.10-1.el8sat.src" + }, + "product_reference": "puppet-agent-oauth-0:0.5.10-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:puppet-foreman_scap_client-0:0.4.0-1.el8sat.noarch" + }, + "product_reference": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:puppet-foreman_scap_client-0:0.4.0-1.el8sat.src" + }, + "product_reference": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppetlabs-stdlib-0:5.2.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:puppetlabs-stdlib-0:5.2.0-1.el8sat.noarch" + }, + "product_reference": "puppetlabs-stdlib-0:5.2.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppetlabs-stdlib-0:5.2.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:puppetlabs-stdlib-0:5.2.0-1.el8sat.src" + }, + "product_reference": "puppetlabs-stdlib-0:5.2.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppetserver-0:7.11.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:puppetserver-0:7.11.0-1.el8sat.noarch" + }, + "product_reference": "puppetserver-0:7.11.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppetserver-0:7.11.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:puppetserver-0:7.11.0-1.el8sat.src" + }, + "product_reference": "puppetserver-0:7.11.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aiodns-0:3.0.0-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-aiodns-0:3.0.0-3.el8pc.src" + }, + "product_reference": "python-aiodns-0:3.0.0-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aiofiles-0:22.1.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-aiofiles-0:22.1.0-1.el8pc.src" + }, + "product_reference": "python-aiofiles-0:22.1.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aiohttp-0:3.8.3-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-aiohttp-0:3.8.3-2.el8pc.src" + }, + "product_reference": "python-aiohttp-0:3.8.3-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aiohttp-debugsource-0:3.8.3-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-aiohttp-debugsource-0:3.8.3-2.el8pc.x86_64" + }, + "product_reference": "python-aiohttp-debugsource-0:3.8.3-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aiohttp-xmlrpc-0:1.5.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-aiohttp-xmlrpc-0:1.5.0-2.el8pc.src" + }, + "product_reference": "python-aiohttp-xmlrpc-0:1.5.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aioredis-0:2.0.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-aioredis-0:2.0.1-2.el8pc.src" + }, + "product_reference": "python-aioredis-0:2.0.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aiosignal-0:1.3.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-aiosignal-0:1.3.1-1.el8pc.src" + }, + "product_reference": "python-aiosignal-0:1.3.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ansible-builder-0:1.0.1-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-ansible-builder-0:1.0.1-4.el8pc.src" + }, + "product_reference": "python-ansible-builder-0:1.0.1-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-asgiref-0:3.6.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-asgiref-0:3.6.0-1.el8pc.src" + }, + "product_reference": "python-asgiref-0:3.6.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-async-lru-0:1.0.3-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-async-lru-0:1.0.3-1.el8pc.src" + }, + "product_reference": "python-async-lru-0:1.0.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-async-timeout-0:4.0.2-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-async-timeout-0:4.0.2-2.el8pc.src" + }, + "product_reference": "python-async-timeout-0:4.0.2-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-asyncio-throttle-0:1.0.2-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-asyncio-throttle-0:1.0.2-3.el8pc.src" + }, + "product_reference": "python-asyncio-throttle-0:1.0.2-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-attrs-0:21.4.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-attrs-0:21.4.0-2.el8pc.src" + }, + "product_reference": "python-attrs-0:21.4.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-backoff-0:2.2.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-backoff-0:2.2.1-1.el8pc.src" + }, + "product_reference": "python-backoff-0:2.2.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-bindep-0:2.11.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-bindep-0:2.11.0-2.el8pc.src" + }, + "product_reference": "python-bindep-0:2.11.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-bleach-0:3.3.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-bleach-0:3.3.1-2.el8pc.src" + }, + "product_reference": "python-bleach-0:3.3.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-bleach-allowlist-0:1.0.3-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-bleach-allowlist-0:1.0.3-3.el8pc.src" + }, + "product_reference": "python-bleach-allowlist-0:1.0.3-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-bracex-0:2.2.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-bracex-0:2.2.1-2.el8pc.src" + }, + "product_reference": "python-bracex-0:2.2.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-brotli-0:1.0.9-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-brotli-0:1.0.9-2.el8pc.src" + }, + "product_reference": "python-brotli-0:1.0.9-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-brotli-debugsource-0:1.0.9-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-brotli-debugsource-0:1.0.9-2.el8pc.x86_64" + }, + "product_reference": "python-brotli-debugsource-0:1.0.9-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cchardet-0:2.1.7-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-cchardet-0:2.1.7-4.el8pc.src" + }, + "product_reference": "python-cchardet-0:2.1.7-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cchardet-debugsource-0:2.1.7-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-cchardet-debugsource-0:2.1.7-4.el8pc.x86_64" + }, + "product_reference": "python-cchardet-debugsource-0:2.1.7-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-certifi-0:2022.12.7-1.1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-certifi-0:2022.12.7-1.1.el8pc.src" + }, + "product_reference": "python-certifi-0:2022.12.7-1.1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cffi-0:1.15.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-cffi-0:1.15.1-1.el8pc.src" + }, + "product_reference": "python-cffi-0:1.15.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cffi-debugsource-0:1.15.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-cffi-debugsource-0:1.15.1-1.el8pc.x86_64" + }, + "product_reference": "python-cffi-debugsource-0:1.15.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-chardet-0:5.0.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-chardet-0:5.0.0-1.el8pc.src" + }, + "product_reference": "python-chardet-0:5.0.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-charset-normalizer-0:2.1.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-charset-normalizer-0:2.1.1-1.el8pc.src" + }, + "product_reference": "python-charset-normalizer-0:2.1.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-click-0:8.1.3-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-click-0:8.1.3-1.el8pc.src" + }, + "product_reference": "python-click-0:8.1.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-click-shell-0:2.1-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-click-shell-0:2.1-3.el8pc.src" + }, + "product_reference": "python-click-shell-0:2.1-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-colorama-0:0.4.4-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-colorama-0:0.4.4-3.el8pc.src" + }, + "product_reference": "python-colorama-0:0.4.4-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-commonmark-0:0.9.1-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-commonmark-0:0.9.1-5.el8pc.src" + }, + "product_reference": "python-commonmark-0:0.9.1-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-contextlib2-0:21.6.0-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-contextlib2-0:21.6.0-3.el8pc.src" + }, + "product_reference": "python-contextlib2-0:21.6.0-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cryptography-0:38.0.4-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-cryptography-0:38.0.4-1.el8pc.src" + }, + "product_reference": "python-cryptography-0:38.0.4-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cryptography-debugsource-0:38.0.4-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-cryptography-debugsource-0:38.0.4-1.el8pc.x86_64" + }, + "product_reference": "python-cryptography-debugsource-0:38.0.4-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-daemon-0:2.3.1-1.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-daemon-0:2.3.1-1.1.el8sat.src" + }, + "product_reference": "python-daemon-0:2.3.1-1.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-dataclasses-0:0.8-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-dataclasses-0:0.8-3.el8pc.src" + }, + "product_reference": "python-dataclasses-0:0.8-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-dateutil-0:2.8.2-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-dateutil-0:2.8.2-2.el8pc.src" + }, + "product_reference": "python-dateutil-0:2.8.2-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-debian-0:0.1.44-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-debian-0:0.1.44-3.el8pc.src" + }, + "product_reference": "python-debian-0:0.1.44-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-defusedxml-0:0.7.1-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-defusedxml-0:0.7.1-3.el8pc.src" + }, + "product_reference": "python-defusedxml-0:0.7.1-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-deprecated-0:1.2.13-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-deprecated-0:1.2.13-1.el8pc.src" + }, + "product_reference": "python-deprecated-0:1.2.13-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-diff-match-patch-0:20200713-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-diff-match-patch-0:20200713-3.el8pc.src" + }, + "product_reference": "python-diff-match-patch-0:20200713-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-distro-0:1.7.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-distro-0:1.7.0-1.el8pc.src" + }, + "product_reference": "python-distro-0:1.7.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-0:3.2.21-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-django-0:3.2.21-1.el8pc.src" + }, + "product_reference": "python-django-0:3.2.21-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-currentuser-0:0.5.3-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-django-currentuser-0:0.5.3-5.el8pc.src" + }, + "product_reference": "python-django-currentuser-0:0.5.3-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-filter-0:22.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-django-filter-0:22.1-2.el8pc.src" + }, + "product_reference": "python-django-filter-0:22.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-guid-0:3.3.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-django-guid-0:3.3.0-1.el8pc.src" + }, + "product_reference": "python-django-guid-0:3.3.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-import-export-0:3.0.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-django-import-export-0:3.0.2-1.el8pc.src" + }, + "product_reference": "python-django-import-export-0:3.0.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-lifecycle-0:1.0.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-django-lifecycle-0:1.0.0-1.el8pc.src" + }, + "product_reference": "python-django-lifecycle-0:1.0.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-readonly-field-0:1.1.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-django-readonly-field-0:1.1.2-1.el8pc.src" + }, + "product_reference": "python-django-readonly-field-0:1.1.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-djangorestframework-0:3.14.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-djangorestframework-0:3.14.0-1.el8pc.src" + }, + "product_reference": "python-djangorestframework-0:3.14.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-djangorestframework-queryfields-0:1.0.0-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-djangorestframework-queryfields-0:1.0.0-5.el8pc.src" + }, + "product_reference": "python-djangorestframework-queryfields-0:1.0.0-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-docutils-0:0.19-1.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-docutils-0:0.19-1.1.el8sat.src" + }, + "product_reference": "python-docutils-0:0.19-1.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-drf-access-policy-0:1.3.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-drf-access-policy-0:1.3.0-1.el8pc.src" + }, + "product_reference": "python-drf-access-policy-0:1.3.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-drf-nested-routers-0:0.93.4-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-drf-nested-routers-0:0.93.4-3.el8pc.src" + }, + "product_reference": "python-drf-nested-routers-0:0.93.4-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-drf-spectacular-0:0.25.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-drf-spectacular-0:0.25.0-1.el8pc.src" + }, + "product_reference": "python-drf-spectacular-0:0.25.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-dynaconf-0:3.1.11-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-dynaconf-0:3.1.11-1.el8pc.src" + }, + "product_reference": "python-dynaconf-0:3.1.11-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ecdsa-0:0.18.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-ecdsa-0:0.18.0-1.el8pc.src" + }, + "product_reference": "python-ecdsa-0:0.18.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-enrich-0:1.2.6-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-enrich-0:1.2.6-5.el8pc.src" + }, + "product_reference": "python-enrich-0:1.2.6-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-et-xmlfile-0:1.1.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-et-xmlfile-0:1.1.0-2.el8pc.src" + }, + "product_reference": "python-et-xmlfile-0:1.1.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-flake8-0:3.9.2-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-flake8-0:3.9.2-5.el8pc.src" + }, + "product_reference": "python-flake8-0:3.9.2-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-frozenlist-0:1.3.3-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-frozenlist-0:1.3.3-1.el8pc.src" + }, + "product_reference": "python-frozenlist-0:1.3.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-frozenlist-debugsource-0:1.3.3-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-frozenlist-debugsource-0:1.3.3-1.el8pc.x86_64" + }, + "product_reference": "python-frozenlist-debugsource-0:1.3.3-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-future-0:0.18.3-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-future-0:0.18.3-1.el8pc.src" + }, + "product_reference": "python-future-0:0.18.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-galaxy-importer-0:0.4.6-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-galaxy-importer-0:0.4.6-1.el8pc.src" + }, + "product_reference": "python-galaxy-importer-0:0.4.6-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-gitdb-0:4.0.10-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-gitdb-0:4.0.10-1.el8pc.src" + }, + "product_reference": "python-gitdb-0:4.0.10-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-gitpython-0:3.1.32-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-gitpython-0:3.1.32-1.el8pc.src" + }, + "product_reference": "python-gitpython-0:3.1.32-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-gnupg-0:0.5.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-gnupg-0:0.5.0-1.el8pc.src" + }, + "product_reference": "python-gnupg-0:0.5.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-gunicorn-0:20.1.0-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-gunicorn-0:20.1.0-5.el8pc.src" + }, + "product_reference": "python-gunicorn-0:20.1.0-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-idna-0:3.3-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-idna-0:3.3-2.el8pc.src" + }, + "product_reference": "python-idna-0:3.3-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-idna-ssl-0:1.1.0-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-idna-ssl-0:1.1.0-5.el8pc.src" + }, + "product_reference": "python-idna-ssl-0:1.1.0-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-importlib-metadata-0:4.10.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-importlib-metadata-0:4.10.1-2.el8pc.src" + }, + "product_reference": "python-importlib-metadata-0:4.10.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-inflection-0:0.5.1-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-inflection-0:0.5.1-3.el8pc.src" + }, + "product_reference": "python-inflection-0:0.5.1-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-iniparse-0:0.4-35.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-iniparse-0:0.4-35.el8pc.src" + }, + "product_reference": "python-iniparse-0:0.4-35.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-jinja2-0:3.1.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-jinja2-0:3.1.2-1.el8pc.src" + }, + "product_reference": "python-jinja2-0:3.1.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-jsonschema-0:4.9.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-jsonschema-0:4.9.1-1.el8pc.src" + }, + "product_reference": "python-jsonschema-0:4.9.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-lockfile-0:0.12.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-lockfile-0:0.12.2-1.el8sat.src" + }, + "product_reference": "python-lockfile-0:0.12.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-lxml-0:4.9.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-lxml-0:4.9.2-1.el8pc.src" + }, + "product_reference": "python-lxml-0:4.9.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-lxml-debugsource-0:4.9.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-lxml-debugsource-0:4.9.2-1.el8pc.x86_64" + }, + "product_reference": "python-lxml-debugsource-0:4.9.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-markdown-0:3.4.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-markdown-0:3.4.1-1.el8pc.src" + }, + "product_reference": "python-markdown-0:3.4.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-markuppy-0:1.14-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-markuppy-0:1.14-3.el8pc.src" + }, + "product_reference": "python-markuppy-0:1.14-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-markupsafe-0:2.1.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-markupsafe-0:2.1.2-1.el8pc.src" + }, + "product_reference": "python-markupsafe-0:2.1.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-markupsafe-debugsource-0:2.1.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-markupsafe-debugsource-0:2.1.2-1.el8pc.x86_64" + }, + "product_reference": "python-markupsafe-debugsource-0:2.1.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-mccabe-0:0.6.1-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-mccabe-0:0.6.1-3.el8pc.src" + }, + "product_reference": "python-mccabe-0:0.6.1-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-multidict-0:6.0.4-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-multidict-0:6.0.4-1.el8pc.src" + }, + "product_reference": "python-multidict-0:6.0.4-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-multidict-debugsource-0:6.0.4-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-multidict-debugsource-0:6.0.4-1.el8pc.x86_64" + }, + "product_reference": "python-multidict-debugsource-0:6.0.4-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-naya-0:1.1.1-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-naya-0:1.1.1-3.el8pc.src" + }, + "product_reference": "python-naya-0:1.1.1-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-odfpy-0:1.4.1-6.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-odfpy-0:1.4.1-6.el8pc.src" + }, + "product_reference": "python-odfpy-0:1.4.1-6.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-openpyxl-0:3.1.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-openpyxl-0:3.1.0-1.el8pc.src" + }, + "product_reference": "python-openpyxl-0:3.1.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-packaging-0:21.3-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-packaging-0:21.3-1.el8pc.src" + }, + "product_reference": "python-packaging-0:21.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-parsley-0:1.3-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-parsley-0:1.3-2.el8pc.src" + }, + "product_reference": "python-parsley-0:1.3-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pbr-0:5.8.0-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pbr-0:5.8.0-4.el8pc.src" + }, + "product_reference": "python-pbr-0:5.8.0-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pexpect-0:4.8.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pexpect-0:4.8.0-2.el8sat.src" + }, + "product_reference": "python-pexpect-0:4.8.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-productmd-0:1.33-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-productmd-0:1.33-3.el8pc.src" + }, + "product_reference": "python-productmd-0:1.33-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-protobuf-0:4.21.6-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-protobuf-0:4.21.6-1.el8pc.src" + }, + "product_reference": "python-protobuf-0:4.21.6-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-psycopg2-0:2.9.3-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-psycopg2-0:2.9.3-2.el8pc.src" + }, + "product_reference": "python-psycopg2-0:2.9.3-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-psycopg2-debugsource-0:2.9.3-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-psycopg2-debugsource-0:2.9.3-2.el8pc.x86_64" + }, + "product_reference": "python-psycopg2-debugsource-0:2.9.3-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ptyprocess-0:0.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-ptyprocess-0:0.7.0-1.el8sat.src" + }, + "product_reference": "python-ptyprocess-0:0.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-ansible-1:0.16.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pulp-ansible-1:0.16.0-1.el8pc.src" + }, + "product_reference": "python-pulp-ansible-1:0.16.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-certguard-0:1.5.6-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pulp-certguard-0:1.5.6-1.el8pc.src" + }, + "product_reference": "python-pulp-certguard-0:1.5.6-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-cli-0:0.14.0-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pulp-cli-0:0.14.0-4.el8pc.src" + }, + "product_reference": "python-pulp-cli-0:0.14.0-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-container-0:2.14.7-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pulp-container-0:2.14.7-1.el8pc.src" + }, + "product_reference": "python-pulp-container-0:2.14.7-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-deb-0:2.20.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pulp-deb-0:2.20.2-1.el8pc.src" + }, + "product_reference": "python-pulp-deb-0:2.20.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-file-0:1.12.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pulp-file-0:1.12.0-1.el8pc.src" + }, + "product_reference": "python-pulp-file-0:1.12.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-rpm-0:3.19.9-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pulp-rpm-0:3.19.9-1.el8pc.src" + }, + "product_reference": "python-pulp-rpm-0:3.19.9-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulpcore-0:3.22.15-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pulpcore-0:3.22.15-2.el8pc.src" + }, + "product_reference": "python-pulpcore-0:3.22.15-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyOpenSSL-0:22.1.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pyOpenSSL-0:22.1.0-1.el8pc.src" + }, + "product_reference": "python-pyOpenSSL-0:22.1.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycares-0:4.1.2-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pycares-0:4.1.2-2.el8pc.src" + }, + "product_reference": "python-pycares-0:4.1.2-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycares-debugsource-0:4.1.2-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pycares-debugsource-0:4.1.2-2.el8pc.x86_64" + }, + "product_reference": "python-pycares-debugsource-0:4.1.2-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycodestyle-0:2.7.0-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pycodestyle-0:2.7.0-5.el8pc.src" + }, + "product_reference": "python-pycodestyle-0:2.7.0-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycparser-0:2.21-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pycparser-0:2.21-2.el8pc.src" + }, + "product_reference": "python-pycparser-0:2.21-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycryptodomex-0:3.14.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pycryptodomex-0:3.14.1-2.el8pc.src" + }, + "product_reference": "python-pycryptodomex-0:3.14.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycryptodomex-debugsource-0:3.14.1-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pycryptodomex-debugsource-0:3.14.1-2.el8pc.x86_64" + }, + "product_reference": "python-pycryptodomex-debugsource-0:3.14.1-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyflakes-0:2.3.1-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pyflakes-0:2.3.1-5.el8pc.src" + }, + "product_reference": "python-pyflakes-0:2.3.1-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pygments-0:2.14.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pygments-0:2.14.0-1.el8pc.src" + }, + "product_reference": "python-pygments-0:2.14.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pygtrie-0:2.5.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pygtrie-0:2.5.0-1.el8pc.src" + }, + "product_reference": "python-pygtrie-0:2.5.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyjwkest-0:1.4.2-6.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pyjwkest-0:1.4.2-6.el8pc.src" + }, + "product_reference": "python-pyjwkest-0:1.4.2-6.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyjwt-0:2.5.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pyjwt-0:2.5.0-2.el8pc.src" + }, + "product_reference": "python-pyjwt-0:2.5.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyparsing-0:2.4.7-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pyparsing-0:2.4.7-3.el8pc.src" + }, + "product_reference": "python-pyparsing-0:2.4.7-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyrsistent-0:0.18.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pyrsistent-0:0.18.1-2.el8pc.src" + }, + "product_reference": "python-pyrsistent-0:0.18.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyrsistent-debugsource-0:0.18.1-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pyrsistent-debugsource-0:0.18.1-2.el8pc.x86_64" + }, + "product_reference": "python-pyrsistent-debugsource-0:0.18.1-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pytz-0:2022.2.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pytz-0:2022.2.1-1.el8pc.src" + }, + "product_reference": "python-pytz-0:2022.2.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyyaml-0:5.4.1-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pyyaml-0:5.4.1-4.el8pc.src" + }, + "product_reference": "python-pyyaml-0:5.4.1-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-qpid-0:1.37.0-1.el8.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-qpid-0:1.37.0-1.el8.src" + }, + "product_reference": "python-qpid-0:1.37.0-1.el8.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-redis-0:4.3.4-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-redis-0:4.3.4-1.el8pc.src" + }, + "product_reference": "python-redis-0:4.3.4-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-requests-0:2.31.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-requests-0:2.31.0-1.el8pc.src" + }, + "product_reference": "python-requests-0:2.31.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-requirements-parser-0:0.2.0-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-requirements-parser-0:0.2.0-3.el8pc.src" + }, + "product_reference": "python-requirements-parser-0:0.2.0-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-rhsm-0:1.19.2-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-rhsm-0:1.19.2-3.el8pc.src" + }, + "product_reference": "python-rhsm-0:1.19.2-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-rhsm-debugsource-0:1.19.2-3.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-rhsm-debugsource-0:1.19.2-3.el8pc.x86_64" + }, + "product_reference": "python-rhsm-debugsource-0:1.19.2-3.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-rich-0:13.3.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-rich-0:13.3.1-2.el8pc.src" + }, + "product_reference": "python-rich-0:13.3.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ruamel-yaml-0:0.17.21-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-ruamel-yaml-0:0.17.21-2.el8pc.src" + }, + "product_reference": "python-ruamel-yaml-0:0.17.21-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ruamel-yaml-clib-0:0.2.7-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-ruamel-yaml-clib-0:0.2.7-1.el8pc.src" + }, + "product_reference": "python-ruamel-yaml-clib-0:0.2.7-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ruamel-yaml-clib-debugsource-0:0.2.7-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-ruamel-yaml-clib-debugsource-0:0.2.7-1.el8pc.x86_64" + }, + "product_reference": "python-ruamel-yaml-clib-debugsource-0:0.2.7-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-schema-0:0.7.5-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-schema-0:0.7.5-2.el8pc.src" + }, + "product_reference": "python-schema-0:0.7.5-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-semantic-version-0:2.10.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-semantic-version-0:2.10.0-1.el8pc.src" + }, + "product_reference": "python-semantic-version-0:2.10.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-six-0:1.16.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-six-0:1.16.0-2.el8pc.src" + }, + "product_reference": "python-six-0:1.16.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-smmap-0:5.0.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-smmap-0:5.0.0-2.el8pc.src" + }, + "product_reference": "python-smmap-0:5.0.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-sqlparse-0:0.4.4-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-sqlparse-0:0.4.4-1.el8pc.src" + }, + "product_reference": "python-sqlparse-0:0.4.4-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-tablib-0:3.3.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-tablib-0:3.3.0-1.el8pc.src" + }, + "product_reference": "python-tablib-0:3.3.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-tenacity-0:7.0.0-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-tenacity-0:7.0.0-3.el8pc.src" + }, + "product_reference": "python-tenacity-0:7.0.0-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-toml-0:0.10.2-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-toml-0:0.10.2-3.el8pc.src" + }, + "product_reference": "python-toml-0:0.10.2-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-types-cryptography-0:3.3.23.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-types-cryptography-0:3.3.23.2-1.el8pc.src" + }, + "product_reference": "python-types-cryptography-0:3.3.23.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-typing-extensions-0:3.10.0.2-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-typing-extensions-0:3.10.0.2-2.el8pc.src" + }, + "product_reference": "python-typing-extensions-0:3.10.0.2-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-uritemplate-0:4.1.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-uritemplate-0:4.1.1-2.el8pc.src" + }, + "product_reference": "python-uritemplate-0:4.1.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-url-normalize-0:1.4.3-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-url-normalize-0:1.4.3-4.el8pc.src" + }, + "product_reference": "python-url-normalize-0:1.4.3-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-urllib3-0:1.26.8-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-urllib3-0:1.26.8-2.el8pc.src" + }, + "product_reference": "python-urllib3-0:1.26.8-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-urlman-0:2.0.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-urlman-0:2.0.1-1.el8pc.src" + }, + "product_reference": "python-urlman-0:2.0.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-wcmatch-0:8.3-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-wcmatch-0:8.3-2.el8pc.src" + }, + "product_reference": "python-wcmatch-0:8.3-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-webencodings-0:0.5.1-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-webencodings-0:0.5.1-3.el8pc.src" + }, + "product_reference": "python-webencodings-0:0.5.1-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-whitenoise-0:6.0.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-whitenoise-0:6.0.0-1.el8pc.src" + }, + "product_reference": "python-whitenoise-0:6.0.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-wrapt-0:1.14.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-wrapt-0:1.14.1-1.el8pc.src" + }, + "product_reference": "python-wrapt-0:1.14.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-wrapt-debugsource-0:1.14.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-wrapt-debugsource-0:1.14.1-1.el8pc.x86_64" + }, + "product_reference": "python-wrapt-debugsource-0:1.14.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-xlrd-0:2.0.1-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-xlrd-0:2.0.1-5.el8pc.src" + }, + "product_reference": "python-xlrd-0:2.0.1-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-xlwt-0:1.3.0-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-xlwt-0:1.3.0-3.el8pc.src" + }, + "product_reference": "python-xlwt-0:1.3.0-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-yarl-0:1.8.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-yarl-0:1.8.2-1.el8pc.src" + }, + "product_reference": "python-yarl-0:1.8.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-yarl-debugsource-0:1.8.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-yarl-debugsource-0:1.8.2-1.el8pc.x86_64" + }, + "product_reference": "python-yarl-debugsource-0:1.8.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-zipp-0:3.4.0-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-zipp-0:3.4.0-4.el8pc.src" + }, + "product_reference": "python-zipp-0:3.4.0-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python2-qpid-0:1.37.0-1.el8.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python2-qpid-0:1.37.0-1.el8.noarch" + }, + "product_reference": "python2-qpid-0:1.37.0-1.el8.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python2-qpid-qmf-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python2-qpid-qmf-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "python2-qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python2-saslwrapper-0:0.22-6.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python2-saslwrapper-0:0.22-6.el8sat.x86_64" + }, + "product_reference": "python2-saslwrapper-0:0.22-6.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python2-saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python2-saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64" + }, + "product_reference": "python2-saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-createrepo_c-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python3-createrepo_c-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "python3-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python3-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "python3-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-libcomps-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python3-libcomps-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "python3-libcomps-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python3-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "python3-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-qpid-proton-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python3-qpid-proton-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "python3-qpid-proton-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python3-qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "python3-qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-solv-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python3-solv-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "python3-solv-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-solv-debuginfo-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python3-solv-debuginfo-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "python3-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aiodns-0:3.0.0-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-aiodns-0:3.0.0-3.el8pc.noarch" + }, + "product_reference": "python39-aiodns-0:3.0.0-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aiofiles-0:22.1.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-aiofiles-0:22.1.0-1.el8pc.noarch" + }, + "product_reference": "python39-aiofiles-0:22.1.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aiohttp-0:3.8.3-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-aiohttp-0:3.8.3-2.el8pc.x86_64" + }, + "product_reference": "python39-aiohttp-0:3.8.3-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aiohttp-debuginfo-0:3.8.3-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-aiohttp-debuginfo-0:3.8.3-2.el8pc.x86_64" + }, + "product_reference": "python39-aiohttp-debuginfo-0:3.8.3-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aiohttp-xmlrpc-0:1.5.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-aiohttp-xmlrpc-0:1.5.0-2.el8pc.noarch" + }, + "product_reference": "python39-aiohttp-xmlrpc-0:1.5.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aioredis-0:2.0.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-aioredis-0:2.0.1-2.el8pc.noarch" + }, + "product_reference": "python39-aioredis-0:2.0.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aiosignal-0:1.3.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-aiosignal-0:1.3.1-1.el8pc.noarch" + }, + "product_reference": "python39-aiosignal-0:1.3.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ansible-builder-0:1.0.1-4.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-ansible-builder-0:1.0.1-4.el8pc.noarch" + }, + "product_reference": "python39-ansible-builder-0:1.0.1-4.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ansible-runner-0:2.2.1-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-ansible-runner-0:2.2.1-3.el8sat.noarch" + }, + "product_reference": "python39-ansible-runner-0:2.2.1-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-asgiref-0:3.6.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-asgiref-0:3.6.0-1.el8pc.noarch" + }, + "product_reference": "python39-asgiref-0:3.6.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-async-lru-0:1.0.3-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-async-lru-0:1.0.3-1.el8pc.noarch" + }, + "product_reference": "python39-async-lru-0:1.0.3-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-async-timeout-0:4.0.2-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-async-timeout-0:4.0.2-2.el8pc.noarch" + }, + "product_reference": "python39-async-timeout-0:4.0.2-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-asyncio-throttle-0:1.0.2-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-asyncio-throttle-0:1.0.2-3.el8pc.noarch" + }, + "product_reference": "python39-asyncio-throttle-0:1.0.2-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-attrs-0:21.4.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-attrs-0:21.4.0-2.el8pc.noarch" + }, + "product_reference": "python39-attrs-0:21.4.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-backoff-0:2.2.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-backoff-0:2.2.1-1.el8pc.noarch" + }, + "product_reference": "python39-backoff-0:2.2.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-bindep-0:2.11.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-bindep-0:2.11.0-2.el8pc.noarch" + }, + "product_reference": "python39-bindep-0:2.11.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-bleach-0:3.3.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-bleach-0:3.3.1-2.el8pc.noarch" + }, + "product_reference": "python39-bleach-0:3.3.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-bleach-allowlist-0:1.0.3-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-bleach-allowlist-0:1.0.3-3.el8pc.noarch" + }, + "product_reference": "python39-bleach-allowlist-0:1.0.3-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-bracex-0:2.2.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-bracex-0:2.2.1-2.el8pc.noarch" + }, + "product_reference": "python39-bracex-0:2.2.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-brotli-0:1.0.9-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-brotli-0:1.0.9-2.el8pc.x86_64" + }, + "product_reference": "python39-brotli-0:1.0.9-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-brotli-debuginfo-0:1.0.9-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-brotli-debuginfo-0:1.0.9-2.el8pc.x86_64" + }, + "product_reference": "python39-brotli-debuginfo-0:1.0.9-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-cchardet-0:2.1.7-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-cchardet-0:2.1.7-4.el8pc.x86_64" + }, + "product_reference": "python39-cchardet-0:2.1.7-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-cchardet-debuginfo-0:2.1.7-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-cchardet-debuginfo-0:2.1.7-4.el8pc.x86_64" + }, + "product_reference": "python39-cchardet-debuginfo-0:2.1.7-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-certifi-0:2022.12.7-1.1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-certifi-0:2022.12.7-1.1.el8pc.noarch" + }, + "product_reference": "python39-certifi-0:2022.12.7-1.1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-cffi-0:1.15.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-cffi-0:1.15.1-1.el8pc.x86_64" + }, + "product_reference": "python39-cffi-0:1.15.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-cffi-debuginfo-0:1.15.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-cffi-debuginfo-0:1.15.1-1.el8pc.x86_64" + }, + "product_reference": "python39-cffi-debuginfo-0:1.15.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-chardet-0:5.0.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-chardet-0:5.0.0-1.el8pc.noarch" + }, + "product_reference": "python39-chardet-0:5.0.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-charset-normalizer-0:2.1.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-charset-normalizer-0:2.1.1-1.el8pc.noarch" + }, + "product_reference": "python39-charset-normalizer-0:2.1.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-click-0:8.1.3-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-click-0:8.1.3-1.el8pc.noarch" + }, + "product_reference": "python39-click-0:8.1.3-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-click-shell-0:2.1-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-click-shell-0:2.1-3.el8pc.noarch" + }, + "product_reference": "python39-click-shell-0:2.1-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-colorama-0:0.4.4-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-colorama-0:0.4.4-3.el8pc.noarch" + }, + "product_reference": "python39-colorama-0:0.4.4-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-commonmark-0:0.9.1-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-commonmark-0:0.9.1-5.el8pc.noarch" + }, + "product_reference": "python39-commonmark-0:0.9.1-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-contextlib2-0:21.6.0-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-contextlib2-0:21.6.0-3.el8pc.noarch" + }, + "product_reference": "python39-contextlib2-0:21.6.0-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-createrepo_c-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-createrepo_c-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "python39-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "python39-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-cryptography-0:38.0.4-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-cryptography-0:38.0.4-1.el8pc.x86_64" + }, + "product_reference": "python39-cryptography-0:38.0.4-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-cryptography-debuginfo-0:38.0.4-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-cryptography-debuginfo-0:38.0.4-1.el8pc.x86_64" + }, + "product_reference": "python39-cryptography-debuginfo-0:38.0.4-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-daemon-0:2.3.1-1.1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-daemon-0:2.3.1-1.1.el8sat.noarch" + }, + "product_reference": "python39-daemon-0:2.3.1-1.1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-dataclasses-0:0.8-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-dataclasses-0:0.8-3.el8pc.noarch" + }, + "product_reference": "python39-dataclasses-0:0.8-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-dateutil-0:2.8.2-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-dateutil-0:2.8.2-2.el8pc.noarch" + }, + "product_reference": "python39-dateutil-0:2.8.2-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-debian-0:0.1.44-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-debian-0:0.1.44-3.el8pc.noarch" + }, + "product_reference": "python39-debian-0:0.1.44-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-defusedxml-0:0.7.1-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-defusedxml-0:0.7.1-3.el8pc.noarch" + }, + "product_reference": "python39-defusedxml-0:0.7.1-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-deprecated-0:1.2.13-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-deprecated-0:1.2.13-1.el8pc.noarch" + }, + "product_reference": "python39-deprecated-0:1.2.13-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-diff-match-patch-0:20200713-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-diff-match-patch-0:20200713-3.el8pc.noarch" + }, + "product_reference": "python39-diff-match-patch-0:20200713-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-distro-0:1.7.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-distro-0:1.7.0-1.el8pc.noarch" + }, + "product_reference": "python39-distro-0:1.7.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-0:3.2.21-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-django-0:3.2.21-1.el8pc.noarch" + }, + "product_reference": "python39-django-0:3.2.21-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-currentuser-0:0.5.3-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-django-currentuser-0:0.5.3-5.el8pc.noarch" + }, + "product_reference": "python39-django-currentuser-0:0.5.3-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-filter-0:22.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-django-filter-0:22.1-2.el8pc.noarch" + }, + "product_reference": "python39-django-filter-0:22.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-guid-0:3.3.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-django-guid-0:3.3.0-1.el8pc.noarch" + }, + "product_reference": "python39-django-guid-0:3.3.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-import-export-0:3.0.2-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-django-import-export-0:3.0.2-1.el8pc.noarch" + }, + "product_reference": "python39-django-import-export-0:3.0.2-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-lifecycle-0:1.0.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-django-lifecycle-0:1.0.0-1.el8pc.noarch" + }, + "product_reference": "python39-django-lifecycle-0:1.0.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-readonly-field-0:1.1.2-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-django-readonly-field-0:1.1.2-1.el8pc.noarch" + }, + "product_reference": "python39-django-readonly-field-0:1.1.2-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-djangorestframework-0:3.14.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-djangorestframework-0:3.14.0-1.el8pc.noarch" + }, + "product_reference": "python39-djangorestframework-0:3.14.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-djangorestframework-queryfields-0:1.0.0-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-djangorestframework-queryfields-0:1.0.0-5.el8pc.noarch" + }, + "product_reference": "python39-djangorestframework-queryfields-0:1.0.0-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-docutils-0:0.19-1.1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-docutils-0:0.19-1.1.el8sat.noarch" + }, + "product_reference": "python39-docutils-0:0.19-1.1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-drf-access-policy-0:1.3.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-drf-access-policy-0:1.3.0-1.el8pc.noarch" + }, + "product_reference": "python39-drf-access-policy-0:1.3.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-drf-nested-routers-0:0.93.4-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-drf-nested-routers-0:0.93.4-3.el8pc.noarch" + }, + "product_reference": "python39-drf-nested-routers-0:0.93.4-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-drf-spectacular-0:0.25.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-drf-spectacular-0:0.25.0-1.el8pc.noarch" + }, + "product_reference": "python39-drf-spectacular-0:0.25.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-dynaconf-0:3.1.11-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-dynaconf-0:3.1.11-1.el8pc.noarch" + }, + "product_reference": "python39-dynaconf-0:3.1.11-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ecdsa-0:0.18.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-ecdsa-0:0.18.0-1.el8pc.noarch" + }, + "product_reference": "python39-ecdsa-0:0.18.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-enrich-0:1.2.6-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-enrich-0:1.2.6-5.el8pc.noarch" + }, + "product_reference": "python39-enrich-0:1.2.6-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-et-xmlfile-0:1.1.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-et-xmlfile-0:1.1.0-2.el8pc.noarch" + }, + "product_reference": "python39-et-xmlfile-0:1.1.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-flake8-0:3.9.2-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-flake8-0:3.9.2-5.el8pc.noarch" + }, + "product_reference": "python39-flake8-0:3.9.2-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-frozenlist-0:1.3.3-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-frozenlist-0:1.3.3-1.el8pc.x86_64" + }, + "product_reference": "python39-frozenlist-0:1.3.3-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-frozenlist-debuginfo-0:1.3.3-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-frozenlist-debuginfo-0:1.3.3-1.el8pc.x86_64" + }, + "product_reference": "python39-frozenlist-debuginfo-0:1.3.3-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-future-0:0.18.3-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-future-0:0.18.3-1.el8pc.noarch" + }, + "product_reference": "python39-future-0:0.18.3-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-galaxy-importer-0:0.4.6-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-galaxy-importer-0:0.4.6-1.el8pc.noarch" + }, + "product_reference": "python39-galaxy-importer-0:0.4.6-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-gitdb-0:4.0.10-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-gitdb-0:4.0.10-1.el8pc.noarch" + }, + "product_reference": "python39-gitdb-0:4.0.10-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-gitpython-0:3.1.32-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-gitpython-0:3.1.32-1.el8pc.noarch" + }, + "product_reference": "python39-gitpython-0:3.1.32-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-gnupg-0:0.5.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-gnupg-0:0.5.0-1.el8pc.noarch" + }, + "product_reference": "python39-gnupg-0:0.5.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-gunicorn-0:20.1.0-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-gunicorn-0:20.1.0-5.el8pc.noarch" + }, + "product_reference": "python39-gunicorn-0:20.1.0-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-idna-0:3.3-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-idna-0:3.3-2.el8pc.noarch" + }, + "product_reference": "python39-idna-0:3.3-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-idna-ssl-0:1.1.0-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-idna-ssl-0:1.1.0-5.el8pc.noarch" + }, + "product_reference": "python39-idna-ssl-0:1.1.0-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-importlib-metadata-0:4.10.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-importlib-metadata-0:4.10.1-2.el8pc.noarch" + }, + "product_reference": "python39-importlib-metadata-0:4.10.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-inflection-0:0.5.1-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-inflection-0:0.5.1-3.el8pc.noarch" + }, + "product_reference": "python39-inflection-0:0.5.1-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-iniparse-0:0.4-35.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-iniparse-0:0.4-35.el8pc.noarch" + }, + "product_reference": "python39-iniparse-0:0.4-35.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-jinja2-0:3.1.2-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-jinja2-0:3.1.2-1.el8pc.noarch" + }, + "product_reference": "python39-jinja2-0:3.1.2-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-jsonschema-0:4.9.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-jsonschema-0:4.9.1-1.el8pc.noarch" + }, + "product_reference": "python39-jsonschema-0:4.9.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-libcomps-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-libcomps-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "python39-libcomps-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "python39-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-lockfile-0:0.12.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-lockfile-0:0.12.2-1.el8sat.noarch" + }, + "product_reference": "python39-lockfile-0:0.12.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-lxml-0:4.9.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-lxml-0:4.9.2-1.el8pc.x86_64" + }, + "product_reference": "python39-lxml-0:4.9.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-lxml-debuginfo-0:4.9.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-lxml-debuginfo-0:4.9.2-1.el8pc.x86_64" + }, + "product_reference": "python39-lxml-debuginfo-0:4.9.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-markdown-0:3.4.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-markdown-0:3.4.1-1.el8pc.noarch" + }, + "product_reference": "python39-markdown-0:3.4.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-markuppy-0:1.14-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-markuppy-0:1.14-3.el8pc.noarch" + }, + "product_reference": "python39-markuppy-0:1.14-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-markupsafe-0:2.1.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-markupsafe-0:2.1.2-1.el8pc.x86_64" + }, + "product_reference": "python39-markupsafe-0:2.1.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-markupsafe-debuginfo-0:2.1.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-markupsafe-debuginfo-0:2.1.2-1.el8pc.x86_64" + }, + "product_reference": "python39-markupsafe-debuginfo-0:2.1.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-mccabe-0:0.6.1-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-mccabe-0:0.6.1-3.el8pc.noarch" + }, + "product_reference": "python39-mccabe-0:0.6.1-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-multidict-0:6.0.4-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-multidict-0:6.0.4-1.el8pc.x86_64" + }, + "product_reference": "python39-multidict-0:6.0.4-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-multidict-debuginfo-0:6.0.4-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-multidict-debuginfo-0:6.0.4-1.el8pc.x86_64" + }, + "product_reference": "python39-multidict-debuginfo-0:6.0.4-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-naya-0:1.1.1-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-naya-0:1.1.1-3.el8pc.noarch" + }, + "product_reference": "python39-naya-0:1.1.1-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-odfpy-0:1.4.1-6.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-odfpy-0:1.4.1-6.el8pc.noarch" + }, + "product_reference": "python39-odfpy-0:1.4.1-6.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-openpyxl-0:3.1.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-openpyxl-0:3.1.0-1.el8pc.noarch" + }, + "product_reference": "python39-openpyxl-0:3.1.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-packaging-0:21.3-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-packaging-0:21.3-1.el8pc.noarch" + }, + "product_reference": "python39-packaging-0:21.3-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-parsley-0:1.3-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-parsley-0:1.3-2.el8pc.noarch" + }, + "product_reference": "python39-parsley-0:1.3-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pbr-0:5.8.0-4.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pbr-0:5.8.0-4.el8pc.noarch" + }, + "product_reference": "python39-pbr-0:5.8.0-4.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pexpect-0:4.8.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pexpect-0:4.8.0-2.el8sat.noarch" + }, + "product_reference": "python39-pexpect-0:4.8.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-productmd-0:1.33-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-productmd-0:1.33-3.el8pc.noarch" + }, + "product_reference": "python39-productmd-0:1.33-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-protobuf-0:4.21.6-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-protobuf-0:4.21.6-1.el8pc.noarch" + }, + "product_reference": "python39-protobuf-0:4.21.6-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-psycopg2-0:2.9.3-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-psycopg2-0:2.9.3-2.el8pc.x86_64" + }, + "product_reference": "python39-psycopg2-0:2.9.3-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-psycopg2-debuginfo-0:2.9.3-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-psycopg2-debuginfo-0:2.9.3-2.el8pc.x86_64" + }, + "product_reference": "python39-psycopg2-debuginfo-0:2.9.3-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ptyprocess-0:0.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-ptyprocess-0:0.7.0-1.el8sat.noarch" + }, + "product_reference": "python39-ptyprocess-0:0.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-ansible-1:0.16.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pulp-ansible-1:0.16.0-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-ansible-1:0.16.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-certguard-0:1.5.6-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pulp-certguard-0:1.5.6-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-certguard-0:1.5.6-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-cli-0:0.14.0-4.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pulp-cli-0:0.14.0-4.el8pc.noarch" + }, + "product_reference": "python39-pulp-cli-0:0.14.0-4.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-container-0:2.14.7-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pulp-container-0:2.14.7-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-container-0:2.14.7-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-deb-0:2.20.2-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pulp-deb-0:2.20.2-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-deb-0:2.20.2-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-file-0:1.12.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pulp-file-0:1.12.0-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-file-0:1.12.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-rpm-0:3.19.9-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pulp-rpm-0:3.19.9-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-rpm-0:3.19.9-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulpcore-0:3.22.15-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pulpcore-0:3.22.15-2.el8pc.noarch" + }, + "product_reference": "python39-pulpcore-0:3.22.15-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyOpenSSL-0:22.1.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pyOpenSSL-0:22.1.0-1.el8pc.noarch" + }, + "product_reference": "python39-pyOpenSSL-0:22.1.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pycares-0:4.1.2-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pycares-0:4.1.2-2.el8pc.x86_64" + }, + "product_reference": "python39-pycares-0:4.1.2-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pycares-debuginfo-0:4.1.2-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pycares-debuginfo-0:4.1.2-2.el8pc.x86_64" + }, + "product_reference": "python39-pycares-debuginfo-0:4.1.2-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pycodestyle-0:2.7.0-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pycodestyle-0:2.7.0-5.el8pc.noarch" + }, + "product_reference": "python39-pycodestyle-0:2.7.0-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pycparser-0:2.21-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pycparser-0:2.21-2.el8pc.noarch" + }, + "product_reference": "python39-pycparser-0:2.21-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pycryptodomex-0:3.14.1-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pycryptodomex-0:3.14.1-2.el8pc.x86_64" + }, + "product_reference": "python39-pycryptodomex-0:3.14.1-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pycryptodomex-debuginfo-0:3.14.1-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pycryptodomex-debuginfo-0:3.14.1-2.el8pc.x86_64" + }, + "product_reference": "python39-pycryptodomex-debuginfo-0:3.14.1-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyflakes-0:2.3.1-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pyflakes-0:2.3.1-5.el8pc.noarch" + }, + "product_reference": "python39-pyflakes-0:2.3.1-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pygments-0:2.14.0-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pygments-0:2.14.0-1.el8pc.x86_64" + }, + "product_reference": "python39-pygments-0:2.14.0-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pygtrie-0:2.5.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pygtrie-0:2.5.0-1.el8pc.noarch" + }, + "product_reference": "python39-pygtrie-0:2.5.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyjwkest-0:1.4.2-6.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pyjwkest-0:1.4.2-6.el8pc.noarch" + }, + "product_reference": "python39-pyjwkest-0:1.4.2-6.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyjwt-0:2.5.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pyjwt-0:2.5.0-2.el8pc.noarch" + }, + "product_reference": "python39-pyjwt-0:2.5.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyparsing-0:2.4.7-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pyparsing-0:2.4.7-3.el8pc.noarch" + }, + "product_reference": "python39-pyparsing-0:2.4.7-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyrsistent-0:0.18.1-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pyrsistent-0:0.18.1-2.el8pc.x86_64" + }, + "product_reference": "python39-pyrsistent-0:0.18.1-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyrsistent-debuginfo-0:0.18.1-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pyrsistent-debuginfo-0:0.18.1-2.el8pc.x86_64" + }, + "product_reference": "python39-pyrsistent-debuginfo-0:0.18.1-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pytz-0:2022.2.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pytz-0:2022.2.1-1.el8pc.noarch" + }, + "product_reference": "python39-pytz-0:2022.2.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyyaml-0:5.4.1-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pyyaml-0:5.4.1-4.el8pc.x86_64" + }, + "product_reference": "python39-pyyaml-0:5.4.1-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-redis-0:4.3.4-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-redis-0:4.3.4-1.el8pc.noarch" + }, + "product_reference": "python39-redis-0:4.3.4-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-requests-0:2.31.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-requests-0:2.31.0-1.el8pc.noarch" + }, + "product_reference": "python39-requests-0:2.31.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-requirements-parser-0:0.2.0-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-requirements-parser-0:0.2.0-3.el8pc.noarch" + }, + "product_reference": "python39-requirements-parser-0:0.2.0-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-rhsm-0:1.19.2-3.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-rhsm-0:1.19.2-3.el8pc.x86_64" + }, + "product_reference": "python39-rhsm-0:1.19.2-3.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-rhsm-debuginfo-0:1.19.2-3.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-rhsm-debuginfo-0:1.19.2-3.el8pc.x86_64" + }, + "product_reference": "python39-rhsm-debuginfo-0:1.19.2-3.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-rich-0:13.3.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-rich-0:13.3.1-2.el8pc.noarch" + }, + "product_reference": "python39-rich-0:13.3.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ruamel-yaml-0:0.17.21-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-ruamel-yaml-0:0.17.21-2.el8pc.noarch" + }, + "product_reference": "python39-ruamel-yaml-0:0.17.21-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ruamel-yaml-clib-0:0.2.7-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-ruamel-yaml-clib-0:0.2.7-1.el8pc.x86_64" + }, + "product_reference": "python39-ruamel-yaml-clib-0:0.2.7-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ruamel-yaml-clib-debuginfo-0:0.2.7-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-ruamel-yaml-clib-debuginfo-0:0.2.7-1.el8pc.x86_64" + }, + "product_reference": "python39-ruamel-yaml-clib-debuginfo-0:0.2.7-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-schema-0:0.7.5-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-schema-0:0.7.5-2.el8pc.noarch" + }, + "product_reference": "python39-schema-0:0.7.5-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-semantic-version-0:2.10.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-semantic-version-0:2.10.0-1.el8pc.noarch" + }, + "product_reference": "python39-semantic-version-0:2.10.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-six-0:1.16.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-six-0:1.16.0-2.el8pc.noarch" + }, + "product_reference": "python39-six-0:1.16.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-smmap-0:5.0.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-smmap-0:5.0.0-2.el8pc.noarch" + }, + "product_reference": "python39-smmap-0:5.0.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-solv-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-solv-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "python39-solv-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-solv-debuginfo-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-solv-debuginfo-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "python39-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-sqlparse-0:0.4.4-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-sqlparse-0:0.4.4-1.el8pc.noarch" + }, + "product_reference": "python39-sqlparse-0:0.4.4-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-tablib-0:3.3.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-tablib-0:3.3.0-1.el8pc.noarch" + }, + "product_reference": "python39-tablib-0:3.3.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-tenacity-0:7.0.0-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-tenacity-0:7.0.0-3.el8pc.noarch" + }, + "product_reference": "python39-tenacity-0:7.0.0-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-toml-0:0.10.2-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-toml-0:0.10.2-3.el8pc.noarch" + }, + "product_reference": "python39-toml-0:0.10.2-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-types-cryptography-0:3.3.23.2-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-types-cryptography-0:3.3.23.2-1.el8pc.noarch" + }, + "product_reference": "python39-types-cryptography-0:3.3.23.2-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-typing-extensions-0:3.10.0.2-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-typing-extensions-0:3.10.0.2-2.el8pc.noarch" + }, + "product_reference": "python39-typing-extensions-0:3.10.0.2-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-uritemplate-0:4.1.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-uritemplate-0:4.1.1-2.el8pc.noarch" + }, + "product_reference": "python39-uritemplate-0:4.1.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-url-normalize-0:1.4.3-4.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-url-normalize-0:1.4.3-4.el8pc.noarch" + }, + "product_reference": "python39-url-normalize-0:1.4.3-4.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-urllib3-0:1.26.8-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-urllib3-0:1.26.8-2.el8pc.noarch" + }, + "product_reference": "python39-urllib3-0:1.26.8-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-urlman-0:2.0.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-urlman-0:2.0.1-1.el8pc.noarch" + }, + "product_reference": "python39-urlman-0:2.0.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-wcmatch-0:8.3-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-wcmatch-0:8.3-2.el8pc.noarch" + }, + "product_reference": "python39-wcmatch-0:8.3-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-webencodings-0:0.5.1-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-webencodings-0:0.5.1-3.el8pc.noarch" + }, + "product_reference": "python39-webencodings-0:0.5.1-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-whitenoise-0:6.0.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-whitenoise-0:6.0.0-1.el8pc.noarch" + }, + "product_reference": "python39-whitenoise-0:6.0.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-wrapt-0:1.14.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-wrapt-0:1.14.1-1.el8pc.x86_64" + }, + "product_reference": "python39-wrapt-0:1.14.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-wrapt-debuginfo-0:1.14.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-wrapt-debuginfo-0:1.14.1-1.el8pc.x86_64" + }, + "product_reference": "python39-wrapt-debuginfo-0:1.14.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-xlrd-0:2.0.1-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-xlrd-0:2.0.1-5.el8pc.noarch" + }, + "product_reference": "python39-xlrd-0:2.0.1-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-xlwt-0:1.3.0-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-xlwt-0:1.3.0-3.el8pc.noarch" + }, + "product_reference": "python39-xlwt-0:1.3.0-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-yarl-0:1.8.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-yarl-0:1.8.2-1.el8pc.x86_64" + }, + "product_reference": "python39-yarl-0:1.8.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-yarl-debuginfo-0:1.8.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-yarl-debuginfo-0:1.8.2-1.el8pc.x86_64" + }, + "product_reference": "python39-yarl-debuginfo-0:1.8.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-zipp-0:3.4.0-4.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-zipp-0:3.4.0-4.el8pc.noarch" + }, + "product_reference": "python39-zipp-0:3.4.0-4.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-0:1.39.0-7.el8amq.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-0:1.39.0-7.el8amq.src" + }, + "product_reference": "qpid-cpp-0:1.39.0-7.el8amq.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-client-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-client-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-client-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-client-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-client-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-client-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-client-devel-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-client-devel-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-client-devel-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-client-devel-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-client-devel-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-client-devel-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-client-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-client-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-client-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-debugsource-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-debugsource-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-debugsource-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-server-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-server-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-server-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-server-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-server-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-server-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-server-ha-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-server-ha-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-server-ha-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-server-linearstore-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-server-linearstore-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-server-linearstore-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-server-linearstore-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-server-linearstore-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-server-linearstore-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-server-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-server-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-server-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-dispatch-0:1.14.0-6.el8.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-dispatch-0:1.14.0-6.el8.src" + }, + "product_reference": "qpid-dispatch-0:1.14.0-6.el8.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-dispatch-debugsource-0:1.14.0-6.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-dispatch-debugsource-0:1.14.0-6.el8.x86_64" + }, + "product_reference": "qpid-dispatch-debugsource-0:1.14.0-6.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-dispatch-router-0:1.14.0-6.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-dispatch-router-0:1.14.0-6.el8.x86_64" + }, + "product_reference": "qpid-dispatch-router-0:1.14.0-6.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-dispatch-router-debuginfo-0:1.14.0-6.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-dispatch-router-debuginfo-0:1.14.0-6.el8.x86_64" + }, + "product_reference": "qpid-dispatch-router-debuginfo-0:1.14.0-6.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-dispatch-tools-0:1.14.0-6.el8.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-dispatch-tools-0:1.14.0-6.el8.noarch" + }, + "product_reference": "qpid-dispatch-tools-0:1.14.0-6.el8.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-0:0.33.0-4.el8.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-proton-0:0.33.0-4.el8.src" + }, + "product_reference": "qpid-proton-0:0.33.0-4.el8.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-c-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-proton-c-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "qpid-proton-c-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-c-debuginfo-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-proton-c-debuginfo-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "qpid-proton-c-debuginfo-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-cpp-debuginfo-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-proton-cpp-debuginfo-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "qpid-proton-cpp-debuginfo-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-debugsource-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-proton-debugsource-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "qpid-proton-debugsource-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-qmf-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-qmf-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-qmf-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-qmf-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-qmf-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-tools-0:1.39.0-7.el8amq.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-tools-0:1.39.0-7.el8amq.noarch" + }, + "product_reference": "qpid-tools-0:1.39.0-7.el8amq.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:redhat-access-insights-puppet-0:1.0.1-1.el8sat.noarch" + }, + "product_reference": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:redhat-access-insights-puppet-0:1.0.1-1.el8sat.src" + }, + "product_reference": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ruby-solv-debuginfo-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ruby-solv-debuginfo-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "ruby-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-algebrick-0:0.7.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-algebrick-0:0.7.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-algebrick-0:0.7.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-algebrick-0:0.7.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-algebrick-0:0.7.5-1.el8sat.src" + }, + "product_reference": "rubygem-algebrick-0:0.7.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ansi-0:1.5.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-ansi-0:1.5.0-3.el8sat.noarch" + }, + "product_reference": "rubygem-ansi-0:1.5.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ansi-0:1.5.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-ansi-0:1.5.0-3.el8sat.src" + }, + "product_reference": "rubygem-ansi-0:1.5.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-apipie-params-0:0.0.5-5.1.el8sat.noarch" + }, + "product_reference": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-apipie-params-0:0.0.5-5.1.el8sat.src" + }, + "product_reference": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-bundler_ext-0:0.4.1-6.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-bundler_ext-0:0.4.1-6.el8sat.noarch" + }, + "product_reference": "rubygem-bundler_ext-0:0.4.1-6.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-bundler_ext-0:0.4.1-6.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-bundler_ext-0:0.4.1-6.el8sat.src" + }, + "product_reference": "rubygem-bundler_ext-0:0.4.1-6.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-clamp-0:1.3.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-clamp-0:1.3.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-clamp-0:1.3.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-clamp-0:1.3.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-clamp-0:1.3.2-1.el8sat.src" + }, + "product_reference": "rubygem-clamp-0:1.3.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-concurrent-ruby-1:1.1.10-1.el8sat.noarch" + }, + "product_reference": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-concurrent-ruby-1:1.1.10-1.el8sat.src" + }, + "product_reference": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.noarch" + }, + "product_reference": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.src" + }, + "product_reference": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch" + }, + "product_reference": "rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-domain_name-0:0.5.20190701-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-domain_name-0:0.5.20190701-1.el8sat.src" + }, + "product_reference": "rubygem-domain_name-0:0.5.20190701-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-dynflow-0:1.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-dynflow-0:1.7.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-dynflow-0:1.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-dynflow-0:1.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-dynflow-0:1.7.0-1.el8sat.src" + }, + "product_reference": "rubygem-dynflow-0:1.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-excon-0:0.99.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-excon-0:0.99.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-excon-0:0.99.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-excon-0:0.99.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-excon-0:0.99.0-1.el8sat.src" + }, + "product_reference": "rubygem-excon-0:0.99.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-0:1.10.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-0:1.10.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-0:1.10.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-0:1.10.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-0:1.10.2-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-0:1.10.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-em_http-0:1.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-em_http-0:1.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-excon-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-excon-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-excon-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-excon-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-excon-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-excon-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-httpclient-0:1.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-httpclient-0:1.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-multipart-0:1.0.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-multipart-0:1.0.4-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-net_http-0:1.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-net_http-0:1.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-patron-0:1.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-patron-0:1.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-patron-0:1.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-patron-0:1.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-patron-0:1.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-patron-0:1.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-rack-0:1.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-rack-0:1.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-rack-0:1.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-rack-0:1.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-rack-0:1.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-rack-0:1.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-retry-0:1.0.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-retry-0:1.0.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-retry-0:1.0.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-retry-0:1.0.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-retry-0:1.0.3-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-retry-0:1.0.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday_middleware-0:1.2.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday_middleware-0:1.2.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fast_gettext-0:1.8.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-fast_gettext-0:1.8.0-1.el8sat.src" + }, + "product_reference": "rubygem-fast_gettext-0:1.8.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ffi-0:1.15.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-ffi-0:1.15.5-1.el8sat.src" + }, + "product_reference": "rubygem-ffi-0:1.15.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ffi-0:1.15.5-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-ffi-0:1.15.5-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ffi-0:1.15.5-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-foreman_maintain-1:1.3.5-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-gssapi-0:1.3.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-gssapi-0:1.3.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-gssapi-0:1.3.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-gssapi-0:1.3.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-gssapi-0:1.3.1-1.el8sat.src" + }, + "product_reference": "rubygem-gssapi-0:1.3.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hashie-0:5.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-hashie-0:5.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hashie-0:5.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hashie-0:5.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-hashie-0:5.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-hashie-0:5.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-highline-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-highline-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-highline-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-highline-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-highline-0:2.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-highline-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-accept-0:1.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-http-accept-0:1.7.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-http-accept-0:1.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-accept-0:1.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-http-accept-0:1.7.0-1.el8sat.src" + }, + "product_reference": "rubygem-http-accept-0:1.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-cookie-0:1.0.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-http-cookie-0:1.0.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-http-cookie-0:1.0.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-cookie-0:1.0.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-http-cookie-0:1.0.5-1.el8sat.src" + }, + "product_reference": "rubygem-http-cookie-0:1.0.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-infoblox-0:3.0.0-4.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-infoblox-0:3.0.0-4.el8sat.noarch" + }, + "product_reference": "rubygem-infoblox-0:3.0.0-4.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-infoblox-0:3.0.0-4.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-infoblox-0:3.0.0-4.el8sat.src" + }, + "product_reference": "rubygem-infoblox-0:3.0.0-4.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-journald-logger-0:3.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-journald-logger-0:3.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-journald-logger-0:3.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-journald-logger-0:3.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-journald-logger-0:3.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-journald-logger-0:3.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-journald-native-0:1.0.12-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-journald-native-0:1.0.12-1.el8sat.src" + }, + "product_reference": "rubygem-journald-native-0:1.0.12-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-journald-native-0:1.0.12-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-journald-native-0:1.0.12-1.el8sat.x86_64" + }, + "product_reference": "rubygem-journald-native-0:1.0.12-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-journald-native-debuginfo-0:1.0.12-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-journald-native-debuginfo-0:1.0.12-1.el8sat.x86_64" + }, + "product_reference": "rubygem-journald-native-debuginfo-0:1.0.12-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-journald-native-debugsource-0:1.0.12-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-journald-native-debugsource-0:1.0.12-1.el8sat.x86_64" + }, + "product_reference": "rubygem-journald-native-debugsource-0:1.0.12-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-jwt-0:2.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-jwt-0:2.7.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-jwt-0:2.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-jwt-0:2.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-jwt-0:2.7.0-1.el8sat.src" + }, + "product_reference": "rubygem-jwt-0:2.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kafo-0:7.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-kafo-0:7.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-kafo-0:7.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kafo-0:7.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-kafo-0:7.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-kafo-0:7.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-kafo_parsers-0:1.2.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-kafo_parsers-0:1.2.1-1.el8sat.src" + }, + "product_reference": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-kafo_wizards-0:0.0.2-2.el8sat.noarch" + }, + "product_reference": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-kafo_wizards-0:0.0.2-2.el8sat.src" + }, + "product_reference": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-little-plugger-0:1.1.4-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-little-plugger-0:1.1.4-3.el8sat.noarch" + }, + "product_reference": "rubygem-little-plugger-0:1.1.4-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-little-plugger-0:1.1.4-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-little-plugger-0:1.1.4-3.el8sat.src" + }, + "product_reference": "rubygem-little-plugger-0:1.1.4-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-logging-0:2.3.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-logging-0:2.3.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-logging-0:2.3.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-logging-0:2.3.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-logging-0:2.3.1-1.el8sat.src" + }, + "product_reference": "rubygem-logging-0:2.3.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-logging-journald-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-logging-journald-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-logging-journald-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-logging-journald-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-logging-journald-0:2.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-logging-journald-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mime-types-0:3.4.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-mime-types-0:3.4.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-mime-types-0:3.4.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mime-types-0:3.4.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-mime-types-0:3.4.1-1.el8sat.src" + }, + "product_reference": "rubygem-mime-types-0:3.4.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src" + }, + "product_reference": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mqtt-0:0.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-mqtt-0:0.5.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-mqtt-0:0.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mqtt-0:0.5.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-mqtt-0:0.5.0-1.el8sat.src" + }, + "product_reference": "rubygem-mqtt-0:0.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-msgpack-0:1.7.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-msgpack-0:1.7.1-1.el8sat.src" + }, + "product_reference": "rubygem-msgpack-0:1.7.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-msgpack-0:1.7.1-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-msgpack-0:1.7.1-1.el8sat.x86_64" + }, + "product_reference": "rubygem-msgpack-0:1.7.1-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-msgpack-debuginfo-0:1.7.1-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-msgpack-debuginfo-0:1.7.1-1.el8sat.x86_64" + }, + "product_reference": "rubygem-msgpack-debuginfo-0:1.7.1-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-msgpack-debugsource-0:1.7.1-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-msgpack-debugsource-0:1.7.1-1.el8sat.x86_64" + }, + "product_reference": "rubygem-msgpack-debugsource-0:1.7.1-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-multi_json-0:1.15.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-multi_json-0:1.15.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-multi_json-0:1.15.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-multi_json-0:1.15.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-multi_json-0:1.15.0-1.el8sat.src" + }, + "product_reference": "rubygem-multi_json-0:1.15.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-multipart-post-0:2.2.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-multipart-post-0:2.2.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-multipart-post-0:2.2.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-multipart-post-0:2.2.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-multipart-post-0:2.2.3-1.el8sat.src" + }, + "product_reference": "rubygem-multipart-post-0:2.2.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mustermann-0:2.0.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-mustermann-0:2.0.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-mustermann-0:2.0.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mustermann-0:2.0.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-mustermann-0:2.0.2-1.el8sat.src" + }, + "product_reference": "rubygem-mustermann-0:2.0.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-ssh-0:7.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-net-ssh-0:7.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-net-ssh-0:7.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-ssh-0:7.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-net-ssh-0:7.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-net-ssh-0:7.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-net-ssh-krb-0:0.4.0-4.el8sat.noarch" + }, + "product_reference": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-net-ssh-krb-0:0.4.0-4.el8sat.src" + }, + "product_reference": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-netrc-0:0.11.0-6.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-netrc-0:0.11.0-6.el8sat.noarch" + }, + "product_reference": "rubygem-netrc-0:0.11.0-6.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-netrc-0:0.11.0-6.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-netrc-0:0.11.0-6.el8sat.src" + }, + "product_reference": "rubygem-netrc-0:0.11.0-6.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-newt-0:0.9.7-3.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-newt-0:0.9.7-3.1.el8sat.src" + }, + "product_reference": "rubygem-newt-0:0.9.7-3.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-newt-0:0.9.7-3.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-newt-0:0.9.7-3.1.el8sat.x86_64" + }, + "product_reference": "rubygem-newt-0:0.9.7-3.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-newt-debuginfo-0:0.9.7-3.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-newt-debuginfo-0:0.9.7-3.1.el8sat.x86_64" + }, + "product_reference": "rubygem-newt-debuginfo-0:0.9.7-3.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-newt-debugsource-0:0.9.7-3.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-newt-debugsource-0:0.9.7-3.1.el8sat.x86_64" + }, + "product_reference": "rubygem-newt-debugsource-0:0.9.7-3.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-nokogiri-0:1.15.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-nokogiri-0:1.15.0-1.el8sat.src" + }, + "product_reference": "rubygem-nokogiri-0:1.15.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-nokogiri-0:1.15.0-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-nokogiri-0:1.15.0-1.el8sat.x86_64" + }, + "product_reference": "rubygem-nokogiri-0:1.15.0-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-nokogiri-debuginfo-0:1.15.0-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-nokogiri-debuginfo-0:1.15.0-1.el8sat.x86_64" + }, + "product_reference": "rubygem-nokogiri-debuginfo-0:1.15.0-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-nokogiri-debugsource-0:1.15.0-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-nokogiri-debugsource-0:1.15.0-1.el8sat.x86_64" + }, + "product_reference": "rubygem-nokogiri-debugsource-0:1.15.0-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-oauth-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-oauth-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-oauth-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-oauth-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-oauth-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-oauth-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-oauth-tty-0:1.0.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-oauth-tty-0:1.0.5-1.el8sat.src" + }, + "product_reference": "rubygem-oauth-tty-0:1.0.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-openscap-0:0.4.9-9.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-openscap-0:0.4.9-9.el8sat.noarch" + }, + "product_reference": "rubygem-openscap-0:0.4.9-9.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-openscap-0:0.4.9-9.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-openscap-0:0.4.9-9.el8sat.src" + }, + "product_reference": "rubygem-openscap-0:0.4.9-9.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-openscap_parser-0:1.0.2-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-openscap_parser-0:1.0.2-2.el8sat.noarch" + }, + "product_reference": "rubygem-openscap_parser-0:1.0.2-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-openscap_parser-0:1.0.2-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-openscap_parser-0:1.0.2-2.el8sat.src" + }, + "product_reference": "rubygem-openscap_parser-0:1.0.2-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-powerbar-0:2.0.1-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-powerbar-0:2.0.1-3.el8sat.noarch" + }, + "product_reference": "rubygem-powerbar-0:2.0.1-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-powerbar-0:2.0.1-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-powerbar-0:2.0.1-3.el8sat.src" + }, + "product_reference": "rubygem-powerbar-0:2.0.1-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-qpid_proton-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-qpid_proton-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "rubygem-qpid_proton-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-qpid_proton-debuginfo-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-qpid_proton-debuginfo-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "rubygem-qpid_proton-debuginfo-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-0:2.2.7-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rack-0:2.2.7-1.el8sat.noarch" + }, + "product_reference": "rubygem-rack-0:2.2.7-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-0:2.2.7-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rack-0:2.2.7-1.el8sat.src" + }, + "product_reference": "rubygem-rack-0:2.2.7-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-protection-0:2.2.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rack-protection-0:2.2.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-rack-protection-0:2.2.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-protection-0:2.2.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rack-protection-0:2.2.4-1.el8sat.src" + }, + "product_reference": "rubygem-rack-protection-0:2.2.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rb-inotify-0:0.10.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rb-inotify-0:0.10.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-rb-inotify-0:0.10.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rb-inotify-0:0.10.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rb-inotify-0:0.10.1-1.el8sat.src" + }, + "product_reference": "rubygem-rb-inotify-0:0.10.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rbnacl-0:4.0.2-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rbnacl-0:4.0.2-2.el8sat.noarch" + }, + "product_reference": "rubygem-rbnacl-0:4.0.2-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rbnacl-0:4.0.2-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rbnacl-0:4.0.2-2.el8sat.src" + }, + "product_reference": "rubygem-rbnacl-0:4.0.2-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-redfish_client-0:0.5.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-redfish_client-0:0.5.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-redfish_client-0:0.5.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-redfish_client-0:0.5.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-redfish_client-0:0.5.4-1.el8sat.src" + }, + "product_reference": "rubygem-redfish_client-0:0.5.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rest-client-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rest-client-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-rest-client-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rest-client-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rest-client-0:2.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-rest-client-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rkerberos-0:0.1.5-20.1.el8sat.src" + }, + "product_reference": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rkerberos-0:0.1.5-20.1.el8sat.x86_64" + }, + "product_reference": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rkerberos-debuginfo-0:0.1.5-20.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rkerberos-debuginfo-0:0.1.5-20.1.el8sat.x86_64" + }, + "product_reference": "rubygem-rkerberos-debuginfo-0:0.1.5-20.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rkerberos-debugsource-0:0.1.5-20.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rkerberos-debugsource-0:0.1.5-20.1.el8sat.x86_64" + }, + "product_reference": "rubygem-rkerberos-debugsource-0:0.1.5-20.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rsec-0:0.4.3-5.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rsec-0:0.4.3-5.el8sat.noarch" + }, + "product_reference": "rubygem-rsec-0:0.4.3-5.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rsec-0:0.4.3-5.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rsec-0:0.4.3-5.el8sat.src" + }, + "product_reference": "rubygem-rsec-0:0.4.3-5.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-ruby-libvirt-0:0.8.0-1.el8sat.src" + }, + "product_reference": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-ruby-libvirt-0:0.8.0-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby-libvirt-debuginfo-0:0.8.0-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-ruby-libvirt-debuginfo-0:0.8.0-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ruby-libvirt-debuginfo-0:0.8.0-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby-libvirt-debugsource-0:0.8.0-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-ruby-libvirt-debugsource-0:0.8.0-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ruby-libvirt-debugsource-0:0.8.0-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-ruby2_keywords-0:0.0.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-ruby2_keywords-0:0.0.5-1.el8sat.src" + }, + "product_reference": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rubyipmi-0:0.11.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rubyipmi-0:0.11.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-rubyipmi-0:0.11.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rubyipmi-0:0.11.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rubyipmi-0:0.11.1-1.el8sat.src" + }, + "product_reference": "rubygem-rubyipmi-0:0.11.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sd_notify-0:0.1.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-sd_notify-0:0.1.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-sd_notify-0:0.1.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sd_notify-0:0.1.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-sd_notify-0:0.1.1-1.el8sat.src" + }, + "product_reference": "rubygem-sd_notify-0:0.1.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sequel-0:5.68.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-sequel-0:5.68.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-sequel-0:5.68.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sequel-0:5.68.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-sequel-0:5.68.0-1.el8sat.src" + }, + "product_reference": "rubygem-sequel-0:5.68.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-server_sent_events-0:0.1.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-server_sent_events-0:0.1.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-server_sent_events-0:0.1.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-server_sent_events-0:0.1.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-server_sent_events-0:0.1.3-1.el8sat.src" + }, + "product_reference": "rubygem-server_sent_events-0:0.1.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sinatra-1:2.2.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-sinatra-1:2.2.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-sinatra-1:2.2.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sinatra-1:2.2.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-sinatra-1:2.2.4-1.el8sat.src" + }, + "product_reference": "rubygem-sinatra-1:2.2.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-snaky_hash-0:2.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-snaky_hash-0:2.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-snaky_hash-0:2.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sqlite3-0:1.4.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-sqlite3-0:1.4.2-1.el8sat.src" + }, + "product_reference": "rubygem-sqlite3-0:1.4.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sqlite3-0:1.4.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-sqlite3-0:1.4.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-sqlite3-0:1.4.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sqlite3-debuginfo-0:1.4.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-sqlite3-debuginfo-0:1.4.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-sqlite3-debuginfo-0:1.4.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sqlite3-debugsource-0:1.4.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-sqlite3-debugsource-0:1.4.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-sqlite3-debugsource-0:1.4.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-statsd-instrument-0:2.9.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-statsd-instrument-0:2.9.2-1.el8sat.src" + }, + "product_reference": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-tilt-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-tilt-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-tilt-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-tilt-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-tilt-0:2.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-tilt-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf-0:0.1.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-unf-0:0.1.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-unf-0:0.1.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf-0:0.1.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-unf-0:0.1.4-1.el8sat.src" + }, + "product_reference": "rubygem-unf-0:0.1.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-unf_ext-0:0.0.8.2-1.el8sat.src" + }, + "product_reference": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-version_gem-0:1.1.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-version_gem-0:1.1.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-version_gem-0:1.1.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-version_gem-0:1.1.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-version_gem-0:1.1.2-1.el8sat.src" + }, + "product_reference": "rubygem-version_gem-0:1.1.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-webrick-0:1.8.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-webrick-0:1.8.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-webrick-0:1.8.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-webrick-0:1.8.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-webrick-0:1.8.1-1.el8sat.src" + }, + "product_reference": "rubygem-webrick-0:1.8.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-xmlrpc-0:0.3.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-xmlrpc-0:0.3.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-xmlrpc-0:0.3.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-xmlrpc-0:0.3.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-xmlrpc-0:0.3.2-1.el8sat.src" + }, + "product_reference": "rubygem-xmlrpc-0:0.3.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "saslwrapper-0:0.22-6.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:saslwrapper-0:0.22-6.el8sat.src" + }, + "product_reference": "saslwrapper-0:0.22-6.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "saslwrapper-0:0.22-6.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:saslwrapper-0:0.22-6.el8sat.x86_64" + }, + "product_reference": "saslwrapper-0:0.22-6.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64" + }, + "product_reference": "saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "saslwrapper-debugsource-0:0.22-6.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:saslwrapper-debugsource-0:0.22-6.el8sat.x86_64" + }, + "product_reference": "saslwrapper-debugsource-0:0.22-6.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.14.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:satellite-0:6.14.0-3.el8sat.noarch" + }, + "product_reference": "satellite-0:6.14.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.14.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:satellite-0:6.14.0-3.el8sat.src" + }, + "product_reference": "satellite-0:6.14.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.14.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:satellite-capsule-0:6.14.0-3.el8sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.14.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.14.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:satellite-cli-0:6.14.0-3.el8sat.noarch" + }, + "product_reference": "satellite-cli-0:6.14.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.14.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:satellite-common-0:6.14.0-3.el8sat.noarch" + }, + "product_reference": "satellite-common-0:6.14.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-installer-0:6.14.0.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:satellite-installer-0:6.14.0.5-1.el8sat.noarch" + }, + "product_reference": "satellite-installer-0:6.14.0.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-installer-0:6.14.0.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:satellite-installer-0:6.14.0.5-1.el8sat.src" + }, + "product_reference": "satellite-installer-0:6.14.0.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-maintain-0:0.0.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:satellite-maintain-0:0.0.2-1.el8sat.noarch" + }, + "product_reference": "satellite-maintain-0:0.0.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-maintain-0:0.0.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:satellite-maintain-0:0.0.2-1.el8sat.src" + }, + "product_reference": "satellite-maintain-0:0.0.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-clamp-0:1.3.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-maintenance:rubygem-clamp-0:1.3.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-clamp-0:1.3.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-maintenance" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-clamp-0:1.3.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-maintenance:rubygem-clamp-0:1.3.2-1.el8sat.src" + }, + "product_reference": "rubygem-clamp-0:1.3.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-maintenance" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-maintenance:rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-maintenance" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-maintenance:rubygem-foreman_maintain-1:1.3.5-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-maintenance" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-highline-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-maintenance:rubygem-highline-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-highline-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-maintenance" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-highline-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-maintenance:rubygem-highline-0:2.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-highline-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-maintenance" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-clone-0:3.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-maintenance:satellite-clone-0:3.5.0-1.el8sat.noarch" + }, + "product_reference": "satellite-clone-0:3.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-maintenance" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-clone-0:3.5.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-maintenance:satellite-clone-0:3.5.0-1.el8sat.src" + }, + "product_reference": "satellite-clone-0:3.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-maintenance" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-maintain-0:0.0.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-maintenance:satellite-maintain-0:0.0.2-1.el8sat.noarch" + }, + "product_reference": "satellite-maintain-0:0.0.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-maintenance" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-maintain-0:0.0.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-maintenance:satellite-maintain-0:0.0.2-1.el8sat.src" + }, + "product_reference": "satellite-maintain-0:0.0.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-maintenance" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.7.0.9-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-0:3.7.0.9-1.el8sat.src" + }, + "product_reference": "foreman-0:3.7.0.9-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-cli-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-cli-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-debug-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-debug-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-ec2-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-journald-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-journald-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-libvirt-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-openstack-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-ovirt-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-postgresql-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-redis-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-redis-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-redis-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-service-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-service-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-telemetry-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-vmware-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp_manifest-0:3.0.0-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:python-pulp_manifest-0:3.0.0-3.el8pc.src" + }, + "product_reference": "python-pulp_manifest-0:3.0.0-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp_manifest-0:3.0.0-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:python39-pulp_manifest-0:3.0.0-3.el8pc.noarch" + }, + "product_reference": "python39-pulp_manifest-0:3.0.0-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-amazing_print-0:1.4.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-amazing_print-0:1.4.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-amazing_print-0:1.4.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-amazing_print-0:1.4.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-amazing_print-0:1.4.0-1.el8sat.src" + }, + "product_reference": "rubygem-amazing_print-0:1.4.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-apipie-bindings-0:0.6.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-apipie-bindings-0:0.6.0-1.el8sat.src" + }, + "product_reference": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-clamp-0:1.3.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-clamp-0:1.3.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-clamp-0:1.3.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-clamp-0:1.3.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-clamp-0:1.3.2-1.el8sat.src" + }, + "product_reference": "rubygem-clamp-0:1.3.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch" + }, + "product_reference": "rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-domain_name-0:0.5.20190701-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-domain_name-0:0.5.20190701-1.el8sat.src" + }, + "product_reference": "rubygem-domain_name-0:0.5.20190701-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fast_gettext-0:1.8.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-fast_gettext-0:1.8.0-1.el8sat.src" + }, + "product_reference": "rubygem-fast_gettext-0:1.8.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ffi-0:1.15.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-ffi-0:1.15.5-1.el8sat.src" + }, + "product_reference": "rubygem-ffi-0:1.15.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ffi-0:1.15.5-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-ffi-0:1.15.5-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ffi-0:1.15.5-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-gssapi-0:1.3.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-gssapi-0:1.3.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-gssapi-0:1.3.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-gssapi-0:1.3.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-gssapi-0:1.3.1-1.el8sat.src" + }, + "product_reference": "rubygem-gssapi-0:1.3.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli-0:3.7.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli-0:3.7.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hashie-0:5.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hashie-0:5.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hashie-0:5.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hashie-0:5.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hashie-0:5.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-hashie-0:5.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-highline-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-highline-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-highline-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-highline-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-highline-0:2.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-highline-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-accept-0:1.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-http-accept-0:1.7.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-http-accept-0:1.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-accept-0:1.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-http-accept-0:1.7.0-1.el8sat.src" + }, + "product_reference": "rubygem-http-accept-0:1.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-cookie-0:1.0.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-http-cookie-0:1.0.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-http-cookie-0:1.0.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-cookie-0:1.0.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-http-cookie-0:1.0.5-1.el8sat.src" + }, + "product_reference": "rubygem-http-cookie-0:1.0.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-jwt-0:2.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-jwt-0:2.7.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-jwt-0:2.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-jwt-0:2.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-jwt-0:2.7.0-1.el8sat.src" + }, + "product_reference": "rubygem-jwt-0:2.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-little-plugger-0:1.1.4-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-little-plugger-0:1.1.4-3.el8sat.noarch" + }, + "product_reference": "rubygem-little-plugger-0:1.1.4-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-little-plugger-0:1.1.4-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-little-plugger-0:1.1.4-3.el8sat.src" + }, + "product_reference": "rubygem-little-plugger-0:1.1.4-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-locale-0:2.1.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-locale-0:2.1.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-locale-0:2.1.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-locale-0:2.1.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-locale-0:2.1.3-1.el8sat.src" + }, + "product_reference": "rubygem-locale-0:2.1.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-logging-0:2.3.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-logging-0:2.3.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-logging-0:2.3.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-logging-0:2.3.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-logging-0:2.3.1-1.el8sat.src" + }, + "product_reference": "rubygem-logging-0:2.3.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mime-types-0:3.4.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-mime-types-0:3.4.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-mime-types-0:3.4.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mime-types-0:3.4.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-mime-types-0:3.4.1-1.el8sat.src" + }, + "product_reference": "rubygem-mime-types-0:3.4.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src" + }, + "product_reference": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-multi_json-0:1.15.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-multi_json-0:1.15.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-multi_json-0:1.15.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-multi_json-0:1.15.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-multi_json-0:1.15.0-1.el8sat.src" + }, + "product_reference": "rubygem-multi_json-0:1.15.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-netrc-0:0.11.0-6.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-netrc-0:0.11.0-6.el8sat.noarch" + }, + "product_reference": "rubygem-netrc-0:0.11.0-6.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-netrc-0:0.11.0-6.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-netrc-0:0.11.0-6.el8sat.src" + }, + "product_reference": "rubygem-netrc-0:0.11.0-6.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-oauth-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-oauth-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-oauth-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-oauth-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-oauth-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-oauth-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-oauth-tty-0:1.0.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-oauth-tty-0:1.0.5-1.el8sat.src" + }, + "product_reference": "rubygem-oauth-tty-0:1.0.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-powerbar-0:2.0.1-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-powerbar-0:2.0.1-3.el8sat.noarch" + }, + "product_reference": "rubygem-powerbar-0:2.0.1-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-powerbar-0:2.0.1-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-powerbar-0:2.0.1-3.el8sat.src" + }, + "product_reference": "rubygem-powerbar-0:2.0.1-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rest-client-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-rest-client-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-rest-client-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rest-client-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-rest-client-0:2.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-rest-client-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-snaky_hash-0:2.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-snaky_hash-0:2.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-snaky_hash-0:2.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf-0:0.1.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-unf-0:0.1.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-unf-0:0.1.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf-0:0.1.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-unf-0:0.1.4-1.el8sat.src" + }, + "product_reference": "rubygem-unf-0:0.1.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-unf_ext-0:0.0.8.2-1.el8sat.src" + }, + "product_reference": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-unicode-0:0.4.4.4-4.1.el8sat.src" + }, + "product_reference": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-unicode-0:0.4.4.4-4.1.el8sat.x86_64" + }, + "product_reference": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unicode-debuginfo-0:0.4.4.4-4.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-unicode-debuginfo-0:0.4.4.4-4.1.el8sat.x86_64" + }, + "product_reference": "rubygem-unicode-debuginfo-0:0.4.4.4-4.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unicode-debugsource-0:0.4.4.4-4.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-unicode-debugsource-0:0.4.4.4-4.1.el8sat.x86_64" + }, + "product_reference": "rubygem-unicode-debugsource-0:0.4.4.4-4.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-unicode-display_width-0:1.8.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-unicode-display_width-0:1.8.0-1.el8sat.src" + }, + "product_reference": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-version_gem-0:1.1.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-version_gem-0:1.1.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-version_gem-0:1.1.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-version_gem-0:1.1.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-version_gem-0:1.1.2-1.el8sat.src" + }, + "product_reference": "rubygem-version_gem-0:1.1.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.14.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:satellite-0:6.14.0-3.el8sat.noarch" + }, + "product_reference": "satellite-0:6.14.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.14.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:satellite-0:6.14.0-3.el8sat.src" + }, + "product_reference": "satellite-0:6.14.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.14.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:satellite-capsule-0:6.14.0-3.el8sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.14.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.14.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:satellite-cli-0:6.14.0-3.el8sat.noarch" + }, + "product_reference": "satellite-cli-0:6.14.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.14.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:satellite-common-0:6.14.0-3.el8sat.noarch" + }, + "product_reference": "satellite-common-0:6.14.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.noarch" + }, + "product_reference": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.src" + }, + "product_reference": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.src" + }, + "product_reference": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-lint-0:5.0.8-4.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ansible-lint-0:5.0.8-4.el8pc.noarch" + }, + "product_reference": "ansible-lint-0:5.0.8-4.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-lint-0:5.0.8-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ansible-lint-0:5.0.8-4.el8pc.src" + }, + "product_reference": "ansible-lint-0:5.0.8-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-runner-0:2.2.1-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ansible-runner-0:2.2.1-3.el8sat.noarch" + }, + "product_reference": "ansible-runner-0:2.2.1-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-runner-0:2.2.1-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ansible-runner-0:2.2.1-3.el8sat.src" + }, + "product_reference": "ansible-runner-0:2.2.1-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.noarch" + }, + "product_reference": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.src" + }, + "product_reference": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansiblerole-insights-client-0:1.7.1-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ansiblerole-insights-client-0:1.7.1-2.el8sat.noarch" + }, + "product_reference": "ansiblerole-insights-client-0:1.7.1-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansiblerole-insights-client-0:1.7.1-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ansiblerole-insights-client-0:1.7.1-2.el8sat.src" + }, + "product_reference": "ansiblerole-insights-client-0:1.7.1-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "candlepin-0:4.3.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:candlepin-0:4.3.1-1.el8sat.noarch" + }, + "product_reference": "candlepin-0:4.3.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "candlepin-0:4.3.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:candlepin-0:4.3.1-1.el8sat.src" + }, + "product_reference": "candlepin-0:4.3.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "candlepin-selinux-0:4.3.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:candlepin-selinux-0:4.3.1-1.el8sat.noarch" + }, + "product_reference": "candlepin-selinux-0:4.3.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cjson-0:1.7.14-5.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:cjson-0:1.7.14-5.el8sat.src" + }, + "product_reference": "cjson-0:1.7.14-5.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cjson-0:1.7.14-5.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:cjson-0:1.7.14-5.el8sat.x86_64" + }, + "product_reference": "cjson-0:1.7.14-5.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cjson-debuginfo-0:1.7.14-5.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:cjson-debuginfo-0:1.7.14-5.el8sat.x86_64" + }, + "product_reference": "cjson-debuginfo-0:1.7.14-5.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cjson-debugsource-0:1.7.14-5.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:cjson-debugsource-0:1.7.14-5.el8sat.x86_64" + }, + "product_reference": "cjson-debugsource-0:1.7.14-5.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "createrepo_c-0:0.20.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:createrepo_c-0:0.20.1-1.el8pc.src" + }, + "product_reference": "createrepo_c-0:0.20.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "createrepo_c-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:createrepo_c-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "createrepo_c-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "createrepo_c-debugsource-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:createrepo_c-debugsource-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "createrepo_c-debugsource-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "createrepo_c-libs-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:createrepo_c-libs-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "createrepo_c-libs-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "createrepo_c-libs-debuginfo-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:createrepo_c-libs-debuginfo-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "createrepo_c-libs-debuginfo-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dynflow-utils-0:1.6.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:dynflow-utils-0:1.6.3-1.el8sat.src" + }, + "product_reference": "dynflow-utils-0:1.6.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dynflow-utils-0:1.6.3-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:dynflow-utils-0:1.6.3-1.el8sat.x86_64" + }, + "product_reference": "dynflow-utils-0:1.6.3-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.7.0.9-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-0:3.7.0.9-1.el8sat.src" + }, + "product_reference": "foreman-0:3.7.0.9-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-bootloaders-redhat-0:202102220000-1.el8sat.noarch" + }, + "product_reference": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-bootloaders-redhat-0:202102220000-1.el8sat.src" + }, + "product_reference": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-bootloaders-redhat-tftpboot-0:202102220000-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-bootloaders-redhat-tftpboot-0:202102220000-1.el8sat.noarch" + }, + "product_reference": "foreman-bootloaders-redhat-tftpboot-0:202102220000-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-cli-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-cli-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-debug-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-debug-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-discovery-image-1:4.1.0-10.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-discovery-image-1:4.1.0-10.el8sat.noarch" + }, + "product_reference": "foreman-discovery-image-1:4.1.0-10.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-discovery-image-1:4.1.0-10.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-discovery-image-1:4.1.0-10.el8sat.src" + }, + "product_reference": "foreman-discovery-image-1:4.1.0-10.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-discovery-image-service-0:1.0.0-4.1.el8sat.src" + }, + "product_reference": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-discovery-image-service-0:1.0.0-4.1.el8sat.x86_64" + }, + "product_reference": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-discovery-image-service-tui-0:1.0.0-4.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-discovery-image-service-tui-0:1.0.0-4.1.el8sat.x86_64" + }, + "product_reference": "foreman-discovery-image-service-tui-0:1.0.0-4.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-ec2-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-installer-1:3.7.0.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-installer-1:3.7.0.4-1.el8sat.noarch" + }, + "product_reference": "foreman-installer-1:3.7.0.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-installer-1:3.7.0.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-installer-1:3.7.0.4-1.el8sat.src" + }, + "product_reference": "foreman-installer-1:3.7.0.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-installer-katello-1:3.7.0.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-installer-katello-1:3.7.0.4-1.el8sat.noarch" + }, + "product_reference": "foreman-installer-katello-1:3.7.0.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-journald-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-journald-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-libvirt-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-obsolete-packages-0:1.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-obsolete-packages-0:1.5-1.el8sat.noarch" + }, + "product_reference": "foreman-obsolete-packages-0:1.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-obsolete-packages-0:1.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-obsolete-packages-0:1.5-1.el8sat.src" + }, + "product_reference": "foreman-obsolete-packages-0:1.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-openstack-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-ovirt-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-postgresql-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-proxy-0:3.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-proxy-0:3.7.0-1.el8sat.noarch" + }, + "product_reference": "foreman-proxy-0:3.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-proxy-0:3.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-proxy-0:3.7.0-1.el8sat.src" + }, + "product_reference": "foreman-proxy-0:3.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-proxy-content-0:4.9.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-proxy-content-0:4.9.0-1.el8sat.noarch" + }, + "product_reference": "foreman-proxy-content-0:4.9.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-proxy-journald-0:3.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-proxy-journald-0:3.7.0-1.el8sat.noarch" + }, + "product_reference": "foreman-proxy-journald-0:3.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-redis-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-redis-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-redis-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-selinux-0:3.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-selinux-0:3.7.0-1.el8sat.noarch" + }, + "product_reference": "foreman-selinux-0:3.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-selinux-0:3.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-selinux-0:3.7.0-1.el8sat.src" + }, + "product_reference": "foreman-selinux-0:3.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-service-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-service-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-telemetry-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-vmware-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-0:4.9.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:katello-0:4.9.0-1.el8sat.noarch" + }, + "product_reference": "katello-0:4.9.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-0:4.9.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:katello-0:4.9.0-1.el8sat.src" + }, + "product_reference": "katello-0:4.9.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-certs-tools-0:2.9.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:katello-certs-tools-0:2.9.0-2.el8sat.noarch" + }, + "product_reference": "katello-certs-tools-0:2.9.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-certs-tools-0:2.9.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:katello-certs-tools-0:2.9.0-2.el8sat.src" + }, + "product_reference": "katello-certs-tools-0:2.9.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-client-bootstrap-0:1.7.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:katello-client-bootstrap-0:1.7.9-1.el8sat.noarch" + }, + "product_reference": "katello-client-bootstrap-0:1.7.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-client-bootstrap-0:1.7.9-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:katello-client-bootstrap-0:1.7.9-1.el8sat.src" + }, + "product_reference": "katello-client-bootstrap-0:1.7.9-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-common-0:4.9.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:katello-common-0:4.9.0-1.el8sat.noarch" + }, + "product_reference": "katello-common-0:4.9.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-debug-0:4.9.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:katello-debug-0:4.9.0-1.el8sat.noarch" + }, + "product_reference": "katello-debug-0:4.9.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-selinux-0:5.0.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:katello-selinux-0:5.0.2-1.el8sat.noarch" + }, + "product_reference": "katello-selinux-0:5.0.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-selinux-0:5.0.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:katello-selinux-0:5.0.2-1.el8sat.src" + }, + "product_reference": "katello-selinux-0:5.0.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libcomps-0:0.1.18-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libcomps-0:0.1.18-4.el8pc.src" + }, + "product_reference": "libcomps-0:0.1.18-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libcomps-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libcomps-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "libcomps-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libcomps-debugsource-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libcomps-debugsource-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "libcomps-debugsource-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-cxx-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libdb-cxx-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-cxx-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-cxx-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libdb-cxx-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-cxx-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libdb-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-debugsource-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libdb-debugsource-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-debugsource-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-java-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libdb-java-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-java-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-sql-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libdb-sql-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-sql-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-sql-devel-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libdb-sql-devel-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-sql-devel-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-tcl-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libdb-tcl-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-tcl-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-utils-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libdb-utils-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-utils-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsodium-0:1.0.17-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libsodium-0:1.0.17-3.el8sat.src" + }, + "product_reference": "libsodium-0:1.0.17-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsodium-0:1.0.17-3.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libsodium-0:1.0.17-3.el8sat.x86_64" + }, + "product_reference": "libsodium-0:1.0.17-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsodium-debuginfo-0:1.0.17-3.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libsodium-debuginfo-0:1.0.17-3.el8sat.x86_64" + }, + "product_reference": "libsodium-debuginfo-0:1.0.17-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsodium-debugsource-0:1.0.17-3.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libsodium-debugsource-0:1.0.17-3.el8sat.x86_64" + }, + "product_reference": "libsodium-debugsource-0:1.0.17-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsolv-0:0.7.22-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libsolv-0:0.7.22-4.el8pc.src" + }, + "product_reference": "libsolv-0:0.7.22-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsolv-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libsolv-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "libsolv-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsolv-debuginfo-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libsolv-debuginfo-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "libsolv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsolv-debugsource-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libsolv-debugsource-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "libsolv-debugsource-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsolv-demo-debuginfo-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libsolv-demo-debuginfo-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "libsolv-demo-debuginfo-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsolv-tools-debuginfo-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libsolv-tools-debuginfo-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "libsolv-tools-debuginfo-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libwebsockets-0:2.4.2-2.el8.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libwebsockets-0:2.4.2-2.el8.src" + }, + "product_reference": "libwebsockets-0:2.4.2-2.el8.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libwebsockets-0:2.4.2-2.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libwebsockets-0:2.4.2-2.el8.x86_64" + }, + "product_reference": "libwebsockets-0:2.4.2-2.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libwebsockets-debuginfo-0:2.4.2-2.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libwebsockets-debuginfo-0:2.4.2-2.el8.x86_64" + }, + "product_reference": "libwebsockets-debuginfo-0:2.4.2-2.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libwebsockets-debugsource-0:2.4.2-2.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libwebsockets-debugsource-0:2.4.2-2.el8.x86_64" + }, + "product_reference": "libwebsockets-debugsource-0:2.4.2-2.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libwebsockets-tests-debuginfo-0:2.4.2-2.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libwebsockets-tests-debuginfo-0:2.4.2-2.el8.x86_64" + }, + "product_reference": "libwebsockets-tests-debuginfo-0:2.4.2-2.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mosquitto-0:2.0.14-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:mosquitto-0:2.0.14-1.el8sat.src" + }, + "product_reference": "mosquitto-0:2.0.14-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mosquitto-0:2.0.14-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:mosquitto-0:2.0.14-1.el8sat.x86_64" + }, + "product_reference": "mosquitto-0:2.0.14-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mosquitto-debuginfo-0:2.0.14-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:mosquitto-debuginfo-0:2.0.14-1.el8sat.x86_64" + }, + "product_reference": "mosquitto-debuginfo-0:2.0.14-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mosquitto-debugsource-0:2.0.14-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:mosquitto-debugsource-0:2.0.14-1.el8sat.x86_64" + }, + "product_reference": "mosquitto-debugsource-0:2.0.14-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "postgresql-evr-0:0.0.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:postgresql-evr-0:0.0.2-1.el8sat.src" + }, + "product_reference": "postgresql-evr-0:0.0.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "postgresql-evr-0:0.0.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:postgresql-evr-0:0.0.2-1.el8sat.x86_64" + }, + "product_reference": "postgresql-evr-0:0.0.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "pulpcore-selinux-0:1.3.3-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:pulpcore-selinux-0:1.3.3-1.el8pc.src" + }, + "product_reference": "pulpcore-selinux-0:1.3.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "pulpcore-selinux-0:1.3.3-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:pulpcore-selinux-0:1.3.3-1.el8pc.x86_64" + }, + "product_reference": "pulpcore-selinux-0:1.3.3-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:puppet-agent-0:7.26.0-3.el8sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:puppet-agent-0:7.26.0-3.el8sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-oauth-0:0.5.10-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:puppet-agent-oauth-0:0.5.10-1.el8sat.noarch" + }, + "product_reference": "puppet-agent-oauth-0:0.5.10-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-oauth-0:0.5.10-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:puppet-agent-oauth-0:0.5.10-1.el8sat.src" + }, + "product_reference": "puppet-agent-oauth-0:0.5.10-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:puppet-foreman_scap_client-0:0.4.0-1.el8sat.noarch" + }, + "product_reference": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:puppet-foreman_scap_client-0:0.4.0-1.el8sat.src" + }, + "product_reference": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppetlabs-stdlib-0:5.2.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:puppetlabs-stdlib-0:5.2.0-1.el8sat.noarch" + }, + "product_reference": "puppetlabs-stdlib-0:5.2.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppetlabs-stdlib-0:5.2.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:puppetlabs-stdlib-0:5.2.0-1.el8sat.src" + }, + "product_reference": "puppetlabs-stdlib-0:5.2.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppetserver-0:7.11.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:puppetserver-0:7.11.0-1.el8sat.noarch" + }, + "product_reference": "puppetserver-0:7.11.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppetserver-0:7.11.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:puppetserver-0:7.11.0-1.el8sat.src" + }, + "product_reference": "puppetserver-0:7.11.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aiodns-0:3.0.0-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-aiodns-0:3.0.0-3.el8pc.src" + }, + "product_reference": "python-aiodns-0:3.0.0-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aiofiles-0:22.1.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-aiofiles-0:22.1.0-1.el8pc.src" + }, + "product_reference": "python-aiofiles-0:22.1.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aiohttp-0:3.8.3-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-aiohttp-0:3.8.3-2.el8pc.src" + }, + "product_reference": "python-aiohttp-0:3.8.3-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aiohttp-debugsource-0:3.8.3-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-aiohttp-debugsource-0:3.8.3-2.el8pc.x86_64" + }, + "product_reference": "python-aiohttp-debugsource-0:3.8.3-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aiohttp-xmlrpc-0:1.5.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-aiohttp-xmlrpc-0:1.5.0-2.el8pc.src" + }, + "product_reference": "python-aiohttp-xmlrpc-0:1.5.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aioredis-0:2.0.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-aioredis-0:2.0.1-2.el8pc.src" + }, + "product_reference": "python-aioredis-0:2.0.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aiosignal-0:1.3.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-aiosignal-0:1.3.1-1.el8pc.src" + }, + "product_reference": "python-aiosignal-0:1.3.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ansible-builder-0:1.0.1-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-ansible-builder-0:1.0.1-4.el8pc.src" + }, + "product_reference": "python-ansible-builder-0:1.0.1-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-asgiref-0:3.6.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-asgiref-0:3.6.0-1.el8pc.src" + }, + "product_reference": "python-asgiref-0:3.6.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-async-lru-0:1.0.3-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-async-lru-0:1.0.3-1.el8pc.src" + }, + "product_reference": "python-async-lru-0:1.0.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-async-timeout-0:4.0.2-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-async-timeout-0:4.0.2-2.el8pc.src" + }, + "product_reference": "python-async-timeout-0:4.0.2-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-asyncio-throttle-0:1.0.2-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-asyncio-throttle-0:1.0.2-3.el8pc.src" + }, + "product_reference": "python-asyncio-throttle-0:1.0.2-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-attrs-0:21.4.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-attrs-0:21.4.0-2.el8pc.src" + }, + "product_reference": "python-attrs-0:21.4.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-backoff-0:2.2.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-backoff-0:2.2.1-1.el8pc.src" + }, + "product_reference": "python-backoff-0:2.2.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-bindep-0:2.11.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-bindep-0:2.11.0-2.el8pc.src" + }, + "product_reference": "python-bindep-0:2.11.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-bleach-0:3.3.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-bleach-0:3.3.1-2.el8pc.src" + }, + "product_reference": "python-bleach-0:3.3.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-bleach-allowlist-0:1.0.3-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-bleach-allowlist-0:1.0.3-3.el8pc.src" + }, + "product_reference": "python-bleach-allowlist-0:1.0.3-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-bracex-0:2.2.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-bracex-0:2.2.1-2.el8pc.src" + }, + "product_reference": "python-bracex-0:2.2.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-brotli-0:1.0.9-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-brotli-0:1.0.9-2.el8pc.src" + }, + "product_reference": "python-brotli-0:1.0.9-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-brotli-debugsource-0:1.0.9-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-brotli-debugsource-0:1.0.9-2.el8pc.x86_64" + }, + "product_reference": "python-brotli-debugsource-0:1.0.9-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cchardet-0:2.1.7-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-cchardet-0:2.1.7-4.el8pc.src" + }, + "product_reference": "python-cchardet-0:2.1.7-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cchardet-debugsource-0:2.1.7-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-cchardet-debugsource-0:2.1.7-4.el8pc.x86_64" + }, + "product_reference": "python-cchardet-debugsource-0:2.1.7-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-certifi-0:2022.12.7-1.1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-certifi-0:2022.12.7-1.1.el8pc.src" + }, + "product_reference": "python-certifi-0:2022.12.7-1.1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cffi-0:1.15.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-cffi-0:1.15.1-1.el8pc.src" + }, + "product_reference": "python-cffi-0:1.15.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cffi-debugsource-0:1.15.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-cffi-debugsource-0:1.15.1-1.el8pc.x86_64" + }, + "product_reference": "python-cffi-debugsource-0:1.15.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-chardet-0:5.0.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-chardet-0:5.0.0-1.el8pc.src" + }, + "product_reference": "python-chardet-0:5.0.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-charset-normalizer-0:2.1.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-charset-normalizer-0:2.1.1-1.el8pc.src" + }, + "product_reference": "python-charset-normalizer-0:2.1.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-click-0:8.1.3-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-click-0:8.1.3-1.el8pc.src" + }, + "product_reference": "python-click-0:8.1.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-click-shell-0:2.1-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-click-shell-0:2.1-3.el8pc.src" + }, + "product_reference": "python-click-shell-0:2.1-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-colorama-0:0.4.4-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-colorama-0:0.4.4-3.el8pc.src" + }, + "product_reference": "python-colorama-0:0.4.4-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-commonmark-0:0.9.1-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-commonmark-0:0.9.1-5.el8pc.src" + }, + "product_reference": "python-commonmark-0:0.9.1-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-contextlib2-0:21.6.0-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-contextlib2-0:21.6.0-3.el8pc.src" + }, + "product_reference": "python-contextlib2-0:21.6.0-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cryptography-0:38.0.4-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-cryptography-0:38.0.4-1.el8pc.src" + }, + "product_reference": "python-cryptography-0:38.0.4-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cryptography-debugsource-0:38.0.4-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-cryptography-debugsource-0:38.0.4-1.el8pc.x86_64" + }, + "product_reference": "python-cryptography-debugsource-0:38.0.4-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-daemon-0:2.3.1-1.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-daemon-0:2.3.1-1.1.el8sat.src" + }, + "product_reference": "python-daemon-0:2.3.1-1.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-dataclasses-0:0.8-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-dataclasses-0:0.8-3.el8pc.src" + }, + "product_reference": "python-dataclasses-0:0.8-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-dateutil-0:2.8.2-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-dateutil-0:2.8.2-2.el8pc.src" + }, + "product_reference": "python-dateutil-0:2.8.2-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-debian-0:0.1.44-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-debian-0:0.1.44-3.el8pc.src" + }, + "product_reference": "python-debian-0:0.1.44-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-defusedxml-0:0.7.1-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-defusedxml-0:0.7.1-3.el8pc.src" + }, + "product_reference": "python-defusedxml-0:0.7.1-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-deprecated-0:1.2.13-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-deprecated-0:1.2.13-1.el8pc.src" + }, + "product_reference": "python-deprecated-0:1.2.13-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-diff-match-patch-0:20200713-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-diff-match-patch-0:20200713-3.el8pc.src" + }, + "product_reference": "python-diff-match-patch-0:20200713-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-distro-0:1.7.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-distro-0:1.7.0-1.el8pc.src" + }, + "product_reference": "python-distro-0:1.7.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-0:3.2.21-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-django-0:3.2.21-1.el8pc.src" + }, + "product_reference": "python-django-0:3.2.21-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-currentuser-0:0.5.3-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-django-currentuser-0:0.5.3-5.el8pc.src" + }, + "product_reference": "python-django-currentuser-0:0.5.3-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-filter-0:22.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-django-filter-0:22.1-2.el8pc.src" + }, + "product_reference": "python-django-filter-0:22.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-guid-0:3.3.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-django-guid-0:3.3.0-1.el8pc.src" + }, + "product_reference": "python-django-guid-0:3.3.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-import-export-0:3.0.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-django-import-export-0:3.0.2-1.el8pc.src" + }, + "product_reference": "python-django-import-export-0:3.0.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-lifecycle-0:1.0.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-django-lifecycle-0:1.0.0-1.el8pc.src" + }, + "product_reference": "python-django-lifecycle-0:1.0.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-readonly-field-0:1.1.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-django-readonly-field-0:1.1.2-1.el8pc.src" + }, + "product_reference": "python-django-readonly-field-0:1.1.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-djangorestframework-0:3.14.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-djangorestframework-0:3.14.0-1.el8pc.src" + }, + "product_reference": "python-djangorestframework-0:3.14.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-djangorestframework-queryfields-0:1.0.0-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-djangorestframework-queryfields-0:1.0.0-5.el8pc.src" + }, + "product_reference": "python-djangorestframework-queryfields-0:1.0.0-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-docutils-0:0.19-1.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-docutils-0:0.19-1.1.el8sat.src" + }, + "product_reference": "python-docutils-0:0.19-1.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-drf-access-policy-0:1.3.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-drf-access-policy-0:1.3.0-1.el8pc.src" + }, + "product_reference": "python-drf-access-policy-0:1.3.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-drf-nested-routers-0:0.93.4-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-drf-nested-routers-0:0.93.4-3.el8pc.src" + }, + "product_reference": "python-drf-nested-routers-0:0.93.4-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-drf-spectacular-0:0.25.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-drf-spectacular-0:0.25.0-1.el8pc.src" + }, + "product_reference": "python-drf-spectacular-0:0.25.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-dynaconf-0:3.1.11-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-dynaconf-0:3.1.11-1.el8pc.src" + }, + "product_reference": "python-dynaconf-0:3.1.11-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ecdsa-0:0.18.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-ecdsa-0:0.18.0-1.el8pc.src" + }, + "product_reference": "python-ecdsa-0:0.18.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-enrich-0:1.2.6-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-enrich-0:1.2.6-5.el8pc.src" + }, + "product_reference": "python-enrich-0:1.2.6-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-et-xmlfile-0:1.1.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-et-xmlfile-0:1.1.0-2.el8pc.src" + }, + "product_reference": "python-et-xmlfile-0:1.1.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-flake8-0:3.9.2-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-flake8-0:3.9.2-5.el8pc.src" + }, + "product_reference": "python-flake8-0:3.9.2-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-frozenlist-0:1.3.3-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-frozenlist-0:1.3.3-1.el8pc.src" + }, + "product_reference": "python-frozenlist-0:1.3.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-frozenlist-debugsource-0:1.3.3-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-frozenlist-debugsource-0:1.3.3-1.el8pc.x86_64" + }, + "product_reference": "python-frozenlist-debugsource-0:1.3.3-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-future-0:0.18.3-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-future-0:0.18.3-1.el8pc.src" + }, + "product_reference": "python-future-0:0.18.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-galaxy-importer-0:0.4.6-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-galaxy-importer-0:0.4.6-1.el8pc.src" + }, + "product_reference": "python-galaxy-importer-0:0.4.6-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-gitdb-0:4.0.10-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-gitdb-0:4.0.10-1.el8pc.src" + }, + "product_reference": "python-gitdb-0:4.0.10-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-gitpython-0:3.1.32-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-gitpython-0:3.1.32-1.el8pc.src" + }, + "product_reference": "python-gitpython-0:3.1.32-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-gnupg-0:0.5.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-gnupg-0:0.5.0-1.el8pc.src" + }, + "product_reference": "python-gnupg-0:0.5.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-gunicorn-0:20.1.0-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-gunicorn-0:20.1.0-5.el8pc.src" + }, + "product_reference": "python-gunicorn-0:20.1.0-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-idna-0:3.3-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-idna-0:3.3-2.el8pc.src" + }, + "product_reference": "python-idna-0:3.3-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-idna-ssl-0:1.1.0-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-idna-ssl-0:1.1.0-5.el8pc.src" + }, + "product_reference": "python-idna-ssl-0:1.1.0-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-importlib-metadata-0:4.10.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-importlib-metadata-0:4.10.1-2.el8pc.src" + }, + "product_reference": "python-importlib-metadata-0:4.10.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-inflection-0:0.5.1-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-inflection-0:0.5.1-3.el8pc.src" + }, + "product_reference": "python-inflection-0:0.5.1-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-iniparse-0:0.4-35.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-iniparse-0:0.4-35.el8pc.src" + }, + "product_reference": "python-iniparse-0:0.4-35.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-jinja2-0:3.1.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-jinja2-0:3.1.2-1.el8pc.src" + }, + "product_reference": "python-jinja2-0:3.1.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-jsonschema-0:4.9.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-jsonschema-0:4.9.1-1.el8pc.src" + }, + "product_reference": "python-jsonschema-0:4.9.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-lockfile-0:0.12.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-lockfile-0:0.12.2-1.el8sat.src" + }, + "product_reference": "python-lockfile-0:0.12.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-lxml-0:4.9.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-lxml-0:4.9.2-1.el8pc.src" + }, + "product_reference": "python-lxml-0:4.9.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-lxml-debugsource-0:4.9.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-lxml-debugsource-0:4.9.2-1.el8pc.x86_64" + }, + "product_reference": "python-lxml-debugsource-0:4.9.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-markdown-0:3.4.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-markdown-0:3.4.1-1.el8pc.src" + }, + "product_reference": "python-markdown-0:3.4.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-markuppy-0:1.14-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-markuppy-0:1.14-3.el8pc.src" + }, + "product_reference": "python-markuppy-0:1.14-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-markupsafe-0:2.1.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-markupsafe-0:2.1.2-1.el8pc.src" + }, + "product_reference": "python-markupsafe-0:2.1.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-markupsafe-debugsource-0:2.1.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-markupsafe-debugsource-0:2.1.2-1.el8pc.x86_64" + }, + "product_reference": "python-markupsafe-debugsource-0:2.1.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-mccabe-0:0.6.1-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-mccabe-0:0.6.1-3.el8pc.src" + }, + "product_reference": "python-mccabe-0:0.6.1-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-multidict-0:6.0.4-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-multidict-0:6.0.4-1.el8pc.src" + }, + "product_reference": "python-multidict-0:6.0.4-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-multidict-debugsource-0:6.0.4-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-multidict-debugsource-0:6.0.4-1.el8pc.x86_64" + }, + "product_reference": "python-multidict-debugsource-0:6.0.4-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-naya-0:1.1.1-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-naya-0:1.1.1-3.el8pc.src" + }, + "product_reference": "python-naya-0:1.1.1-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-odfpy-0:1.4.1-6.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-odfpy-0:1.4.1-6.el8pc.src" + }, + "product_reference": "python-odfpy-0:1.4.1-6.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-openpyxl-0:3.1.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-openpyxl-0:3.1.0-1.el8pc.src" + }, + "product_reference": "python-openpyxl-0:3.1.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-packaging-0:21.3-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-packaging-0:21.3-1.el8pc.src" + }, + "product_reference": "python-packaging-0:21.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-parsley-0:1.3-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-parsley-0:1.3-2.el8pc.src" + }, + "product_reference": "python-parsley-0:1.3-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pbr-0:5.8.0-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pbr-0:5.8.0-4.el8pc.src" + }, + "product_reference": "python-pbr-0:5.8.0-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pexpect-0:4.8.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pexpect-0:4.8.0-2.el8sat.src" + }, + "product_reference": "python-pexpect-0:4.8.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-productmd-0:1.33-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-productmd-0:1.33-3.el8pc.src" + }, + "product_reference": "python-productmd-0:1.33-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-protobuf-0:4.21.6-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-protobuf-0:4.21.6-1.el8pc.src" + }, + "product_reference": "python-protobuf-0:4.21.6-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-psycopg2-0:2.9.3-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-psycopg2-0:2.9.3-2.el8pc.src" + }, + "product_reference": "python-psycopg2-0:2.9.3-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-psycopg2-debugsource-0:2.9.3-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-psycopg2-debugsource-0:2.9.3-2.el8pc.x86_64" + }, + "product_reference": "python-psycopg2-debugsource-0:2.9.3-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ptyprocess-0:0.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-ptyprocess-0:0.7.0-1.el8sat.src" + }, + "product_reference": "python-ptyprocess-0:0.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-ansible-1:0.16.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pulp-ansible-1:0.16.0-1.el8pc.src" + }, + "product_reference": "python-pulp-ansible-1:0.16.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-certguard-0:1.5.6-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pulp-certguard-0:1.5.6-1.el8pc.src" + }, + "product_reference": "python-pulp-certguard-0:1.5.6-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-cli-0:0.14.0-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pulp-cli-0:0.14.0-4.el8pc.src" + }, + "product_reference": "python-pulp-cli-0:0.14.0-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-container-0:2.14.7-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pulp-container-0:2.14.7-1.el8pc.src" + }, + "product_reference": "python-pulp-container-0:2.14.7-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-deb-0:2.20.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pulp-deb-0:2.20.2-1.el8pc.src" + }, + "product_reference": "python-pulp-deb-0:2.20.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-file-0:1.12.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pulp-file-0:1.12.0-1.el8pc.src" + }, + "product_reference": "python-pulp-file-0:1.12.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-rpm-0:3.19.9-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pulp-rpm-0:3.19.9-1.el8pc.src" + }, + "product_reference": "python-pulp-rpm-0:3.19.9-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp_manifest-0:3.0.0-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pulp_manifest-0:3.0.0-3.el8pc.src" + }, + "product_reference": "python-pulp_manifest-0:3.0.0-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulpcore-0:3.22.15-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pulpcore-0:3.22.15-2.el8pc.src" + }, + "product_reference": "python-pulpcore-0:3.22.15-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyOpenSSL-0:22.1.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pyOpenSSL-0:22.1.0-1.el8pc.src" + }, + "product_reference": "python-pyOpenSSL-0:22.1.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycares-0:4.1.2-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pycares-0:4.1.2-2.el8pc.src" + }, + "product_reference": "python-pycares-0:4.1.2-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycares-debugsource-0:4.1.2-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pycares-debugsource-0:4.1.2-2.el8pc.x86_64" + }, + "product_reference": "python-pycares-debugsource-0:4.1.2-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycodestyle-0:2.7.0-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pycodestyle-0:2.7.0-5.el8pc.src" + }, + "product_reference": "python-pycodestyle-0:2.7.0-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycparser-0:2.21-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pycparser-0:2.21-2.el8pc.src" + }, + "product_reference": "python-pycparser-0:2.21-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycryptodomex-0:3.14.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pycryptodomex-0:3.14.1-2.el8pc.src" + }, + "product_reference": "python-pycryptodomex-0:3.14.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycryptodomex-debugsource-0:3.14.1-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pycryptodomex-debugsource-0:3.14.1-2.el8pc.x86_64" + }, + "product_reference": "python-pycryptodomex-debugsource-0:3.14.1-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyflakes-0:2.3.1-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pyflakes-0:2.3.1-5.el8pc.src" + }, + "product_reference": "python-pyflakes-0:2.3.1-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pygments-0:2.14.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pygments-0:2.14.0-1.el8pc.src" + }, + "product_reference": "python-pygments-0:2.14.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pygtrie-0:2.5.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pygtrie-0:2.5.0-1.el8pc.src" + }, + "product_reference": "python-pygtrie-0:2.5.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyjwkest-0:1.4.2-6.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pyjwkest-0:1.4.2-6.el8pc.src" + }, + "product_reference": "python-pyjwkest-0:1.4.2-6.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyjwt-0:2.5.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pyjwt-0:2.5.0-2.el8pc.src" + }, + "product_reference": "python-pyjwt-0:2.5.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyparsing-0:2.4.7-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pyparsing-0:2.4.7-3.el8pc.src" + }, + "product_reference": "python-pyparsing-0:2.4.7-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyrsistent-0:0.18.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pyrsistent-0:0.18.1-2.el8pc.src" + }, + "product_reference": "python-pyrsistent-0:0.18.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyrsistent-debugsource-0:0.18.1-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pyrsistent-debugsource-0:0.18.1-2.el8pc.x86_64" + }, + "product_reference": "python-pyrsistent-debugsource-0:0.18.1-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pytz-0:2022.2.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pytz-0:2022.2.1-1.el8pc.src" + }, + "product_reference": "python-pytz-0:2022.2.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyyaml-0:5.4.1-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pyyaml-0:5.4.1-4.el8pc.src" + }, + "product_reference": "python-pyyaml-0:5.4.1-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-qpid-0:1.37.0-1.el8.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-qpid-0:1.37.0-1.el8.src" + }, + "product_reference": "python-qpid-0:1.37.0-1.el8.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-redis-0:4.3.4-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-redis-0:4.3.4-1.el8pc.src" + }, + "product_reference": "python-redis-0:4.3.4-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-requests-0:2.31.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-requests-0:2.31.0-1.el8pc.src" + }, + "product_reference": "python-requests-0:2.31.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-requirements-parser-0:0.2.0-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-requirements-parser-0:0.2.0-3.el8pc.src" + }, + "product_reference": "python-requirements-parser-0:0.2.0-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-rhsm-0:1.19.2-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-rhsm-0:1.19.2-3.el8pc.src" + }, + "product_reference": "python-rhsm-0:1.19.2-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-rhsm-debugsource-0:1.19.2-3.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-rhsm-debugsource-0:1.19.2-3.el8pc.x86_64" + }, + "product_reference": "python-rhsm-debugsource-0:1.19.2-3.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-rich-0:13.3.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-rich-0:13.3.1-2.el8pc.src" + }, + "product_reference": "python-rich-0:13.3.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ruamel-yaml-0:0.17.21-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-ruamel-yaml-0:0.17.21-2.el8pc.src" + }, + "product_reference": "python-ruamel-yaml-0:0.17.21-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ruamel-yaml-clib-0:0.2.7-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-ruamel-yaml-clib-0:0.2.7-1.el8pc.src" + }, + "product_reference": "python-ruamel-yaml-clib-0:0.2.7-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ruamel-yaml-clib-debugsource-0:0.2.7-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-ruamel-yaml-clib-debugsource-0:0.2.7-1.el8pc.x86_64" + }, + "product_reference": "python-ruamel-yaml-clib-debugsource-0:0.2.7-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-schema-0:0.7.5-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-schema-0:0.7.5-2.el8pc.src" + }, + "product_reference": "python-schema-0:0.7.5-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-semantic-version-0:2.10.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-semantic-version-0:2.10.0-1.el8pc.src" + }, + "product_reference": "python-semantic-version-0:2.10.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-six-0:1.16.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-six-0:1.16.0-2.el8pc.src" + }, + "product_reference": "python-six-0:1.16.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-smmap-0:5.0.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-smmap-0:5.0.0-2.el8pc.src" + }, + "product_reference": "python-smmap-0:5.0.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-sqlparse-0:0.4.4-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-sqlparse-0:0.4.4-1.el8pc.src" + }, + "product_reference": "python-sqlparse-0:0.4.4-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-tablib-0:3.3.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-tablib-0:3.3.0-1.el8pc.src" + }, + "product_reference": "python-tablib-0:3.3.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-tenacity-0:7.0.0-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-tenacity-0:7.0.0-3.el8pc.src" + }, + "product_reference": "python-tenacity-0:7.0.0-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-toml-0:0.10.2-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-toml-0:0.10.2-3.el8pc.src" + }, + "product_reference": "python-toml-0:0.10.2-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-types-cryptography-0:3.3.23.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-types-cryptography-0:3.3.23.2-1.el8pc.src" + }, + "product_reference": "python-types-cryptography-0:3.3.23.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-typing-extensions-0:3.10.0.2-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-typing-extensions-0:3.10.0.2-2.el8pc.src" + }, + "product_reference": "python-typing-extensions-0:3.10.0.2-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-uritemplate-0:4.1.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-uritemplate-0:4.1.1-2.el8pc.src" + }, + "product_reference": "python-uritemplate-0:4.1.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-url-normalize-0:1.4.3-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-url-normalize-0:1.4.3-4.el8pc.src" + }, + "product_reference": "python-url-normalize-0:1.4.3-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-urllib3-0:1.26.8-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-urllib3-0:1.26.8-2.el8pc.src" + }, + "product_reference": "python-urllib3-0:1.26.8-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-urlman-0:2.0.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-urlman-0:2.0.1-1.el8pc.src" + }, + "product_reference": "python-urlman-0:2.0.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-wcmatch-0:8.3-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-wcmatch-0:8.3-2.el8pc.src" + }, + "product_reference": "python-wcmatch-0:8.3-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-webencodings-0:0.5.1-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-webencodings-0:0.5.1-3.el8pc.src" + }, + "product_reference": "python-webencodings-0:0.5.1-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-websockify-0:0.10.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-websockify-0:0.10.0-3.el8sat.src" + }, + "product_reference": "python-websockify-0:0.10.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-whitenoise-0:6.0.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-whitenoise-0:6.0.0-1.el8pc.src" + }, + "product_reference": "python-whitenoise-0:6.0.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-wrapt-0:1.14.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-wrapt-0:1.14.1-1.el8pc.src" + }, + "product_reference": "python-wrapt-0:1.14.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-wrapt-debugsource-0:1.14.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-wrapt-debugsource-0:1.14.1-1.el8pc.x86_64" + }, + "product_reference": "python-wrapt-debugsource-0:1.14.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-xlrd-0:2.0.1-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-xlrd-0:2.0.1-5.el8pc.src" + }, + "product_reference": "python-xlrd-0:2.0.1-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-xlwt-0:1.3.0-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-xlwt-0:1.3.0-3.el8pc.src" + }, + "product_reference": "python-xlwt-0:1.3.0-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-yarl-0:1.8.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-yarl-0:1.8.2-1.el8pc.src" + }, + "product_reference": "python-yarl-0:1.8.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-yarl-debugsource-0:1.8.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-yarl-debugsource-0:1.8.2-1.el8pc.x86_64" + }, + "product_reference": "python-yarl-debugsource-0:1.8.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-zipp-0:3.4.0-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-zipp-0:3.4.0-4.el8pc.src" + }, + "product_reference": "python-zipp-0:3.4.0-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python2-qpid-0:1.37.0-1.el8.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python2-qpid-0:1.37.0-1.el8.noarch" + }, + "product_reference": "python2-qpid-0:1.37.0-1.el8.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python2-qpid-qmf-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python2-qpid-qmf-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "python2-qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python2-saslwrapper-0:0.22-6.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python2-saslwrapper-0:0.22-6.el8sat.x86_64" + }, + "product_reference": "python2-saslwrapper-0:0.22-6.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python2-saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python2-saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64" + }, + "product_reference": "python2-saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-createrepo_c-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python3-createrepo_c-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "python3-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python3-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "python3-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-libcomps-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python3-libcomps-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "python3-libcomps-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python3-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "python3-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-qpid-proton-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python3-qpid-proton-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "python3-qpid-proton-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python3-qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "python3-qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-solv-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python3-solv-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "python3-solv-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-solv-debuginfo-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python3-solv-debuginfo-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "python3-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-websockify-0:0.10.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python3-websockify-0:0.10.0-3.el8sat.noarch" + }, + "product_reference": "python3-websockify-0:0.10.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aiodns-0:3.0.0-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-aiodns-0:3.0.0-3.el8pc.noarch" + }, + "product_reference": "python39-aiodns-0:3.0.0-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aiofiles-0:22.1.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-aiofiles-0:22.1.0-1.el8pc.noarch" + }, + "product_reference": "python39-aiofiles-0:22.1.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aiohttp-0:3.8.3-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-aiohttp-0:3.8.3-2.el8pc.x86_64" + }, + "product_reference": "python39-aiohttp-0:3.8.3-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aiohttp-debuginfo-0:3.8.3-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-aiohttp-debuginfo-0:3.8.3-2.el8pc.x86_64" + }, + "product_reference": "python39-aiohttp-debuginfo-0:3.8.3-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aiohttp-xmlrpc-0:1.5.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-aiohttp-xmlrpc-0:1.5.0-2.el8pc.noarch" + }, + "product_reference": "python39-aiohttp-xmlrpc-0:1.5.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aioredis-0:2.0.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-aioredis-0:2.0.1-2.el8pc.noarch" + }, + "product_reference": "python39-aioredis-0:2.0.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aiosignal-0:1.3.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-aiosignal-0:1.3.1-1.el8pc.noarch" + }, + "product_reference": "python39-aiosignal-0:1.3.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ansible-builder-0:1.0.1-4.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-ansible-builder-0:1.0.1-4.el8pc.noarch" + }, + "product_reference": "python39-ansible-builder-0:1.0.1-4.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ansible-runner-0:2.2.1-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-ansible-runner-0:2.2.1-3.el8sat.noarch" + }, + "product_reference": "python39-ansible-runner-0:2.2.1-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-asgiref-0:3.6.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-asgiref-0:3.6.0-1.el8pc.noarch" + }, + "product_reference": "python39-asgiref-0:3.6.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-async-lru-0:1.0.3-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-async-lru-0:1.0.3-1.el8pc.noarch" + }, + "product_reference": "python39-async-lru-0:1.0.3-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-async-timeout-0:4.0.2-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-async-timeout-0:4.0.2-2.el8pc.noarch" + }, + "product_reference": "python39-async-timeout-0:4.0.2-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-asyncio-throttle-0:1.0.2-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-asyncio-throttle-0:1.0.2-3.el8pc.noarch" + }, + "product_reference": "python39-asyncio-throttle-0:1.0.2-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-attrs-0:21.4.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-attrs-0:21.4.0-2.el8pc.noarch" + }, + "product_reference": "python39-attrs-0:21.4.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-backoff-0:2.2.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-backoff-0:2.2.1-1.el8pc.noarch" + }, + "product_reference": "python39-backoff-0:2.2.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-bindep-0:2.11.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-bindep-0:2.11.0-2.el8pc.noarch" + }, + "product_reference": "python39-bindep-0:2.11.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-bleach-0:3.3.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-bleach-0:3.3.1-2.el8pc.noarch" + }, + "product_reference": "python39-bleach-0:3.3.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-bleach-allowlist-0:1.0.3-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-bleach-allowlist-0:1.0.3-3.el8pc.noarch" + }, + "product_reference": "python39-bleach-allowlist-0:1.0.3-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-bracex-0:2.2.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-bracex-0:2.2.1-2.el8pc.noarch" + }, + "product_reference": "python39-bracex-0:2.2.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-brotli-0:1.0.9-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-brotli-0:1.0.9-2.el8pc.x86_64" + }, + "product_reference": "python39-brotli-0:1.0.9-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-brotli-debuginfo-0:1.0.9-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-brotli-debuginfo-0:1.0.9-2.el8pc.x86_64" + }, + "product_reference": "python39-brotli-debuginfo-0:1.0.9-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-cchardet-0:2.1.7-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-cchardet-0:2.1.7-4.el8pc.x86_64" + }, + "product_reference": "python39-cchardet-0:2.1.7-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-cchardet-debuginfo-0:2.1.7-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-cchardet-debuginfo-0:2.1.7-4.el8pc.x86_64" + }, + "product_reference": "python39-cchardet-debuginfo-0:2.1.7-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-certifi-0:2022.12.7-1.1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-certifi-0:2022.12.7-1.1.el8pc.noarch" + }, + "product_reference": "python39-certifi-0:2022.12.7-1.1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-cffi-0:1.15.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-cffi-0:1.15.1-1.el8pc.x86_64" + }, + "product_reference": "python39-cffi-0:1.15.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-cffi-debuginfo-0:1.15.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-cffi-debuginfo-0:1.15.1-1.el8pc.x86_64" + }, + "product_reference": "python39-cffi-debuginfo-0:1.15.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-chardet-0:5.0.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-chardet-0:5.0.0-1.el8pc.noarch" + }, + "product_reference": "python39-chardet-0:5.0.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-charset-normalizer-0:2.1.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-charset-normalizer-0:2.1.1-1.el8pc.noarch" + }, + "product_reference": "python39-charset-normalizer-0:2.1.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-click-0:8.1.3-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-click-0:8.1.3-1.el8pc.noarch" + }, + "product_reference": "python39-click-0:8.1.3-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-click-shell-0:2.1-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-click-shell-0:2.1-3.el8pc.noarch" + }, + "product_reference": "python39-click-shell-0:2.1-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-colorama-0:0.4.4-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-colorama-0:0.4.4-3.el8pc.noarch" + }, + "product_reference": "python39-colorama-0:0.4.4-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-commonmark-0:0.9.1-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-commonmark-0:0.9.1-5.el8pc.noarch" + }, + "product_reference": "python39-commonmark-0:0.9.1-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-contextlib2-0:21.6.0-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-contextlib2-0:21.6.0-3.el8pc.noarch" + }, + "product_reference": "python39-contextlib2-0:21.6.0-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-createrepo_c-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-createrepo_c-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "python39-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "python39-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-cryptography-0:38.0.4-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-cryptography-0:38.0.4-1.el8pc.x86_64" + }, + "product_reference": "python39-cryptography-0:38.0.4-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-cryptography-debuginfo-0:38.0.4-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-cryptography-debuginfo-0:38.0.4-1.el8pc.x86_64" + }, + "product_reference": "python39-cryptography-debuginfo-0:38.0.4-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-daemon-0:2.3.1-1.1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-daemon-0:2.3.1-1.1.el8sat.noarch" + }, + "product_reference": "python39-daemon-0:2.3.1-1.1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-dataclasses-0:0.8-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-dataclasses-0:0.8-3.el8pc.noarch" + }, + "product_reference": "python39-dataclasses-0:0.8-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-dateutil-0:2.8.2-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-dateutil-0:2.8.2-2.el8pc.noarch" + }, + "product_reference": "python39-dateutil-0:2.8.2-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-debian-0:0.1.44-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-debian-0:0.1.44-3.el8pc.noarch" + }, + "product_reference": "python39-debian-0:0.1.44-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-defusedxml-0:0.7.1-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-defusedxml-0:0.7.1-3.el8pc.noarch" + }, + "product_reference": "python39-defusedxml-0:0.7.1-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-deprecated-0:1.2.13-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-deprecated-0:1.2.13-1.el8pc.noarch" + }, + "product_reference": "python39-deprecated-0:1.2.13-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-diff-match-patch-0:20200713-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-diff-match-patch-0:20200713-3.el8pc.noarch" + }, + "product_reference": "python39-diff-match-patch-0:20200713-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-distro-0:1.7.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-distro-0:1.7.0-1.el8pc.noarch" + }, + "product_reference": "python39-distro-0:1.7.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-0:3.2.21-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-django-0:3.2.21-1.el8pc.noarch" + }, + "product_reference": "python39-django-0:3.2.21-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-currentuser-0:0.5.3-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-django-currentuser-0:0.5.3-5.el8pc.noarch" + }, + "product_reference": "python39-django-currentuser-0:0.5.3-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-filter-0:22.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-django-filter-0:22.1-2.el8pc.noarch" + }, + "product_reference": "python39-django-filter-0:22.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-guid-0:3.3.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-django-guid-0:3.3.0-1.el8pc.noarch" + }, + "product_reference": "python39-django-guid-0:3.3.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-import-export-0:3.0.2-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-django-import-export-0:3.0.2-1.el8pc.noarch" + }, + "product_reference": "python39-django-import-export-0:3.0.2-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-lifecycle-0:1.0.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-django-lifecycle-0:1.0.0-1.el8pc.noarch" + }, + "product_reference": "python39-django-lifecycle-0:1.0.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-readonly-field-0:1.1.2-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-django-readonly-field-0:1.1.2-1.el8pc.noarch" + }, + "product_reference": "python39-django-readonly-field-0:1.1.2-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-djangorestframework-0:3.14.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-djangorestframework-0:3.14.0-1.el8pc.noarch" + }, + "product_reference": "python39-djangorestframework-0:3.14.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-djangorestframework-queryfields-0:1.0.0-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-djangorestframework-queryfields-0:1.0.0-5.el8pc.noarch" + }, + "product_reference": "python39-djangorestframework-queryfields-0:1.0.0-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-docutils-0:0.19-1.1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-docutils-0:0.19-1.1.el8sat.noarch" + }, + "product_reference": "python39-docutils-0:0.19-1.1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-drf-access-policy-0:1.3.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-drf-access-policy-0:1.3.0-1.el8pc.noarch" + }, + "product_reference": "python39-drf-access-policy-0:1.3.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-drf-nested-routers-0:0.93.4-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-drf-nested-routers-0:0.93.4-3.el8pc.noarch" + }, + "product_reference": "python39-drf-nested-routers-0:0.93.4-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-drf-spectacular-0:0.25.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-drf-spectacular-0:0.25.0-1.el8pc.noarch" + }, + "product_reference": "python39-drf-spectacular-0:0.25.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-dynaconf-0:3.1.11-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-dynaconf-0:3.1.11-1.el8pc.noarch" + }, + "product_reference": "python39-dynaconf-0:3.1.11-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ecdsa-0:0.18.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-ecdsa-0:0.18.0-1.el8pc.noarch" + }, + "product_reference": "python39-ecdsa-0:0.18.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-enrich-0:1.2.6-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-enrich-0:1.2.6-5.el8pc.noarch" + }, + "product_reference": "python39-enrich-0:1.2.6-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-et-xmlfile-0:1.1.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-et-xmlfile-0:1.1.0-2.el8pc.noarch" + }, + "product_reference": "python39-et-xmlfile-0:1.1.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-flake8-0:3.9.2-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-flake8-0:3.9.2-5.el8pc.noarch" + }, + "product_reference": "python39-flake8-0:3.9.2-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-frozenlist-0:1.3.3-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-frozenlist-0:1.3.3-1.el8pc.x86_64" + }, + "product_reference": "python39-frozenlist-0:1.3.3-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-frozenlist-debuginfo-0:1.3.3-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-frozenlist-debuginfo-0:1.3.3-1.el8pc.x86_64" + }, + "product_reference": "python39-frozenlist-debuginfo-0:1.3.3-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-future-0:0.18.3-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-future-0:0.18.3-1.el8pc.noarch" + }, + "product_reference": "python39-future-0:0.18.3-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-galaxy-importer-0:0.4.6-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-galaxy-importer-0:0.4.6-1.el8pc.noarch" + }, + "product_reference": "python39-galaxy-importer-0:0.4.6-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-gitdb-0:4.0.10-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-gitdb-0:4.0.10-1.el8pc.noarch" + }, + "product_reference": "python39-gitdb-0:4.0.10-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-gitpython-0:3.1.32-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-gitpython-0:3.1.32-1.el8pc.noarch" + }, + "product_reference": "python39-gitpython-0:3.1.32-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-gnupg-0:0.5.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-gnupg-0:0.5.0-1.el8pc.noarch" + }, + "product_reference": "python39-gnupg-0:0.5.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-gunicorn-0:20.1.0-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-gunicorn-0:20.1.0-5.el8pc.noarch" + }, + "product_reference": "python39-gunicorn-0:20.1.0-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-idna-0:3.3-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-idna-0:3.3-2.el8pc.noarch" + }, + "product_reference": "python39-idna-0:3.3-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-idna-ssl-0:1.1.0-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-idna-ssl-0:1.1.0-5.el8pc.noarch" + }, + "product_reference": "python39-idna-ssl-0:1.1.0-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-importlib-metadata-0:4.10.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-importlib-metadata-0:4.10.1-2.el8pc.noarch" + }, + "product_reference": "python39-importlib-metadata-0:4.10.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-inflection-0:0.5.1-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-inflection-0:0.5.1-3.el8pc.noarch" + }, + "product_reference": "python39-inflection-0:0.5.1-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-iniparse-0:0.4-35.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-iniparse-0:0.4-35.el8pc.noarch" + }, + "product_reference": "python39-iniparse-0:0.4-35.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-jinja2-0:3.1.2-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-jinja2-0:3.1.2-1.el8pc.noarch" + }, + "product_reference": "python39-jinja2-0:3.1.2-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-jsonschema-0:4.9.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-jsonschema-0:4.9.1-1.el8pc.noarch" + }, + "product_reference": "python39-jsonschema-0:4.9.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-libcomps-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-libcomps-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "python39-libcomps-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "python39-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-lockfile-0:0.12.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-lockfile-0:0.12.2-1.el8sat.noarch" + }, + "product_reference": "python39-lockfile-0:0.12.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-lxml-0:4.9.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-lxml-0:4.9.2-1.el8pc.x86_64" + }, + "product_reference": "python39-lxml-0:4.9.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-lxml-debuginfo-0:4.9.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-lxml-debuginfo-0:4.9.2-1.el8pc.x86_64" + }, + "product_reference": "python39-lxml-debuginfo-0:4.9.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-markdown-0:3.4.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-markdown-0:3.4.1-1.el8pc.noarch" + }, + "product_reference": "python39-markdown-0:3.4.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-markuppy-0:1.14-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-markuppy-0:1.14-3.el8pc.noarch" + }, + "product_reference": "python39-markuppy-0:1.14-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-markupsafe-0:2.1.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-markupsafe-0:2.1.2-1.el8pc.x86_64" + }, + "product_reference": "python39-markupsafe-0:2.1.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-markupsafe-debuginfo-0:2.1.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-markupsafe-debuginfo-0:2.1.2-1.el8pc.x86_64" + }, + "product_reference": "python39-markupsafe-debuginfo-0:2.1.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-mccabe-0:0.6.1-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-mccabe-0:0.6.1-3.el8pc.noarch" + }, + "product_reference": "python39-mccabe-0:0.6.1-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-multidict-0:6.0.4-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-multidict-0:6.0.4-1.el8pc.x86_64" + }, + "product_reference": "python39-multidict-0:6.0.4-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-multidict-debuginfo-0:6.0.4-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-multidict-debuginfo-0:6.0.4-1.el8pc.x86_64" + }, + "product_reference": "python39-multidict-debuginfo-0:6.0.4-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-naya-0:1.1.1-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-naya-0:1.1.1-3.el8pc.noarch" + }, + "product_reference": "python39-naya-0:1.1.1-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-odfpy-0:1.4.1-6.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-odfpy-0:1.4.1-6.el8pc.noarch" + }, + "product_reference": "python39-odfpy-0:1.4.1-6.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-openpyxl-0:3.1.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-openpyxl-0:3.1.0-1.el8pc.noarch" + }, + "product_reference": "python39-openpyxl-0:3.1.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-packaging-0:21.3-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-packaging-0:21.3-1.el8pc.noarch" + }, + "product_reference": "python39-packaging-0:21.3-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-parsley-0:1.3-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-parsley-0:1.3-2.el8pc.noarch" + }, + "product_reference": "python39-parsley-0:1.3-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pbr-0:5.8.0-4.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pbr-0:5.8.0-4.el8pc.noarch" + }, + "product_reference": "python39-pbr-0:5.8.0-4.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pexpect-0:4.8.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pexpect-0:4.8.0-2.el8sat.noarch" + }, + "product_reference": "python39-pexpect-0:4.8.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-productmd-0:1.33-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-productmd-0:1.33-3.el8pc.noarch" + }, + "product_reference": "python39-productmd-0:1.33-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-protobuf-0:4.21.6-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-protobuf-0:4.21.6-1.el8pc.noarch" + }, + "product_reference": "python39-protobuf-0:4.21.6-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-psycopg2-0:2.9.3-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-psycopg2-0:2.9.3-2.el8pc.x86_64" + }, + "product_reference": "python39-psycopg2-0:2.9.3-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-psycopg2-debuginfo-0:2.9.3-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-psycopg2-debuginfo-0:2.9.3-2.el8pc.x86_64" + }, + "product_reference": "python39-psycopg2-debuginfo-0:2.9.3-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ptyprocess-0:0.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-ptyprocess-0:0.7.0-1.el8sat.noarch" + }, + "product_reference": "python39-ptyprocess-0:0.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-ansible-1:0.16.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pulp-ansible-1:0.16.0-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-ansible-1:0.16.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-certguard-0:1.5.6-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pulp-certguard-0:1.5.6-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-certguard-0:1.5.6-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-cli-0:0.14.0-4.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pulp-cli-0:0.14.0-4.el8pc.noarch" + }, + "product_reference": "python39-pulp-cli-0:0.14.0-4.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-container-0:2.14.7-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pulp-container-0:2.14.7-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-container-0:2.14.7-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-deb-0:2.20.2-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pulp-deb-0:2.20.2-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-deb-0:2.20.2-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-file-0:1.12.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pulp-file-0:1.12.0-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-file-0:1.12.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-rpm-0:3.19.9-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pulp-rpm-0:3.19.9-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-rpm-0:3.19.9-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp_manifest-0:3.0.0-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pulp_manifest-0:3.0.0-3.el8pc.noarch" + }, + "product_reference": "python39-pulp_manifest-0:3.0.0-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulpcore-0:3.22.15-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pulpcore-0:3.22.15-2.el8pc.noarch" + }, + "product_reference": "python39-pulpcore-0:3.22.15-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyOpenSSL-0:22.1.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pyOpenSSL-0:22.1.0-1.el8pc.noarch" + }, + "product_reference": "python39-pyOpenSSL-0:22.1.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pycares-0:4.1.2-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pycares-0:4.1.2-2.el8pc.x86_64" + }, + "product_reference": "python39-pycares-0:4.1.2-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pycares-debuginfo-0:4.1.2-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pycares-debuginfo-0:4.1.2-2.el8pc.x86_64" + }, + "product_reference": "python39-pycares-debuginfo-0:4.1.2-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pycodestyle-0:2.7.0-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pycodestyle-0:2.7.0-5.el8pc.noarch" + }, + "product_reference": "python39-pycodestyle-0:2.7.0-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pycparser-0:2.21-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pycparser-0:2.21-2.el8pc.noarch" + }, + "product_reference": "python39-pycparser-0:2.21-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pycryptodomex-0:3.14.1-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pycryptodomex-0:3.14.1-2.el8pc.x86_64" + }, + "product_reference": "python39-pycryptodomex-0:3.14.1-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pycryptodomex-debuginfo-0:3.14.1-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pycryptodomex-debuginfo-0:3.14.1-2.el8pc.x86_64" + }, + "product_reference": "python39-pycryptodomex-debuginfo-0:3.14.1-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyflakes-0:2.3.1-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pyflakes-0:2.3.1-5.el8pc.noarch" + }, + "product_reference": "python39-pyflakes-0:2.3.1-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pygments-0:2.14.0-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pygments-0:2.14.0-1.el8pc.x86_64" + }, + "product_reference": "python39-pygments-0:2.14.0-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pygtrie-0:2.5.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pygtrie-0:2.5.0-1.el8pc.noarch" + }, + "product_reference": "python39-pygtrie-0:2.5.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyjwkest-0:1.4.2-6.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pyjwkest-0:1.4.2-6.el8pc.noarch" + }, + "product_reference": "python39-pyjwkest-0:1.4.2-6.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyjwt-0:2.5.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pyjwt-0:2.5.0-2.el8pc.noarch" + }, + "product_reference": "python39-pyjwt-0:2.5.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyparsing-0:2.4.7-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pyparsing-0:2.4.7-3.el8pc.noarch" + }, + "product_reference": "python39-pyparsing-0:2.4.7-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyrsistent-0:0.18.1-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pyrsistent-0:0.18.1-2.el8pc.x86_64" + }, + "product_reference": "python39-pyrsistent-0:0.18.1-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyrsistent-debuginfo-0:0.18.1-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pyrsistent-debuginfo-0:0.18.1-2.el8pc.x86_64" + }, + "product_reference": "python39-pyrsistent-debuginfo-0:0.18.1-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pytz-0:2022.2.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pytz-0:2022.2.1-1.el8pc.noarch" + }, + "product_reference": "python39-pytz-0:2022.2.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyyaml-0:5.4.1-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pyyaml-0:5.4.1-4.el8pc.x86_64" + }, + "product_reference": "python39-pyyaml-0:5.4.1-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-redis-0:4.3.4-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-redis-0:4.3.4-1.el8pc.noarch" + }, + "product_reference": "python39-redis-0:4.3.4-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-requests-0:2.31.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-requests-0:2.31.0-1.el8pc.noarch" + }, + "product_reference": "python39-requests-0:2.31.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-requirements-parser-0:0.2.0-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-requirements-parser-0:0.2.0-3.el8pc.noarch" + }, + "product_reference": "python39-requirements-parser-0:0.2.0-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-rhsm-0:1.19.2-3.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-rhsm-0:1.19.2-3.el8pc.x86_64" + }, + "product_reference": "python39-rhsm-0:1.19.2-3.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-rhsm-debuginfo-0:1.19.2-3.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-rhsm-debuginfo-0:1.19.2-3.el8pc.x86_64" + }, + "product_reference": "python39-rhsm-debuginfo-0:1.19.2-3.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-rich-0:13.3.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-rich-0:13.3.1-2.el8pc.noarch" + }, + "product_reference": "python39-rich-0:13.3.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ruamel-yaml-0:0.17.21-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-ruamel-yaml-0:0.17.21-2.el8pc.noarch" + }, + "product_reference": "python39-ruamel-yaml-0:0.17.21-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ruamel-yaml-clib-0:0.2.7-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-ruamel-yaml-clib-0:0.2.7-1.el8pc.x86_64" + }, + "product_reference": "python39-ruamel-yaml-clib-0:0.2.7-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ruamel-yaml-clib-debuginfo-0:0.2.7-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-ruamel-yaml-clib-debuginfo-0:0.2.7-1.el8pc.x86_64" + }, + "product_reference": "python39-ruamel-yaml-clib-debuginfo-0:0.2.7-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-schema-0:0.7.5-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-schema-0:0.7.5-2.el8pc.noarch" + }, + "product_reference": "python39-schema-0:0.7.5-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-semantic-version-0:2.10.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-semantic-version-0:2.10.0-1.el8pc.noarch" + }, + "product_reference": "python39-semantic-version-0:2.10.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-six-0:1.16.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-six-0:1.16.0-2.el8pc.noarch" + }, + "product_reference": "python39-six-0:1.16.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-smmap-0:5.0.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-smmap-0:5.0.0-2.el8pc.noarch" + }, + "product_reference": "python39-smmap-0:5.0.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-solv-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-solv-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "python39-solv-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-solv-debuginfo-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-solv-debuginfo-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "python39-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-sqlparse-0:0.4.4-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-sqlparse-0:0.4.4-1.el8pc.noarch" + }, + "product_reference": "python39-sqlparse-0:0.4.4-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-tablib-0:3.3.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-tablib-0:3.3.0-1.el8pc.noarch" + }, + "product_reference": "python39-tablib-0:3.3.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-tenacity-0:7.0.0-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-tenacity-0:7.0.0-3.el8pc.noarch" + }, + "product_reference": "python39-tenacity-0:7.0.0-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-toml-0:0.10.2-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-toml-0:0.10.2-3.el8pc.noarch" + }, + "product_reference": "python39-toml-0:0.10.2-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-types-cryptography-0:3.3.23.2-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-types-cryptography-0:3.3.23.2-1.el8pc.noarch" + }, + "product_reference": "python39-types-cryptography-0:3.3.23.2-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-typing-extensions-0:3.10.0.2-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-typing-extensions-0:3.10.0.2-2.el8pc.noarch" + }, + "product_reference": "python39-typing-extensions-0:3.10.0.2-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-uritemplate-0:4.1.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-uritemplate-0:4.1.1-2.el8pc.noarch" + }, + "product_reference": "python39-uritemplate-0:4.1.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-url-normalize-0:1.4.3-4.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-url-normalize-0:1.4.3-4.el8pc.noarch" + }, + "product_reference": "python39-url-normalize-0:1.4.3-4.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-urllib3-0:1.26.8-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-urllib3-0:1.26.8-2.el8pc.noarch" + }, + "product_reference": "python39-urllib3-0:1.26.8-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-urlman-0:2.0.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-urlman-0:2.0.1-1.el8pc.noarch" + }, + "product_reference": "python39-urlman-0:2.0.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-wcmatch-0:8.3-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-wcmatch-0:8.3-2.el8pc.noarch" + }, + "product_reference": "python39-wcmatch-0:8.3-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-webencodings-0:0.5.1-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-webencodings-0:0.5.1-3.el8pc.noarch" + }, + "product_reference": "python39-webencodings-0:0.5.1-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-whitenoise-0:6.0.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-whitenoise-0:6.0.0-1.el8pc.noarch" + }, + "product_reference": "python39-whitenoise-0:6.0.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-wrapt-0:1.14.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-wrapt-0:1.14.1-1.el8pc.x86_64" + }, + "product_reference": "python39-wrapt-0:1.14.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-wrapt-debuginfo-0:1.14.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-wrapt-debuginfo-0:1.14.1-1.el8pc.x86_64" + }, + "product_reference": "python39-wrapt-debuginfo-0:1.14.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-xlrd-0:2.0.1-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-xlrd-0:2.0.1-5.el8pc.noarch" + }, + "product_reference": "python39-xlrd-0:2.0.1-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-xlwt-0:1.3.0-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-xlwt-0:1.3.0-3.el8pc.noarch" + }, + "product_reference": "python39-xlwt-0:1.3.0-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-yarl-0:1.8.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-yarl-0:1.8.2-1.el8pc.x86_64" + }, + "product_reference": "python39-yarl-0:1.8.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-yarl-debuginfo-0:1.8.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-yarl-debuginfo-0:1.8.2-1.el8pc.x86_64" + }, + "product_reference": "python39-yarl-debuginfo-0:1.8.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-zipp-0:3.4.0-4.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-zipp-0:3.4.0-4.el8pc.noarch" + }, + "product_reference": "python39-zipp-0:3.4.0-4.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-0:1.39.0-7.el8amq.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-0:1.39.0-7.el8amq.src" + }, + "product_reference": "qpid-cpp-0:1.39.0-7.el8amq.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-client-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-client-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-client-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-client-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-client-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-client-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-client-devel-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-client-devel-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-client-devel-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-client-devel-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-client-devel-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-client-devel-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-client-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-client-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-client-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-debugsource-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-debugsource-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-debugsource-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-server-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-server-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-server-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-server-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-server-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-server-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-server-ha-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-server-ha-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-server-ha-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-server-linearstore-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-server-linearstore-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-server-linearstore-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-server-linearstore-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-server-linearstore-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-server-linearstore-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-server-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-server-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-server-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-dispatch-0:1.14.0-6.el8.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-dispatch-0:1.14.0-6.el8.src" + }, + "product_reference": "qpid-dispatch-0:1.14.0-6.el8.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-dispatch-debugsource-0:1.14.0-6.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-dispatch-debugsource-0:1.14.0-6.el8.x86_64" + }, + "product_reference": "qpid-dispatch-debugsource-0:1.14.0-6.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-dispatch-router-0:1.14.0-6.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-dispatch-router-0:1.14.0-6.el8.x86_64" + }, + "product_reference": "qpid-dispatch-router-0:1.14.0-6.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-dispatch-router-debuginfo-0:1.14.0-6.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-dispatch-router-debuginfo-0:1.14.0-6.el8.x86_64" + }, + "product_reference": "qpid-dispatch-router-debuginfo-0:1.14.0-6.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-dispatch-tools-0:1.14.0-6.el8.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-dispatch-tools-0:1.14.0-6.el8.noarch" + }, + "product_reference": "qpid-dispatch-tools-0:1.14.0-6.el8.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-0:0.33.0-4.el8.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-proton-0:0.33.0-4.el8.src" + }, + "product_reference": "qpid-proton-0:0.33.0-4.el8.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-c-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-proton-c-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "qpid-proton-c-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-c-debuginfo-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-proton-c-debuginfo-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "qpid-proton-c-debuginfo-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-cpp-debuginfo-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-proton-cpp-debuginfo-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "qpid-proton-cpp-debuginfo-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-debugsource-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-proton-debugsource-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "qpid-proton-debugsource-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-qmf-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-qmf-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-qmf-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-qmf-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-qmf-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-tools-0:1.39.0-7.el8amq.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-tools-0:1.39.0-7.el8amq.noarch" + }, + "product_reference": "qpid-tools-0:1.39.0-7.el8amq.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:redhat-access-insights-puppet-0:1.0.1-1.el8sat.noarch" + }, + "product_reference": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:redhat-access-insights-puppet-0:1.0.1-1.el8sat.src" + }, + "product_reference": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ruby-solv-debuginfo-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ruby-solv-debuginfo-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "ruby-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-actioncable-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-actioncable-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-actioncable-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-actioncable-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-actioncable-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-actioncable-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-actionmailbox-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-actionmailbox-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-actionmailbox-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-actionmailbox-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-actionmailbox-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-actionmailbox-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-actionmailer-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-actionmailer-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-actionmailer-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-actionmailer-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-actionmailer-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-actionmailer-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-actionpack-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-actionpack-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-actionpack-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-actionpack-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-actionpack-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-actionpack-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-actiontext-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-actiontext-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-actiontext-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-actiontext-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-actiontext-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-actiontext-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-actionview-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-actionview-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-actionview-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-actionview-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-actionview-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-actionview-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activejob-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activejob-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-activejob-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activejob-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activejob-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-activejob-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activemodel-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activemodel-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-activemodel-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activemodel-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activemodel-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-activemodel-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activerecord-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activerecord-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-activerecord-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activerecord-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activerecord-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-activerecord-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activerecord-import-0:1.4.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activerecord-import-0:1.4.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-activerecord-import-0:1.4.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activerecord-import-0:1.4.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activerecord-import-0:1.4.1-1.el8sat.src" + }, + "product_reference": "rubygem-activerecord-import-0:1.4.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activerecord-session_store-0:2.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activerecord-session_store-0:2.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-activerecord-session_store-0:2.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activerecord-session_store-0:2.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activerecord-session_store-0:2.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-activerecord-session_store-0:2.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activestorage-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activestorage-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-activestorage-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activestorage-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activestorage-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-activestorage-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activesupport-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activesupport-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-activesupport-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activesupport-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activesupport-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-activesupport-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-acts_as_list-0:1.0.3-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-acts_as_list-0:1.0.3-2.el8sat.noarch" + }, + "product_reference": "rubygem-acts_as_list-0:1.0.3-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-acts_as_list-0:1.0.3-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-acts_as_list-0:1.0.3-2.el8sat.src" + }, + "product_reference": "rubygem-acts_as_list-0:1.0.3-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-addressable-0:2.8.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-addressable-0:2.8.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-addressable-0:2.8.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-addressable-0:2.8.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-addressable-0:2.8.4-1.el8sat.src" + }, + "product_reference": "rubygem-addressable-0:2.8.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-algebrick-0:0.7.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-algebrick-0:0.7.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-algebrick-0:0.7.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-algebrick-0:0.7.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-algebrick-0:0.7.5-1.el8sat.src" + }, + "product_reference": "rubygem-algebrick-0:0.7.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-amazing_print-0:1.4.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-amazing_print-0:1.4.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-amazing_print-0:1.4.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-amazing_print-0:1.4.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-amazing_print-0:1.4.0-1.el8sat.src" + }, + "product_reference": "rubygem-amazing_print-0:1.4.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ancestry-0:4.3.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ancestry-0:4.3.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-ancestry-0:4.3.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ancestry-0:4.3.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ancestry-0:4.3.3-1.el8sat.src" + }, + "product_reference": "rubygem-ancestry-0:4.3.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-anemone-0:0.7.2-23.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-anemone-0:0.7.2-23.el8sat.noarch" + }, + "product_reference": "rubygem-anemone-0:0.7.2-23.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-anemone-0:0.7.2-23.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-anemone-0:0.7.2-23.el8sat.src" + }, + "product_reference": "rubygem-anemone-0:0.7.2-23.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-angular-rails-templates-1:1.1.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-angular-rails-templates-1:1.1.0-2.el8sat.noarch" + }, + "product_reference": "rubygem-angular-rails-templates-1:1.1.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-angular-rails-templates-1:1.1.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-angular-rails-templates-1:1.1.0-2.el8sat.src" + }, + "product_reference": "rubygem-angular-rails-templates-1:1.1.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ansi-0:1.5.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ansi-0:1.5.0-3.el8sat.noarch" + }, + "product_reference": "rubygem-ansi-0:1.5.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ansi-0:1.5.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ansi-0:1.5.0-3.el8sat.src" + }, + "product_reference": "rubygem-ansi-0:1.5.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-apipie-bindings-0:0.6.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-apipie-bindings-0:0.6.0-1.el8sat.src" + }, + "product_reference": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-apipie-dsl-0:2.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-apipie-dsl-0:2.5.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-apipie-dsl-0:2.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-apipie-dsl-0:2.5.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-apipie-dsl-0:2.5.0-1.el8sat.src" + }, + "product_reference": "rubygem-apipie-dsl-0:2.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-apipie-params-0:0.0.5-5.1.el8sat.noarch" + }, + "product_reference": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-apipie-params-0:0.0.5-5.1.el8sat.src" + }, + "product_reference": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-apipie-rails-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-apipie-rails-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-apipie-rails-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-apipie-rails-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-apipie-rails-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-apipie-rails-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-audited-0:5.3.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-audited-0:5.3.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-audited-0:5.3.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-audited-0:5.3.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-audited-0:5.3.2-1.el8sat.src" + }, + "product_reference": "rubygem-audited-0:5.3.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.src" + }, + "product_reference": "rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.noarch" + }, + "product_reference": "rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.src" + }, + "product_reference": "rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.src" + }, + "product_reference": "rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.src" + }, + "product_reference": "rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.src" + }, + "product_reference": "rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-bcrypt-0:3.1.18-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-bcrypt-0:3.1.18-1.el8sat.src" + }, + "product_reference": "rubygem-bcrypt-0:3.1.18-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-bcrypt-0:3.1.18-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-bcrypt-0:3.1.18-1.el8sat.x86_64" + }, + "product_reference": "rubygem-bcrypt-0:3.1.18-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-bcrypt-debuginfo-0:3.1.18-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-bcrypt-debuginfo-0:3.1.18-1.el8sat.x86_64" + }, + "product_reference": "rubygem-bcrypt-debuginfo-0:3.1.18-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-bcrypt-debugsource-0:3.1.18-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-bcrypt-debugsource-0:3.1.18-1.el8sat.x86_64" + }, + "product_reference": "rubygem-bcrypt-debugsource-0:3.1.18-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-builder-0:3.2.4-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-builder-0:3.2.4-2.el8sat.noarch" + }, + "product_reference": "rubygem-builder-0:3.2.4-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-builder-0:3.2.4-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-builder-0:3.2.4-2.el8sat.src" + }, + "product_reference": "rubygem-builder-0:3.2.4-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-bundler_ext-0:0.4.1-6.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-bundler_ext-0:0.4.1-6.el8sat.noarch" + }, + "product_reference": "rubygem-bundler_ext-0:0.4.1-6.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-bundler_ext-0:0.4.1-6.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-bundler_ext-0:0.4.1-6.el8sat.src" + }, + "product_reference": "rubygem-bundler_ext-0:0.4.1-6.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-clamp-0:1.3.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-clamp-0:1.3.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-clamp-0:1.3.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-clamp-0:1.3.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-clamp-0:1.3.2-1.el8sat.src" + }, + "product_reference": "rubygem-clamp-0:1.3.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-coffee-rails-0:5.0.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-coffee-rails-0:5.0.0-2.el8sat.noarch" + }, + "product_reference": "rubygem-coffee-rails-0:5.0.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-coffee-rails-0:5.0.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-coffee-rails-0:5.0.0-2.el8sat.src" + }, + "product_reference": "rubygem-coffee-rails-0:5.0.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-coffee-script-0:2.4.1-5.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-coffee-script-0:2.4.1-5.el8sat.noarch" + }, + "product_reference": "rubygem-coffee-script-0:2.4.1-5.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-coffee-script-0:2.4.1-5.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-coffee-script-0:2.4.1-5.el8sat.src" + }, + "product_reference": "rubygem-coffee-script-0:2.4.1-5.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-coffee-script-source-0:1.12.2-5.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-coffee-script-source-0:1.12.2-5.el8sat.noarch" + }, + "product_reference": "rubygem-coffee-script-source-0:1.12.2-5.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-coffee-script-source-0:1.12.2-5.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-coffee-script-source-0:1.12.2-5.el8sat.src" + }, + "product_reference": "rubygem-coffee-script-source-0:1.12.2-5.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-colorize-0:0.8.1-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-colorize-0:0.8.1-2.el8sat.noarch" + }, + "product_reference": "rubygem-colorize-0:0.8.1-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-colorize-0:0.8.1-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-colorize-0:0.8.1-2.el8sat.src" + }, + "product_reference": "rubygem-colorize-0:0.8.1-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-concurrent-ruby-1:1.1.10-1.el8sat.noarch" + }, + "product_reference": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-concurrent-ruby-1:1.1.10-1.el8sat.src" + }, + "product_reference": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.noarch" + }, + "product_reference": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.src" + }, + "product_reference": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-connection_pool-0:2.4.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-connection_pool-0:2.4.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-connection_pool-0:2.4.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-connection_pool-0:2.4.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-connection_pool-0:2.4.1-1.el8sat.src" + }, + "product_reference": "rubygem-connection_pool-0:2.4.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-crass-0:1.0.6-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-crass-0:1.0.6-2.el8sat.noarch" + }, + "product_reference": "rubygem-crass-0:1.0.6-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-crass-0:1.0.6-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-crass-0:1.0.6-2.el8sat.src" + }, + "product_reference": "rubygem-crass-0:1.0.6-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-css_parser-0:1.14.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-css_parser-0:1.14.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-css_parser-0:1.14.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-css_parser-0:1.14.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-css_parser-0:1.14.0-1.el8sat.src" + }, + "product_reference": "rubygem-css_parser-0:1.14.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-daemons-0:1.4.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-daemons-0:1.4.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-daemons-0:1.4.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-daemons-0:1.4.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-daemons-0:1.4.1-1.el8sat.src" + }, + "product_reference": "rubygem-daemons-0:1.4.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-deacon-0:1.0.0-5.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-deacon-0:1.0.0-5.el8sat.noarch" + }, + "product_reference": "rubygem-deacon-0:1.0.0-5.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-deacon-0:1.0.0-5.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-deacon-0:1.0.0-5.el8sat.src" + }, + "product_reference": "rubygem-deacon-0:1.0.0-5.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-declarative-0:0.0.20-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-declarative-0:0.0.20-1.el8sat.noarch" + }, + "product_reference": "rubygem-declarative-0:0.0.20-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-declarative-0:0.0.20-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-declarative-0:0.0.20-1.el8sat.src" + }, + "product_reference": "rubygem-declarative-0:0.0.20-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-deep_cloneable-0:3.2.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-deep_cloneable-0:3.2.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-deep_cloneable-0:3.2.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-deep_cloneable-0:3.2.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-deep_cloneable-0:3.2.0-1.el8sat.src" + }, + "product_reference": "rubygem-deep_cloneable-0:3.2.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-deface-0:1.5.3-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-deface-0:1.5.3-3.el8sat.noarch" + }, + "product_reference": "rubygem-deface-0:1.5.3-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-deface-0:1.5.3-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-deface-0:1.5.3-3.el8sat.src" + }, + "product_reference": "rubygem-deface-0:1.5.3-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-diffy-0:3.4.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-diffy-0:3.4.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-diffy-0:3.4.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-diffy-0:3.4.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-diffy-0:3.4.2-1.el8sat.src" + }, + "product_reference": "rubygem-diffy-0:3.4.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch" + }, + "product_reference": "rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-domain_name-0:0.5.20190701-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-domain_name-0:0.5.20190701-1.el8sat.src" + }, + "product_reference": "rubygem-domain_name-0:0.5.20190701-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-dynflow-0:1.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-dynflow-0:1.7.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-dynflow-0:1.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-dynflow-0:1.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-dynflow-0:1.7.0-1.el8sat.src" + }, + "product_reference": "rubygem-dynflow-0:1.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-erubi-0:1.12.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-erubi-0:1.12.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-erubi-0:1.12.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-erubi-0:1.12.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-erubi-0:1.12.0-1.el8sat.src" + }, + "product_reference": "rubygem-erubi-0:1.12.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-et-orbi-0:1.2.7-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-et-orbi-0:1.2.7-1.el8sat.noarch" + }, + "product_reference": "rubygem-et-orbi-0:1.2.7-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-et-orbi-0:1.2.7-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-et-orbi-0:1.2.7-1.el8sat.src" + }, + "product_reference": "rubygem-et-orbi-0:1.2.7-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-excon-0:0.99.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-excon-0:0.99.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-excon-0:0.99.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-excon-0:0.99.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-excon-0:0.99.0-1.el8sat.src" + }, + "product_reference": "rubygem-excon-0:0.99.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-execjs-0:2.8.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-execjs-0:2.8.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-execjs-0:2.8.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-execjs-0:2.8.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-execjs-0:2.8.1-1.el8sat.src" + }, + "product_reference": "rubygem-execjs-0:2.8.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-facter-0:4.4.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-facter-0:4.4.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-facter-0:4.4.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-facter-0:4.4.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-facter-0:4.4.0-1.el8sat.src" + }, + "product_reference": "rubygem-facter-0:4.4.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-0:1.10.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-0:1.10.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-0:1.10.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-0:1.10.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-0:1.10.2-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-0:1.10.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.src" + }, + "product_reference": "rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-em_http-0:1.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-em_http-0:1.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-excon-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-excon-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-excon-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-excon-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-excon-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-excon-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-httpclient-0:1.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-httpclient-0:1.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-multipart-0:1.0.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-multipart-0:1.0.4-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-net_http-0:1.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-net_http-0:1.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-patron-0:1.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-patron-0:1.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-patron-0:1.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-patron-0:1.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-patron-0:1.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-patron-0:1.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-rack-0:1.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-rack-0:1.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-rack-0:1.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-rack-0:1.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-rack-0:1.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-rack-0:1.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-retry-0:1.0.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-retry-0:1.0.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-retry-0:1.0.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-retry-0:1.0.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-retry-0:1.0.3-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-retry-0:1.0.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday_middleware-0:1.2.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday_middleware-0:1.2.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fast_gettext-0:1.8.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fast_gettext-0:1.8.0-1.el8sat.src" + }, + "product_reference": "rubygem-fast_gettext-0:1.8.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ffi-0:1.15.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ffi-0:1.15.5-1.el8sat.src" + }, + "product_reference": "rubygem-ffi-0:1.15.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ffi-0:1.15.5-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ffi-0:1.15.5-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ffi-0:1.15.5-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-aws-0:3.19.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-aws-0:3.19.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-fog-aws-0:3.19.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-aws-0:3.19.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-aws-0:3.19.0-1.el8sat.src" + }, + "product_reference": "rubygem-fog-aws-0:3.19.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-core-0:2.3.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-core-0:2.3.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-fog-core-0:2.3.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-core-0:2.3.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-core-0:2.3.0-1.el8sat.src" + }, + "product_reference": "rubygem-fog-core-0:2.3.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-json-0:1.2.0-4.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-json-0:1.2.0-4.el8sat.noarch" + }, + "product_reference": "rubygem-fog-json-0:1.2.0-4.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-json-0:1.2.0-4.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-json-0:1.2.0-4.el8sat.src" + }, + "product_reference": "rubygem-fog-json-0:1.2.0-4.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-kubevirt-0:1.3.7-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-kubevirt-0:1.3.7-1.el8sat.noarch" + }, + "product_reference": "rubygem-fog-kubevirt-0:1.3.7-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-kubevirt-0:1.3.7-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-kubevirt-0:1.3.7-1.el8sat.src" + }, + "product_reference": "rubygem-fog-kubevirt-0:1.3.7-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-libvirt-0:0.11.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-libvirt-0:0.11.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-fog-libvirt-0:0.11.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-libvirt-0:0.11.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-libvirt-0:0.11.0-1.el8sat.src" + }, + "product_reference": "rubygem-fog-libvirt-0:0.11.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-openstack-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-openstack-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-fog-openstack-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-openstack-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-openstack-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-fog-openstack-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-ovirt-0:2.0.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-ovirt-0:2.0.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-fog-ovirt-0:2.0.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-ovirt-0:2.0.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-ovirt-0:2.0.2-1.el8sat.src" + }, + "product_reference": "rubygem-fog-ovirt-0:2.0.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-vsphere-0:3.6.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-vsphere-0:3.6.2-1.el8sat.src" + }, + "product_reference": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-xml-0:0.1.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-xml-0:0.1.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-fog-xml-0:0.1.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-xml-0:0.1.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-xml-0:0.1.4-1.el8sat.src" + }, + "product_reference": "rubygem-fog-xml-0:0.1.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman-tasks-0:8.1.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman-tasks-0:8.1.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman-tasks-0:8.1.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman-tasks-0:8.1.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman-tasks-0:8.1.4-1.el8sat.src" + }, + "product_reference": "rubygem-foreman-tasks-0:8.1.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_ansible-0:12.0.6-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_ansible-0:12.0.6-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_ansible-0:12.0.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_ansible-0:12.0.6-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_ansible-0:12.0.6-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_ansible-0:12.0.6-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.src" + }, + "product_reference": "rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_discovery-0:22.0.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_discovery-0:22.0.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_discovery-0:22.0.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_discovery-0:22.0.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_discovery-0:22.0.4-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_discovery-0:22.0.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_google-0:1.0.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_google-0:1.0.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_google-0:1.0.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_google-0:1.0.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_google-0:1.0.4-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_google-0:1.0.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.src" + }, + "product_reference": "rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.src" + }, + "product_reference": "rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_leapp-0:0.1.14-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_leapp-0:0.1.14-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_leapp-0:0.1.14-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_leapp-0:0.1.14-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_leapp-0:0.1.14-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_leapp-0:0.1.14-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_maintain-1:1.3.5-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_openscap-0:7.0.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_openscap-0:7.0.0-2.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_openscap-0:7.0.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_openscap-0:7.0.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_openscap-0:7.0.0-2.el8sat.src" + }, + "product_reference": "rubygem-foreman_openscap-0:7.0.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_puppet-0:6.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_puppet-0:6.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_puppet-0:6.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_puppet-0:6.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_puppet-0:6.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_puppet-0:6.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_remote_execution-cockpit-0:10.0.7-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_remote_execution-cockpit-0:10.0.7-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_remote_execution-cockpit-0:10.0.7-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_scap_client-0:0.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_scap_client-0:0.5.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_scap_client-0:0.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_scap_client-0:0.5.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_scap_client-0:0.5.0-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_scap_client-0:0.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_templates-0:9.4.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_templates-0:9.4.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_templates-0:9.4.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_templates-0:9.4.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_templates-0:9.4.0-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_templates-0:9.4.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_webhooks-0:3.2.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_webhooks-0:3.2.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_webhooks-0:3.2.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_webhooks-0:3.2.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_webhooks-0:3.2.1-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_webhooks-0:3.2.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-formatador-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-formatador-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-formatador-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-formatador-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-formatador-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-formatador-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-friendly_id-0:5.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-friendly_id-0:5.5.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-friendly_id-0:5.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-friendly_id-0:5.5.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-friendly_id-0:5.5.0-1.el8sat.src" + }, + "product_reference": "rubygem-friendly_id-0:5.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fugit-0:1.8.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fugit-0:1.8.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-fugit-0:1.8.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fugit-0:1.8.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fugit-0:1.8.1-1.el8sat.src" + }, + "product_reference": "rubygem-fugit-0:1.8.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fx-0:0.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fx-0:0.7.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-fx-0:0.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fx-0:0.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fx-0:0.7.0-1.el8sat.src" + }, + "product_reference": "rubygem-fx-0:0.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-gapic-common-0:0.12.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-gapic-common-0:0.12.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-gapic-common-0:0.12.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-gapic-common-0:0.12.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-gapic-common-0:0.12.0-1.el8sat.src" + }, + "product_reference": "rubygem-gapic-common-0:0.12.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-get_process_mem-0:0.2.7-2.1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-get_process_mem-0:0.2.7-2.1.el8sat.noarch" + }, + "product_reference": "rubygem-get_process_mem-0:0.2.7-2.1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-get_process_mem-0:0.2.7-2.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-get_process_mem-0:0.2.7-2.1.el8sat.src" + }, + "product_reference": "rubygem-get_process_mem-0:0.2.7-2.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.src" + }, + "product_reference": "rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-git-0:1.18.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-git-0:1.18.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-git-0:1.18.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-git-0:1.18.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-git-0:1.18.0-1.el8sat.src" + }, + "product_reference": "rubygem-git-0:1.18.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.noarch" + }, + "product_reference": "rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.src" + }, + "product_reference": "rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-globalid-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-globalid-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-globalid-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-globalid-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-globalid-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-globalid-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.src" + }, + "product_reference": "rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-apis-core-0:0.9.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-apis-core-0:0.9.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-google-apis-core-0:0.9.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-apis-core-0:0.9.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-apis-core-0:0.9.1-1.el8sat.src" + }, + "product_reference": "rubygem-google-apis-core-0:0.9.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-cloud-common-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-cloud-common-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-google-cloud-common-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-cloud-common-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-cloud-common-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-google-cloud-common-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-cloud-compute-0:0.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-cloud-compute-0:0.5.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-google-cloud-compute-0:0.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-cloud-compute-0:0.5.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-cloud-compute-0:0.5.0-1.el8sat.src" + }, + "product_reference": "rubygem-google-cloud-compute-0:0.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.src" + }, + "product_reference": "rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-cloud-core-0:1.6.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-cloud-core-0:1.6.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-google-cloud-core-0:1.6.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-cloud-core-0:1.6.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-cloud-core-0:1.6.0-1.el8sat.src" + }, + "product_reference": "rubygem-google-cloud-core-0:1.6.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-cloud-env-0:1.6.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-cloud-env-0:1.6.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-google-cloud-env-0:1.6.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-cloud-env-0:1.6.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-cloud-env-0:1.6.0-1.el8sat.src" + }, + "product_reference": "rubygem-google-cloud-env-0:1.6.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-cloud-errors-0:1.3.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-cloud-errors-0:1.3.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-google-cloud-errors-0:1.3.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-cloud-errors-0:1.3.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-cloud-errors-0:1.3.0-1.el8sat.src" + }, + "product_reference": "rubygem-google-cloud-errors-0:1.3.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-protobuf-0:3.21.6-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-protobuf-0:3.21.6-1.el8sat.src" + }, + "product_reference": "rubygem-google-protobuf-0:3.21.6-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-protobuf-0:3.21.6-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-protobuf-0:3.21.6-1.el8sat.x86_64" + }, + "product_reference": "rubygem-google-protobuf-0:3.21.6-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-protobuf-debuginfo-0:3.21.6-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-protobuf-debuginfo-0:3.21.6-1.el8sat.x86_64" + }, + "product_reference": "rubygem-google-protobuf-debuginfo-0:3.21.6-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-protobuf-debugsource-0:3.21.6-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-protobuf-debugsource-0:3.21.6-1.el8sat.x86_64" + }, + "product_reference": "rubygem-google-protobuf-debugsource-0:3.21.6-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.noarch" + }, + "product_reference": "rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.src" + }, + "product_reference": "rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.src" + }, + "product_reference": "rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-googleauth-0:1.3.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-googleauth-0:1.3.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-googleauth-0:1.3.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-googleauth-0:1.3.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-googleauth-0:1.3.0-1.el8sat.src" + }, + "product_reference": "rubygem-googleauth-0:1.3.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-graphql-0:1.13.19-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-graphql-0:1.13.19-1.el8sat.noarch" + }, + "product_reference": "rubygem-graphql-0:1.13.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-graphql-0:1.13.19-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-graphql-0:1.13.19-1.el8sat.src" + }, + "product_reference": "rubygem-graphql-0:1.13.19-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-graphql-batch-0:0.5.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-graphql-batch-0:0.5.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-graphql-batch-0:0.5.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-graphql-batch-0:0.5.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-graphql-batch-0:0.5.3-1.el8sat.src" + }, + "product_reference": "rubygem-graphql-batch-0:0.5.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-grpc-0:1.49.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-grpc-0:1.49.1-1.el8sat.src" + }, + "product_reference": "rubygem-grpc-0:1.49.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-grpc-0:1.49.1-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-grpc-0:1.49.1-1.el8sat.x86_64" + }, + "product_reference": "rubygem-grpc-0:1.49.1-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-gssapi-0:1.3.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-gssapi-0:1.3.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-gssapi-0:1.3.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-gssapi-0:1.3.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-gssapi-0:1.3.1-1.el8sat.src" + }, + "product_reference": "rubygem-gssapi-0:1.3.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli-0:3.7.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli-0:3.7.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hashie-0:5.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hashie-0:5.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hashie-0:5.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hashie-0:5.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hashie-0:5.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-hashie-0:5.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-highline-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-highline-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-highline-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-highline-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-highline-0:2.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-highline-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hocon-0:1.4.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hocon-0:1.4.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hocon-0:1.4.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hocon-0:1.4.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hocon-0:1.4.0-1.el8sat.src" + }, + "product_reference": "rubygem-hocon-0:1.4.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-0:3.3.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-http-0:3.3.0-2.el8sat.noarch" + }, + "product_reference": "rubygem-http-0:3.3.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-0:3.3.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-http-0:3.3.0-2.el8sat.src" + }, + "product_reference": "rubygem-http-0:3.3.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-accept-0:1.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-http-accept-0:1.7.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-http-accept-0:1.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-accept-0:1.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-http-accept-0:1.7.0-1.el8sat.src" + }, + "product_reference": "rubygem-http-accept-0:1.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-cookie-0:1.0.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-http-cookie-0:1.0.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-http-cookie-0:1.0.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-cookie-0:1.0.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-http-cookie-0:1.0.5-1.el8sat.src" + }, + "product_reference": "rubygem-http-cookie-0:1.0.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-form_data-0:2.1.1-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-http-form_data-0:2.1.1-2.el8sat.noarch" + }, + "product_reference": "rubygem-http-form_data-0:2.1.1-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-form_data-0:2.1.1-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-http-form_data-0:2.1.1-2.el8sat.src" + }, + "product_reference": "rubygem-http-form_data-0:2.1.1-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.src" + }, + "product_reference": "rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.x86_64" + }, + "product_reference": "rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http_parser.rb-debuginfo-0:0.6.0-3.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-http_parser.rb-debuginfo-0:0.6.0-3.1.el8sat.x86_64" + }, + "product_reference": "rubygem-http_parser.rb-debuginfo-0:0.6.0-3.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http_parser.rb-debugsource-0:0.6.0-3.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-http_parser.rb-debugsource-0:0.6.0-3.1.el8sat.x86_64" + }, + "product_reference": "rubygem-http_parser.rb-debugsource-0:0.6.0-3.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-httpclient-0:2.8.3-4.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-httpclient-0:2.8.3-4.el8sat.noarch" + }, + "product_reference": "rubygem-httpclient-0:2.8.3-4.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-httpclient-0:2.8.3-4.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-httpclient-0:2.8.3-4.el8sat.src" + }, + "product_reference": "rubygem-httpclient-0:2.8.3-4.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-i18n-0:1.13.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-i18n-0:1.13.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-i18n-0:1.13.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-i18n-0:1.13.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-i18n-0:1.13.0-1.el8sat.src" + }, + "product_reference": "rubygem-i18n-0:1.13.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-infoblox-0:3.0.0-4.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-infoblox-0:3.0.0-4.el8sat.noarch" + }, + "product_reference": "rubygem-infoblox-0:3.0.0-4.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-infoblox-0:3.0.0-4.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-infoblox-0:3.0.0-4.el8sat.src" + }, + "product_reference": "rubygem-infoblox-0:3.0.0-4.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-jgrep-0:1.3.3-11.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-jgrep-0:1.3.3-11.el8sat.noarch" + }, + "product_reference": "rubygem-jgrep-0:1.3.3-11.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-jgrep-0:1.3.3-11.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-jgrep-0:1.3.3-11.el8sat.src" + }, + "product_reference": "rubygem-jgrep-0:1.3.3-11.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-journald-logger-0:3.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-journald-logger-0:3.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-journald-logger-0:3.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-journald-logger-0:3.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-journald-logger-0:3.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-journald-logger-0:3.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-journald-native-0:1.0.12-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-journald-native-0:1.0.12-1.el8sat.src" + }, + "product_reference": "rubygem-journald-native-0:1.0.12-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-journald-native-0:1.0.12-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-journald-native-0:1.0.12-1.el8sat.x86_64" + }, + "product_reference": "rubygem-journald-native-0:1.0.12-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-journald-native-debuginfo-0:1.0.12-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-journald-native-debuginfo-0:1.0.12-1.el8sat.x86_64" + }, + "product_reference": "rubygem-journald-native-debuginfo-0:1.0.12-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-journald-native-debugsource-0:1.0.12-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-journald-native-debugsource-0:1.0.12-1.el8sat.x86_64" + }, + "product_reference": "rubygem-journald-native-debugsource-0:1.0.12-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-jsonpath-0:1.1.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-jsonpath-0:1.1.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-jsonpath-0:1.1.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-jsonpath-0:1.1.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-jsonpath-0:1.1.2-1.el8sat.src" + }, + "product_reference": "rubygem-jsonpath-0:1.1.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-jwt-0:2.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-jwt-0:2.7.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-jwt-0:2.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-jwt-0:2.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-jwt-0:2.7.0-1.el8sat.src" + }, + "product_reference": "rubygem-jwt-0:2.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kafo-0:7.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-kafo-0:7.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-kafo-0:7.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kafo-0:7.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-kafo-0:7.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-kafo-0:7.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-kafo_parsers-0:1.2.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-kafo_parsers-0:1.2.1-1.el8sat.src" + }, + "product_reference": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-kafo_wizards-0:0.0.2-2.el8sat.noarch" + }, + "product_reference": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-kafo_wizards-0:0.0.2-2.el8sat.src" + }, + "product_reference": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-katello-0:4.9.0.16-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-katello-0:4.9.0.16-1.el8sat.noarch" + }, + "product_reference": "rubygem-katello-0:4.9.0.16-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-katello-0:4.9.0.16-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-katello-0:4.9.0.16-1.el8sat.src" + }, + "product_reference": "rubygem-katello-0:4.9.0.16-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kubeclient-0:4.10.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-kubeclient-0:4.10.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-kubeclient-0:4.10.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kubeclient-0:4.10.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-kubeclient-0:4.10.1-1.el8sat.src" + }, + "product_reference": "rubygem-kubeclient-0:4.10.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ldap_fluff-0:0.6.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ldap_fluff-0:0.6.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-ldap_fluff-0:0.6.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ldap_fluff-0:0.6.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ldap_fluff-0:0.6.0-1.el8sat.src" + }, + "product_reference": "rubygem-ldap_fluff-0:0.6.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-little-plugger-0:1.1.4-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-little-plugger-0:1.1.4-3.el8sat.noarch" + }, + "product_reference": "rubygem-little-plugger-0:1.1.4-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-little-plugger-0:1.1.4-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-little-plugger-0:1.1.4-3.el8sat.src" + }, + "product_reference": "rubygem-little-plugger-0:1.1.4-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-locale-0:2.1.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-locale-0:2.1.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-locale-0:2.1.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-locale-0:2.1.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-locale-0:2.1.3-1.el8sat.src" + }, + "product_reference": "rubygem-locale-0:2.1.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-logging-0:2.3.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-logging-0:2.3.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-logging-0:2.3.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-logging-0:2.3.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-logging-0:2.3.1-1.el8sat.src" + }, + "product_reference": "rubygem-logging-0:2.3.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-logging-journald-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-logging-journald-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-logging-journald-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-logging-journald-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-logging-journald-0:2.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-logging-journald-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-loofah-0:2.21.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-loofah-0:2.21.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-loofah-0:2.21.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-loofah-0:2.21.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-loofah-0:2.21.3-1.el8sat.src" + }, + "product_reference": "rubygem-loofah-0:2.21.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mail-0:2.8.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-mail-0:2.8.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-mail-0:2.8.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mail-0:2.8.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-mail-0:2.8.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-mail-0:2.8.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-marcel-0:1.0.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-marcel-0:1.0.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-marcel-0:1.0.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-marcel-0:1.0.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-marcel-0:1.0.2-1.el8sat.src" + }, + "product_reference": "rubygem-marcel-0:1.0.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-memoist-0:0.16.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-memoist-0:0.16.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-memoist-0:0.16.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-memoist-0:0.16.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-memoist-0:0.16.2-1.el8sat.src" + }, + "product_reference": "rubygem-memoist-0:0.16.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-method_source-0:1.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-method_source-0:1.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-method_source-0:1.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-method_source-0:1.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-method_source-0:1.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-method_source-0:1.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mime-types-0:3.4.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-mime-types-0:3.4.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-mime-types-0:3.4.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mime-types-0:3.4.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-mime-types-0:3.4.1-1.el8sat.src" + }, + "product_reference": "rubygem-mime-types-0:3.4.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src" + }, + "product_reference": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mini_mime-0:1.1.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-mini_mime-0:1.1.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-mini_mime-0:1.1.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mini_mime-0:1.1.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-mini_mime-0:1.1.2-1.el8sat.src" + }, + "product_reference": "rubygem-mini_mime-0:1.1.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mqtt-0:0.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-mqtt-0:0.5.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-mqtt-0:0.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mqtt-0:0.5.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-mqtt-0:0.5.0-1.el8sat.src" + }, + "product_reference": "rubygem-mqtt-0:0.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ms_rest-0:0.7.6-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ms_rest-0:0.7.6-1.el8sat.noarch" + }, + "product_reference": "rubygem-ms_rest-0:0.7.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ms_rest-0:0.7.6-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ms_rest-0:0.7.6-1.el8sat.src" + }, + "product_reference": "rubygem-ms_rest-0:0.7.6-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ms_rest_azure-0:0.12.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ms_rest_azure-0:0.12.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-ms_rest_azure-0:0.12.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ms_rest_azure-0:0.12.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ms_rest_azure-0:0.12.0-1.el8sat.src" + }, + "product_reference": "rubygem-ms_rest_azure-0:0.12.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-msgpack-0:1.7.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-msgpack-0:1.7.1-1.el8sat.src" + }, + "product_reference": "rubygem-msgpack-0:1.7.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-msgpack-0:1.7.1-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-msgpack-0:1.7.1-1.el8sat.x86_64" + }, + "product_reference": "rubygem-msgpack-0:1.7.1-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-msgpack-debuginfo-0:1.7.1-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-msgpack-debuginfo-0:1.7.1-1.el8sat.x86_64" + }, + "product_reference": "rubygem-msgpack-debuginfo-0:1.7.1-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-msgpack-debugsource-0:1.7.1-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-msgpack-debugsource-0:1.7.1-1.el8sat.x86_64" + }, + "product_reference": "rubygem-msgpack-debugsource-0:1.7.1-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-multi_json-0:1.15.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-multi_json-0:1.15.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-multi_json-0:1.15.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-multi_json-0:1.15.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-multi_json-0:1.15.0-1.el8sat.src" + }, + "product_reference": "rubygem-multi_json-0:1.15.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-multipart-post-0:2.2.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-multipart-post-0:2.2.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-multipart-post-0:2.2.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-multipart-post-0:2.2.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-multipart-post-0:2.2.3-1.el8sat.src" + }, + "product_reference": "rubygem-multipart-post-0:2.2.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mustermann-0:2.0.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-mustermann-0:2.0.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-mustermann-0:2.0.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mustermann-0:2.0.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-mustermann-0:2.0.2-1.el8sat.src" + }, + "product_reference": "rubygem-mustermann-0:2.0.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-ldap-0:0.18.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-net-ldap-0:0.18.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-net-ldap-0:0.18.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-ldap-0:0.18.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-net-ldap-0:0.18.0-1.el8sat.src" + }, + "product_reference": "rubygem-net-ldap-0:0.18.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-ping-0:2.0.8-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-net-ping-0:2.0.8-1.el8sat.noarch" + }, + "product_reference": "rubygem-net-ping-0:2.0.8-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-ping-0:2.0.8-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-net-ping-0:2.0.8-1.el8sat.src" + }, + "product_reference": "rubygem-net-ping-0:2.0.8-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-scp-0:4.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-net-scp-0:4.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-net-scp-0:4.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-scp-0:4.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-net-scp-0:4.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-net-scp-0:4.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-ssh-0:7.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-net-ssh-0:7.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-net-ssh-0:7.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-ssh-0:7.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-net-ssh-0:7.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-net-ssh-0:7.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-net-ssh-krb-0:0.4.0-4.el8sat.noarch" + }, + "product_reference": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-net-ssh-krb-0:0.4.0-4.el8sat.src" + }, + "product_reference": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net_http_unix-0:0.2.2-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-net_http_unix-0:0.2.2-2.el8sat.noarch" + }, + "product_reference": "rubygem-net_http_unix-0:0.2.2-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net_http_unix-0:0.2.2-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-net_http_unix-0:0.2.2-2.el8sat.src" + }, + "product_reference": "rubygem-net_http_unix-0:0.2.2-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-netrc-0:0.11.0-6.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-netrc-0:0.11.0-6.el8sat.noarch" + }, + "product_reference": "rubygem-netrc-0:0.11.0-6.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-netrc-0:0.11.0-6.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-netrc-0:0.11.0-6.el8sat.src" + }, + "product_reference": "rubygem-netrc-0:0.11.0-6.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-newt-0:0.9.7-3.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-newt-0:0.9.7-3.1.el8sat.src" + }, + "product_reference": "rubygem-newt-0:0.9.7-3.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-newt-0:0.9.7-3.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-newt-0:0.9.7-3.1.el8sat.x86_64" + }, + "product_reference": "rubygem-newt-0:0.9.7-3.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-newt-debuginfo-0:0.9.7-3.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-newt-debuginfo-0:0.9.7-3.1.el8sat.x86_64" + }, + "product_reference": "rubygem-newt-debuginfo-0:0.9.7-3.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-newt-debugsource-0:0.9.7-3.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-newt-debugsource-0:0.9.7-3.1.el8sat.x86_64" + }, + "product_reference": "rubygem-newt-debugsource-0:0.9.7-3.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-nio4r-0:2.5.9-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-nio4r-0:2.5.9-1.el8sat.src" + }, + "product_reference": "rubygem-nio4r-0:2.5.9-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-nio4r-0:2.5.9-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-nio4r-0:2.5.9-1.el8sat.x86_64" + }, + "product_reference": "rubygem-nio4r-0:2.5.9-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-nio4r-debuginfo-0:2.5.9-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-nio4r-debuginfo-0:2.5.9-1.el8sat.x86_64" + }, + "product_reference": "rubygem-nio4r-debuginfo-0:2.5.9-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-nio4r-debugsource-0:2.5.9-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-nio4r-debugsource-0:2.5.9-1.el8sat.x86_64" + }, + "product_reference": "rubygem-nio4r-debugsource-0:2.5.9-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-nokogiri-0:1.15.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-nokogiri-0:1.15.0-1.el8sat.src" + }, + "product_reference": "rubygem-nokogiri-0:1.15.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-nokogiri-0:1.15.0-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-nokogiri-0:1.15.0-1.el8sat.x86_64" + }, + "product_reference": "rubygem-nokogiri-0:1.15.0-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-nokogiri-debuginfo-0:1.15.0-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-nokogiri-debuginfo-0:1.15.0-1.el8sat.x86_64" + }, + "product_reference": "rubygem-nokogiri-debuginfo-0:1.15.0-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-nokogiri-debugsource-0:1.15.0-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-nokogiri-debugsource-0:1.15.0-1.el8sat.x86_64" + }, + "product_reference": "rubygem-nokogiri-debugsource-0:1.15.0-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-oauth-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-oauth-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-oauth-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-oauth-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-oauth-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-oauth-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-oauth-tty-0:1.0.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-oauth-tty-0:1.0.5-1.el8sat.src" + }, + "product_reference": "rubygem-oauth-tty-0:1.0.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-openscap-0:0.4.9-9.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-openscap-0:0.4.9-9.el8sat.noarch" + }, + "product_reference": "rubygem-openscap-0:0.4.9-9.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-openscap-0:0.4.9-9.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-openscap-0:0.4.9-9.el8sat.src" + }, + "product_reference": "rubygem-openscap-0:0.4.9-9.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-openscap_parser-0:1.0.2-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-openscap_parser-0:1.0.2-2.el8sat.noarch" + }, + "product_reference": "rubygem-openscap_parser-0:1.0.2-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-openscap_parser-0:1.0.2-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-openscap_parser-0:1.0.2-2.el8sat.src" + }, + "product_reference": "rubygem-openscap_parser-0:1.0.2-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-optimist-0:3.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-optimist-0:3.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-optimist-0:3.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-optimist-0:3.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-optimist-0:3.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-optimist-0:3.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-os-0:1.1.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-os-0:1.1.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-os-0:1.1.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-os-0:1.1.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-os-0:1.1.4-1.el8sat.src" + }, + "product_reference": "rubygem-os-0:1.1.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.src" + }, + "product_reference": "rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ovirt-engine-sdk-debuginfo-0:4.4.1-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ovirt-engine-sdk-debuginfo-0:4.4.1-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ovirt-engine-sdk-debuginfo-0:4.4.1-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ovirt-engine-sdk-debugsource-0:4.4.1-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ovirt-engine-sdk-debugsource-0:4.4.1-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ovirt-engine-sdk-debugsource-0:4.4.1-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.noarch" + }, + "product_reference": "rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.src" + }, + "product_reference": "rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-parallel-0:1.23.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-parallel-0:1.23.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-parallel-0:1.23.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-parallel-0:1.23.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-parallel-0:1.23.0-1.el8sat.src" + }, + "product_reference": "rubygem-parallel-0:1.23.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pg-0:1.5.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pg-0:1.5.3-1.el8sat.src" + }, + "product_reference": "rubygem-pg-0:1.5.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pg-0:1.5.3-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pg-0:1.5.3-1.el8sat.x86_64" + }, + "product_reference": "rubygem-pg-0:1.5.3-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pg-debuginfo-0:1.5.3-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pg-debuginfo-0:1.5.3-1.el8sat.x86_64" + }, + "product_reference": "rubygem-pg-debuginfo-0:1.5.3-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pg-debugsource-0:1.5.3-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pg-debugsource-0:1.5.3-1.el8sat.x86_64" + }, + "product_reference": "rubygem-pg-debugsource-0:1.5.3-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-polyglot-0:0.3.5-3.1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-polyglot-0:0.3.5-3.1.el8sat.noarch" + }, + "product_reference": "rubygem-polyglot-0:0.3.5-3.1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-polyglot-0:0.3.5-3.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-polyglot-0:0.3.5-3.1.el8sat.src" + }, + "product_reference": "rubygem-polyglot-0:0.3.5-3.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-powerbar-0:2.0.1-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-powerbar-0:2.0.1-3.el8sat.noarch" + }, + "product_reference": "rubygem-powerbar-0:2.0.1-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-powerbar-0:2.0.1-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-powerbar-0:2.0.1-3.el8sat.src" + }, + "product_reference": "rubygem-powerbar-0:2.0.1-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-prometheus-client-0:4.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-prometheus-client-0:4.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-prometheus-client-0:4.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-prometheus-client-0:4.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-prometheus-client-0:4.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-prometheus-client-0:4.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-promise.rb-0:0.7.4-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-promise.rb-0:0.7.4-3.el8sat.noarch" + }, + "product_reference": "rubygem-promise.rb-0:0.7.4-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-promise.rb-0:0.7.4-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-promise.rb-0:0.7.4-3.el8sat.src" + }, + "product_reference": "rubygem-promise.rb-0:0.7.4-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-public_suffix-0:5.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-public_suffix-0:5.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-public_suffix-0:5.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-public_suffix-0:5.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-public_suffix-0:5.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-public_suffix-0:5.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.src" + }, + "product_reference": "rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.src" + }, + "product_reference": "rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_container_client-0:2.14.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_container_client-0:2.14.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-pulp_container_client-0:2.14.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_container_client-0:2.14.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_container_client-0:2.14.5-1.el8sat.src" + }, + "product_reference": "rubygem-pulp_container_client-0:2.14.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_deb_client-0:2.20.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_deb_client-0:2.20.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-pulp_deb_client-0:2.20.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_deb_client-0:2.20.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_deb_client-0:2.20.2-1.el8sat.src" + }, + "product_reference": "rubygem-pulp_deb_client-0:2.20.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_file_client-0:1.12.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_file_client-0:1.12.0-2.el8sat.noarch" + }, + "product_reference": "rubygem-pulp_file_client-0:1.12.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_file_client-0:1.12.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_file_client-0:1.12.0-2.el8sat.src" + }, + "product_reference": "rubygem-pulp_file_client-0:1.12.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_python_client-0:3.8.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_python_client-0:3.8.0-2.el8sat.noarch" + }, + "product_reference": "rubygem-pulp_python_client-0:3.8.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_python_client-0:3.8.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_python_client-0:3.8.0-2.el8sat.src" + }, + "product_reference": "rubygem-pulp_python_client-0:3.8.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.noarch" + }, + "product_reference": "rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.src" + }, + "product_reference": "rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulpcore_client-1:3.22.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulpcore_client-1:3.22.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-pulpcore_client-1:3.22.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulpcore_client-1:3.22.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulpcore_client-1:3.22.4-1.el8sat.src" + }, + "product_reference": "rubygem-pulpcore_client-1:3.22.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-puma-0:6.2.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-puma-0:6.2.2-1.el8sat.src" + }, + "product_reference": "rubygem-puma-0:6.2.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-puma-0:6.2.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-puma-0:6.2.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-puma-0:6.2.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-puma-debuginfo-0:6.2.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-puma-debuginfo-0:6.2.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-puma-debuginfo-0:6.2.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-puma-debugsource-0:6.2.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-puma-debugsource-0:6.2.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-puma-debugsource-0:6.2.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-puma-status-0:1.6-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-puma-status-0:1.6-1.el8sat.noarch" + }, + "product_reference": "rubygem-puma-status-0:1.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-puma-status-0:1.6-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-puma-status-0:1.6-1.el8sat.src" + }, + "product_reference": "rubygem-puma-status-0:1.6-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-qpid_proton-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-qpid_proton-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "rubygem-qpid_proton-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-qpid_proton-0:0.33.0-5.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-qpid_proton-0:0.33.0-5.el8sat.src" + }, + "product_reference": "rubygem-qpid_proton-0:0.33.0-5.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-qpid_proton-0:0.33.0-5.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-qpid_proton-0:0.33.0-5.el8sat.x86_64" + }, + "product_reference": "rubygem-qpid_proton-0:0.33.0-5.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-qpid_proton-debuginfo-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-qpid_proton-debuginfo-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "rubygem-qpid_proton-debuginfo-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-qpid_proton-debuginfo-0:0.33.0-5.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-qpid_proton-debuginfo-0:0.33.0-5.el8sat.x86_64" + }, + "product_reference": "rubygem-qpid_proton-debuginfo-0:0.33.0-5.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-qpid_proton-debugsource-0:0.33.0-5.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-qpid_proton-debugsource-0:0.33.0-5.el8sat.x86_64" + }, + "product_reference": "rubygem-qpid_proton-debugsource-0:0.33.0-5.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-raabro-0:1.4.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-raabro-0:1.4.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-raabro-0:1.4.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-raabro-0:1.4.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-raabro-0:1.4.0-1.el8sat.src" + }, + "product_reference": "rubygem-raabro-0:1.4.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rabl-0:0.16.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rabl-0:0.16.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-rabl-0:0.16.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rabl-0:0.16.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rabl-0:0.16.1-1.el8sat.src" + }, + "product_reference": "rubygem-rabl-0:0.16.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-0:2.2.7-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rack-0:2.2.7-1.el8sat.noarch" + }, + "product_reference": "rubygem-rack-0:2.2.7-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-0:2.2.7-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rack-0:2.2.7-1.el8sat.src" + }, + "product_reference": "rubygem-rack-0:2.2.7-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-cors-0:1.1.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rack-cors-0:1.1.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-rack-cors-0:1.1.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-cors-0:1.1.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rack-cors-0:1.1.1-1.el8sat.src" + }, + "product_reference": "rubygem-rack-cors-0:1.1.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-jsonp-0:1.3.1-10.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rack-jsonp-0:1.3.1-10.el8sat.noarch" + }, + "product_reference": "rubygem-rack-jsonp-0:1.3.1-10.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-jsonp-0:1.3.1-10.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rack-jsonp-0:1.3.1-10.el8sat.src" + }, + "product_reference": "rubygem-rack-jsonp-0:1.3.1-10.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-protection-0:2.2.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rack-protection-0:2.2.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-rack-protection-0:2.2.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-protection-0:2.2.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rack-protection-0:2.2.4-1.el8sat.src" + }, + "product_reference": "rubygem-rack-protection-0:2.2.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-test-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rack-test-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-rack-test-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-test-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rack-test-0:2.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-rack-test-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rails-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rails-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-rails-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rails-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rails-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-rails-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rails-dom-testing-0:2.0.3-7.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rails-dom-testing-0:2.0.3-7.el8sat.noarch" + }, + "product_reference": "rubygem-rails-dom-testing-0:2.0.3-7.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rails-dom-testing-0:2.0.3-7.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rails-dom-testing-0:2.0.3-7.el8sat.src" + }, + "product_reference": "rubygem-rails-dom-testing-0:2.0.3-7.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.src" + }, + "product_reference": "rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rails-i18n-0:7.0.7-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rails-i18n-0:7.0.7-1.el8sat.noarch" + }, + "product_reference": "rubygem-rails-i18n-0:7.0.7-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rails-i18n-0:7.0.7-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rails-i18n-0:7.0.7-1.el8sat.src" + }, + "product_reference": "rubygem-rails-i18n-0:7.0.7-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-railties-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-railties-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-railties-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-railties-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-railties-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-railties-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rainbow-0:2.2.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rainbow-0:2.2.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-rainbow-0:2.2.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rainbow-0:2.2.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rainbow-0:2.2.2-1.el8sat.src" + }, + "product_reference": "rubygem-rainbow-0:2.2.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rb-inotify-0:0.10.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rb-inotify-0:0.10.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-rb-inotify-0:0.10.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rb-inotify-0:0.10.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rb-inotify-0:0.10.1-1.el8sat.src" + }, + "product_reference": "rubygem-rb-inotify-0:0.10.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rbnacl-0:4.0.2-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rbnacl-0:4.0.2-2.el8sat.noarch" + }, + "product_reference": "rubygem-rbnacl-0:4.0.2-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rbnacl-0:4.0.2-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rbnacl-0:4.0.2-2.el8sat.src" + }, + "product_reference": "rubygem-rbnacl-0:4.0.2-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rbvmomi2-0:3.6.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rbvmomi2-0:3.6.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-rbvmomi2-0:3.6.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rbvmomi2-0:3.6.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rbvmomi2-0:3.6.1-1.el8sat.src" + }, + "product_reference": "rubygem-rbvmomi2-0:3.6.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rchardet-0:1.8.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rchardet-0:1.8.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-rchardet-0:1.8.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rchardet-0:1.8.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rchardet-0:1.8.0-1.el8sat.src" + }, + "product_reference": "rubygem-rchardet-0:1.8.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-recursive-open-struct-0:1.1.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-recursive-open-struct-0:1.1.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-recursive-open-struct-0:1.1.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-recursive-open-struct-0:1.1.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-recursive-open-struct-0:1.1.3-1.el8sat.src" + }, + "product_reference": "rubygem-recursive-open-struct-0:1.1.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-redfish_client-0:0.5.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-redfish_client-0:0.5.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-redfish_client-0:0.5.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-redfish_client-0:0.5.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-redfish_client-0:0.5.4-1.el8sat.src" + }, + "product_reference": "rubygem-redfish_client-0:0.5.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-redis-0:4.5.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-redis-0:4.5.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-redis-0:4.5.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-redis-0:4.5.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-redis-0:4.5.1-1.el8sat.src" + }, + "product_reference": "rubygem-redis-0:4.5.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-representable-0:3.2.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-representable-0:3.2.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-representable-0:3.2.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-representable-0:3.2.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-representable-0:3.2.0-1.el8sat.src" + }, + "product_reference": "rubygem-representable-0:3.2.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-responders-0:3.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-responders-0:3.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-responders-0:3.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-responders-0:3.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-responders-0:3.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-responders-0:3.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rest-client-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rest-client-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-rest-client-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rest-client-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rest-client-0:2.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-rest-client-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-retriable-0:3.1.2-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-retriable-0:3.1.2-3.el8sat.noarch" + }, + "product_reference": "rubygem-retriable-0:3.1.2-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-retriable-0:3.1.2-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-retriable-0:3.1.2-3.el8sat.src" + }, + "product_reference": "rubygem-retriable-0:3.1.2-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rkerberos-0:0.1.5-20.1.el8sat.src" + }, + "product_reference": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rkerberos-0:0.1.5-20.1.el8sat.x86_64" + }, + "product_reference": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rkerberos-debuginfo-0:0.1.5-20.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rkerberos-debuginfo-0:0.1.5-20.1.el8sat.x86_64" + }, + "product_reference": "rubygem-rkerberos-debuginfo-0:0.1.5-20.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rkerberos-debugsource-0:0.1.5-20.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rkerberos-debugsource-0:0.1.5-20.1.el8sat.x86_64" + }, + "product_reference": "rubygem-rkerberos-debugsource-0:0.1.5-20.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-roadie-0:5.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-roadie-0:5.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-roadie-0:5.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-roadie-0:5.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-roadie-0:5.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-roadie-0:5.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-roadie-rails-0:3.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-roadie-rails-0:3.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-roadie-rails-0:3.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-roadie-rails-0:3.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-roadie-rails-0:3.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-roadie-rails-0:3.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-robotex-0:1.0.0-22.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-robotex-0:1.0.0-22.el8sat.noarch" + }, + "product_reference": "rubygem-robotex-0:1.0.0-22.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-robotex-0:1.0.0-22.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-robotex-0:1.0.0-22.el8sat.src" + }, + "product_reference": "rubygem-robotex-0:1.0.0-22.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rsec-0:0.4.3-5.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rsec-0:0.4.3-5.el8sat.noarch" + }, + "product_reference": "rubygem-rsec-0:0.4.3-5.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rsec-0:0.4.3-5.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rsec-0:0.4.3-5.el8sat.src" + }, + "product_reference": "rubygem-rsec-0:0.4.3-5.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ruby-libvirt-0:0.8.0-1.el8sat.src" + }, + "product_reference": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ruby-libvirt-0:0.8.0-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby-libvirt-debuginfo-0:0.8.0-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ruby-libvirt-debuginfo-0:0.8.0-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ruby-libvirt-debuginfo-0:0.8.0-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby-libvirt-debugsource-0:0.8.0-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ruby-libvirt-debugsource-0:0.8.0-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ruby-libvirt-debugsource-0:0.8.0-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ruby2_keywords-0:0.0.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ruby2_keywords-0:0.0.5-1.el8sat.src" + }, + "product_reference": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby2ruby-0:2.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ruby2ruby-0:2.5.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-ruby2ruby-0:2.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby2ruby-0:2.5.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ruby2ruby-0:2.5.0-1.el8sat.src" + }, + "product_reference": "rubygem-ruby2ruby-0:2.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby_parser-0:3.20.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ruby_parser-0:3.20.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-ruby_parser-0:3.20.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby_parser-0:3.20.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ruby_parser-0:3.20.1-1.el8sat.src" + }, + "product_reference": "rubygem-ruby_parser-0:3.20.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rubyipmi-0:0.11.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rubyipmi-0:0.11.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-rubyipmi-0:0.11.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rubyipmi-0:0.11.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rubyipmi-0:0.11.1-1.el8sat.src" + }, + "product_reference": "rubygem-rubyipmi-0:0.11.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-safemode-0:1.3.8-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-safemode-0:1.3.8-1.el8sat.noarch" + }, + "product_reference": "rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-safemode-0:1.3.8-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-safemode-0:1.3.8-1.el8sat.src" + }, + "product_reference": "rubygem-safemode-0:1.3.8-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-scoped_search-0:4.1.11-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-scoped_search-0:4.1.11-1.el8sat.noarch" + }, + "product_reference": "rubygem-scoped_search-0:4.1.11-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-scoped_search-0:4.1.11-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-scoped_search-0:4.1.11-1.el8sat.src" + }, + "product_reference": "rubygem-scoped_search-0:4.1.11-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sd_notify-0:0.1.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sd_notify-0:0.1.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-sd_notify-0:0.1.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sd_notify-0:0.1.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sd_notify-0:0.1.1-1.el8sat.src" + }, + "product_reference": "rubygem-sd_notify-0:0.1.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-secure_headers-0:6.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-secure_headers-0:6.5.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-secure_headers-0:6.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-secure_headers-0:6.5.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-secure_headers-0:6.5.0-1.el8sat.src" + }, + "product_reference": "rubygem-secure_headers-0:6.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sequel-0:5.68.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sequel-0:5.68.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-sequel-0:5.68.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sequel-0:5.68.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sequel-0:5.68.0-1.el8sat.src" + }, + "product_reference": "rubygem-sequel-0:5.68.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-server_sent_events-0:0.1.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-server_sent_events-0:0.1.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-server_sent_events-0:0.1.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-server_sent_events-0:0.1.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-server_sent_events-0:0.1.3-1.el8sat.src" + }, + "product_reference": "rubygem-server_sent_events-0:0.1.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sexp_processor-0:4.17.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sexp_processor-0:4.17.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-sexp_processor-0:4.17.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sexp_processor-0:4.17.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sexp_processor-0:4.17.0-1.el8sat.src" + }, + "product_reference": "rubygem-sexp_processor-0:4.17.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sidekiq-0:6.3.1-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sidekiq-0:6.3.1-2.el8sat.noarch" + }, + "product_reference": "rubygem-sidekiq-0:6.3.1-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sidekiq-0:6.3.1-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sidekiq-0:6.3.1-2.el8sat.src" + }, + "product_reference": "rubygem-sidekiq-0:6.3.1-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-signet-0:0.17.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-signet-0:0.17.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-signet-0:0.17.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-signet-0:0.17.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-signet-0:0.17.0-1.el8sat.src" + }, + "product_reference": "rubygem-signet-0:0.17.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sinatra-1:2.2.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sinatra-1:2.2.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-sinatra-1:2.2.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sinatra-1:2.2.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sinatra-1:2.2.4-1.el8sat.src" + }, + "product_reference": "rubygem-sinatra-1:2.2.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-snaky_hash-0:2.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-snaky_hash-0:2.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-snaky_hash-0:2.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sprockets-0:4.2.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sprockets-0:4.2.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-sprockets-0:4.2.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sprockets-0:4.2.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sprockets-0:4.2.0-1.el8sat.src" + }, + "product_reference": "rubygem-sprockets-0:4.2.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sprockets-rails-0:3.4.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sprockets-rails-0:3.4.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-sprockets-rails-0:3.4.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sprockets-rails-0:3.4.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sprockets-rails-0:3.4.2-1.el8sat.src" + }, + "product_reference": "rubygem-sprockets-rails-0:3.4.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sqlite3-0:1.4.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sqlite3-0:1.4.2-1.el8sat.src" + }, + "product_reference": "rubygem-sqlite3-0:1.4.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sqlite3-0:1.4.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sqlite3-0:1.4.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-sqlite3-0:1.4.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sqlite3-debuginfo-0:1.4.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sqlite3-debuginfo-0:1.4.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-sqlite3-debuginfo-0:1.4.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sqlite3-debugsource-0:1.4.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sqlite3-debugsource-0:1.4.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-sqlite3-debugsource-0:1.4.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sshkey-0:2.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sshkey-0:2.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-sshkey-0:2.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sshkey-0:2.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sshkey-0:2.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-sshkey-0:2.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-statsd-instrument-0:2.9.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-statsd-instrument-0:2.9.2-1.el8sat.src" + }, + "product_reference": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-stomp-0:1.4.10-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-stomp-0:1.4.10-1.el8sat.noarch" + }, + "product_reference": "rubygem-stomp-0:1.4.10-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-stomp-0:1.4.10-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-stomp-0:1.4.10-1.el8sat.src" + }, + "product_reference": "rubygem-stomp-0:1.4.10-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-thor-0:1.2.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-thor-0:1.2.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-thor-0:1.2.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-thor-0:1.2.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-thor-0:1.2.2-1.el8sat.src" + }, + "product_reference": "rubygem-thor-0:1.2.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-tilt-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-tilt-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-tilt-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-tilt-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-tilt-0:2.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-tilt-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-timeliness-0:0.3.10-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-timeliness-0:0.3.10-2.el8sat.noarch" + }, + "product_reference": "rubygem-timeliness-0:0.3.10-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-timeliness-0:0.3.10-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-timeliness-0:0.3.10-2.el8sat.src" + }, + "product_reference": "rubygem-timeliness-0:0.3.10-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-trailblazer-option-0:0.1.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-trailblazer-option-0:0.1.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-trailblazer-option-0:0.1.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-trailblazer-option-0:0.1.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-trailblazer-option-0:0.1.2-1.el8sat.src" + }, + "product_reference": "rubygem-trailblazer-option-0:0.1.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-tzinfo-0:2.0.6-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-tzinfo-0:2.0.6-1.el8sat.noarch" + }, + "product_reference": "rubygem-tzinfo-0:2.0.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-tzinfo-0:2.0.6-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-tzinfo-0:2.0.6-1.el8sat.src" + }, + "product_reference": "rubygem-tzinfo-0:2.0.6-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-uber-0:0.1.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-uber-0:0.1.0-3.el8sat.noarch" + }, + "product_reference": "rubygem-uber-0:0.1.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-uber-0:0.1.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-uber-0:0.1.0-3.el8sat.src" + }, + "product_reference": "rubygem-uber-0:0.1.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf-0:0.1.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-unf-0:0.1.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-unf-0:0.1.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf-0:0.1.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-unf-0:0.1.4-1.el8sat.src" + }, + "product_reference": "rubygem-unf-0:0.1.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-unf_ext-0:0.0.8.2-1.el8sat.src" + }, + "product_reference": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-unicode-0:0.4.4.4-4.1.el8sat.src" + }, + "product_reference": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-unicode-0:0.4.4.4-4.1.el8sat.x86_64" + }, + "product_reference": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unicode-debuginfo-0:0.4.4.4-4.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-unicode-debuginfo-0:0.4.4.4-4.1.el8sat.x86_64" + }, + "product_reference": "rubygem-unicode-debuginfo-0:0.4.4.4-4.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unicode-debugsource-0:0.4.4.4-4.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-unicode-debugsource-0:0.4.4.4-4.1.el8sat.x86_64" + }, + "product_reference": "rubygem-unicode-debugsource-0:0.4.4.4-4.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-unicode-display_width-0:1.8.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-unicode-display_width-0:1.8.0-1.el8sat.src" + }, + "product_reference": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.src" + }, + "product_reference": "rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-version_gem-0:1.1.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-version_gem-0:1.1.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-version_gem-0:1.1.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-version_gem-0:1.1.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-version_gem-0:1.1.2-1.el8sat.src" + }, + "product_reference": "rubygem-version_gem-0:1.1.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-webpack-rails-0:0.9.11-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-webpack-rails-0:0.9.11-1.el8sat.noarch" + }, + "product_reference": "rubygem-webpack-rails-0:0.9.11-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-webpack-rails-0:0.9.11-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-webpack-rails-0:0.9.11-1.el8sat.src" + }, + "product_reference": "rubygem-webpack-rails-0:0.9.11-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-webrick-0:1.8.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-webrick-0:1.8.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-webrick-0:1.8.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-webrick-0:1.8.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-webrick-0:1.8.1-1.el8sat.src" + }, + "product_reference": "rubygem-webrick-0:1.8.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-websocket-driver-0:0.7.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-websocket-driver-0:0.7.5-1.el8sat.src" + }, + "product_reference": "rubygem-websocket-driver-0:0.7.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-websocket-driver-0:0.7.5-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-websocket-driver-0:0.7.5-1.el8sat.x86_64" + }, + "product_reference": "rubygem-websocket-driver-0:0.7.5-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-websocket-driver-debuginfo-0:0.7.5-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-websocket-driver-debuginfo-0:0.7.5-1.el8sat.x86_64" + }, + "product_reference": "rubygem-websocket-driver-debuginfo-0:0.7.5-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-websocket-driver-debugsource-0:0.7.5-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-websocket-driver-debugsource-0:0.7.5-1.el8sat.x86_64" + }, + "product_reference": "rubygem-websocket-driver-debugsource-0:0.7.5-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-websocket-extensions-0:0.1.5-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-websocket-extensions-0:0.1.5-2.el8sat.noarch" + }, + "product_reference": "rubygem-websocket-extensions-0:0.1.5-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-websocket-extensions-0:0.1.5-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-websocket-extensions-0:0.1.5-2.el8sat.src" + }, + "product_reference": "rubygem-websocket-extensions-0:0.1.5-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-will_paginate-0:3.3.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-will_paginate-0:3.3.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-will_paginate-0:3.3.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-will_paginate-0:3.3.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-will_paginate-0:3.3.1-1.el8sat.src" + }, + "product_reference": "rubygem-will_paginate-0:3.3.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-xmlrpc-0:0.3.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-xmlrpc-0:0.3.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-xmlrpc-0:0.3.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-xmlrpc-0:0.3.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-xmlrpc-0:0.3.2-1.el8sat.src" + }, + "product_reference": "rubygem-xmlrpc-0:0.3.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-zeitwerk-0:2.6.8-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-zeitwerk-0:2.6.8-1.el8sat.noarch" + }, + "product_reference": "rubygem-zeitwerk-0:2.6.8-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-zeitwerk-0:2.6.8-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-zeitwerk-0:2.6.8-1.el8sat.src" + }, + "product_reference": "rubygem-zeitwerk-0:2.6.8-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "saslwrapper-0:0.22-6.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:saslwrapper-0:0.22-6.el8sat.src" + }, + "product_reference": "saslwrapper-0:0.22-6.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "saslwrapper-0:0.22-6.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:saslwrapper-0:0.22-6.el8sat.x86_64" + }, + "product_reference": "saslwrapper-0:0.22-6.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64" + }, + "product_reference": "saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "saslwrapper-debugsource-0:0.22-6.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:saslwrapper-debugsource-0:0.22-6.el8sat.x86_64" + }, + "product_reference": "saslwrapper-debugsource-0:0.22-6.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.14.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:satellite-0:6.14.0-3.el8sat.noarch" + }, + "product_reference": "satellite-0:6.14.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.14.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:satellite-0:6.14.0-3.el8sat.src" + }, + "product_reference": "satellite-0:6.14.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.14.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:satellite-capsule-0:6.14.0-3.el8sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.14.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.14.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:satellite-cli-0:6.14.0-3.el8sat.noarch" + }, + "product_reference": "satellite-cli-0:6.14.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.14.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:satellite-common-0:6.14.0-3.el8sat.noarch" + }, + "product_reference": "satellite-common-0:6.14.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-installer-0:6.14.0.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:satellite-installer-0:6.14.0.5-1.el8sat.noarch" + }, + "product_reference": "satellite-installer-0:6.14.0.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-installer-0:6.14.0.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:satellite-installer-0:6.14.0.5-1.el8sat.src" + }, + "product_reference": "satellite-installer-0:6.14.0.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-maintain-0:0.0.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:satellite-maintain-0:0.0.2-1.el8sat.noarch" + }, + "product_reference": "satellite-maintain-0:0.0.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-maintain-0:0.0.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:satellite-maintain-0:0.0.2-1.el8sat.src" + }, + "product_reference": "satellite-maintain-0:0.0.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src" + }, + "product_reference": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64" + }, + "product_reference": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman_ygg_worker-0:0.2.2-1.el8sat.aarch64 as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:foreman_ygg_worker-0:0.2.2-1.el8sat.aarch64" + }, + "product_reference": "foreman_ygg_worker-0:0.2.2-1.el8sat.aarch64", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman_ygg_worker-0:0.2.2-1.el8sat.ppc64le as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:foreman_ygg_worker-0:0.2.2-1.el8sat.ppc64le" + }, + "product_reference": "foreman_ygg_worker-0:0.2.2-1.el8sat.ppc64le", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman_ygg_worker-0:0.2.2-1.el8sat.s390x as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:foreman_ygg_worker-0:0.2.2-1.el8sat.s390x" + }, + "product_reference": "foreman_ygg_worker-0:0.2.2-1.el8sat.s390x", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman_ygg_worker-0:0.2.2-1.el8sat.src as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:foreman_ygg_worker-0:0.2.2-1.el8sat.src" + }, + "product_reference": "foreman_ygg_worker-0:0.2.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman_ygg_worker-0:0.2.2-1.el8sat.x86_64 as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:foreman_ygg_worker-0:0.2.2-1.el8sat.x86_64" + }, + "product_reference": "foreman_ygg_worker-0:0.2.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.src as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:puppet-agent-0:7.26.0-3.el8sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64 as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:puppet-agent-0:7.26.0-3.el8sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-qpid-proton-0:0.37.0-2.el8.aarch64 as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:python3-qpid-proton-0:0.37.0-2.el8.aarch64" + }, + "product_reference": "python3-qpid-proton-0:0.37.0-2.el8.aarch64", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-qpid-proton-0:0.37.0-2.el8.ppc64le as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:python3-qpid-proton-0:0.37.0-2.el8.ppc64le" + }, + "product_reference": "python3-qpid-proton-0:0.37.0-2.el8.ppc64le", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-qpid-proton-0:0.37.0-2.el8.s390x as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:python3-qpid-proton-0:0.37.0-2.el8.s390x" + }, + "product_reference": "python3-qpid-proton-0:0.37.0-2.el8.s390x", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-qpid-proton-0:0.37.0-2.el8.x86_64 as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:python3-qpid-proton-0:0.37.0-2.el8.x86_64" + }, + "product_reference": "python3-qpid-proton-0:0.37.0-2.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-qpid-proton-debuginfo-0:0.37.0-2.el8.aarch64 as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:python3-qpid-proton-debuginfo-0:0.37.0-2.el8.aarch64" + }, + "product_reference": "python3-qpid-proton-debuginfo-0:0.37.0-2.el8.aarch64", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-qpid-proton-debuginfo-0:0.37.0-2.el8.ppc64le as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:python3-qpid-proton-debuginfo-0:0.37.0-2.el8.ppc64le" + }, + "product_reference": "python3-qpid-proton-debuginfo-0:0.37.0-2.el8.ppc64le", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-qpid-proton-debuginfo-0:0.37.0-2.el8.s390x as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:python3-qpid-proton-debuginfo-0:0.37.0-2.el8.s390x" + }, + "product_reference": "python3-qpid-proton-debuginfo-0:0.37.0-2.el8.s390x", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-qpid-proton-debuginfo-0:0.37.0-2.el8.x86_64 as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:python3-qpid-proton-debuginfo-0:0.37.0-2.el8.x86_64" + }, + "product_reference": "python3-qpid-proton-debuginfo-0:0.37.0-2.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-0:0.37.0-2.el8.src as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:qpid-proton-0:0.37.0-2.el8.src" + }, + "product_reference": "qpid-proton-0:0.37.0-2.el8.src", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-c-0:0.37.0-2.el8.aarch64 as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:qpid-proton-c-0:0.37.0-2.el8.aarch64" + }, + "product_reference": "qpid-proton-c-0:0.37.0-2.el8.aarch64", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-c-0:0.37.0-2.el8.ppc64le as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:qpid-proton-c-0:0.37.0-2.el8.ppc64le" + }, + "product_reference": "qpid-proton-c-0:0.37.0-2.el8.ppc64le", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-c-0:0.37.0-2.el8.s390x as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:qpid-proton-c-0:0.37.0-2.el8.s390x" + }, + "product_reference": "qpid-proton-c-0:0.37.0-2.el8.s390x", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-c-0:0.37.0-2.el8.x86_64 as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:qpid-proton-c-0:0.37.0-2.el8.x86_64" + }, + "product_reference": "qpid-proton-c-0:0.37.0-2.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-c-debuginfo-0:0.37.0-2.el8.aarch64 as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:qpid-proton-c-debuginfo-0:0.37.0-2.el8.aarch64" + }, + "product_reference": "qpid-proton-c-debuginfo-0:0.37.0-2.el8.aarch64", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-c-debuginfo-0:0.37.0-2.el8.ppc64le as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:qpid-proton-c-debuginfo-0:0.37.0-2.el8.ppc64le" + }, + "product_reference": "qpid-proton-c-debuginfo-0:0.37.0-2.el8.ppc64le", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-c-debuginfo-0:0.37.0-2.el8.s390x as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:qpid-proton-c-debuginfo-0:0.37.0-2.el8.s390x" + }, + "product_reference": "qpid-proton-c-debuginfo-0:0.37.0-2.el8.s390x", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-c-debuginfo-0:0.37.0-2.el8.x86_64 as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:qpid-proton-c-debuginfo-0:0.37.0-2.el8.x86_64" + }, + "product_reference": "qpid-proton-c-debuginfo-0:0.37.0-2.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el8.aarch64 as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:qpid-proton-cpp-debuginfo-0:0.37.0-2.el8.aarch64" + }, + "product_reference": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el8.aarch64", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el8.ppc64le as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:qpid-proton-cpp-debuginfo-0:0.37.0-2.el8.ppc64le" + }, + "product_reference": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el8.ppc64le", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el8.s390x as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:qpid-proton-cpp-debuginfo-0:0.37.0-2.el8.s390x" + }, + "product_reference": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el8.s390x", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el8.x86_64 as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:qpid-proton-cpp-debuginfo-0:0.37.0-2.el8.x86_64" + }, + "product_reference": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-debuginfo-0:0.37.0-2.el8.aarch64 as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:qpid-proton-debuginfo-0:0.37.0-2.el8.aarch64" + }, + "product_reference": "qpid-proton-debuginfo-0:0.37.0-2.el8.aarch64", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-debuginfo-0:0.37.0-2.el8.ppc64le as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:qpid-proton-debuginfo-0:0.37.0-2.el8.ppc64le" + }, + "product_reference": "qpid-proton-debuginfo-0:0.37.0-2.el8.ppc64le", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-debuginfo-0:0.37.0-2.el8.s390x as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:qpid-proton-debuginfo-0:0.37.0-2.el8.s390x" + }, + "product_reference": "qpid-proton-debuginfo-0:0.37.0-2.el8.s390x", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-debuginfo-0:0.37.0-2.el8.x86_64 as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:qpid-proton-debuginfo-0:0.37.0-2.el8.x86_64" + }, + "product_reference": "qpid-proton-debuginfo-0:0.37.0-2.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-debugsource-0:0.37.0-2.el8.aarch64 as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:qpid-proton-debugsource-0:0.37.0-2.el8.aarch64" + }, + "product_reference": "qpid-proton-debugsource-0:0.37.0-2.el8.aarch64", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-debugsource-0:0.37.0-2.el8.ppc64le as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:qpid-proton-debugsource-0:0.37.0-2.el8.ppc64le" + }, + "product_reference": "qpid-proton-debugsource-0:0.37.0-2.el8.ppc64le", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-debugsource-0:0.37.0-2.el8.s390x as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:qpid-proton-debugsource-0:0.37.0-2.el8.s390x" + }, + "product_reference": "qpid-proton-debugsource-0:0.37.0-2.el8.s390x", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-debugsource-0:0.37.0-2.el8.x86_64 as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:qpid-proton-debugsource-0:0.37.0-2.el8.x86_64" + }, + "product_reference": "qpid-proton-debugsource-0:0.37.0-2.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el8.aarch64 as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:rubygem-qpid_proton-debuginfo-0:0.37.0-2.el8.aarch64" + }, + "product_reference": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el8.aarch64", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el8.ppc64le as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:rubygem-qpid_proton-debuginfo-0:0.37.0-2.el8.ppc64le" + }, + "product_reference": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el8.ppc64le", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el8.s390x as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:rubygem-qpid_proton-debuginfo-0:0.37.0-2.el8.s390x" + }, + "product_reference": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el8.s390x", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el8.x86_64 as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:rubygem-qpid_proton-debuginfo-0:0.37.0-2.el8.x86_64" + }, + "product_reference": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-0:0.2.3-1.el8sat.aarch64 as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:yggdrasil-0:0.2.3-1.el8sat.aarch64" + }, + "product_reference": "yggdrasil-0:0.2.3-1.el8sat.aarch64", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-0:0.2.3-1.el8sat.ppc64le as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:yggdrasil-0:0.2.3-1.el8sat.ppc64le" + }, + "product_reference": "yggdrasil-0:0.2.3-1.el8sat.ppc64le", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-0:0.2.3-1.el8sat.s390x as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:yggdrasil-0:0.2.3-1.el8sat.s390x" + }, + "product_reference": "yggdrasil-0:0.2.3-1.el8sat.s390x", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-0:0.2.3-1.el8sat.src as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:yggdrasil-0:0.2.3-1.el8sat.src" + }, + "product_reference": "yggdrasil-0:0.2.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-0:0.2.3-1.el8sat.x86_64 as a component of Satellite Client 6 for RHEL 8", + "product_id": "8Base-satellite-client-6:yggdrasil-0:0.2.3-1.el8sat.x86_64" + }, + "product_reference": "yggdrasil-0:0.2.3-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el9ap.aarch64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4-Developer-1.1:receptor-0:1.4.2-1.el9ap.aarch64" + }, + "product_reference": "receptor-0:1.4.2-1.el9ap.aarch64", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4-Developer-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el9ap.ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4-Developer-1.1:receptor-0:1.4.2-1.el9ap.ppc64le" + }, + "product_reference": "receptor-0:1.4.2-1.el9ap.ppc64le", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4-Developer-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el9ap.s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4-Developer-1.1:receptor-0:1.4.2-1.el9ap.s390x" + }, + "product_reference": "receptor-0:1.4.2-1.el9ap.s390x", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4-Developer-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el9ap.src as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4-Developer-1.1:receptor-0:1.4.2-1.el9ap.src" + }, + "product_reference": "receptor-0:1.4.2-1.el9ap.src", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4-Developer-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el9ap.x86_64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4-Developer-1.1:receptor-0:1.4.2-1.el9ap.x86_64" + }, + "product_reference": "receptor-0:1.4.2-1.el9ap.x86_64", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4-Developer-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptorctl-0:1.4.2-1.el9ap.noarch as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4-Developer-1.1:receptorctl-0:1.4.2-1.el9ap.noarch" + }, + "product_reference": "receptorctl-0:1.4.2-1.el9ap.noarch", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4-Developer-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el9ap.aarch64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4-Inside-1.2:receptor-0:1.4.2-1.el9ap.aarch64" + }, + "product_reference": "receptor-0:1.4.2-1.el9ap.aarch64", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4-Inside-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el9ap.ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4-Inside-1.2:receptor-0:1.4.2-1.el9ap.ppc64le" + }, + "product_reference": "receptor-0:1.4.2-1.el9ap.ppc64le", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4-Inside-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el9ap.s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4-Inside-1.2:receptor-0:1.4.2-1.el9ap.s390x" + }, + "product_reference": "receptor-0:1.4.2-1.el9ap.s390x", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4-Inside-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el9ap.src as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4-Inside-1.2:receptor-0:1.4.2-1.el9ap.src" + }, + "product_reference": "receptor-0:1.4.2-1.el9ap.src", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4-Inside-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el9ap.x86_64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4-Inside-1.2:receptor-0:1.4.2-1.el9ap.x86_64" + }, + "product_reference": "receptor-0:1.4.2-1.el9ap.x86_64", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4-Inside-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptorctl-0:1.4.2-1.el9ap.noarch as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4-Inside-1.2:receptorctl-0:1.4.2-1.el9ap.noarch" + }, + "product_reference": "receptorctl-0:1.4.2-1.el9ap.noarch", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4-Inside-1.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ansible-builder-rhel9@sha256:20092308c17687aa6059400af8d1772b8fe85207db9f9a5b6d259908e0b63aab_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ansible-builder-rhel9@sha256:20092308c17687aa6059400af8d1772b8fe85207db9f9a5b6d259908e0b63aab_arm64" + }, + "product_reference": "ansible-automation-platform-24/ansible-builder-rhel9@sha256:20092308c17687aa6059400af8d1772b8fe85207db9f9a5b6d259908e0b63aab_arm64", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ansible-builder-rhel9@sha256:45ff186bff94f30a34c2fe59bc342d10bf47071567b9d09d1fa61bf08e72f1c4_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ansible-builder-rhel9@sha256:45ff186bff94f30a34c2fe59bc342d10bf47071567b9d09d1fa61bf08e72f1c4_amd64" + }, + "product_reference": "ansible-automation-platform-24/ansible-builder-rhel9@sha256:45ff186bff94f30a34c2fe59bc342d10bf47071567b9d09d1fa61bf08e72f1c4_amd64", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ansible-builder-rhel9@sha256:a4a88494691f2fc7689d16a4da97a857e8b795e41ecf5fe09b09ebfc729511ce_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ansible-builder-rhel9@sha256:a4a88494691f2fc7689d16a4da97a857e8b795e41ecf5fe09b09ebfc729511ce_s390x" + }, + "product_reference": "ansible-automation-platform-24/ansible-builder-rhel9@sha256:a4a88494691f2fc7689d16a4da97a857e8b795e41ecf5fe09b09ebfc729511ce_s390x", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ansible-builder-rhel9@sha256:eb2f2e5796823643b8b52b98976a04089cdc82ce32f3e4a348fc25dd12eff275_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ansible-builder-rhel9@sha256:eb2f2e5796823643b8b52b98976a04089cdc82ce32f3e4a348fc25dd12eff275_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/ansible-builder-rhel9@sha256:eb2f2e5796823643b8b52b98976a04089cdc82ce32f3e4a348fc25dd12eff275_ppc64le", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ansible-python-base-rhel9@sha256:7ecc021d626a20acc20f73b28005c16a8d20c7640ec51dffdaff236440702172_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ansible-python-base-rhel9@sha256:7ecc021d626a20acc20f73b28005c16a8d20c7640ec51dffdaff236440702172_amd64" + }, + "product_reference": "ansible-automation-platform-24/ansible-python-base-rhel9@sha256:7ecc021d626a20acc20f73b28005c16a8d20c7640ec51dffdaff236440702172_amd64", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ansible-python-base-rhel9@sha256:8c34db5cc4c68c80db22a835c095d60e3988a3e6d1c82fb91cc8558b43a47b33_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ansible-python-base-rhel9@sha256:8c34db5cc4c68c80db22a835c095d60e3988a3e6d1c82fb91cc8558b43a47b33_s390x" + }, + "product_reference": "ansible-automation-platform-24/ansible-python-base-rhel9@sha256:8c34db5cc4c68c80db22a835c095d60e3988a3e6d1c82fb91cc8558b43a47b33_s390x", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ansible-python-base-rhel9@sha256:91f0cc9dd9261b7bff0484d3db8e499912fa1781aa71ad24c77d0809cccb03f4_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ansible-python-base-rhel9@sha256:91f0cc9dd9261b7bff0484d3db8e499912fa1781aa71ad24c77d0809cccb03f4_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/ansible-python-base-rhel9@sha256:91f0cc9dd9261b7bff0484d3db8e499912fa1781aa71ad24c77d0809cccb03f4_ppc64le", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ansible-python-base-rhel9@sha256:cd96a0ece925ed1443c0797bc3baf992ed7ae087f5977df8728a4aab8940516f_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ansible-python-base-rhel9@sha256:cd96a0ece925ed1443c0797bc3baf992ed7ae087f5977df8728a4aab8940516f_arm64" + }, + "product_reference": "ansible-automation-platform-24/ansible-python-base-rhel9@sha256:cd96a0ece925ed1443c0797bc3baf992ed7ae087f5977df8728a4aab8940516f_arm64", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ansible-python-toolkit-rhel9@sha256:035f8ce6c6f6ab88366d7d42ba587d75b60236433e01ce0349a40554ff0e1b05_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ansible-python-toolkit-rhel9@sha256:035f8ce6c6f6ab88366d7d42ba587d75b60236433e01ce0349a40554ff0e1b05_arm64" + }, + "product_reference": "ansible-automation-platform-24/ansible-python-toolkit-rhel9@sha256:035f8ce6c6f6ab88366d7d42ba587d75b60236433e01ce0349a40554ff0e1b05_arm64", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ansible-python-toolkit-rhel9@sha256:11934bcc8a713da353d254164b6914b5769326534a2298f0ccb8642813da5f9a_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ansible-python-toolkit-rhel9@sha256:11934bcc8a713da353d254164b6914b5769326534a2298f0ccb8642813da5f9a_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/ansible-python-toolkit-rhel9@sha256:11934bcc8a713da353d254164b6914b5769326534a2298f0ccb8642813da5f9a_ppc64le", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ansible-python-toolkit-rhel9@sha256:b46fed769c86134a110f442dc56b0c8bfd0d469eb39649916db099f611ab3347_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ansible-python-toolkit-rhel9@sha256:b46fed769c86134a110f442dc56b0c8bfd0d469eb39649916db099f611ab3347_s390x" + }, + "product_reference": "ansible-automation-platform-24/ansible-python-toolkit-rhel9@sha256:b46fed769c86134a110f442dc56b0c8bfd0d469eb39649916db099f611ab3347_s390x", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ansible-python-toolkit-rhel9@sha256:bc376892f777fade4e725e140ae195ee94bd2f3c8e97b86a2705cbe23fa1875e_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ansible-python-toolkit-rhel9@sha256:bc376892f777fade4e725e140ae195ee94bd2f3c8e97b86a2705cbe23fa1875e_amd64" + }, + "product_reference": "ansible-automation-platform-24/ansible-python-toolkit-rhel9@sha256:bc376892f777fade4e725e140ae195ee94bd2f3c8e97b86a2705cbe23fa1875e_amd64", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/de-minimal-rhel9@sha256:7660d7f051c9ac00bf49f609bf1e24b8020d2cb8856b40cbecc13de54d55fed8_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/de-minimal-rhel9@sha256:7660d7f051c9ac00bf49f609bf1e24b8020d2cb8856b40cbecc13de54d55fed8_s390x" + }, + "product_reference": "ansible-automation-platform-24/de-minimal-rhel9@sha256:7660d7f051c9ac00bf49f609bf1e24b8020d2cb8856b40cbecc13de54d55fed8_s390x", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/de-minimal-rhel9@sha256:9b13ab56c30c5c77a21e00d2dfbad44f63c6ff7ac5acb6b8ba416f7fb2a0fc51_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/de-minimal-rhel9@sha256:9b13ab56c30c5c77a21e00d2dfbad44f63c6ff7ac5acb6b8ba416f7fb2a0fc51_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/de-minimal-rhel9@sha256:9b13ab56c30c5c77a21e00d2dfbad44f63c6ff7ac5acb6b8ba416f7fb2a0fc51_ppc64le", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/de-minimal-rhel9@sha256:a562c54aa4ba7538aa2b1beab666cab689240f664f8c17bfd769560efbe3b626_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/de-minimal-rhel9@sha256:a562c54aa4ba7538aa2b1beab666cab689240f664f8c17bfd769560efbe3b626_amd64" + }, + "product_reference": "ansible-automation-platform-24/de-minimal-rhel9@sha256:a562c54aa4ba7538aa2b1beab666cab689240f664f8c17bfd769560efbe3b626_amd64", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/de-minimal-rhel9@sha256:f28e22e5da55ea626890aceb7ae4c391e192055a60a1beba9a98ac70ee1353ce_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/de-minimal-rhel9@sha256:f28e22e5da55ea626890aceb7ae4c391e192055a60a1beba9a98ac70ee1353ce_arm64" + }, + "product_reference": "ansible-automation-platform-24/de-minimal-rhel9@sha256:f28e22e5da55ea626890aceb7ae4c391e192055a60a1beba9a98ac70ee1353ce_arm64", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/de-supported-rhel9@sha256:5bd5d0da12cc63b3221f508c203b0cde5b4628439d42c1a0303a31c217506936_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/de-supported-rhel9@sha256:5bd5d0da12cc63b3221f508c203b0cde5b4628439d42c1a0303a31c217506936_s390x" + }, + "product_reference": "ansible-automation-platform-24/de-supported-rhel9@sha256:5bd5d0da12cc63b3221f508c203b0cde5b4628439d42c1a0303a31c217506936_s390x", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/de-supported-rhel9@sha256:da3031d8ff12b8df290c6da7c5451d0a797c24c0b2b0ce5cce943633d2352ee7_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/de-supported-rhel9@sha256:da3031d8ff12b8df290c6da7c5451d0a797c24c0b2b0ce5cce943633d2352ee7_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/de-supported-rhel9@sha256:da3031d8ff12b8df290c6da7c5451d0a797c24c0b2b0ce5cce943633d2352ee7_ppc64le", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/de-supported-rhel9@sha256:de1067b9be05a3acb9bb61458fb89e71acf01cad7a9439a638972bc0615a4d5a_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/de-supported-rhel9@sha256:de1067b9be05a3acb9bb61458fb89e71acf01cad7a9439a638972bc0615a4d5a_arm64" + }, + "product_reference": "ansible-automation-platform-24/de-supported-rhel9@sha256:de1067b9be05a3acb9bb61458fb89e71acf01cad7a9439a638972bc0615a4d5a_arm64", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/de-supported-rhel9@sha256:f4fe61723e459bf8e8b8721cb463a89d77827f87ec835826b0866c617cb19ea7_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/de-supported-rhel9@sha256:f4fe61723e459bf8e8b8721cb463a89d77827f87ec835826b0866c617cb19ea7_amd64" + }, + "product_reference": "ansible-automation-platform-24/de-supported-rhel9@sha256:f4fe61723e459bf8e8b8721cb463a89d77827f87ec835826b0866c617cb19ea7_amd64", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ee-minimal-rhel9@sha256:49d5862f8abc4f05c837b26610604d32c07001af0a93993458b21e8f9adf534f_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ee-minimal-rhel9@sha256:49d5862f8abc4f05c837b26610604d32c07001af0a93993458b21e8f9adf534f_amd64" + }, + "product_reference": "ansible-automation-platform-24/ee-minimal-rhel9@sha256:49d5862f8abc4f05c837b26610604d32c07001af0a93993458b21e8f9adf534f_amd64", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ee-minimal-rhel9@sha256:9bf9ff9e04832f353a8904f7f7826417abfe3891a927939a1cdfcfde30d1d10c_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ee-minimal-rhel9@sha256:9bf9ff9e04832f353a8904f7f7826417abfe3891a927939a1cdfcfde30d1d10c_arm64" + }, + "product_reference": "ansible-automation-platform-24/ee-minimal-rhel9@sha256:9bf9ff9e04832f353a8904f7f7826417abfe3891a927939a1cdfcfde30d1d10c_arm64", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ee-minimal-rhel9@sha256:c35b05b413bc2090089219d476f0a1e2c56250fc09e190583e167bfcdce5bf35_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ee-minimal-rhel9@sha256:c35b05b413bc2090089219d476f0a1e2c56250fc09e190583e167bfcdce5bf35_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/ee-minimal-rhel9@sha256:c35b05b413bc2090089219d476f0a1e2c56250fc09e190583e167bfcdce5bf35_ppc64le", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ee-minimal-rhel9@sha256:d21ac96577006183a5cc592fb094cb2cf0f25aa687597d68984965ebcb1cb9a5_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ee-minimal-rhel9@sha256:d21ac96577006183a5cc592fb094cb2cf0f25aa687597d68984965ebcb1cb9a5_s390x" + }, + "product_reference": "ansible-automation-platform-24/ee-minimal-rhel9@sha256:d21ac96577006183a5cc592fb094cb2cf0f25aa687597d68984965ebcb1cb9a5_s390x", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ee-supported-rhel9@sha256:162dd2718a9d9fdf4e3558129a0a77094a7fd9731ab826c664b69ed955853ddd_ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ee-supported-rhel9@sha256:162dd2718a9d9fdf4e3558129a0a77094a7fd9731ab826c664b69ed955853ddd_ppc64le" + }, + "product_reference": "ansible-automation-platform-24/ee-supported-rhel9@sha256:162dd2718a9d9fdf4e3558129a0a77094a7fd9731ab826c664b69ed955853ddd_ppc64le", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ee-supported-rhel9@sha256:23ed9a9439c4651417dd96d62776ca40582b54fc5da2955a72b047608c0d6c42_amd64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ee-supported-rhel9@sha256:23ed9a9439c4651417dd96d62776ca40582b54fc5da2955a72b047608c0d6c42_amd64" + }, + "product_reference": "ansible-automation-platform-24/ee-supported-rhel9@sha256:23ed9a9439c4651417dd96d62776ca40582b54fc5da2955a72b047608c0d6c42_amd64", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ee-supported-rhel9@sha256:32d97ab01d3f3df3212c3e949d2630709ae05e4d0c56aafd6a720827234cf3e9_arm64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ee-supported-rhel9@sha256:32d97ab01d3f3df3212c3e949d2630709ae05e4d0c56aafd6a720827234cf3e9_arm64" + }, + "product_reference": "ansible-automation-platform-24/ee-supported-rhel9@sha256:32d97ab01d3f3df3212c3e949d2630709ae05e4d0c56aafd6a720827234cf3e9_arm64", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-24/ee-supported-rhel9@sha256:e49a3d2b7456a55b603e78b8ddec27665b6a957f5ac479aad50123f3f9bb1d42_s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:ansible-automation-platform-24/ee-supported-rhel9@sha256:e49a3d2b7456a55b603e78b8ddec27665b6a957f5ac479aad50123f3f9bb1d42_s390x" + }, + "product_reference": "ansible-automation-platform-24/ee-supported-rhel9@sha256:e49a3d2b7456a55b603e78b8ddec27665b6a957f5ac479aad50123f3f9bb1d42_s390x", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el9ap.aarch64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:receptor-0:1.4.2-1.el9ap.aarch64" + }, + "product_reference": "receptor-0:1.4.2-1.el9ap.aarch64", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el9ap.ppc64le as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:receptor-0:1.4.2-1.el9ap.ppc64le" + }, + "product_reference": "receptor-0:1.4.2-1.el9ap.ppc64le", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el9ap.s390x as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:receptor-0:1.4.2-1.el9ap.s390x" + }, + "product_reference": "receptor-0:1.4.2-1.el9ap.s390x", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el9ap.src as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:receptor-0:1.4.2-1.el9ap.src" + }, + "product_reference": "receptor-0:1.4.2-1.el9ap.src", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptor-0:1.4.2-1.el9ap.x86_64 as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:receptor-0:1.4.2-1.el9ap.x86_64" + }, + "product_reference": "receptor-0:1.4.2-1.el9ap.x86_64", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "receptorctl-0:1.4.2-1.el9ap.noarch as a component of Red Hat Ansible Automation Platform 2.4 for RHEL 9", + "product_id": "9Base-Ansible-Automation-Platform-2.4:receptorctl-0:1.4.2-1.el9ap.noarch" + }, + "product_reference": "receptorctl-0:1.4.2-1.el9ap.noarch", + "relates_to_product_reference": "9Base-Ansible-Automation-Platform-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cert-manager/cert-manager-operator-bundle@sha256:140dafad28aa23ffccfcd87ff0674aa9fcbd904194728a9ee482bfa2d8d976aa_amd64 as a component of Cert Manager support for Red Hat OpenShift release", + "product_id": "9Base-CERT-MANAGER-1.12:cert-manager/cert-manager-operator-bundle@sha256:140dafad28aa23ffccfcd87ff0674aa9fcbd904194728a9ee482bfa2d8d976aa_amd64" + }, + "product_reference": "cert-manager/cert-manager-operator-bundle@sha256:140dafad28aa23ffccfcd87ff0674aa9fcbd904194728a9ee482bfa2d8d976aa_amd64", + "relates_to_product_reference": "9Base-CERT-MANAGER-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cert-manager/cert-manager-operator-rhel9@sha256:7d3029dbcbcbec5f6b257afc8866c0b87bc2c694dc7f3fa7ad9e88e2b61cb3d0_amd64 as a component of Cert Manager support for Red Hat OpenShift release", + "product_id": "9Base-CERT-MANAGER-1.12:cert-manager/cert-manager-operator-rhel9@sha256:7d3029dbcbcbec5f6b257afc8866c0b87bc2c694dc7f3fa7ad9e88e2b61cb3d0_amd64" + }, + "product_reference": "cert-manager/cert-manager-operator-rhel9@sha256:7d3029dbcbcbec5f6b257afc8866c0b87bc2c694dc7f3fa7ad9e88e2b61cb3d0_amd64", + "relates_to_product_reference": "9Base-CERT-MANAGER-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cert-manager/jetstack-cert-manager-acmesolver-rhel9@sha256:4db42d2b0403b2ae116c52cfa95bc54d621200072ad2c584a38a8e0e9b6e0a71_amd64 as a component of Cert Manager support for Red Hat OpenShift release", + "product_id": "9Base-CERT-MANAGER-1.12:cert-manager/jetstack-cert-manager-acmesolver-rhel9@sha256:4db42d2b0403b2ae116c52cfa95bc54d621200072ad2c584a38a8e0e9b6e0a71_amd64" + }, + "product_reference": "cert-manager/jetstack-cert-manager-acmesolver-rhel9@sha256:4db42d2b0403b2ae116c52cfa95bc54d621200072ad2c584a38a8e0e9b6e0a71_amd64", + "relates_to_product_reference": "9Base-CERT-MANAGER-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cert-manager/jetstack-cert-manager-rhel9@sha256:1e3f9343999d6ed86d052688623de31fa74eee6f0b1a747dac32b661ec714b00_amd64 as a component of Cert Manager support for Red Hat OpenShift release", + "product_id": "9Base-CERT-MANAGER-1.12:cert-manager/jetstack-cert-manager-rhel9@sha256:1e3f9343999d6ed86d052688623de31fa74eee6f0b1a747dac32b661ec714b00_amd64" + }, + "product_reference": "cert-manager/jetstack-cert-manager-rhel9@sha256:1e3f9343999d6ed86d052688623de31fa74eee6f0b1a747dac32b661ec714b00_amd64", + "relates_to_product_reference": "9Base-CERT-MANAGER-1.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/bridge-marker-rhel9@sha256:043c933ecc64a18f18a23862b959e60988d7223f1899d8a77c06e75352ce5a00_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/bridge-marker-rhel9@sha256:043c933ecc64a18f18a23862b959e60988d7223f1899d8a77c06e75352ce5a00_arm64" + }, + "product_reference": "container-native-virtualization/bridge-marker-rhel9@sha256:043c933ecc64a18f18a23862b959e60988d7223f1899d8a77c06e75352ce5a00_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/bridge-marker-rhel9@sha256:dde9d6d3bd598203276151ca6f09a8d94bc8d68160b8eeb057d528612ee387de_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/bridge-marker-rhel9@sha256:dde9d6d3bd598203276151ca6f09a8d94bc8d68160b8eeb057d528612ee387de_amd64" + }, + "product_reference": "container-native-virtualization/bridge-marker-rhel9@sha256:dde9d6d3bd598203276151ca6f09a8d94bc8d68160b8eeb057d528612ee387de_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/cluster-network-addons-operator-rhel9@sha256:0723b4c1c3737c07567392abde70c8d0ff41edc628859ab78b4f1db36ce9e908_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/cluster-network-addons-operator-rhel9@sha256:0723b4c1c3737c07567392abde70c8d0ff41edc628859ab78b4f1db36ce9e908_arm64" + }, + "product_reference": "container-native-virtualization/cluster-network-addons-operator-rhel9@sha256:0723b4c1c3737c07567392abde70c8d0ff41edc628859ab78b4f1db36ce9e908_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/cluster-network-addons-operator-rhel9@sha256:79ffb1e1fd3eb66bd8501f73376cd86e031962151fb33b1f5c99b1768558a5bf_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/cluster-network-addons-operator-rhel9@sha256:79ffb1e1fd3eb66bd8501f73376cd86e031962151fb33b1f5c99b1768558a5bf_amd64" + }, + "product_reference": "container-native-virtualization/cluster-network-addons-operator-rhel9@sha256:79ffb1e1fd3eb66bd8501f73376cd86e031962151fb33b1f5c99b1768558a5bf_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/cnv-containernetworking-plugins-rhel9@sha256:0259bad586a2641e8f805cb3b011fd13ac2877afa1086be3d5f58eec5b074de0_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/cnv-containernetworking-plugins-rhel9@sha256:0259bad586a2641e8f805cb3b011fd13ac2877afa1086be3d5f58eec5b074de0_amd64" + }, + "product_reference": "container-native-virtualization/cnv-containernetworking-plugins-rhel9@sha256:0259bad586a2641e8f805cb3b011fd13ac2877afa1086be3d5f58eec5b074de0_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/cnv-containernetworking-plugins-rhel9@sha256:fae3d9f5dfd142a132fd94f80e8814207aa497459d8942037c383202852ceddd_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/cnv-containernetworking-plugins-rhel9@sha256:fae3d9f5dfd142a132fd94f80e8814207aa497459d8942037c383202852ceddd_arm64" + }, + "product_reference": "container-native-virtualization/cnv-containernetworking-plugins-rhel9@sha256:fae3d9f5dfd142a132fd94f80e8814207aa497459d8942037c383202852ceddd_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/cnv-must-gather-rhel9@sha256:1aea0afaa1678d22f8c60ffaec52a2f126dfacd1d45a1698fb22239926dc43d9_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/cnv-must-gather-rhel9@sha256:1aea0afaa1678d22f8c60ffaec52a2f126dfacd1d45a1698fb22239926dc43d9_arm64" + }, + "product_reference": "container-native-virtualization/cnv-must-gather-rhel9@sha256:1aea0afaa1678d22f8c60ffaec52a2f126dfacd1d45a1698fb22239926dc43d9_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/cnv-must-gather-rhel9@sha256:bc0ed2d18c556df388a3a650d365e68f24074219683a81c12b1897c1e8a756ef_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/cnv-must-gather-rhel9@sha256:bc0ed2d18c556df388a3a650d365e68f24074219683a81c12b1897c1e8a756ef_amd64" + }, + "product_reference": "container-native-virtualization/cnv-must-gather-rhel9@sha256:bc0ed2d18c556df388a3a650d365e68f24074219683a81c12b1897c1e8a756ef_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hco-bundle-registry-rhel9@sha256:5c7cf709c5af87312dffbd3ad438fec546002515df7fb27e5628e387c4062da5_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/hco-bundle-registry-rhel9@sha256:5c7cf709c5af87312dffbd3ad438fec546002515df7fb27e5628e387c4062da5_arm64" + }, + "product_reference": "container-native-virtualization/hco-bundle-registry-rhel9@sha256:5c7cf709c5af87312dffbd3ad438fec546002515df7fb27e5628e387c4062da5_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hco-bundle-registry-rhel9@sha256:7314d53f44b9058a2a41620ea57c8eafef5161218d412b8ad7353fb570b5ae64_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/hco-bundle-registry-rhel9@sha256:7314d53f44b9058a2a41620ea57c8eafef5161218d412b8ad7353fb570b5ae64_amd64" + }, + "product_reference": "container-native-virtualization/hco-bundle-registry-rhel9@sha256:7314d53f44b9058a2a41620ea57c8eafef5161218d412b8ad7353fb570b5ae64_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hostpath-csi-driver-rhel9@sha256:30d2d9e998ec622648c848106328ea3a45dc17d51b058f3e222f5199232a1acc_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/hostpath-csi-driver-rhel9@sha256:30d2d9e998ec622648c848106328ea3a45dc17d51b058f3e222f5199232a1acc_amd64" + }, + "product_reference": "container-native-virtualization/hostpath-csi-driver-rhel9@sha256:30d2d9e998ec622648c848106328ea3a45dc17d51b058f3e222f5199232a1acc_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hostpath-csi-driver-rhel9@sha256:8a46da3aa2086587a1d0ff59b62724feac8f1923bede587c5d53ae60ca4256ad_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/hostpath-csi-driver-rhel9@sha256:8a46da3aa2086587a1d0ff59b62724feac8f1923bede587c5d53ae60ca4256ad_arm64" + }, + "product_reference": "container-native-virtualization/hostpath-csi-driver-rhel9@sha256:8a46da3aa2086587a1d0ff59b62724feac8f1923bede587c5d53ae60ca4256ad_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hostpath-provisioner-operator-rhel9@sha256:280ed417e25231cefbea15d35a456e540329542d59dee59ad1824228bd35e089_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/hostpath-provisioner-operator-rhel9@sha256:280ed417e25231cefbea15d35a456e540329542d59dee59ad1824228bd35e089_amd64" + }, + "product_reference": "container-native-virtualization/hostpath-provisioner-operator-rhel9@sha256:280ed417e25231cefbea15d35a456e540329542d59dee59ad1824228bd35e089_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hostpath-provisioner-operator-rhel9@sha256:f6ba777473561391d2b0a098ae16cef0552ee7722f9a6fd527b9b06aa3677474_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/hostpath-provisioner-operator-rhel9@sha256:f6ba777473561391d2b0a098ae16cef0552ee7722f9a6fd527b9b06aa3677474_arm64" + }, + "product_reference": "container-native-virtualization/hostpath-provisioner-operator-rhel9@sha256:f6ba777473561391d2b0a098ae16cef0552ee7722f9a6fd527b9b06aa3677474_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hostpath-provisioner-rhel9@sha256:45a08c2561bc304bf62cee9043961c578e4e3c495bec3ad2a57f9e1ac2a62316_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/hostpath-provisioner-rhel9@sha256:45a08c2561bc304bf62cee9043961c578e4e3c495bec3ad2a57f9e1ac2a62316_arm64" + }, + "product_reference": "container-native-virtualization/hostpath-provisioner-rhel9@sha256:45a08c2561bc304bf62cee9043961c578e4e3c495bec3ad2a57f9e1ac2a62316_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hostpath-provisioner-rhel9@sha256:c3059286198d3a75dd0cab0a8c751f4dde5b0f5e52cc38fe5b258e9324477c62_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/hostpath-provisioner-rhel9@sha256:c3059286198d3a75dd0cab0a8c751f4dde5b0f5e52cc38fe5b258e9324477c62_amd64" + }, + "product_reference": "container-native-virtualization/hostpath-provisioner-rhel9@sha256:c3059286198d3a75dd0cab0a8c751f4dde5b0f5e52cc38fe5b258e9324477c62_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hyperconverged-cluster-operator-rhel9@sha256:80f623b7d005f2ed6ccf81af9b032a13fee86c7f4a4f564e932073bca0436bfe_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/hyperconverged-cluster-operator-rhel9@sha256:80f623b7d005f2ed6ccf81af9b032a13fee86c7f4a4f564e932073bca0436bfe_amd64" + }, + "product_reference": "container-native-virtualization/hyperconverged-cluster-operator-rhel9@sha256:80f623b7d005f2ed6ccf81af9b032a13fee86c7f4a4f564e932073bca0436bfe_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hyperconverged-cluster-operator-rhel9@sha256:ebcd9f0843d8d759b3e358120c4aec90a7238046d7db0c3b6014152182b14eb5_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/hyperconverged-cluster-operator-rhel9@sha256:ebcd9f0843d8d759b3e358120c4aec90a7238046d7db0c3b6014152182b14eb5_arm64" + }, + "product_reference": "container-native-virtualization/hyperconverged-cluster-operator-rhel9@sha256:ebcd9f0843d8d759b3e358120c4aec90a7238046d7db0c3b6014152182b14eb5_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hyperconverged-cluster-webhook-rhel9@sha256:2832fbf13013467ea73c63e5e6ad7ffe94dbbeb052ec8727f6935d41b2c4d25c_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/hyperconverged-cluster-webhook-rhel9@sha256:2832fbf13013467ea73c63e5e6ad7ffe94dbbeb052ec8727f6935d41b2c4d25c_amd64" + }, + "product_reference": "container-native-virtualization/hyperconverged-cluster-webhook-rhel9@sha256:2832fbf13013467ea73c63e5e6ad7ffe94dbbeb052ec8727f6935d41b2c4d25c_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hyperconverged-cluster-webhook-rhel9@sha256:a549dfc115062d3f9924c4d8527d80de1281d50179d157e6b42699a0535e8449_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/hyperconverged-cluster-webhook-rhel9@sha256:a549dfc115062d3f9924c4d8527d80de1281d50179d157e6b42699a0535e8449_arm64" + }, + "product_reference": "container-native-virtualization/hyperconverged-cluster-webhook-rhel9@sha256:a549dfc115062d3f9924c4d8527d80de1281d50179d157e6b42699a0535e8449_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubemacpool-rhel9@sha256:155d511f94a84c412a78f8b7a90f677146996bc5b3c00a0bff12b3567c63302a_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubemacpool-rhel9@sha256:155d511f94a84c412a78f8b7a90f677146996bc5b3c00a0bff12b3567c63302a_arm64" + }, + "product_reference": "container-native-virtualization/kubemacpool-rhel9@sha256:155d511f94a84c412a78f8b7a90f677146996bc5b3c00a0bff12b3567c63302a_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubemacpool-rhel9@sha256:4d91d2b48e984b99f03ad19a25cb9b1c4eb12670fda6848a303009de65e4932e_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubemacpool-rhel9@sha256:4d91d2b48e984b99f03ad19a25cb9b1c4eb12670fda6848a303009de65e4932e_amd64" + }, + "product_reference": "container-native-virtualization/kubemacpool-rhel9@sha256:4d91d2b48e984b99f03ad19a25cb9b1c4eb12670fda6848a303009de65e4932e_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubesecondarydns-rhel9@sha256:4b2ed5bc8f226433a3c6e2dd926a74085b4ed60ed4f0bd505a8613e4d3c5f3ba_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubesecondarydns-rhel9@sha256:4b2ed5bc8f226433a3c6e2dd926a74085b4ed60ed4f0bd505a8613e4d3c5f3ba_amd64" + }, + "product_reference": "container-native-virtualization/kubesecondarydns-rhel9@sha256:4b2ed5bc8f226433a3c6e2dd926a74085b4ed60ed4f0bd505a8613e4d3c5f3ba_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubesecondarydns-rhel9@sha256:eac30877a8cbe57c844e660516f0370fa4a2070c6ee805a338bde149be05a16e_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubesecondarydns-rhel9@sha256:eac30877a8cbe57c844e660516f0370fa4a2070c6ee805a338bde149be05a16e_arm64" + }, + "product_reference": "container-native-virtualization/kubesecondarydns-rhel9@sha256:eac30877a8cbe57c844e660516f0370fa4a2070c6ee805a338bde149be05a16e_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-console-plugin-rhel9@sha256:dbb6f6340fd4febbb2a0b9c0493af1b02681e835a8b07ddc421b1956f3cbccab_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-console-plugin-rhel9@sha256:dbb6f6340fd4febbb2a0b9c0493af1b02681e835a8b07ddc421b1956f3cbccab_arm64" + }, + "product_reference": "container-native-virtualization/kubevirt-console-plugin-rhel9@sha256:dbb6f6340fd4febbb2a0b9c0493af1b02681e835a8b07ddc421b1956f3cbccab_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-console-plugin-rhel9@sha256:f824525b97a1724c9eb4e0786a19e0dc16609b14915faf31229abc4345fd91f1_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-console-plugin-rhel9@sha256:f824525b97a1724c9eb4e0786a19e0dc16609b14915faf31229abc4345fd91f1_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-console-plugin-rhel9@sha256:f824525b97a1724c9eb4e0786a19e0dc16609b14915faf31229abc4345fd91f1_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-dpdk-checkup-rhel9@sha256:74975f1f030959c5ad9067c709b848029d08b74a17297da8666638fc8377f4f5_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-dpdk-checkup-rhel9@sha256:74975f1f030959c5ad9067c709b848029d08b74a17297da8666638fc8377f4f5_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-dpdk-checkup-rhel9@sha256:74975f1f030959c5ad9067c709b848029d08b74a17297da8666638fc8377f4f5_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-dpdk-checkup-rhel9@sha256:d949f12237050460cbf61cf21cc6627c0124525088af419e718dcbaae5ab3b8c_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-dpdk-checkup-rhel9@sha256:d949f12237050460cbf61cf21cc6627c0124525088af419e718dcbaae5ab3b8c_arm64" + }, + "product_reference": "container-native-virtualization/kubevirt-dpdk-checkup-rhel9@sha256:d949f12237050460cbf61cf21cc6627c0124525088af419e718dcbaae5ab3b8c_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-ssp-operator-rhel9@sha256:21176845533bfa0817ea0f29c749be2d6bb00539354bcfa3c013f70460d0a03d_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-ssp-operator-rhel9@sha256:21176845533bfa0817ea0f29c749be2d6bb00539354bcfa3c013f70460d0a03d_arm64" + }, + "product_reference": "container-native-virtualization/kubevirt-ssp-operator-rhel9@sha256:21176845533bfa0817ea0f29c749be2d6bb00539354bcfa3c013f70460d0a03d_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-ssp-operator-rhel9@sha256:90ef77f56d0b7a5c7ac67425fdad169d3f865cc24723bd10635c1d974b9dd540_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-ssp-operator-rhel9@sha256:90ef77f56d0b7a5c7ac67425fdad169d3f865cc24723bd10635c1d974b9dd540_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-ssp-operator-rhel9@sha256:90ef77f56d0b7a5c7ac67425fdad169d3f865cc24723bd10635c1d974b9dd540_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm-rhel9@sha256:909b0dad28dd12dd3645a661262044d16120b72658ade1a48658c2e86de3afaf_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm-rhel9@sha256:909b0dad28dd12dd3645a661262044d16120b72658ade1a48658c2e86de3afaf_arm64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm-rhel9@sha256:909b0dad28dd12dd3645a661262044d16120b72658ade1a48658c2e86de3afaf_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm-rhel9@sha256:96cd6da0c42ce26091f0d9cc7fbc47d24ebeec51b4407d45c5e7d0a7d861e773_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm-rhel9@sha256:96cd6da0c42ce26091f0d9cc7fbc47d24ebeec51b4407d45c5e7d0a7d861e773_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-cleanup-vm-rhel9@sha256:96cd6da0c42ce26091f0d9cc7fbc47d24ebeec51b4407d45c5e7d0a7d861e773_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-copy-template-rhel9@sha256:1d8602530af08cf8344e6d9494a9e53aa51ff54cbf4292a9c5c9633b8d3ddf62_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-tekton-tasks-copy-template-rhel9@sha256:1d8602530af08cf8344e6d9494a9e53aa51ff54cbf4292a9c5c9633b8d3ddf62_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-copy-template-rhel9@sha256:1d8602530af08cf8344e6d9494a9e53aa51ff54cbf4292a9c5c9633b8d3ddf62_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-copy-template-rhel9@sha256:6bae230bed0d35e81ebc4f98a9c68afa79a7c48617a21bef9d751412ef133806_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-tekton-tasks-copy-template-rhel9@sha256:6bae230bed0d35e81ebc4f98a9c68afa79a7c48617a21bef9d751412ef133806_arm64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-copy-template-rhel9@sha256:6bae230bed0d35e81ebc4f98a9c68afa79a7c48617a21bef9d751412ef133806_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:0495f03ccdc719420f530fcd530f392f0f9d59982fc0d3df9b1cc4d9dc5ac501_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:0495f03ccdc719420f530fcd530f392f0f9d59982fc0d3df9b1cc4d9dc5ac501_arm64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:0495f03ccdc719420f530fcd530f392f0f9d59982fc0d3df9b1cc4d9dc5ac501_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:7807aaec505ba59712ff21c0db7daa33ed13e52ab1f1aba346dc9cbc3295afce_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:7807aaec505ba59712ff21c0db7daa33ed13e52ab1f1aba346dc9cbc3295afce_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:7807aaec505ba59712ff21c0db7daa33ed13e52ab1f1aba346dc9cbc3295afce_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template-rhel9@sha256:2239c59d6e1343498d7e0c65d358be6675156a7f1626bcf0052107acb0445927_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template-rhel9@sha256:2239c59d6e1343498d7e0c65d358be6675156a7f1626bcf0052107acb0445927_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template-rhel9@sha256:2239c59d6e1343498d7e0c65d358be6675156a7f1626bcf0052107acb0445927_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template-rhel9@sha256:309e43a5a95f95ade124e9e30555d0f2df99a37c606a18aef1e39ba124a37f60_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template-rhel9@sha256:309e43a5a95f95ade124e9e30555d0f2df99a37c606a18aef1e39ba124a37f60_arm64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-create-vm-from-template-rhel9@sha256:309e43a5a95f95ade124e9e30555d0f2df99a37c606a18aef1e39ba124a37f60_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:811b9aaefae86a945ca7b2b9e0ca23afe36be3f9ea0728386a3e2b3df79fe376_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:811b9aaefae86a945ca7b2b9e0ca23afe36be3f9ea0728386a3e2b3df79fe376_arm64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:811b9aaefae86a945ca7b2b9e0ca23afe36be3f9ea0728386a3e2b3df79fe376_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:ae5fcba31eb7dde0f03a5a947b765b0492a9a805938bdb9075b7c1c3ca7b53c8_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:ae5fcba31eb7dde0f03a5a947b765b0492a9a805938bdb9075b7c1c3ca7b53c8_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:ae5fcba31eb7dde0f03a5a947b765b0492a9a805938bdb9075b7c1c3ca7b53c8_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep-rhel9@sha256:21cc83f45931f6151fb8f4fdf2d06eecaa6d6ce139e41e6946b202adb107db34_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep-rhel9@sha256:21cc83f45931f6151fb8f4fdf2d06eecaa6d6ce139e41e6946b202adb107db34_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep-rhel9@sha256:21cc83f45931f6151fb8f4fdf2d06eecaa6d6ce139e41e6946b202adb107db34_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep-rhel9@sha256:648df73d58c946aa502bc6cde710239e9a63c54d116441887115c734af420dbc_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep-rhel9@sha256:648df73d58c946aa502bc6cde710239e9a63c54d116441887115c734af420dbc_arm64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-sysprep-rhel9@sha256:648df73d58c946aa502bc6cde710239e9a63c54d116441887115c734af420dbc_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template-rhel9@sha256:932234c21ddbe7a50cb9e0217299ff08bffac42dc6c47fba3a72b542e082c1a4_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template-rhel9@sha256:932234c21ddbe7a50cb9e0217299ff08bffac42dc6c47fba3a72b542e082c1a4_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template-rhel9@sha256:932234c21ddbe7a50cb9e0217299ff08bffac42dc6c47fba3a72b542e082c1a4_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template-rhel9@sha256:ea952209ad5400aeb8318869978e50fb17012e0e84d61dbc19d818e2eaf1ba43_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template-rhel9@sha256:ea952209ad5400aeb8318869978e50fb17012e0e84d61dbc19d818e2eaf1ba43_arm64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-modify-vm-template-rhel9@sha256:ea952209ad5400aeb8318869978e50fb17012e0e84d61dbc19d818e2eaf1ba43_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-operator-rhel9@sha256:176782274bed233d5a522f63c435c2504b1182f34d49a2fc87166e284d03522c_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-tekton-tasks-operator-rhel9@sha256:176782274bed233d5a522f63c435c2504b1182f34d49a2fc87166e284d03522c_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-operator-rhel9@sha256:176782274bed233d5a522f63c435c2504b1182f34d49a2fc87166e284d03522c_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-operator-rhel9@sha256:e91ef2ec173663ad40867d2696d04681d917ef76b1df7ed9c451886a2adb4825_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-tekton-tasks-operator-rhel9@sha256:e91ef2ec173663ad40867d2696d04681d917ef76b1df7ed9c451886a2adb4825_arm64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-operator-rhel9@sha256:e91ef2ec173663ad40867d2696d04681d917ef76b1df7ed9c451886a2adb4825_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status-rhel9@sha256:94f24421df1e69f957caafdd28327041fa198e89824d13a864c6077d946ba54c_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status-rhel9@sha256:94f24421df1e69f957caafdd28327041fa198e89824d13a864c6077d946ba54c_arm64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status-rhel9@sha256:94f24421df1e69f957caafdd28327041fa198e89824d13a864c6077d946ba54c_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status-rhel9@sha256:f8532cc89663d20221bdb01642e8237f9096ba686697fda12a4f3a63ed991726_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status-rhel9@sha256:f8532cc89663d20221bdb01642e8237f9096ba686697fda12a4f3a63ed991726_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-wait-for-vmi-status-rhel9@sha256:f8532cc89663d20221bdb01642e8237f9096ba686697fda12a4f3a63ed991726_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-template-validator-rhel9@sha256:a1c61fac7dd64e8de733db6af840d2c1c0737208634c7bd76bb8970334e456e8_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-template-validator-rhel9@sha256:a1c61fac7dd64e8de733db6af840d2c1c0737208634c7bd76bb8970334e456e8_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-template-validator-rhel9@sha256:a1c61fac7dd64e8de733db6af840d2c1c0737208634c7bd76bb8970334e456e8_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-template-validator-rhel9@sha256:c7492e63269379a8bb8415645e6195f0448247dd7e513edbadf12c07601fb948_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/kubevirt-template-validator-rhel9@sha256:c7492e63269379a8bb8415645e6195f0448247dd7e513edbadf12c07601fb948_arm64" + }, + "product_reference": "container-native-virtualization/kubevirt-template-validator-rhel9@sha256:c7492e63269379a8bb8415645e6195f0448247dd7e513edbadf12c07601fb948_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/libguestfs-tools-rhel9@sha256:3a97c4aca2b1c9fb1ca94619ba89965e6343eb6c9a92c34688f861564b8c2095_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/libguestfs-tools-rhel9@sha256:3a97c4aca2b1c9fb1ca94619ba89965e6343eb6c9a92c34688f861564b8c2095_arm64" + }, + "product_reference": "container-native-virtualization/libguestfs-tools-rhel9@sha256:3a97c4aca2b1c9fb1ca94619ba89965e6343eb6c9a92c34688f861564b8c2095_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/libguestfs-tools-rhel9@sha256:e667c06a7d1f5569038d0a93275da2333a47bca885a76f444d317dac6b8b6657_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/libguestfs-tools-rhel9@sha256:e667c06a7d1f5569038d0a93275da2333a47bca885a76f444d317dac6b8b6657_amd64" + }, + "product_reference": "container-native-virtualization/libguestfs-tools-rhel9@sha256:e667c06a7d1f5569038d0a93275da2333a47bca885a76f444d317dac6b8b6657_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/multus-dynamic-networks-rhel9@sha256:18b22a9a9453341c3c419319bfa891437402613f01f5f10437ac81fe14a6ce6f_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/multus-dynamic-networks-rhel9@sha256:18b22a9a9453341c3c419319bfa891437402613f01f5f10437ac81fe14a6ce6f_arm64" + }, + "product_reference": "container-native-virtualization/multus-dynamic-networks-rhel9@sha256:18b22a9a9453341c3c419319bfa891437402613f01f5f10437ac81fe14a6ce6f_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/multus-dynamic-networks-rhel9@sha256:739517ad4e74e5f62f95df8301c8360c09f8a441070673bde68c3a1119b26ecb_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/multus-dynamic-networks-rhel9@sha256:739517ad4e74e5f62f95df8301c8360c09f8a441070673bde68c3a1119b26ecb_amd64" + }, + "product_reference": "container-native-virtualization/multus-dynamic-networks-rhel9@sha256:739517ad4e74e5f62f95df8301c8360c09f8a441070673bde68c3a1119b26ecb_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/ovs-cni-plugin-rhel9@sha256:73447696068a5d2f005f9148dc9424d9ca7eb96cc22597228d1ff80a593b5124_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/ovs-cni-plugin-rhel9@sha256:73447696068a5d2f005f9148dc9424d9ca7eb96cc22597228d1ff80a593b5124_arm64" + }, + "product_reference": "container-native-virtualization/ovs-cni-plugin-rhel9@sha256:73447696068a5d2f005f9148dc9424d9ca7eb96cc22597228d1ff80a593b5124_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/ovs-cni-plugin-rhel9@sha256:ffb0c9fe819873c3d923f50aef33f0e253c81df2846a96dbe58516f95080533d_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/ovs-cni-plugin-rhel9@sha256:ffb0c9fe819873c3d923f50aef33f0e253c81df2846a96dbe58516f95080533d_amd64" + }, + "product_reference": "container-native-virtualization/ovs-cni-plugin-rhel9@sha256:ffb0c9fe819873c3d923f50aef33f0e253c81df2846a96dbe58516f95080533d_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-api-rhel9@sha256:4ee279958ee70fa91fce05e17e14d3f5e2f016495b9cc33268441cf5cdeaacac_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-api-rhel9@sha256:4ee279958ee70fa91fce05e17e14d3f5e2f016495b9cc33268441cf5cdeaacac_arm64" + }, + "product_reference": "container-native-virtualization/virt-api-rhel9@sha256:4ee279958ee70fa91fce05e17e14d3f5e2f016495b9cc33268441cf5cdeaacac_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-api-rhel9@sha256:eb6fb58636e5f8d2cff86e59f722821522361de25ecd12cb590a2c50184c0f93_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-api-rhel9@sha256:eb6fb58636e5f8d2cff86e59f722821522361de25ecd12cb590a2c50184c0f93_amd64" + }, + "product_reference": "container-native-virtualization/virt-api-rhel9@sha256:eb6fb58636e5f8d2cff86e59f722821522361de25ecd12cb590a2c50184c0f93_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-artifacts-server-rhel9@sha256:5a0a241bf8b334a5d52b9cefd74146628b7884e31303e9a63d96e52688e88b59_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-artifacts-server-rhel9@sha256:5a0a241bf8b334a5d52b9cefd74146628b7884e31303e9a63d96e52688e88b59_amd64" + }, + "product_reference": "container-native-virtualization/virt-artifacts-server-rhel9@sha256:5a0a241bf8b334a5d52b9cefd74146628b7884e31303e9a63d96e52688e88b59_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-artifacts-server-rhel9@sha256:7cb9c402604382e9477ca83c253cf28a88e0c3afed7c6c2b49da21bf098ad116_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-artifacts-server-rhel9@sha256:7cb9c402604382e9477ca83c253cf28a88e0c3afed7c6c2b49da21bf098ad116_arm64" + }, + "product_reference": "container-native-virtualization/virt-artifacts-server-rhel9@sha256:7cb9c402604382e9477ca83c253cf28a88e0c3afed7c6c2b49da21bf098ad116_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-apiserver-rhel9@sha256:9f23ef7d9ebea242aca099ca05fc59f008c4b812ebfb42400cf83f9dae9d1914_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-cdi-apiserver-rhel9@sha256:9f23ef7d9ebea242aca099ca05fc59f008c4b812ebfb42400cf83f9dae9d1914_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-apiserver-rhel9@sha256:9f23ef7d9ebea242aca099ca05fc59f008c4b812ebfb42400cf83f9dae9d1914_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-apiserver-rhel9@sha256:ebff907b257a40d560e6455b46f77e25a66ff5a43d20211c1f84df60afe24e71_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-cdi-apiserver-rhel9@sha256:ebff907b257a40d560e6455b46f77e25a66ff5a43d20211c1f84df60afe24e71_arm64" + }, + "product_reference": "container-native-virtualization/virt-cdi-apiserver-rhel9@sha256:ebff907b257a40d560e6455b46f77e25a66ff5a43d20211c1f84df60afe24e71_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-cloner-rhel9@sha256:3ef62bc6ce5756f16a40fc66eaede1d185a6fc6a2418434649cf046cb03e49df_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-cdi-cloner-rhel9@sha256:3ef62bc6ce5756f16a40fc66eaede1d185a6fc6a2418434649cf046cb03e49df_arm64" + }, + "product_reference": "container-native-virtualization/virt-cdi-cloner-rhel9@sha256:3ef62bc6ce5756f16a40fc66eaede1d185a6fc6a2418434649cf046cb03e49df_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-cloner-rhel9@sha256:754cdf68bd406ac6d7dec2043cc2e18644944d11d3c5a7144cbf642d0104ff27_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-cdi-cloner-rhel9@sha256:754cdf68bd406ac6d7dec2043cc2e18644944d11d3c5a7144cbf642d0104ff27_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-cloner-rhel9@sha256:754cdf68bd406ac6d7dec2043cc2e18644944d11d3c5a7144cbf642d0104ff27_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-controller-rhel9@sha256:84f8681a07967b12ae1f60fdba3e0e60e739ff503283441cd41317f15a2dd13c_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-cdi-controller-rhel9@sha256:84f8681a07967b12ae1f60fdba3e0e60e739ff503283441cd41317f15a2dd13c_arm64" + }, + "product_reference": "container-native-virtualization/virt-cdi-controller-rhel9@sha256:84f8681a07967b12ae1f60fdba3e0e60e739ff503283441cd41317f15a2dd13c_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-controller-rhel9@sha256:e352a385250091e0e5ee314b9f62e5ab45c15226a8e687ef8735988a213bfac9_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-cdi-controller-rhel9@sha256:e352a385250091e0e5ee314b9f62e5ab45c15226a8e687ef8735988a213bfac9_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-controller-rhel9@sha256:e352a385250091e0e5ee314b9f62e5ab45c15226a8e687ef8735988a213bfac9_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-importer-rhel9@sha256:64fa194703392dd4048a9f508f7872e04864000b8728773504a09661a14684cb_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-cdi-importer-rhel9@sha256:64fa194703392dd4048a9f508f7872e04864000b8728773504a09661a14684cb_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-importer-rhel9@sha256:64fa194703392dd4048a9f508f7872e04864000b8728773504a09661a14684cb_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-importer-rhel9@sha256:d4e38f20bf2227ddd9a916960c7f8f40df3e4f0df9adf4fedba6688bd26a2fe4_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-cdi-importer-rhel9@sha256:d4e38f20bf2227ddd9a916960c7f8f40df3e4f0df9adf4fedba6688bd26a2fe4_arm64" + }, + "product_reference": "container-native-virtualization/virt-cdi-importer-rhel9@sha256:d4e38f20bf2227ddd9a916960c7f8f40df3e4f0df9adf4fedba6688bd26a2fe4_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-operator-rhel9@sha256:8f8262b1dfbf965f7e3be39cb4b829de84d248a9624fcbae56de3fb3ee265ce6_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-cdi-operator-rhel9@sha256:8f8262b1dfbf965f7e3be39cb4b829de84d248a9624fcbae56de3fb3ee265ce6_arm64" + }, + "product_reference": "container-native-virtualization/virt-cdi-operator-rhel9@sha256:8f8262b1dfbf965f7e3be39cb4b829de84d248a9624fcbae56de3fb3ee265ce6_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-operator-rhel9@sha256:accc78929702ab17eed27b5c3c97b7327289b1220a7688b60407489c64f93217_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-cdi-operator-rhel9@sha256:accc78929702ab17eed27b5c3c97b7327289b1220a7688b60407489c64f93217_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-operator-rhel9@sha256:accc78929702ab17eed27b5c3c97b7327289b1220a7688b60407489c64f93217_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-uploadproxy-rhel9@sha256:7070f54131307aa3de5e76d733b1a1fd502827eca1b0d9e5099caa91a86cc26a_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-cdi-uploadproxy-rhel9@sha256:7070f54131307aa3de5e76d733b1a1fd502827eca1b0d9e5099caa91a86cc26a_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-uploadproxy-rhel9@sha256:7070f54131307aa3de5e76d733b1a1fd502827eca1b0d9e5099caa91a86cc26a_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-uploadproxy-rhel9@sha256:7e8084302d1c80303a74cecbc25bb45a97c5513f8babfb22b8ef4f0ef032048c_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-cdi-uploadproxy-rhel9@sha256:7e8084302d1c80303a74cecbc25bb45a97c5513f8babfb22b8ef4f0ef032048c_arm64" + }, + "product_reference": "container-native-virtualization/virt-cdi-uploadproxy-rhel9@sha256:7e8084302d1c80303a74cecbc25bb45a97c5513f8babfb22b8ef4f0ef032048c_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-uploadserver-rhel9@sha256:c0eb37995a2899e06e6a086a458ec52669d25fda5d4fdb7ef88521a91637b318_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-cdi-uploadserver-rhel9@sha256:c0eb37995a2899e06e6a086a458ec52669d25fda5d4fdb7ef88521a91637b318_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-uploadserver-rhel9@sha256:c0eb37995a2899e06e6a086a458ec52669d25fda5d4fdb7ef88521a91637b318_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-uploadserver-rhel9@sha256:e1f8cb4dba0f3f53b40faa9c32f5a5d98a9bf7b1d25d987ed49abe99be89b561_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-cdi-uploadserver-rhel9@sha256:e1f8cb4dba0f3f53b40faa9c32f5a5d98a9bf7b1d25d987ed49abe99be89b561_arm64" + }, + "product_reference": "container-native-virtualization/virt-cdi-uploadserver-rhel9@sha256:e1f8cb4dba0f3f53b40faa9c32f5a5d98a9bf7b1d25d987ed49abe99be89b561_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-controller-rhel9@sha256:5ace580e85dcdbf18ef50362c0dcfe8e24b30301752cb16efd583a346699676c_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-controller-rhel9@sha256:5ace580e85dcdbf18ef50362c0dcfe8e24b30301752cb16efd583a346699676c_arm64" + }, + "product_reference": "container-native-virtualization/virt-controller-rhel9@sha256:5ace580e85dcdbf18ef50362c0dcfe8e24b30301752cb16efd583a346699676c_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-controller-rhel9@sha256:ab0fef9bd51caa62ef0e900c7fbe72a4fe67a48ef913ba33b6d261648342a0f2_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-controller-rhel9@sha256:ab0fef9bd51caa62ef0e900c7fbe72a4fe67a48ef913ba33b6d261648342a0f2_amd64" + }, + "product_reference": "container-native-virtualization/virt-controller-rhel9@sha256:ab0fef9bd51caa62ef0e900c7fbe72a4fe67a48ef913ba33b6d261648342a0f2_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-exportproxy-rhel9@sha256:1a7a2bb4de8718c225295b70c4d324c35e915e29e9cd01a22164962bf2f6cf15_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-exportproxy-rhel9@sha256:1a7a2bb4de8718c225295b70c4d324c35e915e29e9cd01a22164962bf2f6cf15_amd64" + }, + "product_reference": "container-native-virtualization/virt-exportproxy-rhel9@sha256:1a7a2bb4de8718c225295b70c4d324c35e915e29e9cd01a22164962bf2f6cf15_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-exportproxy-rhel9@sha256:1e675c5c66a08fc992909e2d06913ea8ab1420fc6560c87f048020a5ab9d055f_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-exportproxy-rhel9@sha256:1e675c5c66a08fc992909e2d06913ea8ab1420fc6560c87f048020a5ab9d055f_arm64" + }, + "product_reference": "container-native-virtualization/virt-exportproxy-rhel9@sha256:1e675c5c66a08fc992909e2d06913ea8ab1420fc6560c87f048020a5ab9d055f_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-exportserver-rhel9@sha256:1d8bf43099edd641ef96605e554723b312d36b1b2d81544f12f1063d7de33826_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-exportserver-rhel9@sha256:1d8bf43099edd641ef96605e554723b312d36b1b2d81544f12f1063d7de33826_amd64" + }, + "product_reference": "container-native-virtualization/virt-exportserver-rhel9@sha256:1d8bf43099edd641ef96605e554723b312d36b1b2d81544f12f1063d7de33826_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-exportserver-rhel9@sha256:ee39b31117c8f8be67863e952683cdaf3d49cad742bd722b5abbfa6613aa28de_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-exportserver-rhel9@sha256:ee39b31117c8f8be67863e952683cdaf3d49cad742bd722b5abbfa6613aa28de_arm64" + }, + "product_reference": "container-native-virtualization/virt-exportserver-rhel9@sha256:ee39b31117c8f8be67863e952683cdaf3d49cad742bd722b5abbfa6613aa28de_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-handler-rhel9@sha256:2d65599406329f5b5b81305428873638f99a937807683338091bccbda60b9cda_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-handler-rhel9@sha256:2d65599406329f5b5b81305428873638f99a937807683338091bccbda60b9cda_arm64" + }, + "product_reference": "container-native-virtualization/virt-handler-rhel9@sha256:2d65599406329f5b5b81305428873638f99a937807683338091bccbda60b9cda_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-handler-rhel9@sha256:4ff11fbb4fa3fa2fd9fbc9465a4bef5934101ea2a6201d91ca34c5616aeecf45_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-handler-rhel9@sha256:4ff11fbb4fa3fa2fd9fbc9465a4bef5934101ea2a6201d91ca34c5616aeecf45_amd64" + }, + "product_reference": "container-native-virtualization/virt-handler-rhel9@sha256:4ff11fbb4fa3fa2fd9fbc9465a4bef5934101ea2a6201d91ca34c5616aeecf45_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-launcher-rhel9@sha256:23b65c6518e23b353a8679ad4b80389c8a7c35797718a8e5ba00f976c85a8c68_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-launcher-rhel9@sha256:23b65c6518e23b353a8679ad4b80389c8a7c35797718a8e5ba00f976c85a8c68_arm64" + }, + "product_reference": "container-native-virtualization/virt-launcher-rhel9@sha256:23b65c6518e23b353a8679ad4b80389c8a7c35797718a8e5ba00f976c85a8c68_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-launcher-rhel9@sha256:9d7d750377de058f14baca092b7832fc756fc0b31bdf4426556b380012bd69fb_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-launcher-rhel9@sha256:9d7d750377de058f14baca092b7832fc756fc0b31bdf4426556b380012bd69fb_amd64" + }, + "product_reference": "container-native-virtualization/virt-launcher-rhel9@sha256:9d7d750377de058f14baca092b7832fc756fc0b31bdf4426556b380012bd69fb_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-operator-rhel9@sha256:0b7505d513a3a5dec0ceefb1e2337c8f8c7769d1a3a45e21e3ce46f7d87b3b9b_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-operator-rhel9@sha256:0b7505d513a3a5dec0ceefb1e2337c8f8c7769d1a3a45e21e3ce46f7d87b3b9b_amd64" + }, + "product_reference": "container-native-virtualization/virt-operator-rhel9@sha256:0b7505d513a3a5dec0ceefb1e2337c8f8c7769d1a3a45e21e3ce46f7d87b3b9b_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-operator-rhel9@sha256:e8703006f51562b0370facfca722d0064e5673db77e7a0e1edfd62418fd2847a_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virt-operator-rhel9@sha256:e8703006f51562b0370facfca722d0064e5673db77e7a0e1edfd62418fd2847a_arm64" + }, + "product_reference": "container-native-virtualization/virt-operator-rhel9@sha256:e8703006f51562b0370facfca722d0064e5673db77e7a0e1edfd62418fd2847a_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virtio-win-rhel9@sha256:0c8635ad9d5dcb052dd6a840e6a841fbafce15cbe6820878f1921652a0a7dec8_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virtio-win-rhel9@sha256:0c8635ad9d5dcb052dd6a840e6a841fbafce15cbe6820878f1921652a0a7dec8_amd64" + }, + "product_reference": "container-native-virtualization/virtio-win-rhel9@sha256:0c8635ad9d5dcb052dd6a840e6a841fbafce15cbe6820878f1921652a0a7dec8_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virtio-win-rhel9@sha256:da9f96685d597eb80a59a99d64c4c59a5e6aa6fe042be8b6a8386bb01f6b5a4d_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/virtio-win-rhel9@sha256:da9f96685d597eb80a59a99d64c4c59a5e6aa6fe042be8b6a8386bb01f6b5a4d_arm64" + }, + "product_reference": "container-native-virtualization/virtio-win-rhel9@sha256:da9f96685d597eb80a59a99d64c4c59a5e6aa6fe042be8b6a8386bb01f6b5a4d_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/vm-console-proxy-rhel9@sha256:1d8b888e5c76c6de2c178d6301d6caabbc497fa3502f30731885ade2012d01b6_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/vm-console-proxy-rhel9@sha256:1d8b888e5c76c6de2c178d6301d6caabbc497fa3502f30731885ade2012d01b6_arm64" + }, + "product_reference": "container-native-virtualization/vm-console-proxy-rhel9@sha256:1d8b888e5c76c6de2c178d6301d6caabbc497fa3502f30731885ade2012d01b6_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/vm-console-proxy-rhel9@sha256:527182f4a91752fe5e1d078c745c8d0763392f94b9f32a8cf2885c69a1ddbc6e_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/vm-console-proxy-rhel9@sha256:527182f4a91752fe5e1d078c745c8d0763392f94b9f32a8cf2885c69a1ddbc6e_amd64" + }, + "product_reference": "container-native-virtualization/vm-console-proxy-rhel9@sha256:527182f4a91752fe5e1d078c745c8d0763392f94b9f32a8cf2885c69a1ddbc6e_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/vm-network-latency-checkup-rhel9@sha256:1526bbc64a74f9bd86c119a9f48e83f7b1d4978bb0096624d33d2dd52a2cb2b0_amd64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/vm-network-latency-checkup-rhel9@sha256:1526bbc64a74f9bd86c119a9f48e83f7b1d4978bb0096624d33d2dd52a2cb2b0_amd64" + }, + "product_reference": "container-native-virtualization/vm-network-latency-checkup-rhel9@sha256:1526bbc64a74f9bd86c119a9f48e83f7b1d4978bb0096624d33d2dd52a2cb2b0_amd64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/vm-network-latency-checkup-rhel9@sha256:9d456058997fc90c0d6acbeeaf349d33c4f6ce36509c3f68685a1be90d793b5b_arm64 as a component of CNV 4.13 for RHEL 9", + "product_id": "9Base-CNV-4.13:container-native-virtualization/vm-network-latency-checkup-rhel9@sha256:9d456058997fc90c0d6acbeeaf349d33c4f6ce36509c3f68685a1be90d793b5b_arm64" + }, + "product_reference": "container-native-virtualization/vm-network-latency-checkup-rhel9@sha256:9d456058997fc90c0d6acbeeaf349d33c4f6ce36509c3f68685a1be90d793b5b_arm64", + "relates_to_product_reference": "9Base-CNV-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/bridge-marker-rhel9@sha256:1148cc4caaf2a5eb2a39dc8255f209522fcbd206567af25508c4bce1884b44cd_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/bridge-marker-rhel9@sha256:1148cc4caaf2a5eb2a39dc8255f209522fcbd206567af25508c4bce1884b44cd_amd64" + }, + "product_reference": "container-native-virtualization/bridge-marker-rhel9@sha256:1148cc4caaf2a5eb2a39dc8255f209522fcbd206567af25508c4bce1884b44cd_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/bridge-marker-rhel9@sha256:d3734dfcf14530150900ab1a8055e6a75d96f2e1f8bd0e4530b21315de2dfd3d_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/bridge-marker-rhel9@sha256:d3734dfcf14530150900ab1a8055e6a75d96f2e1f8bd0e4530b21315de2dfd3d_arm64" + }, + "product_reference": "container-native-virtualization/bridge-marker-rhel9@sha256:d3734dfcf14530150900ab1a8055e6a75d96f2e1f8bd0e4530b21315de2dfd3d_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/cluster-network-addons-operator-rhel9@sha256:d4164a252eaac07f5f0d34a54189e894bcfe92045dfda7ea3e93c0e836be9b9e_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/cluster-network-addons-operator-rhel9@sha256:d4164a252eaac07f5f0d34a54189e894bcfe92045dfda7ea3e93c0e836be9b9e_amd64" + }, + "product_reference": "container-native-virtualization/cluster-network-addons-operator-rhel9@sha256:d4164a252eaac07f5f0d34a54189e894bcfe92045dfda7ea3e93c0e836be9b9e_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/cluster-network-addons-operator-rhel9@sha256:f2fa89f69c3f3a1a57c64975d690e42b4b5c49b92309d29b41b903a50f546fb6_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/cluster-network-addons-operator-rhel9@sha256:f2fa89f69c3f3a1a57c64975d690e42b4b5c49b92309d29b41b903a50f546fb6_arm64" + }, + "product_reference": "container-native-virtualization/cluster-network-addons-operator-rhel9@sha256:f2fa89f69c3f3a1a57c64975d690e42b4b5c49b92309d29b41b903a50f546fb6_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/cnv-containernetworking-plugins-rhel9@sha256:55cc13ec852d0c6819b0be7592b12460c4256f64f5fcba846e1875738868b421_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/cnv-containernetworking-plugins-rhel9@sha256:55cc13ec852d0c6819b0be7592b12460c4256f64f5fcba846e1875738868b421_amd64" + }, + "product_reference": "container-native-virtualization/cnv-containernetworking-plugins-rhel9@sha256:55cc13ec852d0c6819b0be7592b12460c4256f64f5fcba846e1875738868b421_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/cnv-containernetworking-plugins-rhel9@sha256:b2cc636ae0f2a30c04b8fd319b63d7810d49c1945f3a943bec973db3abb8f483_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/cnv-containernetworking-plugins-rhel9@sha256:b2cc636ae0f2a30c04b8fd319b63d7810d49c1945f3a943bec973db3abb8f483_arm64" + }, + "product_reference": "container-native-virtualization/cnv-containernetworking-plugins-rhel9@sha256:b2cc636ae0f2a30c04b8fd319b63d7810d49c1945f3a943bec973db3abb8f483_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/cnv-must-gather-rhel9@sha256:2a583fb0a7b1d59f8789787d59b1a17d142024b510b5ad2a95cbac2cdbe2da8c_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/cnv-must-gather-rhel9@sha256:2a583fb0a7b1d59f8789787d59b1a17d142024b510b5ad2a95cbac2cdbe2da8c_arm64" + }, + "product_reference": "container-native-virtualization/cnv-must-gather-rhel9@sha256:2a583fb0a7b1d59f8789787d59b1a17d142024b510b5ad2a95cbac2cdbe2da8c_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/cnv-must-gather-rhel9@sha256:f780a050fa4c92d5d3479d1092dd7973b06e17ef804bb8cee0c7168581eebe13_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/cnv-must-gather-rhel9@sha256:f780a050fa4c92d5d3479d1092dd7973b06e17ef804bb8cee0c7168581eebe13_amd64" + }, + "product_reference": "container-native-virtualization/cnv-must-gather-rhel9@sha256:f780a050fa4c92d5d3479d1092dd7973b06e17ef804bb8cee0c7168581eebe13_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hco-bundle-registry-rhel9@sha256:d3cbd39d4c6fb4d3c46b5155a73842827484b4ea9663751882c8e23085bcbf00_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/hco-bundle-registry-rhel9@sha256:d3cbd39d4c6fb4d3c46b5155a73842827484b4ea9663751882c8e23085bcbf00_amd64" + }, + "product_reference": "container-native-virtualization/hco-bundle-registry-rhel9@sha256:d3cbd39d4c6fb4d3c46b5155a73842827484b4ea9663751882c8e23085bcbf00_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hco-bundle-registry-rhel9@sha256:fc33136c9eff3e5d92207ce2c153a152fba46bc2b1927caa4957f0c5015bf440_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/hco-bundle-registry-rhel9@sha256:fc33136c9eff3e5d92207ce2c153a152fba46bc2b1927caa4957f0c5015bf440_arm64" + }, + "product_reference": "container-native-virtualization/hco-bundle-registry-rhel9@sha256:fc33136c9eff3e5d92207ce2c153a152fba46bc2b1927caa4957f0c5015bf440_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hostpath-csi-driver-rhel9@sha256:23c604deb6d175f03678f20296346cb46c7e0635fc5d7cbf737a035dd556eb0d_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/hostpath-csi-driver-rhel9@sha256:23c604deb6d175f03678f20296346cb46c7e0635fc5d7cbf737a035dd556eb0d_amd64" + }, + "product_reference": "container-native-virtualization/hostpath-csi-driver-rhel9@sha256:23c604deb6d175f03678f20296346cb46c7e0635fc5d7cbf737a035dd556eb0d_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hostpath-csi-driver-rhel9@sha256:8f8d482499a71ff0d2711daeaee7bcaa05e316a003a14b2d119c2358f35de9b9_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/hostpath-csi-driver-rhel9@sha256:8f8d482499a71ff0d2711daeaee7bcaa05e316a003a14b2d119c2358f35de9b9_arm64" + }, + "product_reference": "container-native-virtualization/hostpath-csi-driver-rhel9@sha256:8f8d482499a71ff0d2711daeaee7bcaa05e316a003a14b2d119c2358f35de9b9_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hostpath-provisioner-operator-rhel9@sha256:82d7a5229c9b23a11c392de2cebab5a3e20b87d92da0a2c93f8aa2f25b5d5f44_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/hostpath-provisioner-operator-rhel9@sha256:82d7a5229c9b23a11c392de2cebab5a3e20b87d92da0a2c93f8aa2f25b5d5f44_amd64" + }, + "product_reference": "container-native-virtualization/hostpath-provisioner-operator-rhel9@sha256:82d7a5229c9b23a11c392de2cebab5a3e20b87d92da0a2c93f8aa2f25b5d5f44_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hostpath-provisioner-operator-rhel9@sha256:8d08f900b73b9a409cc9813966ecc6c4a5674bcae247f68375aed2db5523e350_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/hostpath-provisioner-operator-rhel9@sha256:8d08f900b73b9a409cc9813966ecc6c4a5674bcae247f68375aed2db5523e350_arm64" + }, + "product_reference": "container-native-virtualization/hostpath-provisioner-operator-rhel9@sha256:8d08f900b73b9a409cc9813966ecc6c4a5674bcae247f68375aed2db5523e350_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hostpath-provisioner-rhel9@sha256:5511e156acd677d58698f1511578752ffb74da39c41773817b1a8df6bb3356dd_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/hostpath-provisioner-rhel9@sha256:5511e156acd677d58698f1511578752ffb74da39c41773817b1a8df6bb3356dd_amd64" + }, + "product_reference": "container-native-virtualization/hostpath-provisioner-rhel9@sha256:5511e156acd677d58698f1511578752ffb74da39c41773817b1a8df6bb3356dd_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hostpath-provisioner-rhel9@sha256:5e9d32996733067f4dcbab40c9dd4f7dab25f03b985f63a393fbbd52c3de2141_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/hostpath-provisioner-rhel9@sha256:5e9d32996733067f4dcbab40c9dd4f7dab25f03b985f63a393fbbd52c3de2141_arm64" + }, + "product_reference": "container-native-virtualization/hostpath-provisioner-rhel9@sha256:5e9d32996733067f4dcbab40c9dd4f7dab25f03b985f63a393fbbd52c3de2141_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hyperconverged-cluster-operator-rhel9@sha256:02e19daebdfa5ac0bb8d2d9dd99a58c53ba93d9b2f7ac8889d4c3083a68858b4_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/hyperconverged-cluster-operator-rhel9@sha256:02e19daebdfa5ac0bb8d2d9dd99a58c53ba93d9b2f7ac8889d4c3083a68858b4_arm64" + }, + "product_reference": "container-native-virtualization/hyperconverged-cluster-operator-rhel9@sha256:02e19daebdfa5ac0bb8d2d9dd99a58c53ba93d9b2f7ac8889d4c3083a68858b4_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hyperconverged-cluster-operator-rhel9@sha256:f0b69c20e4d42a53d1b9a68dd90e919487d9d047d2186ad8ea217b8e29884ae9_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/hyperconverged-cluster-operator-rhel9@sha256:f0b69c20e4d42a53d1b9a68dd90e919487d9d047d2186ad8ea217b8e29884ae9_amd64" + }, + "product_reference": "container-native-virtualization/hyperconverged-cluster-operator-rhel9@sha256:f0b69c20e4d42a53d1b9a68dd90e919487d9d047d2186ad8ea217b8e29884ae9_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hyperconverged-cluster-webhook-rhel9@sha256:46d6153c2da86702d06701c5c95e36bb06df03d982771d6791c92c559664bac7_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/hyperconverged-cluster-webhook-rhel9@sha256:46d6153c2da86702d06701c5c95e36bb06df03d982771d6791c92c559664bac7_amd64" + }, + "product_reference": "container-native-virtualization/hyperconverged-cluster-webhook-rhel9@sha256:46d6153c2da86702d06701c5c95e36bb06df03d982771d6791c92c559664bac7_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/hyperconverged-cluster-webhook-rhel9@sha256:61ffc93edbe34fda8103dffb5c910cac8653eec650f4029bfcddedd4a9f1ba74_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/hyperconverged-cluster-webhook-rhel9@sha256:61ffc93edbe34fda8103dffb5c910cac8653eec650f4029bfcddedd4a9f1ba74_arm64" + }, + "product_reference": "container-native-virtualization/hyperconverged-cluster-webhook-rhel9@sha256:61ffc93edbe34fda8103dffb5c910cac8653eec650f4029bfcddedd4a9f1ba74_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubemacpool-rhel9@sha256:0a0265375b10ff7c60397a5d486b2f48f524af9a57aa9ba7ae3775f1626fe724_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/kubemacpool-rhel9@sha256:0a0265375b10ff7c60397a5d486b2f48f524af9a57aa9ba7ae3775f1626fe724_arm64" + }, + "product_reference": "container-native-virtualization/kubemacpool-rhel9@sha256:0a0265375b10ff7c60397a5d486b2f48f524af9a57aa9ba7ae3775f1626fe724_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubemacpool-rhel9@sha256:33a0e10a204f44c05169e78a852a8916d5c1cf4e7268b66a661795183d19aa40_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/kubemacpool-rhel9@sha256:33a0e10a204f44c05169e78a852a8916d5c1cf4e7268b66a661795183d19aa40_amd64" + }, + "product_reference": "container-native-virtualization/kubemacpool-rhel9@sha256:33a0e10a204f44c05169e78a852a8916d5c1cf4e7268b66a661795183d19aa40_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubesecondarydns-rhel9@sha256:6421fe0e7601c9d0ba2df1af37e584e9c623fb9956809cf5de35273497574f83_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/kubesecondarydns-rhel9@sha256:6421fe0e7601c9d0ba2df1af37e584e9c623fb9956809cf5de35273497574f83_amd64" + }, + "product_reference": "container-native-virtualization/kubesecondarydns-rhel9@sha256:6421fe0e7601c9d0ba2df1af37e584e9c623fb9956809cf5de35273497574f83_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubesecondarydns-rhel9@sha256:f51800af171fb90a4e613dfafb035dd31c4d20ddc1f49e2c3f9fd1da22f777a4_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/kubesecondarydns-rhel9@sha256:f51800af171fb90a4e613dfafb035dd31c4d20ddc1f49e2c3f9fd1da22f777a4_arm64" + }, + "product_reference": "container-native-virtualization/kubesecondarydns-rhel9@sha256:f51800af171fb90a4e613dfafb035dd31c4d20ddc1f49e2c3f9fd1da22f777a4_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-apiserver-proxy-rhel9@sha256:ab7992cc6f352add0162556c33516425e61058e90caa0d7f776061bd4fddafdc_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/kubevirt-apiserver-proxy-rhel9@sha256:ab7992cc6f352add0162556c33516425e61058e90caa0d7f776061bd4fddafdc_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-apiserver-proxy-rhel9@sha256:ab7992cc6f352add0162556c33516425e61058e90caa0d7f776061bd4fddafdc_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-apiserver-proxy-rhel9@sha256:df49bba89e997fbd4d86d6ae199ecaa19304e99556520fab02e710d06fb77a5d_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/kubevirt-apiserver-proxy-rhel9@sha256:df49bba89e997fbd4d86d6ae199ecaa19304e99556520fab02e710d06fb77a5d_arm64" + }, + "product_reference": "container-native-virtualization/kubevirt-apiserver-proxy-rhel9@sha256:df49bba89e997fbd4d86d6ae199ecaa19304e99556520fab02e710d06fb77a5d_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-console-plugin-rhel9@sha256:1e08ddf153a2c70f68b8eeb4efbb5c385ac06ef4765012652507e9422c64e4e4_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/kubevirt-console-plugin-rhel9@sha256:1e08ddf153a2c70f68b8eeb4efbb5c385ac06ef4765012652507e9422c64e4e4_arm64" + }, + "product_reference": "container-native-virtualization/kubevirt-console-plugin-rhel9@sha256:1e08ddf153a2c70f68b8eeb4efbb5c385ac06ef4765012652507e9422c64e4e4_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-console-plugin-rhel9@sha256:5ff50d5e496d9fba3996430eaa2584b7522307753f61438081f7718a905f8985_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/kubevirt-console-plugin-rhel9@sha256:5ff50d5e496d9fba3996430eaa2584b7522307753f61438081f7718a905f8985_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-console-plugin-rhel9@sha256:5ff50d5e496d9fba3996430eaa2584b7522307753f61438081f7718a905f8985_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-dpdk-checkup-rhel9@sha256:1ebeabc2e5712960eed6a19cf56e4610de875bf718576a53ad3885c373a419d2_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/kubevirt-dpdk-checkup-rhel9@sha256:1ebeabc2e5712960eed6a19cf56e4610de875bf718576a53ad3885c373a419d2_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-dpdk-checkup-rhel9@sha256:1ebeabc2e5712960eed6a19cf56e4610de875bf718576a53ad3885c373a419d2_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-dpdk-checkup-rhel9@sha256:4ee30e2dabec10b4aa887de5351a0104af178a4746573c51780f36832497cfad_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/kubevirt-dpdk-checkup-rhel9@sha256:4ee30e2dabec10b4aa887de5351a0104af178a4746573c51780f36832497cfad_arm64" + }, + "product_reference": "container-native-virtualization/kubevirt-dpdk-checkup-rhel9@sha256:4ee30e2dabec10b4aa887de5351a0104af178a4746573c51780f36832497cfad_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-ssp-operator-rhel9@sha256:8461ddc209c27171e837f064962f98b744a36fb7c555c55443e03ee9716e68b9_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/kubevirt-ssp-operator-rhel9@sha256:8461ddc209c27171e837f064962f98b744a36fb7c555c55443e03ee9716e68b9_arm64" + }, + "product_reference": "container-native-virtualization/kubevirt-ssp-operator-rhel9@sha256:8461ddc209c27171e837f064962f98b744a36fb7c555c55443e03ee9716e68b9_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-ssp-operator-rhel9@sha256:a63b774dc20d44862587bef79557e760b5e818bf1c6f1ff9dda5580f282e73cf_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/kubevirt-ssp-operator-rhel9@sha256:a63b774dc20d44862587bef79557e760b5e818bf1c6f1ff9dda5580f282e73cf_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-ssp-operator-rhel9@sha256:a63b774dc20d44862587bef79557e760b5e818bf1c6f1ff9dda5580f282e73cf_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:2be1aed89159d415137937dcd205e0acd06261042e70148574596ec731bd1a89_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:2be1aed89159d415137937dcd205e0acd06261042e70148574596ec731bd1a89_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:2be1aed89159d415137937dcd205e0acd06261042e70148574596ec731bd1a89_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:eb76194a2bea993d41b7d7101aee422b63bfd2c73a34472cd73e2952cd093600_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:eb76194a2bea993d41b7d7101aee422b63bfd2c73a34472cd73e2952cd093600_arm64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-create-datavolume-rhel9@sha256:eb76194a2bea993d41b7d7101aee422b63bfd2c73a34472cd73e2952cd093600_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:a01afbb23a956f7ae4bd0af7ea68f43d6f08cc151e1f863a90991f6b6ac8fff2_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:a01afbb23a956f7ae4bd0af7ea68f43d6f08cc151e1f863a90991f6b6ac8fff2_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:a01afbb23a956f7ae4bd0af7ea68f43d6f08cc151e1f863a90991f6b6ac8fff2_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:f83181c96bdc3bcdc7dba03eda53e7b3a5b5fb334bae95d326707c95f8eabead_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:f83181c96bdc3bcdc7dba03eda53e7b3a5b5fb334bae95d326707c95f8eabead_arm64" + }, + "product_reference": "container-native-virtualization/kubevirt-tekton-tasks-disk-virt-customize-rhel9@sha256:f83181c96bdc3bcdc7dba03eda53e7b3a5b5fb334bae95d326707c95f8eabead_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-template-validator-rhel9@sha256:257c5dcdf7f9728a0d8fc2c77dc4b899b4f196f86e9b1bc769b530846166cc94_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/kubevirt-template-validator-rhel9@sha256:257c5dcdf7f9728a0d8fc2c77dc4b899b4f196f86e9b1bc769b530846166cc94_arm64" + }, + "product_reference": "container-native-virtualization/kubevirt-template-validator-rhel9@sha256:257c5dcdf7f9728a0d8fc2c77dc4b899b4f196f86e9b1bc769b530846166cc94_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-template-validator-rhel9@sha256:553e4f6615880542cef2fc04ab26f1b440f4c1e6bb71ef68e61fce3ba3120c94_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/kubevirt-template-validator-rhel9@sha256:553e4f6615880542cef2fc04ab26f1b440f4c1e6bb71ef68e61fce3ba3120c94_amd64" + }, + "product_reference": "container-native-virtualization/kubevirt-template-validator-rhel9@sha256:553e4f6615880542cef2fc04ab26f1b440f4c1e6bb71ef68e61fce3ba3120c94_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/libguestfs-tools-rhel9@sha256:06b9374b8ce3034068f364ec84d3410c9e662dbdcb6363dc2cfd595e2a48312c_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/libguestfs-tools-rhel9@sha256:06b9374b8ce3034068f364ec84d3410c9e662dbdcb6363dc2cfd595e2a48312c_amd64" + }, + "product_reference": "container-native-virtualization/libguestfs-tools-rhel9@sha256:06b9374b8ce3034068f364ec84d3410c9e662dbdcb6363dc2cfd595e2a48312c_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/libguestfs-tools-rhel9@sha256:f6234e9b138bd07ffdeb858eee9b15508560e02d6b9b2a45a79dfcbb7693bdf4_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/libguestfs-tools-rhel9@sha256:f6234e9b138bd07ffdeb858eee9b15508560e02d6b9b2a45a79dfcbb7693bdf4_arm64" + }, + "product_reference": "container-native-virtualization/libguestfs-tools-rhel9@sha256:f6234e9b138bd07ffdeb858eee9b15508560e02d6b9b2a45a79dfcbb7693bdf4_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/mtq-controller-rhel9@sha256:2a6757c0d89993c672c53c386c5908e3f2f471da3f787dd8b2a0eafd28084355_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/mtq-controller-rhel9@sha256:2a6757c0d89993c672c53c386c5908e3f2f471da3f787dd8b2a0eafd28084355_arm64" + }, + "product_reference": "container-native-virtualization/mtq-controller-rhel9@sha256:2a6757c0d89993c672c53c386c5908e3f2f471da3f787dd8b2a0eafd28084355_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/mtq-controller-rhel9@sha256:8463aba4cf1721a44406b3ab319be2b21e78380ff0c161fc7829faed4b601df0_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/mtq-controller-rhel9@sha256:8463aba4cf1721a44406b3ab319be2b21e78380ff0c161fc7829faed4b601df0_amd64" + }, + "product_reference": "container-native-virtualization/mtq-controller-rhel9@sha256:8463aba4cf1721a44406b3ab319be2b21e78380ff0c161fc7829faed4b601df0_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/mtq-lock-server-rhel9@sha256:3f97d7ef78c1ee90cbb5cafa3aa464cd8e9e07e2eb9183d980630e66bde2b4e7_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/mtq-lock-server-rhel9@sha256:3f97d7ef78c1ee90cbb5cafa3aa464cd8e9e07e2eb9183d980630e66bde2b4e7_amd64" + }, + "product_reference": "container-native-virtualization/mtq-lock-server-rhel9@sha256:3f97d7ef78c1ee90cbb5cafa3aa464cd8e9e07e2eb9183d980630e66bde2b4e7_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/mtq-lock-server-rhel9@sha256:c2c88ad879636f4dbb8cc24ef63796fcf10d940a5648424dd2cbeeb49b6d65d3_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/mtq-lock-server-rhel9@sha256:c2c88ad879636f4dbb8cc24ef63796fcf10d940a5648424dd2cbeeb49b6d65d3_arm64" + }, + "product_reference": "container-native-virtualization/mtq-lock-server-rhel9@sha256:c2c88ad879636f4dbb8cc24ef63796fcf10d940a5648424dd2cbeeb49b6d65d3_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/mtq-operator-rhel9@sha256:21902d10de6b84da9dbec1acf074045cfa60b44cd5c29f5552a326ef4794fede_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/mtq-operator-rhel9@sha256:21902d10de6b84da9dbec1acf074045cfa60b44cd5c29f5552a326ef4794fede_amd64" + }, + "product_reference": "container-native-virtualization/mtq-operator-rhel9@sha256:21902d10de6b84da9dbec1acf074045cfa60b44cd5c29f5552a326ef4794fede_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/mtq-operator-rhel9@sha256:56f8a0a7719625d34f404e73cdce09e19afa67b0a6f9ef956ffbdbbb18d5c050_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/mtq-operator-rhel9@sha256:56f8a0a7719625d34f404e73cdce09e19afa67b0a6f9ef956ffbdbbb18d5c050_arm64" + }, + "product_reference": "container-native-virtualization/mtq-operator-rhel9@sha256:56f8a0a7719625d34f404e73cdce09e19afa67b0a6f9ef956ffbdbbb18d5c050_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/multus-dynamic-networks-rhel9@sha256:10c34fff5ef3e3e6aa9b5700151a1b0fc85bb4d2dad54667a99af4270fe387ad_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/multus-dynamic-networks-rhel9@sha256:10c34fff5ef3e3e6aa9b5700151a1b0fc85bb4d2dad54667a99af4270fe387ad_amd64" + }, + "product_reference": "container-native-virtualization/multus-dynamic-networks-rhel9@sha256:10c34fff5ef3e3e6aa9b5700151a1b0fc85bb4d2dad54667a99af4270fe387ad_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/multus-dynamic-networks-rhel9@sha256:29c6536be3f6a5076be0f000061af75828ea8d31333ae831e164531108b1e1e0_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/multus-dynamic-networks-rhel9@sha256:29c6536be3f6a5076be0f000061af75828ea8d31333ae831e164531108b1e1e0_arm64" + }, + "product_reference": "container-native-virtualization/multus-dynamic-networks-rhel9@sha256:29c6536be3f6a5076be0f000061af75828ea8d31333ae831e164531108b1e1e0_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/ovs-cni-plugin-rhel9@sha256:24e288ad70e7d6cba5109a9a8e79ef6a97da84cd01b66b31a8a12ba63ca901c4_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/ovs-cni-plugin-rhel9@sha256:24e288ad70e7d6cba5109a9a8e79ef6a97da84cd01b66b31a8a12ba63ca901c4_amd64" + }, + "product_reference": "container-native-virtualization/ovs-cni-plugin-rhel9@sha256:24e288ad70e7d6cba5109a9a8e79ef6a97da84cd01b66b31a8a12ba63ca901c4_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/ovs-cni-plugin-rhel9@sha256:51ec88809134d233e965121f6dab5b2b89db10609ed6d05907d13eaf8425d40d_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/ovs-cni-plugin-rhel9@sha256:51ec88809134d233e965121f6dab5b2b89db10609ed6d05907d13eaf8425d40d_arm64" + }, + "product_reference": "container-native-virtualization/ovs-cni-plugin-rhel9@sha256:51ec88809134d233e965121f6dab5b2b89db10609ed6d05907d13eaf8425d40d_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/pr-helper-rhel9@sha256:6f7615bd4b6dd71a6154267d20ef8e35f27b39115fc8a54ea94c6f8a402b100e_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/pr-helper-rhel9@sha256:6f7615bd4b6dd71a6154267d20ef8e35f27b39115fc8a54ea94c6f8a402b100e_amd64" + }, + "product_reference": "container-native-virtualization/pr-helper-rhel9@sha256:6f7615bd4b6dd71a6154267d20ef8e35f27b39115fc8a54ea94c6f8a402b100e_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/pr-helper-rhel9@sha256:97a01a00688705bdef507afbf7caee543140ae90faef070c316022359096f093_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/pr-helper-rhel9@sha256:97a01a00688705bdef507afbf7caee543140ae90faef070c316022359096f093_arm64" + }, + "product_reference": "container-native-virtualization/pr-helper-rhel9@sha256:97a01a00688705bdef507afbf7caee543140ae90faef070c316022359096f093_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-api-rhel9@sha256:847c69bc5456e1a01fc9f5ae83db44d79b9e03277f2488bc22db0394940edaa0_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-api-rhel9@sha256:847c69bc5456e1a01fc9f5ae83db44d79b9e03277f2488bc22db0394940edaa0_arm64" + }, + "product_reference": "container-native-virtualization/virt-api-rhel9@sha256:847c69bc5456e1a01fc9f5ae83db44d79b9e03277f2488bc22db0394940edaa0_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-api-rhel9@sha256:dabac6c5ed363aec8fd031695eac4288c9aba686b82f7df59d89bf6ac24ea1f2_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-api-rhel9@sha256:dabac6c5ed363aec8fd031695eac4288c9aba686b82f7df59d89bf6ac24ea1f2_amd64" + }, + "product_reference": "container-native-virtualization/virt-api-rhel9@sha256:dabac6c5ed363aec8fd031695eac4288c9aba686b82f7df59d89bf6ac24ea1f2_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-artifacts-server-rhel9@sha256:781f56b1ec0a4120c09b0fb9254f1b9a8184374ee41c9d800f15e3ec6e31131d_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-artifacts-server-rhel9@sha256:781f56b1ec0a4120c09b0fb9254f1b9a8184374ee41c9d800f15e3ec6e31131d_arm64" + }, + "product_reference": "container-native-virtualization/virt-artifacts-server-rhel9@sha256:781f56b1ec0a4120c09b0fb9254f1b9a8184374ee41c9d800f15e3ec6e31131d_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-artifacts-server-rhel9@sha256:e177d1528ea5d6ee5f5f0db7c4e93ed4482f99c821889559808a64c4c2287ac9_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-artifacts-server-rhel9@sha256:e177d1528ea5d6ee5f5f0db7c4e93ed4482f99c821889559808a64c4c2287ac9_amd64" + }, + "product_reference": "container-native-virtualization/virt-artifacts-server-rhel9@sha256:e177d1528ea5d6ee5f5f0db7c4e93ed4482f99c821889559808a64c4c2287ac9_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-apiserver-rhel9@sha256:9985bb428bc69ebb2c412e6abc91718208d192c1ca2fa820e2d17f42e3e43252_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-cdi-apiserver-rhel9@sha256:9985bb428bc69ebb2c412e6abc91718208d192c1ca2fa820e2d17f42e3e43252_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-apiserver-rhel9@sha256:9985bb428bc69ebb2c412e6abc91718208d192c1ca2fa820e2d17f42e3e43252_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-apiserver-rhel9@sha256:f0c2b09e5890611ed795a44d939a5fb3dcc2abe980a87daf257a87235ce3d293_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-cdi-apiserver-rhel9@sha256:f0c2b09e5890611ed795a44d939a5fb3dcc2abe980a87daf257a87235ce3d293_arm64" + }, + "product_reference": "container-native-virtualization/virt-cdi-apiserver-rhel9@sha256:f0c2b09e5890611ed795a44d939a5fb3dcc2abe980a87daf257a87235ce3d293_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-cloner-rhel9@sha256:70a7c00ba55fb485b4f34d05b90029a15c779a3666c9026f32558a0666511b98_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-cdi-cloner-rhel9@sha256:70a7c00ba55fb485b4f34d05b90029a15c779a3666c9026f32558a0666511b98_arm64" + }, + "product_reference": "container-native-virtualization/virt-cdi-cloner-rhel9@sha256:70a7c00ba55fb485b4f34d05b90029a15c779a3666c9026f32558a0666511b98_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-cloner-rhel9@sha256:856dfedb2a4432a14271c2a35c2c12ea4d86f946866cf27b176f775a8c11eae8_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-cdi-cloner-rhel9@sha256:856dfedb2a4432a14271c2a35c2c12ea4d86f946866cf27b176f775a8c11eae8_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-cloner-rhel9@sha256:856dfedb2a4432a14271c2a35c2c12ea4d86f946866cf27b176f775a8c11eae8_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-controller-rhel9@sha256:261b94951bf9c04509459949611444bf68ddc079083b279d1a058442094bcbf1_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-cdi-controller-rhel9@sha256:261b94951bf9c04509459949611444bf68ddc079083b279d1a058442094bcbf1_arm64" + }, + "product_reference": "container-native-virtualization/virt-cdi-controller-rhel9@sha256:261b94951bf9c04509459949611444bf68ddc079083b279d1a058442094bcbf1_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-controller-rhel9@sha256:690caab68784861492af8ba0106eae24f90d51800d3dd0d46d5a27ea8436bf80_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-cdi-controller-rhel9@sha256:690caab68784861492af8ba0106eae24f90d51800d3dd0d46d5a27ea8436bf80_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-controller-rhel9@sha256:690caab68784861492af8ba0106eae24f90d51800d3dd0d46d5a27ea8436bf80_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-importer-rhel9@sha256:2aa9cc79fc71dc442fa5cf0268f2ca94ec2fb73717aff18b64ff6b85f59e2b0f_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-cdi-importer-rhel9@sha256:2aa9cc79fc71dc442fa5cf0268f2ca94ec2fb73717aff18b64ff6b85f59e2b0f_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-importer-rhel9@sha256:2aa9cc79fc71dc442fa5cf0268f2ca94ec2fb73717aff18b64ff6b85f59e2b0f_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-importer-rhel9@sha256:65360451c9e6ca82c0e165049cca1ac82b5b8b846038dec5be8cb0deb3b60443_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-cdi-importer-rhel9@sha256:65360451c9e6ca82c0e165049cca1ac82b5b8b846038dec5be8cb0deb3b60443_arm64" + }, + "product_reference": "container-native-virtualization/virt-cdi-importer-rhel9@sha256:65360451c9e6ca82c0e165049cca1ac82b5b8b846038dec5be8cb0deb3b60443_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-operator-rhel9@sha256:c03251c908e51eafec15f0eab701562dd2e5d5a5889e24f1750ff64317efe2eb_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-cdi-operator-rhel9@sha256:c03251c908e51eafec15f0eab701562dd2e5d5a5889e24f1750ff64317efe2eb_arm64" + }, + "product_reference": "container-native-virtualization/virt-cdi-operator-rhel9@sha256:c03251c908e51eafec15f0eab701562dd2e5d5a5889e24f1750ff64317efe2eb_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-operator-rhel9@sha256:f614b289dc70fd7c427816182233e3a35349df27563d2bcfedb7543b6ae24e9c_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-cdi-operator-rhel9@sha256:f614b289dc70fd7c427816182233e3a35349df27563d2bcfedb7543b6ae24e9c_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-operator-rhel9@sha256:f614b289dc70fd7c427816182233e3a35349df27563d2bcfedb7543b6ae24e9c_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-uploadproxy-rhel9@sha256:6701a59bdac292d3e26d8ce02bab93b559d520fcfceea6ce5d6ae4cc847a7a91_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-cdi-uploadproxy-rhel9@sha256:6701a59bdac292d3e26d8ce02bab93b559d520fcfceea6ce5d6ae4cc847a7a91_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-uploadproxy-rhel9@sha256:6701a59bdac292d3e26d8ce02bab93b559d520fcfceea6ce5d6ae4cc847a7a91_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-uploadproxy-rhel9@sha256:c4e28993d68addf246f14b417a3c2f64a836d104ff0af8ced02665b8337016d1_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-cdi-uploadproxy-rhel9@sha256:c4e28993d68addf246f14b417a3c2f64a836d104ff0af8ced02665b8337016d1_arm64" + }, + "product_reference": "container-native-virtualization/virt-cdi-uploadproxy-rhel9@sha256:c4e28993d68addf246f14b417a3c2f64a836d104ff0af8ced02665b8337016d1_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-uploadserver-rhel9@sha256:2e0bde18f05f58f896f9badfbbe3a7be5e0a4e3fbcf1df64d5e1cffdccf35c37_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-cdi-uploadserver-rhel9@sha256:2e0bde18f05f58f896f9badfbbe3a7be5e0a4e3fbcf1df64d5e1cffdccf35c37_arm64" + }, + "product_reference": "container-native-virtualization/virt-cdi-uploadserver-rhel9@sha256:2e0bde18f05f58f896f9badfbbe3a7be5e0a4e3fbcf1df64d5e1cffdccf35c37_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-cdi-uploadserver-rhel9@sha256:7d20c993d3f974d1523812b7147eb24c1ac7aaa6d15bc9a7bd2a087bb14ef93c_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-cdi-uploadserver-rhel9@sha256:7d20c993d3f974d1523812b7147eb24c1ac7aaa6d15bc9a7bd2a087bb14ef93c_amd64" + }, + "product_reference": "container-native-virtualization/virt-cdi-uploadserver-rhel9@sha256:7d20c993d3f974d1523812b7147eb24c1ac7aaa6d15bc9a7bd2a087bb14ef93c_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-controller-rhel9@sha256:146139d2edcc77121bf39770c6550e0bb8c090b826e1cee77c5b963bbc15982c_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-controller-rhel9@sha256:146139d2edcc77121bf39770c6550e0bb8c090b826e1cee77c5b963bbc15982c_arm64" + }, + "product_reference": "container-native-virtualization/virt-controller-rhel9@sha256:146139d2edcc77121bf39770c6550e0bb8c090b826e1cee77c5b963bbc15982c_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-controller-rhel9@sha256:e8119a7de44ca6d83a6d56bcde9283c69e664f24b230dbd8f894408cf0e7a8f8_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-controller-rhel9@sha256:e8119a7de44ca6d83a6d56bcde9283c69e664f24b230dbd8f894408cf0e7a8f8_amd64" + }, + "product_reference": "container-native-virtualization/virt-controller-rhel9@sha256:e8119a7de44ca6d83a6d56bcde9283c69e664f24b230dbd8f894408cf0e7a8f8_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-exportproxy-rhel9@sha256:2568e75702e1e9960d211b6c5c01f994f5d1a3a671a8c5b9e05122c29e421d61_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-exportproxy-rhel9@sha256:2568e75702e1e9960d211b6c5c01f994f5d1a3a671a8c5b9e05122c29e421d61_arm64" + }, + "product_reference": "container-native-virtualization/virt-exportproxy-rhel9@sha256:2568e75702e1e9960d211b6c5c01f994f5d1a3a671a8c5b9e05122c29e421d61_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-exportproxy-rhel9@sha256:52918efebc898b114cb630130e019fe16a2656d1ad95f27d83e52ea7a08036df_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-exportproxy-rhel9@sha256:52918efebc898b114cb630130e019fe16a2656d1ad95f27d83e52ea7a08036df_amd64" + }, + "product_reference": "container-native-virtualization/virt-exportproxy-rhel9@sha256:52918efebc898b114cb630130e019fe16a2656d1ad95f27d83e52ea7a08036df_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-exportserver-rhel9@sha256:7ae4588e3f7fd06b14c8c2c21bed8f85cb3337b5fc835b6c0dfe027d31ac96db_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-exportserver-rhel9@sha256:7ae4588e3f7fd06b14c8c2c21bed8f85cb3337b5fc835b6c0dfe027d31ac96db_arm64" + }, + "product_reference": "container-native-virtualization/virt-exportserver-rhel9@sha256:7ae4588e3f7fd06b14c8c2c21bed8f85cb3337b5fc835b6c0dfe027d31ac96db_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-exportserver-rhel9@sha256:b0945c760d7d41840911cd03d0fac101385aba33f1978b47b14d6c9e60b3df4d_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-exportserver-rhel9@sha256:b0945c760d7d41840911cd03d0fac101385aba33f1978b47b14d6c9e60b3df4d_amd64" + }, + "product_reference": "container-native-virtualization/virt-exportserver-rhel9@sha256:b0945c760d7d41840911cd03d0fac101385aba33f1978b47b14d6c9e60b3df4d_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-handler-rhel9@sha256:22fcd5639f656bcd66e6f185094eddfc6bf035c84073f2734f1ab0243ab0966b_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-handler-rhel9@sha256:22fcd5639f656bcd66e6f185094eddfc6bf035c84073f2734f1ab0243ab0966b_arm64" + }, + "product_reference": "container-native-virtualization/virt-handler-rhel9@sha256:22fcd5639f656bcd66e6f185094eddfc6bf035c84073f2734f1ab0243ab0966b_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-handler-rhel9@sha256:63c6ef708aa0c7e939131ad891d565dfda386cbabad8ab31996686b656dc0a55_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-handler-rhel9@sha256:63c6ef708aa0c7e939131ad891d565dfda386cbabad8ab31996686b656dc0a55_amd64" + }, + "product_reference": "container-native-virtualization/virt-handler-rhel9@sha256:63c6ef708aa0c7e939131ad891d565dfda386cbabad8ab31996686b656dc0a55_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-launcher-rhel9@sha256:34a4485912699707f38d3baef69ce08809c6d32af98a32c22b74d81240ecf444_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-launcher-rhel9@sha256:34a4485912699707f38d3baef69ce08809c6d32af98a32c22b74d81240ecf444_amd64" + }, + "product_reference": "container-native-virtualization/virt-launcher-rhel9@sha256:34a4485912699707f38d3baef69ce08809c6d32af98a32c22b74d81240ecf444_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-launcher-rhel9@sha256:9a501b20f49acb0668d1a9b102aa52893ca3a1bad75857fd40cedcfa2ccdadfc_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-launcher-rhel9@sha256:9a501b20f49acb0668d1a9b102aa52893ca3a1bad75857fd40cedcfa2ccdadfc_arm64" + }, + "product_reference": "container-native-virtualization/virt-launcher-rhel9@sha256:9a501b20f49acb0668d1a9b102aa52893ca3a1bad75857fd40cedcfa2ccdadfc_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-operator-rhel9@sha256:162e02e3bb111ae8fbb76d6348cd5dd2d521cefdfe5dd4a97c44e0f6c26d3636_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-operator-rhel9@sha256:162e02e3bb111ae8fbb76d6348cd5dd2d521cefdfe5dd4a97c44e0f6c26d3636_arm64" + }, + "product_reference": "container-native-virtualization/virt-operator-rhel9@sha256:162e02e3bb111ae8fbb76d6348cd5dd2d521cefdfe5dd4a97c44e0f6c26d3636_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virt-operator-rhel9@sha256:a1f027b1998c32efddc27bfdc84e8825c625511393756795fcaaeb4673a71c18_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virt-operator-rhel9@sha256:a1f027b1998c32efddc27bfdc84e8825c625511393756795fcaaeb4673a71c18_amd64" + }, + "product_reference": "container-native-virtualization/virt-operator-rhel9@sha256:a1f027b1998c32efddc27bfdc84e8825c625511393756795fcaaeb4673a71c18_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virtio-win-rhel9@sha256:6cde931727a331e098d4ad977f0fbd0179d65165cff5eb05f5102eabdd2de4c9_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virtio-win-rhel9@sha256:6cde931727a331e098d4ad977f0fbd0179d65165cff5eb05f5102eabdd2de4c9_arm64" + }, + "product_reference": "container-native-virtualization/virtio-win-rhel9@sha256:6cde931727a331e098d4ad977f0fbd0179d65165cff5eb05f5102eabdd2de4c9_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/virtio-win-rhel9@sha256:ce0800b46eddaabb5a726a3e95cf2a3f415931ebc0cded71638e295de6c4c835_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/virtio-win-rhel9@sha256:ce0800b46eddaabb5a726a3e95cf2a3f415931ebc0cded71638e295de6c4c835_amd64" + }, + "product_reference": "container-native-virtualization/virtio-win-rhel9@sha256:ce0800b46eddaabb5a726a3e95cf2a3f415931ebc0cded71638e295de6c4c835_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/vm-console-proxy-rhel9@sha256:19390c64a37e25706fa5cd15df97dd26cb2f89fef96a4bcba481c72177c3b8d0_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/vm-console-proxy-rhel9@sha256:19390c64a37e25706fa5cd15df97dd26cb2f89fef96a4bcba481c72177c3b8d0_amd64" + }, + "product_reference": "container-native-virtualization/vm-console-proxy-rhel9@sha256:19390c64a37e25706fa5cd15df97dd26cb2f89fef96a4bcba481c72177c3b8d0_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/vm-console-proxy-rhel9@sha256:4a81ed581ef3ef081688216a8ee2f4cc78003b25f359b96cdd2853b833183c28_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/vm-console-proxy-rhel9@sha256:4a81ed581ef3ef081688216a8ee2f4cc78003b25f359b96cdd2853b833183c28_arm64" + }, + "product_reference": "container-native-virtualization/vm-console-proxy-rhel9@sha256:4a81ed581ef3ef081688216a8ee2f4cc78003b25f359b96cdd2853b833183c28_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/vm-network-latency-checkup-rhel9@sha256:90a3f832b1c015ed6b5463fbef1c2ecc52b99bb41240b70d859f13c416e45adb_amd64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/vm-network-latency-checkup-rhel9@sha256:90a3f832b1c015ed6b5463fbef1c2ecc52b99bb41240b70d859f13c416e45adb_amd64" + }, + "product_reference": "container-native-virtualization/vm-network-latency-checkup-rhel9@sha256:90a3f832b1c015ed6b5463fbef1c2ecc52b99bb41240b70d859f13c416e45adb_amd64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/vm-network-latency-checkup-rhel9@sha256:94a316315c532d7e966091008d4e6b92cb1c5ae0fd2d0a32839c1c962c8dd293_arm64 as a component of CNV 4.14 for RHEL 9", + "product_id": "9Base-CNV-4.14:container-native-virtualization/vm-network-latency-checkup-rhel9@sha256:94a316315c532d7e966091008d4e6b92cb1c5ae0fd2d0a32839c1c962c8dd293_arm64" + }, + "product_reference": "container-native-virtualization/vm-network-latency-checkup-rhel9@sha256:94a316315c532d7e966091008d4e6b92cb1c5ae0fd2d0a32839c1c962c8dd293_arm64", + "relates_to_product_reference": "9Base-CNV-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el9eap.src as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el9eap.src" + }, + "product_reference": "eap7-netty-0:4.1.94-2.Final_redhat_00003.1.el9eap.src", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-buffer-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-buffer-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-buffer-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-codec-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-codec-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-dns-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-codec-dns-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-codec-dns-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-haproxy-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-codec-haproxy-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-codec-haproxy-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-http-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-codec-http-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-codec-http-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-http2-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-codec-http2-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-codec-http2-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-memcache-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-codec-memcache-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-codec-memcache-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-mqtt-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-codec-mqtt-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-codec-mqtt-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-redis-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-codec-redis-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-codec-redis-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-smtp-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-codec-smtp-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-codec-smtp-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-socks-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-codec-socks-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-codec-socks-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-stomp-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-codec-stomp-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-codec-stomp-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-codec-xml-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-codec-xml-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-codec-xml-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-common-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-common-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-common-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-handler-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-handler-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-handler-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-handler-proxy-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-handler-proxy-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-handler-proxy-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-resolver-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-resolver-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-resolver-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-resolver-dns-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-resolver-dns-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-resolver-dns-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-resolver-dns-classes-macos-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-resolver-dns-classes-macos-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-resolver-dns-classes-macos-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-transport-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-transport-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-classes-epoll-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-transport-classes-epoll-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-transport-classes-epoll-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-classes-kqueue-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-transport-classes-kqueue-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-transport-classes-kqueue-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el9eap.src as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el9eap.src" + }, + "product_reference": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el9eap.src", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el9eap.x86_64 as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el9eap.x86_64" + }, + "product_reference": "eap7-netty-transport-native-epoll-0:4.1.94-2.Final_redhat_00003.1.el9eap.x86_64", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-native-epoll-debuginfo-0:4.1.94-2.Final_redhat_00003.1.el9eap.x86_64 as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-transport-native-epoll-debuginfo-0:4.1.94-2.Final_redhat_00003.1.el9eap.x86_64" + }, + "product_reference": "eap7-netty-transport-native-epoll-debuginfo-0:4.1.94-2.Final_redhat_00003.1.el9eap.x86_64", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-native-unix-common-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-transport-native-unix-common-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-transport-native-unix-common-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-rxtx-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-transport-rxtx-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-transport-rxtx-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-sctp-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-transport-sctp-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-transport-sctp-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-netty-transport-udt-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-netty-transport-udt-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch" + }, + "product_reference": "eap7-netty-transport-udt-0:4.1.94-2.Final_redhat_00003.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el9eap.noarch" + }, + "product_reference": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el9eap.src as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el9eap.src" + }, + "product_reference": "eap7-undertow-0:2.2.26-2.SP2_redhat_00001.1.el9eap.src", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch" + }, + "product_reference": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el9eap.src as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el9eap.src" + }, + "product_reference": "eap7-wildfly-0:7.4.13-10.GA_redhat_00002.1.el9eap.src", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-wildfly-java-jdk11-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-wildfly-java-jdk11-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch" + }, + "product_reference": "eap7-wildfly-java-jdk11-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-wildfly-java-jdk17-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-wildfly-java-jdk17-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch" + }, + "product_reference": "eap7-wildfly-java-jdk17-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-wildfly-java-jdk8-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-wildfly-java-jdk8-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch" + }, + "product_reference": "eap7-wildfly-java-jdk8-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "eap7-wildfly-modules-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch as a component of Red Hat JBoss EAP 7.4 for RHEL 9", + "product_id": "9Base-JBEAP-7.4:eap7-wildfly-modules-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch" + }, + "product_reference": "eap7-wildfly-modules-0:7.4.13-10.GA_redhat_00002.1.el9eap.noarch", + "relates_to_product_reference": "9Base-JBEAP-7.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el9jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 9", + "product_id": "9Base-JWS-5.7:jws5-tomcat-0:9.0.62-16.redhat_00014.1.el9jws.noarch" + }, + "product_reference": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "relates_to_product_reference": "9Base-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el9jws.src as a component of Red Hat JBoss Web Server 5.7 for RHEL 9", + "product_id": "9Base-JWS-5.7:jws5-tomcat-0:9.0.62-16.redhat_00014.1.el9jws.src" + }, + "product_reference": "jws5-tomcat-0:9.0.62-16.redhat_00014.1.el9jws.src", + "relates_to_product_reference": "9Base-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-admin-webapps-0:9.0.62-16.redhat_00014.1.el9jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 9", + "product_id": "9Base-JWS-5.7:jws5-tomcat-admin-webapps-0:9.0.62-16.redhat_00014.1.el9jws.noarch" + }, + "product_reference": "jws5-tomcat-admin-webapps-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "relates_to_product_reference": "9Base-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-docs-webapp-0:9.0.62-16.redhat_00014.1.el9jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 9", + "product_id": "9Base-JWS-5.7:jws5-tomcat-docs-webapp-0:9.0.62-16.redhat_00014.1.el9jws.noarch" + }, + "product_reference": "jws5-tomcat-docs-webapp-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "relates_to_product_reference": "9Base-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-el-3.0-api-0:9.0.62-16.redhat_00014.1.el9jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 9", + "product_id": "9Base-JWS-5.7:jws5-tomcat-el-3.0-api-0:9.0.62-16.redhat_00014.1.el9jws.noarch" + }, + "product_reference": "jws5-tomcat-el-3.0-api-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "relates_to_product_reference": "9Base-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-javadoc-0:9.0.62-16.redhat_00014.1.el9jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 9", + "product_id": "9Base-JWS-5.7:jws5-tomcat-javadoc-0:9.0.62-16.redhat_00014.1.el9jws.noarch" + }, + "product_reference": "jws5-tomcat-javadoc-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "relates_to_product_reference": "9Base-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-jsp-2.3-api-0:9.0.62-16.redhat_00014.1.el9jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 9", + "product_id": "9Base-JWS-5.7:jws5-tomcat-jsp-2.3-api-0:9.0.62-16.redhat_00014.1.el9jws.noarch" + }, + "product_reference": "jws5-tomcat-jsp-2.3-api-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "relates_to_product_reference": "9Base-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-lib-0:9.0.62-16.redhat_00014.1.el9jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 9", + "product_id": "9Base-JWS-5.7:jws5-tomcat-lib-0:9.0.62-16.redhat_00014.1.el9jws.noarch" + }, + "product_reference": "jws5-tomcat-lib-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "relates_to_product_reference": "9Base-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-selinux-0:9.0.62-16.redhat_00014.1.el9jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 9", + "product_id": "9Base-JWS-5.7:jws5-tomcat-selinux-0:9.0.62-16.redhat_00014.1.el9jws.noarch" + }, + "product_reference": "jws5-tomcat-selinux-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "relates_to_product_reference": "9Base-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-servlet-4.0-api-0:9.0.62-16.redhat_00014.1.el9jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 9", + "product_id": "9Base-JWS-5.7:jws5-tomcat-servlet-4.0-api-0:9.0.62-16.redhat_00014.1.el9jws.noarch" + }, + "product_reference": "jws5-tomcat-servlet-4.0-api-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "relates_to_product_reference": "9Base-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jws5-tomcat-webapps-0:9.0.62-16.redhat_00014.1.el9jws.noarch as a component of Red Hat JBoss Web Server 5.7 for RHEL 9", + "product_id": "9Base-JWS-5.7:jws5-tomcat-webapps-0:9.0.62-16.redhat_00014.1.el9jws.noarch" + }, + "product_reference": "jws5-tomcat-webapps-0:9.0.62-16.redhat_00014.1.el9jws.noarch", + "relates_to_product_reference": "9Base-JWS-5.7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kmm/kernel-module-management-hub-operator-bundle@sha256:4b9879b5a7d6003b0c9586a11c2062a78794a6f92fe9ecc14da80e04149a62f8_arm64 as a component of kmm 1.1 for RHEL 9", + "product_id": "9Base-KMM-1.1:kmm/kernel-module-management-hub-operator-bundle@sha256:4b9879b5a7d6003b0c9586a11c2062a78794a6f92fe9ecc14da80e04149a62f8_arm64" + }, + "product_reference": "kmm/kernel-module-management-hub-operator-bundle@sha256:4b9879b5a7d6003b0c9586a11c2062a78794a6f92fe9ecc14da80e04149a62f8_arm64", + "relates_to_product_reference": "9Base-KMM-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kmm/kernel-module-management-hub-operator-bundle@sha256:7a2bbedd258140f7767e206523d21fdf407ec5596f10ad3c0936c92863939313_amd64 as a component of kmm 1.1 for RHEL 9", + "product_id": "9Base-KMM-1.1:kmm/kernel-module-management-hub-operator-bundle@sha256:7a2bbedd258140f7767e206523d21fdf407ec5596f10ad3c0936c92863939313_amd64" + }, + "product_reference": "kmm/kernel-module-management-hub-operator-bundle@sha256:7a2bbedd258140f7767e206523d21fdf407ec5596f10ad3c0936c92863939313_amd64", + "relates_to_product_reference": "9Base-KMM-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kmm/kernel-module-management-hub-operator-bundle@sha256:b8b8d224ada7a865ddf79b36b493c3fc93f6b89f03dcb5bf6329ae2f538002aa_ppc64le as a component of kmm 1.1 for RHEL 9", + "product_id": "9Base-KMM-1.1:kmm/kernel-module-management-hub-operator-bundle@sha256:b8b8d224ada7a865ddf79b36b493c3fc93f6b89f03dcb5bf6329ae2f538002aa_ppc64le" + }, + "product_reference": "kmm/kernel-module-management-hub-operator-bundle@sha256:b8b8d224ada7a865ddf79b36b493c3fc93f6b89f03dcb5bf6329ae2f538002aa_ppc64le", + "relates_to_product_reference": "9Base-KMM-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kmm/kernel-module-management-hub-rhel9-operator@sha256:6793da0209a2427a3280287c514e0f6c1f4927e65fd2079d7b1528b1d074cba6_ppc64le as a component of kmm 1.1 for RHEL 9", + "product_id": "9Base-KMM-1.1:kmm/kernel-module-management-hub-rhel9-operator@sha256:6793da0209a2427a3280287c514e0f6c1f4927e65fd2079d7b1528b1d074cba6_ppc64le" + }, + "product_reference": "kmm/kernel-module-management-hub-rhel9-operator@sha256:6793da0209a2427a3280287c514e0f6c1f4927e65fd2079d7b1528b1d074cba6_ppc64le", + "relates_to_product_reference": "9Base-KMM-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kmm/kernel-module-management-hub-rhel9-operator@sha256:cb0727de29d42ac9c79bf51474b72fb55f04fdc2a05876e944443669750f5ee6_arm64 as a component of kmm 1.1 for RHEL 9", + "product_id": "9Base-KMM-1.1:kmm/kernel-module-management-hub-rhel9-operator@sha256:cb0727de29d42ac9c79bf51474b72fb55f04fdc2a05876e944443669750f5ee6_arm64" + }, + "product_reference": "kmm/kernel-module-management-hub-rhel9-operator@sha256:cb0727de29d42ac9c79bf51474b72fb55f04fdc2a05876e944443669750f5ee6_arm64", + "relates_to_product_reference": "9Base-KMM-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kmm/kernel-module-management-hub-rhel9-operator@sha256:ecc37b90a477748766aa11784966f695b83e6e1a2d4eca48fd9167f920c33615_amd64 as a component of kmm 1.1 for RHEL 9", + "product_id": "9Base-KMM-1.1:kmm/kernel-module-management-hub-rhel9-operator@sha256:ecc37b90a477748766aa11784966f695b83e6e1a2d4eca48fd9167f920c33615_amd64" + }, + "product_reference": "kmm/kernel-module-management-hub-rhel9-operator@sha256:ecc37b90a477748766aa11784966f695b83e6e1a2d4eca48fd9167f920c33615_amd64", + "relates_to_product_reference": "9Base-KMM-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kmm/kernel-module-management-must-gather-rhel9@sha256:0c17aa8140a586ec4271f10f252e65a380f25cc73d79a3ab20e37b4cf5b0f51c_amd64 as a component of kmm 1.1 for RHEL 9", + "product_id": "9Base-KMM-1.1:kmm/kernel-module-management-must-gather-rhel9@sha256:0c17aa8140a586ec4271f10f252e65a380f25cc73d79a3ab20e37b4cf5b0f51c_amd64" + }, + "product_reference": "kmm/kernel-module-management-must-gather-rhel9@sha256:0c17aa8140a586ec4271f10f252e65a380f25cc73d79a3ab20e37b4cf5b0f51c_amd64", + "relates_to_product_reference": "9Base-KMM-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kmm/kernel-module-management-must-gather-rhel9@sha256:45c6a0a49602a2866490ae59036b5a585d243cdc7e802055b34eb2e8ebbbc98d_ppc64le as a component of kmm 1.1 for RHEL 9", + "product_id": "9Base-KMM-1.1:kmm/kernel-module-management-must-gather-rhel9@sha256:45c6a0a49602a2866490ae59036b5a585d243cdc7e802055b34eb2e8ebbbc98d_ppc64le" + }, + "product_reference": "kmm/kernel-module-management-must-gather-rhel9@sha256:45c6a0a49602a2866490ae59036b5a585d243cdc7e802055b34eb2e8ebbbc98d_ppc64le", + "relates_to_product_reference": "9Base-KMM-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kmm/kernel-module-management-must-gather-rhel9@sha256:f9cec2eac1dbd3d19ce6e9d7d7c654f8eba96882dc3a5df9ad5b8cbd02e88bb9_arm64 as a component of kmm 1.1 for RHEL 9", + "product_id": "9Base-KMM-1.1:kmm/kernel-module-management-must-gather-rhel9@sha256:f9cec2eac1dbd3d19ce6e9d7d7c654f8eba96882dc3a5df9ad5b8cbd02e88bb9_arm64" + }, + "product_reference": "kmm/kernel-module-management-must-gather-rhel9@sha256:f9cec2eac1dbd3d19ce6e9d7d7c654f8eba96882dc3a5df9ad5b8cbd02e88bb9_arm64", + "relates_to_product_reference": "9Base-KMM-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kmm/kernel-module-management-operator-bundle@sha256:6e3792f846dd8f3b3a2117b46b8abcfe85ad5118eac0acf83bb007390d12fd05_amd64 as a component of kmm 1.1 for RHEL 9", + "product_id": "9Base-KMM-1.1:kmm/kernel-module-management-operator-bundle@sha256:6e3792f846dd8f3b3a2117b46b8abcfe85ad5118eac0acf83bb007390d12fd05_amd64" + }, + "product_reference": "kmm/kernel-module-management-operator-bundle@sha256:6e3792f846dd8f3b3a2117b46b8abcfe85ad5118eac0acf83bb007390d12fd05_amd64", + "relates_to_product_reference": "9Base-KMM-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kmm/kernel-module-management-operator-bundle@sha256:c1fbd5600ce0eaa118012e9d7a0a3e7b4d75b5c78b369f6cb3525aee7eae93a7_ppc64le as a component of kmm 1.1 for RHEL 9", + "product_id": "9Base-KMM-1.1:kmm/kernel-module-management-operator-bundle@sha256:c1fbd5600ce0eaa118012e9d7a0a3e7b4d75b5c78b369f6cb3525aee7eae93a7_ppc64le" + }, + "product_reference": "kmm/kernel-module-management-operator-bundle@sha256:c1fbd5600ce0eaa118012e9d7a0a3e7b4d75b5c78b369f6cb3525aee7eae93a7_ppc64le", + "relates_to_product_reference": "9Base-KMM-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kmm/kernel-module-management-operator-bundle@sha256:e0aa6130e69dd838e31a9a8800ed518c00c73f67a24a4bcf0d572c757d68b5ee_arm64 as a component of kmm 1.1 for RHEL 9", + "product_id": "9Base-KMM-1.1:kmm/kernel-module-management-operator-bundle@sha256:e0aa6130e69dd838e31a9a8800ed518c00c73f67a24a4bcf0d572c757d68b5ee_arm64" + }, + "product_reference": "kmm/kernel-module-management-operator-bundle@sha256:e0aa6130e69dd838e31a9a8800ed518c00c73f67a24a4bcf0d572c757d68b5ee_arm64", + "relates_to_product_reference": "9Base-KMM-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kmm/kernel-module-management-rhel9-operator@sha256:0964ed8ca8a915f0f2b3ac4cc8aa7d885e541595a9ed959a18fffc771f591716_ppc64le as a component of kmm 1.1 for RHEL 9", + "product_id": "9Base-KMM-1.1:kmm/kernel-module-management-rhel9-operator@sha256:0964ed8ca8a915f0f2b3ac4cc8aa7d885e541595a9ed959a18fffc771f591716_ppc64le" + }, + "product_reference": "kmm/kernel-module-management-rhel9-operator@sha256:0964ed8ca8a915f0f2b3ac4cc8aa7d885e541595a9ed959a18fffc771f591716_ppc64le", + "relates_to_product_reference": "9Base-KMM-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kmm/kernel-module-management-rhel9-operator@sha256:b2c25eb3dff374616b87f57caec0215af803b725b1f01784de808ee4d23068c8_amd64 as a component of kmm 1.1 for RHEL 9", + "product_id": "9Base-KMM-1.1:kmm/kernel-module-management-rhel9-operator@sha256:b2c25eb3dff374616b87f57caec0215af803b725b1f01784de808ee4d23068c8_amd64" + }, + "product_reference": "kmm/kernel-module-management-rhel9-operator@sha256:b2c25eb3dff374616b87f57caec0215af803b725b1f01784de808ee4d23068c8_amd64", + "relates_to_product_reference": "9Base-KMM-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kmm/kernel-module-management-rhel9-operator@sha256:c0062d91d15628ccc35133b67bcedb82076ed22b5c180fdfbae360c8e25e8a47_arm64 as a component of kmm 1.1 for RHEL 9", + "product_id": "9Base-KMM-1.1:kmm/kernel-module-management-rhel9-operator@sha256:c0062d91d15628ccc35133b67bcedb82076ed22b5c180fdfbae360c8e25e8a47_arm64" + }, + "product_reference": "kmm/kernel-module-management-rhel9-operator@sha256:c0062d91d15628ccc35133b67bcedb82076ed22b5c180fdfbae360c8e25e8a47_arm64", + "relates_to_product_reference": "9Base-KMM-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kmm/kernel-module-management-signing-rhel9@sha256:3feee1b84375b7e5e936bab7d4d2340be0452bbfda959e5d1aec520f0f606887_ppc64le as a component of kmm 1.1 for RHEL 9", + "product_id": "9Base-KMM-1.1:kmm/kernel-module-management-signing-rhel9@sha256:3feee1b84375b7e5e936bab7d4d2340be0452bbfda959e5d1aec520f0f606887_ppc64le" + }, + "product_reference": "kmm/kernel-module-management-signing-rhel9@sha256:3feee1b84375b7e5e936bab7d4d2340be0452bbfda959e5d1aec520f0f606887_ppc64le", + "relates_to_product_reference": "9Base-KMM-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kmm/kernel-module-management-signing-rhel9@sha256:8f7e525974f388a0c33e227e9cd283b16edcf085819f89a37e41f27a872fa832_amd64 as a component of kmm 1.1 for RHEL 9", + "product_id": "9Base-KMM-1.1:kmm/kernel-module-management-signing-rhel9@sha256:8f7e525974f388a0c33e227e9cd283b16edcf085819f89a37e41f27a872fa832_amd64" + }, + "product_reference": "kmm/kernel-module-management-signing-rhel9@sha256:8f7e525974f388a0c33e227e9cd283b16edcf085819f89a37e41f27a872fa832_amd64", + "relates_to_product_reference": "9Base-KMM-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kmm/kernel-module-management-signing-rhel9@sha256:fe37c0a672e97518b01abf7b998d50dd79e47bcd7e1d60950d64b812a599f8cd_arm64 as a component of kmm 1.1 for RHEL 9", + "product_id": "9Base-KMM-1.1:kmm/kernel-module-management-signing-rhel9@sha256:fe37c0a672e97518b01abf7b998d50dd79e47bcd7e1d60950d64b812a599f8cd_arm64" + }, + "product_reference": "kmm/kernel-module-management-signing-rhel9@sha256:fe37c0a672e97518b01abf7b998d50dd79e47bcd7e1d60950d64b812a599f8cd_arm64", + "relates_to_product_reference": "9Base-KMM-1.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mta/mta-hub-rhel9@sha256:ab08ff12c34082722cb6ea3bdf3c62f99d30efb469570938400ebdd9b6e4b4b5_amd64 as a component of MTA 6.2 for RHEL 8", + "product_id": "9Base-MTA-6.2:mta/mta-hub-rhel9@sha256:ab08ff12c34082722cb6ea3bdf3c62f99d30efb469570938400ebdd9b6e4b4b5_amd64" + }, + "product_reference": "mta/mta-hub-rhel9@sha256:ab08ff12c34082722cb6ea3bdf3c62f99d30efb469570938400ebdd9b6e4b4b5_amd64", + "relates_to_product_reference": "9Base-MTA-6.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mta/mta-operator-bundle@sha256:2660d6e04d2f6475565999b41947e1b5e615beb6a4f82e596e21f947f0963866_amd64 as a component of MTA 6.2 for RHEL 8", + "product_id": "9Base-MTA-6.2:mta/mta-operator-bundle@sha256:2660d6e04d2f6475565999b41947e1b5e615beb6a4f82e596e21f947f0963866_amd64" + }, + "product_reference": "mta/mta-operator-bundle@sha256:2660d6e04d2f6475565999b41947e1b5e615beb6a4f82e596e21f947f0963866_amd64", + "relates_to_product_reference": "9Base-MTA-6.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mta/mta-pathfinder-rhel9@sha256:210453bf83f0906897220af8b027215c14099dd72a88af35154165ea295e6864_amd64 as a component of MTA 6.2 for RHEL 8", + "product_id": "9Base-MTA-6.2:mta/mta-pathfinder-rhel9@sha256:210453bf83f0906897220af8b027215c14099dd72a88af35154165ea295e6864_amd64" + }, + "product_reference": "mta/mta-pathfinder-rhel9@sha256:210453bf83f0906897220af8b027215c14099dd72a88af35154165ea295e6864_amd64", + "relates_to_product_reference": "9Base-MTA-6.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mta/mta-ui-rhel9@sha256:a82420cc54e8e8cdd0d8905d4f8ef1167bfd16cd474c09f0146ed756a6fac0dc_amd64 as a component of MTA 6.2 for RHEL 8", + "product_id": "9Base-MTA-6.2:mta/mta-ui-rhel9@sha256:a82420cc54e8e8cdd0d8905d4f8ef1167bfd16cd474c09f0146ed756a6fac0dc_amd64" + }, + "product_reference": "mta/mta-ui-rhel9@sha256:a82420cc54e8e8cdd0d8905d4f8ef1167bfd16cd474c09f0146ed756a6fac0dc_amd64", + "relates_to_product_reference": "9Base-MTA-6.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mta/mta-windup-addon-rhel9@sha256:8235d925582c44ea38fce014c14a4b674ae99bdf90440d7d1e9b552f4dd67069_amd64 as a component of MTA 6.2 for RHEL 8", + "product_id": "9Base-MTA-6.2:mta/mta-windup-addon-rhel9@sha256:8235d925582c44ea38fce014c14a4b674ae99bdf90440d7d1e9b552f4dd67069_amd64" + }, + "product_reference": "mta/mta-windup-addon-rhel9@sha256:8235d925582c44ea38fce014c14a4b674ae99bdf90440d7d1e9b552f4dd67069_amd64", + "relates_to_product_reference": "9Base-MTA-6.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-api-rhel9@sha256:61de05b8dffe208fb8d4c00aed8bba71a4e428f74cc06b936debfbe4fb640747_amd64 as a component of 8Base-MTV-2.4", + "product_id": "9Base-MTV-2.4:migration-toolkit-virtualization/mtv-api-rhel9@sha256:61de05b8dffe208fb8d4c00aed8bba71a4e428f74cc06b936debfbe4fb640747_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-api-rhel9@sha256:61de05b8dffe208fb8d4c00aed8bba71a4e428f74cc06b936debfbe4fb640747_amd64", + "relates_to_product_reference": "9Base-MTV-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-console-plugin-rhel9@sha256:3022d96f38b8900d1b545cbf045f96816194bfba917f08c2e67758f7928acf2c_amd64 as a component of 8Base-MTV-2.4", + "product_id": "9Base-MTV-2.4:migration-toolkit-virtualization/mtv-console-plugin-rhel9@sha256:3022d96f38b8900d1b545cbf045f96816194bfba917f08c2e67758f7928acf2c_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-console-plugin-rhel9@sha256:3022d96f38b8900d1b545cbf045f96816194bfba917f08c2e67758f7928acf2c_amd64", + "relates_to_product_reference": "9Base-MTV-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-controller-rhel9@sha256:c9b7db0c74e38e5f028b3b72066892c96b6f684575d395a197a0826c09d96e1d_amd64 as a component of 8Base-MTV-2.4", + "product_id": "9Base-MTV-2.4:migration-toolkit-virtualization/mtv-controller-rhel9@sha256:c9b7db0c74e38e5f028b3b72066892c96b6f684575d395a197a0826c09d96e1d_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-controller-rhel9@sha256:c9b7db0c74e38e5f028b3b72066892c96b6f684575d395a197a0826c09d96e1d_amd64", + "relates_to_product_reference": "9Base-MTV-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-openstack-populator-rhel9@sha256:cb8d1bc7320c4ba9caa1d3bb45e48c6d1d2b71799f5dc466c5de8b87579d0c63_amd64 as a component of 8Base-MTV-2.4", + "product_id": "9Base-MTV-2.4:migration-toolkit-virtualization/mtv-openstack-populator-rhel9@sha256:cb8d1bc7320c4ba9caa1d3bb45e48c6d1d2b71799f5dc466c5de8b87579d0c63_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-openstack-populator-rhel9@sha256:cb8d1bc7320c4ba9caa1d3bb45e48c6d1d2b71799f5dc466c5de8b87579d0c63_amd64", + "relates_to_product_reference": "9Base-MTV-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-operator-bundle@sha256:f3172be67364c2a3a5acc25976759e91643c30dfa4d034ea39884ce2be084741_amd64 as a component of 8Base-MTV-2.4", + "product_id": "9Base-MTV-2.4:migration-toolkit-virtualization/mtv-operator-bundle@sha256:f3172be67364c2a3a5acc25976759e91643c30dfa4d034ea39884ce2be084741_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-operator-bundle@sha256:f3172be67364c2a3a5acc25976759e91643c30dfa4d034ea39884ce2be084741_amd64", + "relates_to_product_reference": "9Base-MTV-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-populator-controller-rhel9@sha256:4bbec09dfd8021e9cf676f1fb85a0a3f168845b91421afa5ded7983a3561d301_amd64 as a component of 8Base-MTV-2.4", + "product_id": "9Base-MTV-2.4:migration-toolkit-virtualization/mtv-populator-controller-rhel9@sha256:4bbec09dfd8021e9cf676f1fb85a0a3f168845b91421afa5ded7983a3561d301_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-populator-controller-rhel9@sha256:4bbec09dfd8021e9cf676f1fb85a0a3f168845b91421afa5ded7983a3561d301_amd64", + "relates_to_product_reference": "9Base-MTV-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-validation-rhel9@sha256:8d9947ca76642dacb58290203f5ad003f7ca4f1a5a075ac584ab9e27018a0eed_amd64 as a component of 8Base-MTV-2.4", + "product_id": "9Base-MTV-2.4:migration-toolkit-virtualization/mtv-validation-rhel9@sha256:8d9947ca76642dacb58290203f5ad003f7ca4f1a5a075ac584ab9e27018a0eed_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-validation-rhel9@sha256:8d9947ca76642dacb58290203f5ad003f7ca4f1a5a075ac584ab9e27018a0eed_amd64", + "relates_to_product_reference": "9Base-MTV-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-virt-v2v-rhel9@sha256:7ecf4ffb01ccf2cd92fa96407bca9e5b6054e3b5033ada74c98e00dca163d1f7_amd64 as a component of 8Base-MTV-2.4", + "product_id": "9Base-MTV-2.4:migration-toolkit-virtualization/mtv-virt-v2v-rhel9@sha256:7ecf4ffb01ccf2cd92fa96407bca9e5b6054e3b5033ada74c98e00dca163d1f7_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-virt-v2v-rhel9@sha256:7ecf4ffb01ccf2cd92fa96407bca9e5b6054e3b5033ada74c98e00dca163d1f7_amd64", + "relates_to_product_reference": "9Base-MTV-2.4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-api-rhel9@sha256:7a25dd92fb3949f6b231d8019dda8ee2432ce1708cf746fdc805f335d19119e8_amd64 as a component of 8Base-MTV-2.5", + "product_id": "9Base-MTV-2.5:migration-toolkit-virtualization/mtv-api-rhel9@sha256:7a25dd92fb3949f6b231d8019dda8ee2432ce1708cf746fdc805f335d19119e8_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-api-rhel9@sha256:7a25dd92fb3949f6b231d8019dda8ee2432ce1708cf746fdc805f335d19119e8_amd64", + "relates_to_product_reference": "9Base-MTV-2.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-console-plugin-rhel9@sha256:8d9c4e66535b0b3c6921cbf819c7d86dedaa9076fc05b9f00e9002b6fb1c5b1d_amd64 as a component of 8Base-MTV-2.5", + "product_id": "9Base-MTV-2.5:migration-toolkit-virtualization/mtv-console-plugin-rhel9@sha256:8d9c4e66535b0b3c6921cbf819c7d86dedaa9076fc05b9f00e9002b6fb1c5b1d_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-console-plugin-rhel9@sha256:8d9c4e66535b0b3c6921cbf819c7d86dedaa9076fc05b9f00e9002b6fb1c5b1d_amd64", + "relates_to_product_reference": "9Base-MTV-2.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-controller-rhel9@sha256:8fbc5262ebc5791a156ecc4afa539bb6d72bfe3ecf28e7ebaab12aab63e472e3_amd64 as a component of 8Base-MTV-2.5", + "product_id": "9Base-MTV-2.5:migration-toolkit-virtualization/mtv-controller-rhel9@sha256:8fbc5262ebc5791a156ecc4afa539bb6d72bfe3ecf28e7ebaab12aab63e472e3_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-controller-rhel9@sha256:8fbc5262ebc5791a156ecc4afa539bb6d72bfe3ecf28e7ebaab12aab63e472e3_amd64", + "relates_to_product_reference": "9Base-MTV-2.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-openstack-populator-rhel9@sha256:ba513f372d1eccbc1a96c0934384021b5cd228533435bcfb70dd584e65f5abec_amd64 as a component of 8Base-MTV-2.5", + "product_id": "9Base-MTV-2.5:migration-toolkit-virtualization/mtv-openstack-populator-rhel9@sha256:ba513f372d1eccbc1a96c0934384021b5cd228533435bcfb70dd584e65f5abec_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-openstack-populator-rhel9@sha256:ba513f372d1eccbc1a96c0934384021b5cd228533435bcfb70dd584e65f5abec_amd64", + "relates_to_product_reference": "9Base-MTV-2.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-operator-bundle@sha256:9ec2a9e288b742ea9d71f13e055a4ede1b34e5e251aa662c65a83747a6603462_amd64 as a component of 8Base-MTV-2.5", + "product_id": "9Base-MTV-2.5:migration-toolkit-virtualization/mtv-operator-bundle@sha256:9ec2a9e288b742ea9d71f13e055a4ede1b34e5e251aa662c65a83747a6603462_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-operator-bundle@sha256:9ec2a9e288b742ea9d71f13e055a4ede1b34e5e251aa662c65a83747a6603462_amd64", + "relates_to_product_reference": "9Base-MTV-2.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-ova-provider-server-rhel9@sha256:53f0fa129b04bcb7ea8f80e6136fbaf189460b29bdd123398f456a4d2a32de3f_amd64 as a component of 8Base-MTV-2.5", + "product_id": "9Base-MTV-2.5:migration-toolkit-virtualization/mtv-ova-provider-server-rhel9@sha256:53f0fa129b04bcb7ea8f80e6136fbaf189460b29bdd123398f456a4d2a32de3f_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-ova-provider-server-rhel9@sha256:53f0fa129b04bcb7ea8f80e6136fbaf189460b29bdd123398f456a4d2a32de3f_amd64", + "relates_to_product_reference": "9Base-MTV-2.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-populator-controller-rhel9@sha256:110ebc02ca7aca24ff830e8073af8062434ca8dc8ff1239b92c24e84d6cf08c3_amd64 as a component of 8Base-MTV-2.5", + "product_id": "9Base-MTV-2.5:migration-toolkit-virtualization/mtv-populator-controller-rhel9@sha256:110ebc02ca7aca24ff830e8073af8062434ca8dc8ff1239b92c24e84d6cf08c3_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-populator-controller-rhel9@sha256:110ebc02ca7aca24ff830e8073af8062434ca8dc8ff1239b92c24e84d6cf08c3_amd64", + "relates_to_product_reference": "9Base-MTV-2.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-validation-rhel9@sha256:7481185531e6bba394f769c0e73bfc431e0d763afd23c59bacc8ec32875b0af3_amd64 as a component of 8Base-MTV-2.5", + "product_id": "9Base-MTV-2.5:migration-toolkit-virtualization/mtv-validation-rhel9@sha256:7481185531e6bba394f769c0e73bfc431e0d763afd23c59bacc8ec32875b0af3_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-validation-rhel9@sha256:7481185531e6bba394f769c0e73bfc431e0d763afd23c59bacc8ec32875b0af3_amd64", + "relates_to_product_reference": "9Base-MTV-2.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "migration-toolkit-virtualization/mtv-virt-v2v-rhel9@sha256:094c261ca283ee4fcf58e79cc93e61da6e0759c82a157f3169c4390a7e7f1f74_amd64 as a component of 8Base-MTV-2.5", + "product_id": "9Base-MTV-2.5:migration-toolkit-virtualization/mtv-virt-v2v-rhel9@sha256:094c261ca283ee4fcf58e79cc93e61da6e0759c82a157f3169c4390a7e7f1f74_amd64" + }, + "product_reference": "migration-toolkit-virtualization/mtv-virt-v2v-rhel9@sha256:094c261ca283ee4fcf58e79cc93e61da6e0759c82a157f3169c4390a7e7f1f74_amd64", + "relates_to_product_reference": "9Base-MTV-2.5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-console-plugin-rhel9@sha256:5da2ecf1149394e0c64af7c8e8a2684012590838031e4c733d6eff7f30cd6265_amd64 as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-console-plugin-rhel9@sha256:5da2ecf1149394e0c64af7c8e8a2684012590838031e4c733d6eff7f30cd6265_amd64" + }, + "product_reference": "network-observability/network-observability-console-plugin-rhel9@sha256:5da2ecf1149394e0c64af7c8e8a2684012590838031e4c733d6eff7f30cd6265_amd64", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-console-plugin-rhel9@sha256:95368eb313a5a252a63f567ebf8a51ca07793a8e9147bae99ed69f80ea305e6f_arm64 as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-console-plugin-rhel9@sha256:95368eb313a5a252a63f567ebf8a51ca07793a8e9147bae99ed69f80ea305e6f_arm64" + }, + "product_reference": "network-observability/network-observability-console-plugin-rhel9@sha256:95368eb313a5a252a63f567ebf8a51ca07793a8e9147bae99ed69f80ea305e6f_arm64", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-console-plugin-rhel9@sha256:a60a5f1b256d627d156d5b6554b0031380e62866a90963c7933ce87b21f83491_amd64 as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-console-plugin-rhel9@sha256:a60a5f1b256d627d156d5b6554b0031380e62866a90963c7933ce87b21f83491_amd64" + }, + "product_reference": "network-observability/network-observability-console-plugin-rhel9@sha256:a60a5f1b256d627d156d5b6554b0031380e62866a90963c7933ce87b21f83491_amd64", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-console-plugin-rhel9@sha256:ae91d40862457c43c130aa081a66bcedca17dce7dce0f381143b244dd126bc12_arm64 as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-console-plugin-rhel9@sha256:ae91d40862457c43c130aa081a66bcedca17dce7dce0f381143b244dd126bc12_arm64" + }, + "product_reference": "network-observability/network-observability-console-plugin-rhel9@sha256:ae91d40862457c43c130aa081a66bcedca17dce7dce0f381143b244dd126bc12_arm64", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-console-plugin-rhel9@sha256:ce5c9ef5800ed30888dcb23aa2ed9cf56bd83767d572a51e3e3e1509a2539063_s390x as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-console-plugin-rhel9@sha256:ce5c9ef5800ed30888dcb23aa2ed9cf56bd83767d572a51e3e3e1509a2539063_s390x" + }, + "product_reference": "network-observability/network-observability-console-plugin-rhel9@sha256:ce5c9ef5800ed30888dcb23aa2ed9cf56bd83767d572a51e3e3e1509a2539063_s390x", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-console-plugin-rhel9@sha256:e0239a8ff86253729b9af04e6407283c51744497fea90d099afaceaa4fc823ec_ppc64le as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-console-plugin-rhel9@sha256:e0239a8ff86253729b9af04e6407283c51744497fea90d099afaceaa4fc823ec_ppc64le" + }, + "product_reference": "network-observability/network-observability-console-plugin-rhel9@sha256:e0239a8ff86253729b9af04e6407283c51744497fea90d099afaceaa4fc823ec_ppc64le", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-console-plugin-rhel9@sha256:ee3f049527626d646f81d0a16d1911f0efe71c9286ae657429c9f0f6c6c505e3_ppc64le as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-console-plugin-rhel9@sha256:ee3f049527626d646f81d0a16d1911f0efe71c9286ae657429c9f0f6c6c505e3_ppc64le" + }, + "product_reference": "network-observability/network-observability-console-plugin-rhel9@sha256:ee3f049527626d646f81d0a16d1911f0efe71c9286ae657429c9f0f6c6c505e3_ppc64le", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-console-plugin-rhel9@sha256:f6be4953742e271e6507aa91a8ed976d7dfd68c3b9634382b18d47bb5d968ddf_s390x as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-console-plugin-rhel9@sha256:f6be4953742e271e6507aa91a8ed976d7dfd68c3b9634382b18d47bb5d968ddf_s390x" + }, + "product_reference": "network-observability/network-observability-console-plugin-rhel9@sha256:f6be4953742e271e6507aa91a8ed976d7dfd68c3b9634382b18d47bb5d968ddf_s390x", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-ebpf-agent-rhel9@sha256:27ecc916ce170d505d828742fa29d20143c4443343b101a2a9d75fe086b515f1_amd64 as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-ebpf-agent-rhel9@sha256:27ecc916ce170d505d828742fa29d20143c4443343b101a2a9d75fe086b515f1_amd64" + }, + "product_reference": "network-observability/network-observability-ebpf-agent-rhel9@sha256:27ecc916ce170d505d828742fa29d20143c4443343b101a2a9d75fe086b515f1_amd64", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-ebpf-agent-rhel9@sha256:350a8565fb297353c81571bad33f0fca5ab129560ad7f15de242db98c4709b3c_s390x as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-ebpf-agent-rhel9@sha256:350a8565fb297353c81571bad33f0fca5ab129560ad7f15de242db98c4709b3c_s390x" + }, + "product_reference": "network-observability/network-observability-ebpf-agent-rhel9@sha256:350a8565fb297353c81571bad33f0fca5ab129560ad7f15de242db98c4709b3c_s390x", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-ebpf-agent-rhel9@sha256:488df8c38e377719771c758b71f1e966d76bb03da6217e09c29c21fec12c437d_arm64 as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-ebpf-agent-rhel9@sha256:488df8c38e377719771c758b71f1e966d76bb03da6217e09c29c21fec12c437d_arm64" + }, + "product_reference": "network-observability/network-observability-ebpf-agent-rhel9@sha256:488df8c38e377719771c758b71f1e966d76bb03da6217e09c29c21fec12c437d_arm64", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-ebpf-agent-rhel9@sha256:63c6d967f4c2ec9a5047be4c5e02676d80243dbc3cc6bad508e6b3162a631be9_s390x as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-ebpf-agent-rhel9@sha256:63c6d967f4c2ec9a5047be4c5e02676d80243dbc3cc6bad508e6b3162a631be9_s390x" + }, + "product_reference": "network-observability/network-observability-ebpf-agent-rhel9@sha256:63c6d967f4c2ec9a5047be4c5e02676d80243dbc3cc6bad508e6b3162a631be9_s390x", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-ebpf-agent-rhel9@sha256:6da9818638f28ca862681a668e38651ebeee18661738ae8346cbd0ecb13d4288_amd64 as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-ebpf-agent-rhel9@sha256:6da9818638f28ca862681a668e38651ebeee18661738ae8346cbd0ecb13d4288_amd64" + }, + "product_reference": "network-observability/network-observability-ebpf-agent-rhel9@sha256:6da9818638f28ca862681a668e38651ebeee18661738ae8346cbd0ecb13d4288_amd64", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-ebpf-agent-rhel9@sha256:84ffa04b7ae504efc0037c3ae14c0e4d4f99057593a2db2bbbfcf92e526d2c7c_ppc64le as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-ebpf-agent-rhel9@sha256:84ffa04b7ae504efc0037c3ae14c0e4d4f99057593a2db2bbbfcf92e526d2c7c_ppc64le" + }, + "product_reference": "network-observability/network-observability-ebpf-agent-rhel9@sha256:84ffa04b7ae504efc0037c3ae14c0e4d4f99057593a2db2bbbfcf92e526d2c7c_ppc64le", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-ebpf-agent-rhel9@sha256:8ac8ae32fae59ae22688a6772eb77245b24b6dbe55fc309bd31395b006cbdfad_ppc64le as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-ebpf-agent-rhel9@sha256:8ac8ae32fae59ae22688a6772eb77245b24b6dbe55fc309bd31395b006cbdfad_ppc64le" + }, + "product_reference": "network-observability/network-observability-ebpf-agent-rhel9@sha256:8ac8ae32fae59ae22688a6772eb77245b24b6dbe55fc309bd31395b006cbdfad_ppc64le", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-ebpf-agent-rhel9@sha256:d5a86121d054b9ea8a7b7ccead3a42d4b9e5c17929e188b8bd780517ceb7d96e_arm64 as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-ebpf-agent-rhel9@sha256:d5a86121d054b9ea8a7b7ccead3a42d4b9e5c17929e188b8bd780517ceb7d96e_arm64" + }, + "product_reference": "network-observability/network-observability-ebpf-agent-rhel9@sha256:d5a86121d054b9ea8a7b7ccead3a42d4b9e5c17929e188b8bd780517ceb7d96e_arm64", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:03484bd14253a7340f754a6f1aef5659cfd5a6844ffbdfb2f215321b6fc63644_s390x as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:03484bd14253a7340f754a6f1aef5659cfd5a6844ffbdfb2f215321b6fc63644_s390x" + }, + "product_reference": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:03484bd14253a7340f754a6f1aef5659cfd5a6844ffbdfb2f215321b6fc63644_s390x", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:26c5d2dc469ae8688abb5b87041f00d342a8542e810b1828af29781faef300a4_s390x as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:26c5d2dc469ae8688abb5b87041f00d342a8542e810b1828af29781faef300a4_s390x" + }, + "product_reference": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:26c5d2dc469ae8688abb5b87041f00d342a8542e810b1828af29781faef300a4_s390x", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:2dc033562cb43480543ff398284933993006741e83f453228a9902a2c9b3ff1d_ppc64le as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:2dc033562cb43480543ff398284933993006741e83f453228a9902a2c9b3ff1d_ppc64le" + }, + "product_reference": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:2dc033562cb43480543ff398284933993006741e83f453228a9902a2c9b3ff1d_ppc64le", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:51049a42b3f3f75a2dc670f3fa026a1d68280664a0ef47c3ad2fdfdb97c25611_amd64 as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:51049a42b3f3f75a2dc670f3fa026a1d68280664a0ef47c3ad2fdfdb97c25611_amd64" + }, + "product_reference": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:51049a42b3f3f75a2dc670f3fa026a1d68280664a0ef47c3ad2fdfdb97c25611_amd64", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:61c172961af1a895e9cb355573f1f8a780e7acecc505c58c18faeb9fc49efa66_amd64 as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:61c172961af1a895e9cb355573f1f8a780e7acecc505c58c18faeb9fc49efa66_amd64" + }, + "product_reference": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:61c172961af1a895e9cb355573f1f8a780e7acecc505c58c18faeb9fc49efa66_amd64", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:6620a766d61fc0395a2557fc0920f54a151d605dc932ca26fe78cfe0193c9c1c_ppc64le as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:6620a766d61fc0395a2557fc0920f54a151d605dc932ca26fe78cfe0193c9c1c_ppc64le" + }, + "product_reference": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:6620a766d61fc0395a2557fc0920f54a151d605dc932ca26fe78cfe0193c9c1c_ppc64le", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:83858e6e99d9669b5a8766aac010ca50df6df056496367f501d8268de5d4df82_arm64 as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:83858e6e99d9669b5a8766aac010ca50df6df056496367f501d8268de5d4df82_arm64" + }, + "product_reference": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:83858e6e99d9669b5a8766aac010ca50df6df056496367f501d8268de5d4df82_arm64", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:a297d29025aa9d1e963daf0c4b076533da59ddd84825e79d6e6b0e921e8c2588_arm64 as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:a297d29025aa9d1e963daf0c4b076533da59ddd84825e79d6e6b0e921e8c2588_arm64" + }, + "product_reference": "network-observability/network-observability-flowlogs-pipeline-rhel9@sha256:a297d29025aa9d1e963daf0c4b076533da59ddd84825e79d6e6b0e921e8c2588_arm64", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-operator-bundle@sha256:1223ca28b4bbe5c4f46fdcfd0c58794034408f5c86c87e5b6eab6c140d48017d_s390x as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-operator-bundle@sha256:1223ca28b4bbe5c4f46fdcfd0c58794034408f5c86c87e5b6eab6c140d48017d_s390x" + }, + "product_reference": "network-observability/network-observability-operator-bundle@sha256:1223ca28b4bbe5c4f46fdcfd0c58794034408f5c86c87e5b6eab6c140d48017d_s390x", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-operator-bundle@sha256:1607eb2595aa0679f571d81c19840cfaf923908553b05d479bd35b2290b1d7e6_ppc64le as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-operator-bundle@sha256:1607eb2595aa0679f571d81c19840cfaf923908553b05d479bd35b2290b1d7e6_ppc64le" + }, + "product_reference": "network-observability/network-observability-operator-bundle@sha256:1607eb2595aa0679f571d81c19840cfaf923908553b05d479bd35b2290b1d7e6_ppc64le", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-operator-bundle@sha256:6f998bb3b7d5311d8e74b25f8fcfe4ae65897270da3c0763ca2cb1d763135bc4_amd64 as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-operator-bundle@sha256:6f998bb3b7d5311d8e74b25f8fcfe4ae65897270da3c0763ca2cb1d763135bc4_amd64" + }, + "product_reference": "network-observability/network-observability-operator-bundle@sha256:6f998bb3b7d5311d8e74b25f8fcfe4ae65897270da3c0763ca2cb1d763135bc4_amd64", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-operator-bundle@sha256:8214855b40028fdd2def40116f4585bd50f42ef0948713d63e163840079e8be7_s390x as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-operator-bundle@sha256:8214855b40028fdd2def40116f4585bd50f42ef0948713d63e163840079e8be7_s390x" + }, + "product_reference": "network-observability/network-observability-operator-bundle@sha256:8214855b40028fdd2def40116f4585bd50f42ef0948713d63e163840079e8be7_s390x", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-operator-bundle@sha256:8e2171ae86ab9e78bf7827dd33cbdaaf5a4ff566da50bb7f659f613258712090_ppc64le as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-operator-bundle@sha256:8e2171ae86ab9e78bf7827dd33cbdaaf5a4ff566da50bb7f659f613258712090_ppc64le" + }, + "product_reference": "network-observability/network-observability-operator-bundle@sha256:8e2171ae86ab9e78bf7827dd33cbdaaf5a4ff566da50bb7f659f613258712090_ppc64le", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-operator-bundle@sha256:cfc16fa970403528771979f8e509660918c32d1532ae419824cc81348cee4132_arm64 as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-operator-bundle@sha256:cfc16fa970403528771979f8e509660918c32d1532ae419824cc81348cee4132_arm64" + }, + "product_reference": "network-observability/network-observability-operator-bundle@sha256:cfc16fa970403528771979f8e509660918c32d1532ae419824cc81348cee4132_arm64", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-operator-bundle@sha256:dc8f77f41b077986639b3f594f9e5eb3bf56dad90bed1927921f973c4171ba68_amd64 as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-operator-bundle@sha256:dc8f77f41b077986639b3f594f9e5eb3bf56dad90bed1927921f973c4171ba68_amd64" + }, + "product_reference": "network-observability/network-observability-operator-bundle@sha256:dc8f77f41b077986639b3f594f9e5eb3bf56dad90bed1927921f973c4171ba68_amd64", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-operator-bundle@sha256:e6e8f0a739c61bbd94a61bb75d81ef1af551a4e57ed4a64e583adce62c82af9c_arm64 as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-operator-bundle@sha256:e6e8f0a739c61bbd94a61bb75d81ef1af551a4e57ed4a64e583adce62c82af9c_arm64" + }, + "product_reference": "network-observability/network-observability-operator-bundle@sha256:e6e8f0a739c61bbd94a61bb75d81ef1af551a4e57ed4a64e583adce62c82af9c_arm64", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-rhel9-operator@sha256:2b99cf0df552ca77d35e8fd8e2e6c81938369c59241697f6220c40df27b9cd54_amd64 as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-rhel9-operator@sha256:2b99cf0df552ca77d35e8fd8e2e6c81938369c59241697f6220c40df27b9cd54_amd64" + }, + "product_reference": "network-observability/network-observability-rhel9-operator@sha256:2b99cf0df552ca77d35e8fd8e2e6c81938369c59241697f6220c40df27b9cd54_amd64", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-rhel9-operator@sha256:4c49b198ec1c97aeec39dd445b30e96af12f43a74166da53a63c11617c69a0b9_arm64 as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-rhel9-operator@sha256:4c49b198ec1c97aeec39dd445b30e96af12f43a74166da53a63c11617c69a0b9_arm64" + }, + "product_reference": "network-observability/network-observability-rhel9-operator@sha256:4c49b198ec1c97aeec39dd445b30e96af12f43a74166da53a63c11617c69a0b9_arm64", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-rhel9-operator@sha256:63f7b3fe3fde774f8b8b76b8eb17b3c62220bf3270320349942ab042518e1515_s390x as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-rhel9-operator@sha256:63f7b3fe3fde774f8b8b76b8eb17b3c62220bf3270320349942ab042518e1515_s390x" + }, + "product_reference": "network-observability/network-observability-rhel9-operator@sha256:63f7b3fe3fde774f8b8b76b8eb17b3c62220bf3270320349942ab042518e1515_s390x", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-rhel9-operator@sha256:66d6fed71915dce2d8b8386cf661590bd374e27baa26a7c2cddd1916386922ce_amd64 as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-rhel9-operator@sha256:66d6fed71915dce2d8b8386cf661590bd374e27baa26a7c2cddd1916386922ce_amd64" + }, + "product_reference": "network-observability/network-observability-rhel9-operator@sha256:66d6fed71915dce2d8b8386cf661590bd374e27baa26a7c2cddd1916386922ce_amd64", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-rhel9-operator@sha256:67167e08f0883c273e98810ad44288c4355ce2af13859021e2973c075c56cf9f_s390x as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-rhel9-operator@sha256:67167e08f0883c273e98810ad44288c4355ce2af13859021e2973c075c56cf9f_s390x" + }, + "product_reference": "network-observability/network-observability-rhel9-operator@sha256:67167e08f0883c273e98810ad44288c4355ce2af13859021e2973c075c56cf9f_s390x", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-rhel9-operator@sha256:8596630dd1c175bf6dd29470c009e850d8b8fd465f3d9dcee8338a4aeca8dc64_arm64 as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-rhel9-operator@sha256:8596630dd1c175bf6dd29470c009e850d8b8fd465f3d9dcee8338a4aeca8dc64_arm64" + }, + "product_reference": "network-observability/network-observability-rhel9-operator@sha256:8596630dd1c175bf6dd29470c009e850d8b8fd465f3d9dcee8338a4aeca8dc64_arm64", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-rhel9-operator@sha256:8e560f63a3bab2a6256dc6f1c5b8c88afc7f4a7210fef2986e02d2b1018a66b7_ppc64le as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-rhel9-operator@sha256:8e560f63a3bab2a6256dc6f1c5b8c88afc7f4a7210fef2986e02d2b1018a66b7_ppc64le" + }, + "product_reference": "network-observability/network-observability-rhel9-operator@sha256:8e560f63a3bab2a6256dc6f1c5b8c88afc7f4a7210fef2986e02d2b1018a66b7_ppc64le", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "network-observability/network-observability-rhel9-operator@sha256:be6bfe44af552d934c881db0177bee7e345d76442523b0ea0144610d5470ea45_ppc64le as a component of NETOBSERV 1.4 for RHEL 9", + "product_id": "9Base-NETWORK-OBSERVABILITY-1.4.0:network-observability/network-observability-rhel9-operator@sha256:be6bfe44af552d934c881db0177bee7e345d76442523b0ea0144610d5470ea45_ppc64le" + }, + "product_reference": "network-observability/network-observability-rhel9-operator@sha256:be6bfe44af552d934c881db0177bee7e345d76442523b0ea0144610d5470ea45_ppc64le", + "relates_to_product_reference": "9Base-NETWORK-OBSERVABILITY-1.4.0" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/cephcsi-rhel9@sha256:19066af2eb30877d010ef66b5d538749da1f0521b4a762871a53c57ead216e9a_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/cephcsi-rhel9@sha256:19066af2eb30877d010ef66b5d538749da1f0521b4a762871a53c57ead216e9a_s390x" + }, + "product_reference": "odf4/cephcsi-rhel9@sha256:19066af2eb30877d010ef66b5d538749da1f0521b4a762871a53c57ead216e9a_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/cephcsi-rhel9@sha256:35a02234cca01c1f4acc66744fe5238c1810ba098b63f95c5c09f183647032f9_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/cephcsi-rhel9@sha256:35a02234cca01c1f4acc66744fe5238c1810ba098b63f95c5c09f183647032f9_amd64" + }, + "product_reference": "odf4/cephcsi-rhel9@sha256:35a02234cca01c1f4acc66744fe5238c1810ba098b63f95c5c09f183647032f9_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/cephcsi-rhel9@sha256:d256c07680a4463f09d4a06a000fe001806cde5ccaa958005a1a3e66a127b5b1_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/cephcsi-rhel9@sha256:d256c07680a4463f09d4a06a000fe001806cde5ccaa958005a1a3e66a127b5b1_ppc64le" + }, + "product_reference": "odf4/cephcsi-rhel9@sha256:d256c07680a4463f09d4a06a000fe001806cde5ccaa958005a1a3e66a127b5b1_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/mcg-cli-rhel9@sha256:21d8549a1b42e78f04f555d4bf662da649e7411b54491055779859fa4bce2a37_arm64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/mcg-cli-rhel9@sha256:21d8549a1b42e78f04f555d4bf662da649e7411b54491055779859fa4bce2a37_arm64" + }, + "product_reference": "odf4/mcg-cli-rhel9@sha256:21d8549a1b42e78f04f555d4bf662da649e7411b54491055779859fa4bce2a37_arm64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/mcg-cli-rhel9@sha256:52cadb4a29242624ef35270f56317e019ae04dda9c6710d9d944a8628ca00818_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/mcg-cli-rhel9@sha256:52cadb4a29242624ef35270f56317e019ae04dda9c6710d9d944a8628ca00818_ppc64le" + }, + "product_reference": "odf4/mcg-cli-rhel9@sha256:52cadb4a29242624ef35270f56317e019ae04dda9c6710d9d944a8628ca00818_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/mcg-cli-rhel9@sha256:c354acbac03e2af6fcb7b5b1dbe16ab0a382004ef7a335f9327893138ce2e922_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/mcg-cli-rhel9@sha256:c354acbac03e2af6fcb7b5b1dbe16ab0a382004ef7a335f9327893138ce2e922_s390x" + }, + "product_reference": "odf4/mcg-cli-rhel9@sha256:c354acbac03e2af6fcb7b5b1dbe16ab0a382004ef7a335f9327893138ce2e922_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/mcg-cli-rhel9@sha256:ee129f877f166acabe289aba862cd1d0154f29987dfd9df4800b18c005725256_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/mcg-cli-rhel9@sha256:ee129f877f166acabe289aba862cd1d0154f29987dfd9df4800b18c005725256_amd64" + }, + "product_reference": "odf4/mcg-cli-rhel9@sha256:ee129f877f166acabe289aba862cd1d0154f29987dfd9df4800b18c005725256_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/mcg-core-rhel9@sha256:0a9ccf86889c47b950246e2f6829b568b2f3cb0f37b2ad18282ff2a40f0448d6_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/mcg-core-rhel9@sha256:0a9ccf86889c47b950246e2f6829b568b2f3cb0f37b2ad18282ff2a40f0448d6_s390x" + }, + "product_reference": "odf4/mcg-core-rhel9@sha256:0a9ccf86889c47b950246e2f6829b568b2f3cb0f37b2ad18282ff2a40f0448d6_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/mcg-core-rhel9@sha256:4db0118093d6186245a1bad6e33a7c324adf4385ffe632e72ef8eb6fa4bc7cc4_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/mcg-core-rhel9@sha256:4db0118093d6186245a1bad6e33a7c324adf4385ffe632e72ef8eb6fa4bc7cc4_amd64" + }, + "product_reference": "odf4/mcg-core-rhel9@sha256:4db0118093d6186245a1bad6e33a7c324adf4385ffe632e72ef8eb6fa4bc7cc4_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/mcg-core-rhel9@sha256:61db6bf89d17320cb1de31b07905a67db6418b8bd5da3b28c105c30c673a69ed_arm64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/mcg-core-rhel9@sha256:61db6bf89d17320cb1de31b07905a67db6418b8bd5da3b28c105c30c673a69ed_arm64" + }, + "product_reference": "odf4/mcg-core-rhel9@sha256:61db6bf89d17320cb1de31b07905a67db6418b8bd5da3b28c105c30c673a69ed_arm64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/mcg-core-rhel9@sha256:a3c88a63ab8c071cfd28aa97a12d2cf44f8d6f3779875b8bac79b76334995575_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/mcg-core-rhel9@sha256:a3c88a63ab8c071cfd28aa97a12d2cf44f8d6f3779875b8bac79b76334995575_ppc64le" + }, + "product_reference": "odf4/mcg-core-rhel9@sha256:a3c88a63ab8c071cfd28aa97a12d2cf44f8d6f3779875b8bac79b76334995575_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/mcg-operator-bundle@sha256:217ee67bfcec7b49193c035292a10577603397acae7b3d36ef2a8809a47c4b01_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/mcg-operator-bundle@sha256:217ee67bfcec7b49193c035292a10577603397acae7b3d36ef2a8809a47c4b01_amd64" + }, + "product_reference": "odf4/mcg-operator-bundle@sha256:217ee67bfcec7b49193c035292a10577603397acae7b3d36ef2a8809a47c4b01_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/mcg-operator-bundle@sha256:b2586abf037cc9a313b5b07a36806d27f8a5fdee8daf99a00ee491243085a7d4_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/mcg-operator-bundle@sha256:b2586abf037cc9a313b5b07a36806d27f8a5fdee8daf99a00ee491243085a7d4_s390x" + }, + "product_reference": "odf4/mcg-operator-bundle@sha256:b2586abf037cc9a313b5b07a36806d27f8a5fdee8daf99a00ee491243085a7d4_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/mcg-operator-bundle@sha256:db479b0a4c27104c57911bead5d15b99617a2ae355586e765b04ea02f72662cf_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/mcg-operator-bundle@sha256:db479b0a4c27104c57911bead5d15b99617a2ae355586e765b04ea02f72662cf_ppc64le" + }, + "product_reference": "odf4/mcg-operator-bundle@sha256:db479b0a4c27104c57911bead5d15b99617a2ae355586e765b04ea02f72662cf_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/mcg-rhel9-operator@sha256:45e081dc18d87532beb038ee07e9e99f3ab686ad5a4fe65664f82e490d295d14_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/mcg-rhel9-operator@sha256:45e081dc18d87532beb038ee07e9e99f3ab686ad5a4fe65664f82e490d295d14_ppc64le" + }, + "product_reference": "odf4/mcg-rhel9-operator@sha256:45e081dc18d87532beb038ee07e9e99f3ab686ad5a4fe65664f82e490d295d14_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/mcg-rhel9-operator@sha256:5149a129f3caf1f0e93ce490df3e4bbab4d842cabd85556970349c81d1de6970_arm64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/mcg-rhel9-operator@sha256:5149a129f3caf1f0e93ce490df3e4bbab4d842cabd85556970349c81d1de6970_arm64" + }, + "product_reference": "odf4/mcg-rhel9-operator@sha256:5149a129f3caf1f0e93ce490df3e4bbab4d842cabd85556970349c81d1de6970_arm64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/mcg-rhel9-operator@sha256:cf3caa9b68d92d8b99237dedd6631fbe96a30ce1ee44f4cc3eb4c9a45b5f906d_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/mcg-rhel9-operator@sha256:cf3caa9b68d92d8b99237dedd6631fbe96a30ce1ee44f4cc3eb4c9a45b5f906d_amd64" + }, + "product_reference": "odf4/mcg-rhel9-operator@sha256:cf3caa9b68d92d8b99237dedd6631fbe96a30ce1ee44f4cc3eb4c9a45b5f906d_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/mcg-rhel9-operator@sha256:fcb6309f9244be94c6154d45f0a5c415783407064fee1ee48a4c05970054da1c_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/mcg-rhel9-operator@sha256:fcb6309f9244be94c6154d45f0a5c415783407064fee1ee48a4c05970054da1c_s390x" + }, + "product_reference": "odf4/mcg-rhel9-operator@sha256:fcb6309f9244be94c6154d45f0a5c415783407064fee1ee48a4c05970054da1c_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/ocs-client-console-rhel9@sha256:092b03642b8adae73f45ff264d38a796fb8a7fd89b87e712db0473f9ccda3862_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/ocs-client-console-rhel9@sha256:092b03642b8adae73f45ff264d38a796fb8a7fd89b87e712db0473f9ccda3862_s390x" + }, + "product_reference": "odf4/ocs-client-console-rhel9@sha256:092b03642b8adae73f45ff264d38a796fb8a7fd89b87e712db0473f9ccda3862_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/ocs-client-console-rhel9@sha256:0dbc5b109af0e72148bc5c70089e2db9f3a6a30946484ea2b75a05ed96b74049_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/ocs-client-console-rhel9@sha256:0dbc5b109af0e72148bc5c70089e2db9f3a6a30946484ea2b75a05ed96b74049_ppc64le" + }, + "product_reference": "odf4/ocs-client-console-rhel9@sha256:0dbc5b109af0e72148bc5c70089e2db9f3a6a30946484ea2b75a05ed96b74049_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/ocs-client-console-rhel9@sha256:1a8a1d7bfa55de51ec2a777f2ad0d21d61c0e4a8be2802cbf4d76dc4a5d578d6_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/ocs-client-console-rhel9@sha256:1a8a1d7bfa55de51ec2a777f2ad0d21d61c0e4a8be2802cbf4d76dc4a5d578d6_amd64" + }, + "product_reference": "odf4/ocs-client-console-rhel9@sha256:1a8a1d7bfa55de51ec2a777f2ad0d21d61c0e4a8be2802cbf4d76dc4a5d578d6_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/ocs-client-operator-bundle@sha256:4c73760f7c2e5283d5fa197a95191d8e0568dbebfabffe476933a2545bea2b3b_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/ocs-client-operator-bundle@sha256:4c73760f7c2e5283d5fa197a95191d8e0568dbebfabffe476933a2545bea2b3b_s390x" + }, + "product_reference": "odf4/ocs-client-operator-bundle@sha256:4c73760f7c2e5283d5fa197a95191d8e0568dbebfabffe476933a2545bea2b3b_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/ocs-client-operator-bundle@sha256:4ff423ec1d18619590b5e3ce4b10352dbc50894ec92ec5d0164c8488e6f45a9e_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/ocs-client-operator-bundle@sha256:4ff423ec1d18619590b5e3ce4b10352dbc50894ec92ec5d0164c8488e6f45a9e_ppc64le" + }, + "product_reference": "odf4/ocs-client-operator-bundle@sha256:4ff423ec1d18619590b5e3ce4b10352dbc50894ec92ec5d0164c8488e6f45a9e_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/ocs-client-operator-bundle@sha256:cab28a3e2b44dc6f2efebbd5a52dee943ac9a8ae1f52cd4455418a6b689d54b3_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/ocs-client-operator-bundle@sha256:cab28a3e2b44dc6f2efebbd5a52dee943ac9a8ae1f52cd4455418a6b689d54b3_amd64" + }, + "product_reference": "odf4/ocs-client-operator-bundle@sha256:cab28a3e2b44dc6f2efebbd5a52dee943ac9a8ae1f52cd4455418a6b689d54b3_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/ocs-client-rhel9-operator@sha256:6b8fb443051345da399d48c5cff2dce22b4b8b2a9ab224e76d423d820151a8fe_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/ocs-client-rhel9-operator@sha256:6b8fb443051345da399d48c5cff2dce22b4b8b2a9ab224e76d423d820151a8fe_s390x" + }, + "product_reference": "odf4/ocs-client-rhel9-operator@sha256:6b8fb443051345da399d48c5cff2dce22b4b8b2a9ab224e76d423d820151a8fe_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/ocs-client-rhel9-operator@sha256:7f0e8e93d13f4fd74c0e801b94c0fa79369f319e371832c59c990f80a02a29fb_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/ocs-client-rhel9-operator@sha256:7f0e8e93d13f4fd74c0e801b94c0fa79369f319e371832c59c990f80a02a29fb_ppc64le" + }, + "product_reference": "odf4/ocs-client-rhel9-operator@sha256:7f0e8e93d13f4fd74c0e801b94c0fa79369f319e371832c59c990f80a02a29fb_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/ocs-client-rhel9-operator@sha256:923bc2abdbf6ad3594e3db6acf6a0054ee13deea7127480e4d200758cc2789d0_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/ocs-client-rhel9-operator@sha256:923bc2abdbf6ad3594e3db6acf6a0054ee13deea7127480e4d200758cc2789d0_amd64" + }, + "product_reference": "odf4/ocs-client-rhel9-operator@sha256:923bc2abdbf6ad3594e3db6acf6a0054ee13deea7127480e4d200758cc2789d0_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/ocs-client-rhel9-operator@sha256:bed6367b1913369a99f1fc690df25a592b86d1fce68e2b86ae71ecbea7098952_arm64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/ocs-client-rhel9-operator@sha256:bed6367b1913369a99f1fc690df25a592b86d1fce68e2b86ae71ecbea7098952_arm64" + }, + "product_reference": "odf4/ocs-client-rhel9-operator@sha256:bed6367b1913369a99f1fc690df25a592b86d1fce68e2b86ae71ecbea7098952_arm64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/ocs-metrics-exporter-rhel9@sha256:309b5a86d0f438d93ca64d7eea18c0b69a33a345e913977e2cd6507ce54e4fc9_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/ocs-metrics-exporter-rhel9@sha256:309b5a86d0f438d93ca64d7eea18c0b69a33a345e913977e2cd6507ce54e4fc9_s390x" + }, + "product_reference": "odf4/ocs-metrics-exporter-rhel9@sha256:309b5a86d0f438d93ca64d7eea18c0b69a33a345e913977e2cd6507ce54e4fc9_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/ocs-metrics-exporter-rhel9@sha256:52b43f37c8801a43153ea7df37ec7a20494ecaa3f6b4b3c71a97bb670b418e44_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/ocs-metrics-exporter-rhel9@sha256:52b43f37c8801a43153ea7df37ec7a20494ecaa3f6b4b3c71a97bb670b418e44_ppc64le" + }, + "product_reference": "odf4/ocs-metrics-exporter-rhel9@sha256:52b43f37c8801a43153ea7df37ec7a20494ecaa3f6b4b3c71a97bb670b418e44_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/ocs-metrics-exporter-rhel9@sha256:bc2b43b18fb8a054376e2295dc8e4bd7be57e8d2898a3efca3a014c40a109964_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/ocs-metrics-exporter-rhel9@sha256:bc2b43b18fb8a054376e2295dc8e4bd7be57e8d2898a3efca3a014c40a109964_amd64" + }, + "product_reference": "odf4/ocs-metrics-exporter-rhel9@sha256:bc2b43b18fb8a054376e2295dc8e4bd7be57e8d2898a3efca3a014c40a109964_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/ocs-operator-bundle@sha256:2ae1361711997b8ab997c6fc09985af6909968a055d616d633bde23910a000b0_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/ocs-operator-bundle@sha256:2ae1361711997b8ab997c6fc09985af6909968a055d616d633bde23910a000b0_ppc64le" + }, + "product_reference": "odf4/ocs-operator-bundle@sha256:2ae1361711997b8ab997c6fc09985af6909968a055d616d633bde23910a000b0_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/ocs-operator-bundle@sha256:33726ea05cce60e263d4f64dab60543b9c70542f1649aa79f0e10bc264d82f6a_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/ocs-operator-bundle@sha256:33726ea05cce60e263d4f64dab60543b9c70542f1649aa79f0e10bc264d82f6a_amd64" + }, + "product_reference": "odf4/ocs-operator-bundle@sha256:33726ea05cce60e263d4f64dab60543b9c70542f1649aa79f0e10bc264d82f6a_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/ocs-operator-bundle@sha256:e15785bfa7738c85d01dff5e137564401d9a8982785e0bdff73f7df166137cd9_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/ocs-operator-bundle@sha256:e15785bfa7738c85d01dff5e137564401d9a8982785e0bdff73f7df166137cd9_s390x" + }, + "product_reference": "odf4/ocs-operator-bundle@sha256:e15785bfa7738c85d01dff5e137564401d9a8982785e0bdff73f7df166137cd9_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/ocs-rhel9-operator@sha256:36a3587297be43c27a0348efc2ce0bd6d5cb4ff5447206e07770b78c6804d827_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/ocs-rhel9-operator@sha256:36a3587297be43c27a0348efc2ce0bd6d5cb4ff5447206e07770b78c6804d827_ppc64le" + }, + "product_reference": "odf4/ocs-rhel9-operator@sha256:36a3587297be43c27a0348efc2ce0bd6d5cb4ff5447206e07770b78c6804d827_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/ocs-rhel9-operator@sha256:d83c01e9498460d577809a37bae6c4a5e8a908209ff5e3541e8453aff29d378b_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/ocs-rhel9-operator@sha256:d83c01e9498460d577809a37bae6c4a5e8a908209ff5e3541e8453aff29d378b_amd64" + }, + "product_reference": "odf4/ocs-rhel9-operator@sha256:d83c01e9498460d577809a37bae6c4a5e8a908209ff5e3541e8453aff29d378b_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/ocs-rhel9-operator@sha256:e5d0c68cad94e04ad024ab91c05c04606b166d30e2c81a5414b4517195878bc3_arm64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/ocs-rhel9-operator@sha256:e5d0c68cad94e04ad024ab91c05c04606b166d30e2c81a5414b4517195878bc3_arm64" + }, + "product_reference": "odf4/ocs-rhel9-operator@sha256:e5d0c68cad94e04ad024ab91c05c04606b166d30e2c81a5414b4517195878bc3_arm64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/ocs-rhel9-operator@sha256:ed46de26d5f1383b2c2924535cca7af2837e6ebbffd576b20939660facd70dc7_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/ocs-rhel9-operator@sha256:ed46de26d5f1383b2c2924535cca7af2837e6ebbffd576b20939660facd70dc7_s390x" + }, + "product_reference": "odf4/ocs-rhel9-operator@sha256:ed46de26d5f1383b2c2924535cca7af2837e6ebbffd576b20939660facd70dc7_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-console-rhel9@sha256:1355bfd45d0f7715fe5a8c709d92951a25d1ee06742373ad632890dbd8678dc4_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-console-rhel9@sha256:1355bfd45d0f7715fe5a8c709d92951a25d1ee06742373ad632890dbd8678dc4_ppc64le" + }, + "product_reference": "odf4/odf-console-rhel9@sha256:1355bfd45d0f7715fe5a8c709d92951a25d1ee06742373ad632890dbd8678dc4_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-console-rhel9@sha256:9e58f78573d466a52b2091df3680331b1453f8f1185d72fa8daddaa2bee34522_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-console-rhel9@sha256:9e58f78573d466a52b2091df3680331b1453f8f1185d72fa8daddaa2bee34522_amd64" + }, + "product_reference": "odf4/odf-console-rhel9@sha256:9e58f78573d466a52b2091df3680331b1453f8f1185d72fa8daddaa2bee34522_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-console-rhel9@sha256:d164df6e45f3541a748cfac39014048cf356aad5e90441c342f57b318dd44935_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-console-rhel9@sha256:d164df6e45f3541a748cfac39014048cf356aad5e90441c342f57b318dd44935_s390x" + }, + "product_reference": "odf4/odf-console-rhel9@sha256:d164df6e45f3541a748cfac39014048cf356aad5e90441c342f57b318dd44935_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-cosi-sidecar-rhel9@sha256:1073a52233897ca521366b8a98c401b8f4b43a75e289dfe2bab3281498134808_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-cosi-sidecar-rhel9@sha256:1073a52233897ca521366b8a98c401b8f4b43a75e289dfe2bab3281498134808_ppc64le" + }, + "product_reference": "odf4/odf-cosi-sidecar-rhel9@sha256:1073a52233897ca521366b8a98c401b8f4b43a75e289dfe2bab3281498134808_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-cosi-sidecar-rhel9@sha256:d0c257b6f5fe9790c687dd255ef574a5e5fe5d2d24f90bd76fc674febf681871_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-cosi-sidecar-rhel9@sha256:d0c257b6f5fe9790c687dd255ef574a5e5fe5d2d24f90bd76fc674febf681871_amd64" + }, + "product_reference": "odf4/odf-cosi-sidecar-rhel9@sha256:d0c257b6f5fe9790c687dd255ef574a5e5fe5d2d24f90bd76fc674febf681871_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-cosi-sidecar-rhel9@sha256:d4cff642b23e5d006b179d81b20d1dc5aad68d0123dcb339f72973c68845ec4a_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-cosi-sidecar-rhel9@sha256:d4cff642b23e5d006b179d81b20d1dc5aad68d0123dcb339f72973c68845ec4a_s390x" + }, + "product_reference": "odf4/odf-cosi-sidecar-rhel9@sha256:d4cff642b23e5d006b179d81b20d1dc5aad68d0123dcb339f72973c68845ec4a_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-csi-addons-operator-bundle@sha256:36074f09cf007c51360bbcef9c20f05696a666ed5a7e9a087d3c5f2abc28d3b1_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-csi-addons-operator-bundle@sha256:36074f09cf007c51360bbcef9c20f05696a666ed5a7e9a087d3c5f2abc28d3b1_amd64" + }, + "product_reference": "odf4/odf-csi-addons-operator-bundle@sha256:36074f09cf007c51360bbcef9c20f05696a666ed5a7e9a087d3c5f2abc28d3b1_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-csi-addons-operator-bundle@sha256:53e09d58b3875d5584aedc091fcce42dcfe3f0d215092ecff8da61211ba822e3_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-csi-addons-operator-bundle@sha256:53e09d58b3875d5584aedc091fcce42dcfe3f0d215092ecff8da61211ba822e3_ppc64le" + }, + "product_reference": "odf4/odf-csi-addons-operator-bundle@sha256:53e09d58b3875d5584aedc091fcce42dcfe3f0d215092ecff8da61211ba822e3_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-csi-addons-operator-bundle@sha256:d79389a67faa8bdecb904f3341125428463fd9dee0eef4c49ad62b2046b0bc3b_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-csi-addons-operator-bundle@sha256:d79389a67faa8bdecb904f3341125428463fd9dee0eef4c49ad62b2046b0bc3b_s390x" + }, + "product_reference": "odf4/odf-csi-addons-operator-bundle@sha256:d79389a67faa8bdecb904f3341125428463fd9dee0eef4c49ad62b2046b0bc3b_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-csi-addons-rhel9-operator@sha256:22f1de08f29857973e81b71745ac622d43de92b383a70f9efa7bff7404fb8703_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-csi-addons-rhel9-operator@sha256:22f1de08f29857973e81b71745ac622d43de92b383a70f9efa7bff7404fb8703_amd64" + }, + "product_reference": "odf4/odf-csi-addons-rhel9-operator@sha256:22f1de08f29857973e81b71745ac622d43de92b383a70f9efa7bff7404fb8703_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-csi-addons-rhel9-operator@sha256:f380c5901d83e14c0fd49616749a1cd7d9ac83b4b3a757c152a1cc94460c0f7f_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-csi-addons-rhel9-operator@sha256:f380c5901d83e14c0fd49616749a1cd7d9ac83b4b3a757c152a1cc94460c0f7f_s390x" + }, + "product_reference": "odf4/odf-csi-addons-rhel9-operator@sha256:f380c5901d83e14c0fd49616749a1cd7d9ac83b4b3a757c152a1cc94460c0f7f_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-csi-addons-rhel9-operator@sha256:f5ba1535c00f7330847db8d7202aa1bb09aa7598e2c840dabb9156135688c2ad_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-csi-addons-rhel9-operator@sha256:f5ba1535c00f7330847db8d7202aa1bb09aa7598e2c840dabb9156135688c2ad_ppc64le" + }, + "product_reference": "odf4/odf-csi-addons-rhel9-operator@sha256:f5ba1535c00f7330847db8d7202aa1bb09aa7598e2c840dabb9156135688c2ad_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-csi-addons-rhel9-operator@sha256:fd167d95c42008058f7b7dc10f57ab835af7bef956599284daab4d95923a687b_arm64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-csi-addons-rhel9-operator@sha256:fd167d95c42008058f7b7dc10f57ab835af7bef956599284daab4d95923a687b_arm64" + }, + "product_reference": "odf4/odf-csi-addons-rhel9-operator@sha256:fd167d95c42008058f7b7dc10f57ab835af7bef956599284daab4d95923a687b_arm64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-csi-addons-sidecar-rhel9@sha256:0b1bec21a84065d144bdcfc433adccbc93038bd2a5c8a8164c50004138dbcb9f_arm64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-csi-addons-sidecar-rhel9@sha256:0b1bec21a84065d144bdcfc433adccbc93038bd2a5c8a8164c50004138dbcb9f_arm64" + }, + "product_reference": "odf4/odf-csi-addons-sidecar-rhel9@sha256:0b1bec21a84065d144bdcfc433adccbc93038bd2a5c8a8164c50004138dbcb9f_arm64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-csi-addons-sidecar-rhel9@sha256:701aa70b3c88008e143b97edf1b2ad6f408f3620b3e174fe08d355eca186a8e1_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-csi-addons-sidecar-rhel9@sha256:701aa70b3c88008e143b97edf1b2ad6f408f3620b3e174fe08d355eca186a8e1_amd64" + }, + "product_reference": "odf4/odf-csi-addons-sidecar-rhel9@sha256:701aa70b3c88008e143b97edf1b2ad6f408f3620b3e174fe08d355eca186a8e1_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-csi-addons-sidecar-rhel9@sha256:98a5ddc54894ec63160dace01773f0e078d659dbf2e3a637a5061692d13d740d_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-csi-addons-sidecar-rhel9@sha256:98a5ddc54894ec63160dace01773f0e078d659dbf2e3a637a5061692d13d740d_s390x" + }, + "product_reference": "odf4/odf-csi-addons-sidecar-rhel9@sha256:98a5ddc54894ec63160dace01773f0e078d659dbf2e3a637a5061692d13d740d_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-csi-addons-sidecar-rhel9@sha256:eecdcf798f46f87751d06803634ee2c55dba5be4fb9191724f6f66ce8e2d1d53_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-csi-addons-sidecar-rhel9@sha256:eecdcf798f46f87751d06803634ee2c55dba5be4fb9191724f6f66ce8e2d1d53_ppc64le" + }, + "product_reference": "odf4/odf-csi-addons-sidecar-rhel9@sha256:eecdcf798f46f87751d06803634ee2c55dba5be4fb9191724f6f66ce8e2d1d53_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-multicluster-console-rhel9@sha256:7e51fe4b13a94ba6ab433112f2d165a9950b63b6e479d6fd158ad593ff9c8bac_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-multicluster-console-rhel9@sha256:7e51fe4b13a94ba6ab433112f2d165a9950b63b6e479d6fd158ad593ff9c8bac_amd64" + }, + "product_reference": "odf4/odf-multicluster-console-rhel9@sha256:7e51fe4b13a94ba6ab433112f2d165a9950b63b6e479d6fd158ad593ff9c8bac_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-multicluster-console-rhel9@sha256:93e15fb7e7ad0ca8bdfa151bb4bc709e19b84a93b9dd4d6c5b5f09c1669410a7_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-multicluster-console-rhel9@sha256:93e15fb7e7ad0ca8bdfa151bb4bc709e19b84a93b9dd4d6c5b5f09c1669410a7_ppc64le" + }, + "product_reference": "odf4/odf-multicluster-console-rhel9@sha256:93e15fb7e7ad0ca8bdfa151bb4bc709e19b84a93b9dd4d6c5b5f09c1669410a7_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-multicluster-console-rhel9@sha256:e2185f7ac5e82ba3271f5d11bdcf649775afb4e275ff04868c9ba7d0be511e1e_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-multicluster-console-rhel9@sha256:e2185f7ac5e82ba3271f5d11bdcf649775afb4e275ff04868c9ba7d0be511e1e_s390x" + }, + "product_reference": "odf4/odf-multicluster-console-rhel9@sha256:e2185f7ac5e82ba3271f5d11bdcf649775afb4e275ff04868c9ba7d0be511e1e_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-multicluster-operator-bundle@sha256:1a1d5cce65a73a7ebd6796803e2adf296ca671816858d668117d9d21d14b1a87_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-multicluster-operator-bundle@sha256:1a1d5cce65a73a7ebd6796803e2adf296ca671816858d668117d9d21d14b1a87_s390x" + }, + "product_reference": "odf4/odf-multicluster-operator-bundle@sha256:1a1d5cce65a73a7ebd6796803e2adf296ca671816858d668117d9d21d14b1a87_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-multicluster-operator-bundle@sha256:60eefcb09904faadfef9b44f25da9fc8fc4923b178090e7218e67cb9ae0793a3_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-multicluster-operator-bundle@sha256:60eefcb09904faadfef9b44f25da9fc8fc4923b178090e7218e67cb9ae0793a3_ppc64le" + }, + "product_reference": "odf4/odf-multicluster-operator-bundle@sha256:60eefcb09904faadfef9b44f25da9fc8fc4923b178090e7218e67cb9ae0793a3_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-multicluster-operator-bundle@sha256:c106a989373ad238437d87f84b70333bd419949a218bbd0b1b33f55ee010a892_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-multicluster-operator-bundle@sha256:c106a989373ad238437d87f84b70333bd419949a218bbd0b1b33f55ee010a892_amd64" + }, + "product_reference": "odf4/odf-multicluster-operator-bundle@sha256:c106a989373ad238437d87f84b70333bd419949a218bbd0b1b33f55ee010a892_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-multicluster-rhel9-operator@sha256:0110d494cf1e0171e50218990dde818dfbd0119e88237459dc44fd8ffa8018bc_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-multicluster-rhel9-operator@sha256:0110d494cf1e0171e50218990dde818dfbd0119e88237459dc44fd8ffa8018bc_ppc64le" + }, + "product_reference": "odf4/odf-multicluster-rhel9-operator@sha256:0110d494cf1e0171e50218990dde818dfbd0119e88237459dc44fd8ffa8018bc_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-multicluster-rhel9-operator@sha256:1db819006c96804631357c3415b6ddf2a1c7adc6658d5f2a95dd686331893af2_arm64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-multicluster-rhel9-operator@sha256:1db819006c96804631357c3415b6ddf2a1c7adc6658d5f2a95dd686331893af2_arm64" + }, + "product_reference": "odf4/odf-multicluster-rhel9-operator@sha256:1db819006c96804631357c3415b6ddf2a1c7adc6658d5f2a95dd686331893af2_arm64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-multicluster-rhel9-operator@sha256:a662af8813a91db2db0bc6036b57809cba61814d06c3064d2223196883186c9c_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-multicluster-rhel9-operator@sha256:a662af8813a91db2db0bc6036b57809cba61814d06c3064d2223196883186c9c_amd64" + }, + "product_reference": "odf4/odf-multicluster-rhel9-operator@sha256:a662af8813a91db2db0bc6036b57809cba61814d06c3064d2223196883186c9c_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-multicluster-rhel9-operator@sha256:bae71b3fcde98cc26207fdab8c6e08bb1c20d5fc517107eee23e52ceb03d060e_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-multicluster-rhel9-operator@sha256:bae71b3fcde98cc26207fdab8c6e08bb1c20d5fc517107eee23e52ceb03d060e_s390x" + }, + "product_reference": "odf4/odf-multicluster-rhel9-operator@sha256:bae71b3fcde98cc26207fdab8c6e08bb1c20d5fc517107eee23e52ceb03d060e_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-must-gather-rhel9@sha256:656596458a504dc59881347a69ed67ded606fe2ecafebe612cac4ef687b83c2a_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-must-gather-rhel9@sha256:656596458a504dc59881347a69ed67ded606fe2ecafebe612cac4ef687b83c2a_ppc64le" + }, + "product_reference": "odf4/odf-must-gather-rhel9@sha256:656596458a504dc59881347a69ed67ded606fe2ecafebe612cac4ef687b83c2a_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-must-gather-rhel9@sha256:8c5171517378cf3d1ce8ff5526dfed9cd38c13691e425bb59c5f0ddca83c3984_arm64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-must-gather-rhel9@sha256:8c5171517378cf3d1ce8ff5526dfed9cd38c13691e425bb59c5f0ddca83c3984_arm64" + }, + "product_reference": "odf4/odf-must-gather-rhel9@sha256:8c5171517378cf3d1ce8ff5526dfed9cd38c13691e425bb59c5f0ddca83c3984_arm64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-must-gather-rhel9@sha256:bc71d7a33f838e3afeefe1cb72df8a9e29e0cf1aa20e3beea882939dcffd51b1_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-must-gather-rhel9@sha256:bc71d7a33f838e3afeefe1cb72df8a9e29e0cf1aa20e3beea882939dcffd51b1_amd64" + }, + "product_reference": "odf4/odf-must-gather-rhel9@sha256:bc71d7a33f838e3afeefe1cb72df8a9e29e0cf1aa20e3beea882939dcffd51b1_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-must-gather-rhel9@sha256:fa66ff5299778d29c990a6c177aa1378f76499f14da81ca0726705ed88205b6c_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-must-gather-rhel9@sha256:fa66ff5299778d29c990a6c177aa1378f76499f14da81ca0726705ed88205b6c_s390x" + }, + "product_reference": "odf4/odf-must-gather-rhel9@sha256:fa66ff5299778d29c990a6c177aa1378f76499f14da81ca0726705ed88205b6c_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-operator-bundle@sha256:2073c981617b587e900e92a933f7d144f14a86c9ba5429923a4bba4129877290_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-operator-bundle@sha256:2073c981617b587e900e92a933f7d144f14a86c9ba5429923a4bba4129877290_amd64" + }, + "product_reference": "odf4/odf-operator-bundle@sha256:2073c981617b587e900e92a933f7d144f14a86c9ba5429923a4bba4129877290_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-operator-bundle@sha256:aca59c5da1ab71fda2a9c1b58d9637349c99f6501787443d102bd3312a00bf61_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-operator-bundle@sha256:aca59c5da1ab71fda2a9c1b58d9637349c99f6501787443d102bd3312a00bf61_s390x" + }, + "product_reference": "odf4/odf-operator-bundle@sha256:aca59c5da1ab71fda2a9c1b58d9637349c99f6501787443d102bd3312a00bf61_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-operator-bundle@sha256:f7b2891ac970e16db4204bcc1fd562d41ff4c907223bdbec5e372fe42361a03e_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-operator-bundle@sha256:f7b2891ac970e16db4204bcc1fd562d41ff4c907223bdbec5e372fe42361a03e_ppc64le" + }, + "product_reference": "odf4/odf-operator-bundle@sha256:f7b2891ac970e16db4204bcc1fd562d41ff4c907223bdbec5e372fe42361a03e_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-rhel9-operator@sha256:7bb21477b9fc520dafb79bdf074b29fc2ee34dd66ea936ed828d9cd54298afa2_arm64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-rhel9-operator@sha256:7bb21477b9fc520dafb79bdf074b29fc2ee34dd66ea936ed828d9cd54298afa2_arm64" + }, + "product_reference": "odf4/odf-rhel9-operator@sha256:7bb21477b9fc520dafb79bdf074b29fc2ee34dd66ea936ed828d9cd54298afa2_arm64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-rhel9-operator@sha256:8eb089256eae891796741e26ebc18d251e24692f4fce4d6bdab6dbfa8d1930af_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-rhel9-operator@sha256:8eb089256eae891796741e26ebc18d251e24692f4fce4d6bdab6dbfa8d1930af_s390x" + }, + "product_reference": "odf4/odf-rhel9-operator@sha256:8eb089256eae891796741e26ebc18d251e24692f4fce4d6bdab6dbfa8d1930af_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-rhel9-operator@sha256:d207a79a6144f1f929342f41d2270bf6528caad00bea697d9129eb405241a7df_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-rhel9-operator@sha256:d207a79a6144f1f929342f41d2270bf6528caad00bea697d9129eb405241a7df_ppc64le" + }, + "product_reference": "odf4/odf-rhel9-operator@sha256:d207a79a6144f1f929342f41d2270bf6528caad00bea697d9129eb405241a7df_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odf-rhel9-operator@sha256:d52027bc58ef6a9a4a0b1b47abb4fb2651db958da5ffb4931c82cebb0838782e_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odf-rhel9-operator@sha256:d52027bc58ef6a9a4a0b1b47abb4fb2651db958da5ffb4931c82cebb0838782e_amd64" + }, + "product_reference": "odf4/odf-rhel9-operator@sha256:d52027bc58ef6a9a4a0b1b47abb4fb2651db958da5ffb4931c82cebb0838782e_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odr-cluster-operator-bundle@sha256:91b4ab5822b81c8c731e587951830b61d318124b0f70a7b5992ab1d7979ca1e1_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odr-cluster-operator-bundle@sha256:91b4ab5822b81c8c731e587951830b61d318124b0f70a7b5992ab1d7979ca1e1_s390x" + }, + "product_reference": "odf4/odr-cluster-operator-bundle@sha256:91b4ab5822b81c8c731e587951830b61d318124b0f70a7b5992ab1d7979ca1e1_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odr-cluster-operator-bundle@sha256:c11e131a187ff58e4143de82e9e81164359c072ecaa953ba851e2f3ce973e8c0_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odr-cluster-operator-bundle@sha256:c11e131a187ff58e4143de82e9e81164359c072ecaa953ba851e2f3ce973e8c0_amd64" + }, + "product_reference": "odf4/odr-cluster-operator-bundle@sha256:c11e131a187ff58e4143de82e9e81164359c072ecaa953ba851e2f3ce973e8c0_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odr-cluster-operator-bundle@sha256:f0e5ba9ff8d2a7413b21dcd88e238431b8897cae5d24134faeeb17769b930702_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odr-cluster-operator-bundle@sha256:f0e5ba9ff8d2a7413b21dcd88e238431b8897cae5d24134faeeb17769b930702_ppc64le" + }, + "product_reference": "odf4/odr-cluster-operator-bundle@sha256:f0e5ba9ff8d2a7413b21dcd88e238431b8897cae5d24134faeeb17769b930702_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odr-hub-operator-bundle@sha256:50ff517fcb19def59ed5599de7ca1aadfc45f8506e605df0a6f7b28a5352e1d7_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odr-hub-operator-bundle@sha256:50ff517fcb19def59ed5599de7ca1aadfc45f8506e605df0a6f7b28a5352e1d7_amd64" + }, + "product_reference": "odf4/odr-hub-operator-bundle@sha256:50ff517fcb19def59ed5599de7ca1aadfc45f8506e605df0a6f7b28a5352e1d7_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odr-hub-operator-bundle@sha256:7a3d210c3b23f5afc21d3db41ce8904a041ad7feffd8503f5c2ee52a97357cb7_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odr-hub-operator-bundle@sha256:7a3d210c3b23f5afc21d3db41ce8904a041ad7feffd8503f5c2ee52a97357cb7_s390x" + }, + "product_reference": "odf4/odr-hub-operator-bundle@sha256:7a3d210c3b23f5afc21d3db41ce8904a041ad7feffd8503f5c2ee52a97357cb7_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odr-hub-operator-bundle@sha256:a9f630b9bfebe4e363dd4d06e471ac0bc1bb8ada15aa64eeff02d38aa359302d_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odr-hub-operator-bundle@sha256:a9f630b9bfebe4e363dd4d06e471ac0bc1bb8ada15aa64eeff02d38aa359302d_ppc64le" + }, + "product_reference": "odf4/odr-hub-operator-bundle@sha256:a9f630b9bfebe4e363dd4d06e471ac0bc1bb8ada15aa64eeff02d38aa359302d_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odr-rhel9-operator@sha256:4c71572fdd69a4073455467201b958a308fbd59db81fc553a6ee24eddc45f011_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odr-rhel9-operator@sha256:4c71572fdd69a4073455467201b958a308fbd59db81fc553a6ee24eddc45f011_ppc64le" + }, + "product_reference": "odf4/odr-rhel9-operator@sha256:4c71572fdd69a4073455467201b958a308fbd59db81fc553a6ee24eddc45f011_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odr-rhel9-operator@sha256:6168ffb958078d292d77f6e6331d1875e248c053b05fc87c102cf24912540e80_arm64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odr-rhel9-operator@sha256:6168ffb958078d292d77f6e6331d1875e248c053b05fc87c102cf24912540e80_arm64" + }, + "product_reference": "odf4/odr-rhel9-operator@sha256:6168ffb958078d292d77f6e6331d1875e248c053b05fc87c102cf24912540e80_arm64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odr-rhel9-operator@sha256:a3f5d7281f9e28528923f54d816d7fe586f1cba6074f0a775fa613c99e5ad2a5_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odr-rhel9-operator@sha256:a3f5d7281f9e28528923f54d816d7fe586f1cba6074f0a775fa613c99e5ad2a5_s390x" + }, + "product_reference": "odf4/odr-rhel9-operator@sha256:a3f5d7281f9e28528923f54d816d7fe586f1cba6074f0a775fa613c99e5ad2a5_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/odr-rhel9-operator@sha256:b180a6a638ac27696a64a05f59dfe0de59f95bad3ade5d922cb8ee4d13d9e024_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/odr-rhel9-operator@sha256:b180a6a638ac27696a64a05f59dfe0de59f95bad3ade5d922cb8ee4d13d9e024_amd64" + }, + "product_reference": "odf4/odr-rhel9-operator@sha256:b180a6a638ac27696a64a05f59dfe0de59f95bad3ade5d922cb8ee4d13d9e024_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/rook-ceph-rhel9-operator@sha256:17aec04a9fbdbe6901a564743d0bdda4080b32571892a3633c63034aa7bc25cd_amd64 as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/rook-ceph-rhel9-operator@sha256:17aec04a9fbdbe6901a564743d0bdda4080b32571892a3633c63034aa7bc25cd_amd64" + }, + "product_reference": "odf4/rook-ceph-rhel9-operator@sha256:17aec04a9fbdbe6901a564743d0bdda4080b32571892a3633c63034aa7bc25cd_amd64", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/rook-ceph-rhel9-operator@sha256:9c6657db4952f5096eb9cbae6a8b5bcfaec530b9c41202e604d23bfba90dbcb4_ppc64le as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/rook-ceph-rhel9-operator@sha256:9c6657db4952f5096eb9cbae6a8b5bcfaec530b9c41202e604d23bfba90dbcb4_ppc64le" + }, + "product_reference": "odf4/rook-ceph-rhel9-operator@sha256:9c6657db4952f5096eb9cbae6a8b5bcfaec530b9c41202e604d23bfba90dbcb4_ppc64le", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odf4/rook-ceph-rhel9-operator@sha256:e18b3bec5944442cba078061c67c549d820522ddc6261c58a00208643def28a8_s390x as a component of RHODF 4.14 for RHEL 9", + "product_id": "9Base-RHODF-4.14:odf4/rook-ceph-rhel9-operator@sha256:e18b3bec5944442cba078061c67c549d820522ddc6261c58a00208643def28a8_s390x" + }, + "product_reference": "odf4/rook-ceph-rhel9-operator@sha256:e18b3bec5944442cba078061c67c549d820522ddc6261c58a00208643def28a8_s390x", + "relates_to_product_reference": "9Base-RHODF-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "collectd-libpod-stats-0:1.0.5-6.el9ost.src as a component of Red Hat OpenStack Platform 17.1", + "product_id": "9Base-RHOS-17.1:collectd-libpod-stats-0:1.0.5-6.el9ost.src" + }, + "product_reference": "collectd-libpod-stats-0:1.0.5-6.el9ost.src", + "relates_to_product_reference": "9Base-RHOS-17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "collectd-libpod-stats-0:1.0.5-6.el9ost.x86_64 as a component of Red Hat OpenStack Platform 17.1", + "product_id": "9Base-RHOS-17.1:collectd-libpod-stats-0:1.0.5-6.el9ost.x86_64" + }, + "product_reference": "collectd-libpod-stats-0:1.0.5-6.el9ost.x86_64", + "relates_to_product_reference": "9Base-RHOS-17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "etcd-0:3.4.26-3.el9ost.src as a component of Red Hat OpenStack Platform 17.1", + "product_id": "9Base-RHOS-17.1:etcd-0:3.4.26-3.el9ost.src" + }, + "product_reference": "etcd-0:3.4.26-3.el9ost.src", + "relates_to_product_reference": "9Base-RHOS-17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "etcd-0:3.4.26-3.el9ost.x86_64 as a component of Red Hat OpenStack Platform 17.1", + "product_id": "9Base-RHOS-17.1:etcd-0:3.4.26-3.el9ost.x86_64" + }, + "product_reference": "etcd-0:3.4.26-3.el9ost.x86_64", + "relates_to_product_reference": "9Base-RHOS-17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "etcd-debuginfo-0:3.4.26-3.el9ost.x86_64 as a component of Red Hat OpenStack Platform 17.1", + "product_id": "9Base-RHOS-17.1:etcd-debuginfo-0:3.4.26-3.el9ost.x86_64" + }, + "product_reference": "etcd-debuginfo-0:3.4.26-3.el9ost.x86_64", + "relates_to_product_reference": "9Base-RHOS-17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "etcd-debugsource-0:3.4.26-3.el9ost.x86_64 as a component of Red Hat OpenStack Platform 17.1", + "product_id": "9Base-RHOS-17.1:etcd-debugsource-0:3.4.26-3.el9ost.x86_64" + }, + "product_reference": "etcd-debugsource-0:3.4.26-3.el9ost.x86_64", + "relates_to_product_reference": "9Base-RHOS-17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-octavia-tests-tempest-0:1.9.0-1.20230509101018.el9ost.src as a component of Red Hat OpenStack Platform 17.1", + "product_id": "9Base-RHOS-17.1:python-octavia-tests-tempest-0:1.9.0-1.20230509101018.el9ost.src" + }, + "product_reference": "python-octavia-tests-tempest-0:1.9.0-1.20230509101018.el9ost.src", + "relates_to_product_reference": "9Base-RHOS-17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-octavia-tests-tempest-debugsource-0:1.9.0-1.20230509101018.el9ost.x86_64 as a component of Red Hat OpenStack Platform 17.1", + "product_id": "9Base-RHOS-17.1:python-octavia-tests-tempest-debugsource-0:1.9.0-1.20230509101018.el9ost.x86_64" + }, + "product_reference": "python-octavia-tests-tempest-debugsource-0:1.9.0-1.20230509101018.el9ost.x86_64", + "relates_to_product_reference": "9Base-RHOS-17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-octavia-tests-tempest-0:1.9.0-1.20230509101018.el9ost.noarch as a component of Red Hat OpenStack Platform 17.1", + "product_id": "9Base-RHOS-17.1:python3-octavia-tests-tempest-0:1.9.0-1.20230509101018.el9ost.noarch" + }, + "product_reference": "python3-octavia-tests-tempest-0:1.9.0-1.20230509101018.el9ost.noarch", + "relates_to_product_reference": "9Base-RHOS-17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-octavia-tests-tempest-golang-0:1.9.0-1.20230509101018.el9ost.x86_64 as a component of Red Hat OpenStack Platform 17.1", + "product_id": "9Base-RHOS-17.1:python3-octavia-tests-tempest-golang-0:1.9.0-1.20230509101018.el9ost.x86_64" + }, + "product_reference": "python3-octavia-tests-tempest-golang-0:1.9.0-1.20230509101018.el9ost.x86_64", + "relates_to_product_reference": "9Base-RHOS-17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-octavia-tests-tempest-golang-debuginfo-0:1.9.0-1.20230509101018.el9ost.x86_64 as a component of Red Hat OpenStack Platform 17.1", + "product_id": "9Base-RHOS-17.1:python3-octavia-tests-tempest-golang-debuginfo-0:1.9.0-1.20230509101018.el9ost.x86_64" + }, + "product_reference": "python3-octavia-tests-tempest-golang-debuginfo-0:1.9.0-1.20230509101018.el9ost.x86_64", + "relates_to_product_reference": "9Base-RHOS-17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel9/osp-director-agent@sha256:10b51664c656a13faaeb88dbdf8a212006ebcf144b473c3df4366b26716595ca_amd64 as a component of Red Hat OpenStack Platform 17.1", + "product_id": "9Base-RHOS-17.1:rhosp-rhel9/osp-director-agent@sha256:10b51664c656a13faaeb88dbdf8a212006ebcf144b473c3df4366b26716595ca_amd64" + }, + "product_reference": "rhosp-rhel9/osp-director-agent@sha256:10b51664c656a13faaeb88dbdf8a212006ebcf144b473c3df4366b26716595ca_amd64", + "relates_to_product_reference": "9Base-RHOS-17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel9/osp-director-downloader@sha256:8f2ce2bf02b1b9c4459abdf4074245715aa38445dccdb103c9d7666bb2986046_amd64 as a component of Red Hat OpenStack Platform 17.1", + "product_id": "9Base-RHOS-17.1:rhosp-rhel9/osp-director-downloader@sha256:8f2ce2bf02b1b9c4459abdf4074245715aa38445dccdb103c9d7666bb2986046_amd64" + }, + "product_reference": "rhosp-rhel9/osp-director-downloader@sha256:8f2ce2bf02b1b9c4459abdf4074245715aa38445dccdb103c9d7666bb2986046_amd64", + "relates_to_product_reference": "9Base-RHOS-17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel9/osp-director-operator-bundle@sha256:ab0228b2f438f9d6684b6ab270988b46c7e66588abf2c323605f0759e52fd27b_amd64 as a component of Red Hat OpenStack Platform 17.1", + "product_id": "9Base-RHOS-17.1:rhosp-rhel9/osp-director-operator-bundle@sha256:ab0228b2f438f9d6684b6ab270988b46c7e66588abf2c323605f0759e52fd27b_amd64" + }, + "product_reference": "rhosp-rhel9/osp-director-operator-bundle@sha256:ab0228b2f438f9d6684b6ab270988b46c7e66588abf2c323605f0759e52fd27b_amd64", + "relates_to_product_reference": "9Base-RHOS-17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel9/osp-director-operator@sha256:234d616518185e0cedbc3ba80bcb92f81cfdfa20854387aefa472a87c978bde3_amd64 as a component of Red Hat OpenStack Platform 17.1", + "product_id": "9Base-RHOS-17.1:rhosp-rhel9/osp-director-operator@sha256:234d616518185e0cedbc3ba80bcb92f81cfdfa20854387aefa472a87c978bde3_amd64" + }, + "product_reference": "rhosp-rhel9/osp-director-operator@sha256:234d616518185e0cedbc3ba80bcb92f81cfdfa20854387aefa472a87c978bde3_amd64", + "relates_to_product_reference": "9Base-RHOS-17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.src as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "9Base-RHOSE-4.12:openshift-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.src" + }, + "product_reference": "openshift-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "9Base-RHOSE-4.12:openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.aarch64" + }, + "product_reference": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "9Base-RHOSE-4.12:openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.ppc64le" + }, + "product_reference": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "9Base-RHOSE-4.12:openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.s390x" + }, + "product_reference": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.src as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "9Base-RHOSE-4.12:openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.src" + }, + "product_reference": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "9Base-RHOSE-4.12:openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.x86_64" + }, + "product_reference": "openshift-clients-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-redistributable-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "9Base-RHOSE-4.12:openshift-clients-redistributable-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.x86_64" + }, + "product_reference": "openshift-clients-redistributable-0:4.12.0-202310131144.p0.g7aa4009.assembly.stream.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "9Base-RHOSE-4.12:openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.aarch64" + }, + "product_reference": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "9Base-RHOSE-4.12:openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.ppc64le" + }, + "product_reference": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.s390x as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "9Base-RHOSE-4.12:openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.s390x" + }, + "product_reference": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "9Base-RHOSE-4.12:openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.x86_64" + }, + "product_reference": "openshift-hyperkube-0:4.12.0-202310132326.p0.g20cda61.assembly.stream.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-agent-rhel9@sha256:5941895467580fd2d919851e70b68161164f32b5c66e5c112491c32eaf40cd66_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "9Base-RHOSE-4.12:openshift4/ose-ironic-agent-rhel9@sha256:5941895467580fd2d919851e70b68161164f32b5c66e5c112491c32eaf40cd66_amd64" + }, + "product_reference": "openshift4/ose-ironic-agent-rhel9@sha256:5941895467580fd2d919851e70b68161164f32b5c66e5c112491c32eaf40cd66_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-agent-rhel9@sha256:6fa10ac80602556e7f245e8d4dcb127b6f9de90c67f2f36c357cf126b6950e59_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "9Base-RHOSE-4.12:openshift4/ose-ironic-agent-rhel9@sha256:6fa10ac80602556e7f245e8d4dcb127b6f9de90c67f2f36c357cf126b6950e59_arm64" + }, + "product_reference": "openshift4/ose-ironic-agent-rhel9@sha256:6fa10ac80602556e7f245e8d4dcb127b6f9de90c67f2f36c357cf126b6950e59_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c409567e711c207833b7714c7e21a989eaeb74adbd479ea416a884eb4989a6c6_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "9Base-RHOSE-4.12:openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c409567e711c207833b7714c7e21a989eaeb74adbd479ea416a884eb4989a6c6_arm64" + }, + "product_reference": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:c409567e711c207833b7714c7e21a989eaeb74adbd479ea416a884eb4989a6c6_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f50a32cb7faddfb882c862fe00430bbbb8a68ce9fdc5547f6094792b8ba5ac00_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "9Base-RHOSE-4.12:openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f50a32cb7faddfb882c862fe00430bbbb8a68ce9fdc5547f6094792b8ba5ac00_amd64" + }, + "product_reference": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:f50a32cb7faddfb882c862fe00430bbbb8a68ce9fdc5547f6094792b8ba5ac00_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-rhel9@sha256:c7f801b553bbca8e79a1614eb92e9d89e1c82d5cc7dc671414c66a86d85edac5_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "9Base-RHOSE-4.12:openshift4/ose-ironic-rhel9@sha256:c7f801b553bbca8e79a1614eb92e9d89e1c82d5cc7dc671414c66a86d85edac5_amd64" + }, + "product_reference": "openshift4/ose-ironic-rhel9@sha256:c7f801b553bbca8e79a1614eb92e9d89e1c82d5cc7dc671414c66a86d85edac5_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-rhel9@sha256:f8915d84762515c2319fa8d4c656c1837e5a46e8ed13ece3e25fa9118a8871cb_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "9Base-RHOSE-4.12:openshift4/ose-ironic-rhel9@sha256:f8915d84762515c2319fa8d4c656c1837e5a46e8ed13ece3e25fa9118a8871cb_arm64" + }, + "product_reference": "openshift4/ose-ironic-rhel9@sha256:f8915d84762515c2319fa8d4c656c1837e5a46e8ed13ece3e25fa9118a8871cb_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8f3fb5836db7a8db5c2dee991dad1b983d66124a79bef61d13ca18093fda34ed_arm64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "9Base-RHOSE-4.12:openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8f3fb5836db7a8db5c2dee991dad1b983d66124a79bef61d13ca18093fda34ed_arm64" + }, + "product_reference": "openshift4/ose-ironic-static-ip-manager-rhel9@sha256:8f3fb5836db7a8db5c2dee991dad1b983d66124a79bef61d13ca18093fda34ed_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f76eec469b64b5f7e6735fb1fa1f183103917d847f7263ade52208aa4d3105c7_amd64 as a component of Red Hat OpenShift Container Platform 4.12", + "product_id": "9Base-RHOSE-4.12:openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f76eec469b64b5f7e6735fb1fa1f183103917d847f7263ade52208aa4d3105c7_amd64" + }, + "product_reference": "openshift4/ose-ironic-static-ip-manager-rhel9@sha256:f76eec469b64b5f7e6735fb1fa1f183103917d847f7263ade52208aa4d3105c7_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-0:7.0.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:bpftool-0:7.0.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "bpftool-0:7.0.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-0:7.0.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:bpftool-0:7.0.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "bpftool-0:7.0.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-0:7.0.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:bpftool-0:7.0.0-284.41.1.el9_2.s390x" + }, + "product_reference": "bpftool-0:7.0.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-0:7.0.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:bpftool-0:7.0.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "bpftool-0:7.0.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-debuginfo-0:7.0.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:bpftool-debuginfo-0:7.0.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "bpftool-debuginfo-0:7.0.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-debuginfo-0:7.0.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:bpftool-debuginfo-0:7.0.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "bpftool-debuginfo-0:7.0.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-debuginfo-0:7.0.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:bpftool-debuginfo-0:7.0.0-284.41.1.el9_2.s390x" + }, + "product_reference": "bpftool-debuginfo-0:7.0.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-debuginfo-0:7.0.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:bpftool-debuginfo-0:7.0.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "bpftool-debuginfo-0:7.0.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.aarch64" + }, + "product_reference": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.ppc64le" + }, + "product_reference": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.s390x" + }, + "product_reference": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.src as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.src" + }, + "product_reference": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.x86_64" + }, + "product_reference": "cri-o-0:1.26.4-5.1.rhaos4.13.git969e013.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el9.aarch64" + }, + "product_reference": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el9.ppc64le" + }, + "product_reference": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el9.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el9.s390x" + }, + "product_reference": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el9.x86_64" + }, + "product_reference": "cri-o-debuginfo-0:1.26.4-5.1.rhaos4.13.git969e013.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el9.aarch64" + }, + "product_reference": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el9.ppc64le" + }, + "product_reference": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el9.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el9.s390x" + }, + "product_reference": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el9.x86_64" + }, + "product_reference": "cri-o-debugsource-0:1.26.4-5.1.rhaos4.13.git969e013.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:5.14.0-284.41.1.el9_2.src as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-0:5.14.0-284.41.1.el9_2.src" + }, + "product_reference": "kernel-0:5.14.0-284.41.1.el9_2.src", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-64k-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-core-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-64k-core-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-core-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-64k-debug-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-core-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-64k-debug-core-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-core-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-64k-debug-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-devel-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-64k-debug-devel-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-devel-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-devel-matched-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-64k-debug-devel-matched-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-devel-matched-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-modules-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-64k-debug-modules-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-modules-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-modules-core-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-64k-debug-modules-core-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-modules-core-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-modules-extra-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-64k-debug-modules-extra-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-modules-extra-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-modules-internal-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-64k-debug-modules-internal-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-modules-internal-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-modules-partner-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-64k-debug-modules-partner-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-modules-partner-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-64k-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-devel-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-64k-devel-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-devel-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-devel-matched-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-64k-devel-matched-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-devel-matched-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-modules-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-64k-modules-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-modules-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-modules-core-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-64k-modules-core-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-modules-core-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-modules-extra-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-64k-modules-extra-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-modules-extra-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-modules-internal-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-64k-modules-internal-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-modules-internal-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-modules-partner-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-64k-modules-partner-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-modules-partner-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-abi-stablelists-0:5.14.0-284.41.1.el9_2.noarch as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-abi-stablelists-0:5.14.0-284.41.1.el9_2.noarch" + }, + "product_reference": "kernel-abi-stablelists-0:5.14.0-284.41.1.el9_2.noarch", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-core-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-core-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-core-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-core-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-core-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-core-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-core-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-core-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-core-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-core-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-core-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-core-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-cross-headers-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-cross-headers-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-cross-headers-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-cross-headers-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-cross-headers-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-cross-headers-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-cross-headers-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-cross-headers-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-cross-headers-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-cross-headers-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-cross-headers-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-cross-headers-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-core-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-core-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-core-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-core-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-core-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-core-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-core-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-core-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-core-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-core-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-core-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-core-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-debuginfo-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-debuginfo-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-devel-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-devel-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-devel-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-devel-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-devel-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-devel-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-devel-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-devel-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-matched-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-devel-matched-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-matched-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-devel-matched-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-matched-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-devel-matched-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-matched-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-devel-matched-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-modules-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-modules-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-modules-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-modules-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-modules-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-modules-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-modules-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-modules-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-core-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-modules-core-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-modules-core-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-core-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-modules-core-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-modules-core-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-core-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-modules-core-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-modules-core-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-core-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-modules-core-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-modules-core-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-extra-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-modules-extra-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-extra-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-modules-extra-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-extra-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-modules-extra-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-extra-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-modules-extra-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-internal-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-modules-internal-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-modules-internal-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-internal-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-modules-internal-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-modules-internal-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-internal-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-modules-internal-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-modules-internal-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-internal-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-modules-internal-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-modules-internal-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-partner-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-modules-partner-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-modules-partner-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-partner-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-modules-partner-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-modules-partner-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-partner-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-modules-partner-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-modules-partner-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-partner-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-modules-partner-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-modules-partner-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-uki-virt-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debug-uki-virt-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-uki-virt-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debuginfo-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-debuginfo-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-common-aarch64-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debuginfo-common-aarch64-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debuginfo-common-ppc64le-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-common-s390x-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debuginfo-common-s390x-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-common-x86_64-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-debuginfo-common-x86_64-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-devel-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-devel-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-devel-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-devel-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-devel-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-devel-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-devel-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-devel-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-matched-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-devel-matched-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-devel-matched-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-matched-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-devel-matched-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-devel-matched-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-matched-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-devel-matched-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-devel-matched-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-matched-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-devel-matched-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-devel-matched-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-doc-0:5.14.0-284.41.1.el9_2.noarch as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-doc-0:5.14.0-284.41.1.el9_2.noarch" + }, + "product_reference": "kernel-doc-0:5.14.0-284.41.1.el9_2.noarch", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-headers-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-headers-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-headers-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-headers-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-headers-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-headers-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-headers-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-headers-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-headers-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-headers-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-headers-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-headers-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-ipaclones-internal-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-ipaclones-internal-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-ipaclones-internal-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-ipaclones-internal-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-ipaclones-internal-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-ipaclones-internal-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-modules-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-modules-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-modules-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-modules-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-modules-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-modules-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-modules-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-modules-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-core-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-modules-core-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-modules-core-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-core-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-modules-core-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-modules-core-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-core-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-modules-core-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-modules-core-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-core-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-modules-core-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-modules-core-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-extra-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-modules-extra-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-modules-extra-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-extra-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-modules-extra-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-modules-extra-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-extra-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-modules-extra-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-modules-extra-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-extra-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-modules-extra-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-modules-extra-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-internal-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-modules-internal-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-modules-internal-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-internal-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-modules-internal-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-modules-internal-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-internal-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-modules-internal-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-modules-internal-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-internal-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-modules-internal-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-modules-internal-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-partner-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-modules-partner-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-modules-partner-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-partner-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-modules-partner-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-modules-partner-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-partner-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-modules-partner-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-modules-partner-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-partner-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-modules-partner-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-modules-partner-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-0:5.14.0-284.41.1.rt14.326.el9_2.src as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-0:5.14.0-284.41.1.rt14.326.el9_2.src" + }, + "product_reference": "kernel-rt-0:5.14.0-284.41.1.rt14.326.el9_2.src", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64" + }, + "product_reference": "kernel-rt-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-core-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-core-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64" + }, + "product_reference": "kernel-rt-core-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-debug-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-core-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-debug-core-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-core-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-debuginfo-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-debug-debuginfo-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-devel-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-debug-devel-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-devel-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-devel-matched-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-debug-devel-matched-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-devel-matched-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-kvm-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-debug-kvm-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-kvm-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-modules-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-debug-modules-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-modules-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-modules-core-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-debug-modules-core-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-modules-core-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-modules-extra-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-debug-modules-extra-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-modules-internal-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-debug-modules-internal-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-modules-internal-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-modules-partner-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-debug-modules-partner-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-modules-partner-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debuginfo-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-debuginfo-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debuginfo-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-devel-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-devel-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64" + }, + "product_reference": "kernel-rt-devel-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-devel-matched-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-devel-matched-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64" + }, + "product_reference": "kernel-rt-devel-matched-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-kvm-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-kvm-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64" + }, + "product_reference": "kernel-rt-kvm-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-modules-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-modules-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64" + }, + "product_reference": "kernel-rt-modules-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-modules-core-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-modules-core-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64" + }, + "product_reference": "kernel-rt-modules-core-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-modules-extra-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-modules-extra-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64" + }, + "product_reference": "kernel-rt-modules-extra-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-modules-internal-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-modules-internal-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64" + }, + "product_reference": "kernel-rt-modules-internal-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-modules-partner-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-modules-partner-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64" + }, + "product_reference": "kernel-rt-modules-partner-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-selftests-internal-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-rt-selftests-internal-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64" + }, + "product_reference": "kernel-rt-selftests-internal-0:5.14.0-284.41.1.rt14.326.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-selftests-internal-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-selftests-internal-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-selftests-internal-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-selftests-internal-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-selftests-internal-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-selftests-internal-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-selftests-internal-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-selftests-internal-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-selftests-internal-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-selftests-internal-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-selftests-internal-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-selftests-internal-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-tools-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-tools-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-tools-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-tools-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-tools-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-tools-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-tools-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-tools-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-tools-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-tools-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-debuginfo-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-tools-debuginfo-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-tools-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-tools-libs-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-tools-libs-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-tools-libs-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-tools-libs-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-tools-libs-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-tools-libs-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-devel-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-tools-libs-devel-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-devel-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-tools-libs-devel-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-devel-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-tools-libs-devel-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-uki-virt-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-uki-virt-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "kernel-uki-virt-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-zfcpdump-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-core-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-zfcpdump-core-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-core-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-debuginfo-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-zfcpdump-debuginfo-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-devel-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-zfcpdump-devel-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-devel-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-devel-matched-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-zfcpdump-devel-matched-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-devel-matched-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-modules-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-zfcpdump-modules-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-modules-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-modules-core-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-zfcpdump-modules-core-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-modules-core-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-modules-extra-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-zfcpdump-modules-extra-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-modules-extra-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-modules-internal-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-zfcpdump-modules-internal-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-modules-internal-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-modules-partner-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:kernel-zfcpdump-modules-partner-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-modules-partner-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.aarch64" + }, + "product_reference": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.ppc64le" + }, + "product_reference": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.s390x" + }, + "product_reference": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.src as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.src" + }, + "product_reference": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.x86_64" + }, + "product_reference": "openshift-clients-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-redistributable-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift-clients-redistributable-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.x86_64" + }, + "product_reference": "openshift-clients-redistributable-0:4.13.0-202311151332.p0.gc7c6eb2.assembly.stream.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/driver-toolkit-rhel9@sha256:11f156e415077fceb100b659a1beee2bb819a7e80e26022d6df0e2ddb727021f_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/driver-toolkit-rhel9@sha256:11f156e415077fceb100b659a1beee2bb819a7e80e26022d6df0e2ddb727021f_arm64" + }, + "product_reference": "openshift4/driver-toolkit-rhel9@sha256:11f156e415077fceb100b659a1beee2bb819a7e80e26022d6df0e2ddb727021f_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/driver-toolkit-rhel9@sha256:af3fd5e6a0002e6533d92bded7bb33da633d3b1b30d875545685b287b39b0b5a_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/driver-toolkit-rhel9@sha256:af3fd5e6a0002e6533d92bded7bb33da633d3b1b30d875545685b287b39b0b5a_s390x" + }, + "product_reference": "openshift4/driver-toolkit-rhel9@sha256:af3fd5e6a0002e6533d92bded7bb33da633d3b1b30d875545685b287b39b0b5a_s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/driver-toolkit-rhel9@sha256:da458c490218f5e1482ceeb40b0bfa524cf347128e3e66613353bba03b890c7a_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/driver-toolkit-rhel9@sha256:da458c490218f5e1482ceeb40b0bfa524cf347128e3e66613353bba03b890c7a_ppc64le" + }, + "product_reference": "openshift4/driver-toolkit-rhel9@sha256:da458c490218f5e1482ceeb40b0bfa524cf347128e3e66613353bba03b890c7a_ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/driver-toolkit-rhel9@sha256:ddd5ae8159e9da453907ddc8cea4b984afde2028a4a52553aabd66104cd2e328_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/driver-toolkit-rhel9@sha256:ddd5ae8159e9da453907ddc8cea4b984afde2028a4a52553aabd66104cd2e328_amd64" + }, + "product_reference": "openshift4/driver-toolkit-rhel9@sha256:ddd5ae8159e9da453907ddc8cea4b984afde2028a4a52553aabd66104cd2e328_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-etcd-rhel9@sha256:117a28fc3dff84e4183d898c1d1b5e59b15036f25d6ecfee824b1f0fa5f8b07e_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/ose-etcd-rhel9@sha256:117a28fc3dff84e4183d898c1d1b5e59b15036f25d6ecfee824b1f0fa5f8b07e_arm64" + }, + "product_reference": "openshift4/ose-etcd-rhel9@sha256:117a28fc3dff84e4183d898c1d1b5e59b15036f25d6ecfee824b1f0fa5f8b07e_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-etcd-rhel9@sha256:21d0250de7b5754980e5457d59757c98d78eb95f6bca0cd0da890efdfc983e2a_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/ose-etcd-rhel9@sha256:21d0250de7b5754980e5457d59757c98d78eb95f6bca0cd0da890efdfc983e2a_s390x" + }, + "product_reference": "openshift4/ose-etcd-rhel9@sha256:21d0250de7b5754980e5457d59757c98d78eb95f6bca0cd0da890efdfc983e2a_s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-etcd-rhel9@sha256:acde3d71d0ee97160d0a5ee9aca13d53685261d3d3a2e84dc640c8ee7a68cea2_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/ose-etcd-rhel9@sha256:acde3d71d0ee97160d0a5ee9aca13d53685261d3d3a2e84dc640c8ee7a68cea2_amd64" + }, + "product_reference": "openshift4/ose-etcd-rhel9@sha256:acde3d71d0ee97160d0a5ee9aca13d53685261d3d3a2e84dc640c8ee7a68cea2_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-etcd-rhel9@sha256:c2b8725062ff33acf0450fa2a9cba0b2f8c1696d31ed7a7b22d256b64bb28120_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/ose-etcd-rhel9@sha256:c2b8725062ff33acf0450fa2a9cba0b2f8c1696d31ed7a7b22d256b64bb28120_ppc64le" + }, + "product_reference": "openshift4/ose-etcd-rhel9@sha256:c2b8725062ff33acf0450fa2a9cba0b2f8c1696d31ed7a7b22d256b64bb28120_ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-agent-rhel9@sha256:5b4d2b40243efcdf1f7e35f03692d56cc69858ca4f3086f5bdf87de3e162f472_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/ose-ironic-agent-rhel9@sha256:5b4d2b40243efcdf1f7e35f03692d56cc69858ca4f3086f5bdf87de3e162f472_arm64" + }, + "product_reference": "openshift4/ose-ironic-agent-rhel9@sha256:5b4d2b40243efcdf1f7e35f03692d56cc69858ca4f3086f5bdf87de3e162f472_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-agent-rhel9@sha256:9ea2f3cbec65e5fd931b511ba075513865032ba678a4aaec170092bb89bce411_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/ose-ironic-agent-rhel9@sha256:9ea2f3cbec65e5fd931b511ba075513865032ba678a4aaec170092bb89bce411_amd64" + }, + "product_reference": "openshift4/ose-ironic-agent-rhel9@sha256:9ea2f3cbec65e5fd931b511ba075513865032ba678a4aaec170092bb89bce411_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:66cfa049ac47732d9a3424accff90c935d85411dc20865812ffee8dd9af37993_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:66cfa049ac47732d9a3424accff90c935d85411dc20865812ffee8dd9af37993_amd64" + }, + "product_reference": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:66cfa049ac47732d9a3424accff90c935d85411dc20865812ffee8dd9af37993_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e7891ba225656a51862815c6e05934924e78c85abb9d38aedf5f6bfe1bf23637_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e7891ba225656a51862815c6e05934924e78c85abb9d38aedf5f6bfe1bf23637_arm64" + }, + "product_reference": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:e7891ba225656a51862815c6e05934924e78c85abb9d38aedf5f6bfe1bf23637_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-rhel9@sha256:463075ba7a1d4e33ebb7d9cb22bb115c413bc1557cd5b66bbefbaaa5c87dbd9a_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/ose-ironic-rhel9@sha256:463075ba7a1d4e33ebb7d9cb22bb115c413bc1557cd5b66bbefbaaa5c87dbd9a_amd64" + }, + "product_reference": "openshift4/ose-ironic-rhel9@sha256:463075ba7a1d4e33ebb7d9cb22bb115c413bc1557cd5b66bbefbaaa5c87dbd9a_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-rhel9@sha256:ac9a7772a3c399a809f21a99aba373310b4b384185fcdebb20065b81bef936cc_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/ose-ironic-rhel9@sha256:ac9a7772a3c399a809f21a99aba373310b4b384185fcdebb20065b81bef936cc_arm64" + }, + "product_reference": "openshift4/ose-ironic-rhel9@sha256:ac9a7772a3c399a809f21a99aba373310b4b384185fcdebb20065b81bef936cc_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-static-ip-manager-rhel9@sha256:4a76daf5aaf6836997ed233c031547f3b3c939ca1dc5b4d25cf1de0d5947edb6_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/ose-ironic-static-ip-manager-rhel9@sha256:4a76daf5aaf6836997ed233c031547f3b3c939ca1dc5b4d25cf1de0d5947edb6_arm64" + }, + "product_reference": "openshift4/ose-ironic-static-ip-manager-rhel9@sha256:4a76daf5aaf6836997ed233c031547f3b3c939ca1dc5b4d25cf1de0d5947edb6_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-static-ip-manager-rhel9@sha256:57d174088d6f248fe2f51837354f712929ceb4ec6885e77327ed62be7e497e9e_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/ose-ironic-static-ip-manager-rhel9@sha256:57d174088d6f248fe2f51837354f712929ceb4ec6885e77327ed62be7e497e9e_amd64" + }, + "product_reference": "openshift4/ose-ironic-static-ip-manager-rhel9@sha256:57d174088d6f248fe2f51837354f712929ceb4ec6885e77327ed62be7e497e9e_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1cb1b66abe51e5d2c34b1a803a5a2ac02de66ee7347f5730c2ebb02c1f9a91d1_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1cb1b66abe51e5d2c34b1a803a5a2ac02de66ee7347f5730c2ebb02c1f9a91d1_s390x" + }, + "product_reference": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:1cb1b66abe51e5d2c34b1a803a5a2ac02de66ee7347f5730c2ebb02c1f9a91d1_s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84ae5a1ec18c3186b101b084b3632d8097368ce80aebd6bc4243ceaf8be90ffc_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84ae5a1ec18c3186b101b084b3632d8097368ce80aebd6bc4243ceaf8be90ffc_ppc64le" + }, + "product_reference": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:84ae5a1ec18c3186b101b084b3632d8097368ce80aebd6bc4243ceaf8be90ffc_ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e52786a4ba56c66824334a44692909624fc4d459f362427da7e1e7c36962d7b9_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e52786a4ba56c66824334a44692909624fc4d459f362427da7e1e7c36962d7b9_arm64" + }, + "product_reference": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:e52786a4ba56c66824334a44692909624fc4d459f362427da7e1e7c36962d7b9_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f99fae80999fb44c00a07973458067e38be29975a8f864884ef81788c50712b0_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f99fae80999fb44c00a07973458067e38be29975a8f864884ef81788c50712b0_amd64" + }, + "product_reference": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:f99fae80999fb44c00a07973458067e38be29975a8f864884ef81788c50712b0_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes@sha256:606ac7d3ca14d683111a933ab4593c87bae8874218dba7b0869f8b5b1be94b0c_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/ose-ovn-kubernetes@sha256:606ac7d3ca14d683111a933ab4593c87bae8874218dba7b0869f8b5b1be94b0c_ppc64le" + }, + "product_reference": "openshift4/ose-ovn-kubernetes@sha256:606ac7d3ca14d683111a933ab4593c87bae8874218dba7b0869f8b5b1be94b0c_ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes@sha256:75ca5ec0615e9ae449b83d64a1b793c8f90c9c20ae7629865d7a5bdeb0d15535_s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/ose-ovn-kubernetes@sha256:75ca5ec0615e9ae449b83d64a1b793c8f90c9c20ae7629865d7a5bdeb0d15535_s390x" + }, + "product_reference": "openshift4/ose-ovn-kubernetes@sha256:75ca5ec0615e9ae449b83d64a1b793c8f90c9c20ae7629865d7a5bdeb0d15535_s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes@sha256:7efd422c46c66eb1e364694efd310140d31011f88d5f3f98e7606a6412059f98_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/ose-ovn-kubernetes@sha256:7efd422c46c66eb1e364694efd310140d31011f88d5f3f98e7606a6412059f98_arm64" + }, + "product_reference": "openshift4/ose-ovn-kubernetes@sha256:7efd422c46c66eb1e364694efd310140d31011f88d5f3f98e7606a6412059f98_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes@sha256:81e8b77e0221863e046b553250f2738560d6831f0708ac258dbd20a5e33d1688_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/ose-ovn-kubernetes@sha256:81e8b77e0221863e046b553250f2738560d6831f0708ac258dbd20a5e33d1688_amd64" + }, + "product_reference": "openshift4/ose-ovn-kubernetes@sha256:81e8b77e0221863e046b553250f2738560d6831f0708ac258dbd20a5e33d1688_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/sriov-cni-rhel9@sha256:9d440268f279fdc21a13184831ae10089eaf14026424e363914484b19680640a_amd64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/sriov-cni-rhel9@sha256:9d440268f279fdc21a13184831ae10089eaf14026424e363914484b19680640a_amd64" + }, + "product_reference": "openshift4/sriov-cni-rhel9@sha256:9d440268f279fdc21a13184831ae10089eaf14026424e363914484b19680640a_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/sriov-cni-rhel9@sha256:b3b69a08da96296c6a625e2e16522d452b947555bfb1a4067dd57464eb392fbb_ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/sriov-cni-rhel9@sha256:b3b69a08da96296c6a625e2e16522d452b947555bfb1a4067dd57464eb392fbb_ppc64le" + }, + "product_reference": "openshift4/sriov-cni-rhel9@sha256:b3b69a08da96296c6a625e2e16522d452b947555bfb1a4067dd57464eb392fbb_ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/sriov-cni-rhel9@sha256:e2dfa33dc5dca27baf5039d02fb06811d2ed50dd0db028620a0887961a29f8d3_arm64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:openshift4/sriov-cni-rhel9@sha256:e2dfa33dc5dca27baf5039d02fb06811d2ed50dd0db028620a0887961a29f8d3_arm64" + }, + "product_reference": "openshift4/sriov-cni-rhel9@sha256:e2dfa33dc5dca27baf5039d02fb06811d2ed50dd0db028620a0887961a29f8d3_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:perf-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "perf-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:perf-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "perf-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:perf-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "perf-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:perf-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "perf-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:perf-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "perf-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:perf-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "perf-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-debuginfo-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:perf-debuginfo-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "perf-debuginfo-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:perf-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "perf-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:python3-perf-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "python3-perf-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:python3-perf-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "python3-perf-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:python3-perf-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "python3-perf-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:python3-perf-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "python3-perf-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:python3-perf-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "python3-perf-debuginfo-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:python3-perf-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "python3-perf-debuginfo-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-debuginfo-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:python3-perf-debuginfo-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "python3-perf-debuginfo-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:python3-perf-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "python3-perf-debuginfo-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rtla-0:5.14.0-284.41.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:rtla-0:5.14.0-284.41.1.el9_2.aarch64" + }, + "product_reference": "rtla-0:5.14.0-284.41.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rtla-0:5.14.0-284.41.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:rtla-0:5.14.0-284.41.1.el9_2.ppc64le" + }, + "product_reference": "rtla-0:5.14.0-284.41.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rtla-0:5.14.0-284.41.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:rtla-0:5.14.0-284.41.1.el9_2.s390x" + }, + "product_reference": "rtla-0:5.14.0-284.41.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rtla-0:5.14.0-284.41.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-4.13:rtla-0:5.14.0-284.41.1.el9_2.x86_64" + }, + "product_reference": "rtla-0:5.14.0-284.41.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "afterburn-0:5.4.3-1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:afterburn-0:5.4.3-1.rhaos4.14.el9.aarch64" + }, + "product_reference": "afterburn-0:5.4.3-1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "afterburn-0:5.4.3-1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:afterburn-0:5.4.3-1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "afterburn-0:5.4.3-1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "afterburn-0:5.4.3-1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:afterburn-0:5.4.3-1.rhaos4.14.el9.s390x" + }, + "product_reference": "afterburn-0:5.4.3-1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "afterburn-0:5.4.3-1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:afterburn-0:5.4.3-1.rhaos4.14.el9.x86_64" + }, + "product_reference": "afterburn-0:5.4.3-1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "afterburn-debuginfo-0:5.4.3-1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:afterburn-debuginfo-0:5.4.3-1.rhaos4.14.el9.aarch64" + }, + "product_reference": "afterburn-debuginfo-0:5.4.3-1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "afterburn-debuginfo-0:5.4.3-1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:afterburn-debuginfo-0:5.4.3-1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "afterburn-debuginfo-0:5.4.3-1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "afterburn-debuginfo-0:5.4.3-1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:afterburn-debuginfo-0:5.4.3-1.rhaos4.14.el9.s390x" + }, + "product_reference": "afterburn-debuginfo-0:5.4.3-1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "afterburn-debuginfo-0:5.4.3-1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:afterburn-debuginfo-0:5.4.3-1.rhaos4.14.el9.x86_64" + }, + "product_reference": "afterburn-debuginfo-0:5.4.3-1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "afterburn-dracut-0:5.4.3-1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:afterburn-dracut-0:5.4.3-1.rhaos4.14.el9.aarch64" + }, + "product_reference": "afterburn-dracut-0:5.4.3-1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "afterburn-dracut-0:5.4.3-1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:afterburn-dracut-0:5.4.3-1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "afterburn-dracut-0:5.4.3-1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "afterburn-dracut-0:5.4.3-1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:afterburn-dracut-0:5.4.3-1.rhaos4.14.el9.s390x" + }, + "product_reference": "afterburn-dracut-0:5.4.3-1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "afterburn-dracut-0:5.4.3-1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:afterburn-dracut-0:5.4.3-1.rhaos4.14.el9.x86_64" + }, + "product_reference": "afterburn-dracut-0:5.4.3-1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-0:7.0.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:bpftool-0:7.0.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "bpftool-0:7.0.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-0:7.0.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:bpftool-0:7.0.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "bpftool-0:7.0.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-0:7.0.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:bpftool-0:7.0.0-284.36.1.el9_2.s390x" + }, + "product_reference": "bpftool-0:7.0.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-0:7.0.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:bpftool-0:7.0.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "bpftool-0:7.0.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-0:7.0.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:bpftool-0:7.0.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "bpftool-0:7.0.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-0:7.0.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:bpftool-0:7.0.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "bpftool-0:7.0.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-0:7.0.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:bpftool-0:7.0.0-284.40.1.el9_2.s390x" + }, + "product_reference": "bpftool-0:7.0.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-0:7.0.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:bpftool-0:7.0.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "bpftool-0:7.0.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-debuginfo-0:7.0.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:bpftool-debuginfo-0:7.0.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "bpftool-debuginfo-0:7.0.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-debuginfo-0:7.0.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:bpftool-debuginfo-0:7.0.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "bpftool-debuginfo-0:7.0.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-debuginfo-0:7.0.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:bpftool-debuginfo-0:7.0.0-284.36.1.el9_2.s390x" + }, + "product_reference": "bpftool-debuginfo-0:7.0.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-debuginfo-0:7.0.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:bpftool-debuginfo-0:7.0.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "bpftool-debuginfo-0:7.0.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-debuginfo-0:7.0.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:bpftool-debuginfo-0:7.0.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "bpftool-debuginfo-0:7.0.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-debuginfo-0:7.0.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:bpftool-debuginfo-0:7.0.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "bpftool-debuginfo-0:7.0.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-debuginfo-0:7.0.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:bpftool-debuginfo-0:7.0.0-284.40.1.el9_2.s390x" + }, + "product_reference": "bpftool-debuginfo-0:7.0.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "bpftool-debuginfo-0:7.0.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:bpftool-debuginfo-0:7.0.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "bpftool-debuginfo-0:7.0.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:buildah-1:1.29.1-10.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "buildah-1:1.29.1-10.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:buildah-1:1.29.1-10.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "buildah-1:1.29.1-10.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:buildah-1:1.29.1-10.1.rhaos4.14.el9.s390x" + }, + "product_reference": "buildah-1:1.29.1-10.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:buildah-1:1.29.1-10.1.rhaos4.14.el9.src" + }, + "product_reference": "buildah-1:1.29.1-10.1.rhaos4.14.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-1:1.29.1-10.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:buildah-1:1.29.1-10.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "buildah-1:1.29.1-10.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.s390x" + }, + "product_reference": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "buildah-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el9.s390x" + }, + "product_reference": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "buildah-debugsource-1:1.29.1-10.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:buildah-tests-1:1.29.1-10.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:buildah-tests-1:1.29.1-10.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:buildah-tests-1:1.29.1-10.1.rhaos4.14.el9.s390x" + }, + "product_reference": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:buildah-tests-1:1.29.1-10.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "buildah-tests-1:1.29.1-10.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.s390x" + }, + "product_reference": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "buildah-tests-debuginfo-1:1.29.1-10.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "catch-0:3.3.2-1.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:catch-0:3.3.2-1.el9.aarch64" + }, + "product_reference": "catch-0:3.3.2-1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "catch-0:3.3.2-1.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:catch-0:3.3.2-1.el9.ppc64le" + }, + "product_reference": "catch-0:3.3.2-1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "catch-0:3.3.2-1.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:catch-0:3.3.2-1.el9.s390x" + }, + "product_reference": "catch-0:3.3.2-1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "catch-0:3.3.2-1.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:catch-0:3.3.2-1.el9.src" + }, + "product_reference": "catch-0:3.3.2-1.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "catch-0:3.3.2-1.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:catch-0:3.3.2-1.el9.x86_64" + }, + "product_reference": "catch-0:3.3.2-1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "catch-debuginfo-0:3.3.2-1.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:catch-debuginfo-0:3.3.2-1.el9.aarch64" + }, + "product_reference": "catch-debuginfo-0:3.3.2-1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "catch-debuginfo-0:3.3.2-1.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:catch-debuginfo-0:3.3.2-1.el9.ppc64le" + }, + "product_reference": "catch-debuginfo-0:3.3.2-1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "catch-debuginfo-0:3.3.2-1.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:catch-debuginfo-0:3.3.2-1.el9.s390x" + }, + "product_reference": "catch-debuginfo-0:3.3.2-1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "catch-debuginfo-0:3.3.2-1.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:catch-debuginfo-0:3.3.2-1.el9.x86_64" + }, + "product_reference": "catch-debuginfo-0:3.3.2-1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "catch-debugsource-0:3.3.2-1.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:catch-debugsource-0:3.3.2-1.el9.aarch64" + }, + "product_reference": "catch-debugsource-0:3.3.2-1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "catch-debugsource-0:3.3.2-1.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:catch-debugsource-0:3.3.2-1.el9.ppc64le" + }, + "product_reference": "catch-debugsource-0:3.3.2-1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "catch-debugsource-0:3.3.2-1.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:catch-debugsource-0:3.3.2-1.el9.s390x" + }, + "product_reference": "catch-debugsource-0:3.3.2-1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "catch-debugsource-0:3.3.2-1.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:catch-debugsource-0:3.3.2-1.el9.x86_64" + }, + "product_reference": "catch-debugsource-0:3.3.2-1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "catch-devel-0:3.3.2-1.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:catch-devel-0:3.3.2-1.el9.aarch64" + }, + "product_reference": "catch-devel-0:3.3.2-1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "catch-devel-0:3.3.2-1.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:catch-devel-0:3.3.2-1.el9.ppc64le" + }, + "product_reference": "catch-devel-0:3.3.2-1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "catch-devel-0:3.3.2-1.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:catch-devel-0:3.3.2-1.el9.s390x" + }, + "product_reference": "catch-devel-0:3.3.2-1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "catch-devel-0:3.3.2-1.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:catch-devel-0:3.3.2-1.el9.x86_64" + }, + "product_reference": "catch-devel-0:3.3.2-1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:conmon-3:2.1.7-3.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "conmon-3:2.1.7-3.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:conmon-3:2.1.7-3.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "conmon-3:2.1.7-3.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:conmon-3:2.1.7-3.1.rhaos4.14.el9.s390x" + }, + "product_reference": "conmon-3:2.1.7-3.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:conmon-3:2.1.7-3.1.rhaos4.14.el9.src" + }, + "product_reference": "conmon-3:2.1.7-3.1.rhaos4.14.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-3:2.1.7-3.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:conmon-3:2.1.7-3.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "conmon-3:2.1.7-3.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el9.s390x" + }, + "product_reference": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "conmon-debuginfo-3:2.1.7-3.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el9.s390x" + }, + "product_reference": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "conmon-debugsource-3:2.1.7-3.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-selinux-3:2.221.0-2.rhaos4.14.el9.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:container-selinux-3:2.221.0-2.rhaos4.14.el9.noarch" + }, + "product_reference": "container-selinux-3:2.221.0-2.rhaos4.14.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-selinux-3:2.221.0-2.rhaos4.14.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:container-selinux-3:2.221.0-2.rhaos4.14.el9.src" + }, + "product_reference": "container-selinux-3:2.221.0-2.rhaos4.14.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-selinux-3:2.223.0-2.rhaos4.14.el9.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:container-selinux-3:2.223.0-2.rhaos4.14.el9.noarch" + }, + "product_reference": "container-selinux-3:2.223.0-2.rhaos4.14.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-selinux-3:2.223.0-2.rhaos4.14.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:container-selinux-3:2.223.0-2.rhaos4.14.el9.src" + }, + "product_reference": "container-selinux-3:2.223.0-2.rhaos4.14.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-0:0.17.0-1.rhaos4.14.el9.aarch64" + }, + "product_reference": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-0:0.17.0-1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-0:0.17.0-1.rhaos4.14.el9.s390x" + }, + "product_reference": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-0:0.17.0-1.rhaos4.14.el9.src" + }, + "product_reference": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-0:0.17.0-1.rhaos4.14.el9.x86_64" + }, + "product_reference": "coreos-installer-0:0.17.0-1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el9.aarch64" + }, + "product_reference": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el9.s390x" + }, + "product_reference": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el9.x86_64" + }, + "product_reference": "coreos-installer-bootinfra-0:0.17.0-1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el9.aarch64" + }, + "product_reference": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el9.s390x" + }, + "product_reference": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el9.x86_64" + }, + "product_reference": "coreos-installer-bootinfra-debuginfo-0:0.17.0-1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el9.aarch64" + }, + "product_reference": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el9.s390x" + }, + "product_reference": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el9.x86_64" + }, + "product_reference": "coreos-installer-debuginfo-0:0.17.0-1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el9.aarch64" + }, + "product_reference": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el9.s390x" + }, + "product_reference": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el9.x86_64" + }, + "product_reference": "coreos-installer-debugsource-0:0.17.0-1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el9.aarch64" + }, + "product_reference": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el9.s390x" + }, + "product_reference": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el9.x86_64" + }, + "product_reference": "coreos-installer-dracut-0:0.17.0-1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.aarch64" + }, + "product_reference": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.ppc64le" + }, + "product_reference": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.s390x" + }, + "product_reference": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.src" + }, + "product_reference": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.x86_64" + }, + "product_reference": "cri-o-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.aarch64" + }, + "product_reference": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.ppc64le" + }, + "product_reference": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.s390x" + }, + "product_reference": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.src" + }, + "product_reference": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.x86_64" + }, + "product_reference": "cri-o-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.aarch64" + }, + "product_reference": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.ppc64le" + }, + "product_reference": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.s390x" + }, + "product_reference": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.x86_64" + }, + "product_reference": "cri-o-debuginfo-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.aarch64" + }, + "product_reference": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.ppc64le" + }, + "product_reference": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.s390x" + }, + "product_reference": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.x86_64" + }, + "product_reference": "cri-o-debuginfo-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.aarch64" + }, + "product_reference": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.ppc64le" + }, + "product_reference": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.s390x" + }, + "product_reference": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.x86_64" + }, + "product_reference": "cri-o-debugsource-0:1.27.1-13.1.rhaos4.14.git956c5f7.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.aarch64" + }, + "product_reference": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.ppc64le" + }, + "product_reference": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.s390x" + }, + "product_reference": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.x86_64" + }, + "product_reference": "cri-o-debugsource-0:1.27.1-8.1.rhaos4.14.git3fecb83.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-0:1.27.0-2.1.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-tools-0:1.27.0-2.1.el9.aarch64" + }, + "product_reference": "cri-tools-0:1.27.0-2.1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-0:1.27.0-2.1.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-tools-0:1.27.0-2.1.el9.ppc64le" + }, + "product_reference": "cri-tools-0:1.27.0-2.1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-0:1.27.0-2.1.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-tools-0:1.27.0-2.1.el9.s390x" + }, + "product_reference": "cri-tools-0:1.27.0-2.1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-0:1.27.0-2.1.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-tools-0:1.27.0-2.1.el9.src" + }, + "product_reference": "cri-tools-0:1.27.0-2.1.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-0:1.27.0-2.1.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-tools-0:1.27.0-2.1.el9.x86_64" + }, + "product_reference": "cri-tools-0:1.27.0-2.1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-debuginfo-0:1.27.0-2.1.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-tools-debuginfo-0:1.27.0-2.1.el9.aarch64" + }, + "product_reference": "cri-tools-debuginfo-0:1.27.0-2.1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-debuginfo-0:1.27.0-2.1.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-tools-debuginfo-0:1.27.0-2.1.el9.ppc64le" + }, + "product_reference": "cri-tools-debuginfo-0:1.27.0-2.1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-debuginfo-0:1.27.0-2.1.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-tools-debuginfo-0:1.27.0-2.1.el9.s390x" + }, + "product_reference": "cri-tools-debuginfo-0:1.27.0-2.1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-debuginfo-0:1.27.0-2.1.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-tools-debuginfo-0:1.27.0-2.1.el9.x86_64" + }, + "product_reference": "cri-tools-debuginfo-0:1.27.0-2.1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-debugsource-0:1.27.0-2.1.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-tools-debugsource-0:1.27.0-2.1.el9.aarch64" + }, + "product_reference": "cri-tools-debugsource-0:1.27.0-2.1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-debugsource-0:1.27.0-2.1.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-tools-debugsource-0:1.27.0-2.1.el9.ppc64le" + }, + "product_reference": "cri-tools-debugsource-0:1.27.0-2.1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-debugsource-0:1.27.0-2.1.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-tools-debugsource-0:1.27.0-2.1.el9.s390x" + }, + "product_reference": "cri-tools-debugsource-0:1.27.0-2.1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools-debugsource-0:1.27.0-2.1.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:cri-tools-debugsource-0:1.27.0-2.1.el9.x86_64" + }, + "product_reference": "cri-tools-debugsource-0:1.27.0-2.1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-0:1.9.2-1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:crun-0:1.9.2-1.rhaos4.14.el9.aarch64" + }, + "product_reference": "crun-0:1.9.2-1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-0:1.9.2-1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:crun-0:1.9.2-1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "crun-0:1.9.2-1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-0:1.9.2-1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:crun-0:1.9.2-1.rhaos4.14.el9.s390x" + }, + "product_reference": "crun-0:1.9.2-1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-0:1.9.2-1.rhaos4.14.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:crun-0:1.9.2-1.rhaos4.14.el9.src" + }, + "product_reference": "crun-0:1.9.2-1.rhaos4.14.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-0:1.9.2-1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:crun-0:1.9.2-1.rhaos4.14.el9.x86_64" + }, + "product_reference": "crun-0:1.9.2-1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:crun-debuginfo-0:1.9.2-1.rhaos4.14.el9.aarch64" + }, + "product_reference": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:crun-debuginfo-0:1.9.2-1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:crun-debuginfo-0:1.9.2-1.rhaos4.14.el9.s390x" + }, + "product_reference": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:crun-debuginfo-0:1.9.2-1.rhaos4.14.el9.x86_64" + }, + "product_reference": "crun-debuginfo-0:1.9.2-1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-debugsource-0:1.9.2-1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:crun-debugsource-0:1.9.2-1.rhaos4.14.el9.aarch64" + }, + "product_reference": "crun-debugsource-0:1.9.2-1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-debugsource-0:1.9.2-1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:crun-debugsource-0:1.9.2-1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "crun-debugsource-0:1.9.2-1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-debugsource-0:1.9.2-1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:crun-debugsource-0:1.9.2-1.rhaos4.14.el9.s390x" + }, + "product_reference": "crun-debugsource-0:1.9.2-1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-debugsource-0:1.9.2-1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:crun-debugsource-0:1.9.2-1.rhaos4.14.el9.x86_64" + }, + "product_reference": "crun-debugsource-0:1.9.2-1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-wasm-0:1.8.5-3.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:crun-wasm-0:1.8.5-3.rhaos4.14.el9.aarch64" + }, + "product_reference": "crun-wasm-0:1.8.5-3.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-wasm-0:1.8.5-3.rhaos4.14.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:crun-wasm-0:1.8.5-3.rhaos4.14.el9.src" + }, + "product_reference": "crun-wasm-0:1.8.5-3.rhaos4.14.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-wasm-0:1.8.5-3.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:crun-wasm-0:1.8.5-3.rhaos4.14.el9.x86_64" + }, + "product_reference": "crun-wasm-0:1.8.5-3.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-wasm-debuginfo-0:1.8.5-3.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:crun-wasm-debuginfo-0:1.8.5-3.rhaos4.14.el9.aarch64" + }, + "product_reference": "crun-wasm-debuginfo-0:1.8.5-3.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-wasm-debuginfo-0:1.8.5-3.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:crun-wasm-debuginfo-0:1.8.5-3.rhaos4.14.el9.x86_64" + }, + "product_reference": "crun-wasm-debuginfo-0:1.8.5-3.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-wasm-debugsource-0:1.8.5-3.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:crun-wasm-debugsource-0:1.8.5-3.rhaos4.14.el9.aarch64" + }, + "product_reference": "crun-wasm-debugsource-0:1.8.5-3.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "crun-wasm-debugsource-0:1.8.5-3.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:crun-wasm-debugsource-0:1.8.5-3.rhaos4.14.el9.x86_64" + }, + "product_reference": "crun-wasm-debugsource-0:1.8.5-3.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "fmt-0:9.1.0-1.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:fmt-0:9.1.0-1.el9.aarch64" + }, + "product_reference": "fmt-0:9.1.0-1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "fmt-0:9.1.0-1.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:fmt-0:9.1.0-1.el9.ppc64le" + }, + "product_reference": "fmt-0:9.1.0-1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "fmt-0:9.1.0-1.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:fmt-0:9.1.0-1.el9.s390x" + }, + "product_reference": "fmt-0:9.1.0-1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "fmt-0:9.1.0-1.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:fmt-0:9.1.0-1.el9.src" + }, + "product_reference": "fmt-0:9.1.0-1.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "fmt-0:9.1.0-1.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:fmt-0:9.1.0-1.el9.x86_64" + }, + "product_reference": "fmt-0:9.1.0-1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "fmt-debuginfo-0:9.1.0-1.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:fmt-debuginfo-0:9.1.0-1.el9.aarch64" + }, + "product_reference": "fmt-debuginfo-0:9.1.0-1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "fmt-debuginfo-0:9.1.0-1.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:fmt-debuginfo-0:9.1.0-1.el9.ppc64le" + }, + "product_reference": "fmt-debuginfo-0:9.1.0-1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "fmt-debuginfo-0:9.1.0-1.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:fmt-debuginfo-0:9.1.0-1.el9.s390x" + }, + "product_reference": "fmt-debuginfo-0:9.1.0-1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "fmt-debuginfo-0:9.1.0-1.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:fmt-debuginfo-0:9.1.0-1.el9.x86_64" + }, + "product_reference": "fmt-debuginfo-0:9.1.0-1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "fmt-debugsource-0:9.1.0-1.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:fmt-debugsource-0:9.1.0-1.el9.aarch64" + }, + "product_reference": "fmt-debugsource-0:9.1.0-1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "fmt-debugsource-0:9.1.0-1.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:fmt-debugsource-0:9.1.0-1.el9.ppc64le" + }, + "product_reference": "fmt-debugsource-0:9.1.0-1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "fmt-debugsource-0:9.1.0-1.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:fmt-debugsource-0:9.1.0-1.el9.s390x" + }, + "product_reference": "fmt-debugsource-0:9.1.0-1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "fmt-debugsource-0:9.1.0-1.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:fmt-debugsource-0:9.1.0-1.el9.x86_64" + }, + "product_reference": "fmt-debugsource-0:9.1.0-1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "fmt-devel-0:9.1.0-1.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:fmt-devel-0:9.1.0-1.el9.aarch64" + }, + "product_reference": "fmt-devel-0:9.1.0-1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "fmt-devel-0:9.1.0-1.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:fmt-devel-0:9.1.0-1.el9.ppc64le" + }, + "product_reference": "fmt-devel-0:9.1.0-1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "fmt-devel-0:9.1.0-1.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:fmt-devel-0:9.1.0-1.el9.s390x" + }, + "product_reference": "fmt-devel-0:9.1.0-1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "fmt-devel-0:9.1.0-1.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:fmt-devel-0:9.1.0-1.el9.x86_64" + }, + "product_reference": "fmt-devel-0:9.1.0-1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gmock-0:1.13.0-1.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gmock-0:1.13.0-1.el9.aarch64" + }, + "product_reference": "gmock-0:1.13.0-1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gmock-0:1.13.0-1.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gmock-0:1.13.0-1.el9.ppc64le" + }, + "product_reference": "gmock-0:1.13.0-1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gmock-0:1.13.0-1.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gmock-0:1.13.0-1.el9.s390x" + }, + "product_reference": "gmock-0:1.13.0-1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gmock-0:1.13.0-1.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gmock-0:1.13.0-1.el9.x86_64" + }, + "product_reference": "gmock-0:1.13.0-1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gmock-debuginfo-0:1.13.0-1.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gmock-debuginfo-0:1.13.0-1.el9.aarch64" + }, + "product_reference": "gmock-debuginfo-0:1.13.0-1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gmock-debuginfo-0:1.13.0-1.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gmock-debuginfo-0:1.13.0-1.el9.ppc64le" + }, + "product_reference": "gmock-debuginfo-0:1.13.0-1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gmock-debuginfo-0:1.13.0-1.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gmock-debuginfo-0:1.13.0-1.el9.s390x" + }, + "product_reference": "gmock-debuginfo-0:1.13.0-1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gmock-debuginfo-0:1.13.0-1.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gmock-debuginfo-0:1.13.0-1.el9.x86_64" + }, + "product_reference": "gmock-debuginfo-0:1.13.0-1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gmock-devel-0:1.13.0-1.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gmock-devel-0:1.13.0-1.el9.aarch64" + }, + "product_reference": "gmock-devel-0:1.13.0-1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gmock-devel-0:1.13.0-1.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gmock-devel-0:1.13.0-1.el9.ppc64le" + }, + "product_reference": "gmock-devel-0:1.13.0-1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gmock-devel-0:1.13.0-1.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gmock-devel-0:1.13.0-1.el9.s390x" + }, + "product_reference": "gmock-devel-0:1.13.0-1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gmock-devel-0:1.13.0-1.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gmock-devel-0:1.13.0-1.el9.x86_64" + }, + "product_reference": "gmock-devel-0:1.13.0-1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "google-benchmark-0:1.8.2-1.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:google-benchmark-0:1.8.2-1.el9.aarch64" + }, + "product_reference": "google-benchmark-0:1.8.2-1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "google-benchmark-0:1.8.2-1.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:google-benchmark-0:1.8.2-1.el9.ppc64le" + }, + "product_reference": "google-benchmark-0:1.8.2-1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "google-benchmark-0:1.8.2-1.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:google-benchmark-0:1.8.2-1.el9.s390x" + }, + "product_reference": "google-benchmark-0:1.8.2-1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "google-benchmark-0:1.8.2-1.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:google-benchmark-0:1.8.2-1.el9.src" + }, + "product_reference": "google-benchmark-0:1.8.2-1.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "google-benchmark-0:1.8.2-1.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:google-benchmark-0:1.8.2-1.el9.x86_64" + }, + "product_reference": "google-benchmark-0:1.8.2-1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "google-benchmark-debuginfo-0:1.8.2-1.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:google-benchmark-debuginfo-0:1.8.2-1.el9.aarch64" + }, + "product_reference": "google-benchmark-debuginfo-0:1.8.2-1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "google-benchmark-debuginfo-0:1.8.2-1.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:google-benchmark-debuginfo-0:1.8.2-1.el9.ppc64le" + }, + "product_reference": "google-benchmark-debuginfo-0:1.8.2-1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "google-benchmark-debuginfo-0:1.8.2-1.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:google-benchmark-debuginfo-0:1.8.2-1.el9.s390x" + }, + "product_reference": "google-benchmark-debuginfo-0:1.8.2-1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "google-benchmark-debuginfo-0:1.8.2-1.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:google-benchmark-debuginfo-0:1.8.2-1.el9.x86_64" + }, + "product_reference": "google-benchmark-debuginfo-0:1.8.2-1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "google-benchmark-debugsource-0:1.8.2-1.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:google-benchmark-debugsource-0:1.8.2-1.el9.aarch64" + }, + "product_reference": "google-benchmark-debugsource-0:1.8.2-1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "google-benchmark-debugsource-0:1.8.2-1.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:google-benchmark-debugsource-0:1.8.2-1.el9.ppc64le" + }, + "product_reference": "google-benchmark-debugsource-0:1.8.2-1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "google-benchmark-debugsource-0:1.8.2-1.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:google-benchmark-debugsource-0:1.8.2-1.el9.s390x" + }, + "product_reference": "google-benchmark-debugsource-0:1.8.2-1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "google-benchmark-debugsource-0:1.8.2-1.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:google-benchmark-debugsource-0:1.8.2-1.el9.x86_64" + }, + "product_reference": "google-benchmark-debugsource-0:1.8.2-1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "google-benchmark-devel-0:1.8.2-1.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:google-benchmark-devel-0:1.8.2-1.el9.aarch64" + }, + "product_reference": "google-benchmark-devel-0:1.8.2-1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "google-benchmark-devel-0:1.8.2-1.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:google-benchmark-devel-0:1.8.2-1.el9.ppc64le" + }, + "product_reference": "google-benchmark-devel-0:1.8.2-1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "google-benchmark-devel-0:1.8.2-1.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:google-benchmark-devel-0:1.8.2-1.el9.s390x" + }, + "product_reference": "google-benchmark-devel-0:1.8.2-1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "google-benchmark-devel-0:1.8.2-1.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:google-benchmark-devel-0:1.8.2-1.el9.x86_64" + }, + "product_reference": "google-benchmark-devel-0:1.8.2-1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "google-benchmark-doc-0:1.8.2-1.el9.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:google-benchmark-doc-0:1.8.2-1.el9.noarch" + }, + "product_reference": "google-benchmark-doc-0:1.8.2-1.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gtest-0:1.13.0-1.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gtest-0:1.13.0-1.el9.aarch64" + }, + "product_reference": "gtest-0:1.13.0-1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gtest-0:1.13.0-1.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gtest-0:1.13.0-1.el9.ppc64le" + }, + "product_reference": "gtest-0:1.13.0-1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gtest-0:1.13.0-1.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gtest-0:1.13.0-1.el9.s390x" + }, + "product_reference": "gtest-0:1.13.0-1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gtest-0:1.13.0-1.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gtest-0:1.13.0-1.el9.src" + }, + "product_reference": "gtest-0:1.13.0-1.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gtest-0:1.13.0-1.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gtest-0:1.13.0-1.el9.x86_64" + }, + "product_reference": "gtest-0:1.13.0-1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gtest-debuginfo-0:1.13.0-1.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gtest-debuginfo-0:1.13.0-1.el9.aarch64" + }, + "product_reference": "gtest-debuginfo-0:1.13.0-1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gtest-debuginfo-0:1.13.0-1.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gtest-debuginfo-0:1.13.0-1.el9.ppc64le" + }, + "product_reference": "gtest-debuginfo-0:1.13.0-1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gtest-debuginfo-0:1.13.0-1.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gtest-debuginfo-0:1.13.0-1.el9.s390x" + }, + "product_reference": "gtest-debuginfo-0:1.13.0-1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gtest-debuginfo-0:1.13.0-1.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gtest-debuginfo-0:1.13.0-1.el9.x86_64" + }, + "product_reference": "gtest-debuginfo-0:1.13.0-1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gtest-debugsource-0:1.13.0-1.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gtest-debugsource-0:1.13.0-1.el9.aarch64" + }, + "product_reference": "gtest-debugsource-0:1.13.0-1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gtest-debugsource-0:1.13.0-1.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gtest-debugsource-0:1.13.0-1.el9.ppc64le" + }, + "product_reference": "gtest-debugsource-0:1.13.0-1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gtest-debugsource-0:1.13.0-1.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gtest-debugsource-0:1.13.0-1.el9.s390x" + }, + "product_reference": "gtest-debugsource-0:1.13.0-1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gtest-debugsource-0:1.13.0-1.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gtest-debugsource-0:1.13.0-1.el9.x86_64" + }, + "product_reference": "gtest-debugsource-0:1.13.0-1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gtest-devel-0:1.13.0-1.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gtest-devel-0:1.13.0-1.el9.aarch64" + }, + "product_reference": "gtest-devel-0:1.13.0-1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gtest-devel-0:1.13.0-1.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gtest-devel-0:1.13.0-1.el9.ppc64le" + }, + "product_reference": "gtest-devel-0:1.13.0-1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gtest-devel-0:1.13.0-1.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gtest-devel-0:1.13.0-1.el9.s390x" + }, + "product_reference": "gtest-devel-0:1.13.0-1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "gtest-devel-0:1.13.0-1.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:gtest-devel-0:1.13.0-1.el9.x86_64" + }, + "product_reference": "gtest-devel-0:1.13.0-1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ignition-0:2.16.2-1.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ignition-0:2.16.2-1.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "ignition-0:2.16.2-1.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ignition-0:2.16.2-1.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ignition-0:2.16.2-1.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "ignition-0:2.16.2-1.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ignition-0:2.16.2-1.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ignition-0:2.16.2-1.1.rhaos4.14.el9.s390x" + }, + "product_reference": "ignition-0:2.16.2-1.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ignition-0:2.16.2-1.1.rhaos4.14.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ignition-0:2.16.2-1.1.rhaos4.14.el9.src" + }, + "product_reference": "ignition-0:2.16.2-1.1.rhaos4.14.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ignition-0:2.16.2-1.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ignition-0:2.16.2-1.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "ignition-0:2.16.2-1.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ignition-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ignition-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "ignition-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ignition-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ignition-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "ignition-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ignition-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ignition-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.s390x" + }, + "product_reference": "ignition-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ignition-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ignition-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "ignition-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ignition-debugsource-0:2.16.2-1.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ignition-debugsource-0:2.16.2-1.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "ignition-debugsource-0:2.16.2-1.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ignition-debugsource-0:2.16.2-1.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ignition-debugsource-0:2.16.2-1.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "ignition-debugsource-0:2.16.2-1.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ignition-debugsource-0:2.16.2-1.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ignition-debugsource-0:2.16.2-1.1.rhaos4.14.el9.s390x" + }, + "product_reference": "ignition-debugsource-0:2.16.2-1.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ignition-debugsource-0:2.16.2-1.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ignition-debugsource-0:2.16.2-1.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "ignition-debugsource-0:2.16.2-1.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ignition-validate-0:2.16.2-1.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ignition-validate-0:2.16.2-1.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "ignition-validate-0:2.16.2-1.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ignition-validate-0:2.16.2-1.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ignition-validate-0:2.16.2-1.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "ignition-validate-0:2.16.2-1.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ignition-validate-0:2.16.2-1.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ignition-validate-0:2.16.2-1.1.rhaos4.14.el9.s390x" + }, + "product_reference": "ignition-validate-0:2.16.2-1.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ignition-validate-0:2.16.2-1.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ignition-validate-0:2.16.2-1.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "ignition-validate-0:2.16.2-1.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ignition-validate-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ignition-validate-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "ignition-validate-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ignition-validate-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ignition-validate-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "ignition-validate-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ignition-validate-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ignition-validate-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.s390x" + }, + "product_reference": "ignition-validate-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ignition-validate-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ignition-validate-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "ignition-validate-debuginfo-0:2.16.2-1.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kata-containers-0:3.1.3-4.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kata-containers-0:3.1.3-4.rhaos4.14.el9.aarch64" + }, + "product_reference": "kata-containers-0:3.1.3-4.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kata-containers-0:3.1.3-4.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kata-containers-0:3.1.3-4.rhaos4.14.el9.ppc64le" + }, + "product_reference": "kata-containers-0:3.1.3-4.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kata-containers-0:3.1.3-4.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kata-containers-0:3.1.3-4.rhaos4.14.el9.s390x" + }, + "product_reference": "kata-containers-0:3.1.3-4.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kata-containers-0:3.1.3-4.rhaos4.14.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kata-containers-0:3.1.3-4.rhaos4.14.el9.src" + }, + "product_reference": "kata-containers-0:3.1.3-4.rhaos4.14.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kata-containers-0:3.1.3-4.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kata-containers-0:3.1.3-4.rhaos4.14.el9.x86_64" + }, + "product_reference": "kata-containers-0:3.1.3-4.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:5.14.0-284.36.1.el9_2.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-0:5.14.0-284.36.1.el9_2.src" + }, + "product_reference": "kernel-0:5.14.0-284.36.1.el9_2.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:5.14.0-284.40.1.el9_2.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-0:5.14.0-284.40.1.el9_2.src" + }, + "product_reference": "kernel-0:5.14.0-284.40.1.el9_2.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-core-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-core-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-core-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-core-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-core-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-core-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-debug-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-debug-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-core-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-debug-core-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-core-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-core-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-debug-core-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-core-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-debug-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-debug-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-devel-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-debug-devel-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-devel-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-devel-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-debug-devel-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-devel-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-devel-matched-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-debug-devel-matched-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-devel-matched-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-devel-matched-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-debug-devel-matched-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-devel-matched-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-modules-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-debug-modules-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-modules-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-modules-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-debug-modules-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-modules-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-modules-core-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-debug-modules-core-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-modules-core-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-modules-core-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-debug-modules-core-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-modules-core-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-modules-extra-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-debug-modules-extra-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-modules-extra-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-modules-extra-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-debug-modules-extra-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-modules-extra-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-modules-internal-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-debug-modules-internal-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-modules-internal-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-modules-internal-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-debug-modules-internal-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-modules-internal-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-modules-partner-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-debug-modules-partner-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-modules-partner-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debug-modules-partner-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-debug-modules-partner-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debug-modules-partner-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-devel-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-devel-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-devel-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-devel-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-devel-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-devel-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-devel-matched-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-devel-matched-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-devel-matched-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-devel-matched-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-devel-matched-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-devel-matched-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-modules-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-modules-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-modules-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-modules-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-modules-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-modules-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-modules-core-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-modules-core-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-modules-core-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-modules-core-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-modules-core-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-modules-core-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-modules-extra-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-modules-extra-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-modules-extra-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-modules-extra-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-modules-extra-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-modules-extra-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-modules-internal-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-modules-internal-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-modules-internal-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-modules-internal-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-modules-internal-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-modules-internal-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-modules-partner-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-modules-partner-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-modules-partner-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-64k-modules-partner-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-64k-modules-partner-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-64k-modules-partner-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-abi-stablelists-0:5.14.0-284.36.1.el9_2.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-abi-stablelists-0:5.14.0-284.36.1.el9_2.noarch" + }, + "product_reference": "kernel-abi-stablelists-0:5.14.0-284.36.1.el9_2.noarch", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-abi-stablelists-0:5.14.0-284.40.1.el9_2.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-abi-stablelists-0:5.14.0-284.40.1.el9_2.noarch" + }, + "product_reference": "kernel-abi-stablelists-0:5.14.0-284.40.1.el9_2.noarch", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-core-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-core-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-core-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-core-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-core-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-core-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-core-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-core-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-core-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-core-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-core-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-core-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-core-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-core-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-core-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-core-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-core-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-core-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-core-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-core-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-core-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-core-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-core-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-core-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-cross-headers-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-cross-headers-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-cross-headers-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-cross-headers-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-cross-headers-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-cross-headers-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-cross-headers-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-cross-headers-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-cross-headers-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-cross-headers-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-cross-headers-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-cross-headers-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-cross-headers-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-cross-headers-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-cross-headers-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-cross-headers-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-cross-headers-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-cross-headers-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-cross-headers-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-cross-headers-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-cross-headers-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-cross-headers-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-cross-headers-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-cross-headers-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-core-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-core-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-core-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-core-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-core-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-core-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-core-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-core-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-core-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-core-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-core-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-core-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-core-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-core-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-core-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-core-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-core-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-core-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-core-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-core-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-core-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-core-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-core-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-core-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-debuginfo-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-debuginfo-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-debuginfo-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-debuginfo-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-devel-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-devel-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-devel-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-devel-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-devel-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-devel-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-devel-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-devel-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-devel-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-devel-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-devel-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-devel-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-devel-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-devel-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-devel-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-devel-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-matched-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-devel-matched-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-matched-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-devel-matched-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-matched-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-devel-matched-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-matched-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-devel-matched-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-matched-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-devel-matched-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-matched-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-devel-matched-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-matched-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-devel-matched-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-devel-matched-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-devel-matched-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-modules-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-modules-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-modules-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-modules-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-modules-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-modules-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-modules-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-modules-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-core-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-core-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-modules-core-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-core-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-core-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-modules-core-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-core-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-core-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-modules-core-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-core-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-core-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-modules-core-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-core-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-core-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-modules-core-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-core-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-core-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-modules-core-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-core-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-core-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-modules-core-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-core-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-core-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-modules-core-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-extra-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-extra-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-extra-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-extra-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-extra-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-extra-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-extra-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-extra-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-extra-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-extra-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-extra-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-extra-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-extra-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-extra-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-extra-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-extra-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-internal-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-internal-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-modules-internal-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-internal-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-internal-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-modules-internal-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-internal-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-internal-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-modules-internal-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-internal-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-internal-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-modules-internal-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-internal-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-internal-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-modules-internal-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-internal-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-internal-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-modules-internal-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-internal-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-internal-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-modules-internal-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-internal-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-internal-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-modules-internal-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-partner-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-partner-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-modules-partner-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-partner-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-partner-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-modules-partner-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-partner-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-partner-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-modules-partner-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-partner-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-partner-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-modules-partner-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-partner-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-partner-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-debug-modules-partner-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-partner-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-partner-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debug-modules-partner-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-partner-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-partner-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-debug-modules-partner-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-modules-partner-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-modules-partner-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-modules-partner-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-uki-virt-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-uki-virt-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-uki-virt-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debug-uki-virt-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debug-uki-virt-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-debug-uki-virt-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debuginfo-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-debuginfo-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debuginfo-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-debuginfo-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-common-aarch64-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debuginfo-common-aarch64-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-common-aarch64-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debuginfo-common-aarch64-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debuginfo-common-ppc64le-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debuginfo-common-ppc64le-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-common-s390x-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debuginfo-common-s390x-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-common-s390x-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debuginfo-common-s390x-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-common-x86_64-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debuginfo-common-x86_64-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-debuginfo-common-x86_64-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-debuginfo-common-x86_64-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-devel-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-devel-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-devel-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-devel-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-devel-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-devel-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-devel-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-devel-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-devel-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-devel-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-devel-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-devel-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-devel-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-devel-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-devel-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-devel-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-matched-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-devel-matched-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-devel-matched-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-matched-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-devel-matched-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-devel-matched-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-matched-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-devel-matched-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-devel-matched-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-matched-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-devel-matched-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-devel-matched-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-matched-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-devel-matched-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-devel-matched-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-matched-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-devel-matched-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-devel-matched-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-matched-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-devel-matched-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-devel-matched-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-devel-matched-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-devel-matched-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-devel-matched-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-doc-0:5.14.0-284.36.1.el9_2.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-doc-0:5.14.0-284.36.1.el9_2.noarch" + }, + "product_reference": "kernel-doc-0:5.14.0-284.36.1.el9_2.noarch", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-doc-0:5.14.0-284.40.1.el9_2.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-doc-0:5.14.0-284.40.1.el9_2.noarch" + }, + "product_reference": "kernel-doc-0:5.14.0-284.40.1.el9_2.noarch", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-headers-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-headers-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-headers-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-headers-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-headers-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-headers-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-headers-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-headers-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-headers-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-headers-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-headers-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-headers-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-headers-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-headers-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-headers-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-headers-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-headers-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-headers-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-headers-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-headers-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-headers-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-headers-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-headers-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-headers-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-ipaclones-internal-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-ipaclones-internal-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-ipaclones-internal-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-ipaclones-internal-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-ipaclones-internal-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-ipaclones-internal-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-ipaclones-internal-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-ipaclones-internal-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-ipaclones-internal-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-ipaclones-internal-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-ipaclones-internal-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-ipaclones-internal-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-modules-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-modules-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-modules-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-modules-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-modules-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-modules-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-modules-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-modules-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-core-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-core-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-modules-core-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-core-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-core-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-modules-core-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-core-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-core-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-modules-core-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-core-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-core-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-modules-core-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-core-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-core-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-modules-core-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-core-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-core-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-modules-core-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-core-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-core-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-modules-core-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-core-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-core-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-modules-core-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-extra-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-extra-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-modules-extra-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-extra-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-extra-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-modules-extra-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-extra-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-extra-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-modules-extra-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-extra-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-extra-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-modules-extra-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-extra-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-extra-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-modules-extra-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-extra-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-extra-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-modules-extra-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-extra-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-extra-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-modules-extra-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-extra-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-extra-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-modules-extra-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-internal-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-internal-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-modules-internal-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-internal-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-internal-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-modules-internal-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-internal-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-internal-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-modules-internal-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-internal-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-internal-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-modules-internal-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-internal-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-internal-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-modules-internal-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-internal-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-internal-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-modules-internal-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-internal-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-internal-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-modules-internal-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-internal-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-internal-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-modules-internal-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-partner-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-partner-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-modules-partner-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-partner-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-partner-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-modules-partner-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-partner-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-partner-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-modules-partner-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-partner-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-partner-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-modules-partner-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-partner-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-partner-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-modules-partner-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-partner-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-partner-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-modules-partner-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-partner-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-partner-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-modules-partner-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-modules-partner-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-modules-partner-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-modules-partner-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-0:5.14.0-284.36.1.rt14.321.el9_2.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-0:5.14.0-284.36.1.rt14.321.el9_2.src" + }, + "product_reference": "kernel-rt-0:5.14.0-284.36.1.rt14.321.el9_2.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64" + }, + "product_reference": "kernel-rt-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-0:5.14.0-284.40.1.rt14.325.el9_2.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-0:5.14.0-284.40.1.rt14.325.el9_2.src" + }, + "product_reference": "kernel-rt-0:5.14.0-284.40.1.rt14.325.el9_2.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64" + }, + "product_reference": "kernel-rt-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-core-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-core-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64" + }, + "product_reference": "kernel-rt-core-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-core-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-core-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64" + }, + "product_reference": "kernel-rt-core-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debug-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debug-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-core-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debug-core-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-core-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-core-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debug-core-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-core-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-debuginfo-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debug-debuginfo-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-debuginfo-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debug-debuginfo-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-devel-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debug-devel-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-devel-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-devel-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debug-devel-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-devel-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-devel-matched-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debug-devel-matched-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-devel-matched-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-devel-matched-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debug-devel-matched-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-devel-matched-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-kvm-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debug-kvm-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-kvm-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-kvm-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debug-kvm-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-kvm-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-modules-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debug-modules-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-modules-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-modules-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debug-modules-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-modules-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-modules-core-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debug-modules-core-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-modules-core-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-modules-core-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debug-modules-core-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-modules-core-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-modules-extra-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debug-modules-extra-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-modules-extra-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debug-modules-extra-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-modules-internal-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debug-modules-internal-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-modules-internal-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-modules-internal-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debug-modules-internal-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-modules-internal-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-modules-partner-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debug-modules-partner-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-modules-partner-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debug-modules-partner-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debug-modules-partner-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debug-modules-partner-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debuginfo-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debuginfo-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debuginfo-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debuginfo-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debuginfo-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debuginfo-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64" + }, + "product_reference": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-devel-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-devel-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64" + }, + "product_reference": "kernel-rt-devel-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-devel-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-devel-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64" + }, + "product_reference": "kernel-rt-devel-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-devel-matched-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-devel-matched-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64" + }, + "product_reference": "kernel-rt-devel-matched-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-devel-matched-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-devel-matched-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64" + }, + "product_reference": "kernel-rt-devel-matched-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-kvm-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-kvm-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64" + }, + "product_reference": "kernel-rt-kvm-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-kvm-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-kvm-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64" + }, + "product_reference": "kernel-rt-kvm-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-modules-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-modules-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64" + }, + "product_reference": "kernel-rt-modules-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-modules-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-modules-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64" + }, + "product_reference": "kernel-rt-modules-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-modules-core-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-modules-core-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64" + }, + "product_reference": "kernel-rt-modules-core-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-modules-core-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-modules-core-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64" + }, + "product_reference": "kernel-rt-modules-core-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-modules-extra-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-modules-extra-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64" + }, + "product_reference": "kernel-rt-modules-extra-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-modules-extra-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-modules-extra-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64" + }, + "product_reference": "kernel-rt-modules-extra-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-modules-internal-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-modules-internal-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64" + }, + "product_reference": "kernel-rt-modules-internal-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-modules-internal-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-modules-internal-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64" + }, + "product_reference": "kernel-rt-modules-internal-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-modules-partner-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-modules-partner-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64" + }, + "product_reference": "kernel-rt-modules-partner-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-modules-partner-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-modules-partner-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64" + }, + "product_reference": "kernel-rt-modules-partner-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-selftests-internal-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-selftests-internal-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64" + }, + "product_reference": "kernel-rt-selftests-internal-0:5.14.0-284.36.1.rt14.321.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-rt-selftests-internal-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-rt-selftests-internal-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64" + }, + "product_reference": "kernel-rt-selftests-internal-0:5.14.0-284.40.1.rt14.325.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-selftests-internal-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-selftests-internal-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-selftests-internal-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-selftests-internal-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-selftests-internal-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-selftests-internal-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-selftests-internal-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-selftests-internal-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-selftests-internal-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-selftests-internal-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-selftests-internal-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-selftests-internal-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-selftests-internal-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-selftests-internal-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-selftests-internal-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-selftests-internal-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-selftests-internal-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-selftests-internal-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-selftests-internal-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-selftests-internal-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-selftests-internal-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-selftests-internal-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-selftests-internal-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-selftests-internal-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-tools-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-tools-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-tools-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-tools-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-tools-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-tools-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-tools-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-tools-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-debuginfo-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-debuginfo-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-debuginfo-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-debuginfo-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-libs-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-tools-libs-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-libs-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-tools-libs-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-libs-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-tools-libs-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-libs-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-tools-libs-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-libs-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-tools-libs-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-libs-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-tools-libs-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-devel-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-libs-devel-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-devel-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-libs-devel-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-devel-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-libs-devel-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-devel-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-libs-devel-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-devel-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-libs-devel-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-tools-libs-devel-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-tools-libs-devel-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-uki-virt-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-uki-virt-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "kernel-uki-virt-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-uki-virt-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-uki-virt-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "kernel-uki-virt-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-zfcpdump-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-zfcpdump-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-core-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-zfcpdump-core-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-core-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-core-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-zfcpdump-core-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-core-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-debuginfo-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-zfcpdump-debuginfo-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-debuginfo-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-zfcpdump-debuginfo-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-devel-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-zfcpdump-devel-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-devel-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-devel-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-zfcpdump-devel-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-devel-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-devel-matched-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-zfcpdump-devel-matched-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-devel-matched-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-devel-matched-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-zfcpdump-devel-matched-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-devel-matched-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-modules-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-zfcpdump-modules-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-modules-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-modules-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-zfcpdump-modules-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-modules-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-modules-core-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-zfcpdump-modules-core-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-modules-core-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-modules-core-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-zfcpdump-modules-core-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-modules-core-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-modules-extra-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-zfcpdump-modules-extra-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-modules-extra-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-modules-extra-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-zfcpdump-modules-extra-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-modules-extra-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-modules-internal-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-zfcpdump-modules-internal-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-modules-internal-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-modules-internal-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-zfcpdump-modules-internal-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-modules-internal-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-modules-partner-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-zfcpdump-modules-partner-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-modules-partner-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kernel-zfcpdump-modules-partner-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:kernel-zfcpdump-modules-partner-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "kernel-zfcpdump-modules-partner-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "microshift-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:microshift-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.aarch64" + }, + "product_reference": "microshift-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "microshift-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:microshift-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.src" + }, + "product_reference": "microshift-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "microshift-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:microshift-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.x86_64" + }, + "product_reference": "microshift-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "microshift-greenboot-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:microshift-greenboot-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.noarch" + }, + "product_reference": "microshift-greenboot-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "microshift-networking-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:microshift-networking-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.aarch64" + }, + "product_reference": "microshift-networking-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "microshift-networking-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:microshift-networking-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.x86_64" + }, + "product_reference": "microshift-networking-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "microshift-release-info-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:microshift-release-info-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.noarch" + }, + "product_reference": "microshift-release-info-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "microshift-selinux-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:microshift-selinux-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.noarch" + }, + "product_reference": "microshift-selinux-0:4.14.2-202311091609.p0.gd80d6de.assembly.4.14.2.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.src" + }, + "product_reference": "openshift-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-ansible-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el9.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift-ansible-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el9.noarch" + }, + "product_reference": "openshift-ansible-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-ansible-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift-ansible-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el9.src" + }, + "product_reference": "openshift-ansible-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-ansible-test-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el9.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift-ansible-test-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el9.noarch" + }, + "product_reference": "openshift-ansible-test-0:4.14.0-202310062327.p0.gf781421.assembly.stream.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.aarch64" + }, + "product_reference": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.ppc64le" + }, + "product_reference": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.s390x" + }, + "product_reference": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.src" + }, + "product_reference": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.x86_64" + }, + "product_reference": "openshift-clients-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.aarch64" + }, + "product_reference": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.ppc64le" + }, + "product_reference": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.s390x" + }, + "product_reference": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.src" + }, + "product_reference": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.x86_64" + }, + "product_reference": "openshift-clients-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-redistributable-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift-clients-redistributable-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.x86_64" + }, + "product_reference": "openshift-clients-redistributable-0:4.14.0-202310191146.p0.g0c63f9d.assembly.stream.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-clients-redistributable-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift-clients-redistributable-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.x86_64" + }, + "product_reference": "openshift-clients-redistributable-0:4.14.0-202311031050.p0.g9b1e0d2.assembly.stream.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.aarch64" + }, + "product_reference": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.ppc64le" + }, + "product_reference": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.s390x" + }, + "product_reference": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.x86_64" + }, + "product_reference": "openshift-hyperkube-0:4.14.0-202310210404.p0.gf67aeb3.assembly.stream.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/driver-toolkit-rhel9@sha256:304c2ae4505587f5a4bf4358625c34f1908edd7041825a3238d9b4a275b9055b_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/driver-toolkit-rhel9@sha256:304c2ae4505587f5a4bf4358625c34f1908edd7041825a3238d9b4a275b9055b_arm64" + }, + "product_reference": "openshift4/driver-toolkit-rhel9@sha256:304c2ae4505587f5a4bf4358625c34f1908edd7041825a3238d9b4a275b9055b_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/driver-toolkit-rhel9@sha256:3c774fa85ae1c6ef8926e9a1f1a1831ed0474511a6c1975fe24fcbd6cc118edc_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/driver-toolkit-rhel9@sha256:3c774fa85ae1c6ef8926e9a1f1a1831ed0474511a6c1975fe24fcbd6cc118edc_ppc64le" + }, + "product_reference": "openshift4/driver-toolkit-rhel9@sha256:3c774fa85ae1c6ef8926e9a1f1a1831ed0474511a6c1975fe24fcbd6cc118edc_ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/driver-toolkit-rhel9@sha256:5d8f215f79ae57a23d2627062e6ee08c48bf77ae17e1ac969d5cc0b6ce5295a4_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/driver-toolkit-rhel9@sha256:5d8f215f79ae57a23d2627062e6ee08c48bf77ae17e1ac969d5cc0b6ce5295a4_arm64" + }, + "product_reference": "openshift4/driver-toolkit-rhel9@sha256:5d8f215f79ae57a23d2627062e6ee08c48bf77ae17e1ac969d5cc0b6ce5295a4_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/driver-toolkit-rhel9@sha256:7e4c3fd0423e8c8e97420ac0bae4a771c7f7070fcf32367d27238150e0e9e6c3_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/driver-toolkit-rhel9@sha256:7e4c3fd0423e8c8e97420ac0bae4a771c7f7070fcf32367d27238150e0e9e6c3_s390x" + }, + "product_reference": "openshift4/driver-toolkit-rhel9@sha256:7e4c3fd0423e8c8e97420ac0bae4a771c7f7070fcf32367d27238150e0e9e6c3_s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/driver-toolkit-rhel9@sha256:b6aee74e78a3f795103b2bf5db887e172e0c9621886147b31a57b3eb9c0d27f2_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/driver-toolkit-rhel9@sha256:b6aee74e78a3f795103b2bf5db887e172e0c9621886147b31a57b3eb9c0d27f2_ppc64le" + }, + "product_reference": "openshift4/driver-toolkit-rhel9@sha256:b6aee74e78a3f795103b2bf5db887e172e0c9621886147b31a57b3eb9c0d27f2_ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/driver-toolkit-rhel9@sha256:c6896bab5071ff6839b2cfb66544c9a6617428069f3ad8b2d3710d66ad88676d_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/driver-toolkit-rhel9@sha256:c6896bab5071ff6839b2cfb66544c9a6617428069f3ad8b2d3710d66ad88676d_s390x" + }, + "product_reference": "openshift4/driver-toolkit-rhel9@sha256:c6896bab5071ff6839b2cfb66544c9a6617428069f3ad8b2d3710d66ad88676d_s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/driver-toolkit-rhel9@sha256:e5636eac6e6fd0859348f65d426bab72b98f7c4a081ed5efdae166837299e1d3_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/driver-toolkit-rhel9@sha256:e5636eac6e6fd0859348f65d426bab72b98f7c4a081ed5efdae166837299e1d3_amd64" + }, + "product_reference": "openshift4/driver-toolkit-rhel9@sha256:e5636eac6e6fd0859348f65d426bab72b98f7c4a081ed5efdae166837299e1d3_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/driver-toolkit-rhel9@sha256:fca57a24b162f5e51f6d5c77d0867618ef9c08d23c27fc25f5bf3fcda602b134_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/driver-toolkit-rhel9@sha256:fca57a24b162f5e51f6d5c77d0867618ef9c08d23c27fc25f5bf3fcda602b134_amd64" + }, + "product_reference": "openshift4/driver-toolkit-rhel9@sha256:fca57a24b162f5e51f6d5c77d0867618ef9c08d23c27fc25f5bf3fcda602b134_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/frr-rhel9@sha256:19b1e4e702a64a9ab6b33425526c408f012b81cd74ff8e7ae43ab5bdc97267a8_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/frr-rhel9@sha256:19b1e4e702a64a9ab6b33425526c408f012b81cd74ff8e7ae43ab5bdc97267a8_amd64" + }, + "product_reference": "openshift4/frr-rhel9@sha256:19b1e4e702a64a9ab6b33425526c408f012b81cd74ff8e7ae43ab5bdc97267a8_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/frr-rhel9@sha256:4960e43a0f470dd9793b4581dc34306b7c3a8a2f298bf82364a686910733fca7_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/frr-rhel9@sha256:4960e43a0f470dd9793b4581dc34306b7c3a8a2f298bf82364a686910733fca7_ppc64le" + }, + "product_reference": "openshift4/frr-rhel9@sha256:4960e43a0f470dd9793b4581dc34306b7c3a8a2f298bf82364a686910733fca7_ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/frr-rhel9@sha256:c0cd52c58233244545c4552fd6406a95f84aee286bec95b84f4168fca2f8bb6b_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/frr-rhel9@sha256:c0cd52c58233244545c4552fd6406a95f84aee286bec95b84f4168fca2f8bb6b_arm64" + }, + "product_reference": "openshift4/frr-rhel9@sha256:c0cd52c58233244545c4552fd6406a95f84aee286bec95b84f4168fca2f8bb6b_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/frr-rhel9@sha256:edd19532b211e0c4c2e6aa805d5b1079321f29a56b79bd072e556c55f010f548_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/frr-rhel9@sha256:edd19532b211e0c4c2e6aa805d5b1079321f29a56b79bd072e556c55f010f548_s390x" + }, + "product_reference": "openshift4/frr-rhel9@sha256:edd19532b211e0c4c2e6aa805d5b1079321f29a56b79bd072e556c55f010f548_s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ingress-node-firewall-rhel9-operator@sha256:38d0497c0db4aa16b0ec37d917f1eaf853f5c629345ce6bc2a511e1f651ae209_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ingress-node-firewall-rhel9-operator@sha256:38d0497c0db4aa16b0ec37d917f1eaf853f5c629345ce6bc2a511e1f651ae209_s390x" + }, + "product_reference": "openshift4/ingress-node-firewall-rhel9-operator@sha256:38d0497c0db4aa16b0ec37d917f1eaf853f5c629345ce6bc2a511e1f651ae209_s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ingress-node-firewall-rhel9-operator@sha256:73d54259e874a007246395057778621d72cbc12ea4dac48272877b4eaff33581_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ingress-node-firewall-rhel9-operator@sha256:73d54259e874a007246395057778621d72cbc12ea4dac48272877b4eaff33581_arm64" + }, + "product_reference": "openshift4/ingress-node-firewall-rhel9-operator@sha256:73d54259e874a007246395057778621d72cbc12ea4dac48272877b4eaff33581_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ingress-node-firewall-rhel9-operator@sha256:966695e0ff7b9570f0d53bd8111449648273ff16c633cee62f21053151eba4d1_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ingress-node-firewall-rhel9-operator@sha256:966695e0ff7b9570f0d53bd8111449648273ff16c633cee62f21053151eba4d1_amd64" + }, + "product_reference": "openshift4/ingress-node-firewall-rhel9-operator@sha256:966695e0ff7b9570f0d53bd8111449648273ff16c633cee62f21053151eba4d1_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ingress-node-firewall-rhel9-operator@sha256:a94b16d20ed072b08fe3a64e2a6ac4c29a4976b6267189ff0796bb72ca983e29_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ingress-node-firewall-rhel9-operator@sha256:a94b16d20ed072b08fe3a64e2a6ac4c29a4976b6267189ff0796bb72ca983e29_ppc64le" + }, + "product_reference": "openshift4/ingress-node-firewall-rhel9-operator@sha256:a94b16d20ed072b08fe3a64e2a6ac4c29a4976b6267189ff0796bb72ca983e29_ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ingress-node-firewall-rhel9@sha256:5ba99a42b8e17b03d13d992d85ba559ddd146974637ccb4b98a6d4dbcf5e43db_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ingress-node-firewall-rhel9@sha256:5ba99a42b8e17b03d13d992d85ba559ddd146974637ccb4b98a6d4dbcf5e43db_ppc64le" + }, + "product_reference": "openshift4/ingress-node-firewall-rhel9@sha256:5ba99a42b8e17b03d13d992d85ba559ddd146974637ccb4b98a6d4dbcf5e43db_ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ingress-node-firewall-rhel9@sha256:bedcf83ac78c13444a6d7263626d5e54ce24228f8d80706c61a7e40bd7bb8fb0_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ingress-node-firewall-rhel9@sha256:bedcf83ac78c13444a6d7263626d5e54ce24228f8d80706c61a7e40bd7bb8fb0_arm64" + }, + "product_reference": "openshift4/ingress-node-firewall-rhel9@sha256:bedcf83ac78c13444a6d7263626d5e54ce24228f8d80706c61a7e40bd7bb8fb0_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ingress-node-firewall-rhel9@sha256:d63e150ca348b86f6dbd20fccc69a22d975d881cfb04a9f1950cb795d4f6fd05_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ingress-node-firewall-rhel9@sha256:d63e150ca348b86f6dbd20fccc69a22d975d881cfb04a9f1950cb795d4f6fd05_amd64" + }, + "product_reference": "openshift4/ingress-node-firewall-rhel9@sha256:d63e150ca348b86f6dbd20fccc69a22d975d881cfb04a9f1950cb795d4f6fd05_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ingress-node-firewall-rhel9@sha256:e4a5adcbd26c4a013ef48390e4bd404c5844a09d98784fcae1981097589058bb_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ingress-node-firewall-rhel9@sha256:e4a5adcbd26c4a013ef48390e4bd404c5844a09d98784fcae1981097589058bb_s390x" + }, + "product_reference": "openshift4/ingress-node-firewall-rhel9@sha256:e4a5adcbd26c4a013ef48390e4bd404c5844a09d98784fcae1981097589058bb_s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/kubernetes-nmstate-rhel9-operator@sha256:3b848a5f0c2be5e8ca2c0788dd02dab39e3167dac9b6e99b4873711cdab324e7_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/kubernetes-nmstate-rhel9-operator@sha256:3b848a5f0c2be5e8ca2c0788dd02dab39e3167dac9b6e99b4873711cdab324e7_arm64" + }, + "product_reference": "openshift4/kubernetes-nmstate-rhel9-operator@sha256:3b848a5f0c2be5e8ca2c0788dd02dab39e3167dac9b6e99b4873711cdab324e7_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/kubernetes-nmstate-rhel9-operator@sha256:c1261865e7909fb968058ae01058ccf861d42e25a5635f5e72415b6efc189c77_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/kubernetes-nmstate-rhel9-operator@sha256:c1261865e7909fb968058ae01058ccf861d42e25a5635f5e72415b6efc189c77_amd64" + }, + "product_reference": "openshift4/kubernetes-nmstate-rhel9-operator@sha256:c1261865e7909fb968058ae01058ccf861d42e25a5635f5e72415b6efc189c77_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/kubernetes-nmstate-rhel9-operator@sha256:e8ed9a99054bff7b1af5556d5cf9b0d37d0b14c3ea113717fb83372303d53701_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/kubernetes-nmstate-rhel9-operator@sha256:e8ed9a99054bff7b1af5556d5cf9b0d37d0b14c3ea113717fb83372303d53701_ppc64le" + }, + "product_reference": "openshift4/kubernetes-nmstate-rhel9-operator@sha256:e8ed9a99054bff7b1af5556d5cf9b0d37d0b14c3ea113717fb83372303d53701_ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/kubernetes-nmstate-rhel9-operator@sha256:f54f122d66e14d6d15e7a1d50d06693d506fab6cb9869401f42a46e9e1fd510b_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/kubernetes-nmstate-rhel9-operator@sha256:f54f122d66e14d6d15e7a1d50d06693d506fab6cb9869401f42a46e9e1fd510b_s390x" + }, + "product_reference": "openshift4/kubernetes-nmstate-rhel9-operator@sha256:f54f122d66e14d6d15e7a1d50d06693d506fab6cb9869401f42a46e9e1fd510b_s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/noderesourcetopology-scheduler-rhel9@sha256:7824fe71328515ea97d7c539b9f622180e8a51ef63862897819a4a2c4cf16cc7_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/noderesourcetopology-scheduler-rhel9@sha256:7824fe71328515ea97d7c539b9f622180e8a51ef63862897819a4a2c4cf16cc7_amd64" + }, + "product_reference": "openshift4/noderesourcetopology-scheduler-rhel9@sha256:7824fe71328515ea97d7c539b9f622180e8a51ef63862897819a4a2c4cf16cc7_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/numaresources-must-gather-rhel9@sha256:7a1fd13b308320588ed336490e7136ac6f581d43e09acf9628d4a747f1d6257f_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/numaresources-must-gather-rhel9@sha256:7a1fd13b308320588ed336490e7136ac6f581d43e09acf9628d4a747f1d6257f_amd64" + }, + "product_reference": "openshift4/numaresources-must-gather-rhel9@sha256:7a1fd13b308320588ed336490e7136ac6f581d43e09acf9628d4a747f1d6257f_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/numaresources-operator-bundle@sha256:44b1b733592ad126d8e48cfe0230a01552d722505c2a421e3bfe1314dac8d610_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/numaresources-operator-bundle@sha256:44b1b733592ad126d8e48cfe0230a01552d722505c2a421e3bfe1314dac8d610_amd64" + }, + "product_reference": "openshift4/numaresources-operator-bundle@sha256:44b1b733592ad126d8e48cfe0230a01552d722505c2a421e3bfe1314dac8d610_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/numaresources-rhel9-operator@sha256:e827220ff2b07b7acbb716f90d3834da84e66523e2ffa4a282e9f28270b73d19_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/numaresources-rhel9-operator@sha256:e827220ff2b07b7acbb716f90d3834da84e66523e2ffa4a282e9f28270b73d19_amd64" + }, + "product_reference": "openshift4/numaresources-rhel9-operator@sha256:e827220ff2b07b7acbb716f90d3834da84e66523e2ffa4a282e9f28270b73d19_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:2e55f9d38a54ad06b7538c42e56a83a7b7d5e4b8ecdb1fc031e0ac95125b94fa_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-cluster-node-tuning-operator@sha256:2e55f9d38a54ad06b7538c42e56a83a7b7d5e4b8ecdb1fc031e0ac95125b94fa_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-node-tuning-operator@sha256:2e55f9d38a54ad06b7538c42e56a83a7b7d5e4b8ecdb1fc031e0ac95125b94fa_ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:3d183a462d7b0ef842018e9901e6bef07406dae30d37410a1bef2ac5cd37def8_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-cluster-node-tuning-operator@sha256:3d183a462d7b0ef842018e9901e6bef07406dae30d37410a1bef2ac5cd37def8_ppc64le" + }, + "product_reference": "openshift4/ose-cluster-node-tuning-operator@sha256:3d183a462d7b0ef842018e9901e6bef07406dae30d37410a1bef2ac5cd37def8_ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:481acb46e9c6ca8081bb380a1023b3c3f663091d31c8a317d0cb90bf41a363a5_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-cluster-node-tuning-operator@sha256:481acb46e9c6ca8081bb380a1023b3c3f663091d31c8a317d0cb90bf41a363a5_arm64" + }, + "product_reference": "openshift4/ose-cluster-node-tuning-operator@sha256:481acb46e9c6ca8081bb380a1023b3c3f663091d31c8a317d0cb90bf41a363a5_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:c7f35a7d259ce15c5019ef911e609aa1457036fb349ff07197386a862ea71b2e_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-cluster-node-tuning-operator@sha256:c7f35a7d259ce15c5019ef911e609aa1457036fb349ff07197386a862ea71b2e_amd64" + }, + "product_reference": "openshift4/ose-cluster-node-tuning-operator@sha256:c7f35a7d259ce15c5019ef911e609aa1457036fb349ff07197386a862ea71b2e_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:d705034c2adca20d90af7452de521d75b954d09e09bcbed0720ff00c05bf329e_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-cluster-node-tuning-operator@sha256:d705034c2adca20d90af7452de521d75b954d09e09bcbed0720ff00c05bf329e_s390x" + }, + "product_reference": "openshift4/ose-cluster-node-tuning-operator@sha256:d705034c2adca20d90af7452de521d75b954d09e09bcbed0720ff00c05bf329e_s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:d81633a941c074b3d036e7785e41abb46887012899dba9b89b531c283a0b9480_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-cluster-node-tuning-operator@sha256:d81633a941c074b3d036e7785e41abb46887012899dba9b89b531c283a0b9480_amd64" + }, + "product_reference": "openshift4/ose-cluster-node-tuning-operator@sha256:d81633a941c074b3d036e7785e41abb46887012899dba9b89b531c283a0b9480_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:de68d103ba913414c9000762bcecb64a3bdc7f15a0572d321f7485c3943b1fbb_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-cluster-node-tuning-operator@sha256:de68d103ba913414c9000762bcecb64a3bdc7f15a0572d321f7485c3943b1fbb_arm64" + }, + "product_reference": "openshift4/ose-cluster-node-tuning-operator@sha256:de68d103ba913414c9000762bcecb64a3bdc7f15a0572d321f7485c3943b1fbb_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-cluster-node-tuning-operator@sha256:f72370d4b49b403aa3fec42f6cfbda6a1e8b30c78b96e617bbf5a3eca730af1f_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-cluster-node-tuning-operator@sha256:f72370d4b49b403aa3fec42f6cfbda6a1e8b30c78b96e617bbf5a3eca730af1f_s390x" + }, + "product_reference": "openshift4/ose-cluster-node-tuning-operator@sha256:f72370d4b49b403aa3fec42f6cfbda6a1e8b30c78b96e617bbf5a3eca730af1f_s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-etcd-rhel9@sha256:2c5fe133b709505d4c3a721bc9311cb56c9ad637a1f0f8e234fada83c8938d40_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-etcd-rhel9@sha256:2c5fe133b709505d4c3a721bc9311cb56c9ad637a1f0f8e234fada83c8938d40_ppc64le" + }, + "product_reference": "openshift4/ose-etcd-rhel9@sha256:2c5fe133b709505d4c3a721bc9311cb56c9ad637a1f0f8e234fada83c8938d40_ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-etcd-rhel9@sha256:6411534bf480911dbb2ec9792502d45e771f92d5e3b91f572dbf4162312ba280_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-etcd-rhel9@sha256:6411534bf480911dbb2ec9792502d45e771f92d5e3b91f572dbf4162312ba280_amd64" + }, + "product_reference": "openshift4/ose-etcd-rhel9@sha256:6411534bf480911dbb2ec9792502d45e771f92d5e3b91f572dbf4162312ba280_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-etcd-rhel9@sha256:a08ee42bfef280558826f94ef5a9325d70dee08e77bf30fe75e5594c8c823abc_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-etcd-rhel9@sha256:a08ee42bfef280558826f94ef5a9325d70dee08e77bf30fe75e5594c8c823abc_s390x" + }, + "product_reference": "openshift4/ose-etcd-rhel9@sha256:a08ee42bfef280558826f94ef5a9325d70dee08e77bf30fe75e5594c8c823abc_s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-etcd-rhel9@sha256:b6bb4fa72dfd329435fdb4395bae6ed4cb1c56e82e04849a28671629bac73039_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-etcd-rhel9@sha256:b6bb4fa72dfd329435fdb4395bae6ed4cb1c56e82e04849a28671629bac73039_arm64" + }, + "product_reference": "openshift4/ose-etcd-rhel9@sha256:b6bb4fa72dfd329435fdb4395bae6ed4cb1c56e82e04849a28671629bac73039_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hyperkube-rhel9@sha256:4ae6c4725722b7f0040d58c455a0a320e86cbaec5a9899b392750dcdadd7d5e7_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-hyperkube-rhel9@sha256:4ae6c4725722b7f0040d58c455a0a320e86cbaec5a9899b392750dcdadd7d5e7_amd64" + }, + "product_reference": "openshift4/ose-hyperkube-rhel9@sha256:4ae6c4725722b7f0040d58c455a0a320e86cbaec5a9899b392750dcdadd7d5e7_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hyperkube-rhel9@sha256:4eddf487d75891dc19ba0c16d655eda2416f8b6f293801c8e55f1f00aa8f8dfb_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-hyperkube-rhel9@sha256:4eddf487d75891dc19ba0c16d655eda2416f8b6f293801c8e55f1f00aa8f8dfb_arm64" + }, + "product_reference": "openshift4/ose-hyperkube-rhel9@sha256:4eddf487d75891dc19ba0c16d655eda2416f8b6f293801c8e55f1f00aa8f8dfb_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hyperkube-rhel9@sha256:53e0fa75579250d9e66b7c394a597f538a1e3909956a0b2928eb35b9007f1ddc_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-hyperkube-rhel9@sha256:53e0fa75579250d9e66b7c394a597f538a1e3909956a0b2928eb35b9007f1ddc_ppc64le" + }, + "product_reference": "openshift4/ose-hyperkube-rhel9@sha256:53e0fa75579250d9e66b7c394a597f538a1e3909956a0b2928eb35b9007f1ddc_ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-hyperkube-rhel9@sha256:5d6d34f3d4d89b63cd67396e3012af24033a29eec6f08deffc3df05c42842b74_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-hyperkube-rhel9@sha256:5d6d34f3d4d89b63cd67396e3012af24033a29eec6f08deffc3df05c42842b74_s390x" + }, + "product_reference": "openshift4/ose-hyperkube-rhel9@sha256:5d6d34f3d4d89b63cd67396e3012af24033a29eec6f08deffc3df05c42842b74_s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:160fd3de1bca1228e0cd69b81674f73572eb88220c9ae2e2c43772fbedd6a86f_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:160fd3de1bca1228e0cd69b81674f73572eb88220c9ae2e2c43772fbedd6a86f_amd64" + }, + "product_reference": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:160fd3de1bca1228e0cd69b81674f73572eb88220c9ae2e2c43772fbedd6a86f_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:2a764e7c35d27cdd87479326ffbc2eaa85f8d81256fcc1415684d38e22a723c1_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:2a764e7c35d27cdd87479326ffbc2eaa85f8d81256fcc1415684d38e22a723c1_arm64" + }, + "product_reference": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:2a764e7c35d27cdd87479326ffbc2eaa85f8d81256fcc1415684d38e22a723c1_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:38ab35532593ede012ffac49ba3e6b5551574c96831ddb04f71b0beb90f7a7ca_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:38ab35532593ede012ffac49ba3e6b5551574c96831ddb04f71b0beb90f7a7ca_arm64" + }, + "product_reference": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:38ab35532593ede012ffac49ba3e6b5551574c96831ddb04f71b0beb90f7a7ca_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7beab49b5817b4c64487ce9f78517ce7c6da333fa1a400a200134148a5a7a764_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7beab49b5817b4c64487ce9f78517ce7c6da333fa1a400a200134148a5a7a764_amd64" + }, + "product_reference": "openshift4/ose-ironic-machine-os-downloader-rhel9@sha256:7beab49b5817b4c64487ce9f78517ce7c6da333fa1a400a200134148a5a7a764_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-rhel9@sha256:a0e102e1360ac948b3de6d31dcdead02ee0046951bad4c5f2e499ba979572ac5_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-ironic-rhel9@sha256:a0e102e1360ac948b3de6d31dcdead02ee0046951bad4c5f2e499ba979572ac5_amd64" + }, + "product_reference": "openshift4/ose-ironic-rhel9@sha256:a0e102e1360ac948b3de6d31dcdead02ee0046951bad4c5f2e499ba979572ac5_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ironic-rhel9@sha256:c7e9b90fa91bef70de2f62346ba59ff87f580efb9931548622cc7e0cee0aa3ac_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-ironic-rhel9@sha256:c7e9b90fa91bef70de2f62346ba59ff87f580efb9931548622cc7e0cee0aa3ac_arm64" + }, + "product_reference": "openshift4/ose-ironic-rhel9@sha256:c7e9b90fa91bef70de2f62346ba59ff87f580efb9931548622cc7e0cee0aa3ac_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:25bbeb2c884787684687d9d84809038d0e5011f09c0492937096171a3e3fb032_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:25bbeb2c884787684687d9d84809038d0e5011f09c0492937096171a3e3fb032_ppc64le" + }, + "product_reference": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:25bbeb2c884787684687d9d84809038d0e5011f09c0492937096171a3e3fb032_ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:72684264d513a3d049319ffae4e3a3cf3bc28265bdd087a5f070102d2e40a457_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:72684264d513a3d049319ffae4e3a3cf3bc28265bdd087a5f070102d2e40a457_s390x" + }, + "product_reference": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:72684264d513a3d049319ffae4e3a3cf3bc28265bdd087a5f070102d2e40a457_s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:78bb06bdf4a72f308ccb544536a4454d15d64aa18b0ddcaef723721e601585fd_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:78bb06bdf4a72f308ccb544536a4454d15d64aa18b0ddcaef723721e601585fd_amd64" + }, + "product_reference": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:78bb06bdf4a72f308ccb544536a4454d15d64aa18b0ddcaef723721e601585fd_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b5787d49c0dd0b16370aaa94d03042cfdea2e21b0a6beb6dd2c7db15bd18ac9c_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b5787d49c0dd0b16370aaa94d03042cfdea2e21b0a6beb6dd2c7db15bd18ac9c_arm64" + }, + "product_reference": "openshift4/ose-ovn-kubernetes-microshift-rhel9@sha256:b5787d49c0dd0b16370aaa94d03042cfdea2e21b0a6beb6dd2c7db15bd18ac9c_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes@sha256:106a0f7eb97104015409792ac3b8ae31d4f619fa434f323eaf4564c8c7d0a1c1_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-ovn-kubernetes@sha256:106a0f7eb97104015409792ac3b8ae31d4f619fa434f323eaf4564c8c7d0a1c1_amd64" + }, + "product_reference": "openshift4/ose-ovn-kubernetes@sha256:106a0f7eb97104015409792ac3b8ae31d4f619fa434f323eaf4564c8c7d0a1c1_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes@sha256:15241772f305f729414f6e29f25fcc79024d4118f5167619dc12ea6ac61a7f15_s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-ovn-kubernetes@sha256:15241772f305f729414f6e29f25fcc79024d4118f5167619dc12ea6ac61a7f15_s390x" + }, + "product_reference": "openshift4/ose-ovn-kubernetes@sha256:15241772f305f729414f6e29f25fcc79024d4118f5167619dc12ea6ac61a7f15_s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes@sha256:33947d0121147410b6832acb0fe3f73959189afece66c453bce1aaa0d6ad67fb_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-ovn-kubernetes@sha256:33947d0121147410b6832acb0fe3f73959189afece66c453bce1aaa0d6ad67fb_arm64" + }, + "product_reference": "openshift4/ose-ovn-kubernetes@sha256:33947d0121147410b6832acb0fe3f73959189afece66c453bce1aaa0d6ad67fb_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ovn-kubernetes@sha256:a80e06b3c3100a7dcbc21017d21cd1a0a16ff767b441b205d5255bab16100da4_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-ovn-kubernetes@sha256:a80e06b3c3100a7dcbc21017d21cd1a0a16ff767b441b205d5255bab16100da4_ppc64le" + }, + "product_reference": "openshift4/ose-ovn-kubernetes@sha256:a80e06b3c3100a7dcbc21017d21cd1a0a16ff767b441b205d5255bab16100da4_ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ptp-rhel9@sha256:142413c0ef80e7ae5d4dd121b4631294e108cdd2ac4ade48cb29e198109a0876_arm64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-ptp-rhel9@sha256:142413c0ef80e7ae5d4dd121b4631294e108cdd2ac4ade48cb29e198109a0876_arm64" + }, + "product_reference": "openshift4/ose-ptp-rhel9@sha256:142413c0ef80e7ae5d4dd121b4631294e108cdd2ac4ade48cb29e198109a0876_arm64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ptp-rhel9@sha256:63adb1de31cc03bdaa5a789ab59f1d2d564ce086ae50eea5743d7ef938112abd_amd64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-ptp-rhel9@sha256:63adb1de31cc03bdaa5a789ab59f1d2d564ce086ae50eea5743d7ef938112abd_amd64" + }, + "product_reference": "openshift4/ose-ptp-rhel9@sha256:63adb1de31cc03bdaa5a789ab59f1d2d564ce086ae50eea5743d7ef938112abd_amd64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/ose-ptp-rhel9@sha256:bca79501904a9fe117e608b09116f1536aedd3389e313df92b9933284337b00b_ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:openshift4/ose-ptp-rhel9@sha256:bca79501904a9fe117e608b09116f1536aedd3389e313df92b9933284337b00b_ppc64le" + }, + "product_reference": "openshift4/ose-ptp-rhel9@sha256:bca79501904a9fe117e608b09116f1536aedd3389e313df92b9933284337b00b_ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-0:23.09.0-37.el9fdp.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-0:23.09.0-37.el9fdp.aarch64" + }, + "product_reference": "ovn23.09-0:23.09.0-37.el9fdp.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-0:23.09.0-37.el9fdp.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-0:23.09.0-37.el9fdp.ppc64le" + }, + "product_reference": "ovn23.09-0:23.09.0-37.el9fdp.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-0:23.09.0-37.el9fdp.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-0:23.09.0-37.el9fdp.s390x" + }, + "product_reference": "ovn23.09-0:23.09.0-37.el9fdp.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-0:23.09.0-37.el9fdp.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-0:23.09.0-37.el9fdp.src" + }, + "product_reference": "ovn23.09-0:23.09.0-37.el9fdp.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-0:23.09.0-37.el9fdp.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-0:23.09.0-37.el9fdp.x86_64" + }, + "product_reference": "ovn23.09-0:23.09.0-37.el9fdp.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-central-0:23.09.0-37.el9fdp.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-central-0:23.09.0-37.el9fdp.aarch64" + }, + "product_reference": "ovn23.09-central-0:23.09.0-37.el9fdp.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-central-0:23.09.0-37.el9fdp.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-central-0:23.09.0-37.el9fdp.ppc64le" + }, + "product_reference": "ovn23.09-central-0:23.09.0-37.el9fdp.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-central-0:23.09.0-37.el9fdp.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-central-0:23.09.0-37.el9fdp.s390x" + }, + "product_reference": "ovn23.09-central-0:23.09.0-37.el9fdp.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-central-0:23.09.0-37.el9fdp.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-central-0:23.09.0-37.el9fdp.x86_64" + }, + "product_reference": "ovn23.09-central-0:23.09.0-37.el9fdp.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-central-debuginfo-0:23.09.0-37.el9fdp.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-central-debuginfo-0:23.09.0-37.el9fdp.aarch64" + }, + "product_reference": "ovn23.09-central-debuginfo-0:23.09.0-37.el9fdp.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-central-debuginfo-0:23.09.0-37.el9fdp.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-central-debuginfo-0:23.09.0-37.el9fdp.ppc64le" + }, + "product_reference": "ovn23.09-central-debuginfo-0:23.09.0-37.el9fdp.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-central-debuginfo-0:23.09.0-37.el9fdp.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-central-debuginfo-0:23.09.0-37.el9fdp.s390x" + }, + "product_reference": "ovn23.09-central-debuginfo-0:23.09.0-37.el9fdp.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-central-debuginfo-0:23.09.0-37.el9fdp.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-central-debuginfo-0:23.09.0-37.el9fdp.x86_64" + }, + "product_reference": "ovn23.09-central-debuginfo-0:23.09.0-37.el9fdp.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-debuginfo-0:23.09.0-37.el9fdp.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-debuginfo-0:23.09.0-37.el9fdp.aarch64" + }, + "product_reference": "ovn23.09-debuginfo-0:23.09.0-37.el9fdp.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-debuginfo-0:23.09.0-37.el9fdp.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-debuginfo-0:23.09.0-37.el9fdp.ppc64le" + }, + "product_reference": "ovn23.09-debuginfo-0:23.09.0-37.el9fdp.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-debuginfo-0:23.09.0-37.el9fdp.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-debuginfo-0:23.09.0-37.el9fdp.s390x" + }, + "product_reference": "ovn23.09-debuginfo-0:23.09.0-37.el9fdp.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-debuginfo-0:23.09.0-37.el9fdp.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-debuginfo-0:23.09.0-37.el9fdp.x86_64" + }, + "product_reference": "ovn23.09-debuginfo-0:23.09.0-37.el9fdp.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-debugsource-0:23.09.0-37.el9fdp.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-debugsource-0:23.09.0-37.el9fdp.aarch64" + }, + "product_reference": "ovn23.09-debugsource-0:23.09.0-37.el9fdp.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-debugsource-0:23.09.0-37.el9fdp.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-debugsource-0:23.09.0-37.el9fdp.ppc64le" + }, + "product_reference": "ovn23.09-debugsource-0:23.09.0-37.el9fdp.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-debugsource-0:23.09.0-37.el9fdp.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-debugsource-0:23.09.0-37.el9fdp.s390x" + }, + "product_reference": "ovn23.09-debugsource-0:23.09.0-37.el9fdp.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-debugsource-0:23.09.0-37.el9fdp.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-debugsource-0:23.09.0-37.el9fdp.x86_64" + }, + "product_reference": "ovn23.09-debugsource-0:23.09.0-37.el9fdp.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-host-0:23.09.0-37.el9fdp.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-host-0:23.09.0-37.el9fdp.aarch64" + }, + "product_reference": "ovn23.09-host-0:23.09.0-37.el9fdp.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-host-0:23.09.0-37.el9fdp.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-host-0:23.09.0-37.el9fdp.ppc64le" + }, + "product_reference": "ovn23.09-host-0:23.09.0-37.el9fdp.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-host-0:23.09.0-37.el9fdp.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-host-0:23.09.0-37.el9fdp.s390x" + }, + "product_reference": "ovn23.09-host-0:23.09.0-37.el9fdp.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-host-0:23.09.0-37.el9fdp.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-host-0:23.09.0-37.el9fdp.x86_64" + }, + "product_reference": "ovn23.09-host-0:23.09.0-37.el9fdp.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-host-debuginfo-0:23.09.0-37.el9fdp.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-host-debuginfo-0:23.09.0-37.el9fdp.aarch64" + }, + "product_reference": "ovn23.09-host-debuginfo-0:23.09.0-37.el9fdp.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-host-debuginfo-0:23.09.0-37.el9fdp.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-host-debuginfo-0:23.09.0-37.el9fdp.ppc64le" + }, + "product_reference": "ovn23.09-host-debuginfo-0:23.09.0-37.el9fdp.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-host-debuginfo-0:23.09.0-37.el9fdp.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-host-debuginfo-0:23.09.0-37.el9fdp.s390x" + }, + "product_reference": "ovn23.09-host-debuginfo-0:23.09.0-37.el9fdp.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-host-debuginfo-0:23.09.0-37.el9fdp.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-host-debuginfo-0:23.09.0-37.el9fdp.x86_64" + }, + "product_reference": "ovn23.09-host-debuginfo-0:23.09.0-37.el9fdp.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-vtep-0:23.09.0-37.el9fdp.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-vtep-0:23.09.0-37.el9fdp.aarch64" + }, + "product_reference": "ovn23.09-vtep-0:23.09.0-37.el9fdp.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-vtep-0:23.09.0-37.el9fdp.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-vtep-0:23.09.0-37.el9fdp.ppc64le" + }, + "product_reference": "ovn23.09-vtep-0:23.09.0-37.el9fdp.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-vtep-0:23.09.0-37.el9fdp.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-vtep-0:23.09.0-37.el9fdp.s390x" + }, + "product_reference": "ovn23.09-vtep-0:23.09.0-37.el9fdp.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-vtep-0:23.09.0-37.el9fdp.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-vtep-0:23.09.0-37.el9fdp.x86_64" + }, + "product_reference": "ovn23.09-vtep-0:23.09.0-37.el9fdp.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-vtep-debuginfo-0:23.09.0-37.el9fdp.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-vtep-debuginfo-0:23.09.0-37.el9fdp.aarch64" + }, + "product_reference": "ovn23.09-vtep-debuginfo-0:23.09.0-37.el9fdp.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-vtep-debuginfo-0:23.09.0-37.el9fdp.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-vtep-debuginfo-0:23.09.0-37.el9fdp.ppc64le" + }, + "product_reference": "ovn23.09-vtep-debuginfo-0:23.09.0-37.el9fdp.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-vtep-debuginfo-0:23.09.0-37.el9fdp.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-vtep-debuginfo-0:23.09.0-37.el9fdp.s390x" + }, + "product_reference": "ovn23.09-vtep-debuginfo-0:23.09.0-37.el9fdp.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ovn23.09-vtep-debuginfo-0:23.09.0-37.el9fdp.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:ovn23.09-vtep-debuginfo-0:23.09.0-37.el9fdp.x86_64" + }, + "product_reference": "ovn23.09-vtep-debuginfo-0:23.09.0-37.el9fdp.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:perf-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "perf-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:perf-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "perf-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:perf-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "perf-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:perf-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "perf-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:perf-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "perf-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:perf-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "perf-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:perf-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "perf-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:perf-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "perf-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:perf-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "perf-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:perf-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "perf-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-debuginfo-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:perf-debuginfo-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "perf-debuginfo-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:perf-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "perf-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:perf-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "perf-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:perf-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "perf-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-debuginfo-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:perf-debuginfo-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "perf-debuginfo-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "perf-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:perf-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "perf-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-3:4.4.1-10.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-3:4.4.1-10.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "podman-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-3:4.4.1-10.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-3:4.4.1-10.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "podman-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-3:4.4.1-10.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-3:4.4.1-10.1.rhaos4.14.el9.s390x" + }, + "product_reference": "podman-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-3:4.4.1-10.1.rhaos4.14.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-3:4.4.1-10.1.rhaos4.14.el9.src" + }, + "product_reference": "podman-3:4.4.1-10.1.rhaos4.14.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-3:4.4.1-10.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-3:4.4.1-10.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "podman-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.s390x" + }, + "product_reference": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "podman-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-debugsource-3:4.4.1-10.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-debugsource-3:4.4.1-10.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-debugsource-3:4.4.1-10.1.rhaos4.14.el9.s390x" + }, + "product_reference": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-debugsource-3:4.4.1-10.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "podman-debugsource-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-docker-3:4.4.1-10.1.rhaos4.14.el9.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-docker-3:4.4.1-10.1.rhaos4.14.el9.noarch" + }, + "product_reference": "podman-docker-3:4.4.1-10.1.rhaos4.14.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el9.s390x" + }, + "product_reference": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "podman-gvproxy-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.s390x" + }, + "product_reference": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "podman-gvproxy-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-plugins-3:4.4.1-10.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-plugins-3:4.4.1-10.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-plugins-3:4.4.1-10.1.rhaos4.14.el9.s390x" + }, + "product_reference": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-plugins-3:4.4.1-10.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "podman-plugins-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.s390x" + }, + "product_reference": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "podman-plugins-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-remote-3:4.4.1-10.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-remote-3:4.4.1-10.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "podman-remote-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-remote-3:4.4.1-10.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-remote-3:4.4.1-10.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "podman-remote-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-remote-3:4.4.1-10.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-remote-3:4.4.1-10.1.rhaos4.14.el9.s390x" + }, + "product_reference": "podman-remote-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-remote-3:4.4.1-10.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-remote-3:4.4.1-10.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "podman-remote-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.s390x" + }, + "product_reference": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "podman-remote-debuginfo-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-tests-3:4.4.1-10.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-tests-3:4.4.1-10.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "podman-tests-3:4.4.1-10.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-tests-3:4.4.1-10.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-tests-3:4.4.1-10.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "podman-tests-3:4.4.1-10.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-tests-3:4.4.1-10.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-tests-3:4.4.1-10.1.rhaos4.14.el9.s390x" + }, + "product_reference": "podman-tests-3:4.4.1-10.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman-tests-3:4.4.1-10.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:podman-tests-3:4.4.1-10.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "podman-tests-3:4.4.1-10.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:python3-perf-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "python3-perf-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:python3-perf-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "python3-perf-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:python3-perf-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "python3-perf-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:python3-perf-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "python3-perf-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:python3-perf-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "python3-perf-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:python3-perf-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "python3-perf-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:python3-perf-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "python3-perf-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:python3-perf-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "python3-perf-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:python3-perf-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "python3-perf-debuginfo-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:python3-perf-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "python3-perf-debuginfo-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-debuginfo-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:python3-perf-debuginfo-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "python3-perf-debuginfo-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:python3-perf-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "python3-perf-debuginfo-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:python3-perf-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "python3-perf-debuginfo-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:python3-perf-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "python3-perf-debuginfo-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-debuginfo-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:python3-perf-debuginfo-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "python3-perf-debuginfo-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-perf-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:python3-perf-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "python3-perf-debuginfo-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rtla-0:5.14.0-284.36.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:rtla-0:5.14.0-284.36.1.el9_2.aarch64" + }, + "product_reference": "rtla-0:5.14.0-284.36.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rtla-0:5.14.0-284.36.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:rtla-0:5.14.0-284.36.1.el9_2.ppc64le" + }, + "product_reference": "rtla-0:5.14.0-284.36.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rtla-0:5.14.0-284.36.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:rtla-0:5.14.0-284.36.1.el9_2.s390x" + }, + "product_reference": "rtla-0:5.14.0-284.36.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rtla-0:5.14.0-284.36.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:rtla-0:5.14.0-284.36.1.el9_2.x86_64" + }, + "product_reference": "rtla-0:5.14.0-284.36.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rtla-0:5.14.0-284.40.1.el9_2.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:rtla-0:5.14.0-284.40.1.el9_2.aarch64" + }, + "product_reference": "rtla-0:5.14.0-284.40.1.el9_2.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rtla-0:5.14.0-284.40.1.el9_2.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:rtla-0:5.14.0-284.40.1.el9_2.ppc64le" + }, + "product_reference": "rtla-0:5.14.0-284.40.1.el9_2.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rtla-0:5.14.0-284.40.1.el9_2.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:rtla-0:5.14.0-284.40.1.el9_2.s390x" + }, + "product_reference": "rtla-0:5.14.0-284.40.1.el9_2.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rtla-0:5.14.0-284.40.1.el9_2.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:rtla-0:5.14.0-284.40.1.el9_2.x86_64" + }, + "product_reference": "rtla-0:5.14.0-284.40.1.el9_2.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-4:1.1.9-2.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:runc-4:1.1.9-2.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "runc-4:1.1.9-2.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-4:1.1.9-2.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:runc-4:1.1.9-2.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "runc-4:1.1.9-2.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-4:1.1.9-2.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:runc-4:1.1.9-2.1.rhaos4.14.el9.s390x" + }, + "product_reference": "runc-4:1.1.9-2.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-4:1.1.9-2.1.rhaos4.14.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:runc-4:1.1.9-2.1.rhaos4.14.el9.src" + }, + "product_reference": "runc-4:1.1.9-2.1.rhaos4.14.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-4:1.1.9-2.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:runc-4:1.1.9-2.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "runc-4:1.1.9-2.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el9.s390x" + }, + "product_reference": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "runc-debuginfo-4:1.1.9-2.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:runc-debugsource-4:1.1.9-2.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:runc-debugsource-4:1.1.9-2.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:runc-debugsource-4:1.1.9-2.1.rhaos4.14.el9.s390x" + }, + "product_reference": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:runc-debugsource-4:1.1.9-2.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "runc-debugsource-4:1.1.9-2.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rust-afterburn-0:5.4.3-1.rhaos4.14.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:rust-afterburn-0:5.4.3-1.rhaos4.14.el9.src" + }, + "product_reference": "rust-afterburn-0:5.4.3-1.rhaos4.14.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rust-afterburn-debugsource-0:5.4.3-1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:rust-afterburn-debugsource-0:5.4.3-1.rhaos4.14.el9.aarch64" + }, + "product_reference": "rust-afterburn-debugsource-0:5.4.3-1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rust-afterburn-debugsource-0:5.4.3-1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:rust-afterburn-debugsource-0:5.4.3-1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "rust-afterburn-debugsource-0:5.4.3-1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rust-afterburn-debugsource-0:5.4.3-1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:rust-afterburn-debugsource-0:5.4.3-1.rhaos4.14.el9.s390x" + }, + "product_reference": "rust-afterburn-debugsource-0:5.4.3-1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rust-afterburn-debugsource-0:5.4.3-1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:rust-afterburn-debugsource-0:5.4.3-1.rhaos4.14.el9.x86_64" + }, + "product_reference": "rust-afterburn-debugsource-0:5.4.3-1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:skopeo-2:1.11.2-10.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:skopeo-2:1.11.2-10.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:skopeo-2:1.11.2-10.1.rhaos4.14.el9.s390x" + }, + "product_reference": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:skopeo-2:1.11.2-10.1.rhaos4.14.el9.src" + }, + "product_reference": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:skopeo-2:1.11.2-10.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "skopeo-2:1.11.2-10.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el9.s390x" + }, + "product_reference": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "skopeo-debuginfo-2:1.11.2-10.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el9.s390x" + }, + "product_reference": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "skopeo-debugsource-2:1.11.2-10.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:skopeo-tests-2:1.11.2-10.1.rhaos4.14.el9.aarch64" + }, + "product_reference": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:skopeo-tests-2:1.11.2-10.1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:skopeo-tests-2:1.11.2-10.1.rhaos4.14.el9.s390x" + }, + "product_reference": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:skopeo-tests-2:1.11.2-10.1.rhaos4.14.el9.x86_64" + }, + "product_reference": "skopeo-tests-2:1.11.2-10.1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "spdlog-0:1.12.0-1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:spdlog-0:1.12.0-1.rhaos4.14.el9.aarch64" + }, + "product_reference": "spdlog-0:1.12.0-1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "spdlog-0:1.12.0-1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:spdlog-0:1.12.0-1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "spdlog-0:1.12.0-1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "spdlog-0:1.12.0-1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:spdlog-0:1.12.0-1.rhaos4.14.el9.s390x" + }, + "product_reference": "spdlog-0:1.12.0-1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "spdlog-0:1.12.0-1.rhaos4.14.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:spdlog-0:1.12.0-1.rhaos4.14.el9.src" + }, + "product_reference": "spdlog-0:1.12.0-1.rhaos4.14.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "spdlog-0:1.12.0-1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:spdlog-0:1.12.0-1.rhaos4.14.el9.x86_64" + }, + "product_reference": "spdlog-0:1.12.0-1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "spdlog-debuginfo-0:1.12.0-1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:spdlog-debuginfo-0:1.12.0-1.rhaos4.14.el9.aarch64" + }, + "product_reference": "spdlog-debuginfo-0:1.12.0-1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "spdlog-debuginfo-0:1.12.0-1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:spdlog-debuginfo-0:1.12.0-1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "spdlog-debuginfo-0:1.12.0-1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "spdlog-debuginfo-0:1.12.0-1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:spdlog-debuginfo-0:1.12.0-1.rhaos4.14.el9.s390x" + }, + "product_reference": "spdlog-debuginfo-0:1.12.0-1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "spdlog-debuginfo-0:1.12.0-1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:spdlog-debuginfo-0:1.12.0-1.rhaos4.14.el9.x86_64" + }, + "product_reference": "spdlog-debuginfo-0:1.12.0-1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "spdlog-debugsource-0:1.12.0-1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:spdlog-debugsource-0:1.12.0-1.rhaos4.14.el9.aarch64" + }, + "product_reference": "spdlog-debugsource-0:1.12.0-1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "spdlog-debugsource-0:1.12.0-1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:spdlog-debugsource-0:1.12.0-1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "spdlog-debugsource-0:1.12.0-1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "spdlog-debugsource-0:1.12.0-1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:spdlog-debugsource-0:1.12.0-1.rhaos4.14.el9.s390x" + }, + "product_reference": "spdlog-debugsource-0:1.12.0-1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "spdlog-debugsource-0:1.12.0-1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:spdlog-debugsource-0:1.12.0-1.rhaos4.14.el9.x86_64" + }, + "product_reference": "spdlog-debugsource-0:1.12.0-1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "spdlog-devel-0:1.12.0-1.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:spdlog-devel-0:1.12.0-1.rhaos4.14.el9.aarch64" + }, + "product_reference": "spdlog-devel-0:1.12.0-1.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "spdlog-devel-0:1.12.0-1.rhaos4.14.el9.ppc64le as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:spdlog-devel-0:1.12.0-1.rhaos4.14.el9.ppc64le" + }, + "product_reference": "spdlog-devel-0:1.12.0-1.rhaos4.14.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "spdlog-devel-0:1.12.0-1.rhaos4.14.el9.s390x as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:spdlog-devel-0:1.12.0-1.rhaos4.14.el9.s390x" + }, + "product_reference": "spdlog-devel-0:1.12.0-1.rhaos4.14.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "spdlog-devel-0:1.12.0-1.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:spdlog-devel-0:1.12.0-1.rhaos4.14.el9.x86_64" + }, + "product_reference": "spdlog-devel-0:1.12.0-1.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-0:0.1.2-1.rhaos4.14.el9.noarch as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:toolbox-0:0.1.2-1.rhaos4.14.el9.noarch" + }, + "product_reference": "toolbox-0:0.1.2-1.rhaos4.14.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-0:0.1.2-1.rhaos4.14.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:toolbox-0:0.1.2-1.rhaos4.14.el9.src" + }, + "product_reference": "toolbox-0:0.1.2-1.rhaos4.14.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "wasmedge-0:0.12.1-2.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:wasmedge-0:0.12.1-2.rhaos4.14.el9.aarch64" + }, + "product_reference": "wasmedge-0:0.12.1-2.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "wasmedge-0:0.12.1-2.rhaos4.14.el9.src as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:wasmedge-0:0.12.1-2.rhaos4.14.el9.src" + }, + "product_reference": "wasmedge-0:0.12.1-2.rhaos4.14.el9.src", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "wasmedge-0:0.12.1-2.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:wasmedge-0:0.12.1-2.rhaos4.14.el9.x86_64" + }, + "product_reference": "wasmedge-0:0.12.1-2.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "wasmedge-debuginfo-0:0.12.1-2.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:wasmedge-debuginfo-0:0.12.1-2.rhaos4.14.el9.aarch64" + }, + "product_reference": "wasmedge-debuginfo-0:0.12.1-2.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "wasmedge-debuginfo-0:0.12.1-2.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:wasmedge-debuginfo-0:0.12.1-2.rhaos4.14.el9.x86_64" + }, + "product_reference": "wasmedge-debuginfo-0:0.12.1-2.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "wasmedge-debugsource-0:0.12.1-2.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:wasmedge-debugsource-0:0.12.1-2.rhaos4.14.el9.aarch64" + }, + "product_reference": "wasmedge-debugsource-0:0.12.1-2.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "wasmedge-debugsource-0:0.12.1-2.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:wasmedge-debugsource-0:0.12.1-2.rhaos4.14.el9.x86_64" + }, + "product_reference": "wasmedge-debugsource-0:0.12.1-2.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "wasmedge-devel-0:0.12.1-2.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:wasmedge-devel-0:0.12.1-2.rhaos4.14.el9.aarch64" + }, + "product_reference": "wasmedge-devel-0:0.12.1-2.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "wasmedge-devel-0:0.12.1-2.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:wasmedge-devel-0:0.12.1-2.rhaos4.14.el9.x86_64" + }, + "product_reference": "wasmedge-devel-0:0.12.1-2.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "wasmedge-rt-0:0.12.1-2.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:wasmedge-rt-0:0.12.1-2.rhaos4.14.el9.aarch64" + }, + "product_reference": "wasmedge-rt-0:0.12.1-2.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "wasmedge-rt-0:0.12.1-2.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:wasmedge-rt-0:0.12.1-2.rhaos4.14.el9.x86_64" + }, + "product_reference": "wasmedge-rt-0:0.12.1-2.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "wasmedge-rt-debuginfo-0:0.12.1-2.rhaos4.14.el9.aarch64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:wasmedge-rt-debuginfo-0:0.12.1-2.rhaos4.14.el9.aarch64" + }, + "product_reference": "wasmedge-rt-debuginfo-0:0.12.1-2.rhaos4.14.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "wasmedge-rt-debuginfo-0:0.12.1-2.rhaos4.14.el9.x86_64 as a component of Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-4.14:wasmedge-rt-debuginfo-0:0.12.1-2.rhaos4.14.el9.x86_64" + }, + "product_reference": "wasmedge-rt-debuginfo-0:0.12.1-2.rhaos4.14.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-ironic-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-IRONIC-4.13:openstack-ironic-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch" + }, + "product_reference": "openstack-ironic-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-ironic-1:21.3.1-0.20231106145533.e53dc4f.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-IRONIC-4.13:openstack-ironic-1:21.3.1-0.20231106145533.e53dc4f.el9.src" + }, + "product_reference": "openstack-ironic-1:21.3.1-0.20231106145533.e53dc4f.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-ironic-api-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-IRONIC-4.13:openstack-ironic-api-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch" + }, + "product_reference": "openstack-ironic-api-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-ironic-common-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-IRONIC-4.13:openstack-ironic-common-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch" + }, + "product_reference": "openstack-ironic-common-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-ironic-conductor-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-IRONIC-4.13:openstack-ironic-conductor-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch" + }, + "product_reference": "openstack-ironic-conductor-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-ironic-dnsmasq-tftp-server-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-IRONIC-4.13:openstack-ironic-dnsmasq-tftp-server-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch" + }, + "product_reference": "openstack-ironic-dnsmasq-tftp-server-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-ironic-tests-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.13", + "product_id": "9Base-RHOSE-IRONIC-4.13:python3-ironic-tests-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch" + }, + "product_reference": "python3-ironic-tests-1:21.3.1-0.20231106145533.e53dc4f.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-ironic-1:21.5.0-0.20231002130534.0df5961.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:openstack-ironic-1:21.5.0-0.20231002130534.0df5961.el9.noarch" + }, + "product_reference": "openstack-ironic-1:21.5.0-0.20231002130534.0df5961.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-ironic-1:21.5.0-0.20231002130534.0df5961.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:openstack-ironic-1:21.5.0-0.20231002130534.0df5961.el9.src" + }, + "product_reference": "openstack-ironic-1:21.5.0-0.20231002130534.0df5961.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-ironic-api-1:21.5.0-0.20231002130534.0df5961.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:openstack-ironic-api-1:21.5.0-0.20231002130534.0df5961.el9.noarch" + }, + "product_reference": "openstack-ironic-api-1:21.5.0-0.20231002130534.0df5961.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-ironic-common-1:21.5.0-0.20231002130534.0df5961.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:openstack-ironic-common-1:21.5.0-0.20231002130534.0df5961.el9.noarch" + }, + "product_reference": "openstack-ironic-common-1:21.5.0-0.20231002130534.0df5961.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-ironic-conductor-1:21.5.0-0.20231002130534.0df5961.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:openstack-ironic-conductor-1:21.5.0-0.20231002130534.0df5961.el9.noarch" + }, + "product_reference": "openstack-ironic-conductor-1:21.5.0-0.20231002130534.0df5961.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-ironic-dnsmasq-tftp-server-1:21.5.0-0.20231002130534.0df5961.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:openstack-ironic-dnsmasq-tftp-server-1:21.5.0-0.20231002130534.0df5961.el9.noarch" + }, + "product_reference": "openstack-ironic-dnsmasq-tftp-server-1:21.5.0-0.20231002130534.0df5961.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-ironic-inspector-0:11.5.0-0.20230706175125.193aa0d.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:openstack-ironic-inspector-0:11.5.0-0.20230706175125.193aa0d.el9.noarch" + }, + "product_reference": "openstack-ironic-inspector-0:11.5.0-0.20230706175125.193aa0d.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-ironic-inspector-0:11.5.0-0.20230706175125.193aa0d.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:openstack-ironic-inspector-0:11.5.0-0.20230706175125.193aa0d.el9.src" + }, + "product_reference": "openstack-ironic-inspector-0:11.5.0-0.20230706175125.193aa0d.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-ironic-inspector-api-0:11.5.0-0.20230706175125.193aa0d.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:openstack-ironic-inspector-api-0:11.5.0-0.20230706175125.193aa0d.el9.noarch" + }, + "product_reference": "openstack-ironic-inspector-api-0:11.5.0-0.20230706175125.193aa0d.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-ironic-inspector-conductor-0:11.5.0-0.20230706175125.193aa0d.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:openstack-ironic-inspector-conductor-0:11.5.0-0.20230706175125.193aa0d.el9.noarch" + }, + "product_reference": "openstack-ironic-inspector-conductor-0:11.5.0-0.20230706175125.193aa0d.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-ironic-inspector-dnsmasq-0:11.5.0-0.20230706175125.193aa0d.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:openstack-ironic-inspector-dnsmasq-0:11.5.0-0.20230706175125.193aa0d.el9.noarch" + }, + "product_reference": "openstack-ironic-inspector-dnsmasq-0:11.5.0-0.20230706175125.193aa0d.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-ironic-python-agent-0:9.5.0-0.20230728140546.fce0b8c.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:openstack-ironic-python-agent-0:9.5.0-0.20230728140546.fce0b8c.el9.noarch" + }, + "product_reference": "openstack-ironic-python-agent-0:9.5.0-0.20230728140546.fce0b8c.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-ironic-python-agent-0:9.5.0-0.20230728140546.fce0b8c.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:openstack-ironic-python-agent-0:9.5.0-0.20230728140546.fce0b8c.el9.src" + }, + "product_reference": "openstack-ironic-python-agent-0:9.5.0-0.20230728140546.fce0b8c.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-automaton-0:3.1.0-0.20230608140652.a4f7631.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-automaton-0:3.1.0-0.20230608140652.a4f7631.el9.src" + }, + "product_reference": "python-automaton-0:3.1.0-0.20230608140652.a4f7631.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cinderclient-0:9.3.0-0.20230608143053.f7a612e.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-cinderclient-0:9.3.0-0.20230608143053.f7a612e.el9.src" + }, + "product_reference": "python-cinderclient-0:9.3.0-0.20230608143053.f7a612e.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cliff-0:4.3.0-0.20230608150702.72e81d7.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-cliff-0:4.3.0-0.20230608150702.72e81d7.el9.src" + }, + "product_reference": "python-cliff-0:4.3.0-0.20230608150702.72e81d7.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-debtcollector-0:2.5.0-0.20230308172820.a6b46c5.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-debtcollector-0:2.5.0-0.20230308172820.a6b46c5.el9.src" + }, + "product_reference": "python-debtcollector-0:2.5.0-0.20230308172820.a6b46c5.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-decorator-0:4.4.2-6.0.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-decorator-0:4.4.2-6.0.el9.src" + }, + "product_reference": "python-decorator-0:4.4.2-6.0.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-dracclient-0:8.0.0-0.20230308200614.9c7499c.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-dracclient-0:8.0.0-0.20230308200614.9c7499c.el9.src" + }, + "product_reference": "python-dracclient-0:8.0.0-0.20230308200614.9c7499c.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-fixtures-0:4.0.1-1.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-fixtures-0:4.0.1-1.el9.src" + }, + "product_reference": "python-fixtures-0:4.0.1-1.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-futurist-0:2.4.1-0.20230308173923.159d752.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-futurist-0:2.4.1-0.20230308173923.159d752.el9.src" + }, + "product_reference": "python-futurist-0:2.4.1-0.20230308173923.159d752.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-glanceclient-1:4.3.0-0.20230608143056.52fb6b2.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-glanceclient-1:4.3.0-0.20230608143056.52fb6b2.el9.src" + }, + "product_reference": "python-glanceclient-1:4.3.0-0.20230608143056.52fb6b2.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-hardware-0:0.30.0-0.20230308190813.f6ff0ed.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-hardware-0:0.30.0-0.20230308190813.f6ff0ed.el9.src" + }, + "product_reference": "python-hardware-0:0.30.0-0.20230308190813.f6ff0ed.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ironic-lib-0:5.4.1-0.20230706172632.25d8671.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-ironic-lib-0:5.4.1-0.20230706172632.25d8671.el9.src" + }, + "product_reference": "python-ironic-lib-0:5.4.1-0.20230706172632.25d8671.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ironic-prometheus-exporter-0:4.1.1-0.20230614150617.7b35627.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-ironic-prometheus-exporter-0:4.1.1-0.20230614150617.7b35627.el9.src" + }, + "product_reference": "python-ironic-prometheus-exporter-0:4.1.1-0.20230614150617.7b35627.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-keystoneauth1-0:5.2.0-0.20230608152518.2e40bbf.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-keystoneauth1-0:5.2.0-0.20230608152518.2e40bbf.el9.src" + }, + "product_reference": "python-keystoneauth1-0:5.2.0-0.20230608152518.2e40bbf.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-keystoneclient-1:5.1.0-0.20230608141554.4763cd8.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-keystoneclient-1:5.1.0-0.20230608141554.4763cd8.el9.src" + }, + "product_reference": "python-keystoneclient-1:5.1.0-0.20230608141554.4763cd8.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-keystonemiddleware-0:10.3.0-0.20230608151410.92cdf8a.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-keystonemiddleware-0:10.3.0-0.20230608151410.92cdf8a.el9.src" + }, + "product_reference": "python-keystonemiddleware-0:10.3.0-0.20230608151410.92cdf8a.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-openstacksdk-0:1.2.0-0.20230608155226.b7ff031.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-openstacksdk-0:1.2.0-0.20230608155226.b7ff031.el9.src" + }, + "product_reference": "python-openstacksdk-0:1.2.0-0.20230608155226.b7ff031.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-os-service-types-0:1.7.0-0.20230308170555.0b2f473.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-os-service-types-0:1.7.0-0.20230308170555.0b2f473.el9.src" + }, + "product_reference": "python-os-service-types-0:1.7.0-0.20230308170555.0b2f473.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-os-traits-0:3.0.0-0.20230608152745.cff125c.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-os-traits-0:3.0.0-0.20230608152745.cff125c.el9.src" + }, + "product_reference": "python-os-traits-0:3.0.0-0.20230608152745.cff125c.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-osc-lib-0:2.8.0-0.20230608151456.db9cdc9.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-osc-lib-0:2.8.0-0.20230608151456.db9cdc9.el9.src" + }, + "product_reference": "python-osc-lib-0:2.8.0-0.20230608151456.db9cdc9.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-cache-0:3.4.0-0.20230608153448.a720016.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-cache-0:3.4.0-0.20230608153448.a720016.el9.src" + }, + "product_reference": "python-oslo-cache-0:3.4.0-0.20230608153448.a720016.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-cache-lang-0:3.4.0-0.20230608153448.a720016.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-cache-lang-0:3.4.0-0.20230608153448.a720016.el9.noarch" + }, + "product_reference": "python-oslo-cache-lang-0:3.4.0-0.20230608153448.a720016.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-concurrency-0:5.1.1-0.20230706190204.0af5942.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-concurrency-0:5.1.1-0.20230706190204.0af5942.el9.src" + }, + "product_reference": "python-oslo-concurrency-0:5.1.1-0.20230706190204.0af5942.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-concurrency-lang-0:5.1.1-0.20230706190204.0af5942.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-concurrency-lang-0:5.1.1-0.20230706190204.0af5942.el9.noarch" + }, + "product_reference": "python-oslo-concurrency-lang-0:5.1.1-0.20230706190204.0af5942.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-config-2:9.1.1-0.20230608145954.515daab.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-config-2:9.1.1-0.20230608145954.515daab.el9.src" + }, + "product_reference": "python-oslo-config-2:9.1.1-0.20230608145954.515daab.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-context-0:5.1.1-0.20230608143931.7696282.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-context-0:5.1.1-0.20230608143931.7696282.el9.src" + }, + "product_reference": "python-oslo-context-0:5.1.1-0.20230608143931.7696282.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-db-0:12.3.1-0.20230608142355.b689b63.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-db-0:12.3.1-0.20230608142355.b689b63.el9.src" + }, + "product_reference": "python-oslo-db-0:12.3.1-0.20230608142355.b689b63.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-db-lang-0:12.3.1-0.20230608142355.b689b63.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-db-lang-0:12.3.1-0.20230608142355.b689b63.el9.noarch" + }, + "product_reference": "python-oslo-db-lang-0:12.3.1-0.20230608142355.b689b63.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-i18n-0:6.0.0-0.20230608140652.03605c2.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-i18n-0:6.0.0-0.20230608140652.03605c2.el9.src" + }, + "product_reference": "python-oslo-i18n-0:6.0.0-0.20230608140652.03605c2.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-i18n-lang-0:6.0.0-0.20230608140652.03605c2.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-i18n-lang-0:6.0.0-0.20230608140652.03605c2.el9.noarch" + }, + "product_reference": "python-oslo-i18n-lang-0:6.0.0-0.20230608140652.03605c2.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-log-0:5.2.0-0.20230608150750.16a8a42.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-log-0:5.2.0-0.20230608150750.16a8a42.el9.src" + }, + "product_reference": "python-oslo-log-0:5.2.0-0.20230608150750.16a8a42.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-log-lang-0:5.2.0-0.20230608150750.16a8a42.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-log-lang-0:5.2.0-0.20230608150750.16a8a42.el9.noarch" + }, + "product_reference": "python-oslo-log-lang-0:5.2.0-0.20230608150750.16a8a42.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-messaging-0:14.3.1-0.20230608152013.0602d1a.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-messaging-0:14.3.1-0.20230608152013.0602d1a.el9.src" + }, + "product_reference": "python-oslo-messaging-0:14.3.1-0.20230608152013.0602d1a.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-middleware-0:5.1.1-0.20230608145931.7725ac9.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-middleware-0:5.1.1-0.20230608145931.7725ac9.el9.src" + }, + "product_reference": "python-oslo-middleware-0:5.1.1-0.20230608145931.7725ac9.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-middleware-lang-0:5.1.1-0.20230608145931.7725ac9.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-middleware-lang-0:5.1.1-0.20230608145931.7725ac9.el9.noarch" + }, + "product_reference": "python-oslo-middleware-lang-0:5.1.1-0.20230608145931.7725ac9.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-policy-0:4.2.0-0.20230608153320.93129eb.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-policy-0:4.2.0-0.20230608153320.93129eb.el9.src" + }, + "product_reference": "python-oslo-policy-0:4.2.0-0.20230608153320.93129eb.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-policy-lang-0:4.2.0-0.20230608153320.93129eb.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-policy-lang-0:4.2.0-0.20230608153320.93129eb.el9.noarch" + }, + "product_reference": "python-oslo-policy-lang-0:4.2.0-0.20230608153320.93129eb.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-rootwrap-0:7.0.1-0.20230608144658.b72372b.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-rootwrap-0:7.0.1-0.20230608144658.b72372b.el9.src" + }, + "product_reference": "python-oslo-rootwrap-0:7.0.1-0.20230608144658.b72372b.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-serialization-0:5.1.1-0.20230608144505.b4be3a4.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-serialization-0:5.1.1-0.20230608144505.b4be3a4.el9.src" + }, + "product_reference": "python-oslo-serialization-0:5.1.1-0.20230608144505.b4be3a4.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-service-0:3.1.1-0.20230608145222.b3ba591.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-service-0:3.1.1-0.20230608145222.b3ba591.el9.src" + }, + "product_reference": "python-oslo-service-0:3.1.1-0.20230608145222.b3ba591.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-upgradecheck-0:2.1.1-0.20230608143829.eeedfc9.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-upgradecheck-0:2.1.1-0.20230608143829.eeedfc9.el9.src" + }, + "product_reference": "python-oslo-upgradecheck-0:2.1.1-0.20230608143829.eeedfc9.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-utils-0:6.1.0-0.20230608142355.d49d594.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-utils-0:6.1.0-0.20230608142355.d49d594.el9.src" + }, + "product_reference": "python-oslo-utils-0:6.1.0-0.20230608142355.d49d594.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-utils-lang-0:6.1.0-0.20230608142355.d49d594.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-utils-lang-0:6.1.0-0.20230608142355.d49d594.el9.noarch" + }, + "product_reference": "python-oslo-utils-lang-0:6.1.0-0.20230608142355.d49d594.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-versionedobjects-0:3.1.0-0.20230608141554.b4ea834.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-versionedobjects-0:3.1.0-0.20230608141554.b4ea834.el9.src" + }, + "product_reference": "python-oslo-versionedobjects-0:3.1.0-0.20230608141554.b4ea834.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-oslo-versionedobjects-lang-0:3.1.0-0.20230608141554.b4ea834.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-oslo-versionedobjects-lang-0:3.1.0-0.20230608141554.b4ea834.el9.noarch" + }, + "product_reference": "python-oslo-versionedobjects-lang-0:3.1.0-0.20230608141554.b4ea834.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-osprofiler-0:3.4.3-0.20230308173821.3286301.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-osprofiler-0:3.4.3-0.20230308173821.3286301.el9.src" + }, + "product_reference": "python-osprofiler-0:3.4.3-0.20230308173821.3286301.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pbr-0:5.11.1-0.1.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-pbr-0:5.11.1-0.1.el9.src" + }, + "product_reference": "python-pbr-0:5.11.1-0.1.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-proliantutils-0:2.14.1-0.20230608154738.3de2844.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-proliantutils-0:2.14.1-0.20230608154738.3de2844.el9.src" + }, + "product_reference": "python-proliantutils-0:2.14.1-0.20230608154738.3de2844.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycadf-0:3.1.1-0.20230308171749.4179996.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-pycadf-0:3.1.1-0.20230308171749.4179996.el9.src" + }, + "product_reference": "python-pycadf-0:3.1.1-0.20230308171749.4179996.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycadf-common-0:3.1.1-0.20230308171749.4179996.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-pycadf-common-0:3.1.1-0.20230308171749.4179996.el9.noarch" + }, + "product_reference": "python-pycadf-common-0:3.1.1-0.20230308171749.4179996.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-requestsexceptions-0:1.4.0-0.20230308170555.d7ac0ff.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-requestsexceptions-0:1.4.0-0.20230308170555.d7ac0ff.el9.src" + }, + "product_reference": "python-requestsexceptions-0:1.4.0-0.20230308170555.d7ac0ff.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-scciclient-0:0.12.3-0.20230308201513.0940a71.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-scciclient-0:0.12.3-0.20230308201513.0940a71.el9.src" + }, + "product_reference": "python-scciclient-0:0.12.3-0.20230308201513.0940a71.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-stevedore-0:5.1.0-0.20230608154210.2d99ccc.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-stevedore-0:5.1.0-0.20230608154210.2d99ccc.el9.src" + }, + "product_reference": "python-stevedore-0:5.1.0-0.20230608154210.2d99ccc.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-sushy-0:4.5.0-0.20230719180619.146ed33.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-sushy-0:4.5.0-0.20230719180619.146ed33.el9.src" + }, + "product_reference": "python-sushy-0:4.5.0-0.20230719180619.146ed33.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-sushy-oem-idrac-0:5.0.0-0.20230308202122.da9a0e4.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-sushy-oem-idrac-0:5.0.0-0.20230308202122.da9a0e4.el9.src" + }, + "product_reference": "python-sushy-oem-idrac-0:5.0.0-0.20230308202122.da9a0e4.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-swiftclient-0:4.3.0-0.20230608151934.236c277.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-swiftclient-0:4.3.0-0.20230608151934.236c277.el9.src" + }, + "product_reference": "python-swiftclient-0:4.3.0-0.20230608151934.236c277.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-tenacity-0:6.3.1-1.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-tenacity-0:6.3.1-1.el9.src" + }, + "product_reference": "python-tenacity-0:6.3.1-1.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-tooz-0:4.1.0-0.20230608154038.d5bf20c.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-tooz-0:4.1.0-0.20230608154038.d5bf20c.el9.src" + }, + "product_reference": "python-tooz-0:4.1.0-0.20230608154038.d5bf20c.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-wrapt-0:1.14.1-1.el9.src as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-wrapt-0:1.14.1-1.el9.src" + }, + "product_reference": "python-wrapt-0:1.14.1-1.el9.src", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-wrapt-debugsource-0:1.14.1-1.el9.aarch64 as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-wrapt-debugsource-0:1.14.1-1.el9.aarch64" + }, + "product_reference": "python-wrapt-debugsource-0:1.14.1-1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-wrapt-debugsource-0:1.14.1-1.el9.ppc64le as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-wrapt-debugsource-0:1.14.1-1.el9.ppc64le" + }, + "product_reference": "python-wrapt-debugsource-0:1.14.1-1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-wrapt-debugsource-0:1.14.1-1.el9.s390x as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-wrapt-debugsource-0:1.14.1-1.el9.s390x" + }, + "product_reference": "python-wrapt-debugsource-0:1.14.1-1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-wrapt-debugsource-0:1.14.1-1.el9.x86_64 as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-wrapt-debugsource-0:1.14.1-1.el9.x86_64" + }, + "product_reference": "python-wrapt-debugsource-0:1.14.1-1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-wrapt-doc-0:1.14.1-1.el9.aarch64 as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-wrapt-doc-0:1.14.1-1.el9.aarch64" + }, + "product_reference": "python-wrapt-doc-0:1.14.1-1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-wrapt-doc-0:1.14.1-1.el9.ppc64le as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-wrapt-doc-0:1.14.1-1.el9.ppc64le" + }, + "product_reference": "python-wrapt-doc-0:1.14.1-1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-wrapt-doc-0:1.14.1-1.el9.s390x as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-wrapt-doc-0:1.14.1-1.el9.s390x" + }, + "product_reference": "python-wrapt-doc-0:1.14.1-1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-wrapt-doc-0:1.14.1-1.el9.x86_64 as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python-wrapt-doc-0:1.14.1-1.el9.x86_64" + }, + "product_reference": "python-wrapt-doc-0:1.14.1-1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-automaton-0:3.1.0-0.20230608140652.a4f7631.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-automaton-0:3.1.0-0.20230608140652.a4f7631.el9.noarch" + }, + "product_reference": "python3-automaton-0:3.1.0-0.20230608140652.a4f7631.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-cinderclient-0:9.3.0-0.20230608143053.f7a612e.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-cinderclient-0:9.3.0-0.20230608143053.f7a612e.el9.noarch" + }, + "product_reference": "python3-cinderclient-0:9.3.0-0.20230608143053.f7a612e.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-cliff-0:4.3.0-0.20230608150702.72e81d7.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-cliff-0:4.3.0-0.20230608150702.72e81d7.el9.noarch" + }, + "product_reference": "python3-cliff-0:4.3.0-0.20230608150702.72e81d7.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-cliff-tests-0:4.3.0-0.20230608150702.72e81d7.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-cliff-tests-0:4.3.0-0.20230608150702.72e81d7.el9.noarch" + }, + "product_reference": "python3-cliff-tests-0:4.3.0-0.20230608150702.72e81d7.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-debtcollector-0:2.5.0-0.20230308172820.a6b46c5.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-debtcollector-0:2.5.0-0.20230308172820.a6b46c5.el9.noarch" + }, + "product_reference": "python3-debtcollector-0:2.5.0-0.20230308172820.a6b46c5.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-decorator-0:4.4.2-6.0.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-decorator-0:4.4.2-6.0.el9.noarch" + }, + "product_reference": "python3-decorator-0:4.4.2-6.0.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-dracclient-0:8.0.0-0.20230308200614.9c7499c.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-dracclient-0:8.0.0-0.20230308200614.9c7499c.el9.noarch" + }, + "product_reference": "python3-dracclient-0:8.0.0-0.20230308200614.9c7499c.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-fixtures-0:4.0.1-1.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-fixtures-0:4.0.1-1.el9.noarch" + }, + "product_reference": "python3-fixtures-0:4.0.1-1.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-futurist-0:2.4.1-0.20230308173923.159d752.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-futurist-0:2.4.1-0.20230308173923.159d752.el9.noarch" + }, + "product_reference": "python3-futurist-0:2.4.1-0.20230308173923.159d752.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-glanceclient-1:4.3.0-0.20230608143056.52fb6b2.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-glanceclient-1:4.3.0-0.20230608143056.52fb6b2.el9.noarch" + }, + "product_reference": "python3-glanceclient-1:4.3.0-0.20230608143056.52fb6b2.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-hardware-0:0.30.0-0.20230308190813.f6ff0ed.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-hardware-0:0.30.0-0.20230308190813.f6ff0ed.el9.noarch" + }, + "product_reference": "python3-hardware-0:0.30.0-0.20230308190813.f6ff0ed.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-hardware-detect-0:0.30.0-0.20230308190813.f6ff0ed.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-hardware-detect-0:0.30.0-0.20230308190813.f6ff0ed.el9.noarch" + }, + "product_reference": "python3-hardware-detect-0:0.30.0-0.20230308190813.f6ff0ed.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-ironic-inspector-tests-0:11.5.0-0.20230706175125.193aa0d.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-ironic-inspector-tests-0:11.5.0-0.20230706175125.193aa0d.el9.noarch" + }, + "product_reference": "python3-ironic-inspector-tests-0:11.5.0-0.20230706175125.193aa0d.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-ironic-lib-0:5.4.1-0.20230706172632.25d8671.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-ironic-lib-0:5.4.1-0.20230706172632.25d8671.el9.noarch" + }, + "product_reference": "python3-ironic-lib-0:5.4.1-0.20230706172632.25d8671.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-ironic-prometheus-exporter-0:4.1.1-0.20230614150617.7b35627.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-ironic-prometheus-exporter-0:4.1.1-0.20230614150617.7b35627.el9.noarch" + }, + "product_reference": "python3-ironic-prometheus-exporter-0:4.1.1-0.20230614150617.7b35627.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-ironic-python-agent-0:9.5.0-0.20230728140546.fce0b8c.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-ironic-python-agent-0:9.5.0-0.20230728140546.fce0b8c.el9.noarch" + }, + "product_reference": "python3-ironic-python-agent-0:9.5.0-0.20230728140546.fce0b8c.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-ironic-python-agent-tests-0:9.5.0-0.20230728140546.fce0b8c.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-ironic-python-agent-tests-0:9.5.0-0.20230728140546.fce0b8c.el9.noarch" + }, + "product_reference": "python3-ironic-python-agent-tests-0:9.5.0-0.20230728140546.fce0b8c.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-ironic-tests-1:21.5.0-0.20231002130534.0df5961.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-ironic-tests-1:21.5.0-0.20231002130534.0df5961.el9.noarch" + }, + "product_reference": "python3-ironic-tests-1:21.5.0-0.20231002130534.0df5961.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-keystoneauth1-0:5.2.0-0.20230608152518.2e40bbf.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-keystoneauth1-0:5.2.0-0.20230608152518.2e40bbf.el9.noarch" + }, + "product_reference": "python3-keystoneauth1-0:5.2.0-0.20230608152518.2e40bbf.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-keystoneclient-1:5.1.0-0.20230608141554.4763cd8.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-keystoneclient-1:5.1.0-0.20230608141554.4763cd8.el9.noarch" + }, + "product_reference": "python3-keystoneclient-1:5.1.0-0.20230608141554.4763cd8.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-keystoneclient-tests-1:5.1.0-0.20230608141554.4763cd8.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-keystoneclient-tests-1:5.1.0-0.20230608141554.4763cd8.el9.noarch" + }, + "product_reference": "python3-keystoneclient-tests-1:5.1.0-0.20230608141554.4763cd8.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-keystonemiddleware-0:10.3.0-0.20230608151410.92cdf8a.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-keystonemiddleware-0:10.3.0-0.20230608151410.92cdf8a.el9.noarch" + }, + "product_reference": "python3-keystonemiddleware-0:10.3.0-0.20230608151410.92cdf8a.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-openstacksdk-0:1.2.0-0.20230608155226.b7ff031.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-openstacksdk-0:1.2.0-0.20230608155226.b7ff031.el9.noarch" + }, + "product_reference": "python3-openstacksdk-0:1.2.0-0.20230608155226.b7ff031.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-openstacksdk-tests-0:1.2.0-0.20230608155226.b7ff031.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-openstacksdk-tests-0:1.2.0-0.20230608155226.b7ff031.el9.noarch" + }, + "product_reference": "python3-openstacksdk-tests-0:1.2.0-0.20230608155226.b7ff031.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-os-service-types-0:1.7.0-0.20230308170555.0b2f473.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-os-service-types-0:1.7.0-0.20230308170555.0b2f473.el9.noarch" + }, + "product_reference": "python3-os-service-types-0:1.7.0-0.20230308170555.0b2f473.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-os-traits-0:3.0.0-0.20230608152745.cff125c.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-os-traits-0:3.0.0-0.20230608152745.cff125c.el9.noarch" + }, + "product_reference": "python3-os-traits-0:3.0.0-0.20230608152745.cff125c.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-os-traits-tests-0:3.0.0-0.20230608152745.cff125c.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-os-traits-tests-0:3.0.0-0.20230608152745.cff125c.el9.noarch" + }, + "product_reference": "python3-os-traits-tests-0:3.0.0-0.20230608152745.cff125c.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-osc-lib-0:2.8.0-0.20230608151456.db9cdc9.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-osc-lib-0:2.8.0-0.20230608151456.db9cdc9.el9.noarch" + }, + "product_reference": "python3-osc-lib-0:2.8.0-0.20230608151456.db9cdc9.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-osc-lib-tests-0:2.8.0-0.20230608151456.db9cdc9.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-osc-lib-tests-0:2.8.0-0.20230608151456.db9cdc9.el9.noarch" + }, + "product_reference": "python3-osc-lib-tests-0:2.8.0-0.20230608151456.db9cdc9.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-cache-0:3.4.0-0.20230608153448.a720016.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-cache-0:3.4.0-0.20230608153448.a720016.el9.noarch" + }, + "product_reference": "python3-oslo-cache-0:3.4.0-0.20230608153448.a720016.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-cache-tests-0:3.4.0-0.20230608153448.a720016.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-cache-tests-0:3.4.0-0.20230608153448.a720016.el9.noarch" + }, + "product_reference": "python3-oslo-cache-tests-0:3.4.0-0.20230608153448.a720016.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-concurrency-0:5.1.1-0.20230706190204.0af5942.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-concurrency-0:5.1.1-0.20230706190204.0af5942.el9.noarch" + }, + "product_reference": "python3-oslo-concurrency-0:5.1.1-0.20230706190204.0af5942.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-concurrency-tests-0:5.1.1-0.20230706190204.0af5942.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-concurrency-tests-0:5.1.1-0.20230706190204.0af5942.el9.noarch" + }, + "product_reference": "python3-oslo-concurrency-tests-0:5.1.1-0.20230706190204.0af5942.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-config-2:9.1.1-0.20230608145954.515daab.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-config-2:9.1.1-0.20230608145954.515daab.el9.noarch" + }, + "product_reference": "python3-oslo-config-2:9.1.1-0.20230608145954.515daab.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-context-0:5.1.1-0.20230608143931.7696282.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-context-0:5.1.1-0.20230608143931.7696282.el9.noarch" + }, + "product_reference": "python3-oslo-context-0:5.1.1-0.20230608143931.7696282.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-context-tests-0:5.1.1-0.20230608143931.7696282.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-context-tests-0:5.1.1-0.20230608143931.7696282.el9.noarch" + }, + "product_reference": "python3-oslo-context-tests-0:5.1.1-0.20230608143931.7696282.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-db-0:12.3.1-0.20230608142355.b689b63.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-db-0:12.3.1-0.20230608142355.b689b63.el9.noarch" + }, + "product_reference": "python3-oslo-db-0:12.3.1-0.20230608142355.b689b63.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-db-tests-0:12.3.1-0.20230608142355.b689b63.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-db-tests-0:12.3.1-0.20230608142355.b689b63.el9.noarch" + }, + "product_reference": "python3-oslo-db-tests-0:12.3.1-0.20230608142355.b689b63.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-i18n-0:6.0.0-0.20230608140652.03605c2.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-i18n-0:6.0.0-0.20230608140652.03605c2.el9.noarch" + }, + "product_reference": "python3-oslo-i18n-0:6.0.0-0.20230608140652.03605c2.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-log-0:5.2.0-0.20230608150750.16a8a42.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-log-0:5.2.0-0.20230608150750.16a8a42.el9.noarch" + }, + "product_reference": "python3-oslo-log-0:5.2.0-0.20230608150750.16a8a42.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-log-tests-0:5.2.0-0.20230608150750.16a8a42.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-log-tests-0:5.2.0-0.20230608150750.16a8a42.el9.noarch" + }, + "product_reference": "python3-oslo-log-tests-0:5.2.0-0.20230608150750.16a8a42.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-messaging-0:14.3.1-0.20230608152013.0602d1a.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-messaging-0:14.3.1-0.20230608152013.0602d1a.el9.noarch" + }, + "product_reference": "python3-oslo-messaging-0:14.3.1-0.20230608152013.0602d1a.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-messaging-tests-0:14.3.1-0.20230608152013.0602d1a.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-messaging-tests-0:14.3.1-0.20230608152013.0602d1a.el9.noarch" + }, + "product_reference": "python3-oslo-messaging-tests-0:14.3.1-0.20230608152013.0602d1a.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-middleware-0:5.1.1-0.20230608145931.7725ac9.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-middleware-0:5.1.1-0.20230608145931.7725ac9.el9.noarch" + }, + "product_reference": "python3-oslo-middleware-0:5.1.1-0.20230608145931.7725ac9.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-middleware-tests-0:5.1.1-0.20230608145931.7725ac9.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-middleware-tests-0:5.1.1-0.20230608145931.7725ac9.el9.noarch" + }, + "product_reference": "python3-oslo-middleware-tests-0:5.1.1-0.20230608145931.7725ac9.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-policy-0:4.2.0-0.20230608153320.93129eb.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-policy-0:4.2.0-0.20230608153320.93129eb.el9.noarch" + }, + "product_reference": "python3-oslo-policy-0:4.2.0-0.20230608153320.93129eb.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-policy-tests-0:4.2.0-0.20230608153320.93129eb.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-policy-tests-0:4.2.0-0.20230608153320.93129eb.el9.noarch" + }, + "product_reference": "python3-oslo-policy-tests-0:4.2.0-0.20230608153320.93129eb.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-rootwrap-0:7.0.1-0.20230608144658.b72372b.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-rootwrap-0:7.0.1-0.20230608144658.b72372b.el9.noarch" + }, + "product_reference": "python3-oslo-rootwrap-0:7.0.1-0.20230608144658.b72372b.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-rootwrap-tests-0:7.0.1-0.20230608144658.b72372b.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-rootwrap-tests-0:7.0.1-0.20230608144658.b72372b.el9.noarch" + }, + "product_reference": "python3-oslo-rootwrap-tests-0:7.0.1-0.20230608144658.b72372b.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-serialization-0:5.1.1-0.20230608144505.b4be3a4.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-serialization-0:5.1.1-0.20230608144505.b4be3a4.el9.noarch" + }, + "product_reference": "python3-oslo-serialization-0:5.1.1-0.20230608144505.b4be3a4.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-serialization-tests-0:5.1.1-0.20230608144505.b4be3a4.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-serialization-tests-0:5.1.1-0.20230608144505.b4be3a4.el9.noarch" + }, + "product_reference": "python3-oslo-serialization-tests-0:5.1.1-0.20230608144505.b4be3a4.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-service-0:3.1.1-0.20230608145222.b3ba591.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-service-0:3.1.1-0.20230608145222.b3ba591.el9.noarch" + }, + "product_reference": "python3-oslo-service-0:3.1.1-0.20230608145222.b3ba591.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-service-tests-0:3.1.1-0.20230608145222.b3ba591.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-service-tests-0:3.1.1-0.20230608145222.b3ba591.el9.noarch" + }, + "product_reference": "python3-oslo-service-tests-0:3.1.1-0.20230608145222.b3ba591.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-upgradecheck-0:2.1.1-0.20230608143829.eeedfc9.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-upgradecheck-0:2.1.1-0.20230608143829.eeedfc9.el9.noarch" + }, + "product_reference": "python3-oslo-upgradecheck-0:2.1.1-0.20230608143829.eeedfc9.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-utils-0:6.1.0-0.20230608142355.d49d594.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-utils-0:6.1.0-0.20230608142355.d49d594.el9.noarch" + }, + "product_reference": "python3-oslo-utils-0:6.1.0-0.20230608142355.d49d594.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-utils-tests-0:6.1.0-0.20230608142355.d49d594.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-utils-tests-0:6.1.0-0.20230608142355.d49d594.el9.noarch" + }, + "product_reference": "python3-oslo-utils-tests-0:6.1.0-0.20230608142355.d49d594.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-versionedobjects-0:3.1.0-0.20230608141554.b4ea834.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-versionedobjects-0:3.1.0-0.20230608141554.b4ea834.el9.noarch" + }, + "product_reference": "python3-oslo-versionedobjects-0:3.1.0-0.20230608141554.b4ea834.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-oslo-versionedobjects-tests-0:3.1.0-0.20230608141554.b4ea834.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-oslo-versionedobjects-tests-0:3.1.0-0.20230608141554.b4ea834.el9.noarch" + }, + "product_reference": "python3-oslo-versionedobjects-tests-0:3.1.0-0.20230608141554.b4ea834.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-osprofiler-0:3.4.3-0.20230308173821.3286301.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-osprofiler-0:3.4.3-0.20230308173821.3286301.el9.noarch" + }, + "product_reference": "python3-osprofiler-0:3.4.3-0.20230308173821.3286301.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-pbr-0:5.11.1-0.1.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-pbr-0:5.11.1-0.1.el9.noarch" + }, + "product_reference": "python3-pbr-0:5.11.1-0.1.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-proliantutils-0:2.14.1-0.20230608154738.3de2844.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-proliantutils-0:2.14.1-0.20230608154738.3de2844.el9.noarch" + }, + "product_reference": "python3-proliantutils-0:2.14.1-0.20230608154738.3de2844.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-pycadf-0:3.1.1-0.20230308171749.4179996.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-pycadf-0:3.1.1-0.20230308171749.4179996.el9.noarch" + }, + "product_reference": "python3-pycadf-0:3.1.1-0.20230308171749.4179996.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-requestsexceptions-0:1.4.0-0.20230308170555.d7ac0ff.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-requestsexceptions-0:1.4.0-0.20230308170555.d7ac0ff.el9.noarch" + }, + "product_reference": "python3-requestsexceptions-0:1.4.0-0.20230308170555.d7ac0ff.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-scciclient-0:0.12.3-0.20230308201513.0940a71.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-scciclient-0:0.12.3-0.20230308201513.0940a71.el9.noarch" + }, + "product_reference": "python3-scciclient-0:0.12.3-0.20230308201513.0940a71.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-stevedore-0:5.1.0-0.20230608154210.2d99ccc.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-stevedore-0:5.1.0-0.20230608154210.2d99ccc.el9.noarch" + }, + "product_reference": "python3-stevedore-0:5.1.0-0.20230608154210.2d99ccc.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-sushy-0:4.5.0-0.20230719180619.146ed33.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-sushy-0:4.5.0-0.20230719180619.146ed33.el9.noarch" + }, + "product_reference": "python3-sushy-0:4.5.0-0.20230719180619.146ed33.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-sushy-oem-idrac-0:5.0.0-0.20230308202122.da9a0e4.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-sushy-oem-idrac-0:5.0.0-0.20230308202122.da9a0e4.el9.noarch" + }, + "product_reference": "python3-sushy-oem-idrac-0:5.0.0-0.20230308202122.da9a0e4.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-sushy-oem-idrac-tests-0:5.0.0-0.20230308202122.da9a0e4.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-sushy-oem-idrac-tests-0:5.0.0-0.20230308202122.da9a0e4.el9.noarch" + }, + "product_reference": "python3-sushy-oem-idrac-tests-0:5.0.0-0.20230308202122.da9a0e4.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-sushy-tests-0:4.5.0-0.20230719180619.146ed33.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-sushy-tests-0:4.5.0-0.20230719180619.146ed33.el9.noarch" + }, + "product_reference": "python3-sushy-tests-0:4.5.0-0.20230719180619.146ed33.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-swiftclient-0:4.3.0-0.20230608151934.236c277.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-swiftclient-0:4.3.0-0.20230608151934.236c277.el9.noarch" + }, + "product_reference": "python3-swiftclient-0:4.3.0-0.20230608151934.236c277.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-tenacity-0:6.3.1-1.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-tenacity-0:6.3.1-1.el9.noarch" + }, + "product_reference": "python3-tenacity-0:6.3.1-1.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-tooz-0:4.1.0-0.20230608154038.d5bf20c.el9.noarch as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-tooz-0:4.1.0-0.20230608154038.d5bf20c.el9.noarch" + }, + "product_reference": "python3-tooz-0:4.1.0-0.20230608154038.d5bf20c.el9.noarch", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-wrapt-0:1.14.1-1.el9.aarch64 as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-wrapt-0:1.14.1-1.el9.aarch64" + }, + "product_reference": "python3-wrapt-0:1.14.1-1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-wrapt-0:1.14.1-1.el9.ppc64le as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-wrapt-0:1.14.1-1.el9.ppc64le" + }, + "product_reference": "python3-wrapt-0:1.14.1-1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-wrapt-0:1.14.1-1.el9.s390x as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-wrapt-0:1.14.1-1.el9.s390x" + }, + "product_reference": "python3-wrapt-0:1.14.1-1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-wrapt-0:1.14.1-1.el9.x86_64 as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-wrapt-0:1.14.1-1.el9.x86_64" + }, + "product_reference": "python3-wrapt-0:1.14.1-1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-wrapt-debuginfo-0:1.14.1-1.el9.aarch64 as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-wrapt-debuginfo-0:1.14.1-1.el9.aarch64" + }, + "product_reference": "python3-wrapt-debuginfo-0:1.14.1-1.el9.aarch64", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-wrapt-debuginfo-0:1.14.1-1.el9.ppc64le as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-wrapt-debuginfo-0:1.14.1-1.el9.ppc64le" + }, + "product_reference": "python3-wrapt-debuginfo-0:1.14.1-1.el9.ppc64le", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-wrapt-debuginfo-0:1.14.1-1.el9.s390x as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-wrapt-debuginfo-0:1.14.1-1.el9.s390x" + }, + "product_reference": "python3-wrapt-debuginfo-0:1.14.1-1.el9.s390x", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-wrapt-debuginfo-0:1.14.1-1.el9.x86_64 as a component of Ironic content for Red Hat OpenShift Container Platform 4.14", + "product_id": "9Base-RHOSE-IRONIC-4.14:python3-wrapt-debuginfo-0:1.14.1-1.el9.x86_64" + }, + "product_reference": "python3-wrapt-debuginfo-0:1.14.1-1.el9.x86_64", + "relates_to_product_reference": "9Base-RHOSE-IRONIC-4.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skupper-cli-0:1.4.3-4.el9.src as a component of 9Base-Service-Interconnect-1", + "product_id": "9Base-Service-Interconnect-1:skupper-cli-0:1.4.3-4.el9.src" + }, + "product_reference": "skupper-cli-0:1.4.3-4.el9.src", + "relates_to_product_reference": "9Base-Service-Interconnect-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skupper-cli-0:1.4.3-4.el9.x86_64 as a component of 9Base-Service-Interconnect-1", + "product_id": "9Base-Service-Interconnect-1:skupper-cli-0:1.4.3-4.el9.x86_64" + }, + "product_reference": "skupper-cli-0:1.4.3-4.el9.x86_64", + "relates_to_product_reference": "9Base-Service-Interconnect-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skupper-router-0:2.4.3-1.el9.src as a component of 9Base-Service-Interconnect-1", + "product_id": "9Base-Service-Interconnect-1:skupper-router-0:2.4.3-1.el9.src" + }, + "product_reference": "skupper-router-0:2.4.3-1.el9.src", + "relates_to_product_reference": "9Base-Service-Interconnect-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skupper-router-0:2.4.3-1.el9.x86_64 as a component of 9Base-Service-Interconnect-1", + "product_id": "9Base-Service-Interconnect-1:skupper-router-0:2.4.3-1.el9.x86_64" + }, + "product_reference": "skupper-router-0:2.4.3-1.el9.x86_64", + "relates_to_product_reference": "9Base-Service-Interconnect-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skupper-router-common-0:2.4.3-1.el9.noarch as a component of 9Base-Service-Interconnect-1", + "product_id": "9Base-Service-Interconnect-1:skupper-router-common-0:2.4.3-1.el9.noarch" + }, + "product_reference": "skupper-router-common-0:2.4.3-1.el9.noarch", + "relates_to_product_reference": "9Base-Service-Interconnect-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skupper-router-debuginfo-0:2.4.3-1.el9.x86_64 as a component of 9Base-Service-Interconnect-1", + "product_id": "9Base-Service-Interconnect-1:skupper-router-debuginfo-0:2.4.3-1.el9.x86_64" + }, + "product_reference": "skupper-router-debuginfo-0:2.4.3-1.el9.x86_64", + "relates_to_product_reference": "9Base-Service-Interconnect-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skupper-router-debugsource-0:2.4.3-1.el9.x86_64 as a component of 9Base-Service-Interconnect-1", + "product_id": "9Base-Service-Interconnect-1:skupper-router-debugsource-0:2.4.3-1.el9.x86_64" + }, + "product_reference": "skupper-router-debugsource-0:2.4.3-1.el9.x86_64", + "relates_to_product_reference": "9Base-Service-Interconnect-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skupper-router-docs-0:2.4.3-1.el9.noarch as a component of 9Base-Service-Interconnect-1", + "product_id": "9Base-Service-Interconnect-1:skupper-router-docs-0:2.4.3-1.el9.noarch" + }, + "product_reference": "skupper-router-docs-0:2.4.3-1.el9.noarch", + "relates_to_product_reference": "9Base-Service-Interconnect-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skupper-router-tools-0:2.4.3-1.el9.noarch as a component of 9Base-Service-Interconnect-1", + "product_id": "9Base-Service-Interconnect-1:skupper-router-tools-0:2.4.3-1.el9.noarch" + }, + "product_reference": "skupper-router-tools-0:2.4.3-1.el9.noarch", + "relates_to_product_reference": "9Base-Service-Interconnect-1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman_ygg_worker-0:0.2.2-1.el9sat.aarch64 as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:foreman_ygg_worker-0:0.2.2-1.el9sat.aarch64" + }, + "product_reference": "foreman_ygg_worker-0:0.2.2-1.el9sat.aarch64", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman_ygg_worker-0:0.2.2-1.el9sat.ppc64le as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:foreman_ygg_worker-0:0.2.2-1.el9sat.ppc64le" + }, + "product_reference": "foreman_ygg_worker-0:0.2.2-1.el9sat.ppc64le", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman_ygg_worker-0:0.2.2-1.el9sat.s390x as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:foreman_ygg_worker-0:0.2.2-1.el9sat.s390x" + }, + "product_reference": "foreman_ygg_worker-0:0.2.2-1.el9sat.s390x", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman_ygg_worker-0:0.2.2-1.el9sat.src as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:foreman_ygg_worker-0:0.2.2-1.el9sat.src" + }, + "product_reference": "foreman_ygg_worker-0:0.2.2-1.el9sat.src", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman_ygg_worker-0:0.2.2-1.el9sat.x86_64 as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:foreman_ygg_worker-0:0.2.2-1.el9sat.x86_64" + }, + "product_reference": "foreman_ygg_worker-0:0.2.2-1.el9sat.x86_64", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el9sat.src as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:puppet-agent-0:7.26.0-3.el9sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el9sat.src", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el9sat.x86_64 as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:puppet-agent-0:7.26.0-3.el9sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el9sat.x86_64", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-qpid-proton-0:0.37.0-2.el9.aarch64 as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:python3-qpid-proton-0:0.37.0-2.el9.aarch64" + }, + "product_reference": "python3-qpid-proton-0:0.37.0-2.el9.aarch64", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-qpid-proton-0:0.37.0-2.el9.ppc64le as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:python3-qpid-proton-0:0.37.0-2.el9.ppc64le" + }, + "product_reference": "python3-qpid-proton-0:0.37.0-2.el9.ppc64le", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-qpid-proton-0:0.37.0-2.el9.s390x as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:python3-qpid-proton-0:0.37.0-2.el9.s390x" + }, + "product_reference": "python3-qpid-proton-0:0.37.0-2.el9.s390x", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-qpid-proton-0:0.37.0-2.el9.x86_64 as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:python3-qpid-proton-0:0.37.0-2.el9.x86_64" + }, + "product_reference": "python3-qpid-proton-0:0.37.0-2.el9.x86_64", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-qpid-proton-debuginfo-0:0.37.0-2.el9.aarch64 as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:python3-qpid-proton-debuginfo-0:0.37.0-2.el9.aarch64" + }, + "product_reference": "python3-qpid-proton-debuginfo-0:0.37.0-2.el9.aarch64", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-qpid-proton-debuginfo-0:0.37.0-2.el9.ppc64le as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:python3-qpid-proton-debuginfo-0:0.37.0-2.el9.ppc64le" + }, + "product_reference": "python3-qpid-proton-debuginfo-0:0.37.0-2.el9.ppc64le", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-qpid-proton-debuginfo-0:0.37.0-2.el9.s390x as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:python3-qpid-proton-debuginfo-0:0.37.0-2.el9.s390x" + }, + "product_reference": "python3-qpid-proton-debuginfo-0:0.37.0-2.el9.s390x", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-qpid-proton-debuginfo-0:0.37.0-2.el9.x86_64 as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:python3-qpid-proton-debuginfo-0:0.37.0-2.el9.x86_64" + }, + "product_reference": "python3-qpid-proton-debuginfo-0:0.37.0-2.el9.x86_64", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-0:0.37.0-2.el9.src as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:qpid-proton-0:0.37.0-2.el9.src" + }, + "product_reference": "qpid-proton-0:0.37.0-2.el9.src", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-c-0:0.37.0-2.el9.aarch64 as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:qpid-proton-c-0:0.37.0-2.el9.aarch64" + }, + "product_reference": "qpid-proton-c-0:0.37.0-2.el9.aarch64", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-c-0:0.37.0-2.el9.ppc64le as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:qpid-proton-c-0:0.37.0-2.el9.ppc64le" + }, + "product_reference": "qpid-proton-c-0:0.37.0-2.el9.ppc64le", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-c-0:0.37.0-2.el9.s390x as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:qpid-proton-c-0:0.37.0-2.el9.s390x" + }, + "product_reference": "qpid-proton-c-0:0.37.0-2.el9.s390x", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-c-0:0.37.0-2.el9.x86_64 as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:qpid-proton-c-0:0.37.0-2.el9.x86_64" + }, + "product_reference": "qpid-proton-c-0:0.37.0-2.el9.x86_64", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-c-debuginfo-0:0.37.0-2.el9.aarch64 as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:qpid-proton-c-debuginfo-0:0.37.0-2.el9.aarch64" + }, + "product_reference": "qpid-proton-c-debuginfo-0:0.37.0-2.el9.aarch64", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-c-debuginfo-0:0.37.0-2.el9.ppc64le as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:qpid-proton-c-debuginfo-0:0.37.0-2.el9.ppc64le" + }, + "product_reference": "qpid-proton-c-debuginfo-0:0.37.0-2.el9.ppc64le", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-c-debuginfo-0:0.37.0-2.el9.s390x as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:qpid-proton-c-debuginfo-0:0.37.0-2.el9.s390x" + }, + "product_reference": "qpid-proton-c-debuginfo-0:0.37.0-2.el9.s390x", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-c-debuginfo-0:0.37.0-2.el9.x86_64 as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:qpid-proton-c-debuginfo-0:0.37.0-2.el9.x86_64" + }, + "product_reference": "qpid-proton-c-debuginfo-0:0.37.0-2.el9.x86_64", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el9.aarch64 as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:qpid-proton-cpp-debuginfo-0:0.37.0-2.el9.aarch64" + }, + "product_reference": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el9.aarch64", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el9.ppc64le as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:qpid-proton-cpp-debuginfo-0:0.37.0-2.el9.ppc64le" + }, + "product_reference": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el9.ppc64le", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el9.s390x as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:qpid-proton-cpp-debuginfo-0:0.37.0-2.el9.s390x" + }, + "product_reference": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el9.s390x", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el9.x86_64 as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:qpid-proton-cpp-debuginfo-0:0.37.0-2.el9.x86_64" + }, + "product_reference": "qpid-proton-cpp-debuginfo-0:0.37.0-2.el9.x86_64", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-debuginfo-0:0.37.0-2.el9.aarch64 as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:qpid-proton-debuginfo-0:0.37.0-2.el9.aarch64" + }, + "product_reference": "qpid-proton-debuginfo-0:0.37.0-2.el9.aarch64", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-debuginfo-0:0.37.0-2.el9.ppc64le as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:qpid-proton-debuginfo-0:0.37.0-2.el9.ppc64le" + }, + "product_reference": "qpid-proton-debuginfo-0:0.37.0-2.el9.ppc64le", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-debuginfo-0:0.37.0-2.el9.s390x as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:qpid-proton-debuginfo-0:0.37.0-2.el9.s390x" + }, + "product_reference": "qpid-proton-debuginfo-0:0.37.0-2.el9.s390x", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-debuginfo-0:0.37.0-2.el9.x86_64 as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:qpid-proton-debuginfo-0:0.37.0-2.el9.x86_64" + }, + "product_reference": "qpid-proton-debuginfo-0:0.37.0-2.el9.x86_64", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-debugsource-0:0.37.0-2.el9.aarch64 as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:qpid-proton-debugsource-0:0.37.0-2.el9.aarch64" + }, + "product_reference": "qpid-proton-debugsource-0:0.37.0-2.el9.aarch64", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-debugsource-0:0.37.0-2.el9.ppc64le as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:qpid-proton-debugsource-0:0.37.0-2.el9.ppc64le" + }, + "product_reference": "qpid-proton-debugsource-0:0.37.0-2.el9.ppc64le", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-debugsource-0:0.37.0-2.el9.s390x as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:qpid-proton-debugsource-0:0.37.0-2.el9.s390x" + }, + "product_reference": "qpid-proton-debugsource-0:0.37.0-2.el9.s390x", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-debugsource-0:0.37.0-2.el9.x86_64 as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:qpid-proton-debugsource-0:0.37.0-2.el9.x86_64" + }, + "product_reference": "qpid-proton-debugsource-0:0.37.0-2.el9.x86_64", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el9.aarch64 as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:rubygem-qpid_proton-debuginfo-0:0.37.0-2.el9.aarch64" + }, + "product_reference": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el9.aarch64", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el9.ppc64le as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:rubygem-qpid_proton-debuginfo-0:0.37.0-2.el9.ppc64le" + }, + "product_reference": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el9.ppc64le", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el9.s390x as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:rubygem-qpid_proton-debuginfo-0:0.37.0-2.el9.s390x" + }, + "product_reference": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el9.s390x", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el9.x86_64 as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:rubygem-qpid_proton-debuginfo-0:0.37.0-2.el9.x86_64" + }, + "product_reference": "rubygem-qpid_proton-debuginfo-0:0.37.0-2.el9.x86_64", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-0:0.2.3-1.el9sat.aarch64 as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:yggdrasil-0:0.2.3-1.el9sat.aarch64" + }, + "product_reference": "yggdrasil-0:0.2.3-1.el9sat.aarch64", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-0:0.2.3-1.el9sat.ppc64le as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:yggdrasil-0:0.2.3-1.el9sat.ppc64le" + }, + "product_reference": "yggdrasil-0:0.2.3-1.el9sat.ppc64le", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-0:0.2.3-1.el9sat.s390x as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:yggdrasil-0:0.2.3-1.el9sat.s390x" + }, + "product_reference": "yggdrasil-0:0.2.3-1.el9sat.s390x", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-0:0.2.3-1.el9sat.src as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:yggdrasil-0:0.2.3-1.el9sat.src" + }, + "product_reference": "yggdrasil-0:0.2.3-1.el9sat.src", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-0:0.2.3-1.el9sat.x86_64 as a component of Satellite Client 6 for RHEL 9", + "product_id": "9Base-satellite-client-6:yggdrasil-0:0.2.3-1.el9sat.x86_64" + }, + "product_reference": "yggdrasil-0:0.2.3-1.el9sat.x86_64", + "relates_to_product_reference": "9Base-satellite-client-6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.1)", + "product_id": "AppStream-8.1.0.Z.E4S:varnish-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.ppc64le" + }, + "product_reference": "varnish-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.ppc64le", + "relates_to_product_reference": "AppStream-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.src as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.1)", + "product_id": "AppStream-8.1.0.Z.E4S:varnish-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.src" + }, + "product_reference": "varnish-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.src", + "relates_to_product_reference": "AppStream-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.1)", + "product_id": "AppStream-8.1.0.Z.E4S:varnish-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.x86_64" + }, + "product_reference": "varnish-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.x86_64", + "relates_to_product_reference": "AppStream-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.1)", + "product_id": "AppStream-8.1.0.Z.E4S:varnish-devel-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.ppc64le" + }, + "product_reference": "varnish-devel-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.ppc64le", + "relates_to_product_reference": "AppStream-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.1)", + "product_id": "AppStream-8.1.0.Z.E4S:varnish-devel-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.x86_64" + }, + "product_reference": "varnish-devel-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.x86_64", + "relates_to_product_reference": "AppStream-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.1)", + "product_id": "AppStream-8.1.0.Z.E4S:varnish-docs-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.ppc64le" + }, + "product_reference": "varnish-docs-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.ppc64le", + "relates_to_product_reference": "AppStream-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.1)", + "product_id": "AppStream-8.1.0.Z.E4S:varnish-docs-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.x86_64" + }, + "product_reference": "varnish-docs-0:6.0.2-2.module+el8.1.0+20476+646a44ec.3.x86_64", + "relates_to_product_reference": "AppStream-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.1)", + "product_id": "AppStream-8.1.0.Z.E4S:varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le" + }, + "product_reference": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le", + "relates_to_product_reference": "AppStream-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.src as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.1)", + "product_id": "AppStream-8.1.0.Z.E4S:varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.src" + }, + "product_reference": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.src", + "relates_to_product_reference": "AppStream-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.1)", + "product_id": "AppStream-8.1.0.Z.E4S:varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64" + }, + "product_reference": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "relates_to_product_reference": "AppStream-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.1)", + "product_id": "AppStream-8.1.0.Z.E4S:varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le" + }, + "product_reference": "varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le", + "relates_to_product_reference": "AppStream-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.1)", + "product_id": "AppStream-8.1.0.Z.E4S:varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64" + }, + "product_reference": "varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "relates_to_product_reference": "AppStream-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.1)", + "product_id": "AppStream-8.1.0.Z.E4S:varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le" + }, + "product_reference": "varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le", + "relates_to_product_reference": "AppStream-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.1)", + "product_id": "AppStream-8.1.0.Z.E4S:varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64" + }, + "product_reference": "varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "relates_to_product_reference": "AppStream-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.src as a component of Red Hat Enterprise Linux AppStream AUS (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.AUS:varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.src" + }, + "product_reference": "varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.src", + "relates_to_product_reference": "AppStream-8.2.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64 as a component of Red Hat Enterprise Linux AppStream AUS (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.AUS:varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64" + }, + "product_reference": "varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64", + "relates_to_product_reference": "AppStream-8.2.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64 as a component of Red Hat Enterprise Linux AppStream AUS (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.AUS:varnish-devel-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64" + }, + "product_reference": "varnish-devel-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64", + "relates_to_product_reference": "AppStream-8.2.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64 as a component of Red Hat Enterprise Linux AppStream AUS (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.AUS:varnish-docs-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64" + }, + "product_reference": "varnish-docs-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64", + "relates_to_product_reference": "AppStream-8.2.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.src as a component of Red Hat Enterprise Linux AppStream AUS (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.AUS:varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.src" + }, + "product_reference": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.src", + "relates_to_product_reference": "AppStream-8.2.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64 as a component of Red Hat Enterprise Linux AppStream AUS (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.AUS:varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64" + }, + "product_reference": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "relates_to_product_reference": "AppStream-8.2.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64 as a component of Red Hat Enterprise Linux AppStream AUS (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.AUS:varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64" + }, + "product_reference": "varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "relates_to_product_reference": "AppStream-8.2.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64 as a component of Red Hat Enterprise Linux AppStream AUS (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.AUS:varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64" + }, + "product_reference": "varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "relates_to_product_reference": "AppStream-8.2.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.E4S:varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.ppc64le" + }, + "product_reference": "varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.ppc64le", + "relates_to_product_reference": "AppStream-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.src as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.E4S:varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.src" + }, + "product_reference": "varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.src", + "relates_to_product_reference": "AppStream-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.E4S:varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64" + }, + "product_reference": "varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64", + "relates_to_product_reference": "AppStream-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.E4S:varnish-devel-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.ppc64le" + }, + "product_reference": "varnish-devel-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.ppc64le", + "relates_to_product_reference": "AppStream-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.E4S:varnish-devel-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64" + }, + "product_reference": "varnish-devel-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64", + "relates_to_product_reference": "AppStream-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.E4S:varnish-docs-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.ppc64le" + }, + "product_reference": "varnish-docs-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.ppc64le", + "relates_to_product_reference": "AppStream-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.E4S:varnish-docs-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64" + }, + "product_reference": "varnish-docs-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64", + "relates_to_product_reference": "AppStream-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.E4S:varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le" + }, + "product_reference": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le", + "relates_to_product_reference": "AppStream-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.src as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.E4S:varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.src" + }, + "product_reference": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.src", + "relates_to_product_reference": "AppStream-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.E4S:varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64" + }, + "product_reference": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "relates_to_product_reference": "AppStream-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.E4S:varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le" + }, + "product_reference": "varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le", + "relates_to_product_reference": "AppStream-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.E4S:varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64" + }, + "product_reference": "varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "relates_to_product_reference": "AppStream-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.E4S:varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le" + }, + "product_reference": "varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.ppc64le", + "relates_to_product_reference": "AppStream-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.E4S:varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64" + }, + "product_reference": "varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "relates_to_product_reference": "AppStream-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.src as a component of Red Hat Enterprise Linux AppStream TUS (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.TUS:varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.src" + }, + "product_reference": "varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.src", + "relates_to_product_reference": "AppStream-8.2.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64 as a component of Red Hat Enterprise Linux AppStream TUS (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.TUS:varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64" + }, + "product_reference": "varnish-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64", + "relates_to_product_reference": "AppStream-8.2.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64 as a component of Red Hat Enterprise Linux AppStream TUS (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.TUS:varnish-devel-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64" + }, + "product_reference": "varnish-devel-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64", + "relates_to_product_reference": "AppStream-8.2.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64 as a component of Red Hat Enterprise Linux AppStream TUS (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.TUS:varnish-docs-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64" + }, + "product_reference": "varnish-docs-0:6.0.2-2.module+el8.2.0+20470+5fdd0c40.3.x86_64", + "relates_to_product_reference": "AppStream-8.2.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.src as a component of Red Hat Enterprise Linux AppStream TUS (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.TUS:varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.src" + }, + "product_reference": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.src", + "relates_to_product_reference": "AppStream-8.2.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64 as a component of Red Hat Enterprise Linux AppStream TUS (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.TUS:varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64" + }, + "product_reference": "varnish-modules-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "relates_to_product_reference": "AppStream-8.2.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64 as a component of Red Hat Enterprise Linux AppStream TUS (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.TUS:varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64" + }, + "product_reference": "varnish-modules-debuginfo-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "relates_to_product_reference": "AppStream-8.2.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64 as a component of Red Hat Enterprise Linux AppStream TUS (v. 8.2)", + "product_id": "AppStream-8.2.0.Z.TUS:varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64" + }, + "product_reference": "varnish-modules-debugsource-0:0.15.0-4.module+el8+2481+4078e9d2.x86_64", + "relates_to_product_reference": "AppStream-8.2.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:7.3.6-6.el8_4.src as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.AUS:grafana-0:7.3.6-6.el8_4.src" + }, + "product_reference": "grafana-0:7.3.6-6.el8_4.src", + "relates_to_product_reference": "AppStream-8.4.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:7.3.6-6.el8_4.x86_64 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.AUS:grafana-0:7.3.6-6.el8_4.x86_64" + }, + "product_reference": "grafana-0:7.3.6-6.el8_4.x86_64", + "relates_to_product_reference": "AppStream-8.4.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debuginfo-0:7.3.6-6.el8_4.x86_64 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.AUS:grafana-debuginfo-0:7.3.6-6.el8_4.x86_64" + }, + "product_reference": "grafana-debuginfo-0:7.3.6-6.el8_4.x86_64", + "relates_to_product_reference": "AppStream-8.4.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.src as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.AUS:varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.src" + }, + "product_reference": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.src", + "relates_to_product_reference": "AppStream-8.4.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.AUS:varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64" + }, + "product_reference": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64", + "relates_to_product_reference": "AppStream-8.4.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.AUS:varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64" + }, + "product_reference": "varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64", + "relates_to_product_reference": "AppStream-8.4.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.AUS:varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64" + }, + "product_reference": "varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64", + "relates_to_product_reference": "AppStream-8.4.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.src as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.AUS:varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.src" + }, + "product_reference": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.src", + "relates_to_product_reference": "AppStream-8.4.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.AUS:varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64" + }, + "product_reference": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64", + "relates_to_product_reference": "AppStream-8.4.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.AUS:varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64" + }, + "product_reference": "varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64", + "relates_to_product_reference": "AppStream-8.4.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.AUS:varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64" + }, + "product_reference": "varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64", + "relates_to_product_reference": "AppStream-8.4.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:7.3.6-6.el8_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:grafana-0:7.3.6-6.el8_4.aarch64" + }, + "product_reference": "grafana-0:7.3.6-6.el8_4.aarch64", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:7.3.6-6.el8_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:grafana-0:7.3.6-6.el8_4.ppc64le" + }, + "product_reference": "grafana-0:7.3.6-6.el8_4.ppc64le", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:7.3.6-6.el8_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:grafana-0:7.3.6-6.el8_4.s390x" + }, + "product_reference": "grafana-0:7.3.6-6.el8_4.s390x", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:7.3.6-6.el8_4.src as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:grafana-0:7.3.6-6.el8_4.src" + }, + "product_reference": "grafana-0:7.3.6-6.el8_4.src", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:7.3.6-6.el8_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:grafana-0:7.3.6-6.el8_4.x86_64" + }, + "product_reference": "grafana-0:7.3.6-6.el8_4.x86_64", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debuginfo-0:7.3.6-6.el8_4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:grafana-debuginfo-0:7.3.6-6.el8_4.aarch64" + }, + "product_reference": "grafana-debuginfo-0:7.3.6-6.el8_4.aarch64", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debuginfo-0:7.3.6-6.el8_4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:grafana-debuginfo-0:7.3.6-6.el8_4.ppc64le" + }, + "product_reference": "grafana-debuginfo-0:7.3.6-6.el8_4.ppc64le", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debuginfo-0:7.3.6-6.el8_4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:grafana-debuginfo-0:7.3.6-6.el8_4.s390x" + }, + "product_reference": "grafana-debuginfo-0:7.3.6-6.el8_4.s390x", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debuginfo-0:7.3.6-6.el8_4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:grafana-debuginfo-0:7.3.6-6.el8_4.x86_64" + }, + "product_reference": "grafana-debuginfo-0:7.3.6-6.el8_4.x86_64", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.aarch64" + }, + "product_reference": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.aarch64", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.ppc64le" + }, + "product_reference": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.ppc64le", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.s390x" + }, + "product_reference": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.s390x", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.src as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.src" + }, + "product_reference": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.src", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64" + }, + "product_reference": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.aarch64" + }, + "product_reference": "varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.aarch64", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.ppc64le" + }, + "product_reference": "varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.ppc64le", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.s390x" + }, + "product_reference": "varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.s390x", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64" + }, + "product_reference": "varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.aarch64" + }, + "product_reference": "varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.aarch64", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.ppc64le" + }, + "product_reference": "varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.ppc64le", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.s390x" + }, + "product_reference": "varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.s390x", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64" + }, + "product_reference": "varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.aarch64" + }, + "product_reference": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.aarch64", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.ppc64le" + }, + "product_reference": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.ppc64le", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.s390x" + }, + "product_reference": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.s390x", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.src as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.src" + }, + "product_reference": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.src", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64" + }, + "product_reference": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.aarch64" + }, + "product_reference": "varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.aarch64", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.ppc64le" + }, + "product_reference": "varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.ppc64le", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.s390x" + }, + "product_reference": "varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.s390x", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64" + }, + "product_reference": "varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.aarch64" + }, + "product_reference": "varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.aarch64", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.ppc64le" + }, + "product_reference": "varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.ppc64le", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.s390x" + }, + "product_reference": "varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.s390x", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.4)", + "product_id": "AppStream-8.4.0.Z.E4S:varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64" + }, + "product_reference": "varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64", + "relates_to_product_reference": "AppStream-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:7.3.6-6.el8_4.src as a component of Red Hat Enterprise Linux AppStream TUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.TUS:grafana-0:7.3.6-6.el8_4.src" + }, + "product_reference": "grafana-0:7.3.6-6.el8_4.src", + "relates_to_product_reference": "AppStream-8.4.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:7.3.6-6.el8_4.x86_64 as a component of Red Hat Enterprise Linux AppStream TUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.TUS:grafana-0:7.3.6-6.el8_4.x86_64" + }, + "product_reference": "grafana-0:7.3.6-6.el8_4.x86_64", + "relates_to_product_reference": "AppStream-8.4.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debuginfo-0:7.3.6-6.el8_4.x86_64 as a component of Red Hat Enterprise Linux AppStream TUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.TUS:grafana-debuginfo-0:7.3.6-6.el8_4.x86_64" + }, + "product_reference": "grafana-debuginfo-0:7.3.6-6.el8_4.x86_64", + "relates_to_product_reference": "AppStream-8.4.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.src as a component of Red Hat Enterprise Linux AppStream TUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.TUS:varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.src" + }, + "product_reference": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.src", + "relates_to_product_reference": "AppStream-8.4.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64 as a component of Red Hat Enterprise Linux AppStream TUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.TUS:varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64" + }, + "product_reference": "varnish-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64", + "relates_to_product_reference": "AppStream-8.4.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64 as a component of Red Hat Enterprise Linux AppStream TUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.TUS:varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64" + }, + "product_reference": "varnish-devel-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64", + "relates_to_product_reference": "AppStream-8.4.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64 as a component of Red Hat Enterprise Linux AppStream TUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.TUS:varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64" + }, + "product_reference": "varnish-docs-0:6.0.6-2.module+el8.4.0+20467+7fe641ed.4.x86_64", + "relates_to_product_reference": "AppStream-8.4.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.src as a component of Red Hat Enterprise Linux AppStream TUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.TUS:varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.src" + }, + "product_reference": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.src", + "relates_to_product_reference": "AppStream-8.4.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64 as a component of Red Hat Enterprise Linux AppStream TUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.TUS:varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64" + }, + "product_reference": "varnish-modules-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64", + "relates_to_product_reference": "AppStream-8.4.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64 as a component of Red Hat Enterprise Linux AppStream TUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.TUS:varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64" + }, + "product_reference": "varnish-modules-debuginfo-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64", + "relates_to_product_reference": "AppStream-8.4.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64 as a component of Red Hat Enterprise Linux AppStream TUS (v.8.4)", + "product_id": "AppStream-8.4.0.Z.TUS:varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64" + }, + "product_reference": "varnish-modules-debugsource-0:0.15.0-5.module+el8.3.0+6843+b3b42fcc.x86_64", + "relates_to_product_reference": "AppStream-8.4.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.aarch64" + }, + "product_reference": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.s390x" + }, + "product_reference": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.x86_64" + }, + "product_reference": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.aarch64" + }, + "product_reference": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.s390x" + }, + "product_reference": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.x86_64" + }, + "product_reference": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-0:6.0.123-1.el8_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-0:6.0.123-1.el8_6.aarch64" + }, + "product_reference": "dotnet-0:6.0.123-1.el8_6.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-0:6.0.123-1.el8_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-0:6.0.123-1.el8_6.s390x" + }, + "product_reference": "dotnet-0:6.0.123-1.el8_6.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-0:6.0.123-1.el8_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-0:6.0.123-1.el8_6.x86_64" + }, + "product_reference": "dotnet-0:6.0.123-1.el8_6.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.aarch64" + }, + "product_reference": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.s390x" + }, + "product_reference": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.x86_64" + }, + "product_reference": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64" + }, + "product_reference": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.s390x" + }, + "product_reference": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64" + }, + "product_reference": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:6.0.23-1.el8_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-host-0:6.0.23-1.el8_6.aarch64" + }, + "product_reference": "dotnet-host-0:6.0.23-1.el8_6.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:6.0.23-1.el8_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-host-0:6.0.23-1.el8_6.s390x" + }, + "product_reference": "dotnet-host-0:6.0.23-1.el8_6.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:6.0.23-1.el8_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-host-0:6.0.23-1.el8_6.x86_64" + }, + "product_reference": "dotnet-host-0:6.0.23-1.el8_6.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:6.0.23-1.el8_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-host-debuginfo-0:6.0.23-1.el8_6.aarch64" + }, + "product_reference": "dotnet-host-debuginfo-0:6.0.23-1.el8_6.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:6.0.23-1.el8_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-host-debuginfo-0:6.0.23-1.el8_6.s390x" + }, + "product_reference": "dotnet-host-debuginfo-0:6.0.23-1.el8_6.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:6.0.23-1.el8_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-host-debuginfo-0:6.0.23-1.el8_6.x86_64" + }, + "product_reference": "dotnet-host-debuginfo-0:6.0.23-1.el8_6.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.aarch64" + }, + "product_reference": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.s390x" + }, + "product_reference": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.x86_64" + }, + "product_reference": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64" + }, + "product_reference": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.s390x" + }, + "product_reference": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64" + }, + "product_reference": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el8_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-runtime-6.0-0:6.0.23-1.el8_6.aarch64" + }, + "product_reference": "dotnet-runtime-6.0-0:6.0.23-1.el8_6.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el8_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-runtime-6.0-0:6.0.23-1.el8_6.s390x" + }, + "product_reference": "dotnet-runtime-6.0-0:6.0.23-1.el8_6.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el8_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-runtime-6.0-0:6.0.23-1.el8_6.x86_64" + }, + "product_reference": "dotnet-runtime-6.0-0:6.0.23-1.el8_6.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64" + }, + "product_reference": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.s390x" + }, + "product_reference": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64" + }, + "product_reference": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el8_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-sdk-6.0-0:6.0.123-1.el8_6.aarch64" + }, + "product_reference": "dotnet-sdk-6.0-0:6.0.123-1.el8_6.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el8_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-sdk-6.0-0:6.0.123-1.el8_6.s390x" + }, + "product_reference": "dotnet-sdk-6.0-0:6.0.123-1.el8_6.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el8_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-sdk-6.0-0:6.0.123-1.el8_6.x86_64" + }, + "product_reference": "dotnet-sdk-6.0-0:6.0.123-1.el8_6.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.aarch64" + }, + "product_reference": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.s390x" + }, + "product_reference": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.x86_64" + }, + "product_reference": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.aarch64" + }, + "product_reference": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.s390x" + }, + "product_reference": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.x86_64" + }, + "product_reference": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.aarch64" + }, + "product_reference": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.s390x" + }, + "product_reference": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.x86_64" + }, + "product_reference": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el8_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-templates-6.0-0:6.0.123-1.el8_6.aarch64" + }, + "product_reference": "dotnet-templates-6.0-0:6.0.123-1.el8_6.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el8_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-templates-6.0-0:6.0.123-1.el8_6.s390x" + }, + "product_reference": "dotnet-templates-6.0-0:6.0.123-1.el8_6.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el8_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet-templates-6.0-0:6.0.123-1.el8_6.x86_64" + }, + "product_reference": "dotnet-templates-6.0-0:6.0.123-1.el8_6.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-0:6.0.123-1.el8_6.src as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet6.0-0:6.0.123-1.el8_6.src" + }, + "product_reference": "dotnet6.0-0:6.0.123-1.el8_6.src", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el8_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet6.0-debuginfo-0:6.0.123-1.el8_6.aarch64" + }, + "product_reference": "dotnet6.0-debuginfo-0:6.0.123-1.el8_6.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el8_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet6.0-debuginfo-0:6.0.123-1.el8_6.s390x" + }, + "product_reference": "dotnet6.0-debuginfo-0:6.0.123-1.el8_6.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el8_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet6.0-debuginfo-0:6.0.123-1.el8_6.x86_64" + }, + "product_reference": "dotnet6.0-debuginfo-0:6.0.123-1.el8_6.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el8_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet6.0-debugsource-0:6.0.123-1.el8_6.aarch64" + }, + "product_reference": "dotnet6.0-debugsource-0:6.0.123-1.el8_6.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el8_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet6.0-debugsource-0:6.0.123-1.el8_6.s390x" + }, + "product_reference": "dotnet6.0-debugsource-0:6.0.123-1.el8_6.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el8_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:dotnet6.0-debugsource-0:6.0.123-1.el8_6.x86_64" + }, + "product_reference": "dotnet6.0-debugsource-0:6.0.123-1.el8_6.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:7.5.11-4.el8_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:grafana-0:7.5.11-4.el8_6.aarch64" + }, + "product_reference": "grafana-0:7.5.11-4.el8_6.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:7.5.11-4.el8_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:grafana-0:7.5.11-4.el8_6.ppc64le" + }, + "product_reference": "grafana-0:7.5.11-4.el8_6.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:7.5.11-4.el8_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:grafana-0:7.5.11-4.el8_6.s390x" + }, + "product_reference": "grafana-0:7.5.11-4.el8_6.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:7.5.11-4.el8_6.src as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:grafana-0:7.5.11-4.el8_6.src" + }, + "product_reference": "grafana-0:7.5.11-4.el8_6.src", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:7.5.11-4.el8_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:grafana-0:7.5.11-4.el8_6.x86_64" + }, + "product_reference": "grafana-0:7.5.11-4.el8_6.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debuginfo-0:7.5.11-4.el8_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:grafana-debuginfo-0:7.5.11-4.el8_6.aarch64" + }, + "product_reference": "grafana-debuginfo-0:7.5.11-4.el8_6.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debuginfo-0:7.5.11-4.el8_6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:grafana-debuginfo-0:7.5.11-4.el8_6.ppc64le" + }, + "product_reference": "grafana-debuginfo-0:7.5.11-4.el8_6.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debuginfo-0:7.5.11-4.el8_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:grafana-debuginfo-0:7.5.11-4.el8_6.s390x" + }, + "product_reference": "grafana-debuginfo-0:7.5.11-4.el8_6.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debuginfo-0:7.5.11-4.el8_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:grafana-debuginfo-0:7.5.11-4.el8_6.x86_64" + }, + "product_reference": "grafana-debuginfo-0:7.5.11-4.el8_6.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.aarch64" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.s390x" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.x86_64" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64" + }, + "product_reference": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le" + }, + "product_reference": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x" + }, + "product_reference": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.src as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.src" + }, + "product_reference": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.src", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64" + }, + "product_reference": "nginx-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-all-modules-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-all-modules-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.noarch" + }, + "product_reference": "nginx-all-modules-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.noarch", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64" + }, + "product_reference": "nginx-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le" + }, + "product_reference": "nginx-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x" + }, + "product_reference": "nginx-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64" + }, + "product_reference": "nginx-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-debugsource-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64" + }, + "product_reference": "nginx-debugsource-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-debugsource-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le" + }, + "product_reference": "nginx-debugsource-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-debugsource-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x" + }, + "product_reference": "nginx-debugsource-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-debugsource-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64" + }, + "product_reference": "nginx-debugsource-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-filesystem-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-filesystem-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.noarch" + }, + "product_reference": "nginx-filesystem-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.noarch", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-devel-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64" + }, + "product_reference": "nginx-mod-devel-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-devel-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le" + }, + "product_reference": "nginx-mod-devel-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-devel-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x" + }, + "product_reference": "nginx-mod-devel-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-devel-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64" + }, + "product_reference": "nginx-mod-devel-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-http-image-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-http-image-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-http-image-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-http-image-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-http-perl-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64" + }, + "product_reference": "nginx-mod-http-perl-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-http-perl-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le" + }, + "product_reference": "nginx-mod-http-perl-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-http-perl-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x" + }, + "product_reference": "nginx-mod-http-perl-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-http-perl-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64" + }, + "product_reference": "nginx-mod-http-perl-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-mail-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64" + }, + "product_reference": "nginx-mod-mail-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-mail-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le" + }, + "product_reference": "nginx-mod-mail-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-mail-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x" + }, + "product_reference": "nginx-mod-mail-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-mail-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64" + }, + "product_reference": "nginx-mod-mail-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-stream-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64" + }, + "product_reference": "nginx-mod-stream-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-stream-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le" + }, + "product_reference": "nginx-mod-stream-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-stream-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x" + }, + "product_reference": "nginx-mod-stream-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-stream-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64" + }, + "product_reference": "nginx-mod-stream-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.6.0+20350+58c16214.1.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64" + }, + "product_reference": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le" + }, + "product_reference": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x" + }, + "product_reference": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.src as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.src" + }, + "product_reference": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.src", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64" + }, + "product_reference": "nodejs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-debuginfo-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64" + }, + "product_reference": "nodejs-debuginfo-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-debuginfo-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le" + }, + "product_reference": "nodejs-debuginfo-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-debuginfo-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x" + }, + "product_reference": "nodejs-debuginfo-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-debuginfo-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64" + }, + "product_reference": "nodejs-debuginfo-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-debugsource-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64" + }, + "product_reference": "nodejs-debugsource-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-debugsource-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le" + }, + "product_reference": "nodejs-debugsource-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-debugsource-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x" + }, + "product_reference": "nodejs-debugsource-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-debugsource-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64" + }, + "product_reference": "nodejs-debugsource-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-devel-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-devel-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64" + }, + "product_reference": "nodejs-devel-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-devel-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-devel-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le" + }, + "product_reference": "nodejs-devel-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-devel-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-devel-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x" + }, + "product_reference": "nodejs-devel-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-devel-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-devel-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64" + }, + "product_reference": "nodejs-devel-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-docs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-docs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.noarch" + }, + "product_reference": "nodejs-docs-1:16.20.2-3.module+el8.6.0+20387+28a0198c.noarch", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-full-i18n-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64" + }, + "product_reference": "nodejs-full-i18n-1:16.20.2-3.module+el8.6.0+20387+28a0198c.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-full-i18n-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le" + }, + "product_reference": "nodejs-full-i18n-1:16.20.2-3.module+el8.6.0+20387+28a0198c.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-full-i18n-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x" + }, + "product_reference": "nodejs-full-i18n-1:16.20.2-3.module+el8.6.0+20387+28a0198c.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-full-i18n-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64" + }, + "product_reference": "nodejs-full-i18n-1:16.20.2-3.module+el8.6.0+20387+28a0198c.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-nodemon-0:3.0.1-1.module+el8.6.0+19765+366b9144.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-nodemon-0:3.0.1-1.module+el8.6.0+19765+366b9144.noarch" + }, + "product_reference": "nodejs-nodemon-0:3.0.1-1.module+el8.6.0+19765+366b9144.noarch", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-nodemon-0:3.0.1-1.module+el8.6.0+19765+366b9144.src as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-nodemon-0:3.0.1-1.module+el8.6.0+19765+366b9144.src" + }, + "product_reference": "nodejs-nodemon-0:3.0.1-1.module+el8.6.0+19765+366b9144.src", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-packaging-0:26-1.module+el8.6.0+19856+c0c87259.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-packaging-0:26-1.module+el8.6.0+19856+c0c87259.noarch" + }, + "product_reference": "nodejs-packaging-0:26-1.module+el8.6.0+19856+c0c87259.noarch", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-packaging-0:26-1.module+el8.6.0+19856+c0c87259.src as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:nodejs-packaging-0:26-1.module+el8.6.0+19856+c0c87259.src" + }, + "product_reference": "nodejs-packaging-0:26-1.module+el8.6.0+19856+c0c87259.src", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:8.19.4-1.16.20.2.3.module+el8.6.0+20387+28a0198c.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:npm-1:8.19.4-1.16.20.2.3.module+el8.6.0+20387+28a0198c.aarch64" + }, + "product_reference": "npm-1:8.19.4-1.16.20.2.3.module+el8.6.0+20387+28a0198c.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:8.19.4-1.16.20.2.3.module+el8.6.0+20387+28a0198c.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:npm-1:8.19.4-1.16.20.2.3.module+el8.6.0+20387+28a0198c.ppc64le" + }, + "product_reference": "npm-1:8.19.4-1.16.20.2.3.module+el8.6.0+20387+28a0198c.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:8.19.4-1.16.20.2.3.module+el8.6.0+20387+28a0198c.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:npm-1:8.19.4-1.16.20.2.3.module+el8.6.0+20387+28a0198c.s390x" + }, + "product_reference": "npm-1:8.19.4-1.16.20.2.3.module+el8.6.0+20387+28a0198c.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:8.19.4-1.16.20.2.3.module+el8.6.0+20387+28a0198c.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:npm-1:8.19.4-1.16.20.2.3.module+el8.6.0+20387+28a0198c.x86_64" + }, + "product_reference": "npm-1:8.19.4-1.16.20.2.3.module+el8.6.0+20387+28a0198c.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.aarch64" + }, + "product_reference": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.ppc64le" + }, + "product_reference": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.s390x" + }, + "product_reference": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.src as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.src" + }, + "product_reference": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.src", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.x86_64" + }, + "product_reference": "varnish-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-devel-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.aarch64" + }, + "product_reference": "varnish-devel-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-devel-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.ppc64le" + }, + "product_reference": "varnish-devel-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-devel-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.s390x" + }, + "product_reference": "varnish-devel-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-devel-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.x86_64" + }, + "product_reference": "varnish-devel-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-docs-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.aarch64" + }, + "product_reference": "varnish-docs-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-docs-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.ppc64le" + }, + "product_reference": "varnish-docs-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-docs-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.s390x" + }, + "product_reference": "varnish-docs-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-docs-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.x86_64" + }, + "product_reference": "varnish-docs-0:6.0.8-2.module+el8.6.0+20465+cbb0694f.2.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64" + }, + "product_reference": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le" + }, + "product_reference": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x" + }, + "product_reference": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.src as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.src" + }, + "product_reference": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.src", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64" + }, + "product_reference": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64" + }, + "product_reference": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le" + }, + "product_reference": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x" + }, + "product_reference": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64" + }, + "product_reference": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64" + }, + "product_reference": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le" + }, + "product_reference": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x" + }, + "product_reference": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.8.6)", + "product_id": "AppStream-8.6.0.Z.EUS:varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64" + }, + "product_reference": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64", + "relates_to_product_reference": "AppStream-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.aarch64" + }, + "product_reference": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.s390x" + }, + "product_reference": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.x86_64" + }, + "product_reference": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.aarch64" + }, + "product_reference": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.ppc64le" + }, + "product_reference": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.s390x" + }, + "product_reference": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.x86_64" + }, + "product_reference": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.aarch64" + }, + "product_reference": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.s390x" + }, + "product_reference": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.x86_64" + }, + "product_reference": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.aarch64" + }, + "product_reference": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.ppc64le" + }, + "product_reference": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.s390x" + }, + "product_reference": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.x86_64" + }, + "product_reference": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "delve-0:1.9.1-1.module+el8.8.0+16778+5fbb74f5.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:delve-0:1.9.1-1.module+el8.8.0+16778+5fbb74f5.src" + }, + "product_reference": "delve-0:1.9.1-1.module+el8.8.0+16778+5fbb74f5.src", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "delve-0:1.9.1-1.module+el8.8.0+16778+5fbb74f5.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:delve-0:1.9.1-1.module+el8.8.0+16778+5fbb74f5.x86_64" + }, + "product_reference": "delve-0:1.9.1-1.module+el8.8.0+16778+5fbb74f5.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "delve-debuginfo-0:1.9.1-1.module+el8.8.0+16778+5fbb74f5.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:delve-debuginfo-0:1.9.1-1.module+el8.8.0+16778+5fbb74f5.x86_64" + }, + "product_reference": "delve-debuginfo-0:1.9.1-1.module+el8.8.0+16778+5fbb74f5.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "delve-debugsource-0:1.9.1-1.module+el8.8.0+16778+5fbb74f5.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:delve-debugsource-0:1.9.1-1.module+el8.8.0+16778+5fbb74f5.x86_64" + }, + "product_reference": "delve-debugsource-0:1.9.1-1.module+el8.8.0+16778+5fbb74f5.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-0:7.0.112-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-0:7.0.112-1.el8_8.aarch64" + }, + "product_reference": "dotnet-0:7.0.112-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-0:7.0.112-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-0:7.0.112-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-0:7.0.112-1.el8_8.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-0:7.0.112-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-0:7.0.112-1.el8_8.s390x" + }, + "product_reference": "dotnet-0:7.0.112-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-0:7.0.112-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-0:7.0.112-1.el8_8.x86_64" + }, + "product_reference": "dotnet-0:7.0.112-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.aarch64" + }, + "product_reference": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.s390x" + }, + "product_reference": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.x86_64" + }, + "product_reference": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64" + }, + "product_reference": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.s390x" + }, + "product_reference": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64" + }, + "product_reference": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.aarch64" + }, + "product_reference": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.s390x" + }, + "product_reference": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.x86_64" + }, + "product_reference": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64" + }, + "product_reference": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.s390x" + }, + "product_reference": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64" + }, + "product_reference": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:7.0.12-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-host-0:7.0.12-1.el8_8.aarch64" + }, + "product_reference": "dotnet-host-0:7.0.12-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:7.0.12-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-host-0:7.0.12-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-host-0:7.0.12-1.el8_8.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:7.0.12-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-host-0:7.0.12-1.el8_8.s390x" + }, + "product_reference": "dotnet-host-0:7.0.12-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:7.0.12-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-host-0:7.0.12-1.el8_8.x86_64" + }, + "product_reference": "dotnet-host-0:7.0.12-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-host-debuginfo-0:7.0.12-1.el8_8.aarch64" + }, + "product_reference": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-host-debuginfo-0:7.0.12-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-host-debuginfo-0:7.0.12-1.el8_8.s390x" + }, + "product_reference": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-host-debuginfo-0:7.0.12-1.el8_8.x86_64" + }, + "product_reference": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.aarch64" + }, + "product_reference": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.s390x" + }, + "product_reference": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.x86_64" + }, + "product_reference": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64" + }, + "product_reference": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.s390x" + }, + "product_reference": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64" + }, + "product_reference": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.aarch64" + }, + "product_reference": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.s390x" + }, + "product_reference": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.x86_64" + }, + "product_reference": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64" + }, + "product_reference": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.s390x" + }, + "product_reference": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64" + }, + "product_reference": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-runtime-6.0-0:6.0.23-1.el8_8.aarch64" + }, + "product_reference": "dotnet-runtime-6.0-0:6.0.23-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-runtime-6.0-0:6.0.23-1.el8_8.s390x" + }, + "product_reference": "dotnet-runtime-6.0-0:6.0.23-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-runtime-6.0-0:6.0.23-1.el8_8.x86_64" + }, + "product_reference": "dotnet-runtime-6.0-0:6.0.23-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64" + }, + "product_reference": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.s390x" + }, + "product_reference": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64" + }, + "product_reference": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-runtime-7.0-0:7.0.12-1.el8_8.aarch64" + }, + "product_reference": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-runtime-7.0-0:7.0.12-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-runtime-7.0-0:7.0.12-1.el8_8.s390x" + }, + "product_reference": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-runtime-7.0-0:7.0.12-1.el8_8.x86_64" + }, + "product_reference": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64" + }, + "product_reference": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.s390x" + }, + "product_reference": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64" + }, + "product_reference": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-sdk-6.0-0:6.0.123-1.el8_8.aarch64" + }, + "product_reference": "dotnet-sdk-6.0-0:6.0.123-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-sdk-6.0-0:6.0.123-1.el8_8.s390x" + }, + "product_reference": "dotnet-sdk-6.0-0:6.0.123-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-sdk-6.0-0:6.0.123-1.el8_8.x86_64" + }, + "product_reference": "dotnet-sdk-6.0-0:6.0.123-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.aarch64" + }, + "product_reference": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.s390x" + }, + "product_reference": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.x86_64" + }, + "product_reference": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.aarch64" + }, + "product_reference": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.s390x" + }, + "product_reference": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.x86_64" + }, + "product_reference": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-sdk-7.0-0:7.0.112-1.el8_8.aarch64" + }, + "product_reference": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-sdk-7.0-0:7.0.112-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-sdk-7.0-0:7.0.112-1.el8_8.s390x" + }, + "product_reference": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-sdk-7.0-0:7.0.112-1.el8_8.x86_64" + }, + "product_reference": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.aarch64" + }, + "product_reference": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.s390x" + }, + "product_reference": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.x86_64" + }, + "product_reference": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.aarch64" + }, + "product_reference": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.s390x" + }, + "product_reference": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.x86_64" + }, + "product_reference": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.aarch64" + }, + "product_reference": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.s390x" + }, + "product_reference": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.x86_64" + }, + "product_reference": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.aarch64" + }, + "product_reference": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.s390x" + }, + "product_reference": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.x86_64" + }, + "product_reference": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-templates-6.0-0:6.0.123-1.el8_8.aarch64" + }, + "product_reference": "dotnet-templates-6.0-0:6.0.123-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-templates-6.0-0:6.0.123-1.el8_8.s390x" + }, + "product_reference": "dotnet-templates-6.0-0:6.0.123-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-templates-6.0-0:6.0.123-1.el8_8.x86_64" + }, + "product_reference": "dotnet-templates-6.0-0:6.0.123-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-7.0-0:7.0.112-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-templates-7.0-0:7.0.112-1.el8_8.aarch64" + }, + "product_reference": "dotnet-templates-7.0-0:7.0.112-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-7.0-0:7.0.112-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-templates-7.0-0:7.0.112-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-templates-7.0-0:7.0.112-1.el8_8.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-7.0-0:7.0.112-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-templates-7.0-0:7.0.112-1.el8_8.s390x" + }, + "product_reference": "dotnet-templates-7.0-0:7.0.112-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-7.0-0:7.0.112-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet-templates-7.0-0:7.0.112-1.el8_8.x86_64" + }, + "product_reference": "dotnet-templates-7.0-0:7.0.112-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-0:6.0.123-1.el8_8.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet6.0-0:6.0.123-1.el8_8.src" + }, + "product_reference": "dotnet6.0-0:6.0.123-1.el8_8.src", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet6.0-debuginfo-0:6.0.123-1.el8_8.aarch64" + }, + "product_reference": "dotnet6.0-debuginfo-0:6.0.123-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet6.0-debuginfo-0:6.0.123-1.el8_8.s390x" + }, + "product_reference": "dotnet6.0-debuginfo-0:6.0.123-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet6.0-debuginfo-0:6.0.123-1.el8_8.x86_64" + }, + "product_reference": "dotnet6.0-debuginfo-0:6.0.123-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet6.0-debugsource-0:6.0.123-1.el8_8.aarch64" + }, + "product_reference": "dotnet6.0-debugsource-0:6.0.123-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet6.0-debugsource-0:6.0.123-1.el8_8.s390x" + }, + "product_reference": "dotnet6.0-debugsource-0:6.0.123-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet6.0-debugsource-0:6.0.123-1.el8_8.x86_64" + }, + "product_reference": "dotnet6.0-debugsource-0:6.0.123-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-0:7.0.112-1.el8_8.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet7.0-0:7.0.112-1.el8_8.src" + }, + "product_reference": "dotnet7.0-0:7.0.112-1.el8_8.src", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet7.0-debuginfo-0:7.0.112-1.el8_8.aarch64" + }, + "product_reference": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet7.0-debuginfo-0:7.0.112-1.el8_8.ppc64le" + }, + "product_reference": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet7.0-debuginfo-0:7.0.112-1.el8_8.s390x" + }, + "product_reference": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet7.0-debuginfo-0:7.0.112-1.el8_8.x86_64" + }, + "product_reference": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet7.0-debugsource-0:7.0.112-1.el8_8.aarch64" + }, + "product_reference": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet7.0-debugsource-0:7.0.112-1.el8_8.ppc64le" + }, + "product_reference": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet7.0-debugsource-0:7.0.112-1.el8_8.s390x" + }, + "product_reference": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:dotnet7.0-debugsource-0:7.0.112-1.el8_8.x86_64" + }, + "product_reference": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.aarch64" + }, + "product_reference": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.ppc64le" + }, + "product_reference": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.s390x" + }, + "product_reference": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.src" + }, + "product_reference": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.src", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.x86_64" + }, + "product_reference": "go-toolset-0:1.19.13-1.module+el8.8.0+20380+7171fefb.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.aarch64" + }, + "product_reference": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.ppc64le" + }, + "product_reference": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.s390x" + }, + "product_reference": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.src" + }, + "product_reference": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.src", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.x86_64" + }, + "product_reference": "golang-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-bin-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:golang-bin-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.aarch64" + }, + "product_reference": "golang-bin-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-bin-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:golang-bin-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.ppc64le" + }, + "product_reference": "golang-bin-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-bin-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:golang-bin-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.s390x" + }, + "product_reference": "golang-bin-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-bin-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:golang-bin-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.x86_64" + }, + "product_reference": "golang-bin-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-docs-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:golang-docs-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.noarch" + }, + "product_reference": "golang-docs-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.noarch", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-misc-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:golang-misc-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.noarch" + }, + "product_reference": "golang-misc-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.noarch", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-race-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:golang-race-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.x86_64" + }, + "product_reference": "golang-race-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-src-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:golang-src-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.noarch" + }, + "product_reference": "golang-src-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.noarch", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-tests-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:golang-tests-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.noarch" + }, + "product_reference": "golang-tests-0:1.19.13-1.module+el8.8.0+20373+d9cd605c.noarch", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:7.5.15-5.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:grafana-0:7.5.15-5.el8_8.aarch64" + }, + "product_reference": "grafana-0:7.5.15-5.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:7.5.15-5.el8_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:grafana-0:7.5.15-5.el8_8.ppc64le" + }, + "product_reference": "grafana-0:7.5.15-5.el8_8.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:7.5.15-5.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:grafana-0:7.5.15-5.el8_8.s390x" + }, + "product_reference": "grafana-0:7.5.15-5.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:7.5.15-5.el8_8.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:grafana-0:7.5.15-5.el8_8.src" + }, + "product_reference": "grafana-0:7.5.15-5.el8_8.src", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:7.5.15-5.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:grafana-0:7.5.15-5.el8_8.x86_64" + }, + "product_reference": "grafana-0:7.5.15-5.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debuginfo-0:7.5.15-5.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:grafana-debuginfo-0:7.5.15-5.el8_8.aarch64" + }, + "product_reference": "grafana-debuginfo-0:7.5.15-5.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debuginfo-0:7.5.15-5.el8_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:grafana-debuginfo-0:7.5.15-5.el8_8.ppc64le" + }, + "product_reference": "grafana-debuginfo-0:7.5.15-5.el8_8.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debuginfo-0:7.5.15-5.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:grafana-debuginfo-0:7.5.15-5.el8_8.s390x" + }, + "product_reference": "grafana-debuginfo-0:7.5.15-5.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debuginfo-0:7.5.15-5.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:grafana-debuginfo-0:7.5.15-5.el8_8.x86_64" + }, + "product_reference": "grafana-debuginfo-0:7.5.15-5.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.aarch64" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.ppc64le" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.s390x" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.x86_64" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64" + }, + "product_reference": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le" + }, + "product_reference": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x" + }, + "product_reference": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.src" + }, + "product_reference": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.src", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64" + }, + "product_reference": "nginx-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64" + }, + "product_reference": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le" + }, + "product_reference": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x" + }, + "product_reference": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.src" + }, + "product_reference": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.src", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64" + }, + "product_reference": "nginx-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-all-modules-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-all-modules-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.noarch" + }, + "product_reference": "nginx-all-modules-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.noarch", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-all-modules-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-all-modules-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.noarch" + }, + "product_reference": "nginx-all-modules-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.noarch", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64" + }, + "product_reference": "nginx-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le" + }, + "product_reference": "nginx-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x" + }, + "product_reference": "nginx-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64" + }, + "product_reference": "nginx-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64" + }, + "product_reference": "nginx-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le" + }, + "product_reference": "nginx-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x" + }, + "product_reference": "nginx-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64" + }, + "product_reference": "nginx-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-debugsource-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64" + }, + "product_reference": "nginx-debugsource-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-debugsource-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le" + }, + "product_reference": "nginx-debugsource-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-debugsource-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x" + }, + "product_reference": "nginx-debugsource-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-debugsource-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64" + }, + "product_reference": "nginx-debugsource-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-debugsource-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64" + }, + "product_reference": "nginx-debugsource-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-debugsource-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le" + }, + "product_reference": "nginx-debugsource-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-debugsource-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x" + }, + "product_reference": "nginx-debugsource-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-debugsource-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64" + }, + "product_reference": "nginx-debugsource-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-filesystem-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-filesystem-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.noarch" + }, + "product_reference": "nginx-filesystem-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.noarch", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-filesystem-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-filesystem-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.noarch" + }, + "product_reference": "nginx-filesystem-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.noarch", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-devel-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64" + }, + "product_reference": "nginx-mod-devel-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-devel-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le" + }, + "product_reference": "nginx-mod-devel-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-devel-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x" + }, + "product_reference": "nginx-mod-devel-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-devel-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64" + }, + "product_reference": "nginx-mod-devel-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-devel-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64" + }, + "product_reference": "nginx-mod-devel-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-devel-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le" + }, + "product_reference": "nginx-mod-devel-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-devel-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x" + }, + "product_reference": "nginx-mod-devel-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-devel-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64" + }, + "product_reference": "nginx-mod-devel-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-image-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-image-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-image-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-image-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-image-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-image-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-image-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-image-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-image-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-image-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-image-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-image-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-perl-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64" + }, + "product_reference": "nginx-mod-http-perl-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-perl-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le" + }, + "product_reference": "nginx-mod-http-perl-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-perl-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x" + }, + "product_reference": "nginx-mod-http-perl-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-perl-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64" + }, + "product_reference": "nginx-mod-http-perl-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-perl-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64" + }, + "product_reference": "nginx-mod-http-perl-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-perl-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le" + }, + "product_reference": "nginx-mod-http-perl-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-perl-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x" + }, + "product_reference": "nginx-mod-http-perl-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-perl-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64" + }, + "product_reference": "nginx-mod-http-perl-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-perl-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-perl-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-perl-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-perl-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-mail-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64" + }, + "product_reference": "nginx-mod-mail-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-mail-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le" + }, + "product_reference": "nginx-mod-mail-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-mail-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x" + }, + "product_reference": "nginx-mod-mail-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-mail-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64" + }, + "product_reference": "nginx-mod-mail-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-mail-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64" + }, + "product_reference": "nginx-mod-mail-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-mail-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le" + }, + "product_reference": "nginx-mod-mail-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-mail-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x" + }, + "product_reference": "nginx-mod-mail-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-mail-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64" + }, + "product_reference": "nginx-mod-mail-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-mail-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-mail-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-mail-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-mail-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-stream-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64" + }, + "product_reference": "nginx-mod-stream-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-stream-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le" + }, + "product_reference": "nginx-mod-stream-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-stream-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x" + }, + "product_reference": "nginx-mod-stream-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-stream-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64" + }, + "product_reference": "nginx-mod-stream-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-stream-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64" + }, + "product_reference": "nginx-mod-stream-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-stream-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le" + }, + "product_reference": "nginx-mod-stream-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-stream-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x" + }, + "product_reference": "nginx-mod-stream-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-stream-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64" + }, + "product_reference": "nginx-mod-stream-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.20.1-1.module+el8.8.0+20359+9bd89172.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-stream-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-stream-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-stream-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nginx-mod-stream-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.22.1-1.module+el8.8.0+20355+6d9c8a63.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64" + }, + "product_reference": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le" + }, + "product_reference": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x" + }, + "product_reference": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.src" + }, + "product_reference": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.src", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64" + }, + "product_reference": "nodejs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64" + }, + "product_reference": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le" + }, + "product_reference": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x" + }, + "product_reference": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.src" + }, + "product_reference": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.src", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64" + }, + "product_reference": "nodejs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-debuginfo-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64" + }, + "product_reference": "nodejs-debuginfo-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-debuginfo-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le" + }, + "product_reference": "nodejs-debuginfo-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-debuginfo-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x" + }, + "product_reference": "nodejs-debuginfo-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-debuginfo-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64" + }, + "product_reference": "nodejs-debuginfo-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-debuginfo-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64" + }, + "product_reference": "nodejs-debuginfo-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-debuginfo-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le" + }, + "product_reference": "nodejs-debuginfo-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-debuginfo-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x" + }, + "product_reference": "nodejs-debuginfo-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-debuginfo-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64" + }, + "product_reference": "nodejs-debuginfo-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-debugsource-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64" + }, + "product_reference": "nodejs-debugsource-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-debugsource-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le" + }, + "product_reference": "nodejs-debugsource-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-debugsource-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x" + }, + "product_reference": "nodejs-debugsource-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-debugsource-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64" + }, + "product_reference": "nodejs-debugsource-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-debugsource-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64" + }, + "product_reference": "nodejs-debugsource-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-debugsource-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le" + }, + "product_reference": "nodejs-debugsource-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-debugsource-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x" + }, + "product_reference": "nodejs-debugsource-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-debugsource-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64" + }, + "product_reference": "nodejs-debugsource-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-devel-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-devel-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64" + }, + "product_reference": "nodejs-devel-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-devel-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-devel-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le" + }, + "product_reference": "nodejs-devel-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-devel-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-devel-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x" + }, + "product_reference": "nodejs-devel-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-devel-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-devel-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64" + }, + "product_reference": "nodejs-devel-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-devel-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-devel-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64" + }, + "product_reference": "nodejs-devel-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-devel-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-devel-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le" + }, + "product_reference": "nodejs-devel-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-devel-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-devel-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x" + }, + "product_reference": "nodejs-devel-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-devel-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-devel-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64" + }, + "product_reference": "nodejs-devel-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-docs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-docs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.noarch" + }, + "product_reference": "nodejs-docs-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.noarch", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-docs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-docs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.noarch" + }, + "product_reference": "nodejs-docs-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.noarch", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-full-i18n-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64" + }, + "product_reference": "nodejs-full-i18n-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-full-i18n-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le" + }, + "product_reference": "nodejs-full-i18n-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-full-i18n-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x" + }, + "product_reference": "nodejs-full-i18n-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-full-i18n-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64" + }, + "product_reference": "nodejs-full-i18n-1:16.20.2-3.module+el8.8.0+20386+0b1f3093.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-full-i18n-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64" + }, + "product_reference": "nodejs-full-i18n-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-full-i18n-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le" + }, + "product_reference": "nodejs-full-i18n-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-full-i18n-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x" + }, + "product_reference": "nodejs-full-i18n-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-full-i18n-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64" + }, + "product_reference": "nodejs-full-i18n-1:18.18.2-1.module+el8.8.0+20407+c11d40bd.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-nodemon-0:3.0.1-1.module+el8.8.0+19757+8ca87034.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-nodemon-0:3.0.1-1.module+el8.8.0+19757+8ca87034.noarch" + }, + "product_reference": "nodejs-nodemon-0:3.0.1-1.module+el8.8.0+19757+8ca87034.noarch", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-nodemon-0:3.0.1-1.module+el8.8.0+19757+8ca87034.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-nodemon-0:3.0.1-1.module+el8.8.0+19757+8ca87034.src" + }, + "product_reference": "nodejs-nodemon-0:3.0.1-1.module+el8.8.0+19757+8ca87034.src", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-nodemon-0:3.0.1-1.module+el8.8.0+19764+7eed1ca3.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-nodemon-0:3.0.1-1.module+el8.8.0+19764+7eed1ca3.noarch" + }, + "product_reference": "nodejs-nodemon-0:3.0.1-1.module+el8.8.0+19764+7eed1ca3.noarch", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-nodemon-0:3.0.1-1.module+el8.8.0+19764+7eed1ca3.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-nodemon-0:3.0.1-1.module+el8.8.0+19764+7eed1ca3.src" + }, + "product_reference": "nodejs-nodemon-0:3.0.1-1.module+el8.8.0+19764+7eed1ca3.src", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-packaging-0:2021.06-4.module+el8.7.0+15582+19c314fa.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-packaging-0:2021.06-4.module+el8.7.0+15582+19c314fa.noarch" + }, + "product_reference": "nodejs-packaging-0:2021.06-4.module+el8.7.0+15582+19c314fa.noarch", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-packaging-0:2021.06-4.module+el8.7.0+15582+19c314fa.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-packaging-0:2021.06-4.module+el8.7.0+15582+19c314fa.src" + }, + "product_reference": "nodejs-packaging-0:2021.06-4.module+el8.7.0+15582+19c314fa.src", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-packaging-0:26-1.module+el8.8.0+19857+6d2a104d.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-packaging-0:26-1.module+el8.8.0+19857+6d2a104d.noarch" + }, + "product_reference": "nodejs-packaging-0:26-1.module+el8.8.0+19857+6d2a104d.noarch", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-packaging-0:26-1.module+el8.8.0+19857+6d2a104d.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-packaging-0:26-1.module+el8.8.0+19857+6d2a104d.src" + }, + "product_reference": "nodejs-packaging-0:26-1.module+el8.8.0+19857+6d2a104d.src", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-packaging-bundler-0:2021.06-4.module+el8.7.0+15582+19c314fa.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:nodejs-packaging-bundler-0:2021.06-4.module+el8.7.0+15582+19c314fa.noarch" + }, + "product_reference": "nodejs-packaging-bundler-0:2021.06-4.module+el8.7.0+15582+19c314fa.noarch", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:8.19.4-1.16.20.2.3.module+el8.8.0+20386+0b1f3093.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:npm-1:8.19.4-1.16.20.2.3.module+el8.8.0+20386+0b1f3093.aarch64" + }, + "product_reference": "npm-1:8.19.4-1.16.20.2.3.module+el8.8.0+20386+0b1f3093.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:8.19.4-1.16.20.2.3.module+el8.8.0+20386+0b1f3093.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:npm-1:8.19.4-1.16.20.2.3.module+el8.8.0+20386+0b1f3093.ppc64le" + }, + "product_reference": "npm-1:8.19.4-1.16.20.2.3.module+el8.8.0+20386+0b1f3093.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:8.19.4-1.16.20.2.3.module+el8.8.0+20386+0b1f3093.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:npm-1:8.19.4-1.16.20.2.3.module+el8.8.0+20386+0b1f3093.s390x" + }, + "product_reference": "npm-1:8.19.4-1.16.20.2.3.module+el8.8.0+20386+0b1f3093.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:8.19.4-1.16.20.2.3.module+el8.8.0+20386+0b1f3093.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:npm-1:8.19.4-1.16.20.2.3.module+el8.8.0+20386+0b1f3093.x86_64" + }, + "product_reference": "npm-1:8.19.4-1.16.20.2.3.module+el8.8.0+20386+0b1f3093.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:9.8.1-1.18.18.2.1.module+el8.8.0+20407+c11d40bd.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:npm-1:9.8.1-1.18.18.2.1.module+el8.8.0+20407+c11d40bd.aarch64" + }, + "product_reference": "npm-1:9.8.1-1.18.18.2.1.module+el8.8.0+20407+c11d40bd.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:9.8.1-1.18.18.2.1.module+el8.8.0+20407+c11d40bd.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:npm-1:9.8.1-1.18.18.2.1.module+el8.8.0+20407+c11d40bd.ppc64le" + }, + "product_reference": "npm-1:9.8.1-1.18.18.2.1.module+el8.8.0+20407+c11d40bd.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:9.8.1-1.18.18.2.1.module+el8.8.0+20407+c11d40bd.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:npm-1:9.8.1-1.18.18.2.1.module+el8.8.0+20407+c11d40bd.s390x" + }, + "product_reference": "npm-1:9.8.1-1.18.18.2.1.module+el8.8.0+20407+c11d40bd.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:9.8.1-1.18.18.2.1.module+el8.8.0+20407+c11d40bd.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:npm-1:9.8.1-1.18.18.2.1.module+el8.8.0+20407+c11d40bd.x86_64" + }, + "product_reference": "npm-1:9.8.1-1.18.18.2.1.module+el8.8.0+20407+c11d40bd.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tomcat-1:9.0.62-5.el8_8.2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:tomcat-1:9.0.62-5.el8_8.2.noarch" + }, + "product_reference": "tomcat-1:9.0.62-5.el8_8.2.noarch", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tomcat-1:9.0.62-5.el8_8.2.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:tomcat-1:9.0.62-5.el8_8.2.src" + }, + "product_reference": "tomcat-1:9.0.62-5.el8_8.2.src", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tomcat-admin-webapps-1:9.0.62-5.el8_8.2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:tomcat-admin-webapps-1:9.0.62-5.el8_8.2.noarch" + }, + "product_reference": "tomcat-admin-webapps-1:9.0.62-5.el8_8.2.noarch", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tomcat-docs-webapp-1:9.0.62-5.el8_8.2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:tomcat-docs-webapp-1:9.0.62-5.el8_8.2.noarch" + }, + "product_reference": "tomcat-docs-webapp-1:9.0.62-5.el8_8.2.noarch", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tomcat-el-3.0-api-1:9.0.62-5.el8_8.2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:tomcat-el-3.0-api-1:9.0.62-5.el8_8.2.noarch" + }, + "product_reference": "tomcat-el-3.0-api-1:9.0.62-5.el8_8.2.noarch", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tomcat-jsp-2.3-api-1:9.0.62-5.el8_8.2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:tomcat-jsp-2.3-api-1:9.0.62-5.el8_8.2.noarch" + }, + "product_reference": "tomcat-jsp-2.3-api-1:9.0.62-5.el8_8.2.noarch", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tomcat-lib-1:9.0.62-5.el8_8.2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:tomcat-lib-1:9.0.62-5.el8_8.2.noarch" + }, + "product_reference": "tomcat-lib-1:9.0.62-5.el8_8.2.noarch", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tomcat-servlet-4.0-api-1:9.0.62-5.el8_8.2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:tomcat-servlet-4.0-api-1:9.0.62-5.el8_8.2.noarch" + }, + "product_reference": "tomcat-servlet-4.0-api-1:9.0.62-5.el8_8.2.noarch", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tomcat-webapps-1:9.0.62-5.el8_8.2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:tomcat-webapps-1:9.0.62-5.el8_8.2.noarch" + }, + "product_reference": "tomcat-webapps-1:9.0.62-5.el8_8.2.noarch", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.aarch64" + }, + "product_reference": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.ppc64le" + }, + "product_reference": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.s390x" + }, + "product_reference": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.src" + }, + "product_reference": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.src", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.x86_64" + }, + "product_reference": "varnish-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-devel-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.aarch64" + }, + "product_reference": "varnish-devel-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-devel-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.ppc64le" + }, + "product_reference": "varnish-devel-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-devel-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.s390x" + }, + "product_reference": "varnish-devel-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-devel-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.x86_64" + }, + "product_reference": "varnish-devel-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-docs-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.aarch64" + }, + "product_reference": "varnish-docs-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-docs-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.ppc64le" + }, + "product_reference": "varnish-docs-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-docs-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.s390x" + }, + "product_reference": "varnish-docs-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-docs-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.x86_64" + }, + "product_reference": "varnish-docs-0:6.0.8-3.module+el8.8.0+20455+bdc2c048.1.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64" + }, + "product_reference": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le" + }, + "product_reference": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x" + }, + "product_reference": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.src" + }, + "product_reference": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.src", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64" + }, + "product_reference": "varnish-modules-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64" + }, + "product_reference": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le" + }, + "product_reference": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x" + }, + "product_reference": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64" + }, + "product_reference": "varnish-modules-debuginfo-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64" + }, + "product_reference": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.aarch64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le" + }, + "product_reference": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.ppc64le", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x" + }, + "product_reference": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.s390x", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.8.0.Z.MAIN.EUS:varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64" + }, + "product_reference": "varnish-modules-debugsource-0:0.15.0-6.module+el8.5.0+11976+0b4af72d.x86_64", + "relates_to_product_reference": "AppStream-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64" + }, + "product_reference": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le" + }, + "product_reference": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x" + }, + "product_reference": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.src" + }, + "product_reference": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.src", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64" + }, + "product_reference": "nodejs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-debuginfo-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64" + }, + "product_reference": "nodejs-debuginfo-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-debuginfo-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le" + }, + "product_reference": "nodejs-debuginfo-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-debuginfo-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x" + }, + "product_reference": "nodejs-debuginfo-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-debuginfo-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64" + }, + "product_reference": "nodejs-debuginfo-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-debugsource-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64" + }, + "product_reference": "nodejs-debugsource-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-debugsource-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le" + }, + "product_reference": "nodejs-debugsource-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-debugsource-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x" + }, + "product_reference": "nodejs-debugsource-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-debugsource-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64" + }, + "product_reference": "nodejs-debugsource-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-devel-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-devel-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64" + }, + "product_reference": "nodejs-devel-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-devel-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-devel-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le" + }, + "product_reference": "nodejs-devel-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-devel-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-devel-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x" + }, + "product_reference": "nodejs-devel-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-devel-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-devel-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64" + }, + "product_reference": "nodejs-devel-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-docs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-docs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.noarch" + }, + "product_reference": "nodejs-docs-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.noarch", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-full-i18n-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64" + }, + "product_reference": "nodejs-full-i18n-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.aarch64", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-full-i18n-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le" + }, + "product_reference": "nodejs-full-i18n-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.ppc64le", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-full-i18n-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x" + }, + "product_reference": "nodejs-full-i18n-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.s390x", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-full-i18n-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64" + }, + "product_reference": "nodejs-full-i18n-1:20.8.1-1.module+el8.9.0+20473+c4e3d824.x86_64", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-nodemon-0:3.0.1-1.module+el8.9.0+20473+c4e3d824.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-nodemon-0:3.0.1-1.module+el8.9.0+20473+c4e3d824.noarch" + }, + "product_reference": "nodejs-nodemon-0:3.0.1-1.module+el8.9.0+20473+c4e3d824.noarch", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-nodemon-0:3.0.1-1.module+el8.9.0+20473+c4e3d824.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-nodemon-0:3.0.1-1.module+el8.9.0+20473+c4e3d824.src" + }, + "product_reference": "nodejs-nodemon-0:3.0.1-1.module+el8.9.0+20473+c4e3d824.src", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-packaging-0:2021.06-4.module+el8.9.0+19519+e25b965a.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-packaging-0:2021.06-4.module+el8.9.0+19519+e25b965a.noarch" + }, + "product_reference": "nodejs-packaging-0:2021.06-4.module+el8.9.0+19519+e25b965a.noarch", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-packaging-0:2021.06-4.module+el8.9.0+19519+e25b965a.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-packaging-0:2021.06-4.module+el8.9.0+19519+e25b965a.src" + }, + "product_reference": "nodejs-packaging-0:2021.06-4.module+el8.9.0+19519+e25b965a.src", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-packaging-bundler-0:2021.06-4.module+el8.9.0+19519+e25b965a.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:nodejs-packaging-bundler-0:2021.06-4.module+el8.9.0+19519+e25b965a.noarch" + }, + "product_reference": "nodejs-packaging-bundler-0:2021.06-4.module+el8.9.0+19519+e25b965a.noarch", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:10.1.0-1.20.8.1.1.module+el8.9.0+20473+c4e3d824.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:npm-1:10.1.0-1.20.8.1.1.module+el8.9.0+20473+c4e3d824.aarch64" + }, + "product_reference": "npm-1:10.1.0-1.20.8.1.1.module+el8.9.0+20473+c4e3d824.aarch64", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:10.1.0-1.20.8.1.1.module+el8.9.0+20473+c4e3d824.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:npm-1:10.1.0-1.20.8.1.1.module+el8.9.0+20473+c4e3d824.ppc64le" + }, + "product_reference": "npm-1:10.1.0-1.20.8.1.1.module+el8.9.0+20473+c4e3d824.ppc64le", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:10.1.0-1.20.8.1.1.module+el8.9.0+20473+c4e3d824.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:npm-1:10.1.0-1.20.8.1.1.module+el8.9.0+20473+c4e3d824.s390x" + }, + "product_reference": "npm-1:10.1.0-1.20.8.1.1.module+el8.9.0+20473+c4e3d824.s390x", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:10.1.0-1.20.8.1.1.module+el8.9.0+20473+c4e3d824.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", + "product_id": "AppStream-8.9.0.Z.MAIN:npm-1:10.1.0-1.20.8.1.1.module+el8.9.0+20473+c4e3d824.x86_64" + }, + "product_reference": "npm-1:10.1.0-1.20.8.1.1.module+el8.9.0+20473+c4e3d824.x86_64", + "relates_to_product_reference": "AppStream-8.9.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.aarch64" + }, + "product_reference": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.s390x" + }, + "product_reference": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.x86_64" + }, + "product_reference": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.aarch64" + }, + "product_reference": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.s390x" + }, + "product_reference": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.x86_64" + }, + "product_reference": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.aarch64" + }, + "product_reference": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.s390x" + }, + "product_reference": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.x86_64" + }, + "product_reference": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64" + }, + "product_reference": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.s390x" + }, + "product_reference": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64" + }, + "product_reference": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:6.0.23-1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-host-0:6.0.23-1.el9_0.aarch64" + }, + "product_reference": "dotnet-host-0:6.0.23-1.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:6.0.23-1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-host-0:6.0.23-1.el9_0.s390x" + }, + "product_reference": "dotnet-host-0:6.0.23-1.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:6.0.23-1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-host-0:6.0.23-1.el9_0.x86_64" + }, + "product_reference": "dotnet-host-0:6.0.23-1.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:6.0.23-1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-host-debuginfo-0:6.0.23-1.el9_0.aarch64" + }, + "product_reference": "dotnet-host-debuginfo-0:6.0.23-1.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:6.0.23-1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-host-debuginfo-0:6.0.23-1.el9_0.s390x" + }, + "product_reference": "dotnet-host-debuginfo-0:6.0.23-1.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:6.0.23-1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-host-debuginfo-0:6.0.23-1.el9_0.x86_64" + }, + "product_reference": "dotnet-host-debuginfo-0:6.0.23-1.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.aarch64" + }, + "product_reference": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.s390x" + }, + "product_reference": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.x86_64" + }, + "product_reference": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64" + }, + "product_reference": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.s390x" + }, + "product_reference": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64" + }, + "product_reference": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-runtime-6.0-0:6.0.23-1.el9_0.aarch64" + }, + "product_reference": "dotnet-runtime-6.0-0:6.0.23-1.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-runtime-6.0-0:6.0.23-1.el9_0.s390x" + }, + "product_reference": "dotnet-runtime-6.0-0:6.0.23-1.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-runtime-6.0-0:6.0.23-1.el9_0.x86_64" + }, + "product_reference": "dotnet-runtime-6.0-0:6.0.23-1.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64" + }, + "product_reference": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.s390x" + }, + "product_reference": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64" + }, + "product_reference": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-sdk-6.0-0:6.0.123-1.el9_0.aarch64" + }, + "product_reference": "dotnet-sdk-6.0-0:6.0.123-1.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-sdk-6.0-0:6.0.123-1.el9_0.s390x" + }, + "product_reference": "dotnet-sdk-6.0-0:6.0.123-1.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-sdk-6.0-0:6.0.123-1.el9_0.x86_64" + }, + "product_reference": "dotnet-sdk-6.0-0:6.0.123-1.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.aarch64" + }, + "product_reference": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.s390x" + }, + "product_reference": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.x86_64" + }, + "product_reference": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.aarch64" + }, + "product_reference": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.s390x" + }, + "product_reference": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.x86_64" + }, + "product_reference": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.aarch64" + }, + "product_reference": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.s390x" + }, + "product_reference": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.x86_64" + }, + "product_reference": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-templates-6.0-0:6.0.123-1.el9_0.aarch64" + }, + "product_reference": "dotnet-templates-6.0-0:6.0.123-1.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-templates-6.0-0:6.0.123-1.el9_0.s390x" + }, + "product_reference": "dotnet-templates-6.0-0:6.0.123-1.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet-templates-6.0-0:6.0.123-1.el9_0.x86_64" + }, + "product_reference": "dotnet-templates-6.0-0:6.0.123-1.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-0:6.0.123-1.el9_0.src as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet6.0-0:6.0.123-1.el9_0.src" + }, + "product_reference": "dotnet6.0-0:6.0.123-1.el9_0.src", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet6.0-debuginfo-0:6.0.123-1.el9_0.aarch64" + }, + "product_reference": "dotnet6.0-debuginfo-0:6.0.123-1.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet6.0-debuginfo-0:6.0.123-1.el9_0.s390x" + }, + "product_reference": "dotnet6.0-debuginfo-0:6.0.123-1.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet6.0-debuginfo-0:6.0.123-1.el9_0.x86_64" + }, + "product_reference": "dotnet6.0-debuginfo-0:6.0.123-1.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet6.0-debugsource-0:6.0.123-1.el9_0.aarch64" + }, + "product_reference": "dotnet6.0-debugsource-0:6.0.123-1.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet6.0-debugsource-0:6.0.123-1.el9_0.s390x" + }, + "product_reference": "dotnet6.0-debugsource-0:6.0.123-1.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:dotnet6.0-debugsource-0:6.0.123-1.el9_0.x86_64" + }, + "product_reference": "dotnet6.0-debugsource-0:6.0.123-1.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:7.5.11-6.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:grafana-0:7.5.11-6.el9_0.aarch64" + }, + "product_reference": "grafana-0:7.5.11-6.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:7.5.11-6.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:grafana-0:7.5.11-6.el9_0.ppc64le" + }, + "product_reference": "grafana-0:7.5.11-6.el9_0.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:7.5.11-6.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:grafana-0:7.5.11-6.el9_0.s390x" + }, + "product_reference": "grafana-0:7.5.11-6.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:7.5.11-6.el9_0.src as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:grafana-0:7.5.11-6.el9_0.src" + }, + "product_reference": "grafana-0:7.5.11-6.el9_0.src", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:7.5.11-6.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:grafana-0:7.5.11-6.el9_0.x86_64" + }, + "product_reference": "grafana-0:7.5.11-6.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debuginfo-0:7.5.11-6.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:grafana-debuginfo-0:7.5.11-6.el9_0.aarch64" + }, + "product_reference": "grafana-debuginfo-0:7.5.11-6.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debuginfo-0:7.5.11-6.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:grafana-debuginfo-0:7.5.11-6.el9_0.ppc64le" + }, + "product_reference": "grafana-debuginfo-0:7.5.11-6.el9_0.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debuginfo-0:7.5.11-6.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:grafana-debuginfo-0:7.5.11-6.el9_0.s390x" + }, + "product_reference": "grafana-debuginfo-0:7.5.11-6.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debuginfo-0:7.5.11-6.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:grafana-debuginfo-0:7.5.11-6.el9_0.x86_64" + }, + "product_reference": "grafana-debuginfo-0:7.5.11-6.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.aarch64" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.s390x" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.x86_64" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-10.el9_0.1.src as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-1:1.20.1-10.el9_0.1.src" + }, + "product_reference": "nginx-1:1.20.1-10.el9_0.1.src", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-all-modules-1:1.20.1-10.el9_0.1.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-all-modules-1:1.20.1-10.el9_0.1.noarch" + }, + "product_reference": "nginx-all-modules-1:1.20.1-10.el9_0.1.noarch", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-debuginfo-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-debuginfo-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-debuginfo-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-debuginfo-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-debugsource-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-debugsource-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-debugsource-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-debugsource-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-debugsource-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-debugsource-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-debugsource-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-debugsource-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-filesystem-1:1.20.1-10.el9_0.1.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-filesystem-1:1.20.1-10.el9_0.1.noarch" + }, + "product_reference": "nginx-filesystem-1:1.20.1-10.el9_0.1.noarch", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-devel-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-mod-devel-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-devel-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-mod-devel-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-devel-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-mod-devel-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-devel-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-mod-devel-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-http-perl-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-http-perl-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-http-perl-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-http-perl-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-mail-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-mod-mail-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-mail-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-mod-mail-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-mail-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-mod-mail-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-mail-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-mod-mail-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-stream-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-mod-stream-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-stream-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-mod-stream-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-stream-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-mod-stream-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-stream-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-mod-stream-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:16.20.2-3.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-1:16.20.2-3.el9_0.aarch64" + }, + "product_reference": "nodejs-1:16.20.2-3.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:16.20.2-3.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-1:16.20.2-3.el9_0.ppc64le" + }, + "product_reference": "nodejs-1:16.20.2-3.el9_0.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:16.20.2-3.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-1:16.20.2-3.el9_0.s390x" + }, + "product_reference": "nodejs-1:16.20.2-3.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:16.20.2-3.el9_0.src as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-1:16.20.2-3.el9_0.src" + }, + "product_reference": "nodejs-1:16.20.2-3.el9_0.src", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:16.20.2-3.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-1:16.20.2-3.el9_0.x86_64" + }, + "product_reference": "nodejs-1:16.20.2-3.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:16.20.2-3.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-debuginfo-1:16.20.2-3.el9_0.aarch64" + }, + "product_reference": "nodejs-debuginfo-1:16.20.2-3.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:16.20.2-3.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-debuginfo-1:16.20.2-3.el9_0.i686" + }, + "product_reference": "nodejs-debuginfo-1:16.20.2-3.el9_0.i686", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:16.20.2-3.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-debuginfo-1:16.20.2-3.el9_0.ppc64le" + }, + "product_reference": "nodejs-debuginfo-1:16.20.2-3.el9_0.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:16.20.2-3.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-debuginfo-1:16.20.2-3.el9_0.s390x" + }, + "product_reference": "nodejs-debuginfo-1:16.20.2-3.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:16.20.2-3.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-debuginfo-1:16.20.2-3.el9_0.x86_64" + }, + "product_reference": "nodejs-debuginfo-1:16.20.2-3.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:16.20.2-3.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-debugsource-1:16.20.2-3.el9_0.aarch64" + }, + "product_reference": "nodejs-debugsource-1:16.20.2-3.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:16.20.2-3.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-debugsource-1:16.20.2-3.el9_0.i686" + }, + "product_reference": "nodejs-debugsource-1:16.20.2-3.el9_0.i686", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:16.20.2-3.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-debugsource-1:16.20.2-3.el9_0.ppc64le" + }, + "product_reference": "nodejs-debugsource-1:16.20.2-3.el9_0.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:16.20.2-3.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-debugsource-1:16.20.2-3.el9_0.s390x" + }, + "product_reference": "nodejs-debugsource-1:16.20.2-3.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:16.20.2-3.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-debugsource-1:16.20.2-3.el9_0.x86_64" + }, + "product_reference": "nodejs-debugsource-1:16.20.2-3.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-docs-1:16.20.2-3.el9_0.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-docs-1:16.20.2-3.el9_0.noarch" + }, + "product_reference": "nodejs-docs-1:16.20.2-3.el9_0.noarch", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:16.20.2-3.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-full-i18n-1:16.20.2-3.el9_0.aarch64" + }, + "product_reference": "nodejs-full-i18n-1:16.20.2-3.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:16.20.2-3.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-full-i18n-1:16.20.2-3.el9_0.ppc64le" + }, + "product_reference": "nodejs-full-i18n-1:16.20.2-3.el9_0.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:16.20.2-3.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-full-i18n-1:16.20.2-3.el9_0.s390x" + }, + "product_reference": "nodejs-full-i18n-1:16.20.2-3.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:16.20.2-3.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-full-i18n-1:16.20.2-3.el9_0.x86_64" + }, + "product_reference": "nodejs-full-i18n-1:16.20.2-3.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-libs-1:16.20.2-3.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-libs-1:16.20.2-3.el9_0.aarch64" + }, + "product_reference": "nodejs-libs-1:16.20.2-3.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-libs-1:16.20.2-3.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-libs-1:16.20.2-3.el9_0.i686" + }, + "product_reference": "nodejs-libs-1:16.20.2-3.el9_0.i686", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-libs-1:16.20.2-3.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-libs-1:16.20.2-3.el9_0.ppc64le" + }, + "product_reference": "nodejs-libs-1:16.20.2-3.el9_0.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-libs-1:16.20.2-3.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-libs-1:16.20.2-3.el9_0.s390x" + }, + "product_reference": "nodejs-libs-1:16.20.2-3.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-libs-1:16.20.2-3.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-libs-1:16.20.2-3.el9_0.x86_64" + }, + "product_reference": "nodejs-libs-1:16.20.2-3.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-libs-debuginfo-1:16.20.2-3.el9_0.aarch64" + }, + "product_reference": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-libs-debuginfo-1:16.20.2-3.el9_0.i686" + }, + "product_reference": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.i686", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-libs-debuginfo-1:16.20.2-3.el9_0.ppc64le" + }, + "product_reference": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-libs-debuginfo-1:16.20.2-3.el9_0.s390x" + }, + "product_reference": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:nodejs-libs-debuginfo-1:16.20.2-3.el9_0.x86_64" + }, + "product_reference": "nodejs-libs-debuginfo-1:16.20.2-3.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:8.19.4-1.16.20.2.3.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:npm-1:8.19.4-1.16.20.2.3.el9_0.aarch64" + }, + "product_reference": "npm-1:8.19.4-1.16.20.2.3.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:8.19.4-1.16.20.2.3.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:npm-1:8.19.4-1.16.20.2.3.el9_0.ppc64le" + }, + "product_reference": "npm-1:8.19.4-1.16.20.2.3.el9_0.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:8.19.4-1.16.20.2.3.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:npm-1:8.19.4-1.16.20.2.3.el9_0.s390x" + }, + "product_reference": "npm-1:8.19.4-1.16.20.2.3.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:8.19.4-1.16.20.2.3.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:npm-1:8.19.4-1.16.20.2.3.el9_0.x86_64" + }, + "product_reference": "npm-1:8.19.4-1.16.20.2.3.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-0:0.0.99.3-4.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:toolbox-0:0.0.99.3-4.el9_0.aarch64" + }, + "product_reference": "toolbox-0:0.0.99.3-4.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-0:0.0.99.3-4.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:toolbox-0:0.0.99.3-4.el9_0.ppc64le" + }, + "product_reference": "toolbox-0:0.0.99.3-4.el9_0.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-0:0.0.99.3-4.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:toolbox-0:0.0.99.3-4.el9_0.s390x" + }, + "product_reference": "toolbox-0:0.0.99.3-4.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-0:0.0.99.3-4.el9_0.src as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:toolbox-0:0.0.99.3-4.el9_0.src" + }, + "product_reference": "toolbox-0:0.0.99.3-4.el9_0.src", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-0:0.0.99.3-4.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:toolbox-0:0.0.99.3-4.el9_0.x86_64" + }, + "product_reference": "toolbox-0:0.0.99.3-4.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-debuginfo-0:0.0.99.3-4.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:toolbox-debuginfo-0:0.0.99.3-4.el9_0.aarch64" + }, + "product_reference": "toolbox-debuginfo-0:0.0.99.3-4.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-debuginfo-0:0.0.99.3-4.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:toolbox-debuginfo-0:0.0.99.3-4.el9_0.ppc64le" + }, + "product_reference": "toolbox-debuginfo-0:0.0.99.3-4.el9_0.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-debuginfo-0:0.0.99.3-4.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:toolbox-debuginfo-0:0.0.99.3-4.el9_0.s390x" + }, + "product_reference": "toolbox-debuginfo-0:0.0.99.3-4.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-debuginfo-0:0.0.99.3-4.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:toolbox-debuginfo-0:0.0.99.3-4.el9_0.x86_64" + }, + "product_reference": "toolbox-debuginfo-0:0.0.99.3-4.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-debugsource-0:0.0.99.3-4.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:toolbox-debugsource-0:0.0.99.3-4.el9_0.aarch64" + }, + "product_reference": "toolbox-debugsource-0:0.0.99.3-4.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-debugsource-0:0.0.99.3-4.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:toolbox-debugsource-0:0.0.99.3-4.el9_0.ppc64le" + }, + "product_reference": "toolbox-debugsource-0:0.0.99.3-4.el9_0.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-debugsource-0:0.0.99.3-4.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:toolbox-debugsource-0:0.0.99.3-4.el9_0.s390x" + }, + "product_reference": "toolbox-debugsource-0:0.0.99.3-4.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-debugsource-0:0.0.99.3-4.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:toolbox-debugsource-0:0.0.99.3-4.el9_0.x86_64" + }, + "product_reference": "toolbox-debugsource-0:0.0.99.3-4.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-tests-0:0.0.99.3-4.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:toolbox-tests-0:0.0.99.3-4.el9_0.aarch64" + }, + "product_reference": "toolbox-tests-0:0.0.99.3-4.el9_0.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-tests-0:0.0.99.3-4.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:toolbox-tests-0:0.0.99.3-4.el9_0.ppc64le" + }, + "product_reference": "toolbox-tests-0:0.0.99.3-4.el9_0.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-tests-0:0.0.99.3-4.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:toolbox-tests-0:0.0.99.3-4.el9_0.s390x" + }, + "product_reference": "toolbox-tests-0:0.0.99.3-4.el9_0.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-tests-0:0.0.99.3-4.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:toolbox-tests-0:0.0.99.3-4.el9_0.x86_64" + }, + "product_reference": "toolbox-tests-0:0.0.99.3-4.el9_0.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.6.2-2.el9_0.2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:varnish-0:6.6.2-2.el9_0.2.aarch64" + }, + "product_reference": "varnish-0:6.6.2-2.el9_0.2.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.6.2-2.el9_0.2.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:varnish-0:6.6.2-2.el9_0.2.i686" + }, + "product_reference": "varnish-0:6.6.2-2.el9_0.2.i686", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.6.2-2.el9_0.2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:varnish-0:6.6.2-2.el9_0.2.ppc64le" + }, + "product_reference": "varnish-0:6.6.2-2.el9_0.2.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.6.2-2.el9_0.2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:varnish-0:6.6.2-2.el9_0.2.s390x" + }, + "product_reference": "varnish-0:6.6.2-2.el9_0.2.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.6.2-2.el9_0.2.src as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:varnish-0:6.6.2-2.el9_0.2.src" + }, + "product_reference": "varnish-0:6.6.2-2.el9_0.2.src", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.6.2-2.el9_0.2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:varnish-0:6.6.2-2.el9_0.2.x86_64" + }, + "product_reference": "varnish-0:6.6.2-2.el9_0.2.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.6.2-2.el9_0.2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:varnish-devel-0:6.6.2-2.el9_0.2.aarch64" + }, + "product_reference": "varnish-devel-0:6.6.2-2.el9_0.2.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.6.2-2.el9_0.2.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:varnish-devel-0:6.6.2-2.el9_0.2.i686" + }, + "product_reference": "varnish-devel-0:6.6.2-2.el9_0.2.i686", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.6.2-2.el9_0.2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:varnish-devel-0:6.6.2-2.el9_0.2.ppc64le" + }, + "product_reference": "varnish-devel-0:6.6.2-2.el9_0.2.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.6.2-2.el9_0.2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:varnish-devel-0:6.6.2-2.el9_0.2.s390x" + }, + "product_reference": "varnish-devel-0:6.6.2-2.el9_0.2.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.6.2-2.el9_0.2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:varnish-devel-0:6.6.2-2.el9_0.2.x86_64" + }, + "product_reference": "varnish-devel-0:6.6.2-2.el9_0.2.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.6.2-2.el9_0.2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:varnish-docs-0:6.6.2-2.el9_0.2.aarch64" + }, + "product_reference": "varnish-docs-0:6.6.2-2.el9_0.2.aarch64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.6.2-2.el9_0.2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:varnish-docs-0:6.6.2-2.el9_0.2.ppc64le" + }, + "product_reference": "varnish-docs-0:6.6.2-2.el9_0.2.ppc64le", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.6.2-2.el9_0.2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:varnish-docs-0:6.6.2-2.el9_0.2.s390x" + }, + "product_reference": "varnish-docs-0:6.6.2-2.el9_0.2.s390x", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.6.2-2.el9_0.2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)", + "product_id": "AppStream-9.0.0.Z.EUS:varnish-docs-0:6.6.2-2.el9_0.2.x86_64" + }, + "product_reference": "varnish-docs-0:6.6.2-2.el9_0.2.x86_64", + "relates_to_product_reference": "AppStream-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.aarch64" + }, + "product_reference": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.s390x" + }, + "product_reference": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.x86_64" + }, + "product_reference": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.aarch64" + }, + "product_reference": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.ppc64le" + }, + "product_reference": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.s390x" + }, + "product_reference": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.x86_64" + }, + "product_reference": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.aarch64" + }, + "product_reference": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.s390x" + }, + "product_reference": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.x86_64" + }, + "product_reference": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.aarch64" + }, + "product_reference": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.ppc64le" + }, + "product_reference": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.s390x" + }, + "product_reference": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.x86_64" + }, + "product_reference": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.aarch64" + }, + "product_reference": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.s390x" + }, + "product_reference": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.x86_64" + }, + "product_reference": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64" + }, + "product_reference": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.s390x" + }, + "product_reference": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64" + }, + "product_reference": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.aarch64" + }, + "product_reference": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.s390x" + }, + "product_reference": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.x86_64" + }, + "product_reference": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64" + }, + "product_reference": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.s390x" + }, + "product_reference": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64" + }, + "product_reference": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:7.0.12-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-host-0:7.0.12-1.el9_2.aarch64" + }, + "product_reference": "dotnet-host-0:7.0.12-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:7.0.12-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-host-0:7.0.12-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-host-0:7.0.12-1.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:7.0.12-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-host-0:7.0.12-1.el9_2.s390x" + }, + "product_reference": "dotnet-host-0:7.0.12-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:7.0.12-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-host-0:7.0.12-1.el9_2.x86_64" + }, + "product_reference": "dotnet-host-0:7.0.12-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-host-debuginfo-0:7.0.12-1.el9_2.aarch64" + }, + "product_reference": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-host-debuginfo-0:7.0.12-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-host-debuginfo-0:7.0.12-1.el9_2.s390x" + }, + "product_reference": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-host-debuginfo-0:7.0.12-1.el9_2.x86_64" + }, + "product_reference": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.aarch64" + }, + "product_reference": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.s390x" + }, + "product_reference": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.x86_64" + }, + "product_reference": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64" + }, + "product_reference": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.s390x" + }, + "product_reference": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64" + }, + "product_reference": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.aarch64" + }, + "product_reference": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.s390x" + }, + "product_reference": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.x86_64" + }, + "product_reference": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64" + }, + "product_reference": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.s390x" + }, + "product_reference": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64" + }, + "product_reference": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-runtime-6.0-0:6.0.23-1.el9_2.aarch64" + }, + "product_reference": "dotnet-runtime-6.0-0:6.0.23-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-runtime-6.0-0:6.0.23-1.el9_2.s390x" + }, + "product_reference": "dotnet-runtime-6.0-0:6.0.23-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-runtime-6.0-0:6.0.23-1.el9_2.x86_64" + }, + "product_reference": "dotnet-runtime-6.0-0:6.0.23-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64" + }, + "product_reference": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.s390x" + }, + "product_reference": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64" + }, + "product_reference": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-runtime-7.0-0:7.0.12-1.el9_2.aarch64" + }, + "product_reference": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-runtime-7.0-0:7.0.12-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-runtime-7.0-0:7.0.12-1.el9_2.s390x" + }, + "product_reference": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-runtime-7.0-0:7.0.12-1.el9_2.x86_64" + }, + "product_reference": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64" + }, + "product_reference": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.s390x" + }, + "product_reference": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64" + }, + "product_reference": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-sdk-6.0-0:6.0.123-1.el9_2.aarch64" + }, + "product_reference": "dotnet-sdk-6.0-0:6.0.123-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-sdk-6.0-0:6.0.123-1.el9_2.s390x" + }, + "product_reference": "dotnet-sdk-6.0-0:6.0.123-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-sdk-6.0-0:6.0.123-1.el9_2.x86_64" + }, + "product_reference": "dotnet-sdk-6.0-0:6.0.123-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.aarch64" + }, + "product_reference": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.s390x" + }, + "product_reference": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.x86_64" + }, + "product_reference": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.aarch64" + }, + "product_reference": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.s390x" + }, + "product_reference": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.x86_64" + }, + "product_reference": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-sdk-7.0-0:7.0.112-1.el9_2.aarch64" + }, + "product_reference": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-sdk-7.0-0:7.0.112-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-sdk-7.0-0:7.0.112-1.el9_2.s390x" + }, + "product_reference": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-sdk-7.0-0:7.0.112-1.el9_2.x86_64" + }, + "product_reference": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.aarch64" + }, + "product_reference": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.s390x" + }, + "product_reference": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.x86_64" + }, + "product_reference": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.aarch64" + }, + "product_reference": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.s390x" + }, + "product_reference": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.x86_64" + }, + "product_reference": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.aarch64" + }, + "product_reference": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.s390x" + }, + "product_reference": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.x86_64" + }, + "product_reference": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.aarch64" + }, + "product_reference": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.s390x" + }, + "product_reference": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.x86_64" + }, + "product_reference": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-templates-6.0-0:6.0.123-1.el9_2.aarch64" + }, + "product_reference": "dotnet-templates-6.0-0:6.0.123-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-templates-6.0-0:6.0.123-1.el9_2.s390x" + }, + "product_reference": "dotnet-templates-6.0-0:6.0.123-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-templates-6.0-0:6.0.123-1.el9_2.x86_64" + }, + "product_reference": "dotnet-templates-6.0-0:6.0.123-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-7.0-0:7.0.112-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-templates-7.0-0:7.0.112-1.el9_2.aarch64" + }, + "product_reference": "dotnet-templates-7.0-0:7.0.112-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-7.0-0:7.0.112-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-templates-7.0-0:7.0.112-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-templates-7.0-0:7.0.112-1.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-7.0-0:7.0.112-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-templates-7.0-0:7.0.112-1.el9_2.s390x" + }, + "product_reference": "dotnet-templates-7.0-0:7.0.112-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-7.0-0:7.0.112-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet-templates-7.0-0:7.0.112-1.el9_2.x86_64" + }, + "product_reference": "dotnet-templates-7.0-0:7.0.112-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-0:6.0.123-1.el9_2.src as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet6.0-0:6.0.123-1.el9_2.src" + }, + "product_reference": "dotnet6.0-0:6.0.123-1.el9_2.src", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet6.0-debuginfo-0:6.0.123-1.el9_2.aarch64" + }, + "product_reference": "dotnet6.0-debuginfo-0:6.0.123-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet6.0-debuginfo-0:6.0.123-1.el9_2.s390x" + }, + "product_reference": "dotnet6.0-debuginfo-0:6.0.123-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet6.0-debuginfo-0:6.0.123-1.el9_2.x86_64" + }, + "product_reference": "dotnet6.0-debuginfo-0:6.0.123-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet6.0-debugsource-0:6.0.123-1.el9_2.aarch64" + }, + "product_reference": "dotnet6.0-debugsource-0:6.0.123-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet6.0-debugsource-0:6.0.123-1.el9_2.s390x" + }, + "product_reference": "dotnet6.0-debugsource-0:6.0.123-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet6.0-debugsource-0:6.0.123-1.el9_2.x86_64" + }, + "product_reference": "dotnet6.0-debugsource-0:6.0.123-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-0:7.0.112-1.el9_2.src as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet7.0-0:7.0.112-1.el9_2.src" + }, + "product_reference": "dotnet7.0-0:7.0.112-1.el9_2.src", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet7.0-debuginfo-0:7.0.112-1.el9_2.aarch64" + }, + "product_reference": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet7.0-debuginfo-0:7.0.112-1.el9_2.ppc64le" + }, + "product_reference": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet7.0-debuginfo-0:7.0.112-1.el9_2.s390x" + }, + "product_reference": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet7.0-debuginfo-0:7.0.112-1.el9_2.x86_64" + }, + "product_reference": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet7.0-debugsource-0:7.0.112-1.el9_2.aarch64" + }, + "product_reference": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet7.0-debugsource-0:7.0.112-1.el9_2.ppc64le" + }, + "product_reference": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet7.0-debugsource-0:7.0.112-1.el9_2.s390x" + }, + "product_reference": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:dotnet7.0-debugsource-0:7.0.112-1.el9_2.x86_64" + }, + "product_reference": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-0:1.19.13-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:go-toolset-0:1.19.13-1.el9_2.aarch64" + }, + "product_reference": "go-toolset-0:1.19.13-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-0:1.19.13-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:go-toolset-0:1.19.13-1.el9_2.ppc64le" + }, + "product_reference": "go-toolset-0:1.19.13-1.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-0:1.19.13-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:go-toolset-0:1.19.13-1.el9_2.s390x" + }, + "product_reference": "go-toolset-0:1.19.13-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-0:1.19.13-1.el9_2.src as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:go-toolset-0:1.19.13-1.el9_2.src" + }, + "product_reference": "go-toolset-0:1.19.13-1.el9_2.src", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-0:1.19.13-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:go-toolset-0:1.19.13-1.el9_2.x86_64" + }, + "product_reference": "go-toolset-0:1.19.13-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-0:1.19.13-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:golang-0:1.19.13-1.el9_2.aarch64" + }, + "product_reference": "golang-0:1.19.13-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-0:1.19.13-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:golang-0:1.19.13-1.el9_2.ppc64le" + }, + "product_reference": "golang-0:1.19.13-1.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-0:1.19.13-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:golang-0:1.19.13-1.el9_2.s390x" + }, + "product_reference": "golang-0:1.19.13-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-0:1.19.13-1.el9_2.src as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:golang-0:1.19.13-1.el9_2.src" + }, + "product_reference": "golang-0:1.19.13-1.el9_2.src", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-0:1.19.13-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:golang-0:1.19.13-1.el9_2.x86_64" + }, + "product_reference": "golang-0:1.19.13-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-bin-0:1.19.13-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:golang-bin-0:1.19.13-1.el9_2.aarch64" + }, + "product_reference": "golang-bin-0:1.19.13-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-bin-0:1.19.13-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:golang-bin-0:1.19.13-1.el9_2.ppc64le" + }, + "product_reference": "golang-bin-0:1.19.13-1.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-bin-0:1.19.13-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:golang-bin-0:1.19.13-1.el9_2.s390x" + }, + "product_reference": "golang-bin-0:1.19.13-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-bin-0:1.19.13-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:golang-bin-0:1.19.13-1.el9_2.x86_64" + }, + "product_reference": "golang-bin-0:1.19.13-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-docs-0:1.19.13-1.el9_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:golang-docs-0:1.19.13-1.el9_2.noarch" + }, + "product_reference": "golang-docs-0:1.19.13-1.el9_2.noarch", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-misc-0:1.19.13-1.el9_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:golang-misc-0:1.19.13-1.el9_2.noarch" + }, + "product_reference": "golang-misc-0:1.19.13-1.el9_2.noarch", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-race-0:1.19.13-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:golang-race-0:1.19.13-1.el9_2.x86_64" + }, + "product_reference": "golang-race-0:1.19.13-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-src-0:1.19.13-1.el9_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:golang-src-0:1.19.13-1.el9_2.noarch" + }, + "product_reference": "golang-src-0:1.19.13-1.el9_2.noarch", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-tests-0:1.19.13-1.el9_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:golang-tests-0:1.19.13-1.el9_2.noarch" + }, + "product_reference": "golang-tests-0:1.19.13-1.el9_2.noarch", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:9.0.9-4.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:grafana-0:9.0.9-4.el9_2.aarch64" + }, + "product_reference": "grafana-0:9.0.9-4.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:9.0.9-4.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:grafana-0:9.0.9-4.el9_2.ppc64le" + }, + "product_reference": "grafana-0:9.0.9-4.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:9.0.9-4.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:grafana-0:9.0.9-4.el9_2.s390x" + }, + "product_reference": "grafana-0:9.0.9-4.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:9.0.9-4.el9_2.src as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:grafana-0:9.0.9-4.el9_2.src" + }, + "product_reference": "grafana-0:9.0.9-4.el9_2.src", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-0:9.0.9-4.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:grafana-0:9.0.9-4.el9_2.x86_64" + }, + "product_reference": "grafana-0:9.0.9-4.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debuginfo-0:9.0.9-4.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:grafana-debuginfo-0:9.0.9-4.el9_2.aarch64" + }, + "product_reference": "grafana-debuginfo-0:9.0.9-4.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debuginfo-0:9.0.9-4.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:grafana-debuginfo-0:9.0.9-4.el9_2.ppc64le" + }, + "product_reference": "grafana-debuginfo-0:9.0.9-4.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debuginfo-0:9.0.9-4.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:grafana-debuginfo-0:9.0.9-4.el9_2.s390x" + }, + "product_reference": "grafana-debuginfo-0:9.0.9-4.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debuginfo-0:9.0.9-4.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:grafana-debuginfo-0:9.0.9-4.el9_2.x86_64" + }, + "product_reference": "grafana-debuginfo-0:9.0.9-4.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debugsource-0:9.0.9-4.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:grafana-debugsource-0:9.0.9-4.el9_2.aarch64" + }, + "product_reference": "grafana-debugsource-0:9.0.9-4.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debugsource-0:9.0.9-4.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:grafana-debugsource-0:9.0.9-4.el9_2.ppc64le" + }, + "product_reference": "grafana-debugsource-0:9.0.9-4.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debugsource-0:9.0.9-4.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:grafana-debugsource-0:9.0.9-4.el9_2.s390x" + }, + "product_reference": "grafana-debugsource-0:9.0.9-4.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-debugsource-0:9.0.9-4.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:grafana-debugsource-0:9.0.9-4.el9_2.x86_64" + }, + "product_reference": "grafana-debugsource-0:9.0.9-4.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.aarch64" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.ppc64le" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.s390x" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.x86_64" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-14.el9_2.1.src as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-1:1.20.1-14.el9_2.1.src" + }, + "product_reference": "nginx-1:1.20.1-14.el9_2.1.src", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64" + }, + "product_reference": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le" + }, + "product_reference": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x" + }, + "product_reference": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.src as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.src" + }, + "product_reference": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.src", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64" + }, + "product_reference": "nginx-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-all-modules-1:1.20.1-14.el9_2.1.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-all-modules-1:1.20.1-14.el9_2.1.noarch" + }, + "product_reference": "nginx-all-modules-1:1.20.1-14.el9_2.1.noarch", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-all-modules-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-all-modules-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.noarch" + }, + "product_reference": "nginx-all-modules-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.noarch", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-core-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-core-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-core-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-core-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-core-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-core-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-core-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-core-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-core-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-core-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-core-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-core-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-core-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-core-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64" + }, + "product_reference": "nginx-core-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-core-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-core-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le" + }, + "product_reference": "nginx-core-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-core-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-core-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x" + }, + "product_reference": "nginx-core-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-core-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-core-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64" + }, + "product_reference": "nginx-core-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-core-debuginfo-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-core-debuginfo-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-core-debuginfo-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-core-debuginfo-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-core-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-core-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64" + }, + "product_reference": "nginx-core-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-core-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-core-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le" + }, + "product_reference": "nginx-core-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-core-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-core-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x" + }, + "product_reference": "nginx-core-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-core-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-core-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64" + }, + "product_reference": "nginx-core-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-debuginfo-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-debuginfo-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-debuginfo-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-debuginfo-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64" + }, + "product_reference": "nginx-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le" + }, + "product_reference": "nginx-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x" + }, + "product_reference": "nginx-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64" + }, + "product_reference": "nginx-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-debugsource-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-debugsource-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-debugsource-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-debugsource-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-debugsource-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-debugsource-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-debugsource-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-debugsource-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-debugsource-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64" + }, + "product_reference": "nginx-debugsource-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-debugsource-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le" + }, + "product_reference": "nginx-debugsource-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-debugsource-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x" + }, + "product_reference": "nginx-debugsource-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-debugsource-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64" + }, + "product_reference": "nginx-debugsource-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-filesystem-1:1.20.1-14.el9_2.1.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-filesystem-1:1.20.1-14.el9_2.1.noarch" + }, + "product_reference": "nginx-filesystem-1:1.20.1-14.el9_2.1.noarch", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-filesystem-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-filesystem-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.noarch" + }, + "product_reference": "nginx-filesystem-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.noarch", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-devel-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-mod-devel-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-devel-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-mod-devel-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-devel-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-mod-devel-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-devel-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-mod-devel-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-devel-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64" + }, + "product_reference": "nginx-mod-devel-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-devel-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le" + }, + "product_reference": "nginx-mod-devel-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-devel-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x" + }, + "product_reference": "nginx-mod-devel-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-devel-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64" + }, + "product_reference": "nginx-mod-devel-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-image-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-image-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-image-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-image-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-image-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-image-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-image-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-image-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-perl-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-perl-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-perl-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-perl-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-perl-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64" + }, + "product_reference": "nginx-mod-http-perl-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-perl-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le" + }, + "product_reference": "nginx-mod-http-perl-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-perl-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x" + }, + "product_reference": "nginx-mod-http-perl-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-perl-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64" + }, + "product_reference": "nginx-mod-http-perl-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-perl-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-perl-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-perl-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-perl-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-mail-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-mod-mail-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-mail-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-mod-mail-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-mail-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-mod-mail-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-mail-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-mod-mail-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-mail-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64" + }, + "product_reference": "nginx-mod-mail-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-mail-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le" + }, + "product_reference": "nginx-mod-mail-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-mail-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x" + }, + "product_reference": "nginx-mod-mail-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-mail-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64" + }, + "product_reference": "nginx-mod-mail-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-mail-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-mail-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-mail-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-mail-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-stream-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-mod-stream-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-stream-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-mod-stream-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-stream-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-mod-stream-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-stream-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-mod-stream-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-stream-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64" + }, + "product_reference": "nginx-mod-stream-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-stream-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le" + }, + "product_reference": "nginx-mod-stream-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-stream-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x" + }, + "product_reference": "nginx-mod-stream-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-stream-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64" + }, + "product_reference": "nginx-mod-stream-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-stream-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-stream-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-stream-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nginx-mod-stream-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.22.1-3.module+el9.2.0.z+20353+5a828d50.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:16.20.2-3.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-1:16.20.2-3.el9_2.aarch64" + }, + "product_reference": "nodejs-1:16.20.2-3.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:16.20.2-3.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-1:16.20.2-3.el9_2.ppc64le" + }, + "product_reference": "nodejs-1:16.20.2-3.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:16.20.2-3.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-1:16.20.2-3.el9_2.s390x" + }, + "product_reference": "nodejs-1:16.20.2-3.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:16.20.2-3.el9_2.src as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-1:16.20.2-3.el9_2.src" + }, + "product_reference": "nodejs-1:16.20.2-3.el9_2.src", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:16.20.2-3.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-1:16.20.2-3.el9_2.x86_64" + }, + "product_reference": "nodejs-1:16.20.2-3.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64" + }, + "product_reference": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le" + }, + "product_reference": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x" + }, + "product_reference": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.src as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.src" + }, + "product_reference": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.src", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64" + }, + "product_reference": "nodejs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:16.20.2-3.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-debuginfo-1:16.20.2-3.el9_2.aarch64" + }, + "product_reference": "nodejs-debuginfo-1:16.20.2-3.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:16.20.2-3.el9_2.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-debuginfo-1:16.20.2-3.el9_2.i686" + }, + "product_reference": "nodejs-debuginfo-1:16.20.2-3.el9_2.i686", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:16.20.2-3.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-debuginfo-1:16.20.2-3.el9_2.ppc64le" + }, + "product_reference": "nodejs-debuginfo-1:16.20.2-3.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:16.20.2-3.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-debuginfo-1:16.20.2-3.el9_2.s390x" + }, + "product_reference": "nodejs-debuginfo-1:16.20.2-3.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:16.20.2-3.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-debuginfo-1:16.20.2-3.el9_2.x86_64" + }, + "product_reference": "nodejs-debuginfo-1:16.20.2-3.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-debuginfo-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64" + }, + "product_reference": "nodejs-debuginfo-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-debuginfo-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le" + }, + "product_reference": "nodejs-debuginfo-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-debuginfo-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x" + }, + "product_reference": "nodejs-debuginfo-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debuginfo-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-debuginfo-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64" + }, + "product_reference": "nodejs-debuginfo-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:16.20.2-3.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-debugsource-1:16.20.2-3.el9_2.aarch64" + }, + "product_reference": "nodejs-debugsource-1:16.20.2-3.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:16.20.2-3.el9_2.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-debugsource-1:16.20.2-3.el9_2.i686" + }, + "product_reference": "nodejs-debugsource-1:16.20.2-3.el9_2.i686", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:16.20.2-3.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-debugsource-1:16.20.2-3.el9_2.ppc64le" + }, + "product_reference": "nodejs-debugsource-1:16.20.2-3.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:16.20.2-3.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-debugsource-1:16.20.2-3.el9_2.s390x" + }, + "product_reference": "nodejs-debugsource-1:16.20.2-3.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:16.20.2-3.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-debugsource-1:16.20.2-3.el9_2.x86_64" + }, + "product_reference": "nodejs-debugsource-1:16.20.2-3.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-debugsource-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64" + }, + "product_reference": "nodejs-debugsource-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-debugsource-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le" + }, + "product_reference": "nodejs-debugsource-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-debugsource-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x" + }, + "product_reference": "nodejs-debugsource-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-debugsource-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-debugsource-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64" + }, + "product_reference": "nodejs-debugsource-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-devel-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-devel-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64" + }, + "product_reference": "nodejs-devel-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-devel-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-devel-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le" + }, + "product_reference": "nodejs-devel-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-devel-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-devel-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x" + }, + "product_reference": "nodejs-devel-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-devel-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-devel-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64" + }, + "product_reference": "nodejs-devel-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-docs-1:16.20.2-3.el9_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-docs-1:16.20.2-3.el9_2.noarch" + }, + "product_reference": "nodejs-docs-1:16.20.2-3.el9_2.noarch", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-docs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-docs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.noarch" + }, + "product_reference": "nodejs-docs-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.noarch", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:16.20.2-3.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-full-i18n-1:16.20.2-3.el9_2.aarch64" + }, + "product_reference": "nodejs-full-i18n-1:16.20.2-3.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:16.20.2-3.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-full-i18n-1:16.20.2-3.el9_2.ppc64le" + }, + "product_reference": "nodejs-full-i18n-1:16.20.2-3.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:16.20.2-3.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-full-i18n-1:16.20.2-3.el9_2.s390x" + }, + "product_reference": "nodejs-full-i18n-1:16.20.2-3.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:16.20.2-3.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-full-i18n-1:16.20.2-3.el9_2.x86_64" + }, + "product_reference": "nodejs-full-i18n-1:16.20.2-3.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-full-i18n-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64" + }, + "product_reference": "nodejs-full-i18n-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-full-i18n-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le" + }, + "product_reference": "nodejs-full-i18n-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-full-i18n-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x" + }, + "product_reference": "nodejs-full-i18n-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-full-i18n-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-full-i18n-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64" + }, + "product_reference": "nodejs-full-i18n-1:18.18.2-2.module+el9.2.0.z+20408+7cb5fda5.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-libs-1:16.20.2-3.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-libs-1:16.20.2-3.el9_2.aarch64" + }, + "product_reference": "nodejs-libs-1:16.20.2-3.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-libs-1:16.20.2-3.el9_2.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-libs-1:16.20.2-3.el9_2.i686" + }, + "product_reference": "nodejs-libs-1:16.20.2-3.el9_2.i686", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-libs-1:16.20.2-3.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-libs-1:16.20.2-3.el9_2.ppc64le" + }, + "product_reference": "nodejs-libs-1:16.20.2-3.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-libs-1:16.20.2-3.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-libs-1:16.20.2-3.el9_2.s390x" + }, + "product_reference": "nodejs-libs-1:16.20.2-3.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-libs-1:16.20.2-3.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-libs-1:16.20.2-3.el9_2.x86_64" + }, + "product_reference": "nodejs-libs-1:16.20.2-3.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-libs-debuginfo-1:16.20.2-3.el9_2.aarch64" + }, + "product_reference": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-libs-debuginfo-1:16.20.2-3.el9_2.i686" + }, + "product_reference": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.i686", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-libs-debuginfo-1:16.20.2-3.el9_2.ppc64le" + }, + "product_reference": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-libs-debuginfo-1:16.20.2-3.el9_2.s390x" + }, + "product_reference": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-libs-debuginfo-1:16.20.2-3.el9_2.x86_64" + }, + "product_reference": "nodejs-libs-debuginfo-1:16.20.2-3.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-nodemon-0:3.0.1-1.module+el9.2.0.z+19753+58118bc0.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-nodemon-0:3.0.1-1.module+el9.2.0.z+19753+58118bc0.noarch" + }, + "product_reference": "nodejs-nodemon-0:3.0.1-1.module+el9.2.0.z+19753+58118bc0.noarch", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-nodemon-0:3.0.1-1.module+el9.2.0.z+19753+58118bc0.src as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-nodemon-0:3.0.1-1.module+el9.2.0.z+19753+58118bc0.src" + }, + "product_reference": "nodejs-nodemon-0:3.0.1-1.module+el9.2.0.z+19753+58118bc0.src", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-packaging-0:2021.06-4.module+el9.1.0+15718+e52ec601.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-packaging-0:2021.06-4.module+el9.1.0+15718+e52ec601.noarch" + }, + "product_reference": "nodejs-packaging-0:2021.06-4.module+el9.1.0+15718+e52ec601.noarch", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-packaging-0:2021.06-4.module+el9.1.0+15718+e52ec601.src as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-packaging-0:2021.06-4.module+el9.1.0+15718+e52ec601.src" + }, + "product_reference": "nodejs-packaging-0:2021.06-4.module+el9.1.0+15718+e52ec601.src", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs-packaging-bundler-0:2021.06-4.module+el9.1.0+15718+e52ec601.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:nodejs-packaging-bundler-0:2021.06-4.module+el9.1.0+15718+e52ec601.noarch" + }, + "product_reference": "nodejs-packaging-bundler-0:2021.06-4.module+el9.1.0+15718+e52ec601.noarch", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:8.19.4-1.16.20.2.3.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:npm-1:8.19.4-1.16.20.2.3.el9_2.aarch64" + }, + "product_reference": "npm-1:8.19.4-1.16.20.2.3.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:8.19.4-1.16.20.2.3.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:npm-1:8.19.4-1.16.20.2.3.el9_2.ppc64le" + }, + "product_reference": "npm-1:8.19.4-1.16.20.2.3.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:8.19.4-1.16.20.2.3.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:npm-1:8.19.4-1.16.20.2.3.el9_2.s390x" + }, + "product_reference": "npm-1:8.19.4-1.16.20.2.3.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:8.19.4-1.16.20.2.3.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:npm-1:8.19.4-1.16.20.2.3.el9_2.x86_64" + }, + "product_reference": "npm-1:8.19.4-1.16.20.2.3.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:9.8.1-1.18.18.2.2.module+el9.2.0.z+20408+7cb5fda5.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:npm-1:9.8.1-1.18.18.2.2.module+el9.2.0.z+20408+7cb5fda5.aarch64" + }, + "product_reference": "npm-1:9.8.1-1.18.18.2.2.module+el9.2.0.z+20408+7cb5fda5.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:9.8.1-1.18.18.2.2.module+el9.2.0.z+20408+7cb5fda5.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:npm-1:9.8.1-1.18.18.2.2.module+el9.2.0.z+20408+7cb5fda5.ppc64le" + }, + "product_reference": "npm-1:9.8.1-1.18.18.2.2.module+el9.2.0.z+20408+7cb5fda5.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:9.8.1-1.18.18.2.2.module+el9.2.0.z+20408+7cb5fda5.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:npm-1:9.8.1-1.18.18.2.2.module+el9.2.0.z+20408+7cb5fda5.s390x" + }, + "product_reference": "npm-1:9.8.1-1.18.18.2.2.module+el9.2.0.z+20408+7cb5fda5.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "npm-1:9.8.1-1.18.18.2.2.module+el9.2.0.z+20408+7cb5fda5.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:npm-1:9.8.1-1.18.18.2.2.module+el9.2.0.z+20408+7cb5fda5.x86_64" + }, + "product_reference": "npm-1:9.8.1-1.18.18.2.2.module+el9.2.0.z+20408+7cb5fda5.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tomcat-1:9.0.62-11.el9_2.3.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:tomcat-1:9.0.62-11.el9_2.3.noarch" + }, + "product_reference": "tomcat-1:9.0.62-11.el9_2.3.noarch", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tomcat-1:9.0.62-11.el9_2.3.src as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:tomcat-1:9.0.62-11.el9_2.3.src" + }, + "product_reference": "tomcat-1:9.0.62-11.el9_2.3.src", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tomcat-admin-webapps-1:9.0.62-11.el9_2.3.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:tomcat-admin-webapps-1:9.0.62-11.el9_2.3.noarch" + }, + "product_reference": "tomcat-admin-webapps-1:9.0.62-11.el9_2.3.noarch", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tomcat-docs-webapp-1:9.0.62-11.el9_2.3.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:tomcat-docs-webapp-1:9.0.62-11.el9_2.3.noarch" + }, + "product_reference": "tomcat-docs-webapp-1:9.0.62-11.el9_2.3.noarch", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tomcat-el-3.0-api-1:9.0.62-11.el9_2.3.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:tomcat-el-3.0-api-1:9.0.62-11.el9_2.3.noarch" + }, + "product_reference": "tomcat-el-3.0-api-1:9.0.62-11.el9_2.3.noarch", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tomcat-jsp-2.3-api-1:9.0.62-11.el9_2.3.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:tomcat-jsp-2.3-api-1:9.0.62-11.el9_2.3.noarch" + }, + "product_reference": "tomcat-jsp-2.3-api-1:9.0.62-11.el9_2.3.noarch", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tomcat-lib-1:9.0.62-11.el9_2.3.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:tomcat-lib-1:9.0.62-11.el9_2.3.noarch" + }, + "product_reference": "tomcat-lib-1:9.0.62-11.el9_2.3.noarch", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tomcat-servlet-4.0-api-1:9.0.62-11.el9_2.3.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:tomcat-servlet-4.0-api-1:9.0.62-11.el9_2.3.noarch" + }, + "product_reference": "tomcat-servlet-4.0-api-1:9.0.62-11.el9_2.3.noarch", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tomcat-webapps-1:9.0.62-11.el9_2.3.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:tomcat-webapps-1:9.0.62-11.el9_2.3.noarch" + }, + "product_reference": "tomcat-webapps-1:9.0.62-11.el9_2.3.noarch", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-0:0.0.99.3-10.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:toolbox-0:0.0.99.3-10.el9_2.aarch64" + }, + "product_reference": "toolbox-0:0.0.99.3-10.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-0:0.0.99.3-10.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:toolbox-0:0.0.99.3-10.el9_2.ppc64le" + }, + "product_reference": "toolbox-0:0.0.99.3-10.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-0:0.0.99.3-10.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:toolbox-0:0.0.99.3-10.el9_2.s390x" + }, + "product_reference": "toolbox-0:0.0.99.3-10.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-0:0.0.99.3-10.el9_2.src as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:toolbox-0:0.0.99.3-10.el9_2.src" + }, + "product_reference": "toolbox-0:0.0.99.3-10.el9_2.src", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-0:0.0.99.3-10.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:toolbox-0:0.0.99.3-10.el9_2.x86_64" + }, + "product_reference": "toolbox-0:0.0.99.3-10.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-debuginfo-0:0.0.99.3-10.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:toolbox-debuginfo-0:0.0.99.3-10.el9_2.aarch64" + }, + "product_reference": "toolbox-debuginfo-0:0.0.99.3-10.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-debuginfo-0:0.0.99.3-10.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:toolbox-debuginfo-0:0.0.99.3-10.el9_2.ppc64le" + }, + "product_reference": "toolbox-debuginfo-0:0.0.99.3-10.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-debuginfo-0:0.0.99.3-10.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:toolbox-debuginfo-0:0.0.99.3-10.el9_2.s390x" + }, + "product_reference": "toolbox-debuginfo-0:0.0.99.3-10.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-debuginfo-0:0.0.99.3-10.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:toolbox-debuginfo-0:0.0.99.3-10.el9_2.x86_64" + }, + "product_reference": "toolbox-debuginfo-0:0.0.99.3-10.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-debugsource-0:0.0.99.3-10.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:toolbox-debugsource-0:0.0.99.3-10.el9_2.aarch64" + }, + "product_reference": "toolbox-debugsource-0:0.0.99.3-10.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-debugsource-0:0.0.99.3-10.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:toolbox-debugsource-0:0.0.99.3-10.el9_2.ppc64le" + }, + "product_reference": "toolbox-debugsource-0:0.0.99.3-10.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-debugsource-0:0.0.99.3-10.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:toolbox-debugsource-0:0.0.99.3-10.el9_2.s390x" + }, + "product_reference": "toolbox-debugsource-0:0.0.99.3-10.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-debugsource-0:0.0.99.3-10.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:toolbox-debugsource-0:0.0.99.3-10.el9_2.x86_64" + }, + "product_reference": "toolbox-debugsource-0:0.0.99.3-10.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-tests-0:0.0.99.3-10.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:toolbox-tests-0:0.0.99.3-10.el9_2.aarch64" + }, + "product_reference": "toolbox-tests-0:0.0.99.3-10.el9_2.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-tests-0:0.0.99.3-10.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:toolbox-tests-0:0.0.99.3-10.el9_2.ppc64le" + }, + "product_reference": "toolbox-tests-0:0.0.99.3-10.el9_2.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-tests-0:0.0.99.3-10.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:toolbox-tests-0:0.0.99.3-10.el9_2.s390x" + }, + "product_reference": "toolbox-tests-0:0.0.99.3-10.el9_2.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "toolbox-tests-0:0.0.99.3-10.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:toolbox-tests-0:0.0.99.3-10.el9_2.x86_64" + }, + "product_reference": "toolbox-tests-0:0.0.99.3-10.el9_2.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.6.2-3.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:varnish-0:6.6.2-3.el9_2.1.aarch64" + }, + "product_reference": "varnish-0:6.6.2-3.el9_2.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.6.2-3.el9_2.1.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:varnish-0:6.6.2-3.el9_2.1.i686" + }, + "product_reference": "varnish-0:6.6.2-3.el9_2.1.i686", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.6.2-3.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:varnish-0:6.6.2-3.el9_2.1.ppc64le" + }, + "product_reference": "varnish-0:6.6.2-3.el9_2.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.6.2-3.el9_2.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:varnish-0:6.6.2-3.el9_2.1.s390x" + }, + "product_reference": "varnish-0:6.6.2-3.el9_2.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.6.2-3.el9_2.1.src as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:varnish-0:6.6.2-3.el9_2.1.src" + }, + "product_reference": "varnish-0:6.6.2-3.el9_2.1.src", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.6.2-3.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:varnish-0:6.6.2-3.el9_2.1.x86_64" + }, + "product_reference": "varnish-0:6.6.2-3.el9_2.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.6.2-3.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:varnish-devel-0:6.6.2-3.el9_2.1.aarch64" + }, + "product_reference": "varnish-devel-0:6.6.2-3.el9_2.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.6.2-3.el9_2.1.i686 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:varnish-devel-0:6.6.2-3.el9_2.1.i686" + }, + "product_reference": "varnish-devel-0:6.6.2-3.el9_2.1.i686", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.6.2-3.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:varnish-devel-0:6.6.2-3.el9_2.1.ppc64le" + }, + "product_reference": "varnish-devel-0:6.6.2-3.el9_2.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.6.2-3.el9_2.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:varnish-devel-0:6.6.2-3.el9_2.1.s390x" + }, + "product_reference": "varnish-devel-0:6.6.2-3.el9_2.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.6.2-3.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:varnish-devel-0:6.6.2-3.el9_2.1.x86_64" + }, + "product_reference": "varnish-devel-0:6.6.2-3.el9_2.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.6.2-3.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:varnish-docs-0:6.6.2-3.el9_2.1.aarch64" + }, + "product_reference": "varnish-docs-0:6.6.2-3.el9_2.1.aarch64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.6.2-3.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:varnish-docs-0:6.6.2-3.el9_2.1.ppc64le" + }, + "product_reference": "varnish-docs-0:6.6.2-3.el9_2.1.ppc64le", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.6.2-3.el9_2.1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:varnish-docs-0:6.6.2-3.el9_2.1.s390x" + }, + "product_reference": "varnish-docs-0:6.6.2-3.el9_2.1.s390x", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.6.2-3.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)", + "product_id": "AppStream-9.2.0.Z.MAIN.EUS:varnish-docs-0:6.6.2-3.el9_2.1.x86_64" + }, + "product_reference": "varnish-docs-0:6.6.2-3.el9_2.1.x86_64", + "relates_to_product_reference": "AppStream-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-3.el8_1.2.i686 as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.1)", + "product_id": "BaseOS-8.1.0.Z.E4S:libnghttp2-0:1.33.0-3.el8_1.2.i686" + }, + "product_reference": "libnghttp2-0:1.33.0-3.el8_1.2.i686", + "relates_to_product_reference": "BaseOS-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-3.el8_1.2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.1)", + "product_id": "BaseOS-8.1.0.Z.E4S:libnghttp2-0:1.33.0-3.el8_1.2.ppc64le" + }, + "product_reference": "libnghttp2-0:1.33.0-3.el8_1.2.ppc64le", + "relates_to_product_reference": "BaseOS-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-3.el8_1.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.1)", + "product_id": "BaseOS-8.1.0.Z.E4S:libnghttp2-0:1.33.0-3.el8_1.2.x86_64" + }, + "product_reference": "libnghttp2-0:1.33.0-3.el8_1.2.x86_64", + "relates_to_product_reference": "BaseOS-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-3.el8_1.2.i686 as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.1)", + "product_id": "BaseOS-8.1.0.Z.E4S:libnghttp2-debuginfo-0:1.33.0-3.el8_1.2.i686" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-3.el8_1.2.i686", + "relates_to_product_reference": "BaseOS-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-3.el8_1.2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.1)", + "product_id": "BaseOS-8.1.0.Z.E4S:libnghttp2-debuginfo-0:1.33.0-3.el8_1.2.ppc64le" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-3.el8_1.2.ppc64le", + "relates_to_product_reference": "BaseOS-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-3.el8_1.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.1)", + "product_id": "BaseOS-8.1.0.Z.E4S:libnghttp2-debuginfo-0:1.33.0-3.el8_1.2.x86_64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-3.el8_1.2.x86_64", + "relates_to_product_reference": "BaseOS-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-3.el8_1.2.src as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.1)", + "product_id": "BaseOS-8.1.0.Z.E4S:nghttp2-0:1.33.0-3.el8_1.2.src" + }, + "product_reference": "nghttp2-0:1.33.0-3.el8_1.2.src", + "relates_to_product_reference": "BaseOS-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-3.el8_1.2.i686 as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.1)", + "product_id": "BaseOS-8.1.0.Z.E4S:nghttp2-debuginfo-0:1.33.0-3.el8_1.2.i686" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-3.el8_1.2.i686", + "relates_to_product_reference": "BaseOS-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-3.el8_1.2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.1)", + "product_id": "BaseOS-8.1.0.Z.E4S:nghttp2-debuginfo-0:1.33.0-3.el8_1.2.ppc64le" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-3.el8_1.2.ppc64le", + "relates_to_product_reference": "BaseOS-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-3.el8_1.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.1)", + "product_id": "BaseOS-8.1.0.Z.E4S:nghttp2-debuginfo-0:1.33.0-3.el8_1.2.x86_64" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-3.el8_1.2.x86_64", + "relates_to_product_reference": "BaseOS-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-3.el8_1.2.i686 as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.1)", + "product_id": "BaseOS-8.1.0.Z.E4S:nghttp2-debugsource-0:1.33.0-3.el8_1.2.i686" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-3.el8_1.2.i686", + "relates_to_product_reference": "BaseOS-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-3.el8_1.2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.1)", + "product_id": "BaseOS-8.1.0.Z.E4S:nghttp2-debugsource-0:1.33.0-3.el8_1.2.ppc64le" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-3.el8_1.2.ppc64le", + "relates_to_product_reference": "BaseOS-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-3.el8_1.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.1)", + "product_id": "BaseOS-8.1.0.Z.E4S:nghttp2-debugsource-0:1.33.0-3.el8_1.2.x86_64" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-3.el8_1.2.x86_64", + "relates_to_product_reference": "BaseOS-8.1.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-3.el8_2.2.i686 as a component of Red Hat Enterprise Linux BaseOS AUS (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.AUS:libnghttp2-0:1.33.0-3.el8_2.2.i686" + }, + "product_reference": "libnghttp2-0:1.33.0-3.el8_2.2.i686", + "relates_to_product_reference": "BaseOS-8.2.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-3.el8_2.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.AUS:libnghttp2-0:1.33.0-3.el8_2.2.x86_64" + }, + "product_reference": "libnghttp2-0:1.33.0-3.el8_2.2.x86_64", + "relates_to_product_reference": "BaseOS-8.2.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.i686 as a component of Red Hat Enterprise Linux BaseOS AUS (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.AUS:libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.i686" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.i686", + "relates_to_product_reference": "BaseOS-8.2.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.AUS:libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.x86_64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.x86_64", + "relates_to_product_reference": "BaseOS-8.2.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-3.el8_2.2.src as a component of Red Hat Enterprise Linux BaseOS AUS (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.AUS:nghttp2-0:1.33.0-3.el8_2.2.src" + }, + "product_reference": "nghttp2-0:1.33.0-3.el8_2.2.src", + "relates_to_product_reference": "BaseOS-8.2.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-3.el8_2.2.i686 as a component of Red Hat Enterprise Linux BaseOS AUS (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.AUS:nghttp2-debuginfo-0:1.33.0-3.el8_2.2.i686" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-3.el8_2.2.i686", + "relates_to_product_reference": "BaseOS-8.2.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-3.el8_2.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.AUS:nghttp2-debuginfo-0:1.33.0-3.el8_2.2.x86_64" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-3.el8_2.2.x86_64", + "relates_to_product_reference": "BaseOS-8.2.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-3.el8_2.2.i686 as a component of Red Hat Enterprise Linux BaseOS AUS (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.AUS:nghttp2-debugsource-0:1.33.0-3.el8_2.2.i686" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-3.el8_2.2.i686", + "relates_to_product_reference": "BaseOS-8.2.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-3.el8_2.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.AUS:nghttp2-debugsource-0:1.33.0-3.el8_2.2.x86_64" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-3.el8_2.2.x86_64", + "relates_to_product_reference": "BaseOS-8.2.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-3.el8_2.2.i686 as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.E4S:libnghttp2-0:1.33.0-3.el8_2.2.i686" + }, + "product_reference": "libnghttp2-0:1.33.0-3.el8_2.2.i686", + "relates_to_product_reference": "BaseOS-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-3.el8_2.2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.E4S:libnghttp2-0:1.33.0-3.el8_2.2.ppc64le" + }, + "product_reference": "libnghttp2-0:1.33.0-3.el8_2.2.ppc64le", + "relates_to_product_reference": "BaseOS-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-3.el8_2.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.E4S:libnghttp2-0:1.33.0-3.el8_2.2.x86_64" + }, + "product_reference": "libnghttp2-0:1.33.0-3.el8_2.2.x86_64", + "relates_to_product_reference": "BaseOS-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.i686 as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.E4S:libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.i686" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.i686", + "relates_to_product_reference": "BaseOS-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.E4S:libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.ppc64le" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.ppc64le", + "relates_to_product_reference": "BaseOS-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.E4S:libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.x86_64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.x86_64", + "relates_to_product_reference": "BaseOS-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-3.el8_2.2.src as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.E4S:nghttp2-0:1.33.0-3.el8_2.2.src" + }, + "product_reference": "nghttp2-0:1.33.0-3.el8_2.2.src", + "relates_to_product_reference": "BaseOS-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-3.el8_2.2.i686 as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.E4S:nghttp2-debuginfo-0:1.33.0-3.el8_2.2.i686" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-3.el8_2.2.i686", + "relates_to_product_reference": "BaseOS-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-3.el8_2.2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.E4S:nghttp2-debuginfo-0:1.33.0-3.el8_2.2.ppc64le" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-3.el8_2.2.ppc64le", + "relates_to_product_reference": "BaseOS-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-3.el8_2.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.E4S:nghttp2-debuginfo-0:1.33.0-3.el8_2.2.x86_64" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-3.el8_2.2.x86_64", + "relates_to_product_reference": "BaseOS-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-3.el8_2.2.i686 as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.E4S:nghttp2-debugsource-0:1.33.0-3.el8_2.2.i686" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-3.el8_2.2.i686", + "relates_to_product_reference": "BaseOS-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-3.el8_2.2.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.E4S:nghttp2-debugsource-0:1.33.0-3.el8_2.2.ppc64le" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-3.el8_2.2.ppc64le", + "relates_to_product_reference": "BaseOS-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-3.el8_2.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.E4S:nghttp2-debugsource-0:1.33.0-3.el8_2.2.x86_64" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-3.el8_2.2.x86_64", + "relates_to_product_reference": "BaseOS-8.2.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-3.el8_2.2.i686 as a component of Red Hat Enterprise Linux BaseOS TUS (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.TUS:libnghttp2-0:1.33.0-3.el8_2.2.i686" + }, + "product_reference": "libnghttp2-0:1.33.0-3.el8_2.2.i686", + "relates_to_product_reference": "BaseOS-8.2.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-3.el8_2.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.TUS:libnghttp2-0:1.33.0-3.el8_2.2.x86_64" + }, + "product_reference": "libnghttp2-0:1.33.0-3.el8_2.2.x86_64", + "relates_to_product_reference": "BaseOS-8.2.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.i686 as a component of Red Hat Enterprise Linux BaseOS TUS (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.TUS:libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.i686" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.i686", + "relates_to_product_reference": "BaseOS-8.2.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.TUS:libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.x86_64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-3.el8_2.2.x86_64", + "relates_to_product_reference": "BaseOS-8.2.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-3.el8_2.2.src as a component of Red Hat Enterprise Linux BaseOS TUS (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.TUS:nghttp2-0:1.33.0-3.el8_2.2.src" + }, + "product_reference": "nghttp2-0:1.33.0-3.el8_2.2.src", + "relates_to_product_reference": "BaseOS-8.2.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-3.el8_2.2.i686 as a component of Red Hat Enterprise Linux BaseOS TUS (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.TUS:nghttp2-debuginfo-0:1.33.0-3.el8_2.2.i686" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-3.el8_2.2.i686", + "relates_to_product_reference": "BaseOS-8.2.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-3.el8_2.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.TUS:nghttp2-debuginfo-0:1.33.0-3.el8_2.2.x86_64" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-3.el8_2.2.x86_64", + "relates_to_product_reference": "BaseOS-8.2.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-3.el8_2.2.i686 as a component of Red Hat Enterprise Linux BaseOS TUS (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.TUS:nghttp2-debugsource-0:1.33.0-3.el8_2.2.i686" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-3.el8_2.2.i686", + "relates_to_product_reference": "BaseOS-8.2.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-3.el8_2.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v. 8.2)", + "product_id": "BaseOS-8.2.0.Z.TUS:nghttp2-debugsource-0:1.33.0-3.el8_2.2.x86_64" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-3.el8_2.2.x86_64", + "relates_to_product_reference": "BaseOS-8.2.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-4.el8_4.1.i686 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.AUS:libnghttp2-0:1.33.0-4.el8_4.1.i686" + }, + "product_reference": "libnghttp2-0:1.33.0-4.el8_4.1.i686", + "relates_to_product_reference": "BaseOS-8.4.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-4.el8_4.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.AUS:libnghttp2-0:1.33.0-4.el8_4.1.x86_64" + }, + "product_reference": "libnghttp2-0:1.33.0-4.el8_4.1.x86_64", + "relates_to_product_reference": "BaseOS-8.4.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.i686 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.AUS:libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.i686" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.i686", + "relates_to_product_reference": "BaseOS-8.4.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.AUS:libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.x86_64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.x86_64", + "relates_to_product_reference": "BaseOS-8.4.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-4.el8_4.1.src as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.AUS:nghttp2-0:1.33.0-4.el8_4.1.src" + }, + "product_reference": "nghttp2-0:1.33.0-4.el8_4.1.src", + "relates_to_product_reference": "BaseOS-8.4.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.i686 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.AUS:nghttp2-debuginfo-0:1.33.0-4.el8_4.1.i686" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.i686", + "relates_to_product_reference": "BaseOS-8.4.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.AUS:nghttp2-debuginfo-0:1.33.0-4.el8_4.1.x86_64" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.x86_64", + "relates_to_product_reference": "BaseOS-8.4.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.i686 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.AUS:nghttp2-debugsource-0:1.33.0-4.el8_4.1.i686" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.i686", + "relates_to_product_reference": "BaseOS-8.4.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.AUS:nghttp2-debugsource-0:1.33.0-4.el8_4.1.x86_64" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.x86_64", + "relates_to_product_reference": "BaseOS-8.4.0.Z.AUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-4.el8_4.1.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.E4S:libnghttp2-0:1.33.0-4.el8_4.1.aarch64" + }, + "product_reference": "libnghttp2-0:1.33.0-4.el8_4.1.aarch64", + "relates_to_product_reference": "BaseOS-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-4.el8_4.1.i686 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.E4S:libnghttp2-0:1.33.0-4.el8_4.1.i686" + }, + "product_reference": "libnghttp2-0:1.33.0-4.el8_4.1.i686", + "relates_to_product_reference": "BaseOS-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-4.el8_4.1.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.E4S:libnghttp2-0:1.33.0-4.el8_4.1.ppc64le" + }, + "product_reference": "libnghttp2-0:1.33.0-4.el8_4.1.ppc64le", + "relates_to_product_reference": "BaseOS-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-4.el8_4.1.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.E4S:libnghttp2-0:1.33.0-4.el8_4.1.s390x" + }, + "product_reference": "libnghttp2-0:1.33.0-4.el8_4.1.s390x", + "relates_to_product_reference": "BaseOS-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-4.el8_4.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.E4S:libnghttp2-0:1.33.0-4.el8_4.1.x86_64" + }, + "product_reference": "libnghttp2-0:1.33.0-4.el8_4.1.x86_64", + "relates_to_product_reference": "BaseOS-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.E4S:libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.aarch64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.aarch64", + "relates_to_product_reference": "BaseOS-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.i686 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.E4S:libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.i686" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.i686", + "relates_to_product_reference": "BaseOS-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.E4S:libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.ppc64le" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.ppc64le", + "relates_to_product_reference": "BaseOS-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.E4S:libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.s390x" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.s390x", + "relates_to_product_reference": "BaseOS-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.E4S:libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.x86_64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.x86_64", + "relates_to_product_reference": "BaseOS-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-4.el8_4.1.src as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.E4S:nghttp2-0:1.33.0-4.el8_4.1.src" + }, + "product_reference": "nghttp2-0:1.33.0-4.el8_4.1.src", + "relates_to_product_reference": "BaseOS-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.E4S:nghttp2-debuginfo-0:1.33.0-4.el8_4.1.aarch64" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.aarch64", + "relates_to_product_reference": "BaseOS-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.i686 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.E4S:nghttp2-debuginfo-0:1.33.0-4.el8_4.1.i686" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.i686", + "relates_to_product_reference": "BaseOS-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.E4S:nghttp2-debuginfo-0:1.33.0-4.el8_4.1.ppc64le" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.ppc64le", + "relates_to_product_reference": "BaseOS-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.E4S:nghttp2-debuginfo-0:1.33.0-4.el8_4.1.s390x" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.s390x", + "relates_to_product_reference": "BaseOS-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.E4S:nghttp2-debuginfo-0:1.33.0-4.el8_4.1.x86_64" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.x86_64", + "relates_to_product_reference": "BaseOS-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.E4S:nghttp2-debugsource-0:1.33.0-4.el8_4.1.aarch64" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.aarch64", + "relates_to_product_reference": "BaseOS-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.i686 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.E4S:nghttp2-debugsource-0:1.33.0-4.el8_4.1.i686" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.i686", + "relates_to_product_reference": "BaseOS-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.E4S:nghttp2-debugsource-0:1.33.0-4.el8_4.1.ppc64le" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.ppc64le", + "relates_to_product_reference": "BaseOS-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.E4S:nghttp2-debugsource-0:1.33.0-4.el8_4.1.s390x" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.s390x", + "relates_to_product_reference": "BaseOS-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.E4S:nghttp2-debugsource-0:1.33.0-4.el8_4.1.x86_64" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.x86_64", + "relates_to_product_reference": "BaseOS-8.4.0.Z.E4S" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-4.el8_4.1.i686 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.TUS:libnghttp2-0:1.33.0-4.el8_4.1.i686" + }, + "product_reference": "libnghttp2-0:1.33.0-4.el8_4.1.i686", + "relates_to_product_reference": "BaseOS-8.4.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-4.el8_4.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.TUS:libnghttp2-0:1.33.0-4.el8_4.1.x86_64" + }, + "product_reference": "libnghttp2-0:1.33.0-4.el8_4.1.x86_64", + "relates_to_product_reference": "BaseOS-8.4.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.i686 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.TUS:libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.i686" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.i686", + "relates_to_product_reference": "BaseOS-8.4.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.TUS:libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.x86_64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-4.el8_4.1.x86_64", + "relates_to_product_reference": "BaseOS-8.4.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-4.el8_4.1.src as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.TUS:nghttp2-0:1.33.0-4.el8_4.1.src" + }, + "product_reference": "nghttp2-0:1.33.0-4.el8_4.1.src", + "relates_to_product_reference": "BaseOS-8.4.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.i686 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.TUS:nghttp2-debuginfo-0:1.33.0-4.el8_4.1.i686" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.i686", + "relates_to_product_reference": "BaseOS-8.4.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.TUS:nghttp2-debuginfo-0:1.33.0-4.el8_4.1.x86_64" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-4.el8_4.1.x86_64", + "relates_to_product_reference": "BaseOS-8.4.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.i686 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.TUS:nghttp2-debugsource-0:1.33.0-4.el8_4.1.i686" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.i686", + "relates_to_product_reference": "BaseOS-8.4.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS TUS (v.8.4)", + "product_id": "BaseOS-8.4.0.Z.TUS:nghttp2-debugsource-0:1.33.0-4.el8_4.1.x86_64" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-4.el8_4.1.x86_64", + "relates_to_product_reference": "BaseOS-8.4.0.Z.TUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-4.el8_6.1.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:libnghttp2-0:1.33.0-4.el8_6.1.aarch64" + }, + "product_reference": "libnghttp2-0:1.33.0-4.el8_6.1.aarch64", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-4.el8_6.1.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:libnghttp2-0:1.33.0-4.el8_6.1.i686" + }, + "product_reference": "libnghttp2-0:1.33.0-4.el8_6.1.i686", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-4.el8_6.1.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:libnghttp2-0:1.33.0-4.el8_6.1.ppc64le" + }, + "product_reference": "libnghttp2-0:1.33.0-4.el8_6.1.ppc64le", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-4.el8_6.1.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:libnghttp2-0:1.33.0-4.el8_6.1.s390x" + }, + "product_reference": "libnghttp2-0:1.33.0-4.el8_6.1.s390x", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-4.el8_6.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:libnghttp2-0:1.33.0-4.el8_6.1.x86_64" + }, + "product_reference": "libnghttp2-0:1.33.0-4.el8_6.1.x86_64", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.aarch64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.aarch64", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.i686" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.i686", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.ppc64le" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.ppc64le", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.s390x" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.s390x", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.x86_64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.x86_64", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.33.0-4.el8_6.1.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:libnghttp2-devel-0:1.33.0-4.el8_6.1.aarch64" + }, + "product_reference": "libnghttp2-devel-0:1.33.0-4.el8_6.1.aarch64", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.33.0-4.el8_6.1.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:libnghttp2-devel-0:1.33.0-4.el8_6.1.i686" + }, + "product_reference": "libnghttp2-devel-0:1.33.0-4.el8_6.1.i686", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.33.0-4.el8_6.1.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:libnghttp2-devel-0:1.33.0-4.el8_6.1.ppc64le" + }, + "product_reference": "libnghttp2-devel-0:1.33.0-4.el8_6.1.ppc64le", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.33.0-4.el8_6.1.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:libnghttp2-devel-0:1.33.0-4.el8_6.1.s390x" + }, + "product_reference": "libnghttp2-devel-0:1.33.0-4.el8_6.1.s390x", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.33.0-4.el8_6.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:libnghttp2-devel-0:1.33.0-4.el8_6.1.x86_64" + }, + "product_reference": "libnghttp2-devel-0:1.33.0-4.el8_6.1.x86_64", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-4.el8_6.1.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:nghttp2-0:1.33.0-4.el8_6.1.aarch64" + }, + "product_reference": "nghttp2-0:1.33.0-4.el8_6.1.aarch64", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-4.el8_6.1.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:nghttp2-0:1.33.0-4.el8_6.1.ppc64le" + }, + "product_reference": "nghttp2-0:1.33.0-4.el8_6.1.ppc64le", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-4.el8_6.1.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:nghttp2-0:1.33.0-4.el8_6.1.s390x" + }, + "product_reference": "nghttp2-0:1.33.0-4.el8_6.1.s390x", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-4.el8_6.1.src as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:nghttp2-0:1.33.0-4.el8_6.1.src" + }, + "product_reference": "nghttp2-0:1.33.0-4.el8_6.1.src", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-4.el8_6.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:nghttp2-0:1.33.0-4.el8_6.1.x86_64" + }, + "product_reference": "nghttp2-0:1.33.0-4.el8_6.1.x86_64", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:nghttp2-debuginfo-0:1.33.0-4.el8_6.1.aarch64" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.aarch64", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:nghttp2-debuginfo-0:1.33.0-4.el8_6.1.i686" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.i686", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:nghttp2-debuginfo-0:1.33.0-4.el8_6.1.ppc64le" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.ppc64le", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:nghttp2-debuginfo-0:1.33.0-4.el8_6.1.s390x" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.s390x", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:nghttp2-debuginfo-0:1.33.0-4.el8_6.1.x86_64" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.x86_64", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:nghttp2-debugsource-0:1.33.0-4.el8_6.1.aarch64" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.aarch64", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:nghttp2-debugsource-0:1.33.0-4.el8_6.1.i686" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.i686", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:nghttp2-debugsource-0:1.33.0-4.el8_6.1.ppc64le" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.ppc64le", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:nghttp2-debugsource-0:1.33.0-4.el8_6.1.s390x" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.s390x", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.6)", + "product_id": "BaseOS-8.6.0.Z.EUS:nghttp2-debugsource-0:1.33.0-4.el8_6.1.x86_64" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.x86_64", + "relates_to_product_reference": "BaseOS-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-5.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:libnghttp2-0:1.33.0-5.el8_8.aarch64" + }, + "product_reference": "libnghttp2-0:1.33.0-5.el8_8.aarch64", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-5.el8_8.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:libnghttp2-0:1.33.0-5.el8_8.i686" + }, + "product_reference": "libnghttp2-0:1.33.0-5.el8_8.i686", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-5.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:libnghttp2-0:1.33.0-5.el8_8.ppc64le" + }, + "product_reference": "libnghttp2-0:1.33.0-5.el8_8.ppc64le", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-5.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:libnghttp2-0:1.33.0-5.el8_8.s390x" + }, + "product_reference": "libnghttp2-0:1.33.0-5.el8_8.s390x", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-5.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:libnghttp2-0:1.33.0-5.el8_8.x86_64" + }, + "product_reference": "libnghttp2-0:1.33.0-5.el8_8.x86_64", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:libnghttp2-debuginfo-0:1.33.0-5.el8_8.aarch64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.aarch64", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:libnghttp2-debuginfo-0:1.33.0-5.el8_8.i686" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.i686", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:libnghttp2-debuginfo-0:1.33.0-5.el8_8.ppc64le" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.ppc64le", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:libnghttp2-debuginfo-0:1.33.0-5.el8_8.s390x" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.s390x", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:libnghttp2-debuginfo-0:1.33.0-5.el8_8.x86_64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.x86_64", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.33.0-5.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:libnghttp2-devel-0:1.33.0-5.el8_8.aarch64" + }, + "product_reference": "libnghttp2-devel-0:1.33.0-5.el8_8.aarch64", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.33.0-5.el8_8.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:libnghttp2-devel-0:1.33.0-5.el8_8.i686" + }, + "product_reference": "libnghttp2-devel-0:1.33.0-5.el8_8.i686", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.33.0-5.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:libnghttp2-devel-0:1.33.0-5.el8_8.ppc64le" + }, + "product_reference": "libnghttp2-devel-0:1.33.0-5.el8_8.ppc64le", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.33.0-5.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:libnghttp2-devel-0:1.33.0-5.el8_8.s390x" + }, + "product_reference": "libnghttp2-devel-0:1.33.0-5.el8_8.s390x", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.33.0-5.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:libnghttp2-devel-0:1.33.0-5.el8_8.x86_64" + }, + "product_reference": "libnghttp2-devel-0:1.33.0-5.el8_8.x86_64", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-5.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:nghttp2-0:1.33.0-5.el8_8.aarch64" + }, + "product_reference": "nghttp2-0:1.33.0-5.el8_8.aarch64", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-5.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:nghttp2-0:1.33.0-5.el8_8.ppc64le" + }, + "product_reference": "nghttp2-0:1.33.0-5.el8_8.ppc64le", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-5.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:nghttp2-0:1.33.0-5.el8_8.s390x" + }, + "product_reference": "nghttp2-0:1.33.0-5.el8_8.s390x", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-5.el8_8.src as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:nghttp2-0:1.33.0-5.el8_8.src" + }, + "product_reference": "nghttp2-0:1.33.0-5.el8_8.src", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-5.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:nghttp2-0:1.33.0-5.el8_8.x86_64" + }, + "product_reference": "nghttp2-0:1.33.0-5.el8_8.x86_64", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-5.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:nghttp2-debuginfo-0:1.33.0-5.el8_8.aarch64" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-5.el8_8.aarch64", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-5.el8_8.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:nghttp2-debuginfo-0:1.33.0-5.el8_8.i686" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-5.el8_8.i686", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-5.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:nghttp2-debuginfo-0:1.33.0-5.el8_8.ppc64le" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-5.el8_8.ppc64le", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-5.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:nghttp2-debuginfo-0:1.33.0-5.el8_8.s390x" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-5.el8_8.s390x", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-5.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:nghttp2-debuginfo-0:1.33.0-5.el8_8.x86_64" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-5.el8_8.x86_64", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-5.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:nghttp2-debugsource-0:1.33.0-5.el8_8.aarch64" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-5.el8_8.aarch64", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-5.el8_8.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:nghttp2-debugsource-0:1.33.0-5.el8_8.i686" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-5.el8_8.i686", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-5.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:nghttp2-debugsource-0:1.33.0-5.el8_8.ppc64le" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-5.el8_8.ppc64le", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-5.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:nghttp2-debugsource-0:1.33.0-5.el8_8.s390x" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-5.el8_8.s390x", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-5.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 8)", + "product_id": "BaseOS-8.8.0.Z.MAIN.EUS:nghttp2-debugsource-0:1.33.0-5.el8_8.x86_64" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-5.el8_8.x86_64", + "relates_to_product_reference": "BaseOS-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_0.2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:libnghttp2-0:1.43.0-5.el9_0.2.aarch64" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_0.2.aarch64", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_0.2.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:libnghttp2-0:1.43.0-5.el9_0.2.i686" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_0.2.i686", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_0.2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:libnghttp2-0:1.43.0-5.el9_0.2.ppc64le" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_0.2.ppc64le", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_0.2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:libnghttp2-0:1.43.0-5.el9_0.2.s390x" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_0.2.s390x", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_0.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:libnghttp2-0:1.43.0-5.el9_0.2.x86_64" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_0.2.x86_64", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.aarch64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.aarch64", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.i686" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.i686", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.ppc64le" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.ppc64le", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.s390x" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.s390x", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.x86_64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.x86_64", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_0.2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:libnghttp2-devel-0:1.43.0-5.el9_0.2.aarch64" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_0.2.aarch64", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_0.2.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:libnghttp2-devel-0:1.43.0-5.el9_0.2.i686" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_0.2.i686", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_0.2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:libnghttp2-devel-0:1.43.0-5.el9_0.2.ppc64le" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_0.2.ppc64le", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_0.2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:libnghttp2-devel-0:1.43.0-5.el9_0.2.s390x" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_0.2.s390x", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_0.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:libnghttp2-devel-0:1.43.0-5.el9_0.2.x86_64" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_0.2.x86_64", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_0.2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:nghttp2-0:1.43.0-5.el9_0.2.aarch64" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_0.2.aarch64", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_0.2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:nghttp2-0:1.43.0-5.el9_0.2.ppc64le" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_0.2.ppc64le", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_0.2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:nghttp2-0:1.43.0-5.el9_0.2.s390x" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_0.2.s390x", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_0.2.src as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:nghttp2-0:1.43.0-5.el9_0.2.src" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_0.2.src", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_0.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:nghttp2-0:1.43.0-5.el9_0.2.x86_64" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_0.2.x86_64", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:nghttp2-debuginfo-0:1.43.0-5.el9_0.2.aarch64" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.aarch64", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:nghttp2-debuginfo-0:1.43.0-5.el9_0.2.i686" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.i686", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:nghttp2-debuginfo-0:1.43.0-5.el9_0.2.ppc64le" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.ppc64le", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:nghttp2-debuginfo-0:1.43.0-5.el9_0.2.s390x" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.s390x", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:nghttp2-debuginfo-0:1.43.0-5.el9_0.2.x86_64" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.x86_64", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:nghttp2-debugsource-0:1.43.0-5.el9_0.2.aarch64" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.aarch64", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:nghttp2-debugsource-0:1.43.0-5.el9_0.2.i686" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.i686", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:nghttp2-debugsource-0:1.43.0-5.el9_0.2.ppc64le" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.ppc64le", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:nghttp2-debugsource-0:1.43.0-5.el9_0.2.s390x" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.s390x", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)", + "product_id": "BaseOS-9.0.0.Z.EUS:nghttp2-debugsource-0:1.43.0-5.el9_0.2.x86_64" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.x86_64", + "relates_to_product_reference": "BaseOS-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:libnghttp2-0:1.43.0-5.el9_2.1.aarch64" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_2.1.aarch64", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_2.1.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:libnghttp2-0:1.43.0-5.el9_2.1.i686" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_2.1.i686", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:libnghttp2-0:1.43.0-5.el9_2.1.ppc64le" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_2.1.ppc64le", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_2.1.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:libnghttp2-0:1.43.0-5.el9_2.1.s390x" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_2.1.s390x", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:libnghttp2-0:1.43.0-5.el9_2.1.x86_64" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_2.1.x86_64", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.aarch64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.aarch64", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.i686" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.i686", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.ppc64le" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.ppc64le", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.s390x" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.s390x", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.x86_64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.x86_64", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:libnghttp2-devel-0:1.43.0-5.el9_2.1.aarch64" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_2.1.aarch64", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_2.1.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:libnghttp2-devel-0:1.43.0-5.el9_2.1.i686" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_2.1.i686", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:libnghttp2-devel-0:1.43.0-5.el9_2.1.ppc64le" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_2.1.ppc64le", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_2.1.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:libnghttp2-devel-0:1.43.0-5.el9_2.1.s390x" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_2.1.s390x", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:libnghttp2-devel-0:1.43.0-5.el9_2.1.x86_64" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_2.1.x86_64", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:nghttp2-0:1.43.0-5.el9_2.1.aarch64" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_2.1.aarch64", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:nghttp2-0:1.43.0-5.el9_2.1.ppc64le" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_2.1.ppc64le", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_2.1.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:nghttp2-0:1.43.0-5.el9_2.1.s390x" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_2.1.s390x", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_2.1.src as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:nghttp2-0:1.43.0-5.el9_2.1.src" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_2.1.src", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:nghttp2-0:1.43.0-5.el9_2.1.x86_64" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_2.1.x86_64", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:nghttp2-debuginfo-0:1.43.0-5.el9_2.1.aarch64" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.aarch64", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:nghttp2-debuginfo-0:1.43.0-5.el9_2.1.i686" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.i686", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:nghttp2-debuginfo-0:1.43.0-5.el9_2.1.ppc64le" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.ppc64le", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:nghttp2-debuginfo-0:1.43.0-5.el9_2.1.s390x" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.s390x", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:nghttp2-debuginfo-0:1.43.0-5.el9_2.1.x86_64" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.x86_64", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:nghttp2-debugsource-0:1.43.0-5.el9_2.1.aarch64" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.aarch64", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:nghttp2-debugsource-0:1.43.0-5.el9_2.1.i686" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.i686", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:nghttp2-debugsource-0:1.43.0-5.el9_2.1.ppc64le" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.ppc64le", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:nghttp2-debugsource-0:1.43.0-5.el9_2.1.s390x" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.s390x", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.2.0.Z.MAIN.EUS:nghttp2-debugsource-0:1.43.0-5.el9_2.1.x86_64" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.x86_64", + "relates_to_product_reference": "BaseOS-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_3.1.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:libnghttp2-0:1.43.0-5.el9_3.1.aarch64" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_3.1.aarch64", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_3.1.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:libnghttp2-0:1.43.0-5.el9_3.1.i686" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_3.1.i686", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_3.1.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:libnghttp2-0:1.43.0-5.el9_3.1.ppc64le" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_3.1.ppc64le", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_3.1.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:libnghttp2-0:1.43.0-5.el9_3.1.s390x" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_3.1.s390x", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_3.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:libnghttp2-0:1.43.0-5.el9_3.1.x86_64" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_3.1.x86_64", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.aarch64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.aarch64", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.i686" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.i686", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.ppc64le" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.ppc64le", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.s390x" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.s390x", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.x86_64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.x86_64", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_3.1.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:libnghttp2-devel-0:1.43.0-5.el9_3.1.aarch64" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_3.1.aarch64", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_3.1.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:libnghttp2-devel-0:1.43.0-5.el9_3.1.i686" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_3.1.i686", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_3.1.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:libnghttp2-devel-0:1.43.0-5.el9_3.1.ppc64le" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_3.1.ppc64le", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_3.1.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:libnghttp2-devel-0:1.43.0-5.el9_3.1.s390x" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_3.1.s390x", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_3.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:libnghttp2-devel-0:1.43.0-5.el9_3.1.x86_64" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_3.1.x86_64", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_3.1.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:nghttp2-0:1.43.0-5.el9_3.1.aarch64" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_3.1.aarch64", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_3.1.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:nghttp2-0:1.43.0-5.el9_3.1.ppc64le" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_3.1.ppc64le", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_3.1.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:nghttp2-0:1.43.0-5.el9_3.1.s390x" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_3.1.s390x", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_3.1.src as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:nghttp2-0:1.43.0-5.el9_3.1.src" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_3.1.src", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_3.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:nghttp2-0:1.43.0-5.el9_3.1.x86_64" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_3.1.x86_64", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:nghttp2-debuginfo-0:1.43.0-5.el9_3.1.aarch64" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.aarch64", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:nghttp2-debuginfo-0:1.43.0-5.el9_3.1.i686" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.i686", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:nghttp2-debuginfo-0:1.43.0-5.el9_3.1.ppc64le" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.ppc64le", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:nghttp2-debuginfo-0:1.43.0-5.el9_3.1.s390x" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.s390x", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:nghttp2-debuginfo-0:1.43.0-5.el9_3.1.x86_64" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.x86_64", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:nghttp2-debugsource-0:1.43.0-5.el9_3.1.aarch64" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.aarch64", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.i686 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:nghttp2-debugsource-0:1.43.0-5.el9_3.1.i686" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.i686", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:nghttp2-debugsource-0:1.43.0-5.el9_3.1.ppc64le" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.ppc64le", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:nghttp2-debugsource-0:1.43.0-5.el9_3.1.s390x" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.s390x", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)", + "product_id": "BaseOS-9.3.0.Z.MAIN:nghttp2-debugsource-0:1.43.0-5.el9_3.1.x86_64" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.x86_64", + "relates_to_product_reference": "BaseOS-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.aarch64" + }, + "product_reference": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.s390x" + }, + "product_reference": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.x86_64" + }, + "product_reference": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_6.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.aarch64" + }, + "product_reference": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.s390x" + }, + "product_reference": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.x86_64" + }, + "product_reference": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_6.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-0:6.0.123-1.el8_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-0:6.0.123-1.el8_6.aarch64" + }, + "product_reference": "dotnet-0:6.0.123-1.el8_6.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-0:6.0.123-1.el8_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-0:6.0.123-1.el8_6.s390x" + }, + "product_reference": "dotnet-0:6.0.123-1.el8_6.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-0:6.0.123-1.el8_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-0:6.0.123-1.el8_6.x86_64" + }, + "product_reference": "dotnet-0:6.0.123-1.el8_6.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.aarch64" + }, + "product_reference": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.s390x" + }, + "product_reference": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.x86_64" + }, + "product_reference": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_6.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64" + }, + "product_reference": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.s390x" + }, + "product_reference": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64" + }, + "product_reference": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:6.0.23-1.el8_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-host-0:6.0.23-1.el8_6.aarch64" + }, + "product_reference": "dotnet-host-0:6.0.23-1.el8_6.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:6.0.23-1.el8_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-host-0:6.0.23-1.el8_6.s390x" + }, + "product_reference": "dotnet-host-0:6.0.23-1.el8_6.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:6.0.23-1.el8_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-host-0:6.0.23-1.el8_6.x86_64" + }, + "product_reference": "dotnet-host-0:6.0.23-1.el8_6.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:6.0.23-1.el8_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-host-debuginfo-0:6.0.23-1.el8_6.aarch64" + }, + "product_reference": "dotnet-host-debuginfo-0:6.0.23-1.el8_6.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:6.0.23-1.el8_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-host-debuginfo-0:6.0.23-1.el8_6.s390x" + }, + "product_reference": "dotnet-host-debuginfo-0:6.0.23-1.el8_6.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:6.0.23-1.el8_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-host-debuginfo-0:6.0.23-1.el8_6.x86_64" + }, + "product_reference": "dotnet-host-debuginfo-0:6.0.23-1.el8_6.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.aarch64" + }, + "product_reference": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.s390x" + }, + "product_reference": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.x86_64" + }, + "product_reference": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_6.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64" + }, + "product_reference": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.s390x" + }, + "product_reference": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64" + }, + "product_reference": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el8_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-runtime-6.0-0:6.0.23-1.el8_6.aarch64" + }, + "product_reference": "dotnet-runtime-6.0-0:6.0.23-1.el8_6.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el8_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-runtime-6.0-0:6.0.23-1.el8_6.s390x" + }, + "product_reference": "dotnet-runtime-6.0-0:6.0.23-1.el8_6.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el8_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-runtime-6.0-0:6.0.23-1.el8_6.x86_64" + }, + "product_reference": "dotnet-runtime-6.0-0:6.0.23-1.el8_6.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64" + }, + "product_reference": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.s390x" + }, + "product_reference": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64" + }, + "product_reference": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_6.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el8_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-sdk-6.0-0:6.0.123-1.el8_6.aarch64" + }, + "product_reference": "dotnet-sdk-6.0-0:6.0.123-1.el8_6.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el8_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-sdk-6.0-0:6.0.123-1.el8_6.s390x" + }, + "product_reference": "dotnet-sdk-6.0-0:6.0.123-1.el8_6.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el8_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-sdk-6.0-0:6.0.123-1.el8_6.x86_64" + }, + "product_reference": "dotnet-sdk-6.0-0:6.0.123-1.el8_6.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.aarch64" + }, + "product_reference": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.s390x" + }, + "product_reference": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.x86_64" + }, + "product_reference": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_6.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.aarch64" + }, + "product_reference": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.s390x" + }, + "product_reference": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.x86_64" + }, + "product_reference": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_6.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.aarch64" + }, + "product_reference": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.s390x" + }, + "product_reference": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.x86_64" + }, + "product_reference": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_6.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el8_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-templates-6.0-0:6.0.123-1.el8_6.aarch64" + }, + "product_reference": "dotnet-templates-6.0-0:6.0.123-1.el8_6.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el8_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-templates-6.0-0:6.0.123-1.el8_6.s390x" + }, + "product_reference": "dotnet-templates-6.0-0:6.0.123-1.el8_6.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el8_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet-templates-6.0-0:6.0.123-1.el8_6.x86_64" + }, + "product_reference": "dotnet-templates-6.0-0:6.0.123-1.el8_6.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-0:6.0.123-1.el8_6.src as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet6.0-0:6.0.123-1.el8_6.src" + }, + "product_reference": "dotnet6.0-0:6.0.123-1.el8_6.src", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el8_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet6.0-debuginfo-0:6.0.123-1.el8_6.aarch64" + }, + "product_reference": "dotnet6.0-debuginfo-0:6.0.123-1.el8_6.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el8_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet6.0-debuginfo-0:6.0.123-1.el8_6.s390x" + }, + "product_reference": "dotnet6.0-debuginfo-0:6.0.123-1.el8_6.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el8_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet6.0-debuginfo-0:6.0.123-1.el8_6.x86_64" + }, + "product_reference": "dotnet6.0-debuginfo-0:6.0.123-1.el8_6.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el8_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet6.0-debugsource-0:6.0.123-1.el8_6.aarch64" + }, + "product_reference": "dotnet6.0-debugsource-0:6.0.123-1.el8_6.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el8_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet6.0-debugsource-0:6.0.123-1.el8_6.s390x" + }, + "product_reference": "dotnet6.0-debugsource-0:6.0.123-1.el8_6.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el8_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:dotnet6.0-debugsource-0:6.0.123-1.el8_6.x86_64" + }, + "product_reference": "dotnet6.0-debugsource-0:6.0.123-1.el8_6.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-4.el8_6.1.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:libnghttp2-0:1.33.0-4.el8_6.1.aarch64" + }, + "product_reference": "libnghttp2-0:1.33.0-4.el8_6.1.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-4.el8_6.1.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:libnghttp2-0:1.33.0-4.el8_6.1.i686" + }, + "product_reference": "libnghttp2-0:1.33.0-4.el8_6.1.i686", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-4.el8_6.1.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:libnghttp2-0:1.33.0-4.el8_6.1.ppc64le" + }, + "product_reference": "libnghttp2-0:1.33.0-4.el8_6.1.ppc64le", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-4.el8_6.1.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:libnghttp2-0:1.33.0-4.el8_6.1.s390x" + }, + "product_reference": "libnghttp2-0:1.33.0-4.el8_6.1.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-4.el8_6.1.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:libnghttp2-0:1.33.0-4.el8_6.1.x86_64" + }, + "product_reference": "libnghttp2-0:1.33.0-4.el8_6.1.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.aarch64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.i686" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.i686", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.ppc64le" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.ppc64le", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.s390x" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.x86_64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-4.el8_6.1.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.33.0-4.el8_6.1.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:libnghttp2-devel-0:1.33.0-4.el8_6.1.aarch64" + }, + "product_reference": "libnghttp2-devel-0:1.33.0-4.el8_6.1.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.33.0-4.el8_6.1.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:libnghttp2-devel-0:1.33.0-4.el8_6.1.i686" + }, + "product_reference": "libnghttp2-devel-0:1.33.0-4.el8_6.1.i686", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.33.0-4.el8_6.1.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:libnghttp2-devel-0:1.33.0-4.el8_6.1.ppc64le" + }, + "product_reference": "libnghttp2-devel-0:1.33.0-4.el8_6.1.ppc64le", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.33.0-4.el8_6.1.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:libnghttp2-devel-0:1.33.0-4.el8_6.1.s390x" + }, + "product_reference": "libnghttp2-devel-0:1.33.0-4.el8_6.1.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.33.0-4.el8_6.1.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:libnghttp2-devel-0:1.33.0-4.el8_6.1.x86_64" + }, + "product_reference": "libnghttp2-devel-0:1.33.0-4.el8_6.1.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.aarch64" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.s390x" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.x86_64" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:6.0.123-1.el8_6.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-4.el8_6.1.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:nghttp2-0:1.33.0-4.el8_6.1.aarch64" + }, + "product_reference": "nghttp2-0:1.33.0-4.el8_6.1.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-4.el8_6.1.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:nghttp2-0:1.33.0-4.el8_6.1.ppc64le" + }, + "product_reference": "nghttp2-0:1.33.0-4.el8_6.1.ppc64le", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-4.el8_6.1.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:nghttp2-0:1.33.0-4.el8_6.1.s390x" + }, + "product_reference": "nghttp2-0:1.33.0-4.el8_6.1.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-4.el8_6.1.src as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:nghttp2-0:1.33.0-4.el8_6.1.src" + }, + "product_reference": "nghttp2-0:1.33.0-4.el8_6.1.src", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-4.el8_6.1.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:nghttp2-0:1.33.0-4.el8_6.1.x86_64" + }, + "product_reference": "nghttp2-0:1.33.0-4.el8_6.1.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:nghttp2-debuginfo-0:1.33.0-4.el8_6.1.aarch64" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:nghttp2-debuginfo-0:1.33.0-4.el8_6.1.i686" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.i686", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:nghttp2-debuginfo-0:1.33.0-4.el8_6.1.ppc64le" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.ppc64le", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:nghttp2-debuginfo-0:1.33.0-4.el8_6.1.s390x" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:nghttp2-debuginfo-0:1.33.0-4.el8_6.1.x86_64" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-4.el8_6.1.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:nghttp2-debugsource-0:1.33.0-4.el8_6.1.aarch64" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.aarch64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:nghttp2-debugsource-0:1.33.0-4.el8_6.1.i686" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.i686", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:nghttp2-debugsource-0:1.33.0-4.el8_6.1.ppc64le" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.ppc64le", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:nghttp2-debugsource-0:1.33.0-4.el8_6.1.s390x" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.s390x", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.6)", + "product_id": "CRB-8.6.0.Z.EUS:nghttp2-debugsource-0:1.33.0-4.el8_6.1.x86_64" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-4.el8_6.1.x86_64", + "relates_to_product_reference": "CRB-8.6.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.aarch64" + }, + "product_reference": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.s390x" + }, + "product_reference": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.x86_64" + }, + "product_reference": "aspnetcore-runtime-6.0-0:6.0.23-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.aarch64" + }, + "product_reference": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.ppc64le" + }, + "product_reference": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.s390x" + }, + "product_reference": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.x86_64" + }, + "product_reference": "aspnetcore-runtime-7.0-0:7.0.12-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.aarch64" + }, + "product_reference": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.s390x" + }, + "product_reference": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.x86_64" + }, + "product_reference": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.aarch64" + }, + "product_reference": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.ppc64le" + }, + "product_reference": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.s390x" + }, + "product_reference": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.x86_64" + }, + "product_reference": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-0:7.0.112-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-0:7.0.112-1.el8_8.aarch64" + }, + "product_reference": "dotnet-0:7.0.112-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-0:7.0.112-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-0:7.0.112-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-0:7.0.112-1.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-0:7.0.112-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-0:7.0.112-1.el8_8.s390x" + }, + "product_reference": "dotnet-0:7.0.112-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-0:7.0.112-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-0:7.0.112-1.el8_8.x86_64" + }, + "product_reference": "dotnet-0:7.0.112-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.aarch64" + }, + "product_reference": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.s390x" + }, + "product_reference": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.x86_64" + }, + "product_reference": "dotnet-apphost-pack-6.0-0:6.0.23-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64" + }, + "product_reference": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.s390x" + }, + "product_reference": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64" + }, + "product_reference": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.aarch64" + }, + "product_reference": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.s390x" + }, + "product_reference": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.x86_64" + }, + "product_reference": "dotnet-apphost-pack-7.0-0:7.0.12-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64" + }, + "product_reference": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.s390x" + }, + "product_reference": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64" + }, + "product_reference": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:7.0.12-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-host-0:7.0.12-1.el8_8.aarch64" + }, + "product_reference": "dotnet-host-0:7.0.12-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:7.0.12-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-host-0:7.0.12-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-host-0:7.0.12-1.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:7.0.12-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-host-0:7.0.12-1.el8_8.s390x" + }, + "product_reference": "dotnet-host-0:7.0.12-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:7.0.12-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-host-0:7.0.12-1.el8_8.x86_64" + }, + "product_reference": "dotnet-host-0:7.0.12-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-host-debuginfo-0:7.0.12-1.el8_8.aarch64" + }, + "product_reference": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-host-debuginfo-0:7.0.12-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-host-debuginfo-0:7.0.12-1.el8_8.s390x" + }, + "product_reference": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-host-debuginfo-0:7.0.12-1.el8_8.x86_64" + }, + "product_reference": "dotnet-host-debuginfo-0:7.0.12-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.aarch64" + }, + "product_reference": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.s390x" + }, + "product_reference": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.x86_64" + }, + "product_reference": "dotnet-hostfxr-6.0-0:6.0.23-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64" + }, + "product_reference": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.s390x" + }, + "product_reference": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64" + }, + "product_reference": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.aarch64" + }, + "product_reference": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.s390x" + }, + "product_reference": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.x86_64" + }, + "product_reference": "dotnet-hostfxr-7.0-0:7.0.12-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64" + }, + "product_reference": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.s390x" + }, + "product_reference": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64" + }, + "product_reference": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-runtime-6.0-0:6.0.23-1.el8_8.aarch64" + }, + "product_reference": "dotnet-runtime-6.0-0:6.0.23-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-runtime-6.0-0:6.0.23-1.el8_8.s390x" + }, + "product_reference": "dotnet-runtime-6.0-0:6.0.23-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-runtime-6.0-0:6.0.23-1.el8_8.x86_64" + }, + "product_reference": "dotnet-runtime-6.0-0:6.0.23-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64" + }, + "product_reference": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.s390x" + }, + "product_reference": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64" + }, + "product_reference": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-runtime-7.0-0:7.0.12-1.el8_8.aarch64" + }, + "product_reference": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-runtime-7.0-0:7.0.12-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-runtime-7.0-0:7.0.12-1.el8_8.s390x" + }, + "product_reference": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-runtime-7.0-0:7.0.12-1.el8_8.x86_64" + }, + "product_reference": "dotnet-runtime-7.0-0:7.0.12-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64" + }, + "product_reference": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.s390x" + }, + "product_reference": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64" + }, + "product_reference": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-sdk-6.0-0:6.0.123-1.el8_8.aarch64" + }, + "product_reference": "dotnet-sdk-6.0-0:6.0.123-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-sdk-6.0-0:6.0.123-1.el8_8.s390x" + }, + "product_reference": "dotnet-sdk-6.0-0:6.0.123-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-sdk-6.0-0:6.0.123-1.el8_8.x86_64" + }, + "product_reference": "dotnet-sdk-6.0-0:6.0.123-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.aarch64" + }, + "product_reference": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.s390x" + }, + "product_reference": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.x86_64" + }, + "product_reference": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.aarch64" + }, + "product_reference": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.s390x" + }, + "product_reference": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.x86_64" + }, + "product_reference": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-sdk-7.0-0:7.0.112-1.el8_8.aarch64" + }, + "product_reference": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-sdk-7.0-0:7.0.112-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-sdk-7.0-0:7.0.112-1.el8_8.s390x" + }, + "product_reference": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-sdk-7.0-0:7.0.112-1.el8_8.x86_64" + }, + "product_reference": "dotnet-sdk-7.0-0:7.0.112-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.aarch64" + }, + "product_reference": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.s390x" + }, + "product_reference": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.x86_64" + }, + "product_reference": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.aarch64" + }, + "product_reference": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.s390x" + }, + "product_reference": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.x86_64" + }, + "product_reference": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.aarch64" + }, + "product_reference": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.s390x" + }, + "product_reference": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.x86_64" + }, + "product_reference": "dotnet-targeting-pack-6.0-0:6.0.23-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.aarch64" + }, + "product_reference": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.s390x" + }, + "product_reference": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.x86_64" + }, + "product_reference": "dotnet-targeting-pack-7.0-0:7.0.12-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-templates-6.0-0:6.0.123-1.el8_8.aarch64" + }, + "product_reference": "dotnet-templates-6.0-0:6.0.123-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-templates-6.0-0:6.0.123-1.el8_8.s390x" + }, + "product_reference": "dotnet-templates-6.0-0:6.0.123-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-templates-6.0-0:6.0.123-1.el8_8.x86_64" + }, + "product_reference": "dotnet-templates-6.0-0:6.0.123-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-7.0-0:7.0.112-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-templates-7.0-0:7.0.112-1.el8_8.aarch64" + }, + "product_reference": "dotnet-templates-7.0-0:7.0.112-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-7.0-0:7.0.112-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-templates-7.0-0:7.0.112-1.el8_8.ppc64le" + }, + "product_reference": "dotnet-templates-7.0-0:7.0.112-1.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-7.0-0:7.0.112-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-templates-7.0-0:7.0.112-1.el8_8.s390x" + }, + "product_reference": "dotnet-templates-7.0-0:7.0.112-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-7.0-0:7.0.112-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet-templates-7.0-0:7.0.112-1.el8_8.x86_64" + }, + "product_reference": "dotnet-templates-7.0-0:7.0.112-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-0:6.0.123-1.el8_8.src as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet6.0-0:6.0.123-1.el8_8.src" + }, + "product_reference": "dotnet6.0-0:6.0.123-1.el8_8.src", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet6.0-debuginfo-0:6.0.123-1.el8_8.aarch64" + }, + "product_reference": "dotnet6.0-debuginfo-0:6.0.123-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet6.0-debuginfo-0:6.0.123-1.el8_8.s390x" + }, + "product_reference": "dotnet6.0-debuginfo-0:6.0.123-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet6.0-debuginfo-0:6.0.123-1.el8_8.x86_64" + }, + "product_reference": "dotnet6.0-debuginfo-0:6.0.123-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet6.0-debugsource-0:6.0.123-1.el8_8.aarch64" + }, + "product_reference": "dotnet6.0-debugsource-0:6.0.123-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet6.0-debugsource-0:6.0.123-1.el8_8.s390x" + }, + "product_reference": "dotnet6.0-debugsource-0:6.0.123-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet6.0-debugsource-0:6.0.123-1.el8_8.x86_64" + }, + "product_reference": "dotnet6.0-debugsource-0:6.0.123-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-0:7.0.112-1.el8_8.src as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet7.0-0:7.0.112-1.el8_8.src" + }, + "product_reference": "dotnet7.0-0:7.0.112-1.el8_8.src", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet7.0-debuginfo-0:7.0.112-1.el8_8.aarch64" + }, + "product_reference": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet7.0-debuginfo-0:7.0.112-1.el8_8.ppc64le" + }, + "product_reference": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet7.0-debuginfo-0:7.0.112-1.el8_8.s390x" + }, + "product_reference": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet7.0-debuginfo-0:7.0.112-1.el8_8.x86_64" + }, + "product_reference": "dotnet7.0-debuginfo-0:7.0.112-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet7.0-debugsource-0:7.0.112-1.el8_8.aarch64" + }, + "product_reference": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet7.0-debugsource-0:7.0.112-1.el8_8.ppc64le" + }, + "product_reference": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet7.0-debugsource-0:7.0.112-1.el8_8.s390x" + }, + "product_reference": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:dotnet7.0-debugsource-0:7.0.112-1.el8_8.x86_64" + }, + "product_reference": "dotnet7.0-debugsource-0:7.0.112-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-5.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:libnghttp2-0:1.33.0-5.el8_8.aarch64" + }, + "product_reference": "libnghttp2-0:1.33.0-5.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-5.el8_8.i686 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:libnghttp2-0:1.33.0-5.el8_8.i686" + }, + "product_reference": "libnghttp2-0:1.33.0-5.el8_8.i686", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-5.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:libnghttp2-0:1.33.0-5.el8_8.ppc64le" + }, + "product_reference": "libnghttp2-0:1.33.0-5.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-5.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:libnghttp2-0:1.33.0-5.el8_8.s390x" + }, + "product_reference": "libnghttp2-0:1.33.0-5.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.33.0-5.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:libnghttp2-0:1.33.0-5.el8_8.x86_64" + }, + "product_reference": "libnghttp2-0:1.33.0-5.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:libnghttp2-debuginfo-0:1.33.0-5.el8_8.aarch64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.i686 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:libnghttp2-debuginfo-0:1.33.0-5.el8_8.i686" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.i686", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:libnghttp2-debuginfo-0:1.33.0-5.el8_8.ppc64le" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:libnghttp2-debuginfo-0:1.33.0-5.el8_8.s390x" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:libnghttp2-debuginfo-0:1.33.0-5.el8_8.x86_64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.33.0-5.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.33.0-5.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:libnghttp2-devel-0:1.33.0-5.el8_8.aarch64" + }, + "product_reference": "libnghttp2-devel-0:1.33.0-5.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.33.0-5.el8_8.i686 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:libnghttp2-devel-0:1.33.0-5.el8_8.i686" + }, + "product_reference": "libnghttp2-devel-0:1.33.0-5.el8_8.i686", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.33.0-5.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:libnghttp2-devel-0:1.33.0-5.el8_8.ppc64le" + }, + "product_reference": "libnghttp2-devel-0:1.33.0-5.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.33.0-5.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:libnghttp2-devel-0:1.33.0-5.el8_8.s390x" + }, + "product_reference": "libnghttp2-devel-0:1.33.0-5.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.33.0-5.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:libnghttp2-devel-0:1.33.0-5.el8_8.x86_64" + }, + "product_reference": "libnghttp2-devel-0:1.33.0-5.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.aarch64" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.ppc64le" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.s390x" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.x86_64" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:7.0.112-1.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-5.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:nghttp2-0:1.33.0-5.el8_8.aarch64" + }, + "product_reference": "nghttp2-0:1.33.0-5.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-5.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:nghttp2-0:1.33.0-5.el8_8.ppc64le" + }, + "product_reference": "nghttp2-0:1.33.0-5.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-5.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:nghttp2-0:1.33.0-5.el8_8.s390x" + }, + "product_reference": "nghttp2-0:1.33.0-5.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-5.el8_8.src as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:nghttp2-0:1.33.0-5.el8_8.src" + }, + "product_reference": "nghttp2-0:1.33.0-5.el8_8.src", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.33.0-5.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:nghttp2-0:1.33.0-5.el8_8.x86_64" + }, + "product_reference": "nghttp2-0:1.33.0-5.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-5.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:nghttp2-debuginfo-0:1.33.0-5.el8_8.aarch64" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-5.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-5.el8_8.i686 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:nghttp2-debuginfo-0:1.33.0-5.el8_8.i686" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-5.el8_8.i686", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-5.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:nghttp2-debuginfo-0:1.33.0-5.el8_8.ppc64le" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-5.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-5.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:nghttp2-debuginfo-0:1.33.0-5.el8_8.s390x" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-5.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.33.0-5.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:nghttp2-debuginfo-0:1.33.0-5.el8_8.x86_64" + }, + "product_reference": "nghttp2-debuginfo-0:1.33.0-5.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-5.el8_8.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:nghttp2-debugsource-0:1.33.0-5.el8_8.aarch64" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-5.el8_8.aarch64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-5.el8_8.i686 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:nghttp2-debugsource-0:1.33.0-5.el8_8.i686" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-5.el8_8.i686", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-5.el8_8.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:nghttp2-debugsource-0:1.33.0-5.el8_8.ppc64le" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-5.el8_8.ppc64le", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-5.el8_8.s390x as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:nghttp2-debugsource-0:1.33.0-5.el8_8.s390x" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-5.el8_8.s390x", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.33.0-5.el8_8.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 8)", + "product_id": "CRB-8.8.0.Z.MAIN.EUS:nghttp2-debugsource-0:1.33.0-5.el8_8.x86_64" + }, + "product_reference": "nghttp2-debugsource-0:1.33.0-5.el8_8.x86_64", + "relates_to_product_reference": "CRB-8.8.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.aarch64" + }, + "product_reference": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.s390x" + }, + "product_reference": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.x86_64" + }, + "product_reference": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_0.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.aarch64" + }, + "product_reference": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.s390x" + }, + "product_reference": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.x86_64" + }, + "product_reference": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_0.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.aarch64" + }, + "product_reference": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.s390x" + }, + "product_reference": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.x86_64" + }, + "product_reference": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_0.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64" + }, + "product_reference": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.s390x" + }, + "product_reference": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64" + }, + "product_reference": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:6.0.23-1.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-host-0:6.0.23-1.el9_0.aarch64" + }, + "product_reference": "dotnet-host-0:6.0.23-1.el9_0.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:6.0.23-1.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-host-0:6.0.23-1.el9_0.s390x" + }, + "product_reference": "dotnet-host-0:6.0.23-1.el9_0.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:6.0.23-1.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-host-0:6.0.23-1.el9_0.x86_64" + }, + "product_reference": "dotnet-host-0:6.0.23-1.el9_0.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:6.0.23-1.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-host-debuginfo-0:6.0.23-1.el9_0.aarch64" + }, + "product_reference": "dotnet-host-debuginfo-0:6.0.23-1.el9_0.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:6.0.23-1.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-host-debuginfo-0:6.0.23-1.el9_0.s390x" + }, + "product_reference": "dotnet-host-debuginfo-0:6.0.23-1.el9_0.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:6.0.23-1.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-host-debuginfo-0:6.0.23-1.el9_0.x86_64" + }, + "product_reference": "dotnet-host-debuginfo-0:6.0.23-1.el9_0.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.aarch64" + }, + "product_reference": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.s390x" + }, + "product_reference": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.x86_64" + }, + "product_reference": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_0.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64" + }, + "product_reference": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.s390x" + }, + "product_reference": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64" + }, + "product_reference": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-runtime-6.0-0:6.0.23-1.el9_0.aarch64" + }, + "product_reference": "dotnet-runtime-6.0-0:6.0.23-1.el9_0.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-runtime-6.0-0:6.0.23-1.el9_0.s390x" + }, + "product_reference": "dotnet-runtime-6.0-0:6.0.23-1.el9_0.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-runtime-6.0-0:6.0.23-1.el9_0.x86_64" + }, + "product_reference": "dotnet-runtime-6.0-0:6.0.23-1.el9_0.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64" + }, + "product_reference": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.s390x" + }, + "product_reference": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64" + }, + "product_reference": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_0.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-sdk-6.0-0:6.0.123-1.el9_0.aarch64" + }, + "product_reference": "dotnet-sdk-6.0-0:6.0.123-1.el9_0.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-sdk-6.0-0:6.0.123-1.el9_0.s390x" + }, + "product_reference": "dotnet-sdk-6.0-0:6.0.123-1.el9_0.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-sdk-6.0-0:6.0.123-1.el9_0.x86_64" + }, + "product_reference": "dotnet-sdk-6.0-0:6.0.123-1.el9_0.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.aarch64" + }, + "product_reference": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.s390x" + }, + "product_reference": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.x86_64" + }, + "product_reference": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_0.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.aarch64" + }, + "product_reference": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.s390x" + }, + "product_reference": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.x86_64" + }, + "product_reference": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_0.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.aarch64" + }, + "product_reference": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.s390x" + }, + "product_reference": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.x86_64" + }, + "product_reference": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_0.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-templates-6.0-0:6.0.123-1.el9_0.aarch64" + }, + "product_reference": "dotnet-templates-6.0-0:6.0.123-1.el9_0.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-templates-6.0-0:6.0.123-1.el9_0.s390x" + }, + "product_reference": "dotnet-templates-6.0-0:6.0.123-1.el9_0.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet-templates-6.0-0:6.0.123-1.el9_0.x86_64" + }, + "product_reference": "dotnet-templates-6.0-0:6.0.123-1.el9_0.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-0:6.0.123-1.el9_0.src as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet6.0-0:6.0.123-1.el9_0.src" + }, + "product_reference": "dotnet6.0-0:6.0.123-1.el9_0.src", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet6.0-debuginfo-0:6.0.123-1.el9_0.aarch64" + }, + "product_reference": "dotnet6.0-debuginfo-0:6.0.123-1.el9_0.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet6.0-debuginfo-0:6.0.123-1.el9_0.s390x" + }, + "product_reference": "dotnet6.0-debuginfo-0:6.0.123-1.el9_0.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet6.0-debuginfo-0:6.0.123-1.el9_0.x86_64" + }, + "product_reference": "dotnet6.0-debuginfo-0:6.0.123-1.el9_0.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet6.0-debugsource-0:6.0.123-1.el9_0.aarch64" + }, + "product_reference": "dotnet6.0-debugsource-0:6.0.123-1.el9_0.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet6.0-debugsource-0:6.0.123-1.el9_0.s390x" + }, + "product_reference": "dotnet6.0-debugsource-0:6.0.123-1.el9_0.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:dotnet6.0-debugsource-0:6.0.123-1.el9_0.x86_64" + }, + "product_reference": "dotnet6.0-debugsource-0:6.0.123-1.el9_0.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_0.2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:libnghttp2-0:1.43.0-5.el9_0.2.aarch64" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_0.2.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_0.2.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:libnghttp2-0:1.43.0-5.el9_0.2.i686" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_0.2.i686", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_0.2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:libnghttp2-0:1.43.0-5.el9_0.2.ppc64le" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_0.2.ppc64le", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_0.2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:libnghttp2-0:1.43.0-5.el9_0.2.s390x" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_0.2.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_0.2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:libnghttp2-0:1.43.0-5.el9_0.2.x86_64" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_0.2.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.aarch64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.i686" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.i686", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.ppc64le" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.ppc64le", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.s390x" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.x86_64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_0.2.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_0.2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:libnghttp2-devel-0:1.43.0-5.el9_0.2.aarch64" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_0.2.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_0.2.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:libnghttp2-devel-0:1.43.0-5.el9_0.2.i686" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_0.2.i686", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_0.2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:libnghttp2-devel-0:1.43.0-5.el9_0.2.ppc64le" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_0.2.ppc64le", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_0.2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:libnghttp2-devel-0:1.43.0-5.el9_0.2.s390x" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_0.2.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_0.2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:libnghttp2-devel-0:1.43.0-5.el9_0.2.x86_64" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_0.2.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.aarch64" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.s390x" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.x86_64" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:6.0.123-1.el9_0.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_0.2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nghttp2-0:1.43.0-5.el9_0.2.aarch64" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_0.2.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_0.2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nghttp2-0:1.43.0-5.el9_0.2.ppc64le" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_0.2.ppc64le", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_0.2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nghttp2-0:1.43.0-5.el9_0.2.s390x" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_0.2.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_0.2.src as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nghttp2-0:1.43.0-5.el9_0.2.src" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_0.2.src", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_0.2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nghttp2-0:1.43.0-5.el9_0.2.x86_64" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_0.2.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nghttp2-debuginfo-0:1.43.0-5.el9_0.2.aarch64" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nghttp2-debuginfo-0:1.43.0-5.el9_0.2.i686" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.i686", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nghttp2-debuginfo-0:1.43.0-5.el9_0.2.ppc64le" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.ppc64le", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nghttp2-debuginfo-0:1.43.0-5.el9_0.2.s390x" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nghttp2-debuginfo-0:1.43.0-5.el9_0.2.x86_64" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_0.2.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nghttp2-debugsource-0:1.43.0-5.el9_0.2.aarch64" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nghttp2-debugsource-0:1.43.0-5.el9_0.2.i686" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.i686", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nghttp2-debugsource-0:1.43.0-5.el9_0.2.ppc64le" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.ppc64le", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nghttp2-debugsource-0:1.43.0-5.el9_0.2.s390x" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nghttp2-debugsource-0:1.43.0-5.el9_0.2.x86_64" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_0.2.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-10.el9_0.1.src as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-1:1.20.1-10.el9_0.1.src" + }, + "product_reference": "nginx-1:1.20.1-10.el9_0.1.src", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-all-modules-1:1.20.1-10.el9_0.1.noarch as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-all-modules-1:1.20.1-10.el9_0.1.noarch" + }, + "product_reference": "nginx-all-modules-1:1.20.1-10.el9_0.1.noarch", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-debuginfo-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-debuginfo-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-debuginfo-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-debuginfo-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-debugsource-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-debugsource-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-debugsource-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-debugsource-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-debugsource-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-debugsource-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-debugsource-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-debugsource-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-filesystem-1:1.20.1-10.el9_0.1.noarch as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-filesystem-1:1.20.1-10.el9_0.1.noarch" + }, + "product_reference": "nginx-filesystem-1:1.20.1-10.el9_0.1.noarch", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-devel-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-mod-devel-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-devel-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-mod-devel-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-devel-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-mod-devel-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-devel-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-mod-devel-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-http-perl-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-http-perl-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-http-perl-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-http-perl-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-mod-http-perl-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-mail-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-mod-mail-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-mail-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-mod-mail-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-mail-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-mod-mail-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-mail-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-mod-mail-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-stream-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-mod-stream-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-stream-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-mod-stream-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-stream-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-mod-stream-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-stream-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-mod-stream-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.aarch64" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.ppc64le" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.ppc64le", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.s390x" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.x86_64" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.20.1-10.el9_0.1.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.6.2-2.el9_0.2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:varnish-0:6.6.2-2.el9_0.2.aarch64" + }, + "product_reference": "varnish-0:6.6.2-2.el9_0.2.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.6.2-2.el9_0.2.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:varnish-0:6.6.2-2.el9_0.2.i686" + }, + "product_reference": "varnish-0:6.6.2-2.el9_0.2.i686", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.6.2-2.el9_0.2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:varnish-0:6.6.2-2.el9_0.2.ppc64le" + }, + "product_reference": "varnish-0:6.6.2-2.el9_0.2.ppc64le", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.6.2-2.el9_0.2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:varnish-0:6.6.2-2.el9_0.2.s390x" + }, + "product_reference": "varnish-0:6.6.2-2.el9_0.2.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.6.2-2.el9_0.2.src as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:varnish-0:6.6.2-2.el9_0.2.src" + }, + "product_reference": "varnish-0:6.6.2-2.el9_0.2.src", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.6.2-2.el9_0.2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:varnish-0:6.6.2-2.el9_0.2.x86_64" + }, + "product_reference": "varnish-0:6.6.2-2.el9_0.2.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.6.2-2.el9_0.2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:varnish-devel-0:6.6.2-2.el9_0.2.aarch64" + }, + "product_reference": "varnish-devel-0:6.6.2-2.el9_0.2.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.6.2-2.el9_0.2.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:varnish-devel-0:6.6.2-2.el9_0.2.i686" + }, + "product_reference": "varnish-devel-0:6.6.2-2.el9_0.2.i686", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.6.2-2.el9_0.2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:varnish-devel-0:6.6.2-2.el9_0.2.ppc64le" + }, + "product_reference": "varnish-devel-0:6.6.2-2.el9_0.2.ppc64le", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.6.2-2.el9_0.2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:varnish-devel-0:6.6.2-2.el9_0.2.s390x" + }, + "product_reference": "varnish-devel-0:6.6.2-2.el9_0.2.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.6.2-2.el9_0.2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:varnish-devel-0:6.6.2-2.el9_0.2.x86_64" + }, + "product_reference": "varnish-devel-0:6.6.2-2.el9_0.2.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.6.2-2.el9_0.2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:varnish-docs-0:6.6.2-2.el9_0.2.aarch64" + }, + "product_reference": "varnish-docs-0:6.6.2-2.el9_0.2.aarch64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.6.2-2.el9_0.2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:varnish-docs-0:6.6.2-2.el9_0.2.ppc64le" + }, + "product_reference": "varnish-docs-0:6.6.2-2.el9_0.2.ppc64le", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.6.2-2.el9_0.2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:varnish-docs-0:6.6.2-2.el9_0.2.s390x" + }, + "product_reference": "varnish-docs-0:6.6.2-2.el9_0.2.s390x", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.6.2-2.el9_0.2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)", + "product_id": "CRB-9.0.0.Z.EUS:varnish-docs-0:6.6.2-2.el9_0.2.x86_64" + }, + "product_reference": "varnish-docs-0:6.6.2-2.el9_0.2.x86_64", + "relates_to_product_reference": "CRB-9.0.0.Z.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.aarch64" + }, + "product_reference": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.s390x" + }, + "product_reference": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.x86_64" + }, + "product_reference": "aspnetcore-runtime-6.0-0:6.0.23-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.aarch64" + }, + "product_reference": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.ppc64le" + }, + "product_reference": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.s390x" + }, + "product_reference": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.x86_64" + }, + "product_reference": "aspnetcore-runtime-7.0-0:7.0.12-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.aarch64" + }, + "product_reference": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.s390x" + }, + "product_reference": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.x86_64" + }, + "product_reference": "aspnetcore-targeting-pack-6.0-0:6.0.23-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.aarch64" + }, + "product_reference": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.ppc64le" + }, + "product_reference": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.s390x" + }, + "product_reference": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.x86_64" + }, + "product_reference": "aspnetcore-targeting-pack-7.0-0:7.0.12-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.aarch64" + }, + "product_reference": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.s390x" + }, + "product_reference": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.x86_64" + }, + "product_reference": "dotnet-apphost-pack-6.0-0:6.0.23-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64" + }, + "product_reference": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.s390x" + }, + "product_reference": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64" + }, + "product_reference": "dotnet-apphost-pack-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.aarch64" + }, + "product_reference": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.s390x" + }, + "product_reference": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.x86_64" + }, + "product_reference": "dotnet-apphost-pack-7.0-0:7.0.12-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64" + }, + "product_reference": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.s390x" + }, + "product_reference": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64" + }, + "product_reference": "dotnet-apphost-pack-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:7.0.12-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-host-0:7.0.12-1.el9_2.aarch64" + }, + "product_reference": "dotnet-host-0:7.0.12-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:7.0.12-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-host-0:7.0.12-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-host-0:7.0.12-1.el9_2.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:7.0.12-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-host-0:7.0.12-1.el9_2.s390x" + }, + "product_reference": "dotnet-host-0:7.0.12-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-0:7.0.12-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-host-0:7.0.12-1.el9_2.x86_64" + }, + "product_reference": "dotnet-host-0:7.0.12-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-host-debuginfo-0:7.0.12-1.el9_2.aarch64" + }, + "product_reference": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-host-debuginfo-0:7.0.12-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-host-debuginfo-0:7.0.12-1.el9_2.s390x" + }, + "product_reference": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-host-debuginfo-0:7.0.12-1.el9_2.x86_64" + }, + "product_reference": "dotnet-host-debuginfo-0:7.0.12-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.aarch64" + }, + "product_reference": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.s390x" + }, + "product_reference": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.x86_64" + }, + "product_reference": "dotnet-hostfxr-6.0-0:6.0.23-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64" + }, + "product_reference": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.s390x" + }, + "product_reference": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64" + }, + "product_reference": "dotnet-hostfxr-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.aarch64" + }, + "product_reference": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.s390x" + }, + "product_reference": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.x86_64" + }, + "product_reference": "dotnet-hostfxr-7.0-0:7.0.12-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64" + }, + "product_reference": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.s390x" + }, + "product_reference": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64" + }, + "product_reference": "dotnet-hostfxr-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-runtime-6.0-0:6.0.23-1.el9_2.aarch64" + }, + "product_reference": "dotnet-runtime-6.0-0:6.0.23-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-runtime-6.0-0:6.0.23-1.el9_2.s390x" + }, + "product_reference": "dotnet-runtime-6.0-0:6.0.23-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-0:6.0.23-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-runtime-6.0-0:6.0.23-1.el9_2.x86_64" + }, + "product_reference": "dotnet-runtime-6.0-0:6.0.23-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64" + }, + "product_reference": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.s390x" + }, + "product_reference": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64" + }, + "product_reference": "dotnet-runtime-6.0-debuginfo-0:6.0.23-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-runtime-7.0-0:7.0.12-1.el9_2.aarch64" + }, + "product_reference": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-runtime-7.0-0:7.0.12-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-runtime-7.0-0:7.0.12-1.el9_2.s390x" + }, + "product_reference": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-runtime-7.0-0:7.0.12-1.el9_2.x86_64" + }, + "product_reference": "dotnet-runtime-7.0-0:7.0.12-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64" + }, + "product_reference": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.s390x" + }, + "product_reference": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64" + }, + "product_reference": "dotnet-runtime-7.0-debuginfo-0:7.0.12-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-sdk-6.0-0:6.0.123-1.el9_2.aarch64" + }, + "product_reference": "dotnet-sdk-6.0-0:6.0.123-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-sdk-6.0-0:6.0.123-1.el9_2.s390x" + }, + "product_reference": "dotnet-sdk-6.0-0:6.0.123-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-0:6.0.123-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-sdk-6.0-0:6.0.123-1.el9_2.x86_64" + }, + "product_reference": "dotnet-sdk-6.0-0:6.0.123-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.aarch64" + }, + "product_reference": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.s390x" + }, + "product_reference": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.x86_64" + }, + "product_reference": "dotnet-sdk-6.0-debuginfo-0:6.0.123-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.aarch64" + }, + "product_reference": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.s390x" + }, + "product_reference": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.x86_64" + }, + "product_reference": "dotnet-sdk-6.0-source-built-artifacts-0:6.0.123-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-sdk-7.0-0:7.0.112-1.el9_2.aarch64" + }, + "product_reference": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-sdk-7.0-0:7.0.112-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-sdk-7.0-0:7.0.112-1.el9_2.s390x" + }, + "product_reference": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-sdk-7.0-0:7.0.112-1.el9_2.x86_64" + }, + "product_reference": "dotnet-sdk-7.0-0:7.0.112-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.aarch64" + }, + "product_reference": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.s390x" + }, + "product_reference": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.x86_64" + }, + "product_reference": "dotnet-sdk-7.0-debuginfo-0:7.0.112-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.aarch64" + }, + "product_reference": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.s390x" + }, + "product_reference": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.x86_64" + }, + "product_reference": "dotnet-sdk-7.0-source-built-artifacts-0:7.0.112-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.aarch64" + }, + "product_reference": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.s390x" + }, + "product_reference": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.x86_64" + }, + "product_reference": "dotnet-targeting-pack-6.0-0:6.0.23-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.aarch64" + }, + "product_reference": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.s390x" + }, + "product_reference": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.x86_64" + }, + "product_reference": "dotnet-targeting-pack-7.0-0:7.0.12-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-templates-6.0-0:6.0.123-1.el9_2.aarch64" + }, + "product_reference": "dotnet-templates-6.0-0:6.0.123-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-templates-6.0-0:6.0.123-1.el9_2.s390x" + }, + "product_reference": "dotnet-templates-6.0-0:6.0.123-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-6.0-0:6.0.123-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-templates-6.0-0:6.0.123-1.el9_2.x86_64" + }, + "product_reference": "dotnet-templates-6.0-0:6.0.123-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-7.0-0:7.0.112-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-templates-7.0-0:7.0.112-1.el9_2.aarch64" + }, + "product_reference": "dotnet-templates-7.0-0:7.0.112-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-7.0-0:7.0.112-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-templates-7.0-0:7.0.112-1.el9_2.ppc64le" + }, + "product_reference": "dotnet-templates-7.0-0:7.0.112-1.el9_2.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-7.0-0:7.0.112-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-templates-7.0-0:7.0.112-1.el9_2.s390x" + }, + "product_reference": "dotnet-templates-7.0-0:7.0.112-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet-templates-7.0-0:7.0.112-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet-templates-7.0-0:7.0.112-1.el9_2.x86_64" + }, + "product_reference": "dotnet-templates-7.0-0:7.0.112-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-0:6.0.123-1.el9_2.src as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet6.0-0:6.0.123-1.el9_2.src" + }, + "product_reference": "dotnet6.0-0:6.0.123-1.el9_2.src", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet6.0-debuginfo-0:6.0.123-1.el9_2.aarch64" + }, + "product_reference": "dotnet6.0-debuginfo-0:6.0.123-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet6.0-debuginfo-0:6.0.123-1.el9_2.s390x" + }, + "product_reference": "dotnet6.0-debuginfo-0:6.0.123-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debuginfo-0:6.0.123-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet6.0-debuginfo-0:6.0.123-1.el9_2.x86_64" + }, + "product_reference": "dotnet6.0-debuginfo-0:6.0.123-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet6.0-debugsource-0:6.0.123-1.el9_2.aarch64" + }, + "product_reference": "dotnet6.0-debugsource-0:6.0.123-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet6.0-debugsource-0:6.0.123-1.el9_2.s390x" + }, + "product_reference": "dotnet6.0-debugsource-0:6.0.123-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet6.0-debugsource-0:6.0.123-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet6.0-debugsource-0:6.0.123-1.el9_2.x86_64" + }, + "product_reference": "dotnet6.0-debugsource-0:6.0.123-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-0:7.0.112-1.el9_2.src as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet7.0-0:7.0.112-1.el9_2.src" + }, + "product_reference": "dotnet7.0-0:7.0.112-1.el9_2.src", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet7.0-debuginfo-0:7.0.112-1.el9_2.aarch64" + }, + "product_reference": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet7.0-debuginfo-0:7.0.112-1.el9_2.ppc64le" + }, + "product_reference": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet7.0-debuginfo-0:7.0.112-1.el9_2.s390x" + }, + "product_reference": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet7.0-debuginfo-0:7.0.112-1.el9_2.x86_64" + }, + "product_reference": "dotnet7.0-debuginfo-0:7.0.112-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet7.0-debugsource-0:7.0.112-1.el9_2.aarch64" + }, + "product_reference": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet7.0-debugsource-0:7.0.112-1.el9_2.ppc64le" + }, + "product_reference": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet7.0-debugsource-0:7.0.112-1.el9_2.s390x" + }, + "product_reference": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:dotnet7.0-debugsource-0:7.0.112-1.el9_2.x86_64" + }, + "product_reference": "dotnet7.0-debugsource-0:7.0.112-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:libnghttp2-0:1.43.0-5.el9_2.1.aarch64" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_2.1.i686 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:libnghttp2-0:1.43.0-5.el9_2.1.i686" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_2.1.i686", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:libnghttp2-0:1.43.0-5.el9_2.1.ppc64le" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:libnghttp2-0:1.43.0-5.el9_2.1.s390x" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:libnghttp2-0:1.43.0-5.el9_2.1.x86_64" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.aarch64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.i686 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.i686" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.i686", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.ppc64le" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.s390x" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.x86_64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:libnghttp2-devel-0:1.43.0-5.el9_2.1.aarch64" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_2.1.i686 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:libnghttp2-devel-0:1.43.0-5.el9_2.1.i686" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_2.1.i686", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:libnghttp2-devel-0:1.43.0-5.el9_2.1.ppc64le" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:libnghttp2-devel-0:1.43.0-5.el9_2.1.s390x" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:libnghttp2-devel-0:1.43.0-5.el9_2.1.x86_64" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.aarch64" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.ppc64le" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.s390x" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.x86_64" + }, + "product_reference": "netstandard-targeting-pack-2.1-0:7.0.112-1.el9_2.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nghttp2-0:1.43.0-5.el9_2.1.aarch64" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nghttp2-0:1.43.0-5.el9_2.1.ppc64le" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nghttp2-0:1.43.0-5.el9_2.1.s390x" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_2.1.src as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nghttp2-0:1.43.0-5.el9_2.1.src" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_2.1.src", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nghttp2-0:1.43.0-5.el9_2.1.x86_64" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nghttp2-debuginfo-0:1.43.0-5.el9_2.1.aarch64" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.i686 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nghttp2-debuginfo-0:1.43.0-5.el9_2.1.i686" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.i686", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nghttp2-debuginfo-0:1.43.0-5.el9_2.1.ppc64le" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nghttp2-debuginfo-0:1.43.0-5.el9_2.1.s390x" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nghttp2-debuginfo-0:1.43.0-5.el9_2.1.x86_64" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nghttp2-debugsource-0:1.43.0-5.el9_2.1.aarch64" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.i686 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nghttp2-debugsource-0:1.43.0-5.el9_2.1.i686" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.i686", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nghttp2-debugsource-0:1.43.0-5.el9_2.1.ppc64le" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nghttp2-debugsource-0:1.43.0-5.el9_2.1.s390x" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nghttp2-debugsource-0:1.43.0-5.el9_2.1.x86_64" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-14.el9_2.1.src as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-1:1.20.1-14.el9_2.1.src" + }, + "product_reference": "nginx-1:1.20.1-14.el9_2.1.src", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-all-modules-1:1.20.1-14.el9_2.1.noarch as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-all-modules-1:1.20.1-14.el9_2.1.noarch" + }, + "product_reference": "nginx-all-modules-1:1.20.1-14.el9_2.1.noarch", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-core-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-core-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-core-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-core-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-core-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-core-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-core-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-core-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-core-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-core-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-core-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-core-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-core-debuginfo-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-core-debuginfo-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-core-debuginfo-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-core-debuginfo-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-core-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-debuginfo-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-debuginfo-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-debuginfo-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debuginfo-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-debuginfo-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-debugsource-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-debugsource-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-debugsource-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-debugsource-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-debugsource-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-debugsource-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-debugsource-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-debugsource-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-debugsource-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-filesystem-1:1.20.1-14.el9_2.1.noarch as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-filesystem-1:1.20.1-14.el9_2.1.noarch" + }, + "product_reference": "nginx-filesystem-1:1.20.1-14.el9_2.1.noarch", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-devel-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-mod-devel-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-devel-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-mod-devel-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-devel-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-mod-devel-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-devel-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-devel-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-mod-devel-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-mod-http-image-filter-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-mod-http-image-filter-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-http-perl-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-http-perl-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-http-perl-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-http-perl-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-mod-http-perl-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-mod-http-perl-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-mod-http-xslt-filter-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-mod-http-xslt-filter-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-mail-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-mod-mail-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-mail-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-mod-mail-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-mail-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-mod-mail-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-mail-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-mod-mail-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-mod-mail-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-stream-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-mod-stream-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-stream-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-mod-stream-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-stream-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-mod-stream-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-stream-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-mod-stream-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.aarch64" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.ppc64le" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.s390x" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.x86_64" + }, + "product_reference": "nginx-mod-stream-debuginfo-1:1.20.1-14.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.6.2-3.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:varnish-0:6.6.2-3.el9_2.1.aarch64" + }, + "product_reference": "varnish-0:6.6.2-3.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.6.2-3.el9_2.1.i686 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:varnish-0:6.6.2-3.el9_2.1.i686" + }, + "product_reference": "varnish-0:6.6.2-3.el9_2.1.i686", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.6.2-3.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:varnish-0:6.6.2-3.el9_2.1.ppc64le" + }, + "product_reference": "varnish-0:6.6.2-3.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.6.2-3.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:varnish-0:6.6.2-3.el9_2.1.s390x" + }, + "product_reference": "varnish-0:6.6.2-3.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.6.2-3.el9_2.1.src as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:varnish-0:6.6.2-3.el9_2.1.src" + }, + "product_reference": "varnish-0:6.6.2-3.el9_2.1.src", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-0:6.6.2-3.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:varnish-0:6.6.2-3.el9_2.1.x86_64" + }, + "product_reference": "varnish-0:6.6.2-3.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.6.2-3.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:varnish-devel-0:6.6.2-3.el9_2.1.aarch64" + }, + "product_reference": "varnish-devel-0:6.6.2-3.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.6.2-3.el9_2.1.i686 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:varnish-devel-0:6.6.2-3.el9_2.1.i686" + }, + "product_reference": "varnish-devel-0:6.6.2-3.el9_2.1.i686", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.6.2-3.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:varnish-devel-0:6.6.2-3.el9_2.1.ppc64le" + }, + "product_reference": "varnish-devel-0:6.6.2-3.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.6.2-3.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:varnish-devel-0:6.6.2-3.el9_2.1.s390x" + }, + "product_reference": "varnish-devel-0:6.6.2-3.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-devel-0:6.6.2-3.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:varnish-devel-0:6.6.2-3.el9_2.1.x86_64" + }, + "product_reference": "varnish-devel-0:6.6.2-3.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.6.2-3.el9_2.1.aarch64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:varnish-docs-0:6.6.2-3.el9_2.1.aarch64" + }, + "product_reference": "varnish-docs-0:6.6.2-3.el9_2.1.aarch64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.6.2-3.el9_2.1.ppc64le as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:varnish-docs-0:6.6.2-3.el9_2.1.ppc64le" + }, + "product_reference": "varnish-docs-0:6.6.2-3.el9_2.1.ppc64le", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.6.2-3.el9_2.1.s390x as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:varnish-docs-0:6.6.2-3.el9_2.1.s390x" + }, + "product_reference": "varnish-docs-0:6.6.2-3.el9_2.1.s390x", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "varnish-docs-0:6.6.2-3.el9_2.1.x86_64 as a component of Red Hat Enterprise Linux CRB (v. 9)", + "product_id": "CRB-9.2.0.Z.MAIN.EUS:varnish-docs-0:6.6.2-3.el9_2.1.x86_64" + }, + "product_reference": "varnish-docs-0:6.6.2-3.el9_2.1.x86_64", + "relates_to_product_reference": "CRB-9.2.0.Z.MAIN.EUS" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_3.1.aarch64 as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:libnghttp2-0:1.43.0-5.el9_3.1.aarch64" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_3.1.aarch64", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_3.1.i686 as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:libnghttp2-0:1.43.0-5.el9_3.1.i686" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_3.1.i686", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_3.1.ppc64le as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:libnghttp2-0:1.43.0-5.el9_3.1.ppc64le" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_3.1.ppc64le", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_3.1.s390x as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:libnghttp2-0:1.43.0-5.el9_3.1.s390x" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_3.1.s390x", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-0:1.43.0-5.el9_3.1.x86_64 as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:libnghttp2-0:1.43.0-5.el9_3.1.x86_64" + }, + "product_reference": "libnghttp2-0:1.43.0-5.el9_3.1.x86_64", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.aarch64 as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.aarch64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.aarch64", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.i686 as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.i686" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.i686", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.ppc64le as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.ppc64le" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.ppc64le", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.s390x as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.s390x" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.s390x", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.x86_64 as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.x86_64" + }, + "product_reference": "libnghttp2-debuginfo-0:1.43.0-5.el9_3.1.x86_64", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_3.1.aarch64 as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:libnghttp2-devel-0:1.43.0-5.el9_3.1.aarch64" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_3.1.aarch64", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_3.1.i686 as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:libnghttp2-devel-0:1.43.0-5.el9_3.1.i686" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_3.1.i686", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_3.1.ppc64le as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:libnghttp2-devel-0:1.43.0-5.el9_3.1.ppc64le" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_3.1.ppc64le", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_3.1.s390x as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:libnghttp2-devel-0:1.43.0-5.el9_3.1.s390x" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_3.1.s390x", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libnghttp2-devel-0:1.43.0-5.el9_3.1.x86_64 as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:libnghttp2-devel-0:1.43.0-5.el9_3.1.x86_64" + }, + "product_reference": "libnghttp2-devel-0:1.43.0-5.el9_3.1.x86_64", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_3.1.aarch64 as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:nghttp2-0:1.43.0-5.el9_3.1.aarch64" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_3.1.aarch64", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_3.1.ppc64le as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:nghttp2-0:1.43.0-5.el9_3.1.ppc64le" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_3.1.ppc64le", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_3.1.s390x as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:nghttp2-0:1.43.0-5.el9_3.1.s390x" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_3.1.s390x", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_3.1.src as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:nghttp2-0:1.43.0-5.el9_3.1.src" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_3.1.src", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-0:1.43.0-5.el9_3.1.x86_64 as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:nghttp2-0:1.43.0-5.el9_3.1.x86_64" + }, + "product_reference": "nghttp2-0:1.43.0-5.el9_3.1.x86_64", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.aarch64 as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:nghttp2-debuginfo-0:1.43.0-5.el9_3.1.aarch64" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.aarch64", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.i686 as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:nghttp2-debuginfo-0:1.43.0-5.el9_3.1.i686" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.i686", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.ppc64le as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:nghttp2-debuginfo-0:1.43.0-5.el9_3.1.ppc64le" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.ppc64le", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.s390x as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:nghttp2-debuginfo-0:1.43.0-5.el9_3.1.s390x" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.s390x", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.x86_64 as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:nghttp2-debuginfo-0:1.43.0-5.el9_3.1.x86_64" + }, + "product_reference": "nghttp2-debuginfo-0:1.43.0-5.el9_3.1.x86_64", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.aarch64 as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:nghttp2-debugsource-0:1.43.0-5.el9_3.1.aarch64" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.aarch64", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.i686 as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:nghttp2-debugsource-0:1.43.0-5.el9_3.1.i686" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.i686", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.ppc64le as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:nghttp2-debugsource-0:1.43.0-5.el9_3.1.ppc64le" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.ppc64le", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.s390x as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:nghttp2-debugsource-0:1.43.0-5.el9_3.1.s390x" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.s390x", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.x86_64 as a component of Red Hat CodeReady Linux Builder (v. 9)", + "product_id": "CRB-9.3.0.Z.MAIN:nghttp2-debugsource-0:1.43.0-5.el9_3.1.x86_64" + }, + "product_reference": "nghttp2-debugsource-0:1.43.0-5.el9_3.1.x86_64", + "relates_to_product_reference": "CRB-9.3.0.Z.MAIN" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "antlr.antlr-2.7.7 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:antlr.antlr-2.7.7" + }, + "product_reference": "antlr.antlr-2.7.7", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "aopalliance.aopalliance-1.0 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:aopalliance.aopalliance-1.0" + }, + "product_reference": "aopalliance.aopalliance-1.0", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "biz.aQute.bnd.biz.aQute.bnd.transform-6.3.1 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:biz.aQute.bnd.biz.aQute.bnd.transform-6.3.1" + }, + "product_reference": "biz.aQute.bnd.biz.aQute.bnd.transform-6.3.1", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.aayushatharva.brotli4j.brotli4j-1.8.0.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.aayushatharva.brotli4j.brotli4j-1.8.0.redhat-00003" + }, + "product_reference": "com.aayushatharva.brotli4j.brotli4j-1.8.0.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.aayushatharva.brotli4j.native-linux-x86_64-1.8.0.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.aayushatharva.brotli4j.native-linux-x86_64-1.8.0.redhat-00003" + }, + "product_reference": "com.aayushatharva.brotli4j.native-linux-x86_64-1.8.0.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.cronutils.cron-utils-9.2.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.cronutils.cron-utils-9.2.0.redhat-00001" + }, + "product_reference": "com.cronutils.cron-utils-9.2.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.fasterxml.classmate-1.5.1.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.fasterxml.classmate-1.5.1.redhat-00001" + }, + "product_reference": "com.fasterxml.classmate-1.5.1.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.fasterxml.jackson.core.jackson-annotations-2.13.4.redhat-00004 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.fasterxml.jackson.core.jackson-annotations-2.13.4.redhat-00004" + }, + "product_reference": "com.fasterxml.jackson.core.jackson-annotations-2.13.4.redhat-00004", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.fasterxml.jackson.core.jackson-core-2.13.4.redhat-00004 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.fasterxml.jackson.core.jackson-core-2.13.4.redhat-00004" + }, + "product_reference": "com.fasterxml.jackson.core.jackson-core-2.13.4.redhat-00004", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.fasterxml.jackson.core.jackson-databind-2.13.4.2-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.fasterxml.jackson.core.jackson-databind-2.13.4.2-redhat-00001" + }, + "product_reference": "com.fasterxml.jackson.core.jackson-databind-2.13.4.2-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.fasterxml.jackson.dataformat.jackson-dataformat-properties-2.13.4.redhat-00004 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.fasterxml.jackson.dataformat.jackson-dataformat-properties-2.13.4.redhat-00004" + }, + "product_reference": "com.fasterxml.jackson.dataformat.jackson-dataformat-properties-2.13.4.redhat-00004", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.fasterxml.jackson.dataformat.jackson-dataformat-yaml-2.13.4.redhat-00004 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.fasterxml.jackson.dataformat.jackson-dataformat-yaml-2.13.4.redhat-00004" + }, + "product_reference": "com.fasterxml.jackson.dataformat.jackson-dataformat-yaml-2.13.4.redhat-00004", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.fasterxml.jackson.datatype.jackson-datatype-jdk8-2.13.4.redhat-00004 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.fasterxml.jackson.datatype.jackson-datatype-jdk8-2.13.4.redhat-00004" + }, + "product_reference": "com.fasterxml.jackson.datatype.jackson-datatype-jdk8-2.13.4.redhat-00004", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.fasterxml.jackson.datatype.jackson-datatype-jsr310-2.13.4.redhat-00004 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.fasterxml.jackson.datatype.jackson-datatype-jsr310-2.13.4.redhat-00004" + }, + "product_reference": "com.fasterxml.jackson.datatype.jackson-datatype-jsr310-2.13.4.redhat-00004", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.fasterxml.jackson.jaxrs.jackson-jaxrs-base-2.13.4.redhat-00004 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.fasterxml.jackson.jaxrs.jackson-jaxrs-base-2.13.4.redhat-00004" + }, + "product_reference": "com.fasterxml.jackson.jaxrs.jackson-jaxrs-base-2.13.4.redhat-00004", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.fasterxml.jackson.jaxrs.jackson-jaxrs-json-provider-2.13.4.redhat-00004 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.fasterxml.jackson.jaxrs.jackson-jaxrs-json-provider-2.13.4.redhat-00004" + }, + "product_reference": "com.fasterxml.jackson.jaxrs.jackson-jaxrs-json-provider-2.13.4.redhat-00004", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.fasterxml.jackson.module.jackson-module-jaxb-annotations-2.13.4.redhat-00004 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.fasterxml.jackson.module.jackson-module-jaxb-annotations-2.13.4.redhat-00004" + }, + "product_reference": "com.fasterxml.jackson.module.jackson-module-jaxb-annotations-2.13.4.redhat-00004", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.fasterxml.jackson.module.jackson-module-parameter-names-2.13.4.redhat-00004 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.fasterxml.jackson.module.jackson-module-parameter-names-2.13.4.redhat-00004" + }, + "product_reference": "com.fasterxml.jackson.module.jackson-module-parameter-names-2.13.4.redhat-00004", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.github.ben-manes.caffeine.caffeine-2.9.3.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.github.ben-manes.caffeine.caffeine-2.9.3.redhat-00003" + }, + "product_reference": "com.github.ben-manes.caffeine.caffeine-2.9.3.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.github.docker-java.docker-java-api-3.2.13 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.github.docker-java.docker-java-api-3.2.13" + }, + "product_reference": "com.github.docker-java.docker-java-api-3.2.13", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.github.docker-java.docker-java-transport-3.2.13 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.github.docker-java.docker-java-transport-3.2.13" + }, + "product_reference": "com.github.docker-java.docker-java-transport-3.2.13", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.github.docker-java.docker-java-transport-zerodep-3.2.13 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.github.docker-java.docker-java-transport-zerodep-3.2.13" + }, + "product_reference": "com.github.docker-java.docker-java-transport-zerodep-3.2.13", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.github.java-json-tools.btf-1.3.0.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.github.java-json-tools.btf-1.3.0.redhat-00003" + }, + "product_reference": "com.github.java-json-tools.btf-1.3.0.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.github.java-json-tools.jackson-coreutils-2.0.0.redhat-00005 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.github.java-json-tools.jackson-coreutils-2.0.0.redhat-00005" + }, + "product_reference": "com.github.java-json-tools.jackson-coreutils-2.0.0.redhat-00005", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.github.java-json-tools.json-patch-1.13.0.redhat-00007 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.github.java-json-tools.json-patch-1.13.0.redhat-00007" + }, + "product_reference": "com.github.java-json-tools.json-patch-1.13.0.redhat-00007", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.github.java-json-tools.msg-simple-1.2.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.github.java-json-tools.msg-simple-1.2.0.redhat-00002" + }, + "product_reference": "com.github.java-json-tools.msg-simple-1.2.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.github.javaparser.javaparser-core-3.24.2.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.github.javaparser.javaparser-core-3.24.2.redhat-00003" + }, + "product_reference": "com.github.javaparser.javaparser-core-3.24.2.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.github.luben.zstd-jni-1.5.2.3-redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.github.luben.zstd-jni-1.5.2.3-redhat-00002" + }, + "product_reference": "com.github.luben.zstd-jni-1.5.2.3-redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.github.mifmif.generex-1.0.2.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.github.mifmif.generex-1.0.2.redhat-00003" + }, + "product_reference": "com.github.mifmif.generex-1.0.2.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.google.api.grpc.proto-google-common-protos-2.9.2.redhat-00004 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.google.api.grpc.proto-google-common-protos-2.9.2.redhat-00004" + }, + "product_reference": "com.google.api.grpc.proto-google-common-protos-2.9.2.redhat-00004", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.google.code.findbugs.jsr305-3.0.2.redhat-00009 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.google.code.findbugs.jsr305-3.0.2.redhat-00009" + }, + "product_reference": "com.google.code.findbugs.jsr305-3.0.2.redhat-00009", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.google.code.gson.gson-2.9.1.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.google.code.gson.gson-2.9.1.redhat-00003" + }, + "product_reference": "com.google.code.gson.gson-2.9.1.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.google.errorprone.error_prone_annotations-2.15.0.redhat-00004 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.google.errorprone.error_prone_annotations-2.15.0.redhat-00004" + }, + "product_reference": "com.google.errorprone.error_prone_annotations-2.15.0.redhat-00004", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.google.guava.failureaccess-1.0.1.redhat-00004 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.google.guava.failureaccess-1.0.1.redhat-00004" + }, + "product_reference": "com.google.guava.failureaccess-1.0.1.redhat-00004", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.google.guava.guava-31.1.0.jre-redhat-00004 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.google.guava.guava-31.1.0.jre-redhat-00004" + }, + "product_reference": "com.google.guava.guava-31.1.0.jre-redhat-00004", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.google.inject.guice-4.2.2 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.google.inject.guice-4.2.2" + }, + "product_reference": "com.google.inject.guice-4.2.2", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.google.j2objc.j2objc-annotations-1.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.google.j2objc.j2objc-annotations-1.3" + }, + "product_reference": "com.google.j2objc.j2objc-annotations-1.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.google.protobuf.protobuf-java-3.19.6.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.google.protobuf.protobuf-java-3.19.6.redhat-00003" + }, + "product_reference": "com.google.protobuf.protobuf-java-3.19.6.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.google.protobuf.protobuf-java-util-3.19.6.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.google.protobuf.protobuf-java-util-3.19.6.redhat-00003" + }, + "product_reference": "com.google.protobuf.protobuf-java-util-3.19.6.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.google.protobuf.protoc-3.19.6 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.google.protobuf.protoc-3.19.6" + }, + "product_reference": "com.google.protobuf.protoc-3.19.6", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.graphql-java.graphql-java-19.4.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.graphql-java.graphql-java-19.4.0.redhat-00001" + }, + "product_reference": "com.graphql-java.graphql-java-19.4.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.graphql-java.java-dataloader-3.2.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.graphql-java.java-dataloader-3.2.0.redhat-00001" + }, + "product_reference": "com.graphql-java.java-dataloader-3.2.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.h2database.h2-2.1.214 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.h2database.h2-2.1.214" + }, + "product_reference": "com.h2database.h2-2.1.214", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.ibm.async.asyncutil-0.1.0.redhat-00010 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.ibm.async.asyncutil-0.1.0.redhat-00010" + }, + "product_reference": "com.ibm.async.asyncutil-0.1.0.redhat-00010", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.ibm.db2.jcc-11.5.7.0 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.ibm.db2.jcc-11.5.7.0" + }, + "product_reference": "com.ibm.db2.jcc-11.5.7.0", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.mchange.mchange-commons-java-0.2.15.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.mchange.mchange-commons-java-0.2.15.redhat-00003" + }, + "product_reference": "com.mchange.mchange-commons-java-0.2.15.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.microsoft.sqlserver.mssql-jdbc-11.2.0.jre11 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.microsoft.sqlserver.mssql-jdbc-11.2.0.jre11" + }, + "product_reference": "com.microsoft.sqlserver.mssql-jdbc-11.2.0.jre11", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.ongres.scram.client-2.1.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.ongres.scram.client-2.1.0.redhat-00002" + }, + "product_reference": "com.ongres.scram.client-2.1.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.ongres.scram.common-2.1.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.ongres.scram.common-2.1.0.redhat-00002" + }, + "product_reference": "com.ongres.scram.common-2.1.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.ongres.stringprep.saslprep-1.1.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.ongres.stringprep.saslprep-1.1.0.redhat-00002" + }, + "product_reference": "com.ongres.stringprep.saslprep-1.1.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.ongres.stringprep.stringprep-1.1.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.ongres.stringprep.stringprep-1.1.0.redhat-00002" + }, + "product_reference": "com.ongres.stringprep.stringprep-1.1.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.oracle.database.jdbc.ojdbc11-21.5.0.0 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.oracle.database.jdbc.ojdbc11-21.5.0.0" + }, + "product_reference": "com.oracle.database.jdbc.ojdbc11-21.5.0.0", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.squareup.okhttp3.logging-interceptor-3.14.9.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.squareup.okhttp3.logging-interceptor-3.14.9.redhat-00003" + }, + "product_reference": "com.squareup.okhttp3.logging-interceptor-3.14.9.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.squareup.okhttp3.okhttp-3.14.9.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.squareup.okhttp3.okhttp-3.14.9.redhat-00003" + }, + "product_reference": "com.squareup.okhttp3.okhttp-3.14.9.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.squareup.okio.okio-1.17.2.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.squareup.okio.okio-1.17.2.redhat-00002" + }, + "product_reference": "com.squareup.okio.okio-1.17.2.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.squareup.protoparser-4.0.3.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.squareup.protoparser-4.0.3.redhat-00001" + }, + "product_reference": "com.squareup.protoparser-4.0.3.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.sun.activation.jakarta.activation-1.2.1.redhat-00005 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.sun.activation.jakarta.activation-1.2.1.redhat-00005" + }, + "product_reference": "com.sun.activation.jakarta.activation-1.2.1.redhat-00005", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.sun.istack.istack-commons-runtime-3.0.10.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.sun.istack.istack-commons-runtime-3.0.10.redhat-00003" + }, + "product_reference": "com.sun.istack.istack-commons-runtime-3.0.10.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "com.sun.mail.jakarta.mail-1.6.7.redhat-00005 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:com.sun.mail.jakarta.mail-1.6.7.redhat-00005" + }, + "product_reference": "com.sun.mail.jakarta.mail-1.6.7.redhat-00005", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "commons-cli.commons-cli-1.4 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:commons-cli.commons-cli-1.4" + }, + "product_reference": "commons-cli.commons-cli-1.4", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "commons-codec.commons-codec-1.15.0.redhat-00008 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:commons-codec.commons-codec-1.15.0.redhat-00008" + }, + "product_reference": "commons-codec.commons-codec-1.15.0.redhat-00008", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "commons-io.commons-io-2.11.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:commons-io.commons-io-2.11.0.redhat-00001" + }, + "product_reference": "commons-io.commons-io-2.11.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dk.brics.automaton.automaton-1.11.8.redhat-1 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:dk.brics.automaton.automaton-1.11.8.redhat-1" + }, + "product_reference": "dk.brics.automaton.automaton-1.11.8.redhat-1", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.agroal.agroal-api-1.17.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.agroal.agroal-api-1.17.0.redhat-00001" + }, + "product_reference": "io.agroal.agroal-api-1.17.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.agroal.agroal-narayana-1.17.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.agroal.agroal-narayana-1.17.0.redhat-00001" + }, + "product_reference": "io.agroal.agroal-narayana-1.17.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.agroal.agroal-pool-1.17.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.agroal.agroal-pool-1.17.0.redhat-00001" + }, + "product_reference": "io.agroal.agroal-pool-1.17.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.dekorate.dekorate-core-2.11.3.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.dekorate.dekorate-core-2.11.3.redhat-00001" + }, + "product_reference": "io.dekorate.dekorate-core-2.11.3.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.dekorate.docker-annotations-2.11.3.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.dekorate.docker-annotations-2.11.3.redhat-00001" + }, + "product_reference": "io.dekorate.docker-annotations-2.11.3.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.dekorate.knative-annotations-2.11.3.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.dekorate.knative-annotations-2.11.3.redhat-00001" + }, + "product_reference": "io.dekorate.knative-annotations-2.11.3.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.dekorate.kubernetes-annotations-2.11.3.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.dekorate.kubernetes-annotations-2.11.3.redhat-00001" + }, + "product_reference": "io.dekorate.kubernetes-annotations-2.11.3.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.dekorate.openshift-annotations-2.11.3.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.dekorate.openshift-annotations-2.11.3.redhat-00001" + }, + "product_reference": "io.dekorate.openshift-annotations-2.11.3.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.dekorate.option-annotations-2.11.3.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.dekorate.option-annotations-2.11.3.redhat-00001" + }, + "product_reference": "io.dekorate.option-annotations-2.11.3.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.dekorate.s2i-annotations-2.11.3.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.dekorate.s2i-annotations-2.11.3.redhat-00001" + }, + "product_reference": "io.dekorate.s2i-annotations-2.11.3.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.dekorate.servicebinding-annotations-2.11.3.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.dekorate.servicebinding-annotations-2.11.3.redhat-00001" + }, + "product_reference": "io.dekorate.servicebinding-annotations-2.11.3.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.knative-client-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.knative-client-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.knative-client-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.knative-model-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.knative-model-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.knative-model-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.kubernetes-client-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.kubernetes-client-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.kubernetes-client-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.kubernetes-model-admissionregistration-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.kubernetes-model-admissionregistration-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.kubernetes-model-admissionregistration-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.kubernetes-model-apiextensions-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.kubernetes-model-apiextensions-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.kubernetes-model-apiextensions-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.kubernetes-model-apps-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.kubernetes-model-apps-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.kubernetes-model-apps-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.kubernetes-model-autoscaling-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.kubernetes-model-autoscaling-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.kubernetes-model-autoscaling-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.kubernetes-model-batch-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.kubernetes-model-batch-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.kubernetes-model-batch-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.kubernetes-model-certificates-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.kubernetes-model-certificates-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.kubernetes-model-certificates-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.kubernetes-model-common-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.kubernetes-model-common-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.kubernetes-model-common-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.kubernetes-model-coordination-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.kubernetes-model-coordination-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.kubernetes-model-coordination-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.kubernetes-model-core-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.kubernetes-model-core-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.kubernetes-model-core-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.kubernetes-model-discovery-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.kubernetes-model-discovery-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.kubernetes-model-discovery-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.kubernetes-model-events-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.kubernetes-model-events-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.kubernetes-model-events-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.kubernetes-model-extensions-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.kubernetes-model-extensions-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.kubernetes-model-extensions-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.kubernetes-model-flowcontrol-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.kubernetes-model-flowcontrol-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.kubernetes-model-flowcontrol-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.kubernetes-model-metrics-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.kubernetes-model-metrics-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.kubernetes-model-metrics-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.kubernetes-model-networking-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.kubernetes-model-networking-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.kubernetes-model-networking-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.kubernetes-model-node-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.kubernetes-model-node-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.kubernetes-model-node-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.kubernetes-model-policy-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.kubernetes-model-policy-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.kubernetes-model-policy-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.kubernetes-model-rbac-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.kubernetes-model-rbac-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.kubernetes-model-rbac-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.kubernetes-model-scheduling-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.kubernetes-model-scheduling-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.kubernetes-model-scheduling-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.kubernetes-model-storageclass-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.kubernetes-model-storageclass-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.kubernetes-model-storageclass-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.maven-model-helper-20 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.maven-model-helper-20" + }, + "product_reference": "io.fabric8.maven-model-helper-20", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.openshift-client-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.openshift-client-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.openshift-client-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.openshift-model-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.openshift-model-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.openshift-model-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.openshift-model-clusterautoscaling-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.openshift-model-clusterautoscaling-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.openshift-model-clusterautoscaling-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.openshift-model-console-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.openshift-model-console-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.openshift-model-console-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.openshift-model-hive-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.openshift-model-hive-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.openshift-model-hive-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.openshift-model-installer-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.openshift-model-installer-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.openshift-model-installer-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.openshift-model-machine-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.openshift-model-machine-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.openshift-model-machine-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.openshift-model-machineconfig-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.openshift-model-machineconfig-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.openshift-model-machineconfig-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.openshift-model-miscellaneous-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.openshift-model-miscellaneous-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.openshift-model-miscellaneous-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.openshift-model-monitoring-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.openshift-model-monitoring-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.openshift-model-monitoring-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.openshift-model-operator-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.openshift-model-operator-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.openshift-model-operator-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.openshift-model-operatorhub-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.openshift-model-operatorhub-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.openshift-model-operatorhub-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.openshift-model-storageversionmigrator-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.openshift-model-storageversionmigrator-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.openshift-model-storageversionmigrator-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.openshift-model-tuned-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.openshift-model-tuned-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.openshift-model-tuned-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.openshift-model-whereabouts-5.12.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.openshift-model-whereabouts-5.12.4.redhat-00002" + }, + "product_reference": "io.fabric8.openshift-model-whereabouts-5.12.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.fabric8.zjsonpatch-0.3.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.fabric8.zjsonpatch-0.3.0.redhat-00001" + }, + "product_reference": "io.fabric8.zjsonpatch-0.3.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.github.crac.org-crac-0.1.1.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.github.crac.org-crac-0.1.1.redhat-00002" + }, + "product_reference": "io.github.crac.org-crac-0.1.1.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.grpc.grpc-api-1.49.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.grpc.grpc-api-1.49.0.redhat-00002" + }, + "product_reference": "io.grpc.grpc-api-1.49.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.grpc.grpc-context-1.49.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.grpc.grpc-context-1.49.0.redhat-00002" + }, + "product_reference": "io.grpc.grpc-context-1.49.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.grpc.grpc-core-1.49.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.grpc.grpc-core-1.49.0.redhat-00002" + }, + "product_reference": "io.grpc.grpc-core-1.49.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.grpc.grpc-netty-1.49.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.grpc.grpc-netty-1.49.0.redhat-00002" + }, + "product_reference": "io.grpc.grpc-netty-1.49.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.grpc.grpc-protobuf-1.49.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.grpc.grpc-protobuf-1.49.0.redhat-00002" + }, + "product_reference": "io.grpc.grpc-protobuf-1.49.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.grpc.grpc-protobuf-lite-1.49.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.grpc.grpc-protobuf-lite-1.49.0.redhat-00002" + }, + "product_reference": "io.grpc.grpc-protobuf-lite-1.49.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.grpc.grpc-stub-1.49.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.grpc.grpc-stub-1.49.0.redhat-00002" + }, + "product_reference": "io.grpc.grpc-stub-1.49.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.grpc.protoc-gen-grpc-java-1.49.0 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.grpc.protoc-gen-grpc-java-1.49.0" + }, + "product_reference": "io.grpc.protoc-gen-grpc-java-1.49.0", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.jaegertracing.jaeger-core-1.8.1.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.jaegertracing.jaeger-core-1.8.1.redhat-00002" + }, + "product_reference": "io.jaegertracing.jaeger-core-1.8.1.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.jaegertracing.jaeger-thrift-1.8.1.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.jaegertracing.jaeger-thrift-1.8.1.redhat-00002" + }, + "product_reference": "io.jaegertracing.jaeger-thrift-1.8.1.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.micrometer.micrometer-core-1.9.4.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.micrometer.micrometer-core-1.9.4.redhat-00001" + }, + "product_reference": "io.micrometer.micrometer-core-1.9.4.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.micrometer.micrometer-registry-prometheus-1.9.4.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.micrometer.micrometer-registry-prometheus-1.9.4.redhat-00001" + }, + "product_reference": "io.micrometer.micrometer-registry-prometheus-1.9.4.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.netty.netty-buffer-4.1.86.Final-redhat-00010 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.netty.netty-buffer-4.1.86.Final-redhat-00010" + }, + "product_reference": "io.netty.netty-buffer-4.1.86.Final-redhat-00010", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.netty.netty-codec-4.1.86.Final-redhat-00010 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.netty.netty-codec-4.1.86.Final-redhat-00010" + }, + "product_reference": "io.netty.netty-codec-4.1.86.Final-redhat-00010", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.netty.netty-codec-dns-4.1.86.Final-redhat-00010 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.netty.netty-codec-dns-4.1.86.Final-redhat-00010" + }, + "product_reference": "io.netty.netty-codec-dns-4.1.86.Final-redhat-00010", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.netty.netty-codec-haproxy-4.1.86.Final-redhat-00010 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.netty.netty-codec-haproxy-4.1.86.Final-redhat-00010" + }, + "product_reference": "io.netty.netty-codec-haproxy-4.1.86.Final-redhat-00010", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.netty.netty-codec-http-4.1.86.Final-redhat-00010 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.netty.netty-codec-http-4.1.86.Final-redhat-00010" + }, + "product_reference": "io.netty.netty-codec-http-4.1.86.Final-redhat-00010", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.netty.netty-codec-http2-4.1.86.Final-redhat-00010 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.netty.netty-codec-http2-4.1.86.Final-redhat-00010" + }, + "product_reference": "io.netty.netty-codec-http2-4.1.86.Final-redhat-00010", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.netty.netty-codec-socks-4.1.86.Final-redhat-00010 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.netty.netty-codec-socks-4.1.86.Final-redhat-00010" + }, + "product_reference": "io.netty.netty-codec-socks-4.1.86.Final-redhat-00010", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.netty.netty-common-4.1.86.Final-redhat-00010 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.netty.netty-common-4.1.86.Final-redhat-00010" + }, + "product_reference": "io.netty.netty-common-4.1.86.Final-redhat-00010", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.netty.netty-handler-4.1.86.Final-redhat-00010 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.netty.netty-handler-4.1.86.Final-redhat-00010" + }, + "product_reference": "io.netty.netty-handler-4.1.86.Final-redhat-00010", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.netty.netty-handler-proxy-4.1.86.Final-redhat-00010 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.netty.netty-handler-proxy-4.1.86.Final-redhat-00010" + }, + "product_reference": "io.netty.netty-handler-proxy-4.1.86.Final-redhat-00010", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.netty.netty-resolver-4.1.86.Final-redhat-00010 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.netty.netty-resolver-4.1.86.Final-redhat-00010" + }, + "product_reference": "io.netty.netty-resolver-4.1.86.Final-redhat-00010", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.netty.netty-resolver-dns-4.1.86.Final-redhat-00010 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.netty.netty-resolver-dns-4.1.86.Final-redhat-00010" + }, + "product_reference": "io.netty.netty-resolver-dns-4.1.86.Final-redhat-00010", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.netty.netty-transport-4.1.86.Final-redhat-00010 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.netty.netty-transport-4.1.86.Final-redhat-00010" + }, + "product_reference": "io.netty.netty-transport-4.1.86.Final-redhat-00010", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.netty.netty-transport-classes-epoll-4.1.86.Final-redhat-00010 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.netty.netty-transport-classes-epoll-4.1.86.Final-redhat-00010" + }, + "product_reference": "io.netty.netty-transport-classes-epoll-4.1.86.Final-redhat-00010", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.netty.netty-transport-native-epoll-4.1.86.Final-redhat-00010 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.netty.netty-transport-native-epoll-4.1.86.Final-redhat-00010" + }, + "product_reference": "io.netty.netty-transport-native-epoll-4.1.86.Final-redhat-00010", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.netty.netty-transport-native-unix-common-4.1.86.Final-redhat-00010 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.netty.netty-transport-native-unix-common-4.1.86.Final-redhat-00010" + }, + "product_reference": "io.netty.netty-transport-native-unix-common-4.1.86.Final-redhat-00010", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.opentelemetry.instrumentation.opentelemetry-instrumentation-annotations-1.17.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.opentelemetry.instrumentation.opentelemetry-instrumentation-annotations-1.17.0.redhat-00001" + }, + "product_reference": "io.opentelemetry.instrumentation.opentelemetry-instrumentation-annotations-1.17.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.opentelemetry.instrumentation.opentelemetry-instrumentation-annotations-support-1.17.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.opentelemetry.instrumentation.opentelemetry-instrumentation-annotations-support-1.17.0.redhat-00001" + }, + "product_reference": "io.opentelemetry.instrumentation.opentelemetry-instrumentation-annotations-support-1.17.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.opentelemetry.instrumentation.opentelemetry-instrumentation-api-1.17.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.opentelemetry.instrumentation.opentelemetry-instrumentation-api-1.17.0.redhat-00001" + }, + "product_reference": "io.opentelemetry.instrumentation.opentelemetry-instrumentation-api-1.17.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.opentelemetry.instrumentation.opentelemetry-instrumentation-api-semconv-1.17.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.opentelemetry.instrumentation.opentelemetry-instrumentation-api-semconv-1.17.0.redhat-00001" + }, + "product_reference": "io.opentelemetry.instrumentation.opentelemetry-instrumentation-api-semconv-1.17.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.opentelemetry.opentelemetry-api-1.17.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.opentelemetry.opentelemetry-api-1.17.0.redhat-00001" + }, + "product_reference": "io.opentelemetry.opentelemetry-api-1.17.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.opentelemetry.opentelemetry-context-1.17.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.opentelemetry.opentelemetry-context-1.17.0.redhat-00001" + }, + "product_reference": "io.opentelemetry.opentelemetry-context-1.17.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.opentelemetry.opentelemetry-extension-annotations-1.17.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.opentelemetry.opentelemetry-extension-annotations-1.17.0.redhat-00001" + }, + "product_reference": "io.opentelemetry.opentelemetry-extension-annotations-1.17.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.opentelemetry.opentelemetry-sdk-1.17.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.opentelemetry.opentelemetry-sdk-1.17.0.redhat-00001" + }, + "product_reference": "io.opentelemetry.opentelemetry-sdk-1.17.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.opentelemetry.opentelemetry-sdk-common-1.17.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.opentelemetry.opentelemetry-sdk-common-1.17.0.redhat-00001" + }, + "product_reference": "io.opentelemetry.opentelemetry-sdk-common-1.17.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.opentelemetry.opentelemetry-sdk-extension-autoconfigure-spi-1.17.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.opentelemetry.opentelemetry-sdk-extension-autoconfigure-spi-1.17.0.redhat-00001" + }, + "product_reference": "io.opentelemetry.opentelemetry-sdk-extension-autoconfigure-spi-1.17.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.opentelemetry.opentelemetry-sdk-logs-1.17.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.opentelemetry.opentelemetry-sdk-logs-1.17.0.redhat-00001" + }, + "product_reference": "io.opentelemetry.opentelemetry-sdk-logs-1.17.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.opentelemetry.opentelemetry-sdk-metrics-1.17.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.opentelemetry.opentelemetry-sdk-metrics-1.17.0.redhat-00001" + }, + "product_reference": "io.opentelemetry.opentelemetry-sdk-metrics-1.17.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.opentelemetry.opentelemetry-sdk-trace-1.17.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.opentelemetry.opentelemetry-sdk-trace-1.17.0.redhat-00001" + }, + "product_reference": "io.opentelemetry.opentelemetry-sdk-trace-1.17.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.opentelemetry.opentelemetry-semconv-1.17.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.opentelemetry.opentelemetry-semconv-1.17.0.redhat-00001" + }, + "product_reference": "io.opentelemetry.opentelemetry-semconv-1.17.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.opentracing.contrib.opentracing-concurrent-0.4.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.opentracing.contrib.opentracing-concurrent-0.4.0.redhat-00002" + }, + "product_reference": "io.opentracing.contrib.opentracing-concurrent-0.4.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.opentracing.opentracing-api-0.33.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.opentracing.opentracing-api-0.33.0.redhat-00001" + }, + "product_reference": "io.opentracing.opentracing-api-0.33.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.opentracing.opentracing-noop-0.33.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.opentracing.opentracing-noop-0.33.0.redhat-00001" + }, + "product_reference": "io.opentracing.opentracing-noop-0.33.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.opentracing.opentracing-util-0.33.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.opentracing.opentracing-util-0.33.0.redhat-00001" + }, + "product_reference": "io.opentracing.opentracing-util-0.33.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.perfmark.perfmark-api-0.25.0 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.perfmark.perfmark-api-0.25.0" + }, + "product_reference": "io.perfmark.perfmark-api-0.25.0", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.projectreactor.reactor-core-3.2.22.RELEASE as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.projectreactor.reactor-core-3.2.22.RELEASE" + }, + "product_reference": "io.projectreactor.reactor-core-3.2.22.RELEASE", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.prometheus.simpleclient-0.15.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.prometheus.simpleclient-0.15.0.redhat-00001" + }, + "product_reference": "io.prometheus.simpleclient-0.15.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.prometheus.simpleclient_common-0.15.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.prometheus.simpleclient_common-0.15.0.redhat-00001" + }, + "product_reference": "io.prometheus.simpleclient_common-0.15.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.prometheus.simpleclient_tracer_common-0.15.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.prometheus.simpleclient_tracer_common-0.15.0.redhat-00001" + }, + "product_reference": "io.prometheus.simpleclient_tracer_common-0.15.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.prometheus.simpleclient_tracer_otel-0.15.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.prometheus.simpleclient_tracer_otel-0.15.0.redhat-00001" + }, + "product_reference": "io.prometheus.simpleclient_tracer_otel-0.15.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.prometheus.simpleclient_tracer_otel_agent-0.15.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.prometheus.simpleclient_tracer_otel_agent-0.15.0.redhat-00001" + }, + "product_reference": "io.prometheus.simpleclient_tracer_otel_agent-0.15.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.arc.arc-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.arc.arc-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.arc.arc-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.arc.arc-processor-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.arc.arc-processor-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.arc.arc-processor-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.gizmo.gizmo-1.1.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.gizmo.gizmo-1.1.1.Final-redhat-00001" + }, + "product_reference": "io.quarkus.gizmo.gizmo-1.1.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.http.quarkus-http-core-4.1.9.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.http.quarkus-http-core-4.1.9.redhat-00001" + }, + "product_reference": "io.quarkus.http.quarkus-http-core-4.1.9.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.http.quarkus-http-http-core-4.1.9.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.http.quarkus-http-http-core-4.1.9.redhat-00001" + }, + "product_reference": "io.quarkus.http.quarkus-http-http-core-4.1.9.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.http.quarkus-http-servlet-4.1.9.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.http.quarkus-http-servlet-4.1.9.redhat-00001" + }, + "product_reference": "io.quarkus.http.quarkus-http-servlet-4.1.9.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.http.quarkus-http-vertx-backend-4.1.9.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.http.quarkus-http-vertx-backend-4.1.9.redhat-00001" + }, + "product_reference": "io.quarkus.http.quarkus-http-vertx-backend-4.1.9.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.http.quarkus-http-websocket-core-4.1.9.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.http.quarkus-http-websocket-core-4.1.9.redhat-00001" + }, + "product_reference": "io.quarkus.http.quarkus-http-websocket-core-4.1.9.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.http.quarkus-http-websocket-vertx-4.1.9.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.http.quarkus-http-websocket-vertx-4.1.9.redhat-00001" + }, + "product_reference": "io.quarkus.http.quarkus-http-websocket-vertx-4.1.9.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-agroal-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-agroal-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-agroal-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-agroal-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-agroal-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-agroal-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-agroal-spi-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-agroal-spi-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-agroal-spi-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-apache-httpclient-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-apache-httpclient-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-apache-httpclient-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-apache-httpclient-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-apache-httpclient-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-apache-httpclient-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-arc-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-arc-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-arc-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-arc-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-arc-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-arc-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-avro-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-avro-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-avro-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-avro-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-avro-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-avro-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-bom-quarkus-platform-descriptor-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-bom-quarkus-platform-descriptor-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-bom-quarkus-platform-descriptor-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-bom-quarkus-platform-properties-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-bom-quarkus-platform-properties-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-bom-quarkus-platform-properties-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-bootstrap-app-model-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-bootstrap-app-model-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-bootstrap-app-model-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-bootstrap-core-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-bootstrap-core-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-bootstrap-core-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-bootstrap-maven-resolver-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-bootstrap-maven-resolver-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-bootstrap-maven-resolver-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-bootstrap-runner-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-bootstrap-runner-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-bootstrap-runner-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-builder-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-builder-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-builder-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-cache-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-cache-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-cache-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-cache-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-cache-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-cache-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-caffeine-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-caffeine-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-caffeine-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-caffeine-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-caffeine-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-caffeine-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-class-change-agent-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-class-change-agent-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-class-change-agent-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-config-yaml-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-config-yaml-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-config-yaml-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-config-yaml-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-config-yaml-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-config-yaml-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-container-image-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-container-image-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-container-image-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-container-image-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-container-image-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-container-image-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-container-image-openshift-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-container-image-openshift-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-container-image-openshift-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-container-image-openshift-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-container-image-openshift-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-container-image-openshift-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-container-image-spi-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-container-image-spi-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-container-image-spi-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-container-image-util-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-container-image-util-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-container-image-util-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-core-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-core-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-core-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-core-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-core-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-core-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-credentials-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-credentials-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-credentials-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-credentials-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-credentials-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-credentials-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-datasource-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-datasource-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-datasource-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-datasource-common-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-datasource-common-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-datasource-common-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-datasource-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-datasource-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-datasource-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-datasource-deployment-spi-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-datasource-deployment-spi-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-datasource-deployment-spi-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-development-mode-spi-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-development-mode-spi-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-development-mode-spi-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-devservices-common-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-devservices-common-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-devservices-common-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-devservices-db2-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-devservices-db2-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-devservices-db2-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-devservices-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-devservices-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-devservices-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-devservices-derby-2.13.8.Final as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-devservices-derby-2.13.8.Final" + }, + "product_reference": "io.quarkus.quarkus-devservices-derby-2.13.8.Final", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-devservices-h2-2.13.8.Final as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-devservices-h2-2.13.8.Final" + }, + "product_reference": "io.quarkus.quarkus-devservices-h2-2.13.8.Final", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-devservices-mariadb-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-devservices-mariadb-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-devservices-mariadb-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-devservices-mssql-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-devservices-mssql-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-devservices-mssql-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-devservices-mysql-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-devservices-mysql-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-devservices-mysql-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-devservices-oracle-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-devservices-oracle-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-devservices-oracle-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-devservices-postgresql-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-devservices-postgresql-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-devservices-postgresql-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-devtools-base-codestarts-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-devtools-base-codestarts-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-devtools-base-codestarts-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-devtools-codestarts-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-devtools-codestarts-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-devtools-codestarts-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-devtools-common-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-devtools-common-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-devtools-common-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-devtools-message-writer-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-devtools-message-writer-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-devtools-message-writer-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-devtools-registry-client-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-devtools-registry-client-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-devtools-registry-client-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-devtools-utilities-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-devtools-utilities-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-devtools-utilities-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-elasticsearch-rest-client-common-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-elasticsearch-rest-client-common-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-elasticsearch-rest-client-common-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-elasticsearch-rest-client-common-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-elasticsearch-rest-client-common-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-elasticsearch-rest-client-common-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-elytron-security-common-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-elytron-security-common-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-elytron-security-common-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-elytron-security-common-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-elytron-security-common-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-elytron-security-common-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-extension-maven-plugin-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-extension-maven-plugin-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-extension-maven-plugin-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-extension-processor-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-extension-processor-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-extension-processor-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-fs-util-0.0.9.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-fs-util-0.0.9.redhat-00003" + }, + "product_reference": "io.quarkus.quarkus-fs-util-0.0.9.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-funqy-knative-events-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-funqy-knative-events-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-funqy-knative-events-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-funqy-knative-events-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-funqy-knative-events-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-funqy-knative-events-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-funqy-server-common-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-funqy-server-common-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-funqy-server-common-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-funqy-server-common-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-funqy-server-common-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-funqy-server-common-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-grpc-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-grpc-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-grpc-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-grpc-api-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-grpc-api-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-grpc-api-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-grpc-codegen-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-grpc-codegen-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-grpc-codegen-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-grpc-common-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-grpc-common-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-grpc-common-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-grpc-common-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-grpc-common-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-grpc-common-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-grpc-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-grpc-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-grpc-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-grpc-protoc-plugin-2.13.8.Final as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-grpc-protoc-plugin-2.13.8.Final" + }, + "product_reference": "io.quarkus.quarkus-grpc-protoc-plugin-2.13.8.Final", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-grpc-stubs-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-grpc-stubs-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-grpc-stubs-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-hal-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-hal-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-hal-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-hal-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-hal-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-hal-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-hibernate-orm-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-hibernate-orm-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-hibernate-orm-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-hibernate-orm-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-hibernate-orm-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-hibernate-orm-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-hibernate-orm-deployment-spi-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-hibernate-orm-deployment-spi-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-hibernate-orm-deployment-spi-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-hibernate-orm-panache-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-hibernate-orm-panache-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-hibernate-orm-panache-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-hibernate-orm-panache-common-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-hibernate-orm-panache-common-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-hibernate-orm-panache-common-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-hibernate-orm-panache-common-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-hibernate-orm-panache-common-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-hibernate-orm-panache-common-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-hibernate-orm-panache-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-hibernate-orm-panache-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-hibernate-orm-panache-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-hibernate-orm-rest-data-panache-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-hibernate-orm-rest-data-panache-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-hibernate-orm-rest-data-panache-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-hibernate-orm-rest-data-panache-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-hibernate-orm-rest-data-panache-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-hibernate-orm-rest-data-panache-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-hibernate-reactive-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-hibernate-reactive-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-hibernate-reactive-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-hibernate-reactive-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-hibernate-reactive-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-hibernate-reactive-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-hibernate-search-orm-elasticsearch-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-hibernate-search-orm-elasticsearch-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-hibernate-search-orm-elasticsearch-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-hibernate-search-orm-elasticsearch-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-hibernate-search-orm-elasticsearch-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-hibernate-search-orm-elasticsearch-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-hibernate-validator-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-hibernate-validator-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-hibernate-validator-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-hibernate-validator-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-hibernate-validator-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-hibernate-validator-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-hibernate-validator-spi-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-hibernate-validator-spi-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-hibernate-validator-spi-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-ide-launcher-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-ide-launcher-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-ide-launcher-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-infinispan-client-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-infinispan-client-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-infinispan-client-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-infinispan-client-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-infinispan-client-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-infinispan-client-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jackson-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jackson-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jackson-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jackson-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jackson-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jackson-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jackson-spi-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jackson-spi-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jackson-spi-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jacoco-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jacoco-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jacoco-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jacoco-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jacoco-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jacoco-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jaeger-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jaeger-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jaeger-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jaeger-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jaeger-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jaeger-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jaxb-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jaxb-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jaxb-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jaxb-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jaxb-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jaxb-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jaxp-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jaxp-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jaxp-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jaxp-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jaxp-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jaxp-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jaxrs-client-reactive-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jaxrs-client-reactive-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jaxrs-client-reactive-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jaxrs-client-reactive-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jaxrs-client-reactive-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jaxrs-client-reactive-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jaxrs-spi-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jaxrs-spi-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jaxrs-spi-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jdbc-db2-2.13.8.Final as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jdbc-db2-2.13.8.Final" + }, + "product_reference": "io.quarkus.quarkus-jdbc-db2-2.13.8.Final", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jdbc-db2-deployment-2.13.8.Final as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jdbc-db2-deployment-2.13.8.Final" + }, + "product_reference": "io.quarkus.quarkus-jdbc-db2-deployment-2.13.8.Final", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jdbc-derby-2.13.8.Final as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jdbc-derby-2.13.8.Final" + }, + "product_reference": "io.quarkus.quarkus-jdbc-derby-2.13.8.Final", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jdbc-derby-deployment-2.13.8.Final as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jdbc-derby-deployment-2.13.8.Final" + }, + "product_reference": "io.quarkus.quarkus-jdbc-derby-deployment-2.13.8.Final", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jdbc-h2-2.13.8.Final as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jdbc-h2-2.13.8.Final" + }, + "product_reference": "io.quarkus.quarkus-jdbc-h2-2.13.8.Final", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jdbc-h2-deployment-2.13.8.Final as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jdbc-h2-deployment-2.13.8.Final" + }, + "product_reference": "io.quarkus.quarkus-jdbc-h2-deployment-2.13.8.Final", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jdbc-mariadb-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jdbc-mariadb-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jdbc-mariadb-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jdbc-mariadb-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jdbc-mariadb-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jdbc-mariadb-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jdbc-mssql-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jdbc-mssql-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jdbc-mssql-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jdbc-mssql-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jdbc-mssql-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jdbc-mssql-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jdbc-mysql-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jdbc-mysql-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jdbc-mysql-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jdbc-mysql-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jdbc-mysql-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jdbc-mysql-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jdbc-oracle-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jdbc-oracle-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jdbc-oracle-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jdbc-oracle-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jdbc-oracle-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jdbc-oracle-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jdbc-postgresql-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jdbc-postgresql-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jdbc-postgresql-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jdbc-postgresql-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jdbc-postgresql-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jdbc-postgresql-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jsonb-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jsonb-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jsonb-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jsonb-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jsonb-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jsonb-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jsonb-spi-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jsonb-spi-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jsonb-spi-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jsonp-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jsonp-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jsonp-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-jsonp-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-jsonp-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-jsonp-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-junit4-mock-2.13.8.Final as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-junit4-mock-2.13.8.Final" + }, + "product_reference": "io.quarkus.quarkus-junit4-mock-2.13.8.Final", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-kafka-client-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-kafka-client-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-kafka-client-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-kafka-client-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-kafka-client-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-kafka-client-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-kafka-streams-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-kafka-streams-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-kafka-streams-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-kafka-streams-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-kafka-streams-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-kafka-streams-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-keycloak-authorization-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-keycloak-authorization-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-keycloak-authorization-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-keycloak-authorization-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-keycloak-authorization-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-keycloak-authorization-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-kubernetes-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-kubernetes-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-kubernetes-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-kubernetes-client-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-kubernetes-client-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-kubernetes-client-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-kubernetes-client-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-kubernetes-client-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-kubernetes-client-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-kubernetes-client-internal-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-kubernetes-client-internal-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-kubernetes-client-internal-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-kubernetes-client-internal-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-kubernetes-client-internal-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-kubernetes-client-internal-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-kubernetes-client-spi-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-kubernetes-client-spi-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-kubernetes-client-spi-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-kubernetes-config-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-kubernetes-config-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-kubernetes-config-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-kubernetes-config-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-kubernetes-config-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-kubernetes-config-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-kubernetes-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-kubernetes-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-kubernetes-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-kubernetes-service-binding-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-kubernetes-service-binding-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-kubernetes-service-binding-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-kubernetes-service-binding-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-kubernetes-service-binding-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-kubernetes-service-binding-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-kubernetes-service-binding-spi-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-kubernetes-service-binding-spi-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-kubernetes-service-binding-spi-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-kubernetes-spi-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-kubernetes-spi-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-kubernetes-spi-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-logging-json-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-logging-json-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-logging-json-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-logging-json-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-logging-json-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-logging-json-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-mailer-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-mailer-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-mailer-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-mailer-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-mailer-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-mailer-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-maven-plugin-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-maven-plugin-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-maven-plugin-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-micrometer-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-micrometer-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-micrometer-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-micrometer-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-micrometer-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-micrometer-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-micrometer-registry-prometheus-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-micrometer-registry-prometheus-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-micrometer-registry-prometheus-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-micrometer-registry-prometheus-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-micrometer-registry-prometheus-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-micrometer-registry-prometheus-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-mongodb-client-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-mongodb-client-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-mongodb-client-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-mongodb-client-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-mongodb-client-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-mongodb-client-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-mutiny-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-mutiny-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-mutiny-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-mutiny-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-mutiny-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-mutiny-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-mutiny-reactive-streams-operators-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-mutiny-reactive-streams-operators-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-mutiny-reactive-streams-operators-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-mutiny-reactive-streams-operators-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-mutiny-reactive-streams-operators-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-mutiny-reactive-streams-operators-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-narayana-jta-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-narayana-jta-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-narayana-jta-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-narayana-jta-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-narayana-jta-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-narayana-jta-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-netty-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-netty-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-netty-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-netty-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-netty-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-netty-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-oidc-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-oidc-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-oidc-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-oidc-client-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-oidc-client-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-oidc-client-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-oidc-client-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-oidc-client-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-oidc-client-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-oidc-client-filter-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-oidc-client-filter-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-oidc-client-filter-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-oidc-client-filter-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-oidc-client-filter-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-oidc-client-filter-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-oidc-client-reactive-filter-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-oidc-client-reactive-filter-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-oidc-client-reactive-filter-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-oidc-client-reactive-filter-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-oidc-client-reactive-filter-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-oidc-client-reactive-filter-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-oidc-common-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-oidc-common-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-oidc-common-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-oidc-common-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-oidc-common-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-oidc-common-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-oidc-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-oidc-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-oidc-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-openshift-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-openshift-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-openshift-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-openshift-client-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-openshift-client-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-openshift-client-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-openshift-client-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-openshift-client-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-openshift-client-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-openshift-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-openshift-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-openshift-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-opentelemetry-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-opentelemetry-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-opentelemetry-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-opentelemetry-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-opentelemetry-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-opentelemetry-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-panache-common-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-panache-common-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-panache-common-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-panache-common-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-panache-common-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-panache-common-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-panache-hibernate-common-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-panache-hibernate-common-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-panache-hibernate-common-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-panache-hibernate-common-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-panache-hibernate-common-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-panache-hibernate-common-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-project-core-extension-codestarts-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-project-core-extension-codestarts-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-project-core-extension-codestarts-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-quartz-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-quartz-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-quartz-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-quartz-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-quartz-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-quartz-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-qute-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-qute-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-qute-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-qute-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-qute-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-qute-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-reactive-datasource-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-reactive-datasource-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-reactive-datasource-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-reactive-datasource-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-reactive-datasource-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-reactive-datasource-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-reactive-mssql-client-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-reactive-mssql-client-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-reactive-mssql-client-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-reactive-mssql-client-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-reactive-mssql-client-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-reactive-mssql-client-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-reactive-mysql-client-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-reactive-mysql-client-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-reactive-mysql-client-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-reactive-mysql-client-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-reactive-mysql-client-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-reactive-mysql-client-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-reactive-pg-client-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-reactive-pg-client-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-reactive-pg-client-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-reactive-pg-client-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-reactive-pg-client-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-reactive-pg-client-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-reactive-routes-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-reactive-routes-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-reactive-routes-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-reactive-routes-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-reactive-routes-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-reactive-routes-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-rest-client-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-rest-client-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-rest-client-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-rest-client-config-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-rest-client-config-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-rest-client-config-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-rest-client-config-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-rest-client-config-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-rest-client-config-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-rest-client-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-rest-client-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-rest-client-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-rest-client-jackson-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-rest-client-jackson-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-rest-client-jackson-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-rest-client-jackson-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-rest-client-jackson-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-rest-client-jackson-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-rest-client-jaxb-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-rest-client-jaxb-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-rest-client-jaxb-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-rest-client-jaxb-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-rest-client-jaxb-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-rest-client-jaxb-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-rest-client-jsonb-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-rest-client-jsonb-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-rest-client-jsonb-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-rest-client-jsonb-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-rest-client-jsonb-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-rest-client-jsonb-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-rest-client-reactive-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-rest-client-reactive-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-rest-client-reactive-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-rest-client-reactive-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-rest-client-reactive-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-rest-client-reactive-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-rest-client-reactive-jackson-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-rest-client-reactive-jackson-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-rest-client-reactive-jackson-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-rest-client-reactive-jackson-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-rest-client-reactive-jackson-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-rest-client-reactive-jackson-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-rest-data-panache-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-rest-data-panache-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-rest-data-panache-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-rest-data-panache-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-rest-data-panache-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-rest-data-panache-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-common-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-common-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-common-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-common-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-common-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-common-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-common-spi-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-common-spi-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-common-spi-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-jackson-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-jackson-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-jackson-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-jackson-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-jackson-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-jackson-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-jaxb-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-jaxb-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-jaxb-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-jaxb-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-jaxb-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-jaxb-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-jsonb-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-jsonb-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-jsonb-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-jsonb-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-jsonb-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-jsonb-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-multipart-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-multipart-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-multipart-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-multipart-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-multipart-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-multipart-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-qute-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-qute-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-qute-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-qute-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-qute-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-qute-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-reactive-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-reactive-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-reactive-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-reactive-common-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-reactive-common-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-reactive-common-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-reactive-common-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-reactive-common-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-reactive-common-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-reactive-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-reactive-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-reactive-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-reactive-jackson-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-reactive-jackson-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-reactive-jackson-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-reactive-jackson-common-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-reactive-jackson-common-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-reactive-jackson-common-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-reactive-jackson-common-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-reactive-jackson-common-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-reactive-jackson-common-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-reactive-jackson-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-reactive-jackson-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-reactive-jackson-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-reactive-jaxb-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-reactive-jaxb-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-reactive-jaxb-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-reactive-jaxb-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-reactive-jaxb-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-reactive-jaxb-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-reactive-jsonb-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-reactive-jsonb-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-reactive-jsonb-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-reactive-jsonb-common-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-reactive-jsonb-common-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-reactive-jsonb-common-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-reactive-jsonb-common-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-reactive-jsonb-common-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-reactive-jsonb-common-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-reactive-jsonb-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-reactive-jsonb-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-reactive-jsonb-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-reactive-qute-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-reactive-qute-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-reactive-qute-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-reactive-qute-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-reactive-qute-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-reactive-qute-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-reactive-server-spi-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-reactive-server-spi-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-reactive-server-spi-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-reactive-spi-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-reactive-spi-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-reactive-spi-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-server-common-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-server-common-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-server-common-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-server-common-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-server-common-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-server-common-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-resteasy-server-common-spi-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-resteasy-server-common-spi-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-resteasy-server-common-spi-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-scheduler-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-scheduler-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-scheduler-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-scheduler-api-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-scheduler-api-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-scheduler-api-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-scheduler-common-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-scheduler-common-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-scheduler-common-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-scheduler-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-scheduler-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-scheduler-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-scheduler-kotlin-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-scheduler-kotlin-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-scheduler-kotlin-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-security-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-security-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-security-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-security-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-security-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-security-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-security-runtime-spi-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-security-runtime-spi-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-security-runtime-spi-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-security-spi-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-security-spi-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-security-spi-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-context-propagation-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-context-propagation-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-context-propagation-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-context-propagation-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-context-propagation-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-context-propagation-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-context-propagation-spi-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-context-propagation-spi-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-context-propagation-spi-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-fault-tolerance-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-fault-tolerance-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-fault-tolerance-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-fault-tolerance-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-fault-tolerance-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-fault-tolerance-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-graphql-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-graphql-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-graphql-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-graphql-client-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-graphql-client-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-graphql-client-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-graphql-client-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-graphql-client-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-graphql-client-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-graphql-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-graphql-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-graphql-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-health-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-health-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-health-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-health-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-health-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-health-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-health-spi-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-health-spi-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-health-spi-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-jwt-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-jwt-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-jwt-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-jwt-build-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-jwt-build-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-jwt-build-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-jwt-build-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-jwt-build-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-jwt-build-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-jwt-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-jwt-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-jwt-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-metrics-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-metrics-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-metrics-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-metrics-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-metrics-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-metrics-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-metrics-spi-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-metrics-spi-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-metrics-spi-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-openapi-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-openapi-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-openapi-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-openapi-common-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-openapi-common-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-openapi-common-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-openapi-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-openapi-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-openapi-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-openapi-spi-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-openapi-spi-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-openapi-spi-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-opentracing-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-opentracing-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-opentracing-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-opentracing-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-opentracing-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-opentracing-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-reactive-messaging-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-reactive-messaging-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-reactive-messaging-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-reactive-messaging-amqp-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-reactive-messaging-amqp-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-reactive-messaging-amqp-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-reactive-messaging-amqp-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-reactive-messaging-amqp-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-reactive-messaging-amqp-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-reactive-messaging-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-reactive-messaging-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-reactive-messaging-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-reactive-messaging-kafka-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-reactive-messaging-kafka-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-reactive-messaging-kafka-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-reactive-messaging-kafka-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-reactive-messaging-kafka-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-reactive-messaging-kafka-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-reactive-messaging-kotlin-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-reactive-messaging-kotlin-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-reactive-messaging-kotlin-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-stork-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-stork-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-stork-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-smallrye-stork-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-smallrye-stork-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-smallrye-stork-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-beans-api-5.2.0.SP7-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-beans-api-5.2.0.SP7-redhat-00001" + }, + "product_reference": "io.quarkus.quarkus-spring-beans-api-5.2.0.SP7-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-boot-orm-api-2.1.0.SP1-redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-boot-orm-api-2.1.0.SP1-redhat-00003" + }, + "product_reference": "io.quarkus.quarkus-spring-boot-orm-api-2.1.0.SP1-redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-boot-properties-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-boot-properties-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-spring-boot-properties-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-boot-properties-api-2.1.0.SP1-redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-boot-properties-api-2.1.0.SP1-redhat-00003" + }, + "product_reference": "io.quarkus.quarkus-spring-boot-properties-api-2.1.0.SP1-redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-boot-properties-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-boot-properties-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-spring-boot-properties-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-cache-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-cache-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-spring-cache-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-cache-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-cache-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-spring-cache-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-cloud-config-client-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-cloud-config-client-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-spring-cloud-config-client-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-cloud-config-client-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-cloud-config-client-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-spring-cloud-config-client-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-context-api-5.2.0.SP7-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-context-api-5.2.0.SP7-redhat-00001" + }, + "product_reference": "io.quarkus.quarkus-spring-context-api-5.2.0.SP7-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-core-api-5.2.0.SP7-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-core-api-5.2.0.SP7-redhat-00001" + }, + "product_reference": "io.quarkus.quarkus-spring-core-api-5.2.0.SP7-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-data-commons-api-2.1.0.SP2-redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-data-commons-api-2.1.0.SP2-redhat-00002" + }, + "product_reference": "io.quarkus.quarkus-spring-data-commons-api-2.1.0.SP2-redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-data-jpa-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-data-jpa-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-spring-data-jpa-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-data-jpa-api-2.1.0.SP2-redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-data-jpa-api-2.1.0.SP2-redhat-00002" + }, + "product_reference": "io.quarkus.quarkus-spring-data-jpa-api-2.1.0.SP2-redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-data-jpa-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-data-jpa-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-spring-data-jpa-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-data-rest-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-data-rest-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-spring-data-rest-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-data-rest-api-2.1.0.SP2-redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-data-rest-api-2.1.0.SP2-redhat-00002" + }, + "product_reference": "io.quarkus.quarkus-spring-data-rest-api-2.1.0.SP2-redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-data-rest-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-data-rest-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-spring-data-rest-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-di-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-di-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-spring-di-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-di-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-di-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-spring-di-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-scheduled-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-scheduled-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-spring-scheduled-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-scheduled-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-scheduled-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-spring-scheduled-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-security-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-security-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-spring-security-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-security-core-api-5.3.0.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-security-core-api-5.3.0.Final-redhat-00001" + }, + "product_reference": "io.quarkus.quarkus-spring-security-core-api-5.3.0.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-security-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-security-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-spring-security-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-web-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-web-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-spring-web-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-web-api-5.2.0.SP7-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-web-api-5.2.0.SP7-redhat-00001" + }, + "product_reference": "io.quarkus.quarkus-spring-web-api-5.2.0.SP7-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-web-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-web-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-spring-web-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-spring-webmvc-api-5.2.0.SP7-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-spring-webmvc-api-5.2.0.SP7-redhat-00001" + }, + "product_reference": "io.quarkus.quarkus-spring-webmvc-api-5.2.0.SP7-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-swagger-ui-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-swagger-ui-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-swagger-ui-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-swagger-ui-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-swagger-ui-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-swagger-ui-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-transaction-annotations-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-transaction-annotations-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-transaction-annotations-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-undertow-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-undertow-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-undertow-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-undertow-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-undertow-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-undertow-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-undertow-spi-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-undertow-spi-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-undertow-spi-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-vertx-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-vertx-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-vertx-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-vertx-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-vertx-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-vertx-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-vertx-http-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-vertx-http-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-vertx-http-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-vertx-http-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-vertx-http-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-vertx-http-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-vertx-http-deployment-spi-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-vertx-http-deployment-spi-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-vertx-http-deployment-spi-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-vertx-http-dev-console-runtime-spi-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-vertx-http-dev-console-runtime-spi-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-vertx-http-dev-console-runtime-spi-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-vertx-http-dev-console-spi-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-vertx-http-dev-console-spi-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-vertx-http-dev-console-spi-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-vertx-latebound-mdc-provider-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-vertx-latebound-mdc-provider-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-vertx-latebound-mdc-provider-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-websockets-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-websockets-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-websockets-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-websockets-client-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-websockets-client-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-websockets-client-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-websockets-client-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-websockets-client-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-websockets-client-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.quarkus-websockets-deployment-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.quarkus-websockets-deployment-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.quarkus-websockets-deployment-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.qute.qute-core-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.qute.qute-core-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.qute.qute-core-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.qute.qute-generator-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.qute.qute-generator-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.qute.qute-generator-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.resteasy.reactive.resteasy-reactive-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.resteasy.reactive.resteasy-reactive-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-client-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.resteasy.reactive.resteasy-reactive-client-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.resteasy.reactive.resteasy-reactive-client-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-client-processor-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.resteasy.reactive.resteasy-reactive-client-processor-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.resteasy.reactive.resteasy-reactive-client-processor-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-common-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.resteasy.reactive.resteasy-reactive-common-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.resteasy.reactive.resteasy-reactive-common-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-common-processor-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.resteasy.reactive.resteasy-reactive-common-processor-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.resteasy.reactive.resteasy-reactive-common-processor-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-common-types-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.resteasy.reactive.resteasy-reactive-common-types-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.resteasy.reactive.resteasy-reactive-common-types-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-jackson-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.resteasy.reactive.resteasy-reactive-jackson-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.resteasy.reactive.resteasy-reactive-jackson-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-jsonb-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.resteasy.reactive.resteasy-reactive-jsonb-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.resteasy.reactive.resteasy-reactive-jsonb-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-processor-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.resteasy.reactive.resteasy-reactive-processor-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.resteasy.reactive.resteasy-reactive-processor-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.resteasy.reactive.resteasy-reactive-vertx-2.13.8.Final-redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.resteasy.reactive.resteasy-reactive-vertx-2.13.8.Final-redhat-00006" + }, + "product_reference": "io.quarkus.resteasy.reactive.resteasy-reactive-vertx-2.13.8.Final-redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus.security.quarkus-security-1.1.4.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.quarkus.security.quarkus-security-1.1.4.Final-redhat-00001" + }, + "product_reference": "io.quarkus.security.quarkus-security-1.1.4.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.reactivex.rxjava3.rxjava-3.1.4.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.reactivex.rxjava3.rxjava-3.1.4.Final-redhat-00001" + }, + "product_reference": "io.reactivex.rxjava3.rxjava-3.1.4.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.common.smallrye-common-annotation-1.13.1.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.common.smallrye-common-annotation-1.13.1.redhat-00001" + }, + "product_reference": "io.smallrye.common.smallrye-common-annotation-1.13.1.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.common.smallrye-common-classloader-1.13.1.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.common.smallrye-common-classloader-1.13.1.redhat-00001" + }, + "product_reference": "io.smallrye.common.smallrye-common-classloader-1.13.1.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.common.smallrye-common-constraint-1.13.1.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.common.smallrye-common-constraint-1.13.1.redhat-00001" + }, + "product_reference": "io.smallrye.common.smallrye-common-constraint-1.13.1.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.common.smallrye-common-expression-1.13.1.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.common.smallrye-common-expression-1.13.1.redhat-00001" + }, + "product_reference": "io.smallrye.common.smallrye-common-expression-1.13.1.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.common.smallrye-common-function-1.13.1.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.common.smallrye-common-function-1.13.1.redhat-00001" + }, + "product_reference": "io.smallrye.common.smallrye-common-function-1.13.1.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.common.smallrye-common-io-1.13.1.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.common.smallrye-common-io-1.13.1.redhat-00001" + }, + "product_reference": "io.smallrye.common.smallrye-common-io-1.13.1.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.common.smallrye-common-os-1.13.1.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.common.smallrye-common-os-1.13.1.redhat-00001" + }, + "product_reference": "io.smallrye.common.smallrye-common-os-1.13.1.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.common.smallrye-common-version-1.13.1.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.common.smallrye-common-version-1.13.1.redhat-00001" + }, + "product_reference": "io.smallrye.common.smallrye-common-version-1.13.1.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.common.smallrye-common-vertx-context-1.13.1.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.common.smallrye-common-vertx-context-1.13.1.redhat-00001" + }, + "product_reference": "io.smallrye.common.smallrye-common-vertx-context-1.13.1.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.config.smallrye-config-2.12.3.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.config.smallrye-config-2.12.3.redhat-00001" + }, + "product_reference": "io.smallrye.config.smallrye-config-2.12.3.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.config.smallrye-config-common-2.12.3.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.config.smallrye-config-common-2.12.3.redhat-00001" + }, + "product_reference": "io.smallrye.config.smallrye-config-common-2.12.3.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.config.smallrye-config-core-2.12.3.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.config.smallrye-config-core-2.12.3.redhat-00001" + }, + "product_reference": "io.smallrye.config.smallrye-config-core-2.12.3.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.config.smallrye-config-source-yaml-2.12.3.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.config.smallrye-config-source-yaml-2.12.3.redhat-00001" + }, + "product_reference": "io.smallrye.config.smallrye-config-source-yaml-2.12.3.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.config.smallrye-config-validator-2.12.3.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.config.smallrye-config-validator-2.12.3.redhat-00001" + }, + "product_reference": "io.smallrye.config.smallrye-config-validator-2.12.3.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.mutiny-1.7.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.mutiny-1.7.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.mutiny-1.7.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.mutiny-reactive-streams-operators-1.7.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.mutiny-reactive-streams-operators-1.7.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.mutiny-reactive-streams-operators-1.7.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.mutiny-smallrye-context-propagation-1.7.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.mutiny-smallrye-context-propagation-1.7.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.mutiny-smallrye-context-propagation-1.7.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-amqp-client-2.27.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.smallrye-mutiny-vertx-amqp-client-2.27.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.smallrye-mutiny-vertx-amqp-client-2.27.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-auth-common-2.27.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.smallrye-mutiny-vertx-auth-common-2.27.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.smallrye-mutiny-vertx-auth-common-2.27.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-bridge-common-2.27.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.smallrye-mutiny-vertx-bridge-common-2.27.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.smallrye-mutiny-vertx-bridge-common-2.27.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-core-2.27.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.smallrye-mutiny-vertx-core-2.27.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.smallrye-mutiny-vertx-core-2.27.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-mail-client-2.27.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.smallrye-mutiny-vertx-mail-client-2.27.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.smallrye-mutiny-vertx-mail-client-2.27.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-mssql-client-2.27.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.smallrye-mutiny-vertx-mssql-client-2.27.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.smallrye-mutiny-vertx-mssql-client-2.27.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-mysql-client-2.27.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.smallrye-mutiny-vertx-mysql-client-2.27.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.smallrye-mutiny-vertx-mysql-client-2.27.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-pg-client-2.27.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.smallrye-mutiny-vertx-pg-client-2.27.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.smallrye-mutiny-vertx-pg-client-2.27.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-runtime-2.27.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.smallrye-mutiny-vertx-runtime-2.27.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.smallrye-mutiny-vertx-runtime-2.27.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-sql-client-2.27.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.smallrye-mutiny-vertx-sql-client-2.27.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.smallrye-mutiny-vertx-sql-client-2.27.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-uri-template-2.27.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.smallrye-mutiny-vertx-uri-template-2.27.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.smallrye-mutiny-vertx-uri-template-2.27.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-web-2.27.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.smallrye-mutiny-vertx-web-2.27.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.smallrye-mutiny-vertx-web-2.27.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-web-client-2.27.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.smallrye-mutiny-vertx-web-client-2.27.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.smallrye-mutiny-vertx-web-client-2.27.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.smallrye-mutiny-vertx-web-common-2.27.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.smallrye-mutiny-vertx-web-common-2.27.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.smallrye-mutiny-vertx-web-common-2.27.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.smallrye-reactive-converter-api-2.7.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.smallrye-reactive-converter-api-2.7.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.smallrye-reactive-converter-api-2.7.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.smallrye-reactive-converter-mutiny-2.7.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.smallrye-reactive-converter-mutiny-2.7.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.smallrye-reactive-converter-mutiny-2.7.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.smallrye-reactive-messaging-amqp-3.21.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.smallrye-reactive-messaging-amqp-3.21.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.smallrye-reactive-messaging-amqp-3.21.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.smallrye-reactive-messaging-api-3.21.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.smallrye-reactive-messaging-api-3.21.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.smallrye-reactive-messaging-api-3.21.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.smallrye-reactive-messaging-health-3.21.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.smallrye-reactive-messaging-health-3.21.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.smallrye-reactive-messaging-health-3.21.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.smallrye-reactive-messaging-kafka-3.21.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.smallrye-reactive-messaging-kafka-3.21.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.smallrye-reactive-messaging-kafka-3.21.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.smallrye-reactive-messaging-kafka-api-3.21.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.smallrye-reactive-messaging-kafka-api-3.21.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.smallrye-reactive-messaging-kafka-api-3.21.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.smallrye-reactive-messaging-provider-3.21.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.smallrye-reactive-messaging-provider-3.21.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.smallrye-reactive-messaging-provider-3.21.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.reactive.vertx-mutiny-generator-2.27.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.reactive.vertx-mutiny-generator-2.27.0.redhat-00001" + }, + "product_reference": "io.smallrye.reactive.vertx-mutiny-generator-2.27.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-context-propagation-1.2.2.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-context-propagation-1.2.2.redhat-00001" + }, + "product_reference": "io.smallrye.smallrye-context-propagation-1.2.2.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-context-propagation-api-1.2.2.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-context-propagation-api-1.2.2.redhat-00001" + }, + "product_reference": "io.smallrye.smallrye-context-propagation-api-1.2.2.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-context-propagation-jta-1.2.2.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-context-propagation-jta-1.2.2.redhat-00001" + }, + "product_reference": "io.smallrye.smallrye-context-propagation-jta-1.2.2.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-context-propagation-storage-1.2.2.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-context-propagation-storage-1.2.2.redhat-00001" + }, + "product_reference": "io.smallrye.smallrye-context-propagation-storage-1.2.2.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-fault-tolerance-5.5.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-fault-tolerance-5.5.0.redhat-00002" + }, + "product_reference": "io.smallrye.smallrye-fault-tolerance-5.5.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-fault-tolerance-api-5.5.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-fault-tolerance-api-5.5.0.redhat-00002" + }, + "product_reference": "io.smallrye.smallrye-fault-tolerance-api-5.5.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-fault-tolerance-autoconfig-core-5.5.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-fault-tolerance-autoconfig-core-5.5.0.redhat-00002" + }, + "product_reference": "io.smallrye.smallrye-fault-tolerance-autoconfig-core-5.5.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-fault-tolerance-context-propagation-5.5.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-fault-tolerance-context-propagation-5.5.0.redhat-00002" + }, + "product_reference": "io.smallrye.smallrye-fault-tolerance-context-propagation-5.5.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-fault-tolerance-core-5.5.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-fault-tolerance-core-5.5.0.redhat-00002" + }, + "product_reference": "io.smallrye.smallrye-fault-tolerance-core-5.5.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-fault-tolerance-mutiny-5.5.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-fault-tolerance-mutiny-5.5.0.redhat-00002" + }, + "product_reference": "io.smallrye.smallrye-fault-tolerance-mutiny-5.5.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-fault-tolerance-tracing-propagation-5.5.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-fault-tolerance-tracing-propagation-5.5.0.redhat-00002" + }, + "product_reference": "io.smallrye.smallrye-fault-tolerance-tracing-propagation-5.5.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-fault-tolerance-vertx-5.5.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-fault-tolerance-vertx-5.5.0.redhat-00002" + }, + "product_reference": "io.smallrye.smallrye-fault-tolerance-vertx-5.5.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-graphql-1.7.2.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-graphql-1.7.2.redhat-00001" + }, + "product_reference": "io.smallrye.smallrye-graphql-1.7.2.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-graphql-api-1.7.2.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-graphql-api-1.7.2.redhat-00001" + }, + "product_reference": "io.smallrye.smallrye-graphql-api-1.7.2.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-graphql-cdi-1.7.2.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-graphql-cdi-1.7.2.redhat-00001" + }, + "product_reference": "io.smallrye.smallrye-graphql-cdi-1.7.2.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-graphql-client-1.7.2.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-graphql-client-1.7.2.redhat-00001" + }, + "product_reference": "io.smallrye.smallrye-graphql-client-1.7.2.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-graphql-client-api-1.7.2.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-graphql-client-api-1.7.2.redhat-00001" + }, + "product_reference": "io.smallrye.smallrye-graphql-client-api-1.7.2.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-graphql-client-implementation-vertx-1.7.2.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-graphql-client-implementation-vertx-1.7.2.redhat-00001" + }, + "product_reference": "io.smallrye.smallrye-graphql-client-implementation-vertx-1.7.2.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-graphql-schema-builder-1.7.2.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-graphql-schema-builder-1.7.2.redhat-00001" + }, + "product_reference": "io.smallrye.smallrye-graphql-schema-builder-1.7.2.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-graphql-schema-model-1.7.2.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-graphql-schema-model-1.7.2.redhat-00001" + }, + "product_reference": "io.smallrye.smallrye-graphql-schema-model-1.7.2.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-graphql-ui-graphiql-1.7.2 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-graphql-ui-graphiql-1.7.2" + }, + "product_reference": "io.smallrye.smallrye-graphql-ui-graphiql-1.7.2", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-health-3.3.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-health-3.3.0.redhat-00002" + }, + "product_reference": "io.smallrye.smallrye-health-3.3.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-health-api-3.3.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-health-api-3.3.0.redhat-00002" + }, + "product_reference": "io.smallrye.smallrye-health-api-3.3.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-health-provided-checks-3.3.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-health-provided-checks-3.3.0.redhat-00002" + }, + "product_reference": "io.smallrye.smallrye-health-provided-checks-3.3.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-health-ui-3.3.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-health-ui-3.3.0.redhat-00002" + }, + "product_reference": "io.smallrye.smallrye-health-ui-3.3.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-jwt-3.5.4.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-jwt-3.5.4.redhat-00001" + }, + "product_reference": "io.smallrye.smallrye-jwt-3.5.4.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-jwt-build-3.5.4.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-jwt-build-3.5.4.redhat-00001" + }, + "product_reference": "io.smallrye.smallrye-jwt-build-3.5.4.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-jwt-common-3.5.4.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-jwt-common-3.5.4.redhat-00001" + }, + "product_reference": "io.smallrye.smallrye-jwt-common-3.5.4.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-metrics-3.0.5.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-metrics-3.0.5.redhat-00001" + }, + "product_reference": "io.smallrye.smallrye-metrics-3.0.5.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-open-api-core-2.2.1.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-open-api-core-2.2.1.redhat-00001" + }, + "product_reference": "io.smallrye.smallrye-open-api-core-2.2.1.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-open-api-jaxrs-2.2.1.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-open-api-jaxrs-2.2.1.redhat-00001" + }, + "product_reference": "io.smallrye.smallrye-open-api-jaxrs-2.2.1.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-open-api-spring-2.2.1.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-open-api-spring-2.2.1.redhat-00001" + }, + "product_reference": "io.smallrye.smallrye-open-api-spring-2.2.1.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-open-api-ui-2.2.1.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-open-api-ui-2.2.1.redhat-00001" + }, + "product_reference": "io.smallrye.smallrye-open-api-ui-2.2.1.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-open-api-vertx-2.2.1.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-open-api-vertx-2.2.1.redhat-00001" + }, + "product_reference": "io.smallrye.smallrye-open-api-vertx-2.2.1.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-opentracing-2.1.1.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-opentracing-2.1.1.redhat-00002" + }, + "product_reference": "io.smallrye.smallrye-opentracing-2.1.1.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.smallrye-opentracing-contrib-2.1.1.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.smallrye-opentracing-contrib-2.1.1.redhat-00002" + }, + "product_reference": "io.smallrye.smallrye-opentracing-contrib-2.1.1.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.stork.stork-api-1.1.2.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.stork.stork-api-1.1.2.redhat-00002" + }, + "product_reference": "io.smallrye.stork.stork-api-1.1.2.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.smallrye.stork.stork-core-1.1.2.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.smallrye.stork.stork-core-1.1.2.redhat-00002" + }, + "product_reference": "io.smallrye.stork.stork-core-1.1.2.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.strimzi.strimzi-test-container-0.100.0 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.strimzi.strimzi-test-container-0.100.0" + }, + "product_reference": "io.strimzi.strimzi-test-container-0.100.0", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.vertx.vertx-amqp-client-4.3.4.redhat-00008 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.vertx.vertx-amqp-client-4.3.4.redhat-00008" + }, + "product_reference": "io.vertx.vertx-amqp-client-4.3.4.redhat-00008", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.vertx.vertx-auth-common-4.3.4.redhat-00008 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.vertx.vertx-auth-common-4.3.4.redhat-00008" + }, + "product_reference": "io.vertx.vertx-auth-common-4.3.4.redhat-00008", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.vertx.vertx-bridge-common-4.3.4.redhat-00008 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.vertx.vertx-bridge-common-4.3.4.redhat-00008" + }, + "product_reference": "io.vertx.vertx-bridge-common-4.3.4.redhat-00008", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.vertx.vertx-codegen-4.3.4.redhat-00008 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.vertx.vertx-codegen-4.3.4.redhat-00008" + }, + "product_reference": "io.vertx.vertx-codegen-4.3.4.redhat-00008", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.vertx.vertx-core-4.3.4.redhat-00008 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.vertx.vertx-core-4.3.4.redhat-00008" + }, + "product_reference": "io.vertx.vertx-core-4.3.4.redhat-00008", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.vertx.vertx-grpc-4.3.4.redhat-00008 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.vertx.vertx-grpc-4.3.4.redhat-00008" + }, + "product_reference": "io.vertx.vertx-grpc-4.3.4.redhat-00008", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.vertx.vertx-kafka-client-4.3.4.redhat-00008 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.vertx.vertx-kafka-client-4.3.4.redhat-00008" + }, + "product_reference": "io.vertx.vertx-kafka-client-4.3.4.redhat-00008", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.vertx.vertx-mail-client-4.3.4.redhat-00008 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.vertx.vertx-mail-client-4.3.4.redhat-00008" + }, + "product_reference": "io.vertx.vertx-mail-client-4.3.4.redhat-00008", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.vertx.vertx-mssql-client-4.3.4.redhat-00008 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.vertx.vertx-mssql-client-4.3.4.redhat-00008" + }, + "product_reference": "io.vertx.vertx-mssql-client-4.3.4.redhat-00008", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.vertx.vertx-mysql-client-4.3.4.redhat-00008 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.vertx.vertx-mysql-client-4.3.4.redhat-00008" + }, + "product_reference": "io.vertx.vertx-mysql-client-4.3.4.redhat-00008", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.vertx.vertx-pg-client-4.3.4.redhat-00008 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.vertx.vertx-pg-client-4.3.4.redhat-00008" + }, + "product_reference": "io.vertx.vertx-pg-client-4.3.4.redhat-00008", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.vertx.vertx-proton-4.3.4.redhat-00008 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.vertx.vertx-proton-4.3.4.redhat-00008" + }, + "product_reference": "io.vertx.vertx-proton-4.3.4.redhat-00008", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.vertx.vertx-sql-client-4.3.4.redhat-00008 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.vertx.vertx-sql-client-4.3.4.redhat-00008" + }, + "product_reference": "io.vertx.vertx-sql-client-4.3.4.redhat-00008", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.vertx.vertx-uri-template-4.3.4.redhat-00008 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.vertx.vertx-uri-template-4.3.4.redhat-00008" + }, + "product_reference": "io.vertx.vertx-uri-template-4.3.4.redhat-00008", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.vertx.vertx-web-4.3.4.redhat-00008 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.vertx.vertx-web-4.3.4.redhat-00008" + }, + "product_reference": "io.vertx.vertx-web-4.3.4.redhat-00008", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.vertx.vertx-web-client-4.3.4.redhat-00008 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.vertx.vertx-web-client-4.3.4.redhat-00008" + }, + "product_reference": "io.vertx.vertx-web-client-4.3.4.redhat-00008", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.vertx.vertx-web-common-4.3.4.redhat-00008 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:io.vertx.vertx-web-common-4.3.4.redhat-00008" + }, + "product_reference": "io.vertx.vertx-web-common-4.3.4.redhat-00008", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jakarta.annotation.jakarta.annotation-api-1.3.5.redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:jakarta.annotation.jakarta.annotation-api-1.3.5.redhat-00006" + }, + "product_reference": "jakarta.annotation.jakarta.annotation-api-1.3.5.redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jakarta.el.jakarta.el-api-3.0.3.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:jakarta.el.jakarta.el-api-3.0.3.redhat-00002" + }, + "product_reference": "jakarta.el.jakarta.el-api-3.0.3.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jakarta.enterprise.jakarta.enterprise.cdi-api-2.0.2.redhat-00004 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:jakarta.enterprise.jakarta.enterprise.cdi-api-2.0.2.redhat-00004" + }, + "product_reference": "jakarta.enterprise.jakarta.enterprise.cdi-api-2.0.2.redhat-00004", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jakarta.inject.jakarta.inject-api-1.0.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:jakarta.inject.jakarta.inject-api-1.0.0.redhat-00002" + }, + "product_reference": "jakarta.inject.jakarta.inject-api-1.0.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jakarta.interceptor.jakarta.interceptor-api-1.2.5.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:jakarta.interceptor.jakarta.interceptor-api-1.2.5.redhat-00003" + }, + "product_reference": "jakarta.interceptor.jakarta.interceptor-api-1.2.5.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jakarta.json.bind.jakarta.json.bind-api-1.0.2.redhat-00004 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:jakarta.json.bind.jakarta.json.bind-api-1.0.2.redhat-00004" + }, + "product_reference": "jakarta.json.bind.jakarta.json.bind-api-1.0.2.redhat-00004", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jakarta.persistence.jakarta.persistence-api-2.2.3.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:jakarta.persistence.jakarta.persistence-api-2.2.3.redhat-00001" + }, + "product_reference": "jakarta.persistence.jakarta.persistence-api-2.2.3.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jakarta.servlet.jakarta.servlet-api-4.0.3.redhat-00006 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:jakarta.servlet.jakarta.servlet-api-4.0.3.redhat-00006" + }, + "product_reference": "jakarta.servlet.jakarta.servlet-api-4.0.3.redhat-00006", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jakarta.transaction.jakarta.transaction-api-1.3.3.redhat-00004 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:jakarta.transaction.jakarta.transaction-api-1.3.3.redhat-00004" + }, + "product_reference": "jakarta.transaction.jakarta.transaction-api-1.3.3.redhat-00004", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jakarta.validation.jakarta.validation-api-2.0.2.redhat-00005 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:jakarta.validation.jakarta.validation-api-2.0.2.redhat-00005" + }, + "product_reference": "jakarta.validation.jakarta.validation-api-2.0.2.redhat-00005", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jakarta.websocket.jakarta.websocket-api-1.1.2.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:jakarta.websocket.jakarta.websocket-api-1.1.2.redhat-00002" + }, + "product_reference": "jakarta.websocket.jakarta.websocket-api-1.1.2.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mysql.mysql-connector-java-8.0.30.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:mysql.mysql-connector-java-8.0.30.redhat-00002" + }, + "product_reference": "mysql.mysql-connector-java-8.0.30.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "net.bytebuddy.byte-buddy-1.12.18.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:net.bytebuddy.byte-buddy-1.12.18.redhat-00003" + }, + "product_reference": "net.bytebuddy.byte-buddy-1.12.18.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "net.java.dev.jna.jna-5.8.0 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:net.java.dev.jna.jna-5.8.0" + }, + "product_reference": "net.java.dev.jna.jna-5.8.0", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "net.spy.spymemcached-2.12.1 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:net.spy.spymemcached-2.12.1" + }, + "product_reference": "net.spy.spymemcached-2.12.1", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.aesh.aesh-2.6.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.aesh.aesh-2.6.0.redhat-00001" + }, + "product_reference": "org.aesh.aesh-2.6.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.aesh.readline-2.2.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.aesh.readline-2.2.0.redhat-00001" + }, + "product_reference": "org.aesh.readline-2.2.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.antlr.antlr4-runtime-4.9.2.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.antlr.antlr4-runtime-4.9.2.redhat-00003" + }, + "product_reference": "org.antlr.antlr4-runtime-4.9.2.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.avro.avro-1.11.1.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.avro.avro-1.11.1.redhat-00002" + }, + "product_reference": "org.apache.avro.avro-1.11.1.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.avro.avro-compiler-1.11.1.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.avro.avro-compiler-1.11.1.redhat-00002" + }, + "product_reference": "org.apache.avro.avro-compiler-1.11.1.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.commons.commons-compress-1.21.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.commons.commons-compress-1.21.0.redhat-00001" + }, + "product_reference": "org.apache.commons.commons-compress-1.21.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.commons.commons-lang3-3.12.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.commons.commons-lang3-3.12.0.redhat-00001" + }, + "product_reference": "org.apache.commons.commons-lang3-3.12.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.commons.commons-text-1.10.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.commons.commons-text-1.10.0.redhat-00001" + }, + "product_reference": "org.apache.commons.commons-text-1.10.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.derby.derby-10.14.2.0 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.derby.derby-10.14.2.0" + }, + "product_reference": "org.apache.derby.derby-10.14.2.0", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.derby.derbyclient-10.14.2.0 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.derby.derbyclient-10.14.2.0" + }, + "product_reference": "org.apache.derby.derbyclient-10.14.2.0", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.derby.derbynet-10.14.2.0 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.derby.derbynet-10.14.2.0" + }, + "product_reference": "org.apache.derby.derbynet-10.14.2.0", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.derby.derbytools-10.14.2.0 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.derby.derbytools-10.14.2.0" + }, + "product_reference": "org.apache.derby.derbytools-10.14.2.0", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.httpcomponents.httpasyncclient-4.1.5.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.httpcomponents.httpasyncclient-4.1.5.redhat-00001" + }, + "product_reference": "org.apache.httpcomponents.httpasyncclient-4.1.5.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.httpcomponents.httpclient-4.5.13.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.httpcomponents.httpclient-4.5.13.redhat-00002" + }, + "product_reference": "org.apache.httpcomponents.httpclient-4.5.13.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.httpcomponents.httpcore-4.4.15.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.httpcomponents.httpcore-4.4.15.redhat-00003" + }, + "product_reference": "org.apache.httpcomponents.httpcore-4.4.15.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.httpcomponents.httpcore-nio-4.4.15.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.httpcomponents.httpcore-nio-4.4.15.redhat-00003" + }, + "product_reference": "org.apache.httpcomponents.httpcore-nio-4.4.15.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.james.apache-mime4j-core-0.8.9.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.james.apache-mime4j-core-0.8.9.redhat-00001" + }, + "product_reference": "org.apache.james.apache-mime4j-core-0.8.9.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.james.apache-mime4j-dom-0.8.9.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.james.apache-mime4j-dom-0.8.9.redhat-00001" + }, + "product_reference": "org.apache.james.apache-mime4j-dom-0.8.9.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.james.apache-mime4j-storage-0.8.9.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.james.apache-mime4j-storage-0.8.9.redhat-00001" + }, + "product_reference": "org.apache.james.apache-mime4j-storage-0.8.9.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.kafka.kafka-clients-3.2.3.redhat-00011 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.kafka.kafka-clients-3.2.3.redhat-00011" + }, + "product_reference": "org.apache.kafka.kafka-clients-3.2.3.redhat-00011", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.kafka.kafka-streams-3.2.3.redhat-00011 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.kafka.kafka-streams-3.2.3.redhat-00011" + }, + "product_reference": "org.apache.kafka.kafka-streams-3.2.3.redhat-00011", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.maven.maven-artifact-3.8.6 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.maven.maven-artifact-3.8.6" + }, + "product_reference": "org.apache.maven.maven-artifact-3.8.6", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.maven.maven-builder-support-3.8.6 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.maven.maven-builder-support-3.8.6" + }, + "product_reference": "org.apache.maven.maven-builder-support-3.8.6", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.maven.maven-core-3.8.6 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.maven.maven-core-3.8.6" + }, + "product_reference": "org.apache.maven.maven-core-3.8.6", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.maven.maven-embedder-3.8.6 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.maven.maven-embedder-3.8.6" + }, + "product_reference": "org.apache.maven.maven-embedder-3.8.6", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.maven.maven-model-3.8.6 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.maven.maven-model-3.8.6" + }, + "product_reference": "org.apache.maven.maven-model-3.8.6", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.maven.maven-model-builder-3.8.6 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.maven.maven-model-builder-3.8.6" + }, + "product_reference": "org.apache.maven.maven-model-builder-3.8.6", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.maven.maven-plugin-api-3.8.6 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.maven.maven-plugin-api-3.8.6" + }, + "product_reference": "org.apache.maven.maven-plugin-api-3.8.6", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.maven.maven-repository-metadata-3.8.6 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.maven.maven-repository-metadata-3.8.6" + }, + "product_reference": "org.apache.maven.maven-repository-metadata-3.8.6", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.maven.maven-resolver-provider-3.8.6 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.maven.maven-resolver-provider-3.8.6" + }, + "product_reference": "org.apache.maven.maven-resolver-provider-3.8.6", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.maven.maven-settings-3.8.6 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.maven.maven-settings-3.8.6" + }, + "product_reference": "org.apache.maven.maven-settings-3.8.6", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.maven.maven-settings-builder-3.8.6 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.maven.maven-settings-builder-3.8.6" + }, + "product_reference": "org.apache.maven.maven-settings-builder-3.8.6", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.maven.plugin-tools.maven-plugin-annotations-3.6.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.maven.plugin-tools.maven-plugin-annotations-3.6.0.redhat-00002" + }, + "product_reference": "org.apache.maven.plugin-tools.maven-plugin-annotations-3.6.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.maven.resolver.maven-resolver-api-1.6.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.maven.resolver.maven-resolver-api-1.6.3" + }, + "product_reference": "org.apache.maven.resolver.maven-resolver-api-1.6.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.maven.resolver.maven-resolver-connector-basic-1.6.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.maven.resolver.maven-resolver-connector-basic-1.6.3" + }, + "product_reference": "org.apache.maven.resolver.maven-resolver-connector-basic-1.6.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.maven.resolver.maven-resolver-impl-1.6.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.maven.resolver.maven-resolver-impl-1.6.3" + }, + "product_reference": "org.apache.maven.resolver.maven-resolver-impl-1.6.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.maven.resolver.maven-resolver-spi-1.6.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.maven.resolver.maven-resolver-spi-1.6.3" + }, + "product_reference": "org.apache.maven.resolver.maven-resolver-spi-1.6.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.maven.resolver.maven-resolver-transport-wagon-1.6.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.maven.resolver.maven-resolver-transport-wagon-1.6.3" + }, + "product_reference": "org.apache.maven.resolver.maven-resolver-transport-wagon-1.6.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.maven.resolver.maven-resolver-util-1.6.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.maven.resolver.maven-resolver-util-1.6.3" + }, + "product_reference": "org.apache.maven.resolver.maven-resolver-util-1.6.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.maven.shared.maven-shared-utils-3.3.4 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.maven.shared.maven-shared-utils-3.3.4" + }, + "product_reference": "org.apache.maven.shared.maven-shared-utils-3.3.4", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.maven.wagon.wagon-file-3.5.1 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.maven.wagon.wagon-file-3.5.1" + }, + "product_reference": "org.apache.maven.wagon.wagon-file-3.5.1", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.maven.wagon.wagon-http-3.5.1 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.maven.wagon.wagon-http-3.5.1" + }, + "product_reference": "org.apache.maven.wagon.wagon-http-3.5.1", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.maven.wagon.wagon-http-shared-3.5.1 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.maven.wagon.wagon-http-shared-3.5.1" + }, + "product_reference": "org.apache.maven.wagon.wagon-http-shared-3.5.1", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.maven.wagon.wagon-provider-api-3.5.1 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.maven.wagon.wagon-provider-api-3.5.1" + }, + "product_reference": "org.apache.maven.wagon.wagon-provider-api-3.5.1", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.qpid.proton-j-0.34.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.qpid.proton-j-0.34.0.redhat-00001" + }, + "product_reference": "org.apache.qpid.proton-j-0.34.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.sshd.sshd-common-2.9.2.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.sshd.sshd-common-2.9.2.redhat-00001" + }, + "product_reference": "org.apache.sshd.sshd-common-2.9.2.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.thrift.libthrift-0.15.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.thrift.libthrift-0.15.0.redhat-00001" + }, + "product_reference": "org.apache.thrift.libthrift-0.15.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apache.velocity.velocity-engine-core-2.3.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apache.velocity.velocity-engine-core-2.3.0.redhat-00001" + }, + "product_reference": "org.apache.velocity.velocity-engine-core-2.3.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.apiguardian.apiguardian-api-1.1.2 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.apiguardian.apiguardian-api-1.1.2" + }, + "product_reference": "org.apiguardian.apiguardian-api-1.1.2", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.bitbucket.b_c.jose4j-0.8.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.bitbucket.b_c.jose4j-0.8.0.redhat-00001" + }, + "product_reference": "org.bitbucket.b_c.jose4j-0.8.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.bouncycastle.bcpkix-jdk15on-1.70 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.bouncycastle.bcpkix-jdk15on-1.70" + }, + "product_reference": "org.bouncycastle.bcpkix-jdk15on-1.70", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.bouncycastle.bcprov-jdk15on-1.70 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.bouncycastle.bcprov-jdk15on-1.70" + }, + "product_reference": "org.bouncycastle.bcprov-jdk15on-1.70", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.bouncycastle.bcutil-jdk15on-1.70 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.bouncycastle.bcutil-jdk15on-1.70" + }, + "product_reference": "org.bouncycastle.bcutil-jdk15on-1.70", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.codehaus.plexus.plexus-cipher-2.0 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.codehaus.plexus.plexus-cipher-2.0" + }, + "product_reference": "org.codehaus.plexus.plexus-cipher-2.0", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.codehaus.plexus.plexus-classworlds-2.6.0 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.codehaus.plexus.plexus-classworlds-2.6.0" + }, + "product_reference": "org.codehaus.plexus.plexus-classworlds-2.6.0", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.codehaus.plexus.plexus-compiler-api-2.7 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.codehaus.plexus.plexus-compiler-api-2.7" + }, + "product_reference": "org.codehaus.plexus.plexus-compiler-api-2.7", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.codehaus.plexus.plexus-compiler-javac-2.7 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.codehaus.plexus.plexus-compiler-javac-2.7" + }, + "product_reference": "org.codehaus.plexus.plexus-compiler-javac-2.7", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.codehaus.plexus.plexus-component-annotations-2.1.0 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.codehaus.plexus.plexus-component-annotations-2.1.0" + }, + "product_reference": "org.codehaus.plexus.plexus-component-annotations-2.1.0", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.codehaus.plexus.plexus-interpolation-1.26 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.codehaus.plexus.plexus-interpolation-1.26" + }, + "product_reference": "org.codehaus.plexus.plexus-interpolation-1.26", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.codehaus.plexus.plexus-sec-dispatcher-2.0 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.codehaus.plexus.plexus-sec-dispatcher-2.0" + }, + "product_reference": "org.codehaus.plexus.plexus-sec-dispatcher-2.0", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.codehaus.plexus.plexus-utils-3.3.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.codehaus.plexus.plexus-utils-3.3.0.redhat-00002" + }, + "product_reference": "org.codehaus.plexus.plexus-utils-3.3.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.commonmark.commonmark-0.19.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.commonmark.commonmark-0.19.0.redhat-00002" + }, + "product_reference": "org.commonmark.commonmark-0.19.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.eclipse.microprofile.config.microprofile-config-api-2.0.1.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.eclipse.microprofile.config.microprofile-config-api-2.0.1.redhat-00001" + }, + "product_reference": "org.eclipse.microprofile.config.microprofile-config-api-2.0.1.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.eclipse.microprofile.context-propagation.microprofile-context-propagation-api-1.2.0.redhat-00012 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.eclipse.microprofile.context-propagation.microprofile-context-propagation-api-1.2.0.redhat-00012" + }, + "product_reference": "org.eclipse.microprofile.context-propagation.microprofile-context-propagation-api-1.2.0.redhat-00012", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.eclipse.microprofile.fault-tolerance.microprofile-fault-tolerance-api-3.0.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.eclipse.microprofile.fault-tolerance.microprofile-fault-tolerance-api-3.0.0.redhat-00002" + }, + "product_reference": "org.eclipse.microprofile.fault-tolerance.microprofile-fault-tolerance-api-3.0.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.eclipse.microprofile.graphql.microprofile-graphql-api-1.1.0.redhat-00009 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.eclipse.microprofile.graphql.microprofile-graphql-api-1.1.0.redhat-00009" + }, + "product_reference": "org.eclipse.microprofile.graphql.microprofile-graphql-api-1.1.0.redhat-00009", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.eclipse.microprofile.health.microprofile-health-api-3.1.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.eclipse.microprofile.health.microprofile-health-api-3.1.0.redhat-00002" + }, + "product_reference": "org.eclipse.microprofile.health.microprofile-health-api-3.1.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.eclipse.microprofile.jwt.microprofile-jwt-auth-api-1.2.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.eclipse.microprofile.jwt.microprofile-jwt-auth-api-1.2.0.redhat-00002" + }, + "product_reference": "org.eclipse.microprofile.jwt.microprofile-jwt-auth-api-1.2.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.eclipse.microprofile.metrics.microprofile-metrics-api-3.0.1.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.eclipse.microprofile.metrics.microprofile-metrics-api-3.0.1.redhat-00001" + }, + "product_reference": "org.eclipse.microprofile.metrics.microprofile-metrics-api-3.0.1.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.eclipse.microprofile.openapi.microprofile-openapi-api-2.0.1.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.eclipse.microprofile.openapi.microprofile-openapi-api-2.0.1.redhat-00001" + }, + "product_reference": "org.eclipse.microprofile.openapi.microprofile-openapi-api-2.0.1.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.eclipse.microprofile.opentracing.microprofile-opentracing-api-2.0.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.eclipse.microprofile.opentracing.microprofile-opentracing-api-2.0.0.redhat-00002" + }, + "product_reference": "org.eclipse.microprofile.opentracing.microprofile-opentracing-api-2.0.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.eclipse.microprofile.reactive-streams-operators.microprofile-reactive-streams-operators-api-1.0.1.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.eclipse.microprofile.reactive-streams-operators.microprofile-reactive-streams-operators-api-1.0.1.redhat-00001" + }, + "product_reference": "org.eclipse.microprofile.reactive-streams-operators.microprofile-reactive-streams-operators-api-1.0.1.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.eclipse.microprofile.reactive-streams-operators.microprofile-reactive-streams-operators-core-1.0.1.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.eclipse.microprofile.reactive-streams-operators.microprofile-reactive-streams-operators-core-1.0.1.redhat-00001" + }, + "product_reference": "org.eclipse.microprofile.reactive-streams-operators.microprofile-reactive-streams-operators-core-1.0.1.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.eclipse.microprofile.rest.client.microprofile-rest-client-api-2.0.0.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.eclipse.microprofile.rest.client.microprofile-rest-client-api-2.0.0.redhat-00003" + }, + "product_reference": "org.eclipse.microprofile.rest.client.microprofile-rest-client-api-2.0.0.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.eclipse.sisu.org.eclipse.sisu.inject-0.3.5 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.eclipse.sisu.org.eclipse.sisu.inject-0.3.5" + }, + "product_reference": "org.eclipse.sisu.org.eclipse.sisu.inject-0.3.5", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.eclipse.sisu.org.eclipse.sisu.plexus-0.3.5 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.eclipse.sisu.org.eclipse.sisu.plexus-0.3.5" + }, + "product_reference": "org.eclipse.sisu.org.eclipse.sisu.plexus-0.3.5", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.eclipse.transformer.org.eclipse.transformer-0.5.0 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.eclipse.transformer.org.eclipse.transformer-0.5.0" + }, + "product_reference": "org.eclipse.transformer.org.eclipse.transformer-0.5.0", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.eclipse.yasson-1.0.11.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.eclipse.yasson-1.0.11.redhat-00002" + }, + "product_reference": "org.eclipse.yasson-1.0.11.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.elasticsearch.client.elasticsearch-rest-client-8.4.3.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.elasticsearch.client.elasticsearch-rest-client-8.4.3.redhat-00002" + }, + "product_reference": "org.elasticsearch.client.elasticsearch-rest-client-8.4.3.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.elasticsearch.client.elasticsearch-rest-client-sniffer-8.4.3.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.elasticsearch.client.elasticsearch-rest-client-sniffer-8.4.3.redhat-00002" + }, + "product_reference": "org.elasticsearch.client.elasticsearch-rest-client-sniffer-8.4.3.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.freemarker.freemarker-2.3.31.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.freemarker.freemarker-2.3.31.redhat-00001" + }, + "product_reference": "org.freemarker.freemarker-2.3.31.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.fusesource.jansi.jansi-1.18 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.fusesource.jansi.jansi-1.18" + }, + "product_reference": "org.fusesource.jansi.jansi-1.18", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.fusesource.jansi.jansi-1.18.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.fusesource.jansi.jansi-1.18.0.redhat-00001" + }, + "product_reference": "org.fusesource.jansi.jansi-1.18.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.glassfish.jakarta.el-3.0.4.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.glassfish.jakarta.el-3.0.4.redhat-00002" + }, + "product_reference": "org.glassfish.jakarta.el-3.0.4.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.glassfish.jakarta.json-1.1.6.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.glassfish.jakarta.json-1.1.6.redhat-00003" + }, + "product_reference": "org.glassfish.jakarta.json-1.1.6.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.glassfish.jaxb.jaxb-runtime-2.3.3.b02-redhat-00004 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.glassfish.jaxb.jaxb-runtime-2.3.3.b02-redhat-00004" + }, + "product_reference": "org.glassfish.jaxb.jaxb-runtime-2.3.3.b02-redhat-00004", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.glassfish.jaxb.txw2-2.3.3.b02-redhat-00004 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.glassfish.jaxb.txw2-2.3.3.b02-redhat-00004" + }, + "product_reference": "org.glassfish.jaxb.txw2-2.3.3.b02-redhat-00004", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.graalvm.sdk.graal-sdk-22.3.2.0-2-redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.graalvm.sdk.graal-sdk-22.3.2.0-2-redhat-00002" + }, + "product_reference": "org.graalvm.sdk.graal-sdk-22.3.2.0-2-redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.hdrhistogram.HdrHistogram-2.1.12.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.hdrhistogram.HdrHistogram-2.1.12.redhat-00002" + }, + "product_reference": "org.hdrhistogram.HdrHistogram-2.1.12.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.hibernate.common.hibernate-commons-annotations-5.1.2.Final as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.hibernate.common.hibernate-commons-annotations-5.1.2.Final" + }, + "product_reference": "org.hibernate.common.hibernate-commons-annotations-5.1.2.Final", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.hibernate.hibernate-core-5.6.15.Final as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.hibernate.hibernate-core-5.6.15.Final" + }, + "product_reference": "org.hibernate.hibernate-core-5.6.15.Final", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.hibernate.hibernate-graalvm-5.6.15.Final as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.hibernate.hibernate-graalvm-5.6.15.Final" + }, + "product_reference": "org.hibernate.hibernate-graalvm-5.6.15.Final", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.hibernate.quarkus-local-cache-0.1.1.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.hibernate.quarkus-local-cache-0.1.1.redhat-00002" + }, + "product_reference": "org.hibernate.quarkus-local-cache-0.1.1.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.hibernate.reactive.hibernate-reactive-core-1.1.8.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.hibernate.reactive.hibernate-reactive-core-1.1.8.Final-redhat-00001" + }, + "product_reference": "org.hibernate.reactive.hibernate-reactive-core-1.1.8.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.hibernate.search.hibernate-search-backend-elasticsearch-6.1.7.Final-redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.hibernate.search.hibernate-search-backend-elasticsearch-6.1.7.Final-redhat-00002" + }, + "product_reference": "org.hibernate.search.hibernate-search-backend-elasticsearch-6.1.7.Final-redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.hibernate.search.hibernate-search-engine-6.1.7.Final-redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.hibernate.search.hibernate-search-engine-6.1.7.Final-redhat-00002" + }, + "product_reference": "org.hibernate.search.hibernate-search-engine-6.1.7.Final-redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.hibernate.search.hibernate-search-mapper-orm-6.1.7.Final-redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.hibernate.search.hibernate-search-mapper-orm-6.1.7.Final-redhat-00002" + }, + "product_reference": "org.hibernate.search.hibernate-search-mapper-orm-6.1.7.Final-redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.hibernate.search.hibernate-search-mapper-pojo-base-6.1.7.Final-redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.hibernate.search.hibernate-search-mapper-pojo-base-6.1.7.Final-redhat-00002" + }, + "product_reference": "org.hibernate.search.hibernate-search-mapper-pojo-base-6.1.7.Final-redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.hibernate.search.hibernate-search-util-common-6.1.7.Final-redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.hibernate.search.hibernate-search-util-common-6.1.7.Final-redhat-00002" + }, + "product_reference": "org.hibernate.search.hibernate-search-util-common-6.1.7.Final-redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.hibernate.validator.hibernate-validator-6.2.5.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.hibernate.validator.hibernate-validator-6.2.5.Final-redhat-00001" + }, + "product_reference": "org.hibernate.validator.hibernate-validator-6.2.5.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.infinispan.infinispan-api-14.0.9.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.infinispan.infinispan-api-14.0.9.Final-redhat-00001" + }, + "product_reference": "org.infinispan.infinispan-api-14.0.9.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.infinispan.infinispan-client-hotrod-14.0.9.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.infinispan.infinispan-client-hotrod-14.0.9.Final-redhat-00001" + }, + "product_reference": "org.infinispan.infinispan-client-hotrod-14.0.9.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.infinispan.infinispan-commons-14.0.9.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.infinispan.infinispan-commons-14.0.9.Final-redhat-00001" + }, + "product_reference": "org.infinispan.infinispan-commons-14.0.9.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.infinispan.infinispan-commons-test-14.0.9.Final as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.infinispan.infinispan-commons-test-14.0.9.Final" + }, + "product_reference": "org.infinispan.infinispan-commons-test-14.0.9.Final", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.infinispan.infinispan-query-dsl-14.0.9.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.infinispan.infinispan-query-dsl-14.0.9.Final-redhat-00001" + }, + "product_reference": "org.infinispan.infinispan-query-dsl-14.0.9.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.infinispan.infinispan-remote-query-client-14.0.9.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.infinispan.infinispan-remote-query-client-14.0.9.Final-redhat-00001" + }, + "product_reference": "org.infinispan.infinispan-remote-query-client-14.0.9.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.infinispan.infinispan-server-testdriver-core-14.0.9.Final as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.infinispan.infinispan-server-testdriver-core-14.0.9.Final" + }, + "product_reference": "org.infinispan.infinispan-server-testdriver-core-14.0.9.Final", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.infinispan.protostream.protostream-4.6.2.Final-redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.infinispan.protostream.protostream-4.6.2.Final-redhat-00002" + }, + "product_reference": "org.infinispan.protostream.protostream-4.6.2.Final-redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.infinispan.protostream.protostream-processor-4.6.2.Final-redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.infinispan.protostream.protostream-processor-4.6.2.Final-redhat-00002" + }, + "product_reference": "org.infinispan.protostream.protostream-processor-4.6.2.Final-redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.infinispan.protostream.protostream-types-4.6.2.Final-redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.infinispan.protostream.protostream-types-4.6.2.Final-redhat-00002" + }, + "product_reference": "org.infinispan.protostream.protostream-types-4.6.2.Final-redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jacoco.org.jacoco.agent-0.8.8 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jacoco.org.jacoco.agent-0.8.8" + }, + "product_reference": "org.jacoco.org.jacoco.agent-0.8.8", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jacoco.org.jacoco.core-0.8.8 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jacoco.org.jacoco.core-0.8.8" + }, + "product_reference": "org.jacoco.org.jacoco.core-0.8.8", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jacoco.org.jacoco.report-0.8.8 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jacoco.org.jacoco.report-0.8.8" + }, + "product_reference": "org.jacoco.org.jacoco.report-0.8.8", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.javassist.javassist-3.29.1.GA-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.javassist.javassist-3.29.1.GA-redhat-00001" + }, + "product_reference": "org.javassist.javassist-3.29.1.GA-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.jandex-2.4.3.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.jandex-2.4.3.Final-redhat-00001" + }, + "product_reference": "org.jboss.jandex-2.4.3.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.jboss-transaction-spi-7.6.0.Final-redhat-1 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.jboss-transaction-spi-7.6.0.Final-redhat-1" + }, + "product_reference": "org.jboss.jboss-transaction-spi-7.6.0.Final-redhat-1", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.jdeparser.jdeparser-2.0.3.Final as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.jdeparser.jdeparser-2.0.3.Final" + }, + "product_reference": "org.jboss.jdeparser.jdeparser-2.0.3.Final", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.logging.commons-logging-jboss-logging-1.0.0.Final-redhat-1 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.logging.commons-logging-jboss-logging-1.0.0.Final-redhat-1" + }, + "product_reference": "org.jboss.logging.commons-logging-jboss-logging-1.0.0.Final-redhat-1", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.logging.jboss-logging-3.5.0.Final-redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.logging.jboss-logging-3.5.0.Final-redhat-00003" + }, + "product_reference": "org.jboss.logging.jboss-logging-3.5.0.Final-redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.logging.jboss-logging-annotations-2.2.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.logging.jboss-logging-annotations-2.2.1.Final-redhat-00001" + }, + "product_reference": "org.jboss.logging.jboss-logging-annotations-2.2.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.logmanager.jboss-logmanager-embedded-1.0.10.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.logmanager.jboss-logmanager-embedded-1.0.10.redhat-00001" + }, + "product_reference": "org.jboss.logmanager.jboss-logmanager-embedded-1.0.10.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.metadata.jboss-metadata-common-15.1.0.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.metadata.jboss-metadata-common-15.1.0.Final-redhat-00001" + }, + "product_reference": "org.jboss.metadata.jboss-metadata-common-15.1.0.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.metadata.jboss-metadata-web-15.1.0.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.metadata.jboss-metadata-web-15.1.0.Final-redhat-00001" + }, + "product_reference": "org.jboss.metadata.jboss-metadata-web-15.1.0.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.narayana.jta.narayana-jta-5.13.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.narayana.jta.narayana-jta-5.13.1.Final-redhat-00001" + }, + "product_reference": "org.jboss.narayana.jta.narayana-jta-5.13.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.narayana.jts.narayana-jts-integration-5.13.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.narayana.jts.narayana-jts-integration-5.13.1.Final-redhat-00001" + }, + "product_reference": "org.jboss.narayana.jts.narayana-jts-integration-5.13.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.resteasy.resteasy-cdi-4.7.9.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.resteasy.resteasy-cdi-4.7.9.Final-redhat-00001" + }, + "product_reference": "org.jboss.resteasy.resteasy-cdi-4.7.9.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.resteasy.resteasy-client-4.7.9.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.resteasy.resteasy-client-4.7.9.Final-redhat-00001" + }, + "product_reference": "org.jboss.resteasy.resteasy-client-4.7.9.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.resteasy.resteasy-client-api-4.7.9.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.resteasy.resteasy-client-api-4.7.9.Final-redhat-00001" + }, + "product_reference": "org.jboss.resteasy.resteasy-client-api-4.7.9.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.resteasy.resteasy-client-microprofile-4.7.9.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.resteasy.resteasy-client-microprofile-4.7.9.Final-redhat-00001" + }, + "product_reference": "org.jboss.resteasy.resteasy-client-microprofile-4.7.9.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.resteasy.resteasy-client-microprofile-base-4.7.9.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.resteasy.resteasy-client-microprofile-base-4.7.9.Final-redhat-00001" + }, + "product_reference": "org.jboss.resteasy.resteasy-client-microprofile-base-4.7.9.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.resteasy.resteasy-core-4.7.9.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.resteasy.resteasy-core-4.7.9.Final-redhat-00001" + }, + "product_reference": "org.jboss.resteasy.resteasy-core-4.7.9.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.resteasy.resteasy-core-spi-4.7.9.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.resteasy.resteasy-core-spi-4.7.9.Final-redhat-00001" + }, + "product_reference": "org.jboss.resteasy.resteasy-core-spi-4.7.9.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.resteasy.resteasy-jackson2-provider-4.7.9.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.resteasy.resteasy-jackson2-provider-4.7.9.Final-redhat-00001" + }, + "product_reference": "org.jboss.resteasy.resteasy-jackson2-provider-4.7.9.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.resteasy.resteasy-jaxb-provider-4.7.9.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.resteasy.resteasy-jaxb-provider-4.7.9.Final-redhat-00001" + }, + "product_reference": "org.jboss.resteasy.resteasy-jaxb-provider-4.7.9.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.resteasy.resteasy-json-binding-provider-4.7.9.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.resteasy.resteasy-json-binding-provider-4.7.9.Final-redhat-00001" + }, + "product_reference": "org.jboss.resteasy.resteasy-json-binding-provider-4.7.9.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.resteasy.resteasy-json-p-provider-4.7.9.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.resteasy.resteasy-json-p-provider-4.7.9.Final-redhat-00001" + }, + "product_reference": "org.jboss.resteasy.resteasy-json-p-provider-4.7.9.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.resteasy.resteasy-multipart-provider-4.7.9.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.resteasy.resteasy-multipart-provider-4.7.9.Final-redhat-00001" + }, + "product_reference": "org.jboss.resteasy.resteasy-multipart-provider-4.7.9.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-api-3.1.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-api-3.1.3" + }, + "product_reference": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-api-3.1.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-api-maven-3.1.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-api-maven-3.1.3" + }, + "product_reference": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-api-maven-3.1.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-api-maven-archive-3.1.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-api-maven-archive-3.1.3" + }, + "product_reference": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-api-maven-archive-3.1.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-impl-maven-archive-3.1.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-impl-maven-archive-3.1.3" + }, + "product_reference": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-impl-maven-archive-3.1.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-spi-3.1.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-spi-3.1.3" + }, + "product_reference": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-spi-3.1.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-spi-maven-archive-3.1.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-spi-maven-archive-3.1.3" + }, + "product_reference": "org.jboss.shrinkwrap.resolver.shrinkwrap-resolver-spi-maven-archive-3.1.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.shrinkwrap.shrinkwrap-api-1.2.6 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.shrinkwrap.shrinkwrap-api-1.2.6" + }, + "product_reference": "org.jboss.shrinkwrap.shrinkwrap-api-1.2.6", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.shrinkwrap.shrinkwrap-impl-base-1.2.6 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.shrinkwrap.shrinkwrap-impl-base-1.2.6" + }, + "product_reference": "org.jboss.shrinkwrap.shrinkwrap-impl-base-1.2.6", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.shrinkwrap.shrinkwrap-spi-1.2.6 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.shrinkwrap.shrinkwrap-spi-1.2.6" + }, + "product_reference": "org.jboss.shrinkwrap.shrinkwrap-spi-1.2.6", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.slf4j.slf4j-jboss-logmanager-1.2.0.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.slf4j.slf4j-jboss-logmanager-1.2.0.Final-redhat-00001" + }, + "product_reference": "org.jboss.slf4j.slf4j-jboss-logmanager-1.2.0.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.spec.javax.resource.jboss-connector-api_1.7_spec-1.0.0.Final as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.spec.javax.resource.jboss-connector-api_1.7_spec-1.0.0.Final" + }, + "product_reference": "org.jboss.spec.javax.resource.jboss-connector-api_1.7_spec-1.0.0.Final", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.spec.javax.ws.rs.jboss-jaxrs-api_2.1_spec-2.0.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.spec.javax.ws.rs.jboss-jaxrs-api_2.1_spec-2.0.1.Final-redhat-00001" + }, + "product_reference": "org.jboss.spec.javax.ws.rs.jboss-jaxrs-api_2.1_spec-2.0.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.spec.javax.xml.bind.jboss-jaxb-api_2.3_spec-2.0.0.Final-redhat-00004 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.spec.javax.xml.bind.jboss-jaxb-api_2.3_spec-2.0.0.Final-redhat-00004" + }, + "product_reference": "org.jboss.spec.javax.xml.bind.jboss-jaxb-api_2.3_spec-2.0.0.Final-redhat-00004", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jboss.threads.jboss-threads-3.4.3.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jboss.threads.jboss-threads-3.4.3.Final-redhat-00001" + }, + "product_reference": "org.jboss.threads.jboss-threads-3.4.3.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jdom.jdom-1.1.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jdom.jdom-1.1.3" + }, + "product_reference": "org.jdom.jdom-1.1.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jetbrains.annotations-17.0.0 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jetbrains.annotations-17.0.0" + }, + "product_reference": "org.jetbrains.annotations-17.0.0", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.jsoup.jsoup-1.15.3.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.jsoup.jsoup-1.15.3.redhat-00003" + }, + "product_reference": "org.jsoup.jsoup-1.15.3.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.junit.jupiter.junit-jupiter-5.9.1 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.junit.jupiter.junit-jupiter-5.9.1" + }, + "product_reference": "org.junit.jupiter.junit-jupiter-5.9.1", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.junit.jupiter.junit-jupiter-api-5.9.1 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.junit.jupiter.junit-jupiter-api-5.9.1" + }, + "product_reference": "org.junit.jupiter.junit-jupiter-api-5.9.1", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.junit.jupiter.junit-jupiter-engine-5.9.1 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.junit.jupiter.junit-jupiter-engine-5.9.1" + }, + "product_reference": "org.junit.jupiter.junit-jupiter-engine-5.9.1", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.junit.jupiter.junit-jupiter-params-5.9.1 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.junit.jupiter.junit-jupiter-params-5.9.1" + }, + "product_reference": "org.junit.jupiter.junit-jupiter-params-5.9.1", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.junit.platform.junit-platform-commons-1.9.1 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.junit.platform.junit-platform-commons-1.9.1" + }, + "product_reference": "org.junit.platform.junit-platform-commons-1.9.1", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.junit.platform.junit-platform-engine-1.9.1 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.junit.platform.junit-platform-engine-1.9.1" + }, + "product_reference": "org.junit.platform.junit-platform-engine-1.9.1", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.junit.platform.junit-platform-launcher-1.9.1 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.junit.platform.junit-platform-launcher-1.9.1" + }, + "product_reference": "org.junit.platform.junit-platform-launcher-1.9.1", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.keycloak.keycloak-adapter-core-18.0.6.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.keycloak.keycloak-adapter-core-18.0.6.redhat-00001" + }, + "product_reference": "org.keycloak.keycloak-adapter-core-18.0.6.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.keycloak.keycloak-adapter-spi-18.0.6.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.keycloak.keycloak-adapter-spi-18.0.6.redhat-00001" + }, + "product_reference": "org.keycloak.keycloak-adapter-spi-18.0.6.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.keycloak.keycloak-authz-client-18.0.6.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.keycloak.keycloak-authz-client-18.0.6.redhat-00001" + }, + "product_reference": "org.keycloak.keycloak-authz-client-18.0.6.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.keycloak.keycloak-common-18.0.6.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.keycloak.keycloak-common-18.0.6.redhat-00001" + }, + "product_reference": "org.keycloak.keycloak-common-18.0.6.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.keycloak.keycloak-core-18.0.6.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.keycloak.keycloak-core-18.0.6.redhat-00001" + }, + "product_reference": "org.keycloak.keycloak-core-18.0.6.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.latencyutils.LatencyUtils-2.0.3.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.latencyutils.LatencyUtils-2.0.3.redhat-00001" + }, + "product_reference": "org.latencyutils.LatencyUtils-2.0.3.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.locationtech.jts.jts-core-1.17.0 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.locationtech.jts.jts-core-1.17.0" + }, + "product_reference": "org.locationtech.jts.jts-core-1.17.0", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.lz4.lz4-java-1.8.0.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.lz4.lz4-java-1.8.0.redhat-00003" + }, + "product_reference": "org.lz4.lz4-java-1.8.0.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.mariadb.jdbc.mariadb-java-client-3.0.8.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.mariadb.jdbc.mariadb-java-client-3.0.8.redhat-00001" + }, + "product_reference": "org.mariadb.jdbc.mariadb-java-client-3.0.8.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.mongodb.bson-4.7.2 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.mongodb.bson-4.7.2" + }, + "product_reference": "org.mongodb.bson-4.7.2", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.mongodb.bson-record-codec-4.7.2 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.mongodb.bson-record-codec-4.7.2" + }, + "product_reference": "org.mongodb.bson-record-codec-4.7.2", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.mongodb.mongodb-crypt-1.5.2 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.mongodb.mongodb-crypt-1.5.2" + }, + "product_reference": "org.mongodb.mongodb-crypt-1.5.2", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.mongodb.mongodb-driver-core-4.7.2 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.mongodb.mongodb-driver-core-4.7.2" + }, + "product_reference": "org.mongodb.mongodb-driver-core-4.7.2", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.mongodb.mongodb-driver-reactivestreams-4.7.2 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.mongodb.mongodb-driver-reactivestreams-4.7.2" + }, + "product_reference": "org.mongodb.mongodb-driver-reactivestreams-4.7.2", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.mongodb.mongodb-driver-sync-4.7.2 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.mongodb.mongodb-driver-sync-4.7.2" + }, + "product_reference": "org.mongodb.mongodb-driver-sync-4.7.2", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.opentest4j.opentest4j-1.2.0 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.opentest4j.opentest4j-1.2.0" + }, + "product_reference": "org.opentest4j.opentest4j-1.2.0", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.ow2.asm.asm-9.3.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.ow2.asm.asm-9.3.0.redhat-00001" + }, + "product_reference": "org.ow2.asm.asm-9.3.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.ow2.asm.asm-analysis-9.3.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.ow2.asm.asm-analysis-9.3.0.redhat-00001" + }, + "product_reference": "org.ow2.asm.asm-analysis-9.3.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.ow2.asm.asm-commons-9.3.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.ow2.asm.asm-commons-9.3.0.redhat-00001" + }, + "product_reference": "org.ow2.asm.asm-commons-9.3.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.ow2.asm.asm-tree-9.3.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.ow2.asm.asm-tree-9.3.0.redhat-00001" + }, + "product_reference": "org.ow2.asm.asm-tree-9.3.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.ow2.asm.asm-util-9.3.0.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.ow2.asm.asm-util-9.3.0.redhat-00001" + }, + "product_reference": "org.ow2.asm.asm-util-9.3.0.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.postgresql.postgresql-42.5.1.redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.postgresql.postgresql-42.5.1.redhat-00001" + }, + "product_reference": "org.postgresql.postgresql-42.5.1.redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.quartz-scheduler.quartz-2.3.2.redhat-00007 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.quartz-scheduler.quartz-2.3.2.redhat-00007" + }, + "product_reference": "org.quartz-scheduler.quartz-2.3.2.redhat-00007", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.reactivestreams.reactive-streams-1.0.3.redhat-00005 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.reactivestreams.reactive-streams-1.0.3.redhat-00005" + }, + "product_reference": "org.reactivestreams.reactive-streams-1.0.3.redhat-00005", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.rnorth.duct-tape.duct-tape-1.0.8 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.rnorth.duct-tape.duct-tape-1.0.8" + }, + "product_reference": "org.rnorth.duct-tape.duct-tape-1.0.8", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.rocksdb.rocksdbjni-6.29.4.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.rocksdb.rocksdbjni-6.29.4.redhat-00003" + }, + "product_reference": "org.rocksdb.rocksdbjni-6.29.4.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.slf4j.slf4j-api-1.7.36.redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.slf4j.slf4j-api-1.7.36.redhat-00003" + }, + "product_reference": "org.slf4j.slf4j-api-1.7.36.redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.testcontainers.database-commons-1.17.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.testcontainers.database-commons-1.17.3" + }, + "product_reference": "org.testcontainers.database-commons-1.17.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.testcontainers.db2-1.17.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.testcontainers.db2-1.17.3" + }, + "product_reference": "org.testcontainers.db2-1.17.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.testcontainers.elasticsearch-1.17.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.testcontainers.elasticsearch-1.17.3" + }, + "product_reference": "org.testcontainers.elasticsearch-1.17.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.testcontainers.jdbc-1.17.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.testcontainers.jdbc-1.17.3" + }, + "product_reference": "org.testcontainers.jdbc-1.17.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.testcontainers.mariadb-1.17.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.testcontainers.mariadb-1.17.3" + }, + "product_reference": "org.testcontainers.mariadb-1.17.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.testcontainers.mongodb-1.17.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.testcontainers.mongodb-1.17.3" + }, + "product_reference": "org.testcontainers.mongodb-1.17.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.testcontainers.mssqlserver-1.17.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.testcontainers.mssqlserver-1.17.3" + }, + "product_reference": "org.testcontainers.mssqlserver-1.17.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.testcontainers.mysql-1.17.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.testcontainers.mysql-1.17.3" + }, + "product_reference": "org.testcontainers.mysql-1.17.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.testcontainers.oracle-xe-1.17.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.testcontainers.oracle-xe-1.17.3" + }, + "product_reference": "org.testcontainers.oracle-xe-1.17.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.testcontainers.postgresql-1.17.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.testcontainers.postgresql-1.17.3" + }, + "product_reference": "org.testcontainers.postgresql-1.17.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.testcontainers.testcontainers-1.17.3 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.testcontainers.testcontainers-1.17.3" + }, + "product_reference": "org.testcontainers.testcontainers-1.17.3", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.twdata.maven.mojo-executor-2.3.1 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.twdata.maven.mojo-executor-2.3.1" + }, + "product_reference": "org.twdata.maven.mojo-executor-2.3.1", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.common.wildfly-common-1.5.4.Final-format-001-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.common.wildfly-common-1.5.4.Final-format-001-redhat-00001" + }, + "product_reference": "org.wildfly.common.wildfly-common-1.5.4.Final-format-001-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-asn1-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-asn1-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-asn1-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-auth-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-auth-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-auth-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-auth-server-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-auth-server-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-auth-server-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-base-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-base-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-base-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-credential-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-credential-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-credential-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-http-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-http-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-http-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-keystore-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-keystore-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-keystore-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-mechanism-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-mechanism-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-mechanism-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-mechanism-digest-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-mechanism-digest-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-mechanism-digest-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-mechanism-gssapi-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-mechanism-gssapi-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-mechanism-gssapi-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-mechanism-oauth2-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-mechanism-oauth2-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-mechanism-oauth2-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-mechanism-scram-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-mechanism-scram-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-mechanism-scram-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-password-impl-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-password-impl-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-password-impl-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-permission-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-permission-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-permission-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-provider-util-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-provider-util-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-provider-util-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-sasl-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-sasl-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-sasl-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-sasl-digest-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-sasl-digest-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-sasl-digest-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-sasl-external-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-sasl-external-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-sasl-external-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-sasl-gs2-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-sasl-gs2-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-sasl-gs2-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-sasl-gssapi-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-sasl-gssapi-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-sasl-gssapi-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-sasl-oauth2-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-sasl-oauth2-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-sasl-oauth2-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-sasl-plain-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-sasl-plain-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-sasl-plain-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-sasl-scram-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-sasl-scram-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-sasl-scram-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-security-manager-action-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-security-manager-action-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-security-manager-action-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-ssl-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-ssl-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-ssl-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-util-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-util-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-util-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-x500-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-x500-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-x500-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-x500-cert-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-x500-cert-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-x500-cert-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.wildfly.security.wildfly-elytron-x500-cert-util-1.20.1.Final-redhat-00001 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.wildfly.security.wildfly-elytron-x500-cert-util-1.20.1.Final-redhat-00001" + }, + "product_reference": "org.wildfly.security.wildfly-elytron-x500-cert-util-1.20.1.Final-redhat-00001", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.xerial.snappy.snappy-java-1.1.8.4-redhat-00003 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.xerial.snappy.snappy-java-1.1.8.4-redhat-00003" + }, + "product_reference": "org.xerial.snappy.snappy-java-1.1.8.4-redhat-00003", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "org.yaml.snakeyaml-1.33.0.redhat-00002 as a component of Red Hat build of Quarkus 2.13.8.SP3", + "product_id": "Red Hat build of Quarkus 2.13.8.SP3:org.yaml.snakeyaml-1.33.0.redhat-00002" + }, + "product_reference": "org.yaml.snakeyaml-1.33.0.redhat-00002", + "relates_to_product_reference": "Red Hat build of Quarkus 2.13.8.SP3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netty-codec-http2 as a component of A-MQ Clients 2", + "product_id": "a-mq_clients_2:netty-codec-http2" + }, + "product_reference": "netty-codec-http2", + "relates_to_product_reference": "a-mq_clients_2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netty-codec-http2 as a component of Cryostat 2", + "product_id": "cryostat_2:netty-codec-http2" + }, + "product_reference": "netty-codec-http2", + "relates_to_product_reference": "cryostat_2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/fluentd-rhel8 as a component of Logging Subsystem for Red Hat OpenShift", + "product_id": "logging_subsystem_for_red_hat_openshift:openshift-logging/fluentd-rhel8" + }, + "product_reference": "openshift-logging/fluentd-rhel8", + "relates_to_product_reference": "logging_subsystem_for_red_hat_openshift" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/kibana6-rhel8 as a component of Logging Subsystem for Red Hat OpenShift", + "product_id": "logging_subsystem_for_red_hat_openshift:openshift-logging/kibana6-rhel8" + }, + "product_reference": "openshift-logging/kibana6-rhel8", + "relates_to_product_reference": "logging_subsystem_for_red_hat_openshift" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-logging/logging-loki-rhel8 as a component of Logging Subsystem for Red Hat OpenShift", + "product_id": "logging_subsystem_for_red_hat_openshift:openshift-logging/logging-loki-rhel8" + }, + "product_reference": "openshift-logging/logging-loki-rhel8", + "relates_to_product_reference": "logging_subsystem_for_red_hat_openshift" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "lvms4/topolvm-rhel8 as a component of Logical Volume Manager Storage Operator", + "product_id": "logical_volume_manager_storage_operator:lvms4/topolvm-rhel8" + }, + "product_reference": "lvms4/topolvm-rhel8", + "relates_to_product_reference": "logical_volume_manager_storage_operator" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netty-codec-http2 as a component of Migration Toolkit for Applications 6", + "product_id": "migration_toolkit_for_applications_6:netty-codec-http2" + }, + "product_reference": "netty-codec-http2", + "relates_to_product_reference": "migration_toolkit_for_applications_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "helm as a component of OpenShift Developer Tools and Services", + "product_id": "openshift_developer_tools_and_services:helm" + }, + "product_reference": "helm", + "relates_to_product_reference": "openshift_developer_tools_and_services" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ocp-tools-4/jenkins-rhel8 as a component of OpenShift Developer Tools and Services", + "product_id": "openshift_developer_tools_and_services:ocp-tools-4/jenkins-rhel8" + }, + "product_reference": "ocp-tools-4/jenkins-rhel8", + "relates_to_product_reference": "openshift_developer_tools_and_services" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "odo as a component of OpenShift Developer Tools and Services", + "product_id": "openshift_developer_tools_and_services:odo" + }, + "product_reference": "odo", + "relates_to_product_reference": "openshift_developer_tools_and_services" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "knative-eventing as a component of OpenShift Serverless", + "product_id": "openshift_serverless:knative-eventing" + }, + "product_reference": "knative-eventing", + "relates_to_product_reference": "openshift_serverless" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "knative-serving as a component of OpenShift Serverless", + "product_id": "openshift_serverless:knative-serving" + }, + "product_reference": "knative-serving", + "relates_to_product_reference": "openshift_serverless" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-golang-builder-container as a component of OpenShift Service Mesh 2", + "product_id": "openshift_service_mesh_2:openshift-golang-builder-container" + }, + "product_reference": "openshift-golang-builder-container", + "relates_to_product_reference": "openshift_service_mesh_2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "3scale-amp-backend-container as a component of Red Hat 3scale API Management Platform 2", + "product_id": "red_hat_3scale_api_management_platform_2:3scale-amp-backend-container" + }, + "product_reference": "3scale-amp-backend-container", + "relates_to_product_reference": "red_hat_3scale_api_management_platform_2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "3scale-operator-container as a component of Red Hat 3scale API Management Platform 2", + "product_id": "red_hat_3scale_api_management_platform_2:3scale-operator-container" + }, + "product_reference": "3scale-operator-container", + "relates_to_product_reference": "red_hat_3scale_api_management_platform_2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-23/aap-cloud-ui-rhel8 as a component of Red Hat Ansible Automation Platform 2", + "product_id": "red_hat_ansible_automation_platform_2:ansible-automation-platform-23/aap-cloud-ui-rhel8" + }, + "product_reference": "ansible-automation-platform-23/aap-cloud-ui-rhel8", + "relates_to_product_reference": "red_hat_ansible_automation_platform_2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-automation-platform-23/azure-ui-rhel8 as a component of Red Hat Ansible Automation Platform 2", + "product_id": "red_hat_ansible_automation_platform_2:ansible-automation-platform-23/azure-ui-rhel8" + }, + "product_reference": "ansible-automation-platform-23/azure-ui-rhel8", + "relates_to_product_reference": "red_hat_ansible_automation_platform_2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus/quarkus-undertow as a component of Red Hat build of Quarkus", + "product_id": "red_hat_build_of_quarkus:io.quarkus/quarkus-undertow" + }, + "product_reference": "io.quarkus/quarkus-undertow", + "relates_to_product_reference": "red_hat_build_of_quarkus" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ceph as a component of Red Hat Ceph Storage 5", + "product_id": "red_hat_ceph_storage_5:ceph" + }, + "product_reference": "ceph", + "relates_to_product_reference": "red_hat_ceph_storage_5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "envoy-proxy as a component of Red Hat Ceph Storage 5", + "product_id": "red_hat_ceph_storage_5:envoy-proxy" + }, + "product_reference": "envoy-proxy", + "relates_to_product_reference": "red_hat_ceph_storage_5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana as a component of Red Hat Ceph Storage 5", + "product_id": "red_hat_ceph_storage_5:grafana" + }, + "product_reference": "grafana", + "relates_to_product_reference": "red_hat_ceph_storage_5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grpc as a component of Red Hat Ceph Storage 5", + "product_id": "red_hat_ceph_storage_5:grpc" + }, + "product_reference": "grpc", + "relates_to_product_reference": "red_hat_ceph_storage_5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "haproxy as a component of Red Hat Ceph Storage 5", + "product_id": "red_hat_ceph_storage_5:haproxy" + }, + "product_reference": "haproxy", + "relates_to_product_reference": "red_hat_ceph_storage_5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2 as a component of Red Hat Ceph Storage 5", + "product_id": "red_hat_ceph_storage_5:nghttp2" + }, + "product_reference": "nghttp2", + "relates_to_product_reference": "red_hat_ceph_storage_5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhceph/rhceph-5-dashboard-rhel8 as a component of Red Hat Ceph Storage 5", + "product_id": "red_hat_ceph_storage_5:rhceph/rhceph-5-dashboard-rhel8" + }, + "product_reference": "rhceph/rhceph-5-dashboard-rhel8", + "relates_to_product_reference": "red_hat_ceph_storage_5" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ceph as a component of Red Hat Ceph Storage 6", + "product_id": "red_hat_ceph_storage_6:ceph" + }, + "product_reference": "ceph", + "relates_to_product_reference": "red_hat_ceph_storage_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "envoy-proxy as a component of Red Hat Ceph Storage 6", + "product_id": "red_hat_ceph_storage_6:envoy-proxy" + }, + "product_reference": "envoy-proxy", + "relates_to_product_reference": "red_hat_ceph_storage_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana as a component of Red Hat Ceph Storage 6", + "product_id": "red_hat_ceph_storage_6:grafana" + }, + "product_reference": "grafana", + "relates_to_product_reference": "red_hat_ceph_storage_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grpc as a component of Red Hat Ceph Storage 6", + "product_id": "red_hat_ceph_storage_6:grpc" + }, + "product_reference": "grpc", + "relates_to_product_reference": "red_hat_ceph_storage_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "haproxy as a component of Red Hat Ceph Storage 6", + "product_id": "red_hat_ceph_storage_6:haproxy" + }, + "product_reference": "haproxy", + "relates_to_product_reference": "red_hat_ceph_storage_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nghttp2 as a component of Red Hat Ceph Storage 6", + "product_id": "red_hat_ceph_storage_6:nghttp2" + }, + "product_reference": "nghttp2", + "relates_to_product_reference": "red_hat_ceph_storage_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-haproxy-container as a component of Red Hat Ceph Storage 6", + "product_id": "red_hat_ceph_storage_6:openstack-haproxy-container" + }, + "product_reference": "openstack-haproxy-container", + "relates_to_product_reference": "red_hat_ceph_storage_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-ironic-neutron-agent-container as a component of Red Hat Ceph Storage 6", + "product_id": "red_hat_ceph_storage_6:openstack-ironic-neutron-agent-container" + }, + "product_reference": "openstack-ironic-neutron-agent-container", + "relates_to_product_reference": "red_hat_ceph_storage_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-neutron-agent-base-container as a component of Red Hat Ceph Storage 6", + "product_id": "red_hat_ceph_storage_6:openstack-neutron-agent-base-container" + }, + "product_reference": "openstack-neutron-agent-base-container", + "relates_to_product_reference": "red_hat_ceph_storage_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-neutron-base-container as a component of Red Hat Ceph Storage 6", + "product_id": "red_hat_ceph_storage_6:openstack-neutron-base-container" + }, + "product_reference": "openstack-neutron-base-container", + "relates_to_product_reference": "red_hat_ceph_storage_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-neutron-dhcp-agent-container as a component of Red Hat Ceph Storage 6", + "product_id": "red_hat_ceph_storage_6:openstack-neutron-dhcp-agent-container" + }, + "product_reference": "openstack-neutron-dhcp-agent-container", + "relates_to_product_reference": "red_hat_ceph_storage_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-neutron-l3-agent-container as a component of Red Hat Ceph Storage 6", + "product_id": "red_hat_ceph_storage_6:openstack-neutron-l3-agent-container" + }, + "product_reference": "openstack-neutron-l3-agent-container", + "relates_to_product_reference": "red_hat_ceph_storage_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-neutron-metadata-agent-container as a component of Red Hat Ceph Storage 6", + "product_id": "red_hat_ceph_storage_6:openstack-neutron-metadata-agent-container" + }, + "product_reference": "openstack-neutron-metadata-agent-container", + "relates_to_product_reference": "red_hat_ceph_storage_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-neutron-metadata-agent-ovn-container as a component of Red Hat Ceph Storage 6", + "product_id": "red_hat_ceph_storage_6:openstack-neutron-metadata-agent-ovn-container" + }, + "product_reference": "openstack-neutron-metadata-agent-ovn-container", + "relates_to_product_reference": "red_hat_ceph_storage_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-neutron-openvswitch-agent-container as a component of Red Hat Ceph Storage 6", + "product_id": "red_hat_ceph_storage_6:openstack-neutron-openvswitch-agent-container" + }, + "product_reference": "openstack-neutron-openvswitch-agent-container", + "relates_to_product_reference": "red_hat_ceph_storage_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-neutron-server-container as a component of Red Hat Ceph Storage 6", + "product_id": "red_hat_ceph_storage_6:openstack-neutron-server-container" + }, + "product_reference": "openstack-neutron-server-container", + "relates_to_product_reference": "red_hat_ceph_storage_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openstack-neutron-sriov-agent-container as a component of Red Hat Ceph Storage 6", + "product_id": "red_hat_ceph_storage_6:openstack-neutron-sriov-agent-container" + }, + "product_reference": "openstack-neutron-sriov-agent-container", + "relates_to_product_reference": "red_hat_ceph_storage_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhceph/rhceph-haproxy-rhel9 as a component of Red Hat Ceph Storage 6", + "product_id": "red_hat_ceph_storage_6:rhceph/rhceph-haproxy-rhel9" + }, + "product_reference": "rhceph/rhceph-haproxy-rhel9", + "relates_to_product_reference": "red_hat_ceph_storage_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "redhat-certification-cnf as a component of Red Hat Certification for Red Hat Enterprise Linux 8", + "product_id": "red_hat_certification_for_red_hat_enterprise_linux_8:redhat-certification-cnf" + }, + "product_reference": "redhat-certification-cnf", + "relates_to_product_reference": "red_hat_certification_for_red_hat_enterprise_linux_8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "redhat-certification-preflight as a component of Red Hat Certification for Red Hat Enterprise Linux 8", + "product_id": "red_hat_certification_for_red_hat_enterprise_linux_8:redhat-certification-preflight" + }, + "product_reference": "redhat-certification-preflight", + "relates_to_product_reference": "red_hat_certification_for_red_hat_enterprise_linux_8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "redhat-certification-cnf as a component of Red Hat Certification for Red Hat Enterprise Linux 9", + "product_id": "red_hat_certification_for_red_hat_enterprise_linux_9:redhat-certification-cnf" + }, + "product_reference": "redhat-certification-cnf", + "relates_to_product_reference": "red_hat_certification_for_red_hat_enterprise_linux_9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "redhat-certification-preflight as a component of Red Hat Certification for Red Hat Enterprise Linux 9", + "product_id": "red_hat_certification_for_red_hat_enterprise_linux_9:redhat-certification-preflight" + }, + "product_reference": "redhat-certification-preflight", + "relates_to_product_reference": "red_hat_certification_for_red_hat_enterprise_linux_9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netty as a component of Red Hat Decision Manager 7", + "product_id": "red_hat_decision_manager_7:netty" + }, + "product_reference": "netty", + "relates_to_product_reference": "red_hat_decision_manager_7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "undertow as a component of Red Hat Decision Manager 7", + "product_id": "red_hat_decision_manager_7:undertow" + }, + "product_reference": "undertow", + "relates_to_product_reference": "red_hat_decision_manager_7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhdh-hub-container as a component of Red Hat Developer Hub", + "product_id": "red_hat_developer_hub:rhdh-hub-container" + }, + "product_reference": "rhdh-hub-container", + "relates_to_product_reference": "red_hat_developer_hub" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd as a component of Red Hat Enterprise Linux 6", + "product_id": "red_hat_enterprise_linux_6:httpd" + }, + "product_reference": "httpd", + "relates_to_product_reference": "red_hat_enterprise_linux_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tomcat6 as a component of Red Hat Enterprise Linux 6", + "product_id": "red_hat_enterprise_linux_6:tomcat6" + }, + "product_reference": "tomcat6", + "relates_to_product_reference": "red_hat_enterprise_linux_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "haproxy as a component of Red Hat Enterprise Linux 7", + "product_id": "red_hat_enterprise_linux_7:haproxy" + }, + "product_reference": "haproxy", + "relates_to_product_reference": "red_hat_enterprise_linux_7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd as a component of Red Hat Enterprise Linux 7", + "product_id": "red_hat_enterprise_linux_7:httpd" + }, + "product_reference": "httpd", + "relates_to_product_reference": "red_hat_enterprise_linux_7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tomcat as a component of Red Hat Enterprise Linux 7", + "product_id": "red_hat_enterprise_linux_7:tomcat" + }, + "product_reference": "tomcat", + "relates_to_product_reference": "red_hat_enterprise_linux_7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-tools:4.0/buildah as a component of Red Hat Enterprise Linux 8", + "product_id": "red_hat_enterprise_linux_8:container-tools:4.0/buildah" + }, + "product_reference": "container-tools:4.0/buildah", + "relates_to_product_reference": "red_hat_enterprise_linux_8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-tools:4.0/conmon as a component of Red Hat Enterprise Linux 8", + "product_id": "red_hat_enterprise_linux_8:container-tools:4.0/conmon" + }, + "product_reference": "container-tools:4.0/conmon", + "relates_to_product_reference": "red_hat_enterprise_linux_8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-tools:4.0/containernetworking-plugins as a component of Red Hat Enterprise Linux 8", + "product_id": "red_hat_enterprise_linux_8:container-tools:4.0/containernetworking-plugins" + }, + "product_reference": "container-tools:4.0/containernetworking-plugins", + "relates_to_product_reference": "red_hat_enterprise_linux_8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-tools:4.0/podman as a component of Red Hat Enterprise Linux 8", + "product_id": "red_hat_enterprise_linux_8:container-tools:4.0/podman" + }, + "product_reference": "container-tools:4.0/podman", + "relates_to_product_reference": "red_hat_enterprise_linux_8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-tools:4.0/skopeo as a component of Red Hat Enterprise Linux 8", + "product_id": "red_hat_enterprise_linux_8:container-tools:4.0/skopeo" + }, + "product_reference": "container-tools:4.0/skopeo", + "relates_to_product_reference": "red_hat_enterprise_linux_8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-tools:4.0/toolbox as a component of Red Hat Enterprise Linux 8", + "product_id": "red_hat_enterprise_linux_8:container-tools:4.0/toolbox" + }, + "product_reference": "container-tools:4.0/toolbox", + "relates_to_product_reference": "red_hat_enterprise_linux_8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-tools:rhel8/buildah as a component of Red Hat Enterprise Linux 8", + "product_id": "red_hat_enterprise_linux_8:container-tools:rhel8/buildah" + }, + "product_reference": "container-tools:rhel8/buildah", + "relates_to_product_reference": "red_hat_enterprise_linux_8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-tools:rhel8/containernetworking-plugins as a component of Red Hat Enterprise Linux 8", + "product_id": "red_hat_enterprise_linux_8:container-tools:rhel8/containernetworking-plugins" + }, + "product_reference": "container-tools:rhel8/containernetworking-plugins", + "relates_to_product_reference": "red_hat_enterprise_linux_8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-tools:rhel8/podman as a component of Red Hat Enterprise Linux 8", + "product_id": "red_hat_enterprise_linux_8:container-tools:rhel8/podman" + }, + "product_reference": "container-tools:rhel8/podman", + "relates_to_product_reference": "red_hat_enterprise_linux_8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-tools:rhel8/skopeo as a component of Red Hat Enterprise Linux 8", + "product_id": "red_hat_enterprise_linux_8:container-tools:rhel8/skopeo" + }, + "product_reference": "container-tools:rhel8/skopeo", + "relates_to_product_reference": "red_hat_enterprise_linux_8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-tools:rhel8/toolbox as a component of Red Hat Enterprise Linux 8", + "product_id": "red_hat_enterprise_linux_8:container-tools:rhel8/toolbox" + }, + "product_reference": "container-tools:rhel8/toolbox", + "relates_to_product_reference": "red_hat_enterprise_linux_8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "git-lfs as a component of Red Hat Enterprise Linux 8", + "product_id": "red_hat_enterprise_linux_8:git-lfs" + }, + "product_reference": "git-lfs", + "relates_to_product_reference": "red_hat_enterprise_linux_8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-pcp as a component of Red Hat Enterprise Linux 8", + "product_id": "red_hat_enterprise_linux_8:grafana-pcp" + }, + "product_reference": "grafana-pcp", + "relates_to_product_reference": "red_hat_enterprise_linux_8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "haproxy as a component of Red Hat Enterprise Linux 8", + "product_id": "red_hat_enterprise_linux_8:haproxy" + }, + "product_reference": "haproxy", + "relates_to_product_reference": "red_hat_enterprise_linux_8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd:2.4/httpd as a component of Red Hat Enterprise Linux 8", + "product_id": "red_hat_enterprise_linux_8:httpd:2.4/httpd" + }, + "product_reference": "httpd:2.4/httpd", + "relates_to_product_reference": "red_hat_enterprise_linux_8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd:2.4/mod_http2 as a component of Red Hat Enterprise Linux 8", + "product_id": "red_hat_enterprise_linux_8:httpd:2.4/mod_http2" + }, + "product_reference": "httpd:2.4/mod_http2", + "relates_to_product_reference": "red_hat_enterprise_linux_8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "osbuild-composer as a component of Red Hat Enterprise Linux 8", + "product_id": "red_hat_enterprise_linux_8:osbuild-composer" + }, + "product_reference": "osbuild-composer", + "relates_to_product_reference": "red_hat_enterprise_linux_8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "pki-deps:10.6/pki-servlet-engine as a component of Red Hat Enterprise Linux 8", + "product_id": "red_hat_enterprise_linux_8:pki-deps:10.6/pki-servlet-engine" + }, + "product_reference": "pki-deps:10.6/pki-servlet-engine", + "relates_to_product_reference": "red_hat_enterprise_linux_8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "weldr-client as a component of Red Hat Enterprise Linux 8", + "product_id": "red_hat_enterprise_linux_8:weldr-client" + }, + "product_reference": "weldr-client", + "relates_to_product_reference": "red_hat_enterprise_linux_8" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah as a component of Red Hat Enterprise Linux 9", + "product_id": "red_hat_enterprise_linux_9:buildah" + }, + "product_reference": "buildah", + "relates_to_product_reference": "red_hat_enterprise_linux_9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "butane as a component of Red Hat Enterprise Linux 9", + "product_id": "red_hat_enterprise_linux_9:butane" + }, + "product_reference": "butane", + "relates_to_product_reference": "red_hat_enterprise_linux_9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "containernetworking-plugins as a component of Red Hat Enterprise Linux 9", + "product_id": "red_hat_enterprise_linux_9:containernetworking-plugins" + }, + "product_reference": "containernetworking-plugins", + "relates_to_product_reference": "red_hat_enterprise_linux_9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dotnet8.0 as a component of Red Hat Enterprise Linux 9", + "product_id": "red_hat_enterprise_linux_9:dotnet8.0" + }, + "product_reference": "dotnet8.0", + "relates_to_product_reference": "red_hat_enterprise_linux_9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "git-lfs as a component of Red Hat Enterprise Linux 9", + "product_id": "red_hat_enterprise_linux_9:git-lfs" + }, + "product_reference": "git-lfs", + "relates_to_product_reference": "red_hat_enterprise_linux_9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grafana-pcp as a component of Red Hat Enterprise Linux 9", + "product_id": "red_hat_enterprise_linux_9:grafana-pcp" + }, + "product_reference": "grafana-pcp", + "relates_to_product_reference": "red_hat_enterprise_linux_9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "haproxy as a component of Red Hat Enterprise Linux 9", + "product_id": "red_hat_enterprise_linux_9:haproxy" + }, + "product_reference": "haproxy", + "relates_to_product_reference": "red_hat_enterprise_linux_9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "httpd as a component of Red Hat Enterprise Linux 9", + "product_id": "red_hat_enterprise_linux_9:httpd" + }, + "product_reference": "httpd", + "relates_to_product_reference": "red_hat_enterprise_linux_9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ignition as a component of Red Hat Enterprise Linux 9", + "product_id": "red_hat_enterprise_linux_9:ignition" + }, + "product_reference": "ignition", + "relates_to_product_reference": "red_hat_enterprise_linux_9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mod_http2 as a component of Red Hat Enterprise Linux 9", + "product_id": "red_hat_enterprise_linux_9:mod_http2" + }, + "product_reference": "mod_http2", + "relates_to_product_reference": "red_hat_enterprise_linux_9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nginx:1.22/nginx as a component of Red Hat Enterprise Linux 9", + "product_id": "red_hat_enterprise_linux_9:nginx:1.22/nginx" + }, + "product_reference": "nginx:1.22/nginx", + "relates_to_product_reference": "red_hat_enterprise_linux_9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs:18/nodejs as a component of Red Hat Enterprise Linux 9", + "product_id": "red_hat_enterprise_linux_9:nodejs:18/nodejs" + }, + "product_reference": "nodejs:18/nodejs", + "relates_to_product_reference": "red_hat_enterprise_linux_9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs:20/nodejs as a component of Red Hat Enterprise Linux 9", + "product_id": "red_hat_enterprise_linux_9:nodejs:20/nodejs" + }, + "product_reference": "nodejs:20/nodejs", + "relates_to_product_reference": "red_hat_enterprise_linux_9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "osbuild-composer as a component of Red Hat Enterprise Linux 9", + "product_id": "red_hat_enterprise_linux_9:osbuild-composer" + }, + "product_reference": "osbuild-composer", + "relates_to_product_reference": "red_hat_enterprise_linux_9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "pki-servlet-engine as a component of Red Hat Enterprise Linux 9", + "product_id": "red_hat_enterprise_linux_9:pki-servlet-engine" + }, + "product_reference": "pki-servlet-engine", + "relates_to_product_reference": "red_hat_enterprise_linux_9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman as a component of Red Hat Enterprise Linux 9", + "product_id": "red_hat_enterprise_linux_9:podman" + }, + "product_reference": "podman", + "relates_to_product_reference": "red_hat_enterprise_linux_9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo as a component of Red Hat Enterprise Linux 9", + "product_id": "red_hat_enterprise_linux_9:skopeo" + }, + "product_reference": "skopeo", + "relates_to_product_reference": "red_hat_enterprise_linux_9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "weldr-client as a component of Red Hat Enterprise Linux 9", + "product_id": "red_hat_enterprise_linux_9:weldr-client" + }, + "product_reference": "weldr-client", + "relates_to_product_reference": "red_hat_enterprise_linux_9" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "undertow as a component of Red Hat Integration Camel K", + "product_id": "red_hat_integration_camel_k:undertow" + }, + "product_reference": "undertow", + "relates_to_product_reference": "red_hat_integration_camel_k" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netty-codec-http2 as a component of Red Hat Integration Change Data Capture", + "product_id": "red_hat_integration_change_data_capture:netty-codec-http2" + }, + "product_reference": "netty-codec-http2", + "relates_to_product_reference": "red_hat_integration_change_data_capture" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netty-codec-http2 as a component of Red Hat Integration Service Registry", + "product_id": "red_hat_integration_service_registry:netty-codec-http2" + }, + "product_reference": "netty-codec-http2", + "relates_to_product_reference": "red_hat_integration_service_registry" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "undertow as a component of Red Hat Integration Service Registry", + "product_id": "red_hat_integration_service_registry:undertow" + }, + "product_reference": "undertow", + "relates_to_product_reference": "red_hat_integration_service_registry" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mod_http2 as a component of Red Hat JBoss Core Services", + "product_id": "red_hat_jboss_core_services:mod_http2" + }, + "product_reference": "mod_http2", + "relates_to_product_reference": "red_hat_jboss_core_services" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "undertow as a component of Red Hat JBoss Data Grid 7", + "product_id": "red_hat_jboss_data_grid_7:undertow" + }, + "product_reference": "undertow", + "relates_to_product_reference": "red_hat_jboss_data_grid_7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netty-codec-http2 as a component of Red Hat JBoss Enterprise Application Platform Expansion Pack", + "product_id": "red_hat_jboss_enterprise_application_platform_expansion_pack:netty-codec-http2" + }, + "product_reference": "netty-codec-http2", + "relates_to_product_reference": "red_hat_jboss_enterprise_application_platform_expansion_pack" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "undertow as a component of Red Hat JBoss Enterprise Application Platform Expansion Pack", + "product_id": "red_hat_jboss_enterprise_application_platform_expansion_pack:undertow" + }, + "product_reference": "undertow", + "relates_to_product_reference": "red_hat_jboss_enterprise_application_platform_expansion_pack" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netty-codec-http2 as a component of Red Hat JBoss Fuse 6", + "product_id": "red_hat_jboss_fuse_6:netty-codec-http2" + }, + "product_reference": "netty-codec-http2", + "relates_to_product_reference": "red_hat_jboss_fuse_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "undertow as a component of Red Hat JBoss Fuse 6", + "product_id": "red_hat_jboss_fuse_6:undertow" + }, + "product_reference": "undertow", + "relates_to_product_reference": "red_hat_jboss_fuse_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "undertow as a component of Red Hat JBoss Fuse 7", + "product_id": "red_hat_jboss_fuse_7:undertow" + }, + "product_reference": "undertow", + "relates_to_product_reference": "red_hat_jboss_fuse_7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netty-codec-http2 as a component of Red Hat JBoss Fuse Service Works 6", + "product_id": "red_hat_jboss_fuse_service_works_6:netty-codec-http2" + }, + "product_reference": "netty-codec-http2", + "relates_to_product_reference": "red_hat_jboss_fuse_service_works_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "haproxy as a component of Red Hat OpenShift Container Platform 3.11", + "product_id": "red_hat_openshift_container_platform_3.11:haproxy" + }, + "product_reference": "haproxy", + "relates_to_product_reference": "red_hat_openshift_container_platform_3.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jenkins as a component of Red Hat OpenShift Container Platform 3.11", + "product_id": "red_hat_openshift_container_platform_3.11:jenkins" + }, + "product_reference": "jenkins", + "relates_to_product_reference": "red_hat_openshift_container_platform_3.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "buildah as a component of Red Hat OpenShift Container Platform 4", + "product_id": "red_hat_openshift_container_platform_4:buildah" + }, + "product_reference": "buildah", + "relates_to_product_reference": "red_hat_openshift_container_platform_4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "conmon as a component of Red Hat OpenShift Container Platform 4", + "product_id": "red_hat_openshift_container_platform_4:conmon" + }, + "product_reference": "conmon", + "relates_to_product_reference": "red_hat_openshift_container_platform_4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cri-tools as a component of Red Hat OpenShift Container Platform 4", + "product_id": "red_hat_openshift_container_platform_4:cri-tools" + }, + "product_reference": "cri-tools", + "relates_to_product_reference": "red_hat_openshift_container_platform_4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-github-prometheus-promu as a component of Red Hat OpenShift Container Platform 4", + "product_id": "red_hat_openshift_container_platform_4:golang-github-prometheus-promu" + }, + "product_reference": "golang-github-prometheus-promu", + "relates_to_product_reference": "red_hat_openshift_container_platform_4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "grpc as a component of Red Hat OpenShift Container Platform 4", + "product_id": "red_hat_openshift_container_platform_4:grpc" + }, + "product_reference": "grpc", + "relates_to_product_reference": "red_hat_openshift_container_platform_4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "haproxy as a component of Red Hat OpenShift Container Platform 4", + "product_id": "red_hat_openshift_container_platform_4:haproxy" + }, + "product_reference": "haproxy", + "relates_to_product_reference": "red_hat_openshift_container_platform_4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ignition as a component of Red Hat OpenShift Container Platform 4", + "product_id": "red_hat_openshift_container_platform_4:ignition" + }, + "product_reference": "ignition", + "relates_to_product_reference": "red_hat_openshift_container_platform_4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "jenkins as a component of Red Hat OpenShift Container Platform 4", + "product_id": "red_hat_openshift_container_platform_4:jenkins" + }, + "product_reference": "jenkins", + "relates_to_product_reference": "red_hat_openshift_container_platform_4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-golang-builder-container as a component of Red Hat OpenShift Container Platform 4", + "product_id": "red_hat_openshift_container_platform_4:openshift-golang-builder-container" + }, + "product_reference": "openshift-golang-builder-container", + "relates_to_product_reference": "red_hat_openshift_container_platform_4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "podman as a component of Red Hat OpenShift Container Platform 4", + "product_id": "red_hat_openshift_container_platform_4:podman" + }, + "product_reference": "podman", + "relates_to_product_reference": "red_hat_openshift_container_platform_4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "skopeo as a component of Red Hat OpenShift Container Platform 4", + "product_id": "red_hat_openshift_container_platform_4:skopeo" + }, + "product_reference": "skopeo", + "relates_to_product_reference": "red_hat_openshift_container_platform_4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift4/assisted-installer-rhel8 as a component of Red Hat OpenShift Container Platform Assisted Installer", + "product_id": "red_hat_openshift_container_platform_assisted_installer:openshift4/assisted-installer-rhel8" + }, + "product_reference": "openshift4/assisted-installer-rhel8", + "relates_to_product_reference": "red_hat_openshift_container_platform_assisted_installer" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "nodejs as a component of Red Hat Openshift Data Foundation 4", + "product_id": "red_hat_openshift_data_foundation_4:nodejs" + }, + "product_reference": "nodejs", + "relates_to_product_reference": "red_hat_openshift_data_foundation_4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhods/odh-mm-rest-proxy-rhel8 as a component of Red Hat OpenShift Data Science (RHODS)", + "product_id": "red_hat_openshift_data_science_(rhods):rhods/odh-mm-rest-proxy-rhel8" + }, + "product_reference": "rhods/odh-mm-rest-proxy-rhel8", + "relates_to_product_reference": "red_hat_openshift_data_science_(rhods)" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "devspaces/pluginregistry-rhel8 as a component of Red Hat OpenShift Dev Spaces", + "product_id": "red_hat_openshift_dev_spaces:devspaces/pluginregistry-rhel8" + }, + "product_reference": "devspaces/pluginregistry-rhel8", + "relates_to_product_reference": "red_hat_openshift_dev_spaces" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "devspaces/udi-rhel8 as a component of Red Hat OpenShift Dev Spaces", + "product_id": "red_hat_openshift_dev_spaces:devspaces/udi-rhel8" + }, + "product_reference": "devspaces/udi-rhel8", + "relates_to_product_reference": "red_hat_openshift_dev_spaces" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rosa as a component of Red Hat OpenShift on AWS", + "product_id": "red_hat_openshift_on_aws:rosa" + }, + "product_reference": "rosa", + "relates_to_product_reference": "red_hat_openshift_on_aws" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "haproxy as a component of Red Hat Openshift sandboxed containers", + "product_id": "red_hat_openshift_sandboxed_containers:haproxy" + }, + "product_reference": "haproxy", + "relates_to_product_reference": "red_hat_openshift_sandboxed_containers" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-sandboxed-containers-tech-preview/osc-rhel8-operator as a component of Red Hat Openshift sandboxed containers", + "product_id": "red_hat_openshift_sandboxed_containers:openshift-sandboxed-containers-tech-preview/osc-rhel8-operator" + }, + "product_reference": "openshift-sandboxed-containers-tech-preview/osc-rhel8-operator", + "relates_to_product_reference": "red_hat_openshift_sandboxed_containers" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "container-native-virtualization/kubevirt-console-plugin-rhel9 as a component of Red Hat OpenShift Virtualization 4", + "product_id": "red_hat_openshift_virtualization_4:container-native-virtualization/kubevirt-console-plugin-rhel9" + }, + "product_reference": "container-native-virtualization/kubevirt-console-plugin-rhel9", + "relates_to_product_reference": "red_hat_openshift_virtualization_4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "kubevirt as a component of Red Hat OpenShift Virtualization 4", + "product_id": "red_hat_openshift_virtualization_4:kubevirt" + }, + "product_reference": "kubevirt", + "relates_to_product_reference": "red_hat_openshift_virtualization_4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "openshift-golang-builder-container as a component of Red Hat OpenShift Virtualization 4", + "product_id": "red_hat_openshift_virtualization_4:openshift-golang-builder-container" + }, + "product_reference": "openshift-golang-builder-container", + "relates_to_product_reference": "red_hat_openshift_virtualization_4" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-github-infrawatch-apputils as a component of Red Hat OpenStack Platform 16.1", + "product_id": "red_hat_openstack_platform_16.1:golang-github-infrawatch-apputils" + }, + "product_reference": "golang-github-infrawatch-apputils", + "relates_to_product_reference": "red_hat_openstack_platform_16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "haproxy as a component of Red Hat OpenStack Platform 16.1", + "product_id": "red_hat_openstack_platform_16.1:haproxy" + }, + "product_reference": "haproxy", + "relates_to_product_reference": "red_hat_openstack_platform_16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/openstack-haproxy as a component of Red Hat OpenStack Platform 16.1", + "product_id": "red_hat_openstack_platform_16.1:rhosp-rhel8/openstack-haproxy" + }, + "product_reference": "rhosp-rhel8/openstack-haproxy", + "relates_to_product_reference": "red_hat_openstack_platform_16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/openstack-ironic-neutron-agent as a component of Red Hat OpenStack Platform 16.1", + "product_id": "red_hat_openstack_platform_16.1:rhosp-rhel8/openstack-ironic-neutron-agent" + }, + "product_reference": "rhosp-rhel8/openstack-ironic-neutron-agent", + "relates_to_product_reference": "red_hat_openstack_platform_16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/openstack-neutron-base as a component of Red Hat OpenStack Platform 16.1", + "product_id": "red_hat_openstack_platform_16.1:rhosp-rhel8/openstack-neutron-base" + }, + "product_reference": "rhosp-rhel8/openstack-neutron-base", + "relates_to_product_reference": "red_hat_openstack_platform_16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/openstack-neutron-dhcp-agent as a component of Red Hat OpenStack Platform 16.1", + "product_id": "red_hat_openstack_platform_16.1:rhosp-rhel8/openstack-neutron-dhcp-agent" + }, + "product_reference": "rhosp-rhel8/openstack-neutron-dhcp-agent", + "relates_to_product_reference": "red_hat_openstack_platform_16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/openstack-neutron-l3-agent as a component of Red Hat OpenStack Platform 16.1", + "product_id": "red_hat_openstack_platform_16.1:rhosp-rhel8/openstack-neutron-l3-agent" + }, + "product_reference": "rhosp-rhel8/openstack-neutron-l3-agent", + "relates_to_product_reference": "red_hat_openstack_platform_16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/openstack-neutron-metadata-agent as a component of Red Hat OpenStack Platform 16.1", + "product_id": "red_hat_openstack_platform_16.1:rhosp-rhel8/openstack-neutron-metadata-agent" + }, + "product_reference": "rhosp-rhel8/openstack-neutron-metadata-agent", + "relates_to_product_reference": "red_hat_openstack_platform_16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/openstack-neutron-metadata-agent-ovn as a component of Red Hat OpenStack Platform 16.1", + "product_id": "red_hat_openstack_platform_16.1:rhosp-rhel8/openstack-neutron-metadata-agent-ovn" + }, + "product_reference": "rhosp-rhel8/openstack-neutron-metadata-agent-ovn", + "relates_to_product_reference": "red_hat_openstack_platform_16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/openstack-neutron-openvswitch-agent as a component of Red Hat OpenStack Platform 16.1", + "product_id": "red_hat_openstack_platform_16.1:rhosp-rhel8/openstack-neutron-openvswitch-agent" + }, + "product_reference": "rhosp-rhel8/openstack-neutron-openvswitch-agent", + "relates_to_product_reference": "red_hat_openstack_platform_16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/openstack-neutron-server as a component of Red Hat OpenStack Platform 16.1", + "product_id": "red_hat_openstack_platform_16.1:rhosp-rhel8/openstack-neutron-server" + }, + "product_reference": "rhosp-rhel8/openstack-neutron-server", + "relates_to_product_reference": "red_hat_openstack_platform_16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/openstack-neutron-server-ovn as a component of Red Hat OpenStack Platform 16.1", + "product_id": "red_hat_openstack_platform_16.1:rhosp-rhel8/openstack-neutron-server-ovn" + }, + "product_reference": "rhosp-rhel8/openstack-neutron-server-ovn", + "relates_to_product_reference": "red_hat_openstack_platform_16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/openstack-neutron-sriov-agent as a component of Red Hat OpenStack Platform 16.1", + "product_id": "red_hat_openstack_platform_16.1:rhosp-rhel8/openstack-neutron-sriov-agent" + }, + "product_reference": "rhosp-rhel8/openstack-neutron-sriov-agent", + "relates_to_product_reference": "red_hat_openstack_platform_16.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-github-infrawatch-apputils as a component of Red Hat OpenStack Platform 16.2", + "product_id": "red_hat_openstack_platform_16.2:golang-github-infrawatch-apputils" + }, + "product_reference": "golang-github-infrawatch-apputils", + "relates_to_product_reference": "red_hat_openstack_platform_16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-octavia-tests-tempest as a component of Red Hat OpenStack Platform 16.2", + "product_id": "red_hat_openstack_platform_16.2:python3-octavia-tests-tempest" + }, + "product_reference": "python3-octavia-tests-tempest", + "relates_to_product_reference": "red_hat_openstack_platform_16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/openstack-haproxy as a component of Red Hat OpenStack Platform 16.2", + "product_id": "red_hat_openstack_platform_16.2:rhosp-rhel8/openstack-haproxy" + }, + "product_reference": "rhosp-rhel8/openstack-haproxy", + "relates_to_product_reference": "red_hat_openstack_platform_16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/openstack-ironic-neutron-agent as a component of Red Hat OpenStack Platform 16.2", + "product_id": "red_hat_openstack_platform_16.2:rhosp-rhel8/openstack-ironic-neutron-agent" + }, + "product_reference": "rhosp-rhel8/openstack-ironic-neutron-agent", + "relates_to_product_reference": "red_hat_openstack_platform_16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/openstack-neutron-agent-base as a component of Red Hat OpenStack Platform 16.2", + "product_id": "red_hat_openstack_platform_16.2:rhosp-rhel8/openstack-neutron-agent-base" + }, + "product_reference": "rhosp-rhel8/openstack-neutron-agent-base", + "relates_to_product_reference": "red_hat_openstack_platform_16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/openstack-neutron-base as a component of Red Hat OpenStack Platform 16.2", + "product_id": "red_hat_openstack_platform_16.2:rhosp-rhel8/openstack-neutron-base" + }, + "product_reference": "rhosp-rhel8/openstack-neutron-base", + "relates_to_product_reference": "red_hat_openstack_platform_16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/openstack-neutron-dhcp-agent as a component of Red Hat OpenStack Platform 16.2", + "product_id": "red_hat_openstack_platform_16.2:rhosp-rhel8/openstack-neutron-dhcp-agent" + }, + "product_reference": "rhosp-rhel8/openstack-neutron-dhcp-agent", + "relates_to_product_reference": "red_hat_openstack_platform_16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/openstack-neutron-l3-agent as a component of Red Hat OpenStack Platform 16.2", + "product_id": "red_hat_openstack_platform_16.2:rhosp-rhel8/openstack-neutron-l3-agent" + }, + "product_reference": "rhosp-rhel8/openstack-neutron-l3-agent", + "relates_to_product_reference": "red_hat_openstack_platform_16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/openstack-neutron-metadata-agent as a component of Red Hat OpenStack Platform 16.2", + "product_id": "red_hat_openstack_platform_16.2:rhosp-rhel8/openstack-neutron-metadata-agent" + }, + "product_reference": "rhosp-rhel8/openstack-neutron-metadata-agent", + "relates_to_product_reference": "red_hat_openstack_platform_16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/openstack-neutron-metadata-agent-ovn as a component of Red Hat OpenStack Platform 16.2", + "product_id": "red_hat_openstack_platform_16.2:rhosp-rhel8/openstack-neutron-metadata-agent-ovn" + }, + "product_reference": "rhosp-rhel8/openstack-neutron-metadata-agent-ovn", + "relates_to_product_reference": "red_hat_openstack_platform_16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/openstack-neutron-openvswitch-agent as a component of Red Hat OpenStack Platform 16.2", + "product_id": "red_hat_openstack_platform_16.2:rhosp-rhel8/openstack-neutron-openvswitch-agent" + }, + "product_reference": "rhosp-rhel8/openstack-neutron-openvswitch-agent", + "relates_to_product_reference": "red_hat_openstack_platform_16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/openstack-neutron-server as a component of Red Hat OpenStack Platform 16.2", + "product_id": "red_hat_openstack_platform_16.2:rhosp-rhel8/openstack-neutron-server" + }, + "product_reference": "rhosp-rhel8/openstack-neutron-server", + "relates_to_product_reference": "red_hat_openstack_platform_16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/openstack-neutron-server-ovn as a component of Red Hat OpenStack Platform 16.2", + "product_id": "red_hat_openstack_platform_16.2:rhosp-rhel8/openstack-neutron-server-ovn" + }, + "product_reference": "rhosp-rhel8/openstack-neutron-server-ovn", + "relates_to_product_reference": "red_hat_openstack_platform_16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel8/openstack-neutron-sriov-agent as a component of Red Hat OpenStack Platform 16.2", + "product_id": "red_hat_openstack_platform_16.2:rhosp-rhel8/openstack-neutron-sriov-agent" + }, + "product_reference": "rhosp-rhel8/openstack-neutron-sriov-agent", + "relates_to_product_reference": "red_hat_openstack_platform_16.2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang-github-infrawatch-apputils as a component of Red Hat OpenStack Platform 17.1", + "product_id": "red_hat_openstack_platform_17.1:golang-github-infrawatch-apputils" + }, + "product_reference": "golang-github-infrawatch-apputils", + "relates_to_product_reference": "red_hat_openstack_platform_17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "haproxy as a component of Red Hat OpenStack Platform 17.1", + "product_id": "red_hat_openstack_platform_17.1:haproxy" + }, + "product_reference": "haproxy", + "relates_to_product_reference": "red_hat_openstack_platform_17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-octavia-tests-tempest as a component of Red Hat OpenStack Platform 17.1", + "product_id": "red_hat_openstack_platform_17.1:python3-octavia-tests-tempest" + }, + "product_reference": "python3-octavia-tests-tempest", + "relates_to_product_reference": "red_hat_openstack_platform_17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhceph-haproxy-container as a component of Red Hat OpenStack Platform 17.1", + "product_id": "red_hat_openstack_platform_17.1:rhceph-haproxy-container" + }, + "product_reference": "rhceph-haproxy-container", + "relates_to_product_reference": "red_hat_openstack_platform_17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel9/openstack-haproxy as a component of Red Hat OpenStack Platform 17.1", + "product_id": "red_hat_openstack_platform_17.1:rhosp-rhel9/openstack-haproxy" + }, + "product_reference": "rhosp-rhel9/openstack-haproxy", + "relates_to_product_reference": "red_hat_openstack_platform_17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel9/openstack-ironic-neutron-agent as a component of Red Hat OpenStack Platform 17.1", + "product_id": "red_hat_openstack_platform_17.1:rhosp-rhel9/openstack-ironic-neutron-agent" + }, + "product_reference": "rhosp-rhel9/openstack-ironic-neutron-agent", + "relates_to_product_reference": "red_hat_openstack_platform_17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel9/openstack-neutron-agent-base as a component of Red Hat OpenStack Platform 17.1", + "product_id": "red_hat_openstack_platform_17.1:rhosp-rhel9/openstack-neutron-agent-base" + }, + "product_reference": "rhosp-rhel9/openstack-neutron-agent-base", + "relates_to_product_reference": "red_hat_openstack_platform_17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel9/openstack-neutron-base as a component of Red Hat OpenStack Platform 17.1", + "product_id": "red_hat_openstack_platform_17.1:rhosp-rhel9/openstack-neutron-base" + }, + "product_reference": "rhosp-rhel9/openstack-neutron-base", + "relates_to_product_reference": "red_hat_openstack_platform_17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel9/openstack-neutron-dhcp-agent as a component of Red Hat OpenStack Platform 17.1", + "product_id": "red_hat_openstack_platform_17.1:rhosp-rhel9/openstack-neutron-dhcp-agent" + }, + "product_reference": "rhosp-rhel9/openstack-neutron-dhcp-agent", + "relates_to_product_reference": "red_hat_openstack_platform_17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel9/openstack-neutron-l3-agent as a component of Red Hat OpenStack Platform 17.1", + "product_id": "red_hat_openstack_platform_17.1:rhosp-rhel9/openstack-neutron-l3-agent" + }, + "product_reference": "rhosp-rhel9/openstack-neutron-l3-agent", + "relates_to_product_reference": "red_hat_openstack_platform_17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel9/openstack-neutron-metadata-agent as a component of Red Hat OpenStack Platform 17.1", + "product_id": "red_hat_openstack_platform_17.1:rhosp-rhel9/openstack-neutron-metadata-agent" + }, + "product_reference": "rhosp-rhel9/openstack-neutron-metadata-agent", + "relates_to_product_reference": "red_hat_openstack_platform_17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel9/openstack-neutron-metadata-agent-ovn as a component of Red Hat OpenStack Platform 17.1", + "product_id": "red_hat_openstack_platform_17.1:rhosp-rhel9/openstack-neutron-metadata-agent-ovn" + }, + "product_reference": "rhosp-rhel9/openstack-neutron-metadata-agent-ovn", + "relates_to_product_reference": "red_hat_openstack_platform_17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel9/openstack-neutron-openvswitch-agent as a component of Red Hat OpenStack Platform 17.1", + "product_id": "red_hat_openstack_platform_17.1:rhosp-rhel9/openstack-neutron-openvswitch-agent" + }, + "product_reference": "rhosp-rhel9/openstack-neutron-openvswitch-agent", + "relates_to_product_reference": "red_hat_openstack_platform_17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel9/openstack-neutron-server as a component of Red Hat OpenStack Platform 17.1", + "product_id": "red_hat_openstack_platform_17.1:rhosp-rhel9/openstack-neutron-server" + }, + "product_reference": "rhosp-rhel9/openstack-neutron-server", + "relates_to_product_reference": "red_hat_openstack_platform_17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rhosp-rhel9/openstack-neutron-sriov-agent as a component of Red Hat OpenStack Platform 17.1", + "product_id": "red_hat_openstack_platform_17.1:rhosp-rhel9/openstack-neutron-sriov-agent" + }, + "product_reference": "rhosp-rhel9/openstack-neutron-sriov-agent", + "relates_to_product_reference": "red_hat_openstack_platform_17.1" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netty-codec-http2 as a component of Red Hat Process Automation 7", + "product_id": "red_hat_process_automation_7:netty-codec-http2" + }, + "product_reference": "netty-codec-http2", + "relates_to_product_reference": "red_hat_process_automation_7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "undertow as a component of Red Hat Process Automation 7", + "product_id": "red_hat_process_automation_7:undertow" + }, + "product_reference": "undertow", + "relates_to_product_reference": "red_hat_process_automation_7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "quay/clair-rhel8 as a component of Red Hat Quay 3", + "product_id": "red_hat_quay_3:quay/clair-rhel8" + }, + "product_reference": "quay/clair-rhel8", + "relates_to_product_reference": "red_hat_quay_3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "quay/quay-rhel8 as a component of Red Hat Quay 3", + "product_id": "red_hat_quay_3:quay/quay-rhel8" + }, + "product_reference": "quay/quay-rhel8", + "relates_to_product_reference": "red_hat_quay_3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite_client_6/foreman_ygg_worker as a component of Red Hat Satellite 6", + "product_id": "red_hat_satellite_6:satellite_client_6/foreman_ygg_worker" + }, + "product_reference": "satellite_client_6/foreman_ygg_worker", + "relates_to_product_reference": "red_hat_satellite_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite_client_6/yggdrasil as a component of Red Hat Satellite 6", + "product_id": "red_hat_satellite_6:satellite_client_6/yggdrasil" + }, + "product_reference": "satellite_client_6/yggdrasil", + "relates_to_product_reference": "red_hat_satellite_6" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "netty-codec-http2 as a component of Red Hat Single Sign-On 7", + "product_id": "red_hat_single_sign-on_7:netty-codec-http2" + }, + "product_reference": "netty-codec-http2", + "relates_to_product_reference": "red_hat_single_sign-on_7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "undertow as a component of Red Hat Single Sign-On 7", + "product_id": "red_hat_single_sign-on_7:undertow" + }, + "product_reference": "undertow", + "relates_to_product_reference": "red_hat_single_sign-on_7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rh-nginx118-nginx as a component of Red Hat Software Collections", + "product_id": "red_hat_software_collections:rh-nginx118-nginx" + }, + "product_reference": "rh-nginx118-nginx", + "relates_to_product_reference": "red_hat_software_collections" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "go-toolset-7-golang as a component of Red Hat Storage 3", + "product_id": "red_hat_storage_3:go-toolset-7-golang" + }, + "product_reference": "go-toolset-7-golang", + "relates_to_product_reference": "red_hat_storage_3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "golang as a component of Red Hat Storage 3", + "product_id": "red_hat_storage_3:golang" + }, + "product_reference": "golang", + "relates_to_product_reference": "red_hat_storage_3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "heketi as a component of Red Hat Storage 3", + "product_id": "red_hat_storage_3:heketi" + }, + "product_reference": "heketi", + "relates_to_product_reference": "red_hat_storage_3" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "web-terminal/web-terminal-rhel8-operator as a component of Red Hat Web Terminal", + "product_id": "red_hat_web_terminal:web-terminal/web-terminal-rhel8-operator" + }, + "product_reference": "web-terminal/web-terminal-rhel8-operator", + "relates_to_product_reference": "red_hat_web_terminal" + } + ] + }, + "vulnerabilities": [ + { + "cve": "CVE-2023-44487", + "cwe": { + "id": "CWE-400", + "name": "Uncontrolled Resource Consumption" + }, + "discovery_date": "2023-10-09T00:00:00+00:00", + "flags": [ + { + "label": "vulnerable_code_not_present", + "product_ids": [] + } + ], + "ids": [ + { + "system_name": "Red Hat Bugzilla ID", + "text": "2242803" + } + ], + "notes": [ + { + "category": "description", + "text": "A flaw was found in handling multiplexed streams in the HTTP/2 protocol. A client can repeatedly make a request for a new multiplex stream and immediately send an RST_STREAM frame to cancel it. This creates extra work for the server setting up and tearing down the streams while not hitting any server-side limit for the maximum number of active streams per connection, resulting in a denial of service due to server resource consumption. Red Hat has rated the severity of this flaw as 'Important' as the US Cybersecurity and Infrastructure Security Agency (CISA) declared this vulnerability an active exploit.\r\n\r\nCVE-2023-39325 was assigned for the `Rapid Reset Attack` in the Go language packages.", + "title": "Vulnerability description" + }, + { + "category": "summary", + "text": "HTTP/2: Multiple HTTP/2 enabled web servers are vulnerable to a DDoS attack (Rapid Reset Attack)", + "title": "Vulnerability summary" + }, + { + "category": "other", + "text": "NGINX has been marked as Moderate Impact because, for performance and resource consumption reasons, NGINX limits the number of concurrent streams to a default of 128. In addition, to optimally balance network and server performance, NGINX allows the client to persist HTTP connections for up to 1000 requests by default using an HTTP keepalive.\n\nThe majority of RHEL utilities are not long-running applications; instead, they are command-line tools. These tools utilize Golang package as build-time dependency, which is why they are classified as having a \"Moderate\" level of impact.", + "title": "Statement" + }, + { + "category": "general", + "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product's status, and are included for informational purposes to better understand the severity of this vulnerability.", + "title": "CVSS score applicability" + } + ], + "product_status": { + "fixed": [ + "8Base-multicluster-engine-2.3:multicluster-engine/work-rhel8@sha256:bceda760fbf7fef7c3d0a5544a1e81756ebe071094032b491bef3c913af70da5_ppc64le", + "EAP 7.4 async for CVE-2023-44487 (Rapid Reset)", + "EAP-XP 4.0.0 on EAP 7.4.13", + "JBCS httpd 2.4.57 SP1", + "Migration Toolkit for Runtimes 1 on RHEL 8", + "RHBOP 8.38.0 SP2", + "RHINT Camel-K-1.10.4", + "RHINT Camel-Springboot 3.20.3", + "RHINT Camel-Springboot 4.0.1", + "Red Hat AMQ Broker 7", + "Red Hat AMQ Streams 2.2.2", + "Red Hat AMQ Streams 2.5.1", + "Red Hat Data Grid 7.3.11", + "Red Hat Data Grid 8.4.5", + "Red Hat Fuse 7.12.1", + "Red Hat Integration Camel Quarkus", + "Red Hat JBoss Web Server 5", + "Red Hat build of Quarkus 2.13.8.SP3:io.netty.netty-codec-http2-4.1.86.Final-redhat-00010", + "Spring Boot 2.7.17" + ], + "known_affected": [], + "known_not_affected": [] + }, + "references": [ + { + "category": "self", + "summary": "Canonical URL", + "url": "https://access.redhat.com/security/cve/CVE-2023-44487" + }, + { + "category": "external", + "summary": "RHBZ#2242803", + "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2242803" + }, + { + "category": "external", + "summary": "https://www.cve.org/CVERecord?id=CVE-2023-44487", + "url": "https://www.cve.org/CVERecord?id=CVE-2023-44487" + }, + { + "category": "external", + "summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-44487", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-44487" + }, + { + "category": "external", + "summary": "https://github.com/dotnet/announcements/issues/277", + "url": "https://github.com/dotnet/announcements/issues/277" + }, + { + "category": "external", + "summary": "https://pkg.go.dev/vuln/GO-2023-2102", + "url": "https://pkg.go.dev/vuln/GO-2023-2102" + }, + { + "category": "external", + "summary": "https://www.cisa.gov/news-events/alerts/2023/10/10/http2-rapid-reset-vulnerability-cve-2023-44487", + "url": "https://www.cisa.gov/news-events/alerts/2023/10/10/http2-rapid-reset-vulnerability-cve-2023-44487" + }, + { + "category": "external", + "summary": "https://www.nginx.com/blog/http-2-rapid-reset-attack-impacting-f5-nginx-products/", + "url": "https://www.nginx.com/blog/http-2-rapid-reset-attack-impacting-f5-nginx-products/" + } + ], + "release_date": "2023-10-10T00:00:00+00:00", + "remediations": [], + "title": "HTTP/2: Multiple HTTP/2 enabled web servers are vulnerable to a DDoS attack (Rapid Reset Attack)" + } + ] +} diff --git a/rhel/vex/testdata/example_vex.jsonl b/rhel/vex/testdata/example_vex.jsonl new file mode 100644 index 000000000..d01aa749b --- /dev/null +++ b/rhel/vex/testdata/example_vex.jsonl @@ -0,0 +1,6 @@ +{"document":{"aggregate_severity":{"namespace":"https://access.redhat.com/security/updates/classification/","text":"moderate"},"category":"csaf_vex","csaf_version":"2.0","distribution":{"text":"Copyright © Red Hat, Inc. All rights reserved.","tlp":{"label":"WHITE","url":"https://www.first.org/tlp/"}},"lang":"en","notes":[{"category":"legal_disclaimer","text":"This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.","title":"Terms of Use"}],"publisher":{"category":"vendor","contact_details":"https://access.redhat.com/security/team/contact/","issuing_authority":"Red Hat Product Security is responsible for vulnerability handling across all Red Hat offerings.","name":"Red Hat Product Security","namespace":"https://www.redhat.com"},"references":[{"category":"self","summary":"Canonical URL","url":"https://access.redhat.com/security/data/csaf/beta/vex/2023/cve-2023-42670.json"}],"title":"AD DC Busy RPC multiple listener DoS","tracking":{"current_release_date":"2023-10-11T10:46:15+00:00","generator":{"date":"2023-10-12T17:19:26+00:00","engine":{"name":"Red Hat SDEngine","version":"3.23.0"}},"id":"CVE-2023-42670","initial_release_date":"2023-10-10T00:00:00+00:00","revision_history":[{"date":"2023-10-10T00:00:00+00:00","number":"1","summary":"Initial version"},{"date":"2023-10-11T11:12:42.999543+00:00","number":"2","summary":"Current version"}],"status":"final","version":"1"}},"product_tree":{"branches":[{"branches":[{"category":"product_name","name":"Red Hat Enterprise Linux 6","product":{"name":"Red Hat Enterprise Linux 6","product_id":"red_hat_enterprise_linux_6","product_identification_helper":{"cpe":"cpe:/o:redhat:enterprise_linux:6"}}},{"category":"product_name","name":"Red Hat Enterprise Linux 7","product":{"name":"Red Hat Enterprise Linux 7","product_id":"red_hat_enterprise_linux_7","product_identification_helper":{"cpe":"cpe:/o:redhat:enterprise_linux:7"}}},{"category":"product_name","name":"Red Hat Enterprise Linux 8","product":{"name":"Red Hat Enterprise Linux 8","product_id":"red_hat_enterprise_linux_8","product_identification_helper":{"cpe":"cpe:/o:redhat:enterprise_linux:8"}}},{"category":"product_name","name":"Red Hat Enterprise Linux 9","product":{"name":"Red Hat Enterprise Linux 9","product_id":"red_hat_enterprise_linux_9","product_identification_helper":{"cpe":"cpe:/o:redhat:enterprise_linux:9"}}},{"category":"product_name","name":"Red Hat Storage 3","product":{"name":"Red Hat Storage 3","product_id":"red_hat_storage_3","product_identification_helper":{"cpe":"cpe:/a:redhat:storage:3"}}},{"category":"product_version","name":"samba","product":{"name":"samba","product_id":"samba"}},{"category":"product_version","name":"samba4","product":{"name":"samba4","product_id":"samba4"}}],"category":"vendor","name":"Red Hat"}],"relationships":[{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Enterprise Linux 6","product_id":"red_hat_enterprise_linux_6:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_enterprise_linux_6"},{"category":"default_component_of","full_product_name":{"name":"samba4 as a component of Red Hat Enterprise Linux 6","product_id":"red_hat_enterprise_linux_6:samba4"},"product_reference":"samba4","relates_to_product_reference":"red_hat_enterprise_linux_6"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Enterprise Linux 7","product_id":"red_hat_enterprise_linux_7:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_enterprise_linux_7"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Enterprise Linux 8","product_id":"red_hat_enterprise_linux_8:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_enterprise_linux_8"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Enterprise Linux 9","product_id":"red_hat_enterprise_linux_9:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_enterprise_linux_9"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Storage 3","product_id":"red_hat_storage_3:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_storage_3"}]},"vulnerabilities":[{"cve":"CVE-2023-42670","discovery_date":"2023-10-03T00:00:00+00:00","flags":[{"label":"vulnerable_code_not_present","product_ids":["red_hat_enterprise_linux_6:samba","red_hat_enterprise_linux_6:samba4","red_hat_enterprise_linux_7:samba","red_hat_enterprise_linux_8:samba","red_hat_enterprise_linux_9:samba","red_hat_storage_3:samba"]}],"ids":[{"system_name":"Red Hat Bugzilla ID","text":"2241885"}],"notes":[{"category":"description","text":"A flaw was found in Samba. It is susceptible to a vulnerability where multiple incompatible RPC listeners can be initiated, causing disruptions in the AD DC service. When Samba's RPC server experiences a high load or unresponsiveness, servers intended for non-AD DC purposes (for example, NT4-emulation \"classic DCs\") can erroneously start and compete for the same unix domain sockets. This issue leads to partial query responses from the AD DC, causing issues such as \"The procedure number is out of range\" when using tools like Active Directory Users. This flaw allows an attacker to disrupt AD DC services.","title":"Vulnerability description"},{"category":"summary","text":"AD DC Busy RPC multiple listener DoS","title":"Vulnerability summary"},{"category":"other","text":"The Samba package as shipped with Red Hat Enterprise Linux 6, 7, 8 and 9 and Red Hat Gluster Storage is not affected by this issue as Red Hat doesn't provide the AD Domain Controller capability with it.","title":"Statement"},{"category":"general","text":"The CVSS score(s) listed for this vulnerability do not reflect the associated product's status, and are included for informational purposes to better understand the severity of this vulnerability.","title":"CVSS score applicability"}],"product_status":{"known_not_affected":["red_hat_enterprise_linux_6:samba","red_hat_enterprise_linux_6:samba4","red_hat_enterprise_linux_7:samba","red_hat_enterprise_linux_8:samba","red_hat_enterprise_linux_9:samba","red_hat_storage_3:samba"]},"references":[{"category":"self","summary":"Canonical URL","url":"https://access.redhat.com/security/cve/CVE-2023-42670"},{"category":"external","summary":"RHBZ#2241885","url":"https://bugzilla.redhat.com/show_bug.cgi?id=2241885"},{"category":"external","summary":"https://www.cve.org/CVERecord?id=CVE-2023-42670","url":"https://www.cve.org/CVERecord?id=CVE-2023-42670"},{"category":"external","summary":"https://nvd.nist.gov/vuln/detail/CVE-2023-42670","url":"https://nvd.nist.gov/vuln/detail/CVE-2023-42670"},{"category":"external","summary":"https://bugzilla.samba.org/show_bug.cgi?id=15473","url":"https://bugzilla.samba.org/show_bug.cgi?id=15473"},{"category":"external","summary":"https://www.samba.org/samba/security/CVE-2023-42670.html","url":"https://www.samba.org/samba/security/CVE-2023-42670.html"}],"release_date":"2023-10-10T00:00:00+00:00","title":"AD DC Busy RPC multiple listener DoS"}]} +{"document":{"aggregate_severity":{"namespace":"https://access.redhat.com/security/updates/classification/","text":"moderate"},"category":"csaf_vex","csaf_version":"2.0","distribution":{"text":"Copyright © Red Hat, Inc. All rights reserved.","tlp":{"label":"WHITE","url":"https://www.first.org/tlp/"}},"lang":"en","notes":[{"category":"legal_disclaimer","text":"This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.","title":"Terms of Use"}],"publisher":{"category":"vendor","contact_details":"https://access.redhat.com/security/team/contact/","issuing_authority":"Red Hat Product Security is responsible for vulnerability handling across all Red Hat offerings.","name":"Red Hat Product Security","namespace":"https://www.redhat.com"},"references":[{"category":"self","summary":"Canonical URL","url":"https://access.redhat.com/security/data/csaf/beta/vex/2023/cve-2023-42670.json"}],"title":"AD DC Busy RPC multiple listener DoS","tracking":{"current_release_date":"2023-10-11T10:46:15+00:00","generator":{"date":"2023-10-12T17:19:26+00:00","engine":{"name":"Red Hat SDEngine","version":"3.23.0"}},"id":"CVE-2023-42670","initial_release_date":"2023-10-10T00:00:00+00:00","revision_history":[{"date":"2023-10-10T00:00:00+00:00","number":"1","summary":"Initial version"},{"date":"2023-10-11T11:12:42.999543+00:00","number":"2","summary":"Current version"}],"status":"final","version":"1"}},"product_tree":{"branches":[{"branches":[{"category":"product_name","name":"Red Hat Enterprise Linux 6","product":{"name":"Red Hat Enterprise Linux 6","product_id":"red_hat_enterprise_linux_6","product_identification_helper":{"cpe":"cpe:/o:redhat:enterprise_linux:6"}}},{"category":"product_name","name":"Red Hat Enterprise Linux 7","product":{"name":"Red Hat Enterprise Linux 7","product_id":"red_hat_enterprise_linux_7","product_identification_helper":{"cpe":"cpe:/o:redhat:enterprise_linux:7"}}},{"category":"product_name","name":"Red Hat Enterprise Linux 8","product":{"name":"Red Hat Enterprise Linux 8","product_id":"red_hat_enterprise_linux_8","product_identification_helper":{"cpe":"cpe:/o:redhat:enterprise_linux:8"}}},{"category":"product_name","name":"Red Hat Enterprise Linux 9","product":{"name":"Red Hat Enterprise Linux 9","product_id":"red_hat_enterprise_linux_9","product_identification_helper":{"cpe":"cpe:/o:redhat:enterprise_linux:9"}}},{"category":"product_name","name":"Red Hat Storage 3","product":{"name":"Red Hat Storage 3","product_id":"red_hat_storage_3","product_identification_helper":{"cpe":"cpe:/a:redhat:storage:3"}}},{"category":"product_version","name":"samba","product":{"name":"samba","product_id":"samba"}},{"category":"product_version","name":"samba4","product":{"name":"samba4","product_id":"samba4"}}],"category":"vendor","name":"Red Hat"}],"relationships":[{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Enterprise Linux 6","product_id":"red_hat_enterprise_linux_6:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_enterprise_linux_6"},{"category":"default_component_of","full_product_name":{"name":"samba4 as a component of Red Hat Enterprise Linux 6","product_id":"red_hat_enterprise_linux_6:samba4"},"product_reference":"samba4","relates_to_product_reference":"red_hat_enterprise_linux_6"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Enterprise Linux 7","product_id":"red_hat_enterprise_linux_7:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_enterprise_linux_7"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Enterprise Linux 8","product_id":"red_hat_enterprise_linux_8:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_enterprise_linux_8"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Enterprise Linux 9","product_id":"red_hat_enterprise_linux_9:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_enterprise_linux_9"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Storage 3","product_id":"red_hat_storage_3:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_storage_3"}]},"vulnerabilities":[{"cve":"CVE-2023-42670","discovery_date":"2023-10-03T00:00:00+00:00","flags":[{"label":"vulnerable_code_not_present","product_ids":["red_hat_enterprise_linux_6:samba","red_hat_enterprise_linux_6:samba4","red_hat_enterprise_linux_7:samba","red_hat_enterprise_linux_8:samba","red_hat_enterprise_linux_9:samba","red_hat_storage_3:samba"]}],"ids":[{"system_name":"Red Hat Bugzilla ID","text":"2241885"}],"notes":[{"category":"description","text":"A flaw was found in Samba. It is susceptible to a vulnerability where multiple incompatible RPC listeners can be initiated, causing disruptions in the AD DC service. When Samba's RPC server experiences a high load or unresponsiveness, servers intended for non-AD DC purposes (for example, NT4-emulation \"classic DCs\") can erroneously start and compete for the same unix domain sockets. This issue leads to partial query responses from the AD DC, causing issues such as \"The procedure number is out of range\" when using tools like Active Directory Users. This flaw allows an attacker to disrupt AD DC services.","title":"Vulnerability description"},{"category":"summary","text":"AD DC Busy RPC multiple listener DoS","title":"Vulnerability summary"},{"category":"other","text":"The Samba package as shipped with Red Hat Enterprise Linux 6, 7, 8 and 9 and Red Hat Gluster Storage is not affected by this issue as Red Hat doesn't provide the AD Domain Controller capability with it.","title":"Statement"},{"category":"general","text":"The CVSS score(s) listed for this vulnerability do not reflect the associated product's status, and are included for informational purposes to better understand the severity of this vulnerability.","title":"CVSS score applicability"}],"product_status":{"known_not_affected":["red_hat_enterprise_linux_6:samba","red_hat_enterprise_linux_6:samba4","red_hat_enterprise_linux_7:samba","red_hat_enterprise_linux_8:samba","red_hat_enterprise_linux_9:samba","red_hat_storage_3:samba"]},"references":[{"category":"self","summary":"Canonical URL","url":"https://access.redhat.com/security/cve/CVE-2023-42670"},{"category":"external","summary":"RHBZ#2241885","url":"https://bugzilla.redhat.com/show_bug.cgi?id=2241885"},{"category":"external","summary":"https://www.cve.org/CVERecord?id=CVE-2023-42670","url":"https://www.cve.org/CVERecord?id=CVE-2023-42670"},{"category":"external","summary":"https://nvd.nist.gov/vuln/detail/CVE-2023-42670","url":"https://nvd.nist.gov/vuln/detail/CVE-2023-42670"},{"category":"external","summary":"https://bugzilla.samba.org/show_bug.cgi?id=15473","url":"https://bugzilla.samba.org/show_bug.cgi?id=15473"},{"category":"external","summary":"https://www.samba.org/samba/security/CVE-2023-42670.html","url":"https://www.samba.org/samba/security/CVE-2023-42670.html"}],"release_date":"2023-10-10T00:00:00+00:00","title":"AD DC Busy RPC multiple listener DoS"}]} +{"document":{"aggregate_severity":{"namespace":"https://access.redhat.com/security/updates/classification/","text":"moderate"},"category":"csaf_vex","csaf_version":"2.0","distribution":{"text":"Copyright © Red Hat, Inc. All rights reserved.","tlp":{"label":"WHITE","url":"https://www.first.org/tlp/"}},"lang":"en","notes":[{"category":"legal_disclaimer","text":"This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.","title":"Terms of Use"}],"publisher":{"category":"vendor","contact_details":"https://access.redhat.com/security/team/contact/","issuing_authority":"Red Hat Product Security is responsible for vulnerability handling across all Red Hat offerings.","name":"Red Hat Product Security","namespace":"https://www.redhat.com"},"references":[{"category":"self","summary":"Canonical URL","url":"https://access.redhat.com/security/data/csaf/beta/vex/2023/cve-2023-42669.json"}],"title":"\"rpcecho\" development server allows denial of service via sleep() call on AD DC","tracking":{"current_release_date":"2023-10-31T10:05:16+00:00","generator":{"date":"2023-10-31T13:27:57+00:00","engine":{"name":"Red Hat SDEngine","version":"3.23.0"}},"id":"CVE-2023-42669","initial_release_date":"2023-10-10T00:00:00+00:00","revision_history":[{"date":"2023-10-10T00:00:00+00:00","number":"1","summary":"Initial version"},{"date":"2023-10-31T10:05:16+00:00","number":"2","summary":"Current version"}],"status":"final","version":"1"}},"product_tree":{"branches":[{"branches":[{"category":"product_name","name":"Red Hat Enterprise Linux 6","product":{"name":"Red Hat Enterprise Linux 6","product_id":"red_hat_enterprise_linux_6","product_identification_helper":{"cpe":"cpe:/o:redhat:enterprise_linux:6"}}},{"category":"product_name","name":"Red Hat Enterprise Linux 7","product":{"name":"Red Hat Enterprise Linux 7","product_id":"red_hat_enterprise_linux_7","product_identification_helper":{"cpe":"cpe:/o:redhat:enterprise_linux:7"}}},{"category":"product_name","name":"Red Hat Enterprise Linux 8","product":{"name":"Red Hat Enterprise Linux 8","product_id":"red_hat_enterprise_linux_8","product_identification_helper":{"cpe":"cpe:/o:redhat:enterprise_linux:8"}}},{"category":"product_name","name":"Red Hat Enterprise Linux 9","product":{"name":"Red Hat Enterprise Linux 9","product_id":"red_hat_enterprise_linux_9","product_identification_helper":{"cpe":"cpe:/o:redhat:enterprise_linux:9"}}},{"category":"product_name","name":"Red Hat Storage 3","product":{"name":"Red Hat Storage 3","product_id":"red_hat_storage_3","product_identification_helper":{"cpe":"cpe:/a:redhat:storage:3"}}},{"branches":[{"category":"product_name","name":"Red Hat Enterprise Linux AppStream EUS (v.9.0)","product":{"name":"Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS","product_identification_helper":{"cpe":"cpe:/a:redhat:rhel_eus:9.0::appstream"}}},{"category":"product_name","name":"Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product":{"name":"Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS","product_identification_helper":{"cpe":"cpe:/a:redhat:rhel_eus:9.0::resilientstorage"}}},{"category":"product_name","name":"Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product":{"name":"Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS","product_identification_helper":{"cpe":"cpe:/o:redhat:rhel_eus:9.0::baseos"}}},{"category":"product_name","name":"Red Hat CodeReady Linux Builder EUS (v.9.0)","product":{"name":"Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS","product_identification_helper":{"cpe":"cpe:/a:redhat:rhel_eus:9.0::crb"}}}],"category":"product_family","name":"Red Hat Enterprise Linux"},{"category":"product_version","name":"samba","product":{"name":"samba","product_id":"samba"}},{"category":"product_version","name":"samba4","product":{"name":"samba4","product_id":"samba4"}},{"branches":[{"category":"product_version","name":"samba-client-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-client-0:4.15.5-111.el9_0.aarch64","product_id":"samba-client-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","product_id":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","product_id":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-vfs-iouring@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","product_id":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","product_id":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-debugsource-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-debugsource-0:4.15.5-111.el9_0.aarch64","product_id":"samba-debugsource-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debugsource@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/ctdb-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-vfs-iouring-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"libsmbclient-0:4.15.5-111.el9_0.aarch64","product":{"name":"libsmbclient-0:4.15.5-111.el9_0.aarch64","product_id":"libsmbclient-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"libwbclient-0:4.15.5-111.el9_0.aarch64","product":{"name":"libwbclient-0:4.15.5-111.el9_0.aarch64","product_id":"libwbclient-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"python3-samba-0:4.15.5-111.el9_0.aarch64","product":{"name":"python3-samba-0:4.15.5-111.el9_0.aarch64","product_id":"python3-samba-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-0:4.15.5-111.el9_0.aarch64","product_id":"samba-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-client-libs-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-client-libs-0:4.15.5-111.el9_0.aarch64","product_id":"samba-client-libs-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-common-libs-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-common-libs-0:4.15.5-111.el9_0.aarch64","product_id":"samba-common-libs-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-common-tools-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-common-tools-0:4.15.5-111.el9_0.aarch64","product_id":"samba-common-tools-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-libs-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-libs-0:4.15.5-111.el9_0.aarch64","product_id":"samba-libs-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-winbind-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-winbind-0:4.15.5-111.el9_0.aarch64","product_id":"samba-winbind-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","product_id":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","product":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","product_id":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-devel@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64","product":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64","product_id":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-devel@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-devel-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-devel-0:4.15.5-111.el9_0.aarch64","product_id":"samba-devel-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-devel@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-test-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-test-0:4.15.5-111.el9_0.aarch64","product_id":"samba-test-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-test-libs-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-test-libs-0:4.15.5-111.el9_0.aarch64","product_id":"samba-test-libs-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs@4.15.5-111.el9_0?arch=aarch64"}}}],"category":"architecture","name":"aarch64"},{"branches":[{"category":"product_version","name":"samba-client-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-client-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-client-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-vfs-iouring@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debugsource@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/ctdb-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-vfs-iouring-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"ctdb-0:4.15.5-111.el9_0.ppc64le","product":{"name":"ctdb-0:4.15.5-111.el9_0.ppc64le","product_id":"ctdb-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/ctdb@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"libsmbclient-0:4.15.5-111.el9_0.ppc64le","product":{"name":"libsmbclient-0:4.15.5-111.el9_0.ppc64le","product_id":"libsmbclient-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"libwbclient-0:4.15.5-111.el9_0.ppc64le","product":{"name":"libwbclient-0:4.15.5-111.el9_0.ppc64le","product_id":"libwbclient-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"python3-samba-0:4.15.5-111.el9_0.ppc64le","product":{"name":"python3-samba-0:4.15.5-111.el9_0.ppc64le","product_id":"python3-samba-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-libs-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-libs-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-libs-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-winbind-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-winbind-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-winbind-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","product":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","product_id":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-devel@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","product":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","product_id":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-devel@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-devel-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-devel-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-devel-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-devel@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-test-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-test-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-test-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs@4.15.5-111.el9_0?arch=ppc64le"}}}],"category":"architecture","name":"ppc64le"},{"branches":[{"category":"product_version","name":"samba-client-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-client-0:4.15.5-111.el9_0.x86_64","product_id":"samba-client-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","product_id":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","product_id":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-vfs-iouring@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winexe-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winexe-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winexe-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winexe@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-debugsource-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-debugsource-0:4.15.5-111.el9_0.x86_64","product_id":"samba-debugsource-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debugsource@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/ctdb-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-vfs-iouring-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winexe-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"ctdb-0:4.15.5-111.el9_0.x86_64","product":{"name":"ctdb-0:4.15.5-111.el9_0.x86_64","product_id":"ctdb-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/ctdb@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"libsmbclient-0:4.15.5-111.el9_0.x86_64","product":{"name":"libsmbclient-0:4.15.5-111.el9_0.x86_64","product_id":"libsmbclient-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"libwbclient-0:4.15.5-111.el9_0.x86_64","product":{"name":"libwbclient-0:4.15.5-111.el9_0.x86_64","product_id":"libwbclient-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"python3-samba-0:4.15.5-111.el9_0.x86_64","product":{"name":"python3-samba-0:4.15.5-111.el9_0.x86_64","product_id":"python3-samba-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-0:4.15.5-111.el9_0.x86_64","product_id":"samba-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-client-libs-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-client-libs-0:4.15.5-111.el9_0.x86_64","product_id":"samba-client-libs-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-common-libs-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-common-libs-0:4.15.5-111.el9_0.x86_64","product_id":"samba-common-libs-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-common-tools-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-common-tools-0:4.15.5-111.el9_0.x86_64","product_id":"samba-common-tools-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-libs-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-libs-0:4.15.5-111.el9_0.x86_64","product_id":"samba-libs-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winbind-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winbind-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winbind-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","product":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","product_id":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-devel@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64","product":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64","product_id":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-devel@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-devel-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-devel-0:4.15.5-111.el9_0.x86_64","product_id":"samba-devel-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-devel@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-test-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-test-0:4.15.5-111.el9_0.x86_64","product_id":"samba-test-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-test-libs-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-test-libs-0:4.15.5-111.el9_0.x86_64","product_id":"samba-test-libs-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs@4.15.5-111.el9_0?arch=x86_64"}}}],"category":"architecture","name":"x86_64"},{"branches":[{"category":"product_version","name":"samba-client-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-client-0:4.15.5-111.el9_0.s390x","product_id":"samba-client-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x","product_id":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","product_id":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-vfs-iouring@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x","product_id":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","product_id":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-debugsource-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-debugsource-0:4.15.5-111.el9_0.s390x","product_id":"samba-debugsource-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debugsource@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/ctdb-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-vfs-iouring-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"ctdb-0:4.15.5-111.el9_0.s390x","product":{"name":"ctdb-0:4.15.5-111.el9_0.s390x","product_id":"ctdb-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/ctdb@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"libsmbclient-0:4.15.5-111.el9_0.s390x","product":{"name":"libsmbclient-0:4.15.5-111.el9_0.s390x","product_id":"libsmbclient-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"libwbclient-0:4.15.5-111.el9_0.s390x","product":{"name":"libwbclient-0:4.15.5-111.el9_0.s390x","product_id":"libwbclient-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"python3-samba-0:4.15.5-111.el9_0.s390x","product":{"name":"python3-samba-0:4.15.5-111.el9_0.s390x","product_id":"python3-samba-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-0:4.15.5-111.el9_0.s390x","product_id":"samba-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-client-libs-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-client-libs-0:4.15.5-111.el9_0.s390x","product_id":"samba-client-libs-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-common-libs-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-common-libs-0:4.15.5-111.el9_0.s390x","product_id":"samba-common-libs-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-common-tools-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-common-tools-0:4.15.5-111.el9_0.s390x","product_id":"samba-common-tools-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-libs-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-libs-0:4.15.5-111.el9_0.s390x","product_id":"samba-libs-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-winbind-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-winbind-0:4.15.5-111.el9_0.s390x","product_id":"samba-winbind-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x","product_id":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x","product":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x","product_id":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-devel@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"libwbclient-devel-0:4.15.5-111.el9_0.s390x","product":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.s390x","product_id":"libwbclient-devel-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-devel@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-devel-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-devel-0:4.15.5-111.el9_0.s390x","product_id":"samba-devel-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-devel@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-test-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-test-0:4.15.5-111.el9_0.s390x","product_id":"samba-test-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-test-libs-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-test-libs-0:4.15.5-111.el9_0.s390x","product_id":"samba-test-libs-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs@4.15.5-111.el9_0?arch=s390x"}}}],"category":"architecture","name":"s390x"},{"branches":[{"category":"product_version","name":"libsmbclient-0:4.15.5-111.el9_0.i686","product":{"name":"libsmbclient-0:4.15.5-111.el9_0.i686","product_id":"libsmbclient-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"libwbclient-0:4.15.5-111.el9_0.i686","product":{"name":"libwbclient-0:4.15.5-111.el9_0.i686","product_id":"libwbclient-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"python3-samba-0:4.15.5-111.el9_0.i686","product":{"name":"python3-samba-0:4.15.5-111.el9_0.i686","product_id":"python3-samba-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-client-libs-0:4.15.5-111.el9_0.i686","product":{"name":"samba-client-libs-0:4.15.5-111.el9_0.i686","product_id":"samba-client-libs-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-libs-0:4.15.5-111.el9_0.i686","product":{"name":"samba-libs-0:4.15.5-111.el9_0.i686","product_id":"samba-libs-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-winbind-modules-0:4.15.5-111.el9_0.i686","product":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.i686","product_id":"samba-winbind-modules-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-debugsource-0:4.15.5-111.el9_0.i686","product":{"name":"samba-debugsource-0:4.15.5-111.el9_0.i686","product_id":"samba-debugsource-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debugsource@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/ctdb-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"libsmbclient-devel-0:4.15.5-111.el9_0.i686","product":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.i686","product_id":"libsmbclient-devel-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-devel@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"libwbclient-devel-0:4.15.5-111.el9_0.i686","product":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.i686","product_id":"libwbclient-devel-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-devel@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-devel-0:4.15.5-111.el9_0.i686","product":{"name":"samba-devel-0:4.15.5-111.el9_0.i686","product_id":"samba-devel-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-devel@4.15.5-111.el9_0?arch=i686"}}}],"category":"architecture","name":"i686"},{"branches":[{"category":"product_version","name":"samba-0:4.15.5-111.el9_0.src","product":{"name":"samba-0:4.15.5-111.el9_0.src","product_id":"samba-0:4.15.5-111.el9_0.src","product_identification_helper":{"purl":"pkg:rpm/redhat/samba@4.15.5-111.el9_0?arch=src"}}}],"category":"architecture","name":"src"},{"branches":[{"category":"product_version","name":"samba-common-0:4.15.5-111.el9_0.noarch","product":{"name":"samba-common-0:4.15.5-111.el9_0.noarch","product_id":"samba-common-0:4.15.5-111.el9_0.noarch","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common@4.15.5-111.el9_0?arch=noarch"}}},{"category":"product_version","name":"samba-pidl-0:4.15.5-111.el9_0.noarch","product":{"name":"samba-pidl-0:4.15.5-111.el9_0.noarch","product_id":"samba-pidl-0:4.15.5-111.el9_0.noarch","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-pidl@4.15.5-111.el9_0?arch=noarch"}}}],"category":"architecture","name":"noarch"}],"category":"vendor","name":"Red Hat"}],"relationships":[{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"ctdb-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x"},"product_reference":"ctdb-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64"},"product_reference":"ctdb-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.src as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src"},"product_reference":"samba-0:4.15.5-111.el9_0.src","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-0:4.15.5-111.el9_0.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch"},"product_reference":"samba-common-0:4.15.5-111.el9_0.noarch","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-pidl-0:4.15.5-111.el9_0.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch"},"product_reference":"samba-pidl-0:4.15.5-111.el9_0.noarch","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winexe-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winexe-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"ctdb-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x"},"product_reference":"ctdb-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64"},"product_reference":"ctdb-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.src as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src"},"product_reference":"samba-0:4.15.5-111.el9_0.src","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-0:4.15.5-111.el9_0.noarch as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch"},"product_reference":"samba-common-0:4.15.5-111.el9_0.noarch","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-pidl-0:4.15.5-111.el9_0.noarch as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch"},"product_reference":"samba-pidl-0:4.15.5-111.el9_0.noarch","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winexe-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winexe-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"ctdb-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x"},"product_reference":"ctdb-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64"},"product_reference":"ctdb-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.src as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src"},"product_reference":"samba-0:4.15.5-111.el9_0.src","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-0:4.15.5-111.el9_0.noarch as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch"},"product_reference":"samba-common-0:4.15.5-111.el9_0.noarch","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-pidl-0:4.15.5-111.el9_0.noarch as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch"},"product_reference":"samba-pidl-0:4.15.5-111.el9_0.noarch","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winexe-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winexe-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"ctdb-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x"},"product_reference":"ctdb-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64"},"product_reference":"ctdb-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.src as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src"},"product_reference":"samba-0:4.15.5-111.el9_0.src","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-0:4.15.5-111.el9_0.noarch as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch"},"product_reference":"samba-common-0:4.15.5-111.el9_0.noarch","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-pidl-0:4.15.5-111.el9_0.noarch as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch"},"product_reference":"samba-pidl-0:4.15.5-111.el9_0.noarch","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winexe-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winexe-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Enterprise Linux 6","product_id":"red_hat_enterprise_linux_6:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_enterprise_linux_6"},{"category":"default_component_of","full_product_name":{"name":"samba4 as a component of Red Hat Enterprise Linux 6","product_id":"red_hat_enterprise_linux_6:samba4"},"product_reference":"samba4","relates_to_product_reference":"red_hat_enterprise_linux_6"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Enterprise Linux 7","product_id":"red_hat_enterprise_linux_7:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_enterprise_linux_7"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Enterprise Linux 8","product_id":"red_hat_enterprise_linux_8:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_enterprise_linux_8"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Enterprise Linux 9","product_id":"red_hat_enterprise_linux_9:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_enterprise_linux_9"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Storage 3","product_id":"red_hat_storage_3:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_storage_3"}]},"vulnerabilities":[{"cve":"CVE-2023-42669","discovery_date":"2023-10-03T00:00:00+00:00","ids":[{"system_name":"Red Hat Bugzilla ID","text":"2241884"}],"notes":[{"category":"description","text":"A vulnerability was found in Samba's \"rpcecho\" development server, a non-Windows RPC server used to test Samba's DCE/RPC stack elements. This vulnerability stems from an RPC function that can be blocked indefinitely. The issue arises because the \"rpcecho\" service operates with only one worker in the main RPC task, allowing calls to the \"rpcecho\" server to be blocked for a specified time, causing service disruptions. This disruption is triggered by a \"sleep()\" call in the \"dcesrv_echo_TestSleep()\" function under specific conditions. Authenticated users or attackers can exploit this vulnerability to make calls to the \"rpcecho\" server, requesting it to block for a specified duration, effectively disrupting most services and leading to a complete denial of service on the AD DC. The DoS affects all other services as \"rpcecho\" runs in the main RPC task.","title":"Vulnerability description"},{"category":"summary","text":"\"rpcecho\" development server allows denial of service via sleep() call on AD DC","title":"Vulnerability summary"},{"category":"general","text":"The CVSS score(s) listed for this vulnerability do not reflect the associated product's status, and are included for informational purposes to better understand the severity of this vulnerability.","title":"CVSS score applicability"}],"product_status":{"fixed":["AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64"],"known_affected":["red_hat_enterprise_linux_6:samba","red_hat_enterprise_linux_6:samba4","red_hat_enterprise_linux_7:samba","red_hat_enterprise_linux_8:samba","red_hat_enterprise_linux_9:samba","red_hat_storage_3:samba"]},"references":[{"category":"self","summary":"Canonical URL","url":"https://access.redhat.com/security/cve/CVE-2023-42669"},{"category":"external","summary":"RHBZ#2241884","url":"https://bugzilla.redhat.com/show_bug.cgi?id=2241884"},{"category":"external","summary":"https://www.cve.org/CVERecord?id=CVE-2023-42669","url":"https://www.cve.org/CVERecord?id=CVE-2023-42669"},{"category":"external","summary":"https://nvd.nist.gov/vuln/detail/CVE-2023-42669","url":"https://nvd.nist.gov/vuln/detail/CVE-2023-42669"},{"category":"external","summary":"https://bugzilla.samba.org/show_bug.cgi?id=15474","url":"https://bugzilla.samba.org/show_bug.cgi?id=15474"},{"category":"external","summary":"https://www.samba.org/samba/security/CVE-2023-42669.html","url":"https://www.samba.org/samba/security/CVE-2023-42669.html"}],"release_date":"2023-10-10T00:00:00+00:00","remediations":[{"category":"vendor_fix","details":"For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nAfter installing this update, the smb service will be restarted automatically.","product_ids":["AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64"],"url":"https://access.redhat.com/errata/RHSA-2023:6209"},{"category":"workaround","details":"To mitigate this vulnerability, disable rpcecho service on the AD DC by setting:\n~~~\ndcerpc endpoint servers = -rpcecho\n~~~","product_ids":["AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","red_hat_enterprise_linux_6:samba","red_hat_enterprise_linux_6:samba4","red_hat_enterprise_linux_7:samba","red_hat_enterprise_linux_8:samba","red_hat_enterprise_linux_9:samba","red_hat_storage_3:samba"]},{"category":"no_fix_planned","details":"Out of support scope","product_ids":["red_hat_enterprise_linux_6:samba","red_hat_enterprise_linux_6:samba4","red_hat_enterprise_linux_7:samba"]},{"category":"none_available","details":"Affected","product_ids":["red_hat_enterprise_linux_8:samba","red_hat_enterprise_linux_9:samba","red_hat_storage_3:samba"]}],"scores":[{"cvss_v3":{"attackComplexity":"LOW","attackVector":"NETWORK","availabilityImpact":"HIGH","baseScore":6.5,"baseSeverity":"MEDIUM","confidentialityImpact":"NONE","integrityImpact":"NONE","privilegesRequired":"LOW","scope":"UNCHANGED","userInteraction":"NONE","vectorString":"CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H","version":"3.1"},"products":["AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","red_hat_enterprise_linux_6:samba","red_hat_enterprise_linux_6:samba4","red_hat_enterprise_linux_7:samba","red_hat_enterprise_linux_8:samba","red_hat_enterprise_linux_9:samba","red_hat_storage_3:samba"]}],"threats":[{"category":"impact","details":"Moderate","product_ids":["AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","red_hat_enterprise_linux_6:samba","red_hat_enterprise_linux_6:samba4","red_hat_enterprise_linux_7:samba","red_hat_enterprise_linux_8:samba","red_hat_enterprise_linux_9:samba","red_hat_storage_3:samba"]}],"title":"\"rpcecho\" development server allows denial of service via sleep() call on AD DC"}]} +{"document":{"aggregate_severity":{"namespace":"https://access.redhat.com/security/updates/classification/","text":"moderate"},"category":"csaf_vex","csaf_version":"2.0","distribution":{"text":"Copyright © Red Hat, Inc. All rights reserved.","tlp":{"label":"WHITE","url":"https://www.first.org/tlp/"}},"lang":"en","notes":[{"category":"legal_disclaimer","text":"This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.","title":"Terms of Use"}],"publisher":{"category":"vendor","contact_details":"https://access.redhat.com/security/team/contact/","issuing_authority":"Red Hat Product Security is responsible for vulnerability handling across all Red Hat offerings.","name":"Red Hat Product Security","namespace":"https://www.redhat.com"},"references":[{"category":"self","summary":"Canonical URL","url":"https://access.redhat.com/security/data/csaf/beta/vex/2023/cve-2023-4154.json"}],"title":"AD DC password exposure to privileged users and RODCs","tracking":{"current_release_date":"2023-10-11T10:46:07+00:00","generator":{"date":"2023-10-12T17:19:37+00:00","engine":{"name":"Red Hat SDEngine","version":"3.23.0"}},"id":"CVE-2023-4154","initial_release_date":"2023-10-10T00:00:00+00:00","revision_history":[{"date":"2023-10-10T00:00:00+00:00","number":"1","summary":"Initial version"},{"date":"2023-10-11T11:12:36.823879+00:00","number":"2","summary":"Current version"}],"status":"final","version":"1"}},"product_tree":{"branches":[{"branches":[{"category":"product_name","name":"Red Hat Enterprise Linux 6","product":{"name":"Red Hat Enterprise Linux 6","product_id":"red_hat_enterprise_linux_6","product_identification_helper":{"cpe":"cpe:/o:redhat:enterprise_linux:6"}}},{"category":"product_name","name":"Red Hat Enterprise Linux 7","product":{"name":"Red Hat Enterprise Linux 7","product_id":"red_hat_enterprise_linux_7","product_identification_helper":{"cpe":"cpe:/o:redhat:enterprise_linux:7"}}},{"category":"product_name","name":"Red Hat Enterprise Linux 8","product":{"name":"Red Hat Enterprise Linux 8","product_id":"red_hat_enterprise_linux_8","product_identification_helper":{"cpe":"cpe:/o:redhat:enterprise_linux:8"}}},{"category":"product_name","name":"Red Hat Enterprise Linux 9","product":{"name":"Red Hat Enterprise Linux 9","product_id":"red_hat_enterprise_linux_9","product_identification_helper":{"cpe":"cpe:/o:redhat:enterprise_linux:9"}}},{"category":"product_name","name":"Red Hat Storage 3","product":{"name":"Red Hat Storage 3","product_id":"red_hat_storage_3","product_identification_helper":{"cpe":"cpe:/a:redhat:storage:3"}}},{"category":"product_version","name":"samba","product":{"name":"samba","product_id":"samba"}},{"category":"product_version","name":"samba4","product":{"name":"samba4","product_id":"samba4"}}],"category":"vendor","name":"Red Hat"}],"relationships":[{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Enterprise Linux 6","product_id":"red_hat_enterprise_linux_6:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_enterprise_linux_6"},{"category":"default_component_of","full_product_name":{"name":"samba4 as a component of Red Hat Enterprise Linux 6","product_id":"red_hat_enterprise_linux_6:samba4"},"product_reference":"samba4","relates_to_product_reference":"red_hat_enterprise_linux_6"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Enterprise Linux 7","product_id":"red_hat_enterprise_linux_7:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_enterprise_linux_7"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Enterprise Linux 8","product_id":"red_hat_enterprise_linux_8:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_enterprise_linux_8"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Enterprise Linux 9","product_id":"red_hat_enterprise_linux_9:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_enterprise_linux_9"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Storage 3","product_id":"red_hat_storage_3:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_storage_3"}]},"vulnerabilities":[{"cve":"CVE-2023-4154","cwe":{"id":"CWE-200","name":"Exposure of Sensitive Information to an Unauthorized Actor"},"discovery_date":"2023-10-03T00:00:00+00:00","flags":[{"label":"vulnerable_code_not_present","product_ids":["red_hat_enterprise_linux_6:samba","red_hat_enterprise_linux_6:samba4","red_hat_enterprise_linux_7:samba","red_hat_enterprise_linux_8:samba","red_hat_enterprise_linux_9:samba","red_hat_storage_3:samba"]}],"ids":[{"system_name":"Red Hat Bugzilla ID","text":"2241883"}],"notes":[{"category":"description","text":"A design flaw was found in Samba's DirSync control implementation, which exposes passwords and secrets in Active Directory to privileged users and Read-Only Domain Controllers (RODCs). This flaw allows RODCs and users possessing the GET_CHANGES right to access all attributes, including sensitive secrets and passwords. Even in a default setup, RODC DC accounts, which should only replicate some passwords, can gain access to all domain secrets, including the vital krbtgt, effectively eliminating the RODC / DC distinction. Furthermore, the vulnerability fails to account for error conditions (fail open), like out-of-memory situations, potentially granting access to secret attributes, even under low-privileged attacker influence.","title":"Vulnerability description"},{"category":"summary","text":"AD DC password exposure to privileged users and RODCs","title":"Vulnerability summary"},{"category":"other","text":"The Samba package as shipped with Red Hat Enterprise Linux 6, 7, 8 and 9 and Red Hat Gluster Storage is not affected by this issue as Red Hat doesn't provide the AD Domain Controller capability with it.","title":"Statement"},{"category":"general","text":"The CVSS score(s) listed for this vulnerability do not reflect the associated product's status, and are included for informational purposes to better understand the severity of this vulnerability.","title":"CVSS score applicability"}],"product_status":{"known_not_affected":["red_hat_enterprise_linux_6:samba","red_hat_enterprise_linux_6:samba4","red_hat_enterprise_linux_7:samba","red_hat_enterprise_linux_8:samba","red_hat_enterprise_linux_9:samba","red_hat_storage_3:samba"]},"references":[{"category":"self","summary":"Canonical URL","url":"https://access.redhat.com/security/cve/CVE-2023-4154"},{"category":"external","summary":"RHBZ#2241883","url":"https://bugzilla.redhat.com/show_bug.cgi?id=2241883"},{"category":"external","summary":"https://www.cve.org/CVERecord?id=CVE-2023-4154","url":"https://www.cve.org/CVERecord?id=CVE-2023-4154"},{"category":"external","summary":"https://nvd.nist.gov/vuln/detail/CVE-2023-4154","url":"https://nvd.nist.gov/vuln/detail/CVE-2023-4154"},{"category":"external","summary":"https://bugzilla.samba.org/show_bug.cgi?id=15424","url":"https://bugzilla.samba.org/show_bug.cgi?id=15424"},{"category":"external","summary":"https://www.samba.org/samba/security/CVE-2023-4154.html","url":"https://www.samba.org/samba/security/CVE-2023-4154.html"}],"release_date":"2023-10-10T00:00:00+00:00","title":"AD DC password exposure to privileged users and RODCs"}]} +{"document":{"aggregate_severity":{"namespace":"https://access.redhat.com/security/updates/classification/","text":"moderate"},"category":"csaf_vex","csaf_version":"2.0","distribution":{"text":"Copyright © Red Hat, Inc. All rights reserved.","tlp":{"label":"WHITE","url":"https://www.first.org/tlp/"}},"lang":"en","notes":[{"category":"legal_disclaimer","text":"This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.","title":"Terms of Use"}],"publisher":{"category":"vendor","contact_details":"https://access.redhat.com/security/team/contact/","issuing_authority":"Red Hat Product Security is responsible for vulnerability handling across all Red Hat offerings.","name":"Red Hat Product Security","namespace":"https://www.redhat.com"},"references":[{"category":"self","summary":"Canonical URL","url":"https://access.redhat.com/security/data/csaf/beta/vex/2023/cve-2023-4091.json"}],"title":"SMB clients can truncate files with read-only permissions","tracking":{"current_release_date":"2023-10-31T10:05:15+00:00","generator":{"date":"2023-10-31T13:27:57+00:00","engine":{"name":"Red Hat SDEngine","version":"3.23.0"}},"id":"CVE-2023-4091","initial_release_date":"2023-10-10T00:00:00+00:00","revision_history":[{"date":"2023-10-10T00:00:00+00:00","number":"1","summary":"Initial version"},{"date":"2023-10-31T10:05:15+00:00","number":"2","summary":"Current version"}],"status":"final","version":"1"}},"product_tree":{"branches":[{"branches":[{"category":"product_name","name":"Red Hat Enterprise Linux 6","product":{"name":"Red Hat Enterprise Linux 6","product_id":"red_hat_enterprise_linux_6","product_identification_helper":{"cpe":"cpe:/o:redhat:enterprise_linux:6"}}},{"category":"product_name","name":"Red Hat Enterprise Linux 7","product":{"name":"Red Hat Enterprise Linux 7","product_id":"red_hat_enterprise_linux_7","product_identification_helper":{"cpe":"cpe:/o:redhat:enterprise_linux:7"}}},{"category":"product_name","name":"Red Hat Enterprise Linux 8","product":{"name":"Red Hat Enterprise Linux 8","product_id":"red_hat_enterprise_linux_8","product_identification_helper":{"cpe":"cpe:/o:redhat:enterprise_linux:8"}}},{"category":"product_name","name":"Red Hat Enterprise Linux 9","product":{"name":"Red Hat Enterprise Linux 9","product_id":"red_hat_enterprise_linux_9","product_identification_helper":{"cpe":"cpe:/o:redhat:enterprise_linux:9"}}},{"category":"product_name","name":"Red Hat Storage 3","product":{"name":"Red Hat Storage 3","product_id":"red_hat_storage_3","product_identification_helper":{"cpe":"cpe:/a:redhat:storage:3"}}},{"branches":[{"category":"product_name","name":"Red Hat Enterprise Linux AppStream EUS (v.9.0)","product":{"name":"Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS","product_identification_helper":{"cpe":"cpe:/a:redhat:rhel_eus:9.0::appstream"}}},{"category":"product_name","name":"Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product":{"name":"Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS","product_identification_helper":{"cpe":"cpe:/a:redhat:rhel_eus:9.0::resilientstorage"}}},{"category":"product_name","name":"Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product":{"name":"Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS","product_identification_helper":{"cpe":"cpe:/o:redhat:rhel_eus:9.0::baseos"}}},{"category":"product_name","name":"Red Hat CodeReady Linux Builder EUS (v.9.0)","product":{"name":"Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS","product_identification_helper":{"cpe":"cpe:/a:redhat:rhel_eus:9.0::crb"}}}],"category":"product_family","name":"Red Hat Enterprise Linux"},{"category":"product_version","name":"samba","product":{"name":"samba","product_id":"samba"}},{"category":"product_version","name":"samba4","product":{"name":"samba4","product_id":"samba4"}},{"branches":[{"category":"product_version","name":"samba-client-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-client-0:4.15.5-111.el9_0.aarch64","product_id":"samba-client-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","product_id":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","product_id":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-vfs-iouring@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","product_id":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","product_id":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-debugsource-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-debugsource-0:4.15.5-111.el9_0.aarch64","product_id":"samba-debugsource-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debugsource@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/ctdb-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-vfs-iouring-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"libsmbclient-0:4.15.5-111.el9_0.aarch64","product":{"name":"libsmbclient-0:4.15.5-111.el9_0.aarch64","product_id":"libsmbclient-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"libwbclient-0:4.15.5-111.el9_0.aarch64","product":{"name":"libwbclient-0:4.15.5-111.el9_0.aarch64","product_id":"libwbclient-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"python3-samba-0:4.15.5-111.el9_0.aarch64","product":{"name":"python3-samba-0:4.15.5-111.el9_0.aarch64","product_id":"python3-samba-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-0:4.15.5-111.el9_0.aarch64","product_id":"samba-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-client-libs-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-client-libs-0:4.15.5-111.el9_0.aarch64","product_id":"samba-client-libs-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-common-libs-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-common-libs-0:4.15.5-111.el9_0.aarch64","product_id":"samba-common-libs-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-common-tools-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-common-tools-0:4.15.5-111.el9_0.aarch64","product_id":"samba-common-tools-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-libs-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-libs-0:4.15.5-111.el9_0.aarch64","product_id":"samba-libs-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-winbind-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-winbind-0:4.15.5-111.el9_0.aarch64","product_id":"samba-winbind-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","product_id":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","product":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","product_id":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-devel@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64","product":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64","product_id":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-devel@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-devel-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-devel-0:4.15.5-111.el9_0.aarch64","product_id":"samba-devel-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-devel@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-test-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-test-0:4.15.5-111.el9_0.aarch64","product_id":"samba-test-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-test-libs-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-test-libs-0:4.15.5-111.el9_0.aarch64","product_id":"samba-test-libs-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs@4.15.5-111.el9_0?arch=aarch64"}}}],"category":"architecture","name":"aarch64"},{"branches":[{"category":"product_version","name":"samba-client-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-client-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-client-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-vfs-iouring@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debugsource@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/ctdb-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-vfs-iouring-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"ctdb-0:4.15.5-111.el9_0.ppc64le","product":{"name":"ctdb-0:4.15.5-111.el9_0.ppc64le","product_id":"ctdb-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/ctdb@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"libsmbclient-0:4.15.5-111.el9_0.ppc64le","product":{"name":"libsmbclient-0:4.15.5-111.el9_0.ppc64le","product_id":"libsmbclient-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"libwbclient-0:4.15.5-111.el9_0.ppc64le","product":{"name":"libwbclient-0:4.15.5-111.el9_0.ppc64le","product_id":"libwbclient-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"python3-samba-0:4.15.5-111.el9_0.ppc64le","product":{"name":"python3-samba-0:4.15.5-111.el9_0.ppc64le","product_id":"python3-samba-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-libs-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-libs-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-libs-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-winbind-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-winbind-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-winbind-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","product":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","product_id":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-devel@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","product":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","product_id":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-devel@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-devel-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-devel-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-devel-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-devel@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-test-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-test-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-test-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs@4.15.5-111.el9_0?arch=ppc64le"}}}],"category":"architecture","name":"ppc64le"},{"branches":[{"category":"product_version","name":"samba-client-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-client-0:4.15.5-111.el9_0.x86_64","product_id":"samba-client-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","product_id":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","product_id":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-vfs-iouring@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winexe-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winexe-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winexe-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winexe@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-debugsource-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-debugsource-0:4.15.5-111.el9_0.x86_64","product_id":"samba-debugsource-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debugsource@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/ctdb-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-vfs-iouring-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winexe-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"ctdb-0:4.15.5-111.el9_0.x86_64","product":{"name":"ctdb-0:4.15.5-111.el9_0.x86_64","product_id":"ctdb-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/ctdb@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"libsmbclient-0:4.15.5-111.el9_0.x86_64","product":{"name":"libsmbclient-0:4.15.5-111.el9_0.x86_64","product_id":"libsmbclient-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"libwbclient-0:4.15.5-111.el9_0.x86_64","product":{"name":"libwbclient-0:4.15.5-111.el9_0.x86_64","product_id":"libwbclient-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"python3-samba-0:4.15.5-111.el9_0.x86_64","product":{"name":"python3-samba-0:4.15.5-111.el9_0.x86_64","product_id":"python3-samba-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-0:4.15.5-111.el9_0.x86_64","product_id":"samba-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-client-libs-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-client-libs-0:4.15.5-111.el9_0.x86_64","product_id":"samba-client-libs-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-common-libs-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-common-libs-0:4.15.5-111.el9_0.x86_64","product_id":"samba-common-libs-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-common-tools-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-common-tools-0:4.15.5-111.el9_0.x86_64","product_id":"samba-common-tools-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-libs-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-libs-0:4.15.5-111.el9_0.x86_64","product_id":"samba-libs-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winbind-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winbind-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winbind-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","product":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","product_id":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-devel@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64","product":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64","product_id":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-devel@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-devel-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-devel-0:4.15.5-111.el9_0.x86_64","product_id":"samba-devel-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-devel@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-test-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-test-0:4.15.5-111.el9_0.x86_64","product_id":"samba-test-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-test-libs-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-test-libs-0:4.15.5-111.el9_0.x86_64","product_id":"samba-test-libs-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs@4.15.5-111.el9_0?arch=x86_64"}}}],"category":"architecture","name":"x86_64"},{"branches":[{"category":"product_version","name":"samba-client-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-client-0:4.15.5-111.el9_0.s390x","product_id":"samba-client-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x","product_id":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","product_id":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-vfs-iouring@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x","product_id":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","product_id":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-debugsource-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-debugsource-0:4.15.5-111.el9_0.s390x","product_id":"samba-debugsource-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debugsource@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/ctdb-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-vfs-iouring-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"ctdb-0:4.15.5-111.el9_0.s390x","product":{"name":"ctdb-0:4.15.5-111.el9_0.s390x","product_id":"ctdb-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/ctdb@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"libsmbclient-0:4.15.5-111.el9_0.s390x","product":{"name":"libsmbclient-0:4.15.5-111.el9_0.s390x","product_id":"libsmbclient-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"libwbclient-0:4.15.5-111.el9_0.s390x","product":{"name":"libwbclient-0:4.15.5-111.el9_0.s390x","product_id":"libwbclient-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"python3-samba-0:4.15.5-111.el9_0.s390x","product":{"name":"python3-samba-0:4.15.5-111.el9_0.s390x","product_id":"python3-samba-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-0:4.15.5-111.el9_0.s390x","product_id":"samba-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-client-libs-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-client-libs-0:4.15.5-111.el9_0.s390x","product_id":"samba-client-libs-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-common-libs-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-common-libs-0:4.15.5-111.el9_0.s390x","product_id":"samba-common-libs-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-common-tools-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-common-tools-0:4.15.5-111.el9_0.s390x","product_id":"samba-common-tools-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-libs-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-libs-0:4.15.5-111.el9_0.s390x","product_id":"samba-libs-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-winbind-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-winbind-0:4.15.5-111.el9_0.s390x","product_id":"samba-winbind-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x","product_id":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x","product":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x","product_id":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-devel@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"libwbclient-devel-0:4.15.5-111.el9_0.s390x","product":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.s390x","product_id":"libwbclient-devel-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-devel@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-devel-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-devel-0:4.15.5-111.el9_0.s390x","product_id":"samba-devel-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-devel@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-test-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-test-0:4.15.5-111.el9_0.s390x","product_id":"samba-test-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-test-libs-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-test-libs-0:4.15.5-111.el9_0.s390x","product_id":"samba-test-libs-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs@4.15.5-111.el9_0?arch=s390x"}}}],"category":"architecture","name":"s390x"},{"branches":[{"category":"product_version","name":"libsmbclient-0:4.15.5-111.el9_0.i686","product":{"name":"libsmbclient-0:4.15.5-111.el9_0.i686","product_id":"libsmbclient-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"libwbclient-0:4.15.5-111.el9_0.i686","product":{"name":"libwbclient-0:4.15.5-111.el9_0.i686","product_id":"libwbclient-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"python3-samba-0:4.15.5-111.el9_0.i686","product":{"name":"python3-samba-0:4.15.5-111.el9_0.i686","product_id":"python3-samba-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-client-libs-0:4.15.5-111.el9_0.i686","product":{"name":"samba-client-libs-0:4.15.5-111.el9_0.i686","product_id":"samba-client-libs-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-libs-0:4.15.5-111.el9_0.i686","product":{"name":"samba-libs-0:4.15.5-111.el9_0.i686","product_id":"samba-libs-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-winbind-modules-0:4.15.5-111.el9_0.i686","product":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.i686","product_id":"samba-winbind-modules-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-debugsource-0:4.15.5-111.el9_0.i686","product":{"name":"samba-debugsource-0:4.15.5-111.el9_0.i686","product_id":"samba-debugsource-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debugsource@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/ctdb-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"libsmbclient-devel-0:4.15.5-111.el9_0.i686","product":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.i686","product_id":"libsmbclient-devel-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-devel@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"libwbclient-devel-0:4.15.5-111.el9_0.i686","product":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.i686","product_id":"libwbclient-devel-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-devel@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-devel-0:4.15.5-111.el9_0.i686","product":{"name":"samba-devel-0:4.15.5-111.el9_0.i686","product_id":"samba-devel-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-devel@4.15.5-111.el9_0?arch=i686"}}}],"category":"architecture","name":"i686"},{"branches":[{"category":"product_version","name":"samba-0:4.15.5-111.el9_0.src","product":{"name":"samba-0:4.15.5-111.el9_0.src","product_id":"samba-0:4.15.5-111.el9_0.src","product_identification_helper":{"purl":"pkg:rpm/redhat/samba@4.15.5-111.el9_0?arch=src"}}}],"category":"architecture","name":"src"},{"branches":[{"category":"product_version","name":"samba-common-0:4.15.5-111.el9_0.noarch","product":{"name":"samba-common-0:4.15.5-111.el9_0.noarch","product_id":"samba-common-0:4.15.5-111.el9_0.noarch","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common@4.15.5-111.el9_0?arch=noarch"}}},{"category":"product_version","name":"samba-pidl-0:4.15.5-111.el9_0.noarch","product":{"name":"samba-pidl-0:4.15.5-111.el9_0.noarch","product_id":"samba-pidl-0:4.15.5-111.el9_0.noarch","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-pidl@4.15.5-111.el9_0?arch=noarch"}}}],"category":"architecture","name":"noarch"}],"category":"vendor","name":"Red Hat"}],"relationships":[{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"ctdb-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x"},"product_reference":"ctdb-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64"},"product_reference":"ctdb-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.src as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src"},"product_reference":"samba-0:4.15.5-111.el9_0.src","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-0:4.15.5-111.el9_0.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch"},"product_reference":"samba-common-0:4.15.5-111.el9_0.noarch","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-pidl-0:4.15.5-111.el9_0.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch"},"product_reference":"samba-pidl-0:4.15.5-111.el9_0.noarch","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winexe-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winexe-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"ctdb-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x"},"product_reference":"ctdb-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64"},"product_reference":"ctdb-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.src as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src"},"product_reference":"samba-0:4.15.5-111.el9_0.src","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-0:4.15.5-111.el9_0.noarch as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch"},"product_reference":"samba-common-0:4.15.5-111.el9_0.noarch","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-pidl-0:4.15.5-111.el9_0.noarch as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch"},"product_reference":"samba-pidl-0:4.15.5-111.el9_0.noarch","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winexe-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winexe-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"ctdb-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x"},"product_reference":"ctdb-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64"},"product_reference":"ctdb-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.src as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src"},"product_reference":"samba-0:4.15.5-111.el9_0.src","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-0:4.15.5-111.el9_0.noarch as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch"},"product_reference":"samba-common-0:4.15.5-111.el9_0.noarch","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-pidl-0:4.15.5-111.el9_0.noarch as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch"},"product_reference":"samba-pidl-0:4.15.5-111.el9_0.noarch","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winexe-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winexe-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"ctdb-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x"},"product_reference":"ctdb-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64"},"product_reference":"ctdb-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.src as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src"},"product_reference":"samba-0:4.15.5-111.el9_0.src","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-0:4.15.5-111.el9_0.noarch as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch"},"product_reference":"samba-common-0:4.15.5-111.el9_0.noarch","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-pidl-0:4.15.5-111.el9_0.noarch as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch"},"product_reference":"samba-pidl-0:4.15.5-111.el9_0.noarch","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winexe-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winexe-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Enterprise Linux 6","product_id":"red_hat_enterprise_linux_6:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_enterprise_linux_6"},{"category":"default_component_of","full_product_name":{"name":"samba4 as a component of Red Hat Enterprise Linux 6","product_id":"red_hat_enterprise_linux_6:samba4"},"product_reference":"samba4","relates_to_product_reference":"red_hat_enterprise_linux_6"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Enterprise Linux 7","product_id":"red_hat_enterprise_linux_7:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_enterprise_linux_7"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Enterprise Linux 8","product_id":"red_hat_enterprise_linux_8:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_enterprise_linux_8"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Enterprise Linux 9","product_id":"red_hat_enterprise_linux_9:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_enterprise_linux_9"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Storage 3","product_id":"red_hat_storage_3:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_storage_3"}]},"vulnerabilities":[{"cve":"CVE-2023-4091","discovery_date":"2023-10-03T00:00:00+00:00","ids":[{"system_name":"Red Hat Bugzilla ID","text":"2241882"}],"notes":[{"category":"description","text":"A vulnerability was discovered in Samba, where the flaw allows SMB clients to truncate files, even with read-only permissions when the Samba VFS module \"acl_xattr\" is configured with \"acl_xattr:ignore system acls = yes\". The SMB protocol allows opening files when the client requests read-only access but then implicitly truncates the opened file to 0 bytes if the client specifies a separate OVERWRITE create disposition request. The issue arises in configurations that bypass kernel file system permissions checks, relying solely on Samba's permissions.","title":"Vulnerability description"},{"category":"summary","text":"SMB clients can truncate files with read-only permissions","title":"Vulnerability summary"},{"category":"other","text":"The vulnerability primarily affects Samba configurations using the \"acl_xattr\" module with the \"acl_xattr:ignore system acls = yes\" setting.","title":"Statement"},{"category":"general","text":"The CVSS score(s) listed for this vulnerability do not reflect the associated product's status, and are included for informational purposes to better understand the severity of this vulnerability.","title":"CVSS score applicability"}],"product_status":{"fixed":["AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64"],"known_affected":["red_hat_enterprise_linux_6:samba","red_hat_enterprise_linux_6:samba4","red_hat_enterprise_linux_7:samba","red_hat_enterprise_linux_8:samba","red_hat_enterprise_linux_9:samba","red_hat_storage_3:samba"]},"references":[{"category":"self","summary":"Canonical URL","url":"https://access.redhat.com/security/cve/CVE-2023-4091"},{"category":"external","summary":"RHBZ#2241882","url":"https://bugzilla.redhat.com/show_bug.cgi?id=2241882"},{"category":"external","summary":"https://www.cve.org/CVERecord?id=CVE-2023-4091","url":"https://www.cve.org/CVERecord?id=CVE-2023-4091"},{"category":"external","summary":"https://nvd.nist.gov/vuln/detail/CVE-2023-4091","url":"https://nvd.nist.gov/vuln/detail/CVE-2023-4091"},{"category":"external","summary":"https://bugzilla.samba.org/show_bug.cgi?id=15439","url":"https://bugzilla.samba.org/show_bug.cgi?id=15439"},{"category":"external","summary":"https://www.samba.org/samba/security/CVE-2023-4091.html","url":"https://www.samba.org/samba/security/CVE-2023-4091.html"}],"release_date":"2023-10-10T00:00:00+00:00","remediations":[{"category":"vendor_fix","details":"For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nAfter installing this update, the smb service will be restarted automatically.","product_ids":["AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64"],"url":"https://access.redhat.com/errata/RHSA-2023:6209"},{"category":"workaround","details":"The vulnerability is most commonly associated with the \"acl_xattr\" module and can be mitigated by setting:\n~~~\n\"acl_xattr:ignore system acls = no\"\n~~~","product_ids":["AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","red_hat_enterprise_linux_6:samba","red_hat_enterprise_linux_6:samba4","red_hat_enterprise_linux_7:samba","red_hat_enterprise_linux_8:samba","red_hat_enterprise_linux_9:samba","red_hat_storage_3:samba"]},{"category":"no_fix_planned","details":"Out of support scope","product_ids":["red_hat_enterprise_linux_6:samba","red_hat_enterprise_linux_6:samba4","red_hat_enterprise_linux_7:samba"]},{"category":"none_available","details":"Affected","product_ids":["red_hat_enterprise_linux_8:samba","red_hat_enterprise_linux_9:samba","red_hat_storage_3:samba"]}],"scores":[{"cvss_v3":{"attackComplexity":"LOW","attackVector":"NETWORK","availabilityImpact":"NONE","baseScore":6.5,"baseSeverity":"MEDIUM","confidentialityImpact":"NONE","integrityImpact":"HIGH","privilegesRequired":"LOW","scope":"UNCHANGED","userInteraction":"NONE","vectorString":"CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N","version":"3.1"},"products":["AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","red_hat_enterprise_linux_6:samba","red_hat_enterprise_linux_6:samba4","red_hat_enterprise_linux_7:samba","red_hat_enterprise_linux_8:samba","red_hat_enterprise_linux_9:samba","red_hat_storage_3:samba"]}],"threats":[{"category":"impact","details":"Moderate","product_ids":["AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","red_hat_enterprise_linux_6:samba","red_hat_enterprise_linux_6:samba4","red_hat_enterprise_linux_7:samba","red_hat_enterprise_linux_8:samba","red_hat_enterprise_linux_9:samba","red_hat_storage_3:samba"]}],"title":"SMB clients can truncate files with read-only permissions"}]} +{"document":{"aggregate_severity":{"namespace":"https://access.redhat.com/security/updates/classification/","text":"moderate"},"category":"csaf_vex","csaf_version":"2.0","distribution":{"text":"Copyright © Red Hat, Inc. All rights reserved.","tlp":{"label":"WHITE","url":"https://www.first.org/tlp/"}},"lang":"en","notes":[{"category":"legal_disclaimer","text":"This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.","title":"Terms of Use"}],"publisher":{"category":"vendor","contact_details":"https://access.redhat.com/security/team/contact/","issuing_authority":"Red Hat Product Security is responsible for vulnerability handling across all Red Hat offerings.","name":"Red Hat Product Security","namespace":"https://www.redhat.com"},"references":[{"category":"self","summary":"Canonical URL","url":"https://access.redhat.com/security/data/csaf/beta/vex/2023/cve-2023-3961.json"}],"title":"smbd allows client access to unix domain sockets on the file system as root","tracking":{"current_release_date":"2023-10-31T10:05:15+00:00","generator":{"date":"2023-10-31T13:28:48+00:00","engine":{"name":"Red Hat SDEngine","version":"3.23.0"}},"id":"CVE-2023-3961","initial_release_date":"2023-10-10T00:00:00+00:00","revision_history":[{"date":"2023-10-10T00:00:00+00:00","number":"1","summary":"Initial version"},{"date":"2023-10-31T10:05:15+00:00","number":"2","summary":"Current version"}],"status":"final","version":"1"}},"product_tree":{"branches":[{"branches":[{"category":"product_name","name":"Red Hat Enterprise Linux 6","product":{"name":"Red Hat Enterprise Linux 6","product_id":"red_hat_enterprise_linux_6","product_identification_helper":{"cpe":"cpe:/o:redhat:enterprise_linux:6"}}},{"category":"product_name","name":"Red Hat Enterprise Linux 7","product":{"name":"Red Hat Enterprise Linux 7","product_id":"red_hat_enterprise_linux_7","product_identification_helper":{"cpe":"cpe:/o:redhat:enterprise_linux:7"}}},{"category":"product_name","name":"Red Hat Enterprise Linux 8","product":{"name":"Red Hat Enterprise Linux 8","product_id":"red_hat_enterprise_linux_8","product_identification_helper":{"cpe":"cpe:/o:redhat:enterprise_linux:8"}}},{"category":"product_name","name":"Red Hat Enterprise Linux 9","product":{"name":"Red Hat Enterprise Linux 9","product_id":"red_hat_enterprise_linux_9","product_identification_helper":{"cpe":"cpe:/o:redhat:enterprise_linux:9"}}},{"category":"product_name","name":"Red Hat Storage 3","product":{"name":"Red Hat Storage 3","product_id":"red_hat_storage_3","product_identification_helper":{"cpe":"cpe:/a:redhat:storage:3"}}},{"branches":[{"category":"product_name","name":"Red Hat Enterprise Linux AppStream EUS (v.9.0)","product":{"name":"Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS","product_identification_helper":{"cpe":"cpe:/a:redhat:rhel_eus:9.0::appstream"}}},{"category":"product_name","name":"Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product":{"name":"Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS","product_identification_helper":{"cpe":"cpe:/a:redhat:rhel_eus:9.0::resilientstorage"}}},{"category":"product_name","name":"Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product":{"name":"Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS","product_identification_helper":{"cpe":"cpe:/o:redhat:rhel_eus:9.0::baseos"}}},{"category":"product_name","name":"Red Hat CodeReady Linux Builder EUS (v.9.0)","product":{"name":"Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS","product_identification_helper":{"cpe":"cpe:/a:redhat:rhel_eus:9.0::crb"}}}],"category":"product_family","name":"Red Hat Enterprise Linux"},{"category":"product_version","name":"samba","product":{"name":"samba","product_id":"samba"}},{"category":"product_version","name":"samba4","product":{"name":"samba4","product_id":"samba4"}},{"branches":[{"category":"product_version","name":"samba-client-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-client-0:4.15.5-111.el9_0.aarch64","product_id":"samba-client-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","product_id":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","product_id":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-vfs-iouring@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","product_id":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","product_id":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-debugsource-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-debugsource-0:4.15.5-111.el9_0.aarch64","product_id":"samba-debugsource-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debugsource@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/ctdb-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-vfs-iouring-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","product_id":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules-debuginfo@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"libsmbclient-0:4.15.5-111.el9_0.aarch64","product":{"name":"libsmbclient-0:4.15.5-111.el9_0.aarch64","product_id":"libsmbclient-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"libwbclient-0:4.15.5-111.el9_0.aarch64","product":{"name":"libwbclient-0:4.15.5-111.el9_0.aarch64","product_id":"libwbclient-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"python3-samba-0:4.15.5-111.el9_0.aarch64","product":{"name":"python3-samba-0:4.15.5-111.el9_0.aarch64","product_id":"python3-samba-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-0:4.15.5-111.el9_0.aarch64","product_id":"samba-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-client-libs-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-client-libs-0:4.15.5-111.el9_0.aarch64","product_id":"samba-client-libs-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-common-libs-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-common-libs-0:4.15.5-111.el9_0.aarch64","product_id":"samba-common-libs-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-common-tools-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-common-tools-0:4.15.5-111.el9_0.aarch64","product_id":"samba-common-tools-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-libs-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-libs-0:4.15.5-111.el9_0.aarch64","product_id":"samba-libs-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-winbind-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-winbind-0:4.15.5-111.el9_0.aarch64","product_id":"samba-winbind-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","product_id":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","product":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","product_id":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-devel@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64","product":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64","product_id":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-devel@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-devel-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-devel-0:4.15.5-111.el9_0.aarch64","product_id":"samba-devel-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-devel@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-test-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-test-0:4.15.5-111.el9_0.aarch64","product_id":"samba-test-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test@4.15.5-111.el9_0?arch=aarch64"}}},{"category":"product_version","name":"samba-test-libs-0:4.15.5-111.el9_0.aarch64","product":{"name":"samba-test-libs-0:4.15.5-111.el9_0.aarch64","product_id":"samba-test-libs-0:4.15.5-111.el9_0.aarch64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs@4.15.5-111.el9_0?arch=aarch64"}}}],"category":"architecture","name":"aarch64"},{"branches":[{"category":"product_version","name":"samba-client-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-client-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-client-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-vfs-iouring@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debugsource@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/ctdb-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-vfs-iouring-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules-debuginfo@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"ctdb-0:4.15.5-111.el9_0.ppc64le","product":{"name":"ctdb-0:4.15.5-111.el9_0.ppc64le","product_id":"ctdb-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/ctdb@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"libsmbclient-0:4.15.5-111.el9_0.ppc64le","product":{"name":"libsmbclient-0:4.15.5-111.el9_0.ppc64le","product_id":"libsmbclient-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"libwbclient-0:4.15.5-111.el9_0.ppc64le","product":{"name":"libwbclient-0:4.15.5-111.el9_0.ppc64le","product_id":"libwbclient-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"python3-samba-0:4.15.5-111.el9_0.ppc64le","product":{"name":"python3-samba-0:4.15.5-111.el9_0.ppc64le","product_id":"python3-samba-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-libs-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-libs-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-libs-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-winbind-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-winbind-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-winbind-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","product":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","product_id":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-devel@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","product":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","product_id":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-devel@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-devel-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-devel-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-devel-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-devel@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-test-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-test-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-test-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test@4.15.5-111.el9_0?arch=ppc64le"}}},{"category":"product_version","name":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le","product":{"name":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le","product_id":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs@4.15.5-111.el9_0?arch=ppc64le"}}}],"category":"architecture","name":"ppc64le"},{"branches":[{"category":"product_version","name":"samba-client-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-client-0:4.15.5-111.el9_0.x86_64","product_id":"samba-client-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","product_id":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","product_id":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-vfs-iouring@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winexe-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winexe-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winexe-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winexe@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-debugsource-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-debugsource-0:4.15.5-111.el9_0.x86_64","product_id":"samba-debugsource-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debugsource@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/ctdb-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-vfs-iouring-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winexe-debuginfo@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"ctdb-0:4.15.5-111.el9_0.x86_64","product":{"name":"ctdb-0:4.15.5-111.el9_0.x86_64","product_id":"ctdb-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/ctdb@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"libsmbclient-0:4.15.5-111.el9_0.x86_64","product":{"name":"libsmbclient-0:4.15.5-111.el9_0.x86_64","product_id":"libsmbclient-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"libwbclient-0:4.15.5-111.el9_0.x86_64","product":{"name":"libwbclient-0:4.15.5-111.el9_0.x86_64","product_id":"libwbclient-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"python3-samba-0:4.15.5-111.el9_0.x86_64","product":{"name":"python3-samba-0:4.15.5-111.el9_0.x86_64","product_id":"python3-samba-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-0:4.15.5-111.el9_0.x86_64","product_id":"samba-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-client-libs-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-client-libs-0:4.15.5-111.el9_0.x86_64","product_id":"samba-client-libs-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-common-libs-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-common-libs-0:4.15.5-111.el9_0.x86_64","product_id":"samba-common-libs-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-common-tools-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-common-tools-0:4.15.5-111.el9_0.x86_64","product_id":"samba-common-tools-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-libs-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-libs-0:4.15.5-111.el9_0.x86_64","product_id":"samba-libs-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winbind-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winbind-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winbind-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","product_id":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","product":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","product_id":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-devel@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64","product":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64","product_id":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-devel@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-devel-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-devel-0:4.15.5-111.el9_0.x86_64","product_id":"samba-devel-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-devel@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-test-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-test-0:4.15.5-111.el9_0.x86_64","product_id":"samba-test-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test@4.15.5-111.el9_0?arch=x86_64"}}},{"category":"product_version","name":"samba-test-libs-0:4.15.5-111.el9_0.x86_64","product":{"name":"samba-test-libs-0:4.15.5-111.el9_0.x86_64","product_id":"samba-test-libs-0:4.15.5-111.el9_0.x86_64","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs@4.15.5-111.el9_0?arch=x86_64"}}}],"category":"architecture","name":"x86_64"},{"branches":[{"category":"product_version","name":"samba-client-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-client-0:4.15.5-111.el9_0.s390x","product_id":"samba-client-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x","product_id":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","product_id":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-vfs-iouring@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x","product_id":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","product_id":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-debugsource-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-debugsource-0:4.15.5-111.el9_0.s390x","product_id":"samba-debugsource-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debugsource@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/ctdb-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-vfs-iouring-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","product_id":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules-debuginfo@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"ctdb-0:4.15.5-111.el9_0.s390x","product":{"name":"ctdb-0:4.15.5-111.el9_0.s390x","product_id":"ctdb-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/ctdb@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"libsmbclient-0:4.15.5-111.el9_0.s390x","product":{"name":"libsmbclient-0:4.15.5-111.el9_0.s390x","product_id":"libsmbclient-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"libwbclient-0:4.15.5-111.el9_0.s390x","product":{"name":"libwbclient-0:4.15.5-111.el9_0.s390x","product_id":"libwbclient-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"python3-samba-0:4.15.5-111.el9_0.s390x","product":{"name":"python3-samba-0:4.15.5-111.el9_0.s390x","product_id":"python3-samba-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-0:4.15.5-111.el9_0.s390x","product_id":"samba-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-client-libs-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-client-libs-0:4.15.5-111.el9_0.s390x","product_id":"samba-client-libs-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-common-libs-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-common-libs-0:4.15.5-111.el9_0.s390x","product_id":"samba-common-libs-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-common-tools-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-common-tools-0:4.15.5-111.el9_0.s390x","product_id":"samba-common-tools-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-libs-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-libs-0:4.15.5-111.el9_0.s390x","product_id":"samba-libs-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-winbind-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-winbind-0:4.15.5-111.el9_0.s390x","product_id":"samba-winbind-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x","product_id":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x","product":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x","product_id":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-devel@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"libwbclient-devel-0:4.15.5-111.el9_0.s390x","product":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.s390x","product_id":"libwbclient-devel-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-devel@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-devel-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-devel-0:4.15.5-111.el9_0.s390x","product_id":"samba-devel-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-devel@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-test-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-test-0:4.15.5-111.el9_0.s390x","product_id":"samba-test-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test@4.15.5-111.el9_0?arch=s390x"}}},{"category":"product_version","name":"samba-test-libs-0:4.15.5-111.el9_0.s390x","product":{"name":"samba-test-libs-0:4.15.5-111.el9_0.s390x","product_id":"samba-test-libs-0:4.15.5-111.el9_0.s390x","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs@4.15.5-111.el9_0?arch=s390x"}}}],"category":"architecture","name":"s390x"},{"branches":[{"category":"product_version","name":"libsmbclient-0:4.15.5-111.el9_0.i686","product":{"name":"libsmbclient-0:4.15.5-111.el9_0.i686","product_id":"libsmbclient-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"libwbclient-0:4.15.5-111.el9_0.i686","product":{"name":"libwbclient-0:4.15.5-111.el9_0.i686","product_id":"libwbclient-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"python3-samba-0:4.15.5-111.el9_0.i686","product":{"name":"python3-samba-0:4.15.5-111.el9_0.i686","product_id":"python3-samba-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-client-libs-0:4.15.5-111.el9_0.i686","product":{"name":"samba-client-libs-0:4.15.5-111.el9_0.i686","product_id":"samba-client-libs-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-libs-0:4.15.5-111.el9_0.i686","product":{"name":"samba-libs-0:4.15.5-111.el9_0.i686","product_id":"samba-libs-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-winbind-modules-0:4.15.5-111.el9_0.i686","product":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.i686","product_id":"samba-winbind-modules-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-debugsource-0:4.15.5-111.el9_0.i686","product":{"name":"samba-debugsource-0:4.15.5-111.el9_0.i686","product_id":"samba-debugsource-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debugsource@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/ctdb-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/python3-samba-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-client-libs-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-libs-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common-tools-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-krb5-printing-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-libs-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-test-libs-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-clients-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-krb5-locator-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","product":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","product_id":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-winbind-modules-debuginfo@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"libsmbclient-devel-0:4.15.5-111.el9_0.i686","product":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.i686","product_id":"libsmbclient-devel-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/libsmbclient-devel@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"libwbclient-devel-0:4.15.5-111.el9_0.i686","product":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.i686","product_id":"libwbclient-devel-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/libwbclient-devel@4.15.5-111.el9_0?arch=i686"}}},{"category":"product_version","name":"samba-devel-0:4.15.5-111.el9_0.i686","product":{"name":"samba-devel-0:4.15.5-111.el9_0.i686","product_id":"samba-devel-0:4.15.5-111.el9_0.i686","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-devel@4.15.5-111.el9_0?arch=i686"}}}],"category":"architecture","name":"i686"},{"branches":[{"category":"product_version","name":"samba-0:4.15.5-111.el9_0.src","product":{"name":"samba-0:4.15.5-111.el9_0.src","product_id":"samba-0:4.15.5-111.el9_0.src","product_identification_helper":{"purl":"pkg:rpm/redhat/samba@4.15.5-111.el9_0?arch=src"}}}],"category":"architecture","name":"src"},{"branches":[{"category":"product_version","name":"samba-common-0:4.15.5-111.el9_0.noarch","product":{"name":"samba-common-0:4.15.5-111.el9_0.noarch","product_id":"samba-common-0:4.15.5-111.el9_0.noarch","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-common@4.15.5-111.el9_0?arch=noarch"}}},{"category":"product_version","name":"samba-pidl-0:4.15.5-111.el9_0.noarch","product":{"name":"samba-pidl-0:4.15.5-111.el9_0.noarch","product_id":"samba-pidl-0:4.15.5-111.el9_0.noarch","product_identification_helper":{"purl":"pkg:rpm/redhat/samba-pidl@4.15.5-111.el9_0?arch=noarch"}}}],"category":"architecture","name":"noarch"}],"category":"vendor","name":"Red Hat"}],"relationships":[{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"ctdb-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x"},"product_reference":"ctdb-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64"},"product_reference":"ctdb-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.src as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src"},"product_reference":"samba-0:4.15.5-111.el9_0.src","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-0:4.15.5-111.el9_0.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch"},"product_reference":"samba-common-0:4.15.5-111.el9_0.noarch","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-pidl-0:4.15.5-111.el9_0.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch"},"product_reference":"samba-pidl-0:4.15.5-111.el9_0.noarch","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winexe-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winexe-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.0)","product_id":"AppStream-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"AppStream-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"ctdb-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x"},"product_reference":"ctdb-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64"},"product_reference":"ctdb-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.src as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src"},"product_reference":"samba-0:4.15.5-111.el9_0.src","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-0:4.15.5-111.el9_0.noarch as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch"},"product_reference":"samba-common-0:4.15.5-111.el9_0.noarch","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-pidl-0:4.15.5-111.el9_0.noarch as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch"},"product_reference":"samba-pidl-0:4.15.5-111.el9_0.noarch","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winexe-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winexe-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.0)","product_id":"BaseOS-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"BaseOS-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"ctdb-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x"},"product_reference":"ctdb-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64"},"product_reference":"ctdb-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.src as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src"},"product_reference":"samba-0:4.15.5-111.el9_0.src","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-0:4.15.5-111.el9_0.noarch as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch"},"product_reference":"samba-common-0:4.15.5-111.el9_0.noarch","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-pidl-0:4.15.5-111.el9_0.noarch as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch"},"product_reference":"samba-pidl-0:4.15.5-111.el9_0.noarch","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winexe-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winexe-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.0)","product_id":"CRB-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"CRB-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"ctdb-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x"},"product_reference":"ctdb-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64"},"product_reference":"ctdb-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"libwbclient-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64"},"product_reference":"python3-samba-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.src as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src"},"product_reference":"samba-0:4.15.5-111.el9_0.src","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-0:4.15.5-111.el9_0.noarch as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch"},"product_reference":"samba-common-0:4.15.5-111.el9_0.noarch","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-tools-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-debugsource-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-debugsource-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-devel-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-devel-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-pidl-0:4.15.5-111.el9_0.noarch as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch"},"product_reference":"samba-pidl-0:4.15.5-111.el9_0.noarch","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-libs-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winexe-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winexe-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64 as a component of Red Hat Enterprise Linux Resilient Storage EUS (v.9.0)","product_id":"ResilientStorage-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64"},"product_reference":"samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","relates_to_product_reference":"ResilientStorage-9.0.0.Z.EUS"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Enterprise Linux 6","product_id":"red_hat_enterprise_linux_6:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_enterprise_linux_6"},{"category":"default_component_of","full_product_name":{"name":"samba4 as a component of Red Hat Enterprise Linux 6","product_id":"red_hat_enterprise_linux_6:samba4"},"product_reference":"samba4","relates_to_product_reference":"red_hat_enterprise_linux_6"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Enterprise Linux 7","product_id":"red_hat_enterprise_linux_7:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_enterprise_linux_7"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Enterprise Linux 8","product_id":"red_hat_enterprise_linux_8:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_enterprise_linux_8"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Enterprise Linux 9","product_id":"red_hat_enterprise_linux_9:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_enterprise_linux_9"},{"category":"default_component_of","full_product_name":{"name":"samba as a component of Red Hat Storage 3","product_id":"red_hat_storage_3:samba"},"product_reference":"samba","relates_to_product_reference":"red_hat_storage_3"}]},"vulnerabilities":[{"cve":"CVE-2023-3961","cwe":{"id":"CWE-22","name":"Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal')"},"discovery_date":"2023-10-03T00:00:00+00:00","ids":[{"system_name":"Red Hat Bugzilla ID","text":"2241881"}],"notes":[{"category":"description","text":"A path traversal vulnerability was identified in Samba when processing client pipe names connecting to Unix domain sockets within a private directory. Samba typically uses this mechanism to connect SMB clients to remote procedure call (RPC) services like SAMR LSA or SPOOLSS, which Samba initiates on demand. However, due to inadequate sanitization of incoming client pipe names, allowing a client to send a pipe name containing Unix directory traversal characters (../). This could result in SMB clients connecting as root to Unix domain sockets outside the private directory. If an attacker or client managed to send a pipe name resolving to an external service using an existing Unix domain socket, it could potentially lead to unauthorized access to the service and consequential adverse events, including compromise or service crashes.","title":"Vulnerability description"},{"category":"summary","text":"smbd allows client access to unix domain sockets on the file system as root","title":"Vulnerability summary"},{"category":"general","text":"The CVSS score(s) listed for this vulnerability do not reflect the associated product's status, and are included for informational purposes to better understand the severity of this vulnerability.","title":"CVSS score applicability"}],"product_status":{"fixed":["AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64"],"known_affected":["red_hat_enterprise_linux_6:samba","red_hat_enterprise_linux_6:samba4","red_hat_enterprise_linux_7:samba","red_hat_enterprise_linux_8:samba","red_hat_enterprise_linux_9:samba","red_hat_storage_3:samba"]},"references":[{"category":"self","summary":"Canonical URL","url":"https://access.redhat.com/security/cve/CVE-2023-3961"},{"category":"external","summary":"RHBZ#2241881","url":"https://bugzilla.redhat.com/show_bug.cgi?id=2241881"},{"category":"external","summary":"https://www.cve.org/CVERecord?id=CVE-2023-3961","url":"https://www.cve.org/CVERecord?id=CVE-2023-3961"},{"category":"external","summary":"https://nvd.nist.gov/vuln/detail/CVE-2023-3961","url":"https://nvd.nist.gov/vuln/detail/CVE-2023-3961"},{"category":"external","summary":"https://bugzilla.samba.org/show_bug.cgi?id=15422","url":"https://bugzilla.samba.org/show_bug.cgi?id=15422"},{"category":"external","summary":"https://www.samba.org/samba/security/CVE-2023-3961.html","url":"https://www.samba.org/samba/security/CVE-2023-3961.html"}],"release_date":"2023-10-10T00:00:00+00:00","remediations":[{"category":"vendor_fix","details":"For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nAfter installing this update, the smb service will be restarted automatically.","product_ids":["AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64"],"url":"https://access.redhat.com/errata/RHSA-2023:6209"},{"category":"workaround","details":"Mitigation for this issue is either not available or the currently available options don't meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.","product_ids":["AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","red_hat_enterprise_linux_6:samba","red_hat_enterprise_linux_6:samba4","red_hat_enterprise_linux_7:samba","red_hat_enterprise_linux_8:samba","red_hat_enterprise_linux_9:samba","red_hat_storage_3:samba"]},{"category":"no_fix_planned","details":"Out of support scope","product_ids":["red_hat_enterprise_linux_6:samba","red_hat_enterprise_linux_6:samba4","red_hat_enterprise_linux_7:samba"]},{"category":"none_available","details":"Affected","product_ids":["red_hat_enterprise_linux_8:samba","red_hat_enterprise_linux_9:samba","red_hat_storage_3:samba"]}],"scores":[{"cvss_v3":{"attackComplexity":"HIGH","attackVector":"NETWORK","availabilityImpact":"LOW","baseScore":6.5,"baseSeverity":"MEDIUM","confidentialityImpact":"NONE","integrityImpact":"HIGH","privilegesRequired":"NONE","scope":"UNCHANGED","userInteraction":"NONE","vectorString":"CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:H/A:L","version":"3.1"},"products":["AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","red_hat_enterprise_linux_6:samba","red_hat_enterprise_linux_6:samba4","red_hat_enterprise_linux_7:samba","red_hat_enterprise_linux_8:samba","red_hat_enterprise_linux_9:samba","red_hat_storage_3:samba"]}],"threats":[{"category":"impact","details":"Moderate","product_ids":["AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","AppStream-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","AppStream-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","AppStream-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","BaseOS-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","BaseOS-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","BaseOS-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","CRB-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","CRB-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","CRB-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:ctdb-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libsmbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:libwbclient-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:python3-samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.src","ResilientStorage-9.0.0.Z.EUS:samba-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-client-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-common-tools-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-debugsource-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-devel-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-krb5-printing-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-pidl-0:4.15.5-111.el9_0.noarch","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-test-libs-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-vfs-iouring-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-clients-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-krb5-locator-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.aarch64","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.i686","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.ppc64le","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.s390x","ResilientStorage-9.0.0.Z.EUS:samba-winbind-modules-debuginfo-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-0:4.15.5-111.el9_0.x86_64","ResilientStorage-9.0.0.Z.EUS:samba-winexe-debuginfo-0:4.15.5-111.el9_0.x86_64","red_hat_enterprise_linux_6:samba","red_hat_enterprise_linux_6:samba4","red_hat_enterprise_linux_7:samba","red_hat_enterprise_linux_8:samba","red_hat_enterprise_linux_9:samba","red_hat_storage_3:samba"]}],"title":"smbd allows client access to unix domain sockets on the file system as root"}]} diff --git a/rhel/vex/testdata/server.txt b/rhel/vex/testdata/server.txt new file mode 100644 index 000000000..a38a3ac39 --- /dev/null +++ b/rhel/vex/testdata/server.txt @@ -0,0 +1,40199 @@ +server/csaf_vex_2023-10-31.tar.zst last-modified:Mon, 11 Dec 2023 00:00:00 UTC\nanother:header +-- /archive_latest.txt -- +csaf_vex_2023-10-31.tar.zst +-- /changes.csv etag:something -- +"2023/cve-2023-0030.json","2023-12-10T00:00:00+00:00" +"2023/cve-2023-0044.json","2023-12-12T00:00:00+00:00" +"2023/cve-2023-0118.json","2023-12-12T00:00:00+00:00" +-- /2023/cve-2023-0044.json -- +{ + "document": { + "aggregate_severity": { + "namespace": "https://access.redhat.com/security/updates/classification/", + "text": "low" + }, + "category": "csaf_vex", + "csaf_version": "2.0", + "distribution": { + "text": "Copyright © Red Hat, Inc. All rights reserved.", + "tlp": { + "label": "WHITE", + "url": "https://www.first.org/tlp/" + } + }, + "lang": "en", + "notes": [ + { + "category": "legal_disclaimer", + "text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.", + "title": "Terms of Use" + } + ], + "publisher": { + "category": "vendor", + "contact_details": "https://access.redhat.com/security/team/contact/", + "issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat offerings.", + "name": "Red Hat Product Security", + "namespace": "https://www.redhat.com" + }, + "references": [ + { + "category": "self", + "summary": "Canonical URL", + "url": "https://access.redhat.com/security/data/csaf/beta/vex/2023/cve-2023-0044.json" + } + ], + "title": "quarkus-vertx-http: a cross-site attack may be initiated which might lead to the Information Disclosure", + "tracking": { + "current_release_date": "2023-11-13T11:31:31+00:00", + "generator": { + "date": "2023-11-13T12:16:30+00:00", + "engine": { + "name": "Red Hat SDEngine", + "version": "3.24.0" + } + }, + "id": "CVE-2023-0044", + "initial_release_date": "2023-01-04T00:00:00+00:00", + "revision_history": [ + { + "date": "2023-01-04T00:00:00+00:00", + "number": "1", + "summary": "Initial version" + }, + { + "date": "2023-11-13T11:31:31+00:00", + "number": "2", + "summary": "Current version" + } + ], + "status": "final", + "version": "1" + } + }, + "product_tree": { + "branches": [ + { + "branches": [ + { + "category": "product_name", + "name": "A-MQ Clients 2", + "product": { + "name": "A-MQ Clients 2", + "product_id": "a-mq_clients_2", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:a_mq_clients:2" + } + } + }, + { + "category": "product_name", + "name": "Red Hat build of Quarkus", + "product": { + "name": "Red Hat build of Quarkus", + "product_id": "red_hat_build_of_quarkus", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:quarkus:2" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Integration Camel K", + "product": { + "name": "Red Hat Integration Camel K", + "product_id": "red_hat_integration_camel_k", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:integration:1" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Integration Camel Quarkus", + "product": { + "name": "Red Hat Integration Camel Quarkus", + "product_id": "red_hat_integration_camel_quarkus", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:camel_quarkus:2" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Integration Change Data Capture", + "product": { + "name": "Red Hat Integration Change Data Capture", + "product_id": "red_hat_integration_change_data_capture", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:integration:1" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Integration Service Registry", + "product": { + "name": "Red Hat Integration Service Registry", + "product_id": "red_hat_integration_service_registry", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:service_registry:2" + } + } + }, + { + "category": "product_name", + "name": "Red Hat JBoss Enterprise Application Platform 7", + "product": { + "name": "Red Hat JBoss Enterprise Application Platform 7", + "product_id": "red_hat_jboss_enterprise_application_platform_7", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jboss_enterprise_application_platform:7" + } + } + }, + { + "category": "product_name", + "name": "Red Hat JBoss Enterprise Application Platform Expansion Pack", + "product": { + "name": "Red Hat JBoss Enterprise Application Platform Expansion Pack", + "product_id": "red_hat_jboss_enterprise_application_platform_expansion_pack", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jbosseapxp" + } + } + }, + { + "category": "product_name", + "name": "Red Hat JBoss Fuse 7", + "product": { + "name": "Red Hat JBoss Fuse 7", + "product_id": "red_hat_jboss_fuse_7", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jboss_fuse:7" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Process Automation 7", + "product": { + "name": "Red Hat Process Automation 7", + "product_id": "red_hat_process_automation_7", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:jboss_enterprise_bpms_platform:7" + } + } + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat build of Quarkus 2.7.7", + "product": { + "name": "Red Hat build of Quarkus 2.7.7", + "product_id": "Red Hat build of Quarkus 2.7.7", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:quarkus:2.7" + } + } + } + ], + "category": "product_family", + "name": "Red Hat build of Quarkus" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat build of Quarkus", + "product": { + "name": "Red Hat build of Quarkus", + "product_id": "Red Hat build of Quarkus", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:quarkus:2.13" + } + } + } + ], + "category": "product_family", + "name": "Red Hat build of Quarkus" + }, + { + "category": "product_version", + "name": "quarkus-vertx-http", + "product": { + "name": "quarkus-vertx-http", + "product_id": "quarkus-vertx-http" + } + }, + { + "category": "product_version", + "name": "io.quarkus/quarkus-vertx-http", + "product": { + "name": "io.quarkus/quarkus-vertx-http", + "product_id": "io.quarkus/quarkus-vertx-http" + } + } + ], + "category": "vendor", + "name": "Red Hat" + } + ], + "relationships": [ + { + "category": "default_component_of", + "full_product_name": { + "name": "quarkus-vertx-http as a component of A-MQ Clients 2", + "product_id": "a-mq_clients_2:quarkus-vertx-http" + }, + "product_reference": "quarkus-vertx-http", + "relates_to_product_reference": "a-mq_clients_2" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "io.quarkus/quarkus-vertx-http as a component of Red Hat build of Quarkus", + "product_id": "red_hat_build_of_quarkus:io.quarkus/quarkus-vertx-http" + }, + "product_reference": "io.quarkus/quarkus-vertx-http", + "relates_to_product_reference": "red_hat_build_of_quarkus" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "quarkus-vertx-http as a component of Red Hat Integration Camel K", + "product_id": "red_hat_integration_camel_k:quarkus-vertx-http" + }, + "product_reference": "quarkus-vertx-http", + "relates_to_product_reference": "red_hat_integration_camel_k" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "quarkus-vertx-http as a component of Red Hat Integration Camel Quarkus", + "product_id": "red_hat_integration_camel_quarkus:quarkus-vertx-http" + }, + "product_reference": "quarkus-vertx-http", + "relates_to_product_reference": "red_hat_integration_camel_quarkus" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "quarkus-vertx-http as a component of Red Hat Integration Change Data Capture", + "product_id": "red_hat_integration_change_data_capture:quarkus-vertx-http" + }, + "product_reference": "quarkus-vertx-http", + "relates_to_product_reference": "red_hat_integration_change_data_capture" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "quarkus-vertx-http as a component of Red Hat Integration Service Registry", + "product_id": "red_hat_integration_service_registry:quarkus-vertx-http" + }, + "product_reference": "quarkus-vertx-http", + "relates_to_product_reference": "red_hat_integration_service_registry" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "quarkus-vertx-http as a component of Red Hat JBoss Enterprise Application Platform 7", + "product_id": "red_hat_jboss_enterprise_application_platform_7:quarkus-vertx-http" + }, + "product_reference": "quarkus-vertx-http", + "relates_to_product_reference": "red_hat_jboss_enterprise_application_platform_7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "quarkus-vertx-http as a component of Red Hat JBoss Enterprise Application Platform Expansion Pack", + "product_id": "red_hat_jboss_enterprise_application_platform_expansion_pack:quarkus-vertx-http" + }, + "product_reference": "quarkus-vertx-http", + "relates_to_product_reference": "red_hat_jboss_enterprise_application_platform_expansion_pack" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "quarkus-vertx-http as a component of Red Hat JBoss Fuse 7", + "product_id": "red_hat_jboss_fuse_7:quarkus-vertx-http" + }, + "product_reference": "quarkus-vertx-http", + "relates_to_product_reference": "red_hat_jboss_fuse_7" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "quarkus-vertx-http as a component of Red Hat Process Automation 7", + "product_id": "red_hat_process_automation_7:quarkus-vertx-http" + }, + "product_reference": "quarkus-vertx-http", + "relates_to_product_reference": "red_hat_process_automation_7" + } + ] + }, + "vulnerabilities": [ + { + "acknowledgments": [ + { + "names": [ + "Paulo Lopes" + ], + "organization": "Red Hat", + "summary": "This issue was discovered by Red Hat." + } + ], + "cve": "CVE-2023-0044", + "discovery_date": "2023-01-04T00:00:00+00:00", + "flags": [ + { + "label": "vulnerable_code_not_present", + "product_ids": [ + "a-mq_clients_2:quarkus-vertx-http", + "red_hat_integration_camel_k:quarkus-vertx-http", + "red_hat_integration_camel_quarkus:quarkus-vertx-http", + "red_hat_integration_change_data_capture:quarkus-vertx-http", + "red_hat_integration_service_registry:quarkus-vertx-http", + "red_hat_jboss_enterprise_application_platform_7:quarkus-vertx-http", + "red_hat_jboss_enterprise_application_platform_expansion_pack:quarkus-vertx-http", + "red_hat_jboss_fuse_7:quarkus-vertx-http", + "red_hat_process_automation_7:quarkus-vertx-http" + ] + } + ], + "ids": [ + { + "system_name": "Red Hat Bugzilla ID", + "text": "2158081" + } + ], + "notes": [ + { + "category": "description", + "text": "A flaw was found in Quarkus. If the Quarkus Form Authentication session cookie Path attribute is set to `/`, then a cross-site attack may be initiated, which might lead to information disclosure.", + "title": "Vulnerability description" + }, + { + "category": "summary", + "text": "quarkus-vertx-http: a cross-site attack may be initiated which might lead to the Information Disclosure", + "title": "Vulnerability summary" + }, + { + "category": "general", + "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product's status, and are included for informational purposes to better understand the severity of this vulnerability.", + "title": "CVSS score applicability" + } + ], + "product_status": { + "fixed": [ + "Red Hat build of Quarkus", + "Red Hat build of Quarkus 2.7.7" + ], + "known_affected": [ + "red_hat_build_of_quarkus:io.quarkus/quarkus-vertx-http" + ], + "known_not_affected": [ + "a-mq_clients_2:quarkus-vertx-http", + "red_hat_integration_camel_k:quarkus-vertx-http", + "red_hat_integration_camel_quarkus:quarkus-vertx-http", + "red_hat_integration_change_data_capture:quarkus-vertx-http", + "red_hat_integration_service_registry:quarkus-vertx-http", + "red_hat_jboss_enterprise_application_platform_7:quarkus-vertx-http", + "red_hat_jboss_enterprise_application_platform_expansion_pack:quarkus-vertx-http", + "red_hat_jboss_fuse_7:quarkus-vertx-http", + "red_hat_process_automation_7:quarkus-vertx-http" + ] + }, + "references": [ + { + "category": "self", + "summary": "Canonical URL", + "url": "https://access.redhat.com/security/cve/CVE-2023-0044" + }, + { + "category": "external", + "summary": "RHBZ#2158081", + "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2158081" + }, + { + "category": "external", + "summary": "https://www.cve.org/CVERecord?id=CVE-2023-0044", + "url": "https://www.cve.org/CVERecord?id=CVE-2023-0044" + }, + { + "category": "external", + "summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-0044", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0044" + } + ], + "release_date": "2023-01-04T00:00:00+00:00", + "remediations": [ + { + "category": "vendor_fix", + "details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258", + "product_ids": [ + "Red Hat build of Quarkus 2.7.7" + ], + "url": "https://access.redhat.com/errata/RHSA-2023:1006" + }, + { + "category": "vendor_fix", + "details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258", + "product_ids": [ + "Red Hat build of Quarkus" + ], + "url": "https://access.redhat.com/errata/RHSA-2023:0758" + }, + { + "category": "workaround", + "details": "This attack can be prevented with the Quarkus CSRF Prevention feature.", + "product_ids": [ + "Red Hat build of Quarkus", + "Red Hat build of Quarkus 2.7.7", + "a-mq_clients_2:quarkus-vertx-http", + "red_hat_build_of_quarkus:io.quarkus/quarkus-vertx-http", + "red_hat_integration_camel_k:quarkus-vertx-http", + "red_hat_integration_camel_quarkus:quarkus-vertx-http", + "red_hat_integration_change_data_capture:quarkus-vertx-http", + "red_hat_integration_service_registry:quarkus-vertx-http", + "red_hat_jboss_enterprise_application_platform_7:quarkus-vertx-http", + "red_hat_jboss_enterprise_application_platform_expansion_pack:quarkus-vertx-http", + "red_hat_jboss_fuse_7:quarkus-vertx-http", + "red_hat_process_automation_7:quarkus-vertx-http" + ] + }, + { + "category": "none_available", + "details": "Affected", + "product_ids": [ + "red_hat_build_of_quarkus:io.quarkus/quarkus-vertx-http" + ] + } + ], + "scores": [ + { + "cvss_v3": { + "attackComplexity": "LOW", + "attackVector": "NETWORK", + "availabilityImpact": "NONE", + "baseScore": 5.3, + "baseSeverity": "MEDIUM", + "confidentialityImpact": "LOW", + "integrityImpact": "NONE", + "privilegesRequired": "NONE", + "scope": "UNCHANGED", + "userInteraction": "NONE", + "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", + "version": "3.1" + }, + "products": [ + "Red Hat build of Quarkus", + "Red Hat build of Quarkus 2.7.7", + "red_hat_build_of_quarkus:io.quarkus/quarkus-vertx-http" + ] + } + ], + "threats": [ + { + "category": "impact", + "details": "Low", + "product_ids": [ + "Red Hat build of Quarkus", + "Red Hat build of Quarkus 2.7.7", + "red_hat_build_of_quarkus:io.quarkus/quarkus-vertx-http" + ] + } + ], + "title": "quarkus-vertx-http: a cross-site attack may be initiated which might lead to the Information Disclosure" + } + ] +} +-- /2023/cve-2023-0118.json -- +{ + "document": { + "aggregate_severity": { + "namespace": "https://access.redhat.com/security/updates/classification/", + "text": "important" + }, + "category": "csaf_vex", + "csaf_version": "2.0", + "distribution": { + "text": "Copyright © Red Hat, Inc. All rights reserved.", + "tlp": { + "label": "WHITE", + "url": "https://www.first.org/tlp/" + } + }, + "lang": "en", + "notes": [ + { + "category": "legal_disclaimer", + "text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.", + "title": "Terms of Use" + } + ], + "publisher": { + "category": "vendor", + "contact_details": "https://access.redhat.com/security/team/contact/", + "issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat offerings.", + "name": "Red Hat Product Security", + "namespace": "https://www.redhat.com" + }, + "references": [ + { + "category": "self", + "summary": "Canonical URL", + "url": "https://access.redhat.com/security/data/csaf/beta/vex/2023/cve-2023-0118.json" + } + ], + "title": "Arbitrary code execution through templates", + "tracking": { + "current_release_date": "2023-10-20T18:43:57+00:00", + "generator": { + "date": "2023-11-09T02:13:20+00:00", + "engine": { + "name": "Red Hat SDEngine", + "version": "3.24.0" + } + }, + "id": "CVE-2023-0118", + "initial_release_date": "2023-03-12T00:00:00+00:00", + "revision_history": [ + { + "date": "2023-03-12T00:00:00+00:00", + "number": "1", + "summary": "Initial version" + }, + { + "date": "2023-10-20T18:43:57+00:00", + "number": "2", + "summary": "Current version" + } + ], + "status": "final", + "version": "1" + } + }, + "product_tree": { + "branches": [ + { + "branches": [ + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Satellite 6.14 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite_capsule:6.14::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.14 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite:6.14::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.14 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite_utils:6.14::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.14 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-maintenance", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite_maintenance:6.14::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Satellite 6" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Satellite 6.11 for RHEL 7", + "product": { + "name": "Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite_utils:6.11::el7" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.11 for RHEL 7", + "product": { + "name": "Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite_capsule:6.11::el7" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.11 for RHEL 7", + "product": { + "name": "Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite:6.11::el7" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.11 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite_utils:6.11::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.11 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite:6.11::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.11 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite_capsule:6.11::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Satellite 6" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Satellite 6.12 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite_capsule:6.12::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.12 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite:6.12::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.12 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite_utils:6.12::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Satellite 6" + }, + { + "branches": [ + { + "category": "product_name", + "name": "Red Hat Satellite 6.13 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite_capsule:6.13::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.13 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite:6.13::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.13 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite_utils:6.13::el8" + } + } + }, + { + "category": "product_name", + "name": "Red Hat Satellite 6.13 for RHEL 8", + "product": { + "name": "Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-maintenance", + "product_identification_helper": { + "cpe": "cpe:/a:redhat:satellite_maintenance:6.13::el8" + } + } + } + ], + "category": "product_family", + "name": "Red Hat Satellite 6" + }, + { + "branches": [ + { + "category": "product_version", + "name": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.src", + "product": { + "name": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.src", + "product_id": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ansible-collection-redhat-satellite@3.14.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.src", + "product": { + "name": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.src", + "product_id": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ansible-collection-redhat-satellite_operations@2.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "ansible-lint-0:5.0.8-4.el8pc.src", + "product": { + "name": "ansible-lint-0:5.0.8-4.el8pc.src", + "product_id": "ansible-lint-0:5.0.8-4.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ansible-lint@5.0.8-4.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.src", + "product": { + "name": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.src", + "product_id": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ansiblerole-foreman_scap_client@0.2.0-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "ansiblerole-insights-client-0:1.7.1-2.el8sat.src", + "product": { + "name": "ansiblerole-insights-client-0:1.7.1-2.el8sat.src", + "product_id": "ansiblerole-insights-client-0:1.7.1-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ansiblerole-insights-client@1.7.1-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "ansible-runner-0:2.2.1-3.el8sat.src", + "product": { + "name": "ansible-runner-0:2.2.1-3.el8sat.src", + "product_id": "ansible-runner-0:2.2.1-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ansible-runner@2.2.1-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "candlepin-0:4.3.1-1.el8sat.src", + "product": { + "name": "candlepin-0:4.3.1-1.el8sat.src", + "product_id": "candlepin-0:4.3.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/candlepin@4.3.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "cjson-0:1.7.14-5.el8sat.src", + "product": { + "name": "cjson-0:1.7.14-5.el8sat.src", + "product_id": "cjson-0:1.7.14-5.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cjson@1.7.14-5.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "createrepo_c-0:0.20.1-1.el8pc.src", + "product": { + "name": "createrepo_c-0:0.20.1-1.el8pc.src", + "product_id": "createrepo_c-0:0.20.1-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/createrepo_c@0.20.1-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "dynflow-utils-0:1.6.3-1.el8sat.src", + "product": { + "name": "dynflow-utils-0:1.6.3-1.el8sat.src", + "product_id": "dynflow-utils-0:1.6.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dynflow-utils@1.6.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "foreman-0:3.7.0.9-1.el8sat.src", + "product": { + "name": "foreman-0:3.7.0.9-1.el8sat.src", + "product_id": "foreman-0:3.7.0.9-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman@3.7.0.9-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.src", + "product": { + "name": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.src", + "product_id": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-bootloaders-redhat@202102220000-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "foreman-discovery-image-1:4.1.0-10.el8sat.src", + "product": { + "name": "foreman-discovery-image-1:4.1.0-10.el8sat.src", + "product_id": "foreman-discovery-image-1:4.1.0-10.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-discovery-image@4.1.0-10.el8sat?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.src", + "product": { + "name": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.src", + "product_id": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-discovery-image-service@1.0.0-4.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "foreman-installer-1:3.7.0.4-1.el8sat.src", + "product": { + "name": "foreman-installer-1:3.7.0.4-1.el8sat.src", + "product_id": "foreman-installer-1:3.7.0.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-installer@3.7.0.4-1.el8sat?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "foreman-obsolete-packages-0:1.5-1.el8sat.src", + "product": { + "name": "foreman-obsolete-packages-0:1.5-1.el8sat.src", + "product_id": "foreman-obsolete-packages-0:1.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-obsolete-packages@1.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "foreman-proxy-0:3.7.0-1.el8sat.src", + "product": { + "name": "foreman-proxy-0:3.7.0-1.el8sat.src", + "product_id": "foreman-proxy-0:3.7.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-proxy@3.7.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "foreman-selinux-0:3.7.0-1.el8sat.src", + "product": { + "name": "foreman-selinux-0:3.7.0-1.el8sat.src", + "product_id": "foreman-selinux-0:3.7.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-selinux@3.7.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "katello-0:4.9.0-1.el8sat.src", + "product": { + "name": "katello-0:4.9.0-1.el8sat.src", + "product_id": "katello-0:4.9.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/katello@4.9.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "katello-certs-tools-0:2.9.0-2.el8sat.src", + "product": { + "name": "katello-certs-tools-0:2.9.0-2.el8sat.src", + "product_id": "katello-certs-tools-0:2.9.0-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/katello-certs-tools@2.9.0-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "katello-client-bootstrap-0:1.7.9-1.el8sat.src", + "product": { + "name": "katello-client-bootstrap-0:1.7.9-1.el8sat.src", + "product_id": "katello-client-bootstrap-0:1.7.9-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/katello-client-bootstrap@1.7.9-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "katello-selinux-0:5.0.2-1.el8sat.src", + "product": { + "name": "katello-selinux-0:5.0.2-1.el8sat.src", + "product_id": "katello-selinux-0:5.0.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/katello-selinux@5.0.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "libcomps-0:0.1.18-4.el8pc.src", + "product": { + "name": "libcomps-0:0.1.18-4.el8pc.src", + "product_id": "libcomps-0:0.1.18-4.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libcomps@0.1.18-4.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "libsodium-0:1.0.17-3.el8sat.src", + "product": { + "name": "libsodium-0:1.0.17-3.el8sat.src", + "product_id": "libsodium-0:1.0.17-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libsodium@1.0.17-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "libsolv-0:0.7.22-4.el8pc.src", + "product": { + "name": "libsolv-0:0.7.22-4.el8pc.src", + "product_id": "libsolv-0:0.7.22-4.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libsolv@0.7.22-4.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "libwebsockets-0:2.4.2-2.el8.src", + "product": { + "name": "libwebsockets-0:2.4.2-2.el8.src", + "product_id": "libwebsockets-0:2.4.2-2.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libwebsockets@2.4.2-2.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "mosquitto-0:2.0.14-1.el8sat.src", + "product": { + "name": "mosquitto-0:2.0.14-1.el8sat.src", + "product_id": "mosquitto-0:2.0.14-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/mosquitto@2.0.14-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "postgresql-evr-0:0.0.2-1.el8sat.src", + "product": { + "name": "postgresql-evr-0:0.0.2-1.el8sat.src", + "product_id": "postgresql-evr-0:0.0.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/postgresql-evr@0.0.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "pulpcore-selinux-0:1.3.3-1.el8pc.src", + "product": { + "name": "pulpcore-selinux-0:1.3.3-1.el8pc.src", + "product_id": "pulpcore-selinux-0:1.3.3-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/pulpcore-selinux@1.3.3-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el8sat.src", + "product": { + "name": "puppet-agent-0:7.26.0-3.el8sat.src", + "product_id": "puppet-agent-0:7.26.0-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "puppet-agent-oauth-0:0.5.10-1.el8sat.src", + "product": { + "name": "puppet-agent-oauth-0:0.5.10-1.el8sat.src", + "product_id": "puppet-agent-oauth-0:0.5.10-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent-oauth@0.5.10-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.src", + "product": { + "name": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.src", + "product_id": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-foreman_scap_client@0.4.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "puppetlabs-stdlib-0:5.2.0-1.el8sat.src", + "product": { + "name": "puppetlabs-stdlib-0:5.2.0-1.el8sat.src", + "product_id": "puppetlabs-stdlib-0:5.2.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppetlabs-stdlib@5.2.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "puppetserver-0:7.11.0-1.el8sat.src", + "product": { + "name": "puppetserver-0:7.11.0-1.el8sat.src", + "product_id": "puppetserver-0:7.11.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppetserver@7.11.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-aiodns-0:3.0.0-3.el8pc.src", + "product": { + "name": "python-aiodns-0:3.0.0-3.el8pc.src", + "product_id": "python-aiodns-0:3.0.0-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-aiodns@3.0.0-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-aiofiles-0:22.1.0-1.el8pc.src", + "product": { + "name": "python-aiofiles-0:22.1.0-1.el8pc.src", + "product_id": "python-aiofiles-0:22.1.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-aiofiles@22.1.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-aiohttp-0:3.8.3-2.el8pc.src", + "product": { + "name": "python-aiohttp-0:3.8.3-2.el8pc.src", + "product_id": "python-aiohttp-0:3.8.3-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-aiohttp@3.8.3-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-aiohttp-xmlrpc-0:1.5.0-2.el8pc.src", + "product": { + "name": "python-aiohttp-xmlrpc-0:1.5.0-2.el8pc.src", + "product_id": "python-aiohttp-xmlrpc-0:1.5.0-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-aiohttp-xmlrpc@1.5.0-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-aioredis-0:2.0.1-2.el8pc.src", + "product": { + "name": "python-aioredis-0:2.0.1-2.el8pc.src", + "product_id": "python-aioredis-0:2.0.1-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-aioredis@2.0.1-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-aiosignal-0:1.3.1-1.el8pc.src", + "product": { + "name": "python-aiosignal-0:1.3.1-1.el8pc.src", + "product_id": "python-aiosignal-0:1.3.1-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-aiosignal@1.3.1-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-ansible-builder-0:1.0.1-4.el8pc.src", + "product": { + "name": "python-ansible-builder-0:1.0.1-4.el8pc.src", + "product_id": "python-ansible-builder-0:1.0.1-4.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-ansible-builder@1.0.1-4.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-asgiref-0:3.6.0-1.el8pc.src", + "product": { + "name": "python-asgiref-0:3.6.0-1.el8pc.src", + "product_id": "python-asgiref-0:3.6.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-asgiref@3.6.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-asyncio-throttle-0:1.0.2-3.el8pc.src", + "product": { + "name": "python-asyncio-throttle-0:1.0.2-3.el8pc.src", + "product_id": "python-asyncio-throttle-0:1.0.2-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-asyncio-throttle@1.0.2-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-async-lru-0:1.0.3-1.el8pc.src", + "product": { + "name": "python-async-lru-0:1.0.3-1.el8pc.src", + "product_id": "python-async-lru-0:1.0.3-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-async-lru@1.0.3-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-async-timeout-0:4.0.2-2.el8pc.src", + "product": { + "name": "python-async-timeout-0:4.0.2-2.el8pc.src", + "product_id": "python-async-timeout-0:4.0.2-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-async-timeout@4.0.2-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-attrs-0:21.4.0-2.el8pc.src", + "product": { + "name": "python-attrs-0:21.4.0-2.el8pc.src", + "product_id": "python-attrs-0:21.4.0-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-attrs@21.4.0-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-backoff-0:2.2.1-1.el8pc.src", + "product": { + "name": "python-backoff-0:2.2.1-1.el8pc.src", + "product_id": "python-backoff-0:2.2.1-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-backoff@2.2.1-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-bindep-0:2.11.0-2.el8pc.src", + "product": { + "name": "python-bindep-0:2.11.0-2.el8pc.src", + "product_id": "python-bindep-0:2.11.0-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-bindep@2.11.0-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-bleach-0:3.3.1-2.el8pc.src", + "product": { + "name": "python-bleach-0:3.3.1-2.el8pc.src", + "product_id": "python-bleach-0:3.3.1-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-bleach@3.3.1-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-bleach-allowlist-0:1.0.3-3.el8pc.src", + "product": { + "name": "python-bleach-allowlist-0:1.0.3-3.el8pc.src", + "product_id": "python-bleach-allowlist-0:1.0.3-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-bleach-allowlist@1.0.3-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-bracex-0:2.2.1-2.el8pc.src", + "product": { + "name": "python-bracex-0:2.2.1-2.el8pc.src", + "product_id": "python-bracex-0:2.2.1-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-bracex@2.2.1-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-brotli-0:1.0.9-2.el8pc.src", + "product": { + "name": "python-brotli-0:1.0.9-2.el8pc.src", + "product_id": "python-brotli-0:1.0.9-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-brotli@1.0.9-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-cchardet-0:2.1.7-4.el8pc.src", + "product": { + "name": "python-cchardet-0:2.1.7-4.el8pc.src", + "product_id": "python-cchardet-0:2.1.7-4.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-cchardet@2.1.7-4.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-certifi-0:2022.12.7-1.1.el8pc.src", + "product": { + "name": "python-certifi-0:2022.12.7-1.1.el8pc.src", + "product_id": "python-certifi-0:2022.12.7-1.1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-certifi@2022.12.7-1.1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-cffi-0:1.15.1-1.el8pc.src", + "product": { + "name": "python-cffi-0:1.15.1-1.el8pc.src", + "product_id": "python-cffi-0:1.15.1-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-cffi@1.15.1-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-chardet-0:5.0.0-1.el8pc.src", + "product": { + "name": "python-chardet-0:5.0.0-1.el8pc.src", + "product_id": "python-chardet-0:5.0.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-chardet@5.0.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-charset-normalizer-0:2.1.1-1.el8pc.src", + "product": { + "name": "python-charset-normalizer-0:2.1.1-1.el8pc.src", + "product_id": "python-charset-normalizer-0:2.1.1-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-charset-normalizer@2.1.1-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-click-0:8.1.3-1.el8pc.src", + "product": { + "name": "python-click-0:8.1.3-1.el8pc.src", + "product_id": "python-click-0:8.1.3-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-click@8.1.3-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-click-shell-0:2.1-3.el8pc.src", + "product": { + "name": "python-click-shell-0:2.1-3.el8pc.src", + "product_id": "python-click-shell-0:2.1-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-click-shell@2.1-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-colorama-0:0.4.4-3.el8pc.src", + "product": { + "name": "python-colorama-0:0.4.4-3.el8pc.src", + "product_id": "python-colorama-0:0.4.4-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-colorama@0.4.4-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-commonmark-0:0.9.1-5.el8pc.src", + "product": { + "name": "python-commonmark-0:0.9.1-5.el8pc.src", + "product_id": "python-commonmark-0:0.9.1-5.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-commonmark@0.9.1-5.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-contextlib2-0:21.6.0-3.el8pc.src", + "product": { + "name": "python-contextlib2-0:21.6.0-3.el8pc.src", + "product_id": "python-contextlib2-0:21.6.0-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-contextlib2@21.6.0-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-cryptography-0:38.0.4-1.el8pc.src", + "product": { + "name": "python-cryptography-0:38.0.4-1.el8pc.src", + "product_id": "python-cryptography-0:38.0.4-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-cryptography@38.0.4-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-daemon-0:2.3.1-1.1.el8sat.src", + "product": { + "name": "python-daemon-0:2.3.1-1.1.el8sat.src", + "product_id": "python-daemon-0:2.3.1-1.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-daemon@2.3.1-1.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-dataclasses-0:0.8-3.el8pc.src", + "product": { + "name": "python-dataclasses-0:0.8-3.el8pc.src", + "product_id": "python-dataclasses-0:0.8-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-dataclasses@0.8-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-dateutil-0:2.8.2-2.el8pc.src", + "product": { + "name": "python-dateutil-0:2.8.2-2.el8pc.src", + "product_id": "python-dateutil-0:2.8.2-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-dateutil@2.8.2-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-debian-0:0.1.44-3.el8pc.src", + "product": { + "name": "python-debian-0:0.1.44-3.el8pc.src", + "product_id": "python-debian-0:0.1.44-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-debian@0.1.44-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-defusedxml-0:0.7.1-3.el8pc.src", + "product": { + "name": "python-defusedxml-0:0.7.1-3.el8pc.src", + "product_id": "python-defusedxml-0:0.7.1-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-defusedxml@0.7.1-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-deprecated-0:1.2.13-1.el8pc.src", + "product": { + "name": "python-deprecated-0:1.2.13-1.el8pc.src", + "product_id": "python-deprecated-0:1.2.13-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-deprecated@1.2.13-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-diff-match-patch-0:20200713-3.el8pc.src", + "product": { + "name": "python-diff-match-patch-0:20200713-3.el8pc.src", + "product_id": "python-diff-match-patch-0:20200713-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-diff-match-patch@20200713-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-distro-0:1.7.0-1.el8pc.src", + "product": { + "name": "python-distro-0:1.7.0-1.el8pc.src", + "product_id": "python-distro-0:1.7.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-distro@1.7.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-django-0:3.2.21-1.el8pc.src", + "product": { + "name": "python-django-0:3.2.21-1.el8pc.src", + "product_id": "python-django-0:3.2.21-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-django@3.2.21-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-django-currentuser-0:0.5.3-5.el8pc.src", + "product": { + "name": "python-django-currentuser-0:0.5.3-5.el8pc.src", + "product_id": "python-django-currentuser-0:0.5.3-5.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-django-currentuser@0.5.3-5.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-django-filter-0:22.1-2.el8pc.src", + "product": { + "name": "python-django-filter-0:22.1-2.el8pc.src", + "product_id": "python-django-filter-0:22.1-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-django-filter@22.1-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-django-guid-0:3.3.0-1.el8pc.src", + "product": { + "name": "python-django-guid-0:3.3.0-1.el8pc.src", + "product_id": "python-django-guid-0:3.3.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-django-guid@3.3.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-django-import-export-0:3.0.2-1.el8pc.src", + "product": { + "name": "python-django-import-export-0:3.0.2-1.el8pc.src", + "product_id": "python-django-import-export-0:3.0.2-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-django-import-export@3.0.2-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-django-lifecycle-0:1.0.0-1.el8pc.src", + "product": { + "name": "python-django-lifecycle-0:1.0.0-1.el8pc.src", + "product_id": "python-django-lifecycle-0:1.0.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-django-lifecycle@1.0.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-django-readonly-field-0:1.1.2-1.el8pc.src", + "product": { + "name": "python-django-readonly-field-0:1.1.2-1.el8pc.src", + "product_id": "python-django-readonly-field-0:1.1.2-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-django-readonly-field@1.1.2-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-djangorestframework-0:3.14.0-1.el8pc.src", + "product": { + "name": "python-djangorestframework-0:3.14.0-1.el8pc.src", + "product_id": "python-djangorestframework-0:3.14.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-djangorestframework@3.14.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-djangorestframework-queryfields-0:1.0.0-5.el8pc.src", + "product": { + "name": "python-djangorestframework-queryfields-0:1.0.0-5.el8pc.src", + "product_id": "python-djangorestframework-queryfields-0:1.0.0-5.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-djangorestframework-queryfields@1.0.0-5.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-docutils-0:0.19-1.1.el8sat.src", + "product": { + "name": "python-docutils-0:0.19-1.1.el8sat.src", + "product_id": "python-docutils-0:0.19-1.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-docutils@0.19-1.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-drf-access-policy-0:1.3.0-1.el8pc.src", + "product": { + "name": "python-drf-access-policy-0:1.3.0-1.el8pc.src", + "product_id": "python-drf-access-policy-0:1.3.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-drf-access-policy@1.3.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-drf-nested-routers-0:0.93.4-3.el8pc.src", + "product": { + "name": "python-drf-nested-routers-0:0.93.4-3.el8pc.src", + "product_id": "python-drf-nested-routers-0:0.93.4-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-drf-nested-routers@0.93.4-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-drf-spectacular-0:0.25.0-1.el8pc.src", + "product": { + "name": "python-drf-spectacular-0:0.25.0-1.el8pc.src", + "product_id": "python-drf-spectacular-0:0.25.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-drf-spectacular@0.25.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-dynaconf-0:3.1.11-1.el8pc.src", + "product": { + "name": "python-dynaconf-0:3.1.11-1.el8pc.src", + "product_id": "python-dynaconf-0:3.1.11-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-dynaconf@3.1.11-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-ecdsa-0:0.18.0-1.el8pc.src", + "product": { + "name": "python-ecdsa-0:0.18.0-1.el8pc.src", + "product_id": "python-ecdsa-0:0.18.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-ecdsa@0.18.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-enrich-0:1.2.6-5.el8pc.src", + "product": { + "name": "python-enrich-0:1.2.6-5.el8pc.src", + "product_id": "python-enrich-0:1.2.6-5.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-enrich@1.2.6-5.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-et-xmlfile-0:1.1.0-2.el8pc.src", + "product": { + "name": "python-et-xmlfile-0:1.1.0-2.el8pc.src", + "product_id": "python-et-xmlfile-0:1.1.0-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-et-xmlfile@1.1.0-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-flake8-0:3.9.2-5.el8pc.src", + "product": { + "name": "python-flake8-0:3.9.2-5.el8pc.src", + "product_id": "python-flake8-0:3.9.2-5.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-flake8@3.9.2-5.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-frozenlist-0:1.3.3-1.el8pc.src", + "product": { + "name": "python-frozenlist-0:1.3.3-1.el8pc.src", + "product_id": "python-frozenlist-0:1.3.3-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-frozenlist@1.3.3-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-future-0:0.18.3-1.el8pc.src", + "product": { + "name": "python-future-0:0.18.3-1.el8pc.src", + "product_id": "python-future-0:0.18.3-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-future@0.18.3-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-galaxy-importer-0:0.4.6-1.el8pc.src", + "product": { + "name": "python-galaxy-importer-0:0.4.6-1.el8pc.src", + "product_id": "python-galaxy-importer-0:0.4.6-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-galaxy-importer@0.4.6-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-gitdb-0:4.0.10-1.el8pc.src", + "product": { + "name": "python-gitdb-0:4.0.10-1.el8pc.src", + "product_id": "python-gitdb-0:4.0.10-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-gitdb@4.0.10-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-gitpython-0:3.1.32-1.el8pc.src", + "product": { + "name": "python-gitpython-0:3.1.32-1.el8pc.src", + "product_id": "python-gitpython-0:3.1.32-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-gitpython@3.1.32-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-gnupg-0:0.5.0-1.el8pc.src", + "product": { + "name": "python-gnupg-0:0.5.0-1.el8pc.src", + "product_id": "python-gnupg-0:0.5.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-gnupg@0.5.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-gunicorn-0:20.1.0-5.el8pc.src", + "product": { + "name": "python-gunicorn-0:20.1.0-5.el8pc.src", + "product_id": "python-gunicorn-0:20.1.0-5.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-gunicorn@20.1.0-5.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-idna-0:3.3-2.el8pc.src", + "product": { + "name": "python-idna-0:3.3-2.el8pc.src", + "product_id": "python-idna-0:3.3-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-idna@3.3-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-idna-ssl-0:1.1.0-5.el8pc.src", + "product": { + "name": "python-idna-ssl-0:1.1.0-5.el8pc.src", + "product_id": "python-idna-ssl-0:1.1.0-5.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-idna-ssl@1.1.0-5.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-importlib-metadata-0:4.10.1-2.el8pc.src", + "product": { + "name": "python-importlib-metadata-0:4.10.1-2.el8pc.src", + "product_id": "python-importlib-metadata-0:4.10.1-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-importlib-metadata@4.10.1-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-inflection-0:0.5.1-3.el8pc.src", + "product": { + "name": "python-inflection-0:0.5.1-3.el8pc.src", + "product_id": "python-inflection-0:0.5.1-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-inflection@0.5.1-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-iniparse-0:0.4-35.el8pc.src", + "product": { + "name": "python-iniparse-0:0.4-35.el8pc.src", + "product_id": "python-iniparse-0:0.4-35.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-iniparse@0.4-35.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-jinja2-0:3.1.2-1.el8pc.src", + "product": { + "name": "python-jinja2-0:3.1.2-1.el8pc.src", + "product_id": "python-jinja2-0:3.1.2-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-jinja2@3.1.2-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-jsonschema-0:4.9.1-1.el8pc.src", + "product": { + "name": "python-jsonschema-0:4.9.1-1.el8pc.src", + "product_id": "python-jsonschema-0:4.9.1-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-jsonschema@4.9.1-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-lockfile-0:0.12.2-1.el8sat.src", + "product": { + "name": "python-lockfile-0:0.12.2-1.el8sat.src", + "product_id": "python-lockfile-0:0.12.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-lockfile@0.12.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-lxml-0:4.9.2-1.el8pc.src", + "product": { + "name": "python-lxml-0:4.9.2-1.el8pc.src", + "product_id": "python-lxml-0:4.9.2-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-lxml@4.9.2-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-markdown-0:3.4.1-1.el8pc.src", + "product": { + "name": "python-markdown-0:3.4.1-1.el8pc.src", + "product_id": "python-markdown-0:3.4.1-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-markdown@3.4.1-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-markuppy-0:1.14-3.el8pc.src", + "product": { + "name": "python-markuppy-0:1.14-3.el8pc.src", + "product_id": "python-markuppy-0:1.14-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-markuppy@1.14-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-markupsafe-0:2.1.2-1.el8pc.src", + "product": { + "name": "python-markupsafe-0:2.1.2-1.el8pc.src", + "product_id": "python-markupsafe-0:2.1.2-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-markupsafe@2.1.2-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-mccabe-0:0.6.1-3.el8pc.src", + "product": { + "name": "python-mccabe-0:0.6.1-3.el8pc.src", + "product_id": "python-mccabe-0:0.6.1-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-mccabe@0.6.1-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-multidict-0:6.0.4-1.el8pc.src", + "product": { + "name": "python-multidict-0:6.0.4-1.el8pc.src", + "product_id": "python-multidict-0:6.0.4-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-multidict@6.0.4-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-naya-0:1.1.1-3.el8pc.src", + "product": { + "name": "python-naya-0:1.1.1-3.el8pc.src", + "product_id": "python-naya-0:1.1.1-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-naya@1.1.1-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-odfpy-0:1.4.1-6.el8pc.src", + "product": { + "name": "python-odfpy-0:1.4.1-6.el8pc.src", + "product_id": "python-odfpy-0:1.4.1-6.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-odfpy@1.4.1-6.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-openpyxl-0:3.1.0-1.el8pc.src", + "product": { + "name": "python-openpyxl-0:3.1.0-1.el8pc.src", + "product_id": "python-openpyxl-0:3.1.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-openpyxl@3.1.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-packaging-0:21.3-1.el8pc.src", + "product": { + "name": "python-packaging-0:21.3-1.el8pc.src", + "product_id": "python-packaging-0:21.3-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-packaging@21.3-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-parsley-0:1.3-2.el8pc.src", + "product": { + "name": "python-parsley-0:1.3-2.el8pc.src", + "product_id": "python-parsley-0:1.3-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-parsley@1.3-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pbr-0:5.8.0-4.el8pc.src", + "product": { + "name": "python-pbr-0:5.8.0-4.el8pc.src", + "product_id": "python-pbr-0:5.8.0-4.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pbr@5.8.0-4.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pexpect-0:4.8.0-2.el8sat.src", + "product": { + "name": "python-pexpect-0:4.8.0-2.el8sat.src", + "product_id": "python-pexpect-0:4.8.0-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pexpect@4.8.0-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-productmd-0:1.33-3.el8pc.src", + "product": { + "name": "python-productmd-0:1.33-3.el8pc.src", + "product_id": "python-productmd-0:1.33-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-productmd@1.33-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-protobuf-0:4.21.6-1.el8pc.src", + "product": { + "name": "python-protobuf-0:4.21.6-1.el8pc.src", + "product_id": "python-protobuf-0:4.21.6-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-protobuf@4.21.6-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-psycopg2-0:2.9.3-2.el8pc.src", + "product": { + "name": "python-psycopg2-0:2.9.3-2.el8pc.src", + "product_id": "python-psycopg2-0:2.9.3-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-psycopg2@2.9.3-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-ptyprocess-0:0.7.0-1.el8sat.src", + "product": { + "name": "python-ptyprocess-0:0.7.0-1.el8sat.src", + "product_id": "python-ptyprocess-0:0.7.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-ptyprocess@0.7.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pulp-ansible-1:0.16.0-1.el8pc.src", + "product": { + "name": "python-pulp-ansible-1:0.16.0-1.el8pc.src", + "product_id": "python-pulp-ansible-1:0.16.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pulp-ansible@0.16.0-1.el8pc?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "python-pulp-certguard-0:1.5.6-1.el8pc.src", + "product": { + "name": "python-pulp-certguard-0:1.5.6-1.el8pc.src", + "product_id": "python-pulp-certguard-0:1.5.6-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pulp-certguard@1.5.6-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pulp-cli-0:0.14.0-4.el8pc.src", + "product": { + "name": "python-pulp-cli-0:0.14.0-4.el8pc.src", + "product_id": "python-pulp-cli-0:0.14.0-4.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pulp-cli@0.14.0-4.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pulp-container-0:2.14.7-1.el8pc.src", + "product": { + "name": "python-pulp-container-0:2.14.7-1.el8pc.src", + "product_id": "python-pulp-container-0:2.14.7-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pulp-container@2.14.7-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pulp-deb-0:2.20.2-1.el8pc.src", + "product": { + "name": "python-pulp-deb-0:2.20.2-1.el8pc.src", + "product_id": "python-pulp-deb-0:2.20.2-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pulp-deb@2.20.2-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pulp-file-0:1.12.0-1.el8pc.src", + "product": { + "name": "python-pulp-file-0:1.12.0-1.el8pc.src", + "product_id": "python-pulp-file-0:1.12.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pulp-file@1.12.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pulp_manifest-0:3.0.0-3.el8pc.src", + "product": { + "name": "python-pulp_manifest-0:3.0.0-3.el8pc.src", + "product_id": "python-pulp_manifest-0:3.0.0-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pulp_manifest@3.0.0-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pulp-rpm-0:3.19.9-1.el8pc.src", + "product": { + "name": "python-pulp-rpm-0:3.19.9-1.el8pc.src", + "product_id": "python-pulp-rpm-0:3.19.9-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pulp-rpm@3.19.9-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pycares-0:4.1.2-2.el8pc.src", + "product": { + "name": "python-pycares-0:4.1.2-2.el8pc.src", + "product_id": "python-pycares-0:4.1.2-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pycares@4.1.2-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pycodestyle-0:2.7.0-5.el8pc.src", + "product": { + "name": "python-pycodestyle-0:2.7.0-5.el8pc.src", + "product_id": "python-pycodestyle-0:2.7.0-5.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pycodestyle@2.7.0-5.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pycparser-0:2.21-2.el8pc.src", + "product": { + "name": "python-pycparser-0:2.21-2.el8pc.src", + "product_id": "python-pycparser-0:2.21-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pycparser@2.21-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pycryptodomex-0:3.14.1-2.el8pc.src", + "product": { + "name": "python-pycryptodomex-0:3.14.1-2.el8pc.src", + "product_id": "python-pycryptodomex-0:3.14.1-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pycryptodomex@3.14.1-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pyflakes-0:2.3.1-5.el8pc.src", + "product": { + "name": "python-pyflakes-0:2.3.1-5.el8pc.src", + "product_id": "python-pyflakes-0:2.3.1-5.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pyflakes@2.3.1-5.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pygments-0:2.14.0-1.el8pc.src", + "product": { + "name": "python-pygments-0:2.14.0-1.el8pc.src", + "product_id": "python-pygments-0:2.14.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pygments@2.14.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pygtrie-0:2.5.0-1.el8pc.src", + "product": { + "name": "python-pygtrie-0:2.5.0-1.el8pc.src", + "product_id": "python-pygtrie-0:2.5.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pygtrie@2.5.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pyjwkest-0:1.4.2-6.el8pc.src", + "product": { + "name": "python-pyjwkest-0:1.4.2-6.el8pc.src", + "product_id": "python-pyjwkest-0:1.4.2-6.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pyjwkest@1.4.2-6.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pyjwt-0:2.5.0-2.el8pc.src", + "product": { + "name": "python-pyjwt-0:2.5.0-2.el8pc.src", + "product_id": "python-pyjwt-0:2.5.0-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pyjwt@2.5.0-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pyOpenSSL-0:22.1.0-1.el8pc.src", + "product": { + "name": "python-pyOpenSSL-0:22.1.0-1.el8pc.src", + "product_id": "python-pyOpenSSL-0:22.1.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pyOpenSSL@22.1.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pyparsing-0:2.4.7-3.el8pc.src", + "product": { + "name": "python-pyparsing-0:2.4.7-3.el8pc.src", + "product_id": "python-pyparsing-0:2.4.7-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pyparsing@2.4.7-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pyrsistent-0:0.18.1-2.el8pc.src", + "product": { + "name": "python-pyrsistent-0:0.18.1-2.el8pc.src", + "product_id": "python-pyrsistent-0:0.18.1-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pyrsistent@0.18.1-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pytz-0:2022.2.1-1.el8pc.src", + "product": { + "name": "python-pytz-0:2022.2.1-1.el8pc.src", + "product_id": "python-pytz-0:2022.2.1-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pytz@2022.2.1-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pyyaml-0:5.4.1-4.el8pc.src", + "product": { + "name": "python-pyyaml-0:5.4.1-4.el8pc.src", + "product_id": "python-pyyaml-0:5.4.1-4.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pyyaml@5.4.1-4.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-qpid-0:1.37.0-1.el8.src", + "product": { + "name": "python-qpid-0:1.37.0-1.el8.src", + "product_id": "python-qpid-0:1.37.0-1.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-qpid@1.37.0-1.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-redis-0:4.3.4-1.el8pc.src", + "product": { + "name": "python-redis-0:4.3.4-1.el8pc.src", + "product_id": "python-redis-0:4.3.4-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-redis@4.3.4-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-requests-0:2.31.0-1.el8pc.src", + "product": { + "name": "python-requests-0:2.31.0-1.el8pc.src", + "product_id": "python-requests-0:2.31.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-requests@2.31.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-requirements-parser-0:0.2.0-3.el8pc.src", + "product": { + "name": "python-requirements-parser-0:0.2.0-3.el8pc.src", + "product_id": "python-requirements-parser-0:0.2.0-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-requirements-parser@0.2.0-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-rhsm-0:1.19.2-3.el8pc.src", + "product": { + "name": "python-rhsm-0:1.19.2-3.el8pc.src", + "product_id": "python-rhsm-0:1.19.2-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-rhsm@1.19.2-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-rich-0:13.3.1-2.el8pc.src", + "product": { + "name": "python-rich-0:13.3.1-2.el8pc.src", + "product_id": "python-rich-0:13.3.1-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-rich@13.3.1-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-ruamel-yaml-0:0.17.21-2.el8pc.src", + "product": { + "name": "python-ruamel-yaml-0:0.17.21-2.el8pc.src", + "product_id": "python-ruamel-yaml-0:0.17.21-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-ruamel-yaml@0.17.21-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-ruamel-yaml-clib-0:0.2.7-1.el8pc.src", + "product": { + "name": "python-ruamel-yaml-clib-0:0.2.7-1.el8pc.src", + "product_id": "python-ruamel-yaml-clib-0:0.2.7-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-ruamel-yaml-clib@0.2.7-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-schema-0:0.7.5-2.el8pc.src", + "product": { + "name": "python-schema-0:0.7.5-2.el8pc.src", + "product_id": "python-schema-0:0.7.5-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-schema@0.7.5-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-semantic-version-0:2.10.0-1.el8pc.src", + "product": { + "name": "python-semantic-version-0:2.10.0-1.el8pc.src", + "product_id": "python-semantic-version-0:2.10.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-semantic-version@2.10.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-six-0:1.16.0-2.el8pc.src", + "product": { + "name": "python-six-0:1.16.0-2.el8pc.src", + "product_id": "python-six-0:1.16.0-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-six@1.16.0-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-smmap-0:5.0.0-2.el8pc.src", + "product": { + "name": "python-smmap-0:5.0.0-2.el8pc.src", + "product_id": "python-smmap-0:5.0.0-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-smmap@5.0.0-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-sqlparse-0:0.4.4-1.el8pc.src", + "product": { + "name": "python-sqlparse-0:0.4.4-1.el8pc.src", + "product_id": "python-sqlparse-0:0.4.4-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-sqlparse@0.4.4-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-tablib-0:3.3.0-1.el8pc.src", + "product": { + "name": "python-tablib-0:3.3.0-1.el8pc.src", + "product_id": "python-tablib-0:3.3.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-tablib@3.3.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-tenacity-0:7.0.0-3.el8pc.src", + "product": { + "name": "python-tenacity-0:7.0.0-3.el8pc.src", + "product_id": "python-tenacity-0:7.0.0-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-tenacity@7.0.0-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-toml-0:0.10.2-3.el8pc.src", + "product": { + "name": "python-toml-0:0.10.2-3.el8pc.src", + "product_id": "python-toml-0:0.10.2-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-toml@0.10.2-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-types-cryptography-0:3.3.23.2-1.el8pc.src", + "product": { + "name": "python-types-cryptography-0:3.3.23.2-1.el8pc.src", + "product_id": "python-types-cryptography-0:3.3.23.2-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-types-cryptography@3.3.23.2-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-typing-extensions-0:3.10.0.2-2.el8pc.src", + "product": { + "name": "python-typing-extensions-0:3.10.0.2-2.el8pc.src", + "product_id": "python-typing-extensions-0:3.10.0.2-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-typing-extensions@3.10.0.2-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-uritemplate-0:4.1.1-2.el8pc.src", + "product": { + "name": "python-uritemplate-0:4.1.1-2.el8pc.src", + "product_id": "python-uritemplate-0:4.1.1-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-uritemplate@4.1.1-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-urllib3-0:1.26.8-2.el8pc.src", + "product": { + "name": "python-urllib3-0:1.26.8-2.el8pc.src", + "product_id": "python-urllib3-0:1.26.8-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-urllib3@1.26.8-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-urlman-0:2.0.1-1.el8pc.src", + "product": { + "name": "python-urlman-0:2.0.1-1.el8pc.src", + "product_id": "python-urlman-0:2.0.1-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-urlman@2.0.1-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-url-normalize-0:1.4.3-4.el8pc.src", + "product": { + "name": "python-url-normalize-0:1.4.3-4.el8pc.src", + "product_id": "python-url-normalize-0:1.4.3-4.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-url-normalize@1.4.3-4.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-wcmatch-0:8.3-2.el8pc.src", + "product": { + "name": "python-wcmatch-0:8.3-2.el8pc.src", + "product_id": "python-wcmatch-0:8.3-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-wcmatch@8.3-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-webencodings-0:0.5.1-3.el8pc.src", + "product": { + "name": "python-webencodings-0:0.5.1-3.el8pc.src", + "product_id": "python-webencodings-0:0.5.1-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-webencodings@0.5.1-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-websockify-0:0.10.0-3.el8sat.src", + "product": { + "name": "python-websockify-0:0.10.0-3.el8sat.src", + "product_id": "python-websockify-0:0.10.0-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-websockify@0.10.0-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-whitenoise-0:6.0.0-1.el8pc.src", + "product": { + "name": "python-whitenoise-0:6.0.0-1.el8pc.src", + "product_id": "python-whitenoise-0:6.0.0-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-whitenoise@6.0.0-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-wrapt-0:1.14.1-1.el8pc.src", + "product": { + "name": "python-wrapt-0:1.14.1-1.el8pc.src", + "product_id": "python-wrapt-0:1.14.1-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-wrapt@1.14.1-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-xlrd-0:2.0.1-5.el8pc.src", + "product": { + "name": "python-xlrd-0:2.0.1-5.el8pc.src", + "product_id": "python-xlrd-0:2.0.1-5.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-xlrd@2.0.1-5.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-xlwt-0:1.3.0-3.el8pc.src", + "product": { + "name": "python-xlwt-0:1.3.0-3.el8pc.src", + "product_id": "python-xlwt-0:1.3.0-3.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-xlwt@1.3.0-3.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-yarl-0:1.8.2-1.el8pc.src", + "product": { + "name": "python-yarl-0:1.8.2-1.el8pc.src", + "product_id": "python-yarl-0:1.8.2-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-yarl@1.8.2-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-zipp-0:3.4.0-4.el8pc.src", + "product": { + "name": "python-zipp-0:3.4.0-4.el8pc.src", + "product_id": "python-zipp-0:3.4.0-4.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-zipp@3.4.0-4.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-0:1.39.0-7.el8amq.src", + "product": { + "name": "qpid-cpp-0:1.39.0-7.el8amq.src", + "product_id": "qpid-cpp-0:1.39.0-7.el8amq.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp@1.39.0-7.el8amq?arch=src" + } + } + }, + { + "category": "product_version", + "name": "qpid-dispatch-0:1.14.0-6.el8.src", + "product": { + "name": "qpid-dispatch-0:1.14.0-6.el8.src", + "product_id": "qpid-dispatch-0:1.14.0-6.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-dispatch@1.14.0-6.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-0:0.33.0-4.el8.src", + "product": { + "name": "qpid-proton-0:0.33.0-4.el8.src", + "product_id": "qpid-proton-0:0.33.0-4.el8.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton@0.33.0-4.el8?arch=src" + } + } + }, + { + "category": "product_version", + "name": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.src", + "product": { + "name": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.src", + "product_id": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/redhat-access-insights-puppet@1.0.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-actioncable-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-actioncable-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-actioncable-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-actioncable@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-actionmailbox-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-actionmailbox-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-actionmailbox-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-actionmailbox@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-actionmailer-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-actionmailer-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-actionmailer-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-actionmailer@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-actionpack-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-actionpack-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-actionpack-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-actionpack@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-actiontext-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-actiontext-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-actiontext-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-actiontext@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-actionview-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-actionview-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-actionview-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-actionview@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activejob-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-activejob-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-activejob-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activejob@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activemodel-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-activemodel-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-activemodel-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activemodel@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activerecord-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-activerecord-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-activerecord-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activerecord@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activerecord-import-0:1.4.1-1.el8sat.src", + "product": { + "name": "rubygem-activerecord-import-0:1.4.1-1.el8sat.src", + "product_id": "rubygem-activerecord-import-0:1.4.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activerecord-import@1.4.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activerecord-session_store-0:2.0.0-1.el8sat.src", + "product": { + "name": "rubygem-activerecord-session_store-0:2.0.0-1.el8sat.src", + "product_id": "rubygem-activerecord-session_store-0:2.0.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activerecord-session_store@2.0.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activestorage-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-activestorage-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-activestorage-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activestorage@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activesupport-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-activesupport-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-activesupport-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activesupport@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-acts_as_list-0:1.0.3-2.el8sat.src", + "product": { + "name": "rubygem-acts_as_list-0:1.0.3-2.el8sat.src", + "product_id": "rubygem-acts_as_list-0:1.0.3-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-acts_as_list@1.0.3-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-addressable-0:2.8.4-1.el8sat.src", + "product": { + "name": "rubygem-addressable-0:2.8.4-1.el8sat.src", + "product_id": "rubygem-addressable-0:2.8.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-addressable@2.8.4-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-algebrick-0:0.7.5-1.el8sat.src", + "product": { + "name": "rubygem-algebrick-0:0.7.5-1.el8sat.src", + "product_id": "rubygem-algebrick-0:0.7.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-algebrick@0.7.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-amazing_print-0:1.4.0-1.el8sat.src", + "product": { + "name": "rubygem-amazing_print-0:1.4.0-1.el8sat.src", + "product_id": "rubygem-amazing_print-0:1.4.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-amazing_print@1.4.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ancestry-0:4.3.3-1.el8sat.src", + "product": { + "name": "rubygem-ancestry-0:4.3.3-1.el8sat.src", + "product_id": "rubygem-ancestry-0:4.3.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ancestry@4.3.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-anemone-0:0.7.2-23.el8sat.src", + "product": { + "name": "rubygem-anemone-0:0.7.2-23.el8sat.src", + "product_id": "rubygem-anemone-0:0.7.2-23.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-anemone@0.7.2-23.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-angular-rails-templates-1:1.1.0-2.el8sat.src", + "product": { + "name": "rubygem-angular-rails-templates-1:1.1.0-2.el8sat.src", + "product_id": "rubygem-angular-rails-templates-1:1.1.0-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-angular-rails-templates@1.1.0-2.el8sat?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ansi-0:1.5.0-3.el8sat.src", + "product": { + "name": "rubygem-ansi-0:1.5.0-3.el8sat.src", + "product_id": "rubygem-ansi-0:1.5.0-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ansi@1.5.0-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.src", + "product": { + "name": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.src", + "product_id": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-apipie-bindings@0.6.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-apipie-dsl-0:2.5.0-1.el8sat.src", + "product": { + "name": "rubygem-apipie-dsl-0:2.5.0-1.el8sat.src", + "product_id": "rubygem-apipie-dsl-0:2.5.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-apipie-dsl@2.5.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.src", + "product": { + "name": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.src", + "product_id": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-apipie-params@0.0.5-5.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-apipie-rails-0:1.1.0-1.el8sat.src", + "product": { + "name": "rubygem-apipie-rails-0:1.1.0-1.el8sat.src", + "product_id": "rubygem-apipie-rails-0:1.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-apipie-rails@1.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-audited-0:5.3.2-1.el8sat.src", + "product": { + "name": "rubygem-audited-0:5.3.2-1.el8sat.src", + "product_id": "rubygem-audited-0:5.3.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-audited@5.3.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.src", + "product": { + "name": "rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.src", + "product_id": "rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-azure_mgmt_compute@0.22.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.src", + "product": { + "name": "rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.src", + "product_id": "rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-azure_mgmt_network@0.26.1-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.src", + "product": { + "name": "rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.src", + "product_id": "rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-azure_mgmt_resources@0.18.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.src", + "product": { + "name": "rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.src", + "product_id": "rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-azure_mgmt_storage@0.23.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.src", + "product": { + "name": "rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.src", + "product_id": "rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-azure_mgmt_subscriptions@0.18.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-bcrypt-0:3.1.18-1.el8sat.src", + "product": { + "name": "rubygem-bcrypt-0:3.1.18-1.el8sat.src", + "product_id": "rubygem-bcrypt-0:3.1.18-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-bcrypt@3.1.18-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-builder-0:3.2.4-2.el8sat.src", + "product": { + "name": "rubygem-builder-0:3.2.4-2.el8sat.src", + "product_id": "rubygem-builder-0:3.2.4-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-builder@3.2.4-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-bundler_ext-0:0.4.1-6.el8sat.src", + "product": { + "name": "rubygem-bundler_ext-0:0.4.1-6.el8sat.src", + "product_id": "rubygem-bundler_ext-0:0.4.1-6.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-bundler_ext@0.4.1-6.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-clamp-0:1.3.2-1.el8sat.src", + "product": { + "name": "rubygem-clamp-0:1.3.2-1.el8sat.src", + "product_id": "rubygem-clamp-0:1.3.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-clamp@1.3.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-coffee-rails-0:5.0.0-2.el8sat.src", + "product": { + "name": "rubygem-coffee-rails-0:5.0.0-2.el8sat.src", + "product_id": "rubygem-coffee-rails-0:5.0.0-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-coffee-rails@5.0.0-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-coffee-script-0:2.4.1-5.el8sat.src", + "product": { + "name": "rubygem-coffee-script-0:2.4.1-5.el8sat.src", + "product_id": "rubygem-coffee-script-0:2.4.1-5.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-coffee-script@2.4.1-5.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-coffee-script-source-0:1.12.2-5.el8sat.src", + "product": { + "name": "rubygem-coffee-script-source-0:1.12.2-5.el8sat.src", + "product_id": "rubygem-coffee-script-source-0:1.12.2-5.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-coffee-script-source@1.12.2-5.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-colorize-0:0.8.1-2.el8sat.src", + "product": { + "name": "rubygem-colorize-0:0.8.1-2.el8sat.src", + "product_id": "rubygem-colorize-0:0.8.1-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-colorize@0.8.1-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.src", + "product": { + "name": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.src", + "product_id": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-concurrent-ruby@1.1.10-1.el8sat?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.src", + "product": { + "name": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.src", + "product_id": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-concurrent-ruby-edge@0.6.0-3.el8sat?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-connection_pool-0:2.4.1-1.el8sat.src", + "product": { + "name": "rubygem-connection_pool-0:2.4.1-1.el8sat.src", + "product_id": "rubygem-connection_pool-0:2.4.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-connection_pool@2.4.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-crass-0:1.0.6-2.el8sat.src", + "product": { + "name": "rubygem-crass-0:1.0.6-2.el8sat.src", + "product_id": "rubygem-crass-0:1.0.6-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-crass@1.0.6-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-css_parser-0:1.14.0-1.el8sat.src", + "product": { + "name": "rubygem-css_parser-0:1.14.0-1.el8sat.src", + "product_id": "rubygem-css_parser-0:1.14.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-css_parser@1.14.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-daemons-0:1.4.1-1.el8sat.src", + "product": { + "name": "rubygem-daemons-0:1.4.1-1.el8sat.src", + "product_id": "rubygem-daemons-0:1.4.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-daemons@1.4.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-deacon-0:1.0.0-5.el8sat.src", + "product": { + "name": "rubygem-deacon-0:1.0.0-5.el8sat.src", + "product_id": "rubygem-deacon-0:1.0.0-5.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-deacon@1.0.0-5.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-declarative-0:0.0.20-1.el8sat.src", + "product": { + "name": "rubygem-declarative-0:0.0.20-1.el8sat.src", + "product_id": "rubygem-declarative-0:0.0.20-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-declarative@0.0.20-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-deep_cloneable-0:3.2.0-1.el8sat.src", + "product": { + "name": "rubygem-deep_cloneable-0:3.2.0-1.el8sat.src", + "product_id": "rubygem-deep_cloneable-0:3.2.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-deep_cloneable@3.2.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-deface-0:1.5.3-3.el8sat.src", + "product": { + "name": "rubygem-deface-0:1.5.3-3.el8sat.src", + "product_id": "rubygem-deface-0:1.5.3-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-deface@1.5.3-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-diffy-0:3.4.2-1.el8sat.src", + "product": { + "name": "rubygem-diffy-0:3.4.2-1.el8sat.src", + "product_id": "rubygem-diffy-0:3.4.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-diffy@3.4.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-domain_name-0:0.5.20190701-1.el8sat.src", + "product": { + "name": "rubygem-domain_name-0:0.5.20190701-1.el8sat.src", + "product_id": "rubygem-domain_name-0:0.5.20190701-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-domain_name@0.5.20190701-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-dynflow-0:1.7.0-1.el8sat.src", + "product": { + "name": "rubygem-dynflow-0:1.7.0-1.el8sat.src", + "product_id": "rubygem-dynflow-0:1.7.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-dynflow@1.7.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-erubi-0:1.12.0-1.el8sat.src", + "product": { + "name": "rubygem-erubi-0:1.12.0-1.el8sat.src", + "product_id": "rubygem-erubi-0:1.12.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-erubi@1.12.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-et-orbi-0:1.2.7-1.el8sat.src", + "product": { + "name": "rubygem-et-orbi-0:1.2.7-1.el8sat.src", + "product_id": "rubygem-et-orbi-0:1.2.7-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-et-orbi@1.2.7-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-excon-0:0.99.0-1.el8sat.src", + "product": { + "name": "rubygem-excon-0:0.99.0-1.el8sat.src", + "product_id": "rubygem-excon-0:0.99.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-excon@0.99.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-execjs-0:2.8.1-1.el8sat.src", + "product": { + "name": "rubygem-execjs-0:2.8.1-1.el8sat.src", + "product_id": "rubygem-execjs-0:2.8.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-execjs@2.8.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-facter-0:4.4.0-1.el8sat.src", + "product": { + "name": "rubygem-facter-0:4.4.0-1.el8sat.src", + "product_id": "rubygem-facter-0:4.4.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-facter@4.4.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-0:1.10.2-1.el8sat.src", + "product": { + "name": "rubygem-faraday-0:1.10.2-1.el8sat.src", + "product_id": "rubygem-faraday-0:1.10.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday@1.10.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.src", + "product": { + "name": "rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.src", + "product_id": "rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-cookie_jar@0.0.6-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.src", + "product": { + "name": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.src", + "product_id": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-em_http@1.0.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.src", + "product": { + "name": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.src", + "product_id": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-em_synchrony@1.0.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-excon-0:1.1.0-1.el8sat.src", + "product": { + "name": "rubygem-faraday-excon-0:1.1.0-1.el8sat.src", + "product_id": "rubygem-faraday-excon-0:1.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-excon@1.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.src", + "product": { + "name": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.src", + "product_id": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-httpclient@1.0.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.src", + "product": { + "name": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.src", + "product_id": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday_middleware@1.2.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.src", + "product": { + "name": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.src", + "product_id": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-multipart@1.0.4-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.src", + "product": { + "name": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.src", + "product_id": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-net_http@1.0.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.src", + "product": { + "name": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.src", + "product_id": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-net_http_persistent@1.2.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-patron-0:1.0.0-1.el8sat.src", + "product": { + "name": "rubygem-faraday-patron-0:1.0.0-1.el8sat.src", + "product_id": "rubygem-faraday-patron-0:1.0.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-patron@1.0.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-rack-0:1.0.0-1.el8sat.src", + "product": { + "name": "rubygem-faraday-rack-0:1.0.0-1.el8sat.src", + "product_id": "rubygem-faraday-rack-0:1.0.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-rack@1.0.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-retry-0:1.0.3-1.el8sat.src", + "product": { + "name": "rubygem-faraday-retry-0:1.0.3-1.el8sat.src", + "product_id": "rubygem-faraday-retry-0:1.0.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-retry@1.0.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fast_gettext-0:1.8.0-1.el8sat.src", + "product": { + "name": "rubygem-fast_gettext-0:1.8.0-1.el8sat.src", + "product_id": "rubygem-fast_gettext-0:1.8.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fast_gettext@1.8.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ffi-0:1.15.5-1.el8sat.src", + "product": { + "name": "rubygem-ffi-0:1.15.5-1.el8sat.src", + "product_id": "rubygem-ffi-0:1.15.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ffi@1.15.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-aws-0:3.19.0-1.el8sat.src", + "product": { + "name": "rubygem-fog-aws-0:3.19.0-1.el8sat.src", + "product_id": "rubygem-fog-aws-0:3.19.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-aws@3.19.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-core-0:2.3.0-1.el8sat.src", + "product": { + "name": "rubygem-fog-core-0:2.3.0-1.el8sat.src", + "product_id": "rubygem-fog-core-0:2.3.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-core@2.3.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-json-0:1.2.0-4.el8sat.src", + "product": { + "name": "rubygem-fog-json-0:1.2.0-4.el8sat.src", + "product_id": "rubygem-fog-json-0:1.2.0-4.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-json@1.2.0-4.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-kubevirt-0:1.3.7-1.el8sat.src", + "product": { + "name": "rubygem-fog-kubevirt-0:1.3.7-1.el8sat.src", + "product_id": "rubygem-fog-kubevirt-0:1.3.7-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-kubevirt@1.3.7-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-libvirt-0:0.11.0-1.el8sat.src", + "product": { + "name": "rubygem-fog-libvirt-0:0.11.0-1.el8sat.src", + "product_id": "rubygem-fog-libvirt-0:0.11.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-libvirt@0.11.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-openstack-0:1.1.0-1.el8sat.src", + "product": { + "name": "rubygem-fog-openstack-0:1.1.0-1.el8sat.src", + "product_id": "rubygem-fog-openstack-0:1.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-openstack@1.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-ovirt-0:2.0.2-1.el8sat.src", + "product": { + "name": "rubygem-fog-ovirt-0:2.0.2-1.el8sat.src", + "product_id": "rubygem-fog-ovirt-0:2.0.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-ovirt@2.0.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.src", + "product": { + "name": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.src", + "product_id": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-vsphere@3.6.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-xml-0:0.1.4-1.el8sat.src", + "product": { + "name": "rubygem-fog-xml-0:0.1.4-1.el8sat.src", + "product_id": "rubygem-fog-xml-0:0.1.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-xml@0.1.4-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_ansible-0:12.0.6-1.el8sat.src", + "product": { + "name": "rubygem-foreman_ansible-0:12.0.6-1.el8sat.src", + "product_id": "rubygem-foreman_ansible-0:12.0.6-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_ansible@12.0.6-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.src", + "product": { + "name": "rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.src", + "product_id": "rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_azure_rm@2.2.9-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.src", + "product": { + "name": "rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.src", + "product_id": "rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_bootdisk@21.0.4-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_discovery-0:22.0.4-1.el8sat.src", + "product": { + "name": "rubygem-foreman_discovery-0:22.0.4-1.el8sat.src", + "product_id": "rubygem-foreman_discovery-0:22.0.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_discovery@22.0.4-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_google-0:1.0.4-1.el8sat.src", + "product": { + "name": "rubygem-foreman_google-0:1.0.4-1.el8sat.src", + "product_id": "rubygem-foreman_google-0:1.0.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_google@1.0.4-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.src", + "product": { + "name": "rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.src", + "product_id": "rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_hooks@0.3.17-3.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.src", + "product": { + "name": "rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.src", + "product_id": "rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_kubevirt@0.1.9-4.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_leapp-0:0.1.14-1.el8sat.src", + "product": { + "name": "rubygem-foreman_leapp-0:0.1.14-1.el8sat.src", + "product_id": "rubygem-foreman_leapp-0:0.1.14-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_leapp@0.1.14-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.src", + "product": { + "name": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.src", + "product_id": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_maintain@1.3.5-1.el8sat?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_openscap-0:7.0.0-2.el8sat.src", + "product": { + "name": "rubygem-foreman_openscap-0:7.0.0-2.el8sat.src", + "product_id": "rubygem-foreman_openscap-0:7.0.0-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_openscap@7.0.0-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_puppet-0:6.0.1-1.el8sat.src", + "product": { + "name": "rubygem-foreman_puppet-0:6.0.1-1.el8sat.src", + "product_id": "rubygem-foreman_puppet-0:6.0.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_puppet@6.0.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.src", + "product": { + "name": "rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.src", + "product_id": "rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_remote_execution@10.0.7-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.src", + "product": { + "name": "rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.src", + "product_id": "rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_rh_cloud@8.0.51-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_scap_client-0:0.5.0-1.el8sat.src", + "product": { + "name": "rubygem-foreman_scap_client-0:0.5.0-1.el8sat.src", + "product_id": "rubygem-foreman_scap_client-0:0.5.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_scap_client@0.5.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_templates-0:9.4.0-1.el8sat.src", + "product": { + "name": "rubygem-foreman_templates-0:9.4.0-1.el8sat.src", + "product_id": "rubygem-foreman_templates-0:9.4.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_templates@9.4.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.src", + "product": { + "name": "rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.src", + "product_id": "rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_theme_satellite@12.0.0.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.src", + "product": { + "name": "rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.src", + "product_id": "rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_virt_who_configure@0.5.16-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_webhooks-0:3.2.1-1.el8sat.src", + "product": { + "name": "rubygem-foreman_webhooks-0:3.2.1-1.el8sat.src", + "product_id": "rubygem-foreman_webhooks-0:3.2.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_webhooks@3.2.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-formatador-0:1.1.0-1.el8sat.src", + "product": { + "name": "rubygem-formatador-0:1.1.0-1.el8sat.src", + "product_id": "rubygem-formatador-0:1.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-formatador@1.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-friendly_id-0:5.5.0-1.el8sat.src", + "product": { + "name": "rubygem-friendly_id-0:5.5.0-1.el8sat.src", + "product_id": "rubygem-friendly_id-0:5.5.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-friendly_id@5.5.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fugit-0:1.8.1-1.el8sat.src", + "product": { + "name": "rubygem-fugit-0:1.8.1-1.el8sat.src", + "product_id": "rubygem-fugit-0:1.8.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fugit@1.8.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fx-0:0.7.0-1.el8sat.src", + "product": { + "name": "rubygem-fx-0:0.7.0-1.el8sat.src", + "product_id": "rubygem-fx-0:0.7.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fx@0.7.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-gapic-common-0:0.12.0-1.el8sat.src", + "product": { + "name": "rubygem-gapic-common-0:0.12.0-1.el8sat.src", + "product_id": "rubygem-gapic-common-0:0.12.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-gapic-common@0.12.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-get_process_mem-0:0.2.7-2.1.el8sat.src", + "product": { + "name": "rubygem-get_process_mem-0:0.2.7-2.1.el8sat.src", + "product_id": "rubygem-get_process_mem-0:0.2.7-2.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-get_process_mem@0.2.7-2.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.src", + "product": { + "name": "rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.src", + "product_id": "rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-gettext_i18n_rails@1.10.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-git-0:1.18.0-1.el8sat.src", + "product": { + "name": "rubygem-git-0:1.18.0-1.el8sat.src", + "product_id": "rubygem-git-0:1.18.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-git@1.18.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.src", + "product": { + "name": "rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.src", + "product_id": "rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-gitlab-sidekiq-fetcher@0.9.0-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-globalid-0:1.1.0-1.el8sat.src", + "product": { + "name": "rubygem-globalid-0:1.1.0-1.el8sat.src", + "product_id": "rubygem-globalid-0:1.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-globalid@1.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.src", + "product": { + "name": "rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.src", + "product_id": "rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-googleapis-common-protos@1.3.12-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.src", + "product": { + "name": "rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.src", + "product_id": "rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-googleapis-common-protos-types@1.4.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.src", + "product": { + "name": "rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.src", + "product_id": "rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-apis-compute_v1@0.54.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-apis-core-0:0.9.1-1.el8sat.src", + "product": { + "name": "rubygem-google-apis-core-0:0.9.1-1.el8sat.src", + "product_id": "rubygem-google-apis-core-0:0.9.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-apis-core@0.9.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-googleauth-0:1.3.0-1.el8sat.src", + "product": { + "name": "rubygem-googleauth-0:1.3.0-1.el8sat.src", + "product_id": "rubygem-googleauth-0:1.3.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-googleauth@1.3.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-cloud-common-0:1.1.0-1.el8sat.src", + "product": { + "name": "rubygem-google-cloud-common-0:1.1.0-1.el8sat.src", + "product_id": "rubygem-google-cloud-common-0:1.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-cloud-common@1.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-cloud-compute-0:0.5.0-1.el8sat.src", + "product": { + "name": "rubygem-google-cloud-compute-0:0.5.0-1.el8sat.src", + "product_id": "rubygem-google-cloud-compute-0:0.5.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-cloud-compute@0.5.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.src", + "product": { + "name": "rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.src", + "product_id": "rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-cloud-compute-v1@1.7.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-cloud-core-0:1.6.0-1.el8sat.src", + "product": { + "name": "rubygem-google-cloud-core-0:1.6.0-1.el8sat.src", + "product_id": "rubygem-google-cloud-core-0:1.6.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-cloud-core@1.6.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-cloud-env-0:1.6.0-1.el8sat.src", + "product": { + "name": "rubygem-google-cloud-env-0:1.6.0-1.el8sat.src", + "product_id": "rubygem-google-cloud-env-0:1.6.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-cloud-env@1.6.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-cloud-errors-0:1.3.0-1.el8sat.src", + "product": { + "name": "rubygem-google-cloud-errors-0:1.3.0-1.el8sat.src", + "product_id": "rubygem-google-cloud-errors-0:1.3.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-cloud-errors@1.3.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-protobuf-0:3.21.6-1.el8sat.src", + "product": { + "name": "rubygem-google-protobuf-0:3.21.6-1.el8sat.src", + "product_id": "rubygem-google-protobuf-0:3.21.6-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-protobuf@3.21.6-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-graphql-0:1.13.19-1.el8sat.src", + "product": { + "name": "rubygem-graphql-0:1.13.19-1.el8sat.src", + "product_id": "rubygem-graphql-0:1.13.19-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-graphql@1.13.19-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-graphql-batch-0:0.5.3-1.el8sat.src", + "product": { + "name": "rubygem-graphql-batch-0:0.5.3-1.el8sat.src", + "product_id": "rubygem-graphql-batch-0:0.5.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-graphql-batch@0.5.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-grpc-0:1.49.1-1.el8sat.src", + "product": { + "name": "rubygem-grpc-0:1.49.1-1.el8sat.src", + "product_id": "rubygem-grpc-0:1.49.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-grpc@1.49.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-gssapi-0:1.3.1-1.el8sat.src", + "product": { + "name": "rubygem-gssapi-0:1.3.1-1.el8sat.src", + "product_id": "rubygem-gssapi-0:1.3.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-gssapi@1.3.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.src", + "product_id": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli@3.7.0.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman@3.7.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_admin@1.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_ansible@0.5.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_azure_rm@0.2.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_bootdisk@0.3.0-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_discovery@1.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_google@1.0.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_kubevirt@0.1.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_leapp@0.1.1-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_openscap@0.1.13-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_puppet@0.0.6-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_remote_execution@0.2.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_tasks@0.0.19-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_templates@0.2.0-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_virt_who_configure@0.0.9-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_webhooks@0.0.4-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.src", + "product_id": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_katello@1.9.1.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hashie-0:5.0.0-1.el8sat.src", + "product": { + "name": "rubygem-hashie-0:5.0.0-1.el8sat.src", + "product_id": "rubygem-hashie-0:5.0.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hashie@5.0.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-highline-0:2.1.0-1.el8sat.src", + "product": { + "name": "rubygem-highline-0:2.1.0-1.el8sat.src", + "product_id": "rubygem-highline-0:2.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-highline@2.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hocon-0:1.4.0-1.el8sat.src", + "product": { + "name": "rubygem-hocon-0:1.4.0-1.el8sat.src", + "product_id": "rubygem-hocon-0:1.4.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hocon@1.4.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-http-0:3.3.0-2.el8sat.src", + "product": { + "name": "rubygem-http-0:3.3.0-2.el8sat.src", + "product_id": "rubygem-http-0:3.3.0-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-http@3.3.0-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-http-accept-0:1.7.0-1.el8sat.src", + "product": { + "name": "rubygem-http-accept-0:1.7.0-1.el8sat.src", + "product_id": "rubygem-http-accept-0:1.7.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-http-accept@1.7.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-httpclient-0:2.8.3-4.el8sat.src", + "product": { + "name": "rubygem-httpclient-0:2.8.3-4.el8sat.src", + "product_id": "rubygem-httpclient-0:2.8.3-4.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-httpclient@2.8.3-4.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-http-cookie-0:1.0.5-1.el8sat.src", + "product": { + "name": "rubygem-http-cookie-0:1.0.5-1.el8sat.src", + "product_id": "rubygem-http-cookie-0:1.0.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-http-cookie@1.0.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-http-form_data-0:2.1.1-2.el8sat.src", + "product": { + "name": "rubygem-http-form_data-0:2.1.1-2.el8sat.src", + "product_id": "rubygem-http-form_data-0:2.1.1-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-http-form_data@2.1.1-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.src", + "product": { + "name": "rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.src", + "product_id": "rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-http_parser.rb@0.6.0-3.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-i18n-0:1.13.0-1.el8sat.src", + "product": { + "name": "rubygem-i18n-0:1.13.0-1.el8sat.src", + "product_id": "rubygem-i18n-0:1.13.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-i18n@1.13.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-infoblox-0:3.0.0-4.el8sat.src", + "product": { + "name": "rubygem-infoblox-0:3.0.0-4.el8sat.src", + "product_id": "rubygem-infoblox-0:3.0.0-4.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-infoblox@3.0.0-4.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-jgrep-0:1.3.3-11.el8sat.src", + "product": { + "name": "rubygem-jgrep-0:1.3.3-11.el8sat.src", + "product_id": "rubygem-jgrep-0:1.3.3-11.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-jgrep@1.3.3-11.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-journald-logger-0:3.1.0-1.el8sat.src", + "product": { + "name": "rubygem-journald-logger-0:3.1.0-1.el8sat.src", + "product_id": "rubygem-journald-logger-0:3.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-journald-logger@3.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-journald-native-0:1.0.12-1.el8sat.src", + "product": { + "name": "rubygem-journald-native-0:1.0.12-1.el8sat.src", + "product_id": "rubygem-journald-native-0:1.0.12-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-journald-native@1.0.12-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-jsonpath-0:1.1.2-1.el8sat.src", + "product": { + "name": "rubygem-jsonpath-0:1.1.2-1.el8sat.src", + "product_id": "rubygem-jsonpath-0:1.1.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-jsonpath@1.1.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-jwt-0:2.7.0-1.el8sat.src", + "product": { + "name": "rubygem-jwt-0:2.7.0-1.el8sat.src", + "product_id": "rubygem-jwt-0:2.7.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-jwt@2.7.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-kafo-0:7.0.0-1.el8sat.src", + "product": { + "name": "rubygem-kafo-0:7.0.0-1.el8sat.src", + "product_id": "rubygem-kafo-0:7.0.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-kafo@7.0.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.src", + "product": { + "name": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.src", + "product_id": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-kafo_parsers@1.2.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.src", + "product": { + "name": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.src", + "product_id": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-kafo_wizards@0.0.2-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-katello-0:4.9.0.16-1.el8sat.src", + "product": { + "name": "rubygem-katello-0:4.9.0.16-1.el8sat.src", + "product_id": "rubygem-katello-0:4.9.0.16-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-katello@4.9.0.16-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-kubeclient-0:4.10.1-1.el8sat.src", + "product": { + "name": "rubygem-kubeclient-0:4.10.1-1.el8sat.src", + "product_id": "rubygem-kubeclient-0:4.10.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-kubeclient@4.10.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ldap_fluff-0:0.6.0-1.el8sat.src", + "product": { + "name": "rubygem-ldap_fluff-0:0.6.0-1.el8sat.src", + "product_id": "rubygem-ldap_fluff-0:0.6.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ldap_fluff@0.6.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-little-plugger-0:1.1.4-3.el8sat.src", + "product": { + "name": "rubygem-little-plugger-0:1.1.4-3.el8sat.src", + "product_id": "rubygem-little-plugger-0:1.1.4-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-little-plugger@1.1.4-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-locale-0:2.1.3-1.el8sat.src", + "product": { + "name": "rubygem-locale-0:2.1.3-1.el8sat.src", + "product_id": "rubygem-locale-0:2.1.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-locale@2.1.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-logging-0:2.3.1-1.el8sat.src", + "product": { + "name": "rubygem-logging-0:2.3.1-1.el8sat.src", + "product_id": "rubygem-logging-0:2.3.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-logging@2.3.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-logging-journald-0:2.1.0-1.el8sat.src", + "product": { + "name": "rubygem-logging-journald-0:2.1.0-1.el8sat.src", + "product_id": "rubygem-logging-journald-0:2.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-logging-journald@2.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-loofah-0:2.21.3-1.el8sat.src", + "product": { + "name": "rubygem-loofah-0:2.21.3-1.el8sat.src", + "product_id": "rubygem-loofah-0:2.21.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-loofah@2.21.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-mail-0:2.8.0.1-1.el8sat.src", + "product": { + "name": "rubygem-mail-0:2.8.0.1-1.el8sat.src", + "product_id": "rubygem-mail-0:2.8.0.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-mail@2.8.0.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-marcel-0:1.0.2-1.el8sat.src", + "product": { + "name": "rubygem-marcel-0:1.0.2-1.el8sat.src", + "product_id": "rubygem-marcel-0:1.0.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-marcel@1.0.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-memoist-0:0.16.2-1.el8sat.src", + "product": { + "name": "rubygem-memoist-0:0.16.2-1.el8sat.src", + "product_id": "rubygem-memoist-0:0.16.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-memoist@0.16.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-method_source-0:1.0.0-1.el8sat.src", + "product": { + "name": "rubygem-method_source-0:1.0.0-1.el8sat.src", + "product_id": "rubygem-method_source-0:1.0.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-method_source@1.0.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-mime-types-0:3.4.1-1.el8sat.src", + "product": { + "name": "rubygem-mime-types-0:3.4.1-1.el8sat.src", + "product_id": "rubygem-mime-types-0:3.4.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-mime-types@3.4.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src", + "product": { + "name": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src", + "product_id": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-mime-types-data@3.2023.0218.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-mini_mime-0:1.1.2-1.el8sat.src", + "product": { + "name": "rubygem-mini_mime-0:1.1.2-1.el8sat.src", + "product_id": "rubygem-mini_mime-0:1.1.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-mini_mime@1.1.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-mqtt-0:0.5.0-1.el8sat.src", + "product": { + "name": "rubygem-mqtt-0:0.5.0-1.el8sat.src", + "product_id": "rubygem-mqtt-0:0.5.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-mqtt@0.5.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-msgpack-0:1.7.1-1.el8sat.src", + "product": { + "name": "rubygem-msgpack-0:1.7.1-1.el8sat.src", + "product_id": "rubygem-msgpack-0:1.7.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-msgpack@1.7.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ms_rest-0:0.7.6-1.el8sat.src", + "product": { + "name": "rubygem-ms_rest-0:0.7.6-1.el8sat.src", + "product_id": "rubygem-ms_rest-0:0.7.6-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ms_rest@0.7.6-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ms_rest_azure-0:0.12.0-1.el8sat.src", + "product": { + "name": "rubygem-ms_rest_azure-0:0.12.0-1.el8sat.src", + "product_id": "rubygem-ms_rest_azure-0:0.12.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ms_rest_azure@0.12.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-multi_json-0:1.15.0-1.el8sat.src", + "product": { + "name": "rubygem-multi_json-0:1.15.0-1.el8sat.src", + "product_id": "rubygem-multi_json-0:1.15.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-multi_json@1.15.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-multipart-post-0:2.2.3-1.el8sat.src", + "product": { + "name": "rubygem-multipart-post-0:2.2.3-1.el8sat.src", + "product_id": "rubygem-multipart-post-0:2.2.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-multipart-post@2.2.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-mustermann-0:2.0.2-1.el8sat.src", + "product": { + "name": "rubygem-mustermann-0:2.0.2-1.el8sat.src", + "product_id": "rubygem-mustermann-0:2.0.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-mustermann@2.0.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-net_http_unix-0:0.2.2-2.el8sat.src", + "product": { + "name": "rubygem-net_http_unix-0:0.2.2-2.el8sat.src", + "product_id": "rubygem-net_http_unix-0:0.2.2-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-net_http_unix@0.2.2-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-net-ldap-0:0.18.0-1.el8sat.src", + "product": { + "name": "rubygem-net-ldap-0:0.18.0-1.el8sat.src", + "product_id": "rubygem-net-ldap-0:0.18.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-net-ldap@0.18.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-net-ping-0:2.0.8-1.el8sat.src", + "product": { + "name": "rubygem-net-ping-0:2.0.8-1.el8sat.src", + "product_id": "rubygem-net-ping-0:2.0.8-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-net-ping@2.0.8-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-netrc-0:0.11.0-6.el8sat.src", + "product": { + "name": "rubygem-netrc-0:0.11.0-6.el8sat.src", + "product_id": "rubygem-netrc-0:0.11.0-6.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-netrc@0.11.0-6.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-net-scp-0:4.0.0-1.el8sat.src", + "product": { + "name": "rubygem-net-scp-0:4.0.0-1.el8sat.src", + "product_id": "rubygem-net-scp-0:4.0.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-net-scp@4.0.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-net-ssh-0:7.1.0-1.el8sat.src", + "product": { + "name": "rubygem-net-ssh-0:7.1.0-1.el8sat.src", + "product_id": "rubygem-net-ssh-0:7.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-net-ssh@7.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.src", + "product": { + "name": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.src", + "product_id": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-net-ssh-krb@0.4.0-4.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-newt-0:0.9.7-3.1.el8sat.src", + "product": { + "name": "rubygem-newt-0:0.9.7-3.1.el8sat.src", + "product_id": "rubygem-newt-0:0.9.7-3.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-newt@0.9.7-3.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-nio4r-0:2.5.9-1.el8sat.src", + "product": { + "name": "rubygem-nio4r-0:2.5.9-1.el8sat.src", + "product_id": "rubygem-nio4r-0:2.5.9-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-nio4r@2.5.9-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-nokogiri-0:1.15.0-1.el8sat.src", + "product": { + "name": "rubygem-nokogiri-0:1.15.0-1.el8sat.src", + "product_id": "rubygem-nokogiri-0:1.15.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-nokogiri@1.15.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-oauth-0:1.1.0-1.el8sat.src", + "product": { + "name": "rubygem-oauth-0:1.1.0-1.el8sat.src", + "product_id": "rubygem-oauth-0:1.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-oauth@1.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-oauth-tty-0:1.0.5-1.el8sat.src", + "product": { + "name": "rubygem-oauth-tty-0:1.0.5-1.el8sat.src", + "product_id": "rubygem-oauth-tty-0:1.0.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-oauth-tty@1.0.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-openscap-0:0.4.9-9.el8sat.src", + "product": { + "name": "rubygem-openscap-0:0.4.9-9.el8sat.src", + "product_id": "rubygem-openscap-0:0.4.9-9.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-openscap@0.4.9-9.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-openscap_parser-0:1.0.2-2.el8sat.src", + "product": { + "name": "rubygem-openscap_parser-0:1.0.2-2.el8sat.src", + "product_id": "rubygem-openscap_parser-0:1.0.2-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-openscap_parser@1.0.2-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-optimist-0:3.0.1-1.el8sat.src", + "product": { + "name": "rubygem-optimist-0:3.0.1-1.el8sat.src", + "product_id": "rubygem-optimist-0:3.0.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-optimist@3.0.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-os-0:1.1.4-1.el8sat.src", + "product": { + "name": "rubygem-os-0:1.1.4-1.el8sat.src", + "product_id": "rubygem-os-0:1.1.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-os@1.1.4-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.src", + "product": { + "name": "rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.src", + "product_id": "rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ovirt-engine-sdk@4.4.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.src", + "product": { + "name": "rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.src", + "product_id": "rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ovirt_provision_plugin@2.0.3-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-parallel-0:1.23.0-1.el8sat.src", + "product": { + "name": "rubygem-parallel-0:1.23.0-1.el8sat.src", + "product_id": "rubygem-parallel-0:1.23.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-parallel@1.23.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pg-0:1.5.3-1.el8sat.src", + "product": { + "name": "rubygem-pg-0:1.5.3-1.el8sat.src", + "product_id": "rubygem-pg-0:1.5.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pg@1.5.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-polyglot-0:0.3.5-3.1.el8sat.src", + "product": { + "name": "rubygem-polyglot-0:0.3.5-3.1.el8sat.src", + "product_id": "rubygem-polyglot-0:0.3.5-3.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-polyglot@0.3.5-3.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-powerbar-0:2.0.1-3.el8sat.src", + "product": { + "name": "rubygem-powerbar-0:2.0.1-3.el8sat.src", + "product_id": "rubygem-powerbar-0:2.0.1-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-powerbar@2.0.1-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-prometheus-client-0:4.1.0-1.el8sat.src", + "product": { + "name": "rubygem-prometheus-client-0:4.1.0-1.el8sat.src", + "product_id": "rubygem-prometheus-client-0:4.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-prometheus-client@4.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-promise.rb-0:0.7.4-3.el8sat.src", + "product": { + "name": "rubygem-promise.rb-0:0.7.4-3.el8sat.src", + "product_id": "rubygem-promise.rb-0:0.7.4-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-promise.rb@0.7.4-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-public_suffix-0:5.0.1-1.el8sat.src", + "product": { + "name": "rubygem-public_suffix-0:5.0.1-1.el8sat.src", + "product_id": "rubygem-public_suffix-0:5.0.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-public_suffix@5.0.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.src", + "product": { + "name": "rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.src", + "product_id": "rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_ansible_client@0.16.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.src", + "product": { + "name": "rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.src", + "product_id": "rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_certguard_client@1.6.4-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_container_client-0:2.14.5-1.el8sat.src", + "product": { + "name": "rubygem-pulp_container_client-0:2.14.5-1.el8sat.src", + "product_id": "rubygem-pulp_container_client-0:2.14.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_container_client@2.14.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulpcore_client-1:3.22.4-1.el8sat.src", + "product": { + "name": "rubygem-pulpcore_client-1:3.22.4-1.el8sat.src", + "product_id": "rubygem-pulpcore_client-1:3.22.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulpcore_client@3.22.4-1.el8sat?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_deb_client-0:2.20.2-1.el8sat.src", + "product": { + "name": "rubygem-pulp_deb_client-0:2.20.2-1.el8sat.src", + "product_id": "rubygem-pulp_deb_client-0:2.20.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_deb_client@2.20.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_file_client-0:1.12.0-2.el8sat.src", + "product": { + "name": "rubygem-pulp_file_client-0:1.12.0-2.el8sat.src", + "product_id": "rubygem-pulp_file_client-0:1.12.0-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_file_client@1.12.0-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.src", + "product": { + "name": "rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.src", + "product_id": "rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_ostree_client@2.0.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_python_client-0:3.8.0-2.el8sat.src", + "product": { + "name": "rubygem-pulp_python_client-0:3.8.0-2.el8sat.src", + "product_id": "rubygem-pulp_python_client-0:3.8.0-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_python_client@3.8.0-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.src", + "product": { + "name": "rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.src", + "product_id": "rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_rpm_client@3.19.6-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-puma-0:6.2.2-1.el8sat.src", + "product": { + "name": "rubygem-puma-0:6.2.2-1.el8sat.src", + "product_id": "rubygem-puma-0:6.2.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-puma@6.2.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-puma-status-0:1.6-1.el8sat.src", + "product": { + "name": "rubygem-puma-status-0:1.6-1.el8sat.src", + "product_id": "rubygem-puma-status-0:1.6-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-puma-status@1.6-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-qpid_proton-0:0.33.0-5.el8sat.src", + "product": { + "name": "rubygem-qpid_proton-0:0.33.0-5.el8sat.src", + "product_id": "rubygem-qpid_proton-0:0.33.0-5.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-qpid_proton@0.33.0-5.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-raabro-0:1.4.0-1.el8sat.src", + "product": { + "name": "rubygem-raabro-0:1.4.0-1.el8sat.src", + "product_id": "rubygem-raabro-0:1.4.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-raabro@1.4.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rabl-0:0.16.1-1.el8sat.src", + "product": { + "name": "rubygem-rabl-0:0.16.1-1.el8sat.src", + "product_id": "rubygem-rabl-0:0.16.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rabl@0.16.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rack-0:2.2.7-1.el8sat.src", + "product": { + "name": "rubygem-rack-0:2.2.7-1.el8sat.src", + "product_id": "rubygem-rack-0:2.2.7-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rack@2.2.7-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rack-cors-0:1.1.1-1.el8sat.src", + "product": { + "name": "rubygem-rack-cors-0:1.1.1-1.el8sat.src", + "product_id": "rubygem-rack-cors-0:1.1.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rack-cors@1.1.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rack-jsonp-0:1.3.1-10.el8sat.src", + "product": { + "name": "rubygem-rack-jsonp-0:1.3.1-10.el8sat.src", + "product_id": "rubygem-rack-jsonp-0:1.3.1-10.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rack-jsonp@1.3.1-10.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rack-protection-0:2.2.4-1.el8sat.src", + "product": { + "name": "rubygem-rack-protection-0:2.2.4-1.el8sat.src", + "product_id": "rubygem-rack-protection-0:2.2.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rack-protection@2.2.4-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rack-test-0:2.1.0-1.el8sat.src", + "product": { + "name": "rubygem-rack-test-0:2.1.0-1.el8sat.src", + "product_id": "rubygem-rack-test-0:2.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rack-test@2.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rails-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-rails-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-rails-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rails@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rails-dom-testing-0:2.0.3-7.el8sat.src", + "product": { + "name": "rubygem-rails-dom-testing-0:2.0.3-7.el8sat.src", + "product_id": "rubygem-rails-dom-testing-0:2.0.3-7.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rails-dom-testing@2.0.3-7.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.src", + "product": { + "name": "rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.src", + "product_id": "rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rails-html-sanitizer@1.5.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rails-i18n-0:7.0.7-1.el8sat.src", + "product": { + "name": "rubygem-rails-i18n-0:7.0.7-1.el8sat.src", + "product_id": "rubygem-rails-i18n-0:7.0.7-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rails-i18n@7.0.7-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-railties-0:6.1.7.3-1.el8sat.src", + "product": { + "name": "rubygem-railties-0:6.1.7.3-1.el8sat.src", + "product_id": "rubygem-railties-0:6.1.7.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-railties@6.1.7.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rainbow-0:2.2.2-1.el8sat.src", + "product": { + "name": "rubygem-rainbow-0:2.2.2-1.el8sat.src", + "product_id": "rubygem-rainbow-0:2.2.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rainbow@2.2.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rb-inotify-0:0.10.1-1.el8sat.src", + "product": { + "name": "rubygem-rb-inotify-0:0.10.1-1.el8sat.src", + "product_id": "rubygem-rb-inotify-0:0.10.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rb-inotify@0.10.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rbnacl-0:4.0.2-2.el8sat.src", + "product": { + "name": "rubygem-rbnacl-0:4.0.2-2.el8sat.src", + "product_id": "rubygem-rbnacl-0:4.0.2-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rbnacl@4.0.2-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rbvmomi2-0:3.6.1-1.el8sat.src", + "product": { + "name": "rubygem-rbvmomi2-0:3.6.1-1.el8sat.src", + "product_id": "rubygem-rbvmomi2-0:3.6.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rbvmomi2@3.6.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rchardet-0:1.8.0-1.el8sat.src", + "product": { + "name": "rubygem-rchardet-0:1.8.0-1.el8sat.src", + "product_id": "rubygem-rchardet-0:1.8.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rchardet@1.8.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-recursive-open-struct-0:1.1.3-1.el8sat.src", + "product": { + "name": "rubygem-recursive-open-struct-0:1.1.3-1.el8sat.src", + "product_id": "rubygem-recursive-open-struct-0:1.1.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-recursive-open-struct@1.1.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-redfish_client-0:0.5.4-1.el8sat.src", + "product": { + "name": "rubygem-redfish_client-0:0.5.4-1.el8sat.src", + "product_id": "rubygem-redfish_client-0:0.5.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-redfish_client@0.5.4-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-redis-0:4.5.1-1.el8sat.src", + "product": { + "name": "rubygem-redis-0:4.5.1-1.el8sat.src", + "product_id": "rubygem-redis-0:4.5.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-redis@4.5.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-representable-0:3.2.0-1.el8sat.src", + "product": { + "name": "rubygem-representable-0:3.2.0-1.el8sat.src", + "product_id": "rubygem-representable-0:3.2.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-representable@3.2.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-responders-0:3.1.0-1.el8sat.src", + "product": { + "name": "rubygem-responders-0:3.1.0-1.el8sat.src", + "product_id": "rubygem-responders-0:3.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-responders@3.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rest-client-0:2.1.0-1.el8sat.src", + "product": { + "name": "rubygem-rest-client-0:2.1.0-1.el8sat.src", + "product_id": "rubygem-rest-client-0:2.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rest-client@2.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-retriable-0:3.1.2-3.el8sat.src", + "product": { + "name": "rubygem-retriable-0:3.1.2-3.el8sat.src", + "product_id": "rubygem-retriable-0:3.1.2-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-retriable@3.1.2-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.src", + "product": { + "name": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.src", + "product_id": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rkerberos@0.1.5-20.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-roadie-0:5.1.0-1.el8sat.src", + "product": { + "name": "rubygem-roadie-0:5.1.0-1.el8sat.src", + "product_id": "rubygem-roadie-0:5.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-roadie@5.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-roadie-rails-0:3.0.0-1.el8sat.src", + "product": { + "name": "rubygem-roadie-rails-0:3.0.0-1.el8sat.src", + "product_id": "rubygem-roadie-rails-0:3.0.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-roadie-rails@3.0.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-robotex-0:1.0.0-22.el8sat.src", + "product": { + "name": "rubygem-robotex-0:1.0.0-22.el8sat.src", + "product_id": "rubygem-robotex-0:1.0.0-22.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-robotex@1.0.0-22.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rsec-0:0.4.3-5.el8sat.src", + "product": { + "name": "rubygem-rsec-0:0.4.3-5.el8sat.src", + "product_id": "rubygem-rsec-0:0.4.3-5.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rsec@0.4.3-5.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.src", + "product": { + "name": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.src", + "product_id": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ruby2_keywords@0.0.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ruby2ruby-0:2.5.0-1.el8sat.src", + "product": { + "name": "rubygem-ruby2ruby-0:2.5.0-1.el8sat.src", + "product_id": "rubygem-ruby2ruby-0:2.5.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ruby2ruby@2.5.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rubyipmi-0:0.11.1-1.el8sat.src", + "product": { + "name": "rubygem-rubyipmi-0:0.11.1-1.el8sat.src", + "product_id": "rubygem-rubyipmi-0:0.11.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rubyipmi@0.11.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.src", + "product": { + "name": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.src", + "product_id": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ruby-libvirt@0.8.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ruby_parser-0:3.20.1-1.el8sat.src", + "product": { + "name": "rubygem-ruby_parser-0:3.20.1-1.el8sat.src", + "product_id": "rubygem-ruby_parser-0:3.20.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ruby_parser@3.20.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-safemode-0:1.3.8-1.el8sat.src", + "product": { + "name": "rubygem-safemode-0:1.3.8-1.el8sat.src", + "product_id": "rubygem-safemode-0:1.3.8-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-safemode@1.3.8-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-scoped_search-0:4.1.11-1.el8sat.src", + "product": { + "name": "rubygem-scoped_search-0:4.1.11-1.el8sat.src", + "product_id": "rubygem-scoped_search-0:4.1.11-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-scoped_search@4.1.11-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sd_notify-0:0.1.1-1.el8sat.src", + "product": { + "name": "rubygem-sd_notify-0:0.1.1-1.el8sat.src", + "product_id": "rubygem-sd_notify-0:0.1.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sd_notify@0.1.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-secure_headers-0:6.5.0-1.el8sat.src", + "product": { + "name": "rubygem-secure_headers-0:6.5.0-1.el8sat.src", + "product_id": "rubygem-secure_headers-0:6.5.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-secure_headers@6.5.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sequel-0:5.68.0-1.el8sat.src", + "product": { + "name": "rubygem-sequel-0:5.68.0-1.el8sat.src", + "product_id": "rubygem-sequel-0:5.68.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sequel@5.68.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-server_sent_events-0:0.1.3-1.el8sat.src", + "product": { + "name": "rubygem-server_sent_events-0:0.1.3-1.el8sat.src", + "product_id": "rubygem-server_sent_events-0:0.1.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-server_sent_events@0.1.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sexp_processor-0:4.17.0-1.el8sat.src", + "product": { + "name": "rubygem-sexp_processor-0:4.17.0-1.el8sat.src", + "product_id": "rubygem-sexp_processor-0:4.17.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sexp_processor@4.17.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sidekiq-0:6.3.1-2.el8sat.src", + "product": { + "name": "rubygem-sidekiq-0:6.3.1-2.el8sat.src", + "product_id": "rubygem-sidekiq-0:6.3.1-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sidekiq@6.3.1-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-signet-0:0.17.0-1.el8sat.src", + "product": { + "name": "rubygem-signet-0:0.17.0-1.el8sat.src", + "product_id": "rubygem-signet-0:0.17.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-signet@0.17.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sinatra-1:2.2.4-1.el8sat.src", + "product": { + "name": "rubygem-sinatra-1:2.2.4-1.el8sat.src", + "product_id": "rubygem-sinatra-1:2.2.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sinatra@2.2.4-1.el8sat?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.src", + "product_id": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_ansible@3.5.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.src", + "product_id": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_container_gateway@1.0.8-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.src", + "product_id": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_dhcp_infoblox@0.0.17-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.src", + "product_id": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_dhcp_remote_isc@0.0.5-6.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.src", + "product_id": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_discovery@1.0.5-9.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.src", + "product_id": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_discovery_image@1.6.0-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.src", + "product_id": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_dns_infoblox@1.1.0-7.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.src", + "product_id": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_dynflow@0.9.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.src", + "product_id": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_dynflow_core@0.4.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.src", + "product_id": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_openscap@0.9.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.src", + "product_id": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_pulp@3.2.0-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.src", + "product_id": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_shellhooks@0.9.2-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-snaky_hash-0:2.0.1-1.el8sat.src", + "product": { + "name": "rubygem-snaky_hash-0:2.0.1-1.el8sat.src", + "product_id": "rubygem-snaky_hash-0:2.0.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-snaky_hash@2.0.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sprockets-0:4.2.0-1.el8sat.src", + "product": { + "name": "rubygem-sprockets-0:4.2.0-1.el8sat.src", + "product_id": "rubygem-sprockets-0:4.2.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sprockets@4.2.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sprockets-rails-0:3.4.2-1.el8sat.src", + "product": { + "name": "rubygem-sprockets-rails-0:3.4.2-1.el8sat.src", + "product_id": "rubygem-sprockets-rails-0:3.4.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sprockets-rails@3.4.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sqlite3-0:1.4.2-1.el8sat.src", + "product": { + "name": "rubygem-sqlite3-0:1.4.2-1.el8sat.src", + "product_id": "rubygem-sqlite3-0:1.4.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sqlite3@1.4.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sshkey-0:2.0.0-1.el8sat.src", + "product": { + "name": "rubygem-sshkey-0:2.0.0-1.el8sat.src", + "product_id": "rubygem-sshkey-0:2.0.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sshkey@2.0.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.src", + "product": { + "name": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.src", + "product_id": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-statsd-instrument@2.9.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-stomp-0:1.4.10-1.el8sat.src", + "product": { + "name": "rubygem-stomp-0:1.4.10-1.el8sat.src", + "product_id": "rubygem-stomp-0:1.4.10-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-stomp@1.4.10-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-thor-0:1.2.2-1.el8sat.src", + "product": { + "name": "rubygem-thor-0:1.2.2-1.el8sat.src", + "product_id": "rubygem-thor-0:1.2.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-thor@1.2.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-tilt-0:2.1.0-1.el8sat.src", + "product": { + "name": "rubygem-tilt-0:2.1.0-1.el8sat.src", + "product_id": "rubygem-tilt-0:2.1.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-tilt@2.1.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-timeliness-0:0.3.10-2.el8sat.src", + "product": { + "name": "rubygem-timeliness-0:0.3.10-2.el8sat.src", + "product_id": "rubygem-timeliness-0:0.3.10-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-timeliness@0.3.10-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-trailblazer-option-0:0.1.2-1.el8sat.src", + "product": { + "name": "rubygem-trailblazer-option-0:0.1.2-1.el8sat.src", + "product_id": "rubygem-trailblazer-option-0:0.1.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-trailblazer-option@0.1.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-tzinfo-0:2.0.6-1.el8sat.src", + "product": { + "name": "rubygem-tzinfo-0:2.0.6-1.el8sat.src", + "product_id": "rubygem-tzinfo-0:2.0.6-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-tzinfo@2.0.6-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-uber-0:0.1.0-3.el8sat.src", + "product": { + "name": "rubygem-uber-0:0.1.0-3.el8sat.src", + "product_id": "rubygem-uber-0:0.1.0-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-uber@0.1.0-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-unf-0:0.1.4-1.el8sat.src", + "product": { + "name": "rubygem-unf-0:0.1.4-1.el8sat.src", + "product_id": "rubygem-unf-0:0.1.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-unf@0.1.4-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.src", + "product": { + "name": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.src", + "product_id": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-unf_ext@0.0.8.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.src", + "product": { + "name": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.src", + "product_id": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-unicode@0.4.4.4-4.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.src", + "product": { + "name": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.src", + "product_id": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-unicode-display_width@1.8.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.src", + "product": { + "name": "rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.src", + "product_id": "rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-validates_lengths_from_database@0.8.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-version_gem-0:1.1.2-1.el8sat.src", + "product": { + "name": "rubygem-version_gem-0:1.1.2-1.el8sat.src", + "product_id": "rubygem-version_gem-0:1.1.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-version_gem@1.1.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-webpack-rails-0:0.9.11-1.el8sat.src", + "product": { + "name": "rubygem-webpack-rails-0:0.9.11-1.el8sat.src", + "product_id": "rubygem-webpack-rails-0:0.9.11-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-webpack-rails@0.9.11-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-webrick-0:1.8.1-1.el8sat.src", + "product": { + "name": "rubygem-webrick-0:1.8.1-1.el8sat.src", + "product_id": "rubygem-webrick-0:1.8.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-webrick@1.8.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-websocket-driver-0:0.7.5-1.el8sat.src", + "product": { + "name": "rubygem-websocket-driver-0:0.7.5-1.el8sat.src", + "product_id": "rubygem-websocket-driver-0:0.7.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-websocket-driver@0.7.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-websocket-extensions-0:0.1.5-2.el8sat.src", + "product": { + "name": "rubygem-websocket-extensions-0:0.1.5-2.el8sat.src", + "product_id": "rubygem-websocket-extensions-0:0.1.5-2.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-websocket-extensions@0.1.5-2.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-will_paginate-0:3.3.1-1.el8sat.src", + "product": { + "name": "rubygem-will_paginate-0:3.3.1-1.el8sat.src", + "product_id": "rubygem-will_paginate-0:3.3.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-will_paginate@3.3.1-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-xmlrpc-0:0.3.2-1.el8sat.src", + "product": { + "name": "rubygem-xmlrpc-0:0.3.2-1.el8sat.src", + "product_id": "rubygem-xmlrpc-0:0.3.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-xmlrpc@0.3.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-zeitwerk-0:2.6.8-1.el8sat.src", + "product": { + "name": "rubygem-zeitwerk-0:2.6.8-1.el8sat.src", + "product_id": "rubygem-zeitwerk-0:2.6.8-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-zeitwerk@2.6.8-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "saslwrapper-0:0.22-6.el8sat.src", + "product": { + "name": "saslwrapper-0:0.22-6.el8sat.src", + "product_id": "saslwrapper-0:0.22-6.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/saslwrapper@0.22-6.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "satellite-0:6.14.0-3.el8sat.src", + "product": { + "name": "satellite-0:6.14.0-3.el8sat.src", + "product_id": "satellite-0:6.14.0-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite@6.14.0-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "satellite-clone-0:3.5.0-1.el8sat.src", + "product": { + "name": "satellite-clone-0:3.5.0-1.el8sat.src", + "product_id": "satellite-clone-0:3.5.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-clone@3.5.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "satellite-installer-0:6.14.0.5-1.el8sat.src", + "product": { + "name": "satellite-installer-0:6.14.0.5-1.el8sat.src", + "product_id": "satellite-installer-0:6.14.0.5-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-installer@6.14.0.5-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "satellite-maintain-0:0.0.2-1.el8sat.src", + "product": { + "name": "satellite-maintain-0:0.0.2-1.el8sat.src", + "product_id": "satellite-maintain-0:0.0.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-maintain@0.0.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "product": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "product_id": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil-worker-forwarder@0.0.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pulpcore-0:3.22.15-2.el8pc.src", + "product": { + "name": "python-pulpcore-0:3.22.15-2.el8pc.src", + "product_id": "python-pulpcore-0:3.22.15-2.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pulpcore@3.22.15-2.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman-tasks-0:8.1.4-1.el8sat.src", + "product": { + "name": "rubygem-foreman-tasks-0:8.1.4-1.el8sat.src", + "product_id": "rubygem-foreman-tasks-0:8.1.4-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman-tasks@8.1.4-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.src", + "product": { + "name": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.src", + "product_id": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_remote_execution_ssh@0.10.1-1.el8sat?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.noarch", + "product": { + "name": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.noarch", + "product_id": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ansible-collection-redhat-satellite@3.14.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.noarch", + "product": { + "name": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.noarch", + "product_id": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ansible-collection-redhat-satellite_operations@2.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "ansible-lint-0:5.0.8-4.el8pc.noarch", + "product": { + "name": "ansible-lint-0:5.0.8-4.el8pc.noarch", + "product_id": "ansible-lint-0:5.0.8-4.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ansible-lint@5.0.8-4.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.noarch", + "product": { + "name": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.noarch", + "product_id": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ansiblerole-foreman_scap_client@0.2.0-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "ansiblerole-insights-client-0:1.7.1-2.el8sat.noarch", + "product": { + "name": "ansiblerole-insights-client-0:1.7.1-2.el8sat.noarch", + "product_id": "ansiblerole-insights-client-0:1.7.1-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ansiblerole-insights-client@1.7.1-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "ansible-runner-0:2.2.1-3.el8sat.noarch", + "product": { + "name": "ansible-runner-0:2.2.1-3.el8sat.noarch", + "product_id": "ansible-runner-0:2.2.1-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ansible-runner@2.2.1-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-ansible-runner-0:2.2.1-3.el8sat.noarch", + "product": { + "name": "python39-ansible-runner-0:2.2.1-3.el8sat.noarch", + "product_id": "python39-ansible-runner-0:2.2.1-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-ansible-runner@2.2.1-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "candlepin-0:4.3.1-1.el8sat.noarch", + "product": { + "name": "candlepin-0:4.3.1-1.el8sat.noarch", + "product_id": "candlepin-0:4.3.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/candlepin@4.3.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "candlepin-selinux-0:4.3.1-1.el8sat.noarch", + "product": { + "name": "candlepin-selinux-0:4.3.1-1.el8sat.noarch", + "product_id": "candlepin-selinux-0:4.3.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/candlepin-selinux@4.3.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-cli-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-cli-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-cli-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-cli@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-debug-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-debug-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-debug-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-debug@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-dynflow-sidekiq@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-ec2-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-ec2-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-ec2-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-ec2@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-journald-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-journald-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-journald-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-journald@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-libvirt-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-libvirt-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-libvirt-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-libvirt@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-openstack-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-openstack-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-openstack-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-openstack@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-ovirt-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-ovirt-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-ovirt-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-ovirt@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-postgresql-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-postgresql-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-postgresql-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-postgresql@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-redis-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-redis-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-redis-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-redis@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-service-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-service-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-service-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-service@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-telemetry-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-telemetry-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-telemetry-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-telemetry@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-vmware-0:3.7.0.9-1.el8sat.noarch", + "product": { + "name": "foreman-vmware-0:3.7.0.9-1.el8sat.noarch", + "product_id": "foreman-vmware-0:3.7.0.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-vmware@3.7.0.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.noarch", + "product": { + "name": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.noarch", + "product_id": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-bootloaders-redhat@202102220000-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-bootloaders-redhat-tftpboot-0:202102220000-1.el8sat.noarch", + "product": { + "name": "foreman-bootloaders-redhat-tftpboot-0:202102220000-1.el8sat.noarch", + "product_id": "foreman-bootloaders-redhat-tftpboot-0:202102220000-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-bootloaders-redhat-tftpboot@202102220000-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-discovery-image-1:4.1.0-10.el8sat.noarch", + "product": { + "name": "foreman-discovery-image-1:4.1.0-10.el8sat.noarch", + "product_id": "foreman-discovery-image-1:4.1.0-10.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-discovery-image@4.1.0-10.el8sat?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "foreman-installer-1:3.7.0.4-1.el8sat.noarch", + "product": { + "name": "foreman-installer-1:3.7.0.4-1.el8sat.noarch", + "product_id": "foreman-installer-1:3.7.0.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-installer@3.7.0.4-1.el8sat?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "foreman-installer-katello-1:3.7.0.4-1.el8sat.noarch", + "product": { + "name": "foreman-installer-katello-1:3.7.0.4-1.el8sat.noarch", + "product_id": "foreman-installer-katello-1:3.7.0.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-installer-katello@3.7.0.4-1.el8sat?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "foreman-obsolete-packages-0:1.5-1.el8sat.noarch", + "product": { + "name": "foreman-obsolete-packages-0:1.5-1.el8sat.noarch", + "product_id": "foreman-obsolete-packages-0:1.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-obsolete-packages@1.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-proxy-0:3.7.0-1.el8sat.noarch", + "product": { + "name": "foreman-proxy-0:3.7.0-1.el8sat.noarch", + "product_id": "foreman-proxy-0:3.7.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-proxy@3.7.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-proxy-journald-0:3.7.0-1.el8sat.noarch", + "product": { + "name": "foreman-proxy-journald-0:3.7.0-1.el8sat.noarch", + "product_id": "foreman-proxy-journald-0:3.7.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-proxy-journald@3.7.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-selinux-0:3.7.0-1.el8sat.noarch", + "product": { + "name": "foreman-selinux-0:3.7.0-1.el8sat.noarch", + "product_id": "foreman-selinux-0:3.7.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-selinux@3.7.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-proxy-content-0:4.9.0-1.el8sat.noarch", + "product": { + "name": "foreman-proxy-content-0:4.9.0-1.el8sat.noarch", + "product_id": "foreman-proxy-content-0:4.9.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-proxy-content@4.9.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "katello-common-0:4.9.0-1.el8sat.noarch", + "product": { + "name": "katello-common-0:4.9.0-1.el8sat.noarch", + "product_id": "katello-common-0:4.9.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/katello-common@4.9.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "katello-debug-0:4.9.0-1.el8sat.noarch", + "product": { + "name": "katello-debug-0:4.9.0-1.el8sat.noarch", + "product_id": "katello-debug-0:4.9.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/katello-debug@4.9.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "katello-0:4.9.0-1.el8sat.noarch", + "product": { + "name": "katello-0:4.9.0-1.el8sat.noarch", + "product_id": "katello-0:4.9.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/katello@4.9.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "katello-certs-tools-0:2.9.0-2.el8sat.noarch", + "product": { + "name": "katello-certs-tools-0:2.9.0-2.el8sat.noarch", + "product_id": "katello-certs-tools-0:2.9.0-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/katello-certs-tools@2.9.0-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "katello-client-bootstrap-0:1.7.9-1.el8sat.noarch", + "product": { + "name": "katello-client-bootstrap-0:1.7.9-1.el8sat.noarch", + "product_id": "katello-client-bootstrap-0:1.7.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/katello-client-bootstrap@1.7.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "katello-selinux-0:5.0.2-1.el8sat.noarch", + "product": { + "name": "katello-selinux-0:5.0.2-1.el8sat.noarch", + "product_id": "katello-selinux-0:5.0.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/katello-selinux@5.0.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "puppet-agent-oauth-0:0.5.10-1.el8sat.noarch", + "product": { + "name": "puppet-agent-oauth-0:0.5.10-1.el8sat.noarch", + "product_id": "puppet-agent-oauth-0:0.5.10-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent-oauth@0.5.10-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.noarch", + "product": { + "name": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.noarch", + "product_id": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-foreman_scap_client@0.4.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "puppetlabs-stdlib-0:5.2.0-1.el8sat.noarch", + "product": { + "name": "puppetlabs-stdlib-0:5.2.0-1.el8sat.noarch", + "product_id": "puppetlabs-stdlib-0:5.2.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppetlabs-stdlib@5.2.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "puppetserver-0:7.11.0-1.el8sat.noarch", + "product": { + "name": "puppetserver-0:7.11.0-1.el8sat.noarch", + "product_id": "puppetserver-0:7.11.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppetserver@7.11.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-aiodns-0:3.0.0-3.el8pc.noarch", + "product": { + "name": "python39-aiodns-0:3.0.0-3.el8pc.noarch", + "product_id": "python39-aiodns-0:3.0.0-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-aiodns@3.0.0-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-aiofiles-0:22.1.0-1.el8pc.noarch", + "product": { + "name": "python39-aiofiles-0:22.1.0-1.el8pc.noarch", + "product_id": "python39-aiofiles-0:22.1.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-aiofiles@22.1.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-aiohttp-xmlrpc-0:1.5.0-2.el8pc.noarch", + "product": { + "name": "python39-aiohttp-xmlrpc-0:1.5.0-2.el8pc.noarch", + "product_id": "python39-aiohttp-xmlrpc-0:1.5.0-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-aiohttp-xmlrpc@1.5.0-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-aioredis-0:2.0.1-2.el8pc.noarch", + "product": { + "name": "python39-aioredis-0:2.0.1-2.el8pc.noarch", + "product_id": "python39-aioredis-0:2.0.1-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-aioredis@2.0.1-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-aiosignal-0:1.3.1-1.el8pc.noarch", + "product": { + "name": "python39-aiosignal-0:1.3.1-1.el8pc.noarch", + "product_id": "python39-aiosignal-0:1.3.1-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-aiosignal@1.3.1-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-ansible-builder-0:1.0.1-4.el8pc.noarch", + "product": { + "name": "python39-ansible-builder-0:1.0.1-4.el8pc.noarch", + "product_id": "python39-ansible-builder-0:1.0.1-4.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-ansible-builder@1.0.1-4.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-asgiref-0:3.6.0-1.el8pc.noarch", + "product": { + "name": "python39-asgiref-0:3.6.0-1.el8pc.noarch", + "product_id": "python39-asgiref-0:3.6.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-asgiref@3.6.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-asyncio-throttle-0:1.0.2-3.el8pc.noarch", + "product": { + "name": "python39-asyncio-throttle-0:1.0.2-3.el8pc.noarch", + "product_id": "python39-asyncio-throttle-0:1.0.2-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-asyncio-throttle@1.0.2-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-async-lru-0:1.0.3-1.el8pc.noarch", + "product": { + "name": "python39-async-lru-0:1.0.3-1.el8pc.noarch", + "product_id": "python39-async-lru-0:1.0.3-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-async-lru@1.0.3-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-async-timeout-0:4.0.2-2.el8pc.noarch", + "product": { + "name": "python39-async-timeout-0:4.0.2-2.el8pc.noarch", + "product_id": "python39-async-timeout-0:4.0.2-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-async-timeout@4.0.2-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-attrs-0:21.4.0-2.el8pc.noarch", + "product": { + "name": "python39-attrs-0:21.4.0-2.el8pc.noarch", + "product_id": "python39-attrs-0:21.4.0-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-attrs@21.4.0-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-backoff-0:2.2.1-1.el8pc.noarch", + "product": { + "name": "python39-backoff-0:2.2.1-1.el8pc.noarch", + "product_id": "python39-backoff-0:2.2.1-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-backoff@2.2.1-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-bindep-0:2.11.0-2.el8pc.noarch", + "product": { + "name": "python39-bindep-0:2.11.0-2.el8pc.noarch", + "product_id": "python39-bindep-0:2.11.0-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-bindep@2.11.0-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-bleach-0:3.3.1-2.el8pc.noarch", + "product": { + "name": "python39-bleach-0:3.3.1-2.el8pc.noarch", + "product_id": "python39-bleach-0:3.3.1-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-bleach@3.3.1-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-bleach-allowlist-0:1.0.3-3.el8pc.noarch", + "product": { + "name": "python39-bleach-allowlist-0:1.0.3-3.el8pc.noarch", + "product_id": "python39-bleach-allowlist-0:1.0.3-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-bleach-allowlist@1.0.3-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-bracex-0:2.2.1-2.el8pc.noarch", + "product": { + "name": "python39-bracex-0:2.2.1-2.el8pc.noarch", + "product_id": "python39-bracex-0:2.2.1-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-bracex@2.2.1-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-certifi-0:2022.12.7-1.1.el8pc.noarch", + "product": { + "name": "python39-certifi-0:2022.12.7-1.1.el8pc.noarch", + "product_id": "python39-certifi-0:2022.12.7-1.1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-certifi@2022.12.7-1.1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-chardet-0:5.0.0-1.el8pc.noarch", + "product": { + "name": "python39-chardet-0:5.0.0-1.el8pc.noarch", + "product_id": "python39-chardet-0:5.0.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-chardet@5.0.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-charset-normalizer-0:2.1.1-1.el8pc.noarch", + "product": { + "name": "python39-charset-normalizer-0:2.1.1-1.el8pc.noarch", + "product_id": "python39-charset-normalizer-0:2.1.1-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-charset-normalizer@2.1.1-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-click-0:8.1.3-1.el8pc.noarch", + "product": { + "name": "python39-click-0:8.1.3-1.el8pc.noarch", + "product_id": "python39-click-0:8.1.3-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-click@8.1.3-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-click-shell-0:2.1-3.el8pc.noarch", + "product": { + "name": "python39-click-shell-0:2.1-3.el8pc.noarch", + "product_id": "python39-click-shell-0:2.1-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-click-shell@2.1-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-colorama-0:0.4.4-3.el8pc.noarch", + "product": { + "name": "python39-colorama-0:0.4.4-3.el8pc.noarch", + "product_id": "python39-colorama-0:0.4.4-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-colorama@0.4.4-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-commonmark-0:0.9.1-5.el8pc.noarch", + "product": { + "name": "python39-commonmark-0:0.9.1-5.el8pc.noarch", + "product_id": "python39-commonmark-0:0.9.1-5.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-commonmark@0.9.1-5.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-contextlib2-0:21.6.0-3.el8pc.noarch", + "product": { + "name": "python39-contextlib2-0:21.6.0-3.el8pc.noarch", + "product_id": "python39-contextlib2-0:21.6.0-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-contextlib2@21.6.0-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-daemon-0:2.3.1-1.1.el8sat.noarch", + "product": { + "name": "python39-daemon-0:2.3.1-1.1.el8sat.noarch", + "product_id": "python39-daemon-0:2.3.1-1.1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-daemon@2.3.1-1.1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-dataclasses-0:0.8-3.el8pc.noarch", + "product": { + "name": "python39-dataclasses-0:0.8-3.el8pc.noarch", + "product_id": "python39-dataclasses-0:0.8-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-dataclasses@0.8-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-dateutil-0:2.8.2-2.el8pc.noarch", + "product": { + "name": "python39-dateutil-0:2.8.2-2.el8pc.noarch", + "product_id": "python39-dateutil-0:2.8.2-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-dateutil@2.8.2-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-debian-0:0.1.44-3.el8pc.noarch", + "product": { + "name": "python39-debian-0:0.1.44-3.el8pc.noarch", + "product_id": "python39-debian-0:0.1.44-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-debian@0.1.44-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-defusedxml-0:0.7.1-3.el8pc.noarch", + "product": { + "name": "python39-defusedxml-0:0.7.1-3.el8pc.noarch", + "product_id": "python39-defusedxml-0:0.7.1-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-defusedxml@0.7.1-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-deprecated-0:1.2.13-1.el8pc.noarch", + "product": { + "name": "python39-deprecated-0:1.2.13-1.el8pc.noarch", + "product_id": "python39-deprecated-0:1.2.13-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-deprecated@1.2.13-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-diff-match-patch-0:20200713-3.el8pc.noarch", + "product": { + "name": "python39-diff-match-patch-0:20200713-3.el8pc.noarch", + "product_id": "python39-diff-match-patch-0:20200713-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-diff-match-patch@20200713-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-distro-0:1.7.0-1.el8pc.noarch", + "product": { + "name": "python39-distro-0:1.7.0-1.el8pc.noarch", + "product_id": "python39-distro-0:1.7.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-distro@1.7.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-django-0:3.2.21-1.el8pc.noarch", + "product": { + "name": "python39-django-0:3.2.21-1.el8pc.noarch", + "product_id": "python39-django-0:3.2.21-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-django@3.2.21-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-django-currentuser-0:0.5.3-5.el8pc.noarch", + "product": { + "name": "python39-django-currentuser-0:0.5.3-5.el8pc.noarch", + "product_id": "python39-django-currentuser-0:0.5.3-5.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-django-currentuser@0.5.3-5.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-django-filter-0:22.1-2.el8pc.noarch", + "product": { + "name": "python39-django-filter-0:22.1-2.el8pc.noarch", + "product_id": "python39-django-filter-0:22.1-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-django-filter@22.1-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-django-guid-0:3.3.0-1.el8pc.noarch", + "product": { + "name": "python39-django-guid-0:3.3.0-1.el8pc.noarch", + "product_id": "python39-django-guid-0:3.3.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-django-guid@3.3.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-django-import-export-0:3.0.2-1.el8pc.noarch", + "product": { + "name": "python39-django-import-export-0:3.0.2-1.el8pc.noarch", + "product_id": "python39-django-import-export-0:3.0.2-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-django-import-export@3.0.2-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-django-lifecycle-0:1.0.0-1.el8pc.noarch", + "product": { + "name": "python39-django-lifecycle-0:1.0.0-1.el8pc.noarch", + "product_id": "python39-django-lifecycle-0:1.0.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-django-lifecycle@1.0.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-django-readonly-field-0:1.1.2-1.el8pc.noarch", + "product": { + "name": "python39-django-readonly-field-0:1.1.2-1.el8pc.noarch", + "product_id": "python39-django-readonly-field-0:1.1.2-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-django-readonly-field@1.1.2-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-djangorestframework-0:3.14.0-1.el8pc.noarch", + "product": { + "name": "python39-djangorestframework-0:3.14.0-1.el8pc.noarch", + "product_id": "python39-djangorestframework-0:3.14.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-djangorestframework@3.14.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-djangorestframework-queryfields-0:1.0.0-5.el8pc.noarch", + "product": { + "name": "python39-djangorestframework-queryfields-0:1.0.0-5.el8pc.noarch", + "product_id": "python39-djangorestframework-queryfields-0:1.0.0-5.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-djangorestframework-queryfields@1.0.0-5.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-docutils-0:0.19-1.1.el8sat.noarch", + "product": { + "name": "python39-docutils-0:0.19-1.1.el8sat.noarch", + "product_id": "python39-docutils-0:0.19-1.1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-docutils@0.19-1.1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-drf-access-policy-0:1.3.0-1.el8pc.noarch", + "product": { + "name": "python39-drf-access-policy-0:1.3.0-1.el8pc.noarch", + "product_id": "python39-drf-access-policy-0:1.3.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-drf-access-policy@1.3.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-drf-nested-routers-0:0.93.4-3.el8pc.noarch", + "product": { + "name": "python39-drf-nested-routers-0:0.93.4-3.el8pc.noarch", + "product_id": "python39-drf-nested-routers-0:0.93.4-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-drf-nested-routers@0.93.4-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-drf-spectacular-0:0.25.0-1.el8pc.noarch", + "product": { + "name": "python39-drf-spectacular-0:0.25.0-1.el8pc.noarch", + "product_id": "python39-drf-spectacular-0:0.25.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-drf-spectacular@0.25.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-dynaconf-0:3.1.11-1.el8pc.noarch", + "product": { + "name": "python39-dynaconf-0:3.1.11-1.el8pc.noarch", + "product_id": "python39-dynaconf-0:3.1.11-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-dynaconf@3.1.11-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-ecdsa-0:0.18.0-1.el8pc.noarch", + "product": { + "name": "python39-ecdsa-0:0.18.0-1.el8pc.noarch", + "product_id": "python39-ecdsa-0:0.18.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-ecdsa@0.18.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-enrich-0:1.2.6-5.el8pc.noarch", + "product": { + "name": "python39-enrich-0:1.2.6-5.el8pc.noarch", + "product_id": "python39-enrich-0:1.2.6-5.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-enrich@1.2.6-5.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-et-xmlfile-0:1.1.0-2.el8pc.noarch", + "product": { + "name": "python39-et-xmlfile-0:1.1.0-2.el8pc.noarch", + "product_id": "python39-et-xmlfile-0:1.1.0-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-et-xmlfile@1.1.0-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-flake8-0:3.9.2-5.el8pc.noarch", + "product": { + "name": "python39-flake8-0:3.9.2-5.el8pc.noarch", + "product_id": "python39-flake8-0:3.9.2-5.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-flake8@3.9.2-5.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-future-0:0.18.3-1.el8pc.noarch", + "product": { + "name": "python39-future-0:0.18.3-1.el8pc.noarch", + "product_id": "python39-future-0:0.18.3-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-future@0.18.3-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-galaxy-importer-0:0.4.6-1.el8pc.noarch", + "product": { + "name": "python39-galaxy-importer-0:0.4.6-1.el8pc.noarch", + "product_id": "python39-galaxy-importer-0:0.4.6-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-galaxy-importer@0.4.6-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-gitdb-0:4.0.10-1.el8pc.noarch", + "product": { + "name": "python39-gitdb-0:4.0.10-1.el8pc.noarch", + "product_id": "python39-gitdb-0:4.0.10-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-gitdb@4.0.10-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-gitpython-0:3.1.32-1.el8pc.noarch", + "product": { + "name": "python39-gitpython-0:3.1.32-1.el8pc.noarch", + "product_id": "python39-gitpython-0:3.1.32-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-gitpython@3.1.32-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-gnupg-0:0.5.0-1.el8pc.noarch", + "product": { + "name": "python39-gnupg-0:0.5.0-1.el8pc.noarch", + "product_id": "python39-gnupg-0:0.5.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-gnupg@0.5.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-gunicorn-0:20.1.0-5.el8pc.noarch", + "product": { + "name": "python39-gunicorn-0:20.1.0-5.el8pc.noarch", + "product_id": "python39-gunicorn-0:20.1.0-5.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-gunicorn@20.1.0-5.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-idna-0:3.3-2.el8pc.noarch", + "product": { + "name": "python39-idna-0:3.3-2.el8pc.noarch", + "product_id": "python39-idna-0:3.3-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-idna@3.3-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-idna-ssl-0:1.1.0-5.el8pc.noarch", + "product": { + "name": "python39-idna-ssl-0:1.1.0-5.el8pc.noarch", + "product_id": "python39-idna-ssl-0:1.1.0-5.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-idna-ssl@1.1.0-5.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-importlib-metadata-0:4.10.1-2.el8pc.noarch", + "product": { + "name": "python39-importlib-metadata-0:4.10.1-2.el8pc.noarch", + "product_id": "python39-importlib-metadata-0:4.10.1-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-importlib-metadata@4.10.1-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-inflection-0:0.5.1-3.el8pc.noarch", + "product": { + "name": "python39-inflection-0:0.5.1-3.el8pc.noarch", + "product_id": "python39-inflection-0:0.5.1-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-inflection@0.5.1-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-iniparse-0:0.4-35.el8pc.noarch", + "product": { + "name": "python39-iniparse-0:0.4-35.el8pc.noarch", + "product_id": "python39-iniparse-0:0.4-35.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-iniparse@0.4-35.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-jinja2-0:3.1.2-1.el8pc.noarch", + "product": { + "name": "python39-jinja2-0:3.1.2-1.el8pc.noarch", + "product_id": "python39-jinja2-0:3.1.2-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-jinja2@3.1.2-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-jsonschema-0:4.9.1-1.el8pc.noarch", + "product": { + "name": "python39-jsonschema-0:4.9.1-1.el8pc.noarch", + "product_id": "python39-jsonschema-0:4.9.1-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-jsonschema@4.9.1-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-lockfile-0:0.12.2-1.el8sat.noarch", + "product": { + "name": "python39-lockfile-0:0.12.2-1.el8sat.noarch", + "product_id": "python39-lockfile-0:0.12.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-lockfile@0.12.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-markdown-0:3.4.1-1.el8pc.noarch", + "product": { + "name": "python39-markdown-0:3.4.1-1.el8pc.noarch", + "product_id": "python39-markdown-0:3.4.1-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-markdown@3.4.1-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-markuppy-0:1.14-3.el8pc.noarch", + "product": { + "name": "python39-markuppy-0:1.14-3.el8pc.noarch", + "product_id": "python39-markuppy-0:1.14-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-markuppy@1.14-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-mccabe-0:0.6.1-3.el8pc.noarch", + "product": { + "name": "python39-mccabe-0:0.6.1-3.el8pc.noarch", + "product_id": "python39-mccabe-0:0.6.1-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-mccabe@0.6.1-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-naya-0:1.1.1-3.el8pc.noarch", + "product": { + "name": "python39-naya-0:1.1.1-3.el8pc.noarch", + "product_id": "python39-naya-0:1.1.1-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-naya@1.1.1-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-odfpy-0:1.4.1-6.el8pc.noarch", + "product": { + "name": "python39-odfpy-0:1.4.1-6.el8pc.noarch", + "product_id": "python39-odfpy-0:1.4.1-6.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-odfpy@1.4.1-6.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-openpyxl-0:3.1.0-1.el8pc.noarch", + "product": { + "name": "python39-openpyxl-0:3.1.0-1.el8pc.noarch", + "product_id": "python39-openpyxl-0:3.1.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-openpyxl@3.1.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-packaging-0:21.3-1.el8pc.noarch", + "product": { + "name": "python39-packaging-0:21.3-1.el8pc.noarch", + "product_id": "python39-packaging-0:21.3-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-packaging@21.3-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-parsley-0:1.3-2.el8pc.noarch", + "product": { + "name": "python39-parsley-0:1.3-2.el8pc.noarch", + "product_id": "python39-parsley-0:1.3-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-parsley@1.3-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pbr-0:5.8.0-4.el8pc.noarch", + "product": { + "name": "python39-pbr-0:5.8.0-4.el8pc.noarch", + "product_id": "python39-pbr-0:5.8.0-4.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pbr@5.8.0-4.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pexpect-0:4.8.0-2.el8sat.noarch", + "product": { + "name": "python39-pexpect-0:4.8.0-2.el8sat.noarch", + "product_id": "python39-pexpect-0:4.8.0-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pexpect@4.8.0-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-productmd-0:1.33-3.el8pc.noarch", + "product": { + "name": "python39-productmd-0:1.33-3.el8pc.noarch", + "product_id": "python39-productmd-0:1.33-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-productmd@1.33-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-protobuf-0:4.21.6-1.el8pc.noarch", + "product": { + "name": "python39-protobuf-0:4.21.6-1.el8pc.noarch", + "product_id": "python39-protobuf-0:4.21.6-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-protobuf@4.21.6-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-ptyprocess-0:0.7.0-1.el8sat.noarch", + "product": { + "name": "python39-ptyprocess-0:0.7.0-1.el8sat.noarch", + "product_id": "python39-ptyprocess-0:0.7.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-ptyprocess@0.7.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pulp-ansible-1:0.16.0-1.el8pc.noarch", + "product": { + "name": "python39-pulp-ansible-1:0.16.0-1.el8pc.noarch", + "product_id": "python39-pulp-ansible-1:0.16.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pulp-ansible@0.16.0-1.el8pc?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "python39-pulp-certguard-0:1.5.6-1.el8pc.noarch", + "product": { + "name": "python39-pulp-certguard-0:1.5.6-1.el8pc.noarch", + "product_id": "python39-pulp-certguard-0:1.5.6-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pulp-certguard@1.5.6-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pulp-cli-0:0.14.0-4.el8pc.noarch", + "product": { + "name": "python39-pulp-cli-0:0.14.0-4.el8pc.noarch", + "product_id": "python39-pulp-cli-0:0.14.0-4.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pulp-cli@0.14.0-4.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pulp-container-0:2.14.7-1.el8pc.noarch", + "product": { + "name": "python39-pulp-container-0:2.14.7-1.el8pc.noarch", + "product_id": "python39-pulp-container-0:2.14.7-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pulp-container@2.14.7-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pulp-deb-0:2.20.2-1.el8pc.noarch", + "product": { + "name": "python39-pulp-deb-0:2.20.2-1.el8pc.noarch", + "product_id": "python39-pulp-deb-0:2.20.2-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pulp-deb@2.20.2-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pulp-file-0:1.12.0-1.el8pc.noarch", + "product": { + "name": "python39-pulp-file-0:1.12.0-1.el8pc.noarch", + "product_id": "python39-pulp-file-0:1.12.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pulp-file@1.12.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pulp_manifest-0:3.0.0-3.el8pc.noarch", + "product": { + "name": "python39-pulp_manifest-0:3.0.0-3.el8pc.noarch", + "product_id": "python39-pulp_manifest-0:3.0.0-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pulp_manifest@3.0.0-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pulp-rpm-0:3.19.9-1.el8pc.noarch", + "product": { + "name": "python39-pulp-rpm-0:3.19.9-1.el8pc.noarch", + "product_id": "python39-pulp-rpm-0:3.19.9-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pulp-rpm@3.19.9-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pycodestyle-0:2.7.0-5.el8pc.noarch", + "product": { + "name": "python39-pycodestyle-0:2.7.0-5.el8pc.noarch", + "product_id": "python39-pycodestyle-0:2.7.0-5.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pycodestyle@2.7.0-5.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pycparser-0:2.21-2.el8pc.noarch", + "product": { + "name": "python39-pycparser-0:2.21-2.el8pc.noarch", + "product_id": "python39-pycparser-0:2.21-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pycparser@2.21-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pyflakes-0:2.3.1-5.el8pc.noarch", + "product": { + "name": "python39-pyflakes-0:2.3.1-5.el8pc.noarch", + "product_id": "python39-pyflakes-0:2.3.1-5.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pyflakes@2.3.1-5.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pygtrie-0:2.5.0-1.el8pc.noarch", + "product": { + "name": "python39-pygtrie-0:2.5.0-1.el8pc.noarch", + "product_id": "python39-pygtrie-0:2.5.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pygtrie@2.5.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pyjwkest-0:1.4.2-6.el8pc.noarch", + "product": { + "name": "python39-pyjwkest-0:1.4.2-6.el8pc.noarch", + "product_id": "python39-pyjwkest-0:1.4.2-6.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pyjwkest@1.4.2-6.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pyjwt-0:2.5.0-2.el8pc.noarch", + "product": { + "name": "python39-pyjwt-0:2.5.0-2.el8pc.noarch", + "product_id": "python39-pyjwt-0:2.5.0-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pyjwt@2.5.0-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pyOpenSSL-0:22.1.0-1.el8pc.noarch", + "product": { + "name": "python39-pyOpenSSL-0:22.1.0-1.el8pc.noarch", + "product_id": "python39-pyOpenSSL-0:22.1.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pyOpenSSL@22.1.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pyparsing-0:2.4.7-3.el8pc.noarch", + "product": { + "name": "python39-pyparsing-0:2.4.7-3.el8pc.noarch", + "product_id": "python39-pyparsing-0:2.4.7-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pyparsing@2.4.7-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pytz-0:2022.2.1-1.el8pc.noarch", + "product": { + "name": "python39-pytz-0:2022.2.1-1.el8pc.noarch", + "product_id": "python39-pytz-0:2022.2.1-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pytz@2022.2.1-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python2-qpid-0:1.37.0-1.el8.noarch", + "product": { + "name": "python2-qpid-0:1.37.0-1.el8.noarch", + "product_id": "python2-qpid-0:1.37.0-1.el8.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python2-qpid@1.37.0-1.el8?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-redis-0:4.3.4-1.el8pc.noarch", + "product": { + "name": "python39-redis-0:4.3.4-1.el8pc.noarch", + "product_id": "python39-redis-0:4.3.4-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-redis@4.3.4-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-requests-0:2.31.0-1.el8pc.noarch", + "product": { + "name": "python39-requests-0:2.31.0-1.el8pc.noarch", + "product_id": "python39-requests-0:2.31.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-requests@2.31.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-requirements-parser-0:0.2.0-3.el8pc.noarch", + "product": { + "name": "python39-requirements-parser-0:0.2.0-3.el8pc.noarch", + "product_id": "python39-requirements-parser-0:0.2.0-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-requirements-parser@0.2.0-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-rich-0:13.3.1-2.el8pc.noarch", + "product": { + "name": "python39-rich-0:13.3.1-2.el8pc.noarch", + "product_id": "python39-rich-0:13.3.1-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-rich@13.3.1-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-ruamel-yaml-0:0.17.21-2.el8pc.noarch", + "product": { + "name": "python39-ruamel-yaml-0:0.17.21-2.el8pc.noarch", + "product_id": "python39-ruamel-yaml-0:0.17.21-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-ruamel-yaml@0.17.21-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-schema-0:0.7.5-2.el8pc.noarch", + "product": { + "name": "python39-schema-0:0.7.5-2.el8pc.noarch", + "product_id": "python39-schema-0:0.7.5-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-schema@0.7.5-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-semantic-version-0:2.10.0-1.el8pc.noarch", + "product": { + "name": "python39-semantic-version-0:2.10.0-1.el8pc.noarch", + "product_id": "python39-semantic-version-0:2.10.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-semantic-version@2.10.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-six-0:1.16.0-2.el8pc.noarch", + "product": { + "name": "python39-six-0:1.16.0-2.el8pc.noarch", + "product_id": "python39-six-0:1.16.0-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-six@1.16.0-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-smmap-0:5.0.0-2.el8pc.noarch", + "product": { + "name": "python39-smmap-0:5.0.0-2.el8pc.noarch", + "product_id": "python39-smmap-0:5.0.0-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-smmap@5.0.0-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-sqlparse-0:0.4.4-1.el8pc.noarch", + "product": { + "name": "python39-sqlparse-0:0.4.4-1.el8pc.noarch", + "product_id": "python39-sqlparse-0:0.4.4-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-sqlparse@0.4.4-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-tablib-0:3.3.0-1.el8pc.noarch", + "product": { + "name": "python39-tablib-0:3.3.0-1.el8pc.noarch", + "product_id": "python39-tablib-0:3.3.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-tablib@3.3.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-tenacity-0:7.0.0-3.el8pc.noarch", + "product": { + "name": "python39-tenacity-0:7.0.0-3.el8pc.noarch", + "product_id": "python39-tenacity-0:7.0.0-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-tenacity@7.0.0-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-toml-0:0.10.2-3.el8pc.noarch", + "product": { + "name": "python39-toml-0:0.10.2-3.el8pc.noarch", + "product_id": "python39-toml-0:0.10.2-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-toml@0.10.2-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-types-cryptography-0:3.3.23.2-1.el8pc.noarch", + "product": { + "name": "python39-types-cryptography-0:3.3.23.2-1.el8pc.noarch", + "product_id": "python39-types-cryptography-0:3.3.23.2-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-types-cryptography@3.3.23.2-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-typing-extensions-0:3.10.0.2-2.el8pc.noarch", + "product": { + "name": "python39-typing-extensions-0:3.10.0.2-2.el8pc.noarch", + "product_id": "python39-typing-extensions-0:3.10.0.2-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-typing-extensions@3.10.0.2-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-uritemplate-0:4.1.1-2.el8pc.noarch", + "product": { + "name": "python39-uritemplate-0:4.1.1-2.el8pc.noarch", + "product_id": "python39-uritemplate-0:4.1.1-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-uritemplate@4.1.1-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-urllib3-0:1.26.8-2.el8pc.noarch", + "product": { + "name": "python39-urllib3-0:1.26.8-2.el8pc.noarch", + "product_id": "python39-urllib3-0:1.26.8-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-urllib3@1.26.8-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-urlman-0:2.0.1-1.el8pc.noarch", + "product": { + "name": "python39-urlman-0:2.0.1-1.el8pc.noarch", + "product_id": "python39-urlman-0:2.0.1-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-urlman@2.0.1-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-url-normalize-0:1.4.3-4.el8pc.noarch", + "product": { + "name": "python39-url-normalize-0:1.4.3-4.el8pc.noarch", + "product_id": "python39-url-normalize-0:1.4.3-4.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-url-normalize@1.4.3-4.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-wcmatch-0:8.3-2.el8pc.noarch", + "product": { + "name": "python39-wcmatch-0:8.3-2.el8pc.noarch", + "product_id": "python39-wcmatch-0:8.3-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-wcmatch@8.3-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-webencodings-0:0.5.1-3.el8pc.noarch", + "product": { + "name": "python39-webencodings-0:0.5.1-3.el8pc.noarch", + "product_id": "python39-webencodings-0:0.5.1-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-webencodings@0.5.1-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python3-websockify-0:0.10.0-3.el8sat.noarch", + "product": { + "name": "python3-websockify-0:0.10.0-3.el8sat.noarch", + "product_id": "python3-websockify-0:0.10.0-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-websockify@0.10.0-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-whitenoise-0:6.0.0-1.el8pc.noarch", + "product": { + "name": "python39-whitenoise-0:6.0.0-1.el8pc.noarch", + "product_id": "python39-whitenoise-0:6.0.0-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-whitenoise@6.0.0-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-xlrd-0:2.0.1-5.el8pc.noarch", + "product": { + "name": "python39-xlrd-0:2.0.1-5.el8pc.noarch", + "product_id": "python39-xlrd-0:2.0.1-5.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-xlrd@2.0.1-5.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-xlwt-0:1.3.0-3.el8pc.noarch", + "product": { + "name": "python39-xlwt-0:1.3.0-3.el8pc.noarch", + "product_id": "python39-xlwt-0:1.3.0-3.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-xlwt@1.3.0-3.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-zipp-0:3.4.0-4.el8pc.noarch", + "product": { + "name": "python39-zipp-0:3.4.0-4.el8pc.noarch", + "product_id": "python39-zipp-0:3.4.0-4.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-zipp@3.4.0-4.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "qpid-tools-0:1.39.0-7.el8amq.noarch", + "product": { + "name": "qpid-tools-0:1.39.0-7.el8amq.noarch", + "product_id": "qpid-tools-0:1.39.0-7.el8amq.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-tools@1.39.0-7.el8amq?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "qpid-dispatch-tools-0:1.14.0-6.el8.noarch", + "product": { + "name": "qpid-dispatch-tools-0:1.14.0-6.el8.noarch", + "product_id": "qpid-dispatch-tools-0:1.14.0-6.el8.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-dispatch-tools@1.14.0-6.el8?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.noarch", + "product": { + "name": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.noarch", + "product_id": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/redhat-access-insights-puppet@1.0.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-actioncable-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-actioncable-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-actioncable-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-actioncable@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-actionmailbox-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-actionmailbox-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-actionmailbox-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-actionmailbox@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-actionmailer-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-actionmailer-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-actionmailer-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-actionmailer@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-actionpack-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-actionpack-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-actionpack-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-actionpack@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-actiontext-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-actiontext-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-actiontext-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-actiontext@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-actionview-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-actionview-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-actionview-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-actionview@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activejob-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-activejob-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-activejob-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activejob@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activemodel-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-activemodel-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-activemodel-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activemodel@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activerecord-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-activerecord-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-activerecord-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activerecord@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activerecord-import-0:1.4.1-1.el8sat.noarch", + "product": { + "name": "rubygem-activerecord-import-0:1.4.1-1.el8sat.noarch", + "product_id": "rubygem-activerecord-import-0:1.4.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activerecord-import@1.4.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activerecord-session_store-0:2.0.0-1.el8sat.noarch", + "product": { + "name": "rubygem-activerecord-session_store-0:2.0.0-1.el8sat.noarch", + "product_id": "rubygem-activerecord-session_store-0:2.0.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activerecord-session_store@2.0.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activestorage-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-activestorage-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-activestorage-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activestorage@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-activesupport-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-activesupport-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-activesupport-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-activesupport@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-acts_as_list-0:1.0.3-2.el8sat.noarch", + "product": { + "name": "rubygem-acts_as_list-0:1.0.3-2.el8sat.noarch", + "product_id": "rubygem-acts_as_list-0:1.0.3-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-acts_as_list@1.0.3-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-addressable-0:2.8.4-1.el8sat.noarch", + "product": { + "name": "rubygem-addressable-0:2.8.4-1.el8sat.noarch", + "product_id": "rubygem-addressable-0:2.8.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-addressable@2.8.4-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-algebrick-0:0.7.5-1.el8sat.noarch", + "product": { + "name": "rubygem-algebrick-0:0.7.5-1.el8sat.noarch", + "product_id": "rubygem-algebrick-0:0.7.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-algebrick@0.7.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-amazing_print-0:1.4.0-1.el8sat.noarch", + "product": { + "name": "rubygem-amazing_print-0:1.4.0-1.el8sat.noarch", + "product_id": "rubygem-amazing_print-0:1.4.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-amazing_print@1.4.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ancestry-0:4.3.3-1.el8sat.noarch", + "product": { + "name": "rubygem-ancestry-0:4.3.3-1.el8sat.noarch", + "product_id": "rubygem-ancestry-0:4.3.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ancestry@4.3.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-anemone-0:0.7.2-23.el8sat.noarch", + "product": { + "name": "rubygem-anemone-0:0.7.2-23.el8sat.noarch", + "product_id": "rubygem-anemone-0:0.7.2-23.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-anemone@0.7.2-23.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-angular-rails-templates-1:1.1.0-2.el8sat.noarch", + "product": { + "name": "rubygem-angular-rails-templates-1:1.1.0-2.el8sat.noarch", + "product_id": "rubygem-angular-rails-templates-1:1.1.0-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-angular-rails-templates@1.1.0-2.el8sat?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ansi-0:1.5.0-3.el8sat.noarch", + "product": { + "name": "rubygem-ansi-0:1.5.0-3.el8sat.noarch", + "product_id": "rubygem-ansi-0:1.5.0-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ansi@1.5.0-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.noarch", + "product": { + "name": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.noarch", + "product_id": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-apipie-bindings@0.6.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-apipie-dsl-0:2.5.0-1.el8sat.noarch", + "product": { + "name": "rubygem-apipie-dsl-0:2.5.0-1.el8sat.noarch", + "product_id": "rubygem-apipie-dsl-0:2.5.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-apipie-dsl@2.5.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.noarch", + "product": { + "name": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.noarch", + "product_id": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-apipie-params@0.0.5-5.1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-apipie-rails-0:1.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-apipie-rails-0:1.1.0-1.el8sat.noarch", + "product_id": "rubygem-apipie-rails-0:1.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-apipie-rails@1.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-audited-0:5.3.2-1.el8sat.noarch", + "product": { + "name": "rubygem-audited-0:5.3.2-1.el8sat.noarch", + "product_id": "rubygem-audited-0:5.3.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-audited@5.3.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.noarch", + "product": { + "name": "rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.noarch", + "product_id": "rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-azure_mgmt_compute@0.22.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.noarch", + "product": { + "name": "rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.noarch", + "product_id": "rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-azure_mgmt_network@0.26.1-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.noarch", + "product": { + "name": "rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.noarch", + "product_id": "rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-azure_mgmt_resources@0.18.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.noarch", + "product": { + "name": "rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.noarch", + "product_id": "rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-azure_mgmt_storage@0.23.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.noarch", + "product": { + "name": "rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.noarch", + "product_id": "rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-azure_mgmt_subscriptions@0.18.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-builder-0:3.2.4-2.el8sat.noarch", + "product": { + "name": "rubygem-builder-0:3.2.4-2.el8sat.noarch", + "product_id": "rubygem-builder-0:3.2.4-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-builder@3.2.4-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-bundler_ext-0:0.4.1-6.el8sat.noarch", + "product": { + "name": "rubygem-bundler_ext-0:0.4.1-6.el8sat.noarch", + "product_id": "rubygem-bundler_ext-0:0.4.1-6.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-bundler_ext@0.4.1-6.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-clamp-0:1.3.2-1.el8sat.noarch", + "product": { + "name": "rubygem-clamp-0:1.3.2-1.el8sat.noarch", + "product_id": "rubygem-clamp-0:1.3.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-clamp@1.3.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-coffee-rails-0:5.0.0-2.el8sat.noarch", + "product": { + "name": "rubygem-coffee-rails-0:5.0.0-2.el8sat.noarch", + "product_id": "rubygem-coffee-rails-0:5.0.0-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-coffee-rails@5.0.0-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-coffee-script-0:2.4.1-5.el8sat.noarch", + "product": { + "name": "rubygem-coffee-script-0:2.4.1-5.el8sat.noarch", + "product_id": "rubygem-coffee-script-0:2.4.1-5.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-coffee-script@2.4.1-5.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-coffee-script-source-0:1.12.2-5.el8sat.noarch", + "product": { + "name": "rubygem-coffee-script-source-0:1.12.2-5.el8sat.noarch", + "product_id": "rubygem-coffee-script-source-0:1.12.2-5.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-coffee-script-source@1.12.2-5.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-colorize-0:0.8.1-2.el8sat.noarch", + "product": { + "name": "rubygem-colorize-0:0.8.1-2.el8sat.noarch", + "product_id": "rubygem-colorize-0:0.8.1-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-colorize@0.8.1-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.noarch", + "product": { + "name": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.noarch", + "product_id": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-concurrent-ruby@1.1.10-1.el8sat?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.noarch", + "product": { + "name": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.noarch", + "product_id": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-concurrent-ruby-edge@0.6.0-3.el8sat?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-connection_pool-0:2.4.1-1.el8sat.noarch", + "product": { + "name": "rubygem-connection_pool-0:2.4.1-1.el8sat.noarch", + "product_id": "rubygem-connection_pool-0:2.4.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-connection_pool@2.4.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-crass-0:1.0.6-2.el8sat.noarch", + "product": { + "name": "rubygem-crass-0:1.0.6-2.el8sat.noarch", + "product_id": "rubygem-crass-0:1.0.6-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-crass@1.0.6-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-css_parser-0:1.14.0-1.el8sat.noarch", + "product": { + "name": "rubygem-css_parser-0:1.14.0-1.el8sat.noarch", + "product_id": "rubygem-css_parser-0:1.14.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-css_parser@1.14.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-daemons-0:1.4.1-1.el8sat.noarch", + "product": { + "name": "rubygem-daemons-0:1.4.1-1.el8sat.noarch", + "product_id": "rubygem-daemons-0:1.4.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-daemons@1.4.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-deacon-0:1.0.0-5.el8sat.noarch", + "product": { + "name": "rubygem-deacon-0:1.0.0-5.el8sat.noarch", + "product_id": "rubygem-deacon-0:1.0.0-5.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-deacon@1.0.0-5.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-declarative-0:0.0.20-1.el8sat.noarch", + "product": { + "name": "rubygem-declarative-0:0.0.20-1.el8sat.noarch", + "product_id": "rubygem-declarative-0:0.0.20-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-declarative@0.0.20-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-deep_cloneable-0:3.2.0-1.el8sat.noarch", + "product": { + "name": "rubygem-deep_cloneable-0:3.2.0-1.el8sat.noarch", + "product_id": "rubygem-deep_cloneable-0:3.2.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-deep_cloneable@3.2.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-deface-0:1.5.3-3.el8sat.noarch", + "product": { + "name": "rubygem-deface-0:1.5.3-3.el8sat.noarch", + "product_id": "rubygem-deface-0:1.5.3-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-deface@1.5.3-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-diffy-0:3.4.2-1.el8sat.noarch", + "product": { + "name": "rubygem-diffy-0:3.4.2-1.el8sat.noarch", + "product_id": "rubygem-diffy-0:3.4.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-diffy@3.4.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch", + "product": { + "name": "rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch", + "product_id": "rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-domain_name@0.5.20190701-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-dynflow-0:1.7.0-1.el8sat.noarch", + "product": { + "name": "rubygem-dynflow-0:1.7.0-1.el8sat.noarch", + "product_id": "rubygem-dynflow-0:1.7.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-dynflow@1.7.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-erubi-0:1.12.0-1.el8sat.noarch", + "product": { + "name": "rubygem-erubi-0:1.12.0-1.el8sat.noarch", + "product_id": "rubygem-erubi-0:1.12.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-erubi@1.12.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-et-orbi-0:1.2.7-1.el8sat.noarch", + "product": { + "name": "rubygem-et-orbi-0:1.2.7-1.el8sat.noarch", + "product_id": "rubygem-et-orbi-0:1.2.7-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-et-orbi@1.2.7-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-excon-0:0.99.0-1.el8sat.noarch", + "product": { + "name": "rubygem-excon-0:0.99.0-1.el8sat.noarch", + "product_id": "rubygem-excon-0:0.99.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-excon@0.99.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-execjs-0:2.8.1-1.el8sat.noarch", + "product": { + "name": "rubygem-execjs-0:2.8.1-1.el8sat.noarch", + "product_id": "rubygem-execjs-0:2.8.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-execjs@2.8.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-facter-0:4.4.0-1.el8sat.noarch", + "product": { + "name": "rubygem-facter-0:4.4.0-1.el8sat.noarch", + "product_id": "rubygem-facter-0:4.4.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-facter@4.4.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-0:1.10.2-1.el8sat.noarch", + "product": { + "name": "rubygem-faraday-0:1.10.2-1.el8sat.noarch", + "product_id": "rubygem-faraday-0:1.10.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday@1.10.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.noarch", + "product": { + "name": "rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.noarch", + "product_id": "rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-cookie_jar@0.0.6-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.noarch", + "product": { + "name": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.noarch", + "product_id": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-em_http@1.0.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.noarch", + "product": { + "name": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.noarch", + "product_id": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-em_synchrony@1.0.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-excon-0:1.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-faraday-excon-0:1.1.0-1.el8sat.noarch", + "product_id": "rubygem-faraday-excon-0:1.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-excon@1.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.noarch", + "product": { + "name": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.noarch", + "product_id": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-httpclient@1.0.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.noarch", + "product": { + "name": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.noarch", + "product_id": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday_middleware@1.2.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.noarch", + "product": { + "name": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.noarch", + "product_id": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-multipart@1.0.4-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.noarch", + "product": { + "name": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.noarch", + "product_id": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-net_http@1.0.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.noarch", + "product": { + "name": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.noarch", + "product_id": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-net_http_persistent@1.2.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-patron-0:1.0.0-1.el8sat.noarch", + "product": { + "name": "rubygem-faraday-patron-0:1.0.0-1.el8sat.noarch", + "product_id": "rubygem-faraday-patron-0:1.0.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-patron@1.0.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-rack-0:1.0.0-1.el8sat.noarch", + "product": { + "name": "rubygem-faraday-rack-0:1.0.0-1.el8sat.noarch", + "product_id": "rubygem-faraday-rack-0:1.0.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-rack@1.0.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-faraday-retry-0:1.0.3-1.el8sat.noarch", + "product": { + "name": "rubygem-faraday-retry-0:1.0.3-1.el8sat.noarch", + "product_id": "rubygem-faraday-retry-0:1.0.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-faraday-retry@1.0.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch", + "product": { + "name": "rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch", + "product_id": "rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fast_gettext@1.8.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-aws-0:3.19.0-1.el8sat.noarch", + "product": { + "name": "rubygem-fog-aws-0:3.19.0-1.el8sat.noarch", + "product_id": "rubygem-fog-aws-0:3.19.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-aws@3.19.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-core-0:2.3.0-1.el8sat.noarch", + "product": { + "name": "rubygem-fog-core-0:2.3.0-1.el8sat.noarch", + "product_id": "rubygem-fog-core-0:2.3.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-core@2.3.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-json-0:1.2.0-4.el8sat.noarch", + "product": { + "name": "rubygem-fog-json-0:1.2.0-4.el8sat.noarch", + "product_id": "rubygem-fog-json-0:1.2.0-4.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-json@1.2.0-4.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-kubevirt-0:1.3.7-1.el8sat.noarch", + "product": { + "name": "rubygem-fog-kubevirt-0:1.3.7-1.el8sat.noarch", + "product_id": "rubygem-fog-kubevirt-0:1.3.7-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-kubevirt@1.3.7-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-libvirt-0:0.11.0-1.el8sat.noarch", + "product": { + "name": "rubygem-fog-libvirt-0:0.11.0-1.el8sat.noarch", + "product_id": "rubygem-fog-libvirt-0:0.11.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-libvirt@0.11.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-openstack-0:1.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-fog-openstack-0:1.1.0-1.el8sat.noarch", + "product_id": "rubygem-fog-openstack-0:1.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-openstack@1.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-ovirt-0:2.0.2-1.el8sat.noarch", + "product": { + "name": "rubygem-fog-ovirt-0:2.0.2-1.el8sat.noarch", + "product_id": "rubygem-fog-ovirt-0:2.0.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-ovirt@2.0.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.noarch", + "product": { + "name": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.noarch", + "product_id": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-vsphere@3.6.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-xml-0:0.1.4-1.el8sat.noarch", + "product": { + "name": "rubygem-fog-xml-0:0.1.4-1.el8sat.noarch", + "product_id": "rubygem-fog-xml-0:0.1.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-xml@0.1.4-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_ansible-0:12.0.6-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_ansible-0:12.0.6-1.el8sat.noarch", + "product_id": "rubygem-foreman_ansible-0:12.0.6-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_ansible@12.0.6-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.noarch", + "product_id": "rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_azure_rm@2.2.9-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.noarch", + "product": { + "name": "rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.noarch", + "product_id": "rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_bootdisk@21.0.4-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_discovery-0:22.0.4-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_discovery-0:22.0.4-1.el8sat.noarch", + "product_id": "rubygem-foreman_discovery-0:22.0.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_discovery@22.0.4-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_google-0:1.0.4-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_google-0:1.0.4-1.el8sat.noarch", + "product_id": "rubygem-foreman_google-0:1.0.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_google@1.0.4-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.noarch", + "product_id": "rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_hooks@0.3.17-3.1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.noarch", + "product": { + "name": "rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.noarch", + "product_id": "rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_kubevirt@0.1.9-4.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_leapp-0:0.1.14-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_leapp-0:0.1.14-1.el8sat.noarch", + "product_id": "rubygem-foreman_leapp-0:0.1.14-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_leapp@0.1.14-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch", + "product_id": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_maintain@1.3.5-1.el8sat?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_openscap-0:7.0.0-2.el8sat.noarch", + "product": { + "name": "rubygem-foreman_openscap-0:7.0.0-2.el8sat.noarch", + "product_id": "rubygem-foreman_openscap-0:7.0.0-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_openscap@7.0.0-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_puppet-0:6.0.1-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_puppet-0:6.0.1-1.el8sat.noarch", + "product_id": "rubygem-foreman_puppet-0:6.0.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_puppet@6.0.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.noarch", + "product_id": "rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_remote_execution@10.0.7-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_remote_execution-cockpit-0:10.0.7-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_remote_execution-cockpit-0:10.0.7-1.el8sat.noarch", + "product_id": "rubygem-foreman_remote_execution-cockpit-0:10.0.7-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_remote_execution-cockpit@10.0.7-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.noarch", + "product_id": "rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_rh_cloud@8.0.51-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_scap_client-0:0.5.0-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_scap_client-0:0.5.0-1.el8sat.noarch", + "product_id": "rubygem-foreman_scap_client-0:0.5.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_scap_client@0.5.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_templates-0:9.4.0-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_templates-0:9.4.0-1.el8sat.noarch", + "product_id": "rubygem-foreman_templates-0:9.4.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_templates@9.4.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.noarch", + "product_id": "rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_theme_satellite@12.0.0.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.noarch", + "product_id": "rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_virt_who_configure@0.5.16-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_webhooks-0:3.2.1-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_webhooks-0:3.2.1-1.el8sat.noarch", + "product_id": "rubygem-foreman_webhooks-0:3.2.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_webhooks@3.2.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-formatador-0:1.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-formatador-0:1.1.0-1.el8sat.noarch", + "product_id": "rubygem-formatador-0:1.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-formatador@1.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-friendly_id-0:5.5.0-1.el8sat.noarch", + "product": { + "name": "rubygem-friendly_id-0:5.5.0-1.el8sat.noarch", + "product_id": "rubygem-friendly_id-0:5.5.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-friendly_id@5.5.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fugit-0:1.8.1-1.el8sat.noarch", + "product": { + "name": "rubygem-fugit-0:1.8.1-1.el8sat.noarch", + "product_id": "rubygem-fugit-0:1.8.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fugit@1.8.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fx-0:0.7.0-1.el8sat.noarch", + "product": { + "name": "rubygem-fx-0:0.7.0-1.el8sat.noarch", + "product_id": "rubygem-fx-0:0.7.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fx@0.7.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-gapic-common-0:0.12.0-1.el8sat.noarch", + "product": { + "name": "rubygem-gapic-common-0:0.12.0-1.el8sat.noarch", + "product_id": "rubygem-gapic-common-0:0.12.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-gapic-common@0.12.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-get_process_mem-0:0.2.7-2.1.el8sat.noarch", + "product": { + "name": "rubygem-get_process_mem-0:0.2.7-2.1.el8sat.noarch", + "product_id": "rubygem-get_process_mem-0:0.2.7-2.1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-get_process_mem@0.2.7-2.1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.noarch", + "product": { + "name": "rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.noarch", + "product_id": "rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-gettext_i18n_rails@1.10.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-git-0:1.18.0-1.el8sat.noarch", + "product": { + "name": "rubygem-git-0:1.18.0-1.el8sat.noarch", + "product_id": "rubygem-git-0:1.18.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-git@1.18.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.noarch", + "product": { + "name": "rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.noarch", + "product_id": "rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-gitlab-sidekiq-fetcher@0.9.0-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-globalid-0:1.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-globalid-0:1.1.0-1.el8sat.noarch", + "product_id": "rubygem-globalid-0:1.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-globalid@1.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.noarch", + "product": { + "name": "rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.noarch", + "product_id": "rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-googleapis-common-protos@1.3.12-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.noarch", + "product": { + "name": "rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.noarch", + "product_id": "rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-googleapis-common-protos-types@1.4.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.noarch", + "product": { + "name": "rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.noarch", + "product_id": "rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-apis-compute_v1@0.54.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-apis-core-0:0.9.1-1.el8sat.noarch", + "product": { + "name": "rubygem-google-apis-core-0:0.9.1-1.el8sat.noarch", + "product_id": "rubygem-google-apis-core-0:0.9.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-apis-core@0.9.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-googleauth-0:1.3.0-1.el8sat.noarch", + "product": { + "name": "rubygem-googleauth-0:1.3.0-1.el8sat.noarch", + "product_id": "rubygem-googleauth-0:1.3.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-googleauth@1.3.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-cloud-common-0:1.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-google-cloud-common-0:1.1.0-1.el8sat.noarch", + "product_id": "rubygem-google-cloud-common-0:1.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-cloud-common@1.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-cloud-compute-0:0.5.0-1.el8sat.noarch", + "product": { + "name": "rubygem-google-cloud-compute-0:0.5.0-1.el8sat.noarch", + "product_id": "rubygem-google-cloud-compute-0:0.5.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-cloud-compute@0.5.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.noarch", + "product": { + "name": "rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.noarch", + "product_id": "rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-cloud-compute-v1@1.7.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-cloud-core-0:1.6.0-1.el8sat.noarch", + "product": { + "name": "rubygem-google-cloud-core-0:1.6.0-1.el8sat.noarch", + "product_id": "rubygem-google-cloud-core-0:1.6.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-cloud-core@1.6.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-cloud-env-0:1.6.0-1.el8sat.noarch", + "product": { + "name": "rubygem-google-cloud-env-0:1.6.0-1.el8sat.noarch", + "product_id": "rubygem-google-cloud-env-0:1.6.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-cloud-env@1.6.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-cloud-errors-0:1.3.0-1.el8sat.noarch", + "product": { + "name": "rubygem-google-cloud-errors-0:1.3.0-1.el8sat.noarch", + "product_id": "rubygem-google-cloud-errors-0:1.3.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-cloud-errors@1.3.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-graphql-0:1.13.19-1.el8sat.noarch", + "product": { + "name": "rubygem-graphql-0:1.13.19-1.el8sat.noarch", + "product_id": "rubygem-graphql-0:1.13.19-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-graphql@1.13.19-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-graphql-batch-0:0.5.3-1.el8sat.noarch", + "product": { + "name": "rubygem-graphql-batch-0:0.5.3-1.el8sat.noarch", + "product_id": "rubygem-graphql-batch-0:0.5.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-graphql-batch@0.5.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-gssapi-0:1.3.1-1.el8sat.noarch", + "product": { + "name": "rubygem-gssapi-0:1.3.1-1.el8sat.noarch", + "product_id": "rubygem-gssapi-0:1.3.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-gssapi@1.3.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli@3.7.0.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman@3.7.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_admin@1.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_ansible@0.5.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_azure_rm@0.2.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_bootdisk@0.3.0-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_discovery@1.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_google@1.0.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_kubevirt@0.1.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_leapp@0.1.1-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_openscap@0.1.13-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_puppet@0.0.6-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_remote_execution@0.2.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_tasks@0.0.19-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_templates@0.2.0-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_virt_who_configure@0.0.9-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_webhooks@0.0.4-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_katello@1.9.1.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hashie-0:5.0.0-1.el8sat.noarch", + "product": { + "name": "rubygem-hashie-0:5.0.0-1.el8sat.noarch", + "product_id": "rubygem-hashie-0:5.0.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hashie@5.0.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-highline-0:2.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-highline-0:2.1.0-1.el8sat.noarch", + "product_id": "rubygem-highline-0:2.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-highline@2.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hocon-0:1.4.0-1.el8sat.noarch", + "product": { + "name": "rubygem-hocon-0:1.4.0-1.el8sat.noarch", + "product_id": "rubygem-hocon-0:1.4.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hocon@1.4.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-http-0:3.3.0-2.el8sat.noarch", + "product": { + "name": "rubygem-http-0:3.3.0-2.el8sat.noarch", + "product_id": "rubygem-http-0:3.3.0-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-http@3.3.0-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-http-accept-0:1.7.0-1.el8sat.noarch", + "product": { + "name": "rubygem-http-accept-0:1.7.0-1.el8sat.noarch", + "product_id": "rubygem-http-accept-0:1.7.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-http-accept@1.7.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-httpclient-0:2.8.3-4.el8sat.noarch", + "product": { + "name": "rubygem-httpclient-0:2.8.3-4.el8sat.noarch", + "product_id": "rubygem-httpclient-0:2.8.3-4.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-httpclient@2.8.3-4.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-http-cookie-0:1.0.5-1.el8sat.noarch", + "product": { + "name": "rubygem-http-cookie-0:1.0.5-1.el8sat.noarch", + "product_id": "rubygem-http-cookie-0:1.0.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-http-cookie@1.0.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-http-form_data-0:2.1.1-2.el8sat.noarch", + "product": { + "name": "rubygem-http-form_data-0:2.1.1-2.el8sat.noarch", + "product_id": "rubygem-http-form_data-0:2.1.1-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-http-form_data@2.1.1-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-i18n-0:1.13.0-1.el8sat.noarch", + "product": { + "name": "rubygem-i18n-0:1.13.0-1.el8sat.noarch", + "product_id": "rubygem-i18n-0:1.13.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-i18n@1.13.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-infoblox-0:3.0.0-4.el8sat.noarch", + "product": { + "name": "rubygem-infoblox-0:3.0.0-4.el8sat.noarch", + "product_id": "rubygem-infoblox-0:3.0.0-4.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-infoblox@3.0.0-4.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-jgrep-0:1.3.3-11.el8sat.noarch", + "product": { + "name": "rubygem-jgrep-0:1.3.3-11.el8sat.noarch", + "product_id": "rubygem-jgrep-0:1.3.3-11.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-jgrep@1.3.3-11.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-journald-logger-0:3.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-journald-logger-0:3.1.0-1.el8sat.noarch", + "product_id": "rubygem-journald-logger-0:3.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-journald-logger@3.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-jsonpath-0:1.1.2-1.el8sat.noarch", + "product": { + "name": "rubygem-jsonpath-0:1.1.2-1.el8sat.noarch", + "product_id": "rubygem-jsonpath-0:1.1.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-jsonpath@1.1.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-jwt-0:2.7.0-1.el8sat.noarch", + "product": { + "name": "rubygem-jwt-0:2.7.0-1.el8sat.noarch", + "product_id": "rubygem-jwt-0:2.7.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-jwt@2.7.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-kafo-0:7.0.0-1.el8sat.noarch", + "product": { + "name": "rubygem-kafo-0:7.0.0-1.el8sat.noarch", + "product_id": "rubygem-kafo-0:7.0.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-kafo@7.0.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.noarch", + "product": { + "name": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.noarch", + "product_id": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-kafo_parsers@1.2.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.noarch", + "product": { + "name": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.noarch", + "product_id": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-kafo_wizards@0.0.2-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-katello-0:4.9.0.16-1.el8sat.noarch", + "product": { + "name": "rubygem-katello-0:4.9.0.16-1.el8sat.noarch", + "product_id": "rubygem-katello-0:4.9.0.16-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-katello@4.9.0.16-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-kubeclient-0:4.10.1-1.el8sat.noarch", + "product": { + "name": "rubygem-kubeclient-0:4.10.1-1.el8sat.noarch", + "product_id": "rubygem-kubeclient-0:4.10.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-kubeclient@4.10.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ldap_fluff-0:0.6.0-1.el8sat.noarch", + "product": { + "name": "rubygem-ldap_fluff-0:0.6.0-1.el8sat.noarch", + "product_id": "rubygem-ldap_fluff-0:0.6.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ldap_fluff@0.6.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-little-plugger-0:1.1.4-3.el8sat.noarch", + "product": { + "name": "rubygem-little-plugger-0:1.1.4-3.el8sat.noarch", + "product_id": "rubygem-little-plugger-0:1.1.4-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-little-plugger@1.1.4-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-locale-0:2.1.3-1.el8sat.noarch", + "product": { + "name": "rubygem-locale-0:2.1.3-1.el8sat.noarch", + "product_id": "rubygem-locale-0:2.1.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-locale@2.1.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-logging-0:2.3.1-1.el8sat.noarch", + "product": { + "name": "rubygem-logging-0:2.3.1-1.el8sat.noarch", + "product_id": "rubygem-logging-0:2.3.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-logging@2.3.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-logging-journald-0:2.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-logging-journald-0:2.1.0-1.el8sat.noarch", + "product_id": "rubygem-logging-journald-0:2.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-logging-journald@2.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-loofah-0:2.21.3-1.el8sat.noarch", + "product": { + "name": "rubygem-loofah-0:2.21.3-1.el8sat.noarch", + "product_id": "rubygem-loofah-0:2.21.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-loofah@2.21.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-mail-0:2.8.0.1-1.el8sat.noarch", + "product": { + "name": "rubygem-mail-0:2.8.0.1-1.el8sat.noarch", + "product_id": "rubygem-mail-0:2.8.0.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-mail@2.8.0.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-marcel-0:1.0.2-1.el8sat.noarch", + "product": { + "name": "rubygem-marcel-0:1.0.2-1.el8sat.noarch", + "product_id": "rubygem-marcel-0:1.0.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-marcel@1.0.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-memoist-0:0.16.2-1.el8sat.noarch", + "product": { + "name": "rubygem-memoist-0:0.16.2-1.el8sat.noarch", + "product_id": "rubygem-memoist-0:0.16.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-memoist@0.16.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-method_source-0:1.0.0-1.el8sat.noarch", + "product": { + "name": "rubygem-method_source-0:1.0.0-1.el8sat.noarch", + "product_id": "rubygem-method_source-0:1.0.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-method_source@1.0.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-mime-types-0:3.4.1-1.el8sat.noarch", + "product": { + "name": "rubygem-mime-types-0:3.4.1-1.el8sat.noarch", + "product_id": "rubygem-mime-types-0:3.4.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-mime-types@3.4.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch", + "product": { + "name": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch", + "product_id": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-mime-types-data@3.2023.0218.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-mini_mime-0:1.1.2-1.el8sat.noarch", + "product": { + "name": "rubygem-mini_mime-0:1.1.2-1.el8sat.noarch", + "product_id": "rubygem-mini_mime-0:1.1.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-mini_mime@1.1.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-mqtt-0:0.5.0-1.el8sat.noarch", + "product": { + "name": "rubygem-mqtt-0:0.5.0-1.el8sat.noarch", + "product_id": "rubygem-mqtt-0:0.5.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-mqtt@0.5.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ms_rest-0:0.7.6-1.el8sat.noarch", + "product": { + "name": "rubygem-ms_rest-0:0.7.6-1.el8sat.noarch", + "product_id": "rubygem-ms_rest-0:0.7.6-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ms_rest@0.7.6-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ms_rest_azure-0:0.12.0-1.el8sat.noarch", + "product": { + "name": "rubygem-ms_rest_azure-0:0.12.0-1.el8sat.noarch", + "product_id": "rubygem-ms_rest_azure-0:0.12.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ms_rest_azure@0.12.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-multi_json-0:1.15.0-1.el8sat.noarch", + "product": { + "name": "rubygem-multi_json-0:1.15.0-1.el8sat.noarch", + "product_id": "rubygem-multi_json-0:1.15.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-multi_json@1.15.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-multipart-post-0:2.2.3-1.el8sat.noarch", + "product": { + "name": "rubygem-multipart-post-0:2.2.3-1.el8sat.noarch", + "product_id": "rubygem-multipart-post-0:2.2.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-multipart-post@2.2.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-mustermann-0:2.0.2-1.el8sat.noarch", + "product": { + "name": "rubygem-mustermann-0:2.0.2-1.el8sat.noarch", + "product_id": "rubygem-mustermann-0:2.0.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-mustermann@2.0.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-net_http_unix-0:0.2.2-2.el8sat.noarch", + "product": { + "name": "rubygem-net_http_unix-0:0.2.2-2.el8sat.noarch", + "product_id": "rubygem-net_http_unix-0:0.2.2-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-net_http_unix@0.2.2-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-net-ldap-0:0.18.0-1.el8sat.noarch", + "product": { + "name": "rubygem-net-ldap-0:0.18.0-1.el8sat.noarch", + "product_id": "rubygem-net-ldap-0:0.18.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-net-ldap@0.18.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-net-ping-0:2.0.8-1.el8sat.noarch", + "product": { + "name": "rubygem-net-ping-0:2.0.8-1.el8sat.noarch", + "product_id": "rubygem-net-ping-0:2.0.8-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-net-ping@2.0.8-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-netrc-0:0.11.0-6.el8sat.noarch", + "product": { + "name": "rubygem-netrc-0:0.11.0-6.el8sat.noarch", + "product_id": "rubygem-netrc-0:0.11.0-6.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-netrc@0.11.0-6.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-net-scp-0:4.0.0-1.el8sat.noarch", + "product": { + "name": "rubygem-net-scp-0:4.0.0-1.el8sat.noarch", + "product_id": "rubygem-net-scp-0:4.0.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-net-scp@4.0.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-net-ssh-0:7.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-net-ssh-0:7.1.0-1.el8sat.noarch", + "product_id": "rubygem-net-ssh-0:7.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-net-ssh@7.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.noarch", + "product": { + "name": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.noarch", + "product_id": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-net-ssh-krb@0.4.0-4.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-oauth-0:1.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-oauth-0:1.1.0-1.el8sat.noarch", + "product_id": "rubygem-oauth-0:1.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-oauth@1.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch", + "product": { + "name": "rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch", + "product_id": "rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-oauth-tty@1.0.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-openscap-0:0.4.9-9.el8sat.noarch", + "product": { + "name": "rubygem-openscap-0:0.4.9-9.el8sat.noarch", + "product_id": "rubygem-openscap-0:0.4.9-9.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-openscap@0.4.9-9.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-openscap_parser-0:1.0.2-2.el8sat.noarch", + "product": { + "name": "rubygem-openscap_parser-0:1.0.2-2.el8sat.noarch", + "product_id": "rubygem-openscap_parser-0:1.0.2-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-openscap_parser@1.0.2-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-optimist-0:3.0.1-1.el8sat.noarch", + "product": { + "name": "rubygem-optimist-0:3.0.1-1.el8sat.noarch", + "product_id": "rubygem-optimist-0:3.0.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-optimist@3.0.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-os-0:1.1.4-1.el8sat.noarch", + "product": { + "name": "rubygem-os-0:1.1.4-1.el8sat.noarch", + "product_id": "rubygem-os-0:1.1.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-os@1.1.4-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.noarch", + "product": { + "name": "rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.noarch", + "product_id": "rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ovirt_provision_plugin@2.0.3-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-parallel-0:1.23.0-1.el8sat.noarch", + "product": { + "name": "rubygem-parallel-0:1.23.0-1.el8sat.noarch", + "product_id": "rubygem-parallel-0:1.23.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-parallel@1.23.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-polyglot-0:0.3.5-3.1.el8sat.noarch", + "product": { + "name": "rubygem-polyglot-0:0.3.5-3.1.el8sat.noarch", + "product_id": "rubygem-polyglot-0:0.3.5-3.1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-polyglot@0.3.5-3.1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-powerbar-0:2.0.1-3.el8sat.noarch", + "product": { + "name": "rubygem-powerbar-0:2.0.1-3.el8sat.noarch", + "product_id": "rubygem-powerbar-0:2.0.1-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-powerbar@2.0.1-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-prometheus-client-0:4.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-prometheus-client-0:4.1.0-1.el8sat.noarch", + "product_id": "rubygem-prometheus-client-0:4.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-prometheus-client@4.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-promise.rb-0:0.7.4-3.el8sat.noarch", + "product": { + "name": "rubygem-promise.rb-0:0.7.4-3.el8sat.noarch", + "product_id": "rubygem-promise.rb-0:0.7.4-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-promise.rb@0.7.4-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-public_suffix-0:5.0.1-1.el8sat.noarch", + "product": { + "name": "rubygem-public_suffix-0:5.0.1-1.el8sat.noarch", + "product_id": "rubygem-public_suffix-0:5.0.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-public_suffix@5.0.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.noarch", + "product": { + "name": "rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.noarch", + "product_id": "rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_ansible_client@0.16.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.noarch", + "product": { + "name": "rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.noarch", + "product_id": "rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_certguard_client@1.6.4-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_container_client-0:2.14.5-1.el8sat.noarch", + "product": { + "name": "rubygem-pulp_container_client-0:2.14.5-1.el8sat.noarch", + "product_id": "rubygem-pulp_container_client-0:2.14.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_container_client@2.14.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulpcore_client-1:3.22.4-1.el8sat.noarch", + "product": { + "name": "rubygem-pulpcore_client-1:3.22.4-1.el8sat.noarch", + "product_id": "rubygem-pulpcore_client-1:3.22.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulpcore_client@3.22.4-1.el8sat?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_deb_client-0:2.20.2-1.el8sat.noarch", + "product": { + "name": "rubygem-pulp_deb_client-0:2.20.2-1.el8sat.noarch", + "product_id": "rubygem-pulp_deb_client-0:2.20.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_deb_client@2.20.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_file_client-0:1.12.0-2.el8sat.noarch", + "product": { + "name": "rubygem-pulp_file_client-0:1.12.0-2.el8sat.noarch", + "product_id": "rubygem-pulp_file_client-0:1.12.0-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_file_client@1.12.0-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.noarch", + "product": { + "name": "rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.noarch", + "product_id": "rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_ostree_client@2.0.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_python_client-0:3.8.0-2.el8sat.noarch", + "product": { + "name": "rubygem-pulp_python_client-0:3.8.0-2.el8sat.noarch", + "product_id": "rubygem-pulp_python_client-0:3.8.0-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_python_client@3.8.0-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.noarch", + "product": { + "name": "rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.noarch", + "product_id": "rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pulp_rpm_client@3.19.6-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-puma-status-0:1.6-1.el8sat.noarch", + "product": { + "name": "rubygem-puma-status-0:1.6-1.el8sat.noarch", + "product_id": "rubygem-puma-status-0:1.6-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-puma-status@1.6-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-raabro-0:1.4.0-1.el8sat.noarch", + "product": { + "name": "rubygem-raabro-0:1.4.0-1.el8sat.noarch", + "product_id": "rubygem-raabro-0:1.4.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-raabro@1.4.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rabl-0:0.16.1-1.el8sat.noarch", + "product": { + "name": "rubygem-rabl-0:0.16.1-1.el8sat.noarch", + "product_id": "rubygem-rabl-0:0.16.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rabl@0.16.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rack-0:2.2.7-1.el8sat.noarch", + "product": { + "name": "rubygem-rack-0:2.2.7-1.el8sat.noarch", + "product_id": "rubygem-rack-0:2.2.7-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rack@2.2.7-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rack-cors-0:1.1.1-1.el8sat.noarch", + "product": { + "name": "rubygem-rack-cors-0:1.1.1-1.el8sat.noarch", + "product_id": "rubygem-rack-cors-0:1.1.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rack-cors@1.1.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rack-jsonp-0:1.3.1-10.el8sat.noarch", + "product": { + "name": "rubygem-rack-jsonp-0:1.3.1-10.el8sat.noarch", + "product_id": "rubygem-rack-jsonp-0:1.3.1-10.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rack-jsonp@1.3.1-10.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rack-protection-0:2.2.4-1.el8sat.noarch", + "product": { + "name": "rubygem-rack-protection-0:2.2.4-1.el8sat.noarch", + "product_id": "rubygem-rack-protection-0:2.2.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rack-protection@2.2.4-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rack-test-0:2.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-rack-test-0:2.1.0-1.el8sat.noarch", + "product_id": "rubygem-rack-test-0:2.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rack-test@2.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rails-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-rails-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-rails-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rails@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rails-dom-testing-0:2.0.3-7.el8sat.noarch", + "product": { + "name": "rubygem-rails-dom-testing-0:2.0.3-7.el8sat.noarch", + "product_id": "rubygem-rails-dom-testing-0:2.0.3-7.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rails-dom-testing@2.0.3-7.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.noarch", + "product": { + "name": "rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.noarch", + "product_id": "rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rails-html-sanitizer@1.5.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rails-i18n-0:7.0.7-1.el8sat.noarch", + "product": { + "name": "rubygem-rails-i18n-0:7.0.7-1.el8sat.noarch", + "product_id": "rubygem-rails-i18n-0:7.0.7-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rails-i18n@7.0.7-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-railties-0:6.1.7.3-1.el8sat.noarch", + "product": { + "name": "rubygem-railties-0:6.1.7.3-1.el8sat.noarch", + "product_id": "rubygem-railties-0:6.1.7.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-railties@6.1.7.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rainbow-0:2.2.2-1.el8sat.noarch", + "product": { + "name": "rubygem-rainbow-0:2.2.2-1.el8sat.noarch", + "product_id": "rubygem-rainbow-0:2.2.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rainbow@2.2.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rb-inotify-0:0.10.1-1.el8sat.noarch", + "product": { + "name": "rubygem-rb-inotify-0:0.10.1-1.el8sat.noarch", + "product_id": "rubygem-rb-inotify-0:0.10.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rb-inotify@0.10.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rbnacl-0:4.0.2-2.el8sat.noarch", + "product": { + "name": "rubygem-rbnacl-0:4.0.2-2.el8sat.noarch", + "product_id": "rubygem-rbnacl-0:4.0.2-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rbnacl@4.0.2-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rbvmomi2-0:3.6.1-1.el8sat.noarch", + "product": { + "name": "rubygem-rbvmomi2-0:3.6.1-1.el8sat.noarch", + "product_id": "rubygem-rbvmomi2-0:3.6.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rbvmomi2@3.6.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rchardet-0:1.8.0-1.el8sat.noarch", + "product": { + "name": "rubygem-rchardet-0:1.8.0-1.el8sat.noarch", + "product_id": "rubygem-rchardet-0:1.8.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rchardet@1.8.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-recursive-open-struct-0:1.1.3-1.el8sat.noarch", + "product": { + "name": "rubygem-recursive-open-struct-0:1.1.3-1.el8sat.noarch", + "product_id": "rubygem-recursive-open-struct-0:1.1.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-recursive-open-struct@1.1.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-redfish_client-0:0.5.4-1.el8sat.noarch", + "product": { + "name": "rubygem-redfish_client-0:0.5.4-1.el8sat.noarch", + "product_id": "rubygem-redfish_client-0:0.5.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-redfish_client@0.5.4-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-redis-0:4.5.1-1.el8sat.noarch", + "product": { + "name": "rubygem-redis-0:4.5.1-1.el8sat.noarch", + "product_id": "rubygem-redis-0:4.5.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-redis@4.5.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-representable-0:3.2.0-1.el8sat.noarch", + "product": { + "name": "rubygem-representable-0:3.2.0-1.el8sat.noarch", + "product_id": "rubygem-representable-0:3.2.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-representable@3.2.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-responders-0:3.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-responders-0:3.1.0-1.el8sat.noarch", + "product_id": "rubygem-responders-0:3.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-responders@3.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rest-client-0:2.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-rest-client-0:2.1.0-1.el8sat.noarch", + "product_id": "rubygem-rest-client-0:2.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rest-client@2.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-retriable-0:3.1.2-3.el8sat.noarch", + "product": { + "name": "rubygem-retriable-0:3.1.2-3.el8sat.noarch", + "product_id": "rubygem-retriable-0:3.1.2-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-retriable@3.1.2-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-roadie-0:5.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-roadie-0:5.1.0-1.el8sat.noarch", + "product_id": "rubygem-roadie-0:5.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-roadie@5.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-roadie-rails-0:3.0.0-1.el8sat.noarch", + "product": { + "name": "rubygem-roadie-rails-0:3.0.0-1.el8sat.noarch", + "product_id": "rubygem-roadie-rails-0:3.0.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-roadie-rails@3.0.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-robotex-0:1.0.0-22.el8sat.noarch", + "product": { + "name": "rubygem-robotex-0:1.0.0-22.el8sat.noarch", + "product_id": "rubygem-robotex-0:1.0.0-22.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-robotex@1.0.0-22.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rsec-0:0.4.3-5.el8sat.noarch", + "product": { + "name": "rubygem-rsec-0:0.4.3-5.el8sat.noarch", + "product_id": "rubygem-rsec-0:0.4.3-5.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rsec@0.4.3-5.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.noarch", + "product": { + "name": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.noarch", + "product_id": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ruby2_keywords@0.0.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ruby2ruby-0:2.5.0-1.el8sat.noarch", + "product": { + "name": "rubygem-ruby2ruby-0:2.5.0-1.el8sat.noarch", + "product_id": "rubygem-ruby2ruby-0:2.5.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ruby2ruby@2.5.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rubyipmi-0:0.11.1-1.el8sat.noarch", + "product": { + "name": "rubygem-rubyipmi-0:0.11.1-1.el8sat.noarch", + "product_id": "rubygem-rubyipmi-0:0.11.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rubyipmi@0.11.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ruby_parser-0:3.20.1-1.el8sat.noarch", + "product": { + "name": "rubygem-ruby_parser-0:3.20.1-1.el8sat.noarch", + "product_id": "rubygem-ruby_parser-0:3.20.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ruby_parser@3.20.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "product": { + "name": "rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "product_id": "rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-safemode@1.3.8-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-scoped_search-0:4.1.11-1.el8sat.noarch", + "product": { + "name": "rubygem-scoped_search-0:4.1.11-1.el8sat.noarch", + "product_id": "rubygem-scoped_search-0:4.1.11-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-scoped_search@4.1.11-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sd_notify-0:0.1.1-1.el8sat.noarch", + "product": { + "name": "rubygem-sd_notify-0:0.1.1-1.el8sat.noarch", + "product_id": "rubygem-sd_notify-0:0.1.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sd_notify@0.1.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-secure_headers-0:6.5.0-1.el8sat.noarch", + "product": { + "name": "rubygem-secure_headers-0:6.5.0-1.el8sat.noarch", + "product_id": "rubygem-secure_headers-0:6.5.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-secure_headers@6.5.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sequel-0:5.68.0-1.el8sat.noarch", + "product": { + "name": "rubygem-sequel-0:5.68.0-1.el8sat.noarch", + "product_id": "rubygem-sequel-0:5.68.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sequel@5.68.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-server_sent_events-0:0.1.3-1.el8sat.noarch", + "product": { + "name": "rubygem-server_sent_events-0:0.1.3-1.el8sat.noarch", + "product_id": "rubygem-server_sent_events-0:0.1.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-server_sent_events@0.1.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sexp_processor-0:4.17.0-1.el8sat.noarch", + "product": { + "name": "rubygem-sexp_processor-0:4.17.0-1.el8sat.noarch", + "product_id": "rubygem-sexp_processor-0:4.17.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sexp_processor@4.17.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sidekiq-0:6.3.1-2.el8sat.noarch", + "product": { + "name": "rubygem-sidekiq-0:6.3.1-2.el8sat.noarch", + "product_id": "rubygem-sidekiq-0:6.3.1-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sidekiq@6.3.1-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-signet-0:0.17.0-1.el8sat.noarch", + "product": { + "name": "rubygem-signet-0:0.17.0-1.el8sat.noarch", + "product_id": "rubygem-signet-0:0.17.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-signet@0.17.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sinatra-1:2.2.4-1.el8sat.noarch", + "product": { + "name": "rubygem-sinatra-1:2.2.4-1.el8sat.noarch", + "product_id": "rubygem-sinatra-1:2.2.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sinatra@2.2.4-1.el8sat?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.noarch", + "product_id": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_ansible@3.5.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.noarch", + "product_id": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_container_gateway@1.0.8-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.noarch", + "product_id": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_dhcp_infoblox@0.0.17-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.noarch", + "product_id": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_dhcp_remote_isc@0.0.5-6.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.noarch", + "product_id": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_discovery@1.0.5-9.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.noarch", + "product_id": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_discovery_image@1.6.0-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.noarch", + "product_id": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_dns_infoblox@1.1.0-7.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.noarch", + "product_id": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_dynflow@0.9.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.noarch", + "product_id": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_dynflow_core@0.4.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.noarch", + "product_id": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_openscap@0.9.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.noarch", + "product_id": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_pulp@3.2.0-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.noarch", + "product_id": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_shellhooks@0.9.2-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch", + "product": { + "name": "rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch", + "product_id": "rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-snaky_hash@2.0.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sprockets-0:4.2.0-1.el8sat.noarch", + "product": { + "name": "rubygem-sprockets-0:4.2.0-1.el8sat.noarch", + "product_id": "rubygem-sprockets-0:4.2.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sprockets@4.2.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sprockets-rails-0:3.4.2-1.el8sat.noarch", + "product": { + "name": "rubygem-sprockets-rails-0:3.4.2-1.el8sat.noarch", + "product_id": "rubygem-sprockets-rails-0:3.4.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sprockets-rails@3.4.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sshkey-0:2.0.0-1.el8sat.noarch", + "product": { + "name": "rubygem-sshkey-0:2.0.0-1.el8sat.noarch", + "product_id": "rubygem-sshkey-0:2.0.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sshkey@2.0.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.noarch", + "product": { + "name": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.noarch", + "product_id": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-statsd-instrument@2.9.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-stomp-0:1.4.10-1.el8sat.noarch", + "product": { + "name": "rubygem-stomp-0:1.4.10-1.el8sat.noarch", + "product_id": "rubygem-stomp-0:1.4.10-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-stomp@1.4.10-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-thor-0:1.2.2-1.el8sat.noarch", + "product": { + "name": "rubygem-thor-0:1.2.2-1.el8sat.noarch", + "product_id": "rubygem-thor-0:1.2.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-thor@1.2.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-tilt-0:2.1.0-1.el8sat.noarch", + "product": { + "name": "rubygem-tilt-0:2.1.0-1.el8sat.noarch", + "product_id": "rubygem-tilt-0:2.1.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-tilt@2.1.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-timeliness-0:0.3.10-2.el8sat.noarch", + "product": { + "name": "rubygem-timeliness-0:0.3.10-2.el8sat.noarch", + "product_id": "rubygem-timeliness-0:0.3.10-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-timeliness@0.3.10-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-trailblazer-option-0:0.1.2-1.el8sat.noarch", + "product": { + "name": "rubygem-trailblazer-option-0:0.1.2-1.el8sat.noarch", + "product_id": "rubygem-trailblazer-option-0:0.1.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-trailblazer-option@0.1.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-tzinfo-0:2.0.6-1.el8sat.noarch", + "product": { + "name": "rubygem-tzinfo-0:2.0.6-1.el8sat.noarch", + "product_id": "rubygem-tzinfo-0:2.0.6-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-tzinfo@2.0.6-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-uber-0:0.1.0-3.el8sat.noarch", + "product": { + "name": "rubygem-uber-0:0.1.0-3.el8sat.noarch", + "product_id": "rubygem-uber-0:0.1.0-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-uber@0.1.0-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-unf-0:0.1.4-1.el8sat.noarch", + "product": { + "name": "rubygem-unf-0:0.1.4-1.el8sat.noarch", + "product_id": "rubygem-unf-0:0.1.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-unf@0.1.4-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.noarch", + "product": { + "name": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.noarch", + "product_id": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-unicode-display_width@1.8.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.noarch", + "product": { + "name": "rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.noarch", + "product_id": "rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-validates_lengths_from_database@0.8.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-version_gem-0:1.1.2-1.el8sat.noarch", + "product": { + "name": "rubygem-version_gem-0:1.1.2-1.el8sat.noarch", + "product_id": "rubygem-version_gem-0:1.1.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-version_gem@1.1.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-webpack-rails-0:0.9.11-1.el8sat.noarch", + "product": { + "name": "rubygem-webpack-rails-0:0.9.11-1.el8sat.noarch", + "product_id": "rubygem-webpack-rails-0:0.9.11-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-webpack-rails@0.9.11-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-webrick-0:1.8.1-1.el8sat.noarch", + "product": { + "name": "rubygem-webrick-0:1.8.1-1.el8sat.noarch", + "product_id": "rubygem-webrick-0:1.8.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-webrick@1.8.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-websocket-extensions-0:0.1.5-2.el8sat.noarch", + "product": { + "name": "rubygem-websocket-extensions-0:0.1.5-2.el8sat.noarch", + "product_id": "rubygem-websocket-extensions-0:0.1.5-2.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-websocket-extensions@0.1.5-2.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-will_paginate-0:3.3.1-1.el8sat.noarch", + "product": { + "name": "rubygem-will_paginate-0:3.3.1-1.el8sat.noarch", + "product_id": "rubygem-will_paginate-0:3.3.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-will_paginate@3.3.1-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-xmlrpc-0:0.3.2-1.el8sat.noarch", + "product": { + "name": "rubygem-xmlrpc-0:0.3.2-1.el8sat.noarch", + "product_id": "rubygem-xmlrpc-0:0.3.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-xmlrpc@0.3.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-zeitwerk-0:2.6.8-1.el8sat.noarch", + "product": { + "name": "rubygem-zeitwerk-0:2.6.8-1.el8sat.noarch", + "product_id": "rubygem-zeitwerk-0:2.6.8-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-zeitwerk@2.6.8-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-cli-0:6.14.0-3.el8sat.noarch", + "product": { + "name": "satellite-cli-0:6.14.0-3.el8sat.noarch", + "product_id": "satellite-cli-0:6.14.0-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-cli@6.14.0-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-capsule-0:6.14.0-3.el8sat.noarch", + "product": { + "name": "satellite-capsule-0:6.14.0-3.el8sat.noarch", + "product_id": "satellite-capsule-0:6.14.0-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-capsule@6.14.0-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-common-0:6.14.0-3.el8sat.noarch", + "product": { + "name": "satellite-common-0:6.14.0-3.el8sat.noarch", + "product_id": "satellite-common-0:6.14.0-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-common@6.14.0-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-0:6.14.0-3.el8sat.noarch", + "product": { + "name": "satellite-0:6.14.0-3.el8sat.noarch", + "product_id": "satellite-0:6.14.0-3.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite@6.14.0-3.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-clone-0:3.5.0-1.el8sat.noarch", + "product": { + "name": "satellite-clone-0:3.5.0-1.el8sat.noarch", + "product_id": "satellite-clone-0:3.5.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-clone@3.5.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-installer-0:6.14.0.5-1.el8sat.noarch", + "product": { + "name": "satellite-installer-0:6.14.0.5-1.el8sat.noarch", + "product_id": "satellite-installer-0:6.14.0.5-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-installer@6.14.0.5-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-maintain-0:0.0.2-1.el8sat.noarch", + "product": { + "name": "satellite-maintain-0:0.0.2-1.el8sat.noarch", + "product_id": "satellite-maintain-0:0.0.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-maintain@0.0.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pulpcore-0:3.22.15-2.el8pc.noarch", + "product": { + "name": "python39-pulpcore-0:3.22.15-2.el8pc.noarch", + "product_id": "python39-pulpcore-0:3.22.15-2.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pulpcore@3.22.15-2.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman-tasks-0:8.1.4-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman-tasks-0:8.1.4-1.el8sat.noarch", + "product_id": "rubygem-foreman-tasks-0:8.1.4-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman-tasks@8.1.4-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.noarch", + "product": { + "name": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.noarch", + "product_id": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-smart_proxy_remote_execution_ssh@0.10.1-1.el8sat?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "cjson-0:1.7.14-5.el8sat.x86_64", + "product": { + "name": "cjson-0:1.7.14-5.el8sat.x86_64", + "product_id": "cjson-0:1.7.14-5.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cjson@1.7.14-5.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cjson-debugsource-0:1.7.14-5.el8sat.x86_64", + "product": { + "name": "cjson-debugsource-0:1.7.14-5.el8sat.x86_64", + "product_id": "cjson-debugsource-0:1.7.14-5.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cjson-debugsource@1.7.14-5.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "cjson-debuginfo-0:1.7.14-5.el8sat.x86_64", + "product": { + "name": "cjson-debuginfo-0:1.7.14-5.el8sat.x86_64", + "product_id": "cjson-debuginfo-0:1.7.14-5.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/cjson-debuginfo@1.7.14-5.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "createrepo_c-0:0.20.1-1.el8pc.x86_64", + "product": { + "name": "createrepo_c-0:0.20.1-1.el8pc.x86_64", + "product_id": "createrepo_c-0:0.20.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/createrepo_c@0.20.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "createrepo_c-libs-0:0.20.1-1.el8pc.x86_64", + "product": { + "name": "createrepo_c-libs-0:0.20.1-1.el8pc.x86_64", + "product_id": "createrepo_c-libs-0:0.20.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/createrepo_c-libs@0.20.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "product": { + "name": "python3-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "product_id": "python3-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-createrepo_c@0.20.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "product": { + "name": "python39-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "product_id": "python39-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-createrepo_c@0.20.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "createrepo_c-debugsource-0:0.20.1-1.el8pc.x86_64", + "product": { + "name": "createrepo_c-debugsource-0:0.20.1-1.el8pc.x86_64", + "product_id": "createrepo_c-debugsource-0:0.20.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/createrepo_c-debugsource@0.20.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "product": { + "name": "createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "product_id": "createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/createrepo_c-debuginfo@0.20.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "createrepo_c-libs-debuginfo-0:0.20.1-1.el8pc.x86_64", + "product": { + "name": "createrepo_c-libs-debuginfo-0:0.20.1-1.el8pc.x86_64", + "product_id": "createrepo_c-libs-debuginfo-0:0.20.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/createrepo_c-libs-debuginfo@0.20.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "product": { + "name": "python3-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "product_id": "python3-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-createrepo_c-debuginfo@0.20.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "product": { + "name": "python39-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "product_id": "python39-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-createrepo_c-debuginfo@0.20.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "dynflow-utils-0:1.6.3-1.el8sat.x86_64", + "product": { + "name": "dynflow-utils-0:1.6.3-1.el8sat.x86_64", + "product_id": "dynflow-utils-0:1.6.3-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/dynflow-utils@1.6.3-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.x86_64", + "product": { + "name": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.x86_64", + "product_id": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-discovery-image-service@1.0.0-4.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "foreman-discovery-image-service-tui-0:1.0.0-4.1.el8sat.x86_64", + "product": { + "name": "foreman-discovery-image-service-tui-0:1.0.0-4.1.el8sat.x86_64", + "product_id": "foreman-discovery-image-service-tui-0:1.0.0-4.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-discovery-image-service-tui@1.0.0-4.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libcomps-0:0.1.18-4.el8pc.x86_64", + "product": { + "name": "libcomps-0:0.1.18-4.el8pc.x86_64", + "product_id": "libcomps-0:0.1.18-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libcomps@0.1.18-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-libcomps-0:0.1.18-4.el8pc.x86_64", + "product": { + "name": "python3-libcomps-0:0.1.18-4.el8pc.x86_64", + "product_id": "python3-libcomps-0:0.1.18-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-libcomps@0.1.18-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-libcomps-0:0.1.18-4.el8pc.x86_64", + "product": { + "name": "python39-libcomps-0:0.1.18-4.el8pc.x86_64", + "product_id": "python39-libcomps-0:0.1.18-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-libcomps@0.1.18-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libcomps-debugsource-0:0.1.18-4.el8pc.x86_64", + "product": { + "name": "libcomps-debugsource-0:0.1.18-4.el8pc.x86_64", + "product_id": "libcomps-debugsource-0:0.1.18-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libcomps-debugsource@0.1.18-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "product": { + "name": "libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "product_id": "libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libcomps-debuginfo@0.1.18-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "product": { + "name": "python3-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "product_id": "python3-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-libcomps-debuginfo@0.1.18-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "product": { + "name": "python39-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "product_id": "python39-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-libcomps-debuginfo@0.1.18-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libdb-cxx-0:5.3.28-42.el8_4.x86_64", + "product": { + "name": "libdb-cxx-0:5.3.28-42.el8_4.x86_64", + "product_id": "libdb-cxx-0:5.3.28-42.el8_4.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libdb-cxx@5.3.28-42.el8_4?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libdb-debugsource-0:5.3.28-42.el8_4.x86_64", + "product": { + "name": "libdb-debugsource-0:5.3.28-42.el8_4.x86_64", + "product_id": "libdb-debugsource-0:5.3.28-42.el8_4.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libdb-debugsource@5.3.28-42.el8_4?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libdb-cxx-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product": { + "name": "libdb-cxx-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_id": "libdb-cxx-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libdb-cxx-debuginfo@5.3.28-42.el8_4?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libdb-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product": { + "name": "libdb-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_id": "libdb-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libdb-debuginfo@5.3.28-42.el8_4?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libdb-java-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product": { + "name": "libdb-java-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_id": "libdb-java-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libdb-java-debuginfo@5.3.28-42.el8_4?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libdb-sql-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product": { + "name": "libdb-sql-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_id": "libdb-sql-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libdb-sql-debuginfo@5.3.28-42.el8_4?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libdb-sql-devel-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product": { + "name": "libdb-sql-devel-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_id": "libdb-sql-devel-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libdb-sql-devel-debuginfo@5.3.28-42.el8_4?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libdb-tcl-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product": { + "name": "libdb-tcl-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_id": "libdb-tcl-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libdb-tcl-debuginfo@5.3.28-42.el8_4?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libdb-utils-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product": { + "name": "libdb-utils-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_id": "libdb-utils-debuginfo-0:5.3.28-42.el8_4.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libdb-utils-debuginfo@5.3.28-42.el8_4?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libsodium-0:1.0.17-3.el8sat.x86_64", + "product": { + "name": "libsodium-0:1.0.17-3.el8sat.x86_64", + "product_id": "libsodium-0:1.0.17-3.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libsodium@1.0.17-3.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libsodium-debugsource-0:1.0.17-3.el8sat.x86_64", + "product": { + "name": "libsodium-debugsource-0:1.0.17-3.el8sat.x86_64", + "product_id": "libsodium-debugsource-0:1.0.17-3.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libsodium-debugsource@1.0.17-3.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libsodium-debuginfo-0:1.0.17-3.el8sat.x86_64", + "product": { + "name": "libsodium-debuginfo-0:1.0.17-3.el8sat.x86_64", + "product_id": "libsodium-debuginfo-0:1.0.17-3.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libsodium-debuginfo@1.0.17-3.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libsolv-0:0.7.22-4.el8pc.x86_64", + "product": { + "name": "libsolv-0:0.7.22-4.el8pc.x86_64", + "product_id": "libsolv-0:0.7.22-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libsolv@0.7.22-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-solv-0:0.7.22-4.el8pc.x86_64", + "product": { + "name": "python3-solv-0:0.7.22-4.el8pc.x86_64", + "product_id": "python3-solv-0:0.7.22-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-solv@0.7.22-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-solv-0:0.7.22-4.el8pc.x86_64", + "product": { + "name": "python39-solv-0:0.7.22-4.el8pc.x86_64", + "product_id": "python39-solv-0:0.7.22-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-solv@0.7.22-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libsolv-debugsource-0:0.7.22-4.el8pc.x86_64", + "product": { + "name": "libsolv-debugsource-0:0.7.22-4.el8pc.x86_64", + "product_id": "libsolv-debugsource-0:0.7.22-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libsolv-debugsource@0.7.22-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libsolv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product": { + "name": "libsolv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product_id": "libsolv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libsolv-debuginfo@0.7.22-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libsolv-demo-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product": { + "name": "libsolv-demo-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product_id": "libsolv-demo-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libsolv-demo-debuginfo@0.7.22-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libsolv-tools-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product": { + "name": "libsolv-tools-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product_id": "libsolv-tools-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libsolv-tools-debuginfo@0.7.22-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product": { + "name": "python3-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product_id": "python3-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-solv-debuginfo@0.7.22-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product": { + "name": "python39-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product_id": "python39-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-solv-debuginfo@0.7.22-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "ruby-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product": { + "name": "ruby-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product_id": "ruby-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/ruby-solv-debuginfo@0.7.22-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libwebsockets-0:2.4.2-2.el8.x86_64", + "product": { + "name": "libwebsockets-0:2.4.2-2.el8.x86_64", + "product_id": "libwebsockets-0:2.4.2-2.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libwebsockets@2.4.2-2.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libwebsockets-debugsource-0:2.4.2-2.el8.x86_64", + "product": { + "name": "libwebsockets-debugsource-0:2.4.2-2.el8.x86_64", + "product_id": "libwebsockets-debugsource-0:2.4.2-2.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libwebsockets-debugsource@2.4.2-2.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libwebsockets-debuginfo-0:2.4.2-2.el8.x86_64", + "product": { + "name": "libwebsockets-debuginfo-0:2.4.2-2.el8.x86_64", + "product_id": "libwebsockets-debuginfo-0:2.4.2-2.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libwebsockets-debuginfo@2.4.2-2.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "libwebsockets-tests-debuginfo-0:2.4.2-2.el8.x86_64", + "product": { + "name": "libwebsockets-tests-debuginfo-0:2.4.2-2.el8.x86_64", + "product_id": "libwebsockets-tests-debuginfo-0:2.4.2-2.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/libwebsockets-tests-debuginfo@2.4.2-2.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "mosquitto-0:2.0.14-1.el8sat.x86_64", + "product": { + "name": "mosquitto-0:2.0.14-1.el8sat.x86_64", + "product_id": "mosquitto-0:2.0.14-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/mosquitto@2.0.14-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "mosquitto-debugsource-0:2.0.14-1.el8sat.x86_64", + "product": { + "name": "mosquitto-debugsource-0:2.0.14-1.el8sat.x86_64", + "product_id": "mosquitto-debugsource-0:2.0.14-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/mosquitto-debugsource@2.0.14-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "mosquitto-debuginfo-0:2.0.14-1.el8sat.x86_64", + "product": { + "name": "mosquitto-debuginfo-0:2.0.14-1.el8sat.x86_64", + "product_id": "mosquitto-debuginfo-0:2.0.14-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/mosquitto-debuginfo@2.0.14-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "postgresql-evr-0:0.0.2-1.el8sat.x86_64", + "product": { + "name": "postgresql-evr-0:0.0.2-1.el8sat.x86_64", + "product_id": "postgresql-evr-0:0.0.2-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/postgresql-evr@0.0.2-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "pulpcore-selinux-0:1.3.3-1.el8pc.x86_64", + "product": { + "name": "pulpcore-selinux-0:1.3.3-1.el8pc.x86_64", + "product_id": "pulpcore-selinux-0:1.3.3-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/pulpcore-selinux@1.3.3-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "product": { + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "product_id": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-aiohttp-0:3.8.3-2.el8pc.x86_64", + "product": { + "name": "python39-aiohttp-0:3.8.3-2.el8pc.x86_64", + "product_id": "python39-aiohttp-0:3.8.3-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-aiohttp@3.8.3-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-aiohttp-debugsource-0:3.8.3-2.el8pc.x86_64", + "product": { + "name": "python-aiohttp-debugsource-0:3.8.3-2.el8pc.x86_64", + "product_id": "python-aiohttp-debugsource-0:3.8.3-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-aiohttp-debugsource@3.8.3-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-aiohttp-debuginfo-0:3.8.3-2.el8pc.x86_64", + "product": { + "name": "python39-aiohttp-debuginfo-0:3.8.3-2.el8pc.x86_64", + "product_id": "python39-aiohttp-debuginfo-0:3.8.3-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-aiohttp-debuginfo@3.8.3-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-brotli-0:1.0.9-2.el8pc.x86_64", + "product": { + "name": "python39-brotli-0:1.0.9-2.el8pc.x86_64", + "product_id": "python39-brotli-0:1.0.9-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-brotli@1.0.9-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-brotli-debugsource-0:1.0.9-2.el8pc.x86_64", + "product": { + "name": "python-brotli-debugsource-0:1.0.9-2.el8pc.x86_64", + "product_id": "python-brotli-debugsource-0:1.0.9-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-brotli-debugsource@1.0.9-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-brotli-debuginfo-0:1.0.9-2.el8pc.x86_64", + "product": { + "name": "python39-brotli-debuginfo-0:1.0.9-2.el8pc.x86_64", + "product_id": "python39-brotli-debuginfo-0:1.0.9-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-brotli-debuginfo@1.0.9-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-cchardet-0:2.1.7-4.el8pc.x86_64", + "product": { + "name": "python39-cchardet-0:2.1.7-4.el8pc.x86_64", + "product_id": "python39-cchardet-0:2.1.7-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-cchardet@2.1.7-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-cchardet-debugsource-0:2.1.7-4.el8pc.x86_64", + "product": { + "name": "python-cchardet-debugsource-0:2.1.7-4.el8pc.x86_64", + "product_id": "python-cchardet-debugsource-0:2.1.7-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-cchardet-debugsource@2.1.7-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-cchardet-debuginfo-0:2.1.7-4.el8pc.x86_64", + "product": { + "name": "python39-cchardet-debuginfo-0:2.1.7-4.el8pc.x86_64", + "product_id": "python39-cchardet-debuginfo-0:2.1.7-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-cchardet-debuginfo@2.1.7-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-cffi-0:1.15.1-1.el8pc.x86_64", + "product": { + "name": "python39-cffi-0:1.15.1-1.el8pc.x86_64", + "product_id": "python39-cffi-0:1.15.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-cffi@1.15.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-cffi-debugsource-0:1.15.1-1.el8pc.x86_64", + "product": { + "name": "python-cffi-debugsource-0:1.15.1-1.el8pc.x86_64", + "product_id": "python-cffi-debugsource-0:1.15.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-cffi-debugsource@1.15.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-cffi-debuginfo-0:1.15.1-1.el8pc.x86_64", + "product": { + "name": "python39-cffi-debuginfo-0:1.15.1-1.el8pc.x86_64", + "product_id": "python39-cffi-debuginfo-0:1.15.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-cffi-debuginfo@1.15.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-cryptography-0:38.0.4-1.el8pc.x86_64", + "product": { + "name": "python39-cryptography-0:38.0.4-1.el8pc.x86_64", + "product_id": "python39-cryptography-0:38.0.4-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-cryptography@38.0.4-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-cryptography-debugsource-0:38.0.4-1.el8pc.x86_64", + "product": { + "name": "python-cryptography-debugsource-0:38.0.4-1.el8pc.x86_64", + "product_id": "python-cryptography-debugsource-0:38.0.4-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-cryptography-debugsource@38.0.4-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-cryptography-debuginfo-0:38.0.4-1.el8pc.x86_64", + "product": { + "name": "python39-cryptography-debuginfo-0:38.0.4-1.el8pc.x86_64", + "product_id": "python39-cryptography-debuginfo-0:38.0.4-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-cryptography-debuginfo@38.0.4-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-frozenlist-0:1.3.3-1.el8pc.x86_64", + "product": { + "name": "python39-frozenlist-0:1.3.3-1.el8pc.x86_64", + "product_id": "python39-frozenlist-0:1.3.3-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-frozenlist@1.3.3-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-frozenlist-debugsource-0:1.3.3-1.el8pc.x86_64", + "product": { + "name": "python-frozenlist-debugsource-0:1.3.3-1.el8pc.x86_64", + "product_id": "python-frozenlist-debugsource-0:1.3.3-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-frozenlist-debugsource@1.3.3-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-frozenlist-debuginfo-0:1.3.3-1.el8pc.x86_64", + "product": { + "name": "python39-frozenlist-debuginfo-0:1.3.3-1.el8pc.x86_64", + "product_id": "python39-frozenlist-debuginfo-0:1.3.3-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-frozenlist-debuginfo@1.3.3-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-lxml-0:4.9.2-1.el8pc.x86_64", + "product": { + "name": "python39-lxml-0:4.9.2-1.el8pc.x86_64", + "product_id": "python39-lxml-0:4.9.2-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-lxml@4.9.2-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-lxml-debugsource-0:4.9.2-1.el8pc.x86_64", + "product": { + "name": "python-lxml-debugsource-0:4.9.2-1.el8pc.x86_64", + "product_id": "python-lxml-debugsource-0:4.9.2-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-lxml-debugsource@4.9.2-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-lxml-debuginfo-0:4.9.2-1.el8pc.x86_64", + "product": { + "name": "python39-lxml-debuginfo-0:4.9.2-1.el8pc.x86_64", + "product_id": "python39-lxml-debuginfo-0:4.9.2-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-lxml-debuginfo@4.9.2-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-markupsafe-0:2.1.2-1.el8pc.x86_64", + "product": { + "name": "python39-markupsafe-0:2.1.2-1.el8pc.x86_64", + "product_id": "python39-markupsafe-0:2.1.2-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-markupsafe@2.1.2-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-markupsafe-debugsource-0:2.1.2-1.el8pc.x86_64", + "product": { + "name": "python-markupsafe-debugsource-0:2.1.2-1.el8pc.x86_64", + "product_id": "python-markupsafe-debugsource-0:2.1.2-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-markupsafe-debugsource@2.1.2-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-markupsafe-debuginfo-0:2.1.2-1.el8pc.x86_64", + "product": { + "name": "python39-markupsafe-debuginfo-0:2.1.2-1.el8pc.x86_64", + "product_id": "python39-markupsafe-debuginfo-0:2.1.2-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-markupsafe-debuginfo@2.1.2-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-multidict-0:6.0.4-1.el8pc.x86_64", + "product": { + "name": "python39-multidict-0:6.0.4-1.el8pc.x86_64", + "product_id": "python39-multidict-0:6.0.4-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-multidict@6.0.4-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-multidict-debugsource-0:6.0.4-1.el8pc.x86_64", + "product": { + "name": "python-multidict-debugsource-0:6.0.4-1.el8pc.x86_64", + "product_id": "python-multidict-debugsource-0:6.0.4-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-multidict-debugsource@6.0.4-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-multidict-debuginfo-0:6.0.4-1.el8pc.x86_64", + "product": { + "name": "python39-multidict-debuginfo-0:6.0.4-1.el8pc.x86_64", + "product_id": "python39-multidict-debuginfo-0:6.0.4-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-multidict-debuginfo@6.0.4-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-psycopg2-0:2.9.3-2.el8pc.x86_64", + "product": { + "name": "python39-psycopg2-0:2.9.3-2.el8pc.x86_64", + "product_id": "python39-psycopg2-0:2.9.3-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-psycopg2@2.9.3-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-psycopg2-debugsource-0:2.9.3-2.el8pc.x86_64", + "product": { + "name": "python-psycopg2-debugsource-0:2.9.3-2.el8pc.x86_64", + "product_id": "python-psycopg2-debugsource-0:2.9.3-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-psycopg2-debugsource@2.9.3-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-psycopg2-debuginfo-0:2.9.3-2.el8pc.x86_64", + "product": { + "name": "python39-psycopg2-debuginfo-0:2.9.3-2.el8pc.x86_64", + "product_id": "python39-psycopg2-debuginfo-0:2.9.3-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-psycopg2-debuginfo@2.9.3-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-pycares-0:4.1.2-2.el8pc.x86_64", + "product": { + "name": "python39-pycares-0:4.1.2-2.el8pc.x86_64", + "product_id": "python39-pycares-0:4.1.2-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pycares@4.1.2-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-pycares-debugsource-0:4.1.2-2.el8pc.x86_64", + "product": { + "name": "python-pycares-debugsource-0:4.1.2-2.el8pc.x86_64", + "product_id": "python-pycares-debugsource-0:4.1.2-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pycares-debugsource@4.1.2-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-pycares-debuginfo-0:4.1.2-2.el8pc.x86_64", + "product": { + "name": "python39-pycares-debuginfo-0:4.1.2-2.el8pc.x86_64", + "product_id": "python39-pycares-debuginfo-0:4.1.2-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pycares-debuginfo@4.1.2-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-pycryptodomex-0:3.14.1-2.el8pc.x86_64", + "product": { + "name": "python39-pycryptodomex-0:3.14.1-2.el8pc.x86_64", + "product_id": "python39-pycryptodomex-0:3.14.1-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pycryptodomex@3.14.1-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-pycryptodomex-debugsource-0:3.14.1-2.el8pc.x86_64", + "product": { + "name": "python-pycryptodomex-debugsource-0:3.14.1-2.el8pc.x86_64", + "product_id": "python-pycryptodomex-debugsource-0:3.14.1-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pycryptodomex-debugsource@3.14.1-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-pycryptodomex-debuginfo-0:3.14.1-2.el8pc.x86_64", + "product": { + "name": "python39-pycryptodomex-debuginfo-0:3.14.1-2.el8pc.x86_64", + "product_id": "python39-pycryptodomex-debuginfo-0:3.14.1-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pycryptodomex-debuginfo@3.14.1-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-pygments-0:2.14.0-1.el8pc.x86_64", + "product": { + "name": "python39-pygments-0:2.14.0-1.el8pc.x86_64", + "product_id": "python39-pygments-0:2.14.0-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pygments@2.14.0-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-pyrsistent-0:0.18.1-2.el8pc.x86_64", + "product": { + "name": "python39-pyrsistent-0:0.18.1-2.el8pc.x86_64", + "product_id": "python39-pyrsistent-0:0.18.1-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pyrsistent@0.18.1-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-pyrsistent-debugsource-0:0.18.1-2.el8pc.x86_64", + "product": { + "name": "python-pyrsistent-debugsource-0:0.18.1-2.el8pc.x86_64", + "product_id": "python-pyrsistent-debugsource-0:0.18.1-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pyrsistent-debugsource@0.18.1-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-pyrsistent-debuginfo-0:0.18.1-2.el8pc.x86_64", + "product": { + "name": "python39-pyrsistent-debuginfo-0:0.18.1-2.el8pc.x86_64", + "product_id": "python39-pyrsistent-debuginfo-0:0.18.1-2.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pyrsistent-debuginfo@0.18.1-2.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-pyyaml-0:5.4.1-4.el8pc.x86_64", + "product": { + "name": "python39-pyyaml-0:5.4.1-4.el8pc.x86_64", + "product_id": "python39-pyyaml-0:5.4.1-4.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pyyaml@5.4.1-4.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-rhsm-0:1.19.2-3.el8pc.x86_64", + "product": { + "name": "python39-rhsm-0:1.19.2-3.el8pc.x86_64", + "product_id": "python39-rhsm-0:1.19.2-3.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-rhsm@1.19.2-3.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-rhsm-debugsource-0:1.19.2-3.el8pc.x86_64", + "product": { + "name": "python-rhsm-debugsource-0:1.19.2-3.el8pc.x86_64", + "product_id": "python-rhsm-debugsource-0:1.19.2-3.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-rhsm-debugsource@1.19.2-3.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-rhsm-debuginfo-0:1.19.2-3.el8pc.x86_64", + "product": { + "name": "python39-rhsm-debuginfo-0:1.19.2-3.el8pc.x86_64", + "product_id": "python39-rhsm-debuginfo-0:1.19.2-3.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-rhsm-debuginfo@1.19.2-3.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-ruamel-yaml-clib-0:0.2.7-1.el8pc.x86_64", + "product": { + "name": "python39-ruamel-yaml-clib-0:0.2.7-1.el8pc.x86_64", + "product_id": "python39-ruamel-yaml-clib-0:0.2.7-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-ruamel-yaml-clib@0.2.7-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-ruamel-yaml-clib-debugsource-0:0.2.7-1.el8pc.x86_64", + "product": { + "name": "python-ruamel-yaml-clib-debugsource-0:0.2.7-1.el8pc.x86_64", + "product_id": "python-ruamel-yaml-clib-debugsource-0:0.2.7-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-ruamel-yaml-clib-debugsource@0.2.7-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-ruamel-yaml-clib-debuginfo-0:0.2.7-1.el8pc.x86_64", + "product": { + "name": "python39-ruamel-yaml-clib-debuginfo-0:0.2.7-1.el8pc.x86_64", + "product_id": "python39-ruamel-yaml-clib-debuginfo-0:0.2.7-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-ruamel-yaml-clib-debuginfo@0.2.7-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-wrapt-0:1.14.1-1.el8pc.x86_64", + "product": { + "name": "python39-wrapt-0:1.14.1-1.el8pc.x86_64", + "product_id": "python39-wrapt-0:1.14.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-wrapt@1.14.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-wrapt-debugsource-0:1.14.1-1.el8pc.x86_64", + "product": { + "name": "python-wrapt-debugsource-0:1.14.1-1.el8pc.x86_64", + "product_id": "python-wrapt-debugsource-0:1.14.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-wrapt-debugsource@1.14.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-wrapt-debuginfo-0:1.14.1-1.el8pc.x86_64", + "product": { + "name": "python39-wrapt-debuginfo-0:1.14.1-1.el8pc.x86_64", + "product_id": "python39-wrapt-debuginfo-0:1.14.1-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-wrapt-debuginfo@1.14.1-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-yarl-0:1.8.2-1.el8pc.x86_64", + "product": { + "name": "python39-yarl-0:1.8.2-1.el8pc.x86_64", + "product_id": "python39-yarl-0:1.8.2-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-yarl@1.8.2-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python-yarl-debugsource-0:1.8.2-1.el8pc.x86_64", + "product": { + "name": "python-yarl-debugsource-0:1.8.2-1.el8pc.x86_64", + "product_id": "python-yarl-debugsource-0:1.8.2-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-yarl-debugsource@1.8.2-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python39-yarl-debuginfo-0:1.8.2-1.el8pc.x86_64", + "product": { + "name": "python39-yarl-debuginfo-0:1.8.2-1.el8pc.x86_64", + "product_id": "python39-yarl-debuginfo-0:1.8.2-1.el8pc.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-yarl-debuginfo@1.8.2-1.el8pc?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python2-qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "python2-qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "product_id": "python2-qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python2-qpid-qmf@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-client-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-client-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-client-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-client@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-server-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-server-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-server-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-server@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-server-linearstore-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-server-linearstore-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-server-linearstore-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-server-linearstore@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-qmf@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-debugsource-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-debugsource-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-debugsource-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-debugsource@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-client-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-client-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-client-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-client-debuginfo@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-client-devel-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-client-devel-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-client-devel-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-client-devel-debuginfo@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-client-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-client-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-client-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-client-rdma-debuginfo@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-debuginfo@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-server-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-server-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-server-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-server-debuginfo@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-server-ha-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-server-ha-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-server-ha-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-server-ha-debuginfo@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-server-linearstore-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-server-linearstore-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-server-linearstore-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-server-linearstore-debuginfo@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-server-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-server-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-server-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-server-rdma-debuginfo@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-qmf-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-qmf-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-qmf-debuginfo-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-qmf-debuginfo@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-cpp-client-devel-0:1.39.0-7.el8amq.x86_64", + "product": { + "name": "qpid-cpp-client-devel-0:1.39.0-7.el8amq.x86_64", + "product_id": "qpid-cpp-client-devel-0:1.39.0-7.el8amq.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-cpp-client-devel@1.39.0-7.el8amq?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-dispatch-router-0:1.14.0-6.el8.x86_64", + "product": { + "name": "qpid-dispatch-router-0:1.14.0-6.el8.x86_64", + "product_id": "qpid-dispatch-router-0:1.14.0-6.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-dispatch-router@1.14.0-6.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-dispatch-debugsource-0:1.14.0-6.el8.x86_64", + "product": { + "name": "qpid-dispatch-debugsource-0:1.14.0-6.el8.x86_64", + "product_id": "qpid-dispatch-debugsource-0:1.14.0-6.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-dispatch-debugsource@1.14.0-6.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-dispatch-router-debuginfo-0:1.14.0-6.el8.x86_64", + "product": { + "name": "qpid-dispatch-router-debuginfo-0:1.14.0-6.el8.x86_64", + "product_id": "qpid-dispatch-router-debuginfo-0:1.14.0-6.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-dispatch-router-debuginfo@1.14.0-6.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-qpid-proton-0:0.33.0-4.el8.x86_64", + "product": { + "name": "python3-qpid-proton-0:0.33.0-4.el8.x86_64", + "product_id": "python3-qpid-proton-0:0.33.0-4.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-qpid-proton@0.33.0-4.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-c-0:0.33.0-4.el8.x86_64", + "product": { + "name": "qpid-proton-c-0:0.33.0-4.el8.x86_64", + "product_id": "qpid-proton-c-0:0.33.0-4.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-c@0.33.0-4.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-debugsource-0:0.33.0-4.el8.x86_64", + "product": { + "name": "qpid-proton-debugsource-0:0.33.0-4.el8.x86_64", + "product_id": "qpid-proton-debugsource-0:0.33.0-4.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-debugsource@0.33.0-4.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python3-qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "product": { + "name": "python3-qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "product_id": "python3-qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python3-qpid-proton-debuginfo@0.33.0-4.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-c-debuginfo-0:0.33.0-4.el8.x86_64", + "product": { + "name": "qpid-proton-c-debuginfo-0:0.33.0-4.el8.x86_64", + "product_id": "qpid-proton-c-debuginfo-0:0.33.0-4.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-c-debuginfo@0.33.0-4.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-cpp-debuginfo-0:0.33.0-4.el8.x86_64", + "product": { + "name": "qpid-proton-cpp-debuginfo-0:0.33.0-4.el8.x86_64", + "product_id": "qpid-proton-cpp-debuginfo-0:0.33.0-4.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-cpp-debuginfo@0.33.0-4.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "product": { + "name": "qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "product_id": "qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/qpid-proton-debuginfo@0.33.0-4.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-qpid_proton-debuginfo-0:0.33.0-4.el8.x86_64", + "product": { + "name": "rubygem-qpid_proton-debuginfo-0:0.33.0-4.el8.x86_64", + "product_id": "rubygem-qpid_proton-debuginfo-0:0.33.0-4.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-qpid_proton-debuginfo@0.33.0-4.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-qpid_proton-0:0.33.0-4.el8.x86_64", + "product": { + "name": "rubygem-qpid_proton-0:0.33.0-4.el8.x86_64", + "product_id": "rubygem-qpid_proton-0:0.33.0-4.el8.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-qpid_proton@0.33.0-4.el8?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-bcrypt-0:3.1.18-1.el8sat.x86_64", + "product": { + "name": "rubygem-bcrypt-0:3.1.18-1.el8sat.x86_64", + "product_id": "rubygem-bcrypt-0:3.1.18-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-bcrypt@3.1.18-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-bcrypt-debugsource-0:3.1.18-1.el8sat.x86_64", + "product": { + "name": "rubygem-bcrypt-debugsource-0:3.1.18-1.el8sat.x86_64", + "product_id": "rubygem-bcrypt-debugsource-0:3.1.18-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-bcrypt-debugsource@3.1.18-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-bcrypt-debuginfo-0:3.1.18-1.el8sat.x86_64", + "product": { + "name": "rubygem-bcrypt-debuginfo-0:3.1.18-1.el8sat.x86_64", + "product_id": "rubygem-bcrypt-debuginfo-0:3.1.18-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-bcrypt-debuginfo@3.1.18-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ffi-0:1.15.5-1.el8sat.x86_64", + "product": { + "name": "rubygem-ffi-0:1.15.5-1.el8sat.x86_64", + "product_id": "rubygem-ffi-0:1.15.5-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ffi@1.15.5-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64", + "product": { + "name": "rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64", + "product_id": "rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ffi-debugsource@1.15.5-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64", + "product": { + "name": "rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64", + "product_id": "rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ffi-debuginfo@1.15.5-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-protobuf-0:3.21.6-1.el8sat.x86_64", + "product": { + "name": "rubygem-google-protobuf-0:3.21.6-1.el8sat.x86_64", + "product_id": "rubygem-google-protobuf-0:3.21.6-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-protobuf@3.21.6-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-protobuf-debugsource-0:3.21.6-1.el8sat.x86_64", + "product": { + "name": "rubygem-google-protobuf-debugsource-0:3.21.6-1.el8sat.x86_64", + "product_id": "rubygem-google-protobuf-debugsource-0:3.21.6-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-protobuf-debugsource@3.21.6-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-google-protobuf-debuginfo-0:3.21.6-1.el8sat.x86_64", + "product": { + "name": "rubygem-google-protobuf-debuginfo-0:3.21.6-1.el8sat.x86_64", + "product_id": "rubygem-google-protobuf-debuginfo-0:3.21.6-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-google-protobuf-debuginfo@3.21.6-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-grpc-0:1.49.1-1.el8sat.x86_64", + "product": { + "name": "rubygem-grpc-0:1.49.1-1.el8sat.x86_64", + "product_id": "rubygem-grpc-0:1.49.1-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-grpc@1.49.1-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.x86_64", + "product": { + "name": "rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.x86_64", + "product_id": "rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-http_parser.rb@0.6.0-3.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-http_parser.rb-debugsource-0:0.6.0-3.1.el8sat.x86_64", + "product": { + "name": "rubygem-http_parser.rb-debugsource-0:0.6.0-3.1.el8sat.x86_64", + "product_id": "rubygem-http_parser.rb-debugsource-0:0.6.0-3.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-http_parser.rb-debugsource@0.6.0-3.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-http_parser.rb-debuginfo-0:0.6.0-3.1.el8sat.x86_64", + "product": { + "name": "rubygem-http_parser.rb-debuginfo-0:0.6.0-3.1.el8sat.x86_64", + "product_id": "rubygem-http_parser.rb-debuginfo-0:0.6.0-3.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-http_parser.rb-debuginfo@0.6.0-3.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-journald-native-0:1.0.12-1.el8sat.x86_64", + "product": { + "name": "rubygem-journald-native-0:1.0.12-1.el8sat.x86_64", + "product_id": "rubygem-journald-native-0:1.0.12-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-journald-native@1.0.12-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-journald-native-debugsource-0:1.0.12-1.el8sat.x86_64", + "product": { + "name": "rubygem-journald-native-debugsource-0:1.0.12-1.el8sat.x86_64", + "product_id": "rubygem-journald-native-debugsource-0:1.0.12-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-journald-native-debugsource@1.0.12-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-journald-native-debuginfo-0:1.0.12-1.el8sat.x86_64", + "product": { + "name": "rubygem-journald-native-debuginfo-0:1.0.12-1.el8sat.x86_64", + "product_id": "rubygem-journald-native-debuginfo-0:1.0.12-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-journald-native-debuginfo@1.0.12-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-msgpack-0:1.7.1-1.el8sat.x86_64", + "product": { + "name": "rubygem-msgpack-0:1.7.1-1.el8sat.x86_64", + "product_id": "rubygem-msgpack-0:1.7.1-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-msgpack@1.7.1-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-msgpack-debugsource-0:1.7.1-1.el8sat.x86_64", + "product": { + "name": "rubygem-msgpack-debugsource-0:1.7.1-1.el8sat.x86_64", + "product_id": "rubygem-msgpack-debugsource-0:1.7.1-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-msgpack-debugsource@1.7.1-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-msgpack-debuginfo-0:1.7.1-1.el8sat.x86_64", + "product": { + "name": "rubygem-msgpack-debuginfo-0:1.7.1-1.el8sat.x86_64", + "product_id": "rubygem-msgpack-debuginfo-0:1.7.1-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-msgpack-debuginfo@1.7.1-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-newt-0:0.9.7-3.1.el8sat.x86_64", + "product": { + "name": "rubygem-newt-0:0.9.7-3.1.el8sat.x86_64", + "product_id": "rubygem-newt-0:0.9.7-3.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-newt@0.9.7-3.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-newt-debugsource-0:0.9.7-3.1.el8sat.x86_64", + "product": { + "name": "rubygem-newt-debugsource-0:0.9.7-3.1.el8sat.x86_64", + "product_id": "rubygem-newt-debugsource-0:0.9.7-3.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-newt-debugsource@0.9.7-3.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-newt-debuginfo-0:0.9.7-3.1.el8sat.x86_64", + "product": { + "name": "rubygem-newt-debuginfo-0:0.9.7-3.1.el8sat.x86_64", + "product_id": "rubygem-newt-debuginfo-0:0.9.7-3.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-newt-debuginfo@0.9.7-3.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-nio4r-0:2.5.9-1.el8sat.x86_64", + "product": { + "name": "rubygem-nio4r-0:2.5.9-1.el8sat.x86_64", + "product_id": "rubygem-nio4r-0:2.5.9-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-nio4r@2.5.9-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-nio4r-debugsource-0:2.5.9-1.el8sat.x86_64", + "product": { + "name": "rubygem-nio4r-debugsource-0:2.5.9-1.el8sat.x86_64", + "product_id": "rubygem-nio4r-debugsource-0:2.5.9-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-nio4r-debugsource@2.5.9-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-nio4r-debuginfo-0:2.5.9-1.el8sat.x86_64", + "product": { + "name": "rubygem-nio4r-debuginfo-0:2.5.9-1.el8sat.x86_64", + "product_id": "rubygem-nio4r-debuginfo-0:2.5.9-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-nio4r-debuginfo@2.5.9-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-nokogiri-0:1.15.0-1.el8sat.x86_64", + "product": { + "name": "rubygem-nokogiri-0:1.15.0-1.el8sat.x86_64", + "product_id": "rubygem-nokogiri-0:1.15.0-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-nokogiri@1.15.0-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-nokogiri-debugsource-0:1.15.0-1.el8sat.x86_64", + "product": { + "name": "rubygem-nokogiri-debugsource-0:1.15.0-1.el8sat.x86_64", + "product_id": "rubygem-nokogiri-debugsource-0:1.15.0-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-nokogiri-debugsource@1.15.0-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-nokogiri-debuginfo-0:1.15.0-1.el8sat.x86_64", + "product": { + "name": "rubygem-nokogiri-debuginfo-0:1.15.0-1.el8sat.x86_64", + "product_id": "rubygem-nokogiri-debuginfo-0:1.15.0-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-nokogiri-debuginfo@1.15.0-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.x86_64", + "product": { + "name": "rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.x86_64", + "product_id": "rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ovirt-engine-sdk@4.4.1-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ovirt-engine-sdk-debugsource-0:4.4.1-1.el8sat.x86_64", + "product": { + "name": "rubygem-ovirt-engine-sdk-debugsource-0:4.4.1-1.el8sat.x86_64", + "product_id": "rubygem-ovirt-engine-sdk-debugsource-0:4.4.1-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ovirt-engine-sdk-debugsource@4.4.1-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ovirt-engine-sdk-debuginfo-0:4.4.1-1.el8sat.x86_64", + "product": { + "name": "rubygem-ovirt-engine-sdk-debuginfo-0:4.4.1-1.el8sat.x86_64", + "product_id": "rubygem-ovirt-engine-sdk-debuginfo-0:4.4.1-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ovirt-engine-sdk-debuginfo@4.4.1-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pg-0:1.5.3-1.el8sat.x86_64", + "product": { + "name": "rubygem-pg-0:1.5.3-1.el8sat.x86_64", + "product_id": "rubygem-pg-0:1.5.3-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pg@1.5.3-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pg-debugsource-0:1.5.3-1.el8sat.x86_64", + "product": { + "name": "rubygem-pg-debugsource-0:1.5.3-1.el8sat.x86_64", + "product_id": "rubygem-pg-debugsource-0:1.5.3-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pg-debugsource@1.5.3-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-pg-debuginfo-0:1.5.3-1.el8sat.x86_64", + "product": { + "name": "rubygem-pg-debuginfo-0:1.5.3-1.el8sat.x86_64", + "product_id": "rubygem-pg-debuginfo-0:1.5.3-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-pg-debuginfo@1.5.3-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-puma-0:6.2.2-1.el8sat.x86_64", + "product": { + "name": "rubygem-puma-0:6.2.2-1.el8sat.x86_64", + "product_id": "rubygem-puma-0:6.2.2-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-puma@6.2.2-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-puma-debugsource-0:6.2.2-1.el8sat.x86_64", + "product": { + "name": "rubygem-puma-debugsource-0:6.2.2-1.el8sat.x86_64", + "product_id": "rubygem-puma-debugsource-0:6.2.2-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-puma-debugsource@6.2.2-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-puma-debuginfo-0:6.2.2-1.el8sat.x86_64", + "product": { + "name": "rubygem-puma-debuginfo-0:6.2.2-1.el8sat.x86_64", + "product_id": "rubygem-puma-debuginfo-0:6.2.2-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-puma-debuginfo@6.2.2-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-qpid_proton-0:0.33.0-5.el8sat.x86_64", + "product": { + "name": "rubygem-qpid_proton-0:0.33.0-5.el8sat.x86_64", + "product_id": "rubygem-qpid_proton-0:0.33.0-5.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-qpid_proton@0.33.0-5.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-qpid_proton-debugsource-0:0.33.0-5.el8sat.x86_64", + "product": { + "name": "rubygem-qpid_proton-debugsource-0:0.33.0-5.el8sat.x86_64", + "product_id": "rubygem-qpid_proton-debugsource-0:0.33.0-5.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-qpid_proton-debugsource@0.33.0-5.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-qpid_proton-debuginfo-0:0.33.0-5.el8sat.x86_64", + "product": { + "name": "rubygem-qpid_proton-debuginfo-0:0.33.0-5.el8sat.x86_64", + "product_id": "rubygem-qpid_proton-debuginfo-0:0.33.0-5.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-qpid_proton-debuginfo@0.33.0-5.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.x86_64", + "product": { + "name": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.x86_64", + "product_id": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rkerberos@0.1.5-20.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rkerberos-debugsource-0:0.1.5-20.1.el8sat.x86_64", + "product": { + "name": "rubygem-rkerberos-debugsource-0:0.1.5-20.1.el8sat.x86_64", + "product_id": "rubygem-rkerberos-debugsource-0:0.1.5-20.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rkerberos-debugsource@0.1.5-20.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rkerberos-debuginfo-0:0.1.5-20.1.el8sat.x86_64", + "product": { + "name": "rubygem-rkerberos-debuginfo-0:0.1.5-20.1.el8sat.x86_64", + "product_id": "rubygem-rkerberos-debuginfo-0:0.1.5-20.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rkerberos-debuginfo@0.1.5-20.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.x86_64", + "product": { + "name": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.x86_64", + "product_id": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ruby-libvirt@0.8.0-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ruby-libvirt-debugsource-0:0.8.0-1.el8sat.x86_64", + "product": { + "name": "rubygem-ruby-libvirt-debugsource-0:0.8.0-1.el8sat.x86_64", + "product_id": "rubygem-ruby-libvirt-debugsource-0:0.8.0-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ruby-libvirt-debugsource@0.8.0-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-ruby-libvirt-debuginfo-0:0.8.0-1.el8sat.x86_64", + "product": { + "name": "rubygem-ruby-libvirt-debuginfo-0:0.8.0-1.el8sat.x86_64", + "product_id": "rubygem-ruby-libvirt-debuginfo-0:0.8.0-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-ruby-libvirt-debuginfo@0.8.0-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sqlite3-0:1.4.2-1.el8sat.x86_64", + "product": { + "name": "rubygem-sqlite3-0:1.4.2-1.el8sat.x86_64", + "product_id": "rubygem-sqlite3-0:1.4.2-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sqlite3@1.4.2-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sqlite3-debugsource-0:1.4.2-1.el8sat.x86_64", + "product": { + "name": "rubygem-sqlite3-debugsource-0:1.4.2-1.el8sat.x86_64", + "product_id": "rubygem-sqlite3-debugsource-0:1.4.2-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sqlite3-debugsource@1.4.2-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-sqlite3-debuginfo-0:1.4.2-1.el8sat.x86_64", + "product": { + "name": "rubygem-sqlite3-debuginfo-0:1.4.2-1.el8sat.x86_64", + "product_id": "rubygem-sqlite3-debuginfo-0:1.4.2-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-sqlite3-debuginfo@1.4.2-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64", + "product": { + "name": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64", + "product_id": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-unf_ext@0.0.8.2-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64", + "product": { + "name": "rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64", + "product_id": "rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-unf_ext-debugsource@0.0.8.2-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64", + "product": { + "name": "rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64", + "product_id": "rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-unf_ext-debuginfo@0.0.8.2-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.x86_64", + "product": { + "name": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.x86_64", + "product_id": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-unicode@0.4.4.4-4.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-unicode-debugsource-0:0.4.4.4-4.1.el8sat.x86_64", + "product": { + "name": "rubygem-unicode-debugsource-0:0.4.4.4-4.1.el8sat.x86_64", + "product_id": "rubygem-unicode-debugsource-0:0.4.4.4-4.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-unicode-debugsource@0.4.4.4-4.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-unicode-debuginfo-0:0.4.4.4-4.1.el8sat.x86_64", + "product": { + "name": "rubygem-unicode-debuginfo-0:0.4.4.4-4.1.el8sat.x86_64", + "product_id": "rubygem-unicode-debuginfo-0:0.4.4.4-4.1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-unicode-debuginfo@0.4.4.4-4.1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-websocket-driver-0:0.7.5-1.el8sat.x86_64", + "product": { + "name": "rubygem-websocket-driver-0:0.7.5-1.el8sat.x86_64", + "product_id": "rubygem-websocket-driver-0:0.7.5-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-websocket-driver@0.7.5-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-websocket-driver-debugsource-0:0.7.5-1.el8sat.x86_64", + "product": { + "name": "rubygem-websocket-driver-debugsource-0:0.7.5-1.el8sat.x86_64", + "product_id": "rubygem-websocket-driver-debugsource-0:0.7.5-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-websocket-driver-debugsource@0.7.5-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "rubygem-websocket-driver-debuginfo-0:0.7.5-1.el8sat.x86_64", + "product": { + "name": "rubygem-websocket-driver-debuginfo-0:0.7.5-1.el8sat.x86_64", + "product_id": "rubygem-websocket-driver-debuginfo-0:0.7.5-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-websocket-driver-debuginfo@0.7.5-1.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python2-saslwrapper-0:0.22-6.el8sat.x86_64", + "product": { + "name": "python2-saslwrapper-0:0.22-6.el8sat.x86_64", + "product_id": "python2-saslwrapper-0:0.22-6.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python2-saslwrapper@0.22-6.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "saslwrapper-0:0.22-6.el8sat.x86_64", + "product": { + "name": "saslwrapper-0:0.22-6.el8sat.x86_64", + "product_id": "saslwrapper-0:0.22-6.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/saslwrapper@0.22-6.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "saslwrapper-debugsource-0:0.22-6.el8sat.x86_64", + "product": { + "name": "saslwrapper-debugsource-0:0.22-6.el8sat.x86_64", + "product_id": "saslwrapper-debugsource-0:0.22-6.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/saslwrapper-debugsource@0.22-6.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "python2-saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "product": { + "name": "python2-saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "product_id": "python2-saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python2-saslwrapper-debuginfo@0.22-6.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "product": { + "name": "saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "product_id": "saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/saslwrapper-debuginfo@0.22-6.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "product": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "product_id": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil-worker-forwarder@0.0.3-1.el8sat?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "foreman-0:3.1.1.27-1.el7sat.src", + "product": { + "name": "foreman-0:3.1.1.27-1.el7sat.src", + "product_id": "foreman-0:3.1.1.27-1.el7sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman@3.1.1.27-1.el7sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el7sat.src", + "product": { + "name": "puppet-agent-0:7.26.0-3.el7sat.src", + "product_id": "puppet-agent-0:7.26.0-3.el7sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el7sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "satellite-0:6.11.5.6-1.el7sat.src", + "product": { + "name": "satellite-0:6.11.5.6-1.el7sat.src", + "product_id": "satellite-0:6.11.5.6-1.el7sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite@6.11.5.6-1.el7sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "tfm-rubygem-git-0:1.18.0-0.1.el7sat.src", + "product": { + "name": "tfm-rubygem-git-0:1.18.0-0.1.el7sat.src", + "product_id": "tfm-rubygem-git-0:1.18.0-0.1.el7sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tfm-rubygem-git@1.18.0-0.1.el7sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.src", + "product": { + "name": "tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.src", + "product_id": "tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tfm-rubygem-rchardet@1.8.0-0.1.el7sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.src", + "product": { + "name": "tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.src", + "product_id": "tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tfm-rubygem-safemode@1.3.8-0.1.el7sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.src", + "product": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.src", + "product_id": "yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil-worker-forwarder@0.0.3-1.el7sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "foreman-0:3.1.1.27-1.el8sat.src", + "product": { + "name": "foreman-0:3.1.1.27-1.el8sat.src", + "product_id": "foreman-0:3.1.1.27-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman@3.1.1.27-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el8sat.src", + "product": { + "name": "puppet-agent-0:7.26.0-3.el8sat.src", + "product_id": "puppet-agent-0:7.26.0-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-git-0:1.18.0-0.1.el8sat.src", + "product": { + "name": "rubygem-git-0:1.18.0-0.1.el8sat.src", + "product_id": "rubygem-git-0:1.18.0-0.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-git@1.18.0-0.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rchardet-0:1.8.0-0.1.el8sat.src", + "product": { + "name": "rubygem-rchardet-0:1.8.0-0.1.el8sat.src", + "product_id": "rubygem-rchardet-0:1.8.0-0.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rchardet@1.8.0-0.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-safemode-0:1.3.8-0.1.el8sat.src", + "product": { + "name": "rubygem-safemode-0:1.3.8-0.1.el8sat.src", + "product_id": "rubygem-safemode-0:1.3.8-0.1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-safemode@1.3.8-0.1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "satellite-0:6.11.5.6-1.el8sat.src", + "product": { + "name": "satellite-0:6.11.5.6-1.el8sat.src", + "product_id": "satellite-0:6.11.5.6-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite@6.11.5.6-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "product": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "product_id": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil-worker-forwarder@0.0.3-1.el8sat?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "foreman-cli-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-cli-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-cli-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-cli@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-debug-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-debug-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-debug-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-debug@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-dynflow-sidekiq@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-ec2-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-ec2-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-ec2-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-ec2@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-gce-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-gce-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-gce-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-gce@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-journald-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-journald-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-journald-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-journald@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-libvirt-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-libvirt-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-libvirt-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-libvirt@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-openstack-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-openstack-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-openstack-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-openstack@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-ovirt-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-ovirt-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-ovirt-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-ovirt@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-postgresql-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-postgresql-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-postgresql-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-postgresql@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-service-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-service-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-service-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-service@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-telemetry-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-telemetry-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-telemetry-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-telemetry@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-vmware-0:3.1.1.27-1.el7sat.noarch", + "product": { + "name": "foreman-vmware-0:3.1.1.27-1.el7sat.noarch", + "product_id": "foreman-vmware-0:3.1.1.27-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-vmware@3.1.1.27-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-cli-0:6.11.5.6-1.el7sat.noarch", + "product": { + "name": "satellite-cli-0:6.11.5.6-1.el7sat.noarch", + "product_id": "satellite-cli-0:6.11.5.6-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-cli@6.11.5.6-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-capsule-0:6.11.5.6-1.el7sat.noarch", + "product": { + "name": "satellite-capsule-0:6.11.5.6-1.el7sat.noarch", + "product_id": "satellite-capsule-0:6.11.5.6-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-capsule@6.11.5.6-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-common-0:6.11.5.6-1.el7sat.noarch", + "product": { + "name": "satellite-common-0:6.11.5.6-1.el7sat.noarch", + "product_id": "satellite-common-0:6.11.5.6-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-common@6.11.5.6-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-0:6.11.5.6-1.el7sat.noarch", + "product": { + "name": "satellite-0:6.11.5.6-1.el7sat.noarch", + "product_id": "satellite-0:6.11.5.6-1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite@6.11.5.6-1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "tfm-rubygem-git-0:1.18.0-0.1.el7sat.noarch", + "product": { + "name": "tfm-rubygem-git-0:1.18.0-0.1.el7sat.noarch", + "product_id": "tfm-rubygem-git-0:1.18.0-0.1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tfm-rubygem-git@1.18.0-0.1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.noarch", + "product": { + "name": "tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.noarch", + "product_id": "tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tfm-rubygem-rchardet@1.8.0-0.1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.noarch", + "product": { + "name": "tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.noarch", + "product_id": "tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/tfm-rubygem-safemode@1.3.8-0.1.el7sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-cli-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-cli-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-cli-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-cli@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-debug-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-debug-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-debug-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-debug@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-dynflow-sidekiq@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-ec2-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-ec2-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-ec2-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-ec2@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-gce-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-gce-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-gce-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-gce@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-journald-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-journald-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-journald-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-journald@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-libvirt-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-libvirt-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-libvirt-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-libvirt@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-openstack-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-openstack-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-openstack-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-openstack@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-ovirt-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-ovirt-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-ovirt-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-ovirt@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-postgresql-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-postgresql-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-postgresql-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-postgresql@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-service-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-service-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-service-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-service@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-telemetry-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-telemetry-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-telemetry-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-telemetry@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-vmware-0:3.1.1.27-1.el8sat.noarch", + "product": { + "name": "foreman-vmware-0:3.1.1.27-1.el8sat.noarch", + "product_id": "foreman-vmware-0:3.1.1.27-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-vmware@3.1.1.27-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-git-0:1.18.0-0.1.el8sat.noarch", + "product": { + "name": "rubygem-git-0:1.18.0-0.1.el8sat.noarch", + "product_id": "rubygem-git-0:1.18.0-0.1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-git@1.18.0-0.1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-rchardet-0:1.8.0-0.1.el8sat.noarch", + "product": { + "name": "rubygem-rchardet-0:1.8.0-0.1.el8sat.noarch", + "product_id": "rubygem-rchardet-0:1.8.0-0.1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-rchardet@1.8.0-0.1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-safemode-0:1.3.8-0.1.el8sat.noarch", + "product": { + "name": "rubygem-safemode-0:1.3.8-0.1.el8sat.noarch", + "product_id": "rubygem-safemode-0:1.3.8-0.1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-safemode@1.3.8-0.1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-cli-0:6.11.5.6-1.el8sat.noarch", + "product": { + "name": "satellite-cli-0:6.11.5.6-1.el8sat.noarch", + "product_id": "satellite-cli-0:6.11.5.6-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-cli@6.11.5.6-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-0:6.11.5.6-1.el8sat.noarch", + "product": { + "name": "satellite-0:6.11.5.6-1.el8sat.noarch", + "product_id": "satellite-0:6.11.5.6-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite@6.11.5.6-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-common-0:6.11.5.6-1.el8sat.noarch", + "product": { + "name": "satellite-common-0:6.11.5.6-1.el8sat.noarch", + "product_id": "satellite-common-0:6.11.5.6-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-common@6.11.5.6-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-capsule-0:6.11.5.6-1.el8sat.noarch", + "product": { + "name": "satellite-capsule-0:6.11.5.6-1.el8sat.noarch", + "product_id": "satellite-capsule-0:6.11.5.6-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-capsule@6.11.5.6-1.el8sat?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el7sat.x86_64", + "product": { + "name": "puppet-agent-0:7.26.0-3.el7sat.x86_64", + "product_id": "puppet-agent-0:7.26.0-3.el7sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el7sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.x86_64", + "product": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.x86_64", + "product_id": "yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil-worker-forwarder@0.0.3-1.el7sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "product": { + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "product_id": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "product": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "product_id": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil-worker-forwarder@0.0.3-1.el8sat?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "foreman-0:3.3.0.23-1.el8sat.src", + "product": { + "name": "foreman-0:3.3.0.23-1.el8sat.src", + "product_id": "foreman-0:3.3.0.23-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman@3.3.0.23-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el8sat.src", + "product": { + "name": "puppet-agent-0:7.26.0-3.el8sat.src", + "product_id": "puppet-agent-0:7.26.0-3.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-git-0:1.18.0-1.el8sat.src", + "product": { + "name": "rubygem-git-0:1.18.0-1.el8sat.src", + "product_id": "rubygem-git-0:1.18.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-git@1.18.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-safemode-0:1.3.8-1.el8sat.src", + "product": { + "name": "rubygem-safemode-0:1.3.8-1.el8sat.src", + "product_id": "rubygem-safemode-0:1.3.8-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-safemode@1.3.8-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "satellite-0:6.12.5.2-1.el8sat.src", + "product": { + "name": "satellite-0:6.12.5.2-1.el8sat.src", + "product_id": "satellite-0:6.12.5.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite@6.12.5.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "product": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "product_id": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil-worker-forwarder@0.0.3-1.el8sat?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "foreman-debug-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-debug-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-debug-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-debug@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-cli-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-cli-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-cli-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-cli@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-dynflow-sidekiq@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-ec2-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-ec2-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-ec2-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-ec2@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-gce-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-gce-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-gce-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-gce@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-journald-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-journald-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-journald-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-journald@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-libvirt-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-libvirt-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-libvirt-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-libvirt@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-openstack-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-openstack-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-openstack-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-openstack@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-ovirt-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-ovirt-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-ovirt-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-ovirt@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-postgresql-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-postgresql-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-postgresql-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-postgresql@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-service-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-service-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-service-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-service@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-telemetry-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-telemetry-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-telemetry-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-telemetry@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-vmware-0:3.3.0.23-1.el8sat.noarch", + "product": { + "name": "foreman-vmware-0:3.3.0.23-1.el8sat.noarch", + "product_id": "foreman-vmware-0:3.3.0.23-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-vmware@3.3.0.23-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-git-0:1.18.0-1.el8sat.noarch", + "product": { + "name": "rubygem-git-0:1.18.0-1.el8sat.noarch", + "product_id": "rubygem-git-0:1.18.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-git@1.18.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "product": { + "name": "rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "product_id": "rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-safemode@1.3.8-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-capsule-0:6.12.5.2-1.el8sat.noarch", + "product": { + "name": "satellite-capsule-0:6.12.5.2-1.el8sat.noarch", + "product_id": "satellite-capsule-0:6.12.5.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-capsule@6.12.5.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-common-0:6.12.5.2-1.el8sat.noarch", + "product": { + "name": "satellite-common-0:6.12.5.2-1.el8sat.noarch", + "product_id": "satellite-common-0:6.12.5.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-common@6.12.5.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-0:6.12.5.2-1.el8sat.noarch", + "product": { + "name": "satellite-0:6.12.5.2-1.el8sat.noarch", + "product_id": "satellite-0:6.12.5.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite@6.12.5.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-cli-0:6.12.5.2-1.el8sat.noarch", + "product": { + "name": "satellite-cli-0:6.12.5.2-1.el8sat.noarch", + "product_id": "satellite-cli-0:6.12.5.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-cli@6.12.5.2-1.el8sat?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + }, + { + "branches": [ + { + "category": "product_version", + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "product": { + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "product_id": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/puppet-agent@7.26.0-3.el8sat?arch=x86_64" + } + } + }, + { + "category": "product_version", + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "product": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "product_id": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/yggdrasil-worker-forwarder@0.0.3-1.el8sat?arch=x86_64" + } + } + } + ], + "category": "architecture", + "name": "x86_64" + }, + { + "branches": [ + { + "category": "product_version", + "name": "foreman-0:3.5.1.19-1.el8sat.src", + "product": { + "name": "foreman-0:3.5.1.19-1.el8sat.src", + "product_id": "foreman-0:3.5.1.19-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman@3.5.1.19-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.src", + "product": { + "name": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.src", + "product_id": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-vsphere@3.6.2-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_ansible-0:10.4.3-1.el8sat.src", + "product": { + "name": "rubygem-foreman_ansible-0:10.4.3-1.el8sat.src", + "product_id": "rubygem-foreman_ansible-0:10.4.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_ansible@10.4.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src", + "product": { + "name": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src", + "product_id": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_ansible@0.5.0-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-katello-0:4.7.0.31-1.el8sat.src", + "product": { + "name": "rubygem-katello-0:4.7.0.31-1.el8sat.src", + "product_id": "rubygem-katello-0:4.7.0.31-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-katello@4.7.0.31-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-safemode-0:1.3.8-1.el8sat.src", + "product": { + "name": "rubygem-safemode-0:1.3.8-1.el8sat.src", + "product_id": "rubygem-safemode-0:1.3.8-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-safemode@1.3.8-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "satellite-0:6.13.3-1.el8sat.src", + "product": { + "name": "satellite-0:6.13.3-1.el8sat.src", + "product_id": "satellite-0:6.13.3-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite@6.13.3-1.el8sat?arch=src" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_maintain-1:1.2.11-1.el8sat.src", + "product": { + "name": "rubygem-foreman_maintain-1:1.2.11-1.el8sat.src", + "product_id": "rubygem-foreman_maintain-1:1.2.11-1.el8sat.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_maintain@1.2.11-1.el8sat?arch=src&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "python-pulp-rpm-0:3.18.17-1.el8pc.src", + "product": { + "name": "python-pulp-rpm-0:3.18.17-1.el8pc.src", + "product_id": "python-pulp-rpm-0:3.18.17-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pulp-rpm@3.18.17-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-pulpcore-0:3.21.9-1.el8pc.src", + "product": { + "name": "python-pulpcore-0:3.21.9-1.el8pc.src", + "product_id": "python-pulpcore-0:3.21.9-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-pulpcore@3.21.9-1.el8pc?arch=src" + } + } + }, + { + "category": "product_version", + "name": "python-future-0:0.18.3-1.el8pc.src", + "product": { + "name": "python-future-0:0.18.3-1.el8pc.src", + "product_id": "python-future-0:0.18.3-1.el8pc.src", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python-future@0.18.3-1.el8pc?arch=src" + } + } + } + ], + "category": "architecture", + "name": "src" + }, + { + "branches": [ + { + "category": "product_version", + "name": "foreman-debug-0:3.5.1.19-1.el8sat.noarch", + "product": { + "name": "foreman-debug-0:3.5.1.19-1.el8sat.noarch", + "product_id": "foreman-debug-0:3.5.1.19-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-debug@3.5.1.19-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-0:3.5.1.19-1.el8sat.noarch", + "product": { + "name": "foreman-0:3.5.1.19-1.el8sat.noarch", + "product_id": "foreman-0:3.5.1.19-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman@3.5.1.19-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-cli-0:3.5.1.19-1.el8sat.noarch", + "product": { + "name": "foreman-cli-0:3.5.1.19-1.el8sat.noarch", + "product_id": "foreman-cli-0:3.5.1.19-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-cli@3.5.1.19-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-dynflow-sidekiq-0:3.5.1.19-1.el8sat.noarch", + "product": { + "name": "foreman-dynflow-sidekiq-0:3.5.1.19-1.el8sat.noarch", + "product_id": "foreman-dynflow-sidekiq-0:3.5.1.19-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-dynflow-sidekiq@3.5.1.19-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-ec2-0:3.5.1.19-1.el8sat.noarch", + "product": { + "name": "foreman-ec2-0:3.5.1.19-1.el8sat.noarch", + "product_id": "foreman-ec2-0:3.5.1.19-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-ec2@3.5.1.19-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-journald-0:3.5.1.19-1.el8sat.noarch", + "product": { + "name": "foreman-journald-0:3.5.1.19-1.el8sat.noarch", + "product_id": "foreman-journald-0:3.5.1.19-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-journald@3.5.1.19-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-libvirt-0:3.5.1.19-1.el8sat.noarch", + "product": { + "name": "foreman-libvirt-0:3.5.1.19-1.el8sat.noarch", + "product_id": "foreman-libvirt-0:3.5.1.19-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-libvirt@3.5.1.19-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-openstack-0:3.5.1.19-1.el8sat.noarch", + "product": { + "name": "foreman-openstack-0:3.5.1.19-1.el8sat.noarch", + "product_id": "foreman-openstack-0:3.5.1.19-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-openstack@3.5.1.19-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-ovirt-0:3.5.1.19-1.el8sat.noarch", + "product": { + "name": "foreman-ovirt-0:3.5.1.19-1.el8sat.noarch", + "product_id": "foreman-ovirt-0:3.5.1.19-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-ovirt@3.5.1.19-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-postgresql-0:3.5.1.19-1.el8sat.noarch", + "product": { + "name": "foreman-postgresql-0:3.5.1.19-1.el8sat.noarch", + "product_id": "foreman-postgresql-0:3.5.1.19-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-postgresql@3.5.1.19-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-service-0:3.5.1.19-1.el8sat.noarch", + "product": { + "name": "foreman-service-0:3.5.1.19-1.el8sat.noarch", + "product_id": "foreman-service-0:3.5.1.19-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-service@3.5.1.19-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-telemetry-0:3.5.1.19-1.el8sat.noarch", + "product": { + "name": "foreman-telemetry-0:3.5.1.19-1.el8sat.noarch", + "product_id": "foreman-telemetry-0:3.5.1.19-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-telemetry@3.5.1.19-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "foreman-vmware-0:3.5.1.19-1.el8sat.noarch", + "product": { + "name": "foreman-vmware-0:3.5.1.19-1.el8sat.noarch", + "product_id": "foreman-vmware-0:3.5.1.19-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/foreman-vmware@3.5.1.19-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.noarch", + "product": { + "name": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.noarch", + "product_id": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-fog-vsphere@3.6.2-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_ansible-0:10.4.3-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_ansible-0:10.4.3-1.el8sat.noarch", + "product_id": "rubygem-foreman_ansible-0:10.4.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_ansible@10.4.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch", + "product": { + "name": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch", + "product_id": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-hammer_cli_foreman_ansible@0.5.0-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-katello-0:4.7.0.31-1.el8sat.noarch", + "product": { + "name": "rubygem-katello-0:4.7.0.31-1.el8sat.noarch", + "product_id": "rubygem-katello-0:4.7.0.31-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-katello@4.7.0.31-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "product": { + "name": "rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "product_id": "rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-safemode@1.3.8-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-capsule-0:6.13.3-1.el8sat.noarch", + "product": { + "name": "satellite-capsule-0:6.13.3-1.el8sat.noarch", + "product_id": "satellite-capsule-0:6.13.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-capsule@6.13.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-common-0:6.13.3-1.el8sat.noarch", + "product": { + "name": "satellite-common-0:6.13.3-1.el8sat.noarch", + "product_id": "satellite-common-0:6.13.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-common@6.13.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-0:6.13.3-1.el8sat.noarch", + "product": { + "name": "satellite-0:6.13.3-1.el8sat.noarch", + "product_id": "satellite-0:6.13.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite@6.13.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "satellite-cli-0:6.13.3-1.el8sat.noarch", + "product": { + "name": "satellite-cli-0:6.13.3-1.el8sat.noarch", + "product_id": "satellite-cli-0:6.13.3-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/satellite-cli@6.13.3-1.el8sat?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "rubygem-foreman_maintain-1:1.2.11-1.el8sat.noarch", + "product": { + "name": "rubygem-foreman_maintain-1:1.2.11-1.el8sat.noarch", + "product_id": "rubygem-foreman_maintain-1:1.2.11-1.el8sat.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/rubygem-foreman_maintain@1.2.11-1.el8sat?arch=noarch&epoch=1" + } + } + }, + { + "category": "product_version", + "name": "python39-pulp-rpm-0:3.18.17-1.el8pc.noarch", + "product": { + "name": "python39-pulp-rpm-0:3.18.17-1.el8pc.noarch", + "product_id": "python39-pulp-rpm-0:3.18.17-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pulp-rpm@3.18.17-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-pulpcore-0:3.21.9-1.el8pc.noarch", + "product": { + "name": "python39-pulpcore-0:3.21.9-1.el8pc.noarch", + "product_id": "python39-pulpcore-0:3.21.9-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-pulpcore@3.21.9-1.el8pc?arch=noarch" + } + } + }, + { + "category": "product_version", + "name": "python39-future-0:0.18.3-1.el8pc.noarch", + "product": { + "name": "python39-future-0:0.18.3-1.el8pc.noarch", + "product_id": "python39-future-0:0.18.3-1.el8pc.noarch", + "product_identification_helper": { + "purl": "pkg:rpm/redhat/python39-future@0.18.3-1.el8pc?arch=noarch" + } + } + } + ], + "category": "architecture", + "name": "noarch" + } + ], + "category": "vendor", + "name": "Red Hat" + } + ], + "relationships": [ + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.1.1.27-1.el7sat.src as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-0:3.1.1.27-1.el7sat.src" + }, + "product_reference": "foreman-0:3.1.1.27-1.el7sat.src", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-cli-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-cli-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-debug-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-debug-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-ec2-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-gce-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-gce-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-gce-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-journald-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-journald-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-libvirt-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-openstack-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-ovirt-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-postgresql-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-service-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-service-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-telemetry-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:foreman-vmware-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el7sat.src as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:puppet-agent-0:7.26.0-3.el7sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el7sat.src", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el7sat.x86_64 as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:puppet-agent-0:7.26.0-3.el7sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el7sat.x86_64", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.11.5.6-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:satellite-0:6.11.5.6-1.el7sat.noarch" + }, + "product_reference": "satellite-0:6.11.5.6-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.11.5.6-1.el7sat.src as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:satellite-0:6.11.5.6-1.el7sat.src" + }, + "product_reference": "satellite-0:6.11.5.6-1.el7sat.src", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.11.5.6-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:satellite-capsule-0:6.11.5.6-1.el7sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.11.5.6-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.11.5.6-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:satellite-cli-0:6.11.5.6-1.el7sat.noarch" + }, + "product_reference": "satellite-cli-0:6.11.5.6-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.11.5.6-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-capsule:satellite-common-0:6.11.5.6-1.el7sat.noarch" + }, + "product_reference": "satellite-common-0:6.11.5.6-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.1.1.27-1.el7sat.src as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-0:3.1.1.27-1.el7sat.src" + }, + "product_reference": "foreman-0:3.1.1.27-1.el7sat.src", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-cli-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-cli-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-debug-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-debug-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-ec2-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-gce-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-gce-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-gce-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-journald-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-journald-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-libvirt-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-openstack-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-ovirt-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-postgresql-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-service-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-service-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-telemetry-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:foreman-vmware-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.11.5.6-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:satellite-0:6.11.5.6-1.el7sat.noarch" + }, + "product_reference": "satellite-0:6.11.5.6-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.11.5.6-1.el7sat.src as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:satellite-0:6.11.5.6-1.el7sat.src" + }, + "product_reference": "satellite-0:6.11.5.6-1.el7sat.src", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.11.5.6-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:satellite-capsule-0:6.11.5.6-1.el7sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.11.5.6-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.11.5.6-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:satellite-cli-0:6.11.5.6-1.el7sat.noarch" + }, + "product_reference": "satellite-cli-0:6.11.5.6-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.11.5.6-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11-utils:satellite-common-0:6.11.5.6-1.el7sat.noarch" + }, + "product_reference": "satellite-common-0:6.11.5.6-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.1.1.27-1.el7sat.src as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-0:3.1.1.27-1.el7sat.src" + }, + "product_reference": "foreman-0:3.1.1.27-1.el7sat.src", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-cli-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-cli-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-debug-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-debug-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-ec2-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-gce-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-gce-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-gce-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-journald-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-journald-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-libvirt-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-openstack-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-ovirt-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-postgresql-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-service-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-service-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-telemetry-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.1.1.27-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:foreman-vmware-0:3.1.1.27-1.el7sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.1.1.27-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el7sat.src as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:puppet-agent-0:7.26.0-3.el7sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el7sat.src", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el7sat.x86_64 as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:puppet-agent-0:7.26.0-3.el7sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el7sat.x86_64", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.11.5.6-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:satellite-0:6.11.5.6-1.el7sat.noarch" + }, + "product_reference": "satellite-0:6.11.5.6-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.11.5.6-1.el7sat.src as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:satellite-0:6.11.5.6-1.el7sat.src" + }, + "product_reference": "satellite-0:6.11.5.6-1.el7sat.src", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.11.5.6-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:satellite-capsule-0:6.11.5.6-1.el7sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.11.5.6-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.11.5.6-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:satellite-cli-0:6.11.5.6-1.el7sat.noarch" + }, + "product_reference": "satellite-cli-0:6.11.5.6-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.11.5.6-1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:satellite-common-0:6.11.5.6-1.el7sat.noarch" + }, + "product_reference": "satellite-common-0:6.11.5.6-1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tfm-rubygem-git-0:1.18.0-0.1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:tfm-rubygem-git-0:1.18.0-0.1.el7sat.noarch" + }, + "product_reference": "tfm-rubygem-git-0:1.18.0-0.1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tfm-rubygem-git-0:1.18.0-0.1.el7sat.src as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:tfm-rubygem-git-0:1.18.0-0.1.el7sat.src" + }, + "product_reference": "tfm-rubygem-git-0:1.18.0-0.1.el7sat.src", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.noarch" + }, + "product_reference": "tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.src as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.src" + }, + "product_reference": "tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.src", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.noarch" + }, + "product_reference": "tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.noarch", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.src as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.src" + }, + "product_reference": "tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.src", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.src as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.src" + }, + "product_reference": "yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.src", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.x86_64 as a component of Red Hat Satellite 6.11 for RHEL 7", + "product_id": "7Server-satellite-6.11:yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.x86_64" + }, + "product_reference": "yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.x86_64", + "relates_to_product_reference": "7Server-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.1.1.27-1.el8sat.src as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-0:3.1.1.27-1.el8sat.src" + }, + "product_reference": "foreman-0:3.1.1.27-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-cli-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-cli-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-debug-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-debug-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-ec2-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-gce-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-gce-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-gce-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-journald-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-journald-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-libvirt-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-openstack-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-ovirt-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-postgresql-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-service-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-service-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-telemetry-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:foreman-vmware-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.src as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:puppet-agent-0:7.26.0-3.el8sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64 as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:puppet-agent-0:7.26.0-3.el8sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.11.5.6-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:satellite-0:6.11.5.6-1.el8sat.noarch" + }, + "product_reference": "satellite-0:6.11.5.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.11.5.6-1.el8sat.src as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:satellite-0:6.11.5.6-1.el8sat.src" + }, + "product_reference": "satellite-0:6.11.5.6-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.11.5.6-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:satellite-capsule-0:6.11.5.6-1.el8sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.11.5.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.11.5.6-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:satellite-cli-0:6.11.5.6-1.el8sat.noarch" + }, + "product_reference": "satellite-cli-0:6.11.5.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.11.5.6-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-capsule:satellite-common-0:6.11.5.6-1.el8sat.noarch" + }, + "product_reference": "satellite-common-0:6.11.5.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.1.1.27-1.el8sat.src as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-0:3.1.1.27-1.el8sat.src" + }, + "product_reference": "foreman-0:3.1.1.27-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-cli-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-cli-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-debug-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-debug-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-ec2-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-gce-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-gce-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-gce-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-journald-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-journald-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-libvirt-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-openstack-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-ovirt-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-postgresql-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-service-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-service-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-telemetry-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:foreman-vmware-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.11.5.6-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:satellite-0:6.11.5.6-1.el8sat.noarch" + }, + "product_reference": "satellite-0:6.11.5.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.11.5.6-1.el8sat.src as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:satellite-0:6.11.5.6-1.el8sat.src" + }, + "product_reference": "satellite-0:6.11.5.6-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.11.5.6-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:satellite-capsule-0:6.11.5.6-1.el8sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.11.5.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.11.5.6-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:satellite-cli-0:6.11.5.6-1.el8sat.noarch" + }, + "product_reference": "satellite-cli-0:6.11.5.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.11.5.6-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11-utils:satellite-common-0:6.11.5.6-1.el8sat.noarch" + }, + "product_reference": "satellite-common-0:6.11.5.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.1.1.27-1.el8sat.src as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-0:3.1.1.27-1.el8sat.src" + }, + "product_reference": "foreman-0:3.1.1.27-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-cli-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-cli-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-debug-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-debug-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-ec2-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-gce-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-gce-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-gce-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-journald-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-journald-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-libvirt-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-openstack-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-ovirt-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-postgresql-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-service-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-service-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-telemetry-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.1.1.27-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:foreman-vmware-0:3.1.1.27-1.el8sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.1.1.27-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.src as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:puppet-agent-0:7.26.0-3.el8sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64 as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:puppet-agent-0:7.26.0-3.el8sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-git-0:1.18.0-0.1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:rubygem-git-0:1.18.0-0.1.el8sat.noarch" + }, + "product_reference": "rubygem-git-0:1.18.0-0.1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-git-0:1.18.0-0.1.el8sat.src as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:rubygem-git-0:1.18.0-0.1.el8sat.src" + }, + "product_reference": "rubygem-git-0:1.18.0-0.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rchardet-0:1.8.0-0.1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:rubygem-rchardet-0:1.8.0-0.1.el8sat.noarch" + }, + "product_reference": "rubygem-rchardet-0:1.8.0-0.1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rchardet-0:1.8.0-0.1.el8sat.src as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:rubygem-rchardet-0:1.8.0-0.1.el8sat.src" + }, + "product_reference": "rubygem-rchardet-0:1.8.0-0.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-safemode-0:1.3.8-0.1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:rubygem-safemode-0:1.3.8-0.1.el8sat.noarch" + }, + "product_reference": "rubygem-safemode-0:1.3.8-0.1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-safemode-0:1.3.8-0.1.el8sat.src as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:rubygem-safemode-0:1.3.8-0.1.el8sat.src" + }, + "product_reference": "rubygem-safemode-0:1.3.8-0.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.11.5.6-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:satellite-0:6.11.5.6-1.el8sat.noarch" + }, + "product_reference": "satellite-0:6.11.5.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.11.5.6-1.el8sat.src as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:satellite-0:6.11.5.6-1.el8sat.src" + }, + "product_reference": "satellite-0:6.11.5.6-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.11.5.6-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:satellite-capsule-0:6.11.5.6-1.el8sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.11.5.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.11.5.6-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:satellite-cli-0:6.11.5.6-1.el8sat.noarch" + }, + "product_reference": "satellite-cli-0:6.11.5.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.11.5.6-1.el8sat.noarch as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:satellite-common-0:6.11.5.6-1.el8sat.noarch" + }, + "product_reference": "satellite-common-0:6.11.5.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src" + }, + "product_reference": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64 as a component of Red Hat Satellite 6.11 for RHEL 8", + "product_id": "8Base-satellite-6.11:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64" + }, + "product_reference": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.11" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.3.0.23-1.el8sat.src as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-0:3.3.0.23-1.el8sat.src" + }, + "product_reference": "foreman-0:3.3.0.23-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-cli-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-cli-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-debug-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-debug-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-ec2-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-gce-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-gce-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-gce-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-journald-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-journald-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-libvirt-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-openstack-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-ovirt-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-postgresql-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-service-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-service-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-telemetry-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:foreman-vmware-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.src as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:puppet-agent-0:7.26.0-3.el8sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64 as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:puppet-agent-0:7.26.0-3.el8sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.12.5.2-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:satellite-0:6.12.5.2-1.el8sat.noarch" + }, + "product_reference": "satellite-0:6.12.5.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.12.5.2-1.el8sat.src as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:satellite-0:6.12.5.2-1.el8sat.src" + }, + "product_reference": "satellite-0:6.12.5.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.12.5.2-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:satellite-capsule-0:6.12.5.2-1.el8sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.12.5.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.12.5.2-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:satellite-cli-0:6.12.5.2-1.el8sat.noarch" + }, + "product_reference": "satellite-cli-0:6.12.5.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.12.5.2-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-capsule:satellite-common-0:6.12.5.2-1.el8sat.noarch" + }, + "product_reference": "satellite-common-0:6.12.5.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.3.0.23-1.el8sat.src as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-0:3.3.0.23-1.el8sat.src" + }, + "product_reference": "foreman-0:3.3.0.23-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-cli-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-cli-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-debug-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-debug-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-ec2-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-gce-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-gce-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-gce-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-journald-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-journald-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-libvirt-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-openstack-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-ovirt-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-postgresql-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-service-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-service-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-telemetry-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:foreman-vmware-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.12.5.2-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:satellite-0:6.12.5.2-1.el8sat.noarch" + }, + "product_reference": "satellite-0:6.12.5.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.12.5.2-1.el8sat.src as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:satellite-0:6.12.5.2-1.el8sat.src" + }, + "product_reference": "satellite-0:6.12.5.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.12.5.2-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:satellite-capsule-0:6.12.5.2-1.el8sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.12.5.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.12.5.2-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:satellite-cli-0:6.12.5.2-1.el8sat.noarch" + }, + "product_reference": "satellite-cli-0:6.12.5.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.12.5.2-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12-utils:satellite-common-0:6.12.5.2-1.el8sat.noarch" + }, + "product_reference": "satellite-common-0:6.12.5.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.3.0.23-1.el8sat.src as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-0:3.3.0.23-1.el8sat.src" + }, + "product_reference": "foreman-0:3.3.0.23-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-cli-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-cli-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-debug-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-debug-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-ec2-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-gce-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-gce-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-gce-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-journald-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-journald-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-libvirt-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-openstack-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-ovirt-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-postgresql-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-service-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-service-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-telemetry-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.3.0.23-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:foreman-vmware-0:3.3.0.23-1.el8sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.3.0.23-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.src as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:puppet-agent-0:7.26.0-3.el8sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64 as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:puppet-agent-0:7.26.0-3.el8sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-git-0:1.18.0-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:rubygem-git-0:1.18.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-git-0:1.18.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-git-0:1.18.0-1.el8sat.src as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:rubygem-git-0:1.18.0-1.el8sat.src" + }, + "product_reference": "rubygem-git-0:1.18.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-safemode-0:1.3.8-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:rubygem-safemode-0:1.3.8-1.el8sat.noarch" + }, + "product_reference": "rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-safemode-0:1.3.8-1.el8sat.src as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:rubygem-safemode-0:1.3.8-1.el8sat.src" + }, + "product_reference": "rubygem-safemode-0:1.3.8-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.12.5.2-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:satellite-0:6.12.5.2-1.el8sat.noarch" + }, + "product_reference": "satellite-0:6.12.5.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.12.5.2-1.el8sat.src as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:satellite-0:6.12.5.2-1.el8sat.src" + }, + "product_reference": "satellite-0:6.12.5.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.12.5.2-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:satellite-capsule-0:6.12.5.2-1.el8sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.12.5.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.12.5.2-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:satellite-cli-0:6.12.5.2-1.el8sat.noarch" + }, + "product_reference": "satellite-cli-0:6.12.5.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.12.5.2-1.el8sat.noarch as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:satellite-common-0:6.12.5.2-1.el8sat.noarch" + }, + "product_reference": "satellite-common-0:6.12.5.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src" + }, + "product_reference": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64 as a component of Red Hat Satellite 6.12 for RHEL 8", + "product_id": "8Base-satellite-6.12:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64" + }, + "product_reference": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.12" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.5.1.19-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-0:3.5.1.19-1.el8sat.src" + }, + "product_reference": "foreman-0:3.5.1.19-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-cli-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-cli-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-debug-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-debug-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-dynflow-sidekiq-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-ec2-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-journald-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-journald-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-libvirt-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-openstack-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-ovirt-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-postgresql-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-service-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-service-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-telemetry-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:foreman-vmware-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-future-0:0.18.3-1.el8pc.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:python-future-0:0.18.3-1.el8pc.src" + }, + "product_reference": "python-future-0:0.18.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-rpm-0:3.18.17-1.el8pc.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:python-pulp-rpm-0:3.18.17-1.el8pc.src" + }, + "product_reference": "python-pulp-rpm-0:3.18.17-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulpcore-0:3.21.9-1.el8pc.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:python-pulpcore-0:3.21.9-1.el8pc.src" + }, + "product_reference": "python-pulpcore-0:3.21.9-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-future-0:0.18.3-1.el8pc.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:python39-future-0:0.18.3-1.el8pc.noarch" + }, + "product_reference": "python39-future-0:0.18.3-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-rpm-0:3.18.17-1.el8pc.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:python39-pulp-rpm-0:3.18.17-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-rpm-0:3.18.17-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulpcore-0:3.21.9-1.el8pc.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:python39-pulpcore-0:3.21.9-1.el8pc.noarch" + }, + "product_reference": "python39-pulpcore-0:3.21.9-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_maintain-1:1.2.11-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:rubygem-foreman_maintain-1:1.2.11-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_maintain-1:1.2.11-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_maintain-1:1.2.11-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:rubygem-foreman_maintain-1:1.2.11-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_maintain-1:1.2.11-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.13.3-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:satellite-0:6.13.3-1.el8sat.noarch" + }, + "product_reference": "satellite-0:6.13.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.13.3-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:satellite-0:6.13.3-1.el8sat.src" + }, + "product_reference": "satellite-0:6.13.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.13.3-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:satellite-capsule-0:6.13.3-1.el8sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.13.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.13.3-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:satellite-cli-0:6.13.3-1.el8sat.noarch" + }, + "product_reference": "satellite-cli-0:6.13.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.13.3-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-capsule:satellite-common-0:6.13.3-1.el8sat.noarch" + }, + "product_reference": "satellite-common-0:6.13.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_maintain-1:1.2.11-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-maintenance:rubygem-foreman_maintain-1:1.2.11-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_maintain-1:1.2.11-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-maintenance" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_maintain-1:1.2.11-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-maintenance:rubygem-foreman_maintain-1:1.2.11-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_maintain-1:1.2.11-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13-maintenance" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.5.1.19-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-0:3.5.1.19-1.el8sat.src" + }, + "product_reference": "foreman-0:3.5.1.19-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-cli-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-cli-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-debug-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-debug-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-dynflow-sidekiq-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-ec2-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-journald-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-journald-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-libvirt-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-openstack-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-ovirt-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-postgresql-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-service-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-service-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-telemetry-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:foreman-vmware-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.13.3-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:satellite-0:6.13.3-1.el8sat.noarch" + }, + "product_reference": "satellite-0:6.13.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.13.3-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:satellite-0:6.13.3-1.el8sat.src" + }, + "product_reference": "satellite-0:6.13.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.13.3-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:satellite-capsule-0:6.13.3-1.el8sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.13.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.13.3-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:satellite-cli-0:6.13.3-1.el8sat.noarch" + }, + "product_reference": "satellite-cli-0:6.13.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.13.3-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13-utils:satellite-common-0:6.13.3-1.el8sat.noarch" + }, + "product_reference": "satellite-common-0:6.13.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.5.1.19-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-0:3.5.1.19-1.el8sat.src" + }, + "product_reference": "foreman-0:3.5.1.19-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-cli-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-cli-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-debug-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-debug-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-dynflow-sidekiq-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-ec2-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-journald-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-journald-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-libvirt-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-openstack-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-ovirt-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-postgresql-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-service-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-service-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-telemetry-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.5.1.19-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:foreman-vmware-0:3.5.1.19-1.el8sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.5.1.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-future-0:0.18.3-1.el8pc.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:python-future-0:0.18.3-1.el8pc.src" + }, + "product_reference": "python-future-0:0.18.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-rpm-0:3.18.17-1.el8pc.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:python-pulp-rpm-0:3.18.17-1.el8pc.src" + }, + "product_reference": "python-pulp-rpm-0:3.18.17-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulpcore-0:3.21.9-1.el8pc.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:python-pulpcore-0:3.21.9-1.el8pc.src" + }, + "product_reference": "python-pulpcore-0:3.21.9-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-future-0:0.18.3-1.el8pc.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:python39-future-0:0.18.3-1.el8pc.noarch" + }, + "product_reference": "python39-future-0:0.18.3-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-rpm-0:3.18.17-1.el8pc.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:python39-pulp-rpm-0:3.18.17-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-rpm-0:3.18.17-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulpcore-0:3.21.9-1.el8pc.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:python39-pulpcore-0:3.21.9-1.el8pc.noarch" + }, + "product_reference": "python39-pulpcore-0:3.21.9-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:rubygem-fog-vsphere-0:3.6.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:rubygem-fog-vsphere-0:3.6.2-1.el8sat.src" + }, + "product_reference": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_ansible-0:10.4.3-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:rubygem-foreman_ansible-0:10.4.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_ansible-0:10.4.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_ansible-0:10.4.3-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:rubygem-foreman_ansible-0:10.4.3-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_ansible-0:10.4.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_maintain-1:1.2.11-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:rubygem-foreman_maintain-1:1.2.11-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_maintain-1:1.2.11-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_maintain-1:1.2.11-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:rubygem-foreman_maintain-1:1.2.11-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_maintain-1:1.2.11-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-katello-0:4.7.0.31-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:rubygem-katello-0:4.7.0.31-1.el8sat.noarch" + }, + "product_reference": "rubygem-katello-0:4.7.0.31-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-katello-0:4.7.0.31-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:rubygem-katello-0:4.7.0.31-1.el8sat.src" + }, + "product_reference": "rubygem-katello-0:4.7.0.31-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-safemode-0:1.3.8-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:rubygem-safemode-0:1.3.8-1.el8sat.noarch" + }, + "product_reference": "rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-safemode-0:1.3.8-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:rubygem-safemode-0:1.3.8-1.el8sat.src" + }, + "product_reference": "rubygem-safemode-0:1.3.8-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.13.3-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:satellite-0:6.13.3-1.el8sat.noarch" + }, + "product_reference": "satellite-0:6.13.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.13.3-1.el8sat.src as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:satellite-0:6.13.3-1.el8sat.src" + }, + "product_reference": "satellite-0:6.13.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.13.3-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:satellite-capsule-0:6.13.3-1.el8sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.13.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.13.3-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:satellite-cli-0:6.13.3-1.el8sat.noarch" + }, + "product_reference": "satellite-cli-0:6.13.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.13.3-1.el8sat.noarch as a component of Red Hat Satellite 6.13 for RHEL 8", + "product_id": "8Base-satellite-6.13:satellite-common-0:6.13.3-1.el8sat.noarch" + }, + "product_reference": "satellite-common-0:6.13.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.13" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.noarch" + }, + "product_reference": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.src" + }, + "product_reference": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.src" + }, + "product_reference": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-lint-0:5.0.8-4.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ansible-lint-0:5.0.8-4.el8pc.noarch" + }, + "product_reference": "ansible-lint-0:5.0.8-4.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-lint-0:5.0.8-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ansible-lint-0:5.0.8-4.el8pc.src" + }, + "product_reference": "ansible-lint-0:5.0.8-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-runner-0:2.2.1-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ansible-runner-0:2.2.1-3.el8sat.noarch" + }, + "product_reference": "ansible-runner-0:2.2.1-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-runner-0:2.2.1-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ansible-runner-0:2.2.1-3.el8sat.src" + }, + "product_reference": "ansible-runner-0:2.2.1-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.noarch" + }, + "product_reference": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.src" + }, + "product_reference": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansiblerole-insights-client-0:1.7.1-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ansiblerole-insights-client-0:1.7.1-2.el8sat.noarch" + }, + "product_reference": "ansiblerole-insights-client-0:1.7.1-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansiblerole-insights-client-0:1.7.1-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ansiblerole-insights-client-0:1.7.1-2.el8sat.src" + }, + "product_reference": "ansiblerole-insights-client-0:1.7.1-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cjson-0:1.7.14-5.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:cjson-0:1.7.14-5.el8sat.src" + }, + "product_reference": "cjson-0:1.7.14-5.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cjson-0:1.7.14-5.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:cjson-0:1.7.14-5.el8sat.x86_64" + }, + "product_reference": "cjson-0:1.7.14-5.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cjson-debuginfo-0:1.7.14-5.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:cjson-debuginfo-0:1.7.14-5.el8sat.x86_64" + }, + "product_reference": "cjson-debuginfo-0:1.7.14-5.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cjson-debugsource-0:1.7.14-5.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:cjson-debugsource-0:1.7.14-5.el8sat.x86_64" + }, + "product_reference": "cjson-debugsource-0:1.7.14-5.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "createrepo_c-0:0.20.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:createrepo_c-0:0.20.1-1.el8pc.src" + }, + "product_reference": "createrepo_c-0:0.20.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "createrepo_c-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:createrepo_c-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "createrepo_c-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "createrepo_c-debugsource-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:createrepo_c-debugsource-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "createrepo_c-debugsource-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "createrepo_c-libs-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:createrepo_c-libs-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "createrepo_c-libs-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "createrepo_c-libs-debuginfo-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:createrepo_c-libs-debuginfo-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "createrepo_c-libs-debuginfo-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dynflow-utils-0:1.6.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:dynflow-utils-0:1.6.3-1.el8sat.src" + }, + "product_reference": "dynflow-utils-0:1.6.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dynflow-utils-0:1.6.3-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:dynflow-utils-0:1.6.3-1.el8sat.x86_64" + }, + "product_reference": "dynflow-utils-0:1.6.3-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.7.0.9-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-0:3.7.0.9-1.el8sat.src" + }, + "product_reference": "foreman-0:3.7.0.9-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-bootloaders-redhat-0:202102220000-1.el8sat.noarch" + }, + "product_reference": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-bootloaders-redhat-0:202102220000-1.el8sat.src" + }, + "product_reference": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-bootloaders-redhat-tftpboot-0:202102220000-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-bootloaders-redhat-tftpboot-0:202102220000-1.el8sat.noarch" + }, + "product_reference": "foreman-bootloaders-redhat-tftpboot-0:202102220000-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-cli-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-cli-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-debug-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-debug-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-discovery-image-1:4.1.0-10.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-discovery-image-1:4.1.0-10.el8sat.noarch" + }, + "product_reference": "foreman-discovery-image-1:4.1.0-10.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-discovery-image-1:4.1.0-10.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-discovery-image-1:4.1.0-10.el8sat.src" + }, + "product_reference": "foreman-discovery-image-1:4.1.0-10.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-discovery-image-service-0:1.0.0-4.1.el8sat.src" + }, + "product_reference": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-discovery-image-service-0:1.0.0-4.1.el8sat.x86_64" + }, + "product_reference": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-discovery-image-service-tui-0:1.0.0-4.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-discovery-image-service-tui-0:1.0.0-4.1.el8sat.x86_64" + }, + "product_reference": "foreman-discovery-image-service-tui-0:1.0.0-4.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-ec2-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-installer-1:3.7.0.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-installer-1:3.7.0.4-1.el8sat.noarch" + }, + "product_reference": "foreman-installer-1:3.7.0.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-installer-1:3.7.0.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-installer-1:3.7.0.4-1.el8sat.src" + }, + "product_reference": "foreman-installer-1:3.7.0.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-installer-katello-1:3.7.0.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-installer-katello-1:3.7.0.4-1.el8sat.noarch" + }, + "product_reference": "foreman-installer-katello-1:3.7.0.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-journald-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-journald-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-libvirt-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-openstack-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-ovirt-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-postgresql-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-proxy-0:3.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-proxy-0:3.7.0-1.el8sat.noarch" + }, + "product_reference": "foreman-proxy-0:3.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-proxy-0:3.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-proxy-0:3.7.0-1.el8sat.src" + }, + "product_reference": "foreman-proxy-0:3.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-proxy-content-0:4.9.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-proxy-content-0:4.9.0-1.el8sat.noarch" + }, + "product_reference": "foreman-proxy-content-0:4.9.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-proxy-journald-0:3.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-proxy-journald-0:3.7.0-1.el8sat.noarch" + }, + "product_reference": "foreman-proxy-journald-0:3.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-redis-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-redis-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-redis-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-service-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-service-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-telemetry-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:foreman-vmware-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-0:4.9.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:katello-0:4.9.0-1.el8sat.noarch" + }, + "product_reference": "katello-0:4.9.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-0:4.9.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:katello-0:4.9.0-1.el8sat.src" + }, + "product_reference": "katello-0:4.9.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-certs-tools-0:2.9.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:katello-certs-tools-0:2.9.0-2.el8sat.noarch" + }, + "product_reference": "katello-certs-tools-0:2.9.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-certs-tools-0:2.9.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:katello-certs-tools-0:2.9.0-2.el8sat.src" + }, + "product_reference": "katello-certs-tools-0:2.9.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-client-bootstrap-0:1.7.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:katello-client-bootstrap-0:1.7.9-1.el8sat.noarch" + }, + "product_reference": "katello-client-bootstrap-0:1.7.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-client-bootstrap-0:1.7.9-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:katello-client-bootstrap-0:1.7.9-1.el8sat.src" + }, + "product_reference": "katello-client-bootstrap-0:1.7.9-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-common-0:4.9.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:katello-common-0:4.9.0-1.el8sat.noarch" + }, + "product_reference": "katello-common-0:4.9.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-debug-0:4.9.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:katello-debug-0:4.9.0-1.el8sat.noarch" + }, + "product_reference": "katello-debug-0:4.9.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libcomps-0:0.1.18-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libcomps-0:0.1.18-4.el8pc.src" + }, + "product_reference": "libcomps-0:0.1.18-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libcomps-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libcomps-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "libcomps-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libcomps-debugsource-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libcomps-debugsource-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "libcomps-debugsource-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-cxx-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libdb-cxx-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-cxx-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-cxx-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libdb-cxx-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-cxx-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libdb-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-debugsource-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libdb-debugsource-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-debugsource-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-java-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libdb-java-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-java-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-sql-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libdb-sql-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-sql-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-sql-devel-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libdb-sql-devel-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-sql-devel-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-tcl-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libdb-tcl-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-tcl-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-utils-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libdb-utils-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-utils-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsodium-0:1.0.17-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libsodium-0:1.0.17-3.el8sat.src" + }, + "product_reference": "libsodium-0:1.0.17-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsodium-0:1.0.17-3.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libsodium-0:1.0.17-3.el8sat.x86_64" + }, + "product_reference": "libsodium-0:1.0.17-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsodium-debuginfo-0:1.0.17-3.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libsodium-debuginfo-0:1.0.17-3.el8sat.x86_64" + }, + "product_reference": "libsodium-debuginfo-0:1.0.17-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsodium-debugsource-0:1.0.17-3.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libsodium-debugsource-0:1.0.17-3.el8sat.x86_64" + }, + "product_reference": "libsodium-debugsource-0:1.0.17-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsolv-0:0.7.22-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libsolv-0:0.7.22-4.el8pc.src" + }, + "product_reference": "libsolv-0:0.7.22-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsolv-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libsolv-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "libsolv-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsolv-debuginfo-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libsolv-debuginfo-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "libsolv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsolv-debugsource-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libsolv-debugsource-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "libsolv-debugsource-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsolv-demo-debuginfo-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libsolv-demo-debuginfo-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "libsolv-demo-debuginfo-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsolv-tools-debuginfo-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libsolv-tools-debuginfo-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "libsolv-tools-debuginfo-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libwebsockets-0:2.4.2-2.el8.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libwebsockets-0:2.4.2-2.el8.src" + }, + "product_reference": "libwebsockets-0:2.4.2-2.el8.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libwebsockets-0:2.4.2-2.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libwebsockets-0:2.4.2-2.el8.x86_64" + }, + "product_reference": "libwebsockets-0:2.4.2-2.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libwebsockets-debuginfo-0:2.4.2-2.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libwebsockets-debuginfo-0:2.4.2-2.el8.x86_64" + }, + "product_reference": "libwebsockets-debuginfo-0:2.4.2-2.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libwebsockets-debugsource-0:2.4.2-2.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libwebsockets-debugsource-0:2.4.2-2.el8.x86_64" + }, + "product_reference": "libwebsockets-debugsource-0:2.4.2-2.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libwebsockets-tests-debuginfo-0:2.4.2-2.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:libwebsockets-tests-debuginfo-0:2.4.2-2.el8.x86_64" + }, + "product_reference": "libwebsockets-tests-debuginfo-0:2.4.2-2.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mosquitto-0:2.0.14-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:mosquitto-0:2.0.14-1.el8sat.src" + }, + "product_reference": "mosquitto-0:2.0.14-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mosquitto-0:2.0.14-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:mosquitto-0:2.0.14-1.el8sat.x86_64" + }, + "product_reference": "mosquitto-0:2.0.14-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mosquitto-debuginfo-0:2.0.14-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:mosquitto-debuginfo-0:2.0.14-1.el8sat.x86_64" + }, + "product_reference": "mosquitto-debuginfo-0:2.0.14-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mosquitto-debugsource-0:2.0.14-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:mosquitto-debugsource-0:2.0.14-1.el8sat.x86_64" + }, + "product_reference": "mosquitto-debugsource-0:2.0.14-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "pulpcore-selinux-0:1.3.3-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:pulpcore-selinux-0:1.3.3-1.el8pc.src" + }, + "product_reference": "pulpcore-selinux-0:1.3.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "pulpcore-selinux-0:1.3.3-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:pulpcore-selinux-0:1.3.3-1.el8pc.x86_64" + }, + "product_reference": "pulpcore-selinux-0:1.3.3-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:puppet-agent-0:7.26.0-3.el8sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:puppet-agent-0:7.26.0-3.el8sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-oauth-0:0.5.10-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:puppet-agent-oauth-0:0.5.10-1.el8sat.noarch" + }, + "product_reference": "puppet-agent-oauth-0:0.5.10-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-oauth-0:0.5.10-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:puppet-agent-oauth-0:0.5.10-1.el8sat.src" + }, + "product_reference": "puppet-agent-oauth-0:0.5.10-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:puppet-foreman_scap_client-0:0.4.0-1.el8sat.noarch" + }, + "product_reference": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:puppet-foreman_scap_client-0:0.4.0-1.el8sat.src" + }, + "product_reference": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppetlabs-stdlib-0:5.2.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:puppetlabs-stdlib-0:5.2.0-1.el8sat.noarch" + }, + "product_reference": "puppetlabs-stdlib-0:5.2.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppetlabs-stdlib-0:5.2.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:puppetlabs-stdlib-0:5.2.0-1.el8sat.src" + }, + "product_reference": "puppetlabs-stdlib-0:5.2.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppetserver-0:7.11.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:puppetserver-0:7.11.0-1.el8sat.noarch" + }, + "product_reference": "puppetserver-0:7.11.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppetserver-0:7.11.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:puppetserver-0:7.11.0-1.el8sat.src" + }, + "product_reference": "puppetserver-0:7.11.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aiodns-0:3.0.0-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-aiodns-0:3.0.0-3.el8pc.src" + }, + "product_reference": "python-aiodns-0:3.0.0-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aiofiles-0:22.1.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-aiofiles-0:22.1.0-1.el8pc.src" + }, + "product_reference": "python-aiofiles-0:22.1.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aiohttp-0:3.8.3-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-aiohttp-0:3.8.3-2.el8pc.src" + }, + "product_reference": "python-aiohttp-0:3.8.3-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aiohttp-debugsource-0:3.8.3-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-aiohttp-debugsource-0:3.8.3-2.el8pc.x86_64" + }, + "product_reference": "python-aiohttp-debugsource-0:3.8.3-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aiohttp-xmlrpc-0:1.5.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-aiohttp-xmlrpc-0:1.5.0-2.el8pc.src" + }, + "product_reference": "python-aiohttp-xmlrpc-0:1.5.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aioredis-0:2.0.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-aioredis-0:2.0.1-2.el8pc.src" + }, + "product_reference": "python-aioredis-0:2.0.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aiosignal-0:1.3.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-aiosignal-0:1.3.1-1.el8pc.src" + }, + "product_reference": "python-aiosignal-0:1.3.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ansible-builder-0:1.0.1-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-ansible-builder-0:1.0.1-4.el8pc.src" + }, + "product_reference": "python-ansible-builder-0:1.0.1-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-asgiref-0:3.6.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-asgiref-0:3.6.0-1.el8pc.src" + }, + "product_reference": "python-asgiref-0:3.6.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-async-lru-0:1.0.3-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-async-lru-0:1.0.3-1.el8pc.src" + }, + "product_reference": "python-async-lru-0:1.0.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-async-timeout-0:4.0.2-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-async-timeout-0:4.0.2-2.el8pc.src" + }, + "product_reference": "python-async-timeout-0:4.0.2-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-asyncio-throttle-0:1.0.2-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-asyncio-throttle-0:1.0.2-3.el8pc.src" + }, + "product_reference": "python-asyncio-throttle-0:1.0.2-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-attrs-0:21.4.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-attrs-0:21.4.0-2.el8pc.src" + }, + "product_reference": "python-attrs-0:21.4.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-backoff-0:2.2.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-backoff-0:2.2.1-1.el8pc.src" + }, + "product_reference": "python-backoff-0:2.2.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-bindep-0:2.11.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-bindep-0:2.11.0-2.el8pc.src" + }, + "product_reference": "python-bindep-0:2.11.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-bleach-0:3.3.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-bleach-0:3.3.1-2.el8pc.src" + }, + "product_reference": "python-bleach-0:3.3.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-bleach-allowlist-0:1.0.3-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-bleach-allowlist-0:1.0.3-3.el8pc.src" + }, + "product_reference": "python-bleach-allowlist-0:1.0.3-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-bracex-0:2.2.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-bracex-0:2.2.1-2.el8pc.src" + }, + "product_reference": "python-bracex-0:2.2.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-brotli-0:1.0.9-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-brotli-0:1.0.9-2.el8pc.src" + }, + "product_reference": "python-brotli-0:1.0.9-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-brotli-debugsource-0:1.0.9-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-brotli-debugsource-0:1.0.9-2.el8pc.x86_64" + }, + "product_reference": "python-brotli-debugsource-0:1.0.9-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cchardet-0:2.1.7-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-cchardet-0:2.1.7-4.el8pc.src" + }, + "product_reference": "python-cchardet-0:2.1.7-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cchardet-debugsource-0:2.1.7-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-cchardet-debugsource-0:2.1.7-4.el8pc.x86_64" + }, + "product_reference": "python-cchardet-debugsource-0:2.1.7-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-certifi-0:2022.12.7-1.1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-certifi-0:2022.12.7-1.1.el8pc.src" + }, + "product_reference": "python-certifi-0:2022.12.7-1.1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cffi-0:1.15.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-cffi-0:1.15.1-1.el8pc.src" + }, + "product_reference": "python-cffi-0:1.15.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cffi-debugsource-0:1.15.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-cffi-debugsource-0:1.15.1-1.el8pc.x86_64" + }, + "product_reference": "python-cffi-debugsource-0:1.15.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-chardet-0:5.0.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-chardet-0:5.0.0-1.el8pc.src" + }, + "product_reference": "python-chardet-0:5.0.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-charset-normalizer-0:2.1.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-charset-normalizer-0:2.1.1-1.el8pc.src" + }, + "product_reference": "python-charset-normalizer-0:2.1.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-click-0:8.1.3-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-click-0:8.1.3-1.el8pc.src" + }, + "product_reference": "python-click-0:8.1.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-click-shell-0:2.1-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-click-shell-0:2.1-3.el8pc.src" + }, + "product_reference": "python-click-shell-0:2.1-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-colorama-0:0.4.4-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-colorama-0:0.4.4-3.el8pc.src" + }, + "product_reference": "python-colorama-0:0.4.4-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-commonmark-0:0.9.1-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-commonmark-0:0.9.1-5.el8pc.src" + }, + "product_reference": "python-commonmark-0:0.9.1-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-contextlib2-0:21.6.0-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-contextlib2-0:21.6.0-3.el8pc.src" + }, + "product_reference": "python-contextlib2-0:21.6.0-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cryptography-0:38.0.4-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-cryptography-0:38.0.4-1.el8pc.src" + }, + "product_reference": "python-cryptography-0:38.0.4-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cryptography-debugsource-0:38.0.4-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-cryptography-debugsource-0:38.0.4-1.el8pc.x86_64" + }, + "product_reference": "python-cryptography-debugsource-0:38.0.4-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-daemon-0:2.3.1-1.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-daemon-0:2.3.1-1.1.el8sat.src" + }, + "product_reference": "python-daemon-0:2.3.1-1.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-dataclasses-0:0.8-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-dataclasses-0:0.8-3.el8pc.src" + }, + "product_reference": "python-dataclasses-0:0.8-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-dateutil-0:2.8.2-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-dateutil-0:2.8.2-2.el8pc.src" + }, + "product_reference": "python-dateutil-0:2.8.2-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-debian-0:0.1.44-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-debian-0:0.1.44-3.el8pc.src" + }, + "product_reference": "python-debian-0:0.1.44-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-defusedxml-0:0.7.1-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-defusedxml-0:0.7.1-3.el8pc.src" + }, + "product_reference": "python-defusedxml-0:0.7.1-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-deprecated-0:1.2.13-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-deprecated-0:1.2.13-1.el8pc.src" + }, + "product_reference": "python-deprecated-0:1.2.13-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-diff-match-patch-0:20200713-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-diff-match-patch-0:20200713-3.el8pc.src" + }, + "product_reference": "python-diff-match-patch-0:20200713-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-distro-0:1.7.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-distro-0:1.7.0-1.el8pc.src" + }, + "product_reference": "python-distro-0:1.7.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-0:3.2.21-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-django-0:3.2.21-1.el8pc.src" + }, + "product_reference": "python-django-0:3.2.21-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-currentuser-0:0.5.3-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-django-currentuser-0:0.5.3-5.el8pc.src" + }, + "product_reference": "python-django-currentuser-0:0.5.3-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-filter-0:22.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-django-filter-0:22.1-2.el8pc.src" + }, + "product_reference": "python-django-filter-0:22.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-guid-0:3.3.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-django-guid-0:3.3.0-1.el8pc.src" + }, + "product_reference": "python-django-guid-0:3.3.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-import-export-0:3.0.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-django-import-export-0:3.0.2-1.el8pc.src" + }, + "product_reference": "python-django-import-export-0:3.0.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-lifecycle-0:1.0.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-django-lifecycle-0:1.0.0-1.el8pc.src" + }, + "product_reference": "python-django-lifecycle-0:1.0.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-readonly-field-0:1.1.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-django-readonly-field-0:1.1.2-1.el8pc.src" + }, + "product_reference": "python-django-readonly-field-0:1.1.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-djangorestframework-0:3.14.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-djangorestframework-0:3.14.0-1.el8pc.src" + }, + "product_reference": "python-djangorestframework-0:3.14.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-djangorestframework-queryfields-0:1.0.0-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-djangorestframework-queryfields-0:1.0.0-5.el8pc.src" + }, + "product_reference": "python-djangorestframework-queryfields-0:1.0.0-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-docutils-0:0.19-1.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-docutils-0:0.19-1.1.el8sat.src" + }, + "product_reference": "python-docutils-0:0.19-1.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-drf-access-policy-0:1.3.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-drf-access-policy-0:1.3.0-1.el8pc.src" + }, + "product_reference": "python-drf-access-policy-0:1.3.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-drf-nested-routers-0:0.93.4-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-drf-nested-routers-0:0.93.4-3.el8pc.src" + }, + "product_reference": "python-drf-nested-routers-0:0.93.4-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-drf-spectacular-0:0.25.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-drf-spectacular-0:0.25.0-1.el8pc.src" + }, + "product_reference": "python-drf-spectacular-0:0.25.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-dynaconf-0:3.1.11-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-dynaconf-0:3.1.11-1.el8pc.src" + }, + "product_reference": "python-dynaconf-0:3.1.11-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ecdsa-0:0.18.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-ecdsa-0:0.18.0-1.el8pc.src" + }, + "product_reference": "python-ecdsa-0:0.18.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-enrich-0:1.2.6-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-enrich-0:1.2.6-5.el8pc.src" + }, + "product_reference": "python-enrich-0:1.2.6-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-et-xmlfile-0:1.1.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-et-xmlfile-0:1.1.0-2.el8pc.src" + }, + "product_reference": "python-et-xmlfile-0:1.1.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-flake8-0:3.9.2-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-flake8-0:3.9.2-5.el8pc.src" + }, + "product_reference": "python-flake8-0:3.9.2-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-frozenlist-0:1.3.3-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-frozenlist-0:1.3.3-1.el8pc.src" + }, + "product_reference": "python-frozenlist-0:1.3.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-frozenlist-debugsource-0:1.3.3-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-frozenlist-debugsource-0:1.3.3-1.el8pc.x86_64" + }, + "product_reference": "python-frozenlist-debugsource-0:1.3.3-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-future-0:0.18.3-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-future-0:0.18.3-1.el8pc.src" + }, + "product_reference": "python-future-0:0.18.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-galaxy-importer-0:0.4.6-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-galaxy-importer-0:0.4.6-1.el8pc.src" + }, + "product_reference": "python-galaxy-importer-0:0.4.6-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-gitdb-0:4.0.10-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-gitdb-0:4.0.10-1.el8pc.src" + }, + "product_reference": "python-gitdb-0:4.0.10-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-gitpython-0:3.1.32-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-gitpython-0:3.1.32-1.el8pc.src" + }, + "product_reference": "python-gitpython-0:3.1.32-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-gnupg-0:0.5.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-gnupg-0:0.5.0-1.el8pc.src" + }, + "product_reference": "python-gnupg-0:0.5.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-gunicorn-0:20.1.0-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-gunicorn-0:20.1.0-5.el8pc.src" + }, + "product_reference": "python-gunicorn-0:20.1.0-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-idna-0:3.3-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-idna-0:3.3-2.el8pc.src" + }, + "product_reference": "python-idna-0:3.3-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-idna-ssl-0:1.1.0-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-idna-ssl-0:1.1.0-5.el8pc.src" + }, + "product_reference": "python-idna-ssl-0:1.1.0-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-importlib-metadata-0:4.10.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-importlib-metadata-0:4.10.1-2.el8pc.src" + }, + "product_reference": "python-importlib-metadata-0:4.10.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-inflection-0:0.5.1-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-inflection-0:0.5.1-3.el8pc.src" + }, + "product_reference": "python-inflection-0:0.5.1-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-iniparse-0:0.4-35.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-iniparse-0:0.4-35.el8pc.src" + }, + "product_reference": "python-iniparse-0:0.4-35.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-jinja2-0:3.1.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-jinja2-0:3.1.2-1.el8pc.src" + }, + "product_reference": "python-jinja2-0:3.1.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-jsonschema-0:4.9.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-jsonschema-0:4.9.1-1.el8pc.src" + }, + "product_reference": "python-jsonschema-0:4.9.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-lockfile-0:0.12.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-lockfile-0:0.12.2-1.el8sat.src" + }, + "product_reference": "python-lockfile-0:0.12.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-lxml-0:4.9.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-lxml-0:4.9.2-1.el8pc.src" + }, + "product_reference": "python-lxml-0:4.9.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-lxml-debugsource-0:4.9.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-lxml-debugsource-0:4.9.2-1.el8pc.x86_64" + }, + "product_reference": "python-lxml-debugsource-0:4.9.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-markdown-0:3.4.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-markdown-0:3.4.1-1.el8pc.src" + }, + "product_reference": "python-markdown-0:3.4.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-markuppy-0:1.14-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-markuppy-0:1.14-3.el8pc.src" + }, + "product_reference": "python-markuppy-0:1.14-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-markupsafe-0:2.1.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-markupsafe-0:2.1.2-1.el8pc.src" + }, + "product_reference": "python-markupsafe-0:2.1.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-markupsafe-debugsource-0:2.1.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-markupsafe-debugsource-0:2.1.2-1.el8pc.x86_64" + }, + "product_reference": "python-markupsafe-debugsource-0:2.1.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-mccabe-0:0.6.1-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-mccabe-0:0.6.1-3.el8pc.src" + }, + "product_reference": "python-mccabe-0:0.6.1-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-multidict-0:6.0.4-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-multidict-0:6.0.4-1.el8pc.src" + }, + "product_reference": "python-multidict-0:6.0.4-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-multidict-debugsource-0:6.0.4-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-multidict-debugsource-0:6.0.4-1.el8pc.x86_64" + }, + "product_reference": "python-multidict-debugsource-0:6.0.4-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-naya-0:1.1.1-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-naya-0:1.1.1-3.el8pc.src" + }, + "product_reference": "python-naya-0:1.1.1-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-odfpy-0:1.4.1-6.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-odfpy-0:1.4.1-6.el8pc.src" + }, + "product_reference": "python-odfpy-0:1.4.1-6.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-openpyxl-0:3.1.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-openpyxl-0:3.1.0-1.el8pc.src" + }, + "product_reference": "python-openpyxl-0:3.1.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-packaging-0:21.3-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-packaging-0:21.3-1.el8pc.src" + }, + "product_reference": "python-packaging-0:21.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-parsley-0:1.3-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-parsley-0:1.3-2.el8pc.src" + }, + "product_reference": "python-parsley-0:1.3-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pbr-0:5.8.0-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pbr-0:5.8.0-4.el8pc.src" + }, + "product_reference": "python-pbr-0:5.8.0-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pexpect-0:4.8.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pexpect-0:4.8.0-2.el8sat.src" + }, + "product_reference": "python-pexpect-0:4.8.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-productmd-0:1.33-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-productmd-0:1.33-3.el8pc.src" + }, + "product_reference": "python-productmd-0:1.33-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-protobuf-0:4.21.6-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-protobuf-0:4.21.6-1.el8pc.src" + }, + "product_reference": "python-protobuf-0:4.21.6-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-psycopg2-0:2.9.3-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-psycopg2-0:2.9.3-2.el8pc.src" + }, + "product_reference": "python-psycopg2-0:2.9.3-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-psycopg2-debugsource-0:2.9.3-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-psycopg2-debugsource-0:2.9.3-2.el8pc.x86_64" + }, + "product_reference": "python-psycopg2-debugsource-0:2.9.3-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ptyprocess-0:0.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-ptyprocess-0:0.7.0-1.el8sat.src" + }, + "product_reference": "python-ptyprocess-0:0.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-ansible-1:0.16.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pulp-ansible-1:0.16.0-1.el8pc.src" + }, + "product_reference": "python-pulp-ansible-1:0.16.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-certguard-0:1.5.6-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pulp-certguard-0:1.5.6-1.el8pc.src" + }, + "product_reference": "python-pulp-certguard-0:1.5.6-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-cli-0:0.14.0-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pulp-cli-0:0.14.0-4.el8pc.src" + }, + "product_reference": "python-pulp-cli-0:0.14.0-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-container-0:2.14.7-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pulp-container-0:2.14.7-1.el8pc.src" + }, + "product_reference": "python-pulp-container-0:2.14.7-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-deb-0:2.20.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pulp-deb-0:2.20.2-1.el8pc.src" + }, + "product_reference": "python-pulp-deb-0:2.20.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-file-0:1.12.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pulp-file-0:1.12.0-1.el8pc.src" + }, + "product_reference": "python-pulp-file-0:1.12.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-rpm-0:3.19.9-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pulp-rpm-0:3.19.9-1.el8pc.src" + }, + "product_reference": "python-pulp-rpm-0:3.19.9-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulpcore-0:3.22.15-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pulpcore-0:3.22.15-2.el8pc.src" + }, + "product_reference": "python-pulpcore-0:3.22.15-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyOpenSSL-0:22.1.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pyOpenSSL-0:22.1.0-1.el8pc.src" + }, + "product_reference": "python-pyOpenSSL-0:22.1.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycares-0:4.1.2-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pycares-0:4.1.2-2.el8pc.src" + }, + "product_reference": "python-pycares-0:4.1.2-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycares-debugsource-0:4.1.2-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pycares-debugsource-0:4.1.2-2.el8pc.x86_64" + }, + "product_reference": "python-pycares-debugsource-0:4.1.2-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycodestyle-0:2.7.0-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pycodestyle-0:2.7.0-5.el8pc.src" + }, + "product_reference": "python-pycodestyle-0:2.7.0-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycparser-0:2.21-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pycparser-0:2.21-2.el8pc.src" + }, + "product_reference": "python-pycparser-0:2.21-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycryptodomex-0:3.14.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pycryptodomex-0:3.14.1-2.el8pc.src" + }, + "product_reference": "python-pycryptodomex-0:3.14.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycryptodomex-debugsource-0:3.14.1-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pycryptodomex-debugsource-0:3.14.1-2.el8pc.x86_64" + }, + "product_reference": "python-pycryptodomex-debugsource-0:3.14.1-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyflakes-0:2.3.1-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pyflakes-0:2.3.1-5.el8pc.src" + }, + "product_reference": "python-pyflakes-0:2.3.1-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pygments-0:2.14.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pygments-0:2.14.0-1.el8pc.src" + }, + "product_reference": "python-pygments-0:2.14.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pygtrie-0:2.5.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pygtrie-0:2.5.0-1.el8pc.src" + }, + "product_reference": "python-pygtrie-0:2.5.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyjwkest-0:1.4.2-6.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pyjwkest-0:1.4.2-6.el8pc.src" + }, + "product_reference": "python-pyjwkest-0:1.4.2-6.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyjwt-0:2.5.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pyjwt-0:2.5.0-2.el8pc.src" + }, + "product_reference": "python-pyjwt-0:2.5.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyparsing-0:2.4.7-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pyparsing-0:2.4.7-3.el8pc.src" + }, + "product_reference": "python-pyparsing-0:2.4.7-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyrsistent-0:0.18.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pyrsistent-0:0.18.1-2.el8pc.src" + }, + "product_reference": "python-pyrsistent-0:0.18.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyrsistent-debugsource-0:0.18.1-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pyrsistent-debugsource-0:0.18.1-2.el8pc.x86_64" + }, + "product_reference": "python-pyrsistent-debugsource-0:0.18.1-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pytz-0:2022.2.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pytz-0:2022.2.1-1.el8pc.src" + }, + "product_reference": "python-pytz-0:2022.2.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyyaml-0:5.4.1-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-pyyaml-0:5.4.1-4.el8pc.src" + }, + "product_reference": "python-pyyaml-0:5.4.1-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-qpid-0:1.37.0-1.el8.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-qpid-0:1.37.0-1.el8.src" + }, + "product_reference": "python-qpid-0:1.37.0-1.el8.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-redis-0:4.3.4-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-redis-0:4.3.4-1.el8pc.src" + }, + "product_reference": "python-redis-0:4.3.4-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-requests-0:2.31.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-requests-0:2.31.0-1.el8pc.src" + }, + "product_reference": "python-requests-0:2.31.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-requirements-parser-0:0.2.0-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-requirements-parser-0:0.2.0-3.el8pc.src" + }, + "product_reference": "python-requirements-parser-0:0.2.0-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-rhsm-0:1.19.2-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-rhsm-0:1.19.2-3.el8pc.src" + }, + "product_reference": "python-rhsm-0:1.19.2-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-rhsm-debugsource-0:1.19.2-3.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-rhsm-debugsource-0:1.19.2-3.el8pc.x86_64" + }, + "product_reference": "python-rhsm-debugsource-0:1.19.2-3.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-rich-0:13.3.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-rich-0:13.3.1-2.el8pc.src" + }, + "product_reference": "python-rich-0:13.3.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ruamel-yaml-0:0.17.21-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-ruamel-yaml-0:0.17.21-2.el8pc.src" + }, + "product_reference": "python-ruamel-yaml-0:0.17.21-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ruamel-yaml-clib-0:0.2.7-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-ruamel-yaml-clib-0:0.2.7-1.el8pc.src" + }, + "product_reference": "python-ruamel-yaml-clib-0:0.2.7-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ruamel-yaml-clib-debugsource-0:0.2.7-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-ruamel-yaml-clib-debugsource-0:0.2.7-1.el8pc.x86_64" + }, + "product_reference": "python-ruamel-yaml-clib-debugsource-0:0.2.7-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-schema-0:0.7.5-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-schema-0:0.7.5-2.el8pc.src" + }, + "product_reference": "python-schema-0:0.7.5-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-semantic-version-0:2.10.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-semantic-version-0:2.10.0-1.el8pc.src" + }, + "product_reference": "python-semantic-version-0:2.10.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-six-0:1.16.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-six-0:1.16.0-2.el8pc.src" + }, + "product_reference": "python-six-0:1.16.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-smmap-0:5.0.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-smmap-0:5.0.0-2.el8pc.src" + }, + "product_reference": "python-smmap-0:5.0.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-sqlparse-0:0.4.4-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-sqlparse-0:0.4.4-1.el8pc.src" + }, + "product_reference": "python-sqlparse-0:0.4.4-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-tablib-0:3.3.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-tablib-0:3.3.0-1.el8pc.src" + }, + "product_reference": "python-tablib-0:3.3.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-tenacity-0:7.0.0-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-tenacity-0:7.0.0-3.el8pc.src" + }, + "product_reference": "python-tenacity-0:7.0.0-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-toml-0:0.10.2-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-toml-0:0.10.2-3.el8pc.src" + }, + "product_reference": "python-toml-0:0.10.2-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-types-cryptography-0:3.3.23.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-types-cryptography-0:3.3.23.2-1.el8pc.src" + }, + "product_reference": "python-types-cryptography-0:3.3.23.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-typing-extensions-0:3.10.0.2-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-typing-extensions-0:3.10.0.2-2.el8pc.src" + }, + "product_reference": "python-typing-extensions-0:3.10.0.2-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-uritemplate-0:4.1.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-uritemplate-0:4.1.1-2.el8pc.src" + }, + "product_reference": "python-uritemplate-0:4.1.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-url-normalize-0:1.4.3-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-url-normalize-0:1.4.3-4.el8pc.src" + }, + "product_reference": "python-url-normalize-0:1.4.3-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-urllib3-0:1.26.8-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-urllib3-0:1.26.8-2.el8pc.src" + }, + "product_reference": "python-urllib3-0:1.26.8-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-urlman-0:2.0.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-urlman-0:2.0.1-1.el8pc.src" + }, + "product_reference": "python-urlman-0:2.0.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-wcmatch-0:8.3-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-wcmatch-0:8.3-2.el8pc.src" + }, + "product_reference": "python-wcmatch-0:8.3-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-webencodings-0:0.5.1-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-webencodings-0:0.5.1-3.el8pc.src" + }, + "product_reference": "python-webencodings-0:0.5.1-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-whitenoise-0:6.0.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-whitenoise-0:6.0.0-1.el8pc.src" + }, + "product_reference": "python-whitenoise-0:6.0.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-wrapt-0:1.14.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-wrapt-0:1.14.1-1.el8pc.src" + }, + "product_reference": "python-wrapt-0:1.14.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-wrapt-debugsource-0:1.14.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-wrapt-debugsource-0:1.14.1-1.el8pc.x86_64" + }, + "product_reference": "python-wrapt-debugsource-0:1.14.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-xlrd-0:2.0.1-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-xlrd-0:2.0.1-5.el8pc.src" + }, + "product_reference": "python-xlrd-0:2.0.1-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-xlwt-0:1.3.0-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-xlwt-0:1.3.0-3.el8pc.src" + }, + "product_reference": "python-xlwt-0:1.3.0-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-yarl-0:1.8.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-yarl-0:1.8.2-1.el8pc.src" + }, + "product_reference": "python-yarl-0:1.8.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-yarl-debugsource-0:1.8.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-yarl-debugsource-0:1.8.2-1.el8pc.x86_64" + }, + "product_reference": "python-yarl-debugsource-0:1.8.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-zipp-0:3.4.0-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python-zipp-0:3.4.0-4.el8pc.src" + }, + "product_reference": "python-zipp-0:3.4.0-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python2-qpid-0:1.37.0-1.el8.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python2-qpid-0:1.37.0-1.el8.noarch" + }, + "product_reference": "python2-qpid-0:1.37.0-1.el8.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python2-qpid-qmf-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python2-qpid-qmf-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "python2-qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python2-saslwrapper-0:0.22-6.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python2-saslwrapper-0:0.22-6.el8sat.x86_64" + }, + "product_reference": "python2-saslwrapper-0:0.22-6.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python2-saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python2-saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64" + }, + "product_reference": "python2-saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-createrepo_c-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python3-createrepo_c-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "python3-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python3-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "python3-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-libcomps-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python3-libcomps-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "python3-libcomps-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python3-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "python3-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-qpid-proton-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python3-qpid-proton-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "python3-qpid-proton-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python3-qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "python3-qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-solv-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python3-solv-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "python3-solv-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-solv-debuginfo-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python3-solv-debuginfo-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "python3-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aiodns-0:3.0.0-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-aiodns-0:3.0.0-3.el8pc.noarch" + }, + "product_reference": "python39-aiodns-0:3.0.0-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aiofiles-0:22.1.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-aiofiles-0:22.1.0-1.el8pc.noarch" + }, + "product_reference": "python39-aiofiles-0:22.1.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aiohttp-0:3.8.3-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-aiohttp-0:3.8.3-2.el8pc.x86_64" + }, + "product_reference": "python39-aiohttp-0:3.8.3-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aiohttp-debuginfo-0:3.8.3-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-aiohttp-debuginfo-0:3.8.3-2.el8pc.x86_64" + }, + "product_reference": "python39-aiohttp-debuginfo-0:3.8.3-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aiohttp-xmlrpc-0:1.5.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-aiohttp-xmlrpc-0:1.5.0-2.el8pc.noarch" + }, + "product_reference": "python39-aiohttp-xmlrpc-0:1.5.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aioredis-0:2.0.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-aioredis-0:2.0.1-2.el8pc.noarch" + }, + "product_reference": "python39-aioredis-0:2.0.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aiosignal-0:1.3.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-aiosignal-0:1.3.1-1.el8pc.noarch" + }, + "product_reference": "python39-aiosignal-0:1.3.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ansible-builder-0:1.0.1-4.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-ansible-builder-0:1.0.1-4.el8pc.noarch" + }, + "product_reference": "python39-ansible-builder-0:1.0.1-4.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ansible-runner-0:2.2.1-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-ansible-runner-0:2.2.1-3.el8sat.noarch" + }, + "product_reference": "python39-ansible-runner-0:2.2.1-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-asgiref-0:3.6.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-asgiref-0:3.6.0-1.el8pc.noarch" + }, + "product_reference": "python39-asgiref-0:3.6.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-async-lru-0:1.0.3-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-async-lru-0:1.0.3-1.el8pc.noarch" + }, + "product_reference": "python39-async-lru-0:1.0.3-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-async-timeout-0:4.0.2-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-async-timeout-0:4.0.2-2.el8pc.noarch" + }, + "product_reference": "python39-async-timeout-0:4.0.2-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-asyncio-throttle-0:1.0.2-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-asyncio-throttle-0:1.0.2-3.el8pc.noarch" + }, + "product_reference": "python39-asyncio-throttle-0:1.0.2-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-attrs-0:21.4.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-attrs-0:21.4.0-2.el8pc.noarch" + }, + "product_reference": "python39-attrs-0:21.4.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-backoff-0:2.2.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-backoff-0:2.2.1-1.el8pc.noarch" + }, + "product_reference": "python39-backoff-0:2.2.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-bindep-0:2.11.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-bindep-0:2.11.0-2.el8pc.noarch" + }, + "product_reference": "python39-bindep-0:2.11.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-bleach-0:3.3.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-bleach-0:3.3.1-2.el8pc.noarch" + }, + "product_reference": "python39-bleach-0:3.3.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-bleach-allowlist-0:1.0.3-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-bleach-allowlist-0:1.0.3-3.el8pc.noarch" + }, + "product_reference": "python39-bleach-allowlist-0:1.0.3-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-bracex-0:2.2.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-bracex-0:2.2.1-2.el8pc.noarch" + }, + "product_reference": "python39-bracex-0:2.2.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-brotli-0:1.0.9-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-brotli-0:1.0.9-2.el8pc.x86_64" + }, + "product_reference": "python39-brotli-0:1.0.9-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-brotli-debuginfo-0:1.0.9-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-brotli-debuginfo-0:1.0.9-2.el8pc.x86_64" + }, + "product_reference": "python39-brotli-debuginfo-0:1.0.9-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-cchardet-0:2.1.7-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-cchardet-0:2.1.7-4.el8pc.x86_64" + }, + "product_reference": "python39-cchardet-0:2.1.7-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-cchardet-debuginfo-0:2.1.7-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-cchardet-debuginfo-0:2.1.7-4.el8pc.x86_64" + }, + "product_reference": "python39-cchardet-debuginfo-0:2.1.7-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-certifi-0:2022.12.7-1.1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-certifi-0:2022.12.7-1.1.el8pc.noarch" + }, + "product_reference": "python39-certifi-0:2022.12.7-1.1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-cffi-0:1.15.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-cffi-0:1.15.1-1.el8pc.x86_64" + }, + "product_reference": "python39-cffi-0:1.15.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-cffi-debuginfo-0:1.15.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-cffi-debuginfo-0:1.15.1-1.el8pc.x86_64" + }, + "product_reference": "python39-cffi-debuginfo-0:1.15.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-chardet-0:5.0.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-chardet-0:5.0.0-1.el8pc.noarch" + }, + "product_reference": "python39-chardet-0:5.0.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-charset-normalizer-0:2.1.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-charset-normalizer-0:2.1.1-1.el8pc.noarch" + }, + "product_reference": "python39-charset-normalizer-0:2.1.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-click-0:8.1.3-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-click-0:8.1.3-1.el8pc.noarch" + }, + "product_reference": "python39-click-0:8.1.3-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-click-shell-0:2.1-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-click-shell-0:2.1-3.el8pc.noarch" + }, + "product_reference": "python39-click-shell-0:2.1-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-colorama-0:0.4.4-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-colorama-0:0.4.4-3.el8pc.noarch" + }, + "product_reference": "python39-colorama-0:0.4.4-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-commonmark-0:0.9.1-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-commonmark-0:0.9.1-5.el8pc.noarch" + }, + "product_reference": "python39-commonmark-0:0.9.1-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-contextlib2-0:21.6.0-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-contextlib2-0:21.6.0-3.el8pc.noarch" + }, + "product_reference": "python39-contextlib2-0:21.6.0-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-createrepo_c-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-createrepo_c-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "python39-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "python39-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-cryptography-0:38.0.4-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-cryptography-0:38.0.4-1.el8pc.x86_64" + }, + "product_reference": "python39-cryptography-0:38.0.4-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-cryptography-debuginfo-0:38.0.4-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-cryptography-debuginfo-0:38.0.4-1.el8pc.x86_64" + }, + "product_reference": "python39-cryptography-debuginfo-0:38.0.4-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-daemon-0:2.3.1-1.1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-daemon-0:2.3.1-1.1.el8sat.noarch" + }, + "product_reference": "python39-daemon-0:2.3.1-1.1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-dataclasses-0:0.8-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-dataclasses-0:0.8-3.el8pc.noarch" + }, + "product_reference": "python39-dataclasses-0:0.8-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-dateutil-0:2.8.2-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-dateutil-0:2.8.2-2.el8pc.noarch" + }, + "product_reference": "python39-dateutil-0:2.8.2-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-debian-0:0.1.44-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-debian-0:0.1.44-3.el8pc.noarch" + }, + "product_reference": "python39-debian-0:0.1.44-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-defusedxml-0:0.7.1-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-defusedxml-0:0.7.1-3.el8pc.noarch" + }, + "product_reference": "python39-defusedxml-0:0.7.1-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-deprecated-0:1.2.13-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-deprecated-0:1.2.13-1.el8pc.noarch" + }, + "product_reference": "python39-deprecated-0:1.2.13-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-diff-match-patch-0:20200713-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-diff-match-patch-0:20200713-3.el8pc.noarch" + }, + "product_reference": "python39-diff-match-patch-0:20200713-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-distro-0:1.7.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-distro-0:1.7.0-1.el8pc.noarch" + }, + "product_reference": "python39-distro-0:1.7.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-0:3.2.21-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-django-0:3.2.21-1.el8pc.noarch" + }, + "product_reference": "python39-django-0:3.2.21-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-currentuser-0:0.5.3-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-django-currentuser-0:0.5.3-5.el8pc.noarch" + }, + "product_reference": "python39-django-currentuser-0:0.5.3-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-filter-0:22.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-django-filter-0:22.1-2.el8pc.noarch" + }, + "product_reference": "python39-django-filter-0:22.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-guid-0:3.3.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-django-guid-0:3.3.0-1.el8pc.noarch" + }, + "product_reference": "python39-django-guid-0:3.3.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-import-export-0:3.0.2-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-django-import-export-0:3.0.2-1.el8pc.noarch" + }, + "product_reference": "python39-django-import-export-0:3.0.2-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-lifecycle-0:1.0.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-django-lifecycle-0:1.0.0-1.el8pc.noarch" + }, + "product_reference": "python39-django-lifecycle-0:1.0.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-readonly-field-0:1.1.2-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-django-readonly-field-0:1.1.2-1.el8pc.noarch" + }, + "product_reference": "python39-django-readonly-field-0:1.1.2-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-djangorestframework-0:3.14.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-djangorestframework-0:3.14.0-1.el8pc.noarch" + }, + "product_reference": "python39-djangorestframework-0:3.14.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-djangorestframework-queryfields-0:1.0.0-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-djangorestframework-queryfields-0:1.0.0-5.el8pc.noarch" + }, + "product_reference": "python39-djangorestframework-queryfields-0:1.0.0-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-docutils-0:0.19-1.1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-docutils-0:0.19-1.1.el8sat.noarch" + }, + "product_reference": "python39-docutils-0:0.19-1.1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-drf-access-policy-0:1.3.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-drf-access-policy-0:1.3.0-1.el8pc.noarch" + }, + "product_reference": "python39-drf-access-policy-0:1.3.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-drf-nested-routers-0:0.93.4-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-drf-nested-routers-0:0.93.4-3.el8pc.noarch" + }, + "product_reference": "python39-drf-nested-routers-0:0.93.4-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-drf-spectacular-0:0.25.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-drf-spectacular-0:0.25.0-1.el8pc.noarch" + }, + "product_reference": "python39-drf-spectacular-0:0.25.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-dynaconf-0:3.1.11-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-dynaconf-0:3.1.11-1.el8pc.noarch" + }, + "product_reference": "python39-dynaconf-0:3.1.11-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ecdsa-0:0.18.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-ecdsa-0:0.18.0-1.el8pc.noarch" + }, + "product_reference": "python39-ecdsa-0:0.18.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-enrich-0:1.2.6-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-enrich-0:1.2.6-5.el8pc.noarch" + }, + "product_reference": "python39-enrich-0:1.2.6-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-et-xmlfile-0:1.1.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-et-xmlfile-0:1.1.0-2.el8pc.noarch" + }, + "product_reference": "python39-et-xmlfile-0:1.1.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-flake8-0:3.9.2-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-flake8-0:3.9.2-5.el8pc.noarch" + }, + "product_reference": "python39-flake8-0:3.9.2-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-frozenlist-0:1.3.3-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-frozenlist-0:1.3.3-1.el8pc.x86_64" + }, + "product_reference": "python39-frozenlist-0:1.3.3-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-frozenlist-debuginfo-0:1.3.3-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-frozenlist-debuginfo-0:1.3.3-1.el8pc.x86_64" + }, + "product_reference": "python39-frozenlist-debuginfo-0:1.3.3-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-future-0:0.18.3-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-future-0:0.18.3-1.el8pc.noarch" + }, + "product_reference": "python39-future-0:0.18.3-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-galaxy-importer-0:0.4.6-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-galaxy-importer-0:0.4.6-1.el8pc.noarch" + }, + "product_reference": "python39-galaxy-importer-0:0.4.6-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-gitdb-0:4.0.10-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-gitdb-0:4.0.10-1.el8pc.noarch" + }, + "product_reference": "python39-gitdb-0:4.0.10-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-gitpython-0:3.1.32-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-gitpython-0:3.1.32-1.el8pc.noarch" + }, + "product_reference": "python39-gitpython-0:3.1.32-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-gnupg-0:0.5.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-gnupg-0:0.5.0-1.el8pc.noarch" + }, + "product_reference": "python39-gnupg-0:0.5.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-gunicorn-0:20.1.0-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-gunicorn-0:20.1.0-5.el8pc.noarch" + }, + "product_reference": "python39-gunicorn-0:20.1.0-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-idna-0:3.3-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-idna-0:3.3-2.el8pc.noarch" + }, + "product_reference": "python39-idna-0:3.3-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-idna-ssl-0:1.1.0-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-idna-ssl-0:1.1.0-5.el8pc.noarch" + }, + "product_reference": "python39-idna-ssl-0:1.1.0-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-importlib-metadata-0:4.10.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-importlib-metadata-0:4.10.1-2.el8pc.noarch" + }, + "product_reference": "python39-importlib-metadata-0:4.10.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-inflection-0:0.5.1-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-inflection-0:0.5.1-3.el8pc.noarch" + }, + "product_reference": "python39-inflection-0:0.5.1-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-iniparse-0:0.4-35.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-iniparse-0:0.4-35.el8pc.noarch" + }, + "product_reference": "python39-iniparse-0:0.4-35.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-jinja2-0:3.1.2-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-jinja2-0:3.1.2-1.el8pc.noarch" + }, + "product_reference": "python39-jinja2-0:3.1.2-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-jsonschema-0:4.9.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-jsonschema-0:4.9.1-1.el8pc.noarch" + }, + "product_reference": "python39-jsonschema-0:4.9.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-libcomps-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-libcomps-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "python39-libcomps-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "python39-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-lockfile-0:0.12.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-lockfile-0:0.12.2-1.el8sat.noarch" + }, + "product_reference": "python39-lockfile-0:0.12.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-lxml-0:4.9.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-lxml-0:4.9.2-1.el8pc.x86_64" + }, + "product_reference": "python39-lxml-0:4.9.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-lxml-debuginfo-0:4.9.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-lxml-debuginfo-0:4.9.2-1.el8pc.x86_64" + }, + "product_reference": "python39-lxml-debuginfo-0:4.9.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-markdown-0:3.4.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-markdown-0:3.4.1-1.el8pc.noarch" + }, + "product_reference": "python39-markdown-0:3.4.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-markuppy-0:1.14-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-markuppy-0:1.14-3.el8pc.noarch" + }, + "product_reference": "python39-markuppy-0:1.14-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-markupsafe-0:2.1.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-markupsafe-0:2.1.2-1.el8pc.x86_64" + }, + "product_reference": "python39-markupsafe-0:2.1.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-markupsafe-debuginfo-0:2.1.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-markupsafe-debuginfo-0:2.1.2-1.el8pc.x86_64" + }, + "product_reference": "python39-markupsafe-debuginfo-0:2.1.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-mccabe-0:0.6.1-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-mccabe-0:0.6.1-3.el8pc.noarch" + }, + "product_reference": "python39-mccabe-0:0.6.1-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-multidict-0:6.0.4-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-multidict-0:6.0.4-1.el8pc.x86_64" + }, + "product_reference": "python39-multidict-0:6.0.4-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-multidict-debuginfo-0:6.0.4-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-multidict-debuginfo-0:6.0.4-1.el8pc.x86_64" + }, + "product_reference": "python39-multidict-debuginfo-0:6.0.4-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-naya-0:1.1.1-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-naya-0:1.1.1-3.el8pc.noarch" + }, + "product_reference": "python39-naya-0:1.1.1-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-odfpy-0:1.4.1-6.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-odfpy-0:1.4.1-6.el8pc.noarch" + }, + "product_reference": "python39-odfpy-0:1.4.1-6.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-openpyxl-0:3.1.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-openpyxl-0:3.1.0-1.el8pc.noarch" + }, + "product_reference": "python39-openpyxl-0:3.1.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-packaging-0:21.3-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-packaging-0:21.3-1.el8pc.noarch" + }, + "product_reference": "python39-packaging-0:21.3-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-parsley-0:1.3-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-parsley-0:1.3-2.el8pc.noarch" + }, + "product_reference": "python39-parsley-0:1.3-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pbr-0:5.8.0-4.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pbr-0:5.8.0-4.el8pc.noarch" + }, + "product_reference": "python39-pbr-0:5.8.0-4.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pexpect-0:4.8.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pexpect-0:4.8.0-2.el8sat.noarch" + }, + "product_reference": "python39-pexpect-0:4.8.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-productmd-0:1.33-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-productmd-0:1.33-3.el8pc.noarch" + }, + "product_reference": "python39-productmd-0:1.33-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-protobuf-0:4.21.6-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-protobuf-0:4.21.6-1.el8pc.noarch" + }, + "product_reference": "python39-protobuf-0:4.21.6-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-psycopg2-0:2.9.3-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-psycopg2-0:2.9.3-2.el8pc.x86_64" + }, + "product_reference": "python39-psycopg2-0:2.9.3-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-psycopg2-debuginfo-0:2.9.3-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-psycopg2-debuginfo-0:2.9.3-2.el8pc.x86_64" + }, + "product_reference": "python39-psycopg2-debuginfo-0:2.9.3-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ptyprocess-0:0.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-ptyprocess-0:0.7.0-1.el8sat.noarch" + }, + "product_reference": "python39-ptyprocess-0:0.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-ansible-1:0.16.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pulp-ansible-1:0.16.0-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-ansible-1:0.16.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-certguard-0:1.5.6-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pulp-certguard-0:1.5.6-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-certguard-0:1.5.6-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-cli-0:0.14.0-4.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pulp-cli-0:0.14.0-4.el8pc.noarch" + }, + "product_reference": "python39-pulp-cli-0:0.14.0-4.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-container-0:2.14.7-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pulp-container-0:2.14.7-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-container-0:2.14.7-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-deb-0:2.20.2-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pulp-deb-0:2.20.2-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-deb-0:2.20.2-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-file-0:1.12.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pulp-file-0:1.12.0-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-file-0:1.12.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-rpm-0:3.19.9-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pulp-rpm-0:3.19.9-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-rpm-0:3.19.9-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulpcore-0:3.22.15-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pulpcore-0:3.22.15-2.el8pc.noarch" + }, + "product_reference": "python39-pulpcore-0:3.22.15-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyOpenSSL-0:22.1.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pyOpenSSL-0:22.1.0-1.el8pc.noarch" + }, + "product_reference": "python39-pyOpenSSL-0:22.1.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pycares-0:4.1.2-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pycares-0:4.1.2-2.el8pc.x86_64" + }, + "product_reference": "python39-pycares-0:4.1.2-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pycares-debuginfo-0:4.1.2-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pycares-debuginfo-0:4.1.2-2.el8pc.x86_64" + }, + "product_reference": "python39-pycares-debuginfo-0:4.1.2-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pycodestyle-0:2.7.0-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pycodestyle-0:2.7.0-5.el8pc.noarch" + }, + "product_reference": "python39-pycodestyle-0:2.7.0-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pycparser-0:2.21-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pycparser-0:2.21-2.el8pc.noarch" + }, + "product_reference": "python39-pycparser-0:2.21-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pycryptodomex-0:3.14.1-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pycryptodomex-0:3.14.1-2.el8pc.x86_64" + }, + "product_reference": "python39-pycryptodomex-0:3.14.1-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pycryptodomex-debuginfo-0:3.14.1-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pycryptodomex-debuginfo-0:3.14.1-2.el8pc.x86_64" + }, + "product_reference": "python39-pycryptodomex-debuginfo-0:3.14.1-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyflakes-0:2.3.1-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pyflakes-0:2.3.1-5.el8pc.noarch" + }, + "product_reference": "python39-pyflakes-0:2.3.1-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pygments-0:2.14.0-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pygments-0:2.14.0-1.el8pc.x86_64" + }, + "product_reference": "python39-pygments-0:2.14.0-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pygtrie-0:2.5.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pygtrie-0:2.5.0-1.el8pc.noarch" + }, + "product_reference": "python39-pygtrie-0:2.5.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyjwkest-0:1.4.2-6.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pyjwkest-0:1.4.2-6.el8pc.noarch" + }, + "product_reference": "python39-pyjwkest-0:1.4.2-6.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyjwt-0:2.5.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pyjwt-0:2.5.0-2.el8pc.noarch" + }, + "product_reference": "python39-pyjwt-0:2.5.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyparsing-0:2.4.7-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pyparsing-0:2.4.7-3.el8pc.noarch" + }, + "product_reference": "python39-pyparsing-0:2.4.7-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyrsistent-0:0.18.1-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pyrsistent-0:0.18.1-2.el8pc.x86_64" + }, + "product_reference": "python39-pyrsistent-0:0.18.1-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyrsistent-debuginfo-0:0.18.1-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pyrsistent-debuginfo-0:0.18.1-2.el8pc.x86_64" + }, + "product_reference": "python39-pyrsistent-debuginfo-0:0.18.1-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pytz-0:2022.2.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pytz-0:2022.2.1-1.el8pc.noarch" + }, + "product_reference": "python39-pytz-0:2022.2.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyyaml-0:5.4.1-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-pyyaml-0:5.4.1-4.el8pc.x86_64" + }, + "product_reference": "python39-pyyaml-0:5.4.1-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-redis-0:4.3.4-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-redis-0:4.3.4-1.el8pc.noarch" + }, + "product_reference": "python39-redis-0:4.3.4-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-requests-0:2.31.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-requests-0:2.31.0-1.el8pc.noarch" + }, + "product_reference": "python39-requests-0:2.31.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-requirements-parser-0:0.2.0-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-requirements-parser-0:0.2.0-3.el8pc.noarch" + }, + "product_reference": "python39-requirements-parser-0:0.2.0-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-rhsm-0:1.19.2-3.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-rhsm-0:1.19.2-3.el8pc.x86_64" + }, + "product_reference": "python39-rhsm-0:1.19.2-3.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-rhsm-debuginfo-0:1.19.2-3.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-rhsm-debuginfo-0:1.19.2-3.el8pc.x86_64" + }, + "product_reference": "python39-rhsm-debuginfo-0:1.19.2-3.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-rich-0:13.3.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-rich-0:13.3.1-2.el8pc.noarch" + }, + "product_reference": "python39-rich-0:13.3.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ruamel-yaml-0:0.17.21-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-ruamel-yaml-0:0.17.21-2.el8pc.noarch" + }, + "product_reference": "python39-ruamel-yaml-0:0.17.21-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ruamel-yaml-clib-0:0.2.7-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-ruamel-yaml-clib-0:0.2.7-1.el8pc.x86_64" + }, + "product_reference": "python39-ruamel-yaml-clib-0:0.2.7-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ruamel-yaml-clib-debuginfo-0:0.2.7-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-ruamel-yaml-clib-debuginfo-0:0.2.7-1.el8pc.x86_64" + }, + "product_reference": "python39-ruamel-yaml-clib-debuginfo-0:0.2.7-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-schema-0:0.7.5-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-schema-0:0.7.5-2.el8pc.noarch" + }, + "product_reference": "python39-schema-0:0.7.5-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-semantic-version-0:2.10.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-semantic-version-0:2.10.0-1.el8pc.noarch" + }, + "product_reference": "python39-semantic-version-0:2.10.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-six-0:1.16.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-six-0:1.16.0-2.el8pc.noarch" + }, + "product_reference": "python39-six-0:1.16.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-smmap-0:5.0.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-smmap-0:5.0.0-2.el8pc.noarch" + }, + "product_reference": "python39-smmap-0:5.0.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-solv-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-solv-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "python39-solv-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-solv-debuginfo-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-solv-debuginfo-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "python39-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-sqlparse-0:0.4.4-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-sqlparse-0:0.4.4-1.el8pc.noarch" + }, + "product_reference": "python39-sqlparse-0:0.4.4-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-tablib-0:3.3.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-tablib-0:3.3.0-1.el8pc.noarch" + }, + "product_reference": "python39-tablib-0:3.3.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-tenacity-0:7.0.0-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-tenacity-0:7.0.0-3.el8pc.noarch" + }, + "product_reference": "python39-tenacity-0:7.0.0-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-toml-0:0.10.2-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-toml-0:0.10.2-3.el8pc.noarch" + }, + "product_reference": "python39-toml-0:0.10.2-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-types-cryptography-0:3.3.23.2-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-types-cryptography-0:3.3.23.2-1.el8pc.noarch" + }, + "product_reference": "python39-types-cryptography-0:3.3.23.2-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-typing-extensions-0:3.10.0.2-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-typing-extensions-0:3.10.0.2-2.el8pc.noarch" + }, + "product_reference": "python39-typing-extensions-0:3.10.0.2-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-uritemplate-0:4.1.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-uritemplate-0:4.1.1-2.el8pc.noarch" + }, + "product_reference": "python39-uritemplate-0:4.1.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-url-normalize-0:1.4.3-4.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-url-normalize-0:1.4.3-4.el8pc.noarch" + }, + "product_reference": "python39-url-normalize-0:1.4.3-4.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-urllib3-0:1.26.8-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-urllib3-0:1.26.8-2.el8pc.noarch" + }, + "product_reference": "python39-urllib3-0:1.26.8-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-urlman-0:2.0.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-urlman-0:2.0.1-1.el8pc.noarch" + }, + "product_reference": "python39-urlman-0:2.0.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-wcmatch-0:8.3-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-wcmatch-0:8.3-2.el8pc.noarch" + }, + "product_reference": "python39-wcmatch-0:8.3-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-webencodings-0:0.5.1-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-webencodings-0:0.5.1-3.el8pc.noarch" + }, + "product_reference": "python39-webencodings-0:0.5.1-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-whitenoise-0:6.0.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-whitenoise-0:6.0.0-1.el8pc.noarch" + }, + "product_reference": "python39-whitenoise-0:6.0.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-wrapt-0:1.14.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-wrapt-0:1.14.1-1.el8pc.x86_64" + }, + "product_reference": "python39-wrapt-0:1.14.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-wrapt-debuginfo-0:1.14.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-wrapt-debuginfo-0:1.14.1-1.el8pc.x86_64" + }, + "product_reference": "python39-wrapt-debuginfo-0:1.14.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-xlrd-0:2.0.1-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-xlrd-0:2.0.1-5.el8pc.noarch" + }, + "product_reference": "python39-xlrd-0:2.0.1-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-xlwt-0:1.3.0-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-xlwt-0:1.3.0-3.el8pc.noarch" + }, + "product_reference": "python39-xlwt-0:1.3.0-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-yarl-0:1.8.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-yarl-0:1.8.2-1.el8pc.x86_64" + }, + "product_reference": "python39-yarl-0:1.8.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-yarl-debuginfo-0:1.8.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-yarl-debuginfo-0:1.8.2-1.el8pc.x86_64" + }, + "product_reference": "python39-yarl-debuginfo-0:1.8.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-zipp-0:3.4.0-4.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:python39-zipp-0:3.4.0-4.el8pc.noarch" + }, + "product_reference": "python39-zipp-0:3.4.0-4.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-0:1.39.0-7.el8amq.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-0:1.39.0-7.el8amq.src" + }, + "product_reference": "qpid-cpp-0:1.39.0-7.el8amq.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-client-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-client-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-client-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-client-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-client-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-client-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-client-devel-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-client-devel-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-client-devel-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-client-devel-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-client-devel-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-client-devel-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-client-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-client-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-client-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-debugsource-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-debugsource-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-debugsource-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-server-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-server-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-server-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-server-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-server-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-server-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-server-ha-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-server-ha-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-server-ha-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-server-linearstore-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-server-linearstore-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-server-linearstore-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-server-linearstore-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-server-linearstore-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-server-linearstore-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-server-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-cpp-server-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-server-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-dispatch-0:1.14.0-6.el8.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-dispatch-0:1.14.0-6.el8.src" + }, + "product_reference": "qpid-dispatch-0:1.14.0-6.el8.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-dispatch-debugsource-0:1.14.0-6.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-dispatch-debugsource-0:1.14.0-6.el8.x86_64" + }, + "product_reference": "qpid-dispatch-debugsource-0:1.14.0-6.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-dispatch-router-0:1.14.0-6.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-dispatch-router-0:1.14.0-6.el8.x86_64" + }, + "product_reference": "qpid-dispatch-router-0:1.14.0-6.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-dispatch-router-debuginfo-0:1.14.0-6.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-dispatch-router-debuginfo-0:1.14.0-6.el8.x86_64" + }, + "product_reference": "qpid-dispatch-router-debuginfo-0:1.14.0-6.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-dispatch-tools-0:1.14.0-6.el8.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-dispatch-tools-0:1.14.0-6.el8.noarch" + }, + "product_reference": "qpid-dispatch-tools-0:1.14.0-6.el8.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-0:0.33.0-4.el8.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-proton-0:0.33.0-4.el8.src" + }, + "product_reference": "qpid-proton-0:0.33.0-4.el8.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-c-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-proton-c-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "qpid-proton-c-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-c-debuginfo-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-proton-c-debuginfo-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "qpid-proton-c-debuginfo-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-cpp-debuginfo-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-proton-cpp-debuginfo-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "qpid-proton-cpp-debuginfo-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-debugsource-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-proton-debugsource-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "qpid-proton-debugsource-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-qmf-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-qmf-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-qmf-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-qmf-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-qmf-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-tools-0:1.39.0-7.el8amq.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:qpid-tools-0:1.39.0-7.el8amq.noarch" + }, + "product_reference": "qpid-tools-0:1.39.0-7.el8amq.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:redhat-access-insights-puppet-0:1.0.1-1.el8sat.noarch" + }, + "product_reference": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:redhat-access-insights-puppet-0:1.0.1-1.el8sat.src" + }, + "product_reference": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ruby-solv-debuginfo-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:ruby-solv-debuginfo-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "ruby-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-algebrick-0:0.7.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-algebrick-0:0.7.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-algebrick-0:0.7.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-algebrick-0:0.7.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-algebrick-0:0.7.5-1.el8sat.src" + }, + "product_reference": "rubygem-algebrick-0:0.7.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ansi-0:1.5.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-ansi-0:1.5.0-3.el8sat.noarch" + }, + "product_reference": "rubygem-ansi-0:1.5.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ansi-0:1.5.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-ansi-0:1.5.0-3.el8sat.src" + }, + "product_reference": "rubygem-ansi-0:1.5.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-apipie-params-0:0.0.5-5.1.el8sat.noarch" + }, + "product_reference": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-apipie-params-0:0.0.5-5.1.el8sat.src" + }, + "product_reference": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-bundler_ext-0:0.4.1-6.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-bundler_ext-0:0.4.1-6.el8sat.noarch" + }, + "product_reference": "rubygem-bundler_ext-0:0.4.1-6.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-bundler_ext-0:0.4.1-6.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-bundler_ext-0:0.4.1-6.el8sat.src" + }, + "product_reference": "rubygem-bundler_ext-0:0.4.1-6.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-clamp-0:1.3.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-clamp-0:1.3.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-clamp-0:1.3.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-clamp-0:1.3.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-clamp-0:1.3.2-1.el8sat.src" + }, + "product_reference": "rubygem-clamp-0:1.3.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-concurrent-ruby-1:1.1.10-1.el8sat.noarch" + }, + "product_reference": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-concurrent-ruby-1:1.1.10-1.el8sat.src" + }, + "product_reference": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.noarch" + }, + "product_reference": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.src" + }, + "product_reference": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch" + }, + "product_reference": "rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-domain_name-0:0.5.20190701-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-domain_name-0:0.5.20190701-1.el8sat.src" + }, + "product_reference": "rubygem-domain_name-0:0.5.20190701-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-dynflow-0:1.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-dynflow-0:1.7.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-dynflow-0:1.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-dynflow-0:1.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-dynflow-0:1.7.0-1.el8sat.src" + }, + "product_reference": "rubygem-dynflow-0:1.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-excon-0:0.99.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-excon-0:0.99.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-excon-0:0.99.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-excon-0:0.99.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-excon-0:0.99.0-1.el8sat.src" + }, + "product_reference": "rubygem-excon-0:0.99.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-0:1.10.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-0:1.10.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-0:1.10.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-0:1.10.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-0:1.10.2-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-0:1.10.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-em_http-0:1.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-em_http-0:1.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-excon-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-excon-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-excon-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-excon-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-excon-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-excon-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-httpclient-0:1.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-httpclient-0:1.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-multipart-0:1.0.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-multipart-0:1.0.4-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-net_http-0:1.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-net_http-0:1.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-patron-0:1.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-patron-0:1.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-patron-0:1.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-patron-0:1.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-patron-0:1.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-patron-0:1.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-rack-0:1.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-rack-0:1.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-rack-0:1.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-rack-0:1.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-rack-0:1.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-rack-0:1.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-retry-0:1.0.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-retry-0:1.0.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-retry-0:1.0.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-retry-0:1.0.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday-retry-0:1.0.3-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-retry-0:1.0.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday_middleware-0:1.2.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-faraday_middleware-0:1.2.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fast_gettext-0:1.8.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-fast_gettext-0:1.8.0-1.el8sat.src" + }, + "product_reference": "rubygem-fast_gettext-0:1.8.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ffi-0:1.15.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-ffi-0:1.15.5-1.el8sat.src" + }, + "product_reference": "rubygem-ffi-0:1.15.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ffi-0:1.15.5-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-ffi-0:1.15.5-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ffi-0:1.15.5-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-foreman_maintain-1:1.3.5-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-gssapi-0:1.3.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-gssapi-0:1.3.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-gssapi-0:1.3.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-gssapi-0:1.3.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-gssapi-0:1.3.1-1.el8sat.src" + }, + "product_reference": "rubygem-gssapi-0:1.3.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hashie-0:5.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-hashie-0:5.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hashie-0:5.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hashie-0:5.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-hashie-0:5.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-hashie-0:5.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-highline-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-highline-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-highline-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-highline-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-highline-0:2.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-highline-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-accept-0:1.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-http-accept-0:1.7.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-http-accept-0:1.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-accept-0:1.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-http-accept-0:1.7.0-1.el8sat.src" + }, + "product_reference": "rubygem-http-accept-0:1.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-cookie-0:1.0.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-http-cookie-0:1.0.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-http-cookie-0:1.0.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-cookie-0:1.0.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-http-cookie-0:1.0.5-1.el8sat.src" + }, + "product_reference": "rubygem-http-cookie-0:1.0.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-infoblox-0:3.0.0-4.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-infoblox-0:3.0.0-4.el8sat.noarch" + }, + "product_reference": "rubygem-infoblox-0:3.0.0-4.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-infoblox-0:3.0.0-4.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-infoblox-0:3.0.0-4.el8sat.src" + }, + "product_reference": "rubygem-infoblox-0:3.0.0-4.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-journald-logger-0:3.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-journald-logger-0:3.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-journald-logger-0:3.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-journald-logger-0:3.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-journald-logger-0:3.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-journald-logger-0:3.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-journald-native-0:1.0.12-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-journald-native-0:1.0.12-1.el8sat.src" + }, + "product_reference": "rubygem-journald-native-0:1.0.12-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-journald-native-0:1.0.12-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-journald-native-0:1.0.12-1.el8sat.x86_64" + }, + "product_reference": "rubygem-journald-native-0:1.0.12-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-journald-native-debuginfo-0:1.0.12-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-journald-native-debuginfo-0:1.0.12-1.el8sat.x86_64" + }, + "product_reference": "rubygem-journald-native-debuginfo-0:1.0.12-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-journald-native-debugsource-0:1.0.12-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-journald-native-debugsource-0:1.0.12-1.el8sat.x86_64" + }, + "product_reference": "rubygem-journald-native-debugsource-0:1.0.12-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-jwt-0:2.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-jwt-0:2.7.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-jwt-0:2.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-jwt-0:2.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-jwt-0:2.7.0-1.el8sat.src" + }, + "product_reference": "rubygem-jwt-0:2.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kafo-0:7.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-kafo-0:7.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-kafo-0:7.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kafo-0:7.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-kafo-0:7.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-kafo-0:7.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-kafo_parsers-0:1.2.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-kafo_parsers-0:1.2.1-1.el8sat.src" + }, + "product_reference": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-kafo_wizards-0:0.0.2-2.el8sat.noarch" + }, + "product_reference": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-kafo_wizards-0:0.0.2-2.el8sat.src" + }, + "product_reference": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-little-plugger-0:1.1.4-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-little-plugger-0:1.1.4-3.el8sat.noarch" + }, + "product_reference": "rubygem-little-plugger-0:1.1.4-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-little-plugger-0:1.1.4-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-little-plugger-0:1.1.4-3.el8sat.src" + }, + "product_reference": "rubygem-little-plugger-0:1.1.4-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-logging-0:2.3.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-logging-0:2.3.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-logging-0:2.3.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-logging-0:2.3.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-logging-0:2.3.1-1.el8sat.src" + }, + "product_reference": "rubygem-logging-0:2.3.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-logging-journald-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-logging-journald-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-logging-journald-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-logging-journald-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-logging-journald-0:2.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-logging-journald-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mime-types-0:3.4.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-mime-types-0:3.4.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-mime-types-0:3.4.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mime-types-0:3.4.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-mime-types-0:3.4.1-1.el8sat.src" + }, + "product_reference": "rubygem-mime-types-0:3.4.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src" + }, + "product_reference": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mqtt-0:0.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-mqtt-0:0.5.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-mqtt-0:0.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mqtt-0:0.5.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-mqtt-0:0.5.0-1.el8sat.src" + }, + "product_reference": "rubygem-mqtt-0:0.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-msgpack-0:1.7.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-msgpack-0:1.7.1-1.el8sat.src" + }, + "product_reference": "rubygem-msgpack-0:1.7.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-msgpack-0:1.7.1-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-msgpack-0:1.7.1-1.el8sat.x86_64" + }, + "product_reference": "rubygem-msgpack-0:1.7.1-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-msgpack-debuginfo-0:1.7.1-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-msgpack-debuginfo-0:1.7.1-1.el8sat.x86_64" + }, + "product_reference": "rubygem-msgpack-debuginfo-0:1.7.1-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-msgpack-debugsource-0:1.7.1-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-msgpack-debugsource-0:1.7.1-1.el8sat.x86_64" + }, + "product_reference": "rubygem-msgpack-debugsource-0:1.7.1-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-multi_json-0:1.15.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-multi_json-0:1.15.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-multi_json-0:1.15.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-multi_json-0:1.15.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-multi_json-0:1.15.0-1.el8sat.src" + }, + "product_reference": "rubygem-multi_json-0:1.15.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-multipart-post-0:2.2.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-multipart-post-0:2.2.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-multipart-post-0:2.2.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-multipart-post-0:2.2.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-multipart-post-0:2.2.3-1.el8sat.src" + }, + "product_reference": "rubygem-multipart-post-0:2.2.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mustermann-0:2.0.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-mustermann-0:2.0.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-mustermann-0:2.0.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mustermann-0:2.0.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-mustermann-0:2.0.2-1.el8sat.src" + }, + "product_reference": "rubygem-mustermann-0:2.0.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-ssh-0:7.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-net-ssh-0:7.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-net-ssh-0:7.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-ssh-0:7.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-net-ssh-0:7.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-net-ssh-0:7.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-net-ssh-krb-0:0.4.0-4.el8sat.noarch" + }, + "product_reference": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-net-ssh-krb-0:0.4.0-4.el8sat.src" + }, + "product_reference": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-netrc-0:0.11.0-6.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-netrc-0:0.11.0-6.el8sat.noarch" + }, + "product_reference": "rubygem-netrc-0:0.11.0-6.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-netrc-0:0.11.0-6.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-netrc-0:0.11.0-6.el8sat.src" + }, + "product_reference": "rubygem-netrc-0:0.11.0-6.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-newt-0:0.9.7-3.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-newt-0:0.9.7-3.1.el8sat.src" + }, + "product_reference": "rubygem-newt-0:0.9.7-3.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-newt-0:0.9.7-3.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-newt-0:0.9.7-3.1.el8sat.x86_64" + }, + "product_reference": "rubygem-newt-0:0.9.7-3.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-newt-debuginfo-0:0.9.7-3.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-newt-debuginfo-0:0.9.7-3.1.el8sat.x86_64" + }, + "product_reference": "rubygem-newt-debuginfo-0:0.9.7-3.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-newt-debugsource-0:0.9.7-3.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-newt-debugsource-0:0.9.7-3.1.el8sat.x86_64" + }, + "product_reference": "rubygem-newt-debugsource-0:0.9.7-3.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-nokogiri-0:1.15.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-nokogiri-0:1.15.0-1.el8sat.src" + }, + "product_reference": "rubygem-nokogiri-0:1.15.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-nokogiri-0:1.15.0-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-nokogiri-0:1.15.0-1.el8sat.x86_64" + }, + "product_reference": "rubygem-nokogiri-0:1.15.0-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-nokogiri-debuginfo-0:1.15.0-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-nokogiri-debuginfo-0:1.15.0-1.el8sat.x86_64" + }, + "product_reference": "rubygem-nokogiri-debuginfo-0:1.15.0-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-nokogiri-debugsource-0:1.15.0-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-nokogiri-debugsource-0:1.15.0-1.el8sat.x86_64" + }, + "product_reference": "rubygem-nokogiri-debugsource-0:1.15.0-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-oauth-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-oauth-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-oauth-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-oauth-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-oauth-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-oauth-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-oauth-tty-0:1.0.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-oauth-tty-0:1.0.5-1.el8sat.src" + }, + "product_reference": "rubygem-oauth-tty-0:1.0.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-openscap-0:0.4.9-9.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-openscap-0:0.4.9-9.el8sat.noarch" + }, + "product_reference": "rubygem-openscap-0:0.4.9-9.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-openscap-0:0.4.9-9.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-openscap-0:0.4.9-9.el8sat.src" + }, + "product_reference": "rubygem-openscap-0:0.4.9-9.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-openscap_parser-0:1.0.2-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-openscap_parser-0:1.0.2-2.el8sat.noarch" + }, + "product_reference": "rubygem-openscap_parser-0:1.0.2-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-openscap_parser-0:1.0.2-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-openscap_parser-0:1.0.2-2.el8sat.src" + }, + "product_reference": "rubygem-openscap_parser-0:1.0.2-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-powerbar-0:2.0.1-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-powerbar-0:2.0.1-3.el8sat.noarch" + }, + "product_reference": "rubygem-powerbar-0:2.0.1-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-powerbar-0:2.0.1-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-powerbar-0:2.0.1-3.el8sat.src" + }, + "product_reference": "rubygem-powerbar-0:2.0.1-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-qpid_proton-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-qpid_proton-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "rubygem-qpid_proton-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-qpid_proton-debuginfo-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-qpid_proton-debuginfo-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "rubygem-qpid_proton-debuginfo-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-0:2.2.7-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rack-0:2.2.7-1.el8sat.noarch" + }, + "product_reference": "rubygem-rack-0:2.2.7-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-0:2.2.7-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rack-0:2.2.7-1.el8sat.src" + }, + "product_reference": "rubygem-rack-0:2.2.7-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-protection-0:2.2.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rack-protection-0:2.2.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-rack-protection-0:2.2.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-protection-0:2.2.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rack-protection-0:2.2.4-1.el8sat.src" + }, + "product_reference": "rubygem-rack-protection-0:2.2.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rb-inotify-0:0.10.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rb-inotify-0:0.10.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-rb-inotify-0:0.10.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rb-inotify-0:0.10.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rb-inotify-0:0.10.1-1.el8sat.src" + }, + "product_reference": "rubygem-rb-inotify-0:0.10.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rbnacl-0:4.0.2-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rbnacl-0:4.0.2-2.el8sat.noarch" + }, + "product_reference": "rubygem-rbnacl-0:4.0.2-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rbnacl-0:4.0.2-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rbnacl-0:4.0.2-2.el8sat.src" + }, + "product_reference": "rubygem-rbnacl-0:4.0.2-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-redfish_client-0:0.5.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-redfish_client-0:0.5.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-redfish_client-0:0.5.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-redfish_client-0:0.5.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-redfish_client-0:0.5.4-1.el8sat.src" + }, + "product_reference": "rubygem-redfish_client-0:0.5.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rest-client-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rest-client-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-rest-client-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rest-client-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rest-client-0:2.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-rest-client-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rkerberos-0:0.1.5-20.1.el8sat.src" + }, + "product_reference": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rkerberos-0:0.1.5-20.1.el8sat.x86_64" + }, + "product_reference": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rkerberos-debuginfo-0:0.1.5-20.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rkerberos-debuginfo-0:0.1.5-20.1.el8sat.x86_64" + }, + "product_reference": "rubygem-rkerberos-debuginfo-0:0.1.5-20.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rkerberos-debugsource-0:0.1.5-20.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rkerberos-debugsource-0:0.1.5-20.1.el8sat.x86_64" + }, + "product_reference": "rubygem-rkerberos-debugsource-0:0.1.5-20.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rsec-0:0.4.3-5.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rsec-0:0.4.3-5.el8sat.noarch" + }, + "product_reference": "rubygem-rsec-0:0.4.3-5.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rsec-0:0.4.3-5.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rsec-0:0.4.3-5.el8sat.src" + }, + "product_reference": "rubygem-rsec-0:0.4.3-5.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-ruby-libvirt-0:0.8.0-1.el8sat.src" + }, + "product_reference": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-ruby-libvirt-0:0.8.0-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby-libvirt-debuginfo-0:0.8.0-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-ruby-libvirt-debuginfo-0:0.8.0-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ruby-libvirt-debuginfo-0:0.8.0-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby-libvirt-debugsource-0:0.8.0-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-ruby-libvirt-debugsource-0:0.8.0-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ruby-libvirt-debugsource-0:0.8.0-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-ruby2_keywords-0:0.0.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-ruby2_keywords-0:0.0.5-1.el8sat.src" + }, + "product_reference": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rubyipmi-0:0.11.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rubyipmi-0:0.11.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-rubyipmi-0:0.11.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rubyipmi-0:0.11.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-rubyipmi-0:0.11.1-1.el8sat.src" + }, + "product_reference": "rubygem-rubyipmi-0:0.11.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sd_notify-0:0.1.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-sd_notify-0:0.1.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-sd_notify-0:0.1.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sd_notify-0:0.1.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-sd_notify-0:0.1.1-1.el8sat.src" + }, + "product_reference": "rubygem-sd_notify-0:0.1.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sequel-0:5.68.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-sequel-0:5.68.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-sequel-0:5.68.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sequel-0:5.68.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-sequel-0:5.68.0-1.el8sat.src" + }, + "product_reference": "rubygem-sequel-0:5.68.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-server_sent_events-0:0.1.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-server_sent_events-0:0.1.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-server_sent_events-0:0.1.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-server_sent_events-0:0.1.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-server_sent_events-0:0.1.3-1.el8sat.src" + }, + "product_reference": "rubygem-server_sent_events-0:0.1.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sinatra-1:2.2.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-sinatra-1:2.2.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-sinatra-1:2.2.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sinatra-1:2.2.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-sinatra-1:2.2.4-1.el8sat.src" + }, + "product_reference": "rubygem-sinatra-1:2.2.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-snaky_hash-0:2.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-snaky_hash-0:2.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-snaky_hash-0:2.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sqlite3-0:1.4.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-sqlite3-0:1.4.2-1.el8sat.src" + }, + "product_reference": "rubygem-sqlite3-0:1.4.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sqlite3-0:1.4.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-sqlite3-0:1.4.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-sqlite3-0:1.4.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sqlite3-debuginfo-0:1.4.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-sqlite3-debuginfo-0:1.4.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-sqlite3-debuginfo-0:1.4.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sqlite3-debugsource-0:1.4.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-sqlite3-debugsource-0:1.4.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-sqlite3-debugsource-0:1.4.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-statsd-instrument-0:2.9.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-statsd-instrument-0:2.9.2-1.el8sat.src" + }, + "product_reference": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-tilt-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-tilt-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-tilt-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-tilt-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-tilt-0:2.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-tilt-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf-0:0.1.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-unf-0:0.1.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-unf-0:0.1.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf-0:0.1.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-unf-0:0.1.4-1.el8sat.src" + }, + "product_reference": "rubygem-unf-0:0.1.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-unf_ext-0:0.0.8.2-1.el8sat.src" + }, + "product_reference": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-version_gem-0:1.1.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-version_gem-0:1.1.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-version_gem-0:1.1.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-version_gem-0:1.1.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-version_gem-0:1.1.2-1.el8sat.src" + }, + "product_reference": "rubygem-version_gem-0:1.1.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-webrick-0:1.8.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-webrick-0:1.8.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-webrick-0:1.8.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-webrick-0:1.8.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-webrick-0:1.8.1-1.el8sat.src" + }, + "product_reference": "rubygem-webrick-0:1.8.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-xmlrpc-0:0.3.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-xmlrpc-0:0.3.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-xmlrpc-0:0.3.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-xmlrpc-0:0.3.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:rubygem-xmlrpc-0:0.3.2-1.el8sat.src" + }, + "product_reference": "rubygem-xmlrpc-0:0.3.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "saslwrapper-0:0.22-6.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:saslwrapper-0:0.22-6.el8sat.src" + }, + "product_reference": "saslwrapper-0:0.22-6.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "saslwrapper-0:0.22-6.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:saslwrapper-0:0.22-6.el8sat.x86_64" + }, + "product_reference": "saslwrapper-0:0.22-6.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64" + }, + "product_reference": "saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "saslwrapper-debugsource-0:0.22-6.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:saslwrapper-debugsource-0:0.22-6.el8sat.x86_64" + }, + "product_reference": "saslwrapper-debugsource-0:0.22-6.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.14.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:satellite-0:6.14.0-3.el8sat.noarch" + }, + "product_reference": "satellite-0:6.14.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.14.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:satellite-0:6.14.0-3.el8sat.src" + }, + "product_reference": "satellite-0:6.14.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.14.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:satellite-capsule-0:6.14.0-3.el8sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.14.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.14.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:satellite-cli-0:6.14.0-3.el8sat.noarch" + }, + "product_reference": "satellite-cli-0:6.14.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.14.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:satellite-common-0:6.14.0-3.el8sat.noarch" + }, + "product_reference": "satellite-common-0:6.14.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-installer-0:6.14.0.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:satellite-installer-0:6.14.0.5-1.el8sat.noarch" + }, + "product_reference": "satellite-installer-0:6.14.0.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-installer-0:6.14.0.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:satellite-installer-0:6.14.0.5-1.el8sat.src" + }, + "product_reference": "satellite-installer-0:6.14.0.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-maintain-0:0.0.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:satellite-maintain-0:0.0.2-1.el8sat.noarch" + }, + "product_reference": "satellite-maintain-0:0.0.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-maintain-0:0.0.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-capsule:satellite-maintain-0:0.0.2-1.el8sat.src" + }, + "product_reference": "satellite-maintain-0:0.0.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-capsule" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-clamp-0:1.3.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-maintenance:rubygem-clamp-0:1.3.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-clamp-0:1.3.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-maintenance" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-clamp-0:1.3.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-maintenance:rubygem-clamp-0:1.3.2-1.el8sat.src" + }, + "product_reference": "rubygem-clamp-0:1.3.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-maintenance" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-maintenance:rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-maintenance" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-maintenance:rubygem-foreman_maintain-1:1.3.5-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-maintenance" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-highline-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-maintenance:rubygem-highline-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-highline-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-maintenance" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-highline-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-maintenance:rubygem-highline-0:2.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-highline-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-maintenance" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-clone-0:3.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-maintenance:satellite-clone-0:3.5.0-1.el8sat.noarch" + }, + "product_reference": "satellite-clone-0:3.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-maintenance" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-clone-0:3.5.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-maintenance:satellite-clone-0:3.5.0-1.el8sat.src" + }, + "product_reference": "satellite-clone-0:3.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-maintenance" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-maintain-0:0.0.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-maintenance:satellite-maintain-0:0.0.2-1.el8sat.noarch" + }, + "product_reference": "satellite-maintain-0:0.0.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-maintenance" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-maintain-0:0.0.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-maintenance:satellite-maintain-0:0.0.2-1.el8sat.src" + }, + "product_reference": "satellite-maintain-0:0.0.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-maintenance" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.7.0.9-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-0:3.7.0.9-1.el8sat.src" + }, + "product_reference": "foreman-0:3.7.0.9-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-cli-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-cli-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-debug-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-debug-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-ec2-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-journald-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-journald-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-libvirt-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-openstack-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-ovirt-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-postgresql-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-redis-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-redis-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-redis-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-service-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-service-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-telemetry-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:foreman-vmware-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp_manifest-0:3.0.0-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:python-pulp_manifest-0:3.0.0-3.el8pc.src" + }, + "product_reference": "python-pulp_manifest-0:3.0.0-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp_manifest-0:3.0.0-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:python39-pulp_manifest-0:3.0.0-3.el8pc.noarch" + }, + "product_reference": "python39-pulp_manifest-0:3.0.0-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-amazing_print-0:1.4.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-amazing_print-0:1.4.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-amazing_print-0:1.4.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-amazing_print-0:1.4.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-amazing_print-0:1.4.0-1.el8sat.src" + }, + "product_reference": "rubygem-amazing_print-0:1.4.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-apipie-bindings-0:0.6.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-apipie-bindings-0:0.6.0-1.el8sat.src" + }, + "product_reference": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-clamp-0:1.3.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-clamp-0:1.3.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-clamp-0:1.3.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-clamp-0:1.3.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-clamp-0:1.3.2-1.el8sat.src" + }, + "product_reference": "rubygem-clamp-0:1.3.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch" + }, + "product_reference": "rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-domain_name-0:0.5.20190701-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-domain_name-0:0.5.20190701-1.el8sat.src" + }, + "product_reference": "rubygem-domain_name-0:0.5.20190701-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fast_gettext-0:1.8.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-fast_gettext-0:1.8.0-1.el8sat.src" + }, + "product_reference": "rubygem-fast_gettext-0:1.8.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ffi-0:1.15.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-ffi-0:1.15.5-1.el8sat.src" + }, + "product_reference": "rubygem-ffi-0:1.15.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ffi-0:1.15.5-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-ffi-0:1.15.5-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ffi-0:1.15.5-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-gssapi-0:1.3.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-gssapi-0:1.3.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-gssapi-0:1.3.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-gssapi-0:1.3.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-gssapi-0:1.3.1-1.el8sat.src" + }, + "product_reference": "rubygem-gssapi-0:1.3.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli-0:3.7.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli-0:3.7.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hashie-0:5.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hashie-0:5.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hashie-0:5.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hashie-0:5.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-hashie-0:5.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-hashie-0:5.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-highline-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-highline-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-highline-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-highline-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-highline-0:2.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-highline-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-accept-0:1.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-http-accept-0:1.7.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-http-accept-0:1.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-accept-0:1.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-http-accept-0:1.7.0-1.el8sat.src" + }, + "product_reference": "rubygem-http-accept-0:1.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-cookie-0:1.0.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-http-cookie-0:1.0.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-http-cookie-0:1.0.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-cookie-0:1.0.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-http-cookie-0:1.0.5-1.el8sat.src" + }, + "product_reference": "rubygem-http-cookie-0:1.0.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-jwt-0:2.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-jwt-0:2.7.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-jwt-0:2.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-jwt-0:2.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-jwt-0:2.7.0-1.el8sat.src" + }, + "product_reference": "rubygem-jwt-0:2.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-little-plugger-0:1.1.4-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-little-plugger-0:1.1.4-3.el8sat.noarch" + }, + "product_reference": "rubygem-little-plugger-0:1.1.4-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-little-plugger-0:1.1.4-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-little-plugger-0:1.1.4-3.el8sat.src" + }, + "product_reference": "rubygem-little-plugger-0:1.1.4-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-locale-0:2.1.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-locale-0:2.1.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-locale-0:2.1.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-locale-0:2.1.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-locale-0:2.1.3-1.el8sat.src" + }, + "product_reference": "rubygem-locale-0:2.1.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-logging-0:2.3.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-logging-0:2.3.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-logging-0:2.3.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-logging-0:2.3.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-logging-0:2.3.1-1.el8sat.src" + }, + "product_reference": "rubygem-logging-0:2.3.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mime-types-0:3.4.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-mime-types-0:3.4.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-mime-types-0:3.4.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mime-types-0:3.4.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-mime-types-0:3.4.1-1.el8sat.src" + }, + "product_reference": "rubygem-mime-types-0:3.4.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src" + }, + "product_reference": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-multi_json-0:1.15.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-multi_json-0:1.15.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-multi_json-0:1.15.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-multi_json-0:1.15.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-multi_json-0:1.15.0-1.el8sat.src" + }, + "product_reference": "rubygem-multi_json-0:1.15.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-netrc-0:0.11.0-6.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-netrc-0:0.11.0-6.el8sat.noarch" + }, + "product_reference": "rubygem-netrc-0:0.11.0-6.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-netrc-0:0.11.0-6.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-netrc-0:0.11.0-6.el8sat.src" + }, + "product_reference": "rubygem-netrc-0:0.11.0-6.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-oauth-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-oauth-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-oauth-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-oauth-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-oauth-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-oauth-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-oauth-tty-0:1.0.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-oauth-tty-0:1.0.5-1.el8sat.src" + }, + "product_reference": "rubygem-oauth-tty-0:1.0.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-powerbar-0:2.0.1-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-powerbar-0:2.0.1-3.el8sat.noarch" + }, + "product_reference": "rubygem-powerbar-0:2.0.1-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-powerbar-0:2.0.1-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-powerbar-0:2.0.1-3.el8sat.src" + }, + "product_reference": "rubygem-powerbar-0:2.0.1-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rest-client-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-rest-client-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-rest-client-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rest-client-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-rest-client-0:2.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-rest-client-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-snaky_hash-0:2.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-snaky_hash-0:2.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-snaky_hash-0:2.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf-0:0.1.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-unf-0:0.1.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-unf-0:0.1.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf-0:0.1.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-unf-0:0.1.4-1.el8sat.src" + }, + "product_reference": "rubygem-unf-0:0.1.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-unf_ext-0:0.0.8.2-1.el8sat.src" + }, + "product_reference": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-unicode-0:0.4.4.4-4.1.el8sat.src" + }, + "product_reference": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-unicode-0:0.4.4.4-4.1.el8sat.x86_64" + }, + "product_reference": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unicode-debuginfo-0:0.4.4.4-4.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-unicode-debuginfo-0:0.4.4.4-4.1.el8sat.x86_64" + }, + "product_reference": "rubygem-unicode-debuginfo-0:0.4.4.4-4.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unicode-debugsource-0:0.4.4.4-4.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-unicode-debugsource-0:0.4.4.4-4.1.el8sat.x86_64" + }, + "product_reference": "rubygem-unicode-debugsource-0:0.4.4.4-4.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-unicode-display_width-0:1.8.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-unicode-display_width-0:1.8.0-1.el8sat.src" + }, + "product_reference": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-version_gem-0:1.1.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-version_gem-0:1.1.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-version_gem-0:1.1.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-version_gem-0:1.1.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:rubygem-version_gem-0:1.1.2-1.el8sat.src" + }, + "product_reference": "rubygem-version_gem-0:1.1.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.14.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:satellite-0:6.14.0-3.el8sat.noarch" + }, + "product_reference": "satellite-0:6.14.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.14.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:satellite-0:6.14.0-3.el8sat.src" + }, + "product_reference": "satellite-0:6.14.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.14.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:satellite-capsule-0:6.14.0-3.el8sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.14.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.14.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:satellite-cli-0:6.14.0-3.el8sat.noarch" + }, + "product_reference": "satellite-cli-0:6.14.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.14.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14-utils:satellite-common-0:6.14.0-3.el8sat.noarch" + }, + "product_reference": "satellite-common-0:6.14.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14-utils" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.noarch" + }, + "product_reference": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.src" + }, + "product_reference": "ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.src" + }, + "product_reference": "ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-lint-0:5.0.8-4.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ansible-lint-0:5.0.8-4.el8pc.noarch" + }, + "product_reference": "ansible-lint-0:5.0.8-4.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-lint-0:5.0.8-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ansible-lint-0:5.0.8-4.el8pc.src" + }, + "product_reference": "ansible-lint-0:5.0.8-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-runner-0:2.2.1-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ansible-runner-0:2.2.1-3.el8sat.noarch" + }, + "product_reference": "ansible-runner-0:2.2.1-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansible-runner-0:2.2.1-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ansible-runner-0:2.2.1-3.el8sat.src" + }, + "product_reference": "ansible-runner-0:2.2.1-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.noarch" + }, + "product_reference": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.src" + }, + "product_reference": "ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansiblerole-insights-client-0:1.7.1-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ansiblerole-insights-client-0:1.7.1-2.el8sat.noarch" + }, + "product_reference": "ansiblerole-insights-client-0:1.7.1-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ansiblerole-insights-client-0:1.7.1-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ansiblerole-insights-client-0:1.7.1-2.el8sat.src" + }, + "product_reference": "ansiblerole-insights-client-0:1.7.1-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "candlepin-0:4.3.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:candlepin-0:4.3.1-1.el8sat.noarch" + }, + "product_reference": "candlepin-0:4.3.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "candlepin-0:4.3.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:candlepin-0:4.3.1-1.el8sat.src" + }, + "product_reference": "candlepin-0:4.3.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "candlepin-selinux-0:4.3.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:candlepin-selinux-0:4.3.1-1.el8sat.noarch" + }, + "product_reference": "candlepin-selinux-0:4.3.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cjson-0:1.7.14-5.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:cjson-0:1.7.14-5.el8sat.src" + }, + "product_reference": "cjson-0:1.7.14-5.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cjson-0:1.7.14-5.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:cjson-0:1.7.14-5.el8sat.x86_64" + }, + "product_reference": "cjson-0:1.7.14-5.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cjson-debuginfo-0:1.7.14-5.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:cjson-debuginfo-0:1.7.14-5.el8sat.x86_64" + }, + "product_reference": "cjson-debuginfo-0:1.7.14-5.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "cjson-debugsource-0:1.7.14-5.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:cjson-debugsource-0:1.7.14-5.el8sat.x86_64" + }, + "product_reference": "cjson-debugsource-0:1.7.14-5.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "createrepo_c-0:0.20.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:createrepo_c-0:0.20.1-1.el8pc.src" + }, + "product_reference": "createrepo_c-0:0.20.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "createrepo_c-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:createrepo_c-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "createrepo_c-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "createrepo_c-debugsource-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:createrepo_c-debugsource-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "createrepo_c-debugsource-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "createrepo_c-libs-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:createrepo_c-libs-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "createrepo_c-libs-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "createrepo_c-libs-debuginfo-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:createrepo_c-libs-debuginfo-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "createrepo_c-libs-debuginfo-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dynflow-utils-0:1.6.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:dynflow-utils-0:1.6.3-1.el8sat.src" + }, + "product_reference": "dynflow-utils-0:1.6.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "dynflow-utils-0:1.6.3-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:dynflow-utils-0:1.6.3-1.el8sat.x86_64" + }, + "product_reference": "dynflow-utils-0:1.6.3-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-0:3.7.0.9-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-0:3.7.0.9-1.el8sat.src" + }, + "product_reference": "foreman-0:3.7.0.9-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-bootloaders-redhat-0:202102220000-1.el8sat.noarch" + }, + "product_reference": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-bootloaders-redhat-0:202102220000-1.el8sat.src" + }, + "product_reference": "foreman-bootloaders-redhat-0:202102220000-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-bootloaders-redhat-tftpboot-0:202102220000-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-bootloaders-redhat-tftpboot-0:202102220000-1.el8sat.noarch" + }, + "product_reference": "foreman-bootloaders-redhat-tftpboot-0:202102220000-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-cli-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-cli-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-cli-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-debug-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-debug-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-debug-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-discovery-image-1:4.1.0-10.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-discovery-image-1:4.1.0-10.el8sat.noarch" + }, + "product_reference": "foreman-discovery-image-1:4.1.0-10.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-discovery-image-1:4.1.0-10.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-discovery-image-1:4.1.0-10.el8sat.src" + }, + "product_reference": "foreman-discovery-image-1:4.1.0-10.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-discovery-image-service-0:1.0.0-4.1.el8sat.src" + }, + "product_reference": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-discovery-image-service-0:1.0.0-4.1.el8sat.x86_64" + }, + "product_reference": "foreman-discovery-image-service-0:1.0.0-4.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-discovery-image-service-tui-0:1.0.0-4.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-discovery-image-service-tui-0:1.0.0-4.1.el8sat.x86_64" + }, + "product_reference": "foreman-discovery-image-service-tui-0:1.0.0-4.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ec2-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-ec2-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-ec2-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-installer-1:3.7.0.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-installer-1:3.7.0.4-1.el8sat.noarch" + }, + "product_reference": "foreman-installer-1:3.7.0.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-installer-1:3.7.0.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-installer-1:3.7.0.4-1.el8sat.src" + }, + "product_reference": "foreman-installer-1:3.7.0.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-installer-katello-1:3.7.0.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-installer-katello-1:3.7.0.4-1.el8sat.noarch" + }, + "product_reference": "foreman-installer-katello-1:3.7.0.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-journald-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-journald-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-journald-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-libvirt-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-libvirt-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-libvirt-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-obsolete-packages-0:1.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-obsolete-packages-0:1.5-1.el8sat.noarch" + }, + "product_reference": "foreman-obsolete-packages-0:1.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-obsolete-packages-0:1.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-obsolete-packages-0:1.5-1.el8sat.src" + }, + "product_reference": "foreman-obsolete-packages-0:1.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-openstack-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-openstack-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-openstack-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-ovirt-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-ovirt-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-ovirt-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-postgresql-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-postgresql-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-postgresql-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-proxy-0:3.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-proxy-0:3.7.0-1.el8sat.noarch" + }, + "product_reference": "foreman-proxy-0:3.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-proxy-0:3.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-proxy-0:3.7.0-1.el8sat.src" + }, + "product_reference": "foreman-proxy-0:3.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-proxy-content-0:4.9.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-proxy-content-0:4.9.0-1.el8sat.noarch" + }, + "product_reference": "foreman-proxy-content-0:4.9.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-proxy-journald-0:3.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-proxy-journald-0:3.7.0-1.el8sat.noarch" + }, + "product_reference": "foreman-proxy-journald-0:3.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-redis-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-redis-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-redis-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-selinux-0:3.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-selinux-0:3.7.0-1.el8sat.noarch" + }, + "product_reference": "foreman-selinux-0:3.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-selinux-0:3.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-selinux-0:3.7.0-1.el8sat.src" + }, + "product_reference": "foreman-selinux-0:3.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-service-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-service-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-service-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-telemetry-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-telemetry-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-telemetry-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "foreman-vmware-0:3.7.0.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:foreman-vmware-0:3.7.0.9-1.el8sat.noarch" + }, + "product_reference": "foreman-vmware-0:3.7.0.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-0:4.9.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:katello-0:4.9.0-1.el8sat.noarch" + }, + "product_reference": "katello-0:4.9.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-0:4.9.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:katello-0:4.9.0-1.el8sat.src" + }, + "product_reference": "katello-0:4.9.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-certs-tools-0:2.9.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:katello-certs-tools-0:2.9.0-2.el8sat.noarch" + }, + "product_reference": "katello-certs-tools-0:2.9.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-certs-tools-0:2.9.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:katello-certs-tools-0:2.9.0-2.el8sat.src" + }, + "product_reference": "katello-certs-tools-0:2.9.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-client-bootstrap-0:1.7.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:katello-client-bootstrap-0:1.7.9-1.el8sat.noarch" + }, + "product_reference": "katello-client-bootstrap-0:1.7.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-client-bootstrap-0:1.7.9-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:katello-client-bootstrap-0:1.7.9-1.el8sat.src" + }, + "product_reference": "katello-client-bootstrap-0:1.7.9-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-common-0:4.9.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:katello-common-0:4.9.0-1.el8sat.noarch" + }, + "product_reference": "katello-common-0:4.9.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-debug-0:4.9.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:katello-debug-0:4.9.0-1.el8sat.noarch" + }, + "product_reference": "katello-debug-0:4.9.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-selinux-0:5.0.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:katello-selinux-0:5.0.2-1.el8sat.noarch" + }, + "product_reference": "katello-selinux-0:5.0.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "katello-selinux-0:5.0.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:katello-selinux-0:5.0.2-1.el8sat.src" + }, + "product_reference": "katello-selinux-0:5.0.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libcomps-0:0.1.18-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libcomps-0:0.1.18-4.el8pc.src" + }, + "product_reference": "libcomps-0:0.1.18-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libcomps-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libcomps-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "libcomps-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libcomps-debugsource-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libcomps-debugsource-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "libcomps-debugsource-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-cxx-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libdb-cxx-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-cxx-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-cxx-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libdb-cxx-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-cxx-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libdb-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-debugsource-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libdb-debugsource-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-debugsource-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-java-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libdb-java-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-java-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-sql-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libdb-sql-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-sql-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-sql-devel-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libdb-sql-devel-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-sql-devel-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-tcl-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libdb-tcl-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-tcl-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libdb-utils-debuginfo-0:5.3.28-42.el8_4.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libdb-utils-debuginfo-0:5.3.28-42.el8_4.x86_64" + }, + "product_reference": "libdb-utils-debuginfo-0:5.3.28-42.el8_4.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsodium-0:1.0.17-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libsodium-0:1.0.17-3.el8sat.src" + }, + "product_reference": "libsodium-0:1.0.17-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsodium-0:1.0.17-3.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libsodium-0:1.0.17-3.el8sat.x86_64" + }, + "product_reference": "libsodium-0:1.0.17-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsodium-debuginfo-0:1.0.17-3.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libsodium-debuginfo-0:1.0.17-3.el8sat.x86_64" + }, + "product_reference": "libsodium-debuginfo-0:1.0.17-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsodium-debugsource-0:1.0.17-3.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libsodium-debugsource-0:1.0.17-3.el8sat.x86_64" + }, + "product_reference": "libsodium-debugsource-0:1.0.17-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsolv-0:0.7.22-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libsolv-0:0.7.22-4.el8pc.src" + }, + "product_reference": "libsolv-0:0.7.22-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsolv-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libsolv-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "libsolv-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsolv-debuginfo-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libsolv-debuginfo-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "libsolv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsolv-debugsource-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libsolv-debugsource-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "libsolv-debugsource-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsolv-demo-debuginfo-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libsolv-demo-debuginfo-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "libsolv-demo-debuginfo-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libsolv-tools-debuginfo-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libsolv-tools-debuginfo-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "libsolv-tools-debuginfo-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libwebsockets-0:2.4.2-2.el8.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libwebsockets-0:2.4.2-2.el8.src" + }, + "product_reference": "libwebsockets-0:2.4.2-2.el8.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libwebsockets-0:2.4.2-2.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libwebsockets-0:2.4.2-2.el8.x86_64" + }, + "product_reference": "libwebsockets-0:2.4.2-2.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libwebsockets-debuginfo-0:2.4.2-2.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libwebsockets-debuginfo-0:2.4.2-2.el8.x86_64" + }, + "product_reference": "libwebsockets-debuginfo-0:2.4.2-2.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libwebsockets-debugsource-0:2.4.2-2.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libwebsockets-debugsource-0:2.4.2-2.el8.x86_64" + }, + "product_reference": "libwebsockets-debugsource-0:2.4.2-2.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "libwebsockets-tests-debuginfo-0:2.4.2-2.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:libwebsockets-tests-debuginfo-0:2.4.2-2.el8.x86_64" + }, + "product_reference": "libwebsockets-tests-debuginfo-0:2.4.2-2.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mosquitto-0:2.0.14-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:mosquitto-0:2.0.14-1.el8sat.src" + }, + "product_reference": "mosquitto-0:2.0.14-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mosquitto-0:2.0.14-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:mosquitto-0:2.0.14-1.el8sat.x86_64" + }, + "product_reference": "mosquitto-0:2.0.14-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mosquitto-debuginfo-0:2.0.14-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:mosquitto-debuginfo-0:2.0.14-1.el8sat.x86_64" + }, + "product_reference": "mosquitto-debuginfo-0:2.0.14-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "mosquitto-debugsource-0:2.0.14-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:mosquitto-debugsource-0:2.0.14-1.el8sat.x86_64" + }, + "product_reference": "mosquitto-debugsource-0:2.0.14-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "postgresql-evr-0:0.0.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:postgresql-evr-0:0.0.2-1.el8sat.src" + }, + "product_reference": "postgresql-evr-0:0.0.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "postgresql-evr-0:0.0.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:postgresql-evr-0:0.0.2-1.el8sat.x86_64" + }, + "product_reference": "postgresql-evr-0:0.0.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "pulpcore-selinux-0:1.3.3-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:pulpcore-selinux-0:1.3.3-1.el8pc.src" + }, + "product_reference": "pulpcore-selinux-0:1.3.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "pulpcore-selinux-0:1.3.3-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:pulpcore-selinux-0:1.3.3-1.el8pc.x86_64" + }, + "product_reference": "pulpcore-selinux-0:1.3.3-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:puppet-agent-0:7.26.0-3.el8sat.src" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-0:7.26.0-3.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:puppet-agent-0:7.26.0-3.el8sat.x86_64" + }, + "product_reference": "puppet-agent-0:7.26.0-3.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-oauth-0:0.5.10-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:puppet-agent-oauth-0:0.5.10-1.el8sat.noarch" + }, + "product_reference": "puppet-agent-oauth-0:0.5.10-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-agent-oauth-0:0.5.10-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:puppet-agent-oauth-0:0.5.10-1.el8sat.src" + }, + "product_reference": "puppet-agent-oauth-0:0.5.10-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:puppet-foreman_scap_client-0:0.4.0-1.el8sat.noarch" + }, + "product_reference": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:puppet-foreman_scap_client-0:0.4.0-1.el8sat.src" + }, + "product_reference": "puppet-foreman_scap_client-0:0.4.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppetlabs-stdlib-0:5.2.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:puppetlabs-stdlib-0:5.2.0-1.el8sat.noarch" + }, + "product_reference": "puppetlabs-stdlib-0:5.2.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppetlabs-stdlib-0:5.2.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:puppetlabs-stdlib-0:5.2.0-1.el8sat.src" + }, + "product_reference": "puppetlabs-stdlib-0:5.2.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppetserver-0:7.11.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:puppetserver-0:7.11.0-1.el8sat.noarch" + }, + "product_reference": "puppetserver-0:7.11.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "puppetserver-0:7.11.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:puppetserver-0:7.11.0-1.el8sat.src" + }, + "product_reference": "puppetserver-0:7.11.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aiodns-0:3.0.0-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-aiodns-0:3.0.0-3.el8pc.src" + }, + "product_reference": "python-aiodns-0:3.0.0-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aiofiles-0:22.1.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-aiofiles-0:22.1.0-1.el8pc.src" + }, + "product_reference": "python-aiofiles-0:22.1.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aiohttp-0:3.8.3-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-aiohttp-0:3.8.3-2.el8pc.src" + }, + "product_reference": "python-aiohttp-0:3.8.3-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aiohttp-debugsource-0:3.8.3-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-aiohttp-debugsource-0:3.8.3-2.el8pc.x86_64" + }, + "product_reference": "python-aiohttp-debugsource-0:3.8.3-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aiohttp-xmlrpc-0:1.5.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-aiohttp-xmlrpc-0:1.5.0-2.el8pc.src" + }, + "product_reference": "python-aiohttp-xmlrpc-0:1.5.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aioredis-0:2.0.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-aioredis-0:2.0.1-2.el8pc.src" + }, + "product_reference": "python-aioredis-0:2.0.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-aiosignal-0:1.3.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-aiosignal-0:1.3.1-1.el8pc.src" + }, + "product_reference": "python-aiosignal-0:1.3.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ansible-builder-0:1.0.1-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-ansible-builder-0:1.0.1-4.el8pc.src" + }, + "product_reference": "python-ansible-builder-0:1.0.1-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-asgiref-0:3.6.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-asgiref-0:3.6.0-1.el8pc.src" + }, + "product_reference": "python-asgiref-0:3.6.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-async-lru-0:1.0.3-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-async-lru-0:1.0.3-1.el8pc.src" + }, + "product_reference": "python-async-lru-0:1.0.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-async-timeout-0:4.0.2-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-async-timeout-0:4.0.2-2.el8pc.src" + }, + "product_reference": "python-async-timeout-0:4.0.2-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-asyncio-throttle-0:1.0.2-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-asyncio-throttle-0:1.0.2-3.el8pc.src" + }, + "product_reference": "python-asyncio-throttle-0:1.0.2-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-attrs-0:21.4.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-attrs-0:21.4.0-2.el8pc.src" + }, + "product_reference": "python-attrs-0:21.4.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-backoff-0:2.2.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-backoff-0:2.2.1-1.el8pc.src" + }, + "product_reference": "python-backoff-0:2.2.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-bindep-0:2.11.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-bindep-0:2.11.0-2.el8pc.src" + }, + "product_reference": "python-bindep-0:2.11.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-bleach-0:3.3.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-bleach-0:3.3.1-2.el8pc.src" + }, + "product_reference": "python-bleach-0:3.3.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-bleach-allowlist-0:1.0.3-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-bleach-allowlist-0:1.0.3-3.el8pc.src" + }, + "product_reference": "python-bleach-allowlist-0:1.0.3-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-bracex-0:2.2.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-bracex-0:2.2.1-2.el8pc.src" + }, + "product_reference": "python-bracex-0:2.2.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-brotli-0:1.0.9-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-brotli-0:1.0.9-2.el8pc.src" + }, + "product_reference": "python-brotli-0:1.0.9-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-brotli-debugsource-0:1.0.9-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-brotli-debugsource-0:1.0.9-2.el8pc.x86_64" + }, + "product_reference": "python-brotli-debugsource-0:1.0.9-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cchardet-0:2.1.7-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-cchardet-0:2.1.7-4.el8pc.src" + }, + "product_reference": "python-cchardet-0:2.1.7-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cchardet-debugsource-0:2.1.7-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-cchardet-debugsource-0:2.1.7-4.el8pc.x86_64" + }, + "product_reference": "python-cchardet-debugsource-0:2.1.7-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-certifi-0:2022.12.7-1.1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-certifi-0:2022.12.7-1.1.el8pc.src" + }, + "product_reference": "python-certifi-0:2022.12.7-1.1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cffi-0:1.15.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-cffi-0:1.15.1-1.el8pc.src" + }, + "product_reference": "python-cffi-0:1.15.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cffi-debugsource-0:1.15.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-cffi-debugsource-0:1.15.1-1.el8pc.x86_64" + }, + "product_reference": "python-cffi-debugsource-0:1.15.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-chardet-0:5.0.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-chardet-0:5.0.0-1.el8pc.src" + }, + "product_reference": "python-chardet-0:5.0.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-charset-normalizer-0:2.1.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-charset-normalizer-0:2.1.1-1.el8pc.src" + }, + "product_reference": "python-charset-normalizer-0:2.1.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-click-0:8.1.3-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-click-0:8.1.3-1.el8pc.src" + }, + "product_reference": "python-click-0:8.1.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-click-shell-0:2.1-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-click-shell-0:2.1-3.el8pc.src" + }, + "product_reference": "python-click-shell-0:2.1-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-colorama-0:0.4.4-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-colorama-0:0.4.4-3.el8pc.src" + }, + "product_reference": "python-colorama-0:0.4.4-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-commonmark-0:0.9.1-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-commonmark-0:0.9.1-5.el8pc.src" + }, + "product_reference": "python-commonmark-0:0.9.1-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-contextlib2-0:21.6.0-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-contextlib2-0:21.6.0-3.el8pc.src" + }, + "product_reference": "python-contextlib2-0:21.6.0-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cryptography-0:38.0.4-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-cryptography-0:38.0.4-1.el8pc.src" + }, + "product_reference": "python-cryptography-0:38.0.4-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-cryptography-debugsource-0:38.0.4-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-cryptography-debugsource-0:38.0.4-1.el8pc.x86_64" + }, + "product_reference": "python-cryptography-debugsource-0:38.0.4-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-daemon-0:2.3.1-1.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-daemon-0:2.3.1-1.1.el8sat.src" + }, + "product_reference": "python-daemon-0:2.3.1-1.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-dataclasses-0:0.8-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-dataclasses-0:0.8-3.el8pc.src" + }, + "product_reference": "python-dataclasses-0:0.8-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-dateutil-0:2.8.2-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-dateutil-0:2.8.2-2.el8pc.src" + }, + "product_reference": "python-dateutil-0:2.8.2-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-debian-0:0.1.44-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-debian-0:0.1.44-3.el8pc.src" + }, + "product_reference": "python-debian-0:0.1.44-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-defusedxml-0:0.7.1-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-defusedxml-0:0.7.1-3.el8pc.src" + }, + "product_reference": "python-defusedxml-0:0.7.1-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-deprecated-0:1.2.13-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-deprecated-0:1.2.13-1.el8pc.src" + }, + "product_reference": "python-deprecated-0:1.2.13-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-diff-match-patch-0:20200713-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-diff-match-patch-0:20200713-3.el8pc.src" + }, + "product_reference": "python-diff-match-patch-0:20200713-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-distro-0:1.7.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-distro-0:1.7.0-1.el8pc.src" + }, + "product_reference": "python-distro-0:1.7.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-0:3.2.21-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-django-0:3.2.21-1.el8pc.src" + }, + "product_reference": "python-django-0:3.2.21-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-currentuser-0:0.5.3-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-django-currentuser-0:0.5.3-5.el8pc.src" + }, + "product_reference": "python-django-currentuser-0:0.5.3-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-filter-0:22.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-django-filter-0:22.1-2.el8pc.src" + }, + "product_reference": "python-django-filter-0:22.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-guid-0:3.3.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-django-guid-0:3.3.0-1.el8pc.src" + }, + "product_reference": "python-django-guid-0:3.3.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-import-export-0:3.0.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-django-import-export-0:3.0.2-1.el8pc.src" + }, + "product_reference": "python-django-import-export-0:3.0.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-lifecycle-0:1.0.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-django-lifecycle-0:1.0.0-1.el8pc.src" + }, + "product_reference": "python-django-lifecycle-0:1.0.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-django-readonly-field-0:1.1.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-django-readonly-field-0:1.1.2-1.el8pc.src" + }, + "product_reference": "python-django-readonly-field-0:1.1.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-djangorestframework-0:3.14.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-djangorestframework-0:3.14.0-1.el8pc.src" + }, + "product_reference": "python-djangorestframework-0:3.14.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-djangorestframework-queryfields-0:1.0.0-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-djangorestframework-queryfields-0:1.0.0-5.el8pc.src" + }, + "product_reference": "python-djangorestframework-queryfields-0:1.0.0-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-docutils-0:0.19-1.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-docutils-0:0.19-1.1.el8sat.src" + }, + "product_reference": "python-docutils-0:0.19-1.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-drf-access-policy-0:1.3.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-drf-access-policy-0:1.3.0-1.el8pc.src" + }, + "product_reference": "python-drf-access-policy-0:1.3.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-drf-nested-routers-0:0.93.4-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-drf-nested-routers-0:0.93.4-3.el8pc.src" + }, + "product_reference": "python-drf-nested-routers-0:0.93.4-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-drf-spectacular-0:0.25.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-drf-spectacular-0:0.25.0-1.el8pc.src" + }, + "product_reference": "python-drf-spectacular-0:0.25.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-dynaconf-0:3.1.11-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-dynaconf-0:3.1.11-1.el8pc.src" + }, + "product_reference": "python-dynaconf-0:3.1.11-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ecdsa-0:0.18.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-ecdsa-0:0.18.0-1.el8pc.src" + }, + "product_reference": "python-ecdsa-0:0.18.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-enrich-0:1.2.6-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-enrich-0:1.2.6-5.el8pc.src" + }, + "product_reference": "python-enrich-0:1.2.6-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-et-xmlfile-0:1.1.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-et-xmlfile-0:1.1.0-2.el8pc.src" + }, + "product_reference": "python-et-xmlfile-0:1.1.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-flake8-0:3.9.2-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-flake8-0:3.9.2-5.el8pc.src" + }, + "product_reference": "python-flake8-0:3.9.2-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-frozenlist-0:1.3.3-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-frozenlist-0:1.3.3-1.el8pc.src" + }, + "product_reference": "python-frozenlist-0:1.3.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-frozenlist-debugsource-0:1.3.3-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-frozenlist-debugsource-0:1.3.3-1.el8pc.x86_64" + }, + "product_reference": "python-frozenlist-debugsource-0:1.3.3-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-future-0:0.18.3-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-future-0:0.18.3-1.el8pc.src" + }, + "product_reference": "python-future-0:0.18.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-galaxy-importer-0:0.4.6-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-galaxy-importer-0:0.4.6-1.el8pc.src" + }, + "product_reference": "python-galaxy-importer-0:0.4.6-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-gitdb-0:4.0.10-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-gitdb-0:4.0.10-1.el8pc.src" + }, + "product_reference": "python-gitdb-0:4.0.10-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-gitpython-0:3.1.32-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-gitpython-0:3.1.32-1.el8pc.src" + }, + "product_reference": "python-gitpython-0:3.1.32-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-gnupg-0:0.5.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-gnupg-0:0.5.0-1.el8pc.src" + }, + "product_reference": "python-gnupg-0:0.5.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-gunicorn-0:20.1.0-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-gunicorn-0:20.1.0-5.el8pc.src" + }, + "product_reference": "python-gunicorn-0:20.1.0-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-idna-0:3.3-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-idna-0:3.3-2.el8pc.src" + }, + "product_reference": "python-idna-0:3.3-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-idna-ssl-0:1.1.0-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-idna-ssl-0:1.1.0-5.el8pc.src" + }, + "product_reference": "python-idna-ssl-0:1.1.0-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-importlib-metadata-0:4.10.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-importlib-metadata-0:4.10.1-2.el8pc.src" + }, + "product_reference": "python-importlib-metadata-0:4.10.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-inflection-0:0.5.1-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-inflection-0:0.5.1-3.el8pc.src" + }, + "product_reference": "python-inflection-0:0.5.1-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-iniparse-0:0.4-35.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-iniparse-0:0.4-35.el8pc.src" + }, + "product_reference": "python-iniparse-0:0.4-35.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-jinja2-0:3.1.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-jinja2-0:3.1.2-1.el8pc.src" + }, + "product_reference": "python-jinja2-0:3.1.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-jsonschema-0:4.9.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-jsonschema-0:4.9.1-1.el8pc.src" + }, + "product_reference": "python-jsonschema-0:4.9.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-lockfile-0:0.12.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-lockfile-0:0.12.2-1.el8sat.src" + }, + "product_reference": "python-lockfile-0:0.12.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-lxml-0:4.9.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-lxml-0:4.9.2-1.el8pc.src" + }, + "product_reference": "python-lxml-0:4.9.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-lxml-debugsource-0:4.9.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-lxml-debugsource-0:4.9.2-1.el8pc.x86_64" + }, + "product_reference": "python-lxml-debugsource-0:4.9.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-markdown-0:3.4.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-markdown-0:3.4.1-1.el8pc.src" + }, + "product_reference": "python-markdown-0:3.4.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-markuppy-0:1.14-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-markuppy-0:1.14-3.el8pc.src" + }, + "product_reference": "python-markuppy-0:1.14-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-markupsafe-0:2.1.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-markupsafe-0:2.1.2-1.el8pc.src" + }, + "product_reference": "python-markupsafe-0:2.1.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-markupsafe-debugsource-0:2.1.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-markupsafe-debugsource-0:2.1.2-1.el8pc.x86_64" + }, + "product_reference": "python-markupsafe-debugsource-0:2.1.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-mccabe-0:0.6.1-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-mccabe-0:0.6.1-3.el8pc.src" + }, + "product_reference": "python-mccabe-0:0.6.1-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-multidict-0:6.0.4-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-multidict-0:6.0.4-1.el8pc.src" + }, + "product_reference": "python-multidict-0:6.0.4-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-multidict-debugsource-0:6.0.4-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-multidict-debugsource-0:6.0.4-1.el8pc.x86_64" + }, + "product_reference": "python-multidict-debugsource-0:6.0.4-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-naya-0:1.1.1-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-naya-0:1.1.1-3.el8pc.src" + }, + "product_reference": "python-naya-0:1.1.1-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-odfpy-0:1.4.1-6.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-odfpy-0:1.4.1-6.el8pc.src" + }, + "product_reference": "python-odfpy-0:1.4.1-6.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-openpyxl-0:3.1.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-openpyxl-0:3.1.0-1.el8pc.src" + }, + "product_reference": "python-openpyxl-0:3.1.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-packaging-0:21.3-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-packaging-0:21.3-1.el8pc.src" + }, + "product_reference": "python-packaging-0:21.3-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-parsley-0:1.3-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-parsley-0:1.3-2.el8pc.src" + }, + "product_reference": "python-parsley-0:1.3-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pbr-0:5.8.0-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pbr-0:5.8.0-4.el8pc.src" + }, + "product_reference": "python-pbr-0:5.8.0-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pexpect-0:4.8.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pexpect-0:4.8.0-2.el8sat.src" + }, + "product_reference": "python-pexpect-0:4.8.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-productmd-0:1.33-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-productmd-0:1.33-3.el8pc.src" + }, + "product_reference": "python-productmd-0:1.33-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-protobuf-0:4.21.6-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-protobuf-0:4.21.6-1.el8pc.src" + }, + "product_reference": "python-protobuf-0:4.21.6-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-psycopg2-0:2.9.3-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-psycopg2-0:2.9.3-2.el8pc.src" + }, + "product_reference": "python-psycopg2-0:2.9.3-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-psycopg2-debugsource-0:2.9.3-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-psycopg2-debugsource-0:2.9.3-2.el8pc.x86_64" + }, + "product_reference": "python-psycopg2-debugsource-0:2.9.3-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ptyprocess-0:0.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-ptyprocess-0:0.7.0-1.el8sat.src" + }, + "product_reference": "python-ptyprocess-0:0.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-ansible-1:0.16.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pulp-ansible-1:0.16.0-1.el8pc.src" + }, + "product_reference": "python-pulp-ansible-1:0.16.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-certguard-0:1.5.6-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pulp-certguard-0:1.5.6-1.el8pc.src" + }, + "product_reference": "python-pulp-certguard-0:1.5.6-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-cli-0:0.14.0-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pulp-cli-0:0.14.0-4.el8pc.src" + }, + "product_reference": "python-pulp-cli-0:0.14.0-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-container-0:2.14.7-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pulp-container-0:2.14.7-1.el8pc.src" + }, + "product_reference": "python-pulp-container-0:2.14.7-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-deb-0:2.20.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pulp-deb-0:2.20.2-1.el8pc.src" + }, + "product_reference": "python-pulp-deb-0:2.20.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-file-0:1.12.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pulp-file-0:1.12.0-1.el8pc.src" + }, + "product_reference": "python-pulp-file-0:1.12.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp-rpm-0:3.19.9-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pulp-rpm-0:3.19.9-1.el8pc.src" + }, + "product_reference": "python-pulp-rpm-0:3.19.9-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulp_manifest-0:3.0.0-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pulp_manifest-0:3.0.0-3.el8pc.src" + }, + "product_reference": "python-pulp_manifest-0:3.0.0-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pulpcore-0:3.22.15-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pulpcore-0:3.22.15-2.el8pc.src" + }, + "product_reference": "python-pulpcore-0:3.22.15-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyOpenSSL-0:22.1.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pyOpenSSL-0:22.1.0-1.el8pc.src" + }, + "product_reference": "python-pyOpenSSL-0:22.1.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycares-0:4.1.2-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pycares-0:4.1.2-2.el8pc.src" + }, + "product_reference": "python-pycares-0:4.1.2-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycares-debugsource-0:4.1.2-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pycares-debugsource-0:4.1.2-2.el8pc.x86_64" + }, + "product_reference": "python-pycares-debugsource-0:4.1.2-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycodestyle-0:2.7.0-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pycodestyle-0:2.7.0-5.el8pc.src" + }, + "product_reference": "python-pycodestyle-0:2.7.0-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycparser-0:2.21-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pycparser-0:2.21-2.el8pc.src" + }, + "product_reference": "python-pycparser-0:2.21-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycryptodomex-0:3.14.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pycryptodomex-0:3.14.1-2.el8pc.src" + }, + "product_reference": "python-pycryptodomex-0:3.14.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pycryptodomex-debugsource-0:3.14.1-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pycryptodomex-debugsource-0:3.14.1-2.el8pc.x86_64" + }, + "product_reference": "python-pycryptodomex-debugsource-0:3.14.1-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyflakes-0:2.3.1-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pyflakes-0:2.3.1-5.el8pc.src" + }, + "product_reference": "python-pyflakes-0:2.3.1-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pygments-0:2.14.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pygments-0:2.14.0-1.el8pc.src" + }, + "product_reference": "python-pygments-0:2.14.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pygtrie-0:2.5.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pygtrie-0:2.5.0-1.el8pc.src" + }, + "product_reference": "python-pygtrie-0:2.5.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyjwkest-0:1.4.2-6.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pyjwkest-0:1.4.2-6.el8pc.src" + }, + "product_reference": "python-pyjwkest-0:1.4.2-6.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyjwt-0:2.5.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pyjwt-0:2.5.0-2.el8pc.src" + }, + "product_reference": "python-pyjwt-0:2.5.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyparsing-0:2.4.7-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pyparsing-0:2.4.7-3.el8pc.src" + }, + "product_reference": "python-pyparsing-0:2.4.7-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyrsistent-0:0.18.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pyrsistent-0:0.18.1-2.el8pc.src" + }, + "product_reference": "python-pyrsistent-0:0.18.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyrsistent-debugsource-0:0.18.1-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pyrsistent-debugsource-0:0.18.1-2.el8pc.x86_64" + }, + "product_reference": "python-pyrsistent-debugsource-0:0.18.1-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pytz-0:2022.2.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pytz-0:2022.2.1-1.el8pc.src" + }, + "product_reference": "python-pytz-0:2022.2.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-pyyaml-0:5.4.1-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-pyyaml-0:5.4.1-4.el8pc.src" + }, + "product_reference": "python-pyyaml-0:5.4.1-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-qpid-0:1.37.0-1.el8.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-qpid-0:1.37.0-1.el8.src" + }, + "product_reference": "python-qpid-0:1.37.0-1.el8.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-redis-0:4.3.4-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-redis-0:4.3.4-1.el8pc.src" + }, + "product_reference": "python-redis-0:4.3.4-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-requests-0:2.31.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-requests-0:2.31.0-1.el8pc.src" + }, + "product_reference": "python-requests-0:2.31.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-requirements-parser-0:0.2.0-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-requirements-parser-0:0.2.0-3.el8pc.src" + }, + "product_reference": "python-requirements-parser-0:0.2.0-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-rhsm-0:1.19.2-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-rhsm-0:1.19.2-3.el8pc.src" + }, + "product_reference": "python-rhsm-0:1.19.2-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-rhsm-debugsource-0:1.19.2-3.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-rhsm-debugsource-0:1.19.2-3.el8pc.x86_64" + }, + "product_reference": "python-rhsm-debugsource-0:1.19.2-3.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-rich-0:13.3.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-rich-0:13.3.1-2.el8pc.src" + }, + "product_reference": "python-rich-0:13.3.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ruamel-yaml-0:0.17.21-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-ruamel-yaml-0:0.17.21-2.el8pc.src" + }, + "product_reference": "python-ruamel-yaml-0:0.17.21-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ruamel-yaml-clib-0:0.2.7-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-ruamel-yaml-clib-0:0.2.7-1.el8pc.src" + }, + "product_reference": "python-ruamel-yaml-clib-0:0.2.7-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-ruamel-yaml-clib-debugsource-0:0.2.7-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-ruamel-yaml-clib-debugsource-0:0.2.7-1.el8pc.x86_64" + }, + "product_reference": "python-ruamel-yaml-clib-debugsource-0:0.2.7-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-schema-0:0.7.5-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-schema-0:0.7.5-2.el8pc.src" + }, + "product_reference": "python-schema-0:0.7.5-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-semantic-version-0:2.10.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-semantic-version-0:2.10.0-1.el8pc.src" + }, + "product_reference": "python-semantic-version-0:2.10.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-six-0:1.16.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-six-0:1.16.0-2.el8pc.src" + }, + "product_reference": "python-six-0:1.16.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-smmap-0:5.0.0-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-smmap-0:5.0.0-2.el8pc.src" + }, + "product_reference": "python-smmap-0:5.0.0-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-sqlparse-0:0.4.4-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-sqlparse-0:0.4.4-1.el8pc.src" + }, + "product_reference": "python-sqlparse-0:0.4.4-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-tablib-0:3.3.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-tablib-0:3.3.0-1.el8pc.src" + }, + "product_reference": "python-tablib-0:3.3.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-tenacity-0:7.0.0-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-tenacity-0:7.0.0-3.el8pc.src" + }, + "product_reference": "python-tenacity-0:7.0.0-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-toml-0:0.10.2-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-toml-0:0.10.2-3.el8pc.src" + }, + "product_reference": "python-toml-0:0.10.2-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-types-cryptography-0:3.3.23.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-types-cryptography-0:3.3.23.2-1.el8pc.src" + }, + "product_reference": "python-types-cryptography-0:3.3.23.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-typing-extensions-0:3.10.0.2-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-typing-extensions-0:3.10.0.2-2.el8pc.src" + }, + "product_reference": "python-typing-extensions-0:3.10.0.2-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-uritemplate-0:4.1.1-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-uritemplate-0:4.1.1-2.el8pc.src" + }, + "product_reference": "python-uritemplate-0:4.1.1-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-url-normalize-0:1.4.3-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-url-normalize-0:1.4.3-4.el8pc.src" + }, + "product_reference": "python-url-normalize-0:1.4.3-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-urllib3-0:1.26.8-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-urllib3-0:1.26.8-2.el8pc.src" + }, + "product_reference": "python-urllib3-0:1.26.8-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-urlman-0:2.0.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-urlman-0:2.0.1-1.el8pc.src" + }, + "product_reference": "python-urlman-0:2.0.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-wcmatch-0:8.3-2.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-wcmatch-0:8.3-2.el8pc.src" + }, + "product_reference": "python-wcmatch-0:8.3-2.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-webencodings-0:0.5.1-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-webencodings-0:0.5.1-3.el8pc.src" + }, + "product_reference": "python-webencodings-0:0.5.1-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-websockify-0:0.10.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-websockify-0:0.10.0-3.el8sat.src" + }, + "product_reference": "python-websockify-0:0.10.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-whitenoise-0:6.0.0-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-whitenoise-0:6.0.0-1.el8pc.src" + }, + "product_reference": "python-whitenoise-0:6.0.0-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-wrapt-0:1.14.1-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-wrapt-0:1.14.1-1.el8pc.src" + }, + "product_reference": "python-wrapt-0:1.14.1-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-wrapt-debugsource-0:1.14.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-wrapt-debugsource-0:1.14.1-1.el8pc.x86_64" + }, + "product_reference": "python-wrapt-debugsource-0:1.14.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-xlrd-0:2.0.1-5.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-xlrd-0:2.0.1-5.el8pc.src" + }, + "product_reference": "python-xlrd-0:2.0.1-5.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-xlwt-0:1.3.0-3.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-xlwt-0:1.3.0-3.el8pc.src" + }, + "product_reference": "python-xlwt-0:1.3.0-3.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-yarl-0:1.8.2-1.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-yarl-0:1.8.2-1.el8pc.src" + }, + "product_reference": "python-yarl-0:1.8.2-1.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-yarl-debugsource-0:1.8.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-yarl-debugsource-0:1.8.2-1.el8pc.x86_64" + }, + "product_reference": "python-yarl-debugsource-0:1.8.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python-zipp-0:3.4.0-4.el8pc.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python-zipp-0:3.4.0-4.el8pc.src" + }, + "product_reference": "python-zipp-0:3.4.0-4.el8pc.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python2-qpid-0:1.37.0-1.el8.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python2-qpid-0:1.37.0-1.el8.noarch" + }, + "product_reference": "python2-qpid-0:1.37.0-1.el8.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python2-qpid-qmf-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python2-qpid-qmf-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "python2-qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python2-saslwrapper-0:0.22-6.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python2-saslwrapper-0:0.22-6.el8sat.x86_64" + }, + "product_reference": "python2-saslwrapper-0:0.22-6.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python2-saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python2-saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64" + }, + "product_reference": "python2-saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-createrepo_c-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python3-createrepo_c-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "python3-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python3-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "python3-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-libcomps-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python3-libcomps-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "python3-libcomps-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python3-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "python3-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-qpid-proton-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python3-qpid-proton-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "python3-qpid-proton-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python3-qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "python3-qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-solv-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python3-solv-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "python3-solv-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-solv-debuginfo-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python3-solv-debuginfo-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "python3-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python3-websockify-0:0.10.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python3-websockify-0:0.10.0-3.el8sat.noarch" + }, + "product_reference": "python3-websockify-0:0.10.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aiodns-0:3.0.0-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-aiodns-0:3.0.0-3.el8pc.noarch" + }, + "product_reference": "python39-aiodns-0:3.0.0-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aiofiles-0:22.1.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-aiofiles-0:22.1.0-1.el8pc.noarch" + }, + "product_reference": "python39-aiofiles-0:22.1.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aiohttp-0:3.8.3-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-aiohttp-0:3.8.3-2.el8pc.x86_64" + }, + "product_reference": "python39-aiohttp-0:3.8.3-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aiohttp-debuginfo-0:3.8.3-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-aiohttp-debuginfo-0:3.8.3-2.el8pc.x86_64" + }, + "product_reference": "python39-aiohttp-debuginfo-0:3.8.3-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aiohttp-xmlrpc-0:1.5.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-aiohttp-xmlrpc-0:1.5.0-2.el8pc.noarch" + }, + "product_reference": "python39-aiohttp-xmlrpc-0:1.5.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aioredis-0:2.0.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-aioredis-0:2.0.1-2.el8pc.noarch" + }, + "product_reference": "python39-aioredis-0:2.0.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-aiosignal-0:1.3.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-aiosignal-0:1.3.1-1.el8pc.noarch" + }, + "product_reference": "python39-aiosignal-0:1.3.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ansible-builder-0:1.0.1-4.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-ansible-builder-0:1.0.1-4.el8pc.noarch" + }, + "product_reference": "python39-ansible-builder-0:1.0.1-4.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ansible-runner-0:2.2.1-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-ansible-runner-0:2.2.1-3.el8sat.noarch" + }, + "product_reference": "python39-ansible-runner-0:2.2.1-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-asgiref-0:3.6.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-asgiref-0:3.6.0-1.el8pc.noarch" + }, + "product_reference": "python39-asgiref-0:3.6.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-async-lru-0:1.0.3-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-async-lru-0:1.0.3-1.el8pc.noarch" + }, + "product_reference": "python39-async-lru-0:1.0.3-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-async-timeout-0:4.0.2-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-async-timeout-0:4.0.2-2.el8pc.noarch" + }, + "product_reference": "python39-async-timeout-0:4.0.2-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-asyncio-throttle-0:1.0.2-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-asyncio-throttle-0:1.0.2-3.el8pc.noarch" + }, + "product_reference": "python39-asyncio-throttle-0:1.0.2-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-attrs-0:21.4.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-attrs-0:21.4.0-2.el8pc.noarch" + }, + "product_reference": "python39-attrs-0:21.4.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-backoff-0:2.2.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-backoff-0:2.2.1-1.el8pc.noarch" + }, + "product_reference": "python39-backoff-0:2.2.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-bindep-0:2.11.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-bindep-0:2.11.0-2.el8pc.noarch" + }, + "product_reference": "python39-bindep-0:2.11.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-bleach-0:3.3.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-bleach-0:3.3.1-2.el8pc.noarch" + }, + "product_reference": "python39-bleach-0:3.3.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-bleach-allowlist-0:1.0.3-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-bleach-allowlist-0:1.0.3-3.el8pc.noarch" + }, + "product_reference": "python39-bleach-allowlist-0:1.0.3-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-bracex-0:2.2.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-bracex-0:2.2.1-2.el8pc.noarch" + }, + "product_reference": "python39-bracex-0:2.2.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-brotli-0:1.0.9-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-brotli-0:1.0.9-2.el8pc.x86_64" + }, + "product_reference": "python39-brotli-0:1.0.9-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-brotli-debuginfo-0:1.0.9-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-brotli-debuginfo-0:1.0.9-2.el8pc.x86_64" + }, + "product_reference": "python39-brotli-debuginfo-0:1.0.9-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-cchardet-0:2.1.7-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-cchardet-0:2.1.7-4.el8pc.x86_64" + }, + "product_reference": "python39-cchardet-0:2.1.7-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-cchardet-debuginfo-0:2.1.7-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-cchardet-debuginfo-0:2.1.7-4.el8pc.x86_64" + }, + "product_reference": "python39-cchardet-debuginfo-0:2.1.7-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-certifi-0:2022.12.7-1.1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-certifi-0:2022.12.7-1.1.el8pc.noarch" + }, + "product_reference": "python39-certifi-0:2022.12.7-1.1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-cffi-0:1.15.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-cffi-0:1.15.1-1.el8pc.x86_64" + }, + "product_reference": "python39-cffi-0:1.15.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-cffi-debuginfo-0:1.15.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-cffi-debuginfo-0:1.15.1-1.el8pc.x86_64" + }, + "product_reference": "python39-cffi-debuginfo-0:1.15.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-chardet-0:5.0.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-chardet-0:5.0.0-1.el8pc.noarch" + }, + "product_reference": "python39-chardet-0:5.0.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-charset-normalizer-0:2.1.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-charset-normalizer-0:2.1.1-1.el8pc.noarch" + }, + "product_reference": "python39-charset-normalizer-0:2.1.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-click-0:8.1.3-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-click-0:8.1.3-1.el8pc.noarch" + }, + "product_reference": "python39-click-0:8.1.3-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-click-shell-0:2.1-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-click-shell-0:2.1-3.el8pc.noarch" + }, + "product_reference": "python39-click-shell-0:2.1-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-colorama-0:0.4.4-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-colorama-0:0.4.4-3.el8pc.noarch" + }, + "product_reference": "python39-colorama-0:0.4.4-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-commonmark-0:0.9.1-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-commonmark-0:0.9.1-5.el8pc.noarch" + }, + "product_reference": "python39-commonmark-0:0.9.1-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-contextlib2-0:21.6.0-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-contextlib2-0:21.6.0-3.el8pc.noarch" + }, + "product_reference": "python39-contextlib2-0:21.6.0-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-createrepo_c-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-createrepo_c-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "python39-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64" + }, + "product_reference": "python39-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-cryptography-0:38.0.4-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-cryptography-0:38.0.4-1.el8pc.x86_64" + }, + "product_reference": "python39-cryptography-0:38.0.4-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-cryptography-debuginfo-0:38.0.4-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-cryptography-debuginfo-0:38.0.4-1.el8pc.x86_64" + }, + "product_reference": "python39-cryptography-debuginfo-0:38.0.4-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-daemon-0:2.3.1-1.1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-daemon-0:2.3.1-1.1.el8sat.noarch" + }, + "product_reference": "python39-daemon-0:2.3.1-1.1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-dataclasses-0:0.8-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-dataclasses-0:0.8-3.el8pc.noarch" + }, + "product_reference": "python39-dataclasses-0:0.8-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-dateutil-0:2.8.2-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-dateutil-0:2.8.2-2.el8pc.noarch" + }, + "product_reference": "python39-dateutil-0:2.8.2-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-debian-0:0.1.44-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-debian-0:0.1.44-3.el8pc.noarch" + }, + "product_reference": "python39-debian-0:0.1.44-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-defusedxml-0:0.7.1-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-defusedxml-0:0.7.1-3.el8pc.noarch" + }, + "product_reference": "python39-defusedxml-0:0.7.1-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-deprecated-0:1.2.13-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-deprecated-0:1.2.13-1.el8pc.noarch" + }, + "product_reference": "python39-deprecated-0:1.2.13-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-diff-match-patch-0:20200713-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-diff-match-patch-0:20200713-3.el8pc.noarch" + }, + "product_reference": "python39-diff-match-patch-0:20200713-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-distro-0:1.7.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-distro-0:1.7.0-1.el8pc.noarch" + }, + "product_reference": "python39-distro-0:1.7.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-0:3.2.21-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-django-0:3.2.21-1.el8pc.noarch" + }, + "product_reference": "python39-django-0:3.2.21-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-currentuser-0:0.5.3-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-django-currentuser-0:0.5.3-5.el8pc.noarch" + }, + "product_reference": "python39-django-currentuser-0:0.5.3-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-filter-0:22.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-django-filter-0:22.1-2.el8pc.noarch" + }, + "product_reference": "python39-django-filter-0:22.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-guid-0:3.3.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-django-guid-0:3.3.0-1.el8pc.noarch" + }, + "product_reference": "python39-django-guid-0:3.3.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-import-export-0:3.0.2-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-django-import-export-0:3.0.2-1.el8pc.noarch" + }, + "product_reference": "python39-django-import-export-0:3.0.2-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-lifecycle-0:1.0.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-django-lifecycle-0:1.0.0-1.el8pc.noarch" + }, + "product_reference": "python39-django-lifecycle-0:1.0.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-django-readonly-field-0:1.1.2-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-django-readonly-field-0:1.1.2-1.el8pc.noarch" + }, + "product_reference": "python39-django-readonly-field-0:1.1.2-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-djangorestframework-0:3.14.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-djangorestframework-0:3.14.0-1.el8pc.noarch" + }, + "product_reference": "python39-djangorestframework-0:3.14.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-djangorestframework-queryfields-0:1.0.0-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-djangorestframework-queryfields-0:1.0.0-5.el8pc.noarch" + }, + "product_reference": "python39-djangorestframework-queryfields-0:1.0.0-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-docutils-0:0.19-1.1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-docutils-0:0.19-1.1.el8sat.noarch" + }, + "product_reference": "python39-docutils-0:0.19-1.1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-drf-access-policy-0:1.3.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-drf-access-policy-0:1.3.0-1.el8pc.noarch" + }, + "product_reference": "python39-drf-access-policy-0:1.3.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-drf-nested-routers-0:0.93.4-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-drf-nested-routers-0:0.93.4-3.el8pc.noarch" + }, + "product_reference": "python39-drf-nested-routers-0:0.93.4-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-drf-spectacular-0:0.25.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-drf-spectacular-0:0.25.0-1.el8pc.noarch" + }, + "product_reference": "python39-drf-spectacular-0:0.25.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-dynaconf-0:3.1.11-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-dynaconf-0:3.1.11-1.el8pc.noarch" + }, + "product_reference": "python39-dynaconf-0:3.1.11-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ecdsa-0:0.18.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-ecdsa-0:0.18.0-1.el8pc.noarch" + }, + "product_reference": "python39-ecdsa-0:0.18.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-enrich-0:1.2.6-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-enrich-0:1.2.6-5.el8pc.noarch" + }, + "product_reference": "python39-enrich-0:1.2.6-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-et-xmlfile-0:1.1.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-et-xmlfile-0:1.1.0-2.el8pc.noarch" + }, + "product_reference": "python39-et-xmlfile-0:1.1.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-flake8-0:3.9.2-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-flake8-0:3.9.2-5.el8pc.noarch" + }, + "product_reference": "python39-flake8-0:3.9.2-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-frozenlist-0:1.3.3-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-frozenlist-0:1.3.3-1.el8pc.x86_64" + }, + "product_reference": "python39-frozenlist-0:1.3.3-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-frozenlist-debuginfo-0:1.3.3-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-frozenlist-debuginfo-0:1.3.3-1.el8pc.x86_64" + }, + "product_reference": "python39-frozenlist-debuginfo-0:1.3.3-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-future-0:0.18.3-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-future-0:0.18.3-1.el8pc.noarch" + }, + "product_reference": "python39-future-0:0.18.3-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-galaxy-importer-0:0.4.6-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-galaxy-importer-0:0.4.6-1.el8pc.noarch" + }, + "product_reference": "python39-galaxy-importer-0:0.4.6-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-gitdb-0:4.0.10-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-gitdb-0:4.0.10-1.el8pc.noarch" + }, + "product_reference": "python39-gitdb-0:4.0.10-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-gitpython-0:3.1.32-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-gitpython-0:3.1.32-1.el8pc.noarch" + }, + "product_reference": "python39-gitpython-0:3.1.32-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-gnupg-0:0.5.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-gnupg-0:0.5.0-1.el8pc.noarch" + }, + "product_reference": "python39-gnupg-0:0.5.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-gunicorn-0:20.1.0-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-gunicorn-0:20.1.0-5.el8pc.noarch" + }, + "product_reference": "python39-gunicorn-0:20.1.0-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-idna-0:3.3-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-idna-0:3.3-2.el8pc.noarch" + }, + "product_reference": "python39-idna-0:3.3-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-idna-ssl-0:1.1.0-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-idna-ssl-0:1.1.0-5.el8pc.noarch" + }, + "product_reference": "python39-idna-ssl-0:1.1.0-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-importlib-metadata-0:4.10.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-importlib-metadata-0:4.10.1-2.el8pc.noarch" + }, + "product_reference": "python39-importlib-metadata-0:4.10.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-inflection-0:0.5.1-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-inflection-0:0.5.1-3.el8pc.noarch" + }, + "product_reference": "python39-inflection-0:0.5.1-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-iniparse-0:0.4-35.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-iniparse-0:0.4-35.el8pc.noarch" + }, + "product_reference": "python39-iniparse-0:0.4-35.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-jinja2-0:3.1.2-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-jinja2-0:3.1.2-1.el8pc.noarch" + }, + "product_reference": "python39-jinja2-0:3.1.2-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-jsonschema-0:4.9.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-jsonschema-0:4.9.1-1.el8pc.noarch" + }, + "product_reference": "python39-jsonschema-0:4.9.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-libcomps-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-libcomps-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "python39-libcomps-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64" + }, + "product_reference": "python39-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-lockfile-0:0.12.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-lockfile-0:0.12.2-1.el8sat.noarch" + }, + "product_reference": "python39-lockfile-0:0.12.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-lxml-0:4.9.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-lxml-0:4.9.2-1.el8pc.x86_64" + }, + "product_reference": "python39-lxml-0:4.9.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-lxml-debuginfo-0:4.9.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-lxml-debuginfo-0:4.9.2-1.el8pc.x86_64" + }, + "product_reference": "python39-lxml-debuginfo-0:4.9.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-markdown-0:3.4.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-markdown-0:3.4.1-1.el8pc.noarch" + }, + "product_reference": "python39-markdown-0:3.4.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-markuppy-0:1.14-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-markuppy-0:1.14-3.el8pc.noarch" + }, + "product_reference": "python39-markuppy-0:1.14-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-markupsafe-0:2.1.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-markupsafe-0:2.1.2-1.el8pc.x86_64" + }, + "product_reference": "python39-markupsafe-0:2.1.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-markupsafe-debuginfo-0:2.1.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-markupsafe-debuginfo-0:2.1.2-1.el8pc.x86_64" + }, + "product_reference": "python39-markupsafe-debuginfo-0:2.1.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-mccabe-0:0.6.1-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-mccabe-0:0.6.1-3.el8pc.noarch" + }, + "product_reference": "python39-mccabe-0:0.6.1-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-multidict-0:6.0.4-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-multidict-0:6.0.4-1.el8pc.x86_64" + }, + "product_reference": "python39-multidict-0:6.0.4-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-multidict-debuginfo-0:6.0.4-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-multidict-debuginfo-0:6.0.4-1.el8pc.x86_64" + }, + "product_reference": "python39-multidict-debuginfo-0:6.0.4-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-naya-0:1.1.1-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-naya-0:1.1.1-3.el8pc.noarch" + }, + "product_reference": "python39-naya-0:1.1.1-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-odfpy-0:1.4.1-6.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-odfpy-0:1.4.1-6.el8pc.noarch" + }, + "product_reference": "python39-odfpy-0:1.4.1-6.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-openpyxl-0:3.1.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-openpyxl-0:3.1.0-1.el8pc.noarch" + }, + "product_reference": "python39-openpyxl-0:3.1.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-packaging-0:21.3-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-packaging-0:21.3-1.el8pc.noarch" + }, + "product_reference": "python39-packaging-0:21.3-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-parsley-0:1.3-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-parsley-0:1.3-2.el8pc.noarch" + }, + "product_reference": "python39-parsley-0:1.3-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pbr-0:5.8.0-4.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pbr-0:5.8.0-4.el8pc.noarch" + }, + "product_reference": "python39-pbr-0:5.8.0-4.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pexpect-0:4.8.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pexpect-0:4.8.0-2.el8sat.noarch" + }, + "product_reference": "python39-pexpect-0:4.8.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-productmd-0:1.33-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-productmd-0:1.33-3.el8pc.noarch" + }, + "product_reference": "python39-productmd-0:1.33-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-protobuf-0:4.21.6-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-protobuf-0:4.21.6-1.el8pc.noarch" + }, + "product_reference": "python39-protobuf-0:4.21.6-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-psycopg2-0:2.9.3-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-psycopg2-0:2.9.3-2.el8pc.x86_64" + }, + "product_reference": "python39-psycopg2-0:2.9.3-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-psycopg2-debuginfo-0:2.9.3-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-psycopg2-debuginfo-0:2.9.3-2.el8pc.x86_64" + }, + "product_reference": "python39-psycopg2-debuginfo-0:2.9.3-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ptyprocess-0:0.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-ptyprocess-0:0.7.0-1.el8sat.noarch" + }, + "product_reference": "python39-ptyprocess-0:0.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-ansible-1:0.16.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pulp-ansible-1:0.16.0-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-ansible-1:0.16.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-certguard-0:1.5.6-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pulp-certguard-0:1.5.6-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-certguard-0:1.5.6-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-cli-0:0.14.0-4.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pulp-cli-0:0.14.0-4.el8pc.noarch" + }, + "product_reference": "python39-pulp-cli-0:0.14.0-4.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-container-0:2.14.7-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pulp-container-0:2.14.7-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-container-0:2.14.7-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-deb-0:2.20.2-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pulp-deb-0:2.20.2-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-deb-0:2.20.2-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-file-0:1.12.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pulp-file-0:1.12.0-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-file-0:1.12.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp-rpm-0:3.19.9-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pulp-rpm-0:3.19.9-1.el8pc.noarch" + }, + "product_reference": "python39-pulp-rpm-0:3.19.9-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulp_manifest-0:3.0.0-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pulp_manifest-0:3.0.0-3.el8pc.noarch" + }, + "product_reference": "python39-pulp_manifest-0:3.0.0-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pulpcore-0:3.22.15-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pulpcore-0:3.22.15-2.el8pc.noarch" + }, + "product_reference": "python39-pulpcore-0:3.22.15-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyOpenSSL-0:22.1.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pyOpenSSL-0:22.1.0-1.el8pc.noarch" + }, + "product_reference": "python39-pyOpenSSL-0:22.1.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pycares-0:4.1.2-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pycares-0:4.1.2-2.el8pc.x86_64" + }, + "product_reference": "python39-pycares-0:4.1.2-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pycares-debuginfo-0:4.1.2-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pycares-debuginfo-0:4.1.2-2.el8pc.x86_64" + }, + "product_reference": "python39-pycares-debuginfo-0:4.1.2-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pycodestyle-0:2.7.0-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pycodestyle-0:2.7.0-5.el8pc.noarch" + }, + "product_reference": "python39-pycodestyle-0:2.7.0-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pycparser-0:2.21-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pycparser-0:2.21-2.el8pc.noarch" + }, + "product_reference": "python39-pycparser-0:2.21-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pycryptodomex-0:3.14.1-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pycryptodomex-0:3.14.1-2.el8pc.x86_64" + }, + "product_reference": "python39-pycryptodomex-0:3.14.1-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pycryptodomex-debuginfo-0:3.14.1-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pycryptodomex-debuginfo-0:3.14.1-2.el8pc.x86_64" + }, + "product_reference": "python39-pycryptodomex-debuginfo-0:3.14.1-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyflakes-0:2.3.1-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pyflakes-0:2.3.1-5.el8pc.noarch" + }, + "product_reference": "python39-pyflakes-0:2.3.1-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pygments-0:2.14.0-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pygments-0:2.14.0-1.el8pc.x86_64" + }, + "product_reference": "python39-pygments-0:2.14.0-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pygtrie-0:2.5.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pygtrie-0:2.5.0-1.el8pc.noarch" + }, + "product_reference": "python39-pygtrie-0:2.5.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyjwkest-0:1.4.2-6.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pyjwkest-0:1.4.2-6.el8pc.noarch" + }, + "product_reference": "python39-pyjwkest-0:1.4.2-6.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyjwt-0:2.5.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pyjwt-0:2.5.0-2.el8pc.noarch" + }, + "product_reference": "python39-pyjwt-0:2.5.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyparsing-0:2.4.7-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pyparsing-0:2.4.7-3.el8pc.noarch" + }, + "product_reference": "python39-pyparsing-0:2.4.7-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyrsistent-0:0.18.1-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pyrsistent-0:0.18.1-2.el8pc.x86_64" + }, + "product_reference": "python39-pyrsistent-0:0.18.1-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyrsistent-debuginfo-0:0.18.1-2.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pyrsistent-debuginfo-0:0.18.1-2.el8pc.x86_64" + }, + "product_reference": "python39-pyrsistent-debuginfo-0:0.18.1-2.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pytz-0:2022.2.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pytz-0:2022.2.1-1.el8pc.noarch" + }, + "product_reference": "python39-pytz-0:2022.2.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-pyyaml-0:5.4.1-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-pyyaml-0:5.4.1-4.el8pc.x86_64" + }, + "product_reference": "python39-pyyaml-0:5.4.1-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-redis-0:4.3.4-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-redis-0:4.3.4-1.el8pc.noarch" + }, + "product_reference": "python39-redis-0:4.3.4-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-requests-0:2.31.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-requests-0:2.31.0-1.el8pc.noarch" + }, + "product_reference": "python39-requests-0:2.31.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-requirements-parser-0:0.2.0-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-requirements-parser-0:0.2.0-3.el8pc.noarch" + }, + "product_reference": "python39-requirements-parser-0:0.2.0-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-rhsm-0:1.19.2-3.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-rhsm-0:1.19.2-3.el8pc.x86_64" + }, + "product_reference": "python39-rhsm-0:1.19.2-3.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-rhsm-debuginfo-0:1.19.2-3.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-rhsm-debuginfo-0:1.19.2-3.el8pc.x86_64" + }, + "product_reference": "python39-rhsm-debuginfo-0:1.19.2-3.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-rich-0:13.3.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-rich-0:13.3.1-2.el8pc.noarch" + }, + "product_reference": "python39-rich-0:13.3.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ruamel-yaml-0:0.17.21-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-ruamel-yaml-0:0.17.21-2.el8pc.noarch" + }, + "product_reference": "python39-ruamel-yaml-0:0.17.21-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ruamel-yaml-clib-0:0.2.7-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-ruamel-yaml-clib-0:0.2.7-1.el8pc.x86_64" + }, + "product_reference": "python39-ruamel-yaml-clib-0:0.2.7-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-ruamel-yaml-clib-debuginfo-0:0.2.7-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-ruamel-yaml-clib-debuginfo-0:0.2.7-1.el8pc.x86_64" + }, + "product_reference": "python39-ruamel-yaml-clib-debuginfo-0:0.2.7-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-schema-0:0.7.5-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-schema-0:0.7.5-2.el8pc.noarch" + }, + "product_reference": "python39-schema-0:0.7.5-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-semantic-version-0:2.10.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-semantic-version-0:2.10.0-1.el8pc.noarch" + }, + "product_reference": "python39-semantic-version-0:2.10.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-six-0:1.16.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-six-0:1.16.0-2.el8pc.noarch" + }, + "product_reference": "python39-six-0:1.16.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-smmap-0:5.0.0-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-smmap-0:5.0.0-2.el8pc.noarch" + }, + "product_reference": "python39-smmap-0:5.0.0-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-solv-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-solv-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "python39-solv-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-solv-debuginfo-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-solv-debuginfo-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "python39-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-sqlparse-0:0.4.4-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-sqlparse-0:0.4.4-1.el8pc.noarch" + }, + "product_reference": "python39-sqlparse-0:0.4.4-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-tablib-0:3.3.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-tablib-0:3.3.0-1.el8pc.noarch" + }, + "product_reference": "python39-tablib-0:3.3.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-tenacity-0:7.0.0-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-tenacity-0:7.0.0-3.el8pc.noarch" + }, + "product_reference": "python39-tenacity-0:7.0.0-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-toml-0:0.10.2-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-toml-0:0.10.2-3.el8pc.noarch" + }, + "product_reference": "python39-toml-0:0.10.2-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-types-cryptography-0:3.3.23.2-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-types-cryptography-0:3.3.23.2-1.el8pc.noarch" + }, + "product_reference": "python39-types-cryptography-0:3.3.23.2-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-typing-extensions-0:3.10.0.2-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-typing-extensions-0:3.10.0.2-2.el8pc.noarch" + }, + "product_reference": "python39-typing-extensions-0:3.10.0.2-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-uritemplate-0:4.1.1-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-uritemplate-0:4.1.1-2.el8pc.noarch" + }, + "product_reference": "python39-uritemplate-0:4.1.1-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-url-normalize-0:1.4.3-4.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-url-normalize-0:1.4.3-4.el8pc.noarch" + }, + "product_reference": "python39-url-normalize-0:1.4.3-4.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-urllib3-0:1.26.8-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-urllib3-0:1.26.8-2.el8pc.noarch" + }, + "product_reference": "python39-urllib3-0:1.26.8-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-urlman-0:2.0.1-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-urlman-0:2.0.1-1.el8pc.noarch" + }, + "product_reference": "python39-urlman-0:2.0.1-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-wcmatch-0:8.3-2.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-wcmatch-0:8.3-2.el8pc.noarch" + }, + "product_reference": "python39-wcmatch-0:8.3-2.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-webencodings-0:0.5.1-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-webencodings-0:0.5.1-3.el8pc.noarch" + }, + "product_reference": "python39-webencodings-0:0.5.1-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-whitenoise-0:6.0.0-1.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-whitenoise-0:6.0.0-1.el8pc.noarch" + }, + "product_reference": "python39-whitenoise-0:6.0.0-1.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-wrapt-0:1.14.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-wrapt-0:1.14.1-1.el8pc.x86_64" + }, + "product_reference": "python39-wrapt-0:1.14.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-wrapt-debuginfo-0:1.14.1-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-wrapt-debuginfo-0:1.14.1-1.el8pc.x86_64" + }, + "product_reference": "python39-wrapt-debuginfo-0:1.14.1-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-xlrd-0:2.0.1-5.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-xlrd-0:2.0.1-5.el8pc.noarch" + }, + "product_reference": "python39-xlrd-0:2.0.1-5.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-xlwt-0:1.3.0-3.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-xlwt-0:1.3.0-3.el8pc.noarch" + }, + "product_reference": "python39-xlwt-0:1.3.0-3.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-yarl-0:1.8.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-yarl-0:1.8.2-1.el8pc.x86_64" + }, + "product_reference": "python39-yarl-0:1.8.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-yarl-debuginfo-0:1.8.2-1.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-yarl-debuginfo-0:1.8.2-1.el8pc.x86_64" + }, + "product_reference": "python39-yarl-debuginfo-0:1.8.2-1.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "python39-zipp-0:3.4.0-4.el8pc.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:python39-zipp-0:3.4.0-4.el8pc.noarch" + }, + "product_reference": "python39-zipp-0:3.4.0-4.el8pc.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-0:1.39.0-7.el8amq.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-0:1.39.0-7.el8amq.src" + }, + "product_reference": "qpid-cpp-0:1.39.0-7.el8amq.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-client-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-client-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-client-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-client-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-client-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-client-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-client-devel-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-client-devel-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-client-devel-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-client-devel-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-client-devel-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-client-devel-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-client-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-client-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-client-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-debugsource-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-debugsource-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-debugsource-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-server-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-server-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-server-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-server-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-server-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-server-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-server-ha-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-server-ha-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-server-ha-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-server-linearstore-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-server-linearstore-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-server-linearstore-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-server-linearstore-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-server-linearstore-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-server-linearstore-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-cpp-server-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-cpp-server-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-cpp-server-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-dispatch-0:1.14.0-6.el8.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-dispatch-0:1.14.0-6.el8.src" + }, + "product_reference": "qpid-dispatch-0:1.14.0-6.el8.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-dispatch-debugsource-0:1.14.0-6.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-dispatch-debugsource-0:1.14.0-6.el8.x86_64" + }, + "product_reference": "qpid-dispatch-debugsource-0:1.14.0-6.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-dispatch-router-0:1.14.0-6.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-dispatch-router-0:1.14.0-6.el8.x86_64" + }, + "product_reference": "qpid-dispatch-router-0:1.14.0-6.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-dispatch-router-debuginfo-0:1.14.0-6.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-dispatch-router-debuginfo-0:1.14.0-6.el8.x86_64" + }, + "product_reference": "qpid-dispatch-router-debuginfo-0:1.14.0-6.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-dispatch-tools-0:1.14.0-6.el8.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-dispatch-tools-0:1.14.0-6.el8.noarch" + }, + "product_reference": "qpid-dispatch-tools-0:1.14.0-6.el8.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-0:0.33.0-4.el8.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-proton-0:0.33.0-4.el8.src" + }, + "product_reference": "qpid-proton-0:0.33.0-4.el8.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-c-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-proton-c-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "qpid-proton-c-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-c-debuginfo-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-proton-c-debuginfo-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "qpid-proton-c-debuginfo-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-cpp-debuginfo-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-proton-cpp-debuginfo-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "qpid-proton-cpp-debuginfo-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-proton-debugsource-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-proton-debugsource-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "qpid-proton-debugsource-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-qmf-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-qmf-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-qmf-debuginfo-0:1.39.0-7.el8amq.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-qmf-debuginfo-0:1.39.0-7.el8amq.x86_64" + }, + "product_reference": "qpid-qmf-debuginfo-0:1.39.0-7.el8amq.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "qpid-tools-0:1.39.0-7.el8amq.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:qpid-tools-0:1.39.0-7.el8amq.noarch" + }, + "product_reference": "qpid-tools-0:1.39.0-7.el8amq.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:redhat-access-insights-puppet-0:1.0.1-1.el8sat.noarch" + }, + "product_reference": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:redhat-access-insights-puppet-0:1.0.1-1.el8sat.src" + }, + "product_reference": "redhat-access-insights-puppet-0:1.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "ruby-solv-debuginfo-0:0.7.22-4.el8pc.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:ruby-solv-debuginfo-0:0.7.22-4.el8pc.x86_64" + }, + "product_reference": "ruby-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-actioncable-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-actioncable-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-actioncable-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-actioncable-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-actioncable-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-actioncable-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-actionmailbox-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-actionmailbox-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-actionmailbox-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-actionmailbox-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-actionmailbox-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-actionmailbox-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-actionmailer-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-actionmailer-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-actionmailer-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-actionmailer-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-actionmailer-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-actionmailer-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-actionpack-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-actionpack-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-actionpack-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-actionpack-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-actionpack-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-actionpack-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-actiontext-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-actiontext-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-actiontext-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-actiontext-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-actiontext-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-actiontext-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-actionview-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-actionview-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-actionview-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-actionview-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-actionview-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-actionview-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activejob-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activejob-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-activejob-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activejob-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activejob-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-activejob-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activemodel-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activemodel-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-activemodel-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activemodel-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activemodel-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-activemodel-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activerecord-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activerecord-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-activerecord-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activerecord-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activerecord-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-activerecord-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activerecord-import-0:1.4.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activerecord-import-0:1.4.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-activerecord-import-0:1.4.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activerecord-import-0:1.4.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activerecord-import-0:1.4.1-1.el8sat.src" + }, + "product_reference": "rubygem-activerecord-import-0:1.4.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activerecord-session_store-0:2.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activerecord-session_store-0:2.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-activerecord-session_store-0:2.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activerecord-session_store-0:2.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activerecord-session_store-0:2.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-activerecord-session_store-0:2.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activestorage-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activestorage-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-activestorage-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activestorage-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activestorage-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-activestorage-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activesupport-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activesupport-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-activesupport-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-activesupport-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-activesupport-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-activesupport-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-acts_as_list-0:1.0.3-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-acts_as_list-0:1.0.3-2.el8sat.noarch" + }, + "product_reference": "rubygem-acts_as_list-0:1.0.3-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-acts_as_list-0:1.0.3-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-acts_as_list-0:1.0.3-2.el8sat.src" + }, + "product_reference": "rubygem-acts_as_list-0:1.0.3-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-addressable-0:2.8.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-addressable-0:2.8.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-addressable-0:2.8.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-addressable-0:2.8.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-addressable-0:2.8.4-1.el8sat.src" + }, + "product_reference": "rubygem-addressable-0:2.8.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-algebrick-0:0.7.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-algebrick-0:0.7.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-algebrick-0:0.7.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-algebrick-0:0.7.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-algebrick-0:0.7.5-1.el8sat.src" + }, + "product_reference": "rubygem-algebrick-0:0.7.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-amazing_print-0:1.4.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-amazing_print-0:1.4.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-amazing_print-0:1.4.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-amazing_print-0:1.4.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-amazing_print-0:1.4.0-1.el8sat.src" + }, + "product_reference": "rubygem-amazing_print-0:1.4.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ancestry-0:4.3.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ancestry-0:4.3.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-ancestry-0:4.3.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ancestry-0:4.3.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ancestry-0:4.3.3-1.el8sat.src" + }, + "product_reference": "rubygem-ancestry-0:4.3.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-anemone-0:0.7.2-23.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-anemone-0:0.7.2-23.el8sat.noarch" + }, + "product_reference": "rubygem-anemone-0:0.7.2-23.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-anemone-0:0.7.2-23.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-anemone-0:0.7.2-23.el8sat.src" + }, + "product_reference": "rubygem-anemone-0:0.7.2-23.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-angular-rails-templates-1:1.1.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-angular-rails-templates-1:1.1.0-2.el8sat.noarch" + }, + "product_reference": "rubygem-angular-rails-templates-1:1.1.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-angular-rails-templates-1:1.1.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-angular-rails-templates-1:1.1.0-2.el8sat.src" + }, + "product_reference": "rubygem-angular-rails-templates-1:1.1.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ansi-0:1.5.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ansi-0:1.5.0-3.el8sat.noarch" + }, + "product_reference": "rubygem-ansi-0:1.5.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ansi-0:1.5.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ansi-0:1.5.0-3.el8sat.src" + }, + "product_reference": "rubygem-ansi-0:1.5.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-apipie-bindings-0:0.6.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-apipie-bindings-0:0.6.0-1.el8sat.src" + }, + "product_reference": "rubygem-apipie-bindings-0:0.6.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-apipie-dsl-0:2.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-apipie-dsl-0:2.5.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-apipie-dsl-0:2.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-apipie-dsl-0:2.5.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-apipie-dsl-0:2.5.0-1.el8sat.src" + }, + "product_reference": "rubygem-apipie-dsl-0:2.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-apipie-params-0:0.0.5-5.1.el8sat.noarch" + }, + "product_reference": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-apipie-params-0:0.0.5-5.1.el8sat.src" + }, + "product_reference": "rubygem-apipie-params-0:0.0.5-5.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-apipie-rails-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-apipie-rails-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-apipie-rails-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-apipie-rails-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-apipie-rails-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-apipie-rails-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-audited-0:5.3.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-audited-0:5.3.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-audited-0:5.3.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-audited-0:5.3.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-audited-0:5.3.2-1.el8sat.src" + }, + "product_reference": "rubygem-audited-0:5.3.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.src" + }, + "product_reference": "rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.noarch" + }, + "product_reference": "rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.src" + }, + "product_reference": "rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.src" + }, + "product_reference": "rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.src" + }, + "product_reference": "rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.src" + }, + "product_reference": "rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-bcrypt-0:3.1.18-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-bcrypt-0:3.1.18-1.el8sat.src" + }, + "product_reference": "rubygem-bcrypt-0:3.1.18-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-bcrypt-0:3.1.18-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-bcrypt-0:3.1.18-1.el8sat.x86_64" + }, + "product_reference": "rubygem-bcrypt-0:3.1.18-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-bcrypt-debuginfo-0:3.1.18-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-bcrypt-debuginfo-0:3.1.18-1.el8sat.x86_64" + }, + "product_reference": "rubygem-bcrypt-debuginfo-0:3.1.18-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-bcrypt-debugsource-0:3.1.18-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-bcrypt-debugsource-0:3.1.18-1.el8sat.x86_64" + }, + "product_reference": "rubygem-bcrypt-debugsource-0:3.1.18-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-builder-0:3.2.4-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-builder-0:3.2.4-2.el8sat.noarch" + }, + "product_reference": "rubygem-builder-0:3.2.4-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-builder-0:3.2.4-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-builder-0:3.2.4-2.el8sat.src" + }, + "product_reference": "rubygem-builder-0:3.2.4-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-bundler_ext-0:0.4.1-6.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-bundler_ext-0:0.4.1-6.el8sat.noarch" + }, + "product_reference": "rubygem-bundler_ext-0:0.4.1-6.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-bundler_ext-0:0.4.1-6.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-bundler_ext-0:0.4.1-6.el8sat.src" + }, + "product_reference": "rubygem-bundler_ext-0:0.4.1-6.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-clamp-0:1.3.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-clamp-0:1.3.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-clamp-0:1.3.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-clamp-0:1.3.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-clamp-0:1.3.2-1.el8sat.src" + }, + "product_reference": "rubygem-clamp-0:1.3.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-coffee-rails-0:5.0.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-coffee-rails-0:5.0.0-2.el8sat.noarch" + }, + "product_reference": "rubygem-coffee-rails-0:5.0.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-coffee-rails-0:5.0.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-coffee-rails-0:5.0.0-2.el8sat.src" + }, + "product_reference": "rubygem-coffee-rails-0:5.0.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-coffee-script-0:2.4.1-5.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-coffee-script-0:2.4.1-5.el8sat.noarch" + }, + "product_reference": "rubygem-coffee-script-0:2.4.1-5.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-coffee-script-0:2.4.1-5.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-coffee-script-0:2.4.1-5.el8sat.src" + }, + "product_reference": "rubygem-coffee-script-0:2.4.1-5.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-coffee-script-source-0:1.12.2-5.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-coffee-script-source-0:1.12.2-5.el8sat.noarch" + }, + "product_reference": "rubygem-coffee-script-source-0:1.12.2-5.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-coffee-script-source-0:1.12.2-5.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-coffee-script-source-0:1.12.2-5.el8sat.src" + }, + "product_reference": "rubygem-coffee-script-source-0:1.12.2-5.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-colorize-0:0.8.1-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-colorize-0:0.8.1-2.el8sat.noarch" + }, + "product_reference": "rubygem-colorize-0:0.8.1-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-colorize-0:0.8.1-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-colorize-0:0.8.1-2.el8sat.src" + }, + "product_reference": "rubygem-colorize-0:0.8.1-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-concurrent-ruby-1:1.1.10-1.el8sat.noarch" + }, + "product_reference": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-concurrent-ruby-1:1.1.10-1.el8sat.src" + }, + "product_reference": "rubygem-concurrent-ruby-1:1.1.10-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.noarch" + }, + "product_reference": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.src" + }, + "product_reference": "rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-connection_pool-0:2.4.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-connection_pool-0:2.4.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-connection_pool-0:2.4.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-connection_pool-0:2.4.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-connection_pool-0:2.4.1-1.el8sat.src" + }, + "product_reference": "rubygem-connection_pool-0:2.4.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-crass-0:1.0.6-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-crass-0:1.0.6-2.el8sat.noarch" + }, + "product_reference": "rubygem-crass-0:1.0.6-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-crass-0:1.0.6-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-crass-0:1.0.6-2.el8sat.src" + }, + "product_reference": "rubygem-crass-0:1.0.6-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-css_parser-0:1.14.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-css_parser-0:1.14.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-css_parser-0:1.14.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-css_parser-0:1.14.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-css_parser-0:1.14.0-1.el8sat.src" + }, + "product_reference": "rubygem-css_parser-0:1.14.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-daemons-0:1.4.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-daemons-0:1.4.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-daemons-0:1.4.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-daemons-0:1.4.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-daemons-0:1.4.1-1.el8sat.src" + }, + "product_reference": "rubygem-daemons-0:1.4.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-deacon-0:1.0.0-5.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-deacon-0:1.0.0-5.el8sat.noarch" + }, + "product_reference": "rubygem-deacon-0:1.0.0-5.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-deacon-0:1.0.0-5.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-deacon-0:1.0.0-5.el8sat.src" + }, + "product_reference": "rubygem-deacon-0:1.0.0-5.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-declarative-0:0.0.20-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-declarative-0:0.0.20-1.el8sat.noarch" + }, + "product_reference": "rubygem-declarative-0:0.0.20-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-declarative-0:0.0.20-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-declarative-0:0.0.20-1.el8sat.src" + }, + "product_reference": "rubygem-declarative-0:0.0.20-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-deep_cloneable-0:3.2.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-deep_cloneable-0:3.2.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-deep_cloneable-0:3.2.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-deep_cloneable-0:3.2.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-deep_cloneable-0:3.2.0-1.el8sat.src" + }, + "product_reference": "rubygem-deep_cloneable-0:3.2.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-deface-0:1.5.3-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-deface-0:1.5.3-3.el8sat.noarch" + }, + "product_reference": "rubygem-deface-0:1.5.3-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-deface-0:1.5.3-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-deface-0:1.5.3-3.el8sat.src" + }, + "product_reference": "rubygem-deface-0:1.5.3-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-diffy-0:3.4.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-diffy-0:3.4.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-diffy-0:3.4.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-diffy-0:3.4.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-diffy-0:3.4.2-1.el8sat.src" + }, + "product_reference": "rubygem-diffy-0:3.4.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch" + }, + "product_reference": "rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-domain_name-0:0.5.20190701-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-domain_name-0:0.5.20190701-1.el8sat.src" + }, + "product_reference": "rubygem-domain_name-0:0.5.20190701-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-dynflow-0:1.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-dynflow-0:1.7.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-dynflow-0:1.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-dynflow-0:1.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-dynflow-0:1.7.0-1.el8sat.src" + }, + "product_reference": "rubygem-dynflow-0:1.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-erubi-0:1.12.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-erubi-0:1.12.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-erubi-0:1.12.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-erubi-0:1.12.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-erubi-0:1.12.0-1.el8sat.src" + }, + "product_reference": "rubygem-erubi-0:1.12.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-et-orbi-0:1.2.7-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-et-orbi-0:1.2.7-1.el8sat.noarch" + }, + "product_reference": "rubygem-et-orbi-0:1.2.7-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-et-orbi-0:1.2.7-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-et-orbi-0:1.2.7-1.el8sat.src" + }, + "product_reference": "rubygem-et-orbi-0:1.2.7-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-excon-0:0.99.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-excon-0:0.99.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-excon-0:0.99.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-excon-0:0.99.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-excon-0:0.99.0-1.el8sat.src" + }, + "product_reference": "rubygem-excon-0:0.99.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-execjs-0:2.8.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-execjs-0:2.8.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-execjs-0:2.8.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-execjs-0:2.8.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-execjs-0:2.8.1-1.el8sat.src" + }, + "product_reference": "rubygem-execjs-0:2.8.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-facter-0:4.4.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-facter-0:4.4.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-facter-0:4.4.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-facter-0:4.4.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-facter-0:4.4.0-1.el8sat.src" + }, + "product_reference": "rubygem-facter-0:4.4.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-0:1.10.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-0:1.10.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-0:1.10.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-0:1.10.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-0:1.10.2-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-0:1.10.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.src" + }, + "product_reference": "rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-em_http-0:1.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-em_http-0:1.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-em_http-0:1.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-excon-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-excon-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-excon-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-excon-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-excon-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-excon-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-httpclient-0:1.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-httpclient-0:1.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-httpclient-0:1.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-multipart-0:1.0.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-multipart-0:1.0.4-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-multipart-0:1.0.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-net_http-0:1.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-net_http-0:1.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-net_http-0:1.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-patron-0:1.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-patron-0:1.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-patron-0:1.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-patron-0:1.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-patron-0:1.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-patron-0:1.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-rack-0:1.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-rack-0:1.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-rack-0:1.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-rack-0:1.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-rack-0:1.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-rack-0:1.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-retry-0:1.0.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-retry-0:1.0.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday-retry-0:1.0.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday-retry-0:1.0.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday-retry-0:1.0.3-1.el8sat.src" + }, + "product_reference": "rubygem-faraday-retry-0:1.0.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday_middleware-0:1.2.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-faraday_middleware-0:1.2.0-1.el8sat.src" + }, + "product_reference": "rubygem-faraday_middleware-0:1.2.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fast_gettext-0:1.8.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fast_gettext-0:1.8.0-1.el8sat.src" + }, + "product_reference": "rubygem-fast_gettext-0:1.8.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ffi-0:1.15.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ffi-0:1.15.5-1.el8sat.src" + }, + "product_reference": "rubygem-ffi-0:1.15.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ffi-0:1.15.5-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ffi-0:1.15.5-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ffi-0:1.15.5-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-aws-0:3.19.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-aws-0:3.19.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-fog-aws-0:3.19.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-aws-0:3.19.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-aws-0:3.19.0-1.el8sat.src" + }, + "product_reference": "rubygem-fog-aws-0:3.19.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-core-0:2.3.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-core-0:2.3.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-fog-core-0:2.3.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-core-0:2.3.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-core-0:2.3.0-1.el8sat.src" + }, + "product_reference": "rubygem-fog-core-0:2.3.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-json-0:1.2.0-4.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-json-0:1.2.0-4.el8sat.noarch" + }, + "product_reference": "rubygem-fog-json-0:1.2.0-4.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-json-0:1.2.0-4.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-json-0:1.2.0-4.el8sat.src" + }, + "product_reference": "rubygem-fog-json-0:1.2.0-4.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-kubevirt-0:1.3.7-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-kubevirt-0:1.3.7-1.el8sat.noarch" + }, + "product_reference": "rubygem-fog-kubevirt-0:1.3.7-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-kubevirt-0:1.3.7-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-kubevirt-0:1.3.7-1.el8sat.src" + }, + "product_reference": "rubygem-fog-kubevirt-0:1.3.7-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-libvirt-0:0.11.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-libvirt-0:0.11.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-fog-libvirt-0:0.11.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-libvirt-0:0.11.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-libvirt-0:0.11.0-1.el8sat.src" + }, + "product_reference": "rubygem-fog-libvirt-0:0.11.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-openstack-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-openstack-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-fog-openstack-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-openstack-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-openstack-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-fog-openstack-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-ovirt-0:2.0.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-ovirt-0:2.0.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-fog-ovirt-0:2.0.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-ovirt-0:2.0.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-ovirt-0:2.0.2-1.el8sat.src" + }, + "product_reference": "rubygem-fog-ovirt-0:2.0.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-vsphere-0:3.6.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-vsphere-0:3.6.2-1.el8sat.src" + }, + "product_reference": "rubygem-fog-vsphere-0:3.6.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-xml-0:0.1.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-xml-0:0.1.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-fog-xml-0:0.1.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fog-xml-0:0.1.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fog-xml-0:0.1.4-1.el8sat.src" + }, + "product_reference": "rubygem-fog-xml-0:0.1.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman-tasks-0:8.1.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman-tasks-0:8.1.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman-tasks-0:8.1.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman-tasks-0:8.1.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman-tasks-0:8.1.4-1.el8sat.src" + }, + "product_reference": "rubygem-foreman-tasks-0:8.1.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_ansible-0:12.0.6-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_ansible-0:12.0.6-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_ansible-0:12.0.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_ansible-0:12.0.6-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_ansible-0:12.0.6-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_ansible-0:12.0.6-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.src" + }, + "product_reference": "rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_discovery-0:22.0.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_discovery-0:22.0.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_discovery-0:22.0.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_discovery-0:22.0.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_discovery-0:22.0.4-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_discovery-0:22.0.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_google-0:1.0.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_google-0:1.0.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_google-0:1.0.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_google-0:1.0.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_google-0:1.0.4-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_google-0:1.0.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.src" + }, + "product_reference": "rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.src" + }, + "product_reference": "rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_leapp-0:0.1.14-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_leapp-0:0.1.14-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_leapp-0:0.1.14-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_leapp-0:0.1.14-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_leapp-0:0.1.14-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_leapp-0:0.1.14-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_maintain-1:1.3.5-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_maintain-1:1.3.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_openscap-0:7.0.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_openscap-0:7.0.0-2.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_openscap-0:7.0.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_openscap-0:7.0.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_openscap-0:7.0.0-2.el8sat.src" + }, + "product_reference": "rubygem-foreman_openscap-0:7.0.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_puppet-0:6.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_puppet-0:6.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_puppet-0:6.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_puppet-0:6.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_puppet-0:6.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_puppet-0:6.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_remote_execution-cockpit-0:10.0.7-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_remote_execution-cockpit-0:10.0.7-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_remote_execution-cockpit-0:10.0.7-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_scap_client-0:0.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_scap_client-0:0.5.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_scap_client-0:0.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_scap_client-0:0.5.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_scap_client-0:0.5.0-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_scap_client-0:0.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_templates-0:9.4.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_templates-0:9.4.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_templates-0:9.4.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_templates-0:9.4.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_templates-0:9.4.0-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_templates-0:9.4.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_webhooks-0:3.2.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_webhooks-0:3.2.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-foreman_webhooks-0:3.2.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-foreman_webhooks-0:3.2.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-foreman_webhooks-0:3.2.1-1.el8sat.src" + }, + "product_reference": "rubygem-foreman_webhooks-0:3.2.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-formatador-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-formatador-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-formatador-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-formatador-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-formatador-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-formatador-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-friendly_id-0:5.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-friendly_id-0:5.5.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-friendly_id-0:5.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-friendly_id-0:5.5.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-friendly_id-0:5.5.0-1.el8sat.src" + }, + "product_reference": "rubygem-friendly_id-0:5.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fugit-0:1.8.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fugit-0:1.8.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-fugit-0:1.8.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fugit-0:1.8.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fugit-0:1.8.1-1.el8sat.src" + }, + "product_reference": "rubygem-fugit-0:1.8.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fx-0:0.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fx-0:0.7.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-fx-0:0.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-fx-0:0.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-fx-0:0.7.0-1.el8sat.src" + }, + "product_reference": "rubygem-fx-0:0.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-gapic-common-0:0.12.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-gapic-common-0:0.12.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-gapic-common-0:0.12.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-gapic-common-0:0.12.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-gapic-common-0:0.12.0-1.el8sat.src" + }, + "product_reference": "rubygem-gapic-common-0:0.12.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-get_process_mem-0:0.2.7-2.1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-get_process_mem-0:0.2.7-2.1.el8sat.noarch" + }, + "product_reference": "rubygem-get_process_mem-0:0.2.7-2.1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-get_process_mem-0:0.2.7-2.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-get_process_mem-0:0.2.7-2.1.el8sat.src" + }, + "product_reference": "rubygem-get_process_mem-0:0.2.7-2.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.src" + }, + "product_reference": "rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-git-0:1.18.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-git-0:1.18.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-git-0:1.18.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-git-0:1.18.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-git-0:1.18.0-1.el8sat.src" + }, + "product_reference": "rubygem-git-0:1.18.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.noarch" + }, + "product_reference": "rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.src" + }, + "product_reference": "rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-globalid-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-globalid-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-globalid-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-globalid-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-globalid-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-globalid-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.src" + }, + "product_reference": "rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-apis-core-0:0.9.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-apis-core-0:0.9.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-google-apis-core-0:0.9.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-apis-core-0:0.9.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-apis-core-0:0.9.1-1.el8sat.src" + }, + "product_reference": "rubygem-google-apis-core-0:0.9.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-cloud-common-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-cloud-common-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-google-cloud-common-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-cloud-common-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-cloud-common-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-google-cloud-common-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-cloud-compute-0:0.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-cloud-compute-0:0.5.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-google-cloud-compute-0:0.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-cloud-compute-0:0.5.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-cloud-compute-0:0.5.0-1.el8sat.src" + }, + "product_reference": "rubygem-google-cloud-compute-0:0.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.src" + }, + "product_reference": "rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-cloud-core-0:1.6.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-cloud-core-0:1.6.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-google-cloud-core-0:1.6.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-cloud-core-0:1.6.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-cloud-core-0:1.6.0-1.el8sat.src" + }, + "product_reference": "rubygem-google-cloud-core-0:1.6.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-cloud-env-0:1.6.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-cloud-env-0:1.6.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-google-cloud-env-0:1.6.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-cloud-env-0:1.6.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-cloud-env-0:1.6.0-1.el8sat.src" + }, + "product_reference": "rubygem-google-cloud-env-0:1.6.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-cloud-errors-0:1.3.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-cloud-errors-0:1.3.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-google-cloud-errors-0:1.3.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-cloud-errors-0:1.3.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-cloud-errors-0:1.3.0-1.el8sat.src" + }, + "product_reference": "rubygem-google-cloud-errors-0:1.3.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-protobuf-0:3.21.6-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-protobuf-0:3.21.6-1.el8sat.src" + }, + "product_reference": "rubygem-google-protobuf-0:3.21.6-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-protobuf-0:3.21.6-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-protobuf-0:3.21.6-1.el8sat.x86_64" + }, + "product_reference": "rubygem-google-protobuf-0:3.21.6-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-protobuf-debuginfo-0:3.21.6-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-protobuf-debuginfo-0:3.21.6-1.el8sat.x86_64" + }, + "product_reference": "rubygem-google-protobuf-debuginfo-0:3.21.6-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-google-protobuf-debugsource-0:3.21.6-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-google-protobuf-debugsource-0:3.21.6-1.el8sat.x86_64" + }, + "product_reference": "rubygem-google-protobuf-debugsource-0:3.21.6-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.noarch" + }, + "product_reference": "rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.src" + }, + "product_reference": "rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.src" + }, + "product_reference": "rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-googleauth-0:1.3.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-googleauth-0:1.3.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-googleauth-0:1.3.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-googleauth-0:1.3.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-googleauth-0:1.3.0-1.el8sat.src" + }, + "product_reference": "rubygem-googleauth-0:1.3.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-graphql-0:1.13.19-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-graphql-0:1.13.19-1.el8sat.noarch" + }, + "product_reference": "rubygem-graphql-0:1.13.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-graphql-0:1.13.19-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-graphql-0:1.13.19-1.el8sat.src" + }, + "product_reference": "rubygem-graphql-0:1.13.19-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-graphql-batch-0:0.5.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-graphql-batch-0:0.5.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-graphql-batch-0:0.5.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-graphql-batch-0:0.5.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-graphql-batch-0:0.5.3-1.el8sat.src" + }, + "product_reference": "rubygem-graphql-batch-0:0.5.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-grpc-0:1.49.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-grpc-0:1.49.1-1.el8sat.src" + }, + "product_reference": "rubygem-grpc-0:1.49.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-grpc-0:1.49.1-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-grpc-0:1.49.1-1.el8sat.x86_64" + }, + "product_reference": "rubygem-grpc-0:1.49.1-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-gssapi-0:1.3.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-gssapi-0:1.3.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-gssapi-0:1.3.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-gssapi-0:1.3.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-gssapi-0:1.3.1-1.el8sat.src" + }, + "product_reference": "rubygem-gssapi-0:1.3.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli-0:3.7.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli-0:3.7.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli-0:3.7.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.src" + }, + "product_reference": "rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hashie-0:5.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hashie-0:5.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hashie-0:5.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hashie-0:5.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hashie-0:5.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-hashie-0:5.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-highline-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-highline-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-highline-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-highline-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-highline-0:2.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-highline-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hocon-0:1.4.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hocon-0:1.4.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-hocon-0:1.4.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-hocon-0:1.4.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-hocon-0:1.4.0-1.el8sat.src" + }, + "product_reference": "rubygem-hocon-0:1.4.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-0:3.3.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-http-0:3.3.0-2.el8sat.noarch" + }, + "product_reference": "rubygem-http-0:3.3.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-0:3.3.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-http-0:3.3.0-2.el8sat.src" + }, + "product_reference": "rubygem-http-0:3.3.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-accept-0:1.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-http-accept-0:1.7.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-http-accept-0:1.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-accept-0:1.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-http-accept-0:1.7.0-1.el8sat.src" + }, + "product_reference": "rubygem-http-accept-0:1.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-cookie-0:1.0.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-http-cookie-0:1.0.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-http-cookie-0:1.0.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-cookie-0:1.0.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-http-cookie-0:1.0.5-1.el8sat.src" + }, + "product_reference": "rubygem-http-cookie-0:1.0.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-form_data-0:2.1.1-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-http-form_data-0:2.1.1-2.el8sat.noarch" + }, + "product_reference": "rubygem-http-form_data-0:2.1.1-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http-form_data-0:2.1.1-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-http-form_data-0:2.1.1-2.el8sat.src" + }, + "product_reference": "rubygem-http-form_data-0:2.1.1-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.src" + }, + "product_reference": "rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.x86_64" + }, + "product_reference": "rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http_parser.rb-debuginfo-0:0.6.0-3.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-http_parser.rb-debuginfo-0:0.6.0-3.1.el8sat.x86_64" + }, + "product_reference": "rubygem-http_parser.rb-debuginfo-0:0.6.0-3.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-http_parser.rb-debugsource-0:0.6.0-3.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-http_parser.rb-debugsource-0:0.6.0-3.1.el8sat.x86_64" + }, + "product_reference": "rubygem-http_parser.rb-debugsource-0:0.6.0-3.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-httpclient-0:2.8.3-4.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-httpclient-0:2.8.3-4.el8sat.noarch" + }, + "product_reference": "rubygem-httpclient-0:2.8.3-4.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-httpclient-0:2.8.3-4.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-httpclient-0:2.8.3-4.el8sat.src" + }, + "product_reference": "rubygem-httpclient-0:2.8.3-4.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-i18n-0:1.13.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-i18n-0:1.13.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-i18n-0:1.13.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-i18n-0:1.13.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-i18n-0:1.13.0-1.el8sat.src" + }, + "product_reference": "rubygem-i18n-0:1.13.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-infoblox-0:3.0.0-4.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-infoblox-0:3.0.0-4.el8sat.noarch" + }, + "product_reference": "rubygem-infoblox-0:3.0.0-4.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-infoblox-0:3.0.0-4.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-infoblox-0:3.0.0-4.el8sat.src" + }, + "product_reference": "rubygem-infoblox-0:3.0.0-4.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-jgrep-0:1.3.3-11.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-jgrep-0:1.3.3-11.el8sat.noarch" + }, + "product_reference": "rubygem-jgrep-0:1.3.3-11.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-jgrep-0:1.3.3-11.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-jgrep-0:1.3.3-11.el8sat.src" + }, + "product_reference": "rubygem-jgrep-0:1.3.3-11.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-journald-logger-0:3.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-journald-logger-0:3.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-journald-logger-0:3.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-journald-logger-0:3.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-journald-logger-0:3.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-journald-logger-0:3.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-journald-native-0:1.0.12-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-journald-native-0:1.0.12-1.el8sat.src" + }, + "product_reference": "rubygem-journald-native-0:1.0.12-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-journald-native-0:1.0.12-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-journald-native-0:1.0.12-1.el8sat.x86_64" + }, + "product_reference": "rubygem-journald-native-0:1.0.12-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-journald-native-debuginfo-0:1.0.12-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-journald-native-debuginfo-0:1.0.12-1.el8sat.x86_64" + }, + "product_reference": "rubygem-journald-native-debuginfo-0:1.0.12-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-journald-native-debugsource-0:1.0.12-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-journald-native-debugsource-0:1.0.12-1.el8sat.x86_64" + }, + "product_reference": "rubygem-journald-native-debugsource-0:1.0.12-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-jsonpath-0:1.1.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-jsonpath-0:1.1.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-jsonpath-0:1.1.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-jsonpath-0:1.1.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-jsonpath-0:1.1.2-1.el8sat.src" + }, + "product_reference": "rubygem-jsonpath-0:1.1.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-jwt-0:2.7.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-jwt-0:2.7.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-jwt-0:2.7.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-jwt-0:2.7.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-jwt-0:2.7.0-1.el8sat.src" + }, + "product_reference": "rubygem-jwt-0:2.7.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kafo-0:7.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-kafo-0:7.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-kafo-0:7.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kafo-0:7.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-kafo-0:7.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-kafo-0:7.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-kafo_parsers-0:1.2.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-kafo_parsers-0:1.2.1-1.el8sat.src" + }, + "product_reference": "rubygem-kafo_parsers-0:1.2.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-kafo_wizards-0:0.0.2-2.el8sat.noarch" + }, + "product_reference": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-kafo_wizards-0:0.0.2-2.el8sat.src" + }, + "product_reference": "rubygem-kafo_wizards-0:0.0.2-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-katello-0:4.9.0.16-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-katello-0:4.9.0.16-1.el8sat.noarch" + }, + "product_reference": "rubygem-katello-0:4.9.0.16-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-katello-0:4.9.0.16-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-katello-0:4.9.0.16-1.el8sat.src" + }, + "product_reference": "rubygem-katello-0:4.9.0.16-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kubeclient-0:4.10.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-kubeclient-0:4.10.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-kubeclient-0:4.10.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-kubeclient-0:4.10.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-kubeclient-0:4.10.1-1.el8sat.src" + }, + "product_reference": "rubygem-kubeclient-0:4.10.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ldap_fluff-0:0.6.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ldap_fluff-0:0.6.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-ldap_fluff-0:0.6.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ldap_fluff-0:0.6.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ldap_fluff-0:0.6.0-1.el8sat.src" + }, + "product_reference": "rubygem-ldap_fluff-0:0.6.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-little-plugger-0:1.1.4-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-little-plugger-0:1.1.4-3.el8sat.noarch" + }, + "product_reference": "rubygem-little-plugger-0:1.1.4-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-little-plugger-0:1.1.4-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-little-plugger-0:1.1.4-3.el8sat.src" + }, + "product_reference": "rubygem-little-plugger-0:1.1.4-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-locale-0:2.1.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-locale-0:2.1.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-locale-0:2.1.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-locale-0:2.1.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-locale-0:2.1.3-1.el8sat.src" + }, + "product_reference": "rubygem-locale-0:2.1.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-logging-0:2.3.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-logging-0:2.3.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-logging-0:2.3.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-logging-0:2.3.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-logging-0:2.3.1-1.el8sat.src" + }, + "product_reference": "rubygem-logging-0:2.3.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-logging-journald-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-logging-journald-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-logging-journald-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-logging-journald-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-logging-journald-0:2.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-logging-journald-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-loofah-0:2.21.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-loofah-0:2.21.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-loofah-0:2.21.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-loofah-0:2.21.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-loofah-0:2.21.3-1.el8sat.src" + }, + "product_reference": "rubygem-loofah-0:2.21.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mail-0:2.8.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-mail-0:2.8.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-mail-0:2.8.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mail-0:2.8.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-mail-0:2.8.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-mail-0:2.8.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-marcel-0:1.0.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-marcel-0:1.0.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-marcel-0:1.0.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-marcel-0:1.0.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-marcel-0:1.0.2-1.el8sat.src" + }, + "product_reference": "rubygem-marcel-0:1.0.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-memoist-0:0.16.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-memoist-0:0.16.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-memoist-0:0.16.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-memoist-0:0.16.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-memoist-0:0.16.2-1.el8sat.src" + }, + "product_reference": "rubygem-memoist-0:0.16.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-method_source-0:1.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-method_source-0:1.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-method_source-0:1.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-method_source-0:1.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-method_source-0:1.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-method_source-0:1.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mime-types-0:3.4.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-mime-types-0:3.4.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-mime-types-0:3.4.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mime-types-0:3.4.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-mime-types-0:3.4.1-1.el8sat.src" + }, + "product_reference": "rubygem-mime-types-0:3.4.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src" + }, + "product_reference": "rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mini_mime-0:1.1.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-mini_mime-0:1.1.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-mini_mime-0:1.1.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mini_mime-0:1.1.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-mini_mime-0:1.1.2-1.el8sat.src" + }, + "product_reference": "rubygem-mini_mime-0:1.1.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mqtt-0:0.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-mqtt-0:0.5.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-mqtt-0:0.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mqtt-0:0.5.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-mqtt-0:0.5.0-1.el8sat.src" + }, + "product_reference": "rubygem-mqtt-0:0.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ms_rest-0:0.7.6-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ms_rest-0:0.7.6-1.el8sat.noarch" + }, + "product_reference": "rubygem-ms_rest-0:0.7.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ms_rest-0:0.7.6-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ms_rest-0:0.7.6-1.el8sat.src" + }, + "product_reference": "rubygem-ms_rest-0:0.7.6-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ms_rest_azure-0:0.12.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ms_rest_azure-0:0.12.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-ms_rest_azure-0:0.12.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ms_rest_azure-0:0.12.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ms_rest_azure-0:0.12.0-1.el8sat.src" + }, + "product_reference": "rubygem-ms_rest_azure-0:0.12.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-msgpack-0:1.7.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-msgpack-0:1.7.1-1.el8sat.src" + }, + "product_reference": "rubygem-msgpack-0:1.7.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-msgpack-0:1.7.1-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-msgpack-0:1.7.1-1.el8sat.x86_64" + }, + "product_reference": "rubygem-msgpack-0:1.7.1-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-msgpack-debuginfo-0:1.7.1-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-msgpack-debuginfo-0:1.7.1-1.el8sat.x86_64" + }, + "product_reference": "rubygem-msgpack-debuginfo-0:1.7.1-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-msgpack-debugsource-0:1.7.1-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-msgpack-debugsource-0:1.7.1-1.el8sat.x86_64" + }, + "product_reference": "rubygem-msgpack-debugsource-0:1.7.1-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-multi_json-0:1.15.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-multi_json-0:1.15.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-multi_json-0:1.15.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-multi_json-0:1.15.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-multi_json-0:1.15.0-1.el8sat.src" + }, + "product_reference": "rubygem-multi_json-0:1.15.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-multipart-post-0:2.2.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-multipart-post-0:2.2.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-multipart-post-0:2.2.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-multipart-post-0:2.2.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-multipart-post-0:2.2.3-1.el8sat.src" + }, + "product_reference": "rubygem-multipart-post-0:2.2.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mustermann-0:2.0.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-mustermann-0:2.0.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-mustermann-0:2.0.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-mustermann-0:2.0.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-mustermann-0:2.0.2-1.el8sat.src" + }, + "product_reference": "rubygem-mustermann-0:2.0.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-ldap-0:0.18.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-net-ldap-0:0.18.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-net-ldap-0:0.18.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-ldap-0:0.18.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-net-ldap-0:0.18.0-1.el8sat.src" + }, + "product_reference": "rubygem-net-ldap-0:0.18.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-ping-0:2.0.8-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-net-ping-0:2.0.8-1.el8sat.noarch" + }, + "product_reference": "rubygem-net-ping-0:2.0.8-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-ping-0:2.0.8-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-net-ping-0:2.0.8-1.el8sat.src" + }, + "product_reference": "rubygem-net-ping-0:2.0.8-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-scp-0:4.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-net-scp-0:4.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-net-scp-0:4.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-scp-0:4.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-net-scp-0:4.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-net-scp-0:4.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-ssh-0:7.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-net-ssh-0:7.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-net-ssh-0:7.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-ssh-0:7.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-net-ssh-0:7.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-net-ssh-0:7.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-net-ssh-krb-0:0.4.0-4.el8sat.noarch" + }, + "product_reference": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-net-ssh-krb-0:0.4.0-4.el8sat.src" + }, + "product_reference": "rubygem-net-ssh-krb-0:0.4.0-4.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net_http_unix-0:0.2.2-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-net_http_unix-0:0.2.2-2.el8sat.noarch" + }, + "product_reference": "rubygem-net_http_unix-0:0.2.2-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-net_http_unix-0:0.2.2-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-net_http_unix-0:0.2.2-2.el8sat.src" + }, + "product_reference": "rubygem-net_http_unix-0:0.2.2-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-netrc-0:0.11.0-6.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-netrc-0:0.11.0-6.el8sat.noarch" + }, + "product_reference": "rubygem-netrc-0:0.11.0-6.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-netrc-0:0.11.0-6.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-netrc-0:0.11.0-6.el8sat.src" + }, + "product_reference": "rubygem-netrc-0:0.11.0-6.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-newt-0:0.9.7-3.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-newt-0:0.9.7-3.1.el8sat.src" + }, + "product_reference": "rubygem-newt-0:0.9.7-3.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-newt-0:0.9.7-3.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-newt-0:0.9.7-3.1.el8sat.x86_64" + }, + "product_reference": "rubygem-newt-0:0.9.7-3.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-newt-debuginfo-0:0.9.7-3.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-newt-debuginfo-0:0.9.7-3.1.el8sat.x86_64" + }, + "product_reference": "rubygem-newt-debuginfo-0:0.9.7-3.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-newt-debugsource-0:0.9.7-3.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-newt-debugsource-0:0.9.7-3.1.el8sat.x86_64" + }, + "product_reference": "rubygem-newt-debugsource-0:0.9.7-3.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-nio4r-0:2.5.9-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-nio4r-0:2.5.9-1.el8sat.src" + }, + "product_reference": "rubygem-nio4r-0:2.5.9-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-nio4r-0:2.5.9-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-nio4r-0:2.5.9-1.el8sat.x86_64" + }, + "product_reference": "rubygem-nio4r-0:2.5.9-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-nio4r-debuginfo-0:2.5.9-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-nio4r-debuginfo-0:2.5.9-1.el8sat.x86_64" + }, + "product_reference": "rubygem-nio4r-debuginfo-0:2.5.9-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-nio4r-debugsource-0:2.5.9-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-nio4r-debugsource-0:2.5.9-1.el8sat.x86_64" + }, + "product_reference": "rubygem-nio4r-debugsource-0:2.5.9-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-nokogiri-0:1.15.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-nokogiri-0:1.15.0-1.el8sat.src" + }, + "product_reference": "rubygem-nokogiri-0:1.15.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-nokogiri-0:1.15.0-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-nokogiri-0:1.15.0-1.el8sat.x86_64" + }, + "product_reference": "rubygem-nokogiri-0:1.15.0-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-nokogiri-debuginfo-0:1.15.0-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-nokogiri-debuginfo-0:1.15.0-1.el8sat.x86_64" + }, + "product_reference": "rubygem-nokogiri-debuginfo-0:1.15.0-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-nokogiri-debugsource-0:1.15.0-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-nokogiri-debugsource-0:1.15.0-1.el8sat.x86_64" + }, + "product_reference": "rubygem-nokogiri-debugsource-0:1.15.0-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-oauth-0:1.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-oauth-0:1.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-oauth-0:1.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-oauth-0:1.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-oauth-0:1.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-oauth-0:1.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-oauth-tty-0:1.0.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-oauth-tty-0:1.0.5-1.el8sat.src" + }, + "product_reference": "rubygem-oauth-tty-0:1.0.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-openscap-0:0.4.9-9.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-openscap-0:0.4.9-9.el8sat.noarch" + }, + "product_reference": "rubygem-openscap-0:0.4.9-9.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-openscap-0:0.4.9-9.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-openscap-0:0.4.9-9.el8sat.src" + }, + "product_reference": "rubygem-openscap-0:0.4.9-9.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-openscap_parser-0:1.0.2-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-openscap_parser-0:1.0.2-2.el8sat.noarch" + }, + "product_reference": "rubygem-openscap_parser-0:1.0.2-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-openscap_parser-0:1.0.2-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-openscap_parser-0:1.0.2-2.el8sat.src" + }, + "product_reference": "rubygem-openscap_parser-0:1.0.2-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-optimist-0:3.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-optimist-0:3.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-optimist-0:3.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-optimist-0:3.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-optimist-0:3.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-optimist-0:3.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-os-0:1.1.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-os-0:1.1.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-os-0:1.1.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-os-0:1.1.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-os-0:1.1.4-1.el8sat.src" + }, + "product_reference": "rubygem-os-0:1.1.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.src" + }, + "product_reference": "rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ovirt-engine-sdk-debuginfo-0:4.4.1-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ovirt-engine-sdk-debuginfo-0:4.4.1-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ovirt-engine-sdk-debuginfo-0:4.4.1-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ovirt-engine-sdk-debugsource-0:4.4.1-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ovirt-engine-sdk-debugsource-0:4.4.1-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ovirt-engine-sdk-debugsource-0:4.4.1-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.noarch" + }, + "product_reference": "rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.src" + }, + "product_reference": "rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-parallel-0:1.23.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-parallel-0:1.23.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-parallel-0:1.23.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-parallel-0:1.23.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-parallel-0:1.23.0-1.el8sat.src" + }, + "product_reference": "rubygem-parallel-0:1.23.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pg-0:1.5.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pg-0:1.5.3-1.el8sat.src" + }, + "product_reference": "rubygem-pg-0:1.5.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pg-0:1.5.3-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pg-0:1.5.3-1.el8sat.x86_64" + }, + "product_reference": "rubygem-pg-0:1.5.3-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pg-debuginfo-0:1.5.3-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pg-debuginfo-0:1.5.3-1.el8sat.x86_64" + }, + "product_reference": "rubygem-pg-debuginfo-0:1.5.3-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pg-debugsource-0:1.5.3-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pg-debugsource-0:1.5.3-1.el8sat.x86_64" + }, + "product_reference": "rubygem-pg-debugsource-0:1.5.3-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-polyglot-0:0.3.5-3.1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-polyglot-0:0.3.5-3.1.el8sat.noarch" + }, + "product_reference": "rubygem-polyglot-0:0.3.5-3.1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-polyglot-0:0.3.5-3.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-polyglot-0:0.3.5-3.1.el8sat.src" + }, + "product_reference": "rubygem-polyglot-0:0.3.5-3.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-powerbar-0:2.0.1-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-powerbar-0:2.0.1-3.el8sat.noarch" + }, + "product_reference": "rubygem-powerbar-0:2.0.1-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-powerbar-0:2.0.1-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-powerbar-0:2.0.1-3.el8sat.src" + }, + "product_reference": "rubygem-powerbar-0:2.0.1-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-prometheus-client-0:4.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-prometheus-client-0:4.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-prometheus-client-0:4.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-prometheus-client-0:4.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-prometheus-client-0:4.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-prometheus-client-0:4.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-promise.rb-0:0.7.4-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-promise.rb-0:0.7.4-3.el8sat.noarch" + }, + "product_reference": "rubygem-promise.rb-0:0.7.4-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-promise.rb-0:0.7.4-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-promise.rb-0:0.7.4-3.el8sat.src" + }, + "product_reference": "rubygem-promise.rb-0:0.7.4-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-public_suffix-0:5.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-public_suffix-0:5.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-public_suffix-0:5.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-public_suffix-0:5.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-public_suffix-0:5.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-public_suffix-0:5.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.src" + }, + "product_reference": "rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.src" + }, + "product_reference": "rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_container_client-0:2.14.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_container_client-0:2.14.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-pulp_container_client-0:2.14.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_container_client-0:2.14.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_container_client-0:2.14.5-1.el8sat.src" + }, + "product_reference": "rubygem-pulp_container_client-0:2.14.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_deb_client-0:2.20.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_deb_client-0:2.20.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-pulp_deb_client-0:2.20.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_deb_client-0:2.20.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_deb_client-0:2.20.2-1.el8sat.src" + }, + "product_reference": "rubygem-pulp_deb_client-0:2.20.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_file_client-0:1.12.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_file_client-0:1.12.0-2.el8sat.noarch" + }, + "product_reference": "rubygem-pulp_file_client-0:1.12.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_file_client-0:1.12.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_file_client-0:1.12.0-2.el8sat.src" + }, + "product_reference": "rubygem-pulp_file_client-0:1.12.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_python_client-0:3.8.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_python_client-0:3.8.0-2.el8sat.noarch" + }, + "product_reference": "rubygem-pulp_python_client-0:3.8.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_python_client-0:3.8.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_python_client-0:3.8.0-2.el8sat.src" + }, + "product_reference": "rubygem-pulp_python_client-0:3.8.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.noarch" + }, + "product_reference": "rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.src" + }, + "product_reference": "rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulpcore_client-1:3.22.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulpcore_client-1:3.22.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-pulpcore_client-1:3.22.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-pulpcore_client-1:3.22.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-pulpcore_client-1:3.22.4-1.el8sat.src" + }, + "product_reference": "rubygem-pulpcore_client-1:3.22.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-puma-0:6.2.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-puma-0:6.2.2-1.el8sat.src" + }, + "product_reference": "rubygem-puma-0:6.2.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-puma-0:6.2.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-puma-0:6.2.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-puma-0:6.2.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-puma-debuginfo-0:6.2.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-puma-debuginfo-0:6.2.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-puma-debuginfo-0:6.2.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-puma-debugsource-0:6.2.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-puma-debugsource-0:6.2.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-puma-debugsource-0:6.2.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-puma-status-0:1.6-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-puma-status-0:1.6-1.el8sat.noarch" + }, + "product_reference": "rubygem-puma-status-0:1.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-puma-status-0:1.6-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-puma-status-0:1.6-1.el8sat.src" + }, + "product_reference": "rubygem-puma-status-0:1.6-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-qpid_proton-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-qpid_proton-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "rubygem-qpid_proton-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-qpid_proton-0:0.33.0-5.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-qpid_proton-0:0.33.0-5.el8sat.src" + }, + "product_reference": "rubygem-qpid_proton-0:0.33.0-5.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-qpid_proton-0:0.33.0-5.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-qpid_proton-0:0.33.0-5.el8sat.x86_64" + }, + "product_reference": "rubygem-qpid_proton-0:0.33.0-5.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-qpid_proton-debuginfo-0:0.33.0-4.el8.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-qpid_proton-debuginfo-0:0.33.0-4.el8.x86_64" + }, + "product_reference": "rubygem-qpid_proton-debuginfo-0:0.33.0-4.el8.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-qpid_proton-debuginfo-0:0.33.0-5.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-qpid_proton-debuginfo-0:0.33.0-5.el8sat.x86_64" + }, + "product_reference": "rubygem-qpid_proton-debuginfo-0:0.33.0-5.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-qpid_proton-debugsource-0:0.33.0-5.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-qpid_proton-debugsource-0:0.33.0-5.el8sat.x86_64" + }, + "product_reference": "rubygem-qpid_proton-debugsource-0:0.33.0-5.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-raabro-0:1.4.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-raabro-0:1.4.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-raabro-0:1.4.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-raabro-0:1.4.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-raabro-0:1.4.0-1.el8sat.src" + }, + "product_reference": "rubygem-raabro-0:1.4.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rabl-0:0.16.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rabl-0:0.16.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-rabl-0:0.16.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rabl-0:0.16.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rabl-0:0.16.1-1.el8sat.src" + }, + "product_reference": "rubygem-rabl-0:0.16.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-0:2.2.7-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rack-0:2.2.7-1.el8sat.noarch" + }, + "product_reference": "rubygem-rack-0:2.2.7-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-0:2.2.7-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rack-0:2.2.7-1.el8sat.src" + }, + "product_reference": "rubygem-rack-0:2.2.7-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-cors-0:1.1.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rack-cors-0:1.1.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-rack-cors-0:1.1.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-cors-0:1.1.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rack-cors-0:1.1.1-1.el8sat.src" + }, + "product_reference": "rubygem-rack-cors-0:1.1.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-jsonp-0:1.3.1-10.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rack-jsonp-0:1.3.1-10.el8sat.noarch" + }, + "product_reference": "rubygem-rack-jsonp-0:1.3.1-10.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-jsonp-0:1.3.1-10.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rack-jsonp-0:1.3.1-10.el8sat.src" + }, + "product_reference": "rubygem-rack-jsonp-0:1.3.1-10.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-protection-0:2.2.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rack-protection-0:2.2.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-rack-protection-0:2.2.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-protection-0:2.2.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rack-protection-0:2.2.4-1.el8sat.src" + }, + "product_reference": "rubygem-rack-protection-0:2.2.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-test-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rack-test-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-rack-test-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rack-test-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rack-test-0:2.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-rack-test-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rails-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rails-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-rails-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rails-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rails-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-rails-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rails-dom-testing-0:2.0.3-7.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rails-dom-testing-0:2.0.3-7.el8sat.noarch" + }, + "product_reference": "rubygem-rails-dom-testing-0:2.0.3-7.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rails-dom-testing-0:2.0.3-7.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rails-dom-testing-0:2.0.3-7.el8sat.src" + }, + "product_reference": "rubygem-rails-dom-testing-0:2.0.3-7.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.src" + }, + "product_reference": "rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rails-i18n-0:7.0.7-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rails-i18n-0:7.0.7-1.el8sat.noarch" + }, + "product_reference": "rubygem-rails-i18n-0:7.0.7-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rails-i18n-0:7.0.7-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rails-i18n-0:7.0.7-1.el8sat.src" + }, + "product_reference": "rubygem-rails-i18n-0:7.0.7-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-railties-0:6.1.7.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-railties-0:6.1.7.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-railties-0:6.1.7.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-railties-0:6.1.7.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-railties-0:6.1.7.3-1.el8sat.src" + }, + "product_reference": "rubygem-railties-0:6.1.7.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rainbow-0:2.2.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rainbow-0:2.2.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-rainbow-0:2.2.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rainbow-0:2.2.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rainbow-0:2.2.2-1.el8sat.src" + }, + "product_reference": "rubygem-rainbow-0:2.2.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rb-inotify-0:0.10.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rb-inotify-0:0.10.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-rb-inotify-0:0.10.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rb-inotify-0:0.10.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rb-inotify-0:0.10.1-1.el8sat.src" + }, + "product_reference": "rubygem-rb-inotify-0:0.10.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rbnacl-0:4.0.2-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rbnacl-0:4.0.2-2.el8sat.noarch" + }, + "product_reference": "rubygem-rbnacl-0:4.0.2-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rbnacl-0:4.0.2-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rbnacl-0:4.0.2-2.el8sat.src" + }, + "product_reference": "rubygem-rbnacl-0:4.0.2-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rbvmomi2-0:3.6.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rbvmomi2-0:3.6.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-rbvmomi2-0:3.6.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rbvmomi2-0:3.6.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rbvmomi2-0:3.6.1-1.el8sat.src" + }, + "product_reference": "rubygem-rbvmomi2-0:3.6.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rchardet-0:1.8.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rchardet-0:1.8.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-rchardet-0:1.8.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rchardet-0:1.8.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rchardet-0:1.8.0-1.el8sat.src" + }, + "product_reference": "rubygem-rchardet-0:1.8.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-recursive-open-struct-0:1.1.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-recursive-open-struct-0:1.1.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-recursive-open-struct-0:1.1.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-recursive-open-struct-0:1.1.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-recursive-open-struct-0:1.1.3-1.el8sat.src" + }, + "product_reference": "rubygem-recursive-open-struct-0:1.1.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-redfish_client-0:0.5.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-redfish_client-0:0.5.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-redfish_client-0:0.5.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-redfish_client-0:0.5.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-redfish_client-0:0.5.4-1.el8sat.src" + }, + "product_reference": "rubygem-redfish_client-0:0.5.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-redis-0:4.5.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-redis-0:4.5.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-redis-0:4.5.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-redis-0:4.5.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-redis-0:4.5.1-1.el8sat.src" + }, + "product_reference": "rubygem-redis-0:4.5.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-representable-0:3.2.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-representable-0:3.2.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-representable-0:3.2.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-representable-0:3.2.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-representable-0:3.2.0-1.el8sat.src" + }, + "product_reference": "rubygem-representable-0:3.2.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-responders-0:3.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-responders-0:3.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-responders-0:3.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-responders-0:3.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-responders-0:3.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-responders-0:3.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rest-client-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rest-client-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-rest-client-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rest-client-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rest-client-0:2.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-rest-client-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-retriable-0:3.1.2-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-retriable-0:3.1.2-3.el8sat.noarch" + }, + "product_reference": "rubygem-retriable-0:3.1.2-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-retriable-0:3.1.2-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-retriable-0:3.1.2-3.el8sat.src" + }, + "product_reference": "rubygem-retriable-0:3.1.2-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rkerberos-0:0.1.5-20.1.el8sat.src" + }, + "product_reference": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rkerberos-0:0.1.5-20.1.el8sat.x86_64" + }, + "product_reference": "rubygem-rkerberos-0:0.1.5-20.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rkerberos-debuginfo-0:0.1.5-20.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rkerberos-debuginfo-0:0.1.5-20.1.el8sat.x86_64" + }, + "product_reference": "rubygem-rkerberos-debuginfo-0:0.1.5-20.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rkerberos-debugsource-0:0.1.5-20.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rkerberos-debugsource-0:0.1.5-20.1.el8sat.x86_64" + }, + "product_reference": "rubygem-rkerberos-debugsource-0:0.1.5-20.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-roadie-0:5.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-roadie-0:5.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-roadie-0:5.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-roadie-0:5.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-roadie-0:5.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-roadie-0:5.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-roadie-rails-0:3.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-roadie-rails-0:3.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-roadie-rails-0:3.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-roadie-rails-0:3.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-roadie-rails-0:3.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-roadie-rails-0:3.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-robotex-0:1.0.0-22.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-robotex-0:1.0.0-22.el8sat.noarch" + }, + "product_reference": "rubygem-robotex-0:1.0.0-22.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-robotex-0:1.0.0-22.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-robotex-0:1.0.0-22.el8sat.src" + }, + "product_reference": "rubygem-robotex-0:1.0.0-22.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rsec-0:0.4.3-5.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rsec-0:0.4.3-5.el8sat.noarch" + }, + "product_reference": "rubygem-rsec-0:0.4.3-5.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rsec-0:0.4.3-5.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rsec-0:0.4.3-5.el8sat.src" + }, + "product_reference": "rubygem-rsec-0:0.4.3-5.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ruby-libvirt-0:0.8.0-1.el8sat.src" + }, + "product_reference": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ruby-libvirt-0:0.8.0-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ruby-libvirt-0:0.8.0-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby-libvirt-debuginfo-0:0.8.0-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ruby-libvirt-debuginfo-0:0.8.0-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ruby-libvirt-debuginfo-0:0.8.0-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby-libvirt-debugsource-0:0.8.0-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ruby-libvirt-debugsource-0:0.8.0-1.el8sat.x86_64" + }, + "product_reference": "rubygem-ruby-libvirt-debugsource-0:0.8.0-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ruby2_keywords-0:0.0.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ruby2_keywords-0:0.0.5-1.el8sat.src" + }, + "product_reference": "rubygem-ruby2_keywords-0:0.0.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby2ruby-0:2.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ruby2ruby-0:2.5.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-ruby2ruby-0:2.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby2ruby-0:2.5.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ruby2ruby-0:2.5.0-1.el8sat.src" + }, + "product_reference": "rubygem-ruby2ruby-0:2.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby_parser-0:3.20.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ruby_parser-0:3.20.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-ruby_parser-0:3.20.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-ruby_parser-0:3.20.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-ruby_parser-0:3.20.1-1.el8sat.src" + }, + "product_reference": "rubygem-ruby_parser-0:3.20.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rubyipmi-0:0.11.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rubyipmi-0:0.11.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-rubyipmi-0:0.11.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-rubyipmi-0:0.11.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-rubyipmi-0:0.11.1-1.el8sat.src" + }, + "product_reference": "rubygem-rubyipmi-0:0.11.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-safemode-0:1.3.8-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-safemode-0:1.3.8-1.el8sat.noarch" + }, + "product_reference": "rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-safemode-0:1.3.8-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-safemode-0:1.3.8-1.el8sat.src" + }, + "product_reference": "rubygem-safemode-0:1.3.8-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-scoped_search-0:4.1.11-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-scoped_search-0:4.1.11-1.el8sat.noarch" + }, + "product_reference": "rubygem-scoped_search-0:4.1.11-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-scoped_search-0:4.1.11-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-scoped_search-0:4.1.11-1.el8sat.src" + }, + "product_reference": "rubygem-scoped_search-0:4.1.11-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sd_notify-0:0.1.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sd_notify-0:0.1.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-sd_notify-0:0.1.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sd_notify-0:0.1.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sd_notify-0:0.1.1-1.el8sat.src" + }, + "product_reference": "rubygem-sd_notify-0:0.1.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-secure_headers-0:6.5.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-secure_headers-0:6.5.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-secure_headers-0:6.5.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-secure_headers-0:6.5.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-secure_headers-0:6.5.0-1.el8sat.src" + }, + "product_reference": "rubygem-secure_headers-0:6.5.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sequel-0:5.68.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sequel-0:5.68.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-sequel-0:5.68.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sequel-0:5.68.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sequel-0:5.68.0-1.el8sat.src" + }, + "product_reference": "rubygem-sequel-0:5.68.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-server_sent_events-0:0.1.3-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-server_sent_events-0:0.1.3-1.el8sat.noarch" + }, + "product_reference": "rubygem-server_sent_events-0:0.1.3-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-server_sent_events-0:0.1.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-server_sent_events-0:0.1.3-1.el8sat.src" + }, + "product_reference": "rubygem-server_sent_events-0:0.1.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sexp_processor-0:4.17.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sexp_processor-0:4.17.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-sexp_processor-0:4.17.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sexp_processor-0:4.17.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sexp_processor-0:4.17.0-1.el8sat.src" + }, + "product_reference": "rubygem-sexp_processor-0:4.17.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sidekiq-0:6.3.1-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sidekiq-0:6.3.1-2.el8sat.noarch" + }, + "product_reference": "rubygem-sidekiq-0:6.3.1-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sidekiq-0:6.3.1-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sidekiq-0:6.3.1-2.el8sat.src" + }, + "product_reference": "rubygem-sidekiq-0:6.3.1-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-signet-0:0.17.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-signet-0:0.17.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-signet-0:0.17.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-signet-0:0.17.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-signet-0:0.17.0-1.el8sat.src" + }, + "product_reference": "rubygem-signet-0:0.17.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sinatra-1:2.2.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sinatra-1:2.2.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-sinatra-1:2.2.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sinatra-1:2.2.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sinatra-1:2.2.4-1.el8sat.src" + }, + "product_reference": "rubygem-sinatra-1:2.2.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.noarch" + }, + "product_reference": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.src" + }, + "product_reference": "rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-snaky_hash-0:2.0.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-snaky_hash-0:2.0.1-1.el8sat.src" + }, + "product_reference": "rubygem-snaky_hash-0:2.0.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sprockets-0:4.2.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sprockets-0:4.2.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-sprockets-0:4.2.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sprockets-0:4.2.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sprockets-0:4.2.0-1.el8sat.src" + }, + "product_reference": "rubygem-sprockets-0:4.2.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sprockets-rails-0:3.4.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sprockets-rails-0:3.4.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-sprockets-rails-0:3.4.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sprockets-rails-0:3.4.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sprockets-rails-0:3.4.2-1.el8sat.src" + }, + "product_reference": "rubygem-sprockets-rails-0:3.4.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sqlite3-0:1.4.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sqlite3-0:1.4.2-1.el8sat.src" + }, + "product_reference": "rubygem-sqlite3-0:1.4.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sqlite3-0:1.4.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sqlite3-0:1.4.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-sqlite3-0:1.4.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sqlite3-debuginfo-0:1.4.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sqlite3-debuginfo-0:1.4.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-sqlite3-debuginfo-0:1.4.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sqlite3-debugsource-0:1.4.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sqlite3-debugsource-0:1.4.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-sqlite3-debugsource-0:1.4.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sshkey-0:2.0.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sshkey-0:2.0.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-sshkey-0:2.0.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-sshkey-0:2.0.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-sshkey-0:2.0.0-1.el8sat.src" + }, + "product_reference": "rubygem-sshkey-0:2.0.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-statsd-instrument-0:2.9.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-statsd-instrument-0:2.9.2-1.el8sat.src" + }, + "product_reference": "rubygem-statsd-instrument-0:2.9.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-stomp-0:1.4.10-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-stomp-0:1.4.10-1.el8sat.noarch" + }, + "product_reference": "rubygem-stomp-0:1.4.10-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-stomp-0:1.4.10-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-stomp-0:1.4.10-1.el8sat.src" + }, + "product_reference": "rubygem-stomp-0:1.4.10-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-thor-0:1.2.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-thor-0:1.2.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-thor-0:1.2.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-thor-0:1.2.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-thor-0:1.2.2-1.el8sat.src" + }, + "product_reference": "rubygem-thor-0:1.2.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-tilt-0:2.1.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-tilt-0:2.1.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-tilt-0:2.1.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-tilt-0:2.1.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-tilt-0:2.1.0-1.el8sat.src" + }, + "product_reference": "rubygem-tilt-0:2.1.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-timeliness-0:0.3.10-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-timeliness-0:0.3.10-2.el8sat.noarch" + }, + "product_reference": "rubygem-timeliness-0:0.3.10-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-timeliness-0:0.3.10-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-timeliness-0:0.3.10-2.el8sat.src" + }, + "product_reference": "rubygem-timeliness-0:0.3.10-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-trailblazer-option-0:0.1.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-trailblazer-option-0:0.1.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-trailblazer-option-0:0.1.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-trailblazer-option-0:0.1.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-trailblazer-option-0:0.1.2-1.el8sat.src" + }, + "product_reference": "rubygem-trailblazer-option-0:0.1.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-tzinfo-0:2.0.6-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-tzinfo-0:2.0.6-1.el8sat.noarch" + }, + "product_reference": "rubygem-tzinfo-0:2.0.6-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-tzinfo-0:2.0.6-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-tzinfo-0:2.0.6-1.el8sat.src" + }, + "product_reference": "rubygem-tzinfo-0:2.0.6-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-uber-0:0.1.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-uber-0:0.1.0-3.el8sat.noarch" + }, + "product_reference": "rubygem-uber-0:0.1.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-uber-0:0.1.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-uber-0:0.1.0-3.el8sat.src" + }, + "product_reference": "rubygem-uber-0:0.1.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf-0:0.1.4-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-unf-0:0.1.4-1.el8sat.noarch" + }, + "product_reference": "rubygem-unf-0:0.1.4-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf-0:0.1.4-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-unf-0:0.1.4-1.el8sat.src" + }, + "product_reference": "rubygem-unf-0:0.1.4-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-unf_ext-0:0.0.8.2-1.el8sat.src" + }, + "product_reference": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64" + }, + "product_reference": "rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-unicode-0:0.4.4.4-4.1.el8sat.src" + }, + "product_reference": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-unicode-0:0.4.4.4-4.1.el8sat.x86_64" + }, + "product_reference": "rubygem-unicode-0:0.4.4.4-4.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unicode-debuginfo-0:0.4.4.4-4.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-unicode-debuginfo-0:0.4.4.4-4.1.el8sat.x86_64" + }, + "product_reference": "rubygem-unicode-debuginfo-0:0.4.4.4-4.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unicode-debugsource-0:0.4.4.4-4.1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-unicode-debugsource-0:0.4.4.4-4.1.el8sat.x86_64" + }, + "product_reference": "rubygem-unicode-debugsource-0:0.4.4.4-4.1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-unicode-display_width-0:1.8.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-unicode-display_width-0:1.8.0-1.el8sat.src" + }, + "product_reference": "rubygem-unicode-display_width-0:1.8.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.noarch" + }, + "product_reference": "rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.src" + }, + "product_reference": "rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-version_gem-0:1.1.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-version_gem-0:1.1.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-version_gem-0:1.1.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-version_gem-0:1.1.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-version_gem-0:1.1.2-1.el8sat.src" + }, + "product_reference": "rubygem-version_gem-0:1.1.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-webpack-rails-0:0.9.11-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-webpack-rails-0:0.9.11-1.el8sat.noarch" + }, + "product_reference": "rubygem-webpack-rails-0:0.9.11-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-webpack-rails-0:0.9.11-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-webpack-rails-0:0.9.11-1.el8sat.src" + }, + "product_reference": "rubygem-webpack-rails-0:0.9.11-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-webrick-0:1.8.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-webrick-0:1.8.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-webrick-0:1.8.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-webrick-0:1.8.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-webrick-0:1.8.1-1.el8sat.src" + }, + "product_reference": "rubygem-webrick-0:1.8.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-websocket-driver-0:0.7.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-websocket-driver-0:0.7.5-1.el8sat.src" + }, + "product_reference": "rubygem-websocket-driver-0:0.7.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-websocket-driver-0:0.7.5-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-websocket-driver-0:0.7.5-1.el8sat.x86_64" + }, + "product_reference": "rubygem-websocket-driver-0:0.7.5-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-websocket-driver-debuginfo-0:0.7.5-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-websocket-driver-debuginfo-0:0.7.5-1.el8sat.x86_64" + }, + "product_reference": "rubygem-websocket-driver-debuginfo-0:0.7.5-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-websocket-driver-debugsource-0:0.7.5-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-websocket-driver-debugsource-0:0.7.5-1.el8sat.x86_64" + }, + "product_reference": "rubygem-websocket-driver-debugsource-0:0.7.5-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-websocket-extensions-0:0.1.5-2.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-websocket-extensions-0:0.1.5-2.el8sat.noarch" + }, + "product_reference": "rubygem-websocket-extensions-0:0.1.5-2.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-websocket-extensions-0:0.1.5-2.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-websocket-extensions-0:0.1.5-2.el8sat.src" + }, + "product_reference": "rubygem-websocket-extensions-0:0.1.5-2.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-will_paginate-0:3.3.1-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-will_paginate-0:3.3.1-1.el8sat.noarch" + }, + "product_reference": "rubygem-will_paginate-0:3.3.1-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-will_paginate-0:3.3.1-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-will_paginate-0:3.3.1-1.el8sat.src" + }, + "product_reference": "rubygem-will_paginate-0:3.3.1-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-xmlrpc-0:0.3.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-xmlrpc-0:0.3.2-1.el8sat.noarch" + }, + "product_reference": "rubygem-xmlrpc-0:0.3.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-xmlrpc-0:0.3.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-xmlrpc-0:0.3.2-1.el8sat.src" + }, + "product_reference": "rubygem-xmlrpc-0:0.3.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-zeitwerk-0:2.6.8-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-zeitwerk-0:2.6.8-1.el8sat.noarch" + }, + "product_reference": "rubygem-zeitwerk-0:2.6.8-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "rubygem-zeitwerk-0:2.6.8-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:rubygem-zeitwerk-0:2.6.8-1.el8sat.src" + }, + "product_reference": "rubygem-zeitwerk-0:2.6.8-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "saslwrapper-0:0.22-6.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:saslwrapper-0:0.22-6.el8sat.src" + }, + "product_reference": "saslwrapper-0:0.22-6.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "saslwrapper-0:0.22-6.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:saslwrapper-0:0.22-6.el8sat.x86_64" + }, + "product_reference": "saslwrapper-0:0.22-6.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64" + }, + "product_reference": "saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "saslwrapper-debugsource-0:0.22-6.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:saslwrapper-debugsource-0:0.22-6.el8sat.x86_64" + }, + "product_reference": "saslwrapper-debugsource-0:0.22-6.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.14.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:satellite-0:6.14.0-3.el8sat.noarch" + }, + "product_reference": "satellite-0:6.14.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-0:6.14.0-3.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:satellite-0:6.14.0-3.el8sat.src" + }, + "product_reference": "satellite-0:6.14.0-3.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-capsule-0:6.14.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:satellite-capsule-0:6.14.0-3.el8sat.noarch" + }, + "product_reference": "satellite-capsule-0:6.14.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-cli-0:6.14.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:satellite-cli-0:6.14.0-3.el8sat.noarch" + }, + "product_reference": "satellite-cli-0:6.14.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-common-0:6.14.0-3.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:satellite-common-0:6.14.0-3.el8sat.noarch" + }, + "product_reference": "satellite-common-0:6.14.0-3.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-installer-0:6.14.0.5-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:satellite-installer-0:6.14.0.5-1.el8sat.noarch" + }, + "product_reference": "satellite-installer-0:6.14.0.5-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-installer-0:6.14.0.5-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:satellite-installer-0:6.14.0.5-1.el8sat.src" + }, + "product_reference": "satellite-installer-0:6.14.0.5-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-maintain-0:0.0.2-1.el8sat.noarch as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:satellite-maintain-0:0.0.2-1.el8sat.noarch" + }, + "product_reference": "satellite-maintain-0:0.0.2-1.el8sat.noarch", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "satellite-maintain-0:0.0.2-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:satellite-maintain-0:0.0.2-1.el8sat.src" + }, + "product_reference": "satellite-maintain-0:0.0.2-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src" + }, + "product_reference": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "relates_to_product_reference": "8Base-satellite-6.14" + }, + { + "category": "default_component_of", + "full_product_name": { + "name": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64 as a component of Red Hat Satellite 6.14 for RHEL 8", + "product_id": "8Base-satellite-6.14:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64" + }, + "product_reference": "yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "relates_to_product_reference": "8Base-satellite-6.14" + } + ] + }, + "vulnerabilities": [ + { + "acknowledgments": [ + { + "names": [ + "Andrew Danau" + ], + "organization": "Onsec.io" + } + ], + "cve": "CVE-2023-0118", + "cwe": { + "id": "CWE-78", + "name": "Improper Neutralization of Special Elements used in an OS Command ('OS Command Injection')" + }, + "discovery_date": "2022-12-12T00:00:00+00:00", + "flags": [ + { + "label": "vulnerable_code_not_present", + "product_ids": [ + "7Server-satellite-6.11-capsule:puppet-agent-0:7.26.0-3.el7sat.src", + "7Server-satellite-6.11-capsule:puppet-agent-0:7.26.0-3.el7sat.x86_64", + "7Server-satellite-6.11-capsule:satellite-0:6.11.5.6-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:satellite-0:6.11.5.6-1.el7sat.src", + "7Server-satellite-6.11-capsule:satellite-capsule-0:6.11.5.6-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:satellite-cli-0:6.11.5.6-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:satellite-common-0:6.11.5.6-1.el7sat.noarch", + "7Server-satellite-6.11-utils:satellite-0:6.11.5.6-1.el7sat.noarch", + "7Server-satellite-6.11-utils:satellite-0:6.11.5.6-1.el7sat.src", + "7Server-satellite-6.11-utils:satellite-capsule-0:6.11.5.6-1.el7sat.noarch", + "7Server-satellite-6.11-utils:satellite-cli-0:6.11.5.6-1.el7sat.noarch", + "7Server-satellite-6.11-utils:satellite-common-0:6.11.5.6-1.el7sat.noarch", + "7Server-satellite-6.11:puppet-agent-0:7.26.0-3.el7sat.src", + "7Server-satellite-6.11:puppet-agent-0:7.26.0-3.el7sat.x86_64", + "7Server-satellite-6.11:satellite-0:6.11.5.6-1.el7sat.noarch", + "7Server-satellite-6.11:satellite-0:6.11.5.6-1.el7sat.src", + "7Server-satellite-6.11:satellite-capsule-0:6.11.5.6-1.el7sat.noarch", + "7Server-satellite-6.11:satellite-cli-0:6.11.5.6-1.el7sat.noarch", + "7Server-satellite-6.11:satellite-common-0:6.11.5.6-1.el7sat.noarch", + "7Server-satellite-6.11:tfm-rubygem-git-0:1.18.0-0.1.el7sat.noarch", + "7Server-satellite-6.11:tfm-rubygem-git-0:1.18.0-0.1.el7sat.src", + "7Server-satellite-6.11:tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.noarch", + "7Server-satellite-6.11:tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.src", + "7Server-satellite-6.11:tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.noarch", + "7Server-satellite-6.11:tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.src", + "7Server-satellite-6.11:yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.src", + "7Server-satellite-6.11:yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.x86_64", + "8Base-satellite-6.11-capsule:puppet-agent-0:7.26.0-3.el8sat.src", + "8Base-satellite-6.11-capsule:puppet-agent-0:7.26.0-3.el8sat.x86_64", + "8Base-satellite-6.11-capsule:satellite-0:6.11.5.6-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:satellite-0:6.11.5.6-1.el8sat.src", + "8Base-satellite-6.11-capsule:satellite-capsule-0:6.11.5.6-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:satellite-cli-0:6.11.5.6-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:satellite-common-0:6.11.5.6-1.el8sat.noarch", + "8Base-satellite-6.11-utils:satellite-0:6.11.5.6-1.el8sat.noarch", + "8Base-satellite-6.11-utils:satellite-0:6.11.5.6-1.el8sat.src", + "8Base-satellite-6.11-utils:satellite-capsule-0:6.11.5.6-1.el8sat.noarch", + "8Base-satellite-6.11-utils:satellite-cli-0:6.11.5.6-1.el8sat.noarch", + "8Base-satellite-6.11-utils:satellite-common-0:6.11.5.6-1.el8sat.noarch", + "8Base-satellite-6.11:puppet-agent-0:7.26.0-3.el8sat.src", + "8Base-satellite-6.11:puppet-agent-0:7.26.0-3.el8sat.x86_64", + "8Base-satellite-6.11:rubygem-git-0:1.18.0-0.1.el8sat.noarch", + "8Base-satellite-6.11:rubygem-git-0:1.18.0-0.1.el8sat.src", + "8Base-satellite-6.11:rubygem-rchardet-0:1.8.0-0.1.el8sat.noarch", + "8Base-satellite-6.11:rubygem-rchardet-0:1.8.0-0.1.el8sat.src", + "8Base-satellite-6.11:rubygem-safemode-0:1.3.8-0.1.el8sat.noarch", + "8Base-satellite-6.11:rubygem-safemode-0:1.3.8-0.1.el8sat.src", + "8Base-satellite-6.11:satellite-0:6.11.5.6-1.el8sat.noarch", + "8Base-satellite-6.11:satellite-0:6.11.5.6-1.el8sat.src", + "8Base-satellite-6.11:satellite-capsule-0:6.11.5.6-1.el8sat.noarch", + "8Base-satellite-6.11:satellite-cli-0:6.11.5.6-1.el8sat.noarch", + "8Base-satellite-6.11:satellite-common-0:6.11.5.6-1.el8sat.noarch", + "8Base-satellite-6.11:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "8Base-satellite-6.11:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "8Base-satellite-6.12-capsule:foreman-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-0:3.3.0.23-1.el8sat.src", + "8Base-satellite-6.12-capsule:foreman-cli-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-debug-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-ec2-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-gce-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-journald-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-libvirt-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-openstack-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-ovirt-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-postgresql-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-service-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-telemetry-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-vmware-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:puppet-agent-0:7.26.0-3.el8sat.src", + "8Base-satellite-6.12-capsule:puppet-agent-0:7.26.0-3.el8sat.x86_64", + "8Base-satellite-6.12-capsule:satellite-0:6.12.5.2-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:satellite-0:6.12.5.2-1.el8sat.src", + "8Base-satellite-6.12-capsule:satellite-capsule-0:6.12.5.2-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:satellite-cli-0:6.12.5.2-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:satellite-common-0:6.12.5.2-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-0:3.3.0.23-1.el8sat.src", + "8Base-satellite-6.12-utils:foreman-cli-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-debug-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-ec2-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-gce-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-journald-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-libvirt-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-openstack-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-ovirt-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-postgresql-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-service-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-telemetry-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-vmware-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:satellite-0:6.12.5.2-1.el8sat.noarch", + "8Base-satellite-6.12-utils:satellite-0:6.12.5.2-1.el8sat.src", + "8Base-satellite-6.12-utils:satellite-capsule-0:6.12.5.2-1.el8sat.noarch", + "8Base-satellite-6.12-utils:satellite-cli-0:6.12.5.2-1.el8sat.noarch", + "8Base-satellite-6.12-utils:satellite-common-0:6.12.5.2-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-0:3.3.0.23-1.el8sat.src", + "8Base-satellite-6.12:foreman-cli-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-debug-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-ec2-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-gce-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-journald-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-libvirt-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-openstack-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-ovirt-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-postgresql-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-service-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-telemetry-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-vmware-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:puppet-agent-0:7.26.0-3.el8sat.src", + "8Base-satellite-6.12:puppet-agent-0:7.26.0-3.el8sat.x86_64", + "8Base-satellite-6.12:rubygem-git-0:1.18.0-1.el8sat.noarch", + "8Base-satellite-6.12:rubygem-git-0:1.18.0-1.el8sat.src", + "8Base-satellite-6.12:satellite-0:6.12.5.2-1.el8sat.noarch", + "8Base-satellite-6.12:satellite-0:6.12.5.2-1.el8sat.src", + "8Base-satellite-6.12:satellite-capsule-0:6.12.5.2-1.el8sat.noarch", + "8Base-satellite-6.12:satellite-cli-0:6.12.5.2-1.el8sat.noarch", + "8Base-satellite-6.12:satellite-common-0:6.12.5.2-1.el8sat.noarch", + "8Base-satellite-6.12:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "8Base-satellite-6.12:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "8Base-satellite-6.13-capsule:foreman-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:foreman-0:3.5.1.19-1.el8sat.src", + "8Base-satellite-6.13-capsule:foreman-cli-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:foreman-debug-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:foreman-dynflow-sidekiq-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:foreman-ec2-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:foreman-journald-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:foreman-libvirt-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:foreman-openstack-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:foreman-ovirt-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:foreman-postgresql-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:foreman-service-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:foreman-telemetry-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:foreman-vmware-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:python-future-0:0.18.3-1.el8pc.src", + "8Base-satellite-6.13-capsule:python-pulp-rpm-0:3.18.17-1.el8pc.src", + "8Base-satellite-6.13-capsule:python-pulpcore-0:3.21.9-1.el8pc.src", + "8Base-satellite-6.13-capsule:python39-future-0:0.18.3-1.el8pc.noarch", + "8Base-satellite-6.13-capsule:python39-pulp-rpm-0:3.18.17-1.el8pc.noarch", + "8Base-satellite-6.13-capsule:python39-pulpcore-0:3.21.9-1.el8pc.noarch", + "8Base-satellite-6.13-capsule:rubygem-foreman_maintain-1:1.2.11-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:rubygem-foreman_maintain-1:1.2.11-1.el8sat.src", + "8Base-satellite-6.13-capsule:satellite-0:6.13.3-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:satellite-0:6.13.3-1.el8sat.src", + "8Base-satellite-6.13-capsule:satellite-capsule-0:6.13.3-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:satellite-cli-0:6.13.3-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:satellite-common-0:6.13.3-1.el8sat.noarch", + "8Base-satellite-6.13-maintenance:rubygem-foreman_maintain-1:1.2.11-1.el8sat.noarch", + "8Base-satellite-6.13-maintenance:rubygem-foreman_maintain-1:1.2.11-1.el8sat.src", + "8Base-satellite-6.13-utils:foreman-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:foreman-0:3.5.1.19-1.el8sat.src", + "8Base-satellite-6.13-utils:foreman-cli-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:foreman-debug-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:foreman-dynflow-sidekiq-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:foreman-ec2-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:foreman-journald-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:foreman-libvirt-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:foreman-openstack-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:foreman-ovirt-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:foreman-postgresql-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:foreman-service-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:foreman-telemetry-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:foreman-vmware-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch", + "8Base-satellite-6.13-utils:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src", + "8Base-satellite-6.13-utils:satellite-0:6.13.3-1.el8sat.noarch", + "8Base-satellite-6.13-utils:satellite-0:6.13.3-1.el8sat.src", + "8Base-satellite-6.13-utils:satellite-capsule-0:6.13.3-1.el8sat.noarch", + "8Base-satellite-6.13-utils:satellite-cli-0:6.13.3-1.el8sat.noarch", + "8Base-satellite-6.13-utils:satellite-common-0:6.13.3-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-0:3.5.1.19-1.el8sat.src", + "8Base-satellite-6.13:foreman-cli-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-debug-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-dynflow-sidekiq-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-ec2-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-journald-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-libvirt-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-openstack-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-ovirt-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-postgresql-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-service-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-telemetry-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-vmware-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:python-future-0:0.18.3-1.el8pc.src", + "8Base-satellite-6.13:python-pulp-rpm-0:3.18.17-1.el8pc.src", + "8Base-satellite-6.13:python-pulpcore-0:3.21.9-1.el8pc.src", + "8Base-satellite-6.13:python39-future-0:0.18.3-1.el8pc.noarch", + "8Base-satellite-6.13:python39-pulp-rpm-0:3.18.17-1.el8pc.noarch", + "8Base-satellite-6.13:python39-pulpcore-0:3.21.9-1.el8pc.noarch", + "8Base-satellite-6.13:rubygem-fog-vsphere-0:3.6.2-1.el8sat.noarch", + "8Base-satellite-6.13:rubygem-fog-vsphere-0:3.6.2-1.el8sat.src", + "8Base-satellite-6.13:rubygem-foreman_ansible-0:10.4.3-1.el8sat.noarch", + "8Base-satellite-6.13:rubygem-foreman_ansible-0:10.4.3-1.el8sat.src", + "8Base-satellite-6.13:rubygem-foreman_maintain-1:1.2.11-1.el8sat.noarch", + "8Base-satellite-6.13:rubygem-foreman_maintain-1:1.2.11-1.el8sat.src", + "8Base-satellite-6.13:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch", + "8Base-satellite-6.13:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src", + "8Base-satellite-6.13:rubygem-katello-0:4.7.0.31-1.el8sat.noarch", + "8Base-satellite-6.13:rubygem-katello-0:4.7.0.31-1.el8sat.src", + "8Base-satellite-6.13:satellite-0:6.13.3-1.el8sat.noarch", + "8Base-satellite-6.13:satellite-0:6.13.3-1.el8sat.src", + "8Base-satellite-6.13:satellite-capsule-0:6.13.3-1.el8sat.noarch", + "8Base-satellite-6.13:satellite-cli-0:6.13.3-1.el8sat.noarch", + "8Base-satellite-6.13:satellite-common-0:6.13.3-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:ansible-lint-0:5.0.8-4.el8pc.noarch", + "8Base-satellite-6.14-capsule:ansible-lint-0:5.0.8-4.el8pc.src", + "8Base-satellite-6.14-capsule:ansible-runner-0:2.2.1-3.el8sat.noarch", + "8Base-satellite-6.14-capsule:ansible-runner-0:2.2.1-3.el8sat.src", + "8Base-satellite-6.14-capsule:ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.noarch", + "8Base-satellite-6.14-capsule:ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.src", + "8Base-satellite-6.14-capsule:ansiblerole-insights-client-0:1.7.1-2.el8sat.noarch", + "8Base-satellite-6.14-capsule:ansiblerole-insights-client-0:1.7.1-2.el8sat.src", + "8Base-satellite-6.14-capsule:cjson-0:1.7.14-5.el8sat.src", + "8Base-satellite-6.14-capsule:cjson-0:1.7.14-5.el8sat.x86_64", + "8Base-satellite-6.14-capsule:cjson-debuginfo-0:1.7.14-5.el8sat.x86_64", + "8Base-satellite-6.14-capsule:cjson-debugsource-0:1.7.14-5.el8sat.x86_64", + "8Base-satellite-6.14-capsule:createrepo_c-0:0.20.1-1.el8pc.src", + "8Base-satellite-6.14-capsule:createrepo_c-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:createrepo_c-debugsource-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:createrepo_c-libs-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:createrepo_c-libs-debuginfo-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:dynflow-utils-0:1.6.3-1.el8sat.src", + "8Base-satellite-6.14-capsule:dynflow-utils-0:1.6.3-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:foreman-bootloaders-redhat-0:202102220000-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-bootloaders-redhat-0:202102220000-1.el8sat.src", + "8Base-satellite-6.14-capsule:foreman-bootloaders-redhat-tftpboot-0:202102220000-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-discovery-image-1:4.1.0-10.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-discovery-image-1:4.1.0-10.el8sat.src", + "8Base-satellite-6.14-capsule:foreman-discovery-image-service-0:1.0.0-4.1.el8sat.src", + "8Base-satellite-6.14-capsule:foreman-discovery-image-service-0:1.0.0-4.1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:foreman-discovery-image-service-tui-0:1.0.0-4.1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:foreman-installer-1:3.7.0.4-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-installer-1:3.7.0.4-1.el8sat.src", + "8Base-satellite-6.14-capsule:foreman-installer-katello-1:3.7.0.4-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-proxy-0:3.7.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-proxy-0:3.7.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:foreman-proxy-content-0:4.9.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-proxy-journald-0:3.7.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:katello-0:4.9.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:katello-0:4.9.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:katello-certs-tools-0:2.9.0-2.el8sat.noarch", + "8Base-satellite-6.14-capsule:katello-certs-tools-0:2.9.0-2.el8sat.src", + "8Base-satellite-6.14-capsule:katello-client-bootstrap-0:1.7.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:katello-client-bootstrap-0:1.7.9-1.el8sat.src", + "8Base-satellite-6.14-capsule:katello-common-0:4.9.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:katello-debug-0:4.9.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:libcomps-0:0.1.18-4.el8pc.src", + "8Base-satellite-6.14-capsule:libcomps-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:libcomps-debugsource-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:libdb-cxx-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14-capsule:libdb-cxx-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14-capsule:libdb-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14-capsule:libdb-debugsource-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14-capsule:libdb-java-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14-capsule:libdb-sql-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14-capsule:libdb-sql-devel-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14-capsule:libdb-tcl-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14-capsule:libdb-utils-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14-capsule:libsodium-0:1.0.17-3.el8sat.src", + "8Base-satellite-6.14-capsule:libsodium-0:1.0.17-3.el8sat.x86_64", + "8Base-satellite-6.14-capsule:libsodium-debuginfo-0:1.0.17-3.el8sat.x86_64", + "8Base-satellite-6.14-capsule:libsodium-debugsource-0:1.0.17-3.el8sat.x86_64", + "8Base-satellite-6.14-capsule:libsolv-0:0.7.22-4.el8pc.src", + "8Base-satellite-6.14-capsule:libsolv-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:libsolv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:libsolv-debugsource-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:libsolv-demo-debuginfo-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:libsolv-tools-debuginfo-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:libwebsockets-0:2.4.2-2.el8.src", + "8Base-satellite-6.14-capsule:libwebsockets-0:2.4.2-2.el8.x86_64", + "8Base-satellite-6.14-capsule:libwebsockets-debuginfo-0:2.4.2-2.el8.x86_64", + "8Base-satellite-6.14-capsule:libwebsockets-debugsource-0:2.4.2-2.el8.x86_64", + "8Base-satellite-6.14-capsule:libwebsockets-tests-debuginfo-0:2.4.2-2.el8.x86_64", + "8Base-satellite-6.14-capsule:mosquitto-0:2.0.14-1.el8sat.src", + "8Base-satellite-6.14-capsule:mosquitto-0:2.0.14-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:mosquitto-debuginfo-0:2.0.14-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:mosquitto-debugsource-0:2.0.14-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:pulpcore-selinux-0:1.3.3-1.el8pc.src", + "8Base-satellite-6.14-capsule:pulpcore-selinux-0:1.3.3-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:puppet-agent-0:7.26.0-3.el8sat.src", + "8Base-satellite-6.14-capsule:puppet-agent-0:7.26.0-3.el8sat.x86_64", + "8Base-satellite-6.14-capsule:puppet-agent-oauth-0:0.5.10-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:puppet-agent-oauth-0:0.5.10-1.el8sat.src", + "8Base-satellite-6.14-capsule:puppet-foreman_scap_client-0:0.4.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:puppet-foreman_scap_client-0:0.4.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:puppetlabs-stdlib-0:5.2.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:puppetlabs-stdlib-0:5.2.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:puppetserver-0:7.11.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:puppetserver-0:7.11.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:python-aiodns-0:3.0.0-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-aiofiles-0:22.1.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-aiohttp-0:3.8.3-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-aiohttp-debugsource-0:3.8.3-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-aiohttp-xmlrpc-0:1.5.0-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-aioredis-0:2.0.1-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-aiosignal-0:1.3.1-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-ansible-builder-0:1.0.1-4.el8pc.src", + "8Base-satellite-6.14-capsule:python-asgiref-0:3.6.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-async-lru-0:1.0.3-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-async-timeout-0:4.0.2-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-asyncio-throttle-0:1.0.2-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-attrs-0:21.4.0-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-backoff-0:2.2.1-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-bindep-0:2.11.0-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-bleach-0:3.3.1-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-bleach-allowlist-0:1.0.3-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-bracex-0:2.2.1-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-brotli-0:1.0.9-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-brotli-debugsource-0:1.0.9-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-cchardet-0:2.1.7-4.el8pc.src", + "8Base-satellite-6.14-capsule:python-cchardet-debugsource-0:2.1.7-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-certifi-0:2022.12.7-1.1.el8pc.src", + "8Base-satellite-6.14-capsule:python-cffi-0:1.15.1-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-cffi-debugsource-0:1.15.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-chardet-0:5.0.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-charset-normalizer-0:2.1.1-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-click-0:8.1.3-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-click-shell-0:2.1-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-colorama-0:0.4.4-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-commonmark-0:0.9.1-5.el8pc.src", + "8Base-satellite-6.14-capsule:python-contextlib2-0:21.6.0-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-cryptography-0:38.0.4-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-cryptography-debugsource-0:38.0.4-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-daemon-0:2.3.1-1.1.el8sat.src", + "8Base-satellite-6.14-capsule:python-dataclasses-0:0.8-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-dateutil-0:2.8.2-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-debian-0:0.1.44-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-defusedxml-0:0.7.1-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-deprecated-0:1.2.13-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-diff-match-patch-0:20200713-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-distro-0:1.7.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-django-0:3.2.21-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-django-currentuser-0:0.5.3-5.el8pc.src", + "8Base-satellite-6.14-capsule:python-django-filter-0:22.1-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-django-guid-0:3.3.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-django-import-export-0:3.0.2-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-django-lifecycle-0:1.0.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-django-readonly-field-0:1.1.2-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-djangorestframework-0:3.14.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-djangorestframework-queryfields-0:1.0.0-5.el8pc.src", + "8Base-satellite-6.14-capsule:python-docutils-0:0.19-1.1.el8sat.src", + "8Base-satellite-6.14-capsule:python-drf-access-policy-0:1.3.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-drf-nested-routers-0:0.93.4-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-drf-spectacular-0:0.25.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-dynaconf-0:3.1.11-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-ecdsa-0:0.18.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-enrich-0:1.2.6-5.el8pc.src", + "8Base-satellite-6.14-capsule:python-et-xmlfile-0:1.1.0-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-flake8-0:3.9.2-5.el8pc.src", + "8Base-satellite-6.14-capsule:python-frozenlist-0:1.3.3-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-frozenlist-debugsource-0:1.3.3-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-future-0:0.18.3-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-galaxy-importer-0:0.4.6-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-gitdb-0:4.0.10-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-gitpython-0:3.1.32-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-gnupg-0:0.5.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-gunicorn-0:20.1.0-5.el8pc.src", + "8Base-satellite-6.14-capsule:python-idna-0:3.3-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-idna-ssl-0:1.1.0-5.el8pc.src", + "8Base-satellite-6.14-capsule:python-importlib-metadata-0:4.10.1-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-inflection-0:0.5.1-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-iniparse-0:0.4-35.el8pc.src", + "8Base-satellite-6.14-capsule:python-jinja2-0:3.1.2-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-jsonschema-0:4.9.1-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-lockfile-0:0.12.2-1.el8sat.src", + "8Base-satellite-6.14-capsule:python-lxml-0:4.9.2-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-lxml-debugsource-0:4.9.2-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-markdown-0:3.4.1-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-markuppy-0:1.14-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-markupsafe-0:2.1.2-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-markupsafe-debugsource-0:2.1.2-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-mccabe-0:0.6.1-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-multidict-0:6.0.4-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-multidict-debugsource-0:6.0.4-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-naya-0:1.1.1-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-odfpy-0:1.4.1-6.el8pc.src", + "8Base-satellite-6.14-capsule:python-openpyxl-0:3.1.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-packaging-0:21.3-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-parsley-0:1.3-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-pbr-0:5.8.0-4.el8pc.src", + "8Base-satellite-6.14-capsule:python-pexpect-0:4.8.0-2.el8sat.src", + "8Base-satellite-6.14-capsule:python-productmd-0:1.33-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-protobuf-0:4.21.6-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-psycopg2-0:2.9.3-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-psycopg2-debugsource-0:2.9.3-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-ptyprocess-0:0.7.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:python-pulp-ansible-1:0.16.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-pulp-certguard-0:1.5.6-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-pulp-cli-0:0.14.0-4.el8pc.src", + "8Base-satellite-6.14-capsule:python-pulp-container-0:2.14.7-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-pulp-deb-0:2.20.2-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-pulp-file-0:1.12.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-pulp-rpm-0:3.19.9-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-pulpcore-0:3.22.15-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-pyOpenSSL-0:22.1.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-pycares-0:4.1.2-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-pycares-debugsource-0:4.1.2-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-pycodestyle-0:2.7.0-5.el8pc.src", + "8Base-satellite-6.14-capsule:python-pycparser-0:2.21-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-pycryptodomex-0:3.14.1-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-pycryptodomex-debugsource-0:3.14.1-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-pyflakes-0:2.3.1-5.el8pc.src", + "8Base-satellite-6.14-capsule:python-pygments-0:2.14.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-pygtrie-0:2.5.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-pyjwkest-0:1.4.2-6.el8pc.src", + "8Base-satellite-6.14-capsule:python-pyjwt-0:2.5.0-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-pyparsing-0:2.4.7-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-pyrsistent-0:0.18.1-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-pyrsistent-debugsource-0:0.18.1-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-pytz-0:2022.2.1-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-pyyaml-0:5.4.1-4.el8pc.src", + "8Base-satellite-6.14-capsule:python-qpid-0:1.37.0-1.el8.src", + "8Base-satellite-6.14-capsule:python-redis-0:4.3.4-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-requests-0:2.31.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-requirements-parser-0:0.2.0-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-rhsm-0:1.19.2-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-rhsm-debugsource-0:1.19.2-3.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-rich-0:13.3.1-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-ruamel-yaml-0:0.17.21-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-ruamel-yaml-clib-0:0.2.7-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-ruamel-yaml-clib-debugsource-0:0.2.7-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-schema-0:0.7.5-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-semantic-version-0:2.10.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-six-0:1.16.0-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-smmap-0:5.0.0-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-sqlparse-0:0.4.4-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-tablib-0:3.3.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-tenacity-0:7.0.0-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-toml-0:0.10.2-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-types-cryptography-0:3.3.23.2-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-typing-extensions-0:3.10.0.2-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-uritemplate-0:4.1.1-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-url-normalize-0:1.4.3-4.el8pc.src", + "8Base-satellite-6.14-capsule:python-urllib3-0:1.26.8-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-urlman-0:2.0.1-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-wcmatch-0:8.3-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-webencodings-0:0.5.1-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-whitenoise-0:6.0.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-wrapt-0:1.14.1-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-wrapt-debugsource-0:1.14.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-xlrd-0:2.0.1-5.el8pc.src", + "8Base-satellite-6.14-capsule:python-xlwt-0:1.3.0-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-yarl-0:1.8.2-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-yarl-debugsource-0:1.8.2-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-zipp-0:3.4.0-4.el8pc.src", + "8Base-satellite-6.14-capsule:python2-qpid-0:1.37.0-1.el8.noarch", + "8Base-satellite-6.14-capsule:python2-qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:python2-saslwrapper-0:0.22-6.el8sat.x86_64", + "8Base-satellite-6.14-capsule:python2-saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "8Base-satellite-6.14-capsule:python3-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python3-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python3-libcomps-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python3-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python3-qpid-proton-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14-capsule:python3-qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14-capsule:python3-solv-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python3-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-aiodns-0:3.0.0-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-aiofiles-0:22.1.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-aiohttp-0:3.8.3-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-aiohttp-debuginfo-0:3.8.3-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-aiohttp-xmlrpc-0:1.5.0-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-aioredis-0:2.0.1-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-aiosignal-0:1.3.1-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-ansible-builder-0:1.0.1-4.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-ansible-runner-0:2.2.1-3.el8sat.noarch", + "8Base-satellite-6.14-capsule:python39-asgiref-0:3.6.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-async-lru-0:1.0.3-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-async-timeout-0:4.0.2-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-asyncio-throttle-0:1.0.2-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-attrs-0:21.4.0-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-backoff-0:2.2.1-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-bindep-0:2.11.0-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-bleach-0:3.3.1-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-bleach-allowlist-0:1.0.3-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-bracex-0:2.2.1-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-brotli-0:1.0.9-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-brotli-debuginfo-0:1.0.9-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-cchardet-0:2.1.7-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-cchardet-debuginfo-0:2.1.7-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-certifi-0:2022.12.7-1.1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-cffi-0:1.15.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-cffi-debuginfo-0:1.15.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-chardet-0:5.0.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-charset-normalizer-0:2.1.1-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-click-0:8.1.3-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-click-shell-0:2.1-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-colorama-0:0.4.4-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-commonmark-0:0.9.1-5.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-contextlib2-0:21.6.0-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-cryptography-0:38.0.4-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-cryptography-debuginfo-0:38.0.4-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-daemon-0:2.3.1-1.1.el8sat.noarch", + "8Base-satellite-6.14-capsule:python39-dataclasses-0:0.8-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-dateutil-0:2.8.2-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-debian-0:0.1.44-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-defusedxml-0:0.7.1-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-deprecated-0:1.2.13-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-diff-match-patch-0:20200713-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-distro-0:1.7.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-django-0:3.2.21-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-django-currentuser-0:0.5.3-5.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-django-filter-0:22.1-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-django-guid-0:3.3.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-django-import-export-0:3.0.2-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-django-lifecycle-0:1.0.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-django-readonly-field-0:1.1.2-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-djangorestframework-0:3.14.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-djangorestframework-queryfields-0:1.0.0-5.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-docutils-0:0.19-1.1.el8sat.noarch", + "8Base-satellite-6.14-capsule:python39-drf-access-policy-0:1.3.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-drf-nested-routers-0:0.93.4-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-drf-spectacular-0:0.25.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-dynaconf-0:3.1.11-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-ecdsa-0:0.18.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-enrich-0:1.2.6-5.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-et-xmlfile-0:1.1.0-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-flake8-0:3.9.2-5.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-frozenlist-0:1.3.3-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-frozenlist-debuginfo-0:1.3.3-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-future-0:0.18.3-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-galaxy-importer-0:0.4.6-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-gitdb-0:4.0.10-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-gitpython-0:3.1.32-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-gnupg-0:0.5.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-gunicorn-0:20.1.0-5.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-idna-0:3.3-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-idna-ssl-0:1.1.0-5.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-importlib-metadata-0:4.10.1-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-inflection-0:0.5.1-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-iniparse-0:0.4-35.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-jinja2-0:3.1.2-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-jsonschema-0:4.9.1-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-libcomps-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-lockfile-0:0.12.2-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:python39-lxml-0:4.9.2-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-lxml-debuginfo-0:4.9.2-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-markdown-0:3.4.1-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-markuppy-0:1.14-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-markupsafe-0:2.1.2-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-markupsafe-debuginfo-0:2.1.2-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-mccabe-0:0.6.1-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-multidict-0:6.0.4-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-multidict-debuginfo-0:6.0.4-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-naya-0:1.1.1-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-odfpy-0:1.4.1-6.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-openpyxl-0:3.1.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-packaging-0:21.3-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-parsley-0:1.3-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pbr-0:5.8.0-4.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pexpect-0:4.8.0-2.el8sat.noarch", + "8Base-satellite-6.14-capsule:python39-productmd-0:1.33-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-protobuf-0:4.21.6-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-psycopg2-0:2.9.3-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-psycopg2-debuginfo-0:2.9.3-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-ptyprocess-0:0.7.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:python39-pulp-ansible-1:0.16.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pulp-certguard-0:1.5.6-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pulp-cli-0:0.14.0-4.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pulp-container-0:2.14.7-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pulp-deb-0:2.20.2-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pulp-file-0:1.12.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pulp-rpm-0:3.19.9-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pulpcore-0:3.22.15-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pyOpenSSL-0:22.1.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pycares-0:4.1.2-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-pycares-debuginfo-0:4.1.2-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-pycodestyle-0:2.7.0-5.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pycparser-0:2.21-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pycryptodomex-0:3.14.1-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-pycryptodomex-debuginfo-0:3.14.1-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-pyflakes-0:2.3.1-5.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pygments-0:2.14.0-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-pygtrie-0:2.5.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pyjwkest-0:1.4.2-6.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pyjwt-0:2.5.0-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pyparsing-0:2.4.7-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pyrsistent-0:0.18.1-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-pyrsistent-debuginfo-0:0.18.1-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-pytz-0:2022.2.1-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pyyaml-0:5.4.1-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-redis-0:4.3.4-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-requests-0:2.31.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-requirements-parser-0:0.2.0-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-rhsm-0:1.19.2-3.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-rhsm-debuginfo-0:1.19.2-3.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-rich-0:13.3.1-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-ruamel-yaml-0:0.17.21-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-ruamel-yaml-clib-0:0.2.7-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-ruamel-yaml-clib-debuginfo-0:0.2.7-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-schema-0:0.7.5-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-semantic-version-0:2.10.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-six-0:1.16.0-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-smmap-0:5.0.0-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-solv-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-sqlparse-0:0.4.4-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-tablib-0:3.3.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-tenacity-0:7.0.0-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-toml-0:0.10.2-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-types-cryptography-0:3.3.23.2-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-typing-extensions-0:3.10.0.2-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-uritemplate-0:4.1.1-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-url-normalize-0:1.4.3-4.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-urllib3-0:1.26.8-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-urlman-0:2.0.1-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-wcmatch-0:8.3-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-webencodings-0:0.5.1-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-whitenoise-0:6.0.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-wrapt-0:1.14.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-wrapt-debuginfo-0:1.14.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-xlrd-0:2.0.1-5.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-xlwt-0:1.3.0-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-yarl-0:1.8.2-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-yarl-debuginfo-0:1.8.2-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-zipp-0:3.4.0-4.el8pc.noarch", + "8Base-satellite-6.14-capsule:qpid-cpp-0:1.39.0-7.el8amq.src", + "8Base-satellite-6.14-capsule:qpid-cpp-client-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-cpp-client-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-cpp-client-devel-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-cpp-client-devel-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-cpp-client-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-cpp-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-cpp-debugsource-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-cpp-server-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-cpp-server-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-cpp-server-ha-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-cpp-server-linearstore-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-cpp-server-linearstore-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-cpp-server-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-dispatch-0:1.14.0-6.el8.src", + "8Base-satellite-6.14-capsule:qpid-dispatch-debugsource-0:1.14.0-6.el8.x86_64", + "8Base-satellite-6.14-capsule:qpid-dispatch-router-0:1.14.0-6.el8.x86_64", + "8Base-satellite-6.14-capsule:qpid-dispatch-router-debuginfo-0:1.14.0-6.el8.x86_64", + "8Base-satellite-6.14-capsule:qpid-dispatch-tools-0:1.14.0-6.el8.noarch", + "8Base-satellite-6.14-capsule:qpid-proton-0:0.33.0-4.el8.src", + "8Base-satellite-6.14-capsule:qpid-proton-c-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14-capsule:qpid-proton-c-debuginfo-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14-capsule:qpid-proton-cpp-debuginfo-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14-capsule:qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14-capsule:qpid-proton-debugsource-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14-capsule:qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-qmf-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-tools-0:1.39.0-7.el8amq.noarch", + "8Base-satellite-6.14-capsule:redhat-access-insights-puppet-0:1.0.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:redhat-access-insights-puppet-0:1.0.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:ruby-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:rubygem-algebrick-0:0.7.5-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-algebrick-0:0.7.5-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-ansi-0:1.5.0-3.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-ansi-0:1.5.0-3.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-apipie-params-0:0.0.5-5.1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-apipie-params-0:0.0.5-5.1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-bundler_ext-0:0.4.1-6.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-bundler_ext-0:0.4.1-6.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-clamp-0:1.3.2-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-clamp-0:1.3.2-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-concurrent-ruby-1:1.1.10-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-concurrent-ruby-1:1.1.10-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-domain_name-0:0.5.20190701-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-dynflow-0:1.7.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-dynflow-0:1.7.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-excon-0:0.99.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-excon-0:0.99.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-faraday-0:1.10.2-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-faraday-0:1.10.2-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-faraday-em_http-0:1.0.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-faraday-em_http-0:1.0.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-faraday-excon-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-faraday-excon-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-faraday-httpclient-0:1.0.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-faraday-httpclient-0:1.0.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-faraday-multipart-0:1.0.4-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-faraday-multipart-0:1.0.4-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-faraday-net_http-0:1.0.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-faraday-net_http-0:1.0.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-faraday-patron-0:1.0.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-faraday-patron-0:1.0.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-faraday-rack-0:1.0.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-faraday-rack-0:1.0.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-faraday-retry-0:1.0.3-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-faraday-retry-0:1.0.3-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-faraday_middleware-0:1.2.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-faraday_middleware-0:1.2.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-fast_gettext-0:1.8.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-ffi-0:1.15.5-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-ffi-0:1.15.5-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-foreman_maintain-1:1.3.5-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-gssapi-0:1.3.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-gssapi-0:1.3.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-hashie-0:5.0.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-hashie-0:5.0.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-highline-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-highline-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-http-accept-0:1.7.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-http-accept-0:1.7.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-http-cookie-0:1.0.5-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-http-cookie-0:1.0.5-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-infoblox-0:3.0.0-4.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-infoblox-0:3.0.0-4.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-journald-logger-0:3.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-journald-logger-0:3.1.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-journald-native-0:1.0.12-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-journald-native-0:1.0.12-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-journald-native-debuginfo-0:1.0.12-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-journald-native-debugsource-0:1.0.12-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-jwt-0:2.7.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-jwt-0:2.7.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-kafo-0:7.0.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-kafo-0:7.0.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-kafo_parsers-0:1.2.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-kafo_parsers-0:1.2.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-kafo_wizards-0:0.0.2-2.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-kafo_wizards-0:0.0.2-2.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-little-plugger-0:1.1.4-3.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-little-plugger-0:1.1.4-3.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-logging-0:2.3.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-logging-0:2.3.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-logging-journald-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-logging-journald-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-mime-types-0:3.4.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-mime-types-0:3.4.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-mqtt-0:0.5.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-mqtt-0:0.5.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-msgpack-0:1.7.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-msgpack-0:1.7.1-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-msgpack-debuginfo-0:1.7.1-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-msgpack-debugsource-0:1.7.1-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-multi_json-0:1.15.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-multi_json-0:1.15.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-multipart-post-0:2.2.3-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-multipart-post-0:2.2.3-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-mustermann-0:2.0.2-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-mustermann-0:2.0.2-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-net-ssh-0:7.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-net-ssh-0:7.1.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-net-ssh-krb-0:0.4.0-4.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-net-ssh-krb-0:0.4.0-4.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-netrc-0:0.11.0-6.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-netrc-0:0.11.0-6.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-newt-0:0.9.7-3.1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-newt-0:0.9.7-3.1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-newt-debuginfo-0:0.9.7-3.1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-newt-debugsource-0:0.9.7-3.1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-nokogiri-0:1.15.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-nokogiri-0:1.15.0-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-nokogiri-debuginfo-0:1.15.0-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-nokogiri-debugsource-0:1.15.0-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-oauth-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-oauth-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-oauth-tty-0:1.0.5-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-openscap-0:0.4.9-9.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-openscap-0:0.4.9-9.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-openscap_parser-0:1.0.2-2.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-openscap_parser-0:1.0.2-2.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-powerbar-0:2.0.1-3.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-powerbar-0:2.0.1-3.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-qpid_proton-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14-capsule:rubygem-qpid_proton-debuginfo-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14-capsule:rubygem-rack-0:2.2.7-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-rack-0:2.2.7-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-rack-protection-0:2.2.4-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-rack-protection-0:2.2.4-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-rb-inotify-0:0.10.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-rb-inotify-0:0.10.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-rbnacl-0:4.0.2-2.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-rbnacl-0:4.0.2-2.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-redfish_client-0:0.5.4-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-redfish_client-0:0.5.4-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-rest-client-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-rest-client-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-rkerberos-0:0.1.5-20.1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-rkerberos-0:0.1.5-20.1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-rkerberos-debuginfo-0:0.1.5-20.1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-rkerberos-debugsource-0:0.1.5-20.1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-rsec-0:0.4.3-5.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-rsec-0:0.4.3-5.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-ruby-libvirt-0:0.8.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-ruby-libvirt-0:0.8.0-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-ruby-libvirt-debuginfo-0:0.8.0-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-ruby-libvirt-debugsource-0:0.8.0-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-ruby2_keywords-0:0.0.5-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-ruby2_keywords-0:0.0.5-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-rubyipmi-0:0.11.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-rubyipmi-0:0.11.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-sd_notify-0:0.1.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-sd_notify-0:0.1.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-sequel-0:5.68.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-sequel-0:5.68.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-server_sent_events-0:0.1.3-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-server_sent_events-0:0.1.3-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-sinatra-1:2.2.4-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-sinatra-1:2.2.4-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-snaky_hash-0:2.0.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-sqlite3-0:1.4.2-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-sqlite3-0:1.4.2-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-sqlite3-debuginfo-0:1.4.2-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-sqlite3-debugsource-0:1.4.2-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-statsd-instrument-0:2.9.2-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-statsd-instrument-0:2.9.2-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-tilt-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-tilt-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-unf-0:0.1.4-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-unf-0:0.1.4-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-unf_ext-0:0.0.8.2-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-version_gem-0:1.1.2-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-version_gem-0:1.1.2-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-webrick-0:1.8.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-webrick-0:1.8.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-xmlrpc-0:0.3.2-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-xmlrpc-0:0.3.2-1.el8sat.src", + "8Base-satellite-6.14-capsule:saslwrapper-0:0.22-6.el8sat.src", + "8Base-satellite-6.14-capsule:saslwrapper-0:0.22-6.el8sat.x86_64", + "8Base-satellite-6.14-capsule:saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "8Base-satellite-6.14-capsule:saslwrapper-debugsource-0:0.22-6.el8sat.x86_64", + "8Base-satellite-6.14-capsule:satellite-0:6.14.0-3.el8sat.noarch", + "8Base-satellite-6.14-capsule:satellite-0:6.14.0-3.el8sat.src", + "8Base-satellite-6.14-capsule:satellite-capsule-0:6.14.0-3.el8sat.noarch", + "8Base-satellite-6.14-capsule:satellite-cli-0:6.14.0-3.el8sat.noarch", + "8Base-satellite-6.14-capsule:satellite-common-0:6.14.0-3.el8sat.noarch", + "8Base-satellite-6.14-capsule:satellite-installer-0:6.14.0.5-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:satellite-installer-0:6.14.0.5-1.el8sat.src", + "8Base-satellite-6.14-capsule:satellite-maintain-0:0.0.2-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:satellite-maintain-0:0.0.2-1.el8sat.src", + "8Base-satellite-6.14-maintenance:rubygem-clamp-0:1.3.2-1.el8sat.noarch", + "8Base-satellite-6.14-maintenance:rubygem-clamp-0:1.3.2-1.el8sat.src", + "8Base-satellite-6.14-maintenance:rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch", + "8Base-satellite-6.14-maintenance:rubygem-foreman_maintain-1:1.3.5-1.el8sat.src", + "8Base-satellite-6.14-maintenance:rubygem-highline-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-maintenance:rubygem-highline-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14-maintenance:satellite-clone-0:3.5.0-1.el8sat.noarch", + "8Base-satellite-6.14-maintenance:satellite-clone-0:3.5.0-1.el8sat.src", + "8Base-satellite-6.14-maintenance:satellite-maintain-0:0.0.2-1.el8sat.noarch", + "8Base-satellite-6.14-maintenance:satellite-maintain-0:0.0.2-1.el8sat.src", + "8Base-satellite-6.14-utils:python-pulp_manifest-0:3.0.0-3.el8pc.src", + "8Base-satellite-6.14-utils:python39-pulp_manifest-0:3.0.0-3.el8pc.noarch", + "8Base-satellite-6.14-utils:rubygem-amazing_print-0:1.4.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-amazing_print-0:1.4.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-apipie-bindings-0:0.6.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-apipie-bindings-0:0.6.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-clamp-0:1.3.2-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-clamp-0:1.3.2-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-domain_name-0:0.5.20190701-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-fast_gettext-0:1.8.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-ffi-0:1.15.5-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-ffi-0:1.15.5-1.el8sat.x86_64", + "8Base-satellite-6.14-utils:rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64", + "8Base-satellite-6.14-utils:rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64", + "8Base-satellite-6.14-utils:rubygem-gssapi-0:1.3.1-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-gssapi-0:1.3.1-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli-0:3.7.0.1-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli-0:3.7.0.1-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hashie-0:5.0.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hashie-0:5.0.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-highline-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-highline-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-http-accept-0:1.7.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-http-accept-0:1.7.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-http-cookie-0:1.0.5-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-http-cookie-0:1.0.5-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-jwt-0:2.7.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-jwt-0:2.7.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-little-plugger-0:1.1.4-3.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-little-plugger-0:1.1.4-3.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-locale-0:2.1.3-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-locale-0:2.1.3-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-logging-0:2.3.1-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-logging-0:2.3.1-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-mime-types-0:3.4.1-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-mime-types-0:3.4.1-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-multi_json-0:1.15.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-multi_json-0:1.15.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-netrc-0:0.11.0-6.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-netrc-0:0.11.0-6.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-oauth-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-oauth-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-oauth-tty-0:1.0.5-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-powerbar-0:2.0.1-3.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-powerbar-0:2.0.1-3.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-rest-client-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-rest-client-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-snaky_hash-0:2.0.1-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-unf-0:0.1.4-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-unf-0:0.1.4-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-unf_ext-0:0.0.8.2-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64", + "8Base-satellite-6.14-utils:rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64", + "8Base-satellite-6.14-utils:rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64", + "8Base-satellite-6.14-utils:rubygem-unicode-0:0.4.4.4-4.1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-unicode-0:0.4.4.4-4.1.el8sat.x86_64", + "8Base-satellite-6.14-utils:rubygem-unicode-debuginfo-0:0.4.4.4-4.1.el8sat.x86_64", + "8Base-satellite-6.14-utils:rubygem-unicode-debugsource-0:0.4.4.4-4.1.el8sat.x86_64", + "8Base-satellite-6.14-utils:rubygem-unicode-display_width-0:1.8.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-unicode-display_width-0:1.8.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-version_gem-0:1.1.2-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-version_gem-0:1.1.2-1.el8sat.src", + "8Base-satellite-6.14-utils:satellite-0:6.14.0-3.el8sat.noarch", + "8Base-satellite-6.14-utils:satellite-0:6.14.0-3.el8sat.src", + "8Base-satellite-6.14-utils:satellite-capsule-0:6.14.0-3.el8sat.noarch", + "8Base-satellite-6.14-utils:satellite-cli-0:6.14.0-3.el8sat.noarch", + "8Base-satellite-6.14-utils:satellite-common-0:6.14.0-3.el8sat.noarch", + "8Base-satellite-6.14:ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.noarch", + "8Base-satellite-6.14:ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.src", + "8Base-satellite-6.14:ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14:ansible-lint-0:5.0.8-4.el8pc.noarch", + "8Base-satellite-6.14:ansible-lint-0:5.0.8-4.el8pc.src", + "8Base-satellite-6.14:ansible-runner-0:2.2.1-3.el8sat.noarch", + "8Base-satellite-6.14:ansible-runner-0:2.2.1-3.el8sat.src", + "8Base-satellite-6.14:ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.noarch", + "8Base-satellite-6.14:ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.src", + "8Base-satellite-6.14:ansiblerole-insights-client-0:1.7.1-2.el8sat.noarch", + "8Base-satellite-6.14:ansiblerole-insights-client-0:1.7.1-2.el8sat.src", + "8Base-satellite-6.14:candlepin-0:4.3.1-1.el8sat.noarch", + "8Base-satellite-6.14:candlepin-0:4.3.1-1.el8sat.src", + "8Base-satellite-6.14:candlepin-selinux-0:4.3.1-1.el8sat.noarch", + "8Base-satellite-6.14:cjson-0:1.7.14-5.el8sat.src", + "8Base-satellite-6.14:cjson-0:1.7.14-5.el8sat.x86_64", + "8Base-satellite-6.14:cjson-debuginfo-0:1.7.14-5.el8sat.x86_64", + "8Base-satellite-6.14:cjson-debugsource-0:1.7.14-5.el8sat.x86_64", + "8Base-satellite-6.14:createrepo_c-0:0.20.1-1.el8pc.src", + "8Base-satellite-6.14:createrepo_c-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14:createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14:createrepo_c-debugsource-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14:createrepo_c-libs-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14:createrepo_c-libs-debuginfo-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14:dynflow-utils-0:1.6.3-1.el8sat.src", + "8Base-satellite-6.14:dynflow-utils-0:1.6.3-1.el8sat.x86_64", + "8Base-satellite-6.14:foreman-bootloaders-redhat-0:202102220000-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-bootloaders-redhat-0:202102220000-1.el8sat.src", + "8Base-satellite-6.14:foreman-bootloaders-redhat-tftpboot-0:202102220000-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-discovery-image-1:4.1.0-10.el8sat.noarch", + "8Base-satellite-6.14:foreman-discovery-image-1:4.1.0-10.el8sat.src", + "8Base-satellite-6.14:foreman-discovery-image-service-0:1.0.0-4.1.el8sat.src", + "8Base-satellite-6.14:foreman-discovery-image-service-0:1.0.0-4.1.el8sat.x86_64", + "8Base-satellite-6.14:foreman-discovery-image-service-tui-0:1.0.0-4.1.el8sat.x86_64", + "8Base-satellite-6.14:foreman-installer-1:3.7.0.4-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-installer-1:3.7.0.4-1.el8sat.src", + "8Base-satellite-6.14:foreman-installer-katello-1:3.7.0.4-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-obsolete-packages-0:1.5-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-obsolete-packages-0:1.5-1.el8sat.src", + "8Base-satellite-6.14:foreman-proxy-0:3.7.0-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-proxy-0:3.7.0-1.el8sat.src", + "8Base-satellite-6.14:foreman-proxy-content-0:4.9.0-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-proxy-journald-0:3.7.0-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-selinux-0:3.7.0-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-selinux-0:3.7.0-1.el8sat.src", + "8Base-satellite-6.14:katello-0:4.9.0-1.el8sat.noarch", + "8Base-satellite-6.14:katello-0:4.9.0-1.el8sat.src", + "8Base-satellite-6.14:katello-certs-tools-0:2.9.0-2.el8sat.noarch", + "8Base-satellite-6.14:katello-certs-tools-0:2.9.0-2.el8sat.src", + "8Base-satellite-6.14:katello-client-bootstrap-0:1.7.9-1.el8sat.noarch", + "8Base-satellite-6.14:katello-client-bootstrap-0:1.7.9-1.el8sat.src", + "8Base-satellite-6.14:katello-common-0:4.9.0-1.el8sat.noarch", + "8Base-satellite-6.14:katello-debug-0:4.9.0-1.el8sat.noarch", + "8Base-satellite-6.14:katello-selinux-0:5.0.2-1.el8sat.noarch", + "8Base-satellite-6.14:katello-selinux-0:5.0.2-1.el8sat.src", + "8Base-satellite-6.14:libcomps-0:0.1.18-4.el8pc.src", + "8Base-satellite-6.14:libcomps-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14:libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14:libcomps-debugsource-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14:libdb-cxx-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14:libdb-cxx-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14:libdb-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14:libdb-debugsource-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14:libdb-java-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14:libdb-sql-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14:libdb-sql-devel-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14:libdb-tcl-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14:libdb-utils-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14:libsodium-0:1.0.17-3.el8sat.src", + "8Base-satellite-6.14:libsodium-0:1.0.17-3.el8sat.x86_64", + "8Base-satellite-6.14:libsodium-debuginfo-0:1.0.17-3.el8sat.x86_64", + "8Base-satellite-6.14:libsodium-debugsource-0:1.0.17-3.el8sat.x86_64", + "8Base-satellite-6.14:libsolv-0:0.7.22-4.el8pc.src", + "8Base-satellite-6.14:libsolv-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14:libsolv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14:libsolv-debugsource-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14:libsolv-demo-debuginfo-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14:libsolv-tools-debuginfo-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14:libwebsockets-0:2.4.2-2.el8.src", + "8Base-satellite-6.14:libwebsockets-0:2.4.2-2.el8.x86_64", + "8Base-satellite-6.14:libwebsockets-debuginfo-0:2.4.2-2.el8.x86_64", + "8Base-satellite-6.14:libwebsockets-debugsource-0:2.4.2-2.el8.x86_64", + "8Base-satellite-6.14:libwebsockets-tests-debuginfo-0:2.4.2-2.el8.x86_64", + "8Base-satellite-6.14:mosquitto-0:2.0.14-1.el8sat.src", + "8Base-satellite-6.14:mosquitto-0:2.0.14-1.el8sat.x86_64", + "8Base-satellite-6.14:mosquitto-debuginfo-0:2.0.14-1.el8sat.x86_64", + "8Base-satellite-6.14:mosquitto-debugsource-0:2.0.14-1.el8sat.x86_64", + "8Base-satellite-6.14:postgresql-evr-0:0.0.2-1.el8sat.src", + "8Base-satellite-6.14:postgresql-evr-0:0.0.2-1.el8sat.x86_64", + "8Base-satellite-6.14:pulpcore-selinux-0:1.3.3-1.el8pc.src", + "8Base-satellite-6.14:pulpcore-selinux-0:1.3.3-1.el8pc.x86_64", + "8Base-satellite-6.14:puppet-agent-0:7.26.0-3.el8sat.src", + "8Base-satellite-6.14:puppet-agent-0:7.26.0-3.el8sat.x86_64", + "8Base-satellite-6.14:puppet-agent-oauth-0:0.5.10-1.el8sat.noarch", + "8Base-satellite-6.14:puppet-agent-oauth-0:0.5.10-1.el8sat.src", + "8Base-satellite-6.14:puppet-foreman_scap_client-0:0.4.0-1.el8sat.noarch", + "8Base-satellite-6.14:puppet-foreman_scap_client-0:0.4.0-1.el8sat.src", + "8Base-satellite-6.14:puppetlabs-stdlib-0:5.2.0-1.el8sat.noarch", + "8Base-satellite-6.14:puppetlabs-stdlib-0:5.2.0-1.el8sat.src", + "8Base-satellite-6.14:puppetserver-0:7.11.0-1.el8sat.noarch", + "8Base-satellite-6.14:puppetserver-0:7.11.0-1.el8sat.src", + "8Base-satellite-6.14:python-aiodns-0:3.0.0-3.el8pc.src", + "8Base-satellite-6.14:python-aiofiles-0:22.1.0-1.el8pc.src", + "8Base-satellite-6.14:python-aiohttp-0:3.8.3-2.el8pc.src", + "8Base-satellite-6.14:python-aiohttp-debugsource-0:3.8.3-2.el8pc.x86_64", + "8Base-satellite-6.14:python-aiohttp-xmlrpc-0:1.5.0-2.el8pc.src", + "8Base-satellite-6.14:python-aioredis-0:2.0.1-2.el8pc.src", + "8Base-satellite-6.14:python-aiosignal-0:1.3.1-1.el8pc.src", + "8Base-satellite-6.14:python-ansible-builder-0:1.0.1-4.el8pc.src", + "8Base-satellite-6.14:python-asgiref-0:3.6.0-1.el8pc.src", + "8Base-satellite-6.14:python-async-lru-0:1.0.3-1.el8pc.src", + "8Base-satellite-6.14:python-async-timeout-0:4.0.2-2.el8pc.src", + "8Base-satellite-6.14:python-asyncio-throttle-0:1.0.2-3.el8pc.src", + "8Base-satellite-6.14:python-attrs-0:21.4.0-2.el8pc.src", + "8Base-satellite-6.14:python-backoff-0:2.2.1-1.el8pc.src", + "8Base-satellite-6.14:python-bindep-0:2.11.0-2.el8pc.src", + "8Base-satellite-6.14:python-bleach-0:3.3.1-2.el8pc.src", + "8Base-satellite-6.14:python-bleach-allowlist-0:1.0.3-3.el8pc.src", + "8Base-satellite-6.14:python-bracex-0:2.2.1-2.el8pc.src", + "8Base-satellite-6.14:python-brotli-0:1.0.9-2.el8pc.src", + "8Base-satellite-6.14:python-brotli-debugsource-0:1.0.9-2.el8pc.x86_64", + "8Base-satellite-6.14:python-cchardet-0:2.1.7-4.el8pc.src", + "8Base-satellite-6.14:python-cchardet-debugsource-0:2.1.7-4.el8pc.x86_64", + "8Base-satellite-6.14:python-certifi-0:2022.12.7-1.1.el8pc.src", + "8Base-satellite-6.14:python-cffi-0:1.15.1-1.el8pc.src", + "8Base-satellite-6.14:python-cffi-debugsource-0:1.15.1-1.el8pc.x86_64", + "8Base-satellite-6.14:python-chardet-0:5.0.0-1.el8pc.src", + "8Base-satellite-6.14:python-charset-normalizer-0:2.1.1-1.el8pc.src", + "8Base-satellite-6.14:python-click-0:8.1.3-1.el8pc.src", + "8Base-satellite-6.14:python-click-shell-0:2.1-3.el8pc.src", + "8Base-satellite-6.14:python-colorama-0:0.4.4-3.el8pc.src", + "8Base-satellite-6.14:python-commonmark-0:0.9.1-5.el8pc.src", + "8Base-satellite-6.14:python-contextlib2-0:21.6.0-3.el8pc.src", + "8Base-satellite-6.14:python-cryptography-0:38.0.4-1.el8pc.src", + "8Base-satellite-6.14:python-cryptography-debugsource-0:38.0.4-1.el8pc.x86_64", + "8Base-satellite-6.14:python-daemon-0:2.3.1-1.1.el8sat.src", + "8Base-satellite-6.14:python-dataclasses-0:0.8-3.el8pc.src", + "8Base-satellite-6.14:python-dateutil-0:2.8.2-2.el8pc.src", + "8Base-satellite-6.14:python-debian-0:0.1.44-3.el8pc.src", + "8Base-satellite-6.14:python-defusedxml-0:0.7.1-3.el8pc.src", + "8Base-satellite-6.14:python-deprecated-0:1.2.13-1.el8pc.src", + "8Base-satellite-6.14:python-diff-match-patch-0:20200713-3.el8pc.src", + "8Base-satellite-6.14:python-distro-0:1.7.0-1.el8pc.src", + "8Base-satellite-6.14:python-django-0:3.2.21-1.el8pc.src", + "8Base-satellite-6.14:python-django-currentuser-0:0.5.3-5.el8pc.src", + "8Base-satellite-6.14:python-django-filter-0:22.1-2.el8pc.src", + "8Base-satellite-6.14:python-django-guid-0:3.3.0-1.el8pc.src", + "8Base-satellite-6.14:python-django-import-export-0:3.0.2-1.el8pc.src", + "8Base-satellite-6.14:python-django-lifecycle-0:1.0.0-1.el8pc.src", + "8Base-satellite-6.14:python-django-readonly-field-0:1.1.2-1.el8pc.src", + "8Base-satellite-6.14:python-djangorestframework-0:3.14.0-1.el8pc.src", + "8Base-satellite-6.14:python-djangorestframework-queryfields-0:1.0.0-5.el8pc.src", + "8Base-satellite-6.14:python-docutils-0:0.19-1.1.el8sat.src", + "8Base-satellite-6.14:python-drf-access-policy-0:1.3.0-1.el8pc.src", + "8Base-satellite-6.14:python-drf-nested-routers-0:0.93.4-3.el8pc.src", + "8Base-satellite-6.14:python-drf-spectacular-0:0.25.0-1.el8pc.src", + "8Base-satellite-6.14:python-dynaconf-0:3.1.11-1.el8pc.src", + "8Base-satellite-6.14:python-ecdsa-0:0.18.0-1.el8pc.src", + "8Base-satellite-6.14:python-enrich-0:1.2.6-5.el8pc.src", + "8Base-satellite-6.14:python-et-xmlfile-0:1.1.0-2.el8pc.src", + "8Base-satellite-6.14:python-flake8-0:3.9.2-5.el8pc.src", + "8Base-satellite-6.14:python-frozenlist-0:1.3.3-1.el8pc.src", + "8Base-satellite-6.14:python-frozenlist-debugsource-0:1.3.3-1.el8pc.x86_64", + "8Base-satellite-6.14:python-future-0:0.18.3-1.el8pc.src", + "8Base-satellite-6.14:python-galaxy-importer-0:0.4.6-1.el8pc.src", + "8Base-satellite-6.14:python-gitdb-0:4.0.10-1.el8pc.src", + "8Base-satellite-6.14:python-gitpython-0:3.1.32-1.el8pc.src", + "8Base-satellite-6.14:python-gnupg-0:0.5.0-1.el8pc.src", + "8Base-satellite-6.14:python-gunicorn-0:20.1.0-5.el8pc.src", + "8Base-satellite-6.14:python-idna-0:3.3-2.el8pc.src", + "8Base-satellite-6.14:python-idna-ssl-0:1.1.0-5.el8pc.src", + "8Base-satellite-6.14:python-importlib-metadata-0:4.10.1-2.el8pc.src", + "8Base-satellite-6.14:python-inflection-0:0.5.1-3.el8pc.src", + "8Base-satellite-6.14:python-iniparse-0:0.4-35.el8pc.src", + "8Base-satellite-6.14:python-jinja2-0:3.1.2-1.el8pc.src", + "8Base-satellite-6.14:python-jsonschema-0:4.9.1-1.el8pc.src", + "8Base-satellite-6.14:python-lockfile-0:0.12.2-1.el8sat.src", + "8Base-satellite-6.14:python-lxml-0:4.9.2-1.el8pc.src", + "8Base-satellite-6.14:python-lxml-debugsource-0:4.9.2-1.el8pc.x86_64", + "8Base-satellite-6.14:python-markdown-0:3.4.1-1.el8pc.src", + "8Base-satellite-6.14:python-markuppy-0:1.14-3.el8pc.src", + "8Base-satellite-6.14:python-markupsafe-0:2.1.2-1.el8pc.src", + "8Base-satellite-6.14:python-markupsafe-debugsource-0:2.1.2-1.el8pc.x86_64", + "8Base-satellite-6.14:python-mccabe-0:0.6.1-3.el8pc.src", + "8Base-satellite-6.14:python-multidict-0:6.0.4-1.el8pc.src", + "8Base-satellite-6.14:python-multidict-debugsource-0:6.0.4-1.el8pc.x86_64", + "8Base-satellite-6.14:python-naya-0:1.1.1-3.el8pc.src", + "8Base-satellite-6.14:python-odfpy-0:1.4.1-6.el8pc.src", + "8Base-satellite-6.14:python-openpyxl-0:3.1.0-1.el8pc.src", + "8Base-satellite-6.14:python-packaging-0:21.3-1.el8pc.src", + "8Base-satellite-6.14:python-parsley-0:1.3-2.el8pc.src", + "8Base-satellite-6.14:python-pbr-0:5.8.0-4.el8pc.src", + "8Base-satellite-6.14:python-pexpect-0:4.8.0-2.el8sat.src", + "8Base-satellite-6.14:python-productmd-0:1.33-3.el8pc.src", + "8Base-satellite-6.14:python-protobuf-0:4.21.6-1.el8pc.src", + "8Base-satellite-6.14:python-psycopg2-0:2.9.3-2.el8pc.src", + "8Base-satellite-6.14:python-psycopg2-debugsource-0:2.9.3-2.el8pc.x86_64", + "8Base-satellite-6.14:python-ptyprocess-0:0.7.0-1.el8sat.src", + "8Base-satellite-6.14:python-pulp-ansible-1:0.16.0-1.el8pc.src", + "8Base-satellite-6.14:python-pulp-certguard-0:1.5.6-1.el8pc.src", + "8Base-satellite-6.14:python-pulp-cli-0:0.14.0-4.el8pc.src", + "8Base-satellite-6.14:python-pulp-container-0:2.14.7-1.el8pc.src", + "8Base-satellite-6.14:python-pulp-deb-0:2.20.2-1.el8pc.src", + "8Base-satellite-6.14:python-pulp-file-0:1.12.0-1.el8pc.src", + "8Base-satellite-6.14:python-pulp-rpm-0:3.19.9-1.el8pc.src", + "8Base-satellite-6.14:python-pulp_manifest-0:3.0.0-3.el8pc.src", + "8Base-satellite-6.14:python-pulpcore-0:3.22.15-2.el8pc.src", + "8Base-satellite-6.14:python-pyOpenSSL-0:22.1.0-1.el8pc.src", + "8Base-satellite-6.14:python-pycares-0:4.1.2-2.el8pc.src", + "8Base-satellite-6.14:python-pycares-debugsource-0:4.1.2-2.el8pc.x86_64", + "8Base-satellite-6.14:python-pycodestyle-0:2.7.0-5.el8pc.src", + "8Base-satellite-6.14:python-pycparser-0:2.21-2.el8pc.src", + "8Base-satellite-6.14:python-pycryptodomex-0:3.14.1-2.el8pc.src", + "8Base-satellite-6.14:python-pycryptodomex-debugsource-0:3.14.1-2.el8pc.x86_64", + "8Base-satellite-6.14:python-pyflakes-0:2.3.1-5.el8pc.src", + "8Base-satellite-6.14:python-pygments-0:2.14.0-1.el8pc.src", + "8Base-satellite-6.14:python-pygtrie-0:2.5.0-1.el8pc.src", + "8Base-satellite-6.14:python-pyjwkest-0:1.4.2-6.el8pc.src", + "8Base-satellite-6.14:python-pyjwt-0:2.5.0-2.el8pc.src", + "8Base-satellite-6.14:python-pyparsing-0:2.4.7-3.el8pc.src", + "8Base-satellite-6.14:python-pyrsistent-0:0.18.1-2.el8pc.src", + "8Base-satellite-6.14:python-pyrsistent-debugsource-0:0.18.1-2.el8pc.x86_64", + "8Base-satellite-6.14:python-pytz-0:2022.2.1-1.el8pc.src", + "8Base-satellite-6.14:python-pyyaml-0:5.4.1-4.el8pc.src", + "8Base-satellite-6.14:python-qpid-0:1.37.0-1.el8.src", + "8Base-satellite-6.14:python-redis-0:4.3.4-1.el8pc.src", + "8Base-satellite-6.14:python-requests-0:2.31.0-1.el8pc.src", + "8Base-satellite-6.14:python-requirements-parser-0:0.2.0-3.el8pc.src", + "8Base-satellite-6.14:python-rhsm-0:1.19.2-3.el8pc.src", + "8Base-satellite-6.14:python-rhsm-debugsource-0:1.19.2-3.el8pc.x86_64", + "8Base-satellite-6.14:python-rich-0:13.3.1-2.el8pc.src", + "8Base-satellite-6.14:python-ruamel-yaml-0:0.17.21-2.el8pc.src", + "8Base-satellite-6.14:python-ruamel-yaml-clib-0:0.2.7-1.el8pc.src", + "8Base-satellite-6.14:python-ruamel-yaml-clib-debugsource-0:0.2.7-1.el8pc.x86_64", + "8Base-satellite-6.14:python-schema-0:0.7.5-2.el8pc.src", + "8Base-satellite-6.14:python-semantic-version-0:2.10.0-1.el8pc.src", + "8Base-satellite-6.14:python-six-0:1.16.0-2.el8pc.src", + "8Base-satellite-6.14:python-smmap-0:5.0.0-2.el8pc.src", + "8Base-satellite-6.14:python-sqlparse-0:0.4.4-1.el8pc.src", + "8Base-satellite-6.14:python-tablib-0:3.3.0-1.el8pc.src", + "8Base-satellite-6.14:python-tenacity-0:7.0.0-3.el8pc.src", + "8Base-satellite-6.14:python-toml-0:0.10.2-3.el8pc.src", + "8Base-satellite-6.14:python-types-cryptography-0:3.3.23.2-1.el8pc.src", + "8Base-satellite-6.14:python-typing-extensions-0:3.10.0.2-2.el8pc.src", + "8Base-satellite-6.14:python-uritemplate-0:4.1.1-2.el8pc.src", + "8Base-satellite-6.14:python-url-normalize-0:1.4.3-4.el8pc.src", + "8Base-satellite-6.14:python-urllib3-0:1.26.8-2.el8pc.src", + "8Base-satellite-6.14:python-urlman-0:2.0.1-1.el8pc.src", + "8Base-satellite-6.14:python-wcmatch-0:8.3-2.el8pc.src", + "8Base-satellite-6.14:python-webencodings-0:0.5.1-3.el8pc.src", + "8Base-satellite-6.14:python-websockify-0:0.10.0-3.el8sat.src", + "8Base-satellite-6.14:python-whitenoise-0:6.0.0-1.el8pc.src", + "8Base-satellite-6.14:python-wrapt-0:1.14.1-1.el8pc.src", + "8Base-satellite-6.14:python-wrapt-debugsource-0:1.14.1-1.el8pc.x86_64", + "8Base-satellite-6.14:python-xlrd-0:2.0.1-5.el8pc.src", + "8Base-satellite-6.14:python-xlwt-0:1.3.0-3.el8pc.src", + "8Base-satellite-6.14:python-yarl-0:1.8.2-1.el8pc.src", + "8Base-satellite-6.14:python-yarl-debugsource-0:1.8.2-1.el8pc.x86_64", + "8Base-satellite-6.14:python-zipp-0:3.4.0-4.el8pc.src", + "8Base-satellite-6.14:python2-qpid-0:1.37.0-1.el8.noarch", + "8Base-satellite-6.14:python2-qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:python2-saslwrapper-0:0.22-6.el8sat.x86_64", + "8Base-satellite-6.14:python2-saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "8Base-satellite-6.14:python3-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14:python3-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14:python3-libcomps-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14:python3-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14:python3-qpid-proton-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14:python3-qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14:python3-solv-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14:python3-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14:python3-websockify-0:0.10.0-3.el8sat.noarch", + "8Base-satellite-6.14:python39-aiodns-0:3.0.0-3.el8pc.noarch", + "8Base-satellite-6.14:python39-aiofiles-0:22.1.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-aiohttp-0:3.8.3-2.el8pc.x86_64", + "8Base-satellite-6.14:python39-aiohttp-debuginfo-0:3.8.3-2.el8pc.x86_64", + "8Base-satellite-6.14:python39-aiohttp-xmlrpc-0:1.5.0-2.el8pc.noarch", + "8Base-satellite-6.14:python39-aioredis-0:2.0.1-2.el8pc.noarch", + "8Base-satellite-6.14:python39-aiosignal-0:1.3.1-1.el8pc.noarch", + "8Base-satellite-6.14:python39-ansible-builder-0:1.0.1-4.el8pc.noarch", + "8Base-satellite-6.14:python39-ansible-runner-0:2.2.1-3.el8sat.noarch", + "8Base-satellite-6.14:python39-asgiref-0:3.6.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-async-lru-0:1.0.3-1.el8pc.noarch", + "8Base-satellite-6.14:python39-async-timeout-0:4.0.2-2.el8pc.noarch", + "8Base-satellite-6.14:python39-asyncio-throttle-0:1.0.2-3.el8pc.noarch", + "8Base-satellite-6.14:python39-attrs-0:21.4.0-2.el8pc.noarch", + "8Base-satellite-6.14:python39-backoff-0:2.2.1-1.el8pc.noarch", + "8Base-satellite-6.14:python39-bindep-0:2.11.0-2.el8pc.noarch", + "8Base-satellite-6.14:python39-bleach-0:3.3.1-2.el8pc.noarch", + "8Base-satellite-6.14:python39-bleach-allowlist-0:1.0.3-3.el8pc.noarch", + "8Base-satellite-6.14:python39-bracex-0:2.2.1-2.el8pc.noarch", + "8Base-satellite-6.14:python39-brotli-0:1.0.9-2.el8pc.x86_64", + "8Base-satellite-6.14:python39-brotli-debuginfo-0:1.0.9-2.el8pc.x86_64", + "8Base-satellite-6.14:python39-cchardet-0:2.1.7-4.el8pc.x86_64", + "8Base-satellite-6.14:python39-cchardet-debuginfo-0:2.1.7-4.el8pc.x86_64", + "8Base-satellite-6.14:python39-certifi-0:2022.12.7-1.1.el8pc.noarch", + "8Base-satellite-6.14:python39-cffi-0:1.15.1-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-cffi-debuginfo-0:1.15.1-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-chardet-0:5.0.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-charset-normalizer-0:2.1.1-1.el8pc.noarch", + "8Base-satellite-6.14:python39-click-0:8.1.3-1.el8pc.noarch", + "8Base-satellite-6.14:python39-click-shell-0:2.1-3.el8pc.noarch", + "8Base-satellite-6.14:python39-colorama-0:0.4.4-3.el8pc.noarch", + "8Base-satellite-6.14:python39-commonmark-0:0.9.1-5.el8pc.noarch", + "8Base-satellite-6.14:python39-contextlib2-0:21.6.0-3.el8pc.noarch", + "8Base-satellite-6.14:python39-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-cryptography-0:38.0.4-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-cryptography-debuginfo-0:38.0.4-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-daemon-0:2.3.1-1.1.el8sat.noarch", + "8Base-satellite-6.14:python39-dataclasses-0:0.8-3.el8pc.noarch", + "8Base-satellite-6.14:python39-dateutil-0:2.8.2-2.el8pc.noarch", + "8Base-satellite-6.14:python39-debian-0:0.1.44-3.el8pc.noarch", + "8Base-satellite-6.14:python39-defusedxml-0:0.7.1-3.el8pc.noarch", + "8Base-satellite-6.14:python39-deprecated-0:1.2.13-1.el8pc.noarch", + "8Base-satellite-6.14:python39-diff-match-patch-0:20200713-3.el8pc.noarch", + "8Base-satellite-6.14:python39-distro-0:1.7.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-django-0:3.2.21-1.el8pc.noarch", + "8Base-satellite-6.14:python39-django-currentuser-0:0.5.3-5.el8pc.noarch", + "8Base-satellite-6.14:python39-django-filter-0:22.1-2.el8pc.noarch", + "8Base-satellite-6.14:python39-django-guid-0:3.3.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-django-import-export-0:3.0.2-1.el8pc.noarch", + "8Base-satellite-6.14:python39-django-lifecycle-0:1.0.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-django-readonly-field-0:1.1.2-1.el8pc.noarch", + "8Base-satellite-6.14:python39-djangorestframework-0:3.14.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-djangorestframework-queryfields-0:1.0.0-5.el8pc.noarch", + "8Base-satellite-6.14:python39-docutils-0:0.19-1.1.el8sat.noarch", + "8Base-satellite-6.14:python39-drf-access-policy-0:1.3.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-drf-nested-routers-0:0.93.4-3.el8pc.noarch", + "8Base-satellite-6.14:python39-drf-spectacular-0:0.25.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-dynaconf-0:3.1.11-1.el8pc.noarch", + "8Base-satellite-6.14:python39-ecdsa-0:0.18.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-enrich-0:1.2.6-5.el8pc.noarch", + "8Base-satellite-6.14:python39-et-xmlfile-0:1.1.0-2.el8pc.noarch", + "8Base-satellite-6.14:python39-flake8-0:3.9.2-5.el8pc.noarch", + "8Base-satellite-6.14:python39-frozenlist-0:1.3.3-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-frozenlist-debuginfo-0:1.3.3-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-future-0:0.18.3-1.el8pc.noarch", + "8Base-satellite-6.14:python39-galaxy-importer-0:0.4.6-1.el8pc.noarch", + "8Base-satellite-6.14:python39-gitdb-0:4.0.10-1.el8pc.noarch", + "8Base-satellite-6.14:python39-gitpython-0:3.1.32-1.el8pc.noarch", + "8Base-satellite-6.14:python39-gnupg-0:0.5.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-gunicorn-0:20.1.0-5.el8pc.noarch", + "8Base-satellite-6.14:python39-idna-0:3.3-2.el8pc.noarch", + "8Base-satellite-6.14:python39-idna-ssl-0:1.1.0-5.el8pc.noarch", + "8Base-satellite-6.14:python39-importlib-metadata-0:4.10.1-2.el8pc.noarch", + "8Base-satellite-6.14:python39-inflection-0:0.5.1-3.el8pc.noarch", + "8Base-satellite-6.14:python39-iniparse-0:0.4-35.el8pc.noarch", + "8Base-satellite-6.14:python39-jinja2-0:3.1.2-1.el8pc.noarch", + "8Base-satellite-6.14:python39-jsonschema-0:4.9.1-1.el8pc.noarch", + "8Base-satellite-6.14:python39-libcomps-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14:python39-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14:python39-lockfile-0:0.12.2-1.el8sat.noarch", + "8Base-satellite-6.14:python39-lxml-0:4.9.2-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-lxml-debuginfo-0:4.9.2-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-markdown-0:3.4.1-1.el8pc.noarch", + "8Base-satellite-6.14:python39-markuppy-0:1.14-3.el8pc.noarch", + "8Base-satellite-6.14:python39-markupsafe-0:2.1.2-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-markupsafe-debuginfo-0:2.1.2-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-mccabe-0:0.6.1-3.el8pc.noarch", + "8Base-satellite-6.14:python39-multidict-0:6.0.4-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-multidict-debuginfo-0:6.0.4-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-naya-0:1.1.1-3.el8pc.noarch", + "8Base-satellite-6.14:python39-odfpy-0:1.4.1-6.el8pc.noarch", + "8Base-satellite-6.14:python39-openpyxl-0:3.1.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-packaging-0:21.3-1.el8pc.noarch", + "8Base-satellite-6.14:python39-parsley-0:1.3-2.el8pc.noarch", + "8Base-satellite-6.14:python39-pbr-0:5.8.0-4.el8pc.noarch", + "8Base-satellite-6.14:python39-pexpect-0:4.8.0-2.el8sat.noarch", + "8Base-satellite-6.14:python39-productmd-0:1.33-3.el8pc.noarch", + "8Base-satellite-6.14:python39-protobuf-0:4.21.6-1.el8pc.noarch", + "8Base-satellite-6.14:python39-psycopg2-0:2.9.3-2.el8pc.x86_64", + "8Base-satellite-6.14:python39-psycopg2-debuginfo-0:2.9.3-2.el8pc.x86_64", + "8Base-satellite-6.14:python39-ptyprocess-0:0.7.0-1.el8sat.noarch", + "8Base-satellite-6.14:python39-pulp-ansible-1:0.16.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-pulp-certguard-0:1.5.6-1.el8pc.noarch", + "8Base-satellite-6.14:python39-pulp-cli-0:0.14.0-4.el8pc.noarch", + "8Base-satellite-6.14:python39-pulp-container-0:2.14.7-1.el8pc.noarch", + "8Base-satellite-6.14:python39-pulp-deb-0:2.20.2-1.el8pc.noarch", + "8Base-satellite-6.14:python39-pulp-file-0:1.12.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-pulp-rpm-0:3.19.9-1.el8pc.noarch", + "8Base-satellite-6.14:python39-pulp_manifest-0:3.0.0-3.el8pc.noarch", + "8Base-satellite-6.14:python39-pulpcore-0:3.22.15-2.el8pc.noarch", + "8Base-satellite-6.14:python39-pyOpenSSL-0:22.1.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-pycares-0:4.1.2-2.el8pc.x86_64", + "8Base-satellite-6.14:python39-pycares-debuginfo-0:4.1.2-2.el8pc.x86_64", + "8Base-satellite-6.14:python39-pycodestyle-0:2.7.0-5.el8pc.noarch", + "8Base-satellite-6.14:python39-pycparser-0:2.21-2.el8pc.noarch", + "8Base-satellite-6.14:python39-pycryptodomex-0:3.14.1-2.el8pc.x86_64", + "8Base-satellite-6.14:python39-pycryptodomex-debuginfo-0:3.14.1-2.el8pc.x86_64", + "8Base-satellite-6.14:python39-pyflakes-0:2.3.1-5.el8pc.noarch", + "8Base-satellite-6.14:python39-pygments-0:2.14.0-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-pygtrie-0:2.5.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-pyjwkest-0:1.4.2-6.el8pc.noarch", + "8Base-satellite-6.14:python39-pyjwt-0:2.5.0-2.el8pc.noarch", + "8Base-satellite-6.14:python39-pyparsing-0:2.4.7-3.el8pc.noarch", + "8Base-satellite-6.14:python39-pyrsistent-0:0.18.1-2.el8pc.x86_64", + "8Base-satellite-6.14:python39-pyrsistent-debuginfo-0:0.18.1-2.el8pc.x86_64", + "8Base-satellite-6.14:python39-pytz-0:2022.2.1-1.el8pc.noarch", + "8Base-satellite-6.14:python39-pyyaml-0:5.4.1-4.el8pc.x86_64", + "8Base-satellite-6.14:python39-redis-0:4.3.4-1.el8pc.noarch", + "8Base-satellite-6.14:python39-requests-0:2.31.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-requirements-parser-0:0.2.0-3.el8pc.noarch", + "8Base-satellite-6.14:python39-rhsm-0:1.19.2-3.el8pc.x86_64", + "8Base-satellite-6.14:python39-rhsm-debuginfo-0:1.19.2-3.el8pc.x86_64", + "8Base-satellite-6.14:python39-rich-0:13.3.1-2.el8pc.noarch", + "8Base-satellite-6.14:python39-ruamel-yaml-0:0.17.21-2.el8pc.noarch", + "8Base-satellite-6.14:python39-ruamel-yaml-clib-0:0.2.7-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-ruamel-yaml-clib-debuginfo-0:0.2.7-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-schema-0:0.7.5-2.el8pc.noarch", + "8Base-satellite-6.14:python39-semantic-version-0:2.10.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-six-0:1.16.0-2.el8pc.noarch", + "8Base-satellite-6.14:python39-smmap-0:5.0.0-2.el8pc.noarch", + "8Base-satellite-6.14:python39-solv-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14:python39-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14:python39-sqlparse-0:0.4.4-1.el8pc.noarch", + "8Base-satellite-6.14:python39-tablib-0:3.3.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-tenacity-0:7.0.0-3.el8pc.noarch", + "8Base-satellite-6.14:python39-toml-0:0.10.2-3.el8pc.noarch", + "8Base-satellite-6.14:python39-types-cryptography-0:3.3.23.2-1.el8pc.noarch", + "8Base-satellite-6.14:python39-typing-extensions-0:3.10.0.2-2.el8pc.noarch", + "8Base-satellite-6.14:python39-uritemplate-0:4.1.1-2.el8pc.noarch", + "8Base-satellite-6.14:python39-url-normalize-0:1.4.3-4.el8pc.noarch", + "8Base-satellite-6.14:python39-urllib3-0:1.26.8-2.el8pc.noarch", + "8Base-satellite-6.14:python39-urlman-0:2.0.1-1.el8pc.noarch", + "8Base-satellite-6.14:python39-wcmatch-0:8.3-2.el8pc.noarch", + "8Base-satellite-6.14:python39-webencodings-0:0.5.1-3.el8pc.noarch", + "8Base-satellite-6.14:python39-whitenoise-0:6.0.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-wrapt-0:1.14.1-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-wrapt-debuginfo-0:1.14.1-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-xlrd-0:2.0.1-5.el8pc.noarch", + "8Base-satellite-6.14:python39-xlwt-0:1.3.0-3.el8pc.noarch", + "8Base-satellite-6.14:python39-yarl-0:1.8.2-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-yarl-debuginfo-0:1.8.2-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-zipp-0:3.4.0-4.el8pc.noarch", + "8Base-satellite-6.14:qpid-cpp-0:1.39.0-7.el8amq.src", + "8Base-satellite-6.14:qpid-cpp-client-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-cpp-client-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-cpp-client-devel-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-cpp-client-devel-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-cpp-client-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-cpp-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-cpp-debugsource-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-cpp-server-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-cpp-server-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-cpp-server-ha-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-cpp-server-linearstore-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-cpp-server-linearstore-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-cpp-server-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-dispatch-0:1.14.0-6.el8.src", + "8Base-satellite-6.14:qpid-dispatch-debugsource-0:1.14.0-6.el8.x86_64", + "8Base-satellite-6.14:qpid-dispatch-router-0:1.14.0-6.el8.x86_64", + "8Base-satellite-6.14:qpid-dispatch-router-debuginfo-0:1.14.0-6.el8.x86_64", + "8Base-satellite-6.14:qpid-dispatch-tools-0:1.14.0-6.el8.noarch", + "8Base-satellite-6.14:qpid-proton-0:0.33.0-4.el8.src", + "8Base-satellite-6.14:qpid-proton-c-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14:qpid-proton-c-debuginfo-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14:qpid-proton-cpp-debuginfo-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14:qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14:qpid-proton-debugsource-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14:qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-qmf-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-tools-0:1.39.0-7.el8amq.noarch", + "8Base-satellite-6.14:redhat-access-insights-puppet-0:1.0.1-1.el8sat.noarch", + "8Base-satellite-6.14:redhat-access-insights-puppet-0:1.0.1-1.el8sat.src", + "8Base-satellite-6.14:ruby-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14:rubygem-actioncable-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-actioncable-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-actionmailbox-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-actionmailbox-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-actionmailer-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-actionmailer-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-actionpack-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-actionpack-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-actiontext-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-actiontext-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-actionview-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-actionview-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-activejob-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-activejob-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-activemodel-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-activemodel-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-activerecord-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-activerecord-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-activerecord-import-0:1.4.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-activerecord-import-0:1.4.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-activerecord-session_store-0:2.0.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-activerecord-session_store-0:2.0.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-activestorage-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-activestorage-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-activesupport-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-activesupport-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-acts_as_list-0:1.0.3-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-acts_as_list-0:1.0.3-2.el8sat.src", + "8Base-satellite-6.14:rubygem-addressable-0:2.8.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-addressable-0:2.8.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-algebrick-0:0.7.5-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-algebrick-0:0.7.5-1.el8sat.src", + "8Base-satellite-6.14:rubygem-amazing_print-0:1.4.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-amazing_print-0:1.4.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-ancestry-0:4.3.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-ancestry-0:4.3.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-anemone-0:0.7.2-23.el8sat.noarch", + "8Base-satellite-6.14:rubygem-anemone-0:0.7.2-23.el8sat.src", + "8Base-satellite-6.14:rubygem-angular-rails-templates-1:1.1.0-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-angular-rails-templates-1:1.1.0-2.el8sat.src", + "8Base-satellite-6.14:rubygem-ansi-0:1.5.0-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-ansi-0:1.5.0-3.el8sat.src", + "8Base-satellite-6.14:rubygem-apipie-bindings-0:0.6.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-apipie-bindings-0:0.6.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-apipie-dsl-0:2.5.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-apipie-dsl-0:2.5.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-apipie-params-0:0.0.5-5.1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-apipie-params-0:0.0.5-5.1.el8sat.src", + "8Base-satellite-6.14:rubygem-apipie-rails-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-apipie-rails-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-audited-0:5.3.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-audited-0:5.3.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.src", + "8Base-satellite-6.14:rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.src", + "8Base-satellite-6.14:rubygem-bcrypt-0:3.1.18-1.el8sat.src", + "8Base-satellite-6.14:rubygem-bcrypt-0:3.1.18-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-bcrypt-debuginfo-0:3.1.18-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-bcrypt-debugsource-0:3.1.18-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-builder-0:3.2.4-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-builder-0:3.2.4-2.el8sat.src", + "8Base-satellite-6.14:rubygem-bundler_ext-0:0.4.1-6.el8sat.noarch", + "8Base-satellite-6.14:rubygem-bundler_ext-0:0.4.1-6.el8sat.src", + "8Base-satellite-6.14:rubygem-clamp-0:1.3.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-clamp-0:1.3.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-coffee-rails-0:5.0.0-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-coffee-rails-0:5.0.0-2.el8sat.src", + "8Base-satellite-6.14:rubygem-coffee-script-0:2.4.1-5.el8sat.noarch", + "8Base-satellite-6.14:rubygem-coffee-script-0:2.4.1-5.el8sat.src", + "8Base-satellite-6.14:rubygem-coffee-script-source-0:1.12.2-5.el8sat.noarch", + "8Base-satellite-6.14:rubygem-coffee-script-source-0:1.12.2-5.el8sat.src", + "8Base-satellite-6.14:rubygem-colorize-0:0.8.1-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-colorize-0:0.8.1-2.el8sat.src", + "8Base-satellite-6.14:rubygem-concurrent-ruby-1:1.1.10-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-concurrent-ruby-1:1.1.10-1.el8sat.src", + "8Base-satellite-6.14:rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.src", + "8Base-satellite-6.14:rubygem-connection_pool-0:2.4.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-connection_pool-0:2.4.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-crass-0:1.0.6-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-crass-0:1.0.6-2.el8sat.src", + "8Base-satellite-6.14:rubygem-css_parser-0:1.14.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-css_parser-0:1.14.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-daemons-0:1.4.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-daemons-0:1.4.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-deacon-0:1.0.0-5.el8sat.noarch", + "8Base-satellite-6.14:rubygem-deacon-0:1.0.0-5.el8sat.src", + "8Base-satellite-6.14:rubygem-declarative-0:0.0.20-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-declarative-0:0.0.20-1.el8sat.src", + "8Base-satellite-6.14:rubygem-deep_cloneable-0:3.2.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-deep_cloneable-0:3.2.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-deface-0:1.5.3-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-deface-0:1.5.3-3.el8sat.src", + "8Base-satellite-6.14:rubygem-diffy-0:3.4.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-diffy-0:3.4.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-domain_name-0:0.5.20190701-1.el8sat.src", + "8Base-satellite-6.14:rubygem-dynflow-0:1.7.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-dynflow-0:1.7.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-erubi-0:1.12.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-erubi-0:1.12.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-et-orbi-0:1.2.7-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-et-orbi-0:1.2.7-1.el8sat.src", + "8Base-satellite-6.14:rubygem-excon-0:0.99.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-excon-0:0.99.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-execjs-0:2.8.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-execjs-0:2.8.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-facter-0:4.4.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-facter-0:4.4.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday-0:1.10.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday-0:1.10.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday-em_http-0:1.0.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday-em_http-0:1.0.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday-excon-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday-excon-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday-httpclient-0:1.0.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday-httpclient-0:1.0.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday-multipart-0:1.0.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday-multipart-0:1.0.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday-net_http-0:1.0.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday-net_http-0:1.0.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday-patron-0:1.0.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday-patron-0:1.0.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday-rack-0:1.0.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday-rack-0:1.0.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday-retry-0:1.0.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday-retry-0:1.0.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday_middleware-0:1.2.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday_middleware-0:1.2.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-fast_gettext-0:1.8.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-ffi-0:1.15.5-1.el8sat.src", + "8Base-satellite-6.14:rubygem-ffi-0:1.15.5-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-fog-aws-0:3.19.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-fog-aws-0:3.19.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-fog-core-0:2.3.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-fog-core-0:2.3.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-fog-json-0:1.2.0-4.el8sat.noarch", + "8Base-satellite-6.14:rubygem-fog-json-0:1.2.0-4.el8sat.src", + "8Base-satellite-6.14:rubygem-fog-kubevirt-0:1.3.7-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-fog-kubevirt-0:1.3.7-1.el8sat.src", + "8Base-satellite-6.14:rubygem-fog-libvirt-0:0.11.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-fog-libvirt-0:0.11.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-fog-openstack-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-fog-openstack-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-fog-ovirt-0:2.0.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-fog-ovirt-0:2.0.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-fog-vsphere-0:3.6.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-fog-vsphere-0:3.6.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-fog-xml-0:0.1.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-fog-xml-0:0.1.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman-tasks-0:8.1.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman-tasks-0:8.1.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_ansible-0:12.0.6-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_ansible-0:12.0.6-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_discovery-0:22.0.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_discovery-0:22.0.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_google-0:1.0.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_google-0:1.0.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_leapp-0:0.1.14-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_leapp-0:0.1.14-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_maintain-1:1.3.5-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_openscap-0:7.0.0-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_openscap-0:7.0.0-2.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_puppet-0:6.0.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_puppet-0:6.0.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_remote_execution-cockpit-0:10.0.7-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_scap_client-0:0.5.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_scap_client-0:0.5.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_templates-0:9.4.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_templates-0:9.4.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_webhooks-0:3.2.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_webhooks-0:3.2.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-formatador-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-formatador-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-friendly_id-0:5.5.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-friendly_id-0:5.5.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-fugit-0:1.8.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-fugit-0:1.8.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-fx-0:0.7.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-fx-0:0.7.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-gapic-common-0:0.12.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-gapic-common-0:0.12.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-get_process_mem-0:0.2.7-2.1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-get_process_mem-0:0.2.7-2.1.el8sat.src", + "8Base-satellite-6.14:rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-git-0:1.18.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-git-0:1.18.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.src", + "8Base-satellite-6.14:rubygem-globalid-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-globalid-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-google-apis-core-0:0.9.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-google-apis-core-0:0.9.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-google-cloud-common-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-google-cloud-common-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-google-cloud-compute-0:0.5.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-google-cloud-compute-0:0.5.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-google-cloud-core-0:1.6.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-google-cloud-core-0:1.6.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-google-cloud-env-0:1.6.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-google-cloud-env-0:1.6.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-google-cloud-errors-0:1.3.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-google-cloud-errors-0:1.3.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-google-protobuf-0:3.21.6-1.el8sat.src", + "8Base-satellite-6.14:rubygem-google-protobuf-0:3.21.6-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-google-protobuf-debuginfo-0:3.21.6-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-google-protobuf-debugsource-0:3.21.6-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.src", + "8Base-satellite-6.14:rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-googleauth-0:1.3.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-googleauth-0:1.3.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-graphql-0:1.13.19-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-graphql-0:1.13.19-1.el8sat.src", + "8Base-satellite-6.14:rubygem-graphql-batch-0:0.5.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-graphql-batch-0:0.5.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-grpc-0:1.49.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-grpc-0:1.49.1-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-gssapi-0:1.3.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-gssapi-0:1.3.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli-0:3.7.0.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli-0:3.7.0.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hashie-0:5.0.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hashie-0:5.0.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-highline-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-highline-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hocon-0:1.4.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hocon-0:1.4.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-http-0:3.3.0-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-http-0:3.3.0-2.el8sat.src", + "8Base-satellite-6.14:rubygem-http-accept-0:1.7.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-http-accept-0:1.7.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-http-cookie-0:1.0.5-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-http-cookie-0:1.0.5-1.el8sat.src", + "8Base-satellite-6.14:rubygem-http-form_data-0:2.1.1-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-http-form_data-0:2.1.1-2.el8sat.src", + "8Base-satellite-6.14:rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.src", + "8Base-satellite-6.14:rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-http_parser.rb-debuginfo-0:0.6.0-3.1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-http_parser.rb-debugsource-0:0.6.0-3.1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-httpclient-0:2.8.3-4.el8sat.noarch", + "8Base-satellite-6.14:rubygem-httpclient-0:2.8.3-4.el8sat.src", + "8Base-satellite-6.14:rubygem-i18n-0:1.13.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-i18n-0:1.13.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-infoblox-0:3.0.0-4.el8sat.noarch", + "8Base-satellite-6.14:rubygem-infoblox-0:3.0.0-4.el8sat.src", + "8Base-satellite-6.14:rubygem-jgrep-0:1.3.3-11.el8sat.noarch", + "8Base-satellite-6.14:rubygem-jgrep-0:1.3.3-11.el8sat.src", + "8Base-satellite-6.14:rubygem-journald-logger-0:3.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-journald-logger-0:3.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-journald-native-0:1.0.12-1.el8sat.src", + "8Base-satellite-6.14:rubygem-journald-native-0:1.0.12-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-journald-native-debuginfo-0:1.0.12-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-journald-native-debugsource-0:1.0.12-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-jsonpath-0:1.1.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-jsonpath-0:1.1.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-jwt-0:2.7.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-jwt-0:2.7.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-kafo-0:7.0.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-kafo-0:7.0.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-kafo_parsers-0:1.2.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-kafo_parsers-0:1.2.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-kafo_wizards-0:0.0.2-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-kafo_wizards-0:0.0.2-2.el8sat.src", + "8Base-satellite-6.14:rubygem-katello-0:4.9.0.16-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-katello-0:4.9.0.16-1.el8sat.src", + "8Base-satellite-6.14:rubygem-kubeclient-0:4.10.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-kubeclient-0:4.10.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-ldap_fluff-0:0.6.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-ldap_fluff-0:0.6.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-little-plugger-0:1.1.4-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-little-plugger-0:1.1.4-3.el8sat.src", + "8Base-satellite-6.14:rubygem-locale-0:2.1.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-locale-0:2.1.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-logging-0:2.3.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-logging-0:2.3.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-logging-journald-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-logging-journald-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-loofah-0:2.21.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-loofah-0:2.21.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-mail-0:2.8.0.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-mail-0:2.8.0.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-marcel-0:1.0.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-marcel-0:1.0.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-memoist-0:0.16.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-memoist-0:0.16.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-method_source-0:1.0.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-method_source-0:1.0.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-mime-types-0:3.4.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-mime-types-0:3.4.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-mini_mime-0:1.1.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-mini_mime-0:1.1.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-mqtt-0:0.5.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-mqtt-0:0.5.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-ms_rest-0:0.7.6-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-ms_rest-0:0.7.6-1.el8sat.src", + "8Base-satellite-6.14:rubygem-ms_rest_azure-0:0.12.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-ms_rest_azure-0:0.12.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-msgpack-0:1.7.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-msgpack-0:1.7.1-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-msgpack-debuginfo-0:1.7.1-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-msgpack-debugsource-0:1.7.1-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-multi_json-0:1.15.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-multi_json-0:1.15.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-multipart-post-0:2.2.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-multipart-post-0:2.2.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-mustermann-0:2.0.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-mustermann-0:2.0.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-net-ldap-0:0.18.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-net-ldap-0:0.18.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-net-ping-0:2.0.8-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-net-ping-0:2.0.8-1.el8sat.src", + "8Base-satellite-6.14:rubygem-net-scp-0:4.0.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-net-scp-0:4.0.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-net-ssh-0:7.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-net-ssh-0:7.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-net-ssh-krb-0:0.4.0-4.el8sat.noarch", + "8Base-satellite-6.14:rubygem-net-ssh-krb-0:0.4.0-4.el8sat.src", + "8Base-satellite-6.14:rubygem-net_http_unix-0:0.2.2-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-net_http_unix-0:0.2.2-2.el8sat.src", + "8Base-satellite-6.14:rubygem-netrc-0:0.11.0-6.el8sat.noarch", + "8Base-satellite-6.14:rubygem-netrc-0:0.11.0-6.el8sat.src", + "8Base-satellite-6.14:rubygem-newt-0:0.9.7-3.1.el8sat.src", + "8Base-satellite-6.14:rubygem-newt-0:0.9.7-3.1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-newt-debuginfo-0:0.9.7-3.1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-newt-debugsource-0:0.9.7-3.1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-nio4r-0:2.5.9-1.el8sat.src", + "8Base-satellite-6.14:rubygem-nio4r-0:2.5.9-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-nio4r-debuginfo-0:2.5.9-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-nio4r-debugsource-0:2.5.9-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-nokogiri-0:1.15.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-nokogiri-0:1.15.0-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-nokogiri-debuginfo-0:1.15.0-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-nokogiri-debugsource-0:1.15.0-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-oauth-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-oauth-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-oauth-tty-0:1.0.5-1.el8sat.src", + "8Base-satellite-6.14:rubygem-openscap-0:0.4.9-9.el8sat.noarch", + "8Base-satellite-6.14:rubygem-openscap-0:0.4.9-9.el8sat.src", + "8Base-satellite-6.14:rubygem-openscap_parser-0:1.0.2-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-openscap_parser-0:1.0.2-2.el8sat.src", + "8Base-satellite-6.14:rubygem-optimist-0:3.0.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-optimist-0:3.0.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-os-0:1.1.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-os-0:1.1.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-ovirt-engine-sdk-debuginfo-0:4.4.1-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-ovirt-engine-sdk-debugsource-0:4.4.1-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.src", + "8Base-satellite-6.14:rubygem-parallel-0:1.23.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-parallel-0:1.23.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-pg-0:1.5.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-pg-0:1.5.3-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-pg-debuginfo-0:1.5.3-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-pg-debugsource-0:1.5.3-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-polyglot-0:0.3.5-3.1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-polyglot-0:0.3.5-3.1.el8sat.src", + "8Base-satellite-6.14:rubygem-powerbar-0:2.0.1-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-powerbar-0:2.0.1-3.el8sat.src", + "8Base-satellite-6.14:rubygem-prometheus-client-0:4.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-prometheus-client-0:4.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-promise.rb-0:0.7.4-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-promise.rb-0:0.7.4-3.el8sat.src", + "8Base-satellite-6.14:rubygem-public_suffix-0:5.0.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-public_suffix-0:5.0.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-pulp_container_client-0:2.14.5-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-pulp_container_client-0:2.14.5-1.el8sat.src", + "8Base-satellite-6.14:rubygem-pulp_deb_client-0:2.20.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-pulp_deb_client-0:2.20.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-pulp_file_client-0:1.12.0-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-pulp_file_client-0:1.12.0-2.el8sat.src", + "8Base-satellite-6.14:rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-pulp_python_client-0:3.8.0-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-pulp_python_client-0:3.8.0-2.el8sat.src", + "8Base-satellite-6.14:rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.src", + "8Base-satellite-6.14:rubygem-pulpcore_client-1:3.22.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-pulpcore_client-1:3.22.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-puma-0:6.2.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-puma-0:6.2.2-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-puma-debuginfo-0:6.2.2-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-puma-debugsource-0:6.2.2-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-puma-status-0:1.6-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-puma-status-0:1.6-1.el8sat.src", + "8Base-satellite-6.14:rubygem-qpid_proton-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14:rubygem-qpid_proton-0:0.33.0-5.el8sat.src", + "8Base-satellite-6.14:rubygem-qpid_proton-0:0.33.0-5.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-qpid_proton-debuginfo-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14:rubygem-qpid_proton-debuginfo-0:0.33.0-5.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-qpid_proton-debugsource-0:0.33.0-5.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-raabro-0:1.4.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-raabro-0:1.4.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rabl-0:0.16.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rabl-0:0.16.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rack-0:2.2.7-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rack-0:2.2.7-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rack-cors-0:1.1.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rack-cors-0:1.1.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rack-jsonp-0:1.3.1-10.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rack-jsonp-0:1.3.1-10.el8sat.src", + "8Base-satellite-6.14:rubygem-rack-protection-0:2.2.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rack-protection-0:2.2.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rack-test-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rack-test-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rails-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rails-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rails-dom-testing-0:2.0.3-7.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rails-dom-testing-0:2.0.3-7.el8sat.src", + "8Base-satellite-6.14:rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rails-i18n-0:7.0.7-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rails-i18n-0:7.0.7-1.el8sat.src", + "8Base-satellite-6.14:rubygem-railties-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-railties-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rainbow-0:2.2.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rainbow-0:2.2.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rb-inotify-0:0.10.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rb-inotify-0:0.10.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rbnacl-0:4.0.2-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rbnacl-0:4.0.2-2.el8sat.src", + "8Base-satellite-6.14:rubygem-rbvmomi2-0:3.6.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rbvmomi2-0:3.6.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rchardet-0:1.8.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rchardet-0:1.8.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-recursive-open-struct-0:1.1.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-recursive-open-struct-0:1.1.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-redfish_client-0:0.5.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-redfish_client-0:0.5.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-redis-0:4.5.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-redis-0:4.5.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-representable-0:3.2.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-representable-0:3.2.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-responders-0:3.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-responders-0:3.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rest-client-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rest-client-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-retriable-0:3.1.2-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-retriable-0:3.1.2-3.el8sat.src", + "8Base-satellite-6.14:rubygem-rkerberos-0:0.1.5-20.1.el8sat.src", + "8Base-satellite-6.14:rubygem-rkerberos-0:0.1.5-20.1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-rkerberos-debuginfo-0:0.1.5-20.1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-rkerberos-debugsource-0:0.1.5-20.1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-roadie-0:5.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-roadie-0:5.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-roadie-rails-0:3.0.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-roadie-rails-0:3.0.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-robotex-0:1.0.0-22.el8sat.noarch", + "8Base-satellite-6.14:rubygem-robotex-0:1.0.0-22.el8sat.src", + "8Base-satellite-6.14:rubygem-rsec-0:0.4.3-5.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rsec-0:0.4.3-5.el8sat.src", + "8Base-satellite-6.14:rubygem-ruby-libvirt-0:0.8.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-ruby-libvirt-0:0.8.0-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-ruby-libvirt-debuginfo-0:0.8.0-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-ruby-libvirt-debugsource-0:0.8.0-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-ruby2_keywords-0:0.0.5-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-ruby2_keywords-0:0.0.5-1.el8sat.src", + "8Base-satellite-6.14:rubygem-ruby2ruby-0:2.5.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-ruby2ruby-0:2.5.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-ruby_parser-0:3.20.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-ruby_parser-0:3.20.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rubyipmi-0:0.11.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rubyipmi-0:0.11.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-safemode-0:1.3.8-1.el8sat.src", + "8Base-satellite-6.14:rubygem-scoped_search-0:4.1.11-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-scoped_search-0:4.1.11-1.el8sat.src", + "8Base-satellite-6.14:rubygem-sd_notify-0:0.1.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-sd_notify-0:0.1.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-secure_headers-0:6.5.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-secure_headers-0:6.5.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-sequel-0:5.68.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-sequel-0:5.68.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-server_sent_events-0:0.1.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-server_sent_events-0:0.1.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-sexp_processor-0:4.17.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-sexp_processor-0:4.17.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-sidekiq-0:6.3.1-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-sidekiq-0:6.3.1-2.el8sat.src", + "8Base-satellite-6.14:rubygem-signet-0:0.17.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-signet-0:0.17.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-sinatra-1:2.2.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-sinatra-1:2.2.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.src", + "8Base-satellite-6.14:rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-snaky_hash-0:2.0.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-sprockets-0:4.2.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-sprockets-0:4.2.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-sprockets-rails-0:3.4.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-sprockets-rails-0:3.4.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-sqlite3-0:1.4.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-sqlite3-0:1.4.2-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-sqlite3-debuginfo-0:1.4.2-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-sqlite3-debugsource-0:1.4.2-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-sshkey-0:2.0.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-sshkey-0:2.0.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-statsd-instrument-0:2.9.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-statsd-instrument-0:2.9.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-stomp-0:1.4.10-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-stomp-0:1.4.10-1.el8sat.src", + "8Base-satellite-6.14:rubygem-thor-0:1.2.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-thor-0:1.2.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-tilt-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-tilt-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-timeliness-0:0.3.10-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-timeliness-0:0.3.10-2.el8sat.src", + "8Base-satellite-6.14:rubygem-trailblazer-option-0:0.1.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-trailblazer-option-0:0.1.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-tzinfo-0:2.0.6-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-tzinfo-0:2.0.6-1.el8sat.src", + "8Base-satellite-6.14:rubygem-uber-0:0.1.0-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-uber-0:0.1.0-3.el8sat.src", + "8Base-satellite-6.14:rubygem-unf-0:0.1.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-unf-0:0.1.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-unf_ext-0:0.0.8.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-unicode-0:0.4.4.4-4.1.el8sat.src", + "8Base-satellite-6.14:rubygem-unicode-0:0.4.4.4-4.1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-unicode-debuginfo-0:0.4.4.4-4.1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-unicode-debugsource-0:0.4.4.4-4.1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-unicode-display_width-0:1.8.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-unicode-display_width-0:1.8.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-version_gem-0:1.1.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-version_gem-0:1.1.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-webpack-rails-0:0.9.11-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-webpack-rails-0:0.9.11-1.el8sat.src", + "8Base-satellite-6.14:rubygem-webrick-0:1.8.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-webrick-0:1.8.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-websocket-driver-0:0.7.5-1.el8sat.src", + "8Base-satellite-6.14:rubygem-websocket-driver-0:0.7.5-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-websocket-driver-debuginfo-0:0.7.5-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-websocket-driver-debugsource-0:0.7.5-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-websocket-extensions-0:0.1.5-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-websocket-extensions-0:0.1.5-2.el8sat.src", + "8Base-satellite-6.14:rubygem-will_paginate-0:3.3.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-will_paginate-0:3.3.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-xmlrpc-0:0.3.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-xmlrpc-0:0.3.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-zeitwerk-0:2.6.8-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-zeitwerk-0:2.6.8-1.el8sat.src", + "8Base-satellite-6.14:saslwrapper-0:0.22-6.el8sat.src", + "8Base-satellite-6.14:saslwrapper-0:0.22-6.el8sat.x86_64", + "8Base-satellite-6.14:saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "8Base-satellite-6.14:saslwrapper-debugsource-0:0.22-6.el8sat.x86_64", + "8Base-satellite-6.14:satellite-0:6.14.0-3.el8sat.noarch", + "8Base-satellite-6.14:satellite-0:6.14.0-3.el8sat.src", + "8Base-satellite-6.14:satellite-capsule-0:6.14.0-3.el8sat.noarch", + "8Base-satellite-6.14:satellite-cli-0:6.14.0-3.el8sat.noarch", + "8Base-satellite-6.14:satellite-common-0:6.14.0-3.el8sat.noarch", + "8Base-satellite-6.14:satellite-installer-0:6.14.0.5-1.el8sat.noarch", + "8Base-satellite-6.14:satellite-installer-0:6.14.0.5-1.el8sat.src", + "8Base-satellite-6.14:satellite-maintain-0:0.0.2-1.el8sat.noarch", + "8Base-satellite-6.14:satellite-maintain-0:0.0.2-1.el8sat.src", + "8Base-satellite-6.14:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "8Base-satellite-6.14:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64" + ] + } + ], + "ids": [ + { + "system_name": "Red Hat Bugzilla ID", + "text": "2159291" + } + ], + "notes": [ + { + "category": "description", + "text": "An arbitrary code execution flaw was found in Foreman. This flaw allows an admin user to bypass safe mode in templates and execute arbitrary code on the underlying operating system.", + "title": "Vulnerability description" + }, + { + "category": "summary", + "text": "Arbitrary code execution through templates", + "title": "Vulnerability summary" + }, + { + "category": "general", + "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product's status, and are included for informational purposes to better understand the severity of this vulnerability.", + "title": "CVSS score applicability" + } + ], + "product_status": { + "fixed": [ + "7Server-satellite-6.11-capsule:foreman-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-0:3.1.1.27-1.el7sat.src", + "7Server-satellite-6.11-capsule:foreman-cli-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-debug-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-ec2-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-gce-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-journald-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-libvirt-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-openstack-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-ovirt-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-postgresql-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-service-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-telemetry-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-vmware-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-0:3.1.1.27-1.el7sat.src", + "7Server-satellite-6.11-utils:foreman-cli-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-debug-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-ec2-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-gce-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-journald-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-libvirt-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-openstack-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-ovirt-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-postgresql-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-service-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-telemetry-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-vmware-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-0:3.1.1.27-1.el7sat.src", + "7Server-satellite-6.11:foreman-cli-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-debug-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-ec2-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-gce-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-journald-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-libvirt-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-openstack-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-ovirt-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-postgresql-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-service-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-telemetry-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-vmware-0:3.1.1.27-1.el7sat.noarch", + "8Base-satellite-6.11-capsule:foreman-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-0:3.1.1.27-1.el8sat.src", + "8Base-satellite-6.11-capsule:foreman-cli-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-debug-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-ec2-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-gce-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-journald-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-libvirt-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-openstack-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-ovirt-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-postgresql-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-service-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-telemetry-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-vmware-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-0:3.1.1.27-1.el8sat.src", + "8Base-satellite-6.11-utils:foreman-cli-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-debug-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-ec2-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-gce-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-journald-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-libvirt-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-openstack-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-ovirt-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-postgresql-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-service-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-telemetry-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-vmware-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-0:3.1.1.27-1.el8sat.src", + "8Base-satellite-6.11:foreman-cli-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-debug-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-ec2-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-gce-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-journald-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-libvirt-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-openstack-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-ovirt-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-postgresql-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-service-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-telemetry-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-vmware-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.12:rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "8Base-satellite-6.12:rubygem-safemode-0:1.3.8-1.el8sat.src", + "8Base-satellite-6.13:rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "8Base-satellite-6.13:rubygem-safemode-0:1.3.8-1.el8sat.src", + "8Base-satellite-6.14-capsule:foreman-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-0:3.7.0.9-1.el8sat.src", + "8Base-satellite-6.14-capsule:foreman-cli-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-debug-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-ec2-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-journald-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-libvirt-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-openstack-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-ovirt-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-postgresql-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-redis-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-service-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-telemetry-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-vmware-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-0:3.7.0.9-1.el8sat.src", + "8Base-satellite-6.14-utils:foreman-cli-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-debug-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-ec2-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-journald-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-libvirt-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-openstack-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-ovirt-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-postgresql-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-redis-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-service-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-telemetry-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-vmware-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-0:3.7.0.9-1.el8sat.src", + "8Base-satellite-6.14:foreman-cli-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-debug-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-ec2-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-journald-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-libvirt-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-openstack-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-ovirt-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-postgresql-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-redis-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-service-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-telemetry-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-vmware-0:3.7.0.9-1.el8sat.noarch" + ], + "known_not_affected": [ + "7Server-satellite-6.11-capsule:puppet-agent-0:7.26.0-3.el7sat.src", + "7Server-satellite-6.11-capsule:puppet-agent-0:7.26.0-3.el7sat.x86_64", + "7Server-satellite-6.11-capsule:satellite-0:6.11.5.6-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:satellite-0:6.11.5.6-1.el7sat.src", + "7Server-satellite-6.11-capsule:satellite-capsule-0:6.11.5.6-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:satellite-cli-0:6.11.5.6-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:satellite-common-0:6.11.5.6-1.el7sat.noarch", + "7Server-satellite-6.11-utils:satellite-0:6.11.5.6-1.el7sat.noarch", + "7Server-satellite-6.11-utils:satellite-0:6.11.5.6-1.el7sat.src", + "7Server-satellite-6.11-utils:satellite-capsule-0:6.11.5.6-1.el7sat.noarch", + "7Server-satellite-6.11-utils:satellite-cli-0:6.11.5.6-1.el7sat.noarch", + "7Server-satellite-6.11-utils:satellite-common-0:6.11.5.6-1.el7sat.noarch", + "7Server-satellite-6.11:puppet-agent-0:7.26.0-3.el7sat.src", + "7Server-satellite-6.11:puppet-agent-0:7.26.0-3.el7sat.x86_64", + "7Server-satellite-6.11:satellite-0:6.11.5.6-1.el7sat.noarch", + "7Server-satellite-6.11:satellite-0:6.11.5.6-1.el7sat.src", + "7Server-satellite-6.11:satellite-capsule-0:6.11.5.6-1.el7sat.noarch", + "7Server-satellite-6.11:satellite-cli-0:6.11.5.6-1.el7sat.noarch", + "7Server-satellite-6.11:satellite-common-0:6.11.5.6-1.el7sat.noarch", + "7Server-satellite-6.11:tfm-rubygem-git-0:1.18.0-0.1.el7sat.noarch", + "7Server-satellite-6.11:tfm-rubygem-git-0:1.18.0-0.1.el7sat.src", + "7Server-satellite-6.11:tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.noarch", + "7Server-satellite-6.11:tfm-rubygem-rchardet-0:1.8.0-0.1.el7sat.src", + "7Server-satellite-6.11:tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.noarch", + "7Server-satellite-6.11:tfm-rubygem-safemode-0:1.3.8-0.1.el7sat.src", + "7Server-satellite-6.11:yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.src", + "7Server-satellite-6.11:yggdrasil-worker-forwarder-0:0.0.3-1.el7sat.x86_64", + "8Base-satellite-6.11-capsule:puppet-agent-0:7.26.0-3.el8sat.src", + "8Base-satellite-6.11-capsule:puppet-agent-0:7.26.0-3.el8sat.x86_64", + "8Base-satellite-6.11-capsule:satellite-0:6.11.5.6-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:satellite-0:6.11.5.6-1.el8sat.src", + "8Base-satellite-6.11-capsule:satellite-capsule-0:6.11.5.6-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:satellite-cli-0:6.11.5.6-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:satellite-common-0:6.11.5.6-1.el8sat.noarch", + "8Base-satellite-6.11-utils:satellite-0:6.11.5.6-1.el8sat.noarch", + "8Base-satellite-6.11-utils:satellite-0:6.11.5.6-1.el8sat.src", + "8Base-satellite-6.11-utils:satellite-capsule-0:6.11.5.6-1.el8sat.noarch", + "8Base-satellite-6.11-utils:satellite-cli-0:6.11.5.6-1.el8sat.noarch", + "8Base-satellite-6.11-utils:satellite-common-0:6.11.5.6-1.el8sat.noarch", + "8Base-satellite-6.11:puppet-agent-0:7.26.0-3.el8sat.src", + "8Base-satellite-6.11:puppet-agent-0:7.26.0-3.el8sat.x86_64", + "8Base-satellite-6.11:rubygem-git-0:1.18.0-0.1.el8sat.noarch", + "8Base-satellite-6.11:rubygem-git-0:1.18.0-0.1.el8sat.src", + "8Base-satellite-6.11:rubygem-rchardet-0:1.8.0-0.1.el8sat.noarch", + "8Base-satellite-6.11:rubygem-rchardet-0:1.8.0-0.1.el8sat.src", + "8Base-satellite-6.11:rubygem-safemode-0:1.3.8-0.1.el8sat.noarch", + "8Base-satellite-6.11:rubygem-safemode-0:1.3.8-0.1.el8sat.src", + "8Base-satellite-6.11:satellite-0:6.11.5.6-1.el8sat.noarch", + "8Base-satellite-6.11:satellite-0:6.11.5.6-1.el8sat.src", + "8Base-satellite-6.11:satellite-capsule-0:6.11.5.6-1.el8sat.noarch", + "8Base-satellite-6.11:satellite-cli-0:6.11.5.6-1.el8sat.noarch", + "8Base-satellite-6.11:satellite-common-0:6.11.5.6-1.el8sat.noarch", + "8Base-satellite-6.11:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "8Base-satellite-6.11:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "8Base-satellite-6.12-capsule:foreman-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-0:3.3.0.23-1.el8sat.src", + "8Base-satellite-6.12-capsule:foreman-cli-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-debug-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-ec2-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-gce-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-journald-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-libvirt-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-openstack-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-ovirt-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-postgresql-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-service-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-telemetry-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:foreman-vmware-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:puppet-agent-0:7.26.0-3.el8sat.src", + "8Base-satellite-6.12-capsule:puppet-agent-0:7.26.0-3.el8sat.x86_64", + "8Base-satellite-6.12-capsule:satellite-0:6.12.5.2-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:satellite-0:6.12.5.2-1.el8sat.src", + "8Base-satellite-6.12-capsule:satellite-capsule-0:6.12.5.2-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:satellite-cli-0:6.12.5.2-1.el8sat.noarch", + "8Base-satellite-6.12-capsule:satellite-common-0:6.12.5.2-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-0:3.3.0.23-1.el8sat.src", + "8Base-satellite-6.12-utils:foreman-cli-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-debug-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-ec2-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-gce-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-journald-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-libvirt-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-openstack-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-ovirt-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-postgresql-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-service-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-telemetry-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:foreman-vmware-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12-utils:satellite-0:6.12.5.2-1.el8sat.noarch", + "8Base-satellite-6.12-utils:satellite-0:6.12.5.2-1.el8sat.src", + "8Base-satellite-6.12-utils:satellite-capsule-0:6.12.5.2-1.el8sat.noarch", + "8Base-satellite-6.12-utils:satellite-cli-0:6.12.5.2-1.el8sat.noarch", + "8Base-satellite-6.12-utils:satellite-common-0:6.12.5.2-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-0:3.3.0.23-1.el8sat.src", + "8Base-satellite-6.12:foreman-cli-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-debug-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-dynflow-sidekiq-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-ec2-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-gce-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-journald-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-libvirt-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-openstack-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-ovirt-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-postgresql-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-service-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-telemetry-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:foreman-vmware-0:3.3.0.23-1.el8sat.noarch", + "8Base-satellite-6.12:puppet-agent-0:7.26.0-3.el8sat.src", + "8Base-satellite-6.12:puppet-agent-0:7.26.0-3.el8sat.x86_64", + "8Base-satellite-6.12:rubygem-git-0:1.18.0-1.el8sat.noarch", + "8Base-satellite-6.12:rubygem-git-0:1.18.0-1.el8sat.src", + "8Base-satellite-6.12:satellite-0:6.12.5.2-1.el8sat.noarch", + "8Base-satellite-6.12:satellite-0:6.12.5.2-1.el8sat.src", + "8Base-satellite-6.12:satellite-capsule-0:6.12.5.2-1.el8sat.noarch", + "8Base-satellite-6.12:satellite-cli-0:6.12.5.2-1.el8sat.noarch", + "8Base-satellite-6.12:satellite-common-0:6.12.5.2-1.el8sat.noarch", + "8Base-satellite-6.12:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "8Base-satellite-6.12:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64", + "8Base-satellite-6.13-capsule:foreman-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:foreman-0:3.5.1.19-1.el8sat.src", + "8Base-satellite-6.13-capsule:foreman-cli-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:foreman-debug-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:foreman-dynflow-sidekiq-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:foreman-ec2-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:foreman-journald-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:foreman-libvirt-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:foreman-openstack-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:foreman-ovirt-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:foreman-postgresql-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:foreman-service-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:foreman-telemetry-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:foreman-vmware-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:python-future-0:0.18.3-1.el8pc.src", + "8Base-satellite-6.13-capsule:python-pulp-rpm-0:3.18.17-1.el8pc.src", + "8Base-satellite-6.13-capsule:python-pulpcore-0:3.21.9-1.el8pc.src", + "8Base-satellite-6.13-capsule:python39-future-0:0.18.3-1.el8pc.noarch", + "8Base-satellite-6.13-capsule:python39-pulp-rpm-0:3.18.17-1.el8pc.noarch", + "8Base-satellite-6.13-capsule:python39-pulpcore-0:3.21.9-1.el8pc.noarch", + "8Base-satellite-6.13-capsule:rubygem-foreman_maintain-1:1.2.11-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:rubygem-foreman_maintain-1:1.2.11-1.el8sat.src", + "8Base-satellite-6.13-capsule:satellite-0:6.13.3-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:satellite-0:6.13.3-1.el8sat.src", + "8Base-satellite-6.13-capsule:satellite-capsule-0:6.13.3-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:satellite-cli-0:6.13.3-1.el8sat.noarch", + "8Base-satellite-6.13-capsule:satellite-common-0:6.13.3-1.el8sat.noarch", + "8Base-satellite-6.13-maintenance:rubygem-foreman_maintain-1:1.2.11-1.el8sat.noarch", + "8Base-satellite-6.13-maintenance:rubygem-foreman_maintain-1:1.2.11-1.el8sat.src", + "8Base-satellite-6.13-utils:foreman-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:foreman-0:3.5.1.19-1.el8sat.src", + "8Base-satellite-6.13-utils:foreman-cli-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:foreman-debug-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:foreman-dynflow-sidekiq-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:foreman-ec2-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:foreman-journald-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:foreman-libvirt-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:foreman-openstack-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:foreman-ovirt-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:foreman-postgresql-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:foreman-service-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:foreman-telemetry-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:foreman-vmware-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13-utils:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch", + "8Base-satellite-6.13-utils:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src", + "8Base-satellite-6.13-utils:satellite-0:6.13.3-1.el8sat.noarch", + "8Base-satellite-6.13-utils:satellite-0:6.13.3-1.el8sat.src", + "8Base-satellite-6.13-utils:satellite-capsule-0:6.13.3-1.el8sat.noarch", + "8Base-satellite-6.13-utils:satellite-cli-0:6.13.3-1.el8sat.noarch", + "8Base-satellite-6.13-utils:satellite-common-0:6.13.3-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-0:3.5.1.19-1.el8sat.src", + "8Base-satellite-6.13:foreman-cli-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-debug-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-dynflow-sidekiq-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-ec2-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-journald-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-libvirt-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-openstack-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-ovirt-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-postgresql-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-service-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-telemetry-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:foreman-vmware-0:3.5.1.19-1.el8sat.noarch", + "8Base-satellite-6.13:python-future-0:0.18.3-1.el8pc.src", + "8Base-satellite-6.13:python-pulp-rpm-0:3.18.17-1.el8pc.src", + "8Base-satellite-6.13:python-pulpcore-0:3.21.9-1.el8pc.src", + "8Base-satellite-6.13:python39-future-0:0.18.3-1.el8pc.noarch", + "8Base-satellite-6.13:python39-pulp-rpm-0:3.18.17-1.el8pc.noarch", + "8Base-satellite-6.13:python39-pulpcore-0:3.21.9-1.el8pc.noarch", + "8Base-satellite-6.13:rubygem-fog-vsphere-0:3.6.2-1.el8sat.noarch", + "8Base-satellite-6.13:rubygem-fog-vsphere-0:3.6.2-1.el8sat.src", + "8Base-satellite-6.13:rubygem-foreman_ansible-0:10.4.3-1.el8sat.noarch", + "8Base-satellite-6.13:rubygem-foreman_ansible-0:10.4.3-1.el8sat.src", + "8Base-satellite-6.13:rubygem-foreman_maintain-1:1.2.11-1.el8sat.noarch", + "8Base-satellite-6.13:rubygem-foreman_maintain-1:1.2.11-1.el8sat.src", + "8Base-satellite-6.13:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch", + "8Base-satellite-6.13:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src", + "8Base-satellite-6.13:rubygem-katello-0:4.7.0.31-1.el8sat.noarch", + "8Base-satellite-6.13:rubygem-katello-0:4.7.0.31-1.el8sat.src", + "8Base-satellite-6.13:satellite-0:6.13.3-1.el8sat.noarch", + "8Base-satellite-6.13:satellite-0:6.13.3-1.el8sat.src", + "8Base-satellite-6.13:satellite-capsule-0:6.13.3-1.el8sat.noarch", + "8Base-satellite-6.13:satellite-cli-0:6.13.3-1.el8sat.noarch", + "8Base-satellite-6.13:satellite-common-0:6.13.3-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:ansible-lint-0:5.0.8-4.el8pc.noarch", + "8Base-satellite-6.14-capsule:ansible-lint-0:5.0.8-4.el8pc.src", + "8Base-satellite-6.14-capsule:ansible-runner-0:2.2.1-3.el8sat.noarch", + "8Base-satellite-6.14-capsule:ansible-runner-0:2.2.1-3.el8sat.src", + "8Base-satellite-6.14-capsule:ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.noarch", + "8Base-satellite-6.14-capsule:ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.src", + "8Base-satellite-6.14-capsule:ansiblerole-insights-client-0:1.7.1-2.el8sat.noarch", + "8Base-satellite-6.14-capsule:ansiblerole-insights-client-0:1.7.1-2.el8sat.src", + "8Base-satellite-6.14-capsule:cjson-0:1.7.14-5.el8sat.src", + "8Base-satellite-6.14-capsule:cjson-0:1.7.14-5.el8sat.x86_64", + "8Base-satellite-6.14-capsule:cjson-debuginfo-0:1.7.14-5.el8sat.x86_64", + "8Base-satellite-6.14-capsule:cjson-debugsource-0:1.7.14-5.el8sat.x86_64", + "8Base-satellite-6.14-capsule:createrepo_c-0:0.20.1-1.el8pc.src", + "8Base-satellite-6.14-capsule:createrepo_c-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:createrepo_c-debugsource-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:createrepo_c-libs-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:createrepo_c-libs-debuginfo-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:dynflow-utils-0:1.6.3-1.el8sat.src", + "8Base-satellite-6.14-capsule:dynflow-utils-0:1.6.3-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:foreman-bootloaders-redhat-0:202102220000-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-bootloaders-redhat-0:202102220000-1.el8sat.src", + "8Base-satellite-6.14-capsule:foreman-bootloaders-redhat-tftpboot-0:202102220000-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-discovery-image-1:4.1.0-10.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-discovery-image-1:4.1.0-10.el8sat.src", + "8Base-satellite-6.14-capsule:foreman-discovery-image-service-0:1.0.0-4.1.el8sat.src", + "8Base-satellite-6.14-capsule:foreman-discovery-image-service-0:1.0.0-4.1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:foreman-discovery-image-service-tui-0:1.0.0-4.1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:foreman-installer-1:3.7.0.4-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-installer-1:3.7.0.4-1.el8sat.src", + "8Base-satellite-6.14-capsule:foreman-installer-katello-1:3.7.0.4-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-proxy-0:3.7.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-proxy-0:3.7.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:foreman-proxy-content-0:4.9.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-proxy-journald-0:3.7.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:katello-0:4.9.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:katello-0:4.9.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:katello-certs-tools-0:2.9.0-2.el8sat.noarch", + "8Base-satellite-6.14-capsule:katello-certs-tools-0:2.9.0-2.el8sat.src", + "8Base-satellite-6.14-capsule:katello-client-bootstrap-0:1.7.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:katello-client-bootstrap-0:1.7.9-1.el8sat.src", + "8Base-satellite-6.14-capsule:katello-common-0:4.9.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:katello-debug-0:4.9.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:libcomps-0:0.1.18-4.el8pc.src", + "8Base-satellite-6.14-capsule:libcomps-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:libcomps-debugsource-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:libdb-cxx-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14-capsule:libdb-cxx-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14-capsule:libdb-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14-capsule:libdb-debugsource-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14-capsule:libdb-java-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14-capsule:libdb-sql-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14-capsule:libdb-sql-devel-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14-capsule:libdb-tcl-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14-capsule:libdb-utils-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14-capsule:libsodium-0:1.0.17-3.el8sat.src", + "8Base-satellite-6.14-capsule:libsodium-0:1.0.17-3.el8sat.x86_64", + "8Base-satellite-6.14-capsule:libsodium-debuginfo-0:1.0.17-3.el8sat.x86_64", + "8Base-satellite-6.14-capsule:libsodium-debugsource-0:1.0.17-3.el8sat.x86_64", + "8Base-satellite-6.14-capsule:libsolv-0:0.7.22-4.el8pc.src", + "8Base-satellite-6.14-capsule:libsolv-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:libsolv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:libsolv-debugsource-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:libsolv-demo-debuginfo-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:libsolv-tools-debuginfo-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:libwebsockets-0:2.4.2-2.el8.src", + "8Base-satellite-6.14-capsule:libwebsockets-0:2.4.2-2.el8.x86_64", + "8Base-satellite-6.14-capsule:libwebsockets-debuginfo-0:2.4.2-2.el8.x86_64", + "8Base-satellite-6.14-capsule:libwebsockets-debugsource-0:2.4.2-2.el8.x86_64", + "8Base-satellite-6.14-capsule:libwebsockets-tests-debuginfo-0:2.4.2-2.el8.x86_64", + "8Base-satellite-6.14-capsule:mosquitto-0:2.0.14-1.el8sat.src", + "8Base-satellite-6.14-capsule:mosquitto-0:2.0.14-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:mosquitto-debuginfo-0:2.0.14-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:mosquitto-debugsource-0:2.0.14-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:pulpcore-selinux-0:1.3.3-1.el8pc.src", + "8Base-satellite-6.14-capsule:pulpcore-selinux-0:1.3.3-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:puppet-agent-0:7.26.0-3.el8sat.src", + "8Base-satellite-6.14-capsule:puppet-agent-0:7.26.0-3.el8sat.x86_64", + "8Base-satellite-6.14-capsule:puppet-agent-oauth-0:0.5.10-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:puppet-agent-oauth-0:0.5.10-1.el8sat.src", + "8Base-satellite-6.14-capsule:puppet-foreman_scap_client-0:0.4.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:puppet-foreman_scap_client-0:0.4.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:puppetlabs-stdlib-0:5.2.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:puppetlabs-stdlib-0:5.2.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:puppetserver-0:7.11.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:puppetserver-0:7.11.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:python-aiodns-0:3.0.0-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-aiofiles-0:22.1.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-aiohttp-0:3.8.3-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-aiohttp-debugsource-0:3.8.3-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-aiohttp-xmlrpc-0:1.5.0-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-aioredis-0:2.0.1-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-aiosignal-0:1.3.1-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-ansible-builder-0:1.0.1-4.el8pc.src", + "8Base-satellite-6.14-capsule:python-asgiref-0:3.6.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-async-lru-0:1.0.3-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-async-timeout-0:4.0.2-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-asyncio-throttle-0:1.0.2-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-attrs-0:21.4.0-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-backoff-0:2.2.1-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-bindep-0:2.11.0-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-bleach-0:3.3.1-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-bleach-allowlist-0:1.0.3-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-bracex-0:2.2.1-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-brotli-0:1.0.9-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-brotli-debugsource-0:1.0.9-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-cchardet-0:2.1.7-4.el8pc.src", + "8Base-satellite-6.14-capsule:python-cchardet-debugsource-0:2.1.7-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-certifi-0:2022.12.7-1.1.el8pc.src", + "8Base-satellite-6.14-capsule:python-cffi-0:1.15.1-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-cffi-debugsource-0:1.15.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-chardet-0:5.0.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-charset-normalizer-0:2.1.1-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-click-0:8.1.3-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-click-shell-0:2.1-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-colorama-0:0.4.4-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-commonmark-0:0.9.1-5.el8pc.src", + "8Base-satellite-6.14-capsule:python-contextlib2-0:21.6.0-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-cryptography-0:38.0.4-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-cryptography-debugsource-0:38.0.4-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-daemon-0:2.3.1-1.1.el8sat.src", + "8Base-satellite-6.14-capsule:python-dataclasses-0:0.8-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-dateutil-0:2.8.2-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-debian-0:0.1.44-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-defusedxml-0:0.7.1-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-deprecated-0:1.2.13-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-diff-match-patch-0:20200713-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-distro-0:1.7.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-django-0:3.2.21-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-django-currentuser-0:0.5.3-5.el8pc.src", + "8Base-satellite-6.14-capsule:python-django-filter-0:22.1-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-django-guid-0:3.3.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-django-import-export-0:3.0.2-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-django-lifecycle-0:1.0.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-django-readonly-field-0:1.1.2-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-djangorestframework-0:3.14.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-djangorestframework-queryfields-0:1.0.0-5.el8pc.src", + "8Base-satellite-6.14-capsule:python-docutils-0:0.19-1.1.el8sat.src", + "8Base-satellite-6.14-capsule:python-drf-access-policy-0:1.3.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-drf-nested-routers-0:0.93.4-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-drf-spectacular-0:0.25.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-dynaconf-0:3.1.11-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-ecdsa-0:0.18.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-enrich-0:1.2.6-5.el8pc.src", + "8Base-satellite-6.14-capsule:python-et-xmlfile-0:1.1.0-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-flake8-0:3.9.2-5.el8pc.src", + "8Base-satellite-6.14-capsule:python-frozenlist-0:1.3.3-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-frozenlist-debugsource-0:1.3.3-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-future-0:0.18.3-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-galaxy-importer-0:0.4.6-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-gitdb-0:4.0.10-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-gitpython-0:3.1.32-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-gnupg-0:0.5.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-gunicorn-0:20.1.0-5.el8pc.src", + "8Base-satellite-6.14-capsule:python-idna-0:3.3-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-idna-ssl-0:1.1.0-5.el8pc.src", + "8Base-satellite-6.14-capsule:python-importlib-metadata-0:4.10.1-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-inflection-0:0.5.1-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-iniparse-0:0.4-35.el8pc.src", + "8Base-satellite-6.14-capsule:python-jinja2-0:3.1.2-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-jsonschema-0:4.9.1-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-lockfile-0:0.12.2-1.el8sat.src", + "8Base-satellite-6.14-capsule:python-lxml-0:4.9.2-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-lxml-debugsource-0:4.9.2-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-markdown-0:3.4.1-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-markuppy-0:1.14-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-markupsafe-0:2.1.2-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-markupsafe-debugsource-0:2.1.2-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-mccabe-0:0.6.1-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-multidict-0:6.0.4-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-multidict-debugsource-0:6.0.4-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-naya-0:1.1.1-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-odfpy-0:1.4.1-6.el8pc.src", + "8Base-satellite-6.14-capsule:python-openpyxl-0:3.1.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-packaging-0:21.3-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-parsley-0:1.3-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-pbr-0:5.8.0-4.el8pc.src", + "8Base-satellite-6.14-capsule:python-pexpect-0:4.8.0-2.el8sat.src", + "8Base-satellite-6.14-capsule:python-productmd-0:1.33-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-protobuf-0:4.21.6-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-psycopg2-0:2.9.3-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-psycopg2-debugsource-0:2.9.3-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-ptyprocess-0:0.7.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:python-pulp-ansible-1:0.16.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-pulp-certguard-0:1.5.6-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-pulp-cli-0:0.14.0-4.el8pc.src", + "8Base-satellite-6.14-capsule:python-pulp-container-0:2.14.7-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-pulp-deb-0:2.20.2-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-pulp-file-0:1.12.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-pulp-rpm-0:3.19.9-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-pulpcore-0:3.22.15-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-pyOpenSSL-0:22.1.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-pycares-0:4.1.2-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-pycares-debugsource-0:4.1.2-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-pycodestyle-0:2.7.0-5.el8pc.src", + "8Base-satellite-6.14-capsule:python-pycparser-0:2.21-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-pycryptodomex-0:3.14.1-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-pycryptodomex-debugsource-0:3.14.1-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-pyflakes-0:2.3.1-5.el8pc.src", + "8Base-satellite-6.14-capsule:python-pygments-0:2.14.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-pygtrie-0:2.5.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-pyjwkest-0:1.4.2-6.el8pc.src", + "8Base-satellite-6.14-capsule:python-pyjwt-0:2.5.0-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-pyparsing-0:2.4.7-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-pyrsistent-0:0.18.1-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-pyrsistent-debugsource-0:0.18.1-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-pytz-0:2022.2.1-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-pyyaml-0:5.4.1-4.el8pc.src", + "8Base-satellite-6.14-capsule:python-qpid-0:1.37.0-1.el8.src", + "8Base-satellite-6.14-capsule:python-redis-0:4.3.4-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-requests-0:2.31.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-requirements-parser-0:0.2.0-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-rhsm-0:1.19.2-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-rhsm-debugsource-0:1.19.2-3.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-rich-0:13.3.1-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-ruamel-yaml-0:0.17.21-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-ruamel-yaml-clib-0:0.2.7-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-ruamel-yaml-clib-debugsource-0:0.2.7-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-schema-0:0.7.5-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-semantic-version-0:2.10.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-six-0:1.16.0-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-smmap-0:5.0.0-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-sqlparse-0:0.4.4-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-tablib-0:3.3.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-tenacity-0:7.0.0-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-toml-0:0.10.2-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-types-cryptography-0:3.3.23.2-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-typing-extensions-0:3.10.0.2-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-uritemplate-0:4.1.1-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-url-normalize-0:1.4.3-4.el8pc.src", + "8Base-satellite-6.14-capsule:python-urllib3-0:1.26.8-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-urlman-0:2.0.1-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-wcmatch-0:8.3-2.el8pc.src", + "8Base-satellite-6.14-capsule:python-webencodings-0:0.5.1-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-whitenoise-0:6.0.0-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-wrapt-0:1.14.1-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-wrapt-debugsource-0:1.14.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-xlrd-0:2.0.1-5.el8pc.src", + "8Base-satellite-6.14-capsule:python-xlwt-0:1.3.0-3.el8pc.src", + "8Base-satellite-6.14-capsule:python-yarl-0:1.8.2-1.el8pc.src", + "8Base-satellite-6.14-capsule:python-yarl-debugsource-0:1.8.2-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python-zipp-0:3.4.0-4.el8pc.src", + "8Base-satellite-6.14-capsule:python2-qpid-0:1.37.0-1.el8.noarch", + "8Base-satellite-6.14-capsule:python2-qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:python2-saslwrapper-0:0.22-6.el8sat.x86_64", + "8Base-satellite-6.14-capsule:python2-saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "8Base-satellite-6.14-capsule:python3-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python3-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python3-libcomps-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python3-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python3-qpid-proton-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14-capsule:python3-qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14-capsule:python3-solv-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python3-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-aiodns-0:3.0.0-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-aiofiles-0:22.1.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-aiohttp-0:3.8.3-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-aiohttp-debuginfo-0:3.8.3-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-aiohttp-xmlrpc-0:1.5.0-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-aioredis-0:2.0.1-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-aiosignal-0:1.3.1-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-ansible-builder-0:1.0.1-4.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-ansible-runner-0:2.2.1-3.el8sat.noarch", + "8Base-satellite-6.14-capsule:python39-asgiref-0:3.6.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-async-lru-0:1.0.3-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-async-timeout-0:4.0.2-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-asyncio-throttle-0:1.0.2-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-attrs-0:21.4.0-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-backoff-0:2.2.1-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-bindep-0:2.11.0-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-bleach-0:3.3.1-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-bleach-allowlist-0:1.0.3-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-bracex-0:2.2.1-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-brotli-0:1.0.9-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-brotli-debuginfo-0:1.0.9-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-cchardet-0:2.1.7-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-cchardet-debuginfo-0:2.1.7-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-certifi-0:2022.12.7-1.1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-cffi-0:1.15.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-cffi-debuginfo-0:1.15.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-chardet-0:5.0.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-charset-normalizer-0:2.1.1-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-click-0:8.1.3-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-click-shell-0:2.1-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-colorama-0:0.4.4-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-commonmark-0:0.9.1-5.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-contextlib2-0:21.6.0-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-cryptography-0:38.0.4-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-cryptography-debuginfo-0:38.0.4-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-daemon-0:2.3.1-1.1.el8sat.noarch", + "8Base-satellite-6.14-capsule:python39-dataclasses-0:0.8-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-dateutil-0:2.8.2-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-debian-0:0.1.44-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-defusedxml-0:0.7.1-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-deprecated-0:1.2.13-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-diff-match-patch-0:20200713-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-distro-0:1.7.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-django-0:3.2.21-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-django-currentuser-0:0.5.3-5.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-django-filter-0:22.1-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-django-guid-0:3.3.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-django-import-export-0:3.0.2-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-django-lifecycle-0:1.0.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-django-readonly-field-0:1.1.2-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-djangorestframework-0:3.14.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-djangorestframework-queryfields-0:1.0.0-5.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-docutils-0:0.19-1.1.el8sat.noarch", + "8Base-satellite-6.14-capsule:python39-drf-access-policy-0:1.3.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-drf-nested-routers-0:0.93.4-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-drf-spectacular-0:0.25.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-dynaconf-0:3.1.11-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-ecdsa-0:0.18.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-enrich-0:1.2.6-5.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-et-xmlfile-0:1.1.0-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-flake8-0:3.9.2-5.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-frozenlist-0:1.3.3-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-frozenlist-debuginfo-0:1.3.3-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-future-0:0.18.3-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-galaxy-importer-0:0.4.6-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-gitdb-0:4.0.10-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-gitpython-0:3.1.32-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-gnupg-0:0.5.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-gunicorn-0:20.1.0-5.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-idna-0:3.3-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-idna-ssl-0:1.1.0-5.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-importlib-metadata-0:4.10.1-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-inflection-0:0.5.1-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-iniparse-0:0.4-35.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-jinja2-0:3.1.2-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-jsonschema-0:4.9.1-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-libcomps-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-lockfile-0:0.12.2-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:python39-lxml-0:4.9.2-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-lxml-debuginfo-0:4.9.2-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-markdown-0:3.4.1-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-markuppy-0:1.14-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-markupsafe-0:2.1.2-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-markupsafe-debuginfo-0:2.1.2-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-mccabe-0:0.6.1-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-multidict-0:6.0.4-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-multidict-debuginfo-0:6.0.4-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-naya-0:1.1.1-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-odfpy-0:1.4.1-6.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-openpyxl-0:3.1.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-packaging-0:21.3-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-parsley-0:1.3-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pbr-0:5.8.0-4.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pexpect-0:4.8.0-2.el8sat.noarch", + "8Base-satellite-6.14-capsule:python39-productmd-0:1.33-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-protobuf-0:4.21.6-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-psycopg2-0:2.9.3-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-psycopg2-debuginfo-0:2.9.3-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-ptyprocess-0:0.7.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:python39-pulp-ansible-1:0.16.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pulp-certguard-0:1.5.6-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pulp-cli-0:0.14.0-4.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pulp-container-0:2.14.7-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pulp-deb-0:2.20.2-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pulp-file-0:1.12.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pulp-rpm-0:3.19.9-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pulpcore-0:3.22.15-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pyOpenSSL-0:22.1.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pycares-0:4.1.2-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-pycares-debuginfo-0:4.1.2-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-pycodestyle-0:2.7.0-5.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pycparser-0:2.21-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pycryptodomex-0:3.14.1-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-pycryptodomex-debuginfo-0:3.14.1-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-pyflakes-0:2.3.1-5.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pygments-0:2.14.0-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-pygtrie-0:2.5.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pyjwkest-0:1.4.2-6.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pyjwt-0:2.5.0-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pyparsing-0:2.4.7-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pyrsistent-0:0.18.1-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-pyrsistent-debuginfo-0:0.18.1-2.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-pytz-0:2022.2.1-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-pyyaml-0:5.4.1-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-redis-0:4.3.4-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-requests-0:2.31.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-requirements-parser-0:0.2.0-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-rhsm-0:1.19.2-3.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-rhsm-debuginfo-0:1.19.2-3.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-rich-0:13.3.1-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-ruamel-yaml-0:0.17.21-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-ruamel-yaml-clib-0:0.2.7-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-ruamel-yaml-clib-debuginfo-0:0.2.7-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-schema-0:0.7.5-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-semantic-version-0:2.10.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-six-0:1.16.0-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-smmap-0:5.0.0-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-solv-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-sqlparse-0:0.4.4-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-tablib-0:3.3.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-tenacity-0:7.0.0-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-toml-0:0.10.2-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-types-cryptography-0:3.3.23.2-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-typing-extensions-0:3.10.0.2-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-uritemplate-0:4.1.1-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-url-normalize-0:1.4.3-4.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-urllib3-0:1.26.8-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-urlman-0:2.0.1-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-wcmatch-0:8.3-2.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-webencodings-0:0.5.1-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-whitenoise-0:6.0.0-1.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-wrapt-0:1.14.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-wrapt-debuginfo-0:1.14.1-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-xlrd-0:2.0.1-5.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-xlwt-0:1.3.0-3.el8pc.noarch", + "8Base-satellite-6.14-capsule:python39-yarl-0:1.8.2-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-yarl-debuginfo-0:1.8.2-1.el8pc.x86_64", + "8Base-satellite-6.14-capsule:python39-zipp-0:3.4.0-4.el8pc.noarch", + "8Base-satellite-6.14-capsule:qpid-cpp-0:1.39.0-7.el8amq.src", + "8Base-satellite-6.14-capsule:qpid-cpp-client-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-cpp-client-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-cpp-client-devel-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-cpp-client-devel-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-cpp-client-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-cpp-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-cpp-debugsource-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-cpp-server-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-cpp-server-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-cpp-server-ha-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-cpp-server-linearstore-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-cpp-server-linearstore-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-cpp-server-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-dispatch-0:1.14.0-6.el8.src", + "8Base-satellite-6.14-capsule:qpid-dispatch-debugsource-0:1.14.0-6.el8.x86_64", + "8Base-satellite-6.14-capsule:qpid-dispatch-router-0:1.14.0-6.el8.x86_64", + "8Base-satellite-6.14-capsule:qpid-dispatch-router-debuginfo-0:1.14.0-6.el8.x86_64", + "8Base-satellite-6.14-capsule:qpid-dispatch-tools-0:1.14.0-6.el8.noarch", + "8Base-satellite-6.14-capsule:qpid-proton-0:0.33.0-4.el8.src", + "8Base-satellite-6.14-capsule:qpid-proton-c-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14-capsule:qpid-proton-c-debuginfo-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14-capsule:qpid-proton-cpp-debuginfo-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14-capsule:qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14-capsule:qpid-proton-debugsource-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14-capsule:qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-qmf-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14-capsule:qpid-tools-0:1.39.0-7.el8amq.noarch", + "8Base-satellite-6.14-capsule:redhat-access-insights-puppet-0:1.0.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:redhat-access-insights-puppet-0:1.0.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:ruby-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14-capsule:rubygem-algebrick-0:0.7.5-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-algebrick-0:0.7.5-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-ansi-0:1.5.0-3.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-ansi-0:1.5.0-3.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-apipie-params-0:0.0.5-5.1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-apipie-params-0:0.0.5-5.1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-bundler_ext-0:0.4.1-6.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-bundler_ext-0:0.4.1-6.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-clamp-0:1.3.2-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-clamp-0:1.3.2-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-concurrent-ruby-1:1.1.10-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-concurrent-ruby-1:1.1.10-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-domain_name-0:0.5.20190701-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-dynflow-0:1.7.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-dynflow-0:1.7.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-excon-0:0.99.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-excon-0:0.99.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-faraday-0:1.10.2-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-faraday-0:1.10.2-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-faraday-em_http-0:1.0.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-faraday-em_http-0:1.0.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-faraday-excon-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-faraday-excon-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-faraday-httpclient-0:1.0.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-faraday-httpclient-0:1.0.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-faraday-multipart-0:1.0.4-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-faraday-multipart-0:1.0.4-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-faraday-net_http-0:1.0.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-faraday-net_http-0:1.0.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-faraday-patron-0:1.0.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-faraday-patron-0:1.0.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-faraday-rack-0:1.0.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-faraday-rack-0:1.0.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-faraday-retry-0:1.0.3-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-faraday-retry-0:1.0.3-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-faraday_middleware-0:1.2.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-faraday_middleware-0:1.2.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-fast_gettext-0:1.8.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-ffi-0:1.15.5-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-ffi-0:1.15.5-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-foreman_maintain-1:1.3.5-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-gssapi-0:1.3.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-gssapi-0:1.3.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-hashie-0:5.0.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-hashie-0:5.0.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-highline-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-highline-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-http-accept-0:1.7.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-http-accept-0:1.7.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-http-cookie-0:1.0.5-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-http-cookie-0:1.0.5-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-infoblox-0:3.0.0-4.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-infoblox-0:3.0.0-4.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-journald-logger-0:3.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-journald-logger-0:3.1.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-journald-native-0:1.0.12-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-journald-native-0:1.0.12-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-journald-native-debuginfo-0:1.0.12-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-journald-native-debugsource-0:1.0.12-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-jwt-0:2.7.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-jwt-0:2.7.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-kafo-0:7.0.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-kafo-0:7.0.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-kafo_parsers-0:1.2.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-kafo_parsers-0:1.2.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-kafo_wizards-0:0.0.2-2.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-kafo_wizards-0:0.0.2-2.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-little-plugger-0:1.1.4-3.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-little-plugger-0:1.1.4-3.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-logging-0:2.3.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-logging-0:2.3.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-logging-journald-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-logging-journald-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-mime-types-0:3.4.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-mime-types-0:3.4.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-mqtt-0:0.5.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-mqtt-0:0.5.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-msgpack-0:1.7.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-msgpack-0:1.7.1-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-msgpack-debuginfo-0:1.7.1-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-msgpack-debugsource-0:1.7.1-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-multi_json-0:1.15.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-multi_json-0:1.15.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-multipart-post-0:2.2.3-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-multipart-post-0:2.2.3-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-mustermann-0:2.0.2-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-mustermann-0:2.0.2-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-net-ssh-0:7.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-net-ssh-0:7.1.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-net-ssh-krb-0:0.4.0-4.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-net-ssh-krb-0:0.4.0-4.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-netrc-0:0.11.0-6.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-netrc-0:0.11.0-6.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-newt-0:0.9.7-3.1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-newt-0:0.9.7-3.1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-newt-debuginfo-0:0.9.7-3.1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-newt-debugsource-0:0.9.7-3.1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-nokogiri-0:1.15.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-nokogiri-0:1.15.0-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-nokogiri-debuginfo-0:1.15.0-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-nokogiri-debugsource-0:1.15.0-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-oauth-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-oauth-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-oauth-tty-0:1.0.5-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-openscap-0:0.4.9-9.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-openscap-0:0.4.9-9.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-openscap_parser-0:1.0.2-2.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-openscap_parser-0:1.0.2-2.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-powerbar-0:2.0.1-3.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-powerbar-0:2.0.1-3.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-qpid_proton-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14-capsule:rubygem-qpid_proton-debuginfo-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14-capsule:rubygem-rack-0:2.2.7-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-rack-0:2.2.7-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-rack-protection-0:2.2.4-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-rack-protection-0:2.2.4-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-rb-inotify-0:0.10.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-rb-inotify-0:0.10.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-rbnacl-0:4.0.2-2.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-rbnacl-0:4.0.2-2.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-redfish_client-0:0.5.4-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-redfish_client-0:0.5.4-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-rest-client-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-rest-client-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-rkerberos-0:0.1.5-20.1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-rkerberos-0:0.1.5-20.1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-rkerberos-debuginfo-0:0.1.5-20.1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-rkerberos-debugsource-0:0.1.5-20.1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-rsec-0:0.4.3-5.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-rsec-0:0.4.3-5.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-ruby-libvirt-0:0.8.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-ruby-libvirt-0:0.8.0-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-ruby-libvirt-debuginfo-0:0.8.0-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-ruby-libvirt-debugsource-0:0.8.0-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-ruby2_keywords-0:0.0.5-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-ruby2_keywords-0:0.0.5-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-rubyipmi-0:0.11.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-rubyipmi-0:0.11.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-sd_notify-0:0.1.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-sd_notify-0:0.1.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-sequel-0:5.68.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-sequel-0:5.68.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-server_sent_events-0:0.1.3-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-server_sent_events-0:0.1.3-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-sinatra-1:2.2.4-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-sinatra-1:2.2.4-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-snaky_hash-0:2.0.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-sqlite3-0:1.4.2-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-sqlite3-0:1.4.2-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-sqlite3-debuginfo-0:1.4.2-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-sqlite3-debugsource-0:1.4.2-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-statsd-instrument-0:2.9.2-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-statsd-instrument-0:2.9.2-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-tilt-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-tilt-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-unf-0:0.1.4-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-unf-0:0.1.4-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-unf_ext-0:0.0.8.2-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64", + "8Base-satellite-6.14-capsule:rubygem-version_gem-0:1.1.2-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-version_gem-0:1.1.2-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-webrick-0:1.8.1-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-webrick-0:1.8.1-1.el8sat.src", + "8Base-satellite-6.14-capsule:rubygem-xmlrpc-0:0.3.2-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:rubygem-xmlrpc-0:0.3.2-1.el8sat.src", + "8Base-satellite-6.14-capsule:saslwrapper-0:0.22-6.el8sat.src", + "8Base-satellite-6.14-capsule:saslwrapper-0:0.22-6.el8sat.x86_64", + "8Base-satellite-6.14-capsule:saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "8Base-satellite-6.14-capsule:saslwrapper-debugsource-0:0.22-6.el8sat.x86_64", + "8Base-satellite-6.14-capsule:satellite-0:6.14.0-3.el8sat.noarch", + "8Base-satellite-6.14-capsule:satellite-0:6.14.0-3.el8sat.src", + "8Base-satellite-6.14-capsule:satellite-capsule-0:6.14.0-3.el8sat.noarch", + "8Base-satellite-6.14-capsule:satellite-cli-0:6.14.0-3.el8sat.noarch", + "8Base-satellite-6.14-capsule:satellite-common-0:6.14.0-3.el8sat.noarch", + "8Base-satellite-6.14-capsule:satellite-installer-0:6.14.0.5-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:satellite-installer-0:6.14.0.5-1.el8sat.src", + "8Base-satellite-6.14-capsule:satellite-maintain-0:0.0.2-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:satellite-maintain-0:0.0.2-1.el8sat.src", + "8Base-satellite-6.14-maintenance:rubygem-clamp-0:1.3.2-1.el8sat.noarch", + "8Base-satellite-6.14-maintenance:rubygem-clamp-0:1.3.2-1.el8sat.src", + "8Base-satellite-6.14-maintenance:rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch", + "8Base-satellite-6.14-maintenance:rubygem-foreman_maintain-1:1.3.5-1.el8sat.src", + "8Base-satellite-6.14-maintenance:rubygem-highline-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-maintenance:rubygem-highline-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14-maintenance:satellite-clone-0:3.5.0-1.el8sat.noarch", + "8Base-satellite-6.14-maintenance:satellite-clone-0:3.5.0-1.el8sat.src", + "8Base-satellite-6.14-maintenance:satellite-maintain-0:0.0.2-1.el8sat.noarch", + "8Base-satellite-6.14-maintenance:satellite-maintain-0:0.0.2-1.el8sat.src", + "8Base-satellite-6.14-utils:python-pulp_manifest-0:3.0.0-3.el8pc.src", + "8Base-satellite-6.14-utils:python39-pulp_manifest-0:3.0.0-3.el8pc.noarch", + "8Base-satellite-6.14-utils:rubygem-amazing_print-0:1.4.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-amazing_print-0:1.4.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-apipie-bindings-0:0.6.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-apipie-bindings-0:0.6.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-clamp-0:1.3.2-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-clamp-0:1.3.2-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-domain_name-0:0.5.20190701-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-fast_gettext-0:1.8.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-ffi-0:1.15.5-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-ffi-0:1.15.5-1.el8sat.x86_64", + "8Base-satellite-6.14-utils:rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64", + "8Base-satellite-6.14-utils:rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64", + "8Base-satellite-6.14-utils:rubygem-gssapi-0:1.3.1-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-gssapi-0:1.3.1-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli-0:3.7.0.1-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli-0:3.7.0.1-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-hashie-0:5.0.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-hashie-0:5.0.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-highline-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-highline-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-http-accept-0:1.7.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-http-accept-0:1.7.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-http-cookie-0:1.0.5-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-http-cookie-0:1.0.5-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-jwt-0:2.7.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-jwt-0:2.7.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-little-plugger-0:1.1.4-3.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-little-plugger-0:1.1.4-3.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-locale-0:2.1.3-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-locale-0:2.1.3-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-logging-0:2.3.1-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-logging-0:2.3.1-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-mime-types-0:3.4.1-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-mime-types-0:3.4.1-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-multi_json-0:1.15.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-multi_json-0:1.15.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-netrc-0:0.11.0-6.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-netrc-0:0.11.0-6.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-oauth-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-oauth-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-oauth-tty-0:1.0.5-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-powerbar-0:2.0.1-3.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-powerbar-0:2.0.1-3.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-rest-client-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-rest-client-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-snaky_hash-0:2.0.1-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-unf-0:0.1.4-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-unf-0:0.1.4-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-unf_ext-0:0.0.8.2-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64", + "8Base-satellite-6.14-utils:rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64", + "8Base-satellite-6.14-utils:rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64", + "8Base-satellite-6.14-utils:rubygem-unicode-0:0.4.4.4-4.1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-unicode-0:0.4.4.4-4.1.el8sat.x86_64", + "8Base-satellite-6.14-utils:rubygem-unicode-debuginfo-0:0.4.4.4-4.1.el8sat.x86_64", + "8Base-satellite-6.14-utils:rubygem-unicode-debugsource-0:0.4.4.4-4.1.el8sat.x86_64", + "8Base-satellite-6.14-utils:rubygem-unicode-display_width-0:1.8.0-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-unicode-display_width-0:1.8.0-1.el8sat.src", + "8Base-satellite-6.14-utils:rubygem-version_gem-0:1.1.2-1.el8sat.noarch", + "8Base-satellite-6.14-utils:rubygem-version_gem-0:1.1.2-1.el8sat.src", + "8Base-satellite-6.14-utils:satellite-0:6.14.0-3.el8sat.noarch", + "8Base-satellite-6.14-utils:satellite-0:6.14.0-3.el8sat.src", + "8Base-satellite-6.14-utils:satellite-capsule-0:6.14.0-3.el8sat.noarch", + "8Base-satellite-6.14-utils:satellite-cli-0:6.14.0-3.el8sat.noarch", + "8Base-satellite-6.14-utils:satellite-common-0:6.14.0-3.el8sat.noarch", + "8Base-satellite-6.14:ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.noarch", + "8Base-satellite-6.14:ansible-collection-redhat-satellite-0:3.14.0-1.el8sat.src", + "8Base-satellite-6.14:ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:ansible-collection-redhat-satellite_operations-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14:ansible-lint-0:5.0.8-4.el8pc.noarch", + "8Base-satellite-6.14:ansible-lint-0:5.0.8-4.el8pc.src", + "8Base-satellite-6.14:ansible-runner-0:2.2.1-3.el8sat.noarch", + "8Base-satellite-6.14:ansible-runner-0:2.2.1-3.el8sat.src", + "8Base-satellite-6.14:ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.noarch", + "8Base-satellite-6.14:ansiblerole-foreman_scap_client-0:0.2.0-2.el8sat.src", + "8Base-satellite-6.14:ansiblerole-insights-client-0:1.7.1-2.el8sat.noarch", + "8Base-satellite-6.14:ansiblerole-insights-client-0:1.7.1-2.el8sat.src", + "8Base-satellite-6.14:candlepin-0:4.3.1-1.el8sat.noarch", + "8Base-satellite-6.14:candlepin-0:4.3.1-1.el8sat.src", + "8Base-satellite-6.14:candlepin-selinux-0:4.3.1-1.el8sat.noarch", + "8Base-satellite-6.14:cjson-0:1.7.14-5.el8sat.src", + "8Base-satellite-6.14:cjson-0:1.7.14-5.el8sat.x86_64", + "8Base-satellite-6.14:cjson-debuginfo-0:1.7.14-5.el8sat.x86_64", + "8Base-satellite-6.14:cjson-debugsource-0:1.7.14-5.el8sat.x86_64", + "8Base-satellite-6.14:createrepo_c-0:0.20.1-1.el8pc.src", + "8Base-satellite-6.14:createrepo_c-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14:createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14:createrepo_c-debugsource-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14:createrepo_c-libs-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14:createrepo_c-libs-debuginfo-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14:dynflow-utils-0:1.6.3-1.el8sat.src", + "8Base-satellite-6.14:dynflow-utils-0:1.6.3-1.el8sat.x86_64", + "8Base-satellite-6.14:foreman-bootloaders-redhat-0:202102220000-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-bootloaders-redhat-0:202102220000-1.el8sat.src", + "8Base-satellite-6.14:foreman-bootloaders-redhat-tftpboot-0:202102220000-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-discovery-image-1:4.1.0-10.el8sat.noarch", + "8Base-satellite-6.14:foreman-discovery-image-1:4.1.0-10.el8sat.src", + "8Base-satellite-6.14:foreman-discovery-image-service-0:1.0.0-4.1.el8sat.src", + "8Base-satellite-6.14:foreman-discovery-image-service-0:1.0.0-4.1.el8sat.x86_64", + "8Base-satellite-6.14:foreman-discovery-image-service-tui-0:1.0.0-4.1.el8sat.x86_64", + "8Base-satellite-6.14:foreman-installer-1:3.7.0.4-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-installer-1:3.7.0.4-1.el8sat.src", + "8Base-satellite-6.14:foreman-installer-katello-1:3.7.0.4-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-obsolete-packages-0:1.5-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-obsolete-packages-0:1.5-1.el8sat.src", + "8Base-satellite-6.14:foreman-proxy-0:3.7.0-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-proxy-0:3.7.0-1.el8sat.src", + "8Base-satellite-6.14:foreman-proxy-content-0:4.9.0-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-proxy-journald-0:3.7.0-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-selinux-0:3.7.0-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-selinux-0:3.7.0-1.el8sat.src", + "8Base-satellite-6.14:katello-0:4.9.0-1.el8sat.noarch", + "8Base-satellite-6.14:katello-0:4.9.0-1.el8sat.src", + "8Base-satellite-6.14:katello-certs-tools-0:2.9.0-2.el8sat.noarch", + "8Base-satellite-6.14:katello-certs-tools-0:2.9.0-2.el8sat.src", + "8Base-satellite-6.14:katello-client-bootstrap-0:1.7.9-1.el8sat.noarch", + "8Base-satellite-6.14:katello-client-bootstrap-0:1.7.9-1.el8sat.src", + "8Base-satellite-6.14:katello-common-0:4.9.0-1.el8sat.noarch", + "8Base-satellite-6.14:katello-debug-0:4.9.0-1.el8sat.noarch", + "8Base-satellite-6.14:katello-selinux-0:5.0.2-1.el8sat.noarch", + "8Base-satellite-6.14:katello-selinux-0:5.0.2-1.el8sat.src", + "8Base-satellite-6.14:libcomps-0:0.1.18-4.el8pc.src", + "8Base-satellite-6.14:libcomps-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14:libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14:libcomps-debugsource-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14:libdb-cxx-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14:libdb-cxx-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14:libdb-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14:libdb-debugsource-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14:libdb-java-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14:libdb-sql-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14:libdb-sql-devel-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14:libdb-tcl-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14:libdb-utils-debuginfo-0:5.3.28-42.el8_4.x86_64", + "8Base-satellite-6.14:libsodium-0:1.0.17-3.el8sat.src", + "8Base-satellite-6.14:libsodium-0:1.0.17-3.el8sat.x86_64", + "8Base-satellite-6.14:libsodium-debuginfo-0:1.0.17-3.el8sat.x86_64", + "8Base-satellite-6.14:libsodium-debugsource-0:1.0.17-3.el8sat.x86_64", + "8Base-satellite-6.14:libsolv-0:0.7.22-4.el8pc.src", + "8Base-satellite-6.14:libsolv-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14:libsolv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14:libsolv-debugsource-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14:libsolv-demo-debuginfo-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14:libsolv-tools-debuginfo-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14:libwebsockets-0:2.4.2-2.el8.src", + "8Base-satellite-6.14:libwebsockets-0:2.4.2-2.el8.x86_64", + "8Base-satellite-6.14:libwebsockets-debuginfo-0:2.4.2-2.el8.x86_64", + "8Base-satellite-6.14:libwebsockets-debugsource-0:2.4.2-2.el8.x86_64", + "8Base-satellite-6.14:libwebsockets-tests-debuginfo-0:2.4.2-2.el8.x86_64", + "8Base-satellite-6.14:mosquitto-0:2.0.14-1.el8sat.src", + "8Base-satellite-6.14:mosquitto-0:2.0.14-1.el8sat.x86_64", + "8Base-satellite-6.14:mosquitto-debuginfo-0:2.0.14-1.el8sat.x86_64", + "8Base-satellite-6.14:mosquitto-debugsource-0:2.0.14-1.el8sat.x86_64", + "8Base-satellite-6.14:postgresql-evr-0:0.0.2-1.el8sat.src", + "8Base-satellite-6.14:postgresql-evr-0:0.0.2-1.el8sat.x86_64", + "8Base-satellite-6.14:pulpcore-selinux-0:1.3.3-1.el8pc.src", + "8Base-satellite-6.14:pulpcore-selinux-0:1.3.3-1.el8pc.x86_64", + "8Base-satellite-6.14:puppet-agent-0:7.26.0-3.el8sat.src", + "8Base-satellite-6.14:puppet-agent-0:7.26.0-3.el8sat.x86_64", + "8Base-satellite-6.14:puppet-agent-oauth-0:0.5.10-1.el8sat.noarch", + "8Base-satellite-6.14:puppet-agent-oauth-0:0.5.10-1.el8sat.src", + "8Base-satellite-6.14:puppet-foreman_scap_client-0:0.4.0-1.el8sat.noarch", + "8Base-satellite-6.14:puppet-foreman_scap_client-0:0.4.0-1.el8sat.src", + "8Base-satellite-6.14:puppetlabs-stdlib-0:5.2.0-1.el8sat.noarch", + "8Base-satellite-6.14:puppetlabs-stdlib-0:5.2.0-1.el8sat.src", + "8Base-satellite-6.14:puppetserver-0:7.11.0-1.el8sat.noarch", + "8Base-satellite-6.14:puppetserver-0:7.11.0-1.el8sat.src", + "8Base-satellite-6.14:python-aiodns-0:3.0.0-3.el8pc.src", + "8Base-satellite-6.14:python-aiofiles-0:22.1.0-1.el8pc.src", + "8Base-satellite-6.14:python-aiohttp-0:3.8.3-2.el8pc.src", + "8Base-satellite-6.14:python-aiohttp-debugsource-0:3.8.3-2.el8pc.x86_64", + "8Base-satellite-6.14:python-aiohttp-xmlrpc-0:1.5.0-2.el8pc.src", + "8Base-satellite-6.14:python-aioredis-0:2.0.1-2.el8pc.src", + "8Base-satellite-6.14:python-aiosignal-0:1.3.1-1.el8pc.src", + "8Base-satellite-6.14:python-ansible-builder-0:1.0.1-4.el8pc.src", + "8Base-satellite-6.14:python-asgiref-0:3.6.0-1.el8pc.src", + "8Base-satellite-6.14:python-async-lru-0:1.0.3-1.el8pc.src", + "8Base-satellite-6.14:python-async-timeout-0:4.0.2-2.el8pc.src", + "8Base-satellite-6.14:python-asyncio-throttle-0:1.0.2-3.el8pc.src", + "8Base-satellite-6.14:python-attrs-0:21.4.0-2.el8pc.src", + "8Base-satellite-6.14:python-backoff-0:2.2.1-1.el8pc.src", + "8Base-satellite-6.14:python-bindep-0:2.11.0-2.el8pc.src", + "8Base-satellite-6.14:python-bleach-0:3.3.1-2.el8pc.src", + "8Base-satellite-6.14:python-bleach-allowlist-0:1.0.3-3.el8pc.src", + "8Base-satellite-6.14:python-bracex-0:2.2.1-2.el8pc.src", + "8Base-satellite-6.14:python-brotli-0:1.0.9-2.el8pc.src", + "8Base-satellite-6.14:python-brotli-debugsource-0:1.0.9-2.el8pc.x86_64", + "8Base-satellite-6.14:python-cchardet-0:2.1.7-4.el8pc.src", + "8Base-satellite-6.14:python-cchardet-debugsource-0:2.1.7-4.el8pc.x86_64", + "8Base-satellite-6.14:python-certifi-0:2022.12.7-1.1.el8pc.src", + "8Base-satellite-6.14:python-cffi-0:1.15.1-1.el8pc.src", + "8Base-satellite-6.14:python-cffi-debugsource-0:1.15.1-1.el8pc.x86_64", + "8Base-satellite-6.14:python-chardet-0:5.0.0-1.el8pc.src", + "8Base-satellite-6.14:python-charset-normalizer-0:2.1.1-1.el8pc.src", + "8Base-satellite-6.14:python-click-0:8.1.3-1.el8pc.src", + "8Base-satellite-6.14:python-click-shell-0:2.1-3.el8pc.src", + "8Base-satellite-6.14:python-colorama-0:0.4.4-3.el8pc.src", + "8Base-satellite-6.14:python-commonmark-0:0.9.1-5.el8pc.src", + "8Base-satellite-6.14:python-contextlib2-0:21.6.0-3.el8pc.src", + "8Base-satellite-6.14:python-cryptography-0:38.0.4-1.el8pc.src", + "8Base-satellite-6.14:python-cryptography-debugsource-0:38.0.4-1.el8pc.x86_64", + "8Base-satellite-6.14:python-daemon-0:2.3.1-1.1.el8sat.src", + "8Base-satellite-6.14:python-dataclasses-0:0.8-3.el8pc.src", + "8Base-satellite-6.14:python-dateutil-0:2.8.2-2.el8pc.src", + "8Base-satellite-6.14:python-debian-0:0.1.44-3.el8pc.src", + "8Base-satellite-6.14:python-defusedxml-0:0.7.1-3.el8pc.src", + "8Base-satellite-6.14:python-deprecated-0:1.2.13-1.el8pc.src", + "8Base-satellite-6.14:python-diff-match-patch-0:20200713-3.el8pc.src", + "8Base-satellite-6.14:python-distro-0:1.7.0-1.el8pc.src", + "8Base-satellite-6.14:python-django-0:3.2.21-1.el8pc.src", + "8Base-satellite-6.14:python-django-currentuser-0:0.5.3-5.el8pc.src", + "8Base-satellite-6.14:python-django-filter-0:22.1-2.el8pc.src", + "8Base-satellite-6.14:python-django-guid-0:3.3.0-1.el8pc.src", + "8Base-satellite-6.14:python-django-import-export-0:3.0.2-1.el8pc.src", + "8Base-satellite-6.14:python-django-lifecycle-0:1.0.0-1.el8pc.src", + "8Base-satellite-6.14:python-django-readonly-field-0:1.1.2-1.el8pc.src", + "8Base-satellite-6.14:python-djangorestframework-0:3.14.0-1.el8pc.src", + "8Base-satellite-6.14:python-djangorestframework-queryfields-0:1.0.0-5.el8pc.src", + "8Base-satellite-6.14:python-docutils-0:0.19-1.1.el8sat.src", + "8Base-satellite-6.14:python-drf-access-policy-0:1.3.0-1.el8pc.src", + "8Base-satellite-6.14:python-drf-nested-routers-0:0.93.4-3.el8pc.src", + "8Base-satellite-6.14:python-drf-spectacular-0:0.25.0-1.el8pc.src", + "8Base-satellite-6.14:python-dynaconf-0:3.1.11-1.el8pc.src", + "8Base-satellite-6.14:python-ecdsa-0:0.18.0-1.el8pc.src", + "8Base-satellite-6.14:python-enrich-0:1.2.6-5.el8pc.src", + "8Base-satellite-6.14:python-et-xmlfile-0:1.1.0-2.el8pc.src", + "8Base-satellite-6.14:python-flake8-0:3.9.2-5.el8pc.src", + "8Base-satellite-6.14:python-frozenlist-0:1.3.3-1.el8pc.src", + "8Base-satellite-6.14:python-frozenlist-debugsource-0:1.3.3-1.el8pc.x86_64", + "8Base-satellite-6.14:python-future-0:0.18.3-1.el8pc.src", + "8Base-satellite-6.14:python-galaxy-importer-0:0.4.6-1.el8pc.src", + "8Base-satellite-6.14:python-gitdb-0:4.0.10-1.el8pc.src", + "8Base-satellite-6.14:python-gitpython-0:3.1.32-1.el8pc.src", + "8Base-satellite-6.14:python-gnupg-0:0.5.0-1.el8pc.src", + "8Base-satellite-6.14:python-gunicorn-0:20.1.0-5.el8pc.src", + "8Base-satellite-6.14:python-idna-0:3.3-2.el8pc.src", + "8Base-satellite-6.14:python-idna-ssl-0:1.1.0-5.el8pc.src", + "8Base-satellite-6.14:python-importlib-metadata-0:4.10.1-2.el8pc.src", + "8Base-satellite-6.14:python-inflection-0:0.5.1-3.el8pc.src", + "8Base-satellite-6.14:python-iniparse-0:0.4-35.el8pc.src", + "8Base-satellite-6.14:python-jinja2-0:3.1.2-1.el8pc.src", + "8Base-satellite-6.14:python-jsonschema-0:4.9.1-1.el8pc.src", + "8Base-satellite-6.14:python-lockfile-0:0.12.2-1.el8sat.src", + "8Base-satellite-6.14:python-lxml-0:4.9.2-1.el8pc.src", + "8Base-satellite-6.14:python-lxml-debugsource-0:4.9.2-1.el8pc.x86_64", + "8Base-satellite-6.14:python-markdown-0:3.4.1-1.el8pc.src", + "8Base-satellite-6.14:python-markuppy-0:1.14-3.el8pc.src", + "8Base-satellite-6.14:python-markupsafe-0:2.1.2-1.el8pc.src", + "8Base-satellite-6.14:python-markupsafe-debugsource-0:2.1.2-1.el8pc.x86_64", + "8Base-satellite-6.14:python-mccabe-0:0.6.1-3.el8pc.src", + "8Base-satellite-6.14:python-multidict-0:6.0.4-1.el8pc.src", + "8Base-satellite-6.14:python-multidict-debugsource-0:6.0.4-1.el8pc.x86_64", + "8Base-satellite-6.14:python-naya-0:1.1.1-3.el8pc.src", + "8Base-satellite-6.14:python-odfpy-0:1.4.1-6.el8pc.src", + "8Base-satellite-6.14:python-openpyxl-0:3.1.0-1.el8pc.src", + "8Base-satellite-6.14:python-packaging-0:21.3-1.el8pc.src", + "8Base-satellite-6.14:python-parsley-0:1.3-2.el8pc.src", + "8Base-satellite-6.14:python-pbr-0:5.8.0-4.el8pc.src", + "8Base-satellite-6.14:python-pexpect-0:4.8.0-2.el8sat.src", + "8Base-satellite-6.14:python-productmd-0:1.33-3.el8pc.src", + "8Base-satellite-6.14:python-protobuf-0:4.21.6-1.el8pc.src", + "8Base-satellite-6.14:python-psycopg2-0:2.9.3-2.el8pc.src", + "8Base-satellite-6.14:python-psycopg2-debugsource-0:2.9.3-2.el8pc.x86_64", + "8Base-satellite-6.14:python-ptyprocess-0:0.7.0-1.el8sat.src", + "8Base-satellite-6.14:python-pulp-ansible-1:0.16.0-1.el8pc.src", + "8Base-satellite-6.14:python-pulp-certguard-0:1.5.6-1.el8pc.src", + "8Base-satellite-6.14:python-pulp-cli-0:0.14.0-4.el8pc.src", + "8Base-satellite-6.14:python-pulp-container-0:2.14.7-1.el8pc.src", + "8Base-satellite-6.14:python-pulp-deb-0:2.20.2-1.el8pc.src", + "8Base-satellite-6.14:python-pulp-file-0:1.12.0-1.el8pc.src", + "8Base-satellite-6.14:python-pulp-rpm-0:3.19.9-1.el8pc.src", + "8Base-satellite-6.14:python-pulp_manifest-0:3.0.0-3.el8pc.src", + "8Base-satellite-6.14:python-pulpcore-0:3.22.15-2.el8pc.src", + "8Base-satellite-6.14:python-pyOpenSSL-0:22.1.0-1.el8pc.src", + "8Base-satellite-6.14:python-pycares-0:4.1.2-2.el8pc.src", + "8Base-satellite-6.14:python-pycares-debugsource-0:4.1.2-2.el8pc.x86_64", + "8Base-satellite-6.14:python-pycodestyle-0:2.7.0-5.el8pc.src", + "8Base-satellite-6.14:python-pycparser-0:2.21-2.el8pc.src", + "8Base-satellite-6.14:python-pycryptodomex-0:3.14.1-2.el8pc.src", + "8Base-satellite-6.14:python-pycryptodomex-debugsource-0:3.14.1-2.el8pc.x86_64", + "8Base-satellite-6.14:python-pyflakes-0:2.3.1-5.el8pc.src", + "8Base-satellite-6.14:python-pygments-0:2.14.0-1.el8pc.src", + "8Base-satellite-6.14:python-pygtrie-0:2.5.0-1.el8pc.src", + "8Base-satellite-6.14:python-pyjwkest-0:1.4.2-6.el8pc.src", + "8Base-satellite-6.14:python-pyjwt-0:2.5.0-2.el8pc.src", + "8Base-satellite-6.14:python-pyparsing-0:2.4.7-3.el8pc.src", + "8Base-satellite-6.14:python-pyrsistent-0:0.18.1-2.el8pc.src", + "8Base-satellite-6.14:python-pyrsistent-debugsource-0:0.18.1-2.el8pc.x86_64", + "8Base-satellite-6.14:python-pytz-0:2022.2.1-1.el8pc.src", + "8Base-satellite-6.14:python-pyyaml-0:5.4.1-4.el8pc.src", + "8Base-satellite-6.14:python-qpid-0:1.37.0-1.el8.src", + "8Base-satellite-6.14:python-redis-0:4.3.4-1.el8pc.src", + "8Base-satellite-6.14:python-requests-0:2.31.0-1.el8pc.src", + "8Base-satellite-6.14:python-requirements-parser-0:0.2.0-3.el8pc.src", + "8Base-satellite-6.14:python-rhsm-0:1.19.2-3.el8pc.src", + "8Base-satellite-6.14:python-rhsm-debugsource-0:1.19.2-3.el8pc.x86_64", + "8Base-satellite-6.14:python-rich-0:13.3.1-2.el8pc.src", + "8Base-satellite-6.14:python-ruamel-yaml-0:0.17.21-2.el8pc.src", + "8Base-satellite-6.14:python-ruamel-yaml-clib-0:0.2.7-1.el8pc.src", + "8Base-satellite-6.14:python-ruamel-yaml-clib-debugsource-0:0.2.7-1.el8pc.x86_64", + "8Base-satellite-6.14:python-schema-0:0.7.5-2.el8pc.src", + "8Base-satellite-6.14:python-semantic-version-0:2.10.0-1.el8pc.src", + "8Base-satellite-6.14:python-six-0:1.16.0-2.el8pc.src", + "8Base-satellite-6.14:python-smmap-0:5.0.0-2.el8pc.src", + "8Base-satellite-6.14:python-sqlparse-0:0.4.4-1.el8pc.src", + "8Base-satellite-6.14:python-tablib-0:3.3.0-1.el8pc.src", + "8Base-satellite-6.14:python-tenacity-0:7.0.0-3.el8pc.src", + "8Base-satellite-6.14:python-toml-0:0.10.2-3.el8pc.src", + "8Base-satellite-6.14:python-types-cryptography-0:3.3.23.2-1.el8pc.src", + "8Base-satellite-6.14:python-typing-extensions-0:3.10.0.2-2.el8pc.src", + "8Base-satellite-6.14:python-uritemplate-0:4.1.1-2.el8pc.src", + "8Base-satellite-6.14:python-url-normalize-0:1.4.3-4.el8pc.src", + "8Base-satellite-6.14:python-urllib3-0:1.26.8-2.el8pc.src", + "8Base-satellite-6.14:python-urlman-0:2.0.1-1.el8pc.src", + "8Base-satellite-6.14:python-wcmatch-0:8.3-2.el8pc.src", + "8Base-satellite-6.14:python-webencodings-0:0.5.1-3.el8pc.src", + "8Base-satellite-6.14:python-websockify-0:0.10.0-3.el8sat.src", + "8Base-satellite-6.14:python-whitenoise-0:6.0.0-1.el8pc.src", + "8Base-satellite-6.14:python-wrapt-0:1.14.1-1.el8pc.src", + "8Base-satellite-6.14:python-wrapt-debugsource-0:1.14.1-1.el8pc.x86_64", + "8Base-satellite-6.14:python-xlrd-0:2.0.1-5.el8pc.src", + "8Base-satellite-6.14:python-xlwt-0:1.3.0-3.el8pc.src", + "8Base-satellite-6.14:python-yarl-0:1.8.2-1.el8pc.src", + "8Base-satellite-6.14:python-yarl-debugsource-0:1.8.2-1.el8pc.x86_64", + "8Base-satellite-6.14:python-zipp-0:3.4.0-4.el8pc.src", + "8Base-satellite-6.14:python2-qpid-0:1.37.0-1.el8.noarch", + "8Base-satellite-6.14:python2-qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:python2-saslwrapper-0:0.22-6.el8sat.x86_64", + "8Base-satellite-6.14:python2-saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "8Base-satellite-6.14:python3-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14:python3-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14:python3-libcomps-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14:python3-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14:python3-qpid-proton-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14:python3-qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14:python3-solv-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14:python3-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14:python3-websockify-0:0.10.0-3.el8sat.noarch", + "8Base-satellite-6.14:python39-aiodns-0:3.0.0-3.el8pc.noarch", + "8Base-satellite-6.14:python39-aiofiles-0:22.1.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-aiohttp-0:3.8.3-2.el8pc.x86_64", + "8Base-satellite-6.14:python39-aiohttp-debuginfo-0:3.8.3-2.el8pc.x86_64", + "8Base-satellite-6.14:python39-aiohttp-xmlrpc-0:1.5.0-2.el8pc.noarch", + "8Base-satellite-6.14:python39-aioredis-0:2.0.1-2.el8pc.noarch", + "8Base-satellite-6.14:python39-aiosignal-0:1.3.1-1.el8pc.noarch", + "8Base-satellite-6.14:python39-ansible-builder-0:1.0.1-4.el8pc.noarch", + "8Base-satellite-6.14:python39-ansible-runner-0:2.2.1-3.el8sat.noarch", + "8Base-satellite-6.14:python39-asgiref-0:3.6.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-async-lru-0:1.0.3-1.el8pc.noarch", + "8Base-satellite-6.14:python39-async-timeout-0:4.0.2-2.el8pc.noarch", + "8Base-satellite-6.14:python39-asyncio-throttle-0:1.0.2-3.el8pc.noarch", + "8Base-satellite-6.14:python39-attrs-0:21.4.0-2.el8pc.noarch", + "8Base-satellite-6.14:python39-backoff-0:2.2.1-1.el8pc.noarch", + "8Base-satellite-6.14:python39-bindep-0:2.11.0-2.el8pc.noarch", + "8Base-satellite-6.14:python39-bleach-0:3.3.1-2.el8pc.noarch", + "8Base-satellite-6.14:python39-bleach-allowlist-0:1.0.3-3.el8pc.noarch", + "8Base-satellite-6.14:python39-bracex-0:2.2.1-2.el8pc.noarch", + "8Base-satellite-6.14:python39-brotli-0:1.0.9-2.el8pc.x86_64", + "8Base-satellite-6.14:python39-brotli-debuginfo-0:1.0.9-2.el8pc.x86_64", + "8Base-satellite-6.14:python39-cchardet-0:2.1.7-4.el8pc.x86_64", + "8Base-satellite-6.14:python39-cchardet-debuginfo-0:2.1.7-4.el8pc.x86_64", + "8Base-satellite-6.14:python39-certifi-0:2022.12.7-1.1.el8pc.noarch", + "8Base-satellite-6.14:python39-cffi-0:1.15.1-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-cffi-debuginfo-0:1.15.1-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-chardet-0:5.0.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-charset-normalizer-0:2.1.1-1.el8pc.noarch", + "8Base-satellite-6.14:python39-click-0:8.1.3-1.el8pc.noarch", + "8Base-satellite-6.14:python39-click-shell-0:2.1-3.el8pc.noarch", + "8Base-satellite-6.14:python39-colorama-0:0.4.4-3.el8pc.noarch", + "8Base-satellite-6.14:python39-commonmark-0:0.9.1-5.el8pc.noarch", + "8Base-satellite-6.14:python39-contextlib2-0:21.6.0-3.el8pc.noarch", + "8Base-satellite-6.14:python39-createrepo_c-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-createrepo_c-debuginfo-0:0.20.1-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-cryptography-0:38.0.4-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-cryptography-debuginfo-0:38.0.4-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-daemon-0:2.3.1-1.1.el8sat.noarch", + "8Base-satellite-6.14:python39-dataclasses-0:0.8-3.el8pc.noarch", + "8Base-satellite-6.14:python39-dateutil-0:2.8.2-2.el8pc.noarch", + "8Base-satellite-6.14:python39-debian-0:0.1.44-3.el8pc.noarch", + "8Base-satellite-6.14:python39-defusedxml-0:0.7.1-3.el8pc.noarch", + "8Base-satellite-6.14:python39-deprecated-0:1.2.13-1.el8pc.noarch", + "8Base-satellite-6.14:python39-diff-match-patch-0:20200713-3.el8pc.noarch", + "8Base-satellite-6.14:python39-distro-0:1.7.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-django-0:3.2.21-1.el8pc.noarch", + "8Base-satellite-6.14:python39-django-currentuser-0:0.5.3-5.el8pc.noarch", + "8Base-satellite-6.14:python39-django-filter-0:22.1-2.el8pc.noarch", + "8Base-satellite-6.14:python39-django-guid-0:3.3.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-django-import-export-0:3.0.2-1.el8pc.noarch", + "8Base-satellite-6.14:python39-django-lifecycle-0:1.0.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-django-readonly-field-0:1.1.2-1.el8pc.noarch", + "8Base-satellite-6.14:python39-djangorestframework-0:3.14.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-djangorestframework-queryfields-0:1.0.0-5.el8pc.noarch", + "8Base-satellite-6.14:python39-docutils-0:0.19-1.1.el8sat.noarch", + "8Base-satellite-6.14:python39-drf-access-policy-0:1.3.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-drf-nested-routers-0:0.93.4-3.el8pc.noarch", + "8Base-satellite-6.14:python39-drf-spectacular-0:0.25.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-dynaconf-0:3.1.11-1.el8pc.noarch", + "8Base-satellite-6.14:python39-ecdsa-0:0.18.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-enrich-0:1.2.6-5.el8pc.noarch", + "8Base-satellite-6.14:python39-et-xmlfile-0:1.1.0-2.el8pc.noarch", + "8Base-satellite-6.14:python39-flake8-0:3.9.2-5.el8pc.noarch", + "8Base-satellite-6.14:python39-frozenlist-0:1.3.3-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-frozenlist-debuginfo-0:1.3.3-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-future-0:0.18.3-1.el8pc.noarch", + "8Base-satellite-6.14:python39-galaxy-importer-0:0.4.6-1.el8pc.noarch", + "8Base-satellite-6.14:python39-gitdb-0:4.0.10-1.el8pc.noarch", + "8Base-satellite-6.14:python39-gitpython-0:3.1.32-1.el8pc.noarch", + "8Base-satellite-6.14:python39-gnupg-0:0.5.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-gunicorn-0:20.1.0-5.el8pc.noarch", + "8Base-satellite-6.14:python39-idna-0:3.3-2.el8pc.noarch", + "8Base-satellite-6.14:python39-idna-ssl-0:1.1.0-5.el8pc.noarch", + "8Base-satellite-6.14:python39-importlib-metadata-0:4.10.1-2.el8pc.noarch", + "8Base-satellite-6.14:python39-inflection-0:0.5.1-3.el8pc.noarch", + "8Base-satellite-6.14:python39-iniparse-0:0.4-35.el8pc.noarch", + "8Base-satellite-6.14:python39-jinja2-0:3.1.2-1.el8pc.noarch", + "8Base-satellite-6.14:python39-jsonschema-0:4.9.1-1.el8pc.noarch", + "8Base-satellite-6.14:python39-libcomps-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14:python39-libcomps-debuginfo-0:0.1.18-4.el8pc.x86_64", + "8Base-satellite-6.14:python39-lockfile-0:0.12.2-1.el8sat.noarch", + "8Base-satellite-6.14:python39-lxml-0:4.9.2-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-lxml-debuginfo-0:4.9.2-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-markdown-0:3.4.1-1.el8pc.noarch", + "8Base-satellite-6.14:python39-markuppy-0:1.14-3.el8pc.noarch", + "8Base-satellite-6.14:python39-markupsafe-0:2.1.2-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-markupsafe-debuginfo-0:2.1.2-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-mccabe-0:0.6.1-3.el8pc.noarch", + "8Base-satellite-6.14:python39-multidict-0:6.0.4-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-multidict-debuginfo-0:6.0.4-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-naya-0:1.1.1-3.el8pc.noarch", + "8Base-satellite-6.14:python39-odfpy-0:1.4.1-6.el8pc.noarch", + "8Base-satellite-6.14:python39-openpyxl-0:3.1.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-packaging-0:21.3-1.el8pc.noarch", + "8Base-satellite-6.14:python39-parsley-0:1.3-2.el8pc.noarch", + "8Base-satellite-6.14:python39-pbr-0:5.8.0-4.el8pc.noarch", + "8Base-satellite-6.14:python39-pexpect-0:4.8.0-2.el8sat.noarch", + "8Base-satellite-6.14:python39-productmd-0:1.33-3.el8pc.noarch", + "8Base-satellite-6.14:python39-protobuf-0:4.21.6-1.el8pc.noarch", + "8Base-satellite-6.14:python39-psycopg2-0:2.9.3-2.el8pc.x86_64", + "8Base-satellite-6.14:python39-psycopg2-debuginfo-0:2.9.3-2.el8pc.x86_64", + "8Base-satellite-6.14:python39-ptyprocess-0:0.7.0-1.el8sat.noarch", + "8Base-satellite-6.14:python39-pulp-ansible-1:0.16.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-pulp-certguard-0:1.5.6-1.el8pc.noarch", + "8Base-satellite-6.14:python39-pulp-cli-0:0.14.0-4.el8pc.noarch", + "8Base-satellite-6.14:python39-pulp-container-0:2.14.7-1.el8pc.noarch", + "8Base-satellite-6.14:python39-pulp-deb-0:2.20.2-1.el8pc.noarch", + "8Base-satellite-6.14:python39-pulp-file-0:1.12.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-pulp-rpm-0:3.19.9-1.el8pc.noarch", + "8Base-satellite-6.14:python39-pulp_manifest-0:3.0.0-3.el8pc.noarch", + "8Base-satellite-6.14:python39-pulpcore-0:3.22.15-2.el8pc.noarch", + "8Base-satellite-6.14:python39-pyOpenSSL-0:22.1.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-pycares-0:4.1.2-2.el8pc.x86_64", + "8Base-satellite-6.14:python39-pycares-debuginfo-0:4.1.2-2.el8pc.x86_64", + "8Base-satellite-6.14:python39-pycodestyle-0:2.7.0-5.el8pc.noarch", + "8Base-satellite-6.14:python39-pycparser-0:2.21-2.el8pc.noarch", + "8Base-satellite-6.14:python39-pycryptodomex-0:3.14.1-2.el8pc.x86_64", + "8Base-satellite-6.14:python39-pycryptodomex-debuginfo-0:3.14.1-2.el8pc.x86_64", + "8Base-satellite-6.14:python39-pyflakes-0:2.3.1-5.el8pc.noarch", + "8Base-satellite-6.14:python39-pygments-0:2.14.0-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-pygtrie-0:2.5.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-pyjwkest-0:1.4.2-6.el8pc.noarch", + "8Base-satellite-6.14:python39-pyjwt-0:2.5.0-2.el8pc.noarch", + "8Base-satellite-6.14:python39-pyparsing-0:2.4.7-3.el8pc.noarch", + "8Base-satellite-6.14:python39-pyrsistent-0:0.18.1-2.el8pc.x86_64", + "8Base-satellite-6.14:python39-pyrsistent-debuginfo-0:0.18.1-2.el8pc.x86_64", + "8Base-satellite-6.14:python39-pytz-0:2022.2.1-1.el8pc.noarch", + "8Base-satellite-6.14:python39-pyyaml-0:5.4.1-4.el8pc.x86_64", + "8Base-satellite-6.14:python39-redis-0:4.3.4-1.el8pc.noarch", + "8Base-satellite-6.14:python39-requests-0:2.31.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-requirements-parser-0:0.2.0-3.el8pc.noarch", + "8Base-satellite-6.14:python39-rhsm-0:1.19.2-3.el8pc.x86_64", + "8Base-satellite-6.14:python39-rhsm-debuginfo-0:1.19.2-3.el8pc.x86_64", + "8Base-satellite-6.14:python39-rich-0:13.3.1-2.el8pc.noarch", + "8Base-satellite-6.14:python39-ruamel-yaml-0:0.17.21-2.el8pc.noarch", + "8Base-satellite-6.14:python39-ruamel-yaml-clib-0:0.2.7-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-ruamel-yaml-clib-debuginfo-0:0.2.7-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-schema-0:0.7.5-2.el8pc.noarch", + "8Base-satellite-6.14:python39-semantic-version-0:2.10.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-six-0:1.16.0-2.el8pc.noarch", + "8Base-satellite-6.14:python39-smmap-0:5.0.0-2.el8pc.noarch", + "8Base-satellite-6.14:python39-solv-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14:python39-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14:python39-sqlparse-0:0.4.4-1.el8pc.noarch", + "8Base-satellite-6.14:python39-tablib-0:3.3.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-tenacity-0:7.0.0-3.el8pc.noarch", + "8Base-satellite-6.14:python39-toml-0:0.10.2-3.el8pc.noarch", + "8Base-satellite-6.14:python39-types-cryptography-0:3.3.23.2-1.el8pc.noarch", + "8Base-satellite-6.14:python39-typing-extensions-0:3.10.0.2-2.el8pc.noarch", + "8Base-satellite-6.14:python39-uritemplate-0:4.1.1-2.el8pc.noarch", + "8Base-satellite-6.14:python39-url-normalize-0:1.4.3-4.el8pc.noarch", + "8Base-satellite-6.14:python39-urllib3-0:1.26.8-2.el8pc.noarch", + "8Base-satellite-6.14:python39-urlman-0:2.0.1-1.el8pc.noarch", + "8Base-satellite-6.14:python39-wcmatch-0:8.3-2.el8pc.noarch", + "8Base-satellite-6.14:python39-webencodings-0:0.5.1-3.el8pc.noarch", + "8Base-satellite-6.14:python39-whitenoise-0:6.0.0-1.el8pc.noarch", + "8Base-satellite-6.14:python39-wrapt-0:1.14.1-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-wrapt-debuginfo-0:1.14.1-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-xlrd-0:2.0.1-5.el8pc.noarch", + "8Base-satellite-6.14:python39-xlwt-0:1.3.0-3.el8pc.noarch", + "8Base-satellite-6.14:python39-yarl-0:1.8.2-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-yarl-debuginfo-0:1.8.2-1.el8pc.x86_64", + "8Base-satellite-6.14:python39-zipp-0:3.4.0-4.el8pc.noarch", + "8Base-satellite-6.14:qpid-cpp-0:1.39.0-7.el8amq.src", + "8Base-satellite-6.14:qpid-cpp-client-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-cpp-client-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-cpp-client-devel-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-cpp-client-devel-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-cpp-client-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-cpp-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-cpp-debugsource-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-cpp-server-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-cpp-server-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-cpp-server-ha-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-cpp-server-linearstore-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-cpp-server-linearstore-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-cpp-server-rdma-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-dispatch-0:1.14.0-6.el8.src", + "8Base-satellite-6.14:qpid-dispatch-debugsource-0:1.14.0-6.el8.x86_64", + "8Base-satellite-6.14:qpid-dispatch-router-0:1.14.0-6.el8.x86_64", + "8Base-satellite-6.14:qpid-dispatch-router-debuginfo-0:1.14.0-6.el8.x86_64", + "8Base-satellite-6.14:qpid-dispatch-tools-0:1.14.0-6.el8.noarch", + "8Base-satellite-6.14:qpid-proton-0:0.33.0-4.el8.src", + "8Base-satellite-6.14:qpid-proton-c-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14:qpid-proton-c-debuginfo-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14:qpid-proton-cpp-debuginfo-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14:qpid-proton-debuginfo-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14:qpid-proton-debugsource-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14:qpid-qmf-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-qmf-debuginfo-0:1.39.0-7.el8amq.x86_64", + "8Base-satellite-6.14:qpid-tools-0:1.39.0-7.el8amq.noarch", + "8Base-satellite-6.14:redhat-access-insights-puppet-0:1.0.1-1.el8sat.noarch", + "8Base-satellite-6.14:redhat-access-insights-puppet-0:1.0.1-1.el8sat.src", + "8Base-satellite-6.14:ruby-solv-debuginfo-0:0.7.22-4.el8pc.x86_64", + "8Base-satellite-6.14:rubygem-actioncable-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-actioncable-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-actionmailbox-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-actionmailbox-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-actionmailer-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-actionmailer-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-actionpack-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-actionpack-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-actiontext-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-actiontext-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-actionview-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-actionview-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-activejob-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-activejob-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-activemodel-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-activemodel-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-activerecord-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-activerecord-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-activerecord-import-0:1.4.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-activerecord-import-0:1.4.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-activerecord-session_store-0:2.0.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-activerecord-session_store-0:2.0.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-activestorage-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-activestorage-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-activesupport-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-activesupport-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-acts_as_list-0:1.0.3-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-acts_as_list-0:1.0.3-2.el8sat.src", + "8Base-satellite-6.14:rubygem-addressable-0:2.8.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-addressable-0:2.8.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-algebrick-0:0.7.5-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-algebrick-0:0.7.5-1.el8sat.src", + "8Base-satellite-6.14:rubygem-amazing_print-0:1.4.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-amazing_print-0:1.4.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-ancestry-0:4.3.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-ancestry-0:4.3.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-anemone-0:0.7.2-23.el8sat.noarch", + "8Base-satellite-6.14:rubygem-anemone-0:0.7.2-23.el8sat.src", + "8Base-satellite-6.14:rubygem-angular-rails-templates-1:1.1.0-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-angular-rails-templates-1:1.1.0-2.el8sat.src", + "8Base-satellite-6.14:rubygem-ansi-0:1.5.0-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-ansi-0:1.5.0-3.el8sat.src", + "8Base-satellite-6.14:rubygem-apipie-bindings-0:0.6.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-apipie-bindings-0:0.6.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-apipie-dsl-0:2.5.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-apipie-dsl-0:2.5.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-apipie-params-0:0.0.5-5.1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-apipie-params-0:0.0.5-5.1.el8sat.src", + "8Base-satellite-6.14:rubygem-apipie-rails-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-apipie-rails-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-audited-0:5.3.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-audited-0:5.3.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-azure_mgmt_compute-0:0.22.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-azure_mgmt_network-0:0.26.1-2.el8sat.src", + "8Base-satellite-6.14:rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-azure_mgmt_resources-0:0.18.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-azure_mgmt_storage-0:0.23.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-azure_mgmt_subscriptions-0:0.18.5-1.el8sat.src", + "8Base-satellite-6.14:rubygem-bcrypt-0:3.1.18-1.el8sat.src", + "8Base-satellite-6.14:rubygem-bcrypt-0:3.1.18-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-bcrypt-debuginfo-0:3.1.18-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-bcrypt-debugsource-0:3.1.18-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-builder-0:3.2.4-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-builder-0:3.2.4-2.el8sat.src", + "8Base-satellite-6.14:rubygem-bundler_ext-0:0.4.1-6.el8sat.noarch", + "8Base-satellite-6.14:rubygem-bundler_ext-0:0.4.1-6.el8sat.src", + "8Base-satellite-6.14:rubygem-clamp-0:1.3.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-clamp-0:1.3.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-coffee-rails-0:5.0.0-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-coffee-rails-0:5.0.0-2.el8sat.src", + "8Base-satellite-6.14:rubygem-coffee-script-0:2.4.1-5.el8sat.noarch", + "8Base-satellite-6.14:rubygem-coffee-script-0:2.4.1-5.el8sat.src", + "8Base-satellite-6.14:rubygem-coffee-script-source-0:1.12.2-5.el8sat.noarch", + "8Base-satellite-6.14:rubygem-coffee-script-source-0:1.12.2-5.el8sat.src", + "8Base-satellite-6.14:rubygem-colorize-0:0.8.1-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-colorize-0:0.8.1-2.el8sat.src", + "8Base-satellite-6.14:rubygem-concurrent-ruby-1:1.1.10-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-concurrent-ruby-1:1.1.10-1.el8sat.src", + "8Base-satellite-6.14:rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-concurrent-ruby-edge-1:0.6.0-3.el8sat.src", + "8Base-satellite-6.14:rubygem-connection_pool-0:2.4.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-connection_pool-0:2.4.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-crass-0:1.0.6-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-crass-0:1.0.6-2.el8sat.src", + "8Base-satellite-6.14:rubygem-css_parser-0:1.14.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-css_parser-0:1.14.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-daemons-0:1.4.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-daemons-0:1.4.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-deacon-0:1.0.0-5.el8sat.noarch", + "8Base-satellite-6.14:rubygem-deacon-0:1.0.0-5.el8sat.src", + "8Base-satellite-6.14:rubygem-declarative-0:0.0.20-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-declarative-0:0.0.20-1.el8sat.src", + "8Base-satellite-6.14:rubygem-deep_cloneable-0:3.2.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-deep_cloneable-0:3.2.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-deface-0:1.5.3-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-deface-0:1.5.3-3.el8sat.src", + "8Base-satellite-6.14:rubygem-diffy-0:3.4.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-diffy-0:3.4.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-domain_name-0:0.5.20190701-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-domain_name-0:0.5.20190701-1.el8sat.src", + "8Base-satellite-6.14:rubygem-dynflow-0:1.7.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-dynflow-0:1.7.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-erubi-0:1.12.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-erubi-0:1.12.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-et-orbi-0:1.2.7-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-et-orbi-0:1.2.7-1.el8sat.src", + "8Base-satellite-6.14:rubygem-excon-0:0.99.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-excon-0:0.99.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-execjs-0:2.8.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-execjs-0:2.8.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-facter-0:4.4.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-facter-0:4.4.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday-0:1.10.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday-0:1.10.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday-cookie_jar-0:0.0.6-2.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday-em_http-0:1.0.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday-em_http-0:1.0.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday-em_synchrony-0:1.0.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday-excon-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday-excon-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday-httpclient-0:1.0.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday-httpclient-0:1.0.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday-multipart-0:1.0.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday-multipart-0:1.0.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday-net_http-0:1.0.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday-net_http-0:1.0.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday-net_http_persistent-0:1.2.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday-patron-0:1.0.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday-patron-0:1.0.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday-rack-0:1.0.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday-rack-0:1.0.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday-retry-0:1.0.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday-retry-0:1.0.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-faraday_middleware-0:1.2.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-faraday_middleware-0:1.2.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-fast_gettext-0:1.8.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-fast_gettext-0:1.8.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-ffi-0:1.15.5-1.el8sat.src", + "8Base-satellite-6.14:rubygem-ffi-0:1.15.5-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-ffi-debuginfo-0:1.15.5-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-ffi-debugsource-0:1.15.5-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-fog-aws-0:3.19.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-fog-aws-0:3.19.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-fog-core-0:2.3.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-fog-core-0:2.3.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-fog-json-0:1.2.0-4.el8sat.noarch", + "8Base-satellite-6.14:rubygem-fog-json-0:1.2.0-4.el8sat.src", + "8Base-satellite-6.14:rubygem-fog-kubevirt-0:1.3.7-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-fog-kubevirt-0:1.3.7-1.el8sat.src", + "8Base-satellite-6.14:rubygem-fog-libvirt-0:0.11.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-fog-libvirt-0:0.11.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-fog-openstack-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-fog-openstack-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-fog-ovirt-0:2.0.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-fog-ovirt-0:2.0.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-fog-vsphere-0:3.6.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-fog-vsphere-0:3.6.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-fog-xml-0:0.1.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-fog-xml-0:0.1.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman-tasks-0:8.1.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman-tasks-0:8.1.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_ansible-0:12.0.6-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_ansible-0:12.0.6-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_azure_rm-0:2.2.9-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_bootdisk-0:21.0.4-2.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_discovery-0:22.0.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_discovery-0:22.0.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_google-0:1.0.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_google-0:1.0.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_hooks-0:0.3.17-3.1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_kubevirt-0:0.1.9-4.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_leapp-0:0.1.14-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_leapp-0:0.1.14-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_maintain-1:1.3.5-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_maintain-1:1.3.5-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_openscap-0:7.0.0-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_openscap-0:7.0.0-2.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_puppet-0:6.0.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_puppet-0:6.0.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_remote_execution-0:10.0.7-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_remote_execution-cockpit-0:10.0.7-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_rh_cloud-0:8.0.51-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_scap_client-0:0.5.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_scap_client-0:0.5.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_templates-0:9.4.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_templates-0:9.4.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_theme_satellite-0:12.0.0.5-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_virt_who_configure-0:0.5.16-1.el8sat.src", + "8Base-satellite-6.14:rubygem-foreman_webhooks-0:3.2.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-foreman_webhooks-0:3.2.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-formatador-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-formatador-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-friendly_id-0:5.5.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-friendly_id-0:5.5.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-fugit-0:1.8.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-fugit-0:1.8.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-fx-0:0.7.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-fx-0:0.7.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-gapic-common-0:0.12.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-gapic-common-0:0.12.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-get_process_mem-0:0.2.7-2.1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-get_process_mem-0:0.2.7-2.1.el8sat.src", + "8Base-satellite-6.14:rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-gettext_i18n_rails-0:1.10.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-git-0:1.18.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-git-0:1.18.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-gitlab-sidekiq-fetcher-0:0.9.0-2.el8sat.src", + "8Base-satellite-6.14:rubygem-globalid-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-globalid-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-google-apis-compute_v1-0:0.54.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-google-apis-core-0:0.9.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-google-apis-core-0:0.9.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-google-cloud-common-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-google-cloud-common-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-google-cloud-compute-0:0.5.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-google-cloud-compute-0:0.5.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-google-cloud-compute-v1-0:1.7.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-google-cloud-core-0:1.6.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-google-cloud-core-0:1.6.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-google-cloud-env-0:1.6.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-google-cloud-env-0:1.6.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-google-cloud-errors-0:1.3.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-google-cloud-errors-0:1.3.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-google-protobuf-0:3.21.6-1.el8sat.src", + "8Base-satellite-6.14:rubygem-google-protobuf-0:3.21.6-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-google-protobuf-debuginfo-0:3.21.6-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-google-protobuf-debugsource-0:3.21.6-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-googleapis-common-protos-0:1.3.12-1.el8sat.src", + "8Base-satellite-6.14:rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-googleapis-common-protos-types-0:1.4.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-googleauth-0:1.3.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-googleauth-0:1.3.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-graphql-0:1.13.19-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-graphql-0:1.13.19-1.el8sat.src", + "8Base-satellite-6.14:rubygem-graphql-batch-0:0.5.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-graphql-batch-0:0.5.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-grpc-0:1.49.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-grpc-0:1.49.1-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-gssapi-0:1.3.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-gssapi-0:1.3.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli-0:3.7.0.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli-0:3.7.0.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman-0:3.7.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_admin-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_ansible-0:0.5.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_azure_rm-0:0.2.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_bootdisk-0:0.3.0-3.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_discovery-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_google-0:1.0.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_kubevirt-0:0.1.5-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_leapp-0:0.1.1-2.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_openscap-0:0.1.13-2.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_puppet-0:0.0.6-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_remote_execution-0:0.2.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_tasks-0:0.0.19-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_templates-0:0.2.0-3.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_virt_who_configure-0:0.0.9-2.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_foreman_webhooks-0:0.0.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hammer_cli_katello-0:1.9.1.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hashie-0:5.0.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hashie-0:5.0.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-highline-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-highline-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-hocon-0:1.4.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-hocon-0:1.4.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-http-0:3.3.0-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-http-0:3.3.0-2.el8sat.src", + "8Base-satellite-6.14:rubygem-http-accept-0:1.7.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-http-accept-0:1.7.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-http-cookie-0:1.0.5-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-http-cookie-0:1.0.5-1.el8sat.src", + "8Base-satellite-6.14:rubygem-http-form_data-0:2.1.1-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-http-form_data-0:2.1.1-2.el8sat.src", + "8Base-satellite-6.14:rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.src", + "8Base-satellite-6.14:rubygem-http_parser.rb-0:0.6.0-3.1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-http_parser.rb-debuginfo-0:0.6.0-3.1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-http_parser.rb-debugsource-0:0.6.0-3.1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-httpclient-0:2.8.3-4.el8sat.noarch", + "8Base-satellite-6.14:rubygem-httpclient-0:2.8.3-4.el8sat.src", + "8Base-satellite-6.14:rubygem-i18n-0:1.13.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-i18n-0:1.13.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-infoblox-0:3.0.0-4.el8sat.noarch", + "8Base-satellite-6.14:rubygem-infoblox-0:3.0.0-4.el8sat.src", + "8Base-satellite-6.14:rubygem-jgrep-0:1.3.3-11.el8sat.noarch", + "8Base-satellite-6.14:rubygem-jgrep-0:1.3.3-11.el8sat.src", + "8Base-satellite-6.14:rubygem-journald-logger-0:3.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-journald-logger-0:3.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-journald-native-0:1.0.12-1.el8sat.src", + "8Base-satellite-6.14:rubygem-journald-native-0:1.0.12-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-journald-native-debuginfo-0:1.0.12-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-journald-native-debugsource-0:1.0.12-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-jsonpath-0:1.1.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-jsonpath-0:1.1.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-jwt-0:2.7.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-jwt-0:2.7.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-kafo-0:7.0.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-kafo-0:7.0.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-kafo_parsers-0:1.2.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-kafo_parsers-0:1.2.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-kafo_wizards-0:0.0.2-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-kafo_wizards-0:0.0.2-2.el8sat.src", + "8Base-satellite-6.14:rubygem-katello-0:4.9.0.16-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-katello-0:4.9.0.16-1.el8sat.src", + "8Base-satellite-6.14:rubygem-kubeclient-0:4.10.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-kubeclient-0:4.10.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-ldap_fluff-0:0.6.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-ldap_fluff-0:0.6.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-little-plugger-0:1.1.4-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-little-plugger-0:1.1.4-3.el8sat.src", + "8Base-satellite-6.14:rubygem-locale-0:2.1.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-locale-0:2.1.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-logging-0:2.3.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-logging-0:2.3.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-logging-journald-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-logging-journald-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-loofah-0:2.21.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-loofah-0:2.21.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-mail-0:2.8.0.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-mail-0:2.8.0.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-marcel-0:1.0.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-marcel-0:1.0.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-memoist-0:0.16.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-memoist-0:0.16.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-method_source-0:1.0.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-method_source-0:1.0.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-mime-types-0:3.4.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-mime-types-0:3.4.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-mime-types-data-0:3.2023.0218.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-mini_mime-0:1.1.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-mini_mime-0:1.1.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-mqtt-0:0.5.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-mqtt-0:0.5.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-ms_rest-0:0.7.6-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-ms_rest-0:0.7.6-1.el8sat.src", + "8Base-satellite-6.14:rubygem-ms_rest_azure-0:0.12.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-ms_rest_azure-0:0.12.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-msgpack-0:1.7.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-msgpack-0:1.7.1-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-msgpack-debuginfo-0:1.7.1-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-msgpack-debugsource-0:1.7.1-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-multi_json-0:1.15.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-multi_json-0:1.15.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-multipart-post-0:2.2.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-multipart-post-0:2.2.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-mustermann-0:2.0.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-mustermann-0:2.0.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-net-ldap-0:0.18.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-net-ldap-0:0.18.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-net-ping-0:2.0.8-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-net-ping-0:2.0.8-1.el8sat.src", + "8Base-satellite-6.14:rubygem-net-scp-0:4.0.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-net-scp-0:4.0.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-net-ssh-0:7.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-net-ssh-0:7.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-net-ssh-krb-0:0.4.0-4.el8sat.noarch", + "8Base-satellite-6.14:rubygem-net-ssh-krb-0:0.4.0-4.el8sat.src", + "8Base-satellite-6.14:rubygem-net_http_unix-0:0.2.2-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-net_http_unix-0:0.2.2-2.el8sat.src", + "8Base-satellite-6.14:rubygem-netrc-0:0.11.0-6.el8sat.noarch", + "8Base-satellite-6.14:rubygem-netrc-0:0.11.0-6.el8sat.src", + "8Base-satellite-6.14:rubygem-newt-0:0.9.7-3.1.el8sat.src", + "8Base-satellite-6.14:rubygem-newt-0:0.9.7-3.1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-newt-debuginfo-0:0.9.7-3.1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-newt-debugsource-0:0.9.7-3.1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-nio4r-0:2.5.9-1.el8sat.src", + "8Base-satellite-6.14:rubygem-nio4r-0:2.5.9-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-nio4r-debuginfo-0:2.5.9-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-nio4r-debugsource-0:2.5.9-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-nokogiri-0:1.15.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-nokogiri-0:1.15.0-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-nokogiri-debuginfo-0:1.15.0-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-nokogiri-debugsource-0:1.15.0-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-oauth-0:1.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-oauth-0:1.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-oauth-tty-0:1.0.5-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-oauth-tty-0:1.0.5-1.el8sat.src", + "8Base-satellite-6.14:rubygem-openscap-0:0.4.9-9.el8sat.noarch", + "8Base-satellite-6.14:rubygem-openscap-0:0.4.9-9.el8sat.src", + "8Base-satellite-6.14:rubygem-openscap_parser-0:1.0.2-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-openscap_parser-0:1.0.2-2.el8sat.src", + "8Base-satellite-6.14:rubygem-optimist-0:3.0.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-optimist-0:3.0.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-os-0:1.1.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-os-0:1.1.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-ovirt-engine-sdk-0:4.4.1-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-ovirt-engine-sdk-debuginfo-0:4.4.1-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-ovirt-engine-sdk-debugsource-0:4.4.1-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-ovirt_provision_plugin-0:2.0.3-3.el8sat.src", + "8Base-satellite-6.14:rubygem-parallel-0:1.23.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-parallel-0:1.23.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-pg-0:1.5.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-pg-0:1.5.3-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-pg-debuginfo-0:1.5.3-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-pg-debugsource-0:1.5.3-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-polyglot-0:0.3.5-3.1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-polyglot-0:0.3.5-3.1.el8sat.src", + "8Base-satellite-6.14:rubygem-powerbar-0:2.0.1-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-powerbar-0:2.0.1-3.el8sat.src", + "8Base-satellite-6.14:rubygem-prometheus-client-0:4.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-prometheus-client-0:4.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-promise.rb-0:0.7.4-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-promise.rb-0:0.7.4-3.el8sat.src", + "8Base-satellite-6.14:rubygem-public_suffix-0:5.0.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-public_suffix-0:5.0.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-pulp_ansible_client-0:0.16.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-pulp_certguard_client-0:1.6.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-pulp_container_client-0:2.14.5-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-pulp_container_client-0:2.14.5-1.el8sat.src", + "8Base-satellite-6.14:rubygem-pulp_deb_client-0:2.20.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-pulp_deb_client-0:2.20.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-pulp_file_client-0:1.12.0-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-pulp_file_client-0:1.12.0-2.el8sat.src", + "8Base-satellite-6.14:rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-pulp_ostree_client-0:2.0.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-pulp_python_client-0:3.8.0-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-pulp_python_client-0:3.8.0-2.el8sat.src", + "8Base-satellite-6.14:rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-pulp_rpm_client-0:3.19.6-1.el8sat.src", + "8Base-satellite-6.14:rubygem-pulpcore_client-1:3.22.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-pulpcore_client-1:3.22.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-puma-0:6.2.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-puma-0:6.2.2-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-puma-debuginfo-0:6.2.2-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-puma-debugsource-0:6.2.2-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-puma-status-0:1.6-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-puma-status-0:1.6-1.el8sat.src", + "8Base-satellite-6.14:rubygem-qpid_proton-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14:rubygem-qpid_proton-0:0.33.0-5.el8sat.src", + "8Base-satellite-6.14:rubygem-qpid_proton-0:0.33.0-5.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-qpid_proton-debuginfo-0:0.33.0-4.el8.x86_64", + "8Base-satellite-6.14:rubygem-qpid_proton-debuginfo-0:0.33.0-5.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-qpid_proton-debugsource-0:0.33.0-5.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-raabro-0:1.4.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-raabro-0:1.4.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rabl-0:0.16.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rabl-0:0.16.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rack-0:2.2.7-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rack-0:2.2.7-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rack-cors-0:1.1.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rack-cors-0:1.1.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rack-jsonp-0:1.3.1-10.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rack-jsonp-0:1.3.1-10.el8sat.src", + "8Base-satellite-6.14:rubygem-rack-protection-0:2.2.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rack-protection-0:2.2.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rack-test-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rack-test-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rails-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rails-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rails-dom-testing-0:2.0.3-7.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rails-dom-testing-0:2.0.3-7.el8sat.src", + "8Base-satellite-6.14:rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rails-html-sanitizer-0:1.5.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rails-i18n-0:7.0.7-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rails-i18n-0:7.0.7-1.el8sat.src", + "8Base-satellite-6.14:rubygem-railties-0:6.1.7.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-railties-0:6.1.7.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rainbow-0:2.2.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rainbow-0:2.2.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rb-inotify-0:0.10.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rb-inotify-0:0.10.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rbnacl-0:4.0.2-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rbnacl-0:4.0.2-2.el8sat.src", + "8Base-satellite-6.14:rubygem-rbvmomi2-0:3.6.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rbvmomi2-0:3.6.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rchardet-0:1.8.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rchardet-0:1.8.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-recursive-open-struct-0:1.1.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-recursive-open-struct-0:1.1.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-redfish_client-0:0.5.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-redfish_client-0:0.5.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-redis-0:4.5.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-redis-0:4.5.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-representable-0:3.2.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-representable-0:3.2.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-responders-0:3.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-responders-0:3.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rest-client-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rest-client-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-retriable-0:3.1.2-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-retriable-0:3.1.2-3.el8sat.src", + "8Base-satellite-6.14:rubygem-rkerberos-0:0.1.5-20.1.el8sat.src", + "8Base-satellite-6.14:rubygem-rkerberos-0:0.1.5-20.1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-rkerberos-debuginfo-0:0.1.5-20.1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-rkerberos-debugsource-0:0.1.5-20.1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-roadie-0:5.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-roadie-0:5.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-roadie-rails-0:3.0.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-roadie-rails-0:3.0.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-robotex-0:1.0.0-22.el8sat.noarch", + "8Base-satellite-6.14:rubygem-robotex-0:1.0.0-22.el8sat.src", + "8Base-satellite-6.14:rubygem-rsec-0:0.4.3-5.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rsec-0:0.4.3-5.el8sat.src", + "8Base-satellite-6.14:rubygem-ruby-libvirt-0:0.8.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-ruby-libvirt-0:0.8.0-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-ruby-libvirt-debuginfo-0:0.8.0-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-ruby-libvirt-debugsource-0:0.8.0-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-ruby2_keywords-0:0.0.5-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-ruby2_keywords-0:0.0.5-1.el8sat.src", + "8Base-satellite-6.14:rubygem-ruby2ruby-0:2.5.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-ruby2ruby-0:2.5.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-ruby_parser-0:3.20.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-ruby_parser-0:3.20.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-rubyipmi-0:0.11.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-rubyipmi-0:0.11.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-safemode-0:1.3.8-1.el8sat.src", + "8Base-satellite-6.14:rubygem-scoped_search-0:4.1.11-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-scoped_search-0:4.1.11-1.el8sat.src", + "8Base-satellite-6.14:rubygem-sd_notify-0:0.1.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-sd_notify-0:0.1.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-secure_headers-0:6.5.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-secure_headers-0:6.5.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-sequel-0:5.68.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-sequel-0:5.68.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-server_sent_events-0:0.1.3-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-server_sent_events-0:0.1.3-1.el8sat.src", + "8Base-satellite-6.14:rubygem-sexp_processor-0:4.17.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-sexp_processor-0:4.17.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-sidekiq-0:6.3.1-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-sidekiq-0:6.3.1-2.el8sat.src", + "8Base-satellite-6.14:rubygem-signet-0:0.17.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-signet-0:0.17.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-sinatra-1:2.2.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-sinatra-1:2.2.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_ansible-0:3.5.5-1.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_container_gateway-0:1.0.8-1.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_dhcp_infoblox-0:0.0.17-1.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_dhcp_remote_isc-0:0.0.5-6.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_discovery-0:1.0.5-9.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_discovery_image-0:1.6.0-2.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_dns_infoblox-0:1.1.0-7.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_dynflow-0:0.9.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_dynflow_core-0:0.4.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_openscap-0:0.9.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_pulp-0:3.2.0-3.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_remote_execution_ssh-0:0.10.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-smart_proxy_shellhooks-0:0.9.2-3.el8sat.src", + "8Base-satellite-6.14:rubygem-snaky_hash-0:2.0.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-snaky_hash-0:2.0.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-sprockets-0:4.2.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-sprockets-0:4.2.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-sprockets-rails-0:3.4.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-sprockets-rails-0:3.4.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-sqlite3-0:1.4.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-sqlite3-0:1.4.2-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-sqlite3-debuginfo-0:1.4.2-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-sqlite3-debugsource-0:1.4.2-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-sshkey-0:2.0.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-sshkey-0:2.0.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-statsd-instrument-0:2.9.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-statsd-instrument-0:2.9.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-stomp-0:1.4.10-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-stomp-0:1.4.10-1.el8sat.src", + "8Base-satellite-6.14:rubygem-thor-0:1.2.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-thor-0:1.2.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-tilt-0:2.1.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-tilt-0:2.1.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-timeliness-0:0.3.10-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-timeliness-0:0.3.10-2.el8sat.src", + "8Base-satellite-6.14:rubygem-trailblazer-option-0:0.1.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-trailblazer-option-0:0.1.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-tzinfo-0:2.0.6-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-tzinfo-0:2.0.6-1.el8sat.src", + "8Base-satellite-6.14:rubygem-uber-0:0.1.0-3.el8sat.noarch", + "8Base-satellite-6.14:rubygem-uber-0:0.1.0-3.el8sat.src", + "8Base-satellite-6.14:rubygem-unf-0:0.1.4-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-unf-0:0.1.4-1.el8sat.src", + "8Base-satellite-6.14:rubygem-unf_ext-0:0.0.8.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-unf_ext-0:0.0.8.2-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-unf_ext-debuginfo-0:0.0.8.2-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-unf_ext-debugsource-0:0.0.8.2-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-unicode-0:0.4.4.4-4.1.el8sat.src", + "8Base-satellite-6.14:rubygem-unicode-0:0.4.4.4-4.1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-unicode-debuginfo-0:0.4.4.4-4.1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-unicode-debugsource-0:0.4.4.4-4.1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-unicode-display_width-0:1.8.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-unicode-display_width-0:1.8.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-validates_lengths_from_database-0:0.8.0-1.el8sat.src", + "8Base-satellite-6.14:rubygem-version_gem-0:1.1.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-version_gem-0:1.1.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-webpack-rails-0:0.9.11-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-webpack-rails-0:0.9.11-1.el8sat.src", + "8Base-satellite-6.14:rubygem-webrick-0:1.8.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-webrick-0:1.8.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-websocket-driver-0:0.7.5-1.el8sat.src", + "8Base-satellite-6.14:rubygem-websocket-driver-0:0.7.5-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-websocket-driver-debuginfo-0:0.7.5-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-websocket-driver-debugsource-0:0.7.5-1.el8sat.x86_64", + "8Base-satellite-6.14:rubygem-websocket-extensions-0:0.1.5-2.el8sat.noarch", + "8Base-satellite-6.14:rubygem-websocket-extensions-0:0.1.5-2.el8sat.src", + "8Base-satellite-6.14:rubygem-will_paginate-0:3.3.1-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-will_paginate-0:3.3.1-1.el8sat.src", + "8Base-satellite-6.14:rubygem-xmlrpc-0:0.3.2-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-xmlrpc-0:0.3.2-1.el8sat.src", + "8Base-satellite-6.14:rubygem-zeitwerk-0:2.6.8-1.el8sat.noarch", + "8Base-satellite-6.14:rubygem-zeitwerk-0:2.6.8-1.el8sat.src", + "8Base-satellite-6.14:saslwrapper-0:0.22-6.el8sat.src", + "8Base-satellite-6.14:saslwrapper-0:0.22-6.el8sat.x86_64", + "8Base-satellite-6.14:saslwrapper-debuginfo-0:0.22-6.el8sat.x86_64", + "8Base-satellite-6.14:saslwrapper-debugsource-0:0.22-6.el8sat.x86_64", + "8Base-satellite-6.14:satellite-0:6.14.0-3.el8sat.noarch", + "8Base-satellite-6.14:satellite-0:6.14.0-3.el8sat.src", + "8Base-satellite-6.14:satellite-capsule-0:6.14.0-3.el8sat.noarch", + "8Base-satellite-6.14:satellite-cli-0:6.14.0-3.el8sat.noarch", + "8Base-satellite-6.14:satellite-common-0:6.14.0-3.el8sat.noarch", + "8Base-satellite-6.14:satellite-installer-0:6.14.0.5-1.el8sat.noarch", + "8Base-satellite-6.14:satellite-installer-0:6.14.0.5-1.el8sat.src", + "8Base-satellite-6.14:satellite-maintain-0:0.0.2-1.el8sat.noarch", + "8Base-satellite-6.14:satellite-maintain-0:0.0.2-1.el8sat.src", + "8Base-satellite-6.14:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.src", + "8Base-satellite-6.14:yggdrasil-worker-forwarder-0:0.0.3-1.el8sat.x86_64" + ] + }, + "references": [ + { + "category": "self", + "summary": "Canonical URL", + "url": "https://access.redhat.com/security/cve/CVE-2023-0118" + }, + { + "category": "external", + "summary": "RHBZ#2159291", + "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2159291" + }, + { + "category": "external", + "summary": "https://www.cve.org/CVERecord?id=CVE-2023-0118", + "url": "https://www.cve.org/CVERecord?id=CVE-2023-0118" + }, + { + "category": "external", + "summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-0118", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-0118" + } + ], + "release_date": "2023-03-12T00:00:00+00:00", + "remediations": [ + { + "category": "vendor_fix", + "details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258", + "product_ids": [ + "7Server-satellite-6.11-capsule:foreman-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-0:3.1.1.27-1.el7sat.src", + "7Server-satellite-6.11-capsule:foreman-cli-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-debug-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-ec2-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-gce-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-journald-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-libvirt-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-openstack-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-ovirt-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-postgresql-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-service-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-telemetry-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-vmware-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-0:3.1.1.27-1.el7sat.src", + "7Server-satellite-6.11-utils:foreman-cli-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-debug-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-ec2-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-gce-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-journald-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-libvirt-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-openstack-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-ovirt-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-postgresql-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-service-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-telemetry-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-vmware-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-0:3.1.1.27-1.el7sat.src", + "7Server-satellite-6.11:foreman-cli-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-debug-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-ec2-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-gce-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-journald-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-libvirt-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-openstack-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-ovirt-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-postgresql-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-service-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-telemetry-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-vmware-0:3.1.1.27-1.el7sat.noarch", + "8Base-satellite-6.11-capsule:foreman-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-0:3.1.1.27-1.el8sat.src", + "8Base-satellite-6.11-capsule:foreman-cli-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-debug-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-ec2-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-gce-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-journald-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-libvirt-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-openstack-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-ovirt-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-postgresql-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-service-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-telemetry-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-vmware-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-0:3.1.1.27-1.el8sat.src", + "8Base-satellite-6.11-utils:foreman-cli-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-debug-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-ec2-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-gce-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-journald-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-libvirt-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-openstack-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-ovirt-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-postgresql-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-service-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-telemetry-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-vmware-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-0:3.1.1.27-1.el8sat.src", + "8Base-satellite-6.11:foreman-cli-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-debug-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-ec2-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-gce-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-journald-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-libvirt-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-openstack-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-ovirt-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-postgresql-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-service-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-telemetry-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-vmware-0:3.1.1.27-1.el8sat.noarch" + ], + "url": "https://access.redhat.com/errata/RHSA-2023:5980" + }, + { + "category": "vendor_fix", + "details": "Before applying this update, make sure all previously released errata relevant to your system have been applied.\n\nFor detailed instructions how to apply this update, refer to:\n\nhttps://access.redhat.com/documentation/en-us/red_hat_satellite/6.14/html/upgrading_red_hat_satellite_to_6.14/index", + "product_ids": [ + "8Base-satellite-6.14-capsule:foreman-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-0:3.7.0.9-1.el8sat.src", + "8Base-satellite-6.14-capsule:foreman-cli-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-debug-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-ec2-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-journald-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-libvirt-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-openstack-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-ovirt-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-postgresql-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-redis-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-service-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-telemetry-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-vmware-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-0:3.7.0.9-1.el8sat.src", + "8Base-satellite-6.14-utils:foreman-cli-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-debug-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-ec2-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-journald-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-libvirt-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-openstack-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-ovirt-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-postgresql-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-redis-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-service-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-telemetry-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-vmware-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-0:3.7.0.9-1.el8sat.src", + "8Base-satellite-6.14:foreman-cli-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-debug-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-ec2-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-journald-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-libvirt-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-openstack-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-ovirt-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-postgresql-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-redis-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-service-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-telemetry-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-vmware-0:3.7.0.9-1.el8sat.noarch" + ], + "url": "https://access.redhat.com/errata/RHSA-2023:6818" + }, + { + "category": "vendor_fix", + "details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258", + "product_ids": [ + "8Base-satellite-6.12:rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "8Base-satellite-6.12:rubygem-safemode-0:1.3.8-1.el8sat.src" + ], + "url": "https://access.redhat.com/errata/RHSA-2023:5979" + }, + { + "category": "vendor_fix", + "details": "Before applying this update, make sure all previously released errata\nrelevant to your system have been applied.\n\nFor details on how to apply this update, refer to:\n\nhttps://access.redhat.com/articles/11258", + "product_ids": [ + "8Base-satellite-6.13:rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "8Base-satellite-6.13:rubygem-safemode-0:1.3.8-1.el8sat.src" + ], + "url": "https://access.redhat.com/errata/RHSA-2023:4466" + } + ], + "scores": [ + { + "cvss_v3": { + "attackComplexity": "HIGH", + "attackVector": "NETWORK", + "availabilityImpact": "HIGH", + "baseScore": 8.0, + "baseSeverity": "HIGH", + "confidentialityImpact": "HIGH", + "integrityImpact": "HIGH", + "privilegesRequired": "HIGH", + "scope": "CHANGED", + "userInteraction": "NONE", + "vectorString": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:C/C:H/I:H/A:H", + "version": "3.1" + }, + "products": [ + "7Server-satellite-6.11-capsule:foreman-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-0:3.1.1.27-1.el7sat.src", + "7Server-satellite-6.11-capsule:foreman-cli-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-debug-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-ec2-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-gce-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-journald-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-libvirt-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-openstack-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-ovirt-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-postgresql-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-service-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-telemetry-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-vmware-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-0:3.1.1.27-1.el7sat.src", + "7Server-satellite-6.11-utils:foreman-cli-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-debug-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-ec2-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-gce-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-journald-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-libvirt-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-openstack-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-ovirt-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-postgresql-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-service-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-telemetry-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-vmware-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-0:3.1.1.27-1.el7sat.src", + "7Server-satellite-6.11:foreman-cli-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-debug-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-ec2-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-gce-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-journald-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-libvirt-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-openstack-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-ovirt-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-postgresql-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-service-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-telemetry-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-vmware-0:3.1.1.27-1.el7sat.noarch", + "8Base-satellite-6.11-capsule:foreman-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-0:3.1.1.27-1.el8sat.src", + "8Base-satellite-6.11-capsule:foreman-cli-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-debug-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-ec2-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-gce-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-journald-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-libvirt-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-openstack-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-ovirt-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-postgresql-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-service-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-telemetry-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-vmware-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-0:3.1.1.27-1.el8sat.src", + "8Base-satellite-6.11-utils:foreman-cli-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-debug-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-ec2-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-gce-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-journald-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-libvirt-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-openstack-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-ovirt-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-postgresql-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-service-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-telemetry-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-vmware-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-0:3.1.1.27-1.el8sat.src", + "8Base-satellite-6.11:foreman-cli-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-debug-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-ec2-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-gce-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-journald-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-libvirt-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-openstack-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-ovirt-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-postgresql-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-service-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-telemetry-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-vmware-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.12:rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "8Base-satellite-6.12:rubygem-safemode-0:1.3.8-1.el8sat.src", + "8Base-satellite-6.13:rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "8Base-satellite-6.13:rubygem-safemode-0:1.3.8-1.el8sat.src", + "8Base-satellite-6.14-capsule:foreman-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-0:3.7.0.9-1.el8sat.src", + "8Base-satellite-6.14-capsule:foreman-cli-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-debug-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-ec2-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-journald-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-libvirt-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-openstack-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-ovirt-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-postgresql-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-redis-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-service-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-telemetry-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-vmware-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-0:3.7.0.9-1.el8sat.src", + "8Base-satellite-6.14-utils:foreman-cli-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-debug-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-ec2-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-journald-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-libvirt-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-openstack-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-ovirt-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-postgresql-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-redis-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-service-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-telemetry-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-vmware-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-0:3.7.0.9-1.el8sat.src", + "8Base-satellite-6.14:foreman-cli-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-debug-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-ec2-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-journald-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-libvirt-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-openstack-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-ovirt-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-postgresql-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-redis-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-service-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-telemetry-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-vmware-0:3.7.0.9-1.el8sat.noarch" + ] + } + ], + "threats": [ + { + "category": "impact", + "details": "Important", + "product_ids": [ + "7Server-satellite-6.11-capsule:foreman-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-0:3.1.1.27-1.el7sat.src", + "7Server-satellite-6.11-capsule:foreman-cli-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-debug-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-ec2-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-gce-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-journald-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-libvirt-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-openstack-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-ovirt-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-postgresql-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-service-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-telemetry-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-capsule:foreman-vmware-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-0:3.1.1.27-1.el7sat.src", + "7Server-satellite-6.11-utils:foreman-cli-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-debug-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-ec2-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-gce-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-journald-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-libvirt-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-openstack-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-ovirt-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-postgresql-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-service-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-telemetry-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11-utils:foreman-vmware-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-0:3.1.1.27-1.el7sat.src", + "7Server-satellite-6.11:foreman-cli-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-debug-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-dynflow-sidekiq-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-ec2-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-gce-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-journald-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-libvirt-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-openstack-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-ovirt-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-postgresql-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-service-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-telemetry-0:3.1.1.27-1.el7sat.noarch", + "7Server-satellite-6.11:foreman-vmware-0:3.1.1.27-1.el7sat.noarch", + "8Base-satellite-6.11-capsule:foreman-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-0:3.1.1.27-1.el8sat.src", + "8Base-satellite-6.11-capsule:foreman-cli-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-debug-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-ec2-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-gce-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-journald-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-libvirt-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-openstack-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-ovirt-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-postgresql-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-service-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-telemetry-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-capsule:foreman-vmware-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-0:3.1.1.27-1.el8sat.src", + "8Base-satellite-6.11-utils:foreman-cli-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-debug-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-ec2-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-gce-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-journald-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-libvirt-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-openstack-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-ovirt-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-postgresql-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-service-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-telemetry-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11-utils:foreman-vmware-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-0:3.1.1.27-1.el8sat.src", + "8Base-satellite-6.11:foreman-cli-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-debug-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-dynflow-sidekiq-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-ec2-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-gce-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-journald-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-libvirt-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-openstack-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-ovirt-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-postgresql-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-service-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-telemetry-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.11:foreman-vmware-0:3.1.1.27-1.el8sat.noarch", + "8Base-satellite-6.12:rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "8Base-satellite-6.12:rubygem-safemode-0:1.3.8-1.el8sat.src", + "8Base-satellite-6.13:rubygem-safemode-0:1.3.8-1.el8sat.noarch", + "8Base-satellite-6.13:rubygem-safemode-0:1.3.8-1.el8sat.src", + "8Base-satellite-6.14-capsule:foreman-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-0:3.7.0.9-1.el8sat.src", + "8Base-satellite-6.14-capsule:foreman-cli-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-debug-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-ec2-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-journald-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-libvirt-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-openstack-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-ovirt-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-postgresql-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-redis-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-service-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-telemetry-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-capsule:foreman-vmware-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-0:3.7.0.9-1.el8sat.src", + "8Base-satellite-6.14-utils:foreman-cli-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-debug-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-ec2-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-journald-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-libvirt-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-openstack-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-ovirt-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-postgresql-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-redis-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-service-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-telemetry-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14-utils:foreman-vmware-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-0:3.7.0.9-1.el8sat.src", + "8Base-satellite-6.14:foreman-cli-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-debug-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-dynflow-sidekiq-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-ec2-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-journald-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-libvirt-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-openstack-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-ovirt-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-postgresql-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-redis-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-service-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-telemetry-0:3.7.0.9-1.el8sat.noarch", + "8Base-satellite-6.14:foreman-vmware-0:3.7.0.9-1.el8sat.noarch" + ] + } + ], + "title": "Arbitrary code execution through templates" + } + ] +} diff --git a/rhel/vex/testdata/server/csaf_vex_2023-10-31.tar.zst b/rhel/vex/testdata/server/csaf_vex_2023-10-31.tar.zst new file mode 100644 index 0000000000000000000000000000000000000000..758b059b00800cdf88581e0ae2f90212c50b2abc GIT binary patch literal 6581 zcmV;m8A|3TwJ-go02l!PEzJPB)yO42Kuc2{!!XQ*%b0Oy9K+YuvTun@l1fC9P)XXB zq;&3;yjH~jUw{0(^k3tT_T_+VwIy3+lQrEj5<9x<0SY?;I|5+>&Qnd!LUIl18(MDL zrB~~x*Lt54F<#eyi$~g8FMxpSXRMlK|7upmW;`QHsJyCgl&fFYg)ns6kcQTdF&Vxw z{SINSwvXv=7(sEtvR|BZ_M@}xT7~(NZr}9kmsg2IVk0wFzb-0ev$eFo=E#f^&c=B1 zQAS8tpYm>8>BTM~(N3yGuHb(c(mJ6~>~C9<8LzdG$=ct_*zeH#*FWh~D4f1k$8404 zt5tA&!53wlRkx5IUtyL#V13k=c?0W=50GL@Hh0)_5%viA2_`FgsX4 zJWNoyQlvv#D$JT(pl{W!SGFu=121nvFvIr)L#N;iFyO}`u}(DlnBXrY*0&M5#ZkCY zCXKc#8NOLp+oy1)Oe&4|_fsfPBvdL~DWBo5Ff%C3r1AU3D_Yy~G1kAKcA3e?dY@Y+ zqi^}fpx4D(f3F#)vf4kUaHaTb&3e{TVV-=fzPYvhJK{AGX@!{?fC;!#etLEvg$gqO z6F6RQj_7IJf)hQGNc?Olj?0eYIIaSP4kL=WV6BB)t#k<>Wn7NSUU&bbBVahwwfz)GJ}I7oQ-_7;gm zasZ47#K>DB7h*{$W*JBT4K#S5P`Ju)#gj%JkVb z=GgyhEsM+&8nHFTwxNGlwvAy=c_IO`T_4kDscCI*KW2zTVttqKnyyi%KOS&t@y3QZ`FkUc5lJ)*r3f)n;Vqe|3F4k+S1+&2mR(tZy0n$aEQ* z@mt;}`|)&4!aS)o^NeAXz0Jt8`J(Lh_Hzi^df%h$*V@RAS@7aAUOZ|1H}AzWauy}< zj11?c7u%L_gBI(v(9<{?#{mSllu?4nZD3{oc48~Q_|vUd&3Za5hxA!4BP}n;HJVBF zjXoQp5~0C^(=;3=NS<#`i4`b{nx;vTB>I;1>Y~iewmFNNCFQ-S_0uQSGWx8Sw=aiU z#H{q1#Vv~)MN!l=O_L-^lB23B%2cjB?J1gc%=+n;wA}i}Ea=t28F$7Ab{nf!{ij3L z6MM5OMDhBTrT{=eBYVc{e!o?i9}a{9$?kj`F>BIjnuco>X8K)ydPHG%m2(C>PZiJWwbQ+Fv%g9&mNH6M z{;S$w&6>Mpu#jerN*^$fV;tA8mNNEjlv1{2x<(g?L;``c&Sdm0kc)kcP<=_1b2M&> zB-hlV9@scdBtZz>r>LQxLk>qD03!m-$1J0d`50NW_>2~x`50jsCVQ5FTy6Oni6BX$ zD0b{!GK0$t9eb8P!>5ctFH70aPV9vY8%#8SVB5@40K`NC6TlgJy)yQ7A@-9aIb6f3 zj%gJ<8+bz(=<(zBz1oqcj1y{Eh3}Mlr;q{+u6}GiW1Fodc>KKueq$rA{$9bT~J<&u> z5f3#<)Fe49$`xjGfNg`Zj}p$}22t>O;59+6A8feDK^pFYKn*BrNaID$b2&U>tjC|1 zLYU3rQh#2If+nvm`HR|HD}BuU4Vl5~wUnK{W6!ghKD%V>MNGmBS==axGer0wtjl?G<}Uax9O+ zRn@>eR1nNV^oKMv1&EqKVx5$zG;!TQoPbv;kF?U2|zq3TqzJT_SW!- z5TQJmFd;&OlHpRz=;PTeYd0!hQpO3AL!-~~jo@>()U1qnS#(m9}Q=P@~Os^vg}7CeUANB+i&cf?G`KK+rC{o*;-IR2JZE0G~8Y% zIg)!CPSbE2*zJX*fu0J_Z#&{?qKa~=$yqc{)3_&^nrd>YsIiD#!)ZFR=A~I#wpkg* zHoZP@d+}Wz(#%1Q!$FSciJbH}?un3ykccQEOt5f};BUWp(m25nC@LNwr*B@h*>8#@ z=Uh`YR6I~Hk<&Dcb@}4go)jj9NhfuUf#fhAP8zE2UW<3*E7Qd%mYlH-!0q7j(tzCM+{1zb^Ft?zYUyK`hXq# zW^z-sOdt%MZA%ocB#5&kl`5{$2&VG(gl9dcXA$U9LMO&+$*L-5q48;C%=%h-krsz- zra`Q>=-&pOaCGdrq8my%a6sVSc8zWA^ z{^C}>;#vI-t!KT~5AJUV?2*}6g<(A_F2K^WelSD?)wgJtW{KAi~Ia6M&5Vr9->bcC#@}m9tyBGyQCE5_(vq z+dNP=SR)-pnAo%jK#`I2Y0%C+j0B}HY{&pEreDzD@D6gZAZhosUE)-(D)@786a=Q* zPa)4MTXAjh*+RrcPWK-4Dl;kH4Lf&a++u6#mCkfZcL0~#q|+Eb3ZBe<=O?_+M0~46 zyv~K+JDf;rS@B<;<<&Iwe8GLyjC}<^LDCU#ebFlYUD@4?3(WB>mfRb7;NKbbH5s`B zbM@b5H7RkCUetT^y4zI1o1U)WP3gO6%Eb&yG5@yNbC3kz>h!MK06y1#KonEC0G z*h~Tg-pp&m54U+=wjK&C3s~bOXe!Uf^2KBRC0Pya6I1;fh|Pa)xcd$X+A`kVdFvaj zhtQMbMwz=B%WFsgiLLuzm7liJjWf)sxxW3^s|q7Vyga}{KC1!Fma%GBZ$NYaAMoTbVlX2ufg`qmI633fI77b@*>D`@-vF2=M?b+5fT2ZEV~@4-C(W0_9quRJE%#X%eAIO}(Y68hNbujxXQ83~#>f@v|2WyH?6Kr{!ZO+LWT62@ z1P-!8o~m!YGrTAleFSTsZxJ^C!6%7aBC+_@ANx~Ket?u!kd{A55MkXYPf}jXO1hK> zG*cpH4ylTY6w&ZkpPxoD)7li@T2|33KL_*kKEUN!3os#0P{2WMKIS1}=xwHai^2@< z_wS(E1KtMHeMs|D(_i#5?%CfZ`laXPj-JEq#Wlp(Ol@am}kd*o|Hw#ZnCXc#^VBe#7(#Ce|$f{ibP+{;{%f28MmC2|y4G72|+ zd6AL7LkpS(l^Roj3TUvajir3!jY1w{oFE=%nk0GZMw*n1DG?lrgqX02Tyu2o6F*7i z*Bdah3SIa#E>I6KgP;cETg0l?q%sj#@|9US^(QqjwEO|pv<&)+2p2*KKs7EViwEk5u^^0GWpC42 z;%GbrlnZtC)u`2u8|c%`%1xp>R)Waeq^WtSxN$#GN)%o>iDS7|6B%MuKv&ihtfgk@ zk7s5W6y5}c$D%zG;nXg48Kq}ak1DR1wl#$sIS(?n+=k@TVOEQEA(-6*1n%J10!-gF zrlRxcF-bJfgni3w17i$r+Zi*#pV_923+w!DfYAh8E{SIz^HnJx@r8jmUp0iib=z63 zYQimkQ-ICJ?^ybR%UD$LNclHu5%B??fV2fVmE4;+0aVBt^%hkkMh!@a`XDmpc3GaY zvDVySsM0?2$y5NufmpUWE~zBw6y~5~vg&;xuXbihVcAiMUs@1FH-8ZGpEN2UEr(rzXqj27aLPK3pa5;Wp5kN&sgJC{|vt|dv)EN!9RzKC~!RJYFyi6ln z(#0VxuIU+$4xQd_<8tt)W06toOeLMCDexF+*9701sB<((EY0vf3$a^Nz`K$EBYiOk zV$=kEeg`2DBfA1tYWTE{M6tF%t@U56Z7DUbD2@SiWDbz`5(32fZGAJMr$rNsT>8$z zG!_ZxnVxhrsd&3vweFp;%WFcYcg18RjH$@9joh9jCr)VTdN>$0&+pA^iP@cnLw)Oma~_v!5tg$r)bdrppBF12BoakmM+8Bj;=_2M}uE~@s{DHK4?-wA$% z5upvUqJW+;>oJH@P-rxsvg?#bj5W#ar3wPms1RJX*?9(pqr*qjH-F6Nm789qW%AWK z-t;g!20f0ZhxY0S@!pI&wi{wJj8EShQ4Jt#}O5sy#r>kupP((uxR!hYMfj zSesHIbgFni4!y+%BM1i-(Uz%-BP29c_@%KMgN6k$U1klDT9k3>N$cx`S^F&q+63Qh z>;=KDDW5&n9`6F?{1spq``#?SbIaZZy5Sq3^_nPUZvZ)U(Rw73{u&D?GY>%Uf`lcU zklL=8AwU_jyOAJiU?0tp70@J9P)>9UC=EdGPD^6+JVn8nMTiF4h<)r*6cNNG|Ilwy zMB$)#Pkos!a~L}1#XbziOKVe&8WG=qyQP1Is0_`|QPRL)2z(i2eyqu`=;~|>MY;LK zrH+5oqGCnU|EB7RQU9HKegs6%ty-XTi}q_daAT^?mownW7MDQ<)OZPHBUnkBSfN`w zY*%b<2CHeJuxU7r#txH325YqKN;8{&1M{l+rJy|Y>bR>vIK9cwMmPm!r0bc-ZE#D0 zXFRfl3LDeti7wKCkqJ92FjHV`$DV}t(ngKJ}KeQ=) z&8WI64@bi{gDa9QIw8z?-3(Y~{0q*N z+yvAETJUxT{i)C+_?|guXrtO8DHokUA8kbs#`4@|K+_iS{-%+dGGZJUOO9=~-$ zirgBbzvi(M59Et~-!_jLSAw?{%C#VC+tQVO5SoTKnYAZv<*?W+CFixwpdBBnsQhL; z&B@0rL$o{j&k7E{v~O2dMY(!PKTWw1%ZUyfoq7T+jQN$oTbU2Gt$>MsGq*QwHij}j z)+L;q*o=kPHJDZ_D1o$~tw>#5=!Iwzl->_i^e_r308_DOseG+w$Y^N~C}(Hs&_;1m zdTc&H`>AOPB`2FS8OKp!$e9I|es^{@4zx>66siu_gwWk3<{DpAA@y{rMr<0u)F!== zLPkN48t{Uov?X_CdvWFk%UIPn#S~+T34CPOYdfajEg~qA!-!)hYRj7?^LQKtRXYn) za;rT2qEM2tuPTxG9hgzVzKz;&fB?H0b$8FqX{_uG{(0&GEW_ak4P6SNDf%_C;ywc) z^%u1y5>1_H>TN7nfKq&^H7^YZjdfnq4~~koVC^@YK`UY$s2Jq{&_}`yKx-R(hJguY z4ZjCdjWw!o?mE0eYhiUoUti)%DHv#c2?MFft|B(x48pNE=%e3foEZ~(iEwh3TO zwD9juvtQ$*O?)~hDxIEI1E4t@BlTO58OZ_WfJWFH4QV38?P;+kC>=^L6QLYzwGk{J zWDo@ti$3;D@<84LOUOdSFHXD12!q>a&36o*UA@pK8z+sL+LWP=kIGx=&S-)lNm~qMr$QP5{jLUs%P9h@8iB80)-0>hh1gIMH zzx;rzL}vz}PFd(JyUZ;FKpu16o-$~(dz&&Bo6h=C@#`^68qT$8jI-iEbvil(FBHk> z!B)CWupTLCH5=JRGGdyd@a-2ffBia2IJoIhPzHTML#{rJH0F9vNt`jAY~c{`gLv~U zj;yVToO@2rl5y^&vxv0Y`>XeB{BB=%x-DZ!Eey^Xf&k#;b%moGWjOY@dpt~D*%s`a)o7WX9>_HXs_Y8aLwyp`1n5e6p1 z=q4W(UDE2{i@Nxm;OU7=ft4({vk7`#`YT)hi!0I# z1v07NN{p#*4`U>hF3t#{SQ%z_RV6$8wrBhoz_6@H$Z3=Sk*jnntxy)ke{xI4vkM7& z>yHSm`}-}{ae1l$Id;mdmEtg zFy7Pb$zp(6*3jdX7PpguzO`nWmbE;xvhxpSeUJU0l^eb}3$-;H{5D^4j$vIQFRx8h zb`DpZ<@#)NB^Adg^qXl=-?#`T9bKM;Q32#>lQK(WKnQiJr^!mna9oVTBp<+a1+v_m zF!fgXkg?JL;9R;I&l|K8fqFV6$e)_R_!z%IWJCA~Wx(kAX;pZUXigf}Q~_H(9kR+X zNHRE{H&!@*My6)L$o0+iPb(DTLJE%)9(yn$f=LR|2*=3bzhW4mgd>`}dPot2g$X%G zgiReQeFHdK9<@?#Ytm^5PTaFJMrdR(t3bbMsRS`9;y5Fd?v45K-%70}J-~>G(>B#C zHhO|dAtix|o_{2>!+<6q0syoCn=D5|C~;U~zGj+%@C)DBhrtn4%y4I}mhgO8<7YK4 zAT9>#TK9G40c~ZAVarQ|D-D=rc(eX*p>%_rVNOqHP;xpEhJHq6E$b``2o>>h#htfN z4&&*k`xRR-)a0pJN^-)_J<2Sd&;OxRSsAK&;|>#?HspkY%(3WCijhR-Z*7Jj8%dLOr+Vc>a&!HV?E(0^)l{d>D nkfP=$@i4pq@!T(JPEu*a#n`Yev